-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.toml
2288 lines (1744 loc) · 83.1 KB
/
index.toml
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
hash-format = "sha256"
[[files]]
file = "config/carryon-common.toml"
hash = "76eb7f92ff788e5436314a27f5e8927a1796013b7488bb2b19a81c6b9554c7a4"
[[files]]
file = "config/deleteitem-common.toml"
hash = "4f0904e94709f860115adc299596d89a423b031454083ccfb9a1b89b12d6ce91"
[[files]]
file = "config/ferritecore-mixin.toml"
hash = "4218b3350b7b45e6ee4d2b9973c307a94b5da93c11f4e451f55c36a4ef34571c"
[[files]]
file = "config/immersive_weathering-common.toml"
hash = "51b092f936d1e720345736096f275b5f956a3148571356cf38b98794aa28c529"
[[files]]
file = "config/incontrol/spawn.json"
hash = "82a4f36a111f6b18ea89ed1b87bd4a8529ed14053cbb62601a7a8df8bc8bcceb"
[[files]]
file = "config/modernfix-mixins.properties"
hash = "b5ddc30ddc6869ac60370801ca45ea07a9b074073da7e59a82c3a8dcc2104442"
[[files]]
file = "kubejs/assets/computercraft/blockstates/wireless_modem_advanced.json"
hash = "0a38a3d2e7349266be2c5f8e08c8ae55bdbf5e4388d82406d5d3468380948154"
[[files]]
file = "kubejs/assets/computercraft/blockstates/wireless_modem_normal.json"
hash = "3ecad9e74b1ac0bdaa8c9443b39aa29eb5010fca48e9d86bdb2c5ffc6436747f"
[[files]]
file = "kubejs/assets/computercraft/models/block/full_modem.json"
hash = "1d11c1bd00eb9bd94c645e4b02cea54707b334efd6b53f28666e24cf1f6e0194"
[[files]]
file = "kubejs/assets/computercraft/models/block/modem.json"
hash = "f2af61284c2e5aeb56bbc541f0adadb6f82ab4f95237db0971c7354b9c159fac"
[[files]]
file = "kubejs/assets/computercraft/models/block/turtle_modem_advanced_off_left.json"
hash = "5a064728be89d8a4962f33ad52c6081632aeb8f90cfaee3b95691ed582c3900e"
[[files]]
file = "kubejs/assets/computercraft/models/block/turtle_modem_advanced_off_right.json"
hash = "8f7f38f6fb14c426c54f2b221e7dea9c5ddbded8a535f8119704125061448409"
[[files]]
file = "kubejs/assets/computercraft/models/block/turtle_modem_advanced_on_left.json"
hash = "ccae0abc38c035e1db78a45dc109c6651681d843e409f2a527e897675e7a717b"
[[files]]
file = "kubejs/assets/computercraft/models/block/turtle_modem_advanced_on_right.json"
hash = "43a605c88f44dc0e88a3cac647dae2f4c8fa2808c8d194be7f3920401a51fadf"
[[files]]
file = "kubejs/assets/computercraft/models/block/turtle_modem_normal_off_left.json"
hash = "20a13adaf04b513271c7ffdbf79d282f7ebe6cc38588715bb517ed9f240ada55"
[[files]]
file = "kubejs/assets/computercraft/models/block/turtle_modem_normal_off_right.json"
hash = "2d76a1eb270c238ec2311526035683e90a6a8d78d1438c73036a0d203a69758c"
[[files]]
file = "kubejs/assets/computercraft/models/block/turtle_modem_normal_on_left.json"
hash = "8959ccda7bf4b44a14cbaf24c62044c87996787294f3c0e7a66f3bd2ddf76069"
[[files]]
file = "kubejs/assets/computercraft/models/block/turtle_modem_normal_on_right.json"
hash = "a2bbe81b07a47b47994c88926ff2f97ccfe28da6fc7d7e85b71f53499401d386"
[[files]]
file = "kubejs/assets/computercraft/models/block/wired_modem_full_off.json"
hash = "83495ea1328cbeeebbc181310cb07fcaa22f1848ddbc9a4a7b20b362a2333d72"
[[files]]
file = "kubejs/assets/computercraft/models/block/wired_modem_full_off_peripheral.json"
hash = "8955794dac6c5890aa38efde12abc6dad3a654cbeb597448dc22ea2e93355f58"
[[files]]
file = "kubejs/assets/computercraft/models/block/wired_modem_full_on.json"
hash = "45409363442df2b317a5a7fe9b50c97f7073bb1189cd4876032efaf6b7fc3832"
[[files]]
file = "kubejs/assets/computercraft/models/block/wired_modem_full_on_peripheral.json"
hash = "c39922d67146aea07342b5906e7d4676e33b90daca997c1dff3162c67e2ab70c"
[[files]]
file = "kubejs/assets/computercraft/models/block/wireless_modem_advanced_horizontal_off.json"
hash = "08b8c0d847f0b984d9061401acedadccd900b8f4ac2272dd957998b5655ff9bc"
[[files]]
file = "kubejs/assets/computercraft/models/block/wireless_modem_advanced_horizontal_on.json"
hash = "ac1bf6723fc3a49a1d3f2e8022949e5271f71c27723d3a284e2748784bb8528d"
[[files]]
file = "kubejs/assets/computercraft/models/block/wireless_modem_advanced_off.json"
hash = "0b1f73eefbe449d2136f6c0ae99f1c7daa4afebf99bf4e06a06e02e0b9cdcaad"
[[files]]
file = "kubejs/assets/computercraft/models/block/wireless_modem_advanced_on.json"
hash = "4341e3e947c142c9996453d96f298213f20d851711ebf09b9ec92e299cf178ee"
[[files]]
file = "kubejs/assets/computercraft/models/block/wireless_modem_base.json"
hash = "193c8617fc08fe8ebcded1e858c05f3bc11c7fbe922337011702773430b21b42"
[[files]]
file = "kubejs/assets/computercraft/models/block/wireless_modem_horizontal_base.json"
hash = "5e1676d4b66c84dfa392ca9628f996adf307c6a6b5fcf97ac15360b35c5b4f99"
[[files]]
file = "kubejs/assets/computercraft/models/block/wireless_modem_normal_horizontal_off.json"
hash = "56406c83b4766cabd184a0f23290233fa9a43d53cb06670ec5d696d72102ee4d"
[[files]]
file = "kubejs/assets/computercraft/models/block/wireless_modem_normal_horizontal_on.json"
hash = "6df173eec66f7b1a31e42db2463e07d4b341c82ed2fdf90e7b61b9efacb991dd"
[[files]]
file = "kubejs/assets/computercraft/models/block/wireless_modem_normal_off.json"
hash = "b01b1c9a473aebe28175af15034b7569bdb23a6bf9257cc70db0bb7dc4ad3794"
[[files]]
file = "kubejs/assets/computercraft/models/block/wireless_modem_normal_on.json"
hash = "f2cd8c48f6637c48c450c86a7a15cc56838510d32134ff2d27e5406693973c6d"
[[files]]
file = "kubejs/assets/computercraft/models/item/turtle_modem_advanced_off_left.json"
hash = "5a064728be89d8a4962f33ad52c6081632aeb8f90cfaee3b95691ed582c3900e"
[[files]]
file = "kubejs/assets/computercraft/models/item/turtle_modem_advanced_off_right.json"
hash = "8f7f38f6fb14c426c54f2b221e7dea9c5ddbded8a535f8119704125061448409"
[[files]]
file = "kubejs/assets/computercraft/models/item/turtle_modem_advanced_on_left.json"
hash = "ccae0abc38c035e1db78a45dc109c6651681d843e409f2a527e897675e7a717b"
[[files]]
file = "kubejs/assets/computercraft/models/item/turtle_modem_advanced_on_right.json"
hash = "43a605c88f44dc0e88a3cac647dae2f4c8fa2808c8d194be7f3920401a51fadf"
[[files]]
file = "kubejs/assets/computercraft/models/item/turtle_modem_base_left.json"
hash = "747bc2f925d7c18d94e59b4b82eadf0be728483f5a62adea3f1816533690ae08"
[[files]]
file = "kubejs/assets/computercraft/models/item/turtle_modem_base_right.json"
hash = "cdbc2eff78598e6811069e694a1b9064907ca4e6a7696e1aa37a3407c9acc9b2"
[[files]]
file = "kubejs/assets/computercraft/models/item/turtle_modem_normal_off_left.json"
hash = "20a13adaf04b513271c7ffdbf79d282f7ebe6cc38588715bb517ed9f240ada55"
[[files]]
file = "kubejs/assets/computercraft/models/item/turtle_modem_normal_off_right.json"
hash = "2d76a1eb270c238ec2311526035683e90a6a8d78d1438c73036a0d203a69758c"
[[files]]
file = "kubejs/assets/computercraft/models/item/turtle_modem_normal_on_left.json"
hash = "8959ccda7bf4b44a14cbaf24c62044c87996787294f3c0e7a66f3bd2ddf76069"
[[files]]
file = "kubejs/assets/computercraft/models/item/turtle_modem_normal_on_right.json"
hash = "a2bbe81b07a47b47994c88926ff2f97ccfe28da6fc7d7e85b71f53499401d386"
[[files]]
file = "kubejs/assets/computercraft/textures/block/cable_core.png"
hash = "6bb12e841ce27441c475c9ee66bfbae9178fc748b3785abfed76a4a7d170de1f"
[[files]]
file = "kubejs/assets/computercraft/textures/block/cable_side.png"
hash = "9101c0299ab64a634801b44efcf452412e37e463cce4b231ffb4e6505937cb7f"
[[files]]
file = "kubejs/assets/computercraft/textures/block/computer_advanced_front.png"
hash = "34561811e351708a1c00af866506672bf3528960f8dcababe4fc8bf35e1bc1d1"
[[files]]
file = "kubejs/assets/computercraft/textures/block/computer_advanced_front_blink.png"
hash = "3b12b94e6b75d29aedfd102df91b8caf8e9fac5fc6e8bda3bfcb464bb7ff13f4"
[[files]]
file = "kubejs/assets/computercraft/textures/block/computer_advanced_front_blink.png.mcmeta"
hash = "cedb1e67aa152a161a26b225b5787021757e12d0ba0f5a2964632095cd801d19"
[[files]]
file = "kubejs/assets/computercraft/textures/block/computer_advanced_front_on.png"
hash = "b77506e0e411eb3f2e96a684e520db742e8de76c84139ccc48cceb63b5f7438c"
[[files]]
file = "kubejs/assets/computercraft/textures/block/computer_advanced_side.png"
hash = "f80c8f993e7f9e3fe1c8f351fba03410189db81c11ee05ead8d0fbd09fd2a6cf"
[[files]]
file = "kubejs/assets/computercraft/textures/block/computer_advanced_top.png"
hash = "e5ca13425f91e3fb7069de525cac4ee21e718cfdfa9d03e5ad818af91505e2dc"
[[files]]
file = "kubejs/assets/computercraft/textures/block/computer_command_front.png"
hash = "c8f84bd25f1e6396fb1856d52538c2aefe20794ba4b024062ae317356bb75053"
[[files]]
file = "kubejs/assets/computercraft/textures/block/computer_command_front_blink.png"
hash = "5388ba80d2944bb41a1d694a350fc69b0b71e2f50ebce4ca10808d9fd3b0cb25"
[[files]]
file = "kubejs/assets/computercraft/textures/block/computer_command_front_blink.png.mcmeta"
hash = "cedb1e67aa152a161a26b225b5787021757e12d0ba0f5a2964632095cd801d19"
[[files]]
file = "kubejs/assets/computercraft/textures/block/computer_command_front_on.png"
hash = "4daa3f802bf91ef39562e45fd7856751f1ffba41ad7a28201c7add718d2cfa7e"
[[files]]
file = "kubejs/assets/computercraft/textures/block/computer_command_side.png"
hash = "dada4953f0432bd1da9b6c7b7ef622dfdc9e463936f639e3bff8ded40c074c27"
[[files]]
file = "kubejs/assets/computercraft/textures/block/computer_command_top.png"
hash = "86abeef551800a257b1d82b98dce449ecc4d228f5dde34973356b483cbaf2d96"
[[files]]
file = "kubejs/assets/computercraft/textures/block/computer_normal_front.png"
hash = "96f086cc96b7ad364cb4746d471d8e12cadcf30e70482a36e9ba0fe55a64fc8e"
[[files]]
file = "kubejs/assets/computercraft/textures/block/computer_normal_front_blink.png"
hash = "c845055941367fc6134107c4e52dfffa5f73d0f5ed4302cd1ece0a1992faa289"
[[files]]
file = "kubejs/assets/computercraft/textures/block/computer_normal_front_blink.png.mcmeta"
hash = "cedb1e67aa152a161a26b225b5787021757e12d0ba0f5a2964632095cd801d19"
[[files]]
file = "kubejs/assets/computercraft/textures/block/computer_normal_front_on.png"
hash = "52f0be8cf511050d62dfdac82a7a406ba5d9ad2c310b7947b37061fd15bda462"
[[files]]
file = "kubejs/assets/computercraft/textures/block/computer_normal_side.png"
hash = "78ff817802b6d941863199ced497ff0e02df99958093f70bce978e0a3b9c4b03"
[[files]]
file = "kubejs/assets/computercraft/textures/block/computer_normal_top.png"
hash = "672391368436cf945e4c96872e7e96104e374dc51333d154ec7381edecea5894"
[[files]]
file = "kubejs/assets/computercraft/textures/block/disk_drive_front.png"
hash = "6def60d29fb7b86a6ec7b9254e9e4eae42093e91093fe175b494888d4c851c88"
[[files]]
file = "kubejs/assets/computercraft/textures/block/disk_drive_front_accepted.png"
hash = "95f5c632be614f2215e83338a3b7821ef6c64c29f317ef1edefecafd5e7cf36e"
[[files]]
file = "kubejs/assets/computercraft/textures/block/disk_drive_front_rejected.png"
hash = "a61a98e63f6a781e4759f13fe1c1afb718719d38fd31760f7ce7cabb5de96e17"
[[files]]
file = "kubejs/assets/computercraft/textures/block/disk_drive_side.png"
hash = "7a5cef120fdb2553648f5cb7f284c3051d6224f1441e7be1d58e5ac06f544d78"
[[files]]
file = "kubejs/assets/computercraft/textures/block/disk_drive_top.png"
hash = "0688073655f23c7fdf711cc0de8452ecffecf562bef9342aaee55b1aaa6b7415"
[[files]]
file = "kubejs/assets/computercraft/textures/block/full_wired_modem_face.png"
hash = "9e08d222b582fe3fec1a789e4c0a4fdc9946e4ab6e5e3557cc3b8f873f47337a"
[[files]]
file = "kubejs/assets/computercraft/textures/block/full_wired_modem_face_on.png"
hash = "f9613cc403971e4ff288179af1ea0319549c22322ca9020304de55af52a4452b"
[[files]]
file = "kubejs/assets/computercraft/textures/block/full_wired_modem_face_peripheral.png"
hash = "29e6ebc397d02cd0f523164ca5573ed2a92ae6dc11193a6bc39d62542db97e10"
[[files]]
file = "kubejs/assets/computercraft/textures/block/full_wired_modem_face_peripheral_on.png"
hash = "e8c52b395d5239b3aa3acb86d549d55ecf09bf19bc3c64d7bd8e78ecb774f88c"
[[files]]
file = "kubejs/assets/computercraft/textures/block/full_wired_modem_top.png"
hash = "07074abe1117dcb136c38b9a52672c2e39bb2c452bef05693443725266dfea94"
[[files]]
file = "kubejs/assets/computercraft/textures/block/modem_back.png"
hash = "44e4f3750fe2476a19f4b83b810057f20bbdd33498b29f413bcb325e8cb5f693"
[[files]]
file = "kubejs/assets/computercraft/textures/block/monitor_advanced_0.png"
hash = "f3dc1c18e1625b8e1221fa5972ae5bd3504abf8cba2a80e99ae256b932f071ca"
[[files]]
file = "kubejs/assets/computercraft/textures/block/monitor_advanced_1.png"
hash = "76c4a2996cd77d027197d8bf16f50e3acfa5a3389e16e0a72746db45459845d9"
[[files]]
file = "kubejs/assets/computercraft/textures/block/monitor_advanced_15.png"
hash = "c8d031602891f7362ccaff304f00f779ffccb06f841d1329c35c065f57d07322"
[[files]]
file = "kubejs/assets/computercraft/textures/block/monitor_advanced_16.png"
hash = "b0daa8a23f6838e60e8574acdf0919c52c3f28179d698906f3eaa29443bae189"
[[files]]
file = "kubejs/assets/computercraft/textures/block/monitor_advanced_17.png"
hash = "fd1fae9144da6b5ec42d0504b9ff463b262946233ac979a30758a310b86c0e00"
[[files]]
file = "kubejs/assets/computercraft/textures/block/monitor_advanced_18.png"
hash = "8cdfb320442e43baa0216012e63637979761bdbce007f92f3fc23e1826246cdb"
[[files]]
file = "kubejs/assets/computercraft/textures/block/monitor_advanced_19.png"
hash = "1e8f4a3ed9576867c2880169a6c1ded03508648201886ae0272f8fc2445620d3"
[[files]]
file = "kubejs/assets/computercraft/textures/block/monitor_advanced_2.png"
hash = "c0b24e96aea17f1cac447c9f60d29237247182e4a048caca4551f46729ba9e78"
[[files]]
file = "kubejs/assets/computercraft/textures/block/monitor_advanced_20.png"
hash = "9906dc1b6a87df0d5330a7b0e9d8f4347d9674214c2b8fc6d573169a131d6bca"
[[files]]
file = "kubejs/assets/computercraft/textures/block/monitor_advanced_21.png"
hash = "4a4d996a4348c8cd1dc4a306eb7c9eb749f9299b58d808ef867ae142cfeb86d7"
[[files]]
file = "kubejs/assets/computercraft/textures/block/monitor_advanced_22.png"
hash = "22cabfebde626c806238c2e742d033428af0191b58b252f346c11acd1eda769f"
[[files]]
file = "kubejs/assets/computercraft/textures/block/monitor_advanced_23.png"
hash = "565677d33b69abc82dc58722625fb02dfbce54bcde56f99f962d9d61ff8f09f1"
[[files]]
file = "kubejs/assets/computercraft/textures/block/monitor_advanced_24.png"
hash = "39996c8e2920114e9e74985d40205d98a292819faab733c29330a551f5f51f5a"
[[files]]
file = "kubejs/assets/computercraft/textures/block/monitor_advanced_25.png"
hash = "d37f8436960ecf0eb73227b02608f36939cf7017ab3d47522d684edb7360e7c5"
[[files]]
file = "kubejs/assets/computercraft/textures/block/monitor_advanced_26.png"
hash = "c5886e06dea84f63b9d0e959dcd38f0c0c41abf4e5d0855b20a2dcf4557cd6a7"
[[files]]
file = "kubejs/assets/computercraft/textures/block/monitor_advanced_27.png"
hash = "c8644cbd149128af2d0d4c8cedac37aaeb079f446b9cf7a9285dce65d46c9841"
[[files]]
file = "kubejs/assets/computercraft/textures/block/monitor_advanced_28.png"
hash = "719e479d18189ae0734d508e6fa6473dc9881e099224079b52de82d51d72bf51"
[[files]]
file = "kubejs/assets/computercraft/textures/block/monitor_advanced_29.png"
hash = "f7e60cbf25d7e86f5432bd32d4d3b691967ecb751dd8a1c2f58d58fa9db035d3"
[[files]]
file = "kubejs/assets/computercraft/textures/block/monitor_advanced_3.png"
hash = "fe07232fc190ea877befed5a13518b46e8b1555011e2f3a90f141a59a40aebd5"
[[files]]
file = "kubejs/assets/computercraft/textures/block/monitor_advanced_30.png"
hash = "1d70d2b5bb3b5c1de0c75a2a5634f40030452acb5ca8a2f32e27a4ef3f17e4ae"
[[files]]
file = "kubejs/assets/computercraft/textures/block/monitor_advanced_31.png"
hash = "f9288c4ef1ed0cbc0a6f863f6a79c1f8df011d16a6c450232e2960e10e93ae84"
[[files]]
file = "kubejs/assets/computercraft/textures/block/monitor_advanced_32.png"
hash = "bcef689159edfa41660f08c568457e97ee1205cebecca1b3ce15b0cb07e27f74"
[[files]]
file = "kubejs/assets/computercraft/textures/block/monitor_advanced_33.png"
hash = "ad3a25a7a5865028f0b8defc943d6c8173d5e614df5f7822cb9f4317bc3ad33e"
[[files]]
file = "kubejs/assets/computercraft/textures/block/monitor_advanced_34.png"
hash = "43341ea2cf653e4bcf0834900ffbf08d8410fb19fa0250c8acdfdb9ff668455b"
[[files]]
file = "kubejs/assets/computercraft/textures/block/monitor_advanced_35.png"
hash = "4890d0beb7d843139313d8b9e8a11fa69b10fcc1c17ce2f442079a8a478006c5"
[[files]]
file = "kubejs/assets/computercraft/textures/block/monitor_advanced_36.png"
hash = "6c29384475970867b13e1c796964f46dadcb903c80957ee61316b0e97dcdd881"
[[files]]
file = "kubejs/assets/computercraft/textures/block/monitor_advanced_37.png"
hash = "a6cd703f801864d99bfa5942a47fb9a8858ccac28dca7af03d27ebf9df7cb575"
[[files]]
file = "kubejs/assets/computercraft/textures/block/monitor_advanced_38.png"
hash = "32e5913e8b418d67cc11973db6481fe99026a1361c5ba8202e434cbef36efd9d"
[[files]]
file = "kubejs/assets/computercraft/textures/block/monitor_advanced_39.png"
hash = "27776c6abca42389f32f283090fe8b75d160ece209dfae1eeb31a5cc6d6a8dbb"
[[files]]
file = "kubejs/assets/computercraft/textures/block/monitor_advanced_4.png"
hash = "76667aec34491fab5fdd6a0c2dad087381078e9d610603ef763941ccfb488ba5"
[[files]]
file = "kubejs/assets/computercraft/textures/block/monitor_advanced_40.png"
hash = "27f8c26fffb9a51a271f089a96293b6892cfb71933154a97ceda22bfed60c2ba"
[[files]]
file = "kubejs/assets/computercraft/textures/block/monitor_advanced_41.png"
hash = "6f41a0488e25eb7ab7a9645359e807ae6d18f0a50475251ba21a5ad2b5d0520d"
[[files]]
file = "kubejs/assets/computercraft/textures/block/monitor_advanced_42.png"
hash = "cb199cb7524824ee03001d41c9537144f96b6be34e1511cd4a041126bbc7996e"
[[files]]
file = "kubejs/assets/computercraft/textures/block/monitor_advanced_43.png"
hash = "9ca0bea661d1244e61c53bb8ac5d77256d2024b4d6824e4e98d5e0b75303d24b"
[[files]]
file = "kubejs/assets/computercraft/textures/block/monitor_advanced_44.png"
hash = "1d5de8e31615ec83beb55da25db83b65c75c237cc1e6ab70132caa16ccd16df8"
[[files]]
file = "kubejs/assets/computercraft/textures/block/monitor_advanced_45.png"
hash = "55e29317884e80124e784aeb87c89a1f1c8136846ceed0ef93e75026d0827813"
[[files]]
file = "kubejs/assets/computercraft/textures/block/monitor_advanced_46.png"
hash = "c3d232225f91b4fc9c1cfd25fd3b439405f350ac0168c3f50728955e510a8daa"
[[files]]
file = "kubejs/assets/computercraft/textures/block/monitor_advanced_47.png"
hash = "6b510241c88acff1dd910c668beec11c6fbb874fa80f15fe9d533caec4ef68ea"
[[files]]
file = "kubejs/assets/computercraft/textures/block/monitor_advanced_5.png"
hash = "fea41025c6e309d71ece1fc15db17b2fa6f6bce468c8fffc1c1284f868d0c7d4"
[[files]]
file = "kubejs/assets/computercraft/textures/block/monitor_advanced_6.png"
hash = "1186817b228388343e6f2f44af1927a7c60fb1e6170ebd8b80aaf31763092fc4"
[[files]]
file = "kubejs/assets/computercraft/textures/block/monitor_advanced_7.png"
hash = "1ec357384c69dac481c64e73663d3fd7fc9abe96a5203e48a33b4256fc8f3348"
[[files]]
file = "kubejs/assets/computercraft/textures/block/monitor_normal_0.png"
hash = "b844261d949a974ccc02a565ed51ffb6acff257b1a3dd9bc444c62d7abbc5638"
[[files]]
file = "kubejs/assets/computercraft/textures/block/monitor_normal_1.png"
hash = "0e138da881c0a83d63a8697ed2d4246e638dee33afb5d1f86eca2441e01ff1dd"
[[files]]
file = "kubejs/assets/computercraft/textures/block/monitor_normal_15.png"
hash = "6e131222af1e88141b353c2f7f58e5aea294d0c2c5f25e2ac2e9ea9db021c877"
[[files]]
file = "kubejs/assets/computercraft/textures/block/monitor_normal_16.png"
hash = "ddaaf6ee21686a99a4e5042164aba614b1f7b9f248227c64b6d12af881aed706"
[[files]]
file = "kubejs/assets/computercraft/textures/block/monitor_normal_17.png"
hash = "acf1fea91fd2b737661f84461167f0431a461cfc7919d2c9863c5309bcdc0918"
[[files]]
file = "kubejs/assets/computercraft/textures/block/monitor_normal_18.png"
hash = "a637f028efdab2666cab5004b6ba646672872a1943e17c5bd3e23420b34a1fac"
[[files]]
file = "kubejs/assets/computercraft/textures/block/monitor_normal_19.png"
hash = "74e25bc5b4b8731bce78966de0b0b2f85d2ea3259ea4af1a5c66a752f4333bc9"
[[files]]
file = "kubejs/assets/computercraft/textures/block/monitor_normal_2.png"
hash = "21cebd33acc156a49c96407a8d97b0f226c43463285fe1d6f8313a7f0f8498d0"
[[files]]
file = "kubejs/assets/computercraft/textures/block/monitor_normal_20.png"
hash = "bb749915cabfd755c1e61d09c6a8ff1ca96c364e2620ef2b5780ac0afec4bb61"
[[files]]
file = "kubejs/assets/computercraft/textures/block/monitor_normal_21.png"
hash = "653c53cdbfcbdf9f971a764fd5119cbad9fbb2d1220b1eefb6160fe1bfaa5533"
[[files]]
file = "kubejs/assets/computercraft/textures/block/monitor_normal_22.png"
hash = "07da7ac4abd747f66f11c4a31d75eb4793c5edcdc9c8f7d7595511407248c56e"
[[files]]
file = "kubejs/assets/computercraft/textures/block/monitor_normal_23.png"
hash = "b148321e4f3adc17b38532490169c3a5b5e38dd8bdf24f9a7520ee267b7aa215"
[[files]]
file = "kubejs/assets/computercraft/textures/block/monitor_normal_24.png"
hash = "fdd1f04fb2b3ef82be58f1fb96a30f7aef7b1111a4eecdf1b1e7ed3d9f79c761"
[[files]]
file = "kubejs/assets/computercraft/textures/block/monitor_normal_25.png"
hash = "43c7a8cfe2ed0ea0d2b7c41600a8b83e8bd2278a3c3a52caaa5755811d0c6c29"
[[files]]
file = "kubejs/assets/computercraft/textures/block/monitor_normal_26.png"
hash = "cd0011d11fa39600a0f9cf48087570c6e5e118cedf127355e410403543dfeb17"
[[files]]
file = "kubejs/assets/computercraft/textures/block/monitor_normal_27.png"
hash = "a901afae7bdb66678f08a39b32f8a46da9864c8a64fabc0e77a7f12b93df12ba"
[[files]]
file = "kubejs/assets/computercraft/textures/block/monitor_normal_28.png"
hash = "a731e32a092d70f8bcd7177a333a0d25c67a5e654dcd840b370019d616c3a603"
[[files]]
file = "kubejs/assets/computercraft/textures/block/monitor_normal_29.png"
hash = "82e51e1305f18ceaaed990f13a602ad74514125bdf952fc509589cc0f296f1ea"
[[files]]
file = "kubejs/assets/computercraft/textures/block/monitor_normal_3.png"
hash = "93d283b307d268d291500c919c8ddca07072c4c09c3baa2edf1550de485179fe"
[[files]]
file = "kubejs/assets/computercraft/textures/block/monitor_normal_30.png"
hash = "5f3a26dc319ab78cc91b1b688c44dd075df06599064cb4466b7896082e7b5b21"
[[files]]
file = "kubejs/assets/computercraft/textures/block/monitor_normal_31.png"
hash = "9a07795cf338213c934f0e2a67120d16ff3b0e38dd747dc66931e31acd316eb1"
[[files]]
file = "kubejs/assets/computercraft/textures/block/monitor_normal_32.png"
hash = "ef85515b7022803da1ceb4f5c8fb57330ebef2c20d6d7f932a1500e02f38ee92"
[[files]]
file = "kubejs/assets/computercraft/textures/block/monitor_normal_33.png"
hash = "4f9276b9d7af8a54458e2d0d84d8b261791ca70f167952ca4a2003322ab547de"
[[files]]
file = "kubejs/assets/computercraft/textures/block/monitor_normal_34.png"
hash = "370b0bc73a6bbfb133cddfbc023335e1a6c8fa91cebe161092be53993089cca0"
[[files]]
file = "kubejs/assets/computercraft/textures/block/monitor_normal_35.png"
hash = "45dccdf1960e44257fccd83952a35aebd9207db52a9cc1b11d967fee804f2e40"
[[files]]
file = "kubejs/assets/computercraft/textures/block/monitor_normal_36.png"
hash = "98ab6abd0da23136bd92fe2a15b7759c63bb963905c009d2c49b258c7e97d175"
[[files]]
file = "kubejs/assets/computercraft/textures/block/monitor_normal_37.png"
hash = "5d2a543d9f015a667d37914aebf97cc5c2edcc07df3188f1dc8656df4bae6548"
[[files]]
file = "kubejs/assets/computercraft/textures/block/monitor_normal_38.png"
hash = "fab01ec0097cbccae5afd4228c4a04a957de268680a37fafe5a39329b13035d5"
[[files]]
file = "kubejs/assets/computercraft/textures/block/monitor_normal_39.png"
hash = "1f51beb0228db4c5d4039a5aafde4d085776dcf4aa4bade0313d1d04ca7c2627"
[[files]]
file = "kubejs/assets/computercraft/textures/block/monitor_normal_4.png"
hash = "a52a6847ff418045f74311699f2720a372bd799994dd41c06110b556928e79cc"
[[files]]
file = "kubejs/assets/computercraft/textures/block/monitor_normal_40.png"
hash = "6dbe8509bc5a924fd0d61535b637620767d502d0f02f948bcdae9538b8c523d3"
[[files]]
file = "kubejs/assets/computercraft/textures/block/monitor_normal_41.png"
hash = "2d740f0c9ef04d392f82eb0f5298b6db3dd0abdd069442d62825166984c41c64"
[[files]]
file = "kubejs/assets/computercraft/textures/block/monitor_normal_42.png"
hash = "6c05470fbaa1eec316ad42678633bd7283f70760666749cb01d5640dee9c04c7"
[[files]]
file = "kubejs/assets/computercraft/textures/block/monitor_normal_43.png"
hash = "6a96f92f2679a7069e2979f64fd750cae80530f1a5e537c4ceea3e5f57a82a2a"
[[files]]
file = "kubejs/assets/computercraft/textures/block/monitor_normal_44.png"
hash = "eecbb00f6e1db1047613735a4793c222acc37bb591ea300da5f9e63469e76411"
[[files]]
file = "kubejs/assets/computercraft/textures/block/monitor_normal_45.png"
hash = "606516e65e6339739471f149dff11bdb2301355371d3b5453e87b64a190ee24b"
[[files]]
file = "kubejs/assets/computercraft/textures/block/monitor_normal_46.png"
hash = "6b23c9d0bbe05e1d68c42d2671b93fd5ad9948d3987498c190f5ba0d07b8c7aa"
[[files]]
file = "kubejs/assets/computercraft/textures/block/monitor_normal_47.png"
hash = "be0f4af50bdde6da4d2f3a1fd03fbed5ca8de669007ac15971e2022db6787a0f"
[[files]]
file = "kubejs/assets/computercraft/textures/block/monitor_normal_5.png"
hash = "d33e6f6b2365756bddaa56c8a5795cfad8650f8843cd1ac7af9391659dba68ea"
[[files]]
file = "kubejs/assets/computercraft/textures/block/monitor_normal_6.png"
hash = "c15ff57838eeed36b6b1fc88b857eba371b50c65eeaaf517e641b6a5e66a672c"
[[files]]
file = "kubejs/assets/computercraft/textures/block/monitor_normal_7.png"
hash = "79bb4d38fee859364558b6898e6c868ed64227cdd649c9b4e21509b99e640a8a"
[[files]]
file = "kubejs/assets/computercraft/textures/block/printer_front_both_trays.png"
hash = "50df0bd188a40a96a6d800e636017ee56472edae3550d372af9e2ee3fd985484"
[[files]]
file = "kubejs/assets/computercraft/textures/block/printer_front_bottom_tray.png"
hash = "6576a8f97dc47979a6b2367788f6e3009f9c325476266c3db1d6a176e2b63ba1"
[[files]]
file = "kubejs/assets/computercraft/textures/block/printer_front_empty.png"
hash = "7b7220b892692a584e90cd6dcdaba99e37b100b4c09110a2ae9b2daa050ad516"
[[files]]
file = "kubejs/assets/computercraft/textures/block/printer_front_top_tray.png"
hash = "3021bc22ca04b83c792bab0c267a5fd5b273d9e39ba082077372ba47d561ba2b"
[[files]]
file = "kubejs/assets/computercraft/textures/block/printer_side.png"
hash = "558be961539b65a0c5e1ddb9957583f2862d70db22a6f0da1b70a5c3413461bd"
[[files]]
file = "kubejs/assets/computercraft/textures/block/printer_top.png"
hash = "d3c2a6004751cb0a89ac9c73ce9175a0c85737e763e64b8a5187fe1d595cbcf7"
[[files]]
file = "kubejs/assets/computercraft/textures/block/speaker_front.png"
hash = "cd413230566c62c08f2e4868706dc413c44fdd506350923f578c54dd9eed458c"
[[files]]
file = "kubejs/assets/computercraft/textures/block/speaker_side.png"
hash = "50c0d9a340ef01cb087e0136e5ffc8857c9d24a193c6354bfbba41ef94ba6615"
[[files]]
file = "kubejs/assets/computercraft/textures/block/speaker_top.png"
hash = "e313dc3607597d4aa45740cc72c9b505603dbfb3b27679eee168a735f513a3d8"
[[files]]
file = "kubejs/assets/computercraft/textures/block/turtle_advanced.png"
hash = "9b4c2266fdc96755e9ac2cf480a9e101e865a3d3a62d6c9e77f08652e3b48791"
[[files]]
file = "kubejs/assets/computercraft/textures/block/turtle_advanced_modem_upgrade_off.png"
hash = "2a90a11b12e84d7c0bc61f7d22aa5f5cf5c7f464d958ba65c0a98ed6937f0a9e"
[[files]]
file = "kubejs/assets/computercraft/textures/block/turtle_advanced_modem_upgrade_on.png"
hash = "f7a38dcfb65dd35ee2e1c6c968b4f063dd94d189ea6ab1fa11a82dd7b31d18e5"
[[files]]
file = "kubejs/assets/computercraft/textures/block/turtle_colour.png"
hash = "a9ebc007d194ba88815c8e81fbd1453ea588a94308f9abeec3c09e980af90a8c"
[[files]]
file = "kubejs/assets/computercraft/textures/block/turtle_crafty_face.png"
hash = "0f37ae5abe8fb5b919814a4293097c41b15164de9f0b6df75a9341731adcb2ce"
[[files]]
file = "kubejs/assets/computercraft/textures/block/turtle_normal.png"
hash = "bc21ba2aaceac300c75fb7658a0b3f5ccf45a7566d2a60da78fe9c483f1f8169"
[[files]]
file = "kubejs/assets/computercraft/textures/block/turtle_normal_modem_upgrade_off.png"
hash = "1ed572c57388497c81efe4a2c11c7bb0dc7069653287e180ef35a3ba84b18b86"
[[files]]
file = "kubejs/assets/computercraft/textures/block/turtle_normal_modem_upgrade_on.png"
hash = "22d97673501aa3684b90f5ab490a240dd7b9fe3f4c2019e6d72e38a8c7e4f759"
[[files]]
file = "kubejs/assets/computercraft/textures/block/turtle_speaker_face.png"
hash = "6ff152e4fe3f429002084c6725ac5c4ac1705b4aa9bbb44d1b6a8afafc9ba96e"
[[files]]
file = "kubejs/assets/computercraft/textures/block/wired_modem_face.png"
hash = "7657eb0e53dc1f7ede0d6177487e37e17183898ca981aba158778a15e93d55f2"
[[files]]
file = "kubejs/assets/computercraft/textures/block/wired_modem_face_on.png"
hash = "06ac73f592b4f3ece6563cae9b58a70edded66ec18f27aa84c952bfd908c73f0"
[[files]]
file = "kubejs/assets/computercraft/textures/block/wired_modem_face_peripheral.png"
hash = "3c37d45991ac53aa88842d16ed5d0045c40cbca594b09c02df8535e4c8912bde"
[[files]]
file = "kubejs/assets/computercraft/textures/block/wired_modem_face_peripheral_on.png"
hash = "6a3a4b91a37380ceb82e8d8f8925b8b3eaa139e254123892a2762a3278ceddee"
[[files]]
file = "kubejs/assets/computercraft/textures/block/wireless_antenna_off.png"
hash = "4d5c194b11525d48cce32dbf65d9d68d7c859f840463028b999584d670586f9f"
[[files]]
file = "kubejs/assets/computercraft/textures/block/wireless_antenna_on.png"
hash = "8634feb5e799c280583eecae4627b10fbae079ae38bf14f09e5aa5f58bd0cc05"
[[files]]
file = "kubejs/assets/computercraft/textures/block/wireless_modem_advanced_off.png"
hash = "bf4ec211918ce44929b1307185778e03427d2e20c212a03c64cc8c80a948826b"
[[files]]
file = "kubejs/assets/computercraft/textures/block/wireless_modem_advanced_on.png"
hash = "3c19e8d1e64b9f99300bac9855bd4d77a959e8a67900b3e679330f3cb5e6bc0d"
[[files]]
file = "kubejs/assets/computercraft/textures/block/wireless_modem_normal_off.png"
hash = "29284b366e14292fa70fae79617a5e0e036a973c89356523ea0a332c37ed3c43"
[[files]]
file = "kubejs/assets/computercraft/textures/block/wireless_modem_normal_on.png"
hash = "e00ba150be46ce41dc94b5cf7368957ceab980ceb9814be636922160f089030f"
[[files]]
file = "kubejs/assets/computercraft/textures/gui/buttons.png"
hash = "8cc685b51d3b00922c97800a68deeffe212e225bccd761cd755576fba552a8be"
[[files]]
file = "kubejs/assets/computercraft/textures/gui/corners_advanced.png"
hash = "0d6f61bde79bfec0a710d1b2e0c9e56afec2eb1c228f9d534ae5b8320f8dd0a2"
[[files]]
file = "kubejs/assets/computercraft/textures/gui/corners_colour.png"
hash = "5be3978476dfbdf2b3da93fd14b49cde37f4639471155063441c74a63e3888f2"
[[files]]
file = "kubejs/assets/computercraft/textures/gui/corners_command.png"
hash = "1fe18a76bd19b7d06b02fbdf6e5076fe1abb51d5d15ae0826b4ed01ea277ebcb"
[[files]]
file = "kubejs/assets/computercraft/textures/gui/corners_normal.png"
hash = "917647f8ce69e6a26c144a7c61fe06fc4d20caedc1179e21c7ed9285e8dfdf50"
[[files]]
file = "kubejs/assets/computercraft/textures/gui/turtle_advanced.png"
hash = "80e9dbf9c76497a2c31933e6d83a9125accc8a0bda80d22b0e8a4fab936a7a1b"
[[files]]
file = "kubejs/assets/computercraft/textures/gui/turtle_normal.png"
hash = "f619848de0de2cd97241206226c16b79e304d8f2ed9479cf94f5452b34197473"
[[files]]
file = "kubejs/assets/computercraft/textures/item/disk_colour.png"
hash = "1cbb7c56e44b30e5c33b096fdb668e7f0e58ee1523ec5e0ce70ed616df5cc212"
[[files]]
file = "kubejs/assets/computercraft/textures/item/disk_frame.png"
hash = "789e930de5ce8cbed9052a1275e4a47e0466d996aa871ba283eadc3bb1bdc290"
[[files]]
file = "kubejs/assets/computercraft/textures/item/pocket_computer_advanced.png"
hash = "f444462d7815edc3178d1cd3ba486e8dc1259692417c3d5c2c0580c6c0fa2f65"
[[files]]
file = "kubejs/assets/computercraft/textures/item/pocket_computer_blink.png"
hash = "3b512fd31680207e45be52c00103e01413e5d766e5c3e3c92d8d9eeff3d79a7d"
[[files]]
file = "kubejs/assets/computercraft/textures/item/pocket_computer_blink.png.mcmeta"
hash = "cedb1e67aa152a161a26b225b5787021757e12d0ba0f5a2964632095cd801d19"
[[files]]
file = "kubejs/assets/computercraft/textures/item/pocket_computer_colour.png"
hash = "d18b9c88afd2098a44bb6831b3d8e19376695167d7fafb9c0dafce8f79b79318"
[[files]]
file = "kubejs/assets/computercraft/textures/item/pocket_computer_frame.png"
hash = "9938aa9449f081c5628fc5fefb97a2c67c5a1fdad682e9fd554ea25a8c3c98ca"
[[files]]
file = "kubejs/assets/computercraft/textures/item/pocket_computer_light.png"
hash = "7485b42202298fafd6a8fc3d182f306524c12e8b5d4c8079d4952021b6b8e5e5"
[[files]]
file = "kubejs/assets/computercraft/textures/item/pocket_computer_normal.png"
hash = "9c8a6b1e4a2195c268b723a80dd85363abe0155d5649fa3bf8336e6f36f307ee"
[[files]]
file = "kubejs/assets/computercraft/textures/item/pocket_computer_on.png"
hash = "c08deba79662053bb1d3bfd03a221696358c86c669ef3a16734b9a29a3210c85"
[[files]]
file = "kubejs/assets/create/textures/gui/computer.png"
hash = "6808758d01d308a22cd3be0a52346a05685f11418aa1b0bca5e3632ad3e1931c"
[[files]]
file = "kubejs/assets/refinedstorage/lang/en_us.json"
hash = "ea610526158fb6c6c284f77914bc4eba3d4c23a1d3e10675bee4feced72683c1"
[[files]]
file = "kubejs/assets/refinedstorage/textures/block/16k_storage_block.png"
hash = "21cd0c893d03c79b945f4d431774b37702b2ea1d5b7cb13359c4a9156bf38b00"
[[files]]
file = "kubejs/assets/refinedstorage/textures/block/1k_storage_block.png"
hash = "2f55251b9739655ada7578e855b7fa75494198a8c169a523f380fefc45bc2686"
[[files]]
file = "kubejs/assets/refinedstorage/textures/block/4k_storage_block.png"
hash = "e29ee41cfd6015b3d91433aac3b16d397f504efeb35f1daf22eaf2fb464eb225"
[[files]]
file = "kubejs/assets/refinedstorage/textures/block/64k_storage_block.png"
hash = "0de533c967a6f050c054f8de40e6ea332df1aca34e640930da682f59514af1f3"
[[files]]
file = "kubejs/assets/refinedstorage/textures/block/bottom.png"
hash = "e91893480917a77337302314b7f050e1bbd2bba3278126ffbfd6d7f2a1182947"
[[files]]
file = "kubejs/assets/refinedstorage/textures/block/cable.png"
hash = "5986896e0d09079c172afb1d976ebed34e439115c93cc40d012355c5f734e2d7"
[[files]]
file = "kubejs/assets/refinedstorage/textures/block/constructor/constructor.png"
hash = "2b94109e52128730885d34a8739c03c6d5c27c01638d6b1ed203abc8d5d8fb15"
[[files]]
file = "kubejs/assets/refinedstorage/textures/block/controller/off.png"
hash = "8339c7cfd252a8b0f9c1d5e63f4d935d742ddd18ce9618d743813f4d7ee44782"
[[files]]
file = "kubejs/assets/refinedstorage/textures/block/controller/on.png"
hash = "97c7959fbb4c6c9034264cfcb6e6bfcff8b1bd9c06e6695e712cb212fd120095"
[[files]]
file = "kubejs/assets/refinedstorage/textures/block/crafter/bottom.png"
hash = "e91893480917a77337302314b7f050e1bbd2bba3278126ffbfd6d7f2a1182947"
[[files]]
file = "kubejs/assets/refinedstorage/textures/block/crafter/cutouts/side_black.png"
hash = "64e0b5f98739369229bfb102556e1785b31a1ecb2c0b281ee07782c067f21be8"
[[files]]
file = "kubejs/assets/refinedstorage/textures/block/crafter/cutouts/side_blue.png"
hash = "d45d1eaab4ef0a5613c2c056e99c8d255d606e4986b0e729c30fb2f873a8443e"
[[files]]
file = "kubejs/assets/refinedstorage/textures/block/crafter/cutouts/side_brown.png"
hash = "edb8697cd24ae9134d01c2673c4002c3b94cf8f9dba86b74281a915df07b2a38"
[[files]]
file = "kubejs/assets/refinedstorage/textures/block/crafter/cutouts/side_cyan.png"
hash = "59c4e7dd8681a9243dc7d2f53282fe6621abf94154525497c3654fa4dda90496"
[[files]]
file = "kubejs/assets/refinedstorage/textures/block/crafter/cutouts/side_disconnected.png"
hash = "2326fb70ce0e63727d3d045894bc36c743bd827e632dc9cbf0389a9e1e6ad663"
[[files]]
file = "kubejs/assets/refinedstorage/textures/block/crafter/cutouts/side_gray.png"
hash = "15162b6b371c8507c53206f1ffacaa5e6fae4a8758770db65388c88d2a062e53"
[[files]]
file = "kubejs/assets/refinedstorage/textures/block/crafter/cutouts/side_green.png"
hash = "b1c7b7e16f08127c46080650fbdf72abc7552de47110f3494ffbd0856dfce129"
[[files]]
file = "kubejs/assets/refinedstorage/textures/block/crafter/cutouts/side_light_blue.png"
hash = "817aa31d517c59a31778acdae27eb9834061c8202f0f32340229ab4c386d7949"
[[files]]
file = "kubejs/assets/refinedstorage/textures/block/crafter/cutouts/side_light_gray.png"
hash = "81570c083b3dfc0a64ff5a61f6d3b47cda8f0342ffa857f0d3a56c3c026c10b2"
[[files]]
file = "kubejs/assets/refinedstorage/textures/block/crafter/cutouts/side_lime.png"
hash = "69c9749cd0ee02f68a9f949d2b60c99ea88a9a4c31b2fc1fcb1f7019aaec3d63"
[[files]]
file = "kubejs/assets/refinedstorage/textures/block/crafter/cutouts/side_magenta.png"
hash = "9464f38cba10aa4c4eb31fdcdff3a536ec11bd9fd0c8b7599e913116fd6b6500"
[[files]]
file = "kubejs/assets/refinedstorage/textures/block/crafter/cutouts/side_orange.png"
hash = "bac11261415b71b4b53c92c3bc87f5ea01da970739c3e35b258215333babc800"
[[files]]
file = "kubejs/assets/refinedstorage/textures/block/crafter/cutouts/side_pink.png"
hash = "d9679c8c439a2170f4a9de79b8ca5493e740608818f6af9387715d1c6181d63f"
[[files]]
file = "kubejs/assets/refinedstorage/textures/block/crafter/cutouts/side_purple.png"
hash = "3e4d5f36bc6eea95f806b086323676fcc1cdf86bfba4e020b4dceb9b22155962"
[[files]]
file = "kubejs/assets/refinedstorage/textures/block/crafter/cutouts/side_red.png"
hash = "1a69e368c13ad1523efb2a04df08f96ef515eac5ad8b634076f955bb28a1298c"
[[files]]
file = "kubejs/assets/refinedstorage/textures/block/crafter/cutouts/side_white.png"
hash = "0d85ace46a6a82e02dbfe704259b59631cd1016c7149a4f6e1b34053e58369e1"
[[files]]
file = "kubejs/assets/refinedstorage/textures/block/crafter/cutouts/side_yellow.png"
hash = "ae9fce1a66c86a25e61a59929bfc095b09f0981623761353862df25d9f7867c9"
[[files]]
file = "kubejs/assets/refinedstorage/textures/block/crafter/side.png"
hash = "dce023c36e0d70fa3d22392a8958cd9ea905d27804aff6119a4b93889b3da53d"
[[files]]
file = "kubejs/assets/refinedstorage/textures/block/crafter/top.png"
hash = "eeb0b4a482e56cfcc5da50c5cc885e3691d433e627270ad322cbc322c2789254"
[[files]]
file = "kubejs/assets/refinedstorage/textures/block/crafter_manager/back.png"
hash = "f4081ade0e5ba7f6d5a5eef328b09ce57c17c44318cfbfc5729df2421d971b46"
[[files]]
file = "kubejs/assets/refinedstorage/textures/block/crafter_manager/cutouts/black.png"
hash = "a4d22ec32d8a7cf1c56fb0dfc5266e53a2300e97012b2ff9b36ae8baebf9d2b7"
[[files]]
file = "kubejs/assets/refinedstorage/textures/block/crafter_manager/cutouts/blue.png"
hash = "81d3eba5eca4bee20bf985b4f865d4b31e2523bea6f3017921a792940e012f4b"
[[files]]
file = "kubejs/assets/refinedstorage/textures/block/crafter_manager/cutouts/brown.png"
hash = "ddcfb4a84d418a8601d538d1b59fbe4393a89467f84f37d3d5e295a465186eae"
[[files]]
file = "kubejs/assets/refinedstorage/textures/block/crafter_manager/cutouts/cyan.png"
hash = "c6ee95cc0bb5f1c32c59b58f3282a6e97374628b9885074948b90cb6c8930195"
[[files]]
file = "kubejs/assets/refinedstorage/textures/block/crafter_manager/cutouts/disconnected.png"
hash = "97ef4b3c40cb152392e096539bb19a77bfdd39725f70f381bcf5e45d4dfc57a1"
[[files]]
file = "kubejs/assets/refinedstorage/textures/block/crafter_manager/cutouts/gray.png"
hash = "70a33c9a7926c845803c09ce34c6459666f6f6ecf06ef73e92f41e02aefe415f"
[[files]]
file = "kubejs/assets/refinedstorage/textures/block/crafter_manager/cutouts/green.png"
hash = "f00b5d04711863260fad76c316edaf589f41f57e7c929a4655edeacba89b591a"
[[files]]
file = "kubejs/assets/refinedstorage/textures/block/crafter_manager/cutouts/light_blue.png"
hash = "47fc8c902e05df1dd3c200fd8efe090ec2e5d188bb270c4f842170c891dfe05f"
[[files]]
file = "kubejs/assets/refinedstorage/textures/block/crafter_manager/cutouts/light_gray.png"
hash = "813d066c6b1b886d250cf558a63bc20b08f0d648a71a80ba86041e8d857710fa"
[[files]]
file = "kubejs/assets/refinedstorage/textures/block/crafter_manager/cutouts/lime.png"
hash = "b088c070b255885a12f704a310141ab8494c786118b7d9bef2630dae136dac86"
[[files]]
file = "kubejs/assets/refinedstorage/textures/block/crafter_manager/cutouts/magenta.png"
hash = "61b96a9a234c5e2dc9bee2544cc0200df47f2b07fe63a1603fc1a0f075709628"
[[files]]
file = "kubejs/assets/refinedstorage/textures/block/crafter_manager/cutouts/orange.png"
hash = "68ba9e88dcc32206ef10adf2f8296e0b4d524a9e48e52c97448e2d8749093fc9"
[[files]]
file = "kubejs/assets/refinedstorage/textures/block/crafter_manager/cutouts/pink.png"
hash = "4e8b68b6d4a7a742c8c78f8ae66618c82fe927bb6b3d411892a99725a42c2eab"
[[files]]
file = "kubejs/assets/refinedstorage/textures/block/crafter_manager/cutouts/purple.png"
hash = "744a1448f2a539911dcfcdd46f7fa71e3efb3534b9052ee365590e5b072dfd8b"
[[files]]
file = "kubejs/assets/refinedstorage/textures/block/crafter_manager/cutouts/red.png"
hash = "234e50dd43d32c7c2a125f4ee0e941b8f54dbffb0a5cfb1087831a3eb2cdacf9"
[[files]]
file = "kubejs/assets/refinedstorage/textures/block/crafter_manager/cutouts/white.png"
hash = "1db633572fbb34820b9f67e23a2436917d1b6c9c859d3f9cebdfc25862b75ad2"
[[files]]
file = "kubejs/assets/refinedstorage/textures/block/crafter_manager/cutouts/yellow.png"
hash = "11a7dacfc24bd8142c44d9ce2241d296d9d1d9729f89c7281b11a5e2e8ed092a"
[[files]]
file = "kubejs/assets/refinedstorage/textures/block/crafter_manager/front.png"