-
Notifications
You must be signed in to change notification settings - Fork 2
/
romlist.lua
1189 lines (1189 loc) · 145 KB
/
romlist.lua
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
local tFiles = {}
tFiles["1.0"] = {}
tFiles["1.0"]["help/apis"] = "https://raw.githubusercontent.com/Wilma456/ComputercraftRom/1.0/rom/help/apis"
tFiles["1.0"]["help/redpulse"] = "https://raw.githubusercontent.com/Wilma456/ComputercraftRom/1.0/rom/help/redpulse"
tFiles["1.0"]["help/sleep"] = "https://raw.githubusercontent.com/Wilma456/ComputercraftRom/1.0/rom/help/sleep"
tFiles["1.0"]["help/programming"] = "https://raw.githubusercontent.com/Wilma456/ComputercraftRom/1.0/rom/help/programming"
tFiles["1.0"]["help/cp"] = "https://raw.githubusercontent.com/Wilma456/ComputercraftRom/1.0/rom/help/cp"
tFiles["1.0"]["help/fs"] = "https://raw.githubusercontent.com/Wilma456/ComputercraftRom/1.0/rom/help/fs"
tFiles["1.0"]["help/term"] = "https://raw.githubusercontent.com/Wilma456/ComputercraftRom/1.0/rom/help/term"
tFiles["1.0"]["help/help"] = "https://raw.githubusercontent.com/Wilma456/ComputercraftRom/1.0/rom/help/help"
tFiles["1.0"]["help/redstone"] = "https://raw.githubusercontent.com/Wilma456/ComputercraftRom/1.0/rom/help/redstone"
tFiles["1.0"]["help/lua"] = "https://raw.githubusercontent.com/Wilma456/ComputercraftRom/1.0/rom/help/lua"
tFiles["1.0"]["help/cd"] = "https://raw.githubusercontent.com/Wilma456/ComputercraftRom/1.0/rom/help/cd"
tFiles["1.0"]["help/clear"] = "https://raw.githubusercontent.com/Wilma456/ComputercraftRom/1.0/rom/help/clear"
tFiles["1.0"]["help/mkdir"] = "https://raw.githubusercontent.com/Wilma456/ComputercraftRom/1.0/rom/help/mkdir"
tFiles["1.0"]["help/shutdown"] = "https://raw.githubusercontent.com/Wilma456/ComputercraftRom/1.0/rom/help/shutdown"
tFiles["1.0"]["help/shell"] = "https://raw.githubusercontent.com/Wilma456/ComputercraftRom/1.0/rom/help/shell"
tFiles["1.0"]["help/os"] = "https://raw.githubusercontent.com/Wilma456/ComputercraftRom/1.0/rom/help/os"
tFiles["1.0"]["help/edit"] = "https://raw.githubusercontent.com/Wilma456/ComputercraftRom/1.0/rom/help/edit"
tFiles["1.0"]["help/redprobe"] = "https://raw.githubusercontent.com/Wilma456/ComputercraftRom/1.0/rom/help/redprobe"
tFiles["1.0"]["help/hello"] = "https://raw.githubusercontent.com/Wilma456/ComputercraftRom/1.0/rom/help/hello"
tFiles["1.0"]["help/shellapi"] = "https://raw.githubusercontent.com/Wilma456/ComputercraftRom/1.0/rom/help/shellapi"
tFiles["1.0"]["help/ls"] = "https://raw.githubusercontent.com/Wilma456/ComputercraftRom/1.0/rom/help/ls"
tFiles["1.0"]["help/type"] = "https://raw.githubusercontent.com/Wilma456/ComputercraftRom/1.0/rom/help/type"
tFiles["1.0"]["help/programs"] = "https://raw.githubusercontent.com/Wilma456/ComputercraftRom/1.0/rom/help/programs"
tFiles["1.0"]["help/exit"] = "https://raw.githubusercontent.com/Wilma456/ComputercraftRom/1.0/rom/help/exit"
tFiles["1.0"]["help/events"] = "https://raw.githubusercontent.com/Wilma456/ComputercraftRom/1.0/rom/help/events"
tFiles["1.0"]["help/credits"] = "https://raw.githubusercontent.com/Wilma456/ComputercraftRom/1.0/rom/help/credits"
tFiles["1.0"]["help/adventure"] = "https://raw.githubusercontent.com/Wilma456/ComputercraftRom/1.0/rom/help/adventure"
tFiles["1.0"]["help/mv"] = "https://raw.githubusercontent.com/Wilma456/ComputercraftRom/1.0/rom/help/mv"
tFiles["1.0"]["help/rm"] = "https://raw.githubusercontent.com/Wilma456/ComputercraftRom/1.0/rom/help/rm"
tFiles["1.0"]["help/intro"] = "https://raw.githubusercontent.com/Wilma456/ComputercraftRom/1.0/rom/help/intro"
tFiles["1.0"]["programs/redpulse"] = "https://raw.githubusercontent.com/Wilma456/ComputercraftRom/1.0/rom/programs/redpulse"
tFiles["1.0"]["programs/sleep"] = "https://raw.githubusercontent.com/Wilma456/ComputercraftRom/1.0/rom/programs/sleep"
tFiles["1.0"]["programs/cp"] = "https://raw.githubusercontent.com/Wilma456/ComputercraftRom/1.0/rom/programs/cp"
tFiles["1.0"]["programs/help"] = "https://raw.githubusercontent.com/Wilma456/ComputercraftRom/1.0/rom/programs/help"
tFiles["1.0"]["programs/lua"] = "https://raw.githubusercontent.com/Wilma456/ComputercraftRom/1.0/rom/programs/lua"
tFiles["1.0"]["programs/cd"] = "https://raw.githubusercontent.com/Wilma456/ComputercraftRom/1.0/rom/programs/cd"
tFiles["1.0"]["programs/clear"] = "https://raw.githubusercontent.com/Wilma456/ComputercraftRom/1.0/rom/programs/clear"
tFiles["1.0"]["programs/mkdir"] = "https://raw.githubusercontent.com/Wilma456/ComputercraftRom/1.0/rom/programs/mkdir"
tFiles["1.0"]["programs/shutdown"] = "https://raw.githubusercontent.com/Wilma456/ComputercraftRom/1.0/rom/programs/shutdown"
tFiles["1.0"]["programs/mice"] = "https://raw.githubusercontent.com/Wilma456/ComputercraftRom/1.0/rom/programs/mice"
tFiles["1.0"]["programs/shell"] = "https://raw.githubusercontent.com/Wilma456/ComputercraftRom/1.0/rom/programs/shell"
tFiles["1.0"]["programs/edit"] = "https://raw.githubusercontent.com/Wilma456/ComputercraftRom/1.0/rom/programs/edit"
tFiles["1.0"]["programs/redprobe"] = "https://raw.githubusercontent.com/Wilma456/ComputercraftRom/1.0/rom/programs/redprobe"
tFiles["1.0"]["programs/hello"] = "https://raw.githubusercontent.com/Wilma456/ComputercraftRom/1.0/rom/programs/hello"
tFiles["1.0"]["programs/ls"] = "https://raw.githubusercontent.com/Wilma456/ComputercraftRom/1.0/rom/programs/ls"
tFiles["1.0"]["programs/type"] = "https://raw.githubusercontent.com/Wilma456/ComputercraftRom/1.0/rom/programs/type"
tFiles["1.0"]["programs/programs"] = "https://raw.githubusercontent.com/Wilma456/ComputercraftRom/1.0/rom/programs/programs"
tFiles["1.0"]["programs/exit"] = "https://raw.githubusercontent.com/Wilma456/ComputercraftRom/1.0/rom/programs/exit"
tFiles["1.0"]["programs/adventure"] = "https://raw.githubusercontent.com/Wilma456/ComputercraftRom/1.0/rom/programs/adventure"
tFiles["1.0"]["programs/mv"] = "https://raw.githubusercontent.com/Wilma456/ComputercraftRom/1.0/rom/programs/mv"
tFiles["1.0"]["programs/rm"] = "https://raw.githubusercontent.com/Wilma456/ComputercraftRom/1.0/rom/programs/rm"
tFiles["1.1"] = {}
tFiles["1.1"]["help/apis"] = "https://raw.githubusercontent.com/Wilma456/ComputercraftRom/1.1/rom/help/apis"
tFiles["1.1"]["help/redpulse"] = "https://raw.githubusercontent.com/Wilma456/ComputercraftRom/1.1/rom/help/redpulse"
tFiles["1.1"]["help/sleep"] = "https://raw.githubusercontent.com/Wilma456/ComputercraftRom/1.1/rom/help/sleep"
tFiles["1.1"]["help/colours"] = "https://raw.githubusercontent.com/Wilma456/ComputercraftRom/1.1/rom/help/colours"
tFiles["1.1"]["help/colors"] = "https://raw.githubusercontent.com/Wilma456/ComputercraftRom/1.1/rom/help/colors"
tFiles["1.1"]["help/programming"] = "https://raw.githubusercontent.com/Wilma456/ComputercraftRom/1.1/rom/help/programming"
tFiles["1.1"]["help/cp"] = "https://raw.githubusercontent.com/Wilma456/ComputercraftRom/1.1/rom/help/cp"
tFiles["1.1"]["help/fs"] = "https://raw.githubusercontent.com/Wilma456/ComputercraftRom/1.1/rom/help/fs"
tFiles["1.1"]["help/term"] = "https://raw.githubusercontent.com/Wilma456/ComputercraftRom/1.1/rom/help/term"
tFiles["1.1"]["help/help"] = "https://raw.githubusercontent.com/Wilma456/ComputercraftRom/1.1/rom/help/help"
tFiles["1.1"]["help/redstone"] = "https://raw.githubusercontent.com/Wilma456/ComputercraftRom/1.1/rom/help/redstone"
tFiles["1.1"]["help/lua"] = "https://raw.githubusercontent.com/Wilma456/ComputercraftRom/1.1/rom/help/lua"
tFiles["1.1"]["help/cd"] = "https://raw.githubusercontent.com/Wilma456/ComputercraftRom/1.1/rom/help/cd"
tFiles["1.1"]["help/clear"] = "https://raw.githubusercontent.com/Wilma456/ComputercraftRom/1.1/rom/help/clear"
tFiles["1.1"]["help/mkdir"] = "https://raw.githubusercontent.com/Wilma456/ComputercraftRom/1.1/rom/help/mkdir"
tFiles["1.1"]["help/shutdown"] = "https://raw.githubusercontent.com/Wilma456/ComputercraftRom/1.1/rom/help/shutdown"
tFiles["1.1"]["help/http"] = "https://raw.githubusercontent.com/Wilma456/ComputercraftRom/1.1/rom/help/http"
tFiles["1.1"]["help/shell"] = "https://raw.githubusercontent.com/Wilma456/ComputercraftRom/1.1/rom/help/shell"
tFiles["1.1"]["help/os"] = "https://raw.githubusercontent.com/Wilma456/ComputercraftRom/1.1/rom/help/os"
tFiles["1.1"]["help/edit"] = "https://raw.githubusercontent.com/Wilma456/ComputercraftRom/1.1/rom/help/edit"
tFiles["1.1"]["help/redprobe"] = "https://raw.githubusercontent.com/Wilma456/ComputercraftRom/1.1/rom/help/redprobe"
tFiles["1.1"]["help/hello"] = "https://raw.githubusercontent.com/Wilma456/ComputercraftRom/1.1/rom/help/hello"
tFiles["1.1"]["help/shellapi"] = "https://raw.githubusercontent.com/Wilma456/ComputercraftRom/1.1/rom/help/shellapi"
tFiles["1.1"]["help/ls"] = "https://raw.githubusercontent.com/Wilma456/ComputercraftRom/1.1/rom/help/ls"
tFiles["1.1"]["help/type"] = "https://raw.githubusercontent.com/Wilma456/ComputercraftRom/1.1/rom/help/type"
tFiles["1.1"]["help/programs"] = "https://raw.githubusercontent.com/Wilma456/ComputercraftRom/1.1/rom/help/programs"
tFiles["1.1"]["help/redpower"] = "https://raw.githubusercontent.com/Wilma456/ComputercraftRom/1.1/rom/help/redpower"
tFiles["1.1"]["help/exit"] = "https://raw.githubusercontent.com/Wilma456/ComputercraftRom/1.1/rom/help/exit"
tFiles["1.1"]["help/events"] = "https://raw.githubusercontent.com/Wilma456/ComputercraftRom/1.1/rom/help/events"
tFiles["1.1"]["help/credits"] = "https://raw.githubusercontent.com/Wilma456/ComputercraftRom/1.1/rom/help/credits"
tFiles["1.1"]["help/adventure"] = "https://raw.githubusercontent.com/Wilma456/ComputercraftRom/1.1/rom/help/adventure"
tFiles["1.1"]["help/mv"] = "https://raw.githubusercontent.com/Wilma456/ComputercraftRom/1.1/rom/help/mv"
tFiles["1.1"]["help/rm"] = "https://raw.githubusercontent.com/Wilma456/ComputercraftRom/1.1/rom/help/rm"
tFiles["1.1"]["help/intro"] = "https://raw.githubusercontent.com/Wilma456/ComputercraftRom/1.1/rom/help/intro"
tFiles["1.1"]["programs/redpulse"] = "https://raw.githubusercontent.com/Wilma456/ComputercraftRom/1.1/rom/programs/redpulse"
tFiles["1.1"]["programs/sleep"] = "https://raw.githubusercontent.com/Wilma456/ComputercraftRom/1.1/rom/programs/sleep"
tFiles["1.1"]["programs/cp"] = "https://raw.githubusercontent.com/Wilma456/ComputercraftRom/1.1/rom/programs/cp"
tFiles["1.1"]["programs/help"] = "https://raw.githubusercontent.com/Wilma456/ComputercraftRom/1.1/rom/programs/help"
tFiles["1.1"]["programs/lua"] = "https://raw.githubusercontent.com/Wilma456/ComputercraftRom/1.1/rom/programs/lua"
tFiles["1.1"]["programs/cd"] = "https://raw.githubusercontent.com/Wilma456/ComputercraftRom/1.1/rom/programs/cd"
tFiles["1.1"]["programs/clear"] = "https://raw.githubusercontent.com/Wilma456/ComputercraftRom/1.1/rom/programs/clear"
tFiles["1.1"]["programs/mkdir"] = "https://raw.githubusercontent.com/Wilma456/ComputercraftRom/1.1/rom/programs/mkdir"
tFiles["1.1"]["programs/shutdown"] = "https://raw.githubusercontent.com/Wilma456/ComputercraftRom/1.1/rom/programs/shutdown"
tFiles["1.1"]["programs/mice"] = "https://raw.githubusercontent.com/Wilma456/ComputercraftRom/1.1/rom/programs/mice"
tFiles["1.1"]["programs/shell"] = "https://raw.githubusercontent.com/Wilma456/ComputercraftRom/1.1/rom/programs/shell"
tFiles["1.1"]["programs/edit"] = "https://raw.githubusercontent.com/Wilma456/ComputercraftRom/1.1/rom/programs/edit"
tFiles["1.1"]["programs/redprobe"] = "https://raw.githubusercontent.com/Wilma456/ComputercraftRom/1.1/rom/programs/redprobe"
tFiles["1.1"]["programs/hello"] = "https://raw.githubusercontent.com/Wilma456/ComputercraftRom/1.1/rom/programs/hello"
tFiles["1.1"]["programs/ls"] = "https://raw.githubusercontent.com/Wilma456/ComputercraftRom/1.1/rom/programs/ls"
tFiles["1.1"]["programs/type"] = "https://raw.githubusercontent.com/Wilma456/ComputercraftRom/1.1/rom/programs/type"
tFiles["1.1"]["programs/programs"] = "https://raw.githubusercontent.com/Wilma456/ComputercraftRom/1.1/rom/programs/programs"
tFiles["1.1"]["programs/exit"] = "https://raw.githubusercontent.com/Wilma456/ComputercraftRom/1.1/rom/programs/exit"
tFiles["1.1"]["programs/adventure"] = "https://raw.githubusercontent.com/Wilma456/ComputercraftRom/1.1/rom/programs/adventure"
tFiles["1.1"]["programs/mv"] = "https://raw.githubusercontent.com/Wilma456/ComputercraftRom/1.1/rom/programs/mv"
tFiles["1.1"]["programs/rm"] = "https://raw.githubusercontent.com/Wilma456/ComputercraftRom/1.1/rom/programs/rm"
tFiles["1.2"] = {}
tFiles["1.2"]["apis/colours"] = "https://raw.githubusercontent.com/Wilma456/ComputercraftRom/1.2/rom/apis/colours"
tFiles["1.2"]["apis/colors"] = "https://raw.githubusercontent.com/Wilma456/ComputercraftRom/1.2/rom/apis/colors"
tFiles["1.2"]["apis/rednet"] = "https://raw.githubusercontent.com/Wilma456/ComputercraftRom/1.2/rom/apis/rednet"
tFiles["1.2"]["apis/io"] = "https://raw.githubusercontent.com/Wilma456/ComputercraftRom/1.2/rom/apis/io"
tFiles["1.2"]["apis/help"] = "https://raw.githubusercontent.com/Wilma456/ComputercraftRom/1.2/rom/apis/help"
tFiles["1.2"]["apis/bit"] = "https://raw.githubusercontent.com/Wilma456/ComputercraftRom/1.2/rom/apis/bit"
tFiles["1.2"]["apis/parallel"] = "https://raw.githubusercontent.com/Wilma456/ComputercraftRom/1.2/rom/apis/parallel"
tFiles["1.2"]["apis/textutils"] = "https://raw.githubusercontent.com/Wilma456/ComputercraftRom/1.2/rom/apis/textutils"
tFiles["1.2"]["help/coroutine"] = "https://raw.githubusercontent.com/Wilma456/ComputercraftRom/1.2/rom/help/coroutine"
tFiles["1.2"]["help/helpapi"] = "https://raw.githubusercontent.com/Wilma456/ComputercraftRom/1.2/rom/help/helpapi"
tFiles["1.2"]["help/apis"] = "https://raw.githubusercontent.com/Wilma456/ComputercraftRom/1.2/rom/help/apis"
tFiles["1.2"]["help/redpulse"] = "https://raw.githubusercontent.com/Wilma456/ComputercraftRom/1.2/rom/help/redpulse"
tFiles["1.2"]["help/worm"] = "https://raw.githubusercontent.com/Wilma456/ComputercraftRom/1.2/rom/help/worm"
tFiles["1.2"]["help/move"] = "https://raw.githubusercontent.com/Wilma456/ComputercraftRom/1.2/rom/help/move"
tFiles["1.2"]["help/sleep"] = "https://raw.githubusercontent.com/Wilma456/ComputercraftRom/1.2/rom/help/sleep"
tFiles["1.2"]["help/colours"] = "https://raw.githubusercontent.com/Wilma456/ComputercraftRom/1.2/rom/help/colours"
tFiles["1.2"]["help/colors"] = "https://raw.githubusercontent.com/Wilma456/ComputercraftRom/1.2/rom/help/colors"
tFiles["1.2"]["help/whatsnew"] = "https://raw.githubusercontent.com/Wilma456/ComputercraftRom/1.2/rom/help/whatsnew"
tFiles["1.2"]["help/programming"] = "https://raw.githubusercontent.com/Wilma456/ComputercraftRom/1.2/rom/help/programming"
tFiles["1.2"]["help/rednet"] = "https://raw.githubusercontent.com/Wilma456/ComputercraftRom/1.2/rom/help/rednet"
tFiles["1.2"]["help/io"] = "https://raw.githubusercontent.com/Wilma456/ComputercraftRom/1.2/rom/help/io"
tFiles["1.2"]["help/fs"] = "https://raw.githubusercontent.com/Wilma456/ComputercraftRom/1.2/rom/help/fs"
tFiles["1.2"]["help/term"] = "https://raw.githubusercontent.com/Wilma456/ComputercraftRom/1.2/rom/help/term"
tFiles["1.2"]["help/help"] = "https://raw.githubusercontent.com/Wilma456/ComputercraftRom/1.2/rom/help/help"
tFiles["1.2"]["help/redstone"] = "https://raw.githubusercontent.com/Wilma456/ComputercraftRom/1.2/rom/help/redstone"
tFiles["1.2"]["help/eject"] = "https://raw.githubusercontent.com/Wilma456/ComputercraftRom/1.2/rom/help/eject"
tFiles["1.2"]["help/time"] = "https://raw.githubusercontent.com/Wilma456/ComputercraftRom/1.2/rom/help/time"
tFiles["1.2"]["help/lua"] = "https://raw.githubusercontent.com/Wilma456/ComputercraftRom/1.2/rom/help/lua"
tFiles["1.2"]["help/bit"] = "https://raw.githubusercontent.com/Wilma456/ComputercraftRom/1.2/rom/help/bit"
tFiles["1.2"]["help/cd"] = "https://raw.githubusercontent.com/Wilma456/ComputercraftRom/1.2/rom/help/cd"
tFiles["1.2"]["help/id"] = "https://raw.githubusercontent.com/Wilma456/ComputercraftRom/1.2/rom/help/id"
tFiles["1.2"]["help/clear"] = "https://raw.githubusercontent.com/Wilma456/ComputercraftRom/1.2/rom/help/clear"
tFiles["1.2"]["help/mkdir"] = "https://raw.githubusercontent.com/Wilma456/ComputercraftRom/1.2/rom/help/mkdir"
tFiles["1.2"]["help/redset"] = "https://raw.githubusercontent.com/Wilma456/ComputercraftRom/1.2/rom/help/redset"
tFiles["1.2"]["help/shutdown"] = "https://raw.githubusercontent.com/Wilma456/ComputercraftRom/1.2/rom/help/shutdown"
tFiles["1.2"]["help/drive"] = "https://raw.githubusercontent.com/Wilma456/ComputercraftRom/1.2/rom/help/drive"
tFiles["1.2"]["help/parallel"] = "https://raw.githubusercontent.com/Wilma456/ComputercraftRom/1.2/rom/help/parallel"
tFiles["1.2"]["help/http"] = "https://raw.githubusercontent.com/Wilma456/ComputercraftRom/1.2/rom/help/http"
tFiles["1.2"]["help/shell"] = "https://raw.githubusercontent.com/Wilma456/ComputercraftRom/1.2/rom/help/shell"
tFiles["1.2"]["help/alias"] = "https://raw.githubusercontent.com/Wilma456/ComputercraftRom/1.2/rom/help/alias"
tFiles["1.2"]["help/os"] = "https://raw.githubusercontent.com/Wilma456/ComputercraftRom/1.2/rom/help/os"
tFiles["1.2"]["help/label"] = "https://raw.githubusercontent.com/Wilma456/ComputercraftRom/1.2/rom/help/label"
tFiles["1.2"]["help/edit"] = "https://raw.githubusercontent.com/Wilma456/ComputercraftRom/1.2/rom/help/edit"
tFiles["1.2"]["help/textutils"] = "https://raw.githubusercontent.com/Wilma456/ComputercraftRom/1.2/rom/help/textutils"
tFiles["1.2"]["help/rs"] = "https://raw.githubusercontent.com/Wilma456/ComputercraftRom/1.2/rom/help/rs"
tFiles["1.2"]["help/rename"] = "https://raw.githubusercontent.com/Wilma456/ComputercraftRom/1.2/rom/help/rename"
tFiles["1.2"]["help/reboot"] = "https://raw.githubusercontent.com/Wilma456/ComputercraftRom/1.2/rom/help/reboot"
tFiles["1.2"]["help/redprobe"] = "https://raw.githubusercontent.com/Wilma456/ComputercraftRom/1.2/rom/help/redprobe"
tFiles["1.2"]["help/list"] = "https://raw.githubusercontent.com/Wilma456/ComputercraftRom/1.2/rom/help/list"
tFiles["1.2"]["help/copy"] = "https://raw.githubusercontent.com/Wilma456/ComputercraftRom/1.2/rom/help/copy"
tFiles["1.2"]["help/math"] = "https://raw.githubusercontent.com/Wilma456/ComputercraftRom/1.2/rom/help/math"
tFiles["1.2"]["help/hello"] = "https://raw.githubusercontent.com/Wilma456/ComputercraftRom/1.2/rom/help/hello"
tFiles["1.2"]["help/shellapi"] = "https://raw.githubusercontent.com/Wilma456/ComputercraftRom/1.2/rom/help/shellapi"
tFiles["1.2"]["help/type"] = "https://raw.githubusercontent.com/Wilma456/ComputercraftRom/1.2/rom/help/type"
tFiles["1.2"]["help/string"] = "https://raw.githubusercontent.com/Wilma456/ComputercraftRom/1.2/rom/help/string"
tFiles["1.2"]["help/disk"] = "https://raw.githubusercontent.com/Wilma456/ComputercraftRom/1.2/rom/help/disk"
tFiles["1.2"]["help/programs"] = "https://raw.githubusercontent.com/Wilma456/ComputercraftRom/1.2/rom/help/programs"
tFiles["1.2"]["help/redpower"] = "https://raw.githubusercontent.com/Wilma456/ComputercraftRom/1.2/rom/help/redpower"
tFiles["1.2"]["help/exit"] = "https://raw.githubusercontent.com/Wilma456/ComputercraftRom/1.2/rom/help/exit"
tFiles["1.2"]["help/table"] = "https://raw.githubusercontent.com/Wilma456/ComputercraftRom/1.2/rom/help/table"
tFiles["1.2"]["help/events"] = "https://raw.githubusercontent.com/Wilma456/ComputercraftRom/1.2/rom/help/events"
tFiles["1.2"]["help/credits"] = "https://raw.githubusercontent.com/Wilma456/ComputercraftRom/1.2/rom/help/credits"
tFiles["1.2"]["help/adventure"] = "https://raw.githubusercontent.com/Wilma456/ComputercraftRom/1.2/rom/help/adventure"
tFiles["1.2"]["help/dj"] = "https://raw.githubusercontent.com/Wilma456/ComputercraftRom/1.2/rom/help/dj"
tFiles["1.2"]["help/delete"] = "https://raw.githubusercontent.com/Wilma456/ComputercraftRom/1.2/rom/help/delete"
tFiles["1.2"]["help/intro"] = "https://raw.githubusercontent.com/Wilma456/ComputercraftRom/1.2/rom/help/intro"
tFiles["1.2"]["startup"] = "https://raw.githubusercontent.com/Wilma456/ComputercraftRom/1.2/rom/startup"
tFiles["1.2"]["programs/apis"] = "https://raw.githubusercontent.com/Wilma456/ComputercraftRom/1.2/rom/programs/apis"
tFiles["1.2"]["programs/redpulse"] = "https://raw.githubusercontent.com/Wilma456/ComputercraftRom/1.2/rom/programs/redpulse"
tFiles["1.2"]["programs/worm"] = "https://raw.githubusercontent.com/Wilma456/ComputercraftRom/1.2/rom/programs/worm"
tFiles["1.2"]["programs/move"] = "https://raw.githubusercontent.com/Wilma456/ComputercraftRom/1.2/rom/programs/move"
tFiles["1.2"]["programs/sleep"] = "https://raw.githubusercontent.com/Wilma456/ComputercraftRom/1.2/rom/programs/sleep"
tFiles["1.2"]["programs/help"] = "https://raw.githubusercontent.com/Wilma456/ComputercraftRom/1.2/rom/programs/help"
tFiles["1.2"]["programs/eject"] = "https://raw.githubusercontent.com/Wilma456/ComputercraftRom/1.2/rom/programs/eject"
tFiles["1.2"]["programs/time"] = "https://raw.githubusercontent.com/Wilma456/ComputercraftRom/1.2/rom/programs/time"
tFiles["1.2"]["programs/lua"] = "https://raw.githubusercontent.com/Wilma456/ComputercraftRom/1.2/rom/programs/lua"
tFiles["1.2"]["programs/cd"] = "https://raw.githubusercontent.com/Wilma456/ComputercraftRom/1.2/rom/programs/cd"
tFiles["1.2"]["programs/id"] = "https://raw.githubusercontent.com/Wilma456/ComputercraftRom/1.2/rom/programs/id"
tFiles["1.2"]["programs/clear"] = "https://raw.githubusercontent.com/Wilma456/ComputercraftRom/1.2/rom/programs/clear"
tFiles["1.2"]["programs/mkdir"] = "https://raw.githubusercontent.com/Wilma456/ComputercraftRom/1.2/rom/programs/mkdir"
tFiles["1.2"]["programs/redset"] = "https://raw.githubusercontent.com/Wilma456/ComputercraftRom/1.2/rom/programs/redset"
tFiles["1.2"]["programs/shutdown"] = "https://raw.githubusercontent.com/Wilma456/ComputercraftRom/1.2/rom/programs/shutdown"
tFiles["1.2"]["programs/drive"] = "https://raw.githubusercontent.com/Wilma456/ComputercraftRom/1.2/rom/programs/drive"
tFiles["1.2"]["programs/shell"] = "https://raw.githubusercontent.com/Wilma456/ComputercraftRom/1.2/rom/programs/shell"
tFiles["1.2"]["programs/alias"] = "https://raw.githubusercontent.com/Wilma456/ComputercraftRom/1.2/rom/programs/alias"
tFiles["1.2"]["programs/label"] = "https://raw.githubusercontent.com/Wilma456/ComputercraftRom/1.2/rom/programs/label"
tFiles["1.2"]["programs/edit"] = "https://raw.githubusercontent.com/Wilma456/ComputercraftRom/1.2/rom/programs/edit"
tFiles["1.2"]["programs/rename"] = "https://raw.githubusercontent.com/Wilma456/ComputercraftRom/1.2/rom/programs/rename"
tFiles["1.2"]["programs/reboot"] = "https://raw.githubusercontent.com/Wilma456/ComputercraftRom/1.2/rom/programs/reboot"
tFiles["1.2"]["programs/redprobe"] = "https://raw.githubusercontent.com/Wilma456/ComputercraftRom/1.2/rom/programs/redprobe"
tFiles["1.2"]["programs/list"] = "https://raw.githubusercontent.com/Wilma456/ComputercraftRom/1.2/rom/programs/list"
tFiles["1.2"]["programs/copy"] = "https://raw.githubusercontent.com/Wilma456/ComputercraftRom/1.2/rom/programs/copy"
tFiles["1.2"]["programs/hello"] = "https://raw.githubusercontent.com/Wilma456/ComputercraftRom/1.2/rom/programs/hello"
tFiles["1.2"]["programs/type"] = "https://raw.githubusercontent.com/Wilma456/ComputercraftRom/1.2/rom/programs/type"
tFiles["1.2"]["programs/programs"] = "https://raw.githubusercontent.com/Wilma456/ComputercraftRom/1.2/rom/programs/programs"
tFiles["1.2"]["programs/exit"] = "https://raw.githubusercontent.com/Wilma456/ComputercraftRom/1.2/rom/programs/exit"
tFiles["1.2"]["programs/adventure"] = "https://raw.githubusercontent.com/Wilma456/ComputercraftRom/1.2/rom/programs/adventure"
tFiles["1.2"]["programs/dj"] = "https://raw.githubusercontent.com/Wilma456/ComputercraftRom/1.2/rom/programs/dj"
tFiles["1.2"]["programs/delete"] = "https://raw.githubusercontent.com/Wilma456/ComputercraftRom/1.2/rom/programs/delete"
tFiles["1.3"] = {}
tFiles["1.3"]["apis/turtle/turtle"] = "https://raw.githubusercontent.com/Wilma456/ComputercraftRom/1.3/rom/apis/turtle/turtle"
tFiles["1.3"]["apis/colours"] = "https://raw.githubusercontent.com/Wilma456/ComputercraftRom/1.3/rom/apis/colours"
tFiles["1.3"]["apis/colors"] = "https://raw.githubusercontent.com/Wilma456/ComputercraftRom/1.3/rom/apis/colors"
tFiles["1.3"]["apis/rednet"] = "https://raw.githubusercontent.com/Wilma456/ComputercraftRom/1.3/rom/apis/rednet"
tFiles["1.3"]["apis/io"] = "https://raw.githubusercontent.com/Wilma456/ComputercraftRom/1.3/rom/apis/io"
tFiles["1.3"]["apis/term"] = "https://raw.githubusercontent.com/Wilma456/ComputercraftRom/1.3/rom/apis/term"
tFiles["1.3"]["apis/vector"] = "https://raw.githubusercontent.com/Wilma456/ComputercraftRom/1.3/rom/apis/vector"
tFiles["1.3"]["apis/help"] = "https://raw.githubusercontent.com/Wilma456/ComputercraftRom/1.3/rom/apis/help"
tFiles["1.3"]["apis/bit"] = "https://raw.githubusercontent.com/Wilma456/ComputercraftRom/1.3/rom/apis/bit"
tFiles["1.3"]["apis/parallel"] = "https://raw.githubusercontent.com/Wilma456/ComputercraftRom/1.3/rom/apis/parallel"
tFiles["1.3"]["apis/gps"] = "https://raw.githubusercontent.com/Wilma456/ComputercraftRom/1.3/rom/apis/gps"
tFiles["1.3"]["apis/textutils"] = "https://raw.githubusercontent.com/Wilma456/ComputercraftRom/1.3/rom/apis/textutils"
tFiles["1.3"]["apis/disk"] = "https://raw.githubusercontent.com/Wilma456/ComputercraftRom/1.3/rom/apis/disk"
tFiles["1.3"]["help/coroutine"] = "https://raw.githubusercontent.com/Wilma456/ComputercraftRom/1.3/rom/help/coroutine"
tFiles["1.3"]["help/helpapi"] = "https://raw.githubusercontent.com/Wilma456/ComputercraftRom/1.3/rom/help/helpapi"
tFiles["1.3"]["help/apis"] = "https://raw.githubusercontent.com/Wilma456/ComputercraftRom/1.3/rom/help/apis"
tFiles["1.3"]["help/turtle"] = "https://raw.githubusercontent.com/Wilma456/ComputercraftRom/1.3/rom/help/turtle"
tFiles["1.3"]["help/redpulse"] = "https://raw.githubusercontent.com/Wilma456/ComputercraftRom/1.3/rom/help/redpulse"
tFiles["1.3"]["help/worm"] = "https://raw.githubusercontent.com/Wilma456/ComputercraftRom/1.3/rom/help/worm"
tFiles["1.3"]["help/move"] = "https://raw.githubusercontent.com/Wilma456/ComputercraftRom/1.3/rom/help/move"
tFiles["1.3"]["help/sleep"] = "https://raw.githubusercontent.com/Wilma456/ComputercraftRom/1.3/rom/help/sleep"
tFiles["1.3"]["help/colours"] = "https://raw.githubusercontent.com/Wilma456/ComputercraftRom/1.3/rom/help/colours"
tFiles["1.3"]["help/colors"] = "https://raw.githubusercontent.com/Wilma456/ComputercraftRom/1.3/rom/help/colors"
tFiles["1.3"]["help/whatsnew"] = "https://raw.githubusercontent.com/Wilma456/ComputercraftRom/1.3/rom/help/whatsnew"
tFiles["1.3"]["help/pastebin"] = "https://raw.githubusercontent.com/Wilma456/ComputercraftRom/1.3/rom/help/pastebin"
tFiles["1.3"]["help/programming"] = "https://raw.githubusercontent.com/Wilma456/ComputercraftRom/1.3/rom/help/programming"
tFiles["1.3"]["help/rednet"] = "https://raw.githubusercontent.com/Wilma456/ComputercraftRom/1.3/rom/help/rednet"
tFiles["1.3"]["help/io"] = "https://raw.githubusercontent.com/Wilma456/ComputercraftRom/1.3/rom/help/io"
tFiles["1.3"]["help/fs"] = "https://raw.githubusercontent.com/Wilma456/ComputercraftRom/1.3/rom/help/fs"
tFiles["1.3"]["help/term"] = "https://raw.githubusercontent.com/Wilma456/ComputercraftRom/1.3/rom/help/term"
tFiles["1.3"]["help/vector"] = "https://raw.githubusercontent.com/Wilma456/ComputercraftRom/1.3/rom/help/vector"
tFiles["1.3"]["help/help"] = "https://raw.githubusercontent.com/Wilma456/ComputercraftRom/1.3/rom/help/help"
tFiles["1.3"]["help/tunnel"] = "https://raw.githubusercontent.com/Wilma456/ComputercraftRom/1.3/rom/help/tunnel"
tFiles["1.3"]["help/redstone"] = "https://raw.githubusercontent.com/Wilma456/ComputercraftRom/1.3/rom/help/redstone"
tFiles["1.3"]["help/eject"] = "https://raw.githubusercontent.com/Wilma456/ComputercraftRom/1.3/rom/help/eject"
tFiles["1.3"]["help/time"] = "https://raw.githubusercontent.com/Wilma456/ComputercraftRom/1.3/rom/help/time"
tFiles["1.3"]["help/lua"] = "https://raw.githubusercontent.com/Wilma456/ComputercraftRom/1.3/rom/help/lua"
tFiles["1.3"]["help/bit"] = "https://raw.githubusercontent.com/Wilma456/ComputercraftRom/1.3/rom/help/bit"
tFiles["1.3"]["help/cd"] = "https://raw.githubusercontent.com/Wilma456/ComputercraftRom/1.3/rom/help/cd"
tFiles["1.3"]["help/id"] = "https://raw.githubusercontent.com/Wilma456/ComputercraftRom/1.3/rom/help/id"
tFiles["1.3"]["help/clear"] = "https://raw.githubusercontent.com/Wilma456/ComputercraftRom/1.3/rom/help/clear"
tFiles["1.3"]["help/mkdir"] = "https://raw.githubusercontent.com/Wilma456/ComputercraftRom/1.3/rom/help/mkdir"
tFiles["1.3"]["help/redset"] = "https://raw.githubusercontent.com/Wilma456/ComputercraftRom/1.3/rom/help/redset"
tFiles["1.3"]["help/shutdown"] = "https://raw.githubusercontent.com/Wilma456/ComputercraftRom/1.3/rom/help/shutdown"
tFiles["1.3"]["help/drive"] = "https://raw.githubusercontent.com/Wilma456/ComputercraftRom/1.3/rom/help/drive"
tFiles["1.3"]["help/parallel"] = "https://raw.githubusercontent.com/Wilma456/ComputercraftRom/1.3/rom/help/parallel"
tFiles["1.3"]["help/http"] = "https://raw.githubusercontent.com/Wilma456/ComputercraftRom/1.3/rom/help/http"
tFiles["1.3"]["help/shell"] = "https://raw.githubusercontent.com/Wilma456/ComputercraftRom/1.3/rom/help/shell"
tFiles["1.3"]["help/whatsnew1.2"] = "https://raw.githubusercontent.com/Wilma456/ComputercraftRom/1.3/rom/help/whatsnew1.2"
tFiles["1.3"]["help/alias"] = "https://raw.githubusercontent.com/Wilma456/ComputercraftRom/1.3/rom/help/alias"
tFiles["1.3"]["help/os"] = "https://raw.githubusercontent.com/Wilma456/ComputercraftRom/1.3/rom/help/os"
tFiles["1.3"]["help/label"] = "https://raw.githubusercontent.com/Wilma456/ComputercraftRom/1.3/rom/help/label"
tFiles["1.3"]["help/edit"] = "https://raw.githubusercontent.com/Wilma456/ComputercraftRom/1.3/rom/help/edit"
tFiles["1.3"]["help/gps"] = "https://raw.githubusercontent.com/Wilma456/ComputercraftRom/1.3/rom/help/gps"
tFiles["1.3"]["help/go"] = "https://raw.githubusercontent.com/Wilma456/ComputercraftRom/1.3/rom/help/go"
tFiles["1.3"]["help/textutils"] = "https://raw.githubusercontent.com/Wilma456/ComputercraftRom/1.3/rom/help/textutils"
tFiles["1.3"]["help/rs"] = "https://raw.githubusercontent.com/Wilma456/ComputercraftRom/1.3/rom/help/rs"
tFiles["1.3"]["help/dance"] = "https://raw.githubusercontent.com/Wilma456/ComputercraftRom/1.3/rom/help/dance"
tFiles["1.3"]["help/rename"] = "https://raw.githubusercontent.com/Wilma456/ComputercraftRom/1.3/rom/help/rename"
tFiles["1.3"]["help/reboot"] = "https://raw.githubusercontent.com/Wilma456/ComputercraftRom/1.3/rom/help/reboot"
tFiles["1.3"]["help/redprobe"] = "https://raw.githubusercontent.com/Wilma456/ComputercraftRom/1.3/rom/help/redprobe"
tFiles["1.3"]["help/list"] = "https://raw.githubusercontent.com/Wilma456/ComputercraftRom/1.3/rom/help/list"
tFiles["1.3"]["help/copy"] = "https://raw.githubusercontent.com/Wilma456/ComputercraftRom/1.3/rom/help/copy"
tFiles["1.3"]["help/math"] = "https://raw.githubusercontent.com/Wilma456/ComputercraftRom/1.3/rom/help/math"
tFiles["1.3"]["help/hello"] = "https://raw.githubusercontent.com/Wilma456/ComputercraftRom/1.3/rom/help/hello"
tFiles["1.3"]["help/shellapi"] = "https://raw.githubusercontent.com/Wilma456/ComputercraftRom/1.3/rom/help/shellapi"
tFiles["1.3"]["help/peripheral"] = "https://raw.githubusercontent.com/Wilma456/ComputercraftRom/1.3/rom/help/peripheral"
tFiles["1.3"]["help/type"] = "https://raw.githubusercontent.com/Wilma456/ComputercraftRom/1.3/rom/help/type"
tFiles["1.3"]["help/string"] = "https://raw.githubusercontent.com/Wilma456/ComputercraftRom/1.3/rom/help/string"
tFiles["1.3"]["help/whatsnew1.3"] = "https://raw.githubusercontent.com/Wilma456/ComputercraftRom/1.3/rom/help/whatsnew1.3"
tFiles["1.3"]["help/disk"] = "https://raw.githubusercontent.com/Wilma456/ComputercraftRom/1.3/rom/help/disk"
tFiles["1.3"]["help/programs"] = "https://raw.githubusercontent.com/Wilma456/ComputercraftRom/1.3/rom/help/programs"
tFiles["1.3"]["help/redpower"] = "https://raw.githubusercontent.com/Wilma456/ComputercraftRom/1.3/rom/help/redpower"
tFiles["1.3"]["help/excavate"] = "https://raw.githubusercontent.com/Wilma456/ComputercraftRom/1.3/rom/help/excavate"
tFiles["1.3"]["help/monitor"] = "https://raw.githubusercontent.com/Wilma456/ComputercraftRom/1.3/rom/help/monitor"
tFiles["1.3"]["help/exit"] = "https://raw.githubusercontent.com/Wilma456/ComputercraftRom/1.3/rom/help/exit"
tFiles["1.3"]["help/table"] = "https://raw.githubusercontent.com/Wilma456/ComputercraftRom/1.3/rom/help/table"
tFiles["1.3"]["help/earth"] = "https://raw.githubusercontent.com/Wilma456/ComputercraftRom/1.3/rom/help/earth"
tFiles["1.3"]["help/turn"] = "https://raw.githubusercontent.com/Wilma456/ComputercraftRom/1.3/rom/help/turn"
tFiles["1.3"]["help/events"] = "https://raw.githubusercontent.com/Wilma456/ComputercraftRom/1.3/rom/help/events"
tFiles["1.3"]["help/gpsapi"] = "https://raw.githubusercontent.com/Wilma456/ComputercraftRom/1.3/rom/help/gpsapi"
tFiles["1.3"]["help/credits"] = "https://raw.githubusercontent.com/Wilma456/ComputercraftRom/1.3/rom/help/credits"
tFiles["1.3"]["help/adventure"] = "https://raw.githubusercontent.com/Wilma456/ComputercraftRom/1.3/rom/help/adventure"
tFiles["1.3"]["help/dj"] = "https://raw.githubusercontent.com/Wilma456/ComputercraftRom/1.3/rom/help/dj"
tFiles["1.3"]["help/delete"] = "https://raw.githubusercontent.com/Wilma456/ComputercraftRom/1.3/rom/help/delete"
tFiles["1.3"]["help/intro"] = "https://raw.githubusercontent.com/Wilma456/ComputercraftRom/1.3/rom/help/intro"
tFiles["1.3"]["startup"] = "https://raw.githubusercontent.com/Wilma456/ComputercraftRom/1.3/rom/startup"
tFiles["1.3"]["programs/apis"] = "https://raw.githubusercontent.com/Wilma456/ComputercraftRom/1.3/rom/programs/apis"
tFiles["1.3"]["programs/turtle/tunnel"] = "https://raw.githubusercontent.com/Wilma456/ComputercraftRom/1.3/rom/programs/turtle/tunnel"
tFiles["1.3"]["programs/turtle/go"] = "https://raw.githubusercontent.com/Wilma456/ComputercraftRom/1.3/rom/programs/turtle/go"
tFiles["1.3"]["programs/turtle/dance"] = "https://raw.githubusercontent.com/Wilma456/ComputercraftRom/1.3/rom/programs/turtle/dance"
tFiles["1.3"]["programs/turtle/excavate"] = "https://raw.githubusercontent.com/Wilma456/ComputercraftRom/1.3/rom/programs/turtle/excavate"
tFiles["1.3"]["programs/turtle/turn"] = "https://raw.githubusercontent.com/Wilma456/ComputercraftRom/1.3/rom/programs/turtle/turn"
tFiles["1.3"]["programs/redpulse"] = "https://raw.githubusercontent.com/Wilma456/ComputercraftRom/1.3/rom/programs/redpulse"
tFiles["1.3"]["programs/move"] = "https://raw.githubusercontent.com/Wilma456/ComputercraftRom/1.3/rom/programs/move"
tFiles["1.3"]["programs/computer/worm"] = "https://raw.githubusercontent.com/Wilma456/ComputercraftRom/1.3/rom/programs/computer/worm"
tFiles["1.3"]["programs/computer/hello"] = "https://raw.githubusercontent.com/Wilma456/ComputercraftRom/1.3/rom/programs/computer/hello"
tFiles["1.3"]["programs/computer/adventure"] = "https://raw.githubusercontent.com/Wilma456/ComputercraftRom/1.3/rom/programs/computer/adventure"
tFiles["1.3"]["programs/help"] = "https://raw.githubusercontent.com/Wilma456/ComputercraftRom/1.3/rom/programs/help"
tFiles["1.3"]["programs/eject"] = "https://raw.githubusercontent.com/Wilma456/ComputercraftRom/1.3/rom/programs/eject"
tFiles["1.3"]["programs/time"] = "https://raw.githubusercontent.com/Wilma456/ComputercraftRom/1.3/rom/programs/time"
tFiles["1.3"]["programs/lua"] = "https://raw.githubusercontent.com/Wilma456/ComputercraftRom/1.3/rom/programs/lua"
tFiles["1.3"]["programs/cd"] = "https://raw.githubusercontent.com/Wilma456/ComputercraftRom/1.3/rom/programs/cd"
tFiles["1.3"]["programs/id"] = "https://raw.githubusercontent.com/Wilma456/ComputercraftRom/1.3/rom/programs/id"
tFiles["1.3"]["programs/clear"] = "https://raw.githubusercontent.com/Wilma456/ComputercraftRom/1.3/rom/programs/clear"
tFiles["1.3"]["programs/mkdir"] = "https://raw.githubusercontent.com/Wilma456/ComputercraftRom/1.3/rom/programs/mkdir"
tFiles["1.3"]["programs/redset"] = "https://raw.githubusercontent.com/Wilma456/ComputercraftRom/1.3/rom/programs/redset"
tFiles["1.3"]["programs/shutdown"] = "https://raw.githubusercontent.com/Wilma456/ComputercraftRom/1.3/rom/programs/shutdown"
tFiles["1.3"]["programs/drive"] = "https://raw.githubusercontent.com/Wilma456/ComputercraftRom/1.3/rom/programs/drive"
tFiles["1.3"]["programs/http/pastebin"] = "https://raw.githubusercontent.com/Wilma456/ComputercraftRom/1.3/rom/programs/http/pastebin"
tFiles["1.3"]["programs/shell"] = "https://raw.githubusercontent.com/Wilma456/ComputercraftRom/1.3/rom/programs/shell"
tFiles["1.3"]["programs/alias"] = "https://raw.githubusercontent.com/Wilma456/ComputercraftRom/1.3/rom/programs/alias"
tFiles["1.3"]["programs/label"] = "https://raw.githubusercontent.com/Wilma456/ComputercraftRom/1.3/rom/programs/label"
tFiles["1.3"]["programs/edit"] = "https://raw.githubusercontent.com/Wilma456/ComputercraftRom/1.3/rom/programs/edit"
tFiles["1.3"]["programs/gps"] = "https://raw.githubusercontent.com/Wilma456/ComputercraftRom/1.3/rom/programs/gps"
tFiles["1.3"]["programs/rename"] = "https://raw.githubusercontent.com/Wilma456/ComputercraftRom/1.3/rom/programs/rename"
tFiles["1.3"]["programs/reboot"] = "https://raw.githubusercontent.com/Wilma456/ComputercraftRom/1.3/rom/programs/reboot"
tFiles["1.3"]["programs/redprobe"] = "https://raw.githubusercontent.com/Wilma456/ComputercraftRom/1.3/rom/programs/redprobe"
tFiles["1.3"]["programs/list"] = "https://raw.githubusercontent.com/Wilma456/ComputercraftRom/1.3/rom/programs/list"
tFiles["1.3"]["programs/copy"] = "https://raw.githubusercontent.com/Wilma456/ComputercraftRom/1.3/rom/programs/copy"
tFiles["1.3"]["programs/type"] = "https://raw.githubusercontent.com/Wilma456/ComputercraftRom/1.3/rom/programs/type"
tFiles["1.3"]["programs/programs"] = "https://raw.githubusercontent.com/Wilma456/ComputercraftRom/1.3/rom/programs/programs"
tFiles["1.3"]["programs/monitor"] = "https://raw.githubusercontent.com/Wilma456/ComputercraftRom/1.3/rom/programs/monitor"
tFiles["1.3"]["programs/exit"] = "https://raw.githubusercontent.com/Wilma456/ComputercraftRom/1.3/rom/programs/exit"
tFiles["1.3"]["programs/secret/alongtimeago"] = "https://raw.githubusercontent.com/Wilma456/ComputercraftRom/1.3/rom/programs/secret/alongtimeago"
tFiles["1.3"]["programs/dj"] = "https://raw.githubusercontent.com/Wilma456/ComputercraftRom/1.3/rom/programs/dj"
tFiles["1.3"]["programs/delete"] = "https://raw.githubusercontent.com/Wilma456/ComputercraftRom/1.3/rom/programs/delete"
tFiles["1.4"] = {}
tFiles["1.4"]["apis/turtle/turtle"] = "https://raw.githubusercontent.com/Wilma456/ComputercraftRom/1.4/rom/apis/turtle/turtle"
tFiles["1.4"]["apis/colours"] = "https://raw.githubusercontent.com/Wilma456/ComputercraftRom/1.4/rom/apis/colours"
tFiles["1.4"]["apis/colors"] = "https://raw.githubusercontent.com/Wilma456/ComputercraftRom/1.4/rom/apis/colors"
tFiles["1.4"]["apis/rednet"] = "https://raw.githubusercontent.com/Wilma456/ComputercraftRom/1.4/rom/apis/rednet"
tFiles["1.4"]["apis/io"] = "https://raw.githubusercontent.com/Wilma456/ComputercraftRom/1.4/rom/apis/io"
tFiles["1.4"]["apis/term"] = "https://raw.githubusercontent.com/Wilma456/ComputercraftRom/1.4/rom/apis/term"
tFiles["1.4"]["apis/vector"] = "https://raw.githubusercontent.com/Wilma456/ComputercraftRom/1.4/rom/apis/vector"
tFiles["1.4"]["apis/help"] = "https://raw.githubusercontent.com/Wilma456/ComputercraftRom/1.4/rom/apis/help"
tFiles["1.4"]["apis/parallel"] = "https://raw.githubusercontent.com/Wilma456/ComputercraftRom/1.4/rom/apis/parallel"
tFiles["1.4"]["apis/gps"] = "https://raw.githubusercontent.com/Wilma456/ComputercraftRom/1.4/rom/apis/gps"
tFiles["1.4"]["apis/keys"] = "https://raw.githubusercontent.com/Wilma456/ComputercraftRom/1.4/rom/apis/keys"
tFiles["1.4"]["apis/textutils"] = "https://raw.githubusercontent.com/Wilma456/ComputercraftRom/1.4/rom/apis/textutils"
tFiles["1.4"]["apis/disk"] = "https://raw.githubusercontent.com/Wilma456/ComputercraftRom/1.4/rom/apis/disk"
tFiles["1.4"]["apis/paintutils"] = "https://raw.githubusercontent.com/Wilma456/ComputercraftRom/1.4/rom/apis/paintutils"
tFiles["1.4"]["help/coroutine"] = "https://raw.githubusercontent.com/Wilma456/ComputercraftRom/1.4/rom/help/coroutine"
tFiles["1.4"]["help/helpapi"] = "https://raw.githubusercontent.com/Wilma456/ComputercraftRom/1.4/rom/help/helpapi"
tFiles["1.4"]["help/apis"] = "https://raw.githubusercontent.com/Wilma456/ComputercraftRom/1.4/rom/help/apis"
tFiles["1.4"]["help/turtle"] = "https://raw.githubusercontent.com/Wilma456/ComputercraftRom/1.4/rom/help/turtle"
tFiles["1.4"]["help/redpulse"] = "https://raw.githubusercontent.com/Wilma456/ComputercraftRom/1.4/rom/help/redpulse"
tFiles["1.4"]["help/worm"] = "https://raw.githubusercontent.com/Wilma456/ComputercraftRom/1.4/rom/help/worm"
tFiles["1.4"]["help/whatsnew1.4"] = "https://raw.githubusercontent.com/Wilma456/ComputercraftRom/1.4/rom/help/whatsnew1.4"
tFiles["1.4"]["help/move"] = "https://raw.githubusercontent.com/Wilma456/ComputercraftRom/1.4/rom/help/move"
tFiles["1.4"]["help/sleep"] = "https://raw.githubusercontent.com/Wilma456/ComputercraftRom/1.4/rom/help/sleep"
tFiles["1.4"]["help/colours"] = "https://raw.githubusercontent.com/Wilma456/ComputercraftRom/1.4/rom/help/colours"
tFiles["1.4"]["help/colors"] = "https://raw.githubusercontent.com/Wilma456/ComputercraftRom/1.4/rom/help/colors"
tFiles["1.4"]["help/whatsnew"] = "https://raw.githubusercontent.com/Wilma456/ComputercraftRom/1.4/rom/help/whatsnew"
tFiles["1.4"]["help/pastebin"] = "https://raw.githubusercontent.com/Wilma456/ComputercraftRom/1.4/rom/help/pastebin"
tFiles["1.4"]["help/programming"] = "https://raw.githubusercontent.com/Wilma456/ComputercraftRom/1.4/rom/help/programming"
tFiles["1.4"]["help/rednet"] = "https://raw.githubusercontent.com/Wilma456/ComputercraftRom/1.4/rom/help/rednet"
tFiles["1.4"]["help/io"] = "https://raw.githubusercontent.com/Wilma456/ComputercraftRom/1.4/rom/help/io"
tFiles["1.4"]["help/fs"] = "https://raw.githubusercontent.com/Wilma456/ComputercraftRom/1.4/rom/help/fs"
tFiles["1.4"]["help/term"] = "https://raw.githubusercontent.com/Wilma456/ComputercraftRom/1.4/rom/help/term"
tFiles["1.4"]["help/vector"] = "https://raw.githubusercontent.com/Wilma456/ComputercraftRom/1.4/rom/help/vector"
tFiles["1.4"]["help/help"] = "https://raw.githubusercontent.com/Wilma456/ComputercraftRom/1.4/rom/help/help"
tFiles["1.4"]["help/whatsnew1.45"] = "https://raw.githubusercontent.com/Wilma456/ComputercraftRom/1.4/rom/help/whatsnew1.45"
tFiles["1.4"]["help/tunnel"] = "https://raw.githubusercontent.com/Wilma456/ComputercraftRom/1.4/rom/help/tunnel"
tFiles["1.4"]["help/redstone"] = "https://raw.githubusercontent.com/Wilma456/ComputercraftRom/1.4/rom/help/redstone"
tFiles["1.4"]["help/craft"] = "https://raw.githubusercontent.com/Wilma456/ComputercraftRom/1.4/rom/help/craft"
tFiles["1.4"]["help/eject"] = "https://raw.githubusercontent.com/Wilma456/ComputercraftRom/1.4/rom/help/eject"
tFiles["1.4"]["help/time"] = "https://raw.githubusercontent.com/Wilma456/ComputercraftRom/1.4/rom/help/time"
tFiles["1.4"]["help/whatsnew1.31"] = "https://raw.githubusercontent.com/Wilma456/ComputercraftRom/1.4/rom/help/whatsnew1.31"
tFiles["1.4"]["help/lua"] = "https://raw.githubusercontent.com/Wilma456/ComputercraftRom/1.4/rom/help/lua"
tFiles["1.4"]["help/bit"] = "https://raw.githubusercontent.com/Wilma456/ComputercraftRom/1.4/rom/help/bit"
tFiles["1.4"]["help/cd"] = "https://raw.githubusercontent.com/Wilma456/ComputercraftRom/1.4/rom/help/cd"
tFiles["1.4"]["help/id"] = "https://raw.githubusercontent.com/Wilma456/ComputercraftRom/1.4/rom/help/id"
tFiles["1.4"]["help/clear"] = "https://raw.githubusercontent.com/Wilma456/ComputercraftRom/1.4/rom/help/clear"
tFiles["1.4"]["help/mkdir"] = "https://raw.githubusercontent.com/Wilma456/ComputercraftRom/1.4/rom/help/mkdir"
tFiles["1.4"]["help/redset"] = "https://raw.githubusercontent.com/Wilma456/ComputercraftRom/1.4/rom/help/redset"
tFiles["1.4"]["help/shutdown"] = "https://raw.githubusercontent.com/Wilma456/ComputercraftRom/1.4/rom/help/shutdown"
tFiles["1.4"]["help/drive"] = "https://raw.githubusercontent.com/Wilma456/ComputercraftRom/1.4/rom/help/drive"
tFiles["1.4"]["help/parallel"] = "https://raw.githubusercontent.com/Wilma456/ComputercraftRom/1.4/rom/help/parallel"
tFiles["1.4"]["help/whatsnew1.42"] = "https://raw.githubusercontent.com/Wilma456/ComputercraftRom/1.4/rom/help/whatsnew1.42"
tFiles["1.4"]["help/http"] = "https://raw.githubusercontent.com/Wilma456/ComputercraftRom/1.4/rom/help/http"
tFiles["1.4"]["help/shell"] = "https://raw.githubusercontent.com/Wilma456/ComputercraftRom/1.4/rom/help/shell"
tFiles["1.4"]["help/whatsnew1.2"] = "https://raw.githubusercontent.com/Wilma456/ComputercraftRom/1.4/rom/help/whatsnew1.2"
tFiles["1.4"]["help/alias"] = "https://raw.githubusercontent.com/Wilma456/ComputercraftRom/1.4/rom/help/alias"
tFiles["1.4"]["help/os"] = "https://raw.githubusercontent.com/Wilma456/ComputercraftRom/1.4/rom/help/os"
tFiles["1.4"]["help/label"] = "https://raw.githubusercontent.com/Wilma456/ComputercraftRom/1.4/rom/help/label"
tFiles["1.4"]["help/edit"] = "https://raw.githubusercontent.com/Wilma456/ComputercraftRom/1.4/rom/help/edit"
tFiles["1.4"]["help/gps"] = "https://raw.githubusercontent.com/Wilma456/ComputercraftRom/1.4/rom/help/gps"
tFiles["1.4"]["help/go"] = "https://raw.githubusercontent.com/Wilma456/ComputercraftRom/1.4/rom/help/go"
tFiles["1.4"]["help/keys"] = "https://raw.githubusercontent.com/Wilma456/ComputercraftRom/1.4/rom/help/keys"
tFiles["1.4"]["help/textutils"] = "https://raw.githubusercontent.com/Wilma456/ComputercraftRom/1.4/rom/help/textutils"
tFiles["1.4"]["help/rs"] = "https://raw.githubusercontent.com/Wilma456/ComputercraftRom/1.4/rom/help/rs"
tFiles["1.4"]["help/dance"] = "https://raw.githubusercontent.com/Wilma456/ComputercraftRom/1.4/rom/help/dance"
tFiles["1.4"]["help/rename"] = "https://raw.githubusercontent.com/Wilma456/ComputercraftRom/1.4/rom/help/rename"
tFiles["1.4"]["help/reboot"] = "https://raw.githubusercontent.com/Wilma456/ComputercraftRom/1.4/rom/help/reboot"
tFiles["1.4"]["help/redprobe"] = "https://raw.githubusercontent.com/Wilma456/ComputercraftRom/1.4/rom/help/redprobe"
tFiles["1.4"]["help/list"] = "https://raw.githubusercontent.com/Wilma456/ComputercraftRom/1.4/rom/help/list"
tFiles["1.4"]["help/copy"] = "https://raw.githubusercontent.com/Wilma456/ComputercraftRom/1.4/rom/help/copy"
tFiles["1.4"]["help/whatsnew1.43"] = "https://raw.githubusercontent.com/Wilma456/ComputercraftRom/1.4/rom/help/whatsnew1.43"
tFiles["1.4"]["help/math"] = "https://raw.githubusercontent.com/Wilma456/ComputercraftRom/1.4/rom/help/math"
tFiles["1.4"]["help/hello"] = "https://raw.githubusercontent.com/Wilma456/ComputercraftRom/1.4/rom/help/hello"
tFiles["1.4"]["help/shellapi"] = "https://raw.githubusercontent.com/Wilma456/ComputercraftRom/1.4/rom/help/shellapi"
tFiles["1.4"]["help/peripheral"] = "https://raw.githubusercontent.com/Wilma456/ComputercraftRom/1.4/rom/help/peripheral"
tFiles["1.4"]["help/type"] = "https://raw.githubusercontent.com/Wilma456/ComputercraftRom/1.4/rom/help/type"
tFiles["1.4"]["help/refuel"] = "https://raw.githubusercontent.com/Wilma456/ComputercraftRom/1.4/rom/help/refuel"
tFiles["1.4"]["help/string"] = "https://raw.githubusercontent.com/Wilma456/ComputercraftRom/1.4/rom/help/string"
tFiles["1.4"]["help/whatsnew1.3"] = "https://raw.githubusercontent.com/Wilma456/ComputercraftRom/1.4/rom/help/whatsnew1.3"
tFiles["1.4"]["help/disk"] = "https://raw.githubusercontent.com/Wilma456/ComputercraftRom/1.4/rom/help/disk"
tFiles["1.4"]["help/programs"] = "https://raw.githubusercontent.com/Wilma456/ComputercraftRom/1.4/rom/help/programs"
tFiles["1.4"]["help/redpower"] = "https://raw.githubusercontent.com/Wilma456/ComputercraftRom/1.4/rom/help/redpower"
tFiles["1.4"]["help/excavate"] = "https://raw.githubusercontent.com/Wilma456/ComputercraftRom/1.4/rom/help/excavate"
tFiles["1.4"]["help/monitor"] = "https://raw.githubusercontent.com/Wilma456/ComputercraftRom/1.4/rom/help/monitor"
tFiles["1.4"]["help/exit"] = "https://raw.githubusercontent.com/Wilma456/ComputercraftRom/1.4/rom/help/exit"
tFiles["1.4"]["help/table"] = "https://raw.githubusercontent.com/Wilma456/ComputercraftRom/1.4/rom/help/table"
tFiles["1.4"]["help/earth"] = "https://raw.githubusercontent.com/Wilma456/ComputercraftRom/1.4/rom/help/earth"
tFiles["1.4"]["help/turn"] = "https://raw.githubusercontent.com/Wilma456/ComputercraftRom/1.4/rom/help/turn"
tFiles["1.4"]["help/events"] = "https://raw.githubusercontent.com/Wilma456/ComputercraftRom/1.4/rom/help/events"
tFiles["1.4"]["help/gpsapi"] = "https://raw.githubusercontent.com/Wilma456/ComputercraftRom/1.4/rom/help/gpsapi"
tFiles["1.4"]["help/credits"] = "https://raw.githubusercontent.com/Wilma456/ComputercraftRom/1.4/rom/help/credits"
tFiles["1.4"]["help/adventure"] = "https://raw.githubusercontent.com/Wilma456/ComputercraftRom/1.4/rom/help/adventure"
tFiles["1.4"]["help/dj"] = "https://raw.githubusercontent.com/Wilma456/ComputercraftRom/1.4/rom/help/dj"
tFiles["1.4"]["help/paint"] = "https://raw.githubusercontent.com/Wilma456/ComputercraftRom/1.4/rom/help/paint"
tFiles["1.4"]["help/paintutils"] = "https://raw.githubusercontent.com/Wilma456/ComputercraftRom/1.4/rom/help/paintutils"
tFiles["1.4"]["help/delete"] = "https://raw.githubusercontent.com/Wilma456/ComputercraftRom/1.4/rom/help/delete"
tFiles["1.4"]["help/intro"] = "https://raw.githubusercontent.com/Wilma456/ComputercraftRom/1.4/rom/help/intro"
tFiles["1.4"]["startup"] = "https://raw.githubusercontent.com/Wilma456/ComputercraftRom/1.4/rom/startup"
tFiles["1.4"]["programs/apis"] = "https://raw.githubusercontent.com/Wilma456/ComputercraftRom/1.4/rom/programs/apis"
tFiles["1.4"]["programs/turtle/tunnel"] = "https://raw.githubusercontent.com/Wilma456/ComputercraftRom/1.4/rom/programs/turtle/tunnel"
tFiles["1.4"]["programs/turtle/craft"] = "https://raw.githubusercontent.com/Wilma456/ComputercraftRom/1.4/rom/programs/turtle/craft"
tFiles["1.4"]["programs/turtle/go"] = "https://raw.githubusercontent.com/Wilma456/ComputercraftRom/1.4/rom/programs/turtle/go"
tFiles["1.4"]["programs/turtle/dance"] = "https://raw.githubusercontent.com/Wilma456/ComputercraftRom/1.4/rom/programs/turtle/dance"
tFiles["1.4"]["programs/turtle/refuel"] = "https://raw.githubusercontent.com/Wilma456/ComputercraftRom/1.4/rom/programs/turtle/refuel"
tFiles["1.4"]["programs/turtle/excavate"] = "https://raw.githubusercontent.com/Wilma456/ComputercraftRom/1.4/rom/programs/turtle/excavate"
tFiles["1.4"]["programs/turtle/turn"] = "https://raw.githubusercontent.com/Wilma456/ComputercraftRom/1.4/rom/programs/turtle/turn"
tFiles["1.4"]["programs/redpulse"] = "https://raw.githubusercontent.com/Wilma456/ComputercraftRom/1.4/rom/programs/redpulse"
tFiles["1.4"]["programs/move"] = "https://raw.githubusercontent.com/Wilma456/ComputercraftRom/1.4/rom/programs/move"
tFiles["1.4"]["programs/computer/worm"] = "https://raw.githubusercontent.com/Wilma456/ComputercraftRom/1.4/rom/programs/computer/worm"
tFiles["1.4"]["programs/computer/hello"] = "https://raw.githubusercontent.com/Wilma456/ComputercraftRom/1.4/rom/programs/computer/hello"
tFiles["1.4"]["programs/computer/adventure"] = "https://raw.githubusercontent.com/Wilma456/ComputercraftRom/1.4/rom/programs/computer/adventure"
tFiles["1.4"]["programs/help"] = "https://raw.githubusercontent.com/Wilma456/ComputercraftRom/1.4/rom/programs/help"
tFiles["1.4"]["programs/eject"] = "https://raw.githubusercontent.com/Wilma456/ComputercraftRom/1.4/rom/programs/eject"
tFiles["1.4"]["programs/time"] = "https://raw.githubusercontent.com/Wilma456/ComputercraftRom/1.4/rom/programs/time"
tFiles["1.4"]["programs/lua"] = "https://raw.githubusercontent.com/Wilma456/ComputercraftRom/1.4/rom/programs/lua"
tFiles["1.4"]["programs/cd"] = "https://raw.githubusercontent.com/Wilma456/ComputercraftRom/1.4/rom/programs/cd"
tFiles["1.4"]["programs/id"] = "https://raw.githubusercontent.com/Wilma456/ComputercraftRom/1.4/rom/programs/id"
tFiles["1.4"]["programs/clear"] = "https://raw.githubusercontent.com/Wilma456/ComputercraftRom/1.4/rom/programs/clear"
tFiles["1.4"]["programs/mkdir"] = "https://raw.githubusercontent.com/Wilma456/ComputercraftRom/1.4/rom/programs/mkdir"
tFiles["1.4"]["programs/redset"] = "https://raw.githubusercontent.com/Wilma456/ComputercraftRom/1.4/rom/programs/redset"
tFiles["1.4"]["programs/shutdown"] = "https://raw.githubusercontent.com/Wilma456/ComputercraftRom/1.4/rom/programs/shutdown"
tFiles["1.4"]["programs/drive"] = "https://raw.githubusercontent.com/Wilma456/ComputercraftRom/1.4/rom/programs/drive"
tFiles["1.4"]["programs/color/paint"] = "https://raw.githubusercontent.com/Wilma456/ComputercraftRom/1.4/rom/programs/color/paint"
tFiles["1.4"]["programs/http/pastebin"] = "https://raw.githubusercontent.com/Wilma456/ComputercraftRom/1.4/rom/programs/http/pastebin"
tFiles["1.4"]["programs/shell"] = "https://raw.githubusercontent.com/Wilma456/ComputercraftRom/1.4/rom/programs/shell"
tFiles["1.4"]["programs/alias"] = "https://raw.githubusercontent.com/Wilma456/ComputercraftRom/1.4/rom/programs/alias"
tFiles["1.4"]["programs/label"] = "https://raw.githubusercontent.com/Wilma456/ComputercraftRom/1.4/rom/programs/label"
tFiles["1.4"]["programs/edit"] = "https://raw.githubusercontent.com/Wilma456/ComputercraftRom/1.4/rom/programs/edit"
tFiles["1.4"]["programs/gps"] = "https://raw.githubusercontent.com/Wilma456/ComputercraftRom/1.4/rom/programs/gps"
tFiles["1.4"]["programs/rename"] = "https://raw.githubusercontent.com/Wilma456/ComputercraftRom/1.4/rom/programs/rename"
tFiles["1.4"]["programs/reboot"] = "https://raw.githubusercontent.com/Wilma456/ComputercraftRom/1.4/rom/programs/reboot"
tFiles["1.4"]["programs/redprobe"] = "https://raw.githubusercontent.com/Wilma456/ComputercraftRom/1.4/rom/programs/redprobe"
tFiles["1.4"]["programs/list"] = "https://raw.githubusercontent.com/Wilma456/ComputercraftRom/1.4/rom/programs/list"
tFiles["1.4"]["programs/copy"] = "https://raw.githubusercontent.com/Wilma456/ComputercraftRom/1.4/rom/programs/copy"
tFiles["1.4"]["programs/type"] = "https://raw.githubusercontent.com/Wilma456/ComputercraftRom/1.4/rom/programs/type"
tFiles["1.4"]["programs/programs"] = "https://raw.githubusercontent.com/Wilma456/ComputercraftRom/1.4/rom/programs/programs"
tFiles["1.4"]["programs/monitor"] = "https://raw.githubusercontent.com/Wilma456/ComputercraftRom/1.4/rom/programs/monitor"
tFiles["1.4"]["programs/exit"] = "https://raw.githubusercontent.com/Wilma456/ComputercraftRom/1.4/rom/programs/exit"
tFiles["1.4"]["programs/secret/alongtimeago"] = "https://raw.githubusercontent.com/Wilma456/ComputercraftRom/1.4/rom/programs/secret/alongtimeago"
tFiles["1.4"]["programs/dj"] = "https://raw.githubusercontent.com/Wilma456/ComputercraftRom/1.4/rom/programs/dj"
tFiles["1.4"]["programs/delete"] = "https://raw.githubusercontent.com/Wilma456/ComputercraftRom/1.4/rom/programs/delete"
tFiles["1.5"] = {}
tFiles["1.5"]["apis/turtle"] = "https://raw.githubusercontent.com/alekso56/ComputercraftLua/1.5/rom/apis/turtle"
tFiles["1.5"]["apis/turtle/turtle"] = "https://raw.githubusercontent.com/alekso56/ComputercraftLua/1.5/rom/apis/turtle/turtle"
tFiles["1.5"]["apis/colours"] = "https://raw.githubusercontent.com/alekso56/ComputercraftLua/1.5/rom/apis/colours"
tFiles["1.5"]["apis/colors"] = "https://raw.githubusercontent.com/alekso56/ComputercraftLua/1.5/rom/apis/colors"
tFiles["1.5"]["apis/rednet"] = "https://raw.githubusercontent.com/alekso56/ComputercraftLua/1.5/rom/apis/rednet"
tFiles["1.5"]["apis/io"] = "https://raw.githubusercontent.com/alekso56/ComputercraftLua/1.5/rom/apis/io"
tFiles["1.5"]["apis/term"] = "https://raw.githubusercontent.com/alekso56/ComputercraftLua/1.5/rom/apis/term"
tFiles["1.5"]["apis/vector"] = "https://raw.githubusercontent.com/alekso56/ComputercraftLua/1.5/rom/apis/vector"
tFiles["1.5"]["apis/help"] = "https://raw.githubusercontent.com/alekso56/ComputercraftLua/1.5/rom/apis/help"
tFiles["1.5"]["apis/parallel"] = "https://raw.githubusercontent.com/alekso56/ComputercraftLua/1.5/rom/apis/parallel"
tFiles["1.5"]["apis/gps"] = "https://raw.githubusercontent.com/alekso56/ComputercraftLua/1.5/rom/apis/gps"
tFiles["1.5"]["apis/keys"] = "https://raw.githubusercontent.com/alekso56/ComputercraftLua/1.5/rom/apis/keys"
tFiles["1.5"]["apis/textutils"] = "https://raw.githubusercontent.com/alekso56/ComputercraftLua/1.5/rom/apis/textutils"
tFiles["1.5"]["apis/disk"] = "https://raw.githubusercontent.com/alekso56/ComputercraftLua/1.5/rom/apis/disk"
tFiles["1.5"]["apis/paintutils"] = "https://raw.githubusercontent.com/alekso56/ComputercraftLua/1.5/rom/apis/paintutils"
tFiles["1.5"]["help/coroutine"] = "https://raw.githubusercontent.com/alekso56/ComputercraftLua/1.5/rom/help/coroutine"
tFiles["1.5"]["help/helpapi"] = "https://raw.githubusercontent.com/alekso56/ComputercraftLua/1.5/rom/help/helpapi"
tFiles["1.5"]["help/apis"] = "https://raw.githubusercontent.com/alekso56/ComputercraftLua/1.5/rom/help/apis"
tFiles["1.5"]["help/turtle"] = "https://raw.githubusercontent.com/alekso56/ComputercraftLua/1.5/rom/help/turtle"
tFiles["1.5"]["help/redpulse"] = "https://raw.githubusercontent.com/alekso56/ComputercraftLua/1.5/rom/help/redpulse"
tFiles["1.5"]["help/worm"] = "https://raw.githubusercontent.com/alekso56/ComputercraftLua/1.5/rom/help/worm"
tFiles["1.5"]["help/move"] = "https://raw.githubusercontent.com/alekso56/ComputercraftLua/1.5/rom/help/move"
tFiles["1.5"]["help/sleep"] = "https://raw.githubusercontent.com/alekso56/ComputercraftLua/1.5/rom/help/sleep"
tFiles["1.5"]["help/colours"] = "https://raw.githubusercontent.com/alekso56/ComputercraftLua/1.5/rom/help/colours"
tFiles["1.5"]["help/colors"] = "https://raw.githubusercontent.com/alekso56/ComputercraftLua/1.5/rom/help/colors"
tFiles["1.5"]["help/whatsnew"] = "https://raw.githubusercontent.com/alekso56/ComputercraftLua/1.5/rom/help/whatsnew"
tFiles["1.5"]["help/pastebin"] = "https://raw.githubusercontent.com/alekso56/ComputercraftLua/1.5/rom/help/pastebin"
tFiles["1.5"]["help/programming"] = "https://raw.githubusercontent.com/alekso56/ComputercraftLua/1.5/rom/help/programming"
tFiles["1.5"]["help/rednet"] = "https://raw.githubusercontent.com/alekso56/ComputercraftLua/1.5/rom/help/rednet"
tFiles["1.5"]["help/io"] = "https://raw.githubusercontent.com/alekso56/ComputercraftLua/1.5/rom/help/io"
tFiles["1.5"]["help/fs"] = "https://raw.githubusercontent.com/alekso56/ComputercraftLua/1.5/rom/help/fs"
tFiles["1.5"]["help/term"] = "https://raw.githubusercontent.com/alekso56/ComputercraftLua/1.5/rom/help/term"
tFiles["1.5"]["help/vector"] = "https://raw.githubusercontent.com/alekso56/ComputercraftLua/1.5/rom/help/vector"
tFiles["1.5"]["help/changelog"] = "https://raw.githubusercontent.com/alekso56/ComputercraftLua/1.5/rom/help/changelog"
tFiles["1.5"]["help/help"] = "https://raw.githubusercontent.com/alekso56/ComputercraftLua/1.5/rom/help/help"
tFiles["1.5"]["help/tunnel"] = "https://raw.githubusercontent.com/alekso56/ComputercraftLua/1.5/rom/help/tunnel"
tFiles["1.5"]["help/redstone"] = "https://raw.githubusercontent.com/alekso56/ComputercraftLua/1.5/rom/help/redstone"
tFiles["1.5"]["help/craft"] = "https://raw.githubusercontent.com/alekso56/ComputercraftLua/1.5/rom/help/craft"
tFiles["1.5"]["help/eject"] = "https://raw.githubusercontent.com/alekso56/ComputercraftLua/1.5/rom/help/eject"
tFiles["1.5"]["help/time"] = "https://raw.githubusercontent.com/alekso56/ComputercraftLua/1.5/rom/help/time"
tFiles["1.5"]["help/lua"] = "https://raw.githubusercontent.com/alekso56/ComputercraftLua/1.5/rom/help/lua"
tFiles["1.5"]["help/bit"] = "https://raw.githubusercontent.com/alekso56/ComputercraftLua/1.5/rom/help/bit"
tFiles["1.5"]["help/cd"] = "https://raw.githubusercontent.com/alekso56/ComputercraftLua/1.5/rom/help/cd"
tFiles["1.5"]["help/id"] = "https://raw.githubusercontent.com/alekso56/ComputercraftLua/1.5/rom/help/id"
tFiles["1.5"]["help/clear"] = "https://raw.githubusercontent.com/alekso56/ComputercraftLua/1.5/rom/help/clear"
tFiles["1.5"]["help/mkdir"] = "https://raw.githubusercontent.com/alekso56/ComputercraftLua/1.5/rom/help/mkdir"
tFiles["1.5"]["help/redset"] = "https://raw.githubusercontent.com/alekso56/ComputercraftLua/1.5/rom/help/redset"
tFiles["1.5"]["help/printers"] = "https://raw.githubusercontent.com/alekso56/ComputercraftLua/1.5/rom/help/printers"
tFiles["1.5"]["help/shutdown"] = "https://raw.githubusercontent.com/alekso56/ComputercraftLua/1.5/rom/help/shutdown"
tFiles["1.5"]["help/drive"] = "https://raw.githubusercontent.com/alekso56/ComputercraftLua/1.5/rom/help/drive"
tFiles["1.5"]["help/parallel"] = "https://raw.githubusercontent.com/alekso56/ComputercraftLua/1.5/rom/help/parallel"
tFiles["1.5"]["help/http"] = "https://raw.githubusercontent.com/alekso56/ComputercraftLua/1.5/rom/help/http"
tFiles["1.5"]["help/shell"] = "https://raw.githubusercontent.com/alekso56/ComputercraftLua/1.5/rom/help/shell"
tFiles["1.5"]["help/modems"] = "https://raw.githubusercontent.com/alekso56/ComputercraftLua/1.5/rom/help/modems"
tFiles["1.5"]["help/alias"] = "https://raw.githubusercontent.com/alekso56/ComputercraftLua/1.5/rom/help/alias"
tFiles["1.5"]["help/os"] = "https://raw.githubusercontent.com/alekso56/ComputercraftLua/1.5/rom/help/os"
tFiles["1.5"]["help/label"] = "https://raw.githubusercontent.com/alekso56/ComputercraftLua/1.5/rom/help/label"
tFiles["1.5"]["help/edit"] = "https://raw.githubusercontent.com/alekso56/ComputercraftLua/1.5/rom/help/edit"
tFiles["1.5"]["help/gps"] = "https://raw.githubusercontent.com/alekso56/ComputercraftLua/1.5/rom/help/gps"
tFiles["1.5"]["help/go"] = "https://raw.githubusercontent.com/alekso56/ComputercraftLua/1.5/rom/help/go"
tFiles["1.5"]["help/keys"] = "https://raw.githubusercontent.com/alekso56/ComputercraftLua/1.5/rom/help/keys"
tFiles["1.5"]["help/textutils"] = "https://raw.githubusercontent.com/alekso56/ComputercraftLua/1.5/rom/help/textutils"
tFiles["1.5"]["help/rs"] = "https://raw.githubusercontent.com/alekso56/ComputercraftLua/1.5/rom/help/rs"
tFiles["1.5"]["help/dance"] = "https://raw.githubusercontent.com/alekso56/ComputercraftLua/1.5/rom/help/dance"
tFiles["1.5"]["help/rename"] = "https://raw.githubusercontent.com/alekso56/ComputercraftLua/1.5/rom/help/rename"
tFiles["1.5"]["help/reboot"] = "https://raw.githubusercontent.com/alekso56/ComputercraftLua/1.5/rom/help/reboot"
tFiles["1.5"]["help/redprobe"] = "https://raw.githubusercontent.com/alekso56/ComputercraftLua/1.5/rom/help/redprobe"
tFiles["1.5"]["help/drives"] = "https://raw.githubusercontent.com/alekso56/ComputercraftLua/1.5/rom/help/drives"
tFiles["1.5"]["help/list"] = "https://raw.githubusercontent.com/alekso56/ComputercraftLua/1.5/rom/help/list"
tFiles["1.5"]["help/copy"] = "https://raw.githubusercontent.com/alekso56/ComputercraftLua/1.5/rom/help/copy"
tFiles["1.5"]["help/math"] = "https://raw.githubusercontent.com/alekso56/ComputercraftLua/1.5/rom/help/math"
tFiles["1.5"]["help/hello"] = "https://raw.githubusercontent.com/alekso56/ComputercraftLua/1.5/rom/help/hello"
tFiles["1.5"]["help/shellapi"] = "https://raw.githubusercontent.com/alekso56/ComputercraftLua/1.5/rom/help/shellapi"
tFiles["1.5"]["help/peripheral"] = "https://raw.githubusercontent.com/alekso56/ComputercraftLua/1.5/rom/help/peripheral"
tFiles["1.5"]["help/type"] = "https://raw.githubusercontent.com/alekso56/ComputercraftLua/1.5/rom/help/type"
tFiles["1.5"]["help/refuel"] = "https://raw.githubusercontent.com/alekso56/ComputercraftLua/1.5/rom/help/refuel"
tFiles["1.5"]["help/string"] = "https://raw.githubusercontent.com/alekso56/ComputercraftLua/1.5/rom/help/string"
tFiles["1.5"]["help/peripherals"] = "https://raw.githubusercontent.com/alekso56/ComputercraftLua/1.5/rom/help/peripherals"
tFiles["1.5"]["help/disk"] = "https://raw.githubusercontent.com/alekso56/ComputercraftLua/1.5/rom/help/disk"
tFiles["1.5"]["help/programs"] = "https://raw.githubusercontent.com/alekso56/ComputercraftLua/1.5/rom/help/programs"
tFiles["1.5"]["help/redpower"] = "https://raw.githubusercontent.com/alekso56/ComputercraftLua/1.5/rom/help/redpower"
tFiles["1.5"]["help/excavate"] = "https://raw.githubusercontent.com/alekso56/ComputercraftLua/1.5/rom/help/excavate"
tFiles["1.5"]["help/monitor"] = "https://raw.githubusercontent.com/alekso56/ComputercraftLua/1.5/rom/help/monitor"
tFiles["1.5"]["help/exit"] = "https://raw.githubusercontent.com/alekso56/ComputercraftLua/1.5/rom/help/exit"
tFiles["1.5"]["help/table"] = "https://raw.githubusercontent.com/alekso56/ComputercraftLua/1.5/rom/help/table"
tFiles["1.5"]["help/earth"] = "https://raw.githubusercontent.com/alekso56/ComputercraftLua/1.5/rom/help/earth"
tFiles["1.5"]["help/turn"] = "https://raw.githubusercontent.com/alekso56/ComputercraftLua/1.5/rom/help/turn"
tFiles["1.5"]["help/events"] = "https://raw.githubusercontent.com/alekso56/ComputercraftLua/1.5/rom/help/events"
tFiles["1.5"]["help/gpsapi"] = "https://raw.githubusercontent.com/alekso56/ComputercraftLua/1.5/rom/help/gpsapi"
tFiles["1.5"]["help/credits"] = "https://raw.githubusercontent.com/alekso56/ComputercraftLua/1.5/rom/help/credits"
tFiles["1.5"]["help/monitors"] = "https://raw.githubusercontent.com/alekso56/ComputercraftLua/1.5/rom/help/monitors"
tFiles["1.5"]["help/adventure"] = "https://raw.githubusercontent.com/alekso56/ComputercraftLua/1.5/rom/help/adventure"
tFiles["1.5"]["help/dj"] = "https://raw.githubusercontent.com/alekso56/ComputercraftLua/1.5/rom/help/dj"
tFiles["1.5"]["help/paint"] = "https://raw.githubusercontent.com/alekso56/ComputercraftLua/1.5/rom/help/paint"
tFiles["1.5"]["help/paintutils"] = "https://raw.githubusercontent.com/alekso56/ComputercraftLua/1.5/rom/help/paintutils"
tFiles["1.5"]["help/delete"] = "https://raw.githubusercontent.com/alekso56/ComputercraftLua/1.5/rom/help/delete"
tFiles["1.5"]["help/intro"] = "https://raw.githubusercontent.com/alekso56/ComputercraftLua/1.5/rom/help/intro"
tFiles["1.5"]["startup"] = "https://raw.githubusercontent.com/alekso56/ComputercraftLua/1.5/rom/startup"
tFiles["1.5"]["programs/apis"] = "https://raw.githubusercontent.com/alekso56/ComputercraftLua/1.5/rom/programs/apis"
tFiles["1.5"]["programs/turtle/tunnel"] = "https://raw.githubusercontent.com/alekso56/ComputercraftLua/1.5/rom/programs/turtle/tunnel"
tFiles["1.5"]["programs/turtle/craft"] = "https://raw.githubusercontent.com/alekso56/ComputercraftLua/1.5/rom/programs/turtle/craft"
tFiles["1.5"]["programs/turtle/go"] = "https://raw.githubusercontent.com/alekso56/ComputercraftLua/1.5/rom/programs/turtle/go"
tFiles["1.5"]["programs/turtle/dance"] = "https://raw.githubusercontent.com/alekso56/ComputercraftLua/1.5/rom/programs/turtle/dance"
tFiles["1.5"]["programs/turtle/refuel"] = "https://raw.githubusercontent.com/alekso56/ComputercraftLua/1.5/rom/programs/turtle/refuel"
tFiles["1.5"]["programs/turtle/excavate"] = "https://raw.githubusercontent.com/alekso56/ComputercraftLua/1.5/rom/programs/turtle/excavate"
tFiles["1.5"]["programs/turtle/turn"] = "https://raw.githubusercontent.com/alekso56/ComputercraftLua/1.5/rom/programs/turtle/turn"
tFiles["1.5"]["programs/redpulse"] = "https://raw.githubusercontent.com/alekso56/ComputercraftLua/1.5/rom/programs/redpulse"
tFiles["1.5"]["programs/move"] = "https://raw.githubusercontent.com/alekso56/ComputercraftLua/1.5/rom/programs/move"
tFiles["1.5"]["programs/computer/worm"] = "https://raw.githubusercontent.com/alekso56/ComputercraftLua/1.5/rom/programs/computer/worm"
tFiles["1.5"]["programs/computer/hello"] = "https://raw.githubusercontent.com/alekso56/ComputercraftLua/1.5/rom/programs/computer/hello"
tFiles["1.5"]["programs/computer/adventure"] = "https://raw.githubusercontent.com/alekso56/ComputercraftLua/1.5/rom/programs/computer/adventure"
tFiles["1.5"]["programs/help"] = "https://raw.githubusercontent.com/alekso56/ComputercraftLua/1.5/rom/programs/help"
tFiles["1.5"]["programs/eject"] = "https://raw.githubusercontent.com/alekso56/ComputercraftLua/1.5/rom/programs/eject"
tFiles["1.5"]["programs/time"] = "https://raw.githubusercontent.com/alekso56/ComputercraftLua/1.5/rom/programs/time"
tFiles["1.5"]["programs/lua"] = "https://raw.githubusercontent.com/alekso56/ComputercraftLua/1.5/rom/programs/lua"
tFiles["1.5"]["programs/cd"] = "https://raw.githubusercontent.com/alekso56/ComputercraftLua/1.5/rom/programs/cd"
tFiles["1.5"]["programs/id"] = "https://raw.githubusercontent.com/alekso56/ComputercraftLua/1.5/rom/programs/id"
tFiles["1.5"]["programs/clear"] = "https://raw.githubusercontent.com/alekso56/ComputercraftLua/1.5/rom/programs/clear"
tFiles["1.5"]["programs/mkdir"] = "https://raw.githubusercontent.com/alekso56/ComputercraftLua/1.5/rom/programs/mkdir"
tFiles["1.5"]["programs/redset"] = "https://raw.githubusercontent.com/alekso56/ComputercraftLua/1.5/rom/programs/redset"
tFiles["1.5"]["programs/shutdown"] = "https://raw.githubusercontent.com/alekso56/ComputercraftLua/1.5/rom/programs/shutdown"
tFiles["1.5"]["programs/drive"] = "https://raw.githubusercontent.com/alekso56/ComputercraftLua/1.5/rom/programs/drive"
tFiles["1.5"]["programs/color/paint"] = "https://raw.githubusercontent.com/alekso56/ComputercraftLua/1.5/rom/programs/color/paint"
tFiles["1.5"]["programs/http/pastebin"] = "https://raw.githubusercontent.com/alekso56/ComputercraftLua/1.5/rom/programs/http/pastebin"
tFiles["1.5"]["programs/shell"] = "https://raw.githubusercontent.com/alekso56/ComputercraftLua/1.5/rom/programs/shell"
tFiles["1.5"]["programs/alias"] = "https://raw.githubusercontent.com/alekso56/ComputercraftLua/1.5/rom/programs/alias"
tFiles["1.5"]["programs/label"] = "https://raw.githubusercontent.com/alekso56/ComputercraftLua/1.5/rom/programs/label"
tFiles["1.5"]["programs/edit"] = "https://raw.githubusercontent.com/alekso56/ComputercraftLua/1.5/rom/programs/edit"
tFiles["1.5"]["programs/gps"] = "https://raw.githubusercontent.com/alekso56/ComputercraftLua/1.5/rom/programs/gps"
tFiles["1.5"]["programs/rename"] = "https://raw.githubusercontent.com/alekso56/ComputercraftLua/1.5/rom/programs/rename"
tFiles["1.5"]["programs/reboot"] = "https://raw.githubusercontent.com/alekso56/ComputercraftLua/1.5/rom/programs/reboot"
tFiles["1.5"]["programs/redprobe"] = "https://raw.githubusercontent.com/alekso56/ComputercraftLua/1.5/rom/programs/redprobe"
tFiles["1.5"]["programs/list"] = "https://raw.githubusercontent.com/alekso56/ComputercraftLua/1.5/rom/programs/list"
tFiles["1.5"]["programs/copy"] = "https://raw.githubusercontent.com/alekso56/ComputercraftLua/1.5/rom/programs/copy"
tFiles["1.5"]["programs/type"] = "https://raw.githubusercontent.com/alekso56/ComputercraftLua/1.5/rom/programs/type"
tFiles["1.5"]["programs/programs"] = "https://raw.githubusercontent.com/alekso56/ComputercraftLua/1.5/rom/programs/programs"
tFiles["1.5"]["programs/monitor"] = "https://raw.githubusercontent.com/alekso56/ComputercraftLua/1.5/rom/programs/monitor"
tFiles["1.5"]["programs/exit"] = "https://raw.githubusercontent.com/alekso56/ComputercraftLua/1.5/rom/programs/exit"
tFiles["1.5"]["programs/secret/alongtimeago"] = "https://raw.githubusercontent.com/alekso56/ComputercraftLua/1.5/rom/programs/secret/alongtimeago"
tFiles["1.5"]["programs/dj"] = "https://raw.githubusercontent.com/alekso56/ComputercraftLua/1.5/rom/programs/dj"
tFiles["1.5"]["programs/delete"] = "https://raw.githubusercontent.com/alekso56/ComputercraftLua/1.5/rom/programs/delete"
tFiles["1.6"] = {}
tFiles["1.6"]["apis/turtle/turtle"] = "https://raw.githubusercontent.com/alekso56/ComputercraftLua/1.65/rom/apis/turtle/turtle"
tFiles["1.6"]["apis/colours"] = "https://raw.githubusercontent.com/alekso56/ComputercraftLua/1.65/rom/apis/colours"
tFiles["1.6"]["apis/colors"] = "https://raw.githubusercontent.com/alekso56/ComputercraftLua/1.65/rom/apis/colors"
tFiles["1.6"]["apis/rednet"] = "https://raw.githubusercontent.com/alekso56/ComputercraftLua/1.65/rom/apis/rednet"
tFiles["1.6"]["apis/io"] = "https://raw.githubusercontent.com/alekso56/ComputercraftLua/1.65/rom/apis/io"
tFiles["1.6"]["apis/term"] = "https://raw.githubusercontent.com/alekso56/ComputercraftLua/1.65/rom/apis/term"
tFiles["1.6"]["apis/vector"] = "https://raw.githubusercontent.com/alekso56/ComputercraftLua/1.65/rom/apis/vector"
tFiles["1.6"]["apis/help"] = "https://raw.githubusercontent.com/alekso56/ComputercraftLua/1.65/rom/apis/help"
tFiles["1.6"]["apis/parallel"] = "https://raw.githubusercontent.com/alekso56/ComputercraftLua/1.65/rom/apis/parallel"
tFiles["1.6"]["apis/gps"] = "https://raw.githubusercontent.com/alekso56/ComputercraftLua/1.65/rom/apis/gps"
tFiles["1.6"]["apis/keys"] = "https://raw.githubusercontent.com/alekso56/ComputercraftLua/1.65/rom/apis/keys"
tFiles["1.6"]["apis/textutils"] = "https://raw.githubusercontent.com/alekso56/ComputercraftLua/1.65/rom/apis/textutils"
tFiles["1.6"]["apis/peripheral"] = "https://raw.githubusercontent.com/alekso56/ComputercraftLua/1.65/rom/apis/peripheral"
tFiles["1.6"]["apis/disk"] = "https://raw.githubusercontent.com/alekso56/ComputercraftLua/1.65/rom/apis/disk"
tFiles["1.6"]["apis/window"] = "https://raw.githubusercontent.com/alekso56/ComputercraftLua/1.65/rom/apis/window"
tFiles["1.6"]["apis/paintutils"] = "https://raw.githubusercontent.com/alekso56/ComputercraftLua/1.65/rom/apis/paintutils"
tFiles["1.6"]["autorun/.ignoreme"] = "https://raw.githubusercontent.com/alekso56/ComputercraftLua/1.65/rom/autorun/.ignoreme"
tFiles["1.6"]["help/coroutine"] = "https://raw.githubusercontent.com/alekso56/ComputercraftLua/1.65/rom/help/coroutine"
tFiles["1.6"]["help/helpapi"] = "https://raw.githubusercontent.com/alekso56/ComputercraftLua/1.65/rom/help/helpapi"
tFiles["1.6"]["help/apis"] = "https://raw.githubusercontent.com/alekso56/ComputercraftLua/1.65/rom/help/apis"
tFiles["1.6"]["help/turtle"] = "https://raw.githubusercontent.com/alekso56/ComputercraftLua/1.65/rom/help/turtle"
tFiles["1.6"]["help/redpulse"] = "https://raw.githubusercontent.com/alekso56/ComputercraftLua/1.65/rom/help/redpulse"
tFiles["1.6"]["help/repeat"] = "https://raw.githubusercontent.com/alekso56/ComputercraftLua/1.65/rom/help/repeat"
tFiles["1.6"]["help/worm"] = "https://raw.githubusercontent.com/alekso56/ComputercraftLua/1.65/rom/help/worm"
tFiles["1.6"]["help/unequip"] = "https://raw.githubusercontent.com/alekso56/ComputercraftLua/1.65/rom/help/unequip"
tFiles["1.6"]["help/move"] = "https://raw.githubusercontent.com/alekso56/ComputercraftLua/1.65/rom/help/move"
tFiles["1.6"]["help/bg"] = "https://raw.githubusercontent.com/alekso56/ComputercraftLua/1.65/rom/help/bg"
tFiles["1.6"]["help/sleep"] = "https://raw.githubusercontent.com/alekso56/ComputercraftLua/1.65/rom/help/sleep"
tFiles["1.6"]["help/colours"] = "https://raw.githubusercontent.com/alekso56/ComputercraftLua/1.65/rom/help/colours"
tFiles["1.6"]["help/colors"] = "https://raw.githubusercontent.com/alekso56/ComputercraftLua/1.65/rom/help/colors"
tFiles["1.6"]["help/whatsnew"] = "https://raw.githubusercontent.com/alekso56/ComputercraftLua/1.65/rom/help/whatsnew"
tFiles["1.6"]["help/pastebin"] = "https://raw.githubusercontent.com/alekso56/ComputercraftLua/1.65/rom/help/pastebin"
tFiles["1.6"]["help/programming"] = "https://raw.githubusercontent.com/alekso56/ComputercraftLua/1.65/rom/help/programming"
tFiles["1.6"]["help/rednet"] = "https://raw.githubusercontent.com/alekso56/ComputercraftLua/1.65/rom/help/rednet"
tFiles["1.6"]["help/io"] = "https://raw.githubusercontent.com/alekso56/ComputercraftLua/1.65/rom/help/io"
tFiles["1.6"]["help/fs"] = "https://raw.githubusercontent.com/alekso56/ComputercraftLua/1.65/rom/help/fs"
tFiles["1.6"]["help/term"] = "https://raw.githubusercontent.com/alekso56/ComputercraftLua/1.65/rom/help/term"
tFiles["1.6"]["help/vector"] = "https://raw.githubusercontent.com/alekso56/ComputercraftLua/1.65/rom/help/vector"
tFiles["1.6"]["help/changelog"] = "https://raw.githubusercontent.com/alekso56/ComputercraftLua/1.65/rom/help/changelog"
tFiles["1.6"]["help/help"] = "https://raw.githubusercontent.com/alekso56/ComputercraftLua/1.65/rom/help/help"
tFiles["1.6"]["help/tunnel"] = "https://raw.githubusercontent.com/alekso56/ComputercraftLua/1.65/rom/help/tunnel"
tFiles["1.6"]["help/redstone"] = "https://raw.githubusercontent.com/alekso56/ComputercraftLua/1.65/rom/help/redstone"
tFiles["1.6"]["help/craft"] = "https://raw.githubusercontent.com/alekso56/ComputercraftLua/1.65/rom/help/craft"
tFiles["1.6"]["help/fg"] = "https://raw.githubusercontent.com/alekso56/ComputercraftLua/1.65/rom/help/fg"
tFiles["1.6"]["help/eject"] = "https://raw.githubusercontent.com/alekso56/ComputercraftLua/1.65/rom/help/eject"
tFiles["1.6"]["help/time"] = "https://raw.githubusercontent.com/alekso56/ComputercraftLua/1.65/rom/help/time"
tFiles["1.6"]["help/lua"] = "https://raw.githubusercontent.com/alekso56/ComputercraftLua/1.65/rom/help/lua"
tFiles["1.6"]["help/bit"] = "https://raw.githubusercontent.com/alekso56/ComputercraftLua/1.65/rom/help/bit"
tFiles["1.6"]["help/cd"] = "https://raw.githubusercontent.com/alekso56/ComputercraftLua/1.65/rom/help/cd"
tFiles["1.6"]["help/id"] = "https://raw.githubusercontent.com/alekso56/ComputercraftLua/1.65/rom/help/id"
tFiles["1.6"]["help/clear"] = "https://raw.githubusercontent.com/alekso56/ComputercraftLua/1.65/rom/help/clear"
tFiles["1.6"]["help/mkdir"] = "https://raw.githubusercontent.com/alekso56/ComputercraftLua/1.65/rom/help/mkdir"
tFiles["1.6"]["help/redset"] = "https://raw.githubusercontent.com/alekso56/ComputercraftLua/1.65/rom/help/redset"
tFiles["1.6"]["help/printers"] = "https://raw.githubusercontent.com/alekso56/ComputercraftLua/1.65/rom/help/printers"
tFiles["1.6"]["help/shutdown"] = "https://raw.githubusercontent.com/alekso56/ComputercraftLua/1.65/rom/help/shutdown"
tFiles["1.6"]["help/drive"] = "https://raw.githubusercontent.com/alekso56/ComputercraftLua/1.65/rom/help/drive"
tFiles["1.6"]["help/parallel"] = "https://raw.githubusercontent.com/alekso56/ComputercraftLua/1.65/rom/help/parallel"
tFiles["1.6"]["help/http"] = "https://raw.githubusercontent.com/alekso56/ComputercraftLua/1.65/rom/help/http"
tFiles["1.6"]["help/shell"] = "https://raw.githubusercontent.com/alekso56/ComputercraftLua/1.65/rom/help/shell"
tFiles["1.6"]["help/modems"] = "https://raw.githubusercontent.com/alekso56/ComputercraftLua/1.65/rom/help/modems"
tFiles["1.6"]["help/alias"] = "https://raw.githubusercontent.com/alekso56/ComputercraftLua/1.65/rom/help/alias"
tFiles["1.6"]["help/licenses"] = "https://raw.githubusercontent.com/alekso56/ComputercraftLua/1.65/rom/help/licenses"
tFiles["1.6"]["help/licenses/luaj"] = "https://raw.githubusercontent.com/alekso56/ComputercraftLua/1.65/rom/help/licenses/luaj"
tFiles["1.6"]["help/os"] = "https://raw.githubusercontent.com/alekso56/ComputercraftLua/1.65/rom/help/os"
tFiles["1.6"]["help/label"] = "https://raw.githubusercontent.com/alekso56/ComputercraftLua/1.65/rom/help/label"
tFiles["1.6"]["help/edit"] = "https://raw.githubusercontent.com/alekso56/ComputercraftLua/1.65/rom/help/edit"
tFiles["1.6"]["help/gps"] = "https://raw.githubusercontent.com/alekso56/ComputercraftLua/1.65/rom/help/gps"
tFiles["1.6"]["help/go"] = "https://raw.githubusercontent.com/alekso56/ComputercraftLua/1.65/rom/help/go"
tFiles["1.6"]["help/keys"] = "https://raw.githubusercontent.com/alekso56/ComputercraftLua/1.65/rom/help/keys"
tFiles["1.6"]["help/textutils"] = "https://raw.githubusercontent.com/alekso56/ComputercraftLua/1.65/rom/help/textutils"
tFiles["1.6"]["help/rs"] = "https://raw.githubusercontent.com/alekso56/ComputercraftLua/1.65/rom/help/rs"
tFiles["1.6"]["help/bundled"] = "https://raw.githubusercontent.com/alekso56/ComputercraftLua/1.65/rom/help/bundled"
tFiles["1.6"]["help/dance"] = "https://raw.githubusercontent.com/alekso56/ComputercraftLua/1.65/rom/help/dance"
tFiles["1.6"]["help/rename"] = "https://raw.githubusercontent.com/alekso56/ComputercraftLua/1.65/rom/help/rename"
tFiles["1.6"]["help/reboot"] = "https://raw.githubusercontent.com/alekso56/ComputercraftLua/1.65/rom/help/reboot"
tFiles["1.6"]["help/redprobe"] = "https://raw.githubusercontent.com/alekso56/ComputercraftLua/1.65/rom/help/redprobe"
tFiles["1.6"]["help/drives"] = "https://raw.githubusercontent.com/alekso56/ComputercraftLua/1.65/rom/help/drives"
tFiles["1.6"]["help/falling"] = "https://raw.githubusercontent.com/alekso56/ComputercraftLua/1.65/rom/help/falling"
tFiles["1.6"]["help/list"] = "https://raw.githubusercontent.com/alekso56/ComputercraftLua/1.65/rom/help/list"
tFiles["1.6"]["help/copy"] = "https://raw.githubusercontent.com/alekso56/ComputercraftLua/1.65/rom/help/copy"
tFiles["1.6"]["help/math"] = "https://raw.githubusercontent.com/alekso56/ComputercraftLua/1.65/rom/help/math"
tFiles["1.6"]["help/hello"] = "https://raw.githubusercontent.com/alekso56/ComputercraftLua/1.65/rom/help/hello"
tFiles["1.6"]["help/shellapi"] = "https://raw.githubusercontent.com/alekso56/ComputercraftLua/1.65/rom/help/shellapi"
tFiles["1.6"]["help/chat"] = "https://raw.githubusercontent.com/alekso56/ComputercraftLua/1.65/rom/help/chat"
tFiles["1.6"]["help/peripheral"] = "https://raw.githubusercontent.com/alekso56/ComputercraftLua/1.65/rom/help/peripheral"
tFiles["1.6"]["help/type"] = "https://raw.githubusercontent.com/alekso56/ComputercraftLua/1.65/rom/help/type"
tFiles["1.6"]["help/refuel"] = "https://raw.githubusercontent.com/alekso56/ComputercraftLua/1.65/rom/help/refuel"
tFiles["1.6"]["help/string"] = "https://raw.githubusercontent.com/alekso56/ComputercraftLua/1.65/rom/help/string"
tFiles["1.6"]["help/peripherals"] = "https://raw.githubusercontent.com/alekso56/ComputercraftLua/1.65/rom/help/peripherals"
tFiles["1.6"]["help/redirection"] = "https://raw.githubusercontent.com/alekso56/ComputercraftLua/1.65/rom/help/redirection"
tFiles["1.6"]["help/disk"] = "https://raw.githubusercontent.com/alekso56/ComputercraftLua/1.65/rom/help/disk"
tFiles["1.6"]["help/programs"] = "https://raw.githubusercontent.com/alekso56/ComputercraftLua/1.65/rom/help/programs"
tFiles["1.6"]["help/redpower"] = "https://raw.githubusercontent.com/alekso56/ComputercraftLua/1.65/rom/help/redpower"
tFiles["1.6"]["help/excavate"] = "https://raw.githubusercontent.com/alekso56/ComputercraftLua/1.65/rom/help/excavate"
tFiles["1.6"]["help/monitor"] = "https://raw.githubusercontent.com/alekso56/ComputercraftLua/1.65/rom/help/monitor"
tFiles["1.6"]["help/exit"] = "https://raw.githubusercontent.com/alekso56/ComputercraftLua/1.65/rom/help/exit"
tFiles["1.6"]["help/table"] = "https://raw.githubusercontent.com/alekso56/ComputercraftLua/1.65/rom/help/table"
tFiles["1.6"]["help/earth"] = "https://raw.githubusercontent.com/alekso56/ComputercraftLua/1.65/rom/help/earth"
tFiles["1.6"]["help/turn"] = "https://raw.githubusercontent.com/alekso56/ComputercraftLua/1.65/rom/help/turn"
tFiles["1.6"]["help/events"] = "https://raw.githubusercontent.com/alekso56/ComputercraftLua/1.65/rom/help/events"
tFiles["1.6"]["help/workbench"] = "https://raw.githubusercontent.com/alekso56/ComputercraftLua/1.65/rom/help/workbench"
tFiles["1.6"]["help/gpsapi"] = "https://raw.githubusercontent.com/alekso56/ComputercraftLua/1.65/rom/help/gpsapi"
tFiles["1.6"]["help/credits"] = "https://raw.githubusercontent.com/alekso56/ComputercraftLua/1.65/rom/help/credits"
tFiles["1.6"]["help/multishell"] = "https://raw.githubusercontent.com/alekso56/ComputercraftLua/1.65/rom/help/multishell"
tFiles["1.6"]["help/equip"] = "https://raw.githubusercontent.com/alekso56/ComputercraftLua/1.65/rom/help/equip"
tFiles["1.6"]["help/monitors"] = "https://raw.githubusercontent.com/alekso56/ComputercraftLua/1.65/rom/help/monitors"
tFiles["1.6"]["help/adventure"] = "https://raw.githubusercontent.com/alekso56/ComputercraftLua/1.65/rom/help/adventure"
tFiles["1.6"]["help/dj"] = "https://raw.githubusercontent.com/alekso56/ComputercraftLua/1.65/rom/help/dj"
tFiles["1.6"]["help/redstoneapi"] = "https://raw.githubusercontent.com/alekso56/ComputercraftLua/1.65/rom/help/redstoneapi"
tFiles["1.6"]["help/window"] = "https://raw.githubusercontent.com/alekso56/ComputercraftLua/1.65/rom/help/window"
tFiles["1.6"]["help/paint"] = "https://raw.githubusercontent.com/alekso56/ComputercraftLua/1.65/rom/help/paint"
tFiles["1.6"]["help/paintutils"] = "https://raw.githubusercontent.com/alekso56/ComputercraftLua/1.65/rom/help/paintutils"
tFiles["1.6"]["help/delete"] = "https://raw.githubusercontent.com/alekso56/ComputercraftLua/1.65/rom/help/delete"
tFiles["1.6"]["help/intro"] = "https://raw.githubusercontent.com/alekso56/ComputercraftLua/1.65/rom/help/intro"
tFiles["1.6"]["startup"] = "https://raw.githubusercontent.com/alekso56/ComputercraftLua/1.65/rom/startup"
tFiles["1.6"]["programs/apis"] = "https://raw.githubusercontent.com/alekso56/ComputercraftLua/1.65/rom/programs/apis"
tFiles["1.6"]["programs/turtle"] = "https://raw.githubusercontent.com/alekso56/ComputercraftLua/1.65/rom/programs/turtle"
tFiles["1.6"]["programs/turtle/unequip"] = "https://raw.githubusercontent.com/alekso56/ComputercraftLua/1.65/rom/programs/turtle/unequip"
tFiles["1.6"]["programs/turtle/tunnel"] = "https://raw.githubusercontent.com/alekso56/ComputercraftLua/1.65/rom/programs/turtle/tunnel"
tFiles["1.6"]["programs/turtle/craft"] = "https://raw.githubusercontent.com/alekso56/ComputercraftLua/1.65/rom/programs/turtle/craft"
tFiles["1.6"]["programs/turtle/go"] = "https://raw.githubusercontent.com/alekso56/ComputercraftLua/1.65/rom/programs/turtle/go"
tFiles["1.6"]["programs/turtle/dance"] = "https://raw.githubusercontent.com/alekso56/ComputercraftLua/1.65/rom/programs/turtle/dance"
tFiles["1.6"]["programs/turtle/refuel"] = "https://raw.githubusercontent.com/alekso56/ComputercraftLua/1.65/rom/programs/turtle/refuel"
tFiles["1.6"]["programs/turtle/excavate"] = "https://raw.githubusercontent.com/alekso56/ComputercraftLua/1.65/rom/programs/turtle/excavate"
tFiles["1.6"]["programs/turtle/turn"] = "https://raw.githubusercontent.com/alekso56/ComputercraftLua/1.65/rom/programs/turtle/turn"
tFiles["1.6"]["programs/turtle/equip"] = "https://raw.githubusercontent.com/alekso56/ComputercraftLua/1.65/rom/programs/turtle/equip"
tFiles["1.6"]["programs/redpulse"] = "https://raw.githubusercontent.com/alekso56/ComputercraftLua/1.65/rom/programs/redpulse"
tFiles["1.6"]["programs/fun/worm"] = "https://raw.githubusercontent.com/alekso56/ComputercraftLua/1.65/rom/programs/fun/worm"
tFiles["1.6"]["programs/fun/advanced/levels/8"] = "https://raw.githubusercontent.com/alekso56/ComputercraftLua/1.65/rom/programs/fun/advanced/levels/8"
tFiles["1.6"]["programs/fun/advanced/levels/4"] = "https://raw.githubusercontent.com/alekso56/ComputercraftLua/1.65/rom/programs/fun/advanced/levels/4"
tFiles["1.6"]["programs/fun/advanced/levels/5"] = "https://raw.githubusercontent.com/alekso56/ComputercraftLua/1.65/rom/programs/fun/advanced/levels/5"
tFiles["1.6"]["programs/fun/advanced/levels/3"] = "https://raw.githubusercontent.com/alekso56/ComputercraftLua/1.65/rom/programs/fun/advanced/levels/3"
tFiles["1.6"]["programs/fun/advanced/levels/7"] = "https://raw.githubusercontent.com/alekso56/ComputercraftLua/1.65/rom/programs/fun/advanced/levels/7"
tFiles["1.6"]["programs/fun/advanced/levels/2"] = "https://raw.githubusercontent.com/alekso56/ComputercraftLua/1.65/rom/programs/fun/advanced/levels/2"
tFiles["1.6"]["programs/fun/advanced/levels/12"] = "https://raw.githubusercontent.com/alekso56/ComputercraftLua/1.65/rom/programs/fun/advanced/levels/12"
tFiles["1.6"]["programs/fun/advanced/levels/10"] = "https://raw.githubusercontent.com/alekso56/ComputercraftLua/1.65/rom/programs/fun/advanced/levels/10"
tFiles["1.6"]["programs/fun/advanced/levels/1"] = "https://raw.githubusercontent.com/alekso56/ComputercraftLua/1.65/rom/programs/fun/advanced/levels/1"
tFiles["1.6"]["programs/fun/advanced/levels/0"] = "https://raw.githubusercontent.com/alekso56/ComputercraftLua/1.65/rom/programs/fun/advanced/levels/0"
tFiles["1.6"]["programs/fun/advanced/levels/9"] = "https://raw.githubusercontent.com/alekso56/ComputercraftLua/1.65/rom/programs/fun/advanced/levels/9"
tFiles["1.6"]["programs/fun/advanced/levels/11"] = "https://raw.githubusercontent.com/alekso56/ComputercraftLua/1.65/rom/programs/fun/advanced/levels/11"
tFiles["1.6"]["programs/fun/advanced/levels/6"] = "https://raw.githubusercontent.com/alekso56/ComputercraftLua/1.65/rom/programs/fun/advanced/levels/6"
tFiles["1.6"]["programs/fun/advanced/redirection"] = "https://raw.githubusercontent.com/alekso56/ComputercraftLua/1.65/rom/programs/fun/advanced/redirection"
tFiles["1.6"]["programs/fun/advanced/paint"] = "https://raw.githubusercontent.com/alekso56/ComputercraftLua/1.65/rom/programs/fun/advanced/paint"
tFiles["1.6"]["programs/fun/hello"] = "https://raw.githubusercontent.com/alekso56/ComputercraftLua/1.65/rom/programs/fun/hello"
tFiles["1.6"]["programs/fun/adventure"] = "https://raw.githubusercontent.com/alekso56/ComputercraftLua/1.65/rom/programs/fun/adventure"
tFiles["1.6"]["programs/fun/dj"] = "https://raw.githubusercontent.com/alekso56/ComputercraftLua/1.65/rom/programs/fun/dj"
tFiles["1.6"]["programs/move"] = "https://raw.githubusercontent.com/alekso56/ComputercraftLua/1.65/rom/programs/move"
tFiles["1.6"]["programs/computer/worm"] = "https://raw.githubusercontent.com/alekso56/ComputercraftLua/1.65/rom/programs/computer/worm"
tFiles["1.6"]["programs/computer/hello"] = "https://raw.githubusercontent.com/alekso56/ComputercraftLua/1.65/rom/programs/computer/hello"
tFiles["1.6"]["programs/computer/adventure"] = "https://raw.githubusercontent.com/alekso56/ComputercraftLua/1.65/rom/programs/computer/adventure"
tFiles["1.6"]["programs/rednet/repeat"] = "https://raw.githubusercontent.com/alekso56/ComputercraftLua/1.65/rom/programs/rednet/repeat"
tFiles["1.6"]["programs/rednet/chat"] = "https://raw.githubusercontent.com/alekso56/ComputercraftLua/1.65/rom/programs/rednet/chat"
tFiles["1.6"]["programs/help"] = "https://raw.githubusercontent.com/alekso56/ComputercraftLua/1.65/rom/programs/help"
tFiles["1.6"]["programs/redstone"] = "https://raw.githubusercontent.com/alekso56/ComputercraftLua/1.65/rom/programs/redstone"
tFiles["1.6"]["programs/eject"] = "https://raw.githubusercontent.com/alekso56/ComputercraftLua/1.65/rom/programs/eject"
tFiles["1.6"]["programs/time"] = "https://raw.githubusercontent.com/alekso56/ComputercraftLua/1.65/rom/programs/time"
tFiles["1.6"]["programs/lua"] = "https://raw.githubusercontent.com/alekso56/ComputercraftLua/1.65/rom/programs/lua"
tFiles["1.6"]["programs/cd"] = "https://raw.githubusercontent.com/alekso56/ComputercraftLua/1.65/rom/programs/cd"
tFiles["1.6"]["programs/id"] = "https://raw.githubusercontent.com/alekso56/ComputercraftLua/1.65/rom/programs/id"
tFiles["1.6"]["programs/clear"] = "https://raw.githubusercontent.com/alekso56/ComputercraftLua/1.65/rom/programs/clear"
tFiles["1.6"]["programs/mkdir"] = "https://raw.githubusercontent.com/alekso56/ComputercraftLua/1.65/rom/programs/mkdir"
tFiles["1.6"]["programs/redset"] = "https://raw.githubusercontent.com/alekso56/ComputercraftLua/1.65/rom/programs/redset"
tFiles["1.6"]["programs/shutdown"] = "https://raw.githubusercontent.com/alekso56/ComputercraftLua/1.65/rom/programs/shutdown"
tFiles["1.6"]["programs/advanced/bg"] = "https://raw.githubusercontent.com/alekso56/ComputercraftLua/1.65/rom/programs/advanced/bg"
tFiles["1.6"]["programs/advanced/fg"] = "https://raw.githubusercontent.com/alekso56/ComputercraftLua/1.65/rom/programs/advanced/fg"
tFiles["1.6"]["programs/advanced/multishell"] = "https://raw.githubusercontent.com/alekso56/ComputercraftLua/1.65/rom/programs/advanced/multishell"
tFiles["1.6"]["programs/drive"] = "https://raw.githubusercontent.com/alekso56/ComputercraftLua/1.65/rom/programs/drive"
tFiles["1.6"]["programs/color/paint"] = "https://raw.githubusercontent.com/alekso56/ComputercraftLua/1.65/rom/programs/color/paint"
tFiles["1.6"]["programs/http/pastebin"] = "https://raw.githubusercontent.com/alekso56/ComputercraftLua/1.65/rom/programs/http/pastebin"
tFiles["1.6"]["programs/shell"] = "https://raw.githubusercontent.com/alekso56/ComputercraftLua/1.65/rom/programs/shell"
tFiles["1.6"]["programs/alias"] = "https://raw.githubusercontent.com/alekso56/ComputercraftLua/1.65/rom/programs/alias"
tFiles["1.6"]["programs/label"] = "https://raw.githubusercontent.com/alekso56/ComputercraftLua/1.65/rom/programs/label"
tFiles["1.6"]["programs/edit"] = "https://raw.githubusercontent.com/alekso56/ComputercraftLua/1.65/rom/programs/edit"
tFiles["1.6"]["programs/gps"] = "https://raw.githubusercontent.com/alekso56/ComputercraftLua/1.65/rom/programs/gps"
tFiles["1.6"]["programs/rename"] = "https://raw.githubusercontent.com/alekso56/ComputercraftLua/1.65/rom/programs/rename"
tFiles["1.6"]["programs/reboot"] = "https://raw.githubusercontent.com/alekso56/ComputercraftLua/1.65/rom/programs/reboot"
tFiles["1.6"]["programs/redprobe"] = "https://raw.githubusercontent.com/alekso56/ComputercraftLua/1.65/rom/programs/redprobe"
tFiles["1.6"]["programs/list"] = "https://raw.githubusercontent.com/alekso56/ComputercraftLua/1.65/rom/programs/list"
tFiles["1.6"]["programs/copy"] = "https://raw.githubusercontent.com/alekso56/ComputercraftLua/1.65/rom/programs/copy"
tFiles["1.6"]["programs/type"] = "https://raw.githubusercontent.com/alekso56/ComputercraftLua/1.65/rom/programs/type"
tFiles["1.6"]["programs/pocket"] = "https://raw.githubusercontent.com/alekso56/ComputercraftLua/1.65/rom/programs/pocket"
tFiles["1.6"]["programs/pocket/falling"] = "https://raw.githubusercontent.com/alekso56/ComputercraftLua/1.65/rom/programs/pocket/falling"
tFiles["1.6"]["programs/programs"] = "https://raw.githubusercontent.com/alekso56/ComputercraftLua/1.65/rom/programs/programs"
tFiles["1.6"]["programs/monitor"] = "https://raw.githubusercontent.com/alekso56/ComputercraftLua/1.65/rom/programs/monitor"
tFiles["1.6"]["programs/exit"] = "https://raw.githubusercontent.com/alekso56/ComputercraftLua/1.65/rom/programs/exit"
tFiles["1.6"]["programs/secret"] = "https://raw.githubusercontent.com/alekso56/ComputercraftLua/1.65/rom/programs/secret"
tFiles["1.6"]["programs/secret/alongtimeago"] = "https://raw.githubusercontent.com/alekso56/ComputercraftLua/1.65/rom/programs/secret/alongtimeago"
tFiles["1.6"]["programs/dj"] = "https://raw.githubusercontent.com/alekso56/ComputercraftLua/1.65/rom/programs/dj"
tFiles["1.6"]["programs/delete"] = "https://raw.githubusercontent.com/alekso56/ComputercraftLua/1.65/rom/programs/delete"
tFiles["1.7"] = {}
tFiles["1.7"]["apis/turtle/turtle"] = "https://raw.githubusercontent.com/alekso56/ComputercraftLua/1.79/rom/apis/turtle/turtle"
tFiles["1.7"]["apis/colours"] = "https://raw.githubusercontent.com/alekso56/ComputercraftLua/1.79/rom/apis/colours"
tFiles["1.7"]["apis/colors"] = "https://raw.githubusercontent.com/alekso56/ComputercraftLua/1.79/rom/apis/colors"
tFiles["1.7"]["apis/rednet"] = "https://raw.githubusercontent.com/alekso56/ComputercraftLua/1.79/rom/apis/rednet"
tFiles["1.7"]["apis/io"] = "https://raw.githubusercontent.com/alekso56/ComputercraftLua/1.79/rom/apis/io"
tFiles["1.7"]["apis/term"] = "https://raw.githubusercontent.com/alekso56/ComputercraftLua/1.79/rom/apis/term"
tFiles["1.7"]["apis/vector"] = "https://raw.githubusercontent.com/alekso56/ComputercraftLua/1.79/rom/apis/vector"
tFiles["1.7"]["apis/help"] = "https://raw.githubusercontent.com/alekso56/ComputercraftLua/1.79/rom/apis/help"
tFiles["1.7"]["apis/parallel"] = "https://raw.githubusercontent.com/alekso56/ComputercraftLua/1.79/rom/apis/parallel"
tFiles["1.7"]["apis/gps"] = "https://raw.githubusercontent.com/alekso56/ComputercraftLua/1.79/rom/apis/gps"
tFiles["1.7"]["apis/settings"] = "https://raw.githubusercontent.com/alekso56/ComputercraftLua/1.79/rom/apis/settings"
tFiles["1.7"]["apis/keys"] = "https://raw.githubusercontent.com/alekso56/ComputercraftLua/1.79/rom/apis/keys"
tFiles["1.7"]["apis/textutils"] = "https://raw.githubusercontent.com/alekso56/ComputercraftLua/1.79/rom/apis/textutils"
tFiles["1.7"]["apis/peripheral"] = "https://raw.githubusercontent.com/alekso56/ComputercraftLua/1.79/rom/apis/peripheral"
tFiles["1.7"]["apis/command/commands"] = "https://raw.githubusercontent.com/alekso56/ComputercraftLua/1.79/rom/apis/command/commands"
tFiles["1.7"]["apis/disk"] = "https://raw.githubusercontent.com/alekso56/ComputercraftLua/1.79/rom/apis/disk"
tFiles["1.7"]["apis/window"] = "https://raw.githubusercontent.com/alekso56/ComputercraftLua/1.79/rom/apis/window"
tFiles["1.7"]["apis/paintutils"] = "https://raw.githubusercontent.com/alekso56/ComputercraftLua/1.79/rom/apis/paintutils"
tFiles["1.7"]["autorun/.ignoreme"] = "https://raw.githubusercontent.com/alekso56/ComputercraftLua/1.79/rom/autorun/.ignoreme"
tFiles["1.7"]["help/coroutine"] = "https://raw.githubusercontent.com/alekso56/ComputercraftLua/1.79/rom/help/coroutine"
tFiles["1.7"]["help/helpapi"] = "https://raw.githubusercontent.com/alekso56/ComputercraftLua/1.79/rom/help/helpapi"
tFiles["1.7"]["help/apis"] = "https://raw.githubusercontent.com/alekso56/ComputercraftLua/1.79/rom/help/apis"
tFiles["1.7"]["help/turtle"] = "https://raw.githubusercontent.com/alekso56/ComputercraftLua/1.79/rom/help/turtle"
tFiles["1.7"]["help/repeat"] = "https://raw.githubusercontent.com/alekso56/ComputercraftLua/1.79/rom/help/repeat"
tFiles["1.7"]["help/worm"] = "https://raw.githubusercontent.com/alekso56/ComputercraftLua/1.79/rom/help/worm"
tFiles["1.7"]["help/unequip"] = "https://raw.githubusercontent.com/alekso56/ComputercraftLua/1.79/rom/help/unequip"
tFiles["1.7"]["help/exec"] = "https://raw.githubusercontent.com/alekso56/ComputercraftLua/1.79/rom/help/exec"
tFiles["1.7"]["help/move"] = "https://raw.githubusercontent.com/alekso56/ComputercraftLua/1.79/rom/help/move"
tFiles["1.7"]["help/bg"] = "https://raw.githubusercontent.com/alekso56/ComputercraftLua/1.79/rom/help/bg"
tFiles["1.7"]["help/sleep"] = "https://raw.githubusercontent.com/alekso56/ComputercraftLua/1.79/rom/help/sleep"
tFiles["1.7"]["help/colours"] = "https://raw.githubusercontent.com/alekso56/ComputercraftLua/1.79/rom/help/colours"
tFiles["1.7"]["help/colors"] = "https://raw.githubusercontent.com/alekso56/ComputercraftLua/1.79/rom/help/colors"
tFiles["1.7"]["help/whatsnew"] = "https://raw.githubusercontent.com/alekso56/ComputercraftLua/1.79/rom/help/whatsnew"
tFiles["1.7"]["help/pastebin"] = "https://raw.githubusercontent.com/alekso56/ComputercraftLua/1.79/rom/help/pastebin"
tFiles["1.7"]["help/programming"] = "https://raw.githubusercontent.com/alekso56/ComputercraftLua/1.79/rom/help/programming"
tFiles["1.7"]["help/rednet"] = "https://raw.githubusercontent.com/alekso56/ComputercraftLua/1.79/rom/help/rednet"
tFiles["1.7"]["help/io"] = "https://raw.githubusercontent.com/alekso56/ComputercraftLua/1.79/rom/help/io"
tFiles["1.7"]["help/fs"] = "https://raw.githubusercontent.com/alekso56/ComputercraftLua/1.79/rom/help/fs"
tFiles["1.7"]["help/term"] = "https://raw.githubusercontent.com/alekso56/ComputercraftLua/1.79/rom/help/term"
tFiles["1.7"]["help/vector"] = "https://raw.githubusercontent.com/alekso56/ComputercraftLua/1.79/rom/help/vector"
tFiles["1.7"]["help/changelog"] = "https://raw.githubusercontent.com/alekso56/ComputercraftLua/1.79/rom/help/changelog"
tFiles["1.7"]["help/commandsapi"] = "https://raw.githubusercontent.com/alekso56/ComputercraftLua/1.79/rom/help/commandsapi"
tFiles["1.7"]["help/help"] = "https://raw.githubusercontent.com/alekso56/ComputercraftLua/1.79/rom/help/help"
tFiles["1.7"]["help/tunnel"] = "https://raw.githubusercontent.com/alekso56/ComputercraftLua/1.79/rom/help/tunnel"
tFiles["1.7"]["help/redstone"] = "https://raw.githubusercontent.com/alekso56/ComputercraftLua/1.79/rom/help/redstone"
tFiles["1.7"]["help/craft"] = "https://raw.githubusercontent.com/alekso56/ComputercraftLua/1.79/rom/help/craft"
tFiles["1.7"]["help/fg"] = "https://raw.githubusercontent.com/alekso56/ComputercraftLua/1.79/rom/help/fg"
tFiles["1.7"]["help/eject"] = "https://raw.githubusercontent.com/alekso56/ComputercraftLua/1.79/rom/help/eject"
tFiles["1.7"]["help/time"] = "https://raw.githubusercontent.com/alekso56/ComputercraftLua/1.79/rom/help/time"
tFiles["1.7"]["help/lua"] = "https://raw.githubusercontent.com/alekso56/ComputercraftLua/1.79/rom/help/lua"
tFiles["1.7"]["help/bit"] = "https://raw.githubusercontent.com/alekso56/ComputercraftLua/1.79/rom/help/bit"
tFiles["1.7"]["help/cd"] = "https://raw.githubusercontent.com/alekso56/ComputercraftLua/1.79/rom/help/cd"
tFiles["1.7"]["help/id"] = "https://raw.githubusercontent.com/alekso56/ComputercraftLua/1.79/rom/help/id"
tFiles["1.7"]["help/clear"] = "https://raw.githubusercontent.com/alekso56/ComputercraftLua/1.79/rom/help/clear"
tFiles["1.7"]["help/mkdir"] = "https://raw.githubusercontent.com/alekso56/ComputercraftLua/1.79/rom/help/mkdir"
tFiles["1.7"]["help/printers"] = "https://raw.githubusercontent.com/alekso56/ComputercraftLua/1.79/rom/help/printers"
tFiles["1.7"]["help/shutdown"] = "https://raw.githubusercontent.com/alekso56/ComputercraftLua/1.79/rom/help/shutdown"
tFiles["1.7"]["help/drive"] = "https://raw.githubusercontent.com/alekso56/ComputercraftLua/1.79/rom/help/drive"
tFiles["1.7"]["help/wget"] = "https://raw.githubusercontent.com/alekso56/ComputercraftLua/1.79/rom/help/wget"
tFiles["1.7"]["help/parallel"] = "https://raw.githubusercontent.com/alekso56/ComputercraftLua/1.79/rom/help/parallel"
tFiles["1.7"]["help/http"] = "https://raw.githubusercontent.com/alekso56/ComputercraftLua/1.79/rom/help/http"
tFiles["1.7"]["help/shell"] = "https://raw.githubusercontent.com/alekso56/ComputercraftLua/1.79/rom/help/shell"
tFiles["1.7"]["help/modems"] = "https://raw.githubusercontent.com/alekso56/ComputercraftLua/1.79/rom/help/modems"
tFiles["1.7"]["help/alias"] = "https://raw.githubusercontent.com/alekso56/ComputercraftLua/1.79/rom/help/alias"
tFiles["1.7"]["help/licenses/luaj"] = "https://raw.githubusercontent.com/alekso56/ComputercraftLua/1.79/rom/help/licenses/luaj"
tFiles["1.7"]["help/os"] = "https://raw.githubusercontent.com/alekso56/ComputercraftLua/1.79/rom/help/os"
tFiles["1.7"]["help/label"] = "https://raw.githubusercontent.com/alekso56/ComputercraftLua/1.79/rom/help/label"
tFiles["1.7"]["help/edit"] = "https://raw.githubusercontent.com/alekso56/ComputercraftLua/1.79/rom/help/edit"
tFiles["1.7"]["help/gps"] = "https://raw.githubusercontent.com/alekso56/ComputercraftLua/1.79/rom/help/gps"
tFiles["1.7"]["help/go"] = "https://raw.githubusercontent.com/alekso56/ComputercraftLua/1.79/rom/help/go"
tFiles["1.7"]["help/settings"] = "https://raw.githubusercontent.com/alekso56/ComputercraftLua/1.79/rom/help/settings"
tFiles["1.7"]["help/keys"] = "https://raw.githubusercontent.com/alekso56/ComputercraftLua/1.79/rom/help/keys"
tFiles["1.7"]["help/textutils"] = "https://raw.githubusercontent.com/alekso56/ComputercraftLua/1.79/rom/help/textutils"
tFiles["1.7"]["help/rs"] = "https://raw.githubusercontent.com/alekso56/ComputercraftLua/1.79/rom/help/rs"
tFiles["1.7"]["help/bundled"] = "https://raw.githubusercontent.com/alekso56/ComputercraftLua/1.79/rom/help/bundled"
tFiles["1.7"]["help/dance"] = "https://raw.githubusercontent.com/alekso56/ComputercraftLua/1.79/rom/help/dance"
tFiles["1.7"]["help/rename"] = "https://raw.githubusercontent.com/alekso56/ComputercraftLua/1.79/rom/help/rename"
tFiles["1.7"]["help/reboot"] = "https://raw.githubusercontent.com/alekso56/ComputercraftLua/1.79/rom/help/reboot"
tFiles["1.7"]["help/drives"] = "https://raw.githubusercontent.com/alekso56/ComputercraftLua/1.79/rom/help/drives"
tFiles["1.7"]["help/falling"] = "https://raw.githubusercontent.com/alekso56/ComputercraftLua/1.79/rom/help/falling"
tFiles["1.7"]["help/list"] = "https://raw.githubusercontent.com/alekso56/ComputercraftLua/1.79/rom/help/list"
tFiles["1.7"]["help/copy"] = "https://raw.githubusercontent.com/alekso56/ComputercraftLua/1.79/rom/help/copy"
tFiles["1.7"]["help/math"] = "https://raw.githubusercontent.com/alekso56/ComputercraftLua/1.79/rom/help/math"
tFiles["1.7"]["help/hello"] = "https://raw.githubusercontent.com/alekso56/ComputercraftLua/1.79/rom/help/hello"
tFiles["1.7"]["help/shellapi"] = "https://raw.githubusercontent.com/alekso56/ComputercraftLua/1.79/rom/help/shellapi"
tFiles["1.7"]["help/chat"] = "https://raw.githubusercontent.com/alekso56/ComputercraftLua/1.79/rom/help/chat"
tFiles["1.7"]["help/peripheral"] = "https://raw.githubusercontent.com/alekso56/ComputercraftLua/1.79/rom/help/peripheral"
tFiles["1.7"]["help/type"] = "https://raw.githubusercontent.com/alekso56/ComputercraftLua/1.79/rom/help/type"
tFiles["1.7"]["help/refuel"] = "https://raw.githubusercontent.com/alekso56/ComputercraftLua/1.79/rom/help/refuel"
tFiles["1.7"]["help/string"] = "https://raw.githubusercontent.com/alekso56/ComputercraftLua/1.79/rom/help/string"
tFiles["1.7"]["help/peripherals"] = "https://raw.githubusercontent.com/alekso56/ComputercraftLua/1.79/rom/help/peripherals"
tFiles["1.7"]["help/redirection"] = "https://raw.githubusercontent.com/alekso56/ComputercraftLua/1.79/rom/help/redirection"
tFiles["1.7"]["help/disk"] = "https://raw.githubusercontent.com/alekso56/ComputercraftLua/1.79/rom/help/disk"
tFiles["1.7"]["help/programs"] = "https://raw.githubusercontent.com/alekso56/ComputercraftLua/1.79/rom/help/programs"
tFiles["1.7"]["help/excavate"] = "https://raw.githubusercontent.com/alekso56/ComputercraftLua/1.79/rom/help/excavate"
tFiles["1.7"]["help/monitor"] = "https://raw.githubusercontent.com/alekso56/ComputercraftLua/1.79/rom/help/monitor"
tFiles["1.7"]["help/exit"] = "https://raw.githubusercontent.com/alekso56/ComputercraftLua/1.79/rom/help/exit"
tFiles["1.7"]["help/commands"] = "https://raw.githubusercontent.com/alekso56/ComputercraftLua/1.79/rom/help/commands"
tFiles["1.7"]["help/table"] = "https://raw.githubusercontent.com/alekso56/ComputercraftLua/1.79/rom/help/table"
tFiles["1.7"]["help/earth"] = "https://raw.githubusercontent.com/alekso56/ComputercraftLua/1.79/rom/help/earth"
tFiles["1.7"]["help/turn"] = "https://raw.githubusercontent.com/alekso56/ComputercraftLua/1.79/rom/help/turn"
tFiles["1.7"]["help/events"] = "https://raw.githubusercontent.com/alekso56/ComputercraftLua/1.79/rom/help/events"
tFiles["1.7"]["help/workbench"] = "https://raw.githubusercontent.com/alekso56/ComputercraftLua/1.79/rom/help/workbench"
tFiles["1.7"]["help/gpsapi"] = "https://raw.githubusercontent.com/alekso56/ComputercraftLua/1.79/rom/help/gpsapi"
tFiles["1.7"]["help/credits"] = "https://raw.githubusercontent.com/alekso56/ComputercraftLua/1.79/rom/help/credits"
tFiles["1.7"]["help/multishell"] = "https://raw.githubusercontent.com/alekso56/ComputercraftLua/1.79/rom/help/multishell"
tFiles["1.7"]["help/equip"] = "https://raw.githubusercontent.com/alekso56/ComputercraftLua/1.79/rom/help/equip"
tFiles["1.7"]["help/monitors"] = "https://raw.githubusercontent.com/alekso56/ComputercraftLua/1.79/rom/help/monitors"
tFiles["1.7"]["help/adventure"] = "https://raw.githubusercontent.com/alekso56/ComputercraftLua/1.79/rom/help/adventure"
tFiles["1.7"]["help/dj"] = "https://raw.githubusercontent.com/alekso56/ComputercraftLua/1.79/rom/help/dj"
tFiles["1.7"]["help/redstoneapi"] = "https://raw.githubusercontent.com/alekso56/ComputercraftLua/1.79/rom/help/redstoneapi"
tFiles["1.7"]["help/window"] = "https://raw.githubusercontent.com/alekso56/ComputercraftLua/1.79/rom/help/window"
tFiles["1.7"]["help/paint"] = "https://raw.githubusercontent.com/alekso56/ComputercraftLua/1.79/rom/help/paint"
tFiles["1.7"]["help/set"] = "https://raw.githubusercontent.com/alekso56/ComputercraftLua/1.79/rom/help/set"
tFiles["1.7"]["help/paintutils"] = "https://raw.githubusercontent.com/alekso56/ComputercraftLua/1.79/rom/help/paintutils"
tFiles["1.7"]["help/delete"] = "https://raw.githubusercontent.com/alekso56/ComputercraftLua/1.79/rom/help/delete"
tFiles["1.7"]["help/intro"] = "https://raw.githubusercontent.com/alekso56/ComputercraftLua/1.79/rom/help/intro"
tFiles["1.7"]["startup"] = "https://raw.githubusercontent.com/alekso56/ComputercraftLua/1.79/rom/startup"
tFiles["1.7"]["programs/apis"] = "https://raw.githubusercontent.com/alekso56/ComputercraftLua/1.79/rom/programs/apis"
tFiles["1.7"]["programs/turtle/unequip"] = "https://raw.githubusercontent.com/alekso56/ComputercraftLua/1.79/rom/programs/turtle/unequip"
tFiles["1.7"]["programs/turtle/tunnel"] = "https://raw.githubusercontent.com/alekso56/ComputercraftLua/1.79/rom/programs/turtle/tunnel"
tFiles["1.7"]["programs/turtle/craft"] = "https://raw.githubusercontent.com/alekso56/ComputercraftLua/1.79/rom/programs/turtle/craft"
tFiles["1.7"]["programs/turtle/go"] = "https://raw.githubusercontent.com/alekso56/ComputercraftLua/1.79/rom/programs/turtle/go"
tFiles["1.7"]["programs/turtle/dance"] = "https://raw.githubusercontent.com/alekso56/ComputercraftLua/1.79/rom/programs/turtle/dance"
tFiles["1.7"]["programs/turtle/refuel"] = "https://raw.githubusercontent.com/alekso56/ComputercraftLua/1.79/rom/programs/turtle/refuel"
tFiles["1.7"]["programs/turtle/excavate"] = "https://raw.githubusercontent.com/alekso56/ComputercraftLua/1.79/rom/programs/turtle/excavate"
tFiles["1.7"]["programs/turtle/turn"] = "https://raw.githubusercontent.com/alekso56/ComputercraftLua/1.79/rom/programs/turtle/turn"
tFiles["1.7"]["programs/turtle/equip"] = "https://raw.githubusercontent.com/alekso56/ComputercraftLua/1.79/rom/programs/turtle/equip"
tFiles["1.7"]["programs/fun/worm"] = "https://raw.githubusercontent.com/alekso56/ComputercraftLua/1.79/rom/programs/fun/worm"
tFiles["1.7"]["programs/fun/advanced/levels/8"] = "https://raw.githubusercontent.com/alekso56/ComputercraftLua/1.79/rom/programs/fun/advanced/levels/8"
tFiles["1.7"]["programs/fun/advanced/levels/4"] = "https://raw.githubusercontent.com/alekso56/ComputercraftLua/1.79/rom/programs/fun/advanced/levels/4"
tFiles["1.7"]["programs/fun/advanced/levels/5"] = "https://raw.githubusercontent.com/alekso56/ComputercraftLua/1.79/rom/programs/fun/advanced/levels/5"
tFiles["1.7"]["programs/fun/advanced/levels/3"] = "https://raw.githubusercontent.com/alekso56/ComputercraftLua/1.79/rom/programs/fun/advanced/levels/3"
tFiles["1.7"]["programs/fun/advanced/levels/7"] = "https://raw.githubusercontent.com/alekso56/ComputercraftLua/1.79/rom/programs/fun/advanced/levels/7"
tFiles["1.7"]["programs/fun/advanced/levels/2"] = "https://raw.githubusercontent.com/alekso56/ComputercraftLua/1.79/rom/programs/fun/advanced/levels/2"
tFiles["1.7"]["programs/fun/advanced/levels/12"] = "https://raw.githubusercontent.com/alekso56/ComputercraftLua/1.79/rom/programs/fun/advanced/levels/12"
tFiles["1.7"]["programs/fun/advanced/levels/10"] = "https://raw.githubusercontent.com/alekso56/ComputercraftLua/1.79/rom/programs/fun/advanced/levels/10"
tFiles["1.7"]["programs/fun/advanced/levels/1"] = "https://raw.githubusercontent.com/alekso56/ComputercraftLua/1.79/rom/programs/fun/advanced/levels/1"
tFiles["1.7"]["programs/fun/advanced/levels/0"] = "https://raw.githubusercontent.com/alekso56/ComputercraftLua/1.79/rom/programs/fun/advanced/levels/0"
tFiles["1.7"]["programs/fun/advanced/levels/9"] = "https://raw.githubusercontent.com/alekso56/ComputercraftLua/1.79/rom/programs/fun/advanced/levels/9"
tFiles["1.7"]["programs/fun/advanced/levels/11"] = "https://raw.githubusercontent.com/alekso56/ComputercraftLua/1.79/rom/programs/fun/advanced/levels/11"
tFiles["1.7"]["programs/fun/advanced/levels/6"] = "https://raw.githubusercontent.com/alekso56/ComputercraftLua/1.79/rom/programs/fun/advanced/levels/6"
tFiles["1.7"]["programs/fun/advanced/redirection"] = "https://raw.githubusercontent.com/alekso56/ComputercraftLua/1.79/rom/programs/fun/advanced/redirection"
tFiles["1.7"]["programs/fun/advanced/paint"] = "https://raw.githubusercontent.com/alekso56/ComputercraftLua/1.79/rom/programs/fun/advanced/paint"
tFiles["1.7"]["programs/fun/hello"] = "https://raw.githubusercontent.com/alekso56/ComputercraftLua/1.79/rom/programs/fun/hello"
tFiles["1.7"]["programs/fun/adventure"] = "https://raw.githubusercontent.com/alekso56/ComputercraftLua/1.79/rom/programs/fun/adventure"
tFiles["1.7"]["programs/fun/dj"] = "https://raw.githubusercontent.com/alekso56/ComputercraftLua/1.79/rom/programs/fun/dj"
tFiles["1.7"]["programs/move"] = "https://raw.githubusercontent.com/alekso56/ComputercraftLua/1.79/rom/programs/move"
tFiles["1.7"]["programs/rednet/repeat"] = "https://raw.githubusercontent.com/alekso56/ComputercraftLua/1.79/rom/programs/rednet/repeat"
tFiles["1.7"]["programs/rednet/chat"] = "https://raw.githubusercontent.com/alekso56/ComputercraftLua/1.79/rom/programs/rednet/chat"
tFiles["1.7"]["programs/help"] = "https://raw.githubusercontent.com/alekso56/ComputercraftLua/1.79/rom/programs/help"
tFiles["1.7"]["programs/redstone"] = "https://raw.githubusercontent.com/alekso56/ComputercraftLua/1.79/rom/programs/redstone"
tFiles["1.7"]["programs/eject"] = "https://raw.githubusercontent.com/alekso56/ComputercraftLua/1.79/rom/programs/eject"
tFiles["1.7"]["programs/time"] = "https://raw.githubusercontent.com/alekso56/ComputercraftLua/1.79/rom/programs/time"
tFiles["1.7"]["programs/lua"] = "https://raw.githubusercontent.com/alekso56/ComputercraftLua/1.79/rom/programs/lua"
tFiles["1.7"]["programs/cd"] = "https://raw.githubusercontent.com/alekso56/ComputercraftLua/1.79/rom/programs/cd"
tFiles["1.7"]["programs/id"] = "https://raw.githubusercontent.com/alekso56/ComputercraftLua/1.79/rom/programs/id"
tFiles["1.7"]["programs/clear"] = "https://raw.githubusercontent.com/alekso56/ComputercraftLua/1.79/rom/programs/clear"
tFiles["1.7"]["programs/mkdir"] = "https://raw.githubusercontent.com/alekso56/ComputercraftLua/1.79/rom/programs/mkdir"
tFiles["1.7"]["programs/shutdown"] = "https://raw.githubusercontent.com/alekso56/ComputercraftLua/1.79/rom/programs/shutdown"
tFiles["1.7"]["programs/advanced/bg"] = "https://raw.githubusercontent.com/alekso56/ComputercraftLua/1.79/rom/programs/advanced/bg"
tFiles["1.7"]["programs/advanced/fg"] = "https://raw.githubusercontent.com/alekso56/ComputercraftLua/1.79/rom/programs/advanced/fg"
tFiles["1.7"]["programs/advanced/multishell"] = "https://raw.githubusercontent.com/alekso56/ComputercraftLua/1.79/rom/programs/advanced/multishell"
tFiles["1.7"]["programs/drive"] = "https://raw.githubusercontent.com/alekso56/ComputercraftLua/1.79/rom/programs/drive"
tFiles["1.7"]["programs/http/pastebin"] = "https://raw.githubusercontent.com/alekso56/ComputercraftLua/1.79/rom/programs/http/pastebin"
tFiles["1.7"]["programs/http/wget"] = "https://raw.githubusercontent.com/alekso56/ComputercraftLua/1.79/rom/programs/http/wget"
tFiles["1.7"]["programs/shell"] = "https://raw.githubusercontent.com/alekso56/ComputercraftLua/1.79/rom/programs/shell"
tFiles["1.7"]["programs/alias"] = "https://raw.githubusercontent.com/alekso56/ComputercraftLua/1.79/rom/programs/alias"
tFiles["1.7"]["programs/label"] = "https://raw.githubusercontent.com/alekso56/ComputercraftLua/1.79/rom/programs/label"
tFiles["1.7"]["programs/edit"] = "https://raw.githubusercontent.com/alekso56/ComputercraftLua/1.79/rom/programs/edit"
tFiles["1.7"]["programs/gps"] = "https://raw.githubusercontent.com/alekso56/ComputercraftLua/1.79/rom/programs/gps"
tFiles["1.7"]["programs/rename"] = "https://raw.githubusercontent.com/alekso56/ComputercraftLua/1.79/rom/programs/rename"
tFiles["1.7"]["programs/reboot"] = "https://raw.githubusercontent.com/alekso56/ComputercraftLua/1.79/rom/programs/reboot"
tFiles["1.7"]["programs/list"] = "https://raw.githubusercontent.com/alekso56/ComputercraftLua/1.79/rom/programs/list"
tFiles["1.7"]["programs/copy"] = "https://raw.githubusercontent.com/alekso56/ComputercraftLua/1.79/rom/programs/copy"
tFiles["1.7"]["programs/type"] = "https://raw.githubusercontent.com/alekso56/ComputercraftLua/1.79/rom/programs/type"
tFiles["1.7"]["programs/command/exec"] = "https://raw.githubusercontent.com/alekso56/ComputercraftLua/1.79/rom/programs/command/exec"
tFiles["1.7"]["programs/command/commands"] = "https://raw.githubusercontent.com/alekso56/ComputercraftLua/1.79/rom/programs/command/commands"
tFiles["1.7"]["programs/peripherals"] = "https://raw.githubusercontent.com/alekso56/ComputercraftLua/1.79/rom/programs/peripherals"
tFiles["1.7"]["programs/pocket/falling"] = "https://raw.githubusercontent.com/alekso56/ComputercraftLua/1.79/rom/programs/pocket/falling"
tFiles["1.7"]["programs/programs"] = "https://raw.githubusercontent.com/alekso56/ComputercraftLua/1.79/rom/programs/programs"
tFiles["1.7"]["programs/monitor"] = "https://raw.githubusercontent.com/alekso56/ComputercraftLua/1.79/rom/programs/monitor"
tFiles["1.7"]["programs/exit"] = "https://raw.githubusercontent.com/alekso56/ComputercraftLua/1.79/rom/programs/exit"
tFiles["1.7"]["programs/set"] = "https://raw.githubusercontent.com/alekso56/ComputercraftLua/1.79/rom/programs/set"
tFiles["1.7"]["programs/delete"] = "https://raw.githubusercontent.com/alekso56/ComputercraftLua/1.79/rom/programs/delete"
tFiles["1.8"] = {}
tFiles["1.8"]["apis/textutils.lua"] = "https://raw.githubusercontent.com/dan200/ComputerCraft/master/src/main/resources/assets/computercraft/lua/rom/apis/textutils.lua"
tFiles["1.8"]["apis/turtle/turtle.lua"] = "https://raw.githubusercontent.com/dan200/ComputerCraft/master/src/main/resources/assets/computercraft/lua/rom/apis/turtle/turtle.lua"