-
Notifications
You must be signed in to change notification settings - Fork 4
/
index.toml
2185 lines (1673 loc) · 77.5 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/CardinalBoat.toml"
hash = "df0c83bcd0c3d6c84558b2fe0533e9857f21ca084ecd4729b44f6c9734cdc20e"
[[files]]
file = "config/HorseBuff.toml"
hash = "2ad80ee3cd6adb8579ea0efd677c8f5ee7a297b50b4d2c4c1c81f85edd1e2283"
[[files]]
file = "config/SkipTransitions.properties"
hash = "65c60525a8520ef94fb060b187bc73dd57128c77d865d5e417538823eb97c679"
[[files]]
file = "config/apathy/boss.cfg"
hash = "6d01925c16f5913cb67d2d88a27886d56121c83ab08ac1e09d7e5114a85b59f0"
[[files]]
file = "config/apathy/general.cfg"
hash = "3d4dba742f0bc59c924a8e76bfd5a00cfbb0d6bd19fd2060cef89a43b2c6f5df"
[[files]]
file = "config/apathy/mobs.cfg"
hash = "a73bd0828dee679ecb97cda97fc792337a72a95210fa3559fda4395d6ade3e88"
[[files]]
file = "config/appleskin.json5"
hash = "ca7b1b82007fcf3fbd2e45daa2f970881c9e930ca507a51e9c206bd459317c01"
[[files]]
file = "config/boring_default_game_rules/config.json"
hash = "d470b8c9c401dfd6edb8c849c849200409cdafd0262b9aa3f86a58e894517ea4"
[[files]]
file = "config/carpet/default_carpet-fixes.conf"
hash = "d16dd41591854f30de6715ceaf7810fb0c91dd5af6a36d998beb66cd0321f95b"
[[files]]
file = "config/carpet/default_carpet.conf"
hash = "971441aaa80e3839edd5fa6006c65a2866638b7117d83e5afdd9e454c36eec8c"
[[files]]
file = "config/chunksfadein.properties"
hash = "17dbebe8db17d26a777c8f10e3cc6afff3720d278def1fed45f038c08b8f7ab3"
[[files]]
file = "config/citresewn.json"
hash = "7942a329d631eaccd78fa9f5eea061dca41f0504b5ea0052d9ca5d6889b3a395"
[[files]]
file = "config/clienttweaks-common.toml"
hash = "6e69478836cd53650a962a92894eb11434cb681a6ab23f8961967fb8f364c0ab"
[[files]]
file = "config/colormatic.properties"
hash = "4fcc090a9488eee469956b8f70fead42eb60b513a7ee3de696887dcda051dd35"
[[files]]
file = "config/customwindowtitle-client.toml"
hash = "2e522ef287cb56150bd2dd59a5cd6d28e6b45797a2bf9c150415740aaf1c2930"
[[files]]
file = "config/easierenchanting.properties"
hash = "c2fda994299671087249b5601ed12baf6e9e823778f0cdecc0dc38cf572e7775"
[[files]]
file = "config/effective.json"
hash = "084ae75802eeadfa5c4d2b83d347cdb79deb82eb5e87c7172f3f3e54d99916ab"
[[files]]
file = "config/emi.css"
hash = "f3b760aa5c69ffabbc8e0075a4c326b69b813fee041f1498b078af87bb72d081"
[[files]]
file = "config/euphonium.toml"
hash = "1847561c619eda6b779411ebea1344b2ed495fa7955981fe3a64d6faeca9d0d6"
[[files]]
file = "config/exordium.json"
hash = "b2caa9c1a2ff986d6f1816371c44989ffc7c0336f91475b9a6fcdc61fae9ef40"
[[files]]
file = "config/fabrication/features.ini"
hash = "063310847edb89b45a13fc11d1761606741c74674278d370c19ef1ed70db1a14"
[[files]]
file = "config/fabrication/yeet_recipes.ini"
hash = "3d0f2a0e965fe090a131fefc78e934c004fe5c91cdb5fa082d5b9f47b2934b0a"
[[files]]
file = "config/heracles/groups.txt"
hash = "799f72b841ccf42d0406c9107f3850037beb3c14bfe32df41704411b793b67eb"
[[files]]
file = "config/heracles/quests/exploration/008B27BCA21B2D06.json"
hash = "3fe3b182d196dbcc2e9d4b60a4cadf284602ab26e773f3e56086d73bcfbe7bc2"
[[files]]
file = "config/heracles/quests/exploration/01646EC056D18511.json"
hash = "28dc3fd67debc6e0671bb885e5a67813ee7996e396c5a78cbd787ffb6e4901cd"
[[files]]
file = "config/heracles/quests/exploration/02D9B5C70D9D6007.json"
hash = "dda8791078b830bfb4837f79b1c0bd182fbe4c050bbae91dabfb19956b37cf2a"
[[files]]
file = "config/heracles/quests/exploration/0305A29ECBFA79FA.json"
hash = "c3bae1632c442df90fc38c35b0569e364ec57683d98acd556f72507dc4cf4bc6"
[[files]]
file = "config/heracles/quests/exploration/05737FE8552841E9.json"
hash = "9d1c029ed0920155f6d57bf367cd8a9cbefe19fb2499929307a9cc2e49a1729d"
[[files]]
file = "config/heracles/quests/exploration/08398FBBB792C742.json"
hash = "55b38eec4b66d8d18ef0f7c3be820521fbc6f088120fcb4c4689c31aa576e727"
[[files]]
file = "config/heracles/quests/exploration/09874FF0F69D98F0.json"
hash = "ea244e0afa5315e72c93ddc49e236151f64e1a35acc18961cc78bac9b6d26225"
[[files]]
file = "config/heracles/quests/exploration/0B63891D4F70167D.json"
hash = "4bde10273e5e844d1b16ecddac1d42561e665d71740f15272c2067f6bf933e25"
[[files]]
file = "config/heracles/quests/exploration/0C42AC52CDDEF4BB.json"
hash = "c4f65054054bda076e2bc854927dfadc0a5def1cad47f2a3c5f6c76207739607"
[[files]]
file = "config/heracles/quests/exploration/0EFAB7B8A93FB8BB.json"
hash = "fa438172767a6dae31da72bba503f070c3cab9f880ad78a59cf513818e1c8fa0"
[[files]]
file = "config/heracles/quests/exploration/10CFFE20ABD36803.json"
hash = "00012a7b7140418150b26e76ff34fce138bea6b06962035d573535f3e8d6b4a9"
[[files]]
file = "config/heracles/quests/exploration/10D348A5529DCBAC.json"
hash = "fc27dc362d0eeedf77a10704132c886f23002dba69833a9f9bc9e4bcceb87ecd"
[[files]]
file = "config/heracles/quests/exploration/1932327D56163D18.json"
hash = "2bd1bbb59c4fd15b6d208f6880fac524df1e5da42127e89950b4126f6b98137b"
[[files]]
file = "config/heracles/quests/exploration/19FF00BA5161FE04.json"
hash = "d417261a55189673127a06cb70bd0d16bc9f15c24519bb20d37bc2ec94885004"
[[files]]
file = "config/heracles/quests/exploration/1EA97FD583A20884.json"
hash = "b46f5deafdc9477b2d80f65f4a28ee9b6b762e85fd0ddd8f6af5f97cdc95b773"
[[files]]
file = "config/heracles/quests/exploration/2393A9D50B18EEAE.json"
hash = "b35ae87a0aafde3ae3c19960607108c6ef610775352df2018f87fe977f2dfcb1"
[[files]]
file = "config/heracles/quests/exploration/2591980163249EF1.json"
hash = "29b7277ac6a0304b05c34c347b1aefcf513a468d0bfcfa3ff8eb58c54a6052a9"
[[files]]
file = "config/heracles/quests/exploration/28AFD314DDDE3FC4.json"
hash = "2a344a8e194459ac950c7d38a94718824c9c5d97f267c0a69714b1f005b40584"
[[files]]
file = "config/heracles/quests/exploration/30EEC5B4C5178E93.json"
hash = "5c2a01023f93f14831c8eb191a7fc143a95d23a46cf614a20163ef9e799d107e"
[[files]]
file = "config/heracles/quests/exploration/3602D52A78391BFA.json"
hash = "f57d71c5258399d3a9770abcc6962ea56ad4e53a5a6b0da6cc51678c7a20ead9"
[[files]]
file = "config/heracles/quests/exploration/3C34149AF9D6B47B.json"
hash = "50a489147f22bd2bc764931f7b8c2e4eb31b2dd764a2b6276c2113e3ab08b843"
[[files]]
file = "config/heracles/quests/exploration/3D08C518610A72F1.json"
hash = "26fc8dd07442a5ffe34d09546a80a69fc1036b2cc3189039375e2da2c8e5d30e"
[[files]]
file = "config/heracles/quests/exploration/3E19CC5752F07CF9.json"
hash = "d02aeddcb99604718bd10455390efe7663b4a89e105aa2a591f391f7e655192d"
[[files]]
file = "config/heracles/quests/exploration/3F3A1267F224AD07.json"
hash = "e84d15c854be96b079267d04e5f88e28bfaa820593325cb951431926a4775271"
[[files]]
file = "config/heracles/quests/exploration/449397788969C004.json"
hash = "57aba27c45257b207376a1aefea3fc9c5d6686318f209ba684ad98027b09faae"
[[files]]
file = "config/heracles/quests/exploration/47ED4204DD0D65C4.json"
hash = "fffd0ed91f1b87a34a31b362768a6848c508991297deb138e77beec35233a9f2"
[[files]]
file = "config/heracles/quests/exploration/4B74AEAA4D30B428.json"
hash = "3a5f9ea41a86454a811de3a637f2de3180b8d0723bfd5752f06177f8c6692158"
[[files]]
file = "config/heracles/quests/exploration/50C5FC2ED5BF1A83.json"
hash = "79d68aaf93699535ea077c80c9475580e995316c41107f6990027a538ceaec48"
[[files]]
file = "config/heracles/quests/exploration/51415C8C88AA350B.json"
hash = "68d1699386b6f5414158397082b85936665a51300e00739e4f44670777a6d381"
[[files]]
file = "config/heracles/quests/exploration/522B247B10CCF04E.json"
hash = "2ec425ac8212124a64eeae597d2c2e3c5e2698811b6b41342f86b040978e58b7"
[[files]]
file = "config/heracles/quests/exploration/55DDA9D21E24AF10.json"
hash = "52a7e756f37eade757a722d8518c3c0cb2a79ac99a61e5a03225ea8387a22c4c"
[[files]]
file = "config/heracles/quests/exploration/56295946AF0DD074.json"
hash = "43d1d4193f276f4fada163d571bb32a2893d0b1be4980f73897270e71f818cb8"
[[files]]
file = "config/heracles/quests/exploration/562E842E71B5725B.json"
hash = "da32d7d3e404c0019b427488fb57c4d7e155db2a7a2a989625f32b75840e6261"
[[files]]
file = "config/heracles/quests/exploration/5CF8EB5303569739.json"
hash = "32bc3227d8956708c61a6024dbb264f139bec835c17f78c1c1dd37c50597c6ba"
[[files]]
file = "config/heracles/quests/exploration/5DC1E9DC98895E6F.json"
hash = "8375bda4d446245794e9769951c89232b4d47fcb9bc53423d74a1257910ac83f"
[[files]]
file = "config/heracles/quests/exploration/5F4CDC9DB19F6B49.json"
hash = "7fd22f2fdebafa52458b09946bf9ced850bf87da9bfeda6bbb88933e33adf38c"
[[files]]
file = "config/heracles/quests/exploration/61E3A3B353DCD588.json"
hash = "33f93eadd565e7bc1c5ab417007c478ad74131f5e0f374a44d665471b70e5203"
[[files]]
file = "config/heracles/quests/exploration/65DADF56E2AB01DF.json"
hash = "9ecc31ad7aa5f43e63daa1ca27a582caa2aff71c4d31ebc12de42f732cf2317d"
[[files]]
file = "config/heracles/quests/exploration/687ED1196101F48D.json"
hash = "ada1386f318b95652b569f38b485c03ccdcfb822c463798327f6181f5cc8a1da"
[[files]]
file = "config/heracles/quests/exploration/6FB48CC24D3230F5.json"
hash = "e6685a497b7997610b19f423a1f50fb58fb48247bef069a23d9c1ee83cc9bf69"
[[files]]
file = "config/heracles/quests/exploration/703FE6977316B339.json"
hash = "5407eb9820ee87d263ef3a63fbe8b5f524cb01b91e0846e3032dc45f61f3e489"
[[files]]
file = "config/heracles/quests/exploration/75D48083C53616FF.json"
hash = "40bbae28ec28f27292776dace6e14ab52616ba4a5b35d431a5a8cb6df1879e88"
[[files]]
file = "config/heracles/quests/exploration/789344ADD80A6FFA.json"
hash = "d6c3a2010d324a7ca045c253294ec0200b80e2ef8d51f1c935ed91f1a1b5e636"
[[files]]
file = "config/heracles/quests/exploration/7CEE48A412C94320.json"
hash = "44ce7f97ecc367cb69cf45bc95479a71f63798ec2e4f9a9aafa853dc0f15b0d1"
[[files]]
file = "config/heracles/quests/exploration/7FC50C764AF1D65A.json"
hash = "6707d969c30351c3729da0cb25b78a1c76f46c48d86699442e033e999723994d"
[[files]]
file = "config/heracles/quests/homesteading/0342FEBA88E3AF0E.json"
hash = "957034e1024a5d43f0db7f485235dbb3d01495ca51b21d268fabd5d21c5a0e41"
[[files]]
file = "config/heracles/quests/homesteading/039E822D32DC0A9B.json"
hash = "8250df1d4c0cc34a44c6eaf91bf8c6c50a45a5c524b1271b5545de0cab20eb54"
[[files]]
file = "config/heracles/quests/homesteading/03CF663BF52022CB.json"
hash = "512a93d299e91efbe397b222a3f8a89baa9a82e7e8a01af3cb25b43424e429f4"
[[files]]
file = "config/heracles/quests/homesteading/0953453F97BA921D.json"
hash = "9fb3134fd8f279ccc15aefb24dd1ceab213a864ae4a3ebcebbef33ba350b4f08"
[[files]]
file = "config/heracles/quests/homesteading/096988E67755A423.json"
hash = "ee3a3cbdfc3a4cb630cc533e524d371b265a72bfd18849f5144ba2271576b5fb"
[[files]]
file = "config/heracles/quests/homesteading/0BB19BE0BA8A2037.json"
hash = "6977378bb06dded0c80718058c716525719626d5b280b58b83b96b7e61cbb902"
[[files]]
file = "config/heracles/quests/homesteading/0E3858BCFECB6862.json"
hash = "4239eb7ad1bc9f3ea6d11fecb40d80cc3294c0aa97d6921ceaa05aca3a6cdf7a"
[[files]]
file = "config/heracles/quests/homesteading/0EF299A1A5009971.json"
hash = "9879e5d7bab8e87f1fd19afb938caeab2cd0a79ccf0f275c7b9296c051d37676"
[[files]]
file = "config/heracles/quests/homesteading/0FC2E6F08F772324.json"
hash = "43b3328ae9a5b708f51ba1bf99c22622a14696e08a02a2374f6f32f3763881be"
[[files]]
file = "config/heracles/quests/homesteading/1233042213A9729E.json"
hash = "116533d79f0822e6c87ef4201c8c6403bde488a0d10400007b00e84b16f25741"
[[files]]
file = "config/heracles/quests/homesteading/1254376D14A00E56.json"
hash = "e64908c77e2815a21b1943a0687748c9cd98f0e168ca3d3b8538ad1e782a5a4f"
[[files]]
file = "config/heracles/quests/homesteading/1587D6896E210D6D.json"
hash = "24bb50b884a78865f8232c2fde57d4049b03fc92132312bf7f85ddf9d2bb1209"
[[files]]
file = "config/heracles/quests/homesteading/192BAFDE101F900B.json"
hash = "589bda5a17e4b0295415fa042b83c6bd43b6d190a95b5a271712f1cd76f8291e"
[[files]]
file = "config/heracles/quests/homesteading/1BCC72C060356F02.json"
hash = "fff4ac65986079c448b60eb3812ad9b8e153d066d5fb9c59392f79b8b3e8c849"
[[files]]
file = "config/heracles/quests/homesteading/1D22455B9931408B.json"
hash = "646ba82b25016854d3b5af385109efbaffe680edac4afeeac2fdc38824c1b9fd"
[[files]]
file = "config/heracles/quests/homesteading/1E92A6BE31198EF3.json"
hash = "bd9dac0fd1010bd36a8f711b9284995c0fcfe758822c512ee90238b495ed702b"
[[files]]
file = "config/heracles/quests/homesteading/1FADE18B62E069A1.json"
hash = "ee9bc75ed91bdc94cc86da5815d2d9469fe6f73e06918ff414d446f684464781"
[[files]]
file = "config/heracles/quests/homesteading/1FFD2B27BC87EADB.json"
hash = "081ca405997af704d45d97f5812e01bc376c0cdd315bbff7e5963fdbe51b7f01"
[[files]]
file = "config/heracles/quests/homesteading/20E2938DD7365207.json"
hash = "56e9c411b0a5ae1c4da8213863320186625d29fbd4c554b3010898d8701c4940"
[[files]]
file = "config/heracles/quests/homesteading/29358767A696B164.json"
hash = "16bf66a292db59dc928a4c387030a2a83f21461f73fb87f43dbb5ea7a7168fa7"
[[files]]
file = "config/heracles/quests/homesteading/2AEFE77787E113A3.json"
hash = "7253d297a52904c82e9cd08f867a888a21a42888499dc3355f106470fb3ca671"
[[files]]
file = "config/heracles/quests/homesteading/2D74603197C7629C.json"
hash = "b8942e608cc14d0864a769793c2e451ae49f3d7c206a2d659fd52f4588ecb594"
[[files]]
file = "config/heracles/quests/homesteading/2DF95382AC7B7AD4.json"
hash = "14305953a7640c0cd0a804434f3c2c47b959b4e2de57ce4c9fcb1682a4f7b854"
[[files]]
file = "config/heracles/quests/homesteading/2F461D711895F36B.json"
hash = "66a060405ddf81ace2067b8b34eb00aa9d79322daa06f2b676fe4b2f9a6afc3f"
[[files]]
file = "config/heracles/quests/homesteading/322528062359C5A9.json"
hash = "49d5c35e3f98505bcc18af6d6bfd90c6d010583449c6065262c8a329392c6f6c"
[[files]]
file = "config/heracles/quests/homesteading/3347D4D672927CA6.json"
hash = "e1731825c33264030b05bf27e43bd3b98b79587c96e7bd619d765171472d3e62"
[[files]]
file = "config/heracles/quests/homesteading/3811025165802342.json"
hash = "d934683115aacbc7010d4d5a507b94f9bc7233c6081b99acfab518b585b0a9f2"
[[files]]
file = "config/heracles/quests/homesteading/392E005585B652A4.json"
hash = "b80da504fba62302a00b3042fa87b2151b370b6d6088cf834fb2b844c10b707f"
[[files]]
file = "config/heracles/quests/homesteading/3D5694CCE8F191BC.json"
hash = "0afb7d657794f0e9e3afebb95dac562023e7f294ff22e02f45cace9b50cbbce8"
[[files]]
file = "config/heracles/quests/homesteading/413BD03774B3B9D5.json"
hash = "b46f46cbd3a0612bde0e4789b468b3173197c6e852357abbcea0f69e1f8cd877"
[[files]]
file = "config/heracles/quests/homesteading/423E897DEB76653D.json"
hash = "5eaefeeced5325041d61175cc9592ffe036da5126c21e69a19d7675430138d36"
[[files]]
file = "config/heracles/quests/homesteading/428252F5071CF0D0.json"
hash = "8b5f54f842a1bfda0cb91fe2463a8d191c08d0cd51d930b0489ffafc8e02447b"
[[files]]
file = "config/heracles/quests/homesteading/471B71E3199030AC.json"
hash = "ed178c48f7abcdd4209e70367d6c03fc6ae868edc9933a8a499504fd50fedd1c"
[[files]]
file = "config/heracles/quests/homesteading/4E2B415A2E99BCF6.json"
hash = "5153eeed223f5a3200d2a252b008bf970d7824a1a422820d0f2817092a2d8a7e"
[[files]]
file = "config/heracles/quests/homesteading/4E780825E91BA9CA.json"
hash = "10fbbddd2693a92217057a15d8357ab470a2fbc6c4bac982dc7ab8205f49cb2e"
[[files]]
file = "config/heracles/quests/homesteading/4FA802A874FC1A24.json"
hash = "e93224237f871994b68c0326910deaa08acd81c0862cf1f0f75dfe8dd617a336"
[[files]]
file = "config/heracles/quests/homesteading/51AC2E4D1053FC19.json"
hash = "4078fa71a8f5d719751df662ac20649a565f163663b17648cb578e8115da34f2"
[[files]]
file = "config/heracles/quests/homesteading/52E05DC7ED68C824.json"
hash = "5f67a78393041910394ba1a271fb7d54d5e90e16e2c72968a6898d5c4633bf8b"
[[files]]
file = "config/heracles/quests/homesteading/531358BD1C258F99.json"
hash = "40fd2b18841acef82049e0d1c8383f5616aa64a74cc456a12fe2714237426f61"
[[files]]
file = "config/heracles/quests/homesteading/54557BCF50D4E3EA.json"
hash = "d35e4487273c887deb3abdb76c97070ee0ea7aba8205bc2c54fb9ea7848ccfc5"
[[files]]
file = "config/heracles/quests/homesteading/54AA1BD5E8241369.json"
hash = "ca8b3f53b2e0e2111fbc7ab7b597873189ced94495502a4194dba80ee9802639"
[[files]]
file = "config/heracles/quests/homesteading/55783EE248BAC550.json"
hash = "e4628cfb675628ca4eb0c59cfb63c4a847bfb366237e0a47fcd6b8e2bc1d6a6c"
[[files]]
file = "config/heracles/quests/homesteading/56E8B3168203AA6F.json"
hash = "1146085428b253a66c48c650b1d268c48d1e52c15a456025b799d3c8f8cff8f0"
[[files]]
file = "config/heracles/quests/homesteading/56FFE5307AA82DCD.json"
hash = "3118a8cb33d8d2d45d6021c3b212771e8176b0ae386843469339f8a3019975ac"
[[files]]
file = "config/heracles/quests/homesteading/5BF7F408031029E9.json"
hash = "4524e0bbf558e75adf772e71c13ef85bc3e0741c65817db8f0d438702370102c"
[[files]]
file = "config/heracles/quests/homesteading/5C7110BA96ECA231.json"
hash = "323ddc728903028c7a1904cb2952b3174cf1f0b7713050dc4dfa052fc9cce56d"
[[files]]
file = "config/heracles/quests/homesteading/5DE40B33B987E149.json"
hash = "8555100dba598cacd2e7a98db7c7754b5470d986235417bfebdd865ecae724c9"
[[files]]
file = "config/heracles/quests/homesteading/63C534CA1FC2DADE.json"
hash = "27b3e72ebc4c836461846c25b2924b9663eaa7b13f44eda2976a547318ac6970"
[[files]]
file = "config/heracles/quests/homesteading/643F41D93DC1FB81.json"
hash = "5e3deb703ea0ba8104896450617a622a24ed1d886c8cd150071790c66f777482"
[[files]]
file = "config/heracles/quests/homesteading/645EFC73CEB1C918.json"
hash = "5837a6e93f201412704bf6d0e9c2a2b80c0b97c4346fac1947ab4df70ceeef01"
[[files]]
file = "config/heracles/quests/homesteading/64CD806DB1FFD979.json"
hash = "0092b45674054800415034e9d28580342bf0416289281d0e2fbe064bfb681c9a"
[[files]]
file = "config/heracles/quests/homesteading/657AC96A28C41511.json"
hash = "4c86f96aff7c1566e0a962aae33ff34fbc7ed6063c9db04eaed5c62a12d33be4"
[[files]]
file = "config/heracles/quests/homesteading/665ED9CB789FB958.json"
hash = "bcdd2e1049b82fcd1f745b6067feff8e65b0ce46f4cc254c72fb3fb3a69b4461"
[[files]]
file = "config/heracles/quests/homesteading/6688C6D2FFD12067.json"
hash = "8ab39368e97ca48f48661f0373fd10eece0a87ef86fb3fc6f16fdbc3486a8134"
[[files]]
file = "config/heracles/quests/homesteading/68BCEE273A77F4DA.json"
hash = "d940902d4800682d730feaf01039aa9fb3f31f2ef9b5ce3c3b2d675116332f5c"
[[files]]
file = "config/heracles/quests/homesteading/6B1E74EF171BFD5E.json"
hash = "48de3744cbab0272bce99e8a5f2368bac569831ebd115372a31f0a2ced738540"
[[files]]
file = "config/heracles/quests/homesteading/6E20F24C33A627DC.json"
hash = "67d75451431d3ecc9c53ffcbfbf5959814932b4a26941ad161dba5c1f9294d4e"
[[files]]
file = "config/heracles/quests/homesteading/7164FFFB3AFAFEF3.json"
hash = "c12a702a53344abf7f9e8bd786a5a6e5d6e58b595076f8fe281072e0b9db6bca"
[[files]]
file = "config/heracles/quests/homesteading/74001D2726E7133D.json"
hash = "f506f567661ee6d6318c5232f80fde9d52d447a410e6bb37cdacad0c894fb2f5"
[[files]]
file = "config/heracles/quests/homesteading/796366A8D7D8BBF8.json"
hash = "f9ed0f5dbfae837ee000bdf3cb504f11b6a2a88e1098b455c3d152a3445c3824"
[[files]]
file = "config/heracles/quests/homesteading/7AA799B6789ABD71.json"
hash = "6ed7890c6d8faf603df226509b3f506d1081cb23e43787dc91af18afe1c6b9e8"
[[files]]
file = "config/heracles/quests/introduction/00BF3119EB22417C.json"
hash = "a7c87ddfbcb3ba10d465c5f267284b29e52b51545291779746a8ea1b323fad2d"
[[files]]
file = "config/heracles/quests/introduction/1474F51D2832FCD5.json"
hash = "5a7c7cf2a943d51d938feab03b69d9ecc853bb0a5256e9abb502c556eb6565fd"
[[files]]
file = "config/heracles/quests/introduction/15402DCFAC7CC56A.json"
hash = "e8b5f061d818865697891a85456ac01c28eb521eb7f34bf33660dd53600e5e0e"
[[files]]
file = "config/heracles/quests/introduction/227C88C00E509DAD.json"
hash = "28b9eccf8c3d0173a074c6e6b7aa67fac8922062e7d7c928ee11bca279ee894c"
[[files]]
file = "config/heracles/quests/introduction/337730F25EC36332.json"
hash = "bde740080a787113f2d5e50c9321cbea9b3b2a9b44ebf486ae966524c8bee71a"
[[files]]
file = "config/heracles/quests/introduction/438625063C95601F.json"
hash = "3c73e05e5d94ecae1a1d65d2568e1b0649a125ad66e674dc0662f5b3f6394d91"
[[files]]
file = "config/heracles/quests/introduction/7840EB3C8B8048EF.json"
hash = "04880191cd71242157a559128e2cf9551ba4b91a631c7b84d75196fcf9a1d9e7"
[[files]]
file = "config/heracles/quests/introduction/7DCD80F80208292A.json"
hash = "a275fde2f02d454e4ba26bf987c381b625fe93434f5840323436c2b55dfed0cc"
[[files]]
file = "config/heracles/quests/selfdefense/023DDA57ED1603C5.json"
hash = "e6f8b571fdc3202a4f9c6ab685ae8bbf09ad8647739713d14f4179920c34712c"
[[files]]
file = "config/heracles/quests/selfdefense/0B9F6A70B4F88B94.json"
hash = "315d4790d832331171883420cd6a06bb667397f7659acbcde9d446030b505248"
[[files]]
file = "config/heracles/quests/selfdefense/0CB054935E7926CC.json"
hash = "3bb2eac6c8dcc388e0b00e374f344505f97e8562cd8a1a8dc92a10712f53e4bc"
[[files]]
file = "config/heracles/quests/selfdefense/0F4FAE3B1041001F.json"
hash = "3f13a97dc286d8f3e708e148366afbfde81dbfc9611fdb3abb3881bd9fce40dd"
[[files]]
file = "config/heracles/quests/selfdefense/1950317947BD61B0.json"
hash = "e70bbc46cf5ad742f138ea53816260385a65e02721a6bd0bbda47de732c54dcf"
[[files]]
file = "config/heracles/quests/selfdefense/20147B09F8E40DE9.json"
hash = "01f3e3ad09a7a5ae1f198b2d813c1d3df95b8f48a69ded18848d8312f6dc889e"
[[files]]
file = "config/heracles/quests/selfdefense/21738CE4F9A8D8ED.json"
hash = "ea2f261a1af200efa610792f13764ee81981a2dec9a03d3475003ca4776d7c3e"
[[files]]
file = "config/heracles/quests/selfdefense/26CD2014C0B206D0.json"
hash = "9486dd8ac83adff21e24909ddcbd7c3c2e80b894e5a91e42251c62d81cd4b983"
[[files]]
file = "config/heracles/quests/selfdefense/2BA288C7EE0930DB.json"
hash = "183491cfdb0b6607e29a943946b531f162b3d371dacf764c3d56d1567dbbb9d4"
[[files]]
file = "config/heracles/quests/selfdefense/2D49941B8AEF7256.json"
hash = "9b905e5857d5e43aa2a888c313967d9aaed6db0f7ba9014076a577350a9e30ab"
[[files]]
file = "config/heracles/quests/selfdefense/2F6EDECBF7606385.json"
hash = "23f503f421fbee44a8ecfc9affd1811a6ffea945acfbff470f1401ce7427f1aa"
[[files]]
file = "config/heracles/quests/selfdefense/30ED364C540672C8.json"
hash = "01a80fe1fa76f565ba9bd8b6579f64064a8685ac52566b12de209f894dac5da4"
[[files]]
file = "config/heracles/quests/selfdefense/349E511AA603A620.json"
hash = "44f7f30eb9dcb196a87d7b8446c80f0f57fa0a6a08f60d0e4da9a3050ebce322"
[[files]]
file = "config/heracles/quests/selfdefense/35AED8D09C7CF638.json"
hash = "40228da6281d4323c3f5f71c0be99e10ecf3e694053b659258bdcb9d4bfb897c"
[[files]]
file = "config/heracles/quests/selfdefense/3BBB8E131ECD4FF5.json"
hash = "50242f61d6bb2ae5b55173eb80a0161545ae7694e5d510545de5a42296407ad9"
[[files]]
file = "config/heracles/quests/selfdefense/3C5FCE8C61F8A84B.json"
hash = "7dcd1cd7e592641df9accec6bc5902ca5d86c91a3f4bfeeff3a94eb20a6f6ae9"
[[files]]
file = "config/heracles/quests/selfdefense/3CF0AC2D4BCAC32A.json"
hash = "651ecab0dcfdfe738fbe675f7f75a8f2121b032ec0f638248c73696d9ccd4b7f"
[[files]]
file = "config/heracles/quests/selfdefense/416A7E1DCFFE12F4.json"
hash = "17233af967c059ce9dc2545ed0218bd55981440ef7954bd434a2d726dc3ad28d"
[[files]]
file = "config/heracles/quests/selfdefense/42A9FC81752B5A9F.json"
hash = "e9b1a987f0ead0e4838d45343a548f827ced3093254983899e61fb4ba0814266"
[[files]]
file = "config/heracles/quests/selfdefense/42E807C7DFC19EBF.json"
hash = "018dc5a552d27d7f046471841387867517ed0324ce1cce5da69f1f5e8a7a1e1a"
[[files]]
file = "config/heracles/quests/selfdefense/479E0E3F26F179CE.json"
hash = "d147e580626750643099d0e086a5f29afab87da079ea67a78892fa412ccd108f"
[[files]]
file = "config/heracles/quests/selfdefense/4FC61BF1949C8BE9.json"
hash = "ebd4d144c59d3352303eac3de9c752294d301cc025e20cfcab8dd54fd1c4d1d3"
[[files]]
file = "config/heracles/quests/selfdefense/4FE0BE6BF0009C4E.json"
hash = "cb8505168828db7efe871f769aed24c015f2c9a5969e3c6c00947306012b1850"
[[files]]
file = "config/heracles/quests/selfdefense/52AC9ECD81435809.json"
hash = "3269ef714a50abb171f7f528437c07dec6096339c12dc1c17081b128f6da1c33"
[[files]]
file = "config/heracles/quests/selfdefense/5CA39231B56AE5CB.json"
hash = "725a2c8df99f57d34dcf4dd9b9fce29f765afb9370dc0cf585074dfeef19072c"
[[files]]
file = "config/heracles/quests/selfdefense/5CE64305EE23917A.json"
hash = "0cd9b6d683685e1006284b0116610546b774ab08b950dad4ab77e19f9b2a036b"
[[files]]
file = "config/heracles/quests/selfdefense/5E4CDD8923AF498D.json"
hash = "fdcc03dd749854886a28f4ac2e386e29ac1c32ee51d7179975dbd7b1c5a7b90f"
[[files]]
file = "config/heracles/quests/selfdefense/6102768050D4F3E5.json"
hash = "b40fd8031dc38c4f7017a86ae76e9573550949aa7bf8b7474be4be8adc737353"
[[files]]
file = "config/heracles/quests/selfdefense/632CF29BB6751771.json"
hash = "b9a0d91960eb350582a4e2c3bcd899de0149bd4a28922472394cf6c9d0cdd1a0"
[[files]]
file = "config/heracles/quests/selfdefense/68C1E9C446D8A069.json"
hash = "70fddb19675274832a3ce6407739eaffeddeac0633d39d1230fb5e9b2fca8306"
[[files]]
file = "config/heracles/quests/selfdefense/694FD9F0D62B459F.json"
hash = "d75b70642f1e94e954aebbbcf6b614a3a9dd2a96a52cee3d0766991c0bbbe098"
[[files]]
file = "config/heracles/quests/selfdefense/6F32C33B97BE205B.json"
hash = "cdb81f9bfc88ed4f7b202dc315697689dde0ad976688aa99dce54c2d9b49a48e"
[[files]]
file = "config/heracles/quests/selfdefense/6F439133A6E64D41.json"
hash = "daa201f56ddf3c1e2ea22c149b9aca96c482f26d7f6dfc2a17130311e9927f13"
[[files]]
file = "config/heracles/quests/selfdefense/710860ECFC84C122.json"
hash = "f829e5967fac3e0d4b69cf01bbd60de15b23ff5073aa01cc653c736688a7da71"
[[files]]
file = "config/heracles/quests/selfdefense/72CC6869A3793E22.json"
hash = "01f402e7f1b9588ec67d807f873636c5361b3fccd73b2b5fe190dd2853ddc6f4"
[[files]]
file = "config/heracles/quests/selfdefense/745E392CA5AEA00D.json"
hash = "df6fe7ad37e6f7e8d677d3c955db881f024988b1cd0859ee86d7346bc7d57c4f"
[[files]]
file = "config/heracles/quests/selfdefense/7BA5B355C7DFF7E3.json"
hash = "3bc89f59f2d437da4e5d6c6109222c6f463909565d31bac1539f0fee52351c50"
[[files]]
file = "config/heracles/quests/thebasics/06B5F4D5D8A0D202.json"
hash = "723f34d6802dc0ba9d72f2928fd39b8e55f527401845db77eb73eea4a20b0c56"
[[files]]
file = "config/heracles/quests/thebasics/0C2C9057CE459E63.json"
hash = "41d6ec9cd3cadcd9ea40a84ac720d79207c1a7888e4705eb3578f11947abb4d6"
[[files]]
file = "config/heracles/quests/thebasics/274780E9080AF463.json"
hash = "44886933549afaf75d68cfa7682d06445fc2120c8884b6bba7fa4bc110439fc5"
[[files]]
file = "config/heracles/quests/thebasics/2803B3AF9D4E64A3.json"
hash = "e34291ee5d94b1da6866896cf5a99eb30c28ecec8b8dbcd36a19fb9427a2bb14"
[[files]]
file = "config/heracles/quests/thebasics/28AFD82AD9C0B721.json"
hash = "28d303d9ec691bf064e942bf86ed7091c50e0a1aafc8341ec827c3520f41dbbc"
[[files]]
file = "config/heracles/quests/thebasics/3079DAC3AB1B0AD9.json"
hash = "ed19afb4b7bfdf8bb8396123ae7da3431fc109371b6ee31161698e68aaf869c0"
[[files]]
file = "config/heracles/quests/thebasics/324EABD3C7110E53.json"
hash = "3536fe7c83dfcc0895ac5fc31fefa44cd5ce7fb3120f830c3949174360714702"
[[files]]
file = "config/heracles/quests/thebasics/345A5D446CD0E0D2.json"
hash = "20fb1a145a2142a38fb4db4f4740f15f3165ea3927087806e77cd3a41390bb03"
[[files]]
file = "config/heracles/quests/thebasics/358409FE5C2E19E6.json"
hash = "962312742390b134f83d04cac78511ace7e110ef914b5496ed319627ffbc6304"
[[files]]
file = "config/heracles/quests/thebasics/4048B08BA7BA39BE.json"
hash = "9e4250ccb5d736e9ecf1d212522d094dad7639c838838e89ec9ae23cb0e8f90f"
[[files]]
file = "config/heracles/quests/thebasics/41C9341CA261E52B.json"
hash = "a9dca30963a06fdfbbfe8d1ef2f7d65a2b12cd6808e8e3362024ba53c8da7038"
[[files]]
file = "config/heracles/quests/thebasics/4631772288F2177D.json"
hash = "a100e8f679c15f4f04e3825a5f4ee5583f0bc526a5617c772b2116c170a8c9ad"
[[files]]
file = "config/heracles/quests/thebasics/4FF54D00F9D67A59.json"
hash = "f2a67f9e3039b04c0dc5fc6b1c2a8dcde2199d293137f27dc90f3116c3e32ae8"
[[files]]
file = "config/heracles/quests/thebasics/53AFBD6DDF572701.json"
hash = "2771881403dfd8e94b89e96b30142195de1cdf5f59b51347a58af3d2756d94df"
[[files]]
file = "config/heracles/quests/thebasics/548555BB1E839006.json"
hash = "dccb3d9c5d0c8a91013738c81baf3ec1c5ee489b693a1cd70423307211a4653a"
[[files]]
file = "config/heracles/quests/thebasics/55AB6125B20E666B.json"
hash = "ca509dd81dc147ea85afbfce1acd7102b9dabcdcf1756597bf4fb2c61dde3662"
[[files]]
file = "config/heracles/quests/thebasics/58FCE9FA57CB5D39.json"
hash = "d851a6e6f5a4aa70a0c50154bf2da40ea112a50bf5a6801b92ec4bacd4831772"
[[files]]
file = "config/heracles/quests/thebasics/594D5FA160E7C304.json"
hash = "8cd44791f1dfb7bc3450569e155218a77d4ca4927a804103bdc4135383f73b46"
[[files]]
file = "config/heracles/quests/thebasics/5DA11E4FA4C52495.json"
hash = "30e64a444969205cc0dc8a4ea257d678dac8f490d518f9d3a90a0cf0a791e27a"
[[files]]
file = "config/heracles/quests/thebasics/6CDF6FE603499CB1.json"
hash = "93eee07b863a6db2665bde7ee36e0e5789488eebe5da65b59b03dcc5ebe44042"
[[files]]
file = "config/heracles/quests/thebasics/71B31B0EAE8DCD3D.json"
hash = "5d88fc5b9b7a3e41f6ea83a6c9615b8b609b988898c606fd8fb38e4b1f0e3180"
[[files]]
file = "config/heracles/quests/thebasics/7AF853FC528DE6C6.json"
hash = "783da5c69f52e587dd45bfc3f46afd0c2370fd393b307190926faafc64d68582"
[[files]]
file = "config/heracles/quests/thebasics/7D7CE9AD22CE6A29.json"
hash = "8f5d1e07fd620a27fcd6c93e8999bf6ed3a7f0948836720c2b0bb25172e3b5e6"
[[files]]
file = "config/heracles/tutorial.html"
hash = "ae0a2441985818e428f057c6b9d8c7ae8ce09d627a447d676f15732ae713f32d"
[[files]]
file = "config/idwtialsimmoedm.json"
hash = "49f669e1876f9293f4a34aed88102abed02ba6180f66f1d0ba0d1e94e711dcce"
[[files]]
file = "config/inspecio.json"
hash = "4435ab1d6a324ad59d5357cd287982c03c8e618db506f50b48d3e7e59037462c"
[[files]]
file = "config/inventory_tabs.toml"
hash = "09e3a84e69838f0f9b3ef7a0ccaa1f80a5d0fd46f28ecd30a6488ecc01d6f388"
[[files]]
file = "config/inventorysorter/config.json5"
hash = "b64fa7ee465d964b662f291dad78a8c91a252854581ae2584f23ad8bdc010970"
[[files]]
file = "config/iris.properties"
hash = "d82261cbaaecc17f96f8c94e7f3e0f08130f7a37112d0f0994fb08fe11abf5e3"
[[files]]
file = "config/isxander-main-menu-credits.json"
hash = "9ede5f3c262d74cf2ec694d8c228f1fd8f3b363c13ba5695ea7eea2db6b63b0b"
[[files]]
file = "config/modmenu.json"
hash = "0b47d0b6e65c4888517ca89941e8c46c5eba12bbb2fed511fc7ca716d0819329"
[[files]]
file = "config/mousewheelie.hjson"
hash = "342520c2852bfc107b0325bdd64339f396ba1a3d35fd0a6a5c828fc50ba6de82"
[[files]]
file = "config/origins_server.json"
hash = "d120f58cc7533b2814cfe9398f34af87ea86f8d925cbceaaa0befed05bfd70ce"
[[files]]
file = "config/pettable.json"
hash = "17b28d004f9b3d3fd9dbffb2a22e2eaef072c0dbdffa1f89ecbb59082180fb0a"
[[files]]
file = "config/presencefootsteps/updater.json"
hash = "1e7c61df09c105e1eeca8cf3dcbdfeb976700e9904bcb3983fc7791adb7fad2e"
[[files]]
file = "config/presencefootsteps/userconfig.json"
hash = "4d6a751bc4e3a71c33cdc37b587922d5ae283ce92e8e4f8f0ae763178a08b5b1"
[[files]]
file = "config/projectsavethepets/projectsavethepets.json"
hash = "a3db65d064f25b4f2899eb733d168231d8bc605e80c18738a3a0f333969defb5"
[[files]]
file = "config/quilt_loading_screen.json"
hash = "ddb4b78652475595b3138cf26f0f82f1da495b614911f9971ba883960adcf8ba"
[[files]]
file = "config/sidebar_buttons.json"
hash = "69261db307b3287fa0aad5f8cf7e53bd4f7c2c4322bc708c95d9df6447afd95c"
[[files]]
file = "config/simplefog.json"
hash = "cb432d624e454ece8f5bec48b3bd8fd544ba69a9ff7db9315b195d49a8206cc6"
[[files]]
file = "config/snowrealmagic-client.toml"
hash = "cc0b4aaa0a95dd42ee25dcb42ac0f370e76554b9077161635dea792aaa287883"
[[files]]
file = "config/snowrealmagic-common.toml"
hash = "3799ac9d4b26b6db24f2409f19dbeb0b77ce671f12d104231ce7d8e3941c2c16"
[[files]]
file = "config/sodium-extra-options.json"
hash = "2c642535700062a568bae2a8dedc8de4da6666e78d05e101fafd6eecea845db7"
[[files]]
file = "config/sodium-options.json"
hash = "e467b61963b8f8d78efd9971c266473100e29e084a22a604c4e5296608d1a1fb"
[[files]]
file = "config/styled-chat.json"
hash = "bed87a61fa40553e72fba632d269f452d62f3c03c02a296e78bd948bb5c78e11"
[[files]]
file = "config/styled-nicknames.json"
hash = "97b723f4cc379eb4b17ade4bf756029fb14a4af0d6ac9b4a2b0f396b8427630f"
[[files]]
file = "config/styled_chat_emoji.json"
hash = "fed5a10b86cc0a562cb3c57777e2b6189dd9ddd13ab19a810fb7d78dd57f2bad"
[[files]]
file = "config/styledplayerlist/config.json"
hash = "bdf4cc878bdb267d4ddd015684b057839be65fab5a2d4c3a6b0d6ee96f6fe3b4"
[[files]]
file = "config/styledplayerlist/styles/default.json"
hash = "9ae03c8ae2d77dac24eed22ae517e82576aa03fdeb230976b3bfd8f297a7d768"
[[files]]
file = "config/switchy_resource_packs/config.toml"
hash = "cde083d92431a8f400067e09d9c16998a54a7d69d8cd70fa21476ccf15e7a3ed"
[[files]]
file = "config/waila/waila.json"
hash = "13dd715493f0fb3754583f6a97fcb8a7df61ccef983df3a664931be3d1e9c490"
[[files]]
file = "config/waila/waila_plugins.json"
hash = "02b8e1ce0f9cb835348441b1e2d37896f117c4943e5fc01ec7f8472d086875e3"
[[files]]
file = "config/yigd.json"
hash = "292389620810337a8138812c9e77136311ea806769ac3778e9a3e91f6dc73ef4"
[[files]]
file = "credits.txt"
hash = "7c68180a8e6416c3d5cdd8c00199c23123df202f4f401fca3d8d6518c4d96819"
[[files]]
file = "mods/Apoli-1.20.1-2.9.0+bc.23.3.jar"
hash = "6a2ea2e7881b556aa4918eaf7e7a8ec456b9422b388cfce87888b9bd319f1c46"
[[files]]
file = "mods/DyeableFishingLines-1.0.1.jar"
hash = "ddefc636d2494006640d7a0164a986172b00285da20e82b0e265f31ead045091"
[[files]]
file = "mods/Origins-1.20.1-1.10.0.jar"
hash = "01675e2b3732782f5bfbc08a211f739c8123b269bb9f40d36ac56d9fbc90ae3d"
[[files]]
file = "mods/altorigingui.pw.toml"
hash = "9c5d0f1adf081043b74cd306ba4dee43182c837c06fd35619cf676ee838e44fd"
metafile = true
[[files]]
file = "mods/ambient-environment.pw.toml"
hash = "e57c4c652b887c25b8f5e8035b1fb172a5478076f1bba48ad0fb8d7d6d0b2b3f"
metafile = true
[[files]]
file = "mods/animatica.pw.toml"
hash = "f0463f1b50e2c2ab3c726b14236b22e07ce9be4896528ede9d51486a212a5c07"
metafile = true
[[files]]
file = "mods/apathy.pw.toml"
hash = "125278fbba2150649dee164b0435b3f4a24ecf9d362dbdccdafbdf3e31661e4e"
metafile = true
[[files]]
file = "mods/appleskin.pw.toml"
hash = "e3dfb2478e6bb096667d4ec89b0ddfef627747939373bdefee02f358d6e3dee1"
metafile = true
[[files]]
file = "mods/architectury-api.pw.toml"
hash = "0cbcd58c49decc0ecbccd330fcc8326e3b8769e22e1740e229f09541acf3df7f"
metafile = true
[[files]]
file = "mods/badpackets.pw.toml"
hash = "e5a68e0e0d90aac1d965ab7cab5858c474e875be9012a7c8a3adf96420faa726"
metafile = true
[[files]]
file = "mods/balm.pw.toml"
hash = "ab6a6dc2a3fa157464f0294d8b5d3e6b8b882c9b520c7f7e0ca8329094ed1dfa"
metafile = true
[[files]]
file = "mods/better-end-sky.pw.toml"
hash = "9d5eb5ff51dfc7123dfea318a027ec5fdf96ac9a29451367ce36cfcb88833679"
metafile = true
[[files]]
file = "mods/biome-sniffer.pw.toml"
hash = "dbabd69c1d885d2102ae6c279e2b2d12640efa93a421249a78a839cdfc7545e3"
metafile = true
[[files]]
file = "mods/boring-default-game-rules.pw.toml"
hash = "e7892e2baf8ede8bae05e040a0a41db72f9abd891b74143484ef94fc8351006e"
metafile = true
[[files]]
file = "mods/cardinalboats.pw.toml"
hash = "19858e3dc496697b534659e7c2b1ca54b1be4d8d591652fab2b5988ef489c0f5"
metafile = true
[[files]]
file = "mods/carpet-extra.pw.toml"
hash = "787ec3dcce9e24a4e41e242c42b553926c607fa2cbabc9b5019e5653d7e249ac"
metafile = true
[[files]]
file = "mods/carpet-fixes.pw.toml"
hash = "7f71f5e7a7948fc1f08a253c13a0f6f6e2a03a691b1b6515b4442458175bd723"
metafile = true
[[files]]
file = "mods/carpet.pw.toml"
hash = "095a93b4f0b4e2b8fadf8359bc145cbdd83be3c5bf23432e9a5f4e54d60de5b4"
metafile = true