-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.toml
2303 lines (1782 loc) · 71.9 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/MapArtCopyright/config.yml"
hash = "1dcf0189b3d99dad1117cae9257cad25dd4af9eee8004bc2f466bcf1fcc63cd9"
[[files]]
file = "config/MapArtCopyright/preconfig.code-workspace"
hash = "0c32acdd3ee911a2659a2bd5551965f43b5fac57c9a2368ff2bc8b0740f106b2"
[[files]]
file = "config/advancementframes-client.json"
hash = "db426da619db85a81e90831f9bbf39cee78fbd37c577b334c9c4cba735a8de8b"
[[files]]
file = "config/advancementplaques-common.toml"
hash = "d8c796d8077170a84e344bbfd15390ac250cc45a4aeb0b6c27689ca9ec6b1b1d"
[[files]]
file = "config/aileron.json"
hash = "45de6917a671f574bcbbb034a4a8a1645b05ebb1386964d24e92ba9c6eef9496"
[[files]]
file = "config/amendments-common.json"
hash = "41d5e36b9d7c45f6db867bd3e9c44bb7b06714f79e7f92174f4470e545a788b6"
[[files]]
file = "config/backslot.json5"
hash = "f3217acf5cf5ffd2e7a1fededdcb969af14cb04091e9a61fd41fe192d26627d2"
[[files]]
file = "config/beansbackpacks-common.json5"
hash = "b5611fd01a61ddd19364c51a80254ec3e1349d7ecd795e0e4707e3f02ec3f5eb"
[[files]]
file = "config/botania-common.json5"
hash = "f9d1b3ae71cc80e3e13c39055a4761a3e41d07e3e747553d521dedf6fce31c7e"
[[files]]
file = "config/cinderscapes.json"
hash = "190bc1dafcb5c03f92d64a9c963c3ad281cfcb63b312df430272b9273d82d700"
[[files]]
file = "config/coalexplosion.toml"
hash = "b2996049b0170be124d7380b4936957ccfff4ff9d40ece3385cae47e95d1e388"
[[files]]
file = "config/create-server.toml"
hash = "2c03ec345a3b5acdbc628a05954c58e99a2b1ab089465e69cf4f01285b81c268"
[[files]]
file = "config/crosshairs/1.png"
hash = "6730829997118a5e5f720ed0e388ee32ed29432da8864b5a4f534650c7a0f789"
[[files]]
file = "config/crosshairs/10.png"
hash = "6d3c87a0f3bc822504cb84e30c8ed58892f383952ec9cc021e58542c4d546d35"
[[files]]
file = "config/crosshairs/11.png"
hash = "716326173f96724c19eb990d196239545df6e63106d14a331b7dad43a93fc88e"
[[files]]
file = "config/crosshairs/2.png"
hash = "ef51e768ece70b3de22442025a11cbf5c664822ff19bfdb68bf42a3efe03d6ce"
[[files]]
file = "config/crosshairs/3.png"
hash = "acd4fadc70c06cd466f930637ad5c8754d51ca11304cad56f91c740b54bdc230"
[[files]]
file = "config/crosshairs/4.png"
hash = "fecb7b864f08420e8c0843caffae317776f4760ee59f9f8ae4d6f6e9ff7d7299"
[[files]]
file = "config/crosshairs/5.png"
hash = "4b1018321e61d912a834652391ffda8b0a99cbae79d2b9d9f41efc4ca52daacd"
[[files]]
file = "config/crosshairs/6.png"
hash = "fa5eb0c86593f9b408e0b9ec40f41701eedc8fbb39f4ea45f95ba4a8be667976"
[[files]]
file = "config/crosshairs/7.png"
hash = "929a080db428ed06dbcd2b31b112b04c37c67a48aee9a785f802aee8b6f2723e"
[[files]]
file = "config/crosshairs/8.png"
hash = "1eb234997ea0e14b7c0e2f409e4d83c2de7f41f87a8a717754d60ac67e9db218"
[[files]]
file = "config/crosshairs/9.png"
hash = "a8bcf7a22af4e888062c85fd242d67ea19f2eb6b4fc46d0afa96346bb929d25c"
[[files]]
file = "config/custom-hud/profile1.txt"
hash = "102d8fda497ea9b14cf6024d65817e989c16295e88935070115d3cb0cbec2360"
[[files]]
file = "config/doomsitsstillexplosive.properties"
hash = "4d04c9a1ccaebcd6b0e9c8b7985c7b0d7904a5961fe9021fcd750a120da6e008"
[[files]]
file = "config/dynamiccrosshair.json5"
hash = "21193d1a6c974f4dfd4a91884fcfe5e9589bac3d71c7c1ee3e44d0a2f1c0aa0c"
[[files]]
file = "config/eec-config.json5"
hash = "8b77d45d54a2dfd340d906f50486680e32f15031f5ff459f58b637318fe2cb49"
[[files]]
file = "config/emojitype.json"
hash = "3bb4bdc7f8a0fd5db618b9a2e06d3cd44012be41b3bef897eaba74cfeb8f2a19"
[[files]]
file = "config/enchancement.json"
hash = "8df1caa44fd36ef288ad951ae4b81dbcb27aedc2a208d3e0ffd2d0097a03f8a1"
[[files]]
file = "config/enchant-tweaker.properties"
hash = "a6df0383ad3a5908a4ff1e62bdebb06c48f4131ea457b7d32557187f1bf5fde8"
[[files]]
file = "config/enchantingtweaks/config_readme.md"
hash = "1859feeed56ae82b43ff4ef4e25e15a591061e5ae126c3aff5c8a6d806fcc436"
[[files]]
file = "config/enchantingtweaks/enchanting-tweaks-config.json"
hash = "3eb996de055fbd201638c4845c900738b2d5c0d5b08f61d1957d7d3cf6bd77c2"
[[files]]
file = "config/enchantment_groups.json"
hash = "b03f35154eb1241f9444b10ef79162db4f16e557c363c5d4f48ec985bd4a9a5d"
[[files]]
file = "config/environmentalcreepers.json"
hash = "afe07ce45cb24c337efae483c0ffddd825b2431dbe7229ece0d6ef2ee711ab09"
[[files]]
file = "config/eso/config.json"
hash = "1cd0f0130396e2b8bf83fe84576fc447a666ef2ce0cdc11f6297a687601d9c0e"
[[files]]
file = "config/eso/default-recipe.json"
hash = "ba0ad336fe96f13396cc873fca906dacad82b477d64d524161f2b1dbb1e4444d"
[[files]]
file = "config/eso/default-xp-map.json"
hash = "7cb7be7b5d1b61f12e54d5bfc79e6a12a3a0ae82987d70220ec8817ef6c1e0bd"
[[files]]
file = "config/eso/material-overrides/armor.json"
hash = "ff28bb546ca020948794a475bd6ba4c694a699055a63ca1fc2a5dfb77868fb92"
[[files]]
file = "config/eso/material-overrides/items.json"
hash = "4b9fd8803d7e077fec1641e51646ebd127a6861d3a848f3152649059be5e2eeb"
[[files]]
file = "config/eso/material-overrides/tools.json"
hash = "f3d11f9bc5e8c1bc050c2fbf70f141dbd76fc05932219150125b65d07056bc18"
[[files]]
file = "config/fancymenu/assets/darkeromnis/darkerkhaospurple.png"
hash = "5f0f67564070f351758d812cb7d620998e48d542c79f32f5cc29280ce732f5bf"
[[files]]
file = "config/fancymenu/assets/darkeromnis/darkerlibrapink.png"
hash = "1fa828aa786284a3155e3f9c7c092a77c2ff6db03022ab6a5c12acbf3fced007"
[[files]]
file = "config/fancymenu/assets/darkeromnis/darkernihilgreen.png"
hash = "4f59b6787a5b7a0a138ee811ec2d362b29c79488422971859d6311343d279738"
[[files]]
file = "config/fancymenu/assets/darkeromnis/darkerordurorange.png"
hash = "c69fa2af5d1deba1c22b034b41e20096948f40d629df494bfa744aec5024ab4b"
[[files]]
file = "config/fancymenu/assets/darkomnis/darkkhaospurple.png"
hash = "b08bcc3d2258c9e73732dbeff5479631bda96b99165584390a9c380882bbf076"
[[files]]
file = "config/fancymenu/assets/darkomnis/darklibrapink.png"
hash = "7ed13f0acf1de4569f6769359be46d9270d5e8d1c7937ccc2d828dec37d30022"
[[files]]
file = "config/fancymenu/assets/darkomnis/darknihilgreen.png"
hash = "1b3c8594c42ae5b43404e96cfe69936345baf08aa8331d2f278879a391a9d8e3"
[[files]]
file = "config/fancymenu/assets/darkomnis/darkordurorange.png"
hash = "86f6b27fc64464bf7084975fabdbfe520ce3be0981908baf3def923ee8db773f"
[[files]]
file = "config/fancymenu/assets/icons/hoversudolanguage.png"
hash = "a70f050466f4c36afae7ecdbe7017c9105b274e4db0cdbd32360c95deb1b323a"
[[files]]
file = "config/fancymenu/assets/icons/pseudosharp3216.png"
hash = "ec725aacdaeccfe8562db81b2212b10563891d99cf899048dd7b6227ff98cb24"
[[files]]
file = "config/fancymenu/assets/icons/sudoaccessbilityhover.png"
hash = "ef0544eea9c8a976f3034b3533cd4126dc354638e6f78616afd11448f2589fab"
[[files]]
file = "config/fancymenu/assets/icons/sudoaccessibility.png"
hash = "5410fe4ef82ad7a17fac55bfd8f17122bfd7cda6e58ad02ca71f9c1a5dbe2222"
[[files]]
file = "config/fancymenu/assets/icons/sudolanguage.png"
hash = "c07447803b73e4dbf2c200cb2d73f434f68a5db0fa34810bd23fa96f7a2e7ae8"
[[files]]
file = "config/fancymenu/assets/nihil.png"
hash = "30b03105682f4f609934cfa4c35678b97982bc54ddcf47a4e1323fa39e4b52fd"
[[files]]
file = "config/fancymenu/assets/pseudosciencemctitle.png"
hash = "89a7ed42b202b489afe44ed13173f59327523def1d5133be5963f2f8456d339b"
[[files]]
file = "config/fancymenu/assets/pseudosharp3216.icns"
hash = "e5786f4a3160564482ed9598f30c0d9d95e23487a7e9496a7efa603b372ea181"
[[files]]
file = "config/fancymenu/assets/pseudosharp3216_1_16x16.png"
hash = "8984c72624f13588035ed02a09f223e2d8f84ed21f1558178c7ecb8e88def51f"
[[files]]
file = "config/fancymenu/assets/pseudosharp3216_32x32.png"
hash = "f13945f92ac959c8b3e0edbf662ae247f4f4344f2fce88df75a5e9acc3f0caf8"
[[files]]
file = "config/fancymenu/assets/satomnis/khaospurple.png"
hash = "d1089b218c21091b739fb64fb5b013576bc40c918b5a9ba8cb9f4e8b618a9c96"
[[files]]
file = "config/fancymenu/assets/satomnis/librapink.png"
hash = "075a6f4c69224e66502986997a6644b421025d411a9f74a3e9a8e01a5337cd1b"
[[files]]
file = "config/fancymenu/assets/satomnis/nihilgreen.png"
hash = "c1d3c8cbc8647968cd073729e0376ab7359c0d1da5b08cc0e26ddf75bda61c0d"
[[files]]
file = "config/fancymenu/assets/satomnis/ordurorange.png"
hash = "03cec5c5949dd96d33f9c310279e1d6e26e49c54eb4523d199b0ef024e2d687f"
[[files]]
file = "config/fancymenu/assets/sudobanner.png"
hash = "e5c48356f1607ff8b29432eab1d5d62793105748ebc708e78d48205f7851146c"
[[files]]
file = "config/fancymenu/assets/sudobanner180.png"
hash = "4271f5bbeb62996787af0adfa46c066be1c7ea7125902cdfb7cb7bce6a084736"
[[files]]
file = "config/fancymenu/assets/sudobanner240.png"
hash = "c3c820a927da9a5dcc83e24111b4503bdba908e0e48a7b93ca7073dab3096aa4"
[[files]]
file = "config/fancymenu/audio_element_controller_metas.json"
hash = "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855"
[[files]]
file = "config/fancymenu/custom_gui_screens.txt"
hash = "ff492043eaf454c46e949d5eef32ece90cc5a19feb50a161dd29a43b5732c880"
[[files]]
file = "config/fancymenu/customizablemenus.txt"
hash = "0b0f0508f390de3ca9158fead1352069e00ba42395ac5cc25681eaa8c1bf6664"
[[files]]
file = "config/fancymenu/customization/title_screen_layout.txt"
hash = "2a5f12af521df9061d382d163d9f298fc78e7d948da5fea8303ed08fb9d5c7d1"
[[files]]
file = "config/fancymenu/customization/universal_layout.txt"
hash = "68752c17a2f6241734ed5ccd54182d92f9c0ea41cbf74a2a314f8f8cf51149bf"
[[files]]
file = "config/fancymenu/fancymenu/assets/darkeromnis/darkerkhaospurple.png"
hash = "5f0f67564070f351758d812cb7d620998e48d542c79f32f5cc29280ce732f5bf"
[[files]]
file = "config/fancymenu/fancymenu/assets/darkeromnis/darkerlibrapink.png"
hash = "1fa828aa786284a3155e3f9c7c092a77c2ff6db03022ab6a5c12acbf3fced007"
[[files]]
file = "config/fancymenu/fancymenu/assets/darkeromnis/darkernihilgreen.png"
hash = "4f59b6787a5b7a0a138ee811ec2d362b29c79488422971859d6311343d279738"
[[files]]
file = "config/fancymenu/fancymenu/assets/darkeromnis/darkerordurorange.png"
hash = "c69fa2af5d1deba1c22b034b41e20096948f40d629df494bfa744aec5024ab4b"
[[files]]
file = "config/fancymenu/fancymenu/assets/darkomnis/darkkhaospurple.png"
hash = "b08bcc3d2258c9e73732dbeff5479631bda96b99165584390a9c380882bbf076"
[[files]]
file = "config/fancymenu/fancymenu/assets/darkomnis/darklibrapink.png"
hash = "7ed13f0acf1de4569f6769359be46d9270d5e8d1c7937ccc2d828dec37d30022"
[[files]]
file = "config/fancymenu/fancymenu/assets/darkomnis/darknihilgreen.png"
hash = "1b3c8594c42ae5b43404e96cfe69936345baf08aa8331d2f278879a391a9d8e3"
[[files]]
file = "config/fancymenu/fancymenu/assets/darkomnis/darkordurorange.png"
hash = "86f6b27fc64464bf7084975fabdbfe520ce3be0981908baf3def923ee8db773f"
[[files]]
file = "config/fancymenu/fancymenu/assets/icons/hoversudolanguage.png"
hash = "a70f050466f4c36afae7ecdbe7017c9105b274e4db0cdbd32360c95deb1b323a"
[[files]]
file = "config/fancymenu/fancymenu/assets/icons/pseudosharp3216.png"
hash = "ec725aacdaeccfe8562db81b2212b10563891d99cf899048dd7b6227ff98cb24"
[[files]]
file = "config/fancymenu/fancymenu/assets/icons/sudoaccessbilityhover.png"
hash = "ef0544eea9c8a976f3034b3533cd4126dc354638e6f78616afd11448f2589fab"
[[files]]
file = "config/fancymenu/fancymenu/assets/icons/sudoaccessibility.png"
hash = "5410fe4ef82ad7a17fac55bfd8f17122bfd7cda6e58ad02ca71f9c1a5dbe2222"
[[files]]
file = "config/fancymenu/fancymenu/assets/icons/sudolanguage.png"
hash = "c07447803b73e4dbf2c200cb2d73f434f68a5db0fa34810bd23fa96f7a2e7ae8"
[[files]]
file = "config/fancymenu/fancymenu/assets/nihil.png"
hash = "30b03105682f4f609934cfa4c35678b97982bc54ddcf47a4e1323fa39e4b52fd"
[[files]]
file = "config/fancymenu/fancymenu/assets/pseudosciencemctitle.png"
hash = "89a7ed42b202b489afe44ed13173f59327523def1d5133be5963f2f8456d339b"
[[files]]
file = "config/fancymenu/fancymenu/assets/pseudosharp3216.icns"
hash = "e5786f4a3160564482ed9598f30c0d9d95e23487a7e9496a7efa603b372ea181"
[[files]]
file = "config/fancymenu/fancymenu/assets/pseudosharp3216_1_16x16.png"
hash = "8984c72624f13588035ed02a09f223e2d8f84ed21f1558178c7ecb8e88def51f"
[[files]]
file = "config/fancymenu/fancymenu/assets/pseudosharp3216_32x32.png"
hash = "f13945f92ac959c8b3e0edbf662ae247f4f4344f2fce88df75a5e9acc3f0caf8"
[[files]]
file = "config/fancymenu/fancymenu/assets/satomnis/khaospurple.png"
hash = "d1089b218c21091b739fb64fb5b013576bc40c918b5a9ba8cb9f4e8b618a9c96"
[[files]]
file = "config/fancymenu/fancymenu/assets/satomnis/librapink.png"
hash = "075a6f4c69224e66502986997a6644b421025d411a9f74a3e9a8e01a5337cd1b"
[[files]]
file = "config/fancymenu/fancymenu/assets/satomnis/nihilgreen.png"
hash = "c1d3c8cbc8647968cd073729e0376ab7359c0d1da5b08cc0e26ddf75bda61c0d"
[[files]]
file = "config/fancymenu/fancymenu/assets/satomnis/ordurorange.png"
hash = "03cec5c5949dd96d33f9c310279e1d6e26e49c54eb4523d199b0ef024e2d687f"
[[files]]
file = "config/fancymenu/fancymenu/assets/sudobanner.png"
hash = "e5c48356f1607ff8b29432eab1d5d62793105748ebc708e78d48205f7851146c"
[[files]]
file = "config/fancymenu/fancymenu/assets/sudobanner180.png"
hash = "4271f5bbeb62996787af0adfa46c066be1c7ea7125902cdfb7cb7bce6a084736"
[[files]]
file = "config/fancymenu/fancymenu/assets/sudobanner240.png"
hash = "c3c820a927da9a5dcc83e24111b4503bdba908e0e48a7b93ca7073dab3096aa4"
[[files]]
file = "config/fancymenu/fancymenu/audio_element_controller_metas.json"
hash = "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855"
[[files]]
file = "config/fancymenu/fancymenu/custom_gui_screens.txt"
hash = "ff492043eaf454c46e949d5eef32ece90cc5a19feb50a161dd29a43b5732c880"
[[files]]
file = "config/fancymenu/fancymenu/customizablemenus.txt"
hash = "11518baf6a44a2732e6a7bcb141a45dce4380069c87340a0b05717e90df8015e"
[[files]]
file = "config/fancymenu/fancymenu/customization/title_screen_layout.txt"
hash = "56c651a5d51883eaae585e00e18269ce22a869a3428bdaac6a2066db3918418a"
[[files]]
file = "config/fancymenu/fancymenu/customization/universal_layout.txt"
hash = "4666fc09c60a2aa26b1d29d9819b95a895b86a25cc1a0f5e8495bc5d5107a8e1"
[[files]]
file = "config/fancymenu/fancymenu/layout_editor/widgets/element_layer_control.lewidget"
hash = "9d6f4d040d90e8f0da49ad4878eb9ba80702c659d8888378615cebadb6e53cbc"
[[files]]
file = "config/fancymenu/fancymenu/legacy_checklist.txt"
hash = "9a25d3dc708e43eabafce5479a13c02dae15bc7f673afb2745b8b2ba48a97dc0"
[[files]]
file = "config/fancymenu/fancymenu/options.txt"
hash = "ef1441ded4c31a2ec3078b3cafe367de85babbd8756cd0dbb54cb67c7d4bf2f1"
[[files]]
file = "config/fancymenu/fancymenu/panoramas/archwoodpanorama/panorama/panorama_0.png"
hash = "5b0b8e0661963874b69c6185463f956ee7bd493ae7b5788d2c24c6879e760eac"
[[files]]
file = "config/fancymenu/fancymenu/panoramas/archwoodpanorama/panorama/panorama_1.png"
hash = "a550b0298cb173aaf501b1eb8514221711a251d3969681adf90eece0fc4c5a03"
[[files]]
file = "config/fancymenu/fancymenu/panoramas/archwoodpanorama/panorama/panorama_2.png"
hash = "a7325ecd6966e73de5f01c1204249abfcf775b944f88905e0c72c26035bcb5ac"
[[files]]
file = "config/fancymenu/fancymenu/panoramas/archwoodpanorama/panorama/panorama_3.png"
hash = "68a0b0843b55192c0983388ba776163f5f2ed72e4ebc0f438be39bbc4ccf6715"
[[files]]
file = "config/fancymenu/fancymenu/panoramas/archwoodpanorama/panorama/panorama_4.png"
hash = "f55c9444da6122cf81a11094216fd93712b341ac5d76aaed780d6b27fc44bb96"
[[files]]
file = "config/fancymenu/fancymenu/panoramas/archwoodpanorama/panorama/panorama_5.png"
hash = "777925d5a7f7734eb9f4b7f69245a01d0e657172040a619b0548ecb21ddf9680"
[[files]]
file = "config/fancymenu/fancymenu/panoramas/archwoodpanorama/properties.txt"
hash = "2aa14460dcba625202dd88875917b4085eb9aa186133e0d94a4ec9088cb31594"
[[files]]
file = "config/fancymenu/fancymenu/ui_themes/dark.json"
hash = "43ac9bee88f1a4c9b66fee0d4b6fcec14a52feab46bf803928aabed96f510cc9"
[[files]]
file = "config/fancymenu/fancymenu/ui_themes/light.json"
hash = "6954379d658fdf496f162792a3244f0f08635858ed4b0553a718a7ef63b8a620"
[[files]]
file = "config/fancymenu/fancymenu/user_variables.db"
hash = "3d7d4cda73d6bde134a568ccbe4e8d2e7fbe701570012b71fa45acdb2258c823"
[[files]]
file = "config/fancymenu/layout_editor/widgets/element_layer_control.lewidget"
hash = "111e79a73da37b65a13b6d2cd2b81b168e6b65d91ddffa98d863b139b86b8b1b"
[[files]]
file = "config/fancymenu/legacy_checklist.txt"
hash = "9a25d3dc708e43eabafce5479a13c02dae15bc7f673afb2745b8b2ba48a97dc0"
[[files]]
file = "config/fancymenu/options.txt"
hash = "c130ac7e4c8a7316652022b53fff0c2774d78296e93b8f797d2542274c1b5d78"
[[files]]
file = "config/fancymenu/panoramas/archwoodpanorama/panorama/panorama_0.png"
hash = "5b0b8e0661963874b69c6185463f956ee7bd493ae7b5788d2c24c6879e760eac"
[[files]]
file = "config/fancymenu/panoramas/archwoodpanorama/panorama/panorama_1.png"
hash = "a550b0298cb173aaf501b1eb8514221711a251d3969681adf90eece0fc4c5a03"
[[files]]
file = "config/fancymenu/panoramas/archwoodpanorama/panorama/panorama_2.png"
hash = "a7325ecd6966e73de5f01c1204249abfcf775b944f88905e0c72c26035bcb5ac"
[[files]]
file = "config/fancymenu/panoramas/archwoodpanorama/panorama/panorama_3.png"
hash = "68a0b0843b55192c0983388ba776163f5f2ed72e4ebc0f438be39bbc4ccf6715"
[[files]]
file = "config/fancymenu/panoramas/archwoodpanorama/panorama/panorama_4.png"
hash = "f55c9444da6122cf81a11094216fd93712b341ac5d76aaed780d6b27fc44bb96"
[[files]]
file = "config/fancymenu/panoramas/archwoodpanorama/panorama/panorama_5.png"
hash = "777925d5a7f7734eb9f4b7f69245a01d0e657172040a619b0548ecb21ddf9680"
[[files]]
file = "config/fancymenu/panoramas/archwoodpanorama/properties.txt"
hash = "2aa14460dcba625202dd88875917b4085eb9aa186133e0d94a4ec9088cb31594"
[[files]]
file = "config/fancymenu/ui_themes/dark.json"
hash = "43ac9bee88f1a4c9b66fee0d4b6fcec14a52feab46bf803928aabed96f510cc9"
[[files]]
file = "config/fancymenu/ui_themes/light.json"
hash = "6954379d658fdf496f162792a3244f0f08635858ed4b0553a718a7ef63b8a620"
[[files]]
file = "config/fancymenu/user_variables.db"
hash = "3d7d4cda73d6bde134a568ccbe4e8d2e7fbe701570012b71fa45acdb2258c823"
[[files]]
file = "config/fullyenchanced.json"
hash = "ef9a085f749dd04a06f8c8ac16c94312e915d8431a163f2a064f25c307cb1396"
[[files]]
file = "config/immersive_weathering-common.json"
hash = "559a46efe65f72419f94607e67edb1c50a135275f0bb6c1515c3423e11ad4d1a"
[[files]]
file = "config/improvedmobs/client.json"
hash = "b3e1fc12255bf33d048bfa8f51ca0975ee6a47532f5bf56e58096cdfcfcbbf28"
[[files]]
file = "config/improvedmobs/common.json"
hash = "443ee56c3dd9d81ec77d7b2b4eee8ebd23b27afad5e326b5b80a32bebafe43fe"
[[files]]
file = "config/knowledges/cache/username.json"
hash = "a4b13d1b472c8999cb755ae6aef84476b848da9476c6e25d0be64ef76fb7fe05"
[[files]]
file = "config/knowledges/components.toml"
hash = "19df246dd4306cd486649511e44198b9d4d94fed97ee52eda69ea308f7a98cfe"
[[files]]
file = "config/knowledges/contracts.toml"
hash = "2a9b391372f3ac387de0fc8f922b7eada32bf2855b0d8ecfeebd3261568ee34f"
[[files]]
file = "config/knowledges/data.toml"
hash = "109d91ac47003d0691eb9d362512d37cfd17a5c32451aa851a2d98197cc393ec"
[[files]]
file = "config/knowledges/general.toml"
hash = "e76911c6ee958f3b7177eccfcfafbcfa3559821265119983646463e3b5dea35c"
[[files]]
file = "config/lootr.json"
hash = "7888f0351cdf4a6c534d2dc56951e3e65a5b30863fae12395bed5240aef06035"
[[files]]
file = "config/majruszsenchantments.json"
hash = "156be9d53f7f4943b3ab7bc960930054431ff638f23b9eed0a556b0046641c91"
[[files]]
file = "config/notenoughanimations.json"
hash = "949d1a6623413bceffb0eff0750c91df667ffcd6b2ec0c72d4387f8a12cf71db"
[[files]]
file = "config/pehkui/config.json"
hash = "75e8ec2af2fc88915cdb24c8bcc5c1fe4091851ff2b1ed910aa53c0f110883a6"
[[files]]
file = "config/pocketwatch.json5"
hash = "dfa2ba69dbdd377d036734499511d6a368c5a857a8ca81b62345f217ae3dfac6"
[[files]]
file = "config/potatoptimize.properties"
hash = "40e528980f59b586d761d01f5563465c4b43782b31a6ffe85ee4fbec60389ec9"
[[files]]
file = "config/qu-enchantments.toml"
hash = "e0a3dd1ccefb36b8cd951b65dfa6f49d513de7717c82d678e5027aecc4c00e39"
[[files]]
file = "config/realisticfirespread.json"
hash = "1e389d23e58138dc6a1286954c8d396005a035975e055cb25cc346913e4ba543"
[[files]]
file = "config/regional_chat.json"
hash = "5938cdda4cd845113fd10427c89ac4f4df696b0f5c231ec356aff2fc55524372"
[[files]]
file = "config/regions_unexplored.conf"
hash = "86feeb96805185ae31363923f400ae68e17c0b0961e3b933ceb60cb6270cb72b"
[[files]]
file = "config/regions_unexplored/regions_unexplored-common.toml"
hash = "2b8d30fddf57106e182967a319ddc7dfad1528d71019d6cd95d3145065a07c96"
[[files]]
file = "config/regions_unexplored/regions_unexplored-primary-region.toml"
hash = "a01f0e225e4ae1b33e70b6f84f6375ac8412fcf36ae18a025a84ebbc6f5b634a"
[[files]]
file = "config/regions_unexplored/regions_unexplored-secondary-region.toml"
hash = "4f5e8497a91ddd6ef8ea9e2dce18f6d8b93e3728d5c2bfd3ca7b30d8a15dce1b"
[[files]]
file = "config/respawnobelisks.jsonc"
hash = "9c9f4b49bb1c26718a244817fe7641eda0d02ea3ba2ce6084653478f16466369"
[[files]]
file = "config/servercore/config.yml"
hash = "1a4c57cfbeea0885a0c0e182d69833b900070810bc9ddc1412495b4f0531852b"
[[files]]
file = "config/status-effect-bars.json"
hash = "9d6b9cee844e073d40de18fdfb268c267978a3cb0e64f1d1f17f79e6bf688a70"
[[files]]
file = "config/steves_realistic_sleep.json"
hash = "b7f74797e3b09589c0e2176e776604ca2b113d3999aa921b2a7f1b48ee963067"
[[files]]
file = "config/supplementaries-client.json"
hash = "ea01744c4f14140c883e63f85b3665b2fc0f28469c65340611b94784a36331a5"
[[files]]
file = "config/supplementaries-common.json"
hash = "a67940889613c4f4c54f9ea9cb1f659a14520128fa5f88a1632e3e3ab9282886"
[[files]]
file = "config/terrestria/biome.json"
hash = "b60537b0f45f85d54a955582f1334782fefa2b0ac1ce1678e150fc07e726b458"
[[files]]
file = "config/terrestria/client.json"
hash = "b27c3c93c0daa36f2e8de359c5118fc1e85f5fc379557d124b5237019ab32beb"
[[files]]
file = "config/terrestria/general.json"
hash = "37b871cd3a0e56564ee751be6e3b6e1c6b49b0a34b4fe75448f572ce25d24236"
[[files]]
file = "config/traverse/biome.json"
hash = "628ec51db3881ee81edadd2b0321e72a5b984d6d21cf0926544536c019d6adce"
[[files]]
file = "config/tridents_n_stuff/items_config.toml"
hash = "763045a90ac23713422e234c072dba0334c1b3648628a856d83a35fe6c87fad2"
[[files]]
file = "config/tridents_n_stuff/materials_config.toml"
hash = "cdeee82efa1ddcd63c0af565cbb117501f02256a9d2d8d7a094a77e5ea0f5225"
[[files]]
file = "config/tridents_n_stuff/modifiers_config.toml"
hash = "19505d71808eb985d868f0309660c6b47b14b48b17c4c4cde4ea1c71aeaa1a10"
[[files]]
file = "config/tweakeroo.json"
hash = "5d1ad46e54246c1bd9dd7eadb672c5f8e6e2efdec35ce8411168e0816bff07ba"
[[files]]
file = "config/votifier/votifier.json"
hash = "35a5c70250c278e8df5848e80e2c3845a6d9319c486cdae550fac205da8a5b58"
[[files]]
file = "config/worldedit/.archive-unpack/2e1dd752/.unpack_finished"
hash = "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855"
[[files]]
file = "config/worldedit/.archive-unpack/2e1dd752/af/strings.json"
hash = "ca3d163bab055381827226140568f3bef7eaac187cebd76878e0b63e9e442356"
[[files]]
file = "config/worldedit/.archive-unpack/2e1dd752/ar/strings.json"
hash = "29f9066cad68d934ba7b9740b12fa39b1cfb7bd0de12daee71b3edd6bd3a52be"
[[files]]
file = "config/worldedit/.archive-unpack/2e1dd752/ast/strings.json"
hash = "ca3d163bab055381827226140568f3bef7eaac187cebd76878e0b63e9e442356"
[[files]]
file = "config/worldedit/.archive-unpack/2e1dd752/az/strings.json"
hash = "ca3d163bab055381827226140568f3bef7eaac187cebd76878e0b63e9e442356"
[[files]]
file = "config/worldedit/.archive-unpack/2e1dd752/ba/strings.json"
hash = "ca3d163bab055381827226140568f3bef7eaac187cebd76878e0b63e9e442356"
[[files]]
file = "config/worldedit/.archive-unpack/2e1dd752/be/strings.json"
hash = "f02d23b0625268b27cad869b781b7cc3a1ecb127ac2f05e6f10dede979f4e281"
[[files]]
file = "config/worldedit/.archive-unpack/2e1dd752/bg/strings.json"
hash = "a781882ebd1e9cd970516ccf41504f7b524aced8bb930ac3dc48ec2e08b144c1"
[[files]]
file = "config/worldedit/.archive-unpack/2e1dd752/br-FR/strings.json"
hash = "ca3d163bab055381827226140568f3bef7eaac187cebd76878e0b63e9e442356"
[[files]]
file = "config/worldedit/.archive-unpack/2e1dd752/brb/strings.json"
hash = "23660bb35fb3cc7fef1b2036a1ee72df71d7da429a3ea38c7d397dba7a618eec"
[[files]]
file = "config/worldedit/.archive-unpack/2e1dd752/bs/strings.json"
hash = "ca3d163bab055381827226140568f3bef7eaac187cebd76878e0b63e9e442356"
[[files]]
file = "config/worldedit/.archive-unpack/2e1dd752/ca/strings.json"
hash = "6864f83a4a35f39b5d8b4559fc911236815f6eadf80aefae58e8ac626e171129"
[[files]]
file = "config/worldedit/.archive-unpack/2e1dd752/cs/strings.json"
hash = "7ffd4ea9112d6036b45b3414702c8efffd9089760c99690d8a4cb3160e25c456"
[[files]]
file = "config/worldedit/.archive-unpack/2e1dd752/cy/strings.json"
hash = "ca3d163bab055381827226140568f3bef7eaac187cebd76878e0b63e9e442356"
[[files]]
file = "config/worldedit/.archive-unpack/2e1dd752/da/strings.json"
hash = "21d10422b111110bc53ad6d1c25db1855b5c5cb555f6fb0aeefe6d85e8bd0082"
[[files]]
file = "config/worldedit/.archive-unpack/2e1dd752/de-AT/strings.json"
hash = "96d13db817f0473a15ddccb96bb4a9c4f53d925ec75434516796801fe0704147"
[[files]]
file = "config/worldedit/.archive-unpack/2e1dd752/de-CH/strings.json"
hash = "a5a87388a0c615ec598abde35e0b2baee3d8ba2f1d9ac9096e221021cf00e625"
[[files]]
file = "config/worldedit/.archive-unpack/2e1dd752/de/strings.json"
hash = "96d13db817f0473a15ddccb96bb4a9c4f53d925ec75434516796801fe0704147"
[[files]]
file = "config/worldedit/.archive-unpack/2e1dd752/el/strings.json"
hash = "2fb424866a5e5fb34b3bf78d764ab8a728facc745fac0a423e9ea1c22886e550"
[[files]]
file = "config/worldedit/.archive-unpack/2e1dd752/en-AU/strings.json"
hash = "3171f7b41372ca9d2a8e7f6ac5a79e8418e8994b3364de54b76133b1c46da8c6"
[[files]]
file = "config/worldedit/.archive-unpack/2e1dd752/en-CA/strings.json"
hash = "53010fa94d238a2ec02167e845e7cda679dc7454841e1abc26fda9717fd77eff"
[[files]]
file = "config/worldedit/.archive-unpack/2e1dd752/en-NZ/strings.json"
hash = "ca3d163bab055381827226140568f3bef7eaac187cebd76878e0b63e9e442356"
[[files]]
file = "config/worldedit/.archive-unpack/2e1dd752/en-PT/strings.json"
hash = "817dda2b6e3f67ef18f2a5b7cbcbe55765dc3dc29d2b75489315af51386dda2b"
[[files]]
file = "config/worldedit/.archive-unpack/2e1dd752/en-UD/strings.json"
hash = "26a269a21ece7060685b112fdb7076c613e967621c16234abc22ecf763983983"
[[files]]
file = "config/worldedit/.archive-unpack/2e1dd752/enp/strings.json"
hash = "ca3d163bab055381827226140568f3bef7eaac187cebd76878e0b63e9e442356"
[[files]]
file = "config/worldedit/.archive-unpack/2e1dd752/eo/strings.json"
hash = "5386905f26b174368e7c4bde89dc3deeb74e88e9428d071e3536fe5debce8367"
[[files]]
file = "config/worldedit/.archive-unpack/2e1dd752/es-AR/strings.json"
hash = "70734f2b539e6a28ff355369944d8461247a256e67f0eae0953b0dcb6c7b6671"
[[files]]
file = "config/worldedit/.archive-unpack/2e1dd752/es-CL/strings.json"
hash = "a75c51c490cd730c01973fb97bdb9e67c3339cdc646a4f1b5eb34f7cd6efac91"
[[files]]
file = "config/worldedit/.archive-unpack/2e1dd752/es-ES/strings.json"
hash = "1415be2784a14c5f3e61efb81d4807d662fbce8a60f917ea617656fcdd89005d"
[[files]]
file = "config/worldedit/.archive-unpack/2e1dd752/es-MX/strings.json"
hash = "1415be2784a14c5f3e61efb81d4807d662fbce8a60f917ea617656fcdd89005d"
[[files]]
file = "config/worldedit/.archive-unpack/2e1dd752/es-UY/strings.json"
hash = "1415be2784a14c5f3e61efb81d4807d662fbce8a60f917ea617656fcdd89005d"
[[files]]
file = "config/worldedit/.archive-unpack/2e1dd752/es-VE/strings.json"
hash = "5131074a39dcbec28ff026254790a46b5894b5f1322ad0f018cf7a2b0e9e9dec"
[[files]]
file = "config/worldedit/.archive-unpack/2e1dd752/et/strings.json"
hash = "07ceb78ba56ca557e0c42d8540096049018b9653f793362eb17c24b27e57863c"
[[files]]
file = "config/worldedit/.archive-unpack/2e1dd752/eu/strings.json"
hash = "371ea302982cbdd74dcb758f1c946c05108e5e5817dd064d625794012c73caa2"
[[files]]
file = "config/worldedit/.archive-unpack/2e1dd752/fa/strings.json"
hash = "ca3d163bab055381827226140568f3bef7eaac187cebd76878e0b63e9e442356"
[[files]]
file = "config/worldedit/.archive-unpack/2e1dd752/fi/strings.json"
hash = "048c25c056481c5d019ce0a5477f4a347d8fa7f4caaf3581ccbcd9d11928466b"
[[files]]
file = "config/worldedit/.archive-unpack/2e1dd752/fil/strings.json"
hash = "ca3d163bab055381827226140568f3bef7eaac187cebd76878e0b63e9e442356"
[[files]]
file = "config/worldedit/.archive-unpack/2e1dd752/fo/strings.json"
hash = "ca3d163bab055381827226140568f3bef7eaac187cebd76878e0b63e9e442356"
[[files]]
file = "config/worldedit/.archive-unpack/2e1dd752/fr-CA/strings.json"
hash = "82841e2040ea1ca049ccb27edca063d4faf7c676fd27e96eaaaefa8eb1987753"
[[files]]
file = "config/worldedit/.archive-unpack/2e1dd752/fr/strings.json"
hash = "fbece73db414fd97f1df9b8e0e48e420622ea474f3da2ba6fdf9e3d4b297fa20"
[[files]]
file = "config/worldedit/.archive-unpack/2e1dd752/fra-DE/strings.json"
hash = "ca3d163bab055381827226140568f3bef7eaac187cebd76878e0b63e9e442356"
[[files]]
file = "config/worldedit/.archive-unpack/2e1dd752/fy-NL/strings.json"
hash = "ca3d163bab055381827226140568f3bef7eaac187cebd76878e0b63e9e442356"
[[files]]
file = "config/worldedit/.archive-unpack/2e1dd752/ga-IE/strings.json"
hash = "ca3d163bab055381827226140568f3bef7eaac187cebd76878e0b63e9e442356"
[[files]]
file = "config/worldedit/.archive-unpack/2e1dd752/gd/strings.json"
hash = "ca3d163bab055381827226140568f3bef7eaac187cebd76878e0b63e9e442356"
[[files]]
file = "config/worldedit/.archive-unpack/2e1dd752/gl/strings.json"
hash = "ca3d163bab055381827226140568f3bef7eaac187cebd76878e0b63e9e442356"
[[files]]
file = "config/worldedit/.archive-unpack/2e1dd752/got/strings.json"
hash = "ca3d163bab055381827226140568f3bef7eaac187cebd76878e0b63e9e442356"
[[files]]
file = "config/worldedit/.archive-unpack/2e1dd752/gv/strings.json"
hash = "ca3d163bab055381827226140568f3bef7eaac187cebd76878e0b63e9e442356"
[[files]]
file = "config/worldedit/.archive-unpack/2e1dd752/haw/strings.json"
hash = "ca3d163bab055381827226140568f3bef7eaac187cebd76878e0b63e9e442356"
[[files]]
file = "config/worldedit/.archive-unpack/2e1dd752/he/strings.json"
hash = "52ab4a3612c7d4249323514744af8182ec5db7939c0cd12c7d2734c8ddf40c01"
[[files]]
file = "config/worldedit/.archive-unpack/2e1dd752/hi/strings.json"
hash = "ca3d163bab055381827226140568f3bef7eaac187cebd76878e0b63e9e442356"
[[files]]
file = "config/worldedit/.archive-unpack/2e1dd752/hr/strings.json"
hash = "ca3d163bab055381827226140568f3bef7eaac187cebd76878e0b63e9e442356"
[[files]]
file = "config/worldedit/.archive-unpack/2e1dd752/hu/strings.json"
hash = "6edfb7c4be39c6f9528f0bc1b970c349423057db773449baa233ab1bb3f41159"
[[files]]
file = "config/worldedit/.archive-unpack/2e1dd752/hy-AM/strings.json"
hash = "ca3d163bab055381827226140568f3bef7eaac187cebd76878e0b63e9e442356"
[[files]]
file = "config/worldedit/.archive-unpack/2e1dd752/id/strings.json"
hash = "d449f0bce53d87479d23cd4dfd4e4454e49234317482af9a7ff7a95cb86ab351"
[[files]]
file = "config/worldedit/.archive-unpack/2e1dd752/ido/strings.json"
hash = "ca3d163bab055381827226140568f3bef7eaac187cebd76878e0b63e9e442356"
[[files]]
file = "config/worldedit/.archive-unpack/2e1dd752/ig/strings.json"
hash = "ca3d163bab055381827226140568f3bef7eaac187cebd76878e0b63e9e442356"
[[files]]
file = "config/worldedit/.archive-unpack/2e1dd752/is/strings.json"
hash = "57cfc41f9f82b595a9a4cf77369a6503d3c354f0bfe8cb58e66382fa9836c6a2"
[[files]]
file = "config/worldedit/.archive-unpack/2e1dd752/it/strings.json"
hash = "5def16a9312a805f805c2692910ede804e40f5a245afe022af01563f5f513eeb"
[[files]]
file = "config/worldedit/.archive-unpack/2e1dd752/ja/strings.json"
hash = "4960e8a638acfec61a0ff54cb689b3e291b4d79d744b3a869472516df6d91652"
[[files]]
file = "config/worldedit/.archive-unpack/2e1dd752/jbo/strings.json"
hash = "ca3d163bab055381827226140568f3bef7eaac187cebd76878e0b63e9e442356"
[[files]]
file = "config/worldedit/.archive-unpack/2e1dd752/ka/strings.json"
hash = "ca3d163bab055381827226140568f3bef7eaac187cebd76878e0b63e9e442356"
[[files]]
file = "config/worldedit/.archive-unpack/2e1dd752/kab/strings.json"
hash = "ca3d163bab055381827226140568f3bef7eaac187cebd76878e0b63e9e442356"
[[files]]
file = "config/worldedit/.archive-unpack/2e1dd752/kk/strings.json"
hash = "ca3d163bab055381827226140568f3bef7eaac187cebd76878e0b63e9e442356"
[[files]]
file = "config/worldedit/.archive-unpack/2e1dd752/kn/strings.json"
hash = "ca3d163bab055381827226140568f3bef7eaac187cebd76878e0b63e9e442356"
[[files]]
file = "config/worldedit/.archive-unpack/2e1dd752/ko/strings.json"
hash = "fba8c67f50effd7f50a5250289f1be9b72432d8ce3f9bd28d1dd5066bad518cb"
[[files]]
file = "config/worldedit/.archive-unpack/2e1dd752/ksh/strings.json"
hash = "96d13db817f0473a15ddccb96bb4a9c4f53d925ec75434516796801fe0704147"
[[files]]
file = "config/worldedit/.archive-unpack/2e1dd752/kw/strings.json"
hash = "ca3d163bab055381827226140568f3bef7eaac187cebd76878e0b63e9e442356"
[[files]]
file = "config/worldedit/.archive-unpack/2e1dd752/la-LA/strings.json"
hash = "ca3d163bab055381827226140568f3bef7eaac187cebd76878e0b63e9e442356"
[[files]]
file = "config/worldedit/.archive-unpack/2e1dd752/lb/strings.json"
hash = "c13f2e57ec52d87e65580202e32abd12b7880650c38585c0ec2cd484d3767a8a"
[[files]]
file = "config/worldedit/.archive-unpack/2e1dd752/li/strings.json"
hash = "ca3d163bab055381827226140568f3bef7eaac187cebd76878e0b63e9e442356"
[[files]]
file = "config/worldedit/.archive-unpack/2e1dd752/lol/strings.json"
hash = "38b038c0cb9f04ae458595d8abe90688582efe916c22c7de0f5bd1c9d13af7f3"
[[files]]
file = "config/worldedit/.archive-unpack/2e1dd752/lt/strings.json"
hash = "ca3d163bab055381827226140568f3bef7eaac187cebd76878e0b63e9e442356"
[[files]]
file = "config/worldedit/.archive-unpack/2e1dd752/lv/strings.json"
hash = "ca3d163bab055381827226140568f3bef7eaac187cebd76878e0b63e9e442356"
[[files]]
file = "config/worldedit/.archive-unpack/2e1dd752/mi/strings.json"
hash = "ca3d163bab055381827226140568f3bef7eaac187cebd76878e0b63e9e442356"
[[files]]
file = "config/worldedit/.archive-unpack/2e1dd752/mk/strings.json"
hash = "ca3d163bab055381827226140568f3bef7eaac187cebd76878e0b63e9e442356"
[[files]]
file = "config/worldedit/.archive-unpack/2e1dd752/mn/strings.json"
hash = "7fecfa7b0c24f535bbb0ef2d25edd1cbf3e0eef6c69bb08d75da5e9385095bda"
[[files]]
file = "config/worldedit/.archive-unpack/2e1dd752/moh/strings.json"
hash = "ca3d163bab055381827226140568f3bef7eaac187cebd76878e0b63e9e442356"
[[files]]
file = "config/worldedit/.archive-unpack/2e1dd752/ms/strings.json"
hash = "ca3d163bab055381827226140568f3bef7eaac187cebd76878e0b63e9e442356"
[[files]]
file = "config/worldedit/.archive-unpack/2e1dd752/mt/strings.json"
hash = "f05eb388f7590866da08167a119fd11ed7cbda9449ab6f33ad14adf2f80476dc"
[[files]]
file = "config/worldedit/.archive-unpack/2e1dd752/nds/strings.json"
hash = "ca3d163bab055381827226140568f3bef7eaac187cebd76878e0b63e9e442356"
[[files]]
file = "config/worldedit/.archive-unpack/2e1dd752/nl-BE/strings.json"
hash = "3ffec478bc43c14a786500089235e44d1c8fefa87daa6f0ee02259933aa44f4c"
[[files]]
file = "config/worldedit/.archive-unpack/2e1dd752/nl/strings.json"
hash = "23660bb35fb3cc7fef1b2036a1ee72df71d7da429a3ea38c7d397dba7a618eec"
[[files]]
file = "config/worldedit/.archive-unpack/2e1dd752/nn-NO/strings.json"
hash = "a652452058287975074726fda3d8a48b80a91af61462b0e471b55071daf6f713"
[[files]]
file = "config/worldedit/.archive-unpack/2e1dd752/no/strings.json"
hash = "a652452058287975074726fda3d8a48b80a91af61462b0e471b55071daf6f713"
[[files]]
file = "config/worldedit/.archive-unpack/2e1dd752/nuk/strings.json"
hash = "ca3d163bab055381827226140568f3bef7eaac187cebd76878e0b63e9e442356"
[[files]]
file = "config/worldedit/.archive-unpack/2e1dd752/oc/strings.json"
hash = "ca3d163bab055381827226140568f3bef7eaac187cebd76878e0b63e9e442356"
[[files]]
file = "config/worldedit/.archive-unpack/2e1dd752/oj/strings.json"