-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.toml
4995 lines (3779 loc) · 188 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 = "LICENSE"
hash = "230184f60bae2feaf244f10a8bac053c8ff33a183bcc365b4d8b876d2b7f4809"
[[files]]
file = "README.md"
hash = "a1d799a7d62711c8be63de7247ee8a37b00d00d9e7baaa3d23737616a27b9b4b"
[[files]]
file = "complementary-reimagined.pw.toml"
hash = "c0295d73ee5b935825bf025f154a013eed9b4cbb220e5ed509c575d164f7e994"
metafile = true
[[files]]
file = "config/Advancedperipherals/general.toml"
hash = "78bc066a3400a0676828e159da326fb5cf41869e393f935c13641ec7a078ee2f"
[[files]]
file = "config/Advancedperipherals/metaphysics.toml"
hash = "708933b1de278e96e67050d8c589297e7cf6c7051c7c69e866068d6f150c026a"
[[files]]
file = "config/Advancedperipherals/peripherals-1.toml.bak"
hash = "2e68d9eb05db5d54dd0eaf82dd9ceb7a0631354d56b2ff9aa08d17035f82b1f5"
[[files]]
file = "config/Advancedperipherals/peripherals.toml"
hash = "ec94745d90acc6cad5bba2f41a221fc317f49e4b71119cad0fafd01515b88484"
[[files]]
file = "config/Advancedperipherals/world.toml"
hash = "20a77e677bebcd0e4b27c3ab15ef52a19e8ff76b7828af543abaacff98a952d3"
[[files]]
file = "config/MouseTweaks.cfg"
hash = "611b9c06b577cb3cdc72c8b74a78b16b9a7b42832e1380a85107d086a8854fa8"
[[files]]
file = "config/ad_astra.toml"
hash = "429c4ffcf02f8afb6148c9d52715e1c956812dab2cd2d9eb9b52587881d90d42"
[[files]]
file = "config/alexsmobs.toml"
hash = "9644fadfad5250efc28139e2fc933819d0149c3dc08d8f903f98e91fc9de9a76"
[[files]]
file = "config/alexsmobs/alligator_snapping_turtle_spawns.json"
hash = "a3449f60c5781d08db112dacf1709d0664a5ae09d12a0dd7d72f54a8d6267eb7"
[[files]]
file = "config/alexsmobs/anaconda_spawns.json"
hash = "a4b21f7eadad2e5b8eb3cedc78e4691d4891e66833e03d4385f2d99bcdc65bab"
[[files]]
file = "config/alexsmobs/anteater_spawns.json"
hash = "d4dffa77f0d98aaded4393c296b06d78a530e94ffb8900a607cd8de66f046c16"
[[files]]
file = "config/alexsmobs/bald_eagle_spawns.json"
hash = "f5b135489a414062cef45866e3355321f2697d33d88424c6cb699b8127006d65"
[[files]]
file = "config/alexsmobs/banana_slug_spawns.json"
hash = "eafd26e756874909cdb87fe331bad84a3c12918a469a12763403ca3b0020a7cb"
[[files]]
file = "config/alexsmobs/bison_spawns.json"
hash = "27bc5467a75000471af0751f2aa62c783f5ae25d7a1eb943795b7c3af080bc83"
[[files]]
file = "config/alexsmobs/blobfish_spawns.json"
hash = "598a33aa535fa5edae67b8b4f83df3bf978e52963c0f5cd379a822c86d8ad9fc"
[[files]]
file = "config/alexsmobs/blue_jay_spawns.json"
hash = "cca5687ed14cf9e7bc2147d2e0c69757a61618acb1390e333fe9dc83749abd0c"
[[files]]
file = "config/alexsmobs/bone_serpent_spawns.json"
hash = "5e6e4b33b40a70bc8973e6f957bfc02a53d1626665d18fc1c88950b1633b39a3"
[[files]]
file = "config/alexsmobs/bunfungus_spawns.json"
hash = "56a4c9b49eebc856232f0d5599ea879d3a5231c4d3b1a119a7c74684fdc5b655"
[[files]]
file = "config/alexsmobs/cachalot_whale_beached_spawns.json"
hash = "080b3a3a68a4a3b7791ab6ca04c51e8205bd3c6a062e449b3ade64957d454aad"
[[files]]
file = "config/alexsmobs/cachalot_whale_spawns.json"
hash = "075a7f8e780577ad740a8caab924653c9681fbdf9660dc9b550fe172b318a3db"
[[files]]
file = "config/alexsmobs/capuchin_monkey_spawns.json"
hash = "26783dc7141cf1d10eb0fb6815e8d6cb8518a7d964e4ecb995b934f757c20329"
[[files]]
file = "config/alexsmobs/catfish_spawns.json"
hash = "37aa7dfdf28e2e9a133d7715ea4f90f6f6cf8dda1e4bc037fa3f37bd92d89257"
[[files]]
file = "config/alexsmobs/cave_centipede_spawns.json"
hash = "1fb9d9cc0833f50b12c0e8db11580d31bda37e4e4974b0503e54b3eaac4235e9"
[[files]]
file = "config/alexsmobs/cockroach_spawns.json"
hash = "1fb9d9cc0833f50b12c0e8db11580d31bda37e4e4974b0503e54b3eaac4235e9"
[[files]]
file = "config/alexsmobs/comb_jelly_spawns.json"
hash = "a7a731f0325aadc2810ce7c589e81bec289bd5c14f1291c5ddb10ebafbdf2845"
[[files]]
file = "config/alexsmobs/cosmaw_spawns.json"
hash = "372df87ed49c27775f68bebd7351059f490ab0ee9d68c40aa1699b6c8c94df3d"
[[files]]
file = "config/alexsmobs/cosmic_cod_spawns.json"
hash = "16155914c6318d7e77a09f71c034e8aed55474b5df320f30a668bdd3a631cc18"
[[files]]
file = "config/alexsmobs/crimson_mosquito_spawns.json"
hash = "0e9d1e7b41ad2c94aa51b4a2608ae4927cd50d5bc134369c7cc7f7d627159d50"
[[files]]
file = "config/alexsmobs/crocodile_spawns.json"
hash = "5ea014a69257967097e0be01da171558f8ecf437316572c80f90362009f55dee"
[[files]]
file = "config/alexsmobs/crow_spawns.json"
hash = "b785f52271bc4e098f7d612358b85e1a810c078d310e73dba334ca8a46ddb32e"
[[files]]
file = "config/alexsmobs/devils_hole_pupfish_spawns.json"
hash = "3d5fd3f45bff47cc86ad6baaddea4c482db43d4982e9aa9bd6d14f3c295c6e98"
[[files]]
file = "config/alexsmobs/dropbear_spawns.json"
hash = "b6d0c12a35a4add55339a31d44ee006b8a09a87631a9d041ff9ede4d6fdc8515"
[[files]]
file = "config/alexsmobs/elephant_spawns.json"
hash = "aebb16920932459843c2c391d5942068f2eaea2043b1d07241b61b14c6e9ef09"
[[files]]
file = "config/alexsmobs/emu_spawns.json"
hash = "9d0ece037ecbf535d4678461c1e0c4ab3d6877d2469641ac633f3d674d8f5717"
[[files]]
file = "config/alexsmobs/endergrade_spawns.json"
hash = "178d5ac1ca1be1d23f0d5c677224eb4bfb38a24cc7fac7e12289c87d35f9a27f"
[[files]]
file = "config/alexsmobs/enderiophage_spawns.json"
hash = "c870d92b42e9bfb3c6e9bbc7cf56eeb170ff2b0f916f35f94196062741ad8f6a"
[[files]]
file = "config/alexsmobs/farseer.json"
hash = "aa66669db94d3ff7eff00937c22d397b3c782cc539debeed0a368cce2e119c46"
[[files]]
file = "config/alexsmobs/flutter_spawns.json"
hash = "0407bbf9b7a554d70d71e0b0a076332ab5577cf2bb08b17add4040caedade241"
[[files]]
file = "config/alexsmobs/fly_spawns.json"
hash = "9a2af8e2a218dbbe11a61f0db361621e48efd9b668d75641dda68ad18d3d2b31"
[[files]]
file = "config/alexsmobs/flying_fish_spawns.json"
hash = "cf9c9731888d219b546eba75cc3b1b957eaf6b15352577e3df2258217770c2a7"
[[files]]
file = "config/alexsmobs/frilled_shark_spawns.json"
hash = "598a33aa535fa5edae67b8b4f83df3bf978e52963c0f5cd379a822c86d8ad9fc"
[[files]]
file = "config/alexsmobs/froststalker_spawns.json"
hash = "53915780cab68621ce7150d72219f93d8cccf6c084363ee91081abbf29dd4b08"
[[files]]
file = "config/alexsmobs/gazelle_spawns.json"
hash = "9d9e6126ee723371520eace5ece367ffc2aa977b695e5f5581905b0acd4d7e44"
[[files]]
file = "config/alexsmobs/gelada_monkey_spawns.json"
hash = "a49c35c91ce7f4f1c4a38bb52cae42f6208f43ad48d23403d5acd382a519c2b0"
[[files]]
file = "config/alexsmobs/giant_squid_spawns.json"
hash = "598a33aa535fa5edae67b8b4f83df3bf978e52963c0f5cd379a822c86d8ad9fc"
[[files]]
file = "config/alexsmobs/gorilla_spawns.json"
hash = "7c6b2ddbf6eabe2f6d77fca2e0fb9f854fc07a334f6130e68c40f643cfc32705"
[[files]]
file = "config/alexsmobs/grizzly_bear_spawns.json"
hash = "cca5687ed14cf9e7bc2147d2e0c69757a61618acb1390e333fe9dc83749abd0c"
[[files]]
file = "config/alexsmobs/guster_spawns.json"
hash = "19d72274d9d7932229b180c73b6a91a38de6114f5aac4c35aa1488c0dd1bb28b"
[[files]]
file = "config/alexsmobs/hammerhead_shark_spawns.json"
hash = "cdde58f5de5958b895bda3f8834cac0c1e539040274b9aa2d5896fd676726ca8"
[[files]]
file = "config/alexsmobs/hummingbird_spawns.json"
hash = "78102ec6e735bc2b8c13af0ad08840d447a71fb2540b231375e933a3d99baa7f"
[[files]]
file = "config/alexsmobs/jerboa_spawns.json"
hash = "a27201bc22f049a7730d28e77df4f2f21853fd7ade5e2a657160bae470f2ca11"
[[files]]
file = "config/alexsmobs/kangaroo_spawns.json"
hash = "9d0ece037ecbf535d4678461c1e0c4ab3d6877d2469641ac633f3d674d8f5717"
[[files]]
file = "config/alexsmobs/komodo_dragon_spawns.json"
hash = "dd9cacc34fa8e89708f686d2f66f9b1159fb9fef30f908b399e013c0a24e9766"
[[files]]
file = "config/alexsmobs/laviathan_spawns.json"
hash = "5e6e4b33b40a70bc8973e6f957bfc02a53d1626665d18fc1c88950b1633b39a3"
[[files]]
file = "config/alexsmobs/leafcutter_anthill_spawns.json"
hash = "d4dffa77f0d98aaded4393c296b06d78a530e94ffb8900a607cd8de66f046c16"
[[files]]
file = "config/alexsmobs/lobster_spawns.json"
hash = "65803061832d788b32b864367d62c114c68291d8eea9097594dcaf0301306cc5"
[[files]]
file = "config/alexsmobs/maned_wolf_spawns.json"
hash = "c3d7f60acb2e605d0bc3c7461d98bfd6310c64d9c787d5e0879883f6b8c5b28b"
[[files]]
file = "config/alexsmobs/mantis_shrimp_spawns.json"
hash = "44869ab38ceb22d186edcfb5362a6eb80760e75f74191fdd5cb6abbdd8b59780"
[[files]]
file = "config/alexsmobs/mimic_octopus_spawns.json"
hash = "4472a386633f31b2bad0dcfab807cb08c3ec2a90ecb1b1fa227336ff1690713e"
[[files]]
file = "config/alexsmobs/mimicube_spawns.json"
hash = "178d5ac1ca1be1d23f0d5c677224eb4bfb38a24cc7fac7e12289c87d35f9a27f"
[[files]]
file = "config/alexsmobs/moose_spawns.json"
hash = "edfbe10e5da41f462f70f4bd61142530e3b5c9e29d1005bc302efab4ede36cf5"
[[files]]
file = "config/alexsmobs/mudskipper_spawns.json"
hash = "9fcf42542a9fc8d248516f2572bef05c319975e4e86000cf0dff7f5b15baf159"
[[files]]
file = "config/alexsmobs/mungus_spawns.json"
hash = "56a4c9b49eebc856232f0d5599ea879d3a5231c4d3b1a119a7c74684fdc5b655"
[[files]]
file = "config/alexsmobs/murmur.json"
hash = "1fb9d9cc0833f50b12c0e8db11580d31bda37e4e4974b0503e54b3eaac4235e9"
[[files]]
file = "config/alexsmobs/orca_spawns.json"
hash = "19c60fb7ae61a72d34a1a172fc641c7ad9ee0ba0772ed7fad6d60298f039631d"
[[files]]
file = "config/alexsmobs/platypus_spawns.json"
hash = "c6bc57ee041fdf145dcb6d2891672ca4fd91a3171066239cab79bd171635a329"
[[files]]
file = "config/alexsmobs/potoo_spawns.json"
hash = "e6f21da914007cb168c216619404e060ca89e3dc06eeebe53e9de5a5dd1ab88b"
[[files]]
file = "config/alexsmobs/raccoon_spawns.json"
hash = "4d823346b5ad4fefa750d0b540c1715d29700f8557c45b7864edb9fc69be473d"
[[files]]
file = "config/alexsmobs/rain_frog_spawns.json"
hash = "a27201bc22f049a7730d28e77df4f2f21853fd7ade5e2a657160bae470f2ca11"
[[files]]
file = "config/alexsmobs/rattlesnake_spawns.json"
hash = "db297004bd46b2506a5b53dfcbaa8ff9110b8c69f9a9a487d25f077c4dbaa16f"
[[files]]
file = "config/alexsmobs/rhinoceros_spawns.json"
hash = "9d9e6126ee723371520eace5ece367ffc2aa977b695e5f5581905b0acd4d7e44"
[[files]]
file = "config/alexsmobs/roadrunner_spawns.json"
hash = "db297004bd46b2506a5b53dfcbaa8ff9110b8c69f9a9a487d25f077c4dbaa16f"
[[files]]
file = "config/alexsmobs/rocky_roller_spawns.json"
hash = "12ae5178bdde51afe23759cebe45f52e1a614735cb5440a2c83ecd8e75eec7a3"
[[files]]
file = "config/alexsmobs/seagull_spawns.json"
hash = "93a1ea47739d9505210503c2ba904d8219cc476f46fa98292562e39cc14a455a"
[[files]]
file = "config/alexsmobs/seal_spawns.json"
hash = "f00363564ed260b76c6132845d6301d23ea6207185f7b5ccfab0249d36c2f1ed"
[[files]]
file = "config/alexsmobs/shoebill_spawns.json"
hash = "2ae357ebce2949b1d60db4da9ca2c6cc0e0e0b6ae153f5cb49c119dda1acbc23"
[[files]]
file = "config/alexsmobs/skelewag_spawns.json"
hash = "d719b5e7064f4e9260d591f21236f0105455b7f4716c82e8e8d07b7ec5638b67"
[[files]]
file = "config/alexsmobs/skreecher.json"
hash = "472bfac087058ed5532f88ae31946e5d4ed8d2a154c6aef82fe1e22783f8a8ed"
[[files]]
file = "config/alexsmobs/skunk_spawns.json"
hash = "2de9b79ddc0a39e537c2ae62486305e48bd568e56a0e69e0d636c1f19317bbef"
[[files]]
file = "config/alexsmobs/snow_leopard_spawns.json"
hash = "43796a6d9a7b4b18b0a0fbbd119ef6b651f1d25557e499d975ab56e3f163efa4"
[[files]]
file = "config/alexsmobs/soul_vulture_spawns.json"
hash = "a3eb1909920f54d0717d93a0779fa00d72cab7dbfe1494254eb939a157e80f66"
[[files]]
file = "config/alexsmobs/spectre_spawns.json"
hash = "178d5ac1ca1be1d23f0d5c677224eb4bfb38a24cc7fac7e12289c87d35f9a27f"
[[files]]
file = "config/alexsmobs/straddler_spawns.json"
hash = "778a9cb57b0c8adc9961e78d6fe4ed6f10ad37e3a23fd3624cc28e2f0b3c1fe6"
[[files]]
file = "config/alexsmobs/stradpole_spawns.json"
hash = "778a9cb57b0c8adc9961e78d6fe4ed6f10ad37e3a23fd3624cc28e2f0b3c1fe6"
[[files]]
file = "config/alexsmobs/sugar_glider_spawns.json"
hash = "2463a918178f2b963ace75e9c07201d4caf42bb31a825658ea79c61f118f6bc7"
[[files]]
file = "config/alexsmobs/sunbird_spawns.json"
hash = "cc539036c4065afe0eaeef628a0fd4a0e2b79a968542a0b51f09f117a06ce8c8"
[[files]]
file = "config/alexsmobs/tarantula_hawk_spawns.json"
hash = "a27201bc22f049a7730d28e77df4f2f21853fd7ade5e2a657160bae470f2ca11"
[[files]]
file = "config/alexsmobs/tasmanian_devil_spawns.json"
hash = "2de9b79ddc0a39e537c2ae62486305e48bd568e56a0e69e0d636c1f19317bbef"
[[files]]
file = "config/alexsmobs/terrapin_spawns.json"
hash = "c6bc57ee041fdf145dcb6d2891672ca4fd91a3171066239cab79bd171635a329"
[[files]]
file = "config/alexsmobs/tiger_spawns.json"
hash = "d9543461ee0147ceaa0990d74d506caf9ac02fb39ad3dfc5dc88097f8f29f2fd"
[[files]]
file = "config/alexsmobs/toucan_spawns.json"
hash = "d4dffa77f0d98aaded4393c296b06d78a530e94ffb8900a607cd8de66f046c16"
[[files]]
file = "config/alexsmobs/tusklin_spawns.json"
hash = "7ff05b2466ad4007929f1b1130d1f3ce240a0abbc92d3997f9ea7f36ab01d62f"
[[files]]
file = "config/alexsmobs/underminer.json"
hash = "1fb9d9cc0833f50b12c0e8db11580d31bda37e4e4974b0503e54b3eaac4235e9"
[[files]]
file = "config/alexsmobs/void_worm_spawns.json"
hash = "b0849eb96f4816a0c8ccbd346182d50cf300dbf002d392cbe90682c930e0f557"
[[files]]
file = "config/alexsmobs/warped_mosco_spawns.json"
hash = "b0849eb96f4816a0c8ccbd346182d50cf300dbf002d392cbe90682c930e0f557"
[[files]]
file = "config/alexsmobs/warped_toad_spawns.json"
hash = "a79f61400c2eeaf5f29ccc384638df588374cc794838c6e4529a61e2cc31412c"
[[files]]
file = "config/apotheosis/adventure.cfg"
hash = "89d9870de6904149856a748d15896c18c3a95cf778fd4e8ad00ed4c8f0f46e7a"
[[files]]
file = "config/apotheosis/apotheosis.cfg"
hash = "9665f22f77597b42cf5adc02e351253525fd76dd45b885f258dafbb038a24e26"
[[files]]
file = "config/apotheosis/enchantments.cfg"
hash = "2ff3c9c3b63faa7a3cf42b3ea324a6d0779d644ba8581739832bd667ed635f0d"
[[files]]
file = "config/apotheosis/garden.cfg"
hash = "8dea2945143e4e9e5bb0c6460296ad42a45ad95518d75a9ae36e2645c1f1e2be"
[[files]]
file = "config/apotheosis/names.cfg"
hash = "44b768250b983f5c4738a4bcb5ca5cd5c09285cc5dc82ba630626482331d8923"
[[files]]
file = "config/apotheosis/potion.cfg"
hash = "134b31c8615b305f8489204009bdabcaf8b1aade97291cf685daf24c722830a1"
[[files]]
file = "config/apotheosis/spawner.cfg"
hash = "9c18328b82e424ca37ab9f05f8b5fc7992e93d3cf2647363dc5b55dfd1615dc7"
[[files]]
file = "config/apotheosis/village.cfg"
hash = "e107b59d9f2fc528d7f0f705fc96db903ca897af2151e91a1eb5e8ab2c338996"
[[files]]
file = "config/appleskin-client.toml"
hash = "b477c8c493b28366a6b282f29f46c9415e3a4a2a23fff6e09331644c435dfd48"
[[files]]
file = "config/artifacts-client.toml"
hash = "8a28fe0918bba4f5ab89ff5323317e91bac415c2782cc39ea966f4a763272535"
[[files]]
file = "config/artifacts-common.toml"
hash = "5127cfc91bfb058ac7c1f10d06324f372964a1de56609cea5668a964ae3664ad"
[[files]]
file = "config/betterfortresses-forge-1_19.toml"
hash = "d7ad821ff76f0abe305017abe4f3e4aaf7acc6870bc66983eb140cf283ed0b95"
[[files]]
file = "config/betterfortresses/README.txt"
hash = "3e551016c121147eabbe77e0608ef65c559e9bbbb105254bf407fefc6039384f"
[[files]]
file = "config/betterfortresses/forge-1_19/README.txt"
hash = "050cf34b7d9f1568c55c250b23b1b233d5525a69ed6719ef6782ac64d6ee6be7"
[[files]]
file = "config/betterfortresses/forge-1_19/itemframes.json"
hash = "279790b3a87e4368542eb602c3a23cda8ab4c887f0b1bf2e4abf603b0c5816ac"
[[files]]
file = "config/bhmenu-client.toml"
hash = "0f09d6e5fa4f8c3b103a564fec4800e6bf40191ba198fa7425da4539100be13c"
[[files]]
file = "config/biomesoplenty/biome_toggles.json"
hash = "c7d683cd178b1d0303652a8083b4e0672e2677a7b3b6491205a422198281c5f5"
[[files]]
file = "config/biomesoplenty/generation.toml"
hash = "9de600b6c85029f74a7549a6f7074065ac55310666c54bebd4c3bf573b0379d7"
[[files]]
file = "config/blueprint-client.toml"
hash = "89ef9f568d793018db983b9f944e85876a4cebd408f8f4d2182b3c38fa44ef7e"
[[files]]
file = "config/blueprint-common.toml"
hash = "d335fd00458005d989d55a6615073d5b390ea08d5e1d129229518f90d5d3ef9b"
[[files]]
file = "config/blur.json"
hash = "78e215b21bc7da4cb841cdafd0218a9e025daab224cbeba114b23bc917aa9b06"
[[files]]
file = "config/buildinggadgets-client.toml"
hash = "bf043ce279a8f30f2dcd1aba0ad2cf75daf77e37ef35ed38845963c5f9993f59"
[[files]]
file = "config/bwncr-common.toml"
hash = "b758120a06d5baa142e34cca95de36088b47ac0663e2543dc9023789b59e418e"
[[files]]
file = "config/byg/README.txt"
hash = "716925cf1fd06d3d981aac5adbdc7a84dae30dbb64b17b0c25a8f739be01883d"
[[files]]
file = "config/byg/backups/last_working_configs_backup.zip"
hash = "9c199a964208f8656caa43405a11300fc2b7277d8b3f2b490d445fe4c7e658a5"
[[files]]
file = "config/byg/biomepedia.json5"
hash = "8ef0cd2537acf9187204f7d9cbf94464d99eb3915cc92a293c3d3b64633c22f5"
[[files]]
file = "config/byg/client/biomepedia_inventory.json5"
hash = "fe34189905301fc2821a96e626544c1fdfb2da66fda123d7f38886b088c78f97"
[[files]]
file = "config/byg/config_versions.json5"
hash = "932b026a6dc19aa38289f2e2b93b17c65b4187db5f540a4fe7e960f3ce2ced41"
[[files]]
file = "config/byg/end-biomes.json5"
hash = "08f3326b9f2b62917a215b8030a3d4abff0fbe584c73f9e863c0cc988c01a380"
[[files]]
file = "config/byg/growing-patterns.json5"
hash = "09893da43806cfefa3618f8ddfa775c5af10ef00c5fdd74a59b27a822918f6f8"
[[files]]
file = "config/byg/nether-biomes.json5"
hash = "ad271294ce80f09d17109120a56327781a277793d9570e9005d2a65ff7e4cb89"
[[files]]
file = "config/byg/overworld/biome_selectors/beach_biomes/beach_biomes_1.json5"
hash = "0e53d280eb90fb3c42f66b0ce58d4e08e638a51d676671ee5588846da14f70b8"
[[files]]
file = "config/byg/overworld/biome_selectors/beach_biomes/beach_biomes_vanilla.json5"
hash = "6dd230fc4c56de80747e8e9c55b819c30a90c04b27694111f0318f6988ca1d33"
[[files]]
file = "config/byg/overworld/biome_selectors/middle_biomes/middle_biomes_1.json5"
hash = "083c74dfff5f8541d50e6e6f94fd627e3ecc88c75c016119013039f64b6c0601"
[[files]]
file = "config/byg/overworld/biome_selectors/middle_biomes/middle_biomes_2.json5"
hash = "c987a91a518e17b95214fb7a6b7123e0dbd03733f4d4263b7089d6b0954d3d15"
[[files]]
file = "config/byg/overworld/biome_selectors/middle_biomes/middle_biomes_3.json5"
hash = "e6e5f4814231e5b973bcb84dba877bb2d5055135ef6d1d981897b0a0fcf2f241"
[[files]]
file = "config/byg/overworld/biome_selectors/middle_biomes/middle_biomes_vanilla.json5"
hash = "f78eacc414033fd7f75d1515835e6952225b9eeb8527db35927f6aba19be2db6"
[[files]]
file = "config/byg/overworld/biome_selectors/middle_biomes_variant/middle_biomes_variant_vanilla.json5"
hash = "2c98b46f5859bfad90f6381cba3072bc272ea49c59036e85d4bc19c4d78e3bcb"
[[files]]
file = "config/byg/overworld/biome_selectors/oceans/oceans_1.json5"
hash = "15eefb2eb101d0ae7e317c16607787a42da09c083cab0ca18449afddad7f69f0"
[[files]]
file = "config/byg/overworld/biome_selectors/oceans/oceans_vanilla.json5"
hash = "e759bdca66716ef1c839a0da99b2dbc30983ac49411773f67df86efc2967575c"
[[files]]
file = "config/byg/overworld/biome_selectors/peak_biomes/peak_biomes_1.json5"
hash = "fede3df921646e66623ca524260c7ec659797af3256b601cc2d59b2b72056d0c"
[[files]]
file = "config/byg/overworld/biome_selectors/peak_biomes/peak_biomes_vanilla.json5"
hash = "1d67c6d3f53e21ea538ff516c56301e334ca509b461e4d0a5cb914e48388e1e9"
[[files]]
file = "config/byg/overworld/biome_selectors/peak_biomes_variant/peak_biomes_variant_vanilla.json5"
hash = "5eb3f8ee44e14ad8ad7952bf38af861585022222c0458b5241d163adeb1aca2c"
[[files]]
file = "config/byg/overworld/biome_selectors/plateau_biomes/plateau_biomes_1.json5"
hash = "a7f8583a1fdb161bd6a5695fae701b68404297f4b84d488a28a6071a170cbad0"
[[files]]
file = "config/byg/overworld/biome_selectors/plateau_biomes/plateau_biomes_2.json5"
hash = "e8cd56ddcdab180fa46a01f7b03dd03470b4880260dfcb1fe9f33b6d94d9edec"
[[files]]
file = "config/byg/overworld/biome_selectors/plateau_biomes/plateau_biomes_3.json5"
hash = "9241e6a649b4c0fc90723ac686498d2d4826d81c2e68068379190130d3c69404"
[[files]]
file = "config/byg/overworld/biome_selectors/plateau_biomes/plateau_biomes_vanilla.json5"
hash = "01e9ef99c0ce3d25dbd4f70244add31a7538bd844878de320cd903c74eee36ef"
[[files]]
file = "config/byg/overworld/biome_selectors/plateau_biomes_variant/plateau_biomes_variant_vanilla.json5"
hash = "efcd0e3145f0b2a9853609e0a89161da94f68bb48104cd105dd61e8eda313c79"
[[files]]
file = "config/byg/overworld/biome_selectors/shattered_biomes/shattered_biomes_vanilla.json5"
hash = "1af3e3dfc20312ec48227dec225ad4ef2922e5b5fb3e402be3e56ffae73514dd"
[[files]]
file = "config/byg/overworld/biome_selectors/slope_biomes/slope_biomes_1.json5"
hash = "64c5aedfd14d6b7a1e33a5c46b42d074c03fb2d45d7a100365f90d22ce7c781b"
[[files]]
file = "config/byg/overworld/biome_selectors/slope_biomes/slope_biomes_vanilla.json5"
hash = "49119e306636691780508164929efd5846fb03c9f2c8be13e3b7ee7406563d32"
[[files]]
file = "config/byg/overworld/biome_selectors/slope_biomes_variant/slope_biomes_variant_vanilla.json5"
hash = "115c27d732c71b6fcc7daa358607f0ae1f27ac447485f0523e385cd2f085a584"
[[files]]
file = "config/byg/overworld/byg-overworld-biomes.json5"
hash = "f9e21375533daec1d9c891312f0e62d5cb7b0bbd03c818c10b75c4b858117af8"
[[files]]
file = "config/byg/overworld/regions/rare_region_1.json5"
hash = "179a4d61cf995a0d2f54a2ccd09774eb33b84080fe3ec66b154d2694016b8a29"
[[files]]
file = "config/byg/overworld/regions/region_1.json5"
hash = "f3fdb1f8ebe3959e1a73d7bd9e5d5fca5313a8b5110b6482309374d622a12a22"
[[files]]
file = "config/byg/overworld/regions/region_2.json5"
hash = "e9d107cc77c0f771458d80c4c852d19d7fbaa4eeb25cab58e866910e04843c00"
[[files]]
file = "config/byg/overworld/regions/region_3.json5"
hash = "8fcadaf16f568fcddfc127cf91f429ad100f07283b7f149e291e1228355580d5"
[[files]]
file = "config/byg/settings.json5"
hash = "69315b2ed07954afc0c887a4b1059bc4b652f36e333ac4e859f7ce35c8270760"
[[files]]
file = "config/byg/surface_rules/end_surface_rules.json5"
hash = "3515ed2d93cf2664da9548beb6871e9f059ff2fcc2d42c52e7aa84307dafc2b2"
[[files]]
file = "config/byg/surface_rules/nether_surface_rules.json5"
hash = "1c2e8e069f5b766411dabbe843d0fc905ad94785eaa111a56806e8f96c692461"
[[files]]
file = "config/byg/surface_rules/overworld_surface_rules.json5"
hash = "ad62e7fd9c116d1ebe22aa808e4b7b88a1355e0d374ecfc3e2c9a1bea0124a20"
[[files]]
file = "config/byg/trades.json5"
hash = "90495177a2ab984c4a95b5a5067123487d9ba34b9fa5189d045c4425e5cf3bfc"
[[files]]
file = "config/citadel-common.toml"
hash = "3fcd8013137a86c00953d4be1e56945b84b87594be722bbf3b3be8d752e2577f"
[[files]]
file = "config/cobblegenrandomizer-common.toml"
hash = "245ba1fb07145881c941b63324977f1be360e6d268907e2d13262b059ef3dcd3"
[[files]]
file = "config/cofh_core-client.toml"
hash = "78865ba19df6cbf88205519433303fea4c6e23ccc6132a53fbddf0e2525a5556"
[[files]]
file = "config/cofh_core-common.toml"
hash = "e254fd10199336dd0e0c1c3f20a8daa1fdf9ca026b02dd9c0064ae1f058b9393"
[[files]]
file = "config/computercraft-client.toml"
hash = "74a4490a9e22547861cccba0a9cf729be26b2a482ca3fd2c694ea0f4d08e77f2"
[[files]]
file = "config/configured-client.toml"
hash = "24d82d11bce1d0a1ff00b3c733d7d15c779108066d28599458cb1ab9fbfe6e08"
[[files]]
file = "config/create-client.toml"
hash = "571fd8ffd5cf9d67d18f019926e02c92e51d0bd8efa6da1f620d089294c6a486"
[[files]]
file = "config/create-common.toml"
hash = "b2a49a7bbb48c346464a3bb17b72ebfa9eca06410f04bc0f518b5e049ab155fc"
[[files]]
file = "config/create_central_kitchen-common-1.toml.bak"
hash = "87424bc77702fad73febeb3f22988b5bf3d3160ad960dc36dee1f51dc2d30ce9"
[[files]]
file = "config/create_central_kitchen-common.toml"
hash = "87424bc77702fad73febeb3f22988b5bf3d3160ad960dc36dee1f51dc2d30ce9"
[[files]]
file = "config/createaddition-common.toml"
hash = "cc4f0dfc87e836cd7be9d0b979d24c7b01e4cc77371fbe76e4a4ea29977e68c0"
[[files]]
file = "config/createbigcannons-client.toml"
hash = "6194ef9262a8fc45f8e7e641f4a5dbdabf12294cbf7d0c54c9f9db64bc9b4e09"
[[files]]
file = "config/createsifter-client.toml"
hash = "ed6dc2da45acace4353728ef6258c89aab8bad20183b765f5a75984fd61aa22b"
[[files]]
file = "config/createsifter-common.toml"
hash = "46d33f64174393577b15aaf0617b6e91ac3655fd8f53cc43fbd9d5b16448f5ff"
[[files]]
file = "config/cucumber-client.toml"
hash = "8728108be29b34595d998261b40bba3ffb58f0def0dbe3b5c0e48c4fb708a3bc"
[[files]]
file = "config/cucumber-common.toml"
hash = "186e94e7d3f74e5d731cd69e30f8a1e0a300c3fbbfcf92dc5ddb9d8b9d96eeeb"
[[files]]
file = "config/cucumber-tags.json"
hash = "ede066cd9d63ad819b65cfcf386280278eac0f5c7de56977bfe1d5b98f2d04a1"
[[files]]
file = "config/curios-client.toml"
hash = "9c0985b85e67e704a3640d028186dc0b220fa69404b9555244add55eaf5d4794"
[[files]]
file = "config/dungeon_crawl.toml"
hash = "02ab42271d4740ee4d0cce72ad8e45fc7f3d67aad4bbad9c1ca3228a97ef2134"
[[files]]
file = "config/enchdesc.json"
hash = "31c1f5099f0deb10946338897737b96384d681034367adef94bb380211fe91f3"
[[files]]
file = "config/entityculling.json"
hash = "1eab49670e52d33fb63c14c6f5eec9d8abf735d9ee24679ba00f2ca19b96c2d0"
[[files]]
file = "config/farmersdelight-client-1.toml.bak"
hash = "e5f8f5743c23e6c1e569070d720f91e66495e8da03550a0d37d9a07c6d543014"
[[files]]
file = "config/farmersdelight-client.toml"
hash = "e5f8f5743c23e6c1e569070d720f91e66495e8da03550a0d37d9a07c6d543014"
[[files]]
file = "config/farmersdelight-common.toml"
hash = "23dac8e8964b311ec6361b30dfb33db572a4bf13657c545bb1b618ffe7f896f1"
[[files]]
file = "config/fastsuite.cfg"
hash = "6ec7afedcf51ef158a80b08384b55e8b5b9759f7d09e5b6de9b0e0e7918e6739"
[[files]]
file = "config/flywheel-client.toml"
hash = "0d0e22785b8811b4010b7cf39f78fcfb25e31e70558176a52cb9e95ea9202c8f"
[[files]]
file = "config/fml.toml"
hash = "eb5434c7520284945763f461841e91da86895a70324e13218a07824f81e5ec87"
[[files]]
file = "config/forbidden_arcanus-client.toml"
hash = "4c3a3d564325ed9221403b137063018e57c4495f7848d42ffbcd29b30ac27535"
[[files]]
file = "config/forbidden_arcanus-common.toml"
hash = "cd0f4ac460f776eb58689b57d33f4e20fffcd02fb5d9159c8e83137b08ed1d6f"
[[files]]
file = "config/forge-client.toml"
hash = "534d9fc367bb58ded17ad2820df913dee00eb6e64ef9270c3a8e491db585f548"
[[files]]
file = "config/forge-common.toml"
hash = "a440d2a7ce939ef3c462475555a9a188263aebdbf13db600de3f01d9d312970c"
[[files]]
file = "config/forge-resource-caching.toml"
hash = "acfdb749a28106463b96980100a7e542b0b2bc3f9c9464196e0765a4f1c39061"
[[files]]
file = "config/ftbquests/quests/chapter_groups.snbt"
hash = "04f90b22f133822834c2c16a1fb3a556f5e9d938b7cadb68589bce2a2cf4e432"
[[files]]
file = "config/ftbquests/quests/chapters/1_basic_mechanism.snbt"
hash = "5a1dc9cb9bde49e89e289065e167302feefccc2243c690e7aac25c3af868caac"
[[files]]
file = "config/ftbquests/quests/chapters/1a_copper_mechanism.snbt"
hash = "fcf9be3dfa0fa74b45a97762ce77db914253ef84f51f481b5ec6fff8a7291137"
[[files]]
file = "config/ftbquests/quests/chapters/1b_steel_mechanism.snbt"
hash = "f9d4a54fb426deff93d5fd125f3c5f847d9798f2d005c66137eff2eafdf6616f"
[[files]]
file = "config/ftbquests/quests/chapters/2_precision_mechanism.snbt"
hash = "282964f9c4d28bea3dc38153b772870e7c972044c7cc54bf9ff1e98637f9081f"
[[files]]
file = "config/ftbquests/quests/chapters/2a_desh_mechanism.snbt"
hash = "deae81fdad8e11c61a2d487448b982de1b507b061bbdd68f6a23b375bb74c26e"
[[files]]
file = "config/ftbquests/quests/chapters/2a_enchanted_mechanism.snbt"
hash = "5abd29c8e4f4cdd3554d4a67e143393765eb3a480f552458243a17a1a3ed1988"
[[files]]
file = "config/ftbquests/quests/chapters/3_conductive_mechanism.snbt"
hash = "81779d9eade55083e778626f10113325ae7382fe991a65cba30864f708f803fe"
[[files]]
file = "config/ftbquests/quests/chapters/3a_refined_mechanism.snbt"
hash = "0ef9f55e8c4e938214044504e5d8ed95a0e2f1023ebf04200a1c174c8dd0b1a7"
[[files]]
file = "config/ftbquests/quests/chapters/4_mystical_mechanism.snbt"
hash = "8cc1338e162cf1d73533a605bb32f798cdfe2bf41a3ecd46fc28950dd71d2a27"
[[files]]
file = "config/ftbquests/quests/chapters/4a_calorite_mechanism.snbt"
hash = "60c71e439e804bf3e26d4a94f6aa5e522d808dc1c89794508721ab77d93ffd42"
[[files]]
file = "config/ftbquests/quests/chapters/5_creative_engine.snbt"
hash = "cffa981faf2554426b992423e4d6ef637427ecc7e16c5e6f1edf8bb421381a85"
[[files]]
file = "config/ftbquests/quests/chapters/chapter_3b_ostrum_mechanism.snbt"
hash = "b39cf4163d2dcaa9d66344f4fffb4abd21d16d4b75c1890299c206d730f61469"
[[files]]
file = "config/ftbquests/quests/chapters/get_started.snbt"
hash = "fd729ec815caf3d3bc4f9f8ba6dbdfb467c076b54ffc6e8e539da8dbe69ae28a"
[[files]]
file = "config/ftbquests/quests/chapters/metallurgy.snbt"
hash = "05da2d13cd5eb7ddeb92e77e7ed5ec4797228113a713ae448f20596e7bab8e9e"
[[files]]
file = "config/ftbquests/quests/chapters/progression.snbt"
hash = "c9091199c85cf56d913a9abb6b48f466456ef053783b3d4e5aec727277632479"
[[files]]
file = "config/ftbquests/quests/data.snbt"
hash = "b4e5fda5eefdaa54f35f1f010542e1c00dea478363b42f759ffa0cbcfa166a06"
[[files]]
file = "config/functionalstorage/functionalstorage-client.toml"
hash = "20f9321530b75eed76c38989ddade8260a3c481f82fe612c5e064b82a1691683"
[[files]]
file = "config/functionalstorage/functionalstorage-common.toml"
hash = "c250bbf5e60cd43f0a17997129843a1d6cb2959c72006ba68f3d3e09bab695d4"
[[files]]
file = "config/highlighter-common.toml"
hash = "dd8fae6111bde646d67671d458d70f91147de6506acb74360d844123d5911579"
[[files]]
file = "config/immersive_aircraft.json"
hash = "eee5c730b44e7cf6066afb10adc14cb81ac1b10fe8ef49c438a4be26fc2683b6"
[[files]]
file = "config/jade/hide-blocks-1902.json"
hash = "6f6658b4a600c154e8bceb74fbfd887c9cb159ae389b1c87d29bd90f21ce5b0a"
[[files]]
file = "config/jade/hide-entities-1902.json"
hash = "82a022760c1ca91894bc3b1184664cf65e16ba39dc17a4aa2fc482c4fe4df581"
[[files]]
file = "config/jade/hide-entities.json"
hash = "4f53cda18c2baa0c0354bb5f9a3ecbe5ed12ab4d8e11ba873c2f11161202b945"
[[files]]
file = "config/jade/jade.json"
hash = "833a455806c3cf2e268f1bfbadb0b285b37faa8cc1f80c7f826942170df5e584"
[[files]]
file = "config/jade/plugins.json"
hash = "83c3facf634d2c2e0ae865215b44c02d36f71272d4e302f0a80e1a336c055ef8"
[[files]]
file = "config/jade/sort-order.json"
hash = "6b905e42f374b5b3554b3df52a93ffc92fd2824c5f8ea4d1b68faeda5c9f321f"
[[files]]
file = "config/jecalculation/config.toml"
hash = "e26125514cb0d408b8c70eef89f373eef615605a9c656b7aee564c2d9b6437bd"
[[files]]
file = "config/jecalculation/record.json"
hash = "6074ab4ccac3086ed2bbf2542cd1be9b0eeb32901c88c46b9585ef4fb2a4dce7"
[[files]]
file = "config/jeed-client.toml"
hash = "ba66d3903e6e26124c1e8f1f5c841ec73778e3d844113de781f496b197065e20"
[[files]]
file = "config/jei/blacklist.cfg"
hash = "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855"
[[files]]
file = "config/jei/ingredient-list-mod-sort-order.ini"
hash = "0b55e96a5043cdb8749db18b1e208761343cf35f37eb698eced9d7e805a81d62"
[[files]]
file = "config/jei/ingredient-list-type-sort-order.ini"
hash = "11ec6bbf89e42945e9ec2e52b1eef8135e1780b9fe8427e3ce40095cfa7ca5cb"
[[files]]
file = "config/jei/jei-client.ini"
hash = "c513c22b5acbf79ca29858ba472bba4a6f969df405c61b37b7ee6554358d88ea"
[[files]]
file = "config/jei/jei-colors.ini"
hash = "c6328dcf3fb8b20a9f6ea6b61266ce289565c167353e183a105fb4915c36c072"
[[files]]
file = "config/jei/jei-debug.ini"
hash = "24f1a0313b8ae9b6bf450d962640312613fd0f9e9a21a26756b85a6b5ee3d46d"
[[files]]
file = "config/jei/jei-mod-id-format.ini"
hash = "34eb990ae2cf62220a0d1be95629bcac46e6732f1cd6f7b6fdc54bcae02916e5"
[[files]]
file = "config/jei/recipe-category-sort-order.ini"
hash = "132ee732f98184172c7d8357c519938ff74d90f4ae9cf220970978e6b7c96c3c"
[[files]]
file = "config/jei/world/local/New_World/bookmarks.ini"
hash = "0ed8f856d37dca2df04aec055368264e7424767a315f63b34b05c324f084b4ab"
[[files]]
file = "config/jei/world/local/New_World__1/bookmarks.ini"
hash = "d85dee34fd14d2b976eda4538400e1acab15c45deb8a873510edfd32e8f1b1c7"
[[files]]
file = "config/jeresources-common.toml"
hash = "9dbe8c6973dc932be6dd20cb63381276740b23c75349dbe870fc8098c8529989"
[[files]]
file = "config/jeresources.toml"
hash = "b101c668c6c658e2db126b7f6d3b9eb913537ff8903fbfce0128534299b2aea5"
[[files]]
file = "config/legendarytooltips-common.toml"
hash = "8683aa292f2fcb6d31dc66c477d57eec744e7faf82a6bad7d932baac7059e43a"
[[files]]
file = "config/lootr-client.toml"
hash = "bdba68cc47b3722ec0b8debe793eea47dc68b453dda9605593ac66a73c6eebda"
[[files]]
file = "config/lootr-common.toml"
hash = "7e0c9f0f9e1a053cc89ae7ae31441cd0078a4cbe82a64a8fffade68bef2b3207"
[[files]]
file = "config/map_atlases-client.toml"
hash = "a4acc4783039b8c3d62d79e185eabe907393c115c76d39208ff17778d52e68cf"
[[files]]
file = "config/map_atlases-common.toml"
hash = "3ee940a650b49ab93e447afe6e6b91945b3c669a3f8f67c1cd48b57ac7bf0e9c"
[[files]]
file = "config/midnightlib.json"
hash = "987e219061925edb6dd63b84067feae4b9544af02d15589bff1d4622c558f407"
[[files]]
file = "config/mutil-client.toml"
hash = "8c353ff01ddc44ad91e01ef60ec8ab077e21949e209a867416da06d7559362f2"
[[files]]
file = "config/mysticalagriculture-client.toml"
hash = "8fad5e2206758eceae2ee8618886715ef1de63eecf60f4f20d237be8f75d157c"
[[files]]
file = "config/mysticalagriculture-common.toml"
hash = "aca19c248d6bdeed38b16be01487d8498e8b64d0d0d854e9c165d16dbcab6fc6"
[[files]]
file = "config/mysticalcustomization/configure-augments.json"
hash = "44136fa355b3678a1146ad16f7e8649e94fb4fc21fe77e8310c060f61caaff8a"
[[files]]
file = "config/mysticalcustomization/configure-crops.json"
hash = "44136fa355b3678a1146ad16f7e8649e94fb4fc21fe77e8310c060f61caaff8a"
[[files]]
file = "config/mysticalcustomization/configure-mobsoultypes.json"
hash = "44136fa355b3678a1146ad16f7e8649e94fb4fc21fe77e8310c060f61caaff8a"
[[files]]
file = "config/mysticalcustomization/configure-tiers.json"
hash = "44136fa355b3678a1146ad16f7e8649e94fb4fc21fe77e8310c060f61caaff8a"
[[files]]
file = "config/mysticalcustomization/configure-types.json"
hash = "44136fa355b3678a1146ad16f7e8649e94fb4fc21fe77e8310c060f61caaff8a"
[[files]]