blob: 6966e21804ddd64ce929f96dc3ae7b363e41f79e (
plain)
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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
3002
3003
3004
3005
3006
3007
3008
3009
3010
3011
3012
3013
3014
3015
3016
3017
3018
3019
3020
3021
3022
3023
3024
3025
3026
3027
3028
3029
3030
3031
3032
3033
3034
3035
3036
3037
3038
3039
3040
3041
3042
3043
3044
3045
3046
3047
3048
3049
3050
3051
3052
3053
3054
3055
3056
3057
3058
3059
3060
3061
3062
3063
3064
3065
3066
3067
3068
3069
3070
3071
3072
3073
3074
3075
3076
3077
3078
3079
3080
3081
3082
3083
3084
3085
3086
3087
3088
3089
3090
3091
3092
3093
3094
3095
3096
3097
3098
3099
3100
3101
3102
3103
3104
3105
3106
3107
3108
3109
3110
3111
3112
3113
3114
3115
3116
3117
3118
3119
3120
3121
3122
3123
3124
3125
3126
3127
3128
3129
3130
3131
3132
3133
3134
3135
3136
3137
3138
3139
3140
3141
3142
3143
3144
3145
3146
3147
3148
3149
3150
3151
3152
3153
3154
3155
3156
3157
3158
3159
3160
3161
3162
3163
3164
3165
3166
3167
3168
3169
3170
3171
3172
3173
3174
3175
3176
3177
3178
3179
3180
3181
3182
3183
3184
3185
3186
3187
3188
3189
3190
3191
3192
3193
3194
3195
3196
3197
3198
3199
3200
3201
3202
3203
3204
3205
3206
3207
3208
3209
3210
3211
3212
3213
3214
3215
3216
3217
3218
3219
3220
3221
3222
3223
3224
3225
3226
3227
3228
3229
3230
3231
3232
3233
3234
3235
3236
3237
3238
3239
3240
3241
3242
3243
3244
3245
3246
3247
3248
3249
3250
3251
3252
3253
3254
3255
3256
3257
3258
3259
3260
3261
3262
3263
3264
3265
3266
3267
3268
3269
3270
3271
3272
3273
3274
3275
3276
3277
3278
3279
3280
3281
3282
3283
3284
3285
3286
3287
3288
3289
3290
3291
3292
3293
3294
3295
3296
3297
3298
3299
3300
3301
3302
3303
3304
3305
3306
3307
3308
3309
3310
3311
3312
3313
3314
3315
3316
3317
3318
3319
3320
3321
3322
3323
3324
3325
3326
3327
3328
3329
3330
3331
3332
3333
3334
3335
3336
3337
3338
3339
3340
3341
3342
3343
3344
3345
3346
3347
3348
3349
3350
3351
3352
3353
3354
3355
3356
3357
3358
3359
3360
3361
3362
3363
3364
3365
3366
3367
3368
3369
3370
3371
3372
3373
3374
3375
3376
3377
3378
3379
3380
3381
3382
3383
3384
3385
3386
3387
3388
3389
3390
3391
3392
3393
3394
3395
3396
3397
3398
3399
3400
3401
3402
3403
3404
3405
3406
3407
3408
3409
3410
3411
3412
3413
3414
3415
3416
3417
3418
3419
3420
3421
3422
3423
3424
3425
3426
3427
3428
3429
3430
3431
3432
3433
3434
3435
3436
3437
3438
3439
3440
3441
3442
3443
3444
3445
3446
3447
3448
3449
3450
3451
3452
3453
3454
3455
3456
3457
3458
3459
3460
3461
3462
3463
3464
3465
3466
3467
3468
3469
3470
3471
3472
3473
3474
3475
3476
3477
3478
3479
3480
3481
3482
3483
3484
3485
3486
3487
3488
3489
3490
3491
3492
3493
3494
3495
3496
3497
3498
3499
3500
3501
3502
3503
3504
3505
3506
3507
3508
3509
3510
3511
3512
3513
3514
3515
3516
3517
3518
3519
3520
3521
3522
3523
3524
3525
3526
3527
3528
3529
3530
3531
3532
3533
3534
3535
3536
3537
3538
3539
3540
3541
3542
3543
3544
3545
3546
3547
3548
3549
3550
3551
3552
3553
3554
3555
3556
3557
3558
3559
3560
3561
3562
3563
3564
3565
3566
3567
3568
3569
3570
3571
3572
3573
3574
3575
3576
3577
3578
3579
3580
3581
3582
3583
3584
3585
3586
3587
3588
3589
3590
3591
3592
3593
3594
3595
3596
3597
3598
3599
3600
3601
3602
3603
3604
3605
3606
3607
3608
3609
3610
3611
3612
3613
3614
3615
3616
3617
3618
3619
3620
3621
3622
3623
3624
3625
3626
3627
3628
3629
3630
3631
3632
3633
3634
3635
3636
3637
3638
3639
3640
3641
3642
3643
3644
3645
3646
3647
3648
3649
3650
3651
3652
3653
3654
3655
3656
3657
3658
3659
3660
3661
3662
3663
3664
3665
3666
3667
3668
3669
3670
3671
3672
3673
3674
3675
3676
3677
3678
3679
3680
3681
3682
3683
3684
3685
3686
3687
3688
3689
3690
3691
3692
3693
3694
3695
3696
3697
3698
3699
3700
3701
3702
3703
3704
3705
3706
3707
3708
3709
3710
3711
3712
3713
3714
3715
3716
3717
3718
3719
3720
3721
3722
3723
3724
3725
3726
3727
3728
3729
3730
3731
3732
3733
3734
3735
3736
3737
3738
3739
3740
3741
3742
3743
3744
3745
3746
3747
3748
3749
3750
3751
3752
3753
3754
3755
3756
3757
3758
3759
3760
3761
3762
3763
3764
3765
3766
3767
3768
3769
3770
3771
3772
3773
3774
3775
3776
3777
3778
3779
3780
3781
3782
3783
3784
3785
3786
3787
3788
3789
3790
3791
3792
3793
3794
3795
3796
3797
3798
3799
3800
3801
3802
3803
3804
3805
3806
3807
3808
3809
3810
3811
3812
3813
3814
3815
3816
3817
3818
3819
3820
3821
3822
3823
3824
3825
3826
3827
3828
3829
3830
3831
3832
3833
3834
3835
3836
3837
3838
3839
3840
3841
3842
3843
3844
3845
3846
3847
3848
3849
3850
3851
3852
3853
3854
3855
3856
3857
3858
3859
3860
3861
3862
3863
3864
3865
3866
3867
3868
3869
3870
3871
3872
3873
3874
3875
3876
3877
3878
3879
3880
3881
3882
3883
3884
3885
3886
3887
3888
3889
3890
3891
3892
3893
3894
3895
3896
3897
3898
3899
3900
3901
3902
3903
3904
3905
3906
3907
3908
3909
3910
3911
3912
3913
3914
3915
3916
3917
3918
3919
3920
3921
3922
3923
3924
3925
3926
3927
3928
3929
3930
3931
3932
3933
3934
3935
3936
3937
3938
3939
3940
3941
3942
3943
3944
3945
3946
3947
3948
3949
3950
3951
3952
3953
3954
3955
3956
3957
3958
3959
3960
3961
3962
3963
3964
3965
3966
3967
3968
3969
3970
3971
3972
3973
3974
3975
3976
3977
3978
3979
3980
3981
3982
3983
3984
3985
3986
3987
3988
3989
3990
3991
3992
3993
3994
3995
3996
3997
3998
3999
4000
4001
4002
4003
4004
4005
4006
4007
4008
4009
4010
4011
4012
4013
4014
4015
4016
4017
4018
4019
4020
4021
4022
4023
4024
4025
4026
4027
4028
4029
4030
4031
4032
4033
4034
4035
4036
4037
4038
4039
4040
4041
4042
4043
4044
4045
4046
4047
4048
4049
4050
4051
4052
4053
4054
4055
4056
4057
4058
4059
4060
4061
4062
4063
4064
4065
4066
4067
4068
4069
4070
4071
4072
4073
4074
4075
4076
4077
4078
4079
4080
4081
4082
4083
4084
4085
4086
4087
4088
4089
4090
4091
4092
4093
4094
4095
4096
4097
4098
4099
4100
4101
4102
4103
4104
4105
4106
4107
4108
4109
4110
4111
4112
4113
4114
4115
4116
4117
4118
4119
4120
4121
4122
4123
4124
4125
4126
4127
4128
4129
4130
4131
4132
4133
4134
4135
4136
4137
4138
4139
4140
4141
4142
4143
4144
4145
4146
4147
4148
4149
4150
4151
4152
4153
4154
4155
4156
4157
4158
4159
4160
4161
4162
4163
4164
4165
4166
4167
4168
4169
4170
4171
4172
4173
4174
4175
4176
4177
4178
4179
4180
4181
4182
4183
4184
4185
4186
4187
4188
4189
4190
4191
4192
4193
4194
4195
4196
4197
4198
4199
4200
4201
4202
4203
4204
4205
4206
4207
4208
4209
4210
4211
4212
4213
4214
4215
4216
4217
4218
4219
4220
4221
4222
4223
4224
4225
4226
4227
4228
4229
4230
4231
4232
4233
4234
4235
4236
4237
4238
4239
4240
4241
4242
4243
4244
4245
4246
4247
4248
4249
4250
4251
4252
4253
4254
4255
4256
4257
4258
4259
4260
4261
4262
4263
4264
4265
4266
4267
4268
4269
4270
4271
4272
4273
4274
4275
4276
4277
4278
4279
4280
4281
4282
4283
4284
4285
4286
4287
4288
4289
4290
4291
4292
4293
4294
4295
4296
4297
4298
4299
4300
4301
4302
4303
4304
4305
4306
4307
4308
4309
4310
4311
4312
4313
4314
4315
4316
4317
4318
4319
4320
4321
4322
4323
4324
4325
4326
4327
4328
4329
4330
4331
4332
4333
4334
4335
4336
4337
4338
4339
4340
4341
4342
4343
4344
4345
4346
4347
4348
4349
4350
4351
4352
4353
4354
4355
4356
4357
4358
4359
4360
4361
4362
4363
4364
4365
4366
4367
4368
4369
4370
4371
4372
4373
4374
4375
4376
4377
4378
4379
4380
4381
4382
4383
4384
4385
4386
4387
4388
4389
4390
4391
4392
4393
4394
4395
4396
4397
4398
4399
4400
4401
4402
4403
4404
4405
4406
4407
4408
4409
4410
4411
4412
4413
4414
4415
4416
4417
4418
4419
4420
4421
4422
4423
4424
4425
4426
4427
4428
4429
4430
4431
4432
4433
4434
4435
4436
4437
4438
4439
4440
4441
4442
4443
4444
4445
4446
4447
4448
4449
4450
4451
4452
4453
4454
4455
4456
4457
4458
4459
4460
4461
4462
4463
4464
4465
4466
4467
4468
4469
4470
4471
4472
4473
4474
4475
4476
4477
4478
4479
4480
4481
4482
4483
4484
4485
4486
4487
4488
4489
4490
4491
4492
4493
4494
4495
4496
4497
4498
4499
4500
4501
4502
4503
4504
4505
4506
4507
4508
4509
4510
4511
4512
4513
4514
4515
4516
4517
4518
4519
4520
4521
4522
4523
4524
4525
4526
4527
4528
4529
4530
4531
4532
4533
4534
4535
4536
4537
4538
4539
4540
4541
4542
4543
4544
4545
4546
4547
4548
4549
4550
4551
4552
4553
4554
4555
4556
4557
4558
4559
4560
4561
4562
4563
4564
4565
4566
4567
4568
4569
4570
4571
4572
4573
4574
4575
4576
4577
4578
4579
4580
4581
4582
4583
4584
4585
4586
4587
4588
4589
4590
4591
4592
4593
4594
4595
4596
4597
4598
4599
4600
4601
4602
4603
4604
4605
4606
4607
4608
4609
4610
4611
4612
4613
4614
4615
4616
4617
4618
4619
4620
4621
4622
4623
4624
4625
4626
4627
4628
4629
4630
4631
4632
4633
4634
4635
4636
4637
4638
4639
4640
4641
4642
4643
4644
4645
4646
4647
4648
4649
4650
4651
4652
4653
4654
4655
4656
4657
4658
4659
4660
4661
4662
4663
4664
4665
4666
4667
4668
4669
4670
4671
|
name: framework
object_base: orig/Shield
object: RframeworkF.alf
hash: 8f6c5d964bd9bc18d92d2bdde6a85362cfd01196
symbols: config/Shield/symbols.txt
splits: config/Shield/splits.txt
# map: orig/Shield/fixed_maps/RframeworkF.map
mw_comment_version: 14
write_asm: true
ldscript_template: config/Shield/ldscript.tpl
# block_relocations:
# - source: .sdata:0x8073f3f4
# add_relocations:
# - source: .sdata:0x8073f3f4
# type: abs
# target: buffer__14mDoMtx_stack_c
# addend: 0x300
block_relocations:
- source: .text:0x803f56fc
- source: .text:0x803f5764
modules:
- object: files/RELS.arc:rels/mmem/f_pc_profile_lst.rel
hash: 6fde21e7ca31044cd9f5a94b922ca44535328134
symbols: config/Shield/rels/f_pc_profile_lst/symbols.txt
splits: config/Shield/rels/f_pc_profile_lst/splits.txt
# map: orig/Shield/fixed_maps/f_pc_profile_lst.map
- object: files/RELS.arc:rels/mmem/d_a_andsw.rel
hash: a3e7e2cf1da56ff662b7fb070568c7549f1086ae
symbols: config/Shield/rels/d_a_andsw/symbols.txt
splits: config/Shield/rels/d_a_andsw/splits.txt
# map: orig/Shield/fixed_maps/d_a_andsw.map
- object: files/RELS.arc:rels/mmem/d_a_bg.rel
hash: d5d0926c168c1ae6ea74faabf56b7110770cdbf3
symbols: config/Shield/rels/d_a_bg/symbols.txt
splits: config/Shield/rels/d_a_bg/splits.txt
# map: orig/Shield/fixed_maps/d_a_bg.map
- object: files/RELS.arc:rels/mmem/d_a_bg_obj.rel
hash: 1c286e4997ecda22728205d3272782c6e5f3d272
symbols: config/Shield/rels/d_a_bg_obj/symbols.txt
splits: config/Shield/rels/d_a_bg_obj/splits.txt
# map: orig/Shield/fixed_maps/d_a_bg_obj.map
- object: files/RELS.arc:rels/mmem/d_a_dmidna.rel
hash: b1710f54d90bca989978bd9c7d75861c6c85c47d
symbols: config/Shield/rels/d_a_dmidna/symbols.txt
splits: config/Shield/rels/d_a_dmidna/splits.txt
# map: orig/Shield/fixed_maps/d_a_dmidna.map
- object: files/RELS.arc:rels/mmem/d_a_door_dbdoor00.rel
hash: cdbf39e9197da6269901ff43676a822245072813
symbols: config/Shield/rels/d_a_door_dbdoor00/symbols.txt
splits: config/Shield/rels/d_a_door_dbdoor00/splits.txt
# map: orig/Shield/fixed_maps/d_a_door_dbdoor00.map
- object: files/RELS.arc:rels/mmem/d_a_door_knob00.rel
hash: 468d5b2c0824f0cfcfdee1f7bc9e1c7707d82039
symbols: config/Shield/rels/d_a_door_knob00/symbols.txt
splits: config/Shield/rels/d_a_door_knob00/splits.txt
# map: orig/Shield/fixed_maps/d_a_door_knob00.map
- object: files/RELS.arc:rels/mmem/d_a_door_shutter.rel
hash: d4c8ddb6f8c5b3bce07f1c2675ec94c4e24ba2ec
symbols: config/Shield/rels/d_a_door_shutter/symbols.txt
splits: config/Shield/rels/d_a_door_shutter/splits.txt
# map: orig/Shield/fixed_maps/d_a_door_shutter.map
- object: files/RELS.arc:rels/mmem/d_a_door_spiral.rel
hash: 47791d276aad634c3e82659de9d39db107cf7ed8
symbols: config/Shield/rels/d_a_door_spiral/symbols.txt
splits: config/Shield/rels/d_a_door_spiral/splits.txt
# map: orig/Shield/fixed_maps/d_a_door_spiral.map
- object: files/RELS.arc:rels/mmem/d_a_dshutter.rel
hash: cb5b8d801fb5ec0f2687ab8f5510078d0822abdc
symbols: config/Shield/rels/d_a_dshutter/symbols.txt
splits: config/Shield/rels/d_a_dshutter/splits.txt
# map: orig/Shield/fixed_maps/d_a_dshutter.map
- object: files/RELS.arc:rels/mmem/d_a_ep.rel
hash: c594d40de21d0c2c6bcefc2d96a7f840ed85369d
symbols: config/Shield/rels/d_a_ep/symbols.txt
splits: config/Shield/rels/d_a_ep/splits.txt
# map: orig/Shield/fixed_maps/d_a_ep.map
- object: files/RELS.arc:rels/mmem/d_a_hitobj.rel
hash: 873baf7ef5c5bb737775423b596f97b3b11081d4
symbols: config/Shield/rels/d_a_hitobj/symbols.txt
splits: config/Shield/rels/d_a_hitobj/splits.txt
# map: orig/Shield/fixed_maps/d_a_hitobj.map
- object: files/RELS.arc:rels/mmem/d_a_kytag00.rel
hash: 1b0066675561f951dedb5d8c68365491bb3b9deb
symbols: config/Shield/rels/d_a_kytag00/symbols.txt
splits: config/Shield/rels/d_a_kytag00/splits.txt
# map: orig/Shield/fixed_maps/d_a_kytag00.map
- object: files/RELS.arc:rels/mmem/d_a_kytag04.rel
hash: 2108bb03940599832ca8243fb3cf877cfa04c974
symbols: config/Shield/rels/d_a_kytag04/symbols.txt
splits: config/Shield/rels/d_a_kytag04/splits.txt
# map: orig/Shield/fixed_maps/d_a_kytag04.map
- object: files/RELS.arc:rels/mmem/d_a_kytag17.rel
hash: 633668c9e88007b6d984855a7c62d154bf0aa879
symbols: config/Shield/rels/d_a_kytag17/symbols.txt
splits: config/Shield/rels/d_a_kytag17/splits.txt
# map: orig/Shield/fixed_maps/d_a_kytag17.map
- object: files/RELS.arc:rels/mmem/d_a_obj_brakeeff.rel
hash: 0b7df7c934189380ac4183a7bbc62d62e4094050
symbols: config/Shield/rels/d_a_obj_brakeeff/symbols.txt
splits: config/Shield/rels/d_a_obj_brakeeff/splits.txt
# map: orig/Shield/fixed_maps/d_a_obj_brakeeff.map
- object: files/RELS.arc:rels/mmem/d_a_obj_burnbox.rel
hash: 6bc86af26a5a677fe1904ad1afd7ff63a4be32db
symbols: config/Shield/rels/d_a_obj_burnbox/symbols.txt
splits: config/Shield/rels/d_a_obj_burnbox/splits.txt
# map: orig/Shield/fixed_maps/d_a_obj_burnbox.map
- object: files/RELS.arc:rels/mmem/d_a_obj_carry.rel
hash: c218cf860177c67a5332a090ffe1ad04f36679c9
symbols: config/Shield/rels/d_a_obj_carry/symbols.txt
splits: config/Shield/rels/d_a_obj_carry/splits.txt
# map: orig/Shield/fixed_maps/d_a_obj_carry.map
- object: files/RELS.arc:rels/mmem/d_a_obj_ito.rel
hash: f5d737ec5c9c462dbc5713afb951cef66638c43c
symbols: config/Shield/rels/d_a_obj_ito/symbols.txt
splits: config/Shield/rels/d_a_obj_ito/splits.txt
# map: orig/Shield/fixed_maps/d_a_obj_ito.map
- object: files/RELS.arc:rels/mmem/d_a_obj_movebox.rel
hash: db321abf945118252981183098546d5d7dcada28
symbols: config/Shield/rels/d_a_obj_movebox/symbols.txt
splits: config/Shield/rels/d_a_obj_movebox/splits.txt
# map: orig/Shield/fixed_maps/d_a_obj_movebox.map
- object: files/RELS.arc:rels/mmem/d_a_obj_swpush.rel
hash: a9bcaf17e04ef03a0c5b4ead26f58e95703d243f
symbols: config/Shield/rels/d_a_obj_swpush/symbols.txt
splits: config/Shield/rels/d_a_obj_swpush/splits.txt
# map: orig/Shield/fixed_maps/d_a_obj_swpush.map
- object: files/RELS.arc:rels/mmem/d_a_obj_timer.rel
hash: 88a5813094c350736d946399492c6f1023ffb15c
symbols: config/Shield/rels/d_a_obj_timer/symbols.txt
splits: config/Shield/rels/d_a_obj_timer/splits.txt
# map: orig/Shield/fixed_maps/d_a_obj_timer.map
- object: files/RELS.arc:rels/mmem/d_a_path_line.rel
hash: 7f2ac1a19fc31d9b52121c0410d59906e4498991
symbols: config/Shield/rels/d_a_path_line/symbols.txt
splits: config/Shield/rels/d_a_path_line/splits.txt
# map: orig/Shield/fixed_maps/d_a_path_line.map
- object: files/RELS.arc:rels/mmem/d_a_scene_exit.rel
hash: fca1292c5a6903288d2fd71df8c9bc4fb0ccf680
symbols: config/Shield/rels/d_a_scene_exit/symbols.txt
splits: config/Shield/rels/d_a_scene_exit/splits.txt
# map: orig/Shield/fixed_maps/d_a_scene_exit.map
- object: files/RELS.arc:rels/mmem/d_a_set_bgobj.rel
hash: bc1abd39aadd8deb10eca5b1ac0ffe216a2aed93
symbols: config/Shield/rels/d_a_set_bgobj/symbols.txt
splits: config/Shield/rels/d_a_set_bgobj/splits.txt
# map: orig/Shield/fixed_maps/d_a_set_bgobj.map
- object: files/RELS.arc:rels/mmem/d_a_swhit0.rel
hash: c1b9fa95a6f8e8d9bafb355e8dea1fc3a6296434
symbols: config/Shield/rels/d_a_swhit0/symbols.txt
splits: config/Shield/rels/d_a_swhit0/splits.txt
# map: orig/Shield/fixed_maps/d_a_swhit0.map
- object: files/RELS.arc:rels/mmem/d_a_tag_allmato.rel
hash: 185c06bef1abf4ca782cb789d27f6103095ac9b0
symbols: config/Shield/rels/d_a_tag_allmato/symbols.txt
splits: config/Shield/rels/d_a_tag_allmato/splits.txt
# map: orig/Shield/fixed_maps/d_a_tag_allmato.map
- object: files/RELS.arc:rels/mmem/d_a_tag_camera.rel
hash: 8bd54c39a56e9bd4589a20a40eacc9d0fdd64788
symbols: config/Shield/rels/d_a_tag_camera/symbols.txt
splits: config/Shield/rels/d_a_tag_camera/splits.txt
# map: orig/Shield/fixed_maps/d_a_tag_camera.map
- object: files/RELS.arc:rels/mmem/d_a_tag_chkpoint.rel
hash: 363a352a980e22d9e137a1f25aae28cb431cc8f1
symbols: config/Shield/rels/d_a_tag_chkpoint/symbols.txt
splits: config/Shield/rels/d_a_tag_chkpoint/splits.txt
# map: orig/Shield/fixed_maps/d_a_tag_chkpoint.map
- object: files/RELS.arc:rels/mmem/d_a_tag_event.rel
hash: 634d165ec3bff9c9f18c3bd5db937a38a7dcaaa5
symbols: config/Shield/rels/d_a_tag_event/symbols.txt
splits: config/Shield/rels/d_a_tag_event/splits.txt
# map: orig/Shield/fixed_maps/d_a_tag_event.map
- object: files/RELS.arc:rels/mmem/d_a_tag_evt.rel
hash: 2fcfd40215dc0119592cd0c8f43bccd80eed98ff
symbols: config/Shield/rels/d_a_tag_evt/symbols.txt
splits: config/Shield/rels/d_a_tag_evt/splits.txt
# map: orig/Shield/fixed_maps/d_a_tag_evt.map
- object: files/RELS.arc:rels/mmem/d_a_tag_evtarea.rel
hash: 73fd4d84a30c0de296a49cc399ab1e24ca837057
symbols: config/Shield/rels/d_a_tag_evtarea/symbols.txt
splits: config/Shield/rels/d_a_tag_evtarea/splits.txt
# map: orig/Shield/fixed_maps/d_a_tag_evtarea.map
- object: files/RELS.arc:rels/mmem/d_a_tag_evtmsg.rel
hash: 4daaa39747f10d1844dc7cde25f09a620fb828f4
symbols: config/Shield/rels/d_a_tag_evtmsg/symbols.txt
splits: config/Shield/rels/d_a_tag_evtmsg/splits.txt
# map: orig/Shield/fixed_maps/d_a_tag_evtmsg.map
- object: files/RELS.arc:rels/mmem/d_a_tag_howl.rel
hash: 49e05ee1390252ac6a41f1b20a9834ab4bd42d4a
symbols: config/Shield/rels/d_a_tag_howl/symbols.txt
splits: config/Shield/rels/d_a_tag_howl/splits.txt
# map: orig/Shield/fixed_maps/d_a_tag_howl.map
- object: files/RELS.arc:rels/mmem/d_a_tag_kmsg.rel
hash: 8fc1def58f11dcae9fedd19beea913030a65c54e
symbols: config/Shield/rels/d_a_tag_kmsg/symbols.txt
splits: config/Shield/rels/d_a_tag_kmsg/splits.txt
# map: orig/Shield/fixed_maps/d_a_tag_kmsg.map
- object: files/RELS.arc:rels/mmem/d_a_tag_lantern.rel
hash: e9a054cb4fc673ba8911aa0ec7465ef8d541c0dd
symbols: config/Shield/rels/d_a_tag_lantern/symbols.txt
splits: config/Shield/rels/d_a_tag_lantern/splits.txt
# map: orig/Shield/fixed_maps/d_a_tag_lantern.map
- object: files/RELS.arc:rels/mmem/d_a_tag_mist.rel
hash: 705b0337ae774d7cdfa0c3a5985c7630f96f26a9
symbols: config/Shield/rels/d_a_tag_mist/symbols.txt
splits: config/Shield/rels/d_a_tag_mist/splits.txt
# map: orig/Shield/fixed_maps/d_a_tag_mist.map
- object: files/RELS.arc:rels/mmem/d_a_tag_msg.rel
hash: 20f35bbbe0b62e2a6907dde2255d6c558b883713
symbols: config/Shield/rels/d_a_tag_msg/symbols.txt
splits: config/Shield/rels/d_a_tag_msg/splits.txt
# map: orig/Shield/fixed_maps/d_a_tag_msg.map
- object: files/RELS.arc:rels/mmem/d_a_tag_push.rel
hash: 13b7487c8dd9f20628adda776fd277ef4943f69f
symbols: config/Shield/rels/d_a_tag_push/symbols.txt
splits: config/Shield/rels/d_a_tag_push/splits.txt
# map: orig/Shield/fixed_maps/d_a_tag_push.map
- object: files/RELS.arc:rels/mmem/d_a_tag_telop.rel
hash: 901e599babce09e901ff813e97efac6c4c5bc4c6
symbols: config/Shield/rels/d_a_tag_telop/symbols.txt
splits: config/Shield/rels/d_a_tag_telop/splits.txt
# map: orig/Shield/fixed_maps/d_a_tag_telop.map
- object: files/RELS.arc:rels/mmem/d_a_tbox.rel
hash: 47ff32a5c9b31e9f80bdd8068eea176196e7bdc5
symbols: config/Shield/rels/d_a_tbox/symbols.txt
splits: config/Shield/rels/d_a_tbox/splits.txt
# map: orig/Shield/fixed_maps/d_a_tbox.map
- object: files/RELS.arc:rels/mmem/d_a_tbox2.rel
hash: 1e1151f5e2c5276884a56f45a02ee6d877d26c11
symbols: config/Shield/rels/d_a_tbox2/symbols.txt
splits: config/Shield/rels/d_a_tbox2/splits.txt
# map: orig/Shield/fixed_maps/d_a_tbox2.map
- object: files/RELS.arc:rels/mmem/d_a_vrbox.rel
hash: 0b52437dec32847ab694d1e59a71264410b02f84
symbols: config/Shield/rels/d_a_vrbox/symbols.txt
splits: config/Shield/rels/d_a_vrbox/splits.txt
# map: orig/Shield/fixed_maps/d_a_vrbox.map
- object: files/RELS.arc:rels/mmem/d_a_vrbox2.rel
hash: 7271855e8a31e344b8dcc17c7c118adf727d7349
symbols: config/Shield/rels/d_a_vrbox2/symbols.txt
splits: config/Shield/rels/d_a_vrbox2/splits.txt
# map: orig/Shield/fixed_maps/d_a_vrbox2.map
- object: files/RELS.arc:rels/mmem/d_a_arrow.rel
hash: ee0db84296489d32511d880ffc246735f51c7ae1
symbols: config/Shield/rels/d_a_arrow/symbols.txt
splits: config/Shield/rels/d_a_arrow/splits.txt
# map: orig/Shield/fixed_maps/d_a_arrow.map
- object: files/RELS.arc:rels/mmem/d_a_boomerang.rel
hash: 79d36b4f46b7668814f43766a50fd1a2b1c9def7
symbols: config/Shield/rels/d_a_boomerang/symbols.txt
splits: config/Shield/rels/d_a_boomerang/splits.txt
# map: orig/Shield/fixed_maps/d_a_boomerang.map
- object: files/RELS.arc:rels/mmem/d_a_crod.rel
hash: 79a2136cc976c65589ca231fb78e1745bf0b6edf
symbols: config/Shield/rels/d_a_crod/symbols.txt
splits: config/Shield/rels/d_a_crod/splits.txt
# map: orig/Shield/fixed_maps/d_a_crod.map
- object: files/RELS.arc:rels/mmem/d_a_demo00.rel
hash: 5718d9cdfbb56af0f2fd050353639e721ab594a7
symbols: config/Shield/rels/d_a_demo00/symbols.txt
splits: config/Shield/rels/d_a_demo00/splits.txt
# map: orig/Shield/fixed_maps/d_a_demo00.map
- object: files/RELS.arc:rels/mmem/d_a_disappear.rel
hash: ddbffef3aeeb139ba1438e00ad8f04356965fd5e
symbols: config/Shield/rels/d_a_disappear/symbols.txt
splits: config/Shield/rels/d_a_disappear/splits.txt
# map: orig/Shield/fixed_maps/d_a_disappear.map
- object: files/RELS.arc:rels/mmem/d_a_mg_rod.rel
hash: fccfa4fc37786bb88ed9fbd6a6f12bce00a8c904
symbols: config/Shield/rels/d_a_mg_rod/symbols.txt
splits: config/Shield/rels/d_a_mg_rod/splits.txt
# map: orig/Shield/fixed_maps/d_a_mg_rod.map
- object: files/RELS.arc:rels/mmem/d_a_midna.rel
hash: 3ca397ddf5ea198afea40b2df4d3191b2762c9e1
symbols: config/Shield/rels/d_a_midna/symbols.txt
splits: config/Shield/rels/d_a_midna/splits.txt
# map: orig/Shield/fixed_maps/d_a_midna.map
- object: files/RELS.arc:rels/mmem/d_a_nbomb.rel
hash: c1c8fd876e073edb9ea5be6473a4b19baee322f3
symbols: config/Shield/rels/d_a_nbomb/symbols.txt
splits: config/Shield/rels/d_a_nbomb/splits.txt
# map: orig/Shield/fixed_maps/d_a_nbomb.map
- object: files/RELS.arc:rels/mmem/d_a_no_chg_room.rel
hash: 9b420424169bc5adbba16e173cda729750024944
symbols: config/Shield/rels/d_a_no_chg_roomD/symbols.txt
splits: config/Shield/rels/d_a_no_chg_roomD/splits.txt
# map: orig/Shield/fixed_maps/d_a_no_chg_room.map
- object: files/RELS.arc:rels/mmem/d_a_obj_life_container.rel
hash: ff0f3f5499db89968bb11af45e25892936810f64
symbols: config/Shield/rels/d_a_obj_life_container/symbols.txt
splits: config/Shield/rels/d_a_obj_life_container/splits.txt
# map: orig/Shield/fixed_maps/d_a_obj_life_container.map
- object: files/RELS.arc:rels/mmem/d_a_obj_yousei.rel
hash: ed97e595f2313678129c4aaa5d2076cb47c9261f
symbols: config/Shield/rels/d_a_obj_yousei/symbols.txt
splits: config/Shield/rels/d_a_obj_yousei/splits.txt
# map: orig/Shield/fixed_maps/d_a_obj_yousei.map
- object: files/RELS.arc:rels/mmem/d_a_spinner.rel
hash: f837defb317491b5bf56577f8d3b69ccdf17f63c
symbols: config/Shield/rels/d_a_spinner/symbols.txt
splits: config/Shield/rels/d_a_spinner/splits.txt
# map: orig/Shield/fixed_maps/d_a_spinner.map
- object: files/RELS.arc:rels/mmem/d_a_suspend.rel
hash: 38e668146c6b05b1d993ff9f298007f0c47950d5
symbols: config/Shield/rels/d_a_suspend/symbols.txt
splits: config/Shield/rels/d_a_suspend/splits.txt
# map: orig/Shield/fixed_maps/d_a_suspend.map
- object: files/RELS.arc:rels/mmem/d_a_tag_attention.rel
hash: 812d37394c0903ee5f91ef74f1091e5e43756772
symbols: config/Shield/rels/d_a_tag_attention/symbols.txt
splits: config/Shield/rels/d_a_tag_attention/splits.txt
# map: orig/Shield/fixed_maps/d_a_tag_attention.map
- object: files/RELS.arc:rels/amem/d_a_alldie.rel
hash: 43d4677826f350f8d81aaa322f16186fa79daf6f
symbols: config/Shield/rels/d_a_alldie/symbols.txt
splits: config/Shield/rels/d_a_alldie/splits.txt
# map: orig/Shield/fixed_maps/d_a_alldie.map
- object: files/RELS.arc:rels/amem/d_a_andsw2.rel
hash: 4c2b810ee45dc7f817e70c59341e5a76b48a7409
symbols: config/Shield/rels/d_a_andsw2/symbols.txt
splits: config/Shield/rels/d_a_andsw2/splits.txt
# map: orig/Shield/fixed_maps/d_a_andsw2.map
- object: files/RELS.arc:rels/amem/d_a_bd.rel
hash: 3c0397f0293520e49a80f69fa9b6490fefec6614
symbols: config/Shield/rels/d_a_bd/symbols.txt
splits: config/Shield/rels/d_a_bd/splits.txt
# map: orig/Shield/fixed_maps/d_a_bd.map
- object: files/RELS.arc:rels/amem/d_a_canoe.rel
hash: 0cb03f3beaadfed3e8eede8348095cf95d830f63
symbols: config/Shield/rels/d_a_canoe/symbols.txt
splits: config/Shield/rels/d_a_canoe/splits.txt
# map: orig/Shield/fixed_maps/d_a_canoe.map
- object: files/RELS.arc:rels/amem/d_a_cstaF.rel
hash: 72ea3744b7154f7fd6beef4b672cf0d9e5b30b52
symbols: config/Shield/rels/d_a_cstaF/symbols.txt
splits: config/Shield/rels/d_a_cstaF/splits.txt
# map: orig/Shield/fixed_maps/d_a_cstaF.map
- object: files/RELS.arc:rels/amem/d_a_demo_item.rel
hash: 8fded3392877568d6dc12a0bc9b3347bd24061bc
symbols: config/Shield/rels/d_a_demo_item/symbols.txt
splits: config/Shield/rels/d_a_demo_item/splits.txt
# map: orig/Shield/fixed_maps/d_a_demo_item.map
- object: files/RELS.arc:rels/amem/d_a_door_bossL1.rel
hash: 459c90e644d3ab6ca01a554128b506a70b7b6496
symbols: config/Shield/rels/d_a_door_bossL1/symbols.txt
splits: config/Shield/rels/d_a_door_bossL1/splits.txt
# map: orig/Shield/fixed_maps/d_a_door_bossL1.map
- object: files/RELS.arc:rels/amem/d_a_e_dn.rel
hash: 92d844af6a4c40b889d523717dd21d48d2b03600
symbols: config/Shield/rels/d_a_e_dn/symbols.txt
splits: config/Shield/rels/d_a_e_dn/splits.txt
# map: orig/Shield/fixed_maps/d_a_e_dn.map
- object: files/RELS.arc:rels/amem/d_a_e_fm.rel
hash: 5d3a7d9d467bf3ea1488eb4c63bbe16b39713730
symbols: config/Shield/rels/d_a_e_fm/symbols.txt
splits: config/Shield/rels/d_a_e_fm/splits.txt
# map: orig/Shield/fixed_maps/d_a_e_fm.map
- object: files/RELS.arc:rels/amem/d_a_e_ga.rel
hash: 6dae408676eb889c6c7b93d1b45338da18a72e12
symbols: config/Shield/rels/d_a_e_ga/symbols.txt
splits: config/Shield/rels/d_a_e_ga/splits.txt
# map: orig/Shield/fixed_maps/d_a_e_ga.map
- object: files/RELS.arc:rels/amem/d_a_e_hb.rel
hash: d30e840145ee2c52b8b030391d81b8c1bf53aff6
symbols: config/Shield/rels/d_a_e_hb/symbols.txt
splits: config/Shield/rels/d_a_e_hb/splits.txt
# map: orig/Shield/fixed_maps/d_a_e_hb.map
- object: files/RELS.arc:rels/amem/d_a_e_nest.rel
hash: 5e8dfaf506fb4c201fc5c570b423148080b9bed7
symbols: config/Shield/rels/d_a_e_nest/symbols.txt
splits: config/Shield/rels/d_a_e_nest/splits.txt
# map: orig/Shield/fixed_maps/d_a_e_nest.map
- object: files/RELS.arc:rels/amem/d_a_e_rd.rel
hash: b42eb9010009380738c7c5c1c0227645175fed3f
symbols: config/Shield/rels/d_a_e_rd/symbols.txt
splits: config/Shield/rels/d_a_e_rd/splits.txt
# map: orig/Shield/fixed_maps/d_a_e_rd.map
- object: files/RELS.arc:rels/amem/d_a_econt.rel
hash: 57d0191ef35119caf4da03495f59e7eac283632d
symbols: config/Shield/rels/d_a_econt/symbols.txt
splits: config/Shield/rels/d_a_econt/splits.txt
# map: orig/Shield/fixed_maps/d_a_econt.map
- object: files/RELS.arc:rels/amem/d_a_fr.rel
hash: 4ba97c7d10581ccf4db9bb6aa9e640ea788fbed6
symbols: config/Shield/rels/d_a_fr/symbols.txt
splits: config/Shield/rels/d_a_fr/splits.txt
# map: orig/Shield/fixed_maps/d_a_fr.map
- object: files/RELS.arc:rels/amem/d_a_grass.rel
hash: d1357dd5a766fe94e32bdff1a1d08a8f65ebdd22
symbols: config/Shield/rels/d_a_grass/symbols.txt
splits: config/Shield/rels/d_a_grass/splits.txt
# map: orig/Shield/fixed_maps/d_a_grass.map
extract:
- symbol: l_M_kusa05_RGBATEX
binary: assets/l_M_kusa05_RGBATEX.bin
header: assets/l_M_kusa05_RGBATEX.h
- symbol: l_M_Hijiki00TEX
binary: assets/l_M_Hijiki00TEX.bin
header: assets/l_M_Hijiki00TEX.h
- symbol: l_M_Kusa_9qDL
binary: assets/l_M_Kusa_9qDL.bin
header: assets/l_M_Kusa_9qDL.h
- symbol: l_M_Kusa_9q_cDL
binary: assets/l_M_Kusa_9q_cDL.bin
header: assets/l_M_Kusa_9q_cDL.h
- symbol: l_M_TenGusaDL
binary: assets/l_M_TenGusaDL.bin
header: assets/l_M_TenGusaDL.h
- symbol: l_Tengusa_matDL
binary: assets/l_Tengusa_matDL.bin
header: assets/l_Tengusa_matDL.h
header_type: none
custom_type: matDL
- symbol: l_kusa9q_matDL
binary: assets/l_kusa9q_matDL.bin
header: assets/l_kusa9q_matDL.h
header_type: none
custom_type: matDL
- symbol: l_kusa9q_l4_matDL
binary: assets/l_kusa9q_l4_matDL.bin
header: assets/l_kusa9q_l4_matDL.h
header_type: none
custom_type: matDL
- symbol: l_J_Ohana00_64TEX
binary: assets/l_J_Ohana00_64TEX.bin
header: assets/l_J_Ohana00_64TEX.h
- symbol: l_J_hana00DL
binary: assets/l_J_hana00DL.bin
header: assets/l_J_hana00DL.h
- symbol: l_J_hana00_cDL
binary: assets/l_J_hana00_cDL.bin
header: assets/l_J_hana00_cDL.h
- symbol: l_matDL
binary: assets/l_matDL__d_a_grass.bin
header: assets/l_matDL__d_a_grass.h
header_type: none
custom_type: matDL
- symbol: l_matLight4DL
binary: assets/l_matLight4DL.bin
header: assets/l_matLight4DL.h
header_type: none
custom_type: matDL
- symbol: l_J_Ohana01_64128_0419TEX
binary: assets/l_J_Ohana01_64128_0419TEX.bin
header: assets/l_J_Ohana01_64128_0419TEX.h
- symbol: l_J_hana01DL
binary: assets/l_J_hana01DL.bin
header: assets/l_J_hana01DL.h
- symbol: l_J_hana01_c_00DL
binary: assets/l_J_hana01_c_00DL.bin
header: assets/l_J_hana01_c_00DL.h
- symbol: l_J_hana01_c_01DL
binary: assets/l_J_hana01_c_01DL.bin
header: assets/l_J_hana01_c_01DL.h
- symbol: l_mat2DL
binary: assets/l_mat2DL__d_a_grass.bin
header: assets/l_mat2DL__d_a_grass.h
header_type: none
custom_type: matDL
- symbol: l_mat2Light4DL
binary: assets/l_mat2Light4DL.bin
header: assets/l_mat2Light4DL.h
header_type: none
custom_type: matDL
- object: files/RELS.arc:rels/amem/d_a_kytag05.rel
hash: 21d2b19501f8f4d8512ed6381196dc59a43690aa
symbols: config/Shield/rels/d_a_kytag05/symbols.txt
splits: config/Shield/rels/d_a_kytag05/splits.txt
# map: orig/Shield/fixed_maps/d_a_kytag05.map
- object: files/RELS.arc:rels/amem/d_a_kytag10.rel
hash: dc079c1ca78b79ae0bf23c98945c982708bc2fab
symbols: config/Shield/rels/d_a_kytag10/symbols.txt
splits: config/Shield/rels/d_a_kytag10/splits.txt
# map: orig/Shield/fixed_maps/d_a_kytag10.map
- object: files/RELS.arc:rels/amem/d_a_kytag11.rel
hash: 946e83299c0989473c69f1cd185de9c88c9a18d0
symbols: config/Shield/rels/d_a_kytag11/symbols.txt
splits: config/Shield/rels/d_a_kytag11/splits.txt
# map: orig/Shield/fixed_maps/d_a_kytag11.map
- object: files/RELS.arc:rels/amem/d_a_kytag14.rel
hash: 40c4ee3fa3094136845db72f3c4527f0c1173689
symbols: config/Shield/rels/d_a_kytag14/symbols.txt
splits: config/Shield/rels/d_a_kytag14/splits.txt
# map: orig/Shield/fixed_maps/d_a_kytag14.map
- object: files/RELS.arc:rels/amem/d_a_mg_fish.rel
hash: d5d617f52e15a926563d91df52207fca09b2eae7
symbols: config/Shield/rels/d_a_mg_fish/symbols.txt
splits: config/Shield/rels/d_a_mg_fish/splits.txt
# map: orig/Shield/fixed_maps/d_a_mg_fish.map
- object: files/RELS.arc:rels/amem/d_a_npc_besu.rel
hash: f3a082c624cbc6cc073ad7601e5103d65e4ce1c4
symbols: config/Shield/rels/d_a_npc_besu/symbols.txt
splits: config/Shield/rels/d_a_npc_besu/splits.txt
# map: orig/Shield/fixed_maps/d_a_npc_besu.map
- object: files/RELS.arc:rels/amem/d_a_npc_fairy_seirei.rel
hash: b2a4361edb18605476c79c31e4cce879c442534e
symbols: config/Shield/rels/d_a_npc_fairy_seirei/symbols.txt
splits: config/Shield/rels/d_a_npc_fairy_seirei/splits.txt
# map: orig/Shield/fixed_maps/d_a_npc_fairy_seirei.map
- object: files/RELS.arc:rels/amem/d_a_npc_fish.rel
hash: c094613c57e2d22e54b8539d1c3dca136335caa0
symbols: config/Shield/rels/d_a_npc_fish/symbols.txt
splits: config/Shield/rels/d_a_npc_fish/splits.txt
# map: orig/Shield/fixed_maps/d_a_npc_fish.map
- object: files/RELS.arc:rels/amem/d_a_npc_henna.rel
hash: 4a66ca518fc28c343345478dd3e5a49e191abcd8
symbols: config/Shield/rels/d_a_npc_henna/symbols.txt
splits: config/Shield/rels/d_a_npc_henna/splits.txt
# map: orig/Shield/fixed_maps/d_a_npc_henna.map
- object: files/RELS.arc:rels/amem/d_a_npc_kakashi.rel
hash: 0321c5edbcc67f64bec04d2bec36be98f362d816
symbols: config/Shield/rels/d_a_npc_kakashi/symbols.txt
splits: config/Shield/rels/d_a_npc_kakashi/splits.txt
# map: orig/Shield/fixed_maps/d_a_npc_kakashi.map
- object: files/RELS.arc:rels/amem/d_a_npc_kkri.rel
hash: e7e8cd580613b05202c143e920820eac2fd2fecc
symbols: config/Shield/rels/d_a_npc_kkri/symbols.txt
splits: config/Shield/rels/d_a_npc_kkri/splits.txt
# map: orig/Shield/fixed_maps/d_a_npc_kkri.map
- object: files/RELS.arc:rels/amem/d_a_npc_kolin.rel
hash: 1c705e5ff8b7eae53b28e2b9b9ef52c00738de09
symbols: config/Shield/rels/d_a_npc_kolin/symbols.txt
splits: config/Shield/rels/d_a_npc_kolin/splits.txt
# map: orig/Shield/fixed_maps/d_a_npc_kolin.map
- object: files/RELS.arc:rels/amem/d_a_npc_maro.rel
hash: 978a313b94378c059e1313515f3f4e39f1059d12
symbols: config/Shield/rels/d_a_npc_maro/symbols.txt
splits: config/Shield/rels/d_a_npc_maro/splits.txt
# map: orig/Shield/fixed_maps/d_a_npc_maro.map
- object: files/RELS.arc:rels/amem/d_a_npc_taro.rel
hash: b2cf2223032b91b6705b9b14ba772df6a9b991f3
symbols: config/Shield/rels/d_a_npc_taro/symbols.txt
splits: config/Shield/rels/d_a_npc_taro/splits.txt
# map: orig/Shield/fixed_maps/d_a_npc_taro.map
- object: files/RELS.arc:rels/amem/d_a_npc_tkj.rel
hash: 2504a53ca41b3ac2adbfcca022bd73c7e55a4ccd
symbols: config/Shield/rels/d_a_npc_tkj/symbols.txt
splits: config/Shield/rels/d_a_npc_tkj/splits.txt
# map: orig/Shield/fixed_maps/d_a_npc_tkj.map
- object: files/RELS.arc:rels/amem/d_a_obj_bhashi.rel
hash: 12f944021a60c50742f7bb3fa9bcafb9f8dc43fb
symbols: config/Shield/rels/d_a_obj_bhashi/symbols.txt
splits: config/Shield/rels/d_a_obj_bhashi/splits.txt
# map: orig/Shield/fixed_maps/d_a_obj_bhashi.map
- object: files/RELS.arc:rels/amem/d_a_obj_bkdoor.rel
hash: 78e9a528eb1459baf03416206e05b14bfc49488c
symbols: config/Shield/rels/d_a_obj_bkdoor/symbols.txt
splits: config/Shield/rels/d_a_obj_bkdoor/splits.txt
# map: orig/Shield/fixed_maps/d_a_obj_bkdoor.map
- object: files/RELS.arc:rels/amem/d_a_obj_bosswarp.rel
hash: 14c2ba5cb39ceb1ce648e8811345dc182c61c1a1
symbols: config/Shield/rels/d_a_obj_bosswarp/symbols.txt
splits: config/Shield/rels/d_a_obj_bosswarp/splits.txt
# map: orig/Shield/fixed_maps/d_a_obj_bosswarp.map
- object: files/RELS.arc:rels/amem/d_a_obj_cboard.rel
hash: d20160b0f74dc40a081f2643d59618603dc4adb2
symbols: config/Shield/rels/d_a_obj_cboard/symbols.txt
splits: config/Shield/rels/d_a_obj_cboard/splits.txt
# map: orig/Shield/fixed_maps/d_a_obj_cboard.map
- object: files/RELS.arc:rels/amem/d_a_obj_digplace.rel
hash: 1395b1059619489646aef972123cc5bddfd2bd98
symbols: config/Shield/rels/d_a_obj_digplace/symbols.txt
splits: config/Shield/rels/d_a_obj_digplace/splits.txt
# map: orig/Shield/fixed_maps/d_a_obj_digplace.map
- object: files/RELS.arc:rels/amem/d_a_obj_eff.rel
hash: 13da3a016a3bd56fd6f02102504fdd08bbadf8be
symbols: config/Shield/rels/d_a_obj_eff/symbols.txt
splits: config/Shield/rels/d_a_obj_eff/splits.txt
# map: orig/Shield/fixed_maps/d_a_obj_eff.map
- object: files/RELS.arc:rels/amem/d_a_obj_fmobj.rel
hash: 5ba75e2ae58b4d3304dc87c27f23160502d3692f
symbols: config/Shield/rels/d_a_obj_fmobj/symbols.txt
splits: config/Shield/rels/d_a_obj_fmobj/splits.txt
# map: orig/Shield/fixed_maps/d_a_obj_fmobj.map
- object: files/RELS.arc:rels/amem/d_a_obj_gpTaru.rel
hash: c3f003e2830aa0d5943f76b0f1cb14336d07b826
symbols: config/Shield/rels/d_a_obj_gpTaru/symbols.txt
splits: config/Shield/rels/d_a_obj_gpTaru/splits.txt
# map: orig/Shield/fixed_maps/d_a_obj_gpTaru.map
- object: files/RELS.arc:rels/amem/d_a_obj_hhashi.rel
hash: 55ac30778d651cb0cc9188691c3be36b006a6788
symbols: config/Shield/rels/d_a_obj_hhashi/symbols.txt
splits: config/Shield/rels/d_a_obj_hhashi/splits.txt
# map: orig/Shield/fixed_maps/d_a_obj_hhashi.map
- object: files/RELS.arc:rels/amem/d_a_obj_kanban2.rel
hash: a2950019000fe4eccb1ea0dba7fcefc829d98fa4
symbols: config/Shield/rels/d_a_obj_kanban2/symbols.txt
splits: config/Shield/rels/d_a_obj_kanban2/splits.txt
# map: orig/Shield/fixed_maps/d_a_obj_kanban2.map
- object: files/rel/Rfinal/Release/d_a_obj_kbacket.rel
hash: a8e2bc9636a7902f5a7a99d740f3a466d28a8687
symbols: config/Shield/rels/d_a_obj_kbacket/symbols.txt
splits: config/Shield/rels/d_a_obj_kbacket/splits.txt
# map: orig/Shield/fixed_maps/d_a_obj_kbacket.map
- object: files/RELS.arc:rels/amem/d_a_obj_kgate.rel
hash: f873c2b2aa5705011acadcfc2490631fd7485149
symbols: config/Shield/rels/d_a_obj_kgate/symbols.txt
splits: config/Shield/rels/d_a_obj_kgate/splits.txt
# map: orig/Shield/fixed_maps/d_a_obj_kgate.map
- object: files/RELS.arc:rels/amem/d_a_obj_klift00.rel
hash: 9a9f40f9d2d4467aab61a053b93a5c4953324cc5
symbols: config/Shield/rels/d_a_obj_klift00/symbols.txt
splits: config/Shield/rels/d_a_obj_klift00/splits.txt
# map: orig/Shield/fixed_maps/d_a_obj_klift00.map
- object: files/RELS.arc:rels/amem/d_a_obj_ktOnFire.rel
hash: 0ce2f39cb25c54de00b878e02dd8fc66e0af1b94
symbols: config/Shield/rels/d_a_obj_ktOnFire/symbols.txt
splits: config/Shield/rels/d_a_obj_ktOnFire/splits.txt
# map: orig/Shield/fixed_maps/d_a_obj_ktOnFire.map
- object: files/RELS.arc:rels/amem/d_a_obj_ladder.rel
hash: 43d30001c3fe2dd69943155cc06067a5bbcb8920
symbols: config/Shield/rels/d_a_obj_ladder/symbols.txt
splits: config/Shield/rels/d_a_obj_ladder/splits.txt
# map: orig/Shield/fixed_maps/d_a_obj_ladder.map
- object: files/RELS.arc:rels/amem/d_a_obj_lv2Candle.rel
hash: 953a6d087a9d01c591f675d964447818dae531cc
symbols: config/Shield/rels/d_a_obj_lv2Candle/symbols.txt
splits: config/Shield/rels/d_a_obj_lv2Candle/splits.txt
# map: orig/Shield/fixed_maps/d_a_obj_lv2Candle.map
- object: files/RELS.arc:rels/amem/d_a_obj_magne_arm.rel
hash: 4a58d2406fb035f896353e736fbb6e1bfe721fb8
symbols: config/Shield/rels/d_a_obj_magne_arm/symbols.txt
splits: config/Shield/rels/d_a_obj_magne_arm/splits.txt
# map: orig/Shield/fixed_maps/d_a_obj_magne_arm.map
- object: files/RELS.arc:rels/amem/d_a_obj_metalbox.rel
hash: e7d7bfede379d44be89a125a136a82af1d52e261
symbols: config/Shield/rels/d_a_obj_metalbox/symbols.txt
splits: config/Shield/rels/d_a_obj_metalbox/splits.txt
# map: orig/Shield/fixed_maps/d_a_obj_metalbox.map
- object: files/RELS.arc:rels/amem/d_a_obj_mgate.rel
hash: 18d241c989fbc7b9203edd79f11067d9cb5acf09
symbols: config/Shield/rels/d_a_obj_mgate/symbols.txt
splits: config/Shield/rels/d_a_obj_mgate/splits.txt
# map: orig/Shield/fixed_maps/d_a_obj_mgate.map
- object: files/RELS.arc:rels/amem/d_a_obj_nameplate.rel
hash: 9a1c011f6f15515f07fd7341cf2631d737798a8e
symbols: config/Shield/rels/d_a_obj_nameplate/symbols.txt
splits: config/Shield/rels/d_a_obj_nameplate/splits.txt
# map: orig/Shield/fixed_maps/d_a_obj_nameplate.map
- object: files/RELS.arc:rels/amem/d_a_obj_ornament_cloth.rel
hash: af96c14d0da3986a0f9c2dff81bf6232b26e2dae
symbols: config/Shield/rels/d_a_obj_ornament_cloth/symbols.txt
splits: config/Shield/rels/d_a_obj_ornament_cloth/splits.txt
# map: orig/Shield/fixed_maps/d_a_obj_ornament_cloth.map
- object: files/RELS.arc:rels/amem/d_a_obj_rope_bridge.rel
hash: 6c210fef3cf12afb852f68fa69c9a85b7d108acc
symbols: config/Shield/rels/d_a_obj_rope_bridge/symbols.txt
splits: config/Shield/rels/d_a_obj_rope_bridge/splits.txt
# map: orig/Shield/fixed_maps/d_a_obj_rope_bridge.map
- object: files/RELS.arc:rels/amem/d_a_obj_sWallShutter.rel
hash: 684c5dc87d96ca66a41f0878855e0b56ec843f7c
symbols: config/Shield/rels/d_a_obj_sWallShutter/symbols.txt
splits: config/Shield/rels/d_a_obj_sWallShutter/splits.txt
# map: orig/Shield/fixed_maps/d_a_obj_sWallShutter.map
- object: files/RELS.arc:rels/amem/d_a_obj_stick.rel
hash: 7dee7df50edb785940af9a8900d08ab69d67e4c4
symbols: config/Shield/rels/d_a_obj_stick/symbols.txt
splits: config/Shield/rels/d_a_obj_stick/splits.txt
# map: orig/Shield/fixed_maps/d_a_obj_stick.map
- object: files/RELS.arc:rels/amem/d_a_obj_stoneMark.rel
hash: aefd0b888216b970a0973fb80cd72269ab59dd0f
symbols: config/Shield/rels/d_a_obj_stoneMark/symbols.txt
splits: config/Shield/rels/d_a_obj_stoneMark/splits.txt
# map: orig/Shield/fixed_maps/d_a_obj_stoneMark.map
- object: files/RELS.arc:rels/amem/d_a_obj_swpropeller.rel
hash: b3385add53c8d606c47cb0c55e73a9588eb41b87
symbols: config/Shield/rels/d_a_obj_swpropeller/symbols.txt
splits: config/Shield/rels/d_a_obj_swpropeller/splits.txt
# map: orig/Shield/fixed_maps/d_a_obj_swpropeller.map
- object: files/RELS.arc:rels/amem/d_a_obj_swpush5.rel
hash: b0ac68589d1f3590dca76e65cf72de70df12dc88
symbols: config/Shield/rels/d_a_obj_swpush5/symbols.txt
splits: config/Shield/rels/d_a_obj_swpush5/splits.txt
# map: orig/Shield/fixed_maps/d_a_obj_swpush5.map
- object: files/RELS.arc:rels/amem/d_a_obj_yobikusa.rel
hash: 0e1166cebfcd12c439aa477e34261f7a85b63943
symbols: config/Shield/rels/d_a_obj_yobikusa/symbols.txt
splits: config/Shield/rels/d_a_obj_yobikusa/splits.txt
# map: orig/Shield/fixed_maps/d_a_obj_yobikusa.map
- object: files/RELS.arc:rels/amem/d_a_scene_exit2.rel
hash: cb0abde6205b92498146d74acf9e89f8d50ac00d
symbols: config/Shield/rels/d_a_scene_exit2/symbols.txt
splits: config/Shield/rels/d_a_scene_exit2/splits.txt
# map: orig/Shield/fixed_maps/d_a_scene_exit2.map
- object: files/RELS.arc:rels/amem/d_a_shop_item.rel
hash: 469b2b09d7cfa1207ef211a153b6eeb2dba1a5f6
symbols: config/Shield/rels/d_a_shop_item/symbols.txt
splits: config/Shield/rels/d_a_shop_item/splits.txt
# map: orig/Shield/fixed_maps/d_a_shop_item.map
- object: files/RELS.arc:rels/amem/d_a_sq.rel
hash: 91cd9120f740b27738fe5daed1136724046259f2
symbols: config/Shield/rels/d_a_sq/symbols.txt
splits: config/Shield/rels/d_a_sq/splits.txt
# map: orig/Shield/fixed_maps/d_a_sq.map
- object: files/RELS.arc:rels/amem/d_a_swc00.rel
hash: 57d38f4a4f714e2be15d9bdd54846d630c93099f
symbols: config/Shield/rels/d_a_swc00/symbols.txt
splits: config/Shield/rels/d_a_swc00/splits.txt
# map: orig/Shield/fixed_maps/d_a_swc00.map
- object: files/RELS.arc:rels/amem/d_a_tag_CstaSw.rel
hash: 35ee17ddeb0027134ef5b1d68fe6a9f2ff03bbd4
symbols: config/Shield/rels/d_a_tag_CstaSw/symbols.txt
splits: config/Shield/rels/d_a_tag_CstaSw/splits.txt
# map: orig/Shield/fixed_maps/d_a_tag_CstaSw.map
- object: files/RELS.arc:rels/amem/d_a_tag_ajnot.rel
hash: 68daee8b4be379ccf6dd88db6364e430c551a047
symbols: config/Shield/rels/d_a_tag_ajnot/symbols.txt
splits: config/Shield/rels/d_a_tag_ajnot/splits.txt
# map: orig/Shield/fixed_maps/d_a_tag_ajnot.map
- object: files/RELS.arc:rels/amem/d_a_tag_attack_item.rel
hash: a0a42931056d1b88b35f27adb4e2dc87d14806e2
symbols: config/Shield/rels/d_a_tag_attack_item/symbols.txt
splits: config/Shield/rels/d_a_tag_attack_item/splits.txt
# map: orig/Shield/fixed_maps/d_a_tag_attack_item.map
- object: files/RELS.arc:rels/amem/d_a_tag_gstart.rel
hash: 8bfb99dac998e47536272902e4dd0c9c59b1c631
symbols: config/Shield/rels/d_a_tag_gstart/symbols.txt
splits: config/Shield/rels/d_a_tag_gstart/splits.txt
# map: orig/Shield/fixed_maps/d_a_tag_gstart.map
- object: files/RELS.arc:rels/amem/d_a_tag_hinit.rel
hash: 214f4d0e9602c8c4a767ee37b7d211d929ebc4d5
symbols: config/Shield/rels/d_a_tag_hinit/symbols.txt
splits: config/Shield/rels/d_a_tag_hinit/splits.txt
# map: orig/Shield/fixed_maps/d_a_tag_hinit.map
- object: files/RELS.arc:rels/amem/d_a_tag_hjump.rel
hash: 75de2d13a76eef44364eb2ce9cb1f13da816af2a
symbols: config/Shield/rels/d_a_tag_hjump/symbols.txt
splits: config/Shield/rels/d_a_tag_hjump/splits.txt
# map: orig/Shield/fixed_maps/d_a_tag_hjump.map
- object: files/RELS.arc:rels/amem/d_a_tag_hstop.rel
hash: e4ad3a44dd1cd9ceea6e9542576fb532c41e2fca
symbols: config/Shield/rels/d_a_tag_hstop/symbols.txt
splits: config/Shield/rels/d_a_tag_hstop/splits.txt
# map: orig/Shield/fixed_maps/d_a_tag_hstop.map
- object: files/RELS.arc:rels/amem/d_a_tag_lv2prchk.rel
hash: 7626ecf8eb09f354fb35ca4d004c45d1f0ce822f
symbols: config/Shield/rels/d_a_tag_lv2prchk/symbols.txt
splits: config/Shield/rels/d_a_tag_lv2prchk/splits.txt
# map: orig/Shield/fixed_maps/d_a_tag_lv2prchk.map
- object: files/RELS.arc:rels/amem/d_a_tag_magne.rel
hash: e0d2d4327fcab46e8661868e1c4253ae35483aff
symbols: config/Shield/rels/d_a_tag_magne/symbols.txt
splits: config/Shield/rels/d_a_tag_magne/splits.txt
# map: orig/Shield/fixed_maps/d_a_tag_magne.map
- object: files/RELS.arc:rels/amem/d_a_tag_mhint.rel
hash: c76811470ee5b50953fadbee13e58b278b5a013e
symbols: config/Shield/rels/d_a_tag_mhint/symbols.txt
splits: config/Shield/rels/d_a_tag_mhint/splits.txt
# map: orig/Shield/fixed_maps/d_a_tag_mhint.map
- object: files/RELS.arc:rels/amem/d_a_tag_mstop.rel
hash: 61e8c3fd7ece67ceaa236418b8f42914edebe601
symbols: config/Shield/rels/d_a_tag_mstop/symbols.txt
splits: config/Shield/rels/d_a_tag_mstop/splits.txt
# map: orig/Shield/fixed_maps/d_a_tag_mstop.map
- object: files/RELS.arc:rels/amem/d_a_tag_spring.rel
hash: 4254aa979b29268f382eae2720b27d6ce1fc629b
symbols: config/Shield/rels/d_a_tag_spring/symbols.txt
splits: config/Shield/rels/d_a_tag_spring/splits.txt
# map: orig/Shield/fixed_maps/d_a_tag_spring.map
- object: files/RELS.arc:rels/amem/d_a_tag_statue_evt.rel
hash: 9519ac4727f5094d7fa525a359acbbe5fdaa2b81
symbols: config/Shield/rels/d_a_tag_statue_evt/symbols.txt
splits: config/Shield/rels/d_a_tag_statue_evt/splits.txt
# map: orig/Shield/fixed_maps/d_a_tag_statue_evt.map
- object: files/RELS.arc:rels/amem/d_a_ykgr.rel
hash: 3e1812c74535347acc3accd7ccace80d24ce80dc
symbols: config/Shield/rels/d_a_ykgr/symbols.txt
splits: config/Shield/rels/d_a_ykgr/splits.txt
# map: orig/Shield/fixed_maps/d_a_ykgr.map
- object: files/rel/Rfinal/Release/d_a_L7demo_dr.rel
hash: da939ace72f726480d4e89d82bc5b5f9720fd630
symbols: config/Shield/rels/d_a_L7demo_dr/symbols.txt
splits: config/Shield/rels/d_a_L7demo_dr/splits.txt
# map: orig/Shield/fixed_maps/d_a_L7demo_dr.map
- object: files/rel/Rfinal/Release/d_a_L7low_dr.rel
hash: e2e0acf432cde27231d8b2fdcc4d0f50a17ad427
symbols: config/Shield/rels/d_a_L7low_dr/symbols.txt
splits: config/Shield/rels/d_a_L7low_dr/splits.txt
# map: orig/Shield/fixed_maps/d_a_L7low_dr.map
- object: files/rel/Rfinal/Release/d_a_L7op_demo_dr.rel
hash: 35cee5b2561f910ecd0f99af33bff28b8a9fcab7
symbols: config/Shield/rels/d_a_L7op_demo_dr/symbols.txt
splits: config/Shield/rels/d_a_L7op_demo_dr/splits.txt
# map: orig/Shield/fixed_maps/d_a_L7op_demo_dr.map
- object: files/rel/Rfinal/Release/d_a_b_bh.rel
hash: 366cd063b8c67af76218fac0db1408c0c4e8cf9c
symbols: config/Shield/rels/d_a_b_bh/symbols.txt
splits: config/Shield/rels/d_a_b_bh/splits.txt
# map: orig/Shield/fixed_maps/d_a_b_bh.map
- object: files/rel/Rfinal/Release/d_a_b_bq.rel
hash: 08538d0f7c0fdc99dbef2304dfce08e9e324483b
symbols: config/Shield/rels/d_a_b_bq/symbols.txt
splits: config/Shield/rels/d_a_b_bq/splits.txt
# map: orig/Shield/fixed_maps/d_a_b_bq.map
- object: files/rel/Rfinal/Release/d_a_b_dr.rel
hash: 1ad9bc288a1e4ce42ddadb7d150171926af6ee80
symbols: config/Shield/rels/d_a_b_dr/symbols.txt
splits: config/Shield/rels/d_a_b_dr/splits.txt
# map: orig/Shield/fixed_maps/d_a_b_dr.map
- object: files/rel/Rfinal/Release/d_a_b_dre.rel
hash: e2b9f28b2bf4c6dc86b472dbbbd2d90c5de3d63b
symbols: config/Shield/rels/d_a_b_dre/symbols.txt
splits: config/Shield/rels/d_a_b_dre/splits.txt
# map: orig/Shield/fixed_maps/d_a_b_dre.map
- object: files/rel/Rfinal/Release/d_a_b_ds.rel
hash: 5ffa19db776bf1bd4ba957a290b25e4fc274a250
symbols: config/Shield/rels/d_a_b_ds/symbols.txt
splits: config/Shield/rels/d_a_b_ds/splits.txt
# map: orig/Shield/fixed_maps/d_a_b_ds.map
- object: files/rel/Rfinal/Release/d_a_b_gg.rel
hash: f470576650fc374d71c56655c047de1b4e465db1
symbols: config/Shield/rels/d_a_b_gg/symbols.txt
splits: config/Shield/rels/d_a_b_gg/splits.txt
# map: orig/Shield/fixed_maps/d_a_b_gg.map
- object: files/rel/Rfinal/Release/d_a_b_gm.rel
hash: 8ec551357faaff756f128fe06669bc00e5911732
symbols: config/Shield/rels/d_a_b_gm/symbols.txt
splits: config/Shield/rels/d_a_b_gm/splits.txt
# map: orig/Shield/fixed_maps/d_a_b_gm.map
- object: files/rel/Rfinal/Release/d_a_b_gnd.rel
hash: 4d062364751d438b0578a22876b34af33bf08de1
symbols: config/Shield/rels/d_a_b_gnd/symbols.txt
splits: config/Shield/rels/d_a_b_gnd/splits.txt
# map: orig/Shield/fixed_maps/d_a_b_gnd.map
- object: files/rel/Rfinal/Release/d_a_b_go.rel
hash: 33f427070dac47d2a829543c186618dd3302fad7
symbols: config/Shield/rels/d_a_b_go/symbols.txt
splits: config/Shield/rels/d_a_b_go/splits.txt
# map: orig/Shield/fixed_maps/d_a_b_go.map
- object: files/rel/Rfinal/Release/d_a_b_gos.rel
hash: 8a75cdf4cb9fb5d5852038f535fbe111a398e274
symbols: config/Shield/rels/d_a_b_gos/symbols.txt
splits: config/Shield/rels/d_a_b_gos/splits.txt
# map: orig/Shield/fixed_maps/d_a_b_gos.map
- object: files/rel/Rfinal/Release/d_a_b_mgn.rel
hash: afd2cb78154f7c828c76e089255d9951edaad3b0
symbols: config/Shield/rels/d_a_b_mgn/symbols.txt
splits: config/Shield/rels/d_a_b_mgn/splits.txt
# map: orig/Shield/fixed_maps/d_a_b_mgn.map
- object: files/rel/Rfinal/Release/d_a_b_ob.rel
hash: 5a88414192cf47156ead2c553cd8b2f4c0cc8482
symbols: config/Shield/rels/d_a_b_ob/symbols.txt
splits: config/Shield/rels/d_a_b_ob/splits.txt
# map: orig/Shield/fixed_maps/d_a_b_ob.map
- object: files/rel/Rfinal/Release/d_a_b_oh.rel
hash: 78dcc9fbd012dbf1a8cf7528a27f581ec46c3fff
symbols: config/Shield/rels/d_a_b_oh/symbols.txt
splits: config/Shield/rels/d_a_b_oh/splits.txt
# map: orig/Shield/fixed_maps/d_a_b_oh.map
- object: files/rel/Rfinal/Release/d_a_b_oh2.rel
hash: 981b38346b381b2232da89af99b750652860e7e2
symbols: config/Shield/rels/d_a_b_oh2/symbols.txt
splits: config/Shield/rels/d_a_b_oh2/splits.txt
# map: orig/Shield/fixed_maps/d_a_b_oh2.map
- object: files/rel/Rfinal/Release/d_a_b_tn.rel
hash: a64bc7eb3a54ffed2990d17085244799dffe302c
symbols: config/Shield/rels/d_a_b_tn/symbols.txt
splits: config/Shield/rels/d_a_b_tn/splits.txt
# map: orig/Shield/fixed_maps/d_a_b_tn.map
- object: files/rel/Rfinal/Release/d_a_b_yo.rel
hash: c27b95f91f7ddea1cde81b5848dedb6486c07120
symbols: config/Shield/rels/d_a_b_yo/symbols.txt
splits: config/Shield/rels/d_a_b_yo/splits.txt
# map: orig/Shield/fixed_maps/d_a_b_yo.map
- object: files/rel/Rfinal/Release/d_a_b_yo_ice.rel
hash: 0934e77427fc417650d5023505ae7fe2e57de71e
symbols: config/Shield/rels/d_a_b_yo_ice/symbols.txt
splits: config/Shield/rels/d_a_b_yo_ice/splits.txt
# map: orig/Shield/fixed_maps/d_a_b_yo_ice.map
- object: files/rel/Rfinal/Release/d_a_b_zant.rel
hash: a9287f38389e25fcea9b39631163e93d5725f5b4
symbols: config/Shield/rels/d_a_b_zant/symbols.txt
splits: config/Shield/rels/d_a_b_zant/splits.txt
# map: orig/Shield/fixed_maps/d_a_b_zant.map
- object: files/rel/Rfinal/Release/d_a_b_zant_magic.rel
hash: edde7b6bb57eae8f5d4c21553711c0f34cfba828
symbols: config/Shield/rels/d_a_b_zant_magic/symbols.txt
splits: config/Shield/rels/d_a_b_zant_magic/splits.txt
# map: orig/Shield/fixed_maps/d_a_b_zant_magic.map
- object: files/rel/Rfinal/Release/d_a_b_zant_mobile.rel
hash: 7a6a20a70b8d52056eed33a8cddc97b4a35a300f
symbols: config/Shield/rels/d_a_b_zant_mobile/symbols.txt
splits: config/Shield/rels/d_a_b_zant_mobile/splits.txt
# map: orig/Shield/fixed_maps/d_a_b_zant_mobile.map
- object: files/rel/Rfinal/Release/d_a_b_zant_sima.rel
hash: 0ab51eb3ad92da5b3c51e72b4880f4d2652aecd1
symbols: config/Shield/rels/d_a_b_zant_sima/symbols.txt
splits: config/Shield/rels/d_a_b_zant_sima/splits.txt
# map: orig/Shield/fixed_maps/d_a_b_zant_sima.map
- object: files/rel/Rfinal/Release/d_a_balloon_2D.rel
hash: dc0312570ad858050ef90b30b6634a9524fb38ae
symbols: config/Shield/rels/d_a_balloon_2D/symbols.txt
splits: config/Shield/rels/d_a_balloon_2D/splits.txt
# map: orig/Shield/fixed_maps/d_a_balloon_2D.map
- object: files/rel/Rfinal/Release/d_a_bullet.rel
hash: 81c982aafc9155143fbfa3c1161e0cd03a06c6c3
symbols: config/Shield/rels/d_a_bullet/symbols.txt
splits: config/Shield/rels/d_a_bullet/splits.txt
# map: orig/Shield/fixed_maps/d_a_bullet.map
- object: files/rel/Rfinal/Release/d_a_coach_2D.rel
hash: 2da8609ad8174b3d498762e88d1b498d125657b3
symbols: config/Shield/rels/d_a_coach_2D/symbols.txt
splits: config/Shield/rels/d_a_coach_2D/splits.txt
# map: orig/Shield/fixed_maps/d_a_coach_2D.map
- object: files/rel/Rfinal/Release/d_a_coach_fire.rel
hash: 2a58bd6f25b48b36a2316a71120ed1636e59a390
symbols: config/Shield/rels/d_a_coach_fire/symbols.txt
splits: config/Shield/rels/d_a_coach_fire/splits.txt
# map: orig/Shield/fixed_maps/d_a_coach_fire.map
- object: files/rel/Rfinal/Release/d_a_cow.rel
hash: cc075fef2b66a347ed0acc73c52ee51da98697b5
symbols: config/Shield/rels/d_a_cow/symbols.txt
splits: config/Shield/rels/d_a_cow/splits.txt
# map: orig/Shield/fixed_maps/d_a_cow.map
- object: files/rel/Rfinal/Release/d_a_cstatue.rel
hash: c2faa6fff2a6bda54bbfce056cb74546560c3f26
symbols: config/Shield/rels/d_a_cstatue/symbols.txt
splits: config/Shield/rels/d_a_cstatue/splits.txt
# map: orig/Shield/fixed_maps/d_a_cstatue.map
- object: files/rel/Rfinal/Release/d_a_do.rel
hash: 8557aa963633fc22c09f3df99672ae035437ac18
symbols: config/Shield/rels/d_a_do/symbols.txt
splits: config/Shield/rels/d_a_do/splits.txt
# map: orig/Shield/fixed_maps/d_a_do.map
- object: files/rel/Rfinal/Release/d_a_door_boss.rel
hash: 7fee004c582dc13ae8da07b91bd77c0023a42db3
symbols: config/Shield/rels/d_a_door_boss/symbols.txt
splits: config/Shield/rels/d_a_door_boss/splits.txt
# map: orig/Shield/fixed_maps/d_a_door_boss.map
- object: files/rel/Rfinal/Release/d_a_door_bossL5.rel
hash: 28a2f75242d8e62b0306c782d0c9f080ba187430
symbols: config/Shield/rels/d_a_door_bossL5/symbols.txt
splits: config/Shield/rels/d_a_door_bossL5/splits.txt
# map: orig/Shield/fixed_maps/d_a_door_bossL5.map
- object: files/rel/Rfinal/Release/d_a_door_mbossL1.rel
hash: 6296520cace0cae6b3d0feae43f932b7298f73a4
symbols: config/Shield/rels/d_a_door_mbossL1/symbols.txt
splits: config/Shield/rels/d_a_door_mbossL1/splits.txt
# map: orig/Shield/fixed_maps/d_a_door_mbossL1.map
- object: files/rel/Rfinal/Release/d_a_door_push.rel
hash: 310d7545197a5dd075d8ad5d77384da62ceb6b07
symbols: config/Shield/rels/d_a_door_push/symbols.txt
splits: config/Shield/rels/d_a_door_push/splits.txt
# map: orig/Shield/fixed_maps/d_a_door_push.map
- object: files/rel/Rfinal/Release/d_a_e_ai.rel
hash: 285d18d2bf0a7de0c99025b6434af7fe139d9b6b
symbols: config/Shield/rels/d_a_e_ai/symbols.txt
splits: config/Shield/rels/d_a_e_ai/splits.txt
# map: orig/Shield/fixed_maps/d_a_e_ai.map
- object: files/rel/Rfinal/Release/d_a_e_arrow.rel
hash: 7fbd4d436c05743fa434ccf767e124b2d11ea3f1
symbols: config/Shield/rels/d_a_e_arrow/symbols.txt
splits: config/Shield/rels/d_a_e_arrow/splits.txt
# map: orig/Shield/fixed_maps/d_a_e_arrow.map
- object: files/rel/Rfinal/Release/d_a_e_ba.rel
hash: 0ae07cbf2e19224fab744f23879ae15048538421
symbols: config/Shield/rels/d_a_e_ba/symbols.txt
splits: config/Shield/rels/d_a_e_ba/splits.txt
# map: orig/Shield/fixed_maps/d_a_e_ba.map
- object: files/rel/Rfinal/Release/d_a_e_bee.rel
hash: 0ac0c016cd278420edde4edfa6323e08b192fc25
symbols: config/Shield/rels/d_a_e_bee/symbols.txt
splits: config/Shield/rels/d_a_e_bee/splits.txt
# map: orig/Shield/fixed_maps/d_a_e_bee.map
- object: files/rel/Rfinal/Release/d_a_e_bg.rel
hash: b94a02331feedc2dacc61b311b83ff348294e184
symbols: config/Shield/rels/d_a_e_bg/symbols.txt
splits: config/Shield/rels/d_a_e_bg/splits.txt
# map: orig/Shield/fixed_maps/d_a_e_bg.map
- object: files/rel/Rfinal/Release/d_a_e_bi.rel
hash: f51c580dfd8c62a2d218accefc3b534c7e032d37
symbols: config/Shield/rels/d_a_e_bi/symbols.txt
splits: config/Shield/rels/d_a_e_bi/splits.txt
# map: orig/Shield/fixed_maps/d_a_e_bi.map
- object: files/rel/Rfinal/Release/d_a_e_bi_leaf.rel
hash: d8b7565dab1e8dcc00ec33a8f65dc47981f31a17
symbols: config/Shield/rels/d_a_e_bi_leaf/symbols.txt
splits: config/Shield/rels/d_a_e_bi_leaf/splits.txt
# map: orig/Shield/fixed_maps/d_a_e_bi_leaf.map
- object: files/rel/Rfinal/Release/d_a_e_bs.rel
hash: 5f0dda6cbb6846599555f545fd7ad4895ce7ad73
symbols: config/Shield/rels/d_a_e_bs/symbols.txt
splits: config/Shield/rels/d_a_e_bs/splits.txt
# map: orig/Shield/fixed_maps/d_a_e_bs.map
- object: files/rel/Rfinal/Release/d_a_e_bu.rel
hash: ef861e67fb07aa4ac25347fa57f720a4fae728bf
symbols: config/Shield/rels/d_a_e_bu/symbols.txt
splits: config/Shield/rels/d_a_e_bu/splits.txt
# map: orig/Shield/fixed_maps/d_a_e_bu.map
- object: files/rel/Rfinal/Release/d_a_e_bug.rel
hash: 8930a62758303900d0e3f2394bbec51736dc8c83
symbols: config/Shield/rels/d_a_e_bug/symbols.txt
splits: config/Shield/rels/d_a_e_bug/splits.txt
# map: orig/Shield/fixed_maps/d_a_e_bug.map
- object: files/rel/Rfinal/Release/d_a_e_cr.rel
hash: a124980b93e2bc3795fd57afe45603219748dd49
symbols: config/Shield/rels/d_a_e_cr/symbols.txt
splits: config/Shield/rels/d_a_e_cr/splits.txt
# map: orig/Shield/fixed_maps/d_a_e_cr.map
- object: files/rel/Rfinal/Release/d_a_e_cr_egg.rel
hash: 7fb669d9a06135396f9b01aa909bf87707b3fc8f
symbols: config/Shield/rels/d_a_e_cr_egg/symbols.txt
splits: config/Shield/rels/d_a_e_cr_egg/splits.txt
# map: orig/Shield/fixed_maps/d_a_e_cr_egg.map
- object: files/rel/Rfinal/Release/d_a_e_db.rel
hash: 7d531a0a7bafc52e83a8536cebaef877bd2cd7e6
symbols: config/Shield/rels/d_a_e_db/symbols.txt
splits: config/Shield/rels/d_a_e_db/splits.txt
# map: orig/Shield/fixed_maps/d_a_e_db.map
- object: files/rel/Rfinal/Release/d_a_e_db_leaf.rel
hash: 03e84b00360cbc5e64ceed193b59a2f1bcda7ded
symbols: config/Shield/rels/d_a_e_db_leaf/symbols.txt
splits: config/Shield/rels/d_a_e_db_leaf/splits.txt
# map: orig/Shield/fixed_maps/d_a_e_db_leaf.map
- object: files/rel/Rfinal/Release/d_a_e_dd.rel
hash: 9744757828a16d35b8774903b522714c7be95e44
symbols: config/Shield/rels/d_a_e_dd/symbols.txt
splits: config/Shield/rels/d_a_e_dd/splits.txt
# map: orig/Shield/fixed_maps/d_a_e_dd.map
- object: files/rel/Rfinal/Release/d_a_e_df.rel
hash: 5bfb4abde8b7f7dccaf4f5b47d256998ace7e38e
symbols: config/Shield/rels/d_a_e_df/symbols.txt
splits: config/Shield/rels/d_a_e_df/splits.txt
# map: orig/Shield/fixed_maps/d_a_e_df.map
- object: files/rel/Rfinal/Release/d_a_e_dk.rel
hash: 2e654038f5621e0e493963dde58f1602d4469a56
symbols: config/Shield/rels/d_a_e_dk/symbols.txt
splits: config/Shield/rels/d_a_e_dk/splits.txt
# map: orig/Shield/fixed_maps/d_a_e_dk.map
- object: files/rel/Rfinal/Release/d_a_e_dt.rel
hash: 2793692bf56a675cfe3e8e385a59abecd2888353
symbols: config/Shield/rels/d_a_e_dt/symbols.txt
splits: config/Shield/rels/d_a_e_dt/splits.txt
# map: orig/Shield/fixed_maps/d_a_e_dt.map
- object: files/rel/Rfinal/Release/d_a_e_fb.rel
hash: 9c439dd6b3ee3b5d9bb8da22558cfcf43e41f818
symbols: config/Shield/rels/d_a_e_fb/symbols.txt
splits: config/Shield/rels/d_a_e_fb/splits.txt
# map: orig/Shield/fixed_maps/d_a_e_fb.map
- object: files/rel/Rfinal/Release/d_a_e_fk.rel
hash: bf8e5c3b421d3d9e53d502ff47368754c515ebbb
symbols: config/Shield/rels/d_a_e_fk/symbols.txt
splits: config/Shield/rels/d_a_e_fk/splits.txt
# map: orig/Shield/fixed_maps/d_a_e_fk.map
- object: files/rel/Rfinal/Release/d_a_e_fs.rel
hash: c669462064cb135ad1fa6e92f267fe82bd01c74f
symbols: config/Shield/rels/d_a_e_fs/symbols.txt
splits: config/Shield/rels/d_a_e_fs/splits.txt
# map: orig/Shield/fixed_maps/d_a_e_fs.map
- object: files/rel/Rfinal/Release/d_a_e_fz.rel
hash: 92d4dd8c83671e47deaa42b37d53028074b87be1
symbols: config/Shield/rels/d_a_e_fz/symbols.txt
splits: config/Shield/rels/d_a_e_fz/splits.txt
# map: orig/Shield/fixed_maps/d_a_e_fz.map
- object: files/rel/Rfinal/Release/d_a_e_gb.rel
hash: d59699659339b2f04eb8189d5bbe74d1f84ecee1
symbols: config/Shield/rels/d_a_e_gb/symbols.txt
splits: config/Shield/rels/d_a_e_gb/splits.txt
# map: orig/Shield/fixed_maps/d_a_e_gb.map
- object: files/rel/Rfinal/Release/d_a_e_ge.rel
hash: 1f93c0e54ad71a431632e06a51e262749acc8506
symbols: config/Shield/rels/d_a_e_ge/symbols.txt
splits: config/Shield/rels/d_a_e_ge/splits.txt
# map: orig/Shield/fixed_maps/d_a_e_ge.map
- object: files/rel/Rfinal/Release/d_a_e_gi.rel
hash: 9f218ffacad27d27a5005ce59fe46ceb15e256db
symbols: config/Shield/rels/d_a_e_gi/symbols.txt
splits: config/Shield/rels/d_a_e_gi/splits.txt
# map: orig/Shield/fixed_maps/d_a_e_gi.map
- object: files/rel/Rfinal/Release/d_a_e_gm.rel
hash: 05dd46c12c2c73150937cc9168ef609d15ecd4e7
symbols: config/Shield/rels/d_a_e_gm/symbols.txt
splits: config/Shield/rels/d_a_e_gm/splits.txt
# map: orig/Shield/fixed_maps/d_a_e_gm.map
- object: files/rel/Rfinal/Release/d_a_e_gob.rel
hash: 044ccbd7147742dbe3cf304e6141dfeec9e5e2f3
symbols: config/Shield/rels/d_a_e_gob/symbols.txt
splits: config/Shield/rels/d_a_e_gob/splits.txt
# map: orig/Shield/fixed_maps/d_a_e_gob.map
- object: files/rel/Rfinal/Release/d_a_e_gs.rel
hash: 7a478747b320e9f53d2f0de452af5a2738dfd84b
symbols: config/Shield/rels/d_a_e_gs/symbols.txt
splits: config/Shield/rels/d_a_e_gs/splits.txt
# map: orig/Shield/fixed_maps/d_a_e_gs.map
- object: files/rel/Rfinal/Release/d_a_e_hb_leaf.rel
hash: 44e7fc4a1b0a6a8f4793e67fc5acc2443732fe40
symbols: config/Shield/rels/d_a_e_hb_leaf/symbols.txt
splits: config/Shield/rels/d_a_e_hb_leaf/splits.txt
# map: orig/Shield/fixed_maps/d_a_e_hb_leaf.map
- object: files/rel/Rfinal/Release/d_a_e_hm.rel
hash: 3f87e21367be6a7d36db00115b1514b5cf4d1fea
symbols: config/Shield/rels/d_a_e_hm/symbols.txt
splits: config/Shield/rels/d_a_e_hm/splits.txt
# map: orig/Shield/fixed_maps/d_a_e_hm.map
- object: files/rel/Rfinal/Release/d_a_e_hp.rel
hash: f1bbc406aad04901411eec0c3e2af49af985bf05
symbols: config/Shield/rels/d_a_e_hp/symbols.txt
splits: config/Shield/rels/d_a_e_hp/splits.txt
# map: orig/Shield/fixed_maps/d_a_e_hp.map
- object: files/rel/Rfinal/Release/d_a_e_hz.rel
hash: c9c9563a3d74d77778b792f99cbcebb52699a6c4
symbols: config/Shield/rels/d_a_e_hz/symbols.txt
splits: config/Shield/rels/d_a_e_hz/splits.txt
# map: orig/Shield/fixed_maps/d_a_e_hz.map
- object: files/rel/Rfinal/Release/d_a_e_hzelda.rel
hash: c1c4589763b82a7391d3b5711ee80873b8be3638
symbols: config/Shield/rels/d_a_e_hzelda/symbols.txt
splits: config/Shield/rels/d_a_e_hzelda/splits.txt
# map: orig/Shield/fixed_maps/d_a_e_hzelda.map
- object: files/rel/Rfinal/Release/d_a_e_is.rel
hash: 7b50a0471053d0c95473f77bc976dcd7b014b749
symbols: config/Shield/rels/d_a_e_is/symbols.txt
splits: config/Shield/rels/d_a_e_is/splits.txt
# map: orig/Shield/fixed_maps/d_a_e_is.map
- object: files/rel/Rfinal/Release/d_a_e_kg.rel
hash: 8611fa57de81bd283ed37d4bb7e8a2fce9d25c8f
symbols: config/Shield/rels/d_a_e_kg/symbols.txt
splits: config/Shield/rels/d_a_e_kg/splits.txt
# map: orig/Shield/fixed_maps/d_a_e_kg.map
- object: files/rel/Rfinal/Release/d_a_e_kk.rel
hash: f272f04b87ed4baccacadc5d69a3f2448e7bda0f
symbols: config/Shield/rels/d_a_e_kk/symbols.txt
splits: config/Shield/rels/d_a_e_kk/splits.txt
# map: orig/Shield/fixed_maps/d_a_e_kk.map
- object: files/rel/Rfinal/Release/d_a_e_kr.rel
hash: 2ccaeedbf8944e7687dce8a8c46a46927367ca2a
symbols: config/Shield/rels/d_a_e_kr/symbols.txt
splits: config/Shield/rels/d_a_e_kr/splits.txt
# map: orig/Shield/fixed_maps/d_a_e_kr.map
- object: files/rel/Rfinal/Release/d_a_e_mb.rel
hash: 28f3617d33f9c5abb308a73362bf53e0e6b1d6fd
symbols: config/Shield/rels/d_a_e_mb/symbols.txt
splits: config/Shield/rels/d_a_e_mb/splits.txt
# map: orig/Shield/fixed_maps/d_a_e_mb.map
- object: files/rel/Rfinal/Release/d_a_e_md.rel
hash: 7a1e446a615df7b8fdd2df24572a1d0c673c80a2
symbols: config/Shield/rels/d_a_e_md/symbols.txt
splits: config/Shield/rels/d_a_e_md/splits.txt
# map: orig/Shield/fixed_maps/d_a_e_md.map
- object: files/rel/Rfinal/Release/d_a_e_mf.rel
hash: 7299770c8612818d4f8e8af0fe48e84257cdde3e
symbols: config/Shield/rels/d_a_e_mf/symbols.txt
splits: config/Shield/rels/d_a_e_mf/splits.txt
# map: orig/Shield/fixed_maps/d_a_e_mf.map
- object: files/rel/Rfinal/Release/d_a_e_mk.rel
hash: 0121833189fbf223a3e952582d6003be09206e6e
symbols: config/Shield/rels/d_a_e_mk/symbols.txt
splits: config/Shield/rels/d_a_e_mk/splits.txt
# map: orig/Shield/fixed_maps/d_a_e_mk.map
- object: files/rel/Rfinal/Release/d_a_e_mk_bo.rel
hash: 98a13d33b89ee45a9279ab147b74605735c00c10
symbols: config/Shield/rels/d_a_e_mk_bo/symbols.txt
splits: config/Shield/rels/d_a_e_mk_bo/splits.txt
# map: orig/Shield/fixed_maps/d_a_e_mk_bo.map
- object: files/rel/Rfinal/Release/d_a_e_mm.rel
hash: d3b6c63e381f465a547135f17c31527936732c4e
symbols: config/Shield/rels/d_a_e_mm/symbols.txt
splits: config/Shield/rels/d_a_e_mm/splits.txt
# map: orig/Shield/fixed_maps/d_a_e_mm.map
- object: files/rel/Rfinal/Release/d_a_e_mm_mt.rel
hash: 6fffa694c0a0cb36de9caf0925a8b32a624326db
symbols: config/Shield/rels/d_a_e_mm_mt/symbols.txt
splits: config/Shield/rels/d_a_e_mm_mt/splits.txt
# map: orig/Shield/fixed_maps/d_a_e_mm_mt.map
- object: files/rel/Rfinal/Release/d_a_e_ms.rel
hash: b7deaff42c205596e5d265eb5144126e7cc8070c
symbols: config/Shield/rels/d_a_e_ms/symbols.txt
splits: config/Shield/rels/d_a_e_ms/splits.txt
# map: orig/Shield/fixed_maps/d_a_e_ms.map
- object: files/rel/Rfinal/Release/d_a_e_nz.rel
hash: ab414bf3b6123f3130aa570ab7211befbbd53f84
symbols: config/Shield/rels/d_a_e_nz/symbols.txt
splits: config/Shield/rels/d_a_e_nz/splits.txt
# map: orig/Shield/fixed_maps/d_a_e_nz.map
- object: files/rel/Rfinal/Release/d_a_e_oc.rel
hash: c3c16b90fac15d9d1d461ece8d64ba8c0f8fbcf0
symbols: config/Shield/rels/d_a_e_oc/symbols.txt
splits: config/Shield/rels/d_a_e_oc/splits.txt
# map: orig/Shield/fixed_maps/d_a_e_oc.map
- object: files/rel/Rfinal/Release/d_a_e_oct_bg.rel
hash: 896b891980704f0063ab7ca578d7d859eb7b72c8
symbols: config/Shield/rels/d_a_e_oct_bg/symbols.txt
splits: config/Shield/rels/d_a_e_oct_bg/splits.txt
# map: orig/Shield/fixed_maps/d_a_e_oct_bg.map
- object: files/rel/Rfinal/Release/d_a_e_ot.rel
hash: 0b0edb5532bb8ad435b37e9e53179d4d09b8e052
symbols: config/Shield/rels/d_a_e_ot/symbols.txt
splits: config/Shield/rels/d_a_e_ot/splits.txt
# map: orig/Shield/fixed_maps/d_a_e_ot.map
- object: files/rel/Rfinal/Release/d_a_e_ph.rel
hash: 285c48331bf8ca30784be1fb68c84aa35ebb4426
symbols: config/Shield/rels/d_a_e_ph/symbols.txt
splits: config/Shield/rels/d_a_e_ph/splits.txt
# map: orig/Shield/fixed_maps/d_a_e_ph.map
- object: files/rel/Rfinal/Release/d_a_e_pm.rel
hash: 49903e4255d71cc052e54d985357282913c5e312
symbols: config/Shield/rels/d_a_e_pm/symbols.txt
splits: config/Shield/rels/d_a_e_pm/splits.txt
# map: orig/Shield/fixed_maps/d_a_e_pm.map
- object: files/rel/Rfinal/Release/d_a_e_po.rel
hash: 14e0d68e4a89aa1cbb7795cc15a1fd19f4c836f8
symbols: config/Shield/rels/d_a_e_po/symbols.txt
splits: config/Shield/rels/d_a_e_po/splits.txt
# map: orig/Shield/fixed_maps/d_a_e_po.map
- object: files/rel/Rfinal/Release/d_a_e_pz.rel
hash: c6903376825ad70429de67d42685ebcc1f779f08
symbols: config/Shield/rels/d_a_e_pz/symbols.txt
splits: config/Shield/rels/d_a_e_pz/splits.txt
# map: orig/Shield/fixed_maps/d_a_e_pz.map
- object: files/rel/Rfinal/Release/d_a_e_rb.rel
hash: 45685e1103318fb90e95c78a72693b67b815245d
symbols: config/Shield/rels/d_a_e_rb/symbols.txt
splits: config/Shield/rels/d_a_e_rb/splits.txt
# map: orig/Shield/fixed_maps/d_a_e_rb.map
- object: files/rel/Rfinal/Release/d_a_e_rdb.rel
hash: da312ee71365ffd181aed6689958bae0e00c8fc2
symbols: config/Shield/rels/d_a_e_rdb/symbols.txt
splits: config/Shield/rels/d_a_e_rdb/splits.txt
# map: orig/Shield/fixed_maps/d_a_e_rdb.map
- object: files/rel/Rfinal/Release/d_a_e_rdy.rel
hash: c79df6699853db120ac9a7a173cfb93c7d15ed52
symbols: config/Shield/rels/d_a_e_rdy/symbols.txt
splits: config/Shield/rels/d_a_e_rdy/splits.txt
# map: orig/Shield/fixed_maps/d_a_e_rdy.map
- object: files/rel/Rfinal/Release/d_a_e_s1.rel
hash: cf91c90acd1a51d4378b46638a90221bf29b4cbc
symbols: config/Shield/rels/d_a_e_s1/symbols.txt
splits: config/Shield/rels/d_a_e_s1/splits.txt
# map: orig/Shield/fixed_maps/d_a_e_s1.map
- object: files/rel/Rfinal/Release/d_a_e_sb.rel
hash: 3671c69d741b4a86ebac7326b71fe0d56e511505
symbols: config/Shield/rels/d_a_e_sb/symbols.txt
splits: config/Shield/rels/d_a_e_sb/splits.txt
# map: orig/Shield/fixed_maps/d_a_e_sb.map
- object: files/rel/Rfinal/Release/d_a_e_sf.rel
hash: 121320cfd189ef970ae8d38f737118504ad71aba
symbols: config/Shield/rels/d_a_e_sf/symbols.txt
splits: config/Shield/rels/d_a_e_sf/splits.txt
# map: orig/Shield/fixed_maps/d_a_e_sf.map
- object: files/rel/Rfinal/Release/d_a_e_sg.rel
hash: 2844530f54ede1d26b22395f70342aaed674f71d
symbols: config/Shield/rels/d_a_e_sg/symbols.txt
splits: config/Shield/rels/d_a_e_sg/splits.txt
# map: orig/Shield/fixed_maps/d_a_e_sg.map
- object: files/rel/Rfinal/Release/d_a_e_sh.rel
hash: 2e17833ec3ebd7f9038e233ba30cca942ba591d8
symbols: config/Shield/rels/d_a_e_sh/symbols.txt
splits: config/Shield/rels/d_a_e_sh/splits.txt
# map: orig/Shield/fixed_maps/d_a_e_sh.map
- object: files/rel/Rfinal/Release/d_a_e_sm.rel
hash: 582e6f916f06e2ce2272fad5accfb80862004a88
symbols: config/Shield/rels/d_a_e_sm/symbols.txt
splits: config/Shield/rels/d_a_e_sm/splits.txt
# map: orig/Shield/fixed_maps/d_a_e_sm.map
- object: files/rel/Rfinal/Release/d_a_e_sm2.rel
hash: 65d04963e52da5d5136dba0efc21f79542569027
symbols: config/Shield/rels/d_a_e_sm2/symbols.txt
splits: config/Shield/rels/d_a_e_sm2/splits.txt
# map: orig/Shield/fixed_maps/d_a_e_sm2.map
- object: files/rel/Rfinal/Release/d_a_e_st.rel
hash: 978b17142f9d76ab77a24b1f621371fff23dac3d
symbols: config/Shield/rels/d_a_e_st/symbols.txt
splits: config/Shield/rels/d_a_e_st/splits.txt
# map: orig/Shield/fixed_maps/d_a_e_st.map
- object: files/rel/Rfinal/Release/d_a_e_st_line.rel
hash: ca3db220a81378c2962cc2d3640eee0d5e842488
symbols: config/Shield/rels/d_a_e_st_line/symbols.txt
splits: config/Shield/rels/d_a_e_st_line/splits.txt
# map: orig/Shield/fixed_maps/d_a_e_st_line.map
- object: files/rel/Rfinal/Release/d_a_e_sw.rel
hash: 447e270137c9647b141e3ca1a223a756ae132b3a
symbols: config/Shield/rels/d_a_e_sw/symbols.txt
splits: config/Shield/rels/d_a_e_sw/splits.txt
# map: orig/Shield/fixed_maps/d_a_e_sw.map
- object: files/rel/Rfinal/Release/d_a_e_th.rel
hash: 0d5423460cae2c0baa15a764fb35223b1047d76e
symbols: config/Shield/rels/d_a_e_th/symbols.txt
splits: config/Shield/rels/d_a_e_th/splits.txt
# map: orig/Shield/fixed_maps/d_a_e_th.map
- object: files/rel/Rfinal/Release/d_a_e_th_ball.rel
hash: cd73c0915c0189ff2afc0da55c34ecca1ebc6f98
symbols: config/Shield/rels/d_a_e_th_ball/symbols.txt
splits: config/Shield/rels/d_a_e_th_ball/splits.txt
# map: orig/Shield/fixed_maps/d_a_e_th_ball.map
- object: files/rel/Rfinal/Release/d_a_e_tk.rel
hash: 75d9bfa45cba534d8a34798322f8cd5803c0a25c
symbols: config/Shield/rels/d_a_e_tk/symbols.txt
splits: config/Shield/rels/d_a_e_tk/splits.txt
# map: orig/Shield/fixed_maps/d_a_e_tk.map
- object: files/rel/Rfinal/Release/d_a_e_tk2.rel
hash: 9f824629c95b7428e0dfa4b467ae0af097a368b1
symbols: config/Shield/rels/d_a_e_tk2/symbols.txt
splits: config/Shield/rels/d_a_e_tk2/splits.txt
# map: orig/Shield/fixed_maps/d_a_e_tk2.map
- object: files/rel/Rfinal/Release/d_a_e_tk_ball.rel
hash: 000da3a0f096d39f71380cf3b71c1c683e75394e
symbols: config/Shield/rels/d_a_e_tk_ball/symbols.txt
splits: config/Shield/rels/d_a_e_tk_ball/splits.txt
# map: orig/Shield/fixed_maps/d_a_e_tk_ball.map
- object: files/rel/Rfinal/Release/d_a_e_tt.rel
hash: 15f389dca32875873f781c6d4b03d604d4d090ec
symbols: config/Shield/rels/d_a_e_tt/symbols.txt
splits: config/Shield/rels/d_a_e_tt/splits.txt
# map: orig/Shield/fixed_maps/d_a_e_tt.map
- object: files/rel/Rfinal/Release/d_a_e_vt.rel
hash: c7a3f2136a765f737baa3a46295b8b21c83aa9a6
symbols: config/Shield/rels/d_a_e_vt/symbols.txt
splits: config/Shield/rels/d_a_e_vt/splits.txt
# map: orig/Shield/fixed_maps/d_a_e_vt.map
- object: files/rel/Rfinal/Release/d_a_e_warpappear.rel
hash: d717327490eae64c6668e82f9d4ab36ed293a459
symbols: config/Shield/rels/d_a_e_warpappear/symbols.txt
splits: config/Shield/rels/d_a_e_warpappear/splits.txt
# map: orig/Shield/fixed_maps/d_a_e_warpappear.map
- object: files/rel/Rfinal/Release/d_a_e_wb.rel
hash: c7c909bf5b2dda65b79cd96ff15a211ce1903f47
symbols: config/Shield/rels/d_a_e_wb/symbols.txt
splits: config/Shield/rels/d_a_e_wb/splits.txt
# map: orig/Shield/fixed_maps/d_a_e_wb.map
- object: files/rel/Rfinal/Release/d_a_e_ws.rel
hash: b30aa651071b83e07c6fc5a598469db09626c7fd
symbols: config/Shield/rels/d_a_e_ws/symbols.txt
splits: config/Shield/rels/d_a_e_ws/splits.txt
# map: orig/Shield/fixed_maps/d_a_e_ws.map
- object: files/rel/Rfinal/Release/d_a_e_ww.rel
hash: 73462bdc79d73eb87d8e6b9d5869e61d0a8e5b43
symbols: config/Shield/rels/d_a_e_ww/symbols.txt
splits: config/Shield/rels/d_a_e_ww/splits.txt
# map: orig/Shield/fixed_maps/d_a_e_ww.map
- object: files/rel/Rfinal/Release/d_a_e_yc.rel
hash: 131895e0b3ea2470418d5629cbbf8a9b07b599e5
symbols: config/Shield/rels/d_a_e_yc/symbols.txt
splits: config/Shield/rels/d_a_e_yc/splits.txt
# map: orig/Shield/fixed_maps/d_a_e_yc.map
- object: files/rel/Rfinal/Release/d_a_e_yd.rel
hash: 7eea95241abd2aa875477b0c2f1a0bc968c17b8b
symbols: config/Shield/rels/d_a_e_yd/symbols.txt
splits: config/Shield/rels/d_a_e_yd/splits.txt
# map: orig/Shield/fixed_maps/d_a_e_yd.map
- object: files/rel/Rfinal/Release/d_a_e_yd_leaf.rel
hash: e1c3bdcd5a42e518388f532435905efac07d246f
symbols: config/Shield/rels/d_a_e_yd_leaf/symbols.txt
splits: config/Shield/rels/d_a_e_yd_leaf/splits.txt
# map: orig/Shield/fixed_maps/d_a_e_yd_leaf.map
- object: files/rel/Rfinal/Release/d_a_e_yg.rel
hash: 2ae78e845a206be9cbf86f3a90f37e64850a1f15
symbols: config/Shield/rels/d_a_e_yg/symbols.txt
splits: config/Shield/rels/d_a_e_yg/splits.txt
# map: orig/Shield/fixed_maps/d_a_e_yg.map
- object: files/rel/Rfinal/Release/d_a_e_yh.rel
hash: 21705f4cbac9af2ff53cd724ce1e4aef87ff52ae
symbols: config/Shield/rels/d_a_e_yh/symbols.txt
splits: config/Shield/rels/d_a_e_yh/splits.txt
# map: orig/Shield/fixed_maps/d_a_e_yh.map
- object: files/rel/Rfinal/Release/d_a_e_yk.rel
hash: 20e3a33ba601d26377e4324ce84ec3117496d6f6
symbols: config/Shield/rels/d_a_e_yk/symbols.txt
splits: config/Shield/rels/d_a_e_yk/splits.txt
# map: orig/Shield/fixed_maps/d_a_e_yk.map
- object: files/rel/Rfinal/Release/d_a_e_ym.rel
hash: 91ff4b9a4c4c1369884f33f4116447d0fc0b3746
symbols: config/Shield/rels/d_a_e_ym/symbols.txt
splits: config/Shield/rels/d_a_e_ym/splits.txt
# map: orig/Shield/fixed_maps/d_a_e_ym.map
- object: files/rel/Rfinal/Release/d_a_e_ym_tag.rel
hash: 5f14a345f0a7d870aee222b8f9b5add819402d42
symbols: config/Shield/rels/d_a_e_ym_tag/symbols.txt
splits: config/Shield/rels/d_a_e_ym_tag/splits.txt
# map: orig/Shield/fixed_maps/d_a_e_ym_tag.map
- object: files/rel/Rfinal/Release/d_a_e_ymb.rel
hash: d554ceb6474d8798248116d370130415fc0212a5
symbols: config/Shield/rels/d_a_e_ymb/symbols.txt
splits: config/Shield/rels/d_a_e_ymb/splits.txt
# map: orig/Shield/fixed_maps/d_a_e_ymb.map
- object: files/rel/Rfinal/Release/d_a_e_yr.rel
hash: af8dc0a6e9f2a6b8abe413aea98ea093a1754229
symbols: config/Shield/rels/d_a_e_yr/symbols.txt
splits: config/Shield/rels/d_a_e_yr/splits.txt
# map: orig/Shield/fixed_maps/d_a_e_yr.map
- object: files/rel/Rfinal/Release/d_a_e_zh.rel
hash: 16306dd3f92d958af8961918fd7c79c89fbe2e41
symbols: config/Shield/rels/d_a_e_zh/symbols.txt
splits: config/Shield/rels/d_a_e_zh/splits.txt
# map: orig/Shield/fixed_maps/d_a_e_zh.map
- object: files/rel/Rfinal/Release/d_a_e_zm.rel
hash: 71b0aca5cbccca98ffd4b7ff6ded4f3531bff864
symbols: config/Shield/rels/d_a_e_zm/symbols.txt
splits: config/Shield/rels/d_a_e_zm/splits.txt
# map: orig/Shield/fixed_maps/d_a_e_zm.map
- object: files/rel/Rfinal/Release/d_a_e_zs.rel
hash: f6ed4eed55d1951ea583b8e0bca883ac66ee8927
symbols: config/Shield/rels/d_a_e_zs/symbols.txt
splits: config/Shield/rels/d_a_e_zs/splits.txt
# map: orig/Shield/fixed_maps/d_a_e_zs.map
- object: files/rel/Rfinal/Release/d_a_formation_mng.rel
hash: 3202d60d86e2ed26d87a631405189b1e828453bd
symbols: config/Shield/rels/d_a_formation_mng/symbols.txt
splits: config/Shield/rels/d_a_formation_mng/splits.txt
# map: orig/Shield/fixed_maps/d_a_formation_mng.map
- object: files/rel/Rfinal/Release/d_a_guard_mng.rel
hash: 2f8a3e27b225dea5cf6dbf8b33b745982031b891
symbols: config/Shield/rels/d_a_guard_mng/symbols.txt
splits: config/Shield/rels/d_a_guard_mng/splits.txt
# map: orig/Shield/fixed_maps/d_a_guard_mng.map
- object: files/rel/Rfinal/Release/d_a_horse.rel
hash: 54a2b214e2c604090e85927b2f7b0e80e150a06d
symbols: config/Shield/rels/d_a_horse/symbols.txt
splits: config/Shield/rels/d_a_horse/splits.txt
# map: orig/Shield/fixed_maps/d_a_horse.map
- object: files/rel/Rfinal/Release/d_a_hozelda.rel
hash: 674077a36f64ae33d9a95f3b8cac3c21cc760910
symbols: config/Shield/rels/d_a_hozelda/symbols.txt
splits: config/Shield/rels/d_a_hozelda/splits.txt
# map: orig/Shield/fixed_maps/d_a_hozelda.map
- object: files/rel/Rfinal/Release/d_a_izumi_gate.rel
hash: 995f8e08b54d468f405eb1baa3f2f11cacf1f267
symbols: config/Shield/rels/d_a_izumi_gate/symbols.txt
splits: config/Shield/rels/d_a_izumi_gate/splits.txt
# map: orig/Shield/fixed_maps/d_a_izumi_gate.map
- object: files/rel/Rfinal/Release/d_a_kago.rel
hash: 66b5edbeb07d827b71721d27b28f1a15ff27d04d
symbols: config/Shield/rels/d_a_kago/symbols.txt
splits: config/Shield/rels/d_a_kago/splits.txt
# map: orig/Shield/fixed_maps/d_a_kago.map
- object: files/rel/Rfinal/Release/d_a_kytag01.rel
hash: 48c3ac4e0412548aa4aff05be1f938d0b517e40f
symbols: config/Shield/rels/d_a_kytag01/symbols.txt
splits: config/Shield/rels/d_a_kytag01/splits.txt
# map: orig/Shield/fixed_maps/d_a_kytag01.map
- object: files/rel/Rfinal/Release/d_a_kytag02.rel
hash: 3f13442ac7968bf729d57fb2a4f7075ae67fb56f
symbols: config/Shield/rels/d_a_kytag02/symbols.txt
splits: config/Shield/rels/d_a_kytag02/splits.txt
# map: orig/Shield/fixed_maps/d_a_kytag02.map
- object: files/rel/Rfinal/Release/d_a_kytag03.rel
hash: 5bc6593b6144ae297aa1fea05684a506fdec97a8
symbols: config/Shield/rels/d_a_kytag03/symbols.txt
splits: config/Shield/rels/d_a_kytag03/splits.txt
# map: orig/Shield/fixed_maps/d_a_kytag03.map
- object: files/rel/Rfinal/Release/d_a_kytag06.rel
hash: 364f6980d870e2cec43c577a55046c1a2866185b
symbols: config/Shield/rels/d_a_kytag06/symbols.txt
splits: config/Shield/rels/d_a_kytag06/splits.txt
# map: orig/Shield/fixed_maps/d_a_kytag06.map
- object: files/rel/Rfinal/Release/d_a_kytag07.rel
hash: 54c532ac159cc3407fa62319dee3f7898fe2764c
symbols: config/Shield/rels/d_a_kytag07/symbols.txt
splits: config/Shield/rels/d_a_kytag07/splits.txt
# map: orig/Shield/fixed_maps/d_a_kytag07.map
- object: files/rel/Rfinal/Release/d_a_kytag08.rel
hash: 921e42202bf6610c17b3c76a5806089e434f8a61
symbols: config/Shield/rels/d_a_kytag08/symbols.txt
splits: config/Shield/rels/d_a_kytag08/splits.txt
# map: orig/Shield/fixed_maps/d_a_kytag08.map
- object: files/rel/Rfinal/Release/d_a_kytag09.rel
hash: 39cdb09fded768cdf42071d686fecfb61339cf0d
symbols: config/Shield/rels/d_a_kytag09/symbols.txt
splits: config/Shield/rels/d_a_kytag09/splits.txt
# map: orig/Shield/fixed_maps/d_a_kytag09.map
- object: files/rel/Rfinal/Release/d_a_kytag12.rel
hash: df9e0ecdf037a4de495b2c04d60bbf6a640fec84
symbols: config/Shield/rels/d_a_kytag12/symbols.txt
splits: config/Shield/rels/d_a_kytag12/splits.txt
# map: orig/Shield/fixed_maps/d_a_kytag12.map
- object: files/rel/Rfinal/Release/d_a_kytag13.rel
hash: e6c2f57250ad071bbacfbe50051470e6bf4f1cce
symbols: config/Shield/rels/d_a_kytag13/symbols.txt
splits: config/Shield/rels/d_a_kytag13/splits.txt
# map: orig/Shield/fixed_maps/d_a_kytag13.map
- object: files/rel/Rfinal/Release/d_a_kytag15.rel
hash: 70a94f7ac3e960a63b0c12f9b1874521c4feb964
symbols: config/Shield/rels/d_a_kytag15/symbols.txt
splits: config/Shield/rels/d_a_kytag15/splits.txt
# map: orig/Shield/fixed_maps/d_a_kytag15.map
- object: files/rel/Rfinal/Release/d_a_kytag16.rel
hash: 13695efeda41dd5d43d45b394b1862557d91b8c1
symbols: config/Shield/rels/d_a_kytag16/symbols.txt
splits: config/Shield/rels/d_a_kytag16/splits.txt
# map: orig/Shield/fixed_maps/d_a_kytag16.map
- object: files/rel/Rfinal/Release/d_a_mant.rel
hash: 99de8f3f2f4afc6373333428a6872d883e3a8c09
symbols: config/Shield/rels/d_a_mant/symbols.txt
splits: config/Shield/rels/d_a_mant/splits.txt
# map: orig/Shield/fixed_maps/d_a_mant.map
extract:
- symbol: l_Egnd_mantTEX
binary: assets/l_Egnd_mantTEX.bin
header: assets/l_Egnd_mantTEX.h
- symbol: l_Egnd_mantTEX_U
binary: assets/l_Egnd_mantTEX_U.bin
header: assets/l_Egnd_mantTEX_U.h
- symbol: l_Egnd_mantPAL
binary: assets/l_Egnd_mantPAL.bin
header: assets/l_Egnd_mantPAL.h
- symbol: l_Egnd_mantDL
binary: assets/l_Egnd_mantDL.bin
header: assets/l_Egnd_mantDL.h
- object: files/rel/Rfinal/Release/d_a_mg_fshop.rel
hash: 91c6b72666df998fdaa3fd26c0f8d6ced6a1d51e
symbols: config/Shield/rels/d_a_mg_fshop/symbols.txt
splits: config/Shield/rels/d_a_mg_fshop/splits.txt
# map: orig/Shield/fixed_maps/d_a_mg_fshop.map
- object: files/rel/Rfinal/Release/d_a_mirror.rel
hash: fcdbf5bfa8313e44d8289c73e1c993e5a8b56ef6
symbols: config/Shield/rels/d_a_mirror/symbols.txt
splits: config/Shield/rels/d_a_mirror/splits.txt
# map: orig/Shield/fixed_maps/d_a_mirror.map
- object: files/rel/Rfinal/Release/d_a_movie_player.rel
hash: 1de1e21e0e783e328b897615a0ce87fb7cccc497
symbols: config/Shield/rels/d_a_movie_player/symbols.txt
splits: config/Shield/rels/d_a_movie_player/splits.txt
# map: orig/Shield/fixed_maps/d_a_movie_player.map
- object: files/rel/Rfinal/Release/d_a_myna.rel
hash: 90a491716fb6d0fbafe43afd6aefdd8f0d3d34a4
symbols: config/Shield/rels/d_a_myna/symbols.txt
splits: config/Shield/rels/d_a_myna/splits.txt
# map: orig/Shield/fixed_maps/d_a_myna.map
- object: files/rel/Rfinal/Release/d_a_ni.rel
hash: f8cd0a4d54a7c80f078649922dd5f060f20e4f69
symbols: config/Shield/rels/d_a_ni/symbols.txt
splits: config/Shield/rels/d_a_ni/splits.txt
# map: orig/Shield/fixed_maps/d_a_ni.map
- object: files/rel/Rfinal/Release/d_a_npc_aru.rel
hash: 858cf497ade176737b7f443e24ba4d3430dc80b1
symbols: config/Shield/rels/d_a_npc_aru/symbols.txt
splits: config/Shield/rels/d_a_npc_aru/splits.txt
# map: orig/Shield/fixed_maps/d_a_npc_aru.map
- object: files/rel/Rfinal/Release/d_a_npc_ash.rel
hash: b529040bb14baff7a40d6d53b9cbad36a2999f90
symbols: config/Shield/rels/d_a_npc_ash/symbols.txt
splits: config/Shield/rels/d_a_npc_ash/splits.txt
# map: orig/Shield/fixed_maps/d_a_npc_ash.map
- object: files/rel/Rfinal/Release/d_a_npc_ashB.rel
hash: 56b3055d3a4b882c819d99d156ff236f7b00f630
symbols: config/Shield/rels/d_a_npc_ashB/symbols.txt
splits: config/Shield/rels/d_a_npc_ashB/splits.txt
# map: orig/Shield/fixed_maps/d_a_npc_ashB.map
- object: files/rel/Rfinal/Release/d_a_npc_bans.rel
hash: 05a128d7cb565fd70f95b0f8575b460be3901760
symbols: config/Shield/rels/d_a_npc_bans/symbols.txt
splits: config/Shield/rels/d_a_npc_bans/splits.txt
# map: orig/Shield/fixed_maps/d_a_npc_bans.map
- object: files/rel/Rfinal/Release/d_a_npc_blue_ns.rel
hash: b25ee24912ed69841237443426ab2a1fa5abc444
symbols: config/Shield/rels/d_a_npc_blue_ns/symbols.txt
splits: config/Shield/rels/d_a_npc_blue_ns/splits.txt
# map: orig/Shield/fixed_maps/d_a_npc_blue_ns.map
- object: files/rel/Rfinal/Release/d_a_npc_bou.rel
hash: 448d5270fefbff6b62043fc7075c2b6e19496d7f
symbols: config/Shield/rels/d_a_npc_bou/symbols.txt
splits: config/Shield/rels/d_a_npc_bou/splits.txt
# map: orig/Shield/fixed_maps/d_a_npc_bou.map
- object: files/rel/Rfinal/Release/d_a_npc_bouS.rel
hash: c01b66a077ce90c00107ff087ca4369d34ebecb1
symbols: config/Shield/rels/d_a_npc_bouS/symbols.txt
splits: config/Shield/rels/d_a_npc_bouS/splits.txt
# map: orig/Shield/fixed_maps/d_a_npc_bouS.map
- object: files/rel/Rfinal/Release/d_a_npc_cdn3.rel
hash: a3d0b1919cf012026a9a81d3b5044a7c04e42b7d
symbols: config/Shield/rels/d_a_npc_cdn3/symbols.txt
splits: config/Shield/rels/d_a_npc_cdn3/splits.txt
# map: orig/Shield/fixed_maps/d_a_npc_cdn3.map
- object: files/rel/Rfinal/Release/d_a_npc_chat.rel
hash: ba643a183ab20af396f2f64a98e3ca9ae89e4a1e
symbols: config/Shield/rels/d_a_npc_chat/symbols.txt
splits: config/Shield/rels/d_a_npc_chat/splits.txt
# map: orig/Shield/fixed_maps/d_a_npc_chat.map
- object: files/rel/Rfinal/Release/d_a_npc_chin.rel
hash: c1684a6a66faa6f87810bf38986acd87a7fe2f20
symbols: config/Shield/rels/d_a_npc_chin/symbols.txt
splits: config/Shield/rels/d_a_npc_chin/splits.txt
# map: orig/Shield/fixed_maps/d_a_npc_chin.map
- object: files/rel/Rfinal/Release/d_a_npc_clerka.rel
hash: cbadde5470db84d6da7d7fa88ddccd6fb6c43955
symbols: config/Shield/rels/d_a_npc_clerka/symbols.txt
splits: config/Shield/rels/d_a_npc_clerka/splits.txt
# map: orig/Shield/fixed_maps/d_a_npc_clerka.map
- object: files/rel/Rfinal/Release/d_a_npc_clerkb.rel
hash: 43a48757eaf02c1f7a4aa2d07ade3e8a0a581a7d
symbols: config/Shield/rels/d_a_npc_clerkb/symbols.txt
splits: config/Shield/rels/d_a_npc_clerkb/splits.txt
# map: orig/Shield/fixed_maps/d_a_npc_clerkb.map
- object: files/rel/Rfinal/Release/d_a_npc_clerkt.rel
hash: 72b810c4c214d06e4fa45d4d2f971fdcfcb50975
symbols: config/Shield/rels/d_a_npc_clerkt/symbols.txt
splits: config/Shield/rels/d_a_npc_clerkt/splits.txt
# map: orig/Shield/fixed_maps/d_a_npc_clerkt.map
- object: files/rel/Rfinal/Release/d_a_npc_coach.rel
hash: a5d2fcafca617c3c9a071810dd88d43d2d56cc7e
symbols: config/Shield/rels/d_a_npc_coach/symbols.txt
splits: config/Shield/rels/d_a_npc_coach/splits.txt
# map: orig/Shield/fixed_maps/d_a_npc_coach.map
- object: files/rel/Rfinal/Release/d_a_npc_df.rel
hash: 42dfd20760a28675fbc67f670f50fdcb57bf8ca7
symbols: config/Shield/rels/d_a_npc_df/symbols.txt
splits: config/Shield/rels/d_a_npc_df/splits.txt
# map: orig/Shield/fixed_maps/d_a_npc_df.map
- object: files/rel/Rfinal/Release/d_a_npc_doc.rel
hash: c9e9051794e5076fe503d49d656f008299e58ed7
symbols: config/Shield/rels/d_a_npc_doc/symbols.txt
splits: config/Shield/rels/d_a_npc_doc/splits.txt
# map: orig/Shield/fixed_maps/d_a_npc_doc.map
- object: files/rel/Rfinal/Release/d_a_npc_doorboy.rel
hash: c9e7d99b8d9d6a956cbecc960df0c5d6f2274f1c
symbols: config/Shield/rels/d_a_npc_doorboy/symbols.txt
splits: config/Shield/rels/d_a_npc_doorboy/splits.txt
# map: orig/Shield/fixed_maps/d_a_npc_doorboy.map
- object: files/rel/Rfinal/Release/d_a_npc_drainSol.rel
hash: 167361fcddfeb3bc1e6856d7bfb059dada812e74
symbols: config/Shield/rels/d_a_npc_drainSol/symbols.txt
splits: config/Shield/rels/d_a_npc_drainSol/splits.txt
# map: orig/Shield/fixed_maps/d_a_npc_drainSol.map
- object: files/rel/Rfinal/Release/d_a_npc_du.rel
hash: de412490051ca7477e3c1bbc0c0079608e37d818
symbols: config/Shield/rels/d_a_npc_du/symbols.txt
splits: config/Shield/rels/d_a_npc_du/splits.txt
# map: orig/Shield/fixed_maps/d_a_npc_du.map
- object: files/rel/Rfinal/Release/d_a_npc_fairy.rel
hash: d176b8b86c476b590cd45a8aed6dda51202ac8a1
symbols: config/Shield/rels/d_a_npc_fairy/symbols.txt
splits: config/Shield/rels/d_a_npc_fairy/splits.txt
# map: orig/Shield/fixed_maps/d_a_npc_fairy.map
- object: files/rel/Rfinal/Release/d_a_npc_fguard.rel
hash: c677fc52d0912cfa64e3021e4f08a64a6c4a7173
symbols: config/Shield/rels/d_a_npc_fguard/symbols.txt
splits: config/Shield/rels/d_a_npc_fguard/splits.txt
# map: orig/Shield/fixed_maps/d_a_npc_fguard.map
- object: files/rel/Rfinal/Release/d_a_npc_gnd.rel
hash: 8c98629e049daeaf6e481c30fc568572c06dd98e
symbols: config/Shield/rels/d_a_npc_gnd/symbols.txt
splits: config/Shield/rels/d_a_npc_gnd/splits.txt
# map: orig/Shield/fixed_maps/d_a_npc_gnd.map
- object: files/rel/Rfinal/Release/d_a_npc_gra.rel
hash: a1b5c7732ac94227a578186a444f47c8dbb73913
symbols: config/Shield/rels/d_a_npc_gra/symbols.txt
splits: config/Shield/rels/d_a_npc_gra/splits.txt
# map: orig/Shield/fixed_maps/d_a_npc_gra.map
- object: files/rel/Rfinal/Release/d_a_npc_grc.rel
hash: d5db91edd60f11ad6f451bb80ca88585c2bf3ea8
symbols: config/Shield/rels/d_a_npc_grc/symbols.txt
splits: config/Shield/rels/d_a_npc_grc/splits.txt
# map: orig/Shield/fixed_maps/d_a_npc_grc.map
- object: files/rel/Rfinal/Release/d_a_npc_grd.rel
hash: be208ba8dcbea48ebd980303f3e0fb52968141d5
symbols: config/Shield/rels/d_a_npc_grd/symbols.txt
splits: config/Shield/rels/d_a_npc_grd/splits.txt
# map: orig/Shield/fixed_maps/d_a_npc_grd.map
- object: files/rel/Rfinal/Release/d_a_npc_grm.rel
hash: cf0eb2cdb52b64ec09f1443651afa56f5bd168dc
symbols: config/Shield/rels/d_a_npc_grm/symbols.txt
splits: config/Shield/rels/d_a_npc_grm/splits.txt
# map: orig/Shield/fixed_maps/d_a_npc_grm.map
- object: files/rel/Rfinal/Release/d_a_npc_grmc.rel
hash: 5521321e2ed5b396764c096ff11217b2bf0af1f0
symbols: config/Shield/rels/d_a_npc_grmc/symbols.txt
splits: config/Shield/rels/d_a_npc_grmc/splits.txt
# map: orig/Shield/fixed_maps/d_a_npc_grmc.map
- object: files/rel/Rfinal/Release/d_a_npc_gro.rel
hash: 78e1f0b3e1d7a9ee0c009a8910a304c50d4c7352
symbols: config/Shield/rels/d_a_npc_gro/symbols.txt
splits: config/Shield/rels/d_a_npc_gro/splits.txt
# map: orig/Shield/fixed_maps/d_a_npc_gro.map
- object: files/rel/Rfinal/Release/d_a_npc_grr.rel
hash: 18378fb62379ceac5141afe69287b30a52f56cb0
symbols: config/Shield/rels/d_a_npc_grr/symbols.txt
splits: config/Shield/rels/d_a_npc_grr/splits.txt
# map: orig/Shield/fixed_maps/d_a_npc_grr.map
- object: files/rel/Rfinal/Release/d_a_npc_grs.rel
hash: 2f1911aa314625aded4f747cb349362b55f37cc5
symbols: config/Shield/rels/d_a_npc_grs/symbols.txt
splits: config/Shield/rels/d_a_npc_grs/splits.txt
# map: orig/Shield/fixed_maps/d_a_npc_grs.map
- object: files/rel/Rfinal/Release/d_a_npc_grz.rel
hash: 542ef1be1f44dadd5a459cff154428199e5f4a47
symbols: config/Shield/rels/d_a_npc_grz/symbols.txt
splits: config/Shield/rels/d_a_npc_grz/splits.txt
# map: orig/Shield/fixed_maps/d_a_npc_grz.map
- object: files/rel/Rfinal/Release/d_a_npc_guard.rel
hash: 4ff904666a58debea48b5b90e5d8c5628a6df7c6
symbols: config/Shield/rels/d_a_npc_guard/symbols.txt
splits: config/Shield/rels/d_a_npc_guard/splits.txt
# map: orig/Shield/fixed_maps/d_a_npc_guard.map
- object: files/rel/Rfinal/Release/d_a_npc_gwolf.rel
hash: 35396518ec451d26be33c3478271e856d907cc73
symbols: config/Shield/rels/d_a_npc_gwolf/symbols.txt
splits: config/Shield/rels/d_a_npc_gwolf/splits.txt
# map: orig/Shield/fixed_maps/d_a_npc_gwolf.map
- object: files/rel/Rfinal/Release/d_a_npc_hanjo.rel
hash: a6520a5932be02c08255f1883f827b90b7a2c948
symbols: config/Shield/rels/d_a_npc_hanjo/symbols.txt
splits: config/Shield/rels/d_a_npc_hanjo/splits.txt
# map: orig/Shield/fixed_maps/d_a_npc_hanjo.map
- object: files/rel/Rfinal/Release/d_a_npc_henna0.rel
hash: ae7f1d99240a3d86d4ac29178c59d5b3d5fadf9a
symbols: config/Shield/rels/d_a_npc_henna0/symbols.txt
splits: config/Shield/rels/d_a_npc_henna0/splits.txt
# map: orig/Shield/fixed_maps/d_a_npc_henna0.map
- object: files/rel/Rfinal/Release/d_a_npc_hoz.rel
hash: 8773bc56dbb8d15bce03d4948b0795f75c379306
symbols: config/Shield/rels/d_a_npc_hoz/symbols.txt
splits: config/Shield/rels/d_a_npc_hoz/splits.txt
# map: orig/Shield/fixed_maps/d_a_npc_hoz.map
- object: files/rel/Rfinal/Release/d_a_npc_impal.rel
hash: 2a6398110503a0461c915b95bd7c289a71e18db5
symbols: config/Shield/rels/d_a_npc_impal/symbols.txt
splits: config/Shield/rels/d_a_npc_impal/splits.txt
# map: orig/Shield/fixed_maps/d_a_npc_impal.map
- object: files/rel/Rfinal/Release/d_a_npc_inko.rel
hash: 0d87c876e72c44c2acd4a4b7946d2ed2473947a8
symbols: config/Shield/rels/d_a_npc_inko/symbols.txt
splits: config/Shield/rels/d_a_npc_inko/splits.txt
# map: orig/Shield/fixed_maps/d_a_npc_inko.map
- object: files/rel/Rfinal/Release/d_a_npc_ins.rel
hash: 57daadcc6347b5d8f18ee7ef4355a345877c0aae
symbols: config/Shield/rels/d_a_npc_ins/symbols.txt
splits: config/Shield/rels/d_a_npc_ins/splits.txt
# map: orig/Shield/fixed_maps/d_a_npc_ins.map
- object: files/rel/Rfinal/Release/d_a_npc_jagar.rel
hash: 33d1d0cc92ca4c45f83cc3335a55f1631518b16b
symbols: config/Shield/rels/d_a_npc_jagar/symbols.txt
splits: config/Shield/rels/d_a_npc_jagar/splits.txt
# map: orig/Shield/fixed_maps/d_a_npc_jagar.map
- object: files/rel/Rfinal/Release/d_a_npc_kasi_hana.rel
hash: ef69437d28e23adfc608c31f210507a14800eac4
symbols: config/Shield/rels/d_a_npc_kasi_hana/symbols.txt
splits: config/Shield/rels/d_a_npc_kasi_hana/splits.txt
# map: orig/Shield/fixed_maps/d_a_npc_kasi_hana.map
- object: files/rel/Rfinal/Release/d_a_npc_kasi_kyu.rel
hash: b543793a273b177fd96847cc7c289e7cc38eaa74
symbols: config/Shield/rels/d_a_npc_kasi_kyu/symbols.txt
splits: config/Shield/rels/d_a_npc_kasi_kyu/splits.txt
# map: orig/Shield/fixed_maps/d_a_npc_kasi_kyu.map
- object: files/rel/Rfinal/Release/d_a_npc_kasi_mich.rel
hash: 84a213fdaabc05f5ea09b72314b108b5e302a0cf
symbols: config/Shield/rels/d_a_npc_kasi_mich/symbols.txt
splits: config/Shield/rels/d_a_npc_kasi_mich/splits.txt
# map: orig/Shield/fixed_maps/d_a_npc_kasi_mich.map
- object: files/rel/Rfinal/Release/d_a_npc_kdk.rel
hash: 48ed5d00a30f88a2ae82f68615be4a5b8921539d
symbols: config/Shield/rels/d_a_npc_kdk/symbols.txt
splits: config/Shield/rels/d_a_npc_kdk/splits.txt
# map: orig/Shield/fixed_maps/d_a_npc_kdk.map
- object: files/rel/Rfinal/Release/d_a_npc_kn.rel
hash: 4e1118457dbe21b48daff6a4c28cb40fae029da4
symbols: config/Shield/rels/d_a_npc_kn/symbols.txt
splits: config/Shield/rels/d_a_npc_kn/splits.txt
# map: orig/Shield/fixed_maps/d_a_npc_kn.map
- object: files/rel/Rfinal/Release/d_a_npc_knj.rel
hash: e422937409bcbe99e1ef3ebf23c31a00d27a9ab2
symbols: config/Shield/rels/d_a_npc_knj/symbols.txt
splits: config/Shield/rels/d_a_npc_knj/splits.txt
# map: orig/Shield/fixed_maps/d_a_npc_knj.map
- object: files/rel/Rfinal/Release/d_a_npc_kolinb.rel
hash: ba8bd48a9df6554df94798fdd45b6510a5a3d03e
symbols: config/Shield/rels/d_a_npc_kolinb/symbols.txt
splits: config/Shield/rels/d_a_npc_kolinb/splits.txt
# map: orig/Shield/fixed_maps/d_a_npc_kolinb.map
- object: files/rel/Rfinal/Release/d_a_npc_ks.rel
hash: be6827243efd71305a27ebf67112577b41e701a3
symbols: config/Shield/rels/d_a_npc_ks/symbols.txt
splits: config/Shield/rels/d_a_npc_ks/splits.txt
# map: orig/Shield/fixed_maps/d_a_npc_ks.map
- object: files/rel/Rfinal/Release/d_a_npc_kyury.rel
hash: a16ac1eaff7dd7fa04ae8b8e8046842269456bcc
symbols: config/Shield/rels/d_a_npc_kyury/symbols.txt
splits: config/Shield/rels/d_a_npc_kyury/splits.txt
# map: orig/Shield/fixed_maps/d_a_npc_kyury.map
- object: files/rel/Rfinal/Release/d_a_npc_len.rel
hash: 059307bc4a02d6c121a79f8ed633a8d6eacd2f7c
symbols: config/Shield/rels/d_a_npc_len/symbols.txt
splits: config/Shield/rels/d_a_npc_len/splits.txt
# map: orig/Shield/fixed_maps/d_a_npc_len.map
- object: files/rel/Rfinal/Release/d_a_npc_lf.rel
hash: a6c8f7e4eab5f034304d436ef21bda93c963bc76
symbols: config/Shield/rels/d_a_npc_lf/symbols.txt
splits: config/Shield/rels/d_a_npc_lf/splits.txt
# map: orig/Shield/fixed_maps/d_a_npc_lf.map
- object: files/rel/Rfinal/Release/d_a_npc_lud.rel
hash: 54ecaa781c458d0bc816f263a9db4a1d5248942a
symbols: config/Shield/rels/d_a_npc_lud/symbols.txt
splits: config/Shield/rels/d_a_npc_lud/splits.txt
# map: orig/Shield/fixed_maps/d_a_npc_lud.map
- object: files/rel/Rfinal/Release/d_a_npc_midp.rel
hash: b9f716ab2a8925cbc1f700107229749a67456307
symbols: config/Shield/rels/d_a_npc_midp/symbols.txt
splits: config/Shield/rels/d_a_npc_midp/splits.txt
# map: orig/Shield/fixed_maps/d_a_npc_midp.map
- object: files/rel/Rfinal/Release/d_a_npc_mk.rel
hash: e9e1d651b986ac1d6188de47b4a515a8079f8be4
symbols: config/Shield/rels/d_a_npc_mk/symbols.txt
splits: config/Shield/rels/d_a_npc_mk/splits.txt
# map: orig/Shield/fixed_maps/d_a_npc_mk.map
- object: files/rel/Rfinal/Release/d_a_npc_moi.rel
hash: ad7ca47726c6e9f3f0961c1be2fe5259955f9e53
symbols: config/Shield/rels/d_a_npc_moi/symbols.txt
splits: config/Shield/rels/d_a_npc_moi/splits.txt
# map: orig/Shield/fixed_maps/d_a_npc_moi.map
- object: files/rel/Rfinal/Release/d_a_npc_moir.rel
hash: 7bc18bedc7b15f024094242b80f4e616a2612a32
symbols: config/Shield/rels/d_a_npc_moir/symbols.txt
splits: config/Shield/rels/d_a_npc_moir/splits.txt
# map: orig/Shield/fixed_maps/d_a_npc_moir.map
- object: files/rel/Rfinal/Release/d_a_npc_myna2.rel
hash: 33276105a27010f11ae79012b18dd2f504c73a1f
symbols: config/Shield/rels/d_a_npc_myna2/symbols.txt
splits: config/Shield/rels/d_a_npc_myna2/splits.txt
# map: orig/Shield/fixed_maps/d_a_npc_myna2.map
- object: files/rel/Rfinal/Release/d_a_npc_ne.rel
hash: 9ee73fae37e069aca25fbfa732bd80bad6cb3cae
symbols: config/Shield/rels/d_a_npc_ne/symbols.txt
splits: config/Shield/rels/d_a_npc_ne/splits.txt
# map: orig/Shield/fixed_maps/d_a_npc_ne.map
- object: files/rel/Rfinal/Release/d_a_npc_p2.rel
hash: f77e1595be793810f002ca9790c76651ab2f64ce
symbols: config/Shield/rels/d_a_npc_p2/symbols.txt
splits: config/Shield/rels/d_a_npc_p2/splits.txt
# map: orig/Shield/fixed_maps/d_a_npc_p2.map
- object: files/rel/Rfinal/Release/d_a_npc_pachi_besu.rel
hash: 5780170e9eff83aabdbe876d6898aeae8569d06e
symbols: config/Shield/rels/d_a_npc_pachi_besu/symbols.txt
splits: config/Shield/rels/d_a_npc_pachi_besu/splits.txt
# map: orig/Shield/fixed_maps/d_a_npc_pachi_besu.map
- object: files/rel/Rfinal/Release/d_a_npc_pachi_maro.rel
hash: 4f6617e4fdeab00558a159b9a0a8e724af298bb8
symbols: config/Shield/rels/d_a_npc_pachi_maro/symbols.txt
splits: config/Shield/rels/d_a_npc_pachi_maro/splits.txt
# map: orig/Shield/fixed_maps/d_a_npc_pachi_maro.map
- object: files/rel/Rfinal/Release/d_a_npc_pachi_taro.rel
hash: 7becaa19a6ec66218c8804c8e4e4d00fa003e18d
symbols: config/Shield/rels/d_a_npc_pachi_taro/symbols.txt
splits: config/Shield/rels/d_a_npc_pachi_taro/splits.txt
# map: orig/Shield/fixed_maps/d_a_npc_pachi_taro.map
- object: files/rel/Rfinal/Release/d_a_npc_passer.rel
hash: 9709439aaa0d8663e995e982a4968b3b61eaba50
symbols: config/Shield/rels/d_a_npc_passer/symbols.txt
splits: config/Shield/rels/d_a_npc_passer/splits.txt
# map: orig/Shield/fixed_maps/d_a_npc_passer.map
- object: files/rel/Rfinal/Release/d_a_npc_passer2.rel
hash: 1c3aa6b8d056dd558ad117e49ffc83f69b3ffb24
symbols: config/Shield/rels/d_a_npc_passer2/symbols.txt
splits: config/Shield/rels/d_a_npc_passer2/splits.txt
# map: orig/Shield/fixed_maps/d_a_npc_passer2.map
- object: files/rel/Rfinal/Release/d_a_npc_post.rel
hash: 4af4e26b68e947a79a065c281407c2971ee01d97
symbols: config/Shield/rels/d_a_npc_post/symbols.txt
splits: config/Shield/rels/d_a_npc_post/splits.txt
# map: orig/Shield/fixed_maps/d_a_npc_post.map
- object: files/rel/Rfinal/Release/d_a_npc_pouya.rel
hash: 9f4754337016f63d120e24c51a8a53d35952effd
symbols: config/Shield/rels/d_a_npc_pouya/symbols.txt
splits: config/Shield/rels/d_a_npc_pouya/splits.txt
# map: orig/Shield/fixed_maps/d_a_npc_pouya.map
- object: files/rel/Rfinal/Release/d_a_npc_prayer.rel
hash: 731dec8988ca1fdcd1283ceea69f0027e1842a82
symbols: config/Shield/rels/d_a_npc_prayer/symbols.txt
splits: config/Shield/rels/d_a_npc_prayer/splits.txt
# map: orig/Shield/fixed_maps/d_a_npc_prayer.map
- object: files/rel/Rfinal/Release/d_a_npc_raca.rel
hash: 5d8bc46c7057e7a4b9a44d077a40a325eac755b5
symbols: config/Shield/rels/d_a_npc_raca/symbols.txt
splits: config/Shield/rels/d_a_npc_raca/splits.txt
# map: orig/Shield/fixed_maps/d_a_npc_raca.map
- object: files/rel/Rfinal/Release/d_a_npc_rafrel.rel
hash: 568d2cc25a7147a607ab0c3b33dcf4ee6473999b
symbols: config/Shield/rels/d_a_npc_rafrel/symbols.txt
splits: config/Shield/rels/d_a_npc_rafrel/splits.txt
# map: orig/Shield/fixed_maps/d_a_npc_rafrel.map
- object: files/rel/Rfinal/Release/d_a_npc_saru.rel
hash: 27ca5f5af6d6dba6049b4b64a4b0dbae3104d6a2
symbols: config/Shield/rels/d_a_npc_saru/symbols.txt
splits: config/Shield/rels/d_a_npc_saru/splits.txt
# map: orig/Shield/fixed_maps/d_a_npc_saru.map
- object: files/rel/Rfinal/Release/d_a_npc_seib.rel
hash: 2eeb7b2c7f03d55eab67ed8d5f4acd96ee730dbf
symbols: config/Shield/rels/d_a_npc_seib/symbols.txt
splits: config/Shield/rels/d_a_npc_seib/splits.txt
# map: orig/Shield/fixed_maps/d_a_npc_seib.map
- object: files/rel/Rfinal/Release/d_a_npc_seic.rel
hash: 38d3d1d9fd099b90f18821f7ee310ba4450f969f
symbols: config/Shield/rels/d_a_npc_seic/symbols.txt
splits: config/Shield/rels/d_a_npc_seic/splits.txt
# map: orig/Shield/fixed_maps/d_a_npc_seic.map
- object: files/rel/Rfinal/Release/d_a_npc_seid.rel
hash: 5faaa35d4d6e3191c46b319db94b24b16cd9c4f6
symbols: config/Shield/rels/d_a_npc_seid/symbols.txt
splits: config/Shield/rels/d_a_npc_seid/splits.txt
# map: orig/Shield/fixed_maps/d_a_npc_seid.map
- object: files/rel/Rfinal/Release/d_a_npc_seira.rel
hash: c05892700d725f1ccc1ecc7167b15d119ef30247
symbols: config/Shield/rels/d_a_npc_seira/symbols.txt
splits: config/Shield/rels/d_a_npc_seira/splits.txt
# map: orig/Shield/fixed_maps/d_a_npc_seira.map
- object: files/rel/Rfinal/Release/d_a_npc_seira2.rel
hash: ec712d423f25a561a617b8ac868bf92d431eb2cc
symbols: config/Shield/rels/d_a_npc_seira2/symbols.txt
splits: config/Shield/rels/d_a_npc_seira2/splits.txt
# map: orig/Shield/fixed_maps/d_a_npc_seira2.map
- object: files/rel/Rfinal/Release/d_a_npc_seirei.rel
hash: ae5bac39d140e5b99fb6d61f808d9a49a6f901a1
symbols: config/Shield/rels/d_a_npc_seirei/symbols.txt
splits: config/Shield/rels/d_a_npc_seirei/splits.txt
# map: orig/Shield/fixed_maps/d_a_npc_seirei.map
- object: files/rel/Rfinal/Release/d_a_npc_shad.rel
hash: 372511927edc06aeeb074ffb915bc2a875bd7884
symbols: config/Shield/rels/d_a_npc_shad/symbols.txt
splits: config/Shield/rels/d_a_npc_shad/splits.txt
# map: orig/Shield/fixed_maps/d_a_npc_shad.map
- object: files/rel/Rfinal/Release/d_a_npc_shaman.rel
hash: 9e6f265450eb2d9ca73e1b55d050cf886f234f6c
symbols: config/Shield/rels/d_a_npc_shaman/symbols.txt
splits: config/Shield/rels/d_a_npc_shaman/splits.txt
# map: orig/Shield/fixed_maps/d_a_npc_shaman.map
- object: files/rel/Rfinal/Release/d_a_npc_shoe.rel
hash: e49ba1978dcfa4b738d5c57fdf9e5e7378146652
symbols: config/Shield/rels/d_a_npc_shoe/symbols.txt
splits: config/Shield/rels/d_a_npc_shoe/splits.txt
# map: orig/Shield/fixed_maps/d_a_npc_shoe.map
- object: files/rel/Rfinal/Release/d_a_npc_shop0.rel
hash: 80b1c8567c7734f72c1cf2d4fb2771285aa08257
symbols: config/Shield/rels/d_a_npc_shop0/symbols.txt
splits: config/Shield/rels/d_a_npc_shop0/splits.txt
# map: orig/Shield/fixed_maps/d_a_npc_shop0.map
- object: files/rel/Rfinal/Release/d_a_npc_shop_maro.rel
hash: db4a0b0a7bb40d762d49ca5d9d0ded140e33993b
symbols: config/Shield/rels/d_a_npc_shop_maro/symbols.txt
splits: config/Shield/rels/d_a_npc_shop_maro/splits.txt
# map: orig/Shield/fixed_maps/d_a_npc_shop_maro.map
- object: files/rel/Rfinal/Release/d_a_npc_sola.rel
hash: 61b8e2fcb2619affe1c1090ec28eb9aa8de934eb
symbols: config/Shield/rels/d_a_npc_sola/symbols.txt
splits: config/Shield/rels/d_a_npc_sola/splits.txt
# map: orig/Shield/fixed_maps/d_a_npc_sola.map
- object: files/rel/Rfinal/Release/d_a_npc_soldierA.rel
hash: 2a6e8f8b7aa215a3273163d6c877ab52a6cae354
symbols: config/Shield/rels/d_a_npc_soldierA/symbols.txt
splits: config/Shield/rels/d_a_npc_soldierA/splits.txt
# map: orig/Shield/fixed_maps/d_a_npc_soldierA.map
- object: files/rel/Rfinal/Release/d_a_npc_soldierB.rel
hash: b757a49334143e73db0d8f41437ab128f55662e1
symbols: config/Shield/rels/d_a_npc_soldierB/symbols.txt
splits: config/Shield/rels/d_a_npc_soldierB/splits.txt
# map: orig/Shield/fixed_maps/d_a_npc_soldierB.map
- object: files/rel/Rfinal/Release/d_a_npc_sq.rel
hash: 011d063c986c1b3ac9f7e2db07912b6d9b6283fe
symbols: config/Shield/rels/d_a_npc_sq/symbols.txt
splits: config/Shield/rels/d_a_npc_sq/splits.txt
# map: orig/Shield/fixed_maps/d_a_npc_sq.map
- object: files/rel/Rfinal/Release/d_a_npc_the.rel
hash: 683c30e2ac72431c4b52a48c41134c784635c16f
symbols: config/Shield/rels/d_a_npc_the/symbols.txt
splits: config/Shield/rels/d_a_npc_the/splits.txt
# map: orig/Shield/fixed_maps/d_a_npc_the.map
- object: files/rel/Rfinal/Release/d_a_npc_theB.rel
hash: 37bd18326eb4271d23a9030a48701ef68cf76439
symbols: config/Shield/rels/d_a_npc_theB/symbols.txt
splits: config/Shield/rels/d_a_npc_theB/splits.txt
# map: orig/Shield/fixed_maps/d_a_npc_theB.map
- object: files/rel/Rfinal/Release/d_a_npc_tk.rel
hash: 9bff864a93185f9edfa75785ce187c301607c78b
symbols: config/Shield/rels/d_a_npc_tk/symbols.txt
splits: config/Shield/rels/d_a_npc_tk/splits.txt
# map: orig/Shield/fixed_maps/d_a_npc_tk.map
- object: files/rel/Rfinal/Release/d_a_npc_tkc.rel
hash: 7fdfa397219a63cf1e0e1cd54e4ea033d2819703
symbols: config/Shield/rels/d_a_npc_tkc/symbols.txt
splits: config/Shield/rels/d_a_npc_tkc/splits.txt
# map: orig/Shield/fixed_maps/d_a_npc_tkc.map
- object: files/rel/Rfinal/Release/d_a_npc_tkj2.rel
hash: 331c347054e92203f51aed109cb0ef238ab243fc
symbols: config/Shield/rels/d_a_npc_tkj2/symbols.txt
splits: config/Shield/rels/d_a_npc_tkj2/splits.txt
# map: orig/Shield/fixed_maps/d_a_npc_tkj2.map
- object: files/rel/Rfinal/Release/d_a_npc_tks.rel
hash: c55e0bd80a2cfe4f0fc9a2cd4f20ffd5ca8123ab
symbols: config/Shield/rels/d_a_npc_tks/symbols.txt
splits: config/Shield/rels/d_a_npc_tks/splits.txt
# map: orig/Shield/fixed_maps/d_a_npc_tks.map
- object: files/rel/Rfinal/Release/d_a_npc_toby.rel
hash: 17d3a19e28b0c627dc242cbed3aa0173f64ec0b2
symbols: config/Shield/rels/d_a_npc_toby/symbols.txt
splits: config/Shield/rels/d_a_npc_toby/splits.txt
# map: orig/Shield/fixed_maps/d_a_npc_toby.map
- object: files/rel/Rfinal/Release/d_a_npc_tr.rel
hash: 61301de56d1eb35226a66df107f63fad190d63d5
symbols: config/Shield/rels/d_a_npc_tr/symbols.txt
splits: config/Shield/rels/d_a_npc_tr/splits.txt
# map: orig/Shield/fixed_maps/d_a_npc_tr.map
- object: files/rel/Rfinal/Release/d_a_npc_uri.rel
hash: df0c13dbd17ec78b85e07bea9ae28434569af403
symbols: config/Shield/rels/d_a_npc_uri/symbols.txt
splits: config/Shield/rels/d_a_npc_uri/splits.txt
# map: orig/Shield/fixed_maps/d_a_npc_uri.map
- object: files/rel/Rfinal/Release/d_a_npc_worm.rel
hash: 9fbf27bf8bb4b1e6f7517bbe5f4e6ea5c0675393
symbols: config/Shield/rels/d_a_npc_worm/symbols.txt
splits: config/Shield/rels/d_a_npc_worm/splits.txt
# map: orig/Shield/fixed_maps/d_a_npc_worm.map
- object: files/rel/Rfinal/Release/d_a_npc_wrestler.rel
hash: bd6cbce39059db011942e010d9635364fbec19ee
symbols: config/Shield/rels/d_a_npc_wrestler/symbols.txt
splits: config/Shield/rels/d_a_npc_wrestler/splits.txt
# map: orig/Shield/fixed_maps/d_a_npc_wrestler.map
- object: files/rel/Rfinal/Release/d_a_npc_yamid.rel
hash: 532b90210a1479dc85f37c26f899f3dfbf220076
symbols: config/Shield/rels/d_a_npc_yamid/symbols.txt
splits: config/Shield/rels/d_a_npc_yamid/splits.txt
# map: orig/Shield/fixed_maps/d_a_npc_yamid.map
- object: files/rel/Rfinal/Release/d_a_npc_yamis.rel
hash: 5e30ba29dbad0d9cd2031bf12f7e3438c3f45e8f
symbols: config/Shield/rels/d_a_npc_yamis/symbols.txt
splits: config/Shield/rels/d_a_npc_yamis/splits.txt
# map: orig/Shield/fixed_maps/d_a_npc_yamis.map
- object: files/rel/Rfinal/Release/d_a_npc_yamit.rel
hash: 11d5743da45bba1f8a3129673681eff00304382f
symbols: config/Shield/rels/d_a_npc_yamit/symbols.txt
splits: config/Shield/rels/d_a_npc_yamit/splits.txt
# map: orig/Shield/fixed_maps/d_a_npc_yamit.map
- object: files/rel/Rfinal/Release/d_a_npc_yelia.rel
hash: 0599d60d4272f2625195ca43d9e7527e80f856f3
symbols: config/Shield/rels/d_a_npc_yelia/symbols.txt
splits: config/Shield/rels/d_a_npc_yelia/splits.txt
# map: orig/Shield/fixed_maps/d_a_npc_yelia.map
- object: files/rel/Rfinal/Release/d_a_npc_ykm.rel
hash: df67ef5017159cc64398a7427fccb94fa859915f
symbols: config/Shield/rels/d_a_npc_ykm/symbols.txt
splits: config/Shield/rels/d_a_npc_ykm/splits.txt
# map: orig/Shield/fixed_maps/d_a_npc_ykm.map
- object: files/rel/Rfinal/Release/d_a_npc_ykw.rel
hash: cca088dca7c9db6defd24392ad80a230130e30a4
symbols: config/Shield/rels/d_a_npc_ykw/symbols.txt
splits: config/Shield/rels/d_a_npc_ykw/splits.txt
# map: orig/Shield/fixed_maps/d_a_npc_ykw.map
- object: files/rel/Rfinal/Release/d_a_npc_zanb.rel
hash: 85b6affcf7bc1849183a4e3b5a610334604677f8
symbols: config/Shield/rels/d_a_npc_zanb/symbols.txt
splits: config/Shield/rels/d_a_npc_zanb/splits.txt
# map: orig/Shield/fixed_maps/d_a_npc_zanb.map
- object: files/rel/Rfinal/Release/d_a_npc_zant.rel
hash: 3475db85943668842f629cfbc8a4238f143744da
symbols: config/Shield/rels/d_a_npc_zant/symbols.txt
splits: config/Shield/rels/d_a_npc_zant/splits.txt
# map: orig/Shield/fixed_maps/d_a_npc_zant.map
- object: files/rel/Rfinal/Release/d_a_npc_zelR.rel
hash: b23ab6b9e8a29dd33b43e6806e9ad0e804a706cf
symbols: config/Shield/rels/d_a_npc_zelR/symbols.txt
splits: config/Shield/rels/d_a_npc_zelR/splits.txt
# map: orig/Shield/fixed_maps/d_a_npc_zelR.map
- object: files/rel/Rfinal/Release/d_a_npc_zelRo.rel
hash: 4fd748eadf42bfb27bf72229e302e22e24fb8a93
symbols: config/Shield/rels/d_a_npc_zelRo/symbols.txt
splits: config/Shield/rels/d_a_npc_zelRo/splits.txt
# map: orig/Shield/fixed_maps/d_a_npc_zelRo.map
- object: files/rel/Rfinal/Release/d_a_npc_zelda.rel
hash: 2d238bb02ef2467817916d368514eafda8d8f7c0
symbols: config/Shield/rels/d_a_npc_zelda/symbols.txt
splits: config/Shield/rels/d_a_npc_zelda/splits.txt
# map: orig/Shield/fixed_maps/d_a_npc_zelda.map
- object: files/rel/Rfinal/Release/d_a_npc_zra.rel
hash: 1ea50e949999af8a9756784c2cb18a7d190add00
symbols: config/Shield/rels/d_a_npc_zra/symbols.txt
splits: config/Shield/rels/d_a_npc_zra/splits.txt
# map: orig/Shield/fixed_maps/d_a_npc_zra.map
- object: files/rel/Rfinal/Release/d_a_npc_zrc.rel
hash: 3b86b7115b763665e5c584fc494709bffc9ee420
symbols: config/Shield/rels/d_a_npc_zrc/symbols.txt
splits: config/Shield/rels/d_a_npc_zrc/splits.txt
# map: orig/Shield/fixed_maps/d_a_npc_zrc.map
- object: files/rel/Rfinal/Release/d_a_npc_zrz.rel
hash: 6e85bc7a0f60651b186d5b43c20a6628fa6e9b71
symbols: config/Shield/rels/d_a_npc_zrz/symbols.txt
splits: config/Shield/rels/d_a_npc_zrz/splits.txt
# map: orig/Shield/fixed_maps/d_a_npc_zrz.map
- object: files/rel/Rfinal/Release/d_a_obj_Lv5Key.rel
hash: 4d57cc4e7ff483e36cf989bc5fb91d14c1ec06d9
symbols: config/Shield/rels/d_a_obj_Lv5Key/symbols.txt
splits: config/Shield/rels/d_a_obj_Lv5Key/splits.txt
# map: orig/Shield/fixed_maps/d_a_obj_Lv5Key.map
- object: files/rel/Rfinal/Release/d_a_obj_Turara.rel
hash: c85554797b264d9877d7b9590fb38ba3a832fc9e
symbols: config/Shield/rels/d_a_obj_Turara/symbols.txt
splits: config/Shield/rels/d_a_obj_Turara/splits.txt
# map: orig/Shield/fixed_maps/d_a_obj_Turara.map
- object: files/rel/Rfinal/Release/d_a_obj_TvCdlst.rel
hash: 8219b43120c30429f00ed6ffcaf34a53a3eb1ba0
symbols: config/Shield/rels/d_a_obj_TvCdlst/symbols.txt
splits: config/Shield/rels/d_a_obj_TvCdlst/splits.txt
# map: orig/Shield/fixed_maps/d_a_obj_TvCdlst.map
- object: files/rel/Rfinal/Release/d_a_obj_Y_taihou.rel
hash: 6cead177f3ba95e2554968aae00e54bc6547a315
symbols: config/Shield/rels/d_a_obj_Y_taihou/symbols.txt
splits: config/Shield/rels/d_a_obj_Y_taihou/splits.txt
# map: orig/Shield/fixed_maps/d_a_obj_Y_taihou.map
- object: files/rel/Rfinal/Release/d_a_obj_amiShutter.rel
hash: 646a454f5e1e5a2f91a3c7f47ada626daa464b0d
symbols: config/Shield/rels/d_a_obj_amiShutter/symbols.txt
splits: config/Shield/rels/d_a_obj_amiShutter/splits.txt
# map: orig/Shield/fixed_maps/d_a_obj_amiShutter.map
- object: files/rel/Rfinal/Release/d_a_obj_ari.rel
hash: c72ae855de41324535f27248892e2e5e82bef148
symbols: config/Shield/rels/d_a_obj_ari/symbols.txt
splits: config/Shield/rels/d_a_obj_ari/splits.txt
# map: orig/Shield/fixed_maps/d_a_obj_ari.map
- object: files/rel/Rfinal/Release/d_a_obj_automata.rel
hash: 036fe7817b56a587b340bc93bd20f14ddbaf7c6d
symbols: config/Shield/rels/d_a_obj_automata/symbols.txt
splits: config/Shield/rels/d_a_obj_automata/splits.txt
# map: orig/Shield/fixed_maps/d_a_obj_automata.map
- object: files/rel/Rfinal/Release/d_a_obj_avalanche.rel
hash: 31cc95d8f12d9b511a8759dc4e82558423448bd8
symbols: config/Shield/rels/d_a_obj_avalanche/symbols.txt
splits: config/Shield/rels/d_a_obj_avalanche/splits.txt
# map: orig/Shield/fixed_maps/d_a_obj_avalanche.map
- object: files/rel/Rfinal/Release/d_a_obj_balloon.rel
hash: c708fe4b426f094469300d0b1e686495ee86c4e6
symbols: config/Shield/rels/d_a_obj_balloon/symbols.txt
splits: config/Shield/rels/d_a_obj_balloon/splits.txt
# map: orig/Shield/fixed_maps/d_a_obj_balloon.map
- object: files/rel/Rfinal/Release/d_a_obj_barDesk.rel
hash: 5c2669525b3db443f2de1d566db4d031fa858961
symbols: config/Shield/rels/d_a_obj_barDesk/symbols.txt
splits: config/Shield/rels/d_a_obj_barDesk/splits.txt
# map: orig/Shield/fixed_maps/d_a_obj_barDesk.map
- object: files/rel/Rfinal/Release/d_a_obj_batta.rel
hash: 75387713481c602adfa254e6a17212e51bb21234
symbols: config/Shield/rels/d_a_obj_batta/symbols.txt
splits: config/Shield/rels/d_a_obj_batta/splits.txt
# map: orig/Shield/fixed_maps/d_a_obj_batta.map
- object: files/rel/Rfinal/Release/d_a_obj_bbox.rel
hash: 5b168ceef45b18695b605fbba94c07e7a7b8a107
symbols: config/Shield/rels/d_a_obj_bbox/symbols.txt
splits: config/Shield/rels/d_a_obj_bbox/splits.txt
# map: orig/Shield/fixed_maps/d_a_obj_bbox.map
- object: files/rel/Rfinal/Release/d_a_obj_bed.rel
hash: 84ba29489b466f2bc301b9fd379c655a10d0c9a4
symbols: config/Shield/rels/d_a_obj_bed/symbols.txt
splits: config/Shield/rels/d_a_obj_bed/splits.txt
# map: orig/Shield/fixed_maps/d_a_obj_bed.map
- object: files/rel/Rfinal/Release/d_a_obj_bemos.rel
hash: 5d6d317fd062974584da79da043370dc28e3a45f
symbols: config/Shield/rels/d_a_obj_bemos/symbols.txt
splits: config/Shield/rels/d_a_obj_bemos/splits.txt
# map: orig/Shield/fixed_maps/d_a_obj_bemos.map
- object: files/rel/Rfinal/Release/d_a_obj_bhbridge.rel
hash: d9d5ee1e88aadfbe213c57f0aae188c48024c0bb
symbols: config/Shield/rels/d_a_obj_bhbridge/symbols.txt
splits: config/Shield/rels/d_a_obj_bhbridge/splits.txt
# map: orig/Shield/fixed_maps/d_a_obj_bhbridge.map
- object: files/rel/Rfinal/Release/d_a_obj_bk_leaf.rel
hash: dbbe9f15bec433d87ec51acccb128b4a97197239
symbols: config/Shield/rels/d_a_obj_bk_leaf/symbols.txt
splits: config/Shield/rels/d_a_obj_bk_leaf/splits.txt
# map: orig/Shield/fixed_maps/d_a_obj_bk_leaf.map
- object: files/rel/Rfinal/Release/d_a_obj_bky_rock.rel
hash: a61efce50a0d7b42134d42ff2b61dc53812a0b70
symbols: config/Shield/rels/d_a_obj_bky_rock/symbols.txt
splits: config/Shield/rels/d_a_obj_bky_rock/splits.txt
# map: orig/Shield/fixed_maps/d_a_obj_bky_rock.map
- object: files/rel/Rfinal/Release/d_a_obj_bmWindow.rel
hash: d5a143db4de29abcce9fe7343cb2a78e4af40dd5
symbols: config/Shield/rels/d_a_obj_bmWindow/symbols.txt
splits: config/Shield/rels/d_a_obj_bmWindow/splits.txt
# map: orig/Shield/fixed_maps/d_a_obj_bmWindow.map
- object: files/rel/Rfinal/Release/d_a_obj_bmshutter.rel
hash: 9415552621dad00205af0949979b5fe9a98f6fb4
symbols: config/Shield/rels/d_a_obj_bmshutter/symbols.txt
splits: config/Shield/rels/d_a_obj_bmshutter/splits.txt
# map: orig/Shield/fixed_maps/d_a_obj_bmshutter.map
- object: files/rel/Rfinal/Release/d_a_obj_bombf.rel
hash: 5e8bf9950315269d45a3e500fee743119de93f8a
symbols: config/Shield/rels/d_a_obj_bombf/symbols.txt
splits: config/Shield/rels/d_a_obj_bombf/splits.txt
# map: orig/Shield/fixed_maps/d_a_obj_bombf.map
- object: files/rel/Rfinal/Release/d_a_obj_boumato.rel
hash: 739b74d98890c51b3da398bb4dbff7447e1640a9
symbols: config/Shield/rels/d_a_obj_boumato/symbols.txt
splits: config/Shield/rels/d_a_obj_boumato/splits.txt
# map: orig/Shield/fixed_maps/d_a_obj_boumato.map
- object: files/rel/Rfinal/Release/d_a_obj_brg.rel
hash: 98da5dde9577caeee20b4e76d03133ab25b12407
symbols: config/Shield/rels/d_a_obj_brg/symbols.txt
splits: config/Shield/rels/d_a_obj_brg/splits.txt
# map: orig/Shield/fixed_maps/d_a_obj_brg.map
- object: files/rel/Rfinal/Release/d_a_obj_bsGate.rel
hash: f26a51d75b8c3ca4b376d9ee71dc6c65bd3c2c28
symbols: config/Shield/rels/d_a_obj_bsGate/symbols.txt
splits: config/Shield/rels/d_a_obj_bsGate/splits.txt
# map: orig/Shield/fixed_maps/d_a_obj_bsGate.map
- object: files/rel/Rfinal/Release/d_a_obj_bubblePilar.rel
hash: e97cfe3726d3f84ec694f50681398c9d7dc75ef8
symbols: config/Shield/rels/d_a_obj_bubblePilar/symbols.txt
splits: config/Shield/rels/d_a_obj_bubblePilar/splits.txt
# map: orig/Shield/fixed_maps/d_a_obj_bubblePilar.map
- object: files/rel/Rfinal/Release/d_a_obj_catdoor.rel
hash: 6da0fa57d3eb00994a12e3fc9ee8685da477e54c
symbols: config/Shield/rels/d_a_obj_catdoor/symbols.txt
splits: config/Shield/rels/d_a_obj_catdoor/splits.txt
# map: orig/Shield/fixed_maps/d_a_obj_catdoor.map
- object: files/rel/Rfinal/Release/d_a_obj_cb.rel
hash: ccd91bd258c1ea9503907526c3335a47552b531d
symbols: config/Shield/rels/d_a_obj_cb/symbols.txt
splits: config/Shield/rels/d_a_obj_cb/splits.txt
# map: orig/Shield/fixed_maps/d_a_obj_cb.map
- object: files/rel/Rfinal/Release/d_a_obj_cblock.rel
hash: 6e359ed167ab0f551a9aa7fe4a3f89a26037ff49
symbols: config/Shield/rels/d_a_obj_cblock/symbols.txt
splits: config/Shield/rels/d_a_obj_cblock/splits.txt
# map: orig/Shield/fixed_maps/d_a_obj_cblock.map
- object: files/rel/Rfinal/Release/d_a_obj_cdoor.rel
hash: 24fe9d2cf20b74edbf80c466ee753e605c3ec4e4
symbols: config/Shield/rels/d_a_obj_cdoor/symbols.txt
splits: config/Shield/rels/d_a_obj_cdoor/splits.txt
# map: orig/Shield/fixed_maps/d_a_obj_cdoor.map
- object: files/rel/Rfinal/Release/d_a_obj_chandelier.rel
hash: b82584883fb6b1f9e32396b52e42ef13f2030471
symbols: config/Shield/rels/d_a_obj_chandelier/symbols.txt
splits: config/Shield/rels/d_a_obj_chandelier/splits.txt
# map: orig/Shield/fixed_maps/d_a_obj_chandelier.map
- object: files/rel/Rfinal/Release/d_a_obj_chest.rel
hash: 2ec83fbe1d0b10fa233bc00cfb62258ab3c15680
symbols: config/Shield/rels/d_a_obj_chest/symbols.txt
splits: config/Shield/rels/d_a_obj_chest/splits.txt
# map: orig/Shield/fixed_maps/d_a_obj_chest.map
- object: files/rel/Rfinal/Release/d_a_obj_cho.rel
hash: d5e8c3a991ff4e261831ad61dbba9c36b760185d
symbols: config/Shield/rels/d_a_obj_cho/symbols.txt
splits: config/Shield/rels/d_a_obj_cho/splits.txt
# map: orig/Shield/fixed_maps/d_a_obj_cho.map
- object: files/rel/Rfinal/Release/d_a_obj_cowdoor.rel
hash: 3d247c0d50f380a8deb32b9037f01dfbaab58934
symbols: config/Shield/rels/d_a_obj_cowdoor/symbols.txt
splits: config/Shield/rels/d_a_obj_cowdoor/splits.txt
# map: orig/Shield/fixed_maps/d_a_obj_cowdoor.map
- object: files/rel/Rfinal/Release/d_a_obj_crope.rel
hash: bead6bb010914bbf1331b05f434dbdf8850ae504
symbols: config/Shield/rels/d_a_obj_crope/symbols.txt
splits: config/Shield/rels/d_a_obj_crope/splits.txt
# map: orig/Shield/fixed_maps/d_a_obj_crope.map
- object: files/rel/Rfinal/Release/d_a_obj_crvfence.rel
hash: e6b3764f734b75dc87e90e28e388361c635ec792
symbols: config/Shield/rels/d_a_obj_crvfence/symbols.txt
splits: config/Shield/rels/d_a_obj_crvfence/splits.txt
# map: orig/Shield/fixed_maps/d_a_obj_crvfence.map
- object: files/rel/Rfinal/Release/d_a_obj_crvgate.rel
hash: 78c6cc8472d781c15c37a1bc6daa5ad9af11dc99
symbols: config/Shield/rels/d_a_obj_crvgate/symbols.txt
splits: config/Shield/rels/d_a_obj_crvgate/splits.txt
# map: orig/Shield/fixed_maps/d_a_obj_crvgate.map
- object: files/rel/Rfinal/Release/d_a_obj_crvhahen.rel
hash: 4ac9a49d4e68662dee6464f7e0bd08b738c706ff
symbols: config/Shield/rels/d_a_obj_crvhahen/symbols.txt
splits: config/Shield/rels/d_a_obj_crvhahen/splits.txt
# map: orig/Shield/fixed_maps/d_a_obj_crvhahen.map
- object: files/rel/Rfinal/Release/d_a_obj_crvlh_down.rel
hash: 58f635a4c5759bb0b58143473344f682b663bfb9
symbols: config/Shield/rels/d_a_obj_crvlh_down/symbols.txt
splits: config/Shield/rels/d_a_obj_crvlh_down/splits.txt
# map: orig/Shield/fixed_maps/d_a_obj_crvlh_down.map
- object: files/rel/Rfinal/Release/d_a_obj_crvlh_up.rel
hash: 8b0a4ba3ce09e6b02307e90983d2c7fb0df8f019
symbols: config/Shield/rels/d_a_obj_crvlh_up/symbols.txt
splits: config/Shield/rels/d_a_obj_crvlh_up/splits.txt
# map: orig/Shield/fixed_maps/d_a_obj_crvlh_up.map
- object: files/rel/Rfinal/Release/d_a_obj_crvsteel.rel
hash: efda223b6fa712c3d2e13be77ba6a5a68699d8ff
symbols: config/Shield/rels/d_a_obj_crvsteel/symbols.txt
splits: config/Shield/rels/d_a_obj_crvsteel/splits.txt
# map: orig/Shield/fixed_maps/d_a_obj_crvsteel.map
- object: files/rel/Rfinal/Release/d_a_obj_crystal.rel
hash: e321e0a998d2ea5461cc3306e0fe70ef55fecf39
symbols: config/Shield/rels/d_a_obj_crystal/symbols.txt
splits: config/Shield/rels/d_a_obj_crystal/splits.txt
# map: orig/Shield/fixed_maps/d_a_obj_crystal.map
- object: files/rel/Rfinal/Release/d_a_obj_cwall.rel
hash: 84180d5220a1dcc17600a53cf7b3bb1ac198c2f5
symbols: config/Shield/rels/d_a_obj_cwall/symbols.txt
splits: config/Shield/rels/d_a_obj_cwall/splits.txt
# map: orig/Shield/fixed_maps/d_a_obj_cwall.map
- object: files/rel/Rfinal/Release/d_a_obj_damCps.rel
hash: 344ba81fbd4843f8125bdf4a67684a042d20f13c
symbols: config/Shield/rels/d_a_obj_damCps/symbols.txt
splits: config/Shield/rels/d_a_obj_damCps/splits.txt
# map: orig/Shield/fixed_maps/d_a_obj_damCps.map
- object: files/rel/Rfinal/Release/d_a_obj_dan.rel
hash: 1aad70d42400f4e44a9703d9e8ed2e99a723ae06
symbols: config/Shield/rels/d_a_obj_dan/symbols.txt
splits: config/Shield/rels/d_a_obj_dan/splits.txt
# map: orig/Shield/fixed_maps/d_a_obj_dan.map
- object: files/rel/Rfinal/Release/d_a_obj_digholl.rel
hash: 42ae7800f1c6c289e0633259cc2c5249c711ca39
symbols: config/Shield/rels/d_a_obj_digholl/symbols.txt
splits: config/Shield/rels/d_a_obj_digholl/splits.txt
# map: orig/Shield/fixed_maps/d_a_obj_digholl.map
- object: files/rel/Rfinal/Release/d_a_obj_digsnow.rel
hash: 26970d51e7bf48c76f51ed15f4c18ff0dca3dc78
symbols: config/Shield/rels/d_a_obj_digsnow/symbols.txt
splits: config/Shield/rels/d_a_obj_digsnow/splits.txt
# map: orig/Shield/fixed_maps/d_a_obj_digsnow.map
- object: files/rel/Rfinal/Release/d_a_obj_dmelevator.rel
hash: 6a20187a935077902d0e782cc9654c91a04477d8
symbols: config/Shield/rels/d_a_obj_dmelevator/symbols.txt
splits: config/Shield/rels/d_a_obj_dmelevator/splits.txt
# map: orig/Shield/fixed_maps/d_a_obj_dmelevator.map
- object: files/rel/Rfinal/Release/d_a_obj_drop.rel
hash: 417faf66d4fb862b503915e0fb6b1de36eef659d
symbols: config/Shield/rels/d_a_obj_drop/symbols.txt
splits: config/Shield/rels/d_a_obj_drop/splits.txt
# map: orig/Shield/fixed_maps/d_a_obj_drop.map
- object: files/rel/Rfinal/Release/d_a_obj_dust.rel
hash: 0aaf36a0e4ac7cec7178e12d25ceb6bac0155311
symbols: config/Shield/rels/d_a_obj_dust/symbols.txt
splits: config/Shield/rels/d_a_obj_dust/splits.txt
# map: orig/Shield/fixed_maps/d_a_obj_dust.map
- object: files/rel/Rfinal/Release/d_a_obj_enemy_create.rel
hash: adbaf17bdc0e34206c55a93155ab7613efe7864d
symbols: config/Shield/rels/d_a_obj_enemy_create/symbols.txt
splits: config/Shield/rels/d_a_obj_enemy_create/splits.txt
# map: orig/Shield/fixed_maps/d_a_obj_enemy_create.map
- object: files/rel/Rfinal/Release/d_a_obj_fallobj.rel
hash: 10d625872044c31d97f90256a1ed6df75d511b27
symbols: config/Shield/rels/d_a_obj_fallobj/symbols.txt
splits: config/Shield/rels/d_a_obj_fallobj/splits.txt
# map: orig/Shield/fixed_maps/d_a_obj_fallobj.map
- object: files/rel/Rfinal/Release/d_a_obj_fan.rel
hash: 42fca1fc56642cbc0101b9c89e8a3c6193b622d8
symbols: config/Shield/rels/d_a_obj_fan/symbols.txt
splits: config/Shield/rels/d_a_obj_fan/splits.txt
# map: orig/Shield/fixed_maps/d_a_obj_fan.map
- object: files/rel/Rfinal/Release/d_a_obj_fchain.rel
hash: 404a9b9aa6fe4e1ea1afcf7a4f37f6a0e50ae534
symbols: config/Shield/rels/d_a_obj_fchain/symbols.txt
splits: config/Shield/rels/d_a_obj_fchain/splits.txt
# map: orig/Shield/fixed_maps/d_a_obj_fchain.map
- object: files/rel/Rfinal/Release/d_a_obj_fireWood.rel
hash: f65c86f15ed4bf8b70b038350cc047a78e1c299b
symbols: config/Shield/rels/d_a_obj_fireWood/symbols.txt
splits: config/Shield/rels/d_a_obj_fireWood/splits.txt
# map: orig/Shield/fixed_maps/d_a_obj_fireWood.map
- object: files/rel/Rfinal/Release/d_a_obj_fireWood2.rel
hash: da87800c66a1bd14aeea98f296b9195ec6e9c5fa
symbols: config/Shield/rels/d_a_obj_fireWood2/symbols.txt
splits: config/Shield/rels/d_a_obj_fireWood2/splits.txt
# map: orig/Shield/fixed_maps/d_a_obj_fireWood2.map
- object: files/rel/Rfinal/Release/d_a_obj_firepillar.rel
hash: 79750d0e0260ba6de3b971872e8c0cb59d10056b
symbols: config/Shield/rels/d_a_obj_firepillar/symbols.txt
splits: config/Shield/rels/d_a_obj_firepillar/splits.txt
# map: orig/Shield/fixed_maps/d_a_obj_firepillar.map
- object: files/rel/Rfinal/Release/d_a_obj_firepillar2.rel
hash: 3fb8d3513209e85edb5ec362a242a9380ec8244f
symbols: config/Shield/rels/d_a_obj_firepillar2/symbols.txt
splits: config/Shield/rels/d_a_obj_firepillar2/splits.txt
# map: orig/Shield/fixed_maps/d_a_obj_firepillar2.map
- object: files/rel/Rfinal/Release/d_a_obj_flag.rel
hash: ef962f5d7d39a05f52f76551eac126aac536042b
symbols: config/Shield/rels/d_a_obj_flag/symbols.txt
splits: config/Shield/rels/d_a_obj_flag/splits.txt
# map: orig/Shield/fixed_maps/d_a_obj_flag.map
- object: files/rel/Rfinal/Release/d_a_obj_flag2.rel
hash: 8030346f5766c9dd8c587d2afb5609e546782b32
symbols: config/Shield/rels/d_a_obj_flag2/symbols.txt
splits: config/Shield/rels/d_a_obj_flag2/splits.txt
# map: orig/Shield/fixed_maps/d_a_obj_flag2.map
- object: files/rel/Rfinal/Release/d_a_obj_flag3.rel
hash: 266ffd95a0ee676ba7e7e797303cb8e527262e6f
symbols: config/Shield/rels/d_a_obj_flag3/symbols.txt
splits: config/Shield/rels/d_a_obj_flag3/splits.txt
# map: orig/Shield/fixed_maps/d_a_obj_flag3.map
- object: files/rel/Rfinal/Release/d_a_obj_food.rel
hash: b65144738fa1dbf34aee8db967d9e785e87351b9
symbols: config/Shield/rels/d_a_obj_food/symbols.txt
splits: config/Shield/rels/d_a_obj_food/splits.txt
# map: orig/Shield/fixed_maps/d_a_obj_food.map
- object: files/rel/Rfinal/Release/d_a_obj_fw.rel
hash: 00096fb76f9edc9807d68e57e5fb33e800b1f753
symbols: config/Shield/rels/d_a_obj_fw/symbols.txt
splits: config/Shield/rels/d_a_obj_fw/splits.txt
# map: orig/Shield/fixed_maps/d_a_obj_fw.map
- object: files/rel/Rfinal/Release/d_a_obj_gadget.rel
hash: 92db56371dc25520c4f1812afc7f27733921300e
symbols: config/Shield/rels/d_a_obj_gadget/symbols.txt
splits: config/Shield/rels/d_a_obj_gadget/splits.txt
# map: orig/Shield/fixed_maps/d_a_obj_gadget.map
- object: files/rel/Rfinal/Release/d_a_obj_ganonwall.rel
hash: df80bc93fd97fbac36f76e90f0b75203c91e57bd
symbols: config/Shield/rels/d_a_obj_ganonwall/symbols.txt
splits: config/Shield/rels/d_a_obj_ganonwall/splits.txt
# map: orig/Shield/fixed_maps/d_a_obj_ganonwall.map
- object: files/rel/Rfinal/Release/d_a_obj_ganonwall2.rel
hash: 50385df5dfb03cfe6c3f187628c3e3bcc64fd7bd
symbols: config/Shield/rels/d_a_obj_ganonwall2/symbols.txt
splits: config/Shield/rels/d_a_obj_ganonwall2/splits.txt
# map: orig/Shield/fixed_maps/d_a_obj_ganonwall2.map
- object: files/rel/Rfinal/Release/d_a_obj_gb.rel
hash: de6fee41999e36c1fc48696eb378ce12783f50de
symbols: config/Shield/rels/d_a_obj_gb/symbols.txt
splits: config/Shield/rels/d_a_obj_gb/splits.txt
# map: orig/Shield/fixed_maps/d_a_obj_gb.map
- object: files/rel/Rfinal/Release/d_a_obj_geyser.rel
hash: 445f6de798e3e424ea2037dbff7ec270a034a91c
symbols: config/Shield/rels/d_a_obj_geyser/symbols.txt
splits: config/Shield/rels/d_a_obj_geyser/splits.txt
# map: orig/Shield/fixed_maps/d_a_obj_geyser.map
- object: files/rel/Rfinal/Release/d_a_obj_glowSphere.rel
hash: c8f743a0eac6cc2fb34afdda12c934019b956306
symbols: config/Shield/rels/d_a_obj_glowSphere/symbols.txt
splits: config/Shield/rels/d_a_obj_glowSphere/splits.txt
# map: orig/Shield/fixed_maps/d_a_obj_glowSphere.map
- object: files/rel/Rfinal/Release/d_a_obj_gm.rel
hash: e784109c90174c32da06eb06370d2b8dd8011cf8
symbols: config/Shield/rels/d_a_obj_gm/symbols.txt
splits: config/Shield/rels/d_a_obj_gm/splits.txt
# map: orig/Shield/fixed_maps/d_a_obj_gm.map
- object: files/rel/Rfinal/Release/d_a_obj_goGate.rel
hash: 19e0c85399bd2cf2d782053c8ad07a6dcda06855
symbols: config/Shield/rels/d_a_obj_goGate/symbols.txt
splits: config/Shield/rels/d_a_obj_goGate/splits.txt
# map: orig/Shield/fixed_maps/d_a_obj_goGate.map
- object: files/rel/Rfinal/Release/d_a_obj_gomikabe.rel
hash: d16bae4371264969b3f212bda7aaa30584aa0f9e
symbols: config/Shield/rels/d_a_obj_gomikabe/symbols.txt
splits: config/Shield/rels/d_a_obj_gomikabe/splits.txt
# map: orig/Shield/fixed_maps/d_a_obj_gomikabe.map
- object: files/rel/Rfinal/Release/d_a_obj_gra2.rel
hash: 8d5009831313ed55ff9f5ad45a1d663d0d4e9a28
symbols: config/Shield/rels/d_a_obj_gra2/symbols.txt
splits: config/Shield/rels/d_a_obj_gra2/splits.txt
# map: orig/Shield/fixed_maps/d_a_obj_gra2.map
- object: files/rel/Rfinal/Release/d_a_obj_graWall.rel
hash: beb0041b1fc99a63969eb62258eda7eb4f5dd826
symbols: config/Shield/rels/d_a_obj_graWall/symbols.txt
splits: config/Shield/rels/d_a_obj_graWall/splits.txt
# map: orig/Shield/fixed_maps/d_a_obj_graWall.map
- object: files/rel/Rfinal/Release/d_a_obj_gra_rock.rel
hash: fbc972729a2cf99821b0409875cbe43bf463b5d7
symbols: config/Shield/rels/d_a_obj_gra_rock/symbols.txt
splits: config/Shield/rels/d_a_obj_gra_rock/splits.txt
# map: orig/Shield/fixed_maps/d_a_obj_gra_rock.map
- object: files/rel/Rfinal/Release/d_a_obj_grave_stone.rel
hash: b1a04f074d93e4e4e9cd0ef5520e0cd02163eff4
symbols: config/Shield/rels/d_a_obj_grave_stone/symbols.txt
splits: config/Shield/rels/d_a_obj_grave_stone/splits.txt
# map: orig/Shield/fixed_maps/d_a_obj_grave_stone.map
- object: files/rel/Rfinal/Release/d_a_obj_groundwater.rel
hash: 1e38df98cb3af1f3f9a4d0cc2eceaf7a652f8e5e
symbols: config/Shield/rels/d_a_obj_groundwater/symbols.txt
splits: config/Shield/rels/d_a_obj_groundwater/splits.txt
# map: orig/Shield/fixed_maps/d_a_obj_groundwater.map
- object: files/rel/Rfinal/Release/d_a_obj_grz_rock.rel
hash: bfc4a953754b5f6dda3b1252da78531346508c62
symbols: config/Shield/rels/d_a_obj_grz_rock/symbols.txt
splits: config/Shield/rels/d_a_obj_grz_rock/splits.txt
# map: orig/Shield/fixed_maps/d_a_obj_grz_rock.map
- object: files/rel/Rfinal/Release/d_a_obj_h_saku.rel
hash: f31d5fbda3031af9f9d869796376b513b0d8fa54
symbols: config/Shield/rels/d_a_obj_h_saku/symbols.txt
splits: config/Shield/rels/d_a_obj_h_saku/splits.txt
# map: orig/Shield/fixed_maps/d_a_obj_h_saku.map
- object: files/rel/Rfinal/Release/d_a_obj_hakai_brl.rel
hash: 16ea78166030f91ff0af7ba1e10f7e334714876f
symbols: config/Shield/rels/d_a_obj_hakai_brl/symbols.txt
splits: config/Shield/rels/d_a_obj_hakai_brl/splits.txt
# map: orig/Shield/fixed_maps/d_a_obj_hakai_brl.map
- object: files/rel/Rfinal/Release/d_a_obj_hakai_ftr.rel
hash: f04640e9acec780d1b4f63e373815aea5b6aef2c
symbols: config/Shield/rels/d_a_obj_hakai_ftr/symbols.txt
splits: config/Shield/rels/d_a_obj_hakai_ftr/splits.txt
# map: orig/Shield/fixed_maps/d_a_obj_hakai_ftr.map
- object: files/rel/Rfinal/Release/d_a_obj_hasu2.rel
hash: 18073846845d3fa8e6ee2bd67f1797c475120f32
symbols: config/Shield/rels/d_a_obj_hasu2/symbols.txt
splits: config/Shield/rels/d_a_obj_hasu2/splits.txt
# map: orig/Shield/fixed_maps/d_a_obj_hasu2.map
- object: files/rel/Rfinal/Release/d_a_obj_hata.rel
hash: c89e6fb28fb64af7666e4f3a66eeaad7a68ad1b8
symbols: config/Shield/rels/d_a_obj_hata/symbols.txt
splits: config/Shield/rels/d_a_obj_hata/splits.txt
# map: orig/Shield/fixed_maps/d_a_obj_hata.map
- object: files/rel/Rfinal/Release/d_a_obj_hb.rel
hash: a1021583c39ad1215ff35d1d2446d5512dd1a482
symbols: config/Shield/rels/d_a_obj_hb/symbols.txt
splits: config/Shield/rels/d_a_obj_hb/splits.txt
# map: orig/Shield/fixed_maps/d_a_obj_hb.map
- object: files/rel/Rfinal/Release/d_a_obj_hbombkoya.rel
hash: cddb0c6d3ff332401fd46e7b549e999955b0aa43
symbols: config/Shield/rels/d_a_obj_hbombkoya/symbols.txt
splits: config/Shield/rels/d_a_obj_hbombkoya/splits.txt
# map: orig/Shield/fixed_maps/d_a_obj_hbombkoya.map
- object: files/rel/Rfinal/Release/d_a_obj_heavySw.rel
hash: efe33dddd5c936cd4d4fc22c558f9d65d80a38ca
symbols: config/Shield/rels/d_a_obj_heavySw/symbols.txt
splits: config/Shield/rels/d_a_obj_heavySw/splits.txt
# map: orig/Shield/fixed_maps/d_a_obj_heavySw.map
- object: files/rel/Rfinal/Release/d_a_obj_hfuta.rel
hash: 5969d26277848e86f1d86df418be0fb6d0e4dabc
symbols: config/Shield/rels/d_a_obj_hfuta/symbols.txt
splits: config/Shield/rels/d_a_obj_hfuta/splits.txt
# map: orig/Shield/fixed_maps/d_a_obj_hfuta.map
- object: files/rel/Rfinal/Release/d_a_obj_hsTarget.rel
hash: 0a73423532c2814de306404e557db47e64ce16d4
symbols: config/Shield/rels/d_a_obj_hsTarget/symbols.txt
splits: config/Shield/rels/d_a_obj_hsTarget/splits.txt
# map: orig/Shield/fixed_maps/d_a_obj_hsTarget.map
- object: files/rel/Rfinal/Release/d_a_obj_ice_l.rel
hash: 25269f5bb36b966f5589ef38358ea63caf023588
symbols: config/Shield/rels/d_a_obj_ice_l/symbols.txt
splits: config/Shield/rels/d_a_obj_ice_l/splits.txt
# map: orig/Shield/fixed_maps/d_a_obj_ice_l.map
- object: files/rel/Rfinal/Release/d_a_obj_ice_s.rel
hash: 2aaacda74298fdadf391b53b7065bb56b2fdbcb1
symbols: config/Shield/rels/d_a_obj_ice_s/symbols.txt
splits: config/Shield/rels/d_a_obj_ice_s/splits.txt
# map: orig/Shield/fixed_maps/d_a_obj_ice_s.map
- object: files/rel/Rfinal/Release/d_a_obj_iceblock.rel
hash: 26783c87ba850a7b482a12bf654342b19fb729ea
symbols: config/Shield/rels/d_a_obj_iceblock/symbols.txt
splits: config/Shield/rels/d_a_obj_iceblock/splits.txt
# map: orig/Shield/fixed_maps/d_a_obj_iceblock.map
- object: files/rel/Rfinal/Release/d_a_obj_iceleaf.rel
hash: 0d66df32be008dd236272a445a221f9ee43bbb3f
symbols: config/Shield/rels/d_a_obj_iceleaf/symbols.txt
splits: config/Shield/rels/d_a_obj_iceleaf/splits.txt
# map: orig/Shield/fixed_maps/d_a_obj_iceleaf.map
- object: files/rel/Rfinal/Release/d_a_obj_ihasi.rel
hash: 0eeb2e3d07b374d931d9628dd87716328c9c609e
symbols: config/Shield/rels/d_a_obj_ihasi/symbols.txt
splits: config/Shield/rels/d_a_obj_ihasi/splits.txt
# map: orig/Shield/fixed_maps/d_a_obj_ihasi.map
- object: files/rel/Rfinal/Release/d_a_obj_ikada.rel
hash: 8776cf383dfe3404ae6d425c177219dc89b77919
symbols: config/Shield/rels/d_a_obj_ikada/symbols.txt
splits: config/Shield/rels/d_a_obj_ikada/splits.txt
# map: orig/Shield/fixed_maps/d_a_obj_ikada.map
- object: files/rel/Rfinal/Release/d_a_obj_inobone.rel
hash: c36fe3b4914ba1664c39f444a94ba9f9e7630215
symbols: config/Shield/rels/d_a_obj_inobone/symbols.txt
splits: config/Shield/rels/d_a_obj_inobone/splits.txt
# map: orig/Shield/fixed_maps/d_a_obj_inobone.map
- object: files/rel/Rfinal/Release/d_a_obj_ita.rel
hash: 19549b1d5cba790bcbb10df9dc0da2cee2d08647
symbols: config/Shield/rels/d_a_obj_ita/symbols.txt
splits: config/Shield/rels/d_a_obj_ita/splits.txt
# map: orig/Shield/fixed_maps/d_a_obj_ita.map
- object: files/rel/Rfinal/Release/d_a_obj_itamato.rel
hash: e6e2ac6c31d7cc46c52c00e8d30e5de63fb5f734
symbols: config/Shield/rels/d_a_obj_itamato/symbols.txt
splits: config/Shield/rels/d_a_obj_itamato/splits.txt
# map: orig/Shield/fixed_maps/d_a_obj_itamato.map
- object: files/rel/Rfinal/Release/d_a_obj_kabuto.rel
hash: ffcc22c59cd72870ba42da67133d9e58f5405f51
symbols: config/Shield/rels/d_a_obj_kabuto/symbols.txt
splits: config/Shield/rels/d_a_obj_kabuto/splits.txt
# map: orig/Shield/fixed_maps/d_a_obj_kabuto.map
- object: files/rel/Rfinal/Release/d_a_obj_kag.rel
hash: a3b6b051586c7a62fd5b17eb8be34f73a67072a9
symbols: config/Shield/rels/d_a_obj_kag/symbols.txt
splits: config/Shield/rels/d_a_obj_kag/splits.txt
# map: orig/Shield/fixed_maps/d_a_obj_kag.map
- object: files/rel/Rfinal/Release/d_a_obj_kage.rel
hash: 0ddc20bf9f49c75f5df48926043c80446c13daef
symbols: config/Shield/rels/d_a_obj_kage/symbols.txt
splits: config/Shield/rels/d_a_obj_kage/splits.txt
# map: orig/Shield/fixed_maps/d_a_obj_kage.map
- object: files/rel/Rfinal/Release/d_a_obj_kago.rel
hash: 515d20527a6a394e5b875eae720d15c44acee45d
symbols: config/Shield/rels/d_a_obj_kago/symbols.txt
splits: config/Shield/rels/d_a_obj_kago/splits.txt
# map: orig/Shield/fixed_maps/d_a_obj_kago.map
- object: files/rel/Rfinal/Release/d_a_obj_kaisou.rel
hash: c7ecdd5a0546658d32bb8e557555cee1836facc0
symbols: config/Shield/rels/d_a_obj_kaisou/symbols.txt
splits: config/Shield/rels/d_a_obj_kaisou/splits.txt
# map: orig/Shield/fixed_maps/d_a_obj_kaisou.map
- object: files/rel/Rfinal/Release/d_a_obj_kamakiri.rel
hash: 850be1a09a20800384938a35019d01c4d799d770
symbols: config/Shield/rels/d_a_obj_kamakiri/symbols.txt
splits: config/Shield/rels/d_a_obj_kamakiri/splits.txt
# map: orig/Shield/fixed_maps/d_a_obj_kamakiri.map
- object: files/rel/Rfinal/Release/d_a_obj_kantera.rel
hash: b1a0d6f1568506e8a747121d3d803db2ca43080a
symbols: config/Shield/rels/d_a_obj_kantera/symbols.txt
splits: config/Shield/rels/d_a_obj_kantera/splits.txt
# map: orig/Shield/fixed_maps/d_a_obj_kantera.map
- object: files/rel/Rfinal/Release/d_a_obj_katatsumuri.rel
hash: 29f577a3486aec4a4280c077567b23c6e0be0dfd
symbols: config/Shield/rels/d_a_obj_katatsumuri/symbols.txt
splits: config/Shield/rels/d_a_obj_katatsumuri/splits.txt
# map: orig/Shield/fixed_maps/d_a_obj_katatsumuri.map
- object: files/rel/Rfinal/Release/d_a_obj_kazeneko.rel
hash: 6135096291f3d13e992a0771460e94c5b1738e44
symbols: config/Shield/rels/d_a_obj_kazeneko/symbols.txt
splits: config/Shield/rels/d_a_obj_kazeneko/splits.txt
# map: orig/Shield/fixed_maps/d_a_obj_kazeneko.map
- object: files/rel/Rfinal/Release/d_a_obj_kbox.rel
hash: 675c1e0311f37e08195f3c87913beebc64c42d0a
symbols: config/Shield/rels/d_a_obj_kbox/symbols.txt
splits: config/Shield/rels/d_a_obj_kbox/splits.txt
# map: orig/Shield/fixed_maps/d_a_obj_kbox.map
- object: files/rel/Rfinal/Release/d_a_obj_key.rel
hash: cbb47fc27c23430de94715d7ff7913e5955bcc44
symbols: config/Shield/rels/d_a_obj_key/symbols.txt
splits: config/Shield/rels/d_a_obj_key/splits.txt
# map: orig/Shield/fixed_maps/d_a_obj_key.map
- object: files/rel/Rfinal/Release/d_a_obj_keyhole.rel
hash: e22eecaaa2da464a9d0f5b651eeddf6e712cbd4b
symbols: config/Shield/rels/d_a_obj_keyhole/symbols.txt
splits: config/Shield/rels/d_a_obj_keyhole/splits.txt
# map: orig/Shield/fixed_maps/d_a_obj_keyhole.map
- object: files/rel/Rfinal/Release/d_a_obj_ki.rel
hash: 8607054bd6243a39738df4d0000c4c38c7f6ac0b
symbols: config/Shield/rels/d_a_obj_ki/symbols.txt
splits: config/Shield/rels/d_a_obj_ki/splits.txt
# map: orig/Shield/fixed_maps/d_a_obj_ki.map
- object: files/rel/Rfinal/Release/d_a_obj_kiPot.rel
hash: 67ace55005dfa5c4938355f3c28717eed4c6aa67
symbols: config/Shield/rels/d_a_obj_kiPot/symbols.txt
splits: config/Shield/rels/d_a_obj_kiPot/splits.txt
# map: orig/Shield/fixed_maps/d_a_obj_kiPot.map
- object: files/rel/Rfinal/Release/d_a_obj_kita.rel
hash: 05fc380e47537f11a461261d7c4e6cacba7ea7d3
symbols: config/Shield/rels/d_a_obj_kita/symbols.txt
splits: config/Shield/rels/d_a_obj_kita/splits.txt
# map: orig/Shield/fixed_maps/d_a_obj_kita.map
- object: files/rel/Rfinal/Release/d_a_obj_kjgjs.rel
hash: 2233c77a50cb2c81584b2d5f959ef17bca2c9df0
symbols: config/Shield/rels/d_a_obj_kjgjs/symbols.txt
splits: config/Shield/rels/d_a_obj_kjgjs/splits.txt
# map: orig/Shield/fixed_maps/d_a_obj_kjgjs.map
- object: files/rel/Rfinal/Release/d_a_obj_kkanban.rel
hash: b48345291d564d89f693cb8d050a1156f57d90db
symbols: config/Shield/rels/d_a_obj_kkanban/symbols.txt
splits: config/Shield/rels/d_a_obj_kkanban/splits.txt
# map: orig/Shield/fixed_maps/d_a_obj_kkanban.map
- object: files/rel/Rfinal/Release/d_a_obj_knBullet.rel
hash: 5a80384fcced38daaf898f25da9215c18ca293f4
symbols: config/Shield/rels/d_a_obj_knBullet/symbols.txt
splits: config/Shield/rels/d_a_obj_knBullet/splits.txt
# map: orig/Shield/fixed_maps/d_a_obj_knBullet.map
- object: files/rel/Rfinal/Release/d_a_obj_kshutter.rel
hash: 90a8a7a1da48ad3ff4492ad9ed8ab8b2eecb34f0
symbols: config/Shield/rels/d_a_obj_kshutter/symbols.txt
splits: config/Shield/rels/d_a_obj_kshutter/splits.txt
# map: orig/Shield/fixed_maps/d_a_obj_kshutter.map
- object: files/rel/Rfinal/Release/d_a_obj_kuwagata.rel
hash: 279d8360d3693f144050e73dfe9547d87291e490
symbols: config/Shield/rels/d_a_obj_kuwagata/symbols.txt
splits: config/Shield/rels/d_a_obj_kuwagata/splits.txt
# map: orig/Shield/fixed_maps/d_a_obj_kuwagata.map
- object: files/rel/Rfinal/Release/d_a_obj_kwheel00.rel
hash: f19e94c605cccbac88628235da2e7b88d6516b9e
symbols: config/Shield/rels/d_a_obj_kwheel00/symbols.txt
splits: config/Shield/rels/d_a_obj_kwheel00/splits.txt
# map: orig/Shield/fixed_maps/d_a_obj_kwheel00.map
- object: files/rel/Rfinal/Release/d_a_obj_kwheel01.rel
hash: 9dcbac6d0f503a72e74de2a262e1901a95aa00ed
symbols: config/Shield/rels/d_a_obj_kwheel01/symbols.txt
splits: config/Shield/rels/d_a_obj_kwheel01/splits.txt
# map: orig/Shield/fixed_maps/d_a_obj_kwheel01.map
- object: files/rel/Rfinal/Release/d_a_obj_kznkarm.rel
hash: b2c8da65051214261607b3d0b8df53cb1a815797
symbols: config/Shield/rels/d_a_obj_kznkarm/symbols.txt
splits: config/Shield/rels/d_a_obj_kznkarm/splits.txt
# map: orig/Shield/fixed_maps/d_a_obj_kznkarm.map
- object: files/rel/Rfinal/Release/d_a_obj_laundry.rel
hash: 74a3fc8c7267d41d9d22da66c5e112ba212ab02e
symbols: config/Shield/rels/d_a_obj_laundry/symbols.txt
splits: config/Shield/rels/d_a_obj_laundry/splits.txt
# map: orig/Shield/fixed_maps/d_a_obj_laundry.map
- object: files/rel/Rfinal/Release/d_a_obj_laundry_rope.rel
hash: f19f16973cef1fe15bd6641330e400be48031ef7
symbols: config/Shield/rels/d_a_obj_laundry_rope/symbols.txt
splits: config/Shield/rels/d_a_obj_laundry_rope/splits.txt
# map: orig/Shield/fixed_maps/d_a_obj_laundry_rope.map
- object: files/rel/Rfinal/Release/d_a_obj_lbox.rel
hash: 7453a81922c5a281c30bc2322ef8ead5e997e39e
symbols: config/Shield/rels/d_a_obj_lbox/symbols.txt
splits: config/Shield/rels/d_a_obj_lbox/splits.txt
# map: orig/Shield/fixed_maps/d_a_obj_lbox.map
- object: files/rel/Rfinal/Release/d_a_obj_lp.rel
hash: 99eabe07f18c912fbfec5ccf01d5aac2b72b7cf5
symbols: config/Shield/rels/d_a_obj_lp/symbols.txt
splits: config/Shield/rels/d_a_obj_lp/splits.txt
# map: orig/Shield/fixed_maps/d_a_obj_lp.map
- object: files/rel/Rfinal/Release/d_a_obj_lv1Candle00.rel
hash: 4f3dfaf100da82f2e3b28ebd460914d90b60d207
symbols: config/Shield/rels/d_a_obj_lv1Candle00/symbols.txt
splits: config/Shield/rels/d_a_obj_lv1Candle00/splits.txt
# map: orig/Shield/fixed_maps/d_a_obj_lv1Candle00.map
- object: files/rel/Rfinal/Release/d_a_obj_lv1Candle01.rel
hash: 3b005e5ccb1cac27f1b25649eb59eada1bda0eae
symbols: config/Shield/rels/d_a_obj_lv1Candle01/symbols.txt
splits: config/Shield/rels/d_a_obj_lv1Candle01/splits.txt
# map: orig/Shield/fixed_maps/d_a_obj_lv1Candle01.map
- object: files/rel/Rfinal/Release/d_a_obj_lv3Candle.rel
hash: 8372cbd487f149ec073bd3d0036a2a53498e4a93
symbols: config/Shield/rels/d_a_obj_lv3Candle/symbols.txt
splits: config/Shield/rels/d_a_obj_lv3Candle/splits.txt
# map: orig/Shield/fixed_maps/d_a_obj_lv3Candle.map
- object: files/rel/Rfinal/Release/d_a_obj_lv3Water.rel
hash: 2c57fff8817c4e3cff89a5f45c3504536c33fea0
symbols: config/Shield/rels/d_a_obj_lv3Water/symbols.txt
splits: config/Shield/rels/d_a_obj_lv3Water/splits.txt
# map: orig/Shield/fixed_maps/d_a_obj_lv3Water.map
- object: files/rel/Rfinal/Release/d_a_obj_lv3Water2.rel
hash: 4592f35c17f7a87df3ef5309aff78fa4aec63e84
symbols: config/Shield/rels/d_a_obj_lv3Water2/symbols.txt
splits: config/Shield/rels/d_a_obj_lv3Water2/splits.txt
# map: orig/Shield/fixed_maps/d_a_obj_lv3Water2.map
- object: files/rel/Rfinal/Release/d_a_obj_lv3WaterB.rel
hash: 7f9e765ecb34a6cb192ca52e52e37de24fa1d52e
symbols: config/Shield/rels/d_a_obj_lv3WaterB/symbols.txt
splits: config/Shield/rels/d_a_obj_lv3WaterB/splits.txt
# map: orig/Shield/fixed_maps/d_a_obj_lv3WaterB.map
- object: files/rel/Rfinal/Release/d_a_obj_lv3saka00.rel
hash: 15bb6b780955987ff166f197b50f165b93290164
symbols: config/Shield/rels/d_a_obj_lv3saka00/symbols.txt
splits: config/Shield/rels/d_a_obj_lv3saka00/splits.txt
# map: orig/Shield/fixed_maps/d_a_obj_lv3saka00.map
- object: files/rel/Rfinal/Release/d_a_obj_lv3waterEff.rel
hash: 644617e43132230be137e208ccf909e40e105b10
symbols: config/Shield/rels/d_a_obj_lv3waterEff/symbols.txt
splits: config/Shield/rels/d_a_obj_lv3waterEff/splits.txt
# map: orig/Shield/fixed_maps/d_a_obj_lv3waterEff.map
- object: files/rel/Rfinal/Release/d_a_obj_lv4CandleDemoTag.rel
hash: 97e80e5fd1bcb79ae9f70e0470c541a8e591bfa6
symbols: config/Shield/rels/d_a_obj_lv4CandleDemoTag/symbols.txt
splits: config/Shield/rels/d_a_obj_lv4CandleDemoTag/splits.txt
# map: orig/Shield/fixed_maps/d_a_obj_lv4CandleDemoTag.map
- object: files/rel/Rfinal/Release/d_a_obj_lv4CandleTag.rel
hash: fd57a14b5b4f82ba07cf2d216fece736ce31b08e
symbols: config/Shield/rels/d_a_obj_lv4CandleTag/symbols.txt
splits: config/Shield/rels/d_a_obj_lv4CandleTag/splits.txt
# map: orig/Shield/fixed_maps/d_a_obj_lv4CandleTag.map
- object: files/rel/Rfinal/Release/d_a_obj_lv4EdShutter.rel
hash: a547a7953ec4c69e12742b67da8d63f00c5e7209
symbols: config/Shield/rels/d_a_obj_lv4EdShutter/symbols.txt
splits: config/Shield/rels/d_a_obj_lv4EdShutter/splits.txt
# map: orig/Shield/fixed_maps/d_a_obj_lv4EdShutter.map
- object: files/rel/Rfinal/Release/d_a_obj_lv4Gate.rel
hash: 35c8733777ee6f0af32dbf63db9f95203519983a
symbols: config/Shield/rels/d_a_obj_lv4Gate/symbols.txt
splits: config/Shield/rels/d_a_obj_lv4Gate/splits.txt
# map: orig/Shield/fixed_maps/d_a_obj_lv4Gate.map
- object: files/rel/Rfinal/Release/d_a_obj_lv4HsTarget.rel
hash: 03a949d4792bbc412bb08b23f4670cd9eadea063
symbols: config/Shield/rels/d_a_obj_lv4HsTarget/symbols.txt
splits: config/Shield/rels/d_a_obj_lv4HsTarget/splits.txt
# map: orig/Shield/fixed_maps/d_a_obj_lv4HsTarget.map
- object: files/rel/Rfinal/Release/d_a_obj_lv4PoGate.rel
hash: a194cf3b42afef50e0b7481dede96894a2056c7c
symbols: config/Shield/rels/d_a_obj_lv4PoGate/symbols.txt
splits: config/Shield/rels/d_a_obj_lv4PoGate/splits.txt
# map: orig/Shield/fixed_maps/d_a_obj_lv4PoGate.map
- object: files/rel/Rfinal/Release/d_a_obj_lv4RailWall.rel
hash: f96294c0e070ce80679a228368c7166b254c831d
symbols: config/Shield/rels/d_a_obj_lv4RailWall/symbols.txt
splits: config/Shield/rels/d_a_obj_lv4RailWall/splits.txt
# map: orig/Shield/fixed_maps/d_a_obj_lv4RailWall.map
- object: files/rel/Rfinal/Release/d_a_obj_lv4SlideWall.rel
hash: 20975012bf1657049ce31df3db755a869920685d
symbols: config/Shield/rels/d_a_obj_lv4SlideWall/symbols.txt
splits: config/Shield/rels/d_a_obj_lv4SlideWall/splits.txt
# map: orig/Shield/fixed_maps/d_a_obj_lv4SlideWall.map
- object: files/rel/Rfinal/Release/d_a_obj_lv4bridge.rel
hash: d5ec7676aec30c83519ae1aa77708d9d3b26701e
symbols: config/Shield/rels/d_a_obj_lv4bridge/symbols.txt
splits: config/Shield/rels/d_a_obj_lv4bridge/splits.txt
# map: orig/Shield/fixed_maps/d_a_obj_lv4bridge.map
- object: files/rel/Rfinal/Release/d_a_obj_lv4chandelier.rel
hash: 38ec812e57b89b8e627776f2b2afa48e2d68f9a2
symbols: config/Shield/rels/d_a_obj_lv4chandelier/symbols.txt
splits: config/Shield/rels/d_a_obj_lv4chandelier/splits.txt
# map: orig/Shield/fixed_maps/d_a_obj_lv4chandelier.map
- object: files/rel/Rfinal/Release/d_a_obj_lv4digsand.rel
hash: 1e73be88a42b8151d2e5ec29bf4b0179186e3f22
symbols: config/Shield/rels/d_a_obj_lv4digsand/symbols.txt
splits: config/Shield/rels/d_a_obj_lv4digsand/splits.txt
# map: orig/Shield/fixed_maps/d_a_obj_lv4digsand.map
- object: files/rel/Rfinal/Release/d_a_obj_lv4floor.rel
hash: 7dfce2dd8a4db049ff489b45d113e0743863428f
symbols: config/Shield/rels/d_a_obj_lv4floor/symbols.txt
splits: config/Shield/rels/d_a_obj_lv4floor/splits.txt
# map: orig/Shield/fixed_maps/d_a_obj_lv4floor.map
- object: files/rel/Rfinal/Release/d_a_obj_lv4gear.rel
hash: f0209cd8127d21d454da92791140e029628bbb7b
symbols: config/Shield/rels/d_a_obj_lv4gear/symbols.txt
splits: config/Shield/rels/d_a_obj_lv4gear/splits.txt
# map: orig/Shield/fixed_maps/d_a_obj_lv4gear.map
- object: files/rel/Rfinal/Release/d_a_obj_lv4prelvtr.rel
hash: 4a33c674874a8326ff7e44bae300d5de20f38037
symbols: config/Shield/rels/d_a_obj_lv4prelvtr/symbols.txt
splits: config/Shield/rels/d_a_obj_lv4prelvtr/splits.txt
# map: orig/Shield/fixed_maps/d_a_obj_lv4prelvtr.map
- object: files/rel/Rfinal/Release/d_a_obj_lv4prwall.rel
hash: 78e0c76236b5d27edf2c19dd1f1014b303a91ec0
symbols: config/Shield/rels/d_a_obj_lv4prwall/symbols.txt
splits: config/Shield/rels/d_a_obj_lv4prwall/splits.txt
# map: orig/Shield/fixed_maps/d_a_obj_lv4prwall.map
- object: files/rel/Rfinal/Release/d_a_obj_lv4sand.rel
hash: e9f78bcc7b58a42391d7dfcc9ebadaf5a14837f6
symbols: config/Shield/rels/d_a_obj_lv4sand/symbols.txt
splits: config/Shield/rels/d_a_obj_lv4sand/splits.txt
# map: orig/Shield/fixed_maps/d_a_obj_lv4sand.map
- object: files/rel/Rfinal/Release/d_a_obj_lv5FloorBoard.rel
hash: 04e96533f021c6dbb9f52f34fe3ce287c4f3816d
symbols: config/Shield/rels/d_a_obj_lv5FloorBoard/symbols.txt
splits: config/Shield/rels/d_a_obj_lv5FloorBoard/splits.txt
# map: orig/Shield/fixed_maps/d_a_obj_lv5FloorBoard.map
- object: files/rel/Rfinal/Release/d_a_obj_lv5IceWall.rel
hash: 0b105113d02b249c07b552703acdcedf216ef0c1
symbols: config/Shield/rels/d_a_obj_lv5IceWall/symbols.txt
splits: config/Shield/rels/d_a_obj_lv5IceWall/splits.txt
# map: orig/Shield/fixed_maps/d_a_obj_lv5IceWall.map
- object: files/rel/Rfinal/Release/d_a_obj_lv5SwIce.rel
hash: fee668e31f8d798c12eabf325c654b9214093f53
symbols: config/Shield/rels/d_a_obj_lv5SwIce/symbols.txt
splits: config/Shield/rels/d_a_obj_lv5SwIce/splits.txt
# map: orig/Shield/fixed_maps/d_a_obj_lv5SwIce.map
- object: files/rel/Rfinal/Release/d_a_obj_lv5ychndlr.rel
hash: 207ab731d85b8d76fc4641bca7398d4b64178fda
symbols: config/Shield/rels/d_a_obj_lv5ychndlr/symbols.txt
splits: config/Shield/rels/d_a_obj_lv5ychndlr/splits.txt
# map: orig/Shield/fixed_maps/d_a_obj_lv5ychndlr.map
- object: files/rel/Rfinal/Release/d_a_obj_lv5yiblltray.rel
hash: 1b67c38f0744850b445504a15d48b9dcd0c4925f
symbols: config/Shield/rels/d_a_obj_lv5yiblltray/symbols.txt
splits: config/Shield/rels/d_a_obj_lv5yiblltray/splits.txt
# map: orig/Shield/fixed_maps/d_a_obj_lv5yiblltray.map
- object: files/rel/Rfinal/Release/d_a_obj_lv6ChangeGate.rel
hash: de097d341ef44075c03e26c89d455919e3ebcecf
symbols: config/Shield/rels/d_a_obj_lv6ChangeGate/symbols.txt
splits: config/Shield/rels/d_a_obj_lv6ChangeGate/splits.txt
# map: orig/Shield/fixed_maps/d_a_obj_lv6ChangeGate.map
- object: files/rel/Rfinal/Release/d_a_obj_lv6FurikoTrap.rel
hash: 358bdbb260543d2554a9d3111a2ab1ff9f10b9f3
symbols: config/Shield/rels/d_a_obj_lv6FurikoTrap/symbols.txt
splits: config/Shield/rels/d_a_obj_lv6FurikoTrap/splits.txt
# map: orig/Shield/fixed_maps/d_a_obj_lv6FurikoTrap.map
- object: files/rel/Rfinal/Release/d_a_obj_lv6Lblock.rel
hash: 19fa161d592fb3d885390672dc63aeca4e96c295
symbols: config/Shield/rels/d_a_obj_lv6Lblock/symbols.txt
splits: config/Shield/rels/d_a_obj_lv6Lblock/splits.txt
# map: orig/Shield/fixed_maps/d_a_obj_lv6Lblock.map
- object: files/rel/Rfinal/Release/d_a_obj_lv6SwGate.rel
hash: e21e0ec70ecbf15bb6e402e97070c19ae5ecdb88
symbols: config/Shield/rels/d_a_obj_lv6SwGate/symbols.txt
splits: config/Shield/rels/d_a_obj_lv6SwGate/splits.txt
# map: orig/Shield/fixed_maps/d_a_obj_lv6SwGate.map
- object: files/rel/Rfinal/Release/d_a_obj_lv6SzGate.rel
hash: b9c5c8dd4a8eafd24e1e7571951276c736c12477
symbols: config/Shield/rels/d_a_obj_lv6SzGate/symbols.txt
splits: config/Shield/rels/d_a_obj_lv6SzGate/splits.txt
# map: orig/Shield/fixed_maps/d_a_obj_lv6SzGate.map
- object: files/rel/Rfinal/Release/d_a_obj_lv6Tenbin.rel
hash: d70d57b710e25fc668518cfbe8a96325db845818
symbols: config/Shield/rels/d_a_obj_lv6Tenbin/symbols.txt
splits: config/Shield/rels/d_a_obj_lv6Tenbin/splits.txt
# map: orig/Shield/fixed_maps/d_a_obj_lv6Tenbin.map
- object: files/rel/Rfinal/Release/d_a_obj_lv6TogeRoll.rel
hash: 9be619bab4030e515aa95aaeeea4e3ff262d6a29
symbols: config/Shield/rels/d_a_obj_lv6TogeRoll/symbols.txt
splits: config/Shield/rels/d_a_obj_lv6TogeRoll/splits.txt
# map: orig/Shield/fixed_maps/d_a_obj_lv6TogeRoll.map
- object: files/rel/Rfinal/Release/d_a_obj_lv6TogeTrap.rel
hash: 0ad0a081bc4b18a38edc4193713a44d21acde642
symbols: config/Shield/rels/d_a_obj_lv6TogeTrap/symbols.txt
splits: config/Shield/rels/d_a_obj_lv6TogeTrap/splits.txt
# map: orig/Shield/fixed_maps/d_a_obj_lv6TogeTrap.map
- object: files/rel/Rfinal/Release/d_a_obj_lv6bemos.rel
hash: 473d49f0f8e51f6db7f2c1a96f82fb77b16278b9
symbols: config/Shield/rels/d_a_obj_lv6bemos/symbols.txt
splits: config/Shield/rels/d_a_obj_lv6bemos/splits.txt
# map: orig/Shield/fixed_maps/d_a_obj_lv6bemos.map
- object: files/rel/Rfinal/Release/d_a_obj_lv6bemos2.rel
hash: 9ee7dbcec37c5b4a2683deaa08aafc207f75d901
symbols: config/Shield/rels/d_a_obj_lv6bemos2/symbols.txt
splits: config/Shield/rels/d_a_obj_lv6bemos2/splits.txt
# map: orig/Shield/fixed_maps/d_a_obj_lv6bemos2.map
- object: files/rel/Rfinal/Release/d_a_obj_lv6egate.rel
hash: c1eae0b3ff39461cd79d9ba710343811f92e7c69
symbols: config/Shield/rels/d_a_obj_lv6egate/symbols.txt
splits: config/Shield/rels/d_a_obj_lv6egate/splits.txt
# map: orig/Shield/fixed_maps/d_a_obj_lv6egate.map
- object: files/rel/Rfinal/Release/d_a_obj_lv6elevta.rel
hash: be7456229a429715e60d4721e6e63132f9d1cffe
symbols: config/Shield/rels/d_a_obj_lv6elevta/symbols.txt
splits: config/Shield/rels/d_a_obj_lv6elevta/splits.txt
# map: orig/Shield/fixed_maps/d_a_obj_lv6elevta.map
- object: files/rel/Rfinal/Release/d_a_obj_lv6swturn.rel
hash: e51cb8b4e13d32edb9ddca24f8969d1d6775358d
symbols: config/Shield/rels/d_a_obj_lv6swturn/symbols.txt
splits: config/Shield/rels/d_a_obj_lv6swturn/splits.txt
# map: orig/Shield/fixed_maps/d_a_obj_lv6swturn.map
- object: files/rel/Rfinal/Release/d_a_obj_lv7BsGate.rel
hash: 895e7dd406ec9d1756d0ab2e50bda02aebf2a96e
symbols: config/Shield/rels/d_a_obj_lv7BsGate/symbols.txt
splits: config/Shield/rels/d_a_obj_lv7BsGate/splits.txt
# map: orig/Shield/fixed_maps/d_a_obj_lv7BsGate.map
- object: files/rel/Rfinal/Release/d_a_obj_lv7PropellerY.rel
hash: 824af89b5d37fce6e977a1859361710a78a1a465
symbols: config/Shield/rels/d_a_obj_lv7PropellerY/symbols.txt
splits: config/Shield/rels/d_a_obj_lv7PropellerY/splits.txt
# map: orig/Shield/fixed_maps/d_a_obj_lv7PropellerY.map
- object: files/rel/Rfinal/Release/d_a_obj_lv7bridge.rel
hash: 3195309432c5fd139624dcb1e7d94f1d2c7dae34
symbols: config/Shield/rels/d_a_obj_lv7bridge/symbols.txt
splits: config/Shield/rels/d_a_obj_lv7bridge/splits.txt
# map: orig/Shield/fixed_maps/d_a_obj_lv7bridge.map
- object: files/rel/Rfinal/Release/d_a_obj_lv8KekkaiTrap.rel
hash: 978c9c6b2b2a08cb0fe747618ab787a63cee908b
symbols: config/Shield/rels/d_a_obj_lv8KekkaiTrap/symbols.txt
splits: config/Shield/rels/d_a_obj_lv8KekkaiTrap/splits.txt
# map: orig/Shield/fixed_maps/d_a_obj_lv8KekkaiTrap.map
- object: files/rel/Rfinal/Release/d_a_obj_lv8Lift.rel
hash: 4c9c64df510573debc70933b7ee4a47a6f988bd7
symbols: config/Shield/rels/d_a_obj_lv8Lift/symbols.txt
splits: config/Shield/rels/d_a_obj_lv8Lift/splits.txt
# map: orig/Shield/fixed_maps/d_a_obj_lv8Lift.map
- object: files/rel/Rfinal/Release/d_a_obj_lv8OptiLift.rel
hash: f62b94113835d43d495d9d4fff190e68df066fc2
symbols: config/Shield/rels/d_a_obj_lv8OptiLift/symbols.txt
splits: config/Shield/rels/d_a_obj_lv8OptiLift/splits.txt
# map: orig/Shield/fixed_maps/d_a_obj_lv8OptiLift.map
- object: files/rel/Rfinal/Release/d_a_obj_lv8UdFloor.rel
hash: 75c374767539dea1b6ec88c79ce64d4bbb5fc3f4
symbols: config/Shield/rels/d_a_obj_lv8UdFloor/symbols.txt
splits: config/Shield/rels/d_a_obj_lv8UdFloor/splits.txt
# map: orig/Shield/fixed_maps/d_a_obj_lv8UdFloor.map
- object: files/rel/Rfinal/Release/d_a_obj_lv9SwShutter.rel
hash: 6ba25e06d72d1d328d372e8e52fa83f88edb3242
symbols: config/Shield/rels/d_a_obj_lv9SwShutter/symbols.txt
splits: config/Shield/rels/d_a_obj_lv9SwShutter/splits.txt
# map: orig/Shield/fixed_maps/d_a_obj_lv9SwShutter.map
- object: files/rel/Rfinal/Release/d_a_obj_magLift.rel
hash: 1c01f29cb4fee8b52dfbf64ce979191e4ec01f76
symbols: config/Shield/rels/d_a_obj_magLift/symbols.txt
splits: config/Shield/rels/d_a_obj_magLift/splits.txt
# map: orig/Shield/fixed_maps/d_a_obj_magLift.map
- object: files/rel/Rfinal/Release/d_a_obj_magLiftRot.rel
hash: 5a0575e46a37beb4a4d165fd18113b0cce57ecfb
symbols: config/Shield/rels/d_a_obj_magLiftRot/symbols.txt
splits: config/Shield/rels/d_a_obj_magLiftRot/splits.txt
# map: orig/Shield/fixed_maps/d_a_obj_magLiftRot.map
- object: files/rel/Rfinal/Release/d_a_obj_maki.rel
hash: ff7d8ef379dac42edd7ac1626cec5eb743a75064
symbols: config/Shield/rels/d_a_obj_maki/symbols.txt
splits: config/Shield/rels/d_a_obj_maki/splits.txt
# map: orig/Shield/fixed_maps/d_a_obj_maki.map
- object: files/rel/Rfinal/Release/d_a_obj_master_sword.rel
hash: 0ebcc385597040efcd7fb981a49bf2eda94d600a
symbols: config/Shield/rels/d_a_obj_master_sword/symbols.txt
splits: config/Shield/rels/d_a_obj_master_sword/splits.txt
# map: orig/Shield/fixed_maps/d_a_obj_master_sword.map
- object: files/rel/Rfinal/Release/d_a_obj_mato.rel
hash: d0c0516938d354821e2154b17e7e391c493a4164
symbols: config/Shield/rels/d_a_obj_mato/symbols.txt
splits: config/Shield/rels/d_a_obj_mato/splits.txt
# map: orig/Shield/fixed_maps/d_a_obj_mato.map
- object: files/rel/Rfinal/Release/d_a_obj_mhole.rel
hash: d6c2aad45cb538411b3f81ab60ce6eb7642ad770
symbols: config/Shield/rels/d_a_obj_mhole/symbols.txt
splits: config/Shield/rels/d_a_obj_mhole/splits.txt
# map: orig/Shield/fixed_maps/d_a_obj_mhole.map
- object: files/rel/Rfinal/Release/d_a_obj_mie.rel
hash: edab2d7de7f76f084219dbc4ea2a55151fc0d244
symbols: config/Shield/rels/d_a_obj_mie/symbols.txt
splits: config/Shield/rels/d_a_obj_mie/splits.txt
# map: orig/Shield/fixed_maps/d_a_obj_mie.map
- object: files/rel/Rfinal/Release/d_a_obj_mirror_6pole.rel
hash: c6666c8f9027bf3c6458ff7f9e23657efe505cf1
symbols: config/Shield/rels/d_a_obj_mirror_6pole/symbols.txt
splits: config/Shield/rels/d_a_obj_mirror_6pole/splits.txt
# map: orig/Shield/fixed_maps/d_a_obj_mirror_6pole.map
- object: files/rel/Rfinal/Release/d_a_obj_mirror_chain.rel
hash: 1f172b9f6e24cebb57746d95d0d5cbbce1a49ad7
symbols: config/Shield/rels/d_a_obj_mirror_chain/symbols.txt
splits: config/Shield/rels/d_a_obj_mirror_chain/splits.txt
# map: orig/Shield/fixed_maps/d_a_obj_mirror_chain.map
- object: files/rel/Rfinal/Release/d_a_obj_mirror_sand.rel
hash: 58827f454cb62e197b0426aedad4ebf152dfc85c
symbols: config/Shield/rels/d_a_obj_mirror_sand/symbols.txt
splits: config/Shield/rels/d_a_obj_mirror_sand/splits.txt
# map: orig/Shield/fixed_maps/d_a_obj_mirror_sand.map
- object: files/rel/Rfinal/Release/d_a_obj_mirror_screw.rel
hash: c83af8d7c15e81d317e660bbf52cea923faf8104
symbols: config/Shield/rels/d_a_obj_mirror_screw/symbols.txt
splits: config/Shield/rels/d_a_obj_mirror_screw/splits.txt
# map: orig/Shield/fixed_maps/d_a_obj_mirror_screw.map
- object: files/rel/Rfinal/Release/d_a_obj_mirror_table.rel
hash: 5ff2ffdb8661f77c4e03f5c467dc821481bb6e47
symbols: config/Shield/rels/d_a_obj_mirror_table/symbols.txt
splits: config/Shield/rels/d_a_obj_mirror_table/splits.txt
# map: orig/Shield/fixed_maps/d_a_obj_mirror_table.map
- object: files/rel/Rfinal/Release/d_a_obj_msima.rel
hash: c41499d4dc06fc72c90d73447fe9ba800d95fe9c
symbols: config/Shield/rels/d_a_obj_msima/symbols.txt
splits: config/Shield/rels/d_a_obj_msima/splits.txt
# map: orig/Shield/fixed_maps/d_a_obj_msima.map
- object: files/rel/Rfinal/Release/d_a_obj_mvstair.rel
hash: 23b1979394509dab134cbe6a1f9e7573f5827273
symbols: config/Shield/rels/d_a_obj_mvstair/symbols.txt
splits: config/Shield/rels/d_a_obj_mvstair/splits.txt
# map: orig/Shield/fixed_maps/d_a_obj_mvstair.map
- object: files/rel/Rfinal/Release/d_a_obj_myogan.rel
hash: 7d3e16e4e629098ca4003bbcd70a48880eeb741f
symbols: config/Shield/rels/d_a_obj_myogan/symbols.txt
splits: config/Shield/rels/d_a_obj_myogan/splits.txt
# map: orig/Shield/fixed_maps/d_a_obj_myogan.map
- object: files/rel/Rfinal/Release/d_a_obj_nagaisu.rel
hash: e4c6dab1c65a91946613ba5597edccecbec31ef5
symbols: config/Shield/rels/d_a_obj_nagaisu/symbols.txt
splits: config/Shield/rels/d_a_obj_nagaisu/splits.txt
# map: orig/Shield/fixed_maps/d_a_obj_nagaisu.map
- object: files/rel/Rfinal/Release/d_a_obj_nan.rel
hash: 967f7da4609607dbd6ce56b70eccf3fa077ac932
symbols: config/Shield/rels/d_a_obj_nan/symbols.txt
splits: config/Shield/rels/d_a_obj_nan/splits.txt
# map: orig/Shield/fixed_maps/d_a_obj_nan.map
- object: files/rel/Rfinal/Release/d_a_obj_ndoor.rel
hash: 21a19000a7d681c673d17388354e485714f1d4bd
symbols: config/Shield/rels/d_a_obj_ndoor/symbols.txt
splits: config/Shield/rels/d_a_obj_ndoor/splits.txt
# map: orig/Shield/fixed_maps/d_a_obj_ndoor.map
- object: files/rel/Rfinal/Release/d_a_obj_nougu.rel
hash: 8f913a21e929884db6cd845f161ef9c8976bf18f
symbols: config/Shield/rels/d_a_obj_nougu/symbols.txt
splits: config/Shield/rels/d_a_obj_nougu/splits.txt
# map: orig/Shield/fixed_maps/d_a_obj_nougu.map
- object: files/rel/Rfinal/Release/d_a_obj_octhashi.rel
hash: f8e0e61ebe9c2941ba1d7d645d8c8ed04f206f9e
symbols: config/Shield/rels/d_a_obj_octhashi/symbols.txt
splits: config/Shield/rels/d_a_obj_octhashi/splits.txt
# map: orig/Shield/fixed_maps/d_a_obj_octhashi.map
- object: files/rel/Rfinal/Release/d_a_obj_oiltubo.rel
hash: 3c9872f1447c0ee183ccc61097b073eefb62834e
symbols: config/Shield/rels/d_a_obj_oiltubo/symbols.txt
splits: config/Shield/rels/d_a_obj_oiltubo/splits.txt
# map: orig/Shield/fixed_maps/d_a_obj_oiltubo.map
- object: files/rel/Rfinal/Release/d_a_obj_onsen.rel
hash: 6cce9b857192fe4a8afbbb1fdae8426aebbc93c3
symbols: config/Shield/rels/d_a_obj_onsen/symbols.txt
splits: config/Shield/rels/d_a_obj_onsen/splits.txt
# map: orig/Shield/fixed_maps/d_a_obj_onsen.map
- object: files/rel/Rfinal/Release/d_a_obj_onsenFire.rel
hash: 8a1c933ae0a793e7dc71c433dcb839114cb068a6
symbols: config/Shield/rels/d_a_obj_onsenFire/symbols.txt
splits: config/Shield/rels/d_a_obj_onsenFire/splits.txt
# map: orig/Shield/fixed_maps/d_a_obj_onsenFire.map
- object: files/rel/Rfinal/Release/d_a_obj_onsenTaru.rel
hash: bf04ebb20668156df97fa2927df6c371cff0ff48
symbols: config/Shield/rels/d_a_obj_onsenTaru/symbols.txt
splits: config/Shield/rels/d_a_obj_onsenTaru/splits.txt
# map: orig/Shield/fixed_maps/d_a_obj_onsenTaru.map
- object: files/rel/Rfinal/Release/d_a_obj_pdoor.rel
hash: d65737ba813618f8618353475b16135b32465e38
symbols: config/Shield/rels/d_a_obj_pdoor/symbols.txt
splits: config/Shield/rels/d_a_obj_pdoor/splits.txt
# map: orig/Shield/fixed_maps/d_a_obj_pdoor.map
- object: files/rel/Rfinal/Release/d_a_obj_pdtile.rel
hash: e700193844d3b01ed719844725b5d889ef25d5e1
symbols: config/Shield/rels/d_a_obj_pdtile/symbols.txt
splits: config/Shield/rels/d_a_obj_pdtile/splits.txt
# map: orig/Shield/fixed_maps/d_a_obj_pdtile.map
- object: files/rel/Rfinal/Release/d_a_obj_pdwall.rel
hash: 0e0ada78b32df3eb3bf4ea8908bd96ed80210b65
symbols: config/Shield/rels/d_a_obj_pdwall/symbols.txt
splits: config/Shield/rels/d_a_obj_pdwall/splits.txt
# map: orig/Shield/fixed_maps/d_a_obj_pdwall.map
- object: files/rel/Rfinal/Release/d_a_obj_picture.rel
hash: adc4dc619be0f73396df1d42106927aace1ff613
symbols: config/Shield/rels/d_a_obj_picture/symbols.txt
splits: config/Shield/rels/d_a_obj_picture/splits.txt
# map: orig/Shield/fixed_maps/d_a_obj_picture.map
- object: files/rel/Rfinal/Release/d_a_obj_pillar.rel
hash: 839481da0d23de8f4d01d970692586391e4c6e05
symbols: config/Shield/rels/d_a_obj_pillar/symbols.txt
splits: config/Shield/rels/d_a_obj_pillar/splits.txt
# map: orig/Shield/fixed_maps/d_a_obj_pillar.map
- object: files/rel/Rfinal/Release/d_a_obj_pleaf.rel
hash: 2991dcb50c8b56fe44b3b382f162ca7f5d470d90
symbols: config/Shield/rels/d_a_obj_pleaf/symbols.txt
splits: config/Shield/rels/d_a_obj_pleaf/splits.txt
# map: orig/Shield/fixed_maps/d_a_obj_pleaf.map
- object: files/rel/Rfinal/Release/d_a_obj_poCandle.rel
hash: 3fda49225953e9de37c8fb133eb6ebc754412d56
symbols: config/Shield/rels/d_a_obj_poCandle/symbols.txt
splits: config/Shield/rels/d_a_obj_poCandle/splits.txt
# map: orig/Shield/fixed_maps/d_a_obj_poCandle.map
- object: files/rel/Rfinal/Release/d_a_obj_poFire.rel
hash: 351a5682da8e1f1b593266a8b01aa145d98aaa0f
symbols: config/Shield/rels/d_a_obj_poFire/symbols.txt
splits: config/Shield/rels/d_a_obj_poFire/splits.txt
# map: orig/Shield/fixed_maps/d_a_obj_poFire.map
- object: files/rel/Rfinal/Release/d_a_obj_poTbox.rel
hash: 733f41137f11fab8d910ae1306a84bdc2f5164ab
symbols: config/Shield/rels/d_a_obj_poTbox/symbols.txt
splits: config/Shield/rels/d_a_obj_poTbox/splits.txt
# map: orig/Shield/fixed_maps/d_a_obj_poTbox.map
- object: files/rel/Rfinal/Release/d_a_obj_prop.rel
hash: 0f13876432661cd600d34ac85ae93badc0439471
symbols: config/Shield/rels/d_a_obj_prop/symbols.txt
splits: config/Shield/rels/d_a_obj_prop/splits.txt
# map: orig/Shield/fixed_maps/d_a_obj_prop.map
- object: files/rel/Rfinal/Release/d_a_obj_pumpkin.rel
hash: ecbbb814852420048607f686cb576350acc4a450
symbols: config/Shield/rels/d_a_obj_pumpkin/symbols.txt
splits: config/Shield/rels/d_a_obj_pumpkin/splits.txt
# map: orig/Shield/fixed_maps/d_a_obj_pumpkin.map
- object: files/rel/Rfinal/Release/d_a_obj_rcircle.rel
hash: 31c9346487b450d85dc8650f720c9485472cb0b0
symbols: config/Shield/rels/d_a_obj_rcircle/symbols.txt
splits: config/Shield/rels/d_a_obj_rcircle/splits.txt
# map: orig/Shield/fixed_maps/d_a_obj_rcircle.map
- object: files/rel/Rfinal/Release/d_a_obj_rfHole.rel
hash: a3ed86005eccd1c7b40edabb1746f516d12bba37
symbols: config/Shield/rels/d_a_obj_rfHole/symbols.txt
splits: config/Shield/rels/d_a_obj_rfHole/splits.txt
# map: orig/Shield/fixed_maps/d_a_obj_rfHole.map
- object: files/rel/Rfinal/Release/d_a_obj_rgate.rel
hash: dd462d4ec3a14947f00abd21f629c3241810f7fa
symbols: config/Shield/rels/d_a_obj_rgate/symbols.txt
splits: config/Shield/rels/d_a_obj_rgate/splits.txt
# map: orig/Shield/fixed_maps/d_a_obj_rgate.map
- object: files/rel/Rfinal/Release/d_a_obj_riverrock.rel
hash: ba8edc4c9688f3546dde578a6ca74ad2b03b106d
symbols: config/Shield/rels/d_a_obj_riverrock/symbols.txt
splits: config/Shield/rels/d_a_obj_riverrock/splits.txt
# map: orig/Shield/fixed_maps/d_a_obj_riverrock.map
- object: files/rel/Rfinal/Release/d_a_obj_rock.rel
hash: 9f036d46e978b326af616816ad2b9f9bfc6fb851
symbols: config/Shield/rels/d_a_obj_rock/symbols.txt
splits: config/Shield/rels/d_a_obj_rock/splits.txt
# map: orig/Shield/fixed_maps/d_a_obj_rock.map
- object: files/rel/Rfinal/Release/d_a_obj_rotBridge.rel
hash: c7952119fe145242d4333e50cefd4e837b7276cf
symbols: config/Shield/rels/d_a_obj_rotBridge/symbols.txt
splits: config/Shield/rels/d_a_obj_rotBridge/splits.txt
# map: orig/Shield/fixed_maps/d_a_obj_rotBridge.map
- object: files/rel/Rfinal/Release/d_a_obj_rotTrap.rel
hash: 3205b0a35b1c591ded487490584113af31cfd556
symbols: config/Shield/rels/d_a_obj_rotTrap/symbols.txt
splits: config/Shield/rels/d_a_obj_rotTrap/splits.txt
# map: orig/Shield/fixed_maps/d_a_obj_rotTrap.map
- object: files/rel/Rfinal/Release/d_a_obj_roten.rel
hash: c6cc9ebc315f8cbed631240fac3ad4dcb69b1f7b
symbols: config/Shield/rels/d_a_obj_roten/symbols.txt
splits: config/Shield/rels/d_a_obj_roten/splits.txt
# map: orig/Shield/fixed_maps/d_a_obj_roten.map
- object: files/rel/Rfinal/Release/d_a_obj_rstair.rel
hash: 214d72c1d59aaeb7d0d88d88c3183818b45aeaab
symbols: config/Shield/rels/d_a_obj_rstair/symbols.txt
splits: config/Shield/rels/d_a_obj_rstair/splits.txt
# map: orig/Shield/fixed_maps/d_a_obj_rstair.map
- object: files/rel/Rfinal/Release/d_a_obj_rw.rel
hash: 40873ae73c9b0032bccb319eac99be02ac7cf2ec
symbols: config/Shield/rels/d_a_obj_rw/symbols.txt
splits: config/Shield/rels/d_a_obj_rw/splits.txt
# map: orig/Shield/fixed_maps/d_a_obj_rw.map
- object: files/rel/Rfinal/Release/d_a_obj_saidan.rel
hash: 675e5e3e8539633ae5941a230a350ebd799bac50
symbols: config/Shield/rels/d_a_obj_saidan/symbols.txt
splits: config/Shield/rels/d_a_obj_saidan/splits.txt
# map: orig/Shield/fixed_maps/d_a_obj_saidan.map
- object: files/rel/Rfinal/Release/d_a_obj_sakuita.rel
hash: e386b101e1de0738924edf964bf5636f58005f84
symbols: config/Shield/rels/d_a_obj_sakuita/symbols.txt
splits: config/Shield/rels/d_a_obj_sakuita/splits.txt
# map: orig/Shield/fixed_maps/d_a_obj_sakuita.map
- object: files/rel/Rfinal/Release/d_a_obj_sakuita_rope.rel
hash: b123101678c81ec3343d9f12010305f75cf9e9be
symbols: config/Shield/rels/d_a_obj_sakuita_rope/symbols.txt
splits: config/Shield/rels/d_a_obj_sakuita_rope/splits.txt
# map: orig/Shield/fixed_maps/d_a_obj_sakuita_rope.map
- object: files/rel/Rfinal/Release/d_a_obj_scannon.rel
hash: f22bf8f42fd215032d701362a996f8e82668d3e4
symbols: config/Shield/rels/d_a_obj_scannon/symbols.txt
splits: config/Shield/rels/d_a_obj_scannon/splits.txt
# map: orig/Shield/fixed_maps/d_a_obj_scannon.map
- object: files/rel/Rfinal/Release/d_a_obj_scannon_crs.rel
hash: 086ec3d1c3f51a485073bda8ceb2d69b3ba8135f
symbols: config/Shield/rels/d_a_obj_scannon_crs/symbols.txt
splits: config/Shield/rels/d_a_obj_scannon_crs/splits.txt
# map: orig/Shield/fixed_maps/d_a_obj_scannon_crs.map
- object: files/rel/Rfinal/Release/d_a_obj_scannon_ten.rel
hash: 3bd50581abe03a2759aa07cc23d3208dbe50f604
symbols: config/Shield/rels/d_a_obj_scannon_ten/symbols.txt
splits: config/Shield/rels/d_a_obj_scannon_ten/splits.txt
# map: orig/Shield/fixed_maps/d_a_obj_scannon_ten.map
- object: files/rel/Rfinal/Release/d_a_obj_sekidoor.rel
hash: 10404bd3ba7c797b9dc68670ee1335bed0e50237
symbols: config/Shield/rels/d_a_obj_sekidoor/symbols.txt
splits: config/Shield/rels/d_a_obj_sekidoor/splits.txt
# map: orig/Shield/fixed_maps/d_a_obj_sekidoor.map
- object: files/rel/Rfinal/Release/d_a_obj_sekizo.rel
hash: 138373f57264c8eba3606fd3d22977aca1d111b9
symbols: config/Shield/rels/d_a_obj_sekizo/symbols.txt
splits: config/Shield/rels/d_a_obj_sekizo/splits.txt
# map: orig/Shield/fixed_maps/d_a_obj_sekizo.map
- object: files/rel/Rfinal/Release/d_a_obj_sekizoa.rel
hash: c52e3a0c7ce27c652e32fcd570f22f200260fa27
symbols: config/Shield/rels/d_a_obj_sekizoa/symbols.txt
splits: config/Shield/rels/d_a_obj_sekizoa/splits.txt
# map: orig/Shield/fixed_maps/d_a_obj_sekizoa.map
- object: files/rel/Rfinal/Release/d_a_obj_shield.rel
hash: 29ed37550bbfcd0df8d9997df7a0fe79c96d7a19
symbols: config/Shield/rels/d_a_obj_shield/symbols.txt
splits: config/Shield/rels/d_a_obj_shield/splits.txt
# map: orig/Shield/fixed_maps/d_a_obj_shield.map
- object: files/rel/Rfinal/Release/d_a_obj_sm_door.rel
hash: 850b32664940b6f8d48c14e47c1afe94594a0aea
symbols: config/Shield/rels/d_a_obj_sm_door/symbols.txt
splits: config/Shield/rels/d_a_obj_sm_door/splits.txt
# map: orig/Shield/fixed_maps/d_a_obj_sm_door.map
- object: files/rel/Rfinal/Release/d_a_obj_smallkey.rel
hash: 2d51bc615e21b59494c50ad20e90237eead0e07b
symbols: config/Shield/rels/d_a_obj_smallkey/symbols.txt
splits: config/Shield/rels/d_a_obj_smallkey/splits.txt
# map: orig/Shield/fixed_maps/d_a_obj_smallkey.map
- object: files/rel/Rfinal/Release/d_a_obj_smgdoor.rel
hash: e95692096c0b7317ef66ca1f217d060880cf5076
symbols: config/Shield/rels/d_a_obj_smgdoor/symbols.txt
splits: config/Shield/rels/d_a_obj_smgdoor/splits.txt
# map: orig/Shield/fixed_maps/d_a_obj_smgdoor.map
- object: files/rel/Rfinal/Release/d_a_obj_smoke.rel
hash: e30a186126bae69b7f472682ec3a99f842d276ea
symbols: config/Shield/rels/d_a_obj_smoke/symbols.txt
splits: config/Shield/rels/d_a_obj_smoke/splits.txt
# map: orig/Shield/fixed_maps/d_a_obj_smoke.map
- object: files/rel/Rfinal/Release/d_a_obj_smtile.rel
hash: ddbb16a8f2885f6326d67fa72b8998f9ea5c06dd
symbols: config/Shield/rels/d_a_obj_smtile/symbols.txt
splits: config/Shield/rels/d_a_obj_smtile/splits.txt
# map: orig/Shield/fixed_maps/d_a_obj_smtile.map
- object: files/rel/Rfinal/Release/d_a_obj_smw_stone.rel
hash: 38c4b20a04196cbb2e736c044fcaa90cf5635a68
symbols: config/Shield/rels/d_a_obj_smw_stone/symbols.txt
splits: config/Shield/rels/d_a_obj_smw_stone/splits.txt
# map: orig/Shield/fixed_maps/d_a_obj_smw_stone.map
- object: files/rel/Rfinal/Release/d_a_obj_snowEffTag.rel
hash: 0721473807fa3d3884c5b0a7fcf008cf41fad5e2
symbols: config/Shield/rels/d_a_obj_snowEffTag/symbols.txt
splits: config/Shield/rels/d_a_obj_snowEffTag/splits.txt
# map: orig/Shield/fixed_maps/d_a_obj_snowEffTag.map
- object: files/rel/Rfinal/Release/d_a_obj_snow_soup.rel
hash: 0e09dd5338b8b060894a0ee63d865941198b6418
symbols: config/Shield/rels/d_a_obj_snow_soup/symbols.txt
splits: config/Shield/rels/d_a_obj_snow_soup/splits.txt
# map: orig/Shield/fixed_maps/d_a_obj_snow_soup.map
- object: files/rel/Rfinal/Release/d_a_obj_so.rel
hash: 62217c414afb631221b3800bc6e20f30e5b50f6b
symbols: config/Shield/rels/d_a_obj_so/symbols.txt
splits: config/Shield/rels/d_a_obj_so/splits.txt
# map: orig/Shield/fixed_maps/d_a_obj_so.map
- object: files/rel/Rfinal/Release/d_a_obj_spinLift.rel
hash: 1ea51fb37bc7146302bd0ec5cddc537b25a6e9f8
symbols: config/Shield/rels/d_a_obj_spinLift/symbols.txt
splits: config/Shield/rels/d_a_obj_spinLift/splits.txt
# map: orig/Shield/fixed_maps/d_a_obj_spinLift.map
- object: files/rel/Rfinal/Release/d_a_obj_ss_drink.rel
hash: 290a59360e778496223caac0835e8f0df0739145
symbols: config/Shield/rels/d_a_obj_ss_drink/symbols.txt
splits: config/Shield/rels/d_a_obj_ss_drink/splits.txt
# map: orig/Shield/fixed_maps/d_a_obj_ss_drink.map
- object: files/rel/Rfinal/Release/d_a_obj_ss_item.rel
hash: fdfd3c050853a52000b46dd92bbcc303fe46b8e0
symbols: config/Shield/rels/d_a_obj_ss_item/symbols.txt
splits: config/Shield/rels/d_a_obj_ss_item/splits.txt
# map: orig/Shield/fixed_maps/d_a_obj_ss_item.map
- object: files/rel/Rfinal/Release/d_a_obj_stairBlock.rel
hash: 6346320c46392a0c3572a6375aba7b6e4937f27d
symbols: config/Shield/rels/d_a_obj_stairBlock/symbols.txt
splits: config/Shield/rels/d_a_obj_stairBlock/splits.txt
# map: orig/Shield/fixed_maps/d_a_obj_stairBlock.map
- object: files/rel/Rfinal/Release/d_a_obj_stone.rel
hash: 6cc7fddb091f414c249e0bd21811c012ad283493
symbols: config/Shield/rels/d_a_obj_stone/symbols.txt
splits: config/Shield/rels/d_a_obj_stone/splits.txt
# map: orig/Shield/fixed_maps/d_a_obj_stone.map
- object: files/rel/Rfinal/Release/d_a_obj_stopper.rel
hash: 344f28b62585fe7d2f968e3fe62520ef55ae9329
symbols: config/Shield/rels/d_a_obj_stopper/symbols.txt
splits: config/Shield/rels/d_a_obj_stopper/splits.txt
# map: orig/Shield/fixed_maps/d_a_obj_stopper.map
- object: files/rel/Rfinal/Release/d_a_obj_stopper2.rel
hash: 35ff65cbae415a4e7997eb1f2f16c464f54a7eb0
symbols: config/Shield/rels/d_a_obj_stopper2/symbols.txt
splits: config/Shield/rels/d_a_obj_stopper2/splits.txt
# map: orig/Shield/fixed_maps/d_a_obj_stopper2.map
- object: files/rel/Rfinal/Release/d_a_obj_suisya.rel
hash: 70d856fd626aef7fa109a0107bdce3d6d601871b
symbols: config/Shield/rels/d_a_obj_suisya/symbols.txt
splits: config/Shield/rels/d_a_obj_suisya/splits.txt
# map: orig/Shield/fixed_maps/d_a_obj_suisya.map
- object: files/rel/Rfinal/Release/d_a_obj_sw.rel
hash: ef7edbb2753cc7bad043330483f540b0d4fc1ded
symbols: config/Shield/rels/d_a_obj_sw/symbols.txt
splits: config/Shield/rels/d_a_obj_sw/splits.txt
# map: orig/Shield/fixed_maps/d_a_obj_sw.map
- object: files/rel/Rfinal/Release/d_a_obj_swBallA.rel
hash: 0fd4e1f5575a9b4a198183258fb531a93f2045ca
symbols: config/Shield/rels/d_a_obj_swBallA/symbols.txt
splits: config/Shield/rels/d_a_obj_swBallA/splits.txt
# map: orig/Shield/fixed_maps/d_a_obj_swBallA.map
- object: files/rel/Rfinal/Release/d_a_obj_swBallB.rel
hash: 84cbf0bb56a2c4aa7be7c8b2b453c46ae0153e50
symbols: config/Shield/rels/d_a_obj_swBallB/symbols.txt
splits: config/Shield/rels/d_a_obj_swBallB/splits.txt
# map: orig/Shield/fixed_maps/d_a_obj_swBallB.map
- object: files/rel/Rfinal/Release/d_a_obj_swBallC.rel
hash: ca1c91e93a9b0418550b82415b14b82a63ff6cde
symbols: config/Shield/rels/d_a_obj_swBallC/symbols.txt
splits: config/Shield/rels/d_a_obj_swBallC/splits.txt
# map: orig/Shield/fixed_maps/d_a_obj_swBallC.map
- object: files/rel/Rfinal/Release/d_a_obj_swLight.rel
hash: c4a1384f15fea642cf90594c76dc92a651d7563e
symbols: config/Shield/rels/d_a_obj_swLight/symbols.txt
splits: config/Shield/rels/d_a_obj_swLight/splits.txt
# map: orig/Shield/fixed_maps/d_a_obj_swLight.map
- object: files/rel/Rfinal/Release/d_a_obj_swchain.rel
hash: 5aa075728a4eff73bb09cdf7c8231a4a7ecd3858
symbols: config/Shield/rels/d_a_obj_swchain/symbols.txt
splits: config/Shield/rels/d_a_obj_swchain/splits.txt
# map: orig/Shield/fixed_maps/d_a_obj_swchain.map
- object: files/rel/Rfinal/Release/d_a_obj_swhang.rel
hash: 15fa07468bb18be1b0b82483f84b8a231d4f08f2
symbols: config/Shield/rels/d_a_obj_swhang/symbols.txt
splits: config/Shield/rels/d_a_obj_swhang/splits.txt
# map: orig/Shield/fixed_maps/d_a_obj_swhang.map
- object: files/rel/Rfinal/Release/d_a_obj_sword.rel
hash: c4eca3e82220e662d22b152ea3668609e8d1bc51
symbols: config/Shield/rels/d_a_obj_sword/symbols.txt
splits: config/Shield/rels/d_a_obj_sword/splits.txt
# map: orig/Shield/fixed_maps/d_a_obj_sword.map
- object: files/rel/Rfinal/Release/d_a_obj_swpush2.rel
hash: 8da71e9aa0c8494ae1aefc34e90836c8cd680783
symbols: config/Shield/rels/d_a_obj_swpush2/symbols.txt
splits: config/Shield/rels/d_a_obj_swpush2/splits.txt
# map: orig/Shield/fixed_maps/d_a_obj_swpush2.map
- object: files/rel/Rfinal/Release/d_a_obj_swspinner.rel
hash: 52cf1cdc51d7ccb0eb53c7835787fb7000bf1cc7
symbols: config/Shield/rels/d_a_obj_swspinner/symbols.txt
splits: config/Shield/rels/d_a_obj_swspinner/splits.txt
# map: orig/Shield/fixed_maps/d_a_obj_swspinner.map
- object: files/rel/Rfinal/Release/d_a_obj_swturn.rel
hash: 59bf64144d8bd7aaf4722d4c5cbd908cdf0e6423
symbols: config/Shield/rels/d_a_obj_swturn/symbols.txt
splits: config/Shield/rels/d_a_obj_swturn/splits.txt
# map: orig/Shield/fixed_maps/d_a_obj_swturn.map
- object: files/rel/Rfinal/Release/d_a_obj_syRock.rel
hash: 424bf3341c4f1514c14ce705427531c4510d6fbe
symbols: config/Shield/rels/d_a_obj_syRock/symbols.txt
splits: config/Shield/rels/d_a_obj_syRock/splits.txt
# map: orig/Shield/fixed_maps/d_a_obj_syRock.map
- object: files/rel/Rfinal/Release/d_a_obj_szbridge.rel
hash: 0a57b464acd0d0a9cf68036b89091ccb6929e321
symbols: config/Shield/rels/d_a_obj_szbridge/symbols.txt
splits: config/Shield/rels/d_a_obj_szbridge/splits.txt
# map: orig/Shield/fixed_maps/d_a_obj_szbridge.map
- object: files/rel/Rfinal/Release/d_a_obj_taFence.rel
hash: 8c852e749358fd4e8c2d6fc4d20c72ca59f543f4
symbols: config/Shield/rels/d_a_obj_taFence/symbols.txt
splits: config/Shield/rels/d_a_obj_taFence/splits.txt
# map: orig/Shield/fixed_maps/d_a_obj_taFence.map
- object: files/rel/Rfinal/Release/d_a_obj_table.rel
hash: c6e1188e43a1f0990d1e3d69bf54a7052e0d9688
symbols: config/Shield/rels/d_a_obj_table/symbols.txt
splits: config/Shield/rels/d_a_obj_table/splits.txt
# map: orig/Shield/fixed_maps/d_a_obj_table.map
- object: files/rel/Rfinal/Release/d_a_obj_takaraDai.rel
hash: 92124f2dd73a0d063edb50d475f6f52ef509b6dd
symbols: config/Shield/rels/d_a_obj_takaraDai/symbols.txt
splits: config/Shield/rels/d_a_obj_takaraDai/splits.txt
# map: orig/Shield/fixed_maps/d_a_obj_takaraDai.map
- object: files/rel/Rfinal/Release/d_a_obj_tatigi.rel
hash: 5e4ad1206c71c1ad52a0dbc7e55f9c1d6656ce6c
symbols: config/Shield/rels/d_a_obj_tatigi/symbols.txt
splits: config/Shield/rels/d_a_obj_tatigi/splits.txt
# map: orig/Shield/fixed_maps/d_a_obj_tatigi.map
- object: files/rel/Rfinal/Release/d_a_obj_ten.rel
hash: 9c2fce93c897d45b77557b60e619143daf424235
symbols: config/Shield/rels/d_a_obj_ten/symbols.txt
splits: config/Shield/rels/d_a_obj_ten/splits.txt
# map: orig/Shield/fixed_maps/d_a_obj_ten.map
- object: files/rel/Rfinal/Release/d_a_obj_testcube.rel
hash: 1a2c9111704445568d9bfa66f81dbbddc60c7a28
symbols: config/Shield/rels/d_a_obj_testcube/symbols.txt
splits: config/Shield/rels/d_a_obj_testcube/splits.txt
# map: orig/Shield/fixed_maps/d_a_obj_testcube.map
- object: files/rel/Rfinal/Release/d_a_obj_tgake.rel
hash: e01beeda785242db7b0d02a64cf1e37414cf988c
symbols: config/Shield/rels/d_a_obj_tgake/symbols.txt
splits: config/Shield/rels/d_a_obj_tgake/splits.txt
# map: orig/Shield/fixed_maps/d_a_obj_tgake.map
- object: files/rel/Rfinal/Release/d_a_obj_thashi.rel
hash: 2600fe4b9076eac9744d01ac284f18b574e57950
symbols: config/Shield/rels/d_a_obj_thashi/symbols.txt
splits: config/Shield/rels/d_a_obj_thashi/splits.txt
# map: orig/Shield/fixed_maps/d_a_obj_thashi.map
- object: files/rel/Rfinal/Release/d_a_obj_thdoor.rel
hash: 2e53e15653a9cf0ff7c11ac0daf255c28fb6ae81
symbols: config/Shield/rels/d_a_obj_thdoor/symbols.txt
splits: config/Shield/rels/d_a_obj_thdoor/splits.txt
# map: orig/Shield/fixed_maps/d_a_obj_thdoor.map
- object: files/rel/Rfinal/Release/d_a_obj_timeFire.rel
hash: 4d036455c2a829140e1078ec79a17592919e5a26
symbols: config/Shield/rels/d_a_obj_timeFire/symbols.txt
splits: config/Shield/rels/d_a_obj_timeFire/splits.txt
# map: orig/Shield/fixed_maps/d_a_obj_timeFire.map
- object: files/rel/Rfinal/Release/d_a_obj_tks.rel
hash: 76a2235c1455c567370f23b3d1f10ed13de66aa3
symbols: config/Shield/rels/d_a_obj_tks/symbols.txt
splits: config/Shield/rels/d_a_obj_tks/splits.txt
# map: orig/Shield/fixed_maps/d_a_obj_tks.map
- object: files/rel/Rfinal/Release/d_a_obj_tmoon.rel
hash: af347ec904f5342e29a9446e6a10e440f008cc77
symbols: config/Shield/rels/d_a_obj_tmoon/symbols.txt
splits: config/Shield/rels/d_a_obj_tmoon/splits.txt
# map: orig/Shield/fixed_maps/d_a_obj_tmoon.map
- object: files/rel/Rfinal/Release/d_a_obj_toaru_maki.rel
hash: 9a659378da74d70b89729bc1306cc5bb397f299d
symbols: config/Shield/rels/d_a_obj_toaru_maki/symbols.txt
splits: config/Shield/rels/d_a_obj_toaru_maki/splits.txt
# map: orig/Shield/fixed_maps/d_a_obj_toaru_maki.map
- object: files/rel/Rfinal/Release/d_a_obj_toby.rel
hash: 84bfbc7db5710caef8927be647af9e1df8aabf67
symbols: config/Shield/rels/d_a_obj_toby/symbols.txt
splits: config/Shield/rels/d_a_obj_toby/splits.txt
# map: orig/Shield/fixed_maps/d_a_obj_toby.map
- object: files/rel/Rfinal/Release/d_a_obj_tobyhouse.rel
hash: 8960a1c7afe244c86c4300b7b351ebbefcf803b1
symbols: config/Shield/rels/d_a_obj_tobyhouse/symbols.txt
splits: config/Shield/rels/d_a_obj_tobyhouse/splits.txt
# map: orig/Shield/fixed_maps/d_a_obj_tobyhouse.map
- object: files/rel/Rfinal/Release/d_a_obj_togeTrap.rel
hash: a7aca6bb31ab2c6a9a3e6eb9bf8f027f4921018f
symbols: config/Shield/rels/d_a_obj_togeTrap/symbols.txt
splits: config/Shield/rels/d_a_obj_togeTrap/splits.txt
# map: orig/Shield/fixed_maps/d_a_obj_togeTrap.map
- object: files/rel/Rfinal/Release/d_a_obj_tombo.rel
hash: bb2a317a4b8b599953c654a3f82b71fb9044b2a4
symbols: config/Shield/rels/d_a_obj_tombo/symbols.txt
splits: config/Shield/rels/d_a_obj_tombo/splits.txt
# map: orig/Shield/fixed_maps/d_a_obj_tombo.map
- object: files/rel/Rfinal/Release/d_a_obj_tornado.rel
hash: d0fc74ad1231e27a4e47e5e9adf47116d6519813
symbols: config/Shield/rels/d_a_obj_tornado/symbols.txt
splits: config/Shield/rels/d_a_obj_tornado/splits.txt
# map: orig/Shield/fixed_maps/d_a_obj_tornado.map
- object: files/rel/Rfinal/Release/d_a_obj_tornado2.rel
hash: c32c3b239cb200ca5c3a3a23b4bbdda216007821
symbols: config/Shield/rels/d_a_obj_tornado2/symbols.txt
splits: config/Shield/rels/d_a_obj_tornado2/splits.txt
# map: orig/Shield/fixed_maps/d_a_obj_tornado2.map
- object: files/rel/Rfinal/Release/d_a_obj_tp.rel
hash: 06e7df3debd5a3a0016923d33f1e912484a2c79d
symbols: config/Shield/rels/d_a_obj_tp/symbols.txt
splits: config/Shield/rels/d_a_obj_tp/splits.txt
# map: orig/Shield/fixed_maps/d_a_obj_tp.map
- object: files/rel/Rfinal/Release/d_a_obj_treesh.rel
hash: 5bffa7c883a730e2b5ff4455852c136dbb474eff
symbols: config/Shield/rels/d_a_obj_treesh/symbols.txt
splits: config/Shield/rels/d_a_obj_treesh/splits.txt
# map: orig/Shield/fixed_maps/d_a_obj_treesh.map
- object: files/rel/Rfinal/Release/d_a_obj_twGate.rel
hash: 299a2093dcd4984be50c283a75ae290e43f11af2
symbols: config/Shield/rels/d_a_obj_twGate/symbols.txt
splits: config/Shield/rels/d_a_obj_twGate/splits.txt
# map: orig/Shield/fixed_maps/d_a_obj_twGate.map
- object: files/rel/Rfinal/Release/d_a_obj_udoor.rel
hash: d422fa9b73925d92b4bbcb92432e2c19593d6810
symbols: config/Shield/rels/d_a_obj_udoor/symbols.txt
splits: config/Shield/rels/d_a_obj_udoor/splits.txt
# map: orig/Shield/fixed_maps/d_a_obj_udoor.map
- object: files/rel/Rfinal/Release/d_a_obj_usaku.rel
hash: d4b3e041cbec648fc382763b10ea216a0483771d
symbols: config/Shield/rels/d_a_obj_usaku/symbols.txt
splits: config/Shield/rels/d_a_obj_usaku/splits.txt
# map: orig/Shield/fixed_maps/d_a_obj_usaku.map
- object: files/rel/Rfinal/Release/d_a_obj_vground.rel
hash: e1813fc810f9cf15e496284d01779f2e21cb9e33
symbols: config/Shield/rels/d_a_obj_vground/symbols.txt
splits: config/Shield/rels/d_a_obj_vground/splits.txt
# map: orig/Shield/fixed_maps/d_a_obj_vground.map
- object: files/rel/Rfinal/Release/d_a_obj_volcball.rel
hash: 4edf4cb65ec50d31c87ecc79656dd8703ec805e3
symbols: config/Shield/rels/d_a_obj_volcball/symbols.txt
splits: config/Shield/rels/d_a_obj_volcball/splits.txt
# map: orig/Shield/fixed_maps/d_a_obj_volcball.map
- object: files/rel/Rfinal/Release/d_a_obj_volcbom.rel
hash: 55cc4f1815439a028faabc888ab5ab004a46eeb6
symbols: config/Shield/rels/d_a_obj_volcbom/symbols.txt
splits: config/Shield/rels/d_a_obj_volcbom/splits.txt
# map: orig/Shield/fixed_maps/d_a_obj_volcbom.map
- object: files/rel/Rfinal/Release/d_a_obj_warp_kbrg.rel
hash: 11e8b3fecb4b18ce2b3d9cd7ad34301322c4bd10
symbols: config/Shield/rels/d_a_obj_warp_kbrg/symbols.txt
splits: config/Shield/rels/d_a_obj_warp_kbrg/splits.txt
# map: orig/Shield/fixed_maps/d_a_obj_warp_kbrg.map
- object: files/rel/Rfinal/Release/d_a_obj_warp_obrg.rel
hash: 5e1ccd508baf02b70e6357563809b821400ce291
symbols: config/Shield/rels/d_a_obj_warp_obrg/symbols.txt
splits: config/Shield/rels/d_a_obj_warp_obrg/splits.txt
# map: orig/Shield/fixed_maps/d_a_obj_warp_obrg.map
- object: files/rel/Rfinal/Release/d_a_obj_waterGate.rel
hash: f57ac7080892535b3cc8a39336f7f7456e32a66f
symbols: config/Shield/rels/d_a_obj_waterGate/symbols.txt
splits: config/Shield/rels/d_a_obj_waterGate/splits.txt
# map: orig/Shield/fixed_maps/d_a_obj_waterGate.map
- object: files/rel/Rfinal/Release/d_a_obj_waterPillar.rel
hash: 23dd1134fe3ea59792b80a83eb47f180ed49beb0
symbols: config/Shield/rels/d_a_obj_waterPillar/symbols.txt
splits: config/Shield/rels/d_a_obj_waterPillar/splits.txt
# map: orig/Shield/fixed_maps/d_a_obj_waterPillar.map
- object: files/rel/Rfinal/Release/d_a_obj_waterfall.rel
hash: eac2da90a31a2def742e56673fa6e2bf143b50ef
symbols: config/Shield/rels/d_a_obj_waterfall/symbols.txt
splits: config/Shield/rels/d_a_obj_waterfall/splits.txt
# map: orig/Shield/fixed_maps/d_a_obj_waterfall.map
- object: files/rel/Rfinal/Release/d_a_obj_wchain.rel
hash: c796165d958da199f1a10bcdc4311b3cb724bf5c
symbols: config/Shield/rels/d_a_obj_wchain/symbols.txt
splits: config/Shield/rels/d_a_obj_wchain/splits.txt
# map: orig/Shield/fixed_maps/d_a_obj_wchain.map
- object: files/rel/Rfinal/Release/d_a_obj_wdStick.rel
hash: a179285e1d28a1d417466bd2e323d700e678ea92
symbols: config/Shield/rels/d_a_obj_wdStick/symbols.txt
splits: config/Shield/rels/d_a_obj_wdStick/splits.txt
# map: orig/Shield/fixed_maps/d_a_obj_wdStick.map
- object: files/rel/Rfinal/Release/d_a_obj_web0.rel
hash: 2359bcecea01548dd07bfa4dd9de6e370151fac4
symbols: config/Shield/rels/d_a_obj_web0/symbols.txt
splits: config/Shield/rels/d_a_obj_web0/splits.txt
# map: orig/Shield/fixed_maps/d_a_obj_web0.map
- object: files/rel/Rfinal/Release/d_a_obj_web1.rel
hash: 05958729164262eee5705222429b361fcd161faf
symbols: config/Shield/rels/d_a_obj_web1/symbols.txt
splits: config/Shield/rels/d_a_obj_web1/splits.txt
# map: orig/Shield/fixed_maps/d_a_obj_web1.map
- object: files/rel/Rfinal/Release/d_a_obj_well_cover.rel
hash: c67b286c15a65110a2870ff4f3a07f937b41fe2c
symbols: config/Shield/rels/d_a_obj_well_cover/symbols.txt
splits: config/Shield/rels/d_a_obj_well_cover/splits.txt
# map: orig/Shield/fixed_maps/d_a_obj_well_cover.map
- object: files/rel/Rfinal/Release/d_a_obj_wflag.rel
hash: 0cb1e1c2f68a5f359440953d9d692d444e62a8cf
symbols: config/Shield/rels/d_a_obj_wflag/symbols.txt
splits: config/Shield/rels/d_a_obj_wflag/splits.txt
# map: orig/Shield/fixed_maps/d_a_obj_wflag.map
- object: files/rel/Rfinal/Release/d_a_obj_wind_stone.rel
hash: 7c564b9dcfa8e9c5d16406c48a6ee7b8fd249a3d
symbols: config/Shield/rels/d_a_obj_wind_stone/symbols.txt
splits: config/Shield/rels/d_a_obj_wind_stone/splits.txt
# map: orig/Shield/fixed_maps/d_a_obj_wind_stone.map
- object: files/rel/Rfinal/Release/d_a_obj_window.rel
hash: a236aad2f690c6915b5fa9c601360aee11f012a8
symbols: config/Shield/rels/d_a_obj_window/symbols.txt
splits: config/Shield/rels/d_a_obj_window/splits.txt
# map: orig/Shield/fixed_maps/d_a_obj_window.map
- object: files/rel/Rfinal/Release/d_a_obj_wood_pendulum.rel
hash: f86d406cf1a48fc7db93476e031a27b4aec61074
symbols: config/Shield/rels/d_a_obj_wood_pendulum/symbols.txt
splits: config/Shield/rels/d_a_obj_wood_pendulum/splits.txt
# map: orig/Shield/fixed_maps/d_a_obj_wood_pendulum.map
- object: files/rel/Rfinal/Release/d_a_obj_wood_statue.rel
hash: e0c25eee120fecc4f2c732aacf735efc972a38be
symbols: config/Shield/rels/d_a_obj_wood_statue/symbols.txt
splits: config/Shield/rels/d_a_obj_wood_statue/splits.txt
# map: orig/Shield/fixed_maps/d_a_obj_wood_statue.map
- object: files/rel/Rfinal/Release/d_a_obj_wsword.rel
hash: 4e3b3f18738dc3f48935b45950cc6a85c2c0898f
symbols: config/Shield/rels/d_a_obj_wsword/symbols.txt
splits: config/Shield/rels/d_a_obj_wsword/splits.txt
# map: orig/Shield/fixed_maps/d_a_obj_wsword.map
- object: files/rel/Rfinal/Release/d_a_obj_yel_bag.rel
hash: 6bc01922802d2293d55baa9a755f70c0ed29b05f
symbols: config/Shield/rels/d_a_obj_yel_bag/symbols.txt
splits: config/Shield/rels/d_a_obj_yel_bag/splits.txt
# map: orig/Shield/fixed_maps/d_a_obj_yel_bag.map
- object: files/rel/Rfinal/Release/d_a_obj_ystone.rel
hash: 1c21e99795dd0d8511a1eac38c7836f1718a7e08
symbols: config/Shield/rels/d_a_obj_ystone/symbols.txt
splits: config/Shield/rels/d_a_obj_ystone/splits.txt
# map: orig/Shield/fixed_maps/d_a_obj_ystone.map
- object: files/rel/Rfinal/Release/d_a_obj_zcloth.rel
hash: 5df17ff8b156c990d8059da1c49006cad12cd1b6
symbols: config/Shield/rels/d_a_obj_zcloth/symbols.txt
splits: config/Shield/rels/d_a_obj_zcloth/splits.txt
# map: orig/Shield/fixed_maps/d_a_obj_zcloth.map
- object: files/rel/Rfinal/Release/d_a_obj_zdoor.rel
hash: 1aa60846f082f69af79ff4bb836d42c36f1e751f
symbols: config/Shield/rels/d_a_obj_zdoor/symbols.txt
splits: config/Shield/rels/d_a_obj_zdoor/splits.txt
# map: orig/Shield/fixed_maps/d_a_obj_zdoor.map
- object: files/rel/Rfinal/Release/d_a_obj_zrTurara.rel
hash: 54d31a5abc65603ac9ff62f531d2f1484f153f74
symbols: config/Shield/rels/d_a_obj_zrTurara/symbols.txt
splits: config/Shield/rels/d_a_obj_zrTurara/splits.txt
# map: orig/Shield/fixed_maps/d_a_obj_zrTurara.map
- object: files/rel/Rfinal/Release/d_a_obj_zrTuraraRock.rel
hash: c4ea5bfadd4fa2da501569c9ed06bc6972f1fe02
symbols: config/Shield/rels/d_a_obj_zrTuraraRock/symbols.txt
splits: config/Shield/rels/d_a_obj_zrTuraraRock/splits.txt
# map: orig/Shield/fixed_maps/d_a_obj_zrTuraraRock.map
- object: files/rel/Rfinal/Release/d_a_obj_zraMark.rel
hash: 5c50a360a29383a3935dbe6154cb254970c3105f
symbols: config/Shield/rels/d_a_obj_zraMark/symbols.txt
splits: config/Shield/rels/d_a_obj_zraMark/splits.txt
# map: orig/Shield/fixed_maps/d_a_obj_zraMark.map
- object: files/rel/Rfinal/Release/d_a_obj_zra_freeze.rel
hash: 571d882f43f1d0e3e2da3659f2642aa17cd6ebf4
symbols: config/Shield/rels/d_a_obj_zra_freeze/symbols.txt
splits: config/Shield/rels/d_a_obj_zra_freeze/splits.txt
# map: orig/Shield/fixed_maps/d_a_obj_zra_freeze.map
- object: files/rel/Rfinal/Release/d_a_obj_zra_rock.rel
hash: fe4b8bb34cbfe53f7f454d00c9dcf2364dc0d12f
symbols: config/Shield/rels/d_a_obj_zra_rock/symbols.txt
splits: config/Shield/rels/d_a_obj_zra_rock/splits.txt
# map: orig/Shield/fixed_maps/d_a_obj_zra_rock.map
- object: files/rel/Rfinal/Release/d_a_passer_mng.rel
hash: cbc78b1e5d5f3bfcbac73e949ae8cd85b7094f67
symbols: config/Shield/rels/d_a_passer_mng/symbols.txt
splits: config/Shield/rels/d_a_passer_mng/splits.txt
# map: orig/Shield/fixed_maps/d_a_passer_mng.map
- object: files/rel/Rfinal/Release/d_a_peru.rel
hash: 095b04dace4ebb164a18f90fb81d87e1d034f1f5
symbols: config/Shield/rels/d_a_peru/symbols.txt
splits: config/Shield/rels/d_a_peru/splits.txt
# map: orig/Shield/fixed_maps/d_a_peru.map
- object: files/rel/Rfinal/Release/d_a_ppolamp.rel
hash: 31d583d9d49c8f4be030ae92b7d79004d7dce100
symbols: config/Shield/rels/d_a_ppolamp/symbols.txt
splits: config/Shield/rels/d_a_ppolamp/splits.txt
# map: orig/Shield/fixed_maps/d_a_ppolamp.map
- object: files/rel/Rfinal/Release/d_a_skip_2D.rel
hash: 8ea5726d083d6bad99bc23073db53b1542b6a126
symbols: config/Shield/rels/d_a_skip_2D/symbols.txt
splits: config/Shield/rels/d_a_skip_2D/splits.txt
# map: orig/Shield/fixed_maps/d_a_skip_2D.map
- object: files/rel/Rfinal/Release/d_a_startAndGoal.rel
hash: e7a271a6a391b7cd172dcb5b95c330a2a9472529
symbols: config/Shield/rels/d_a_startAndGoal/symbols.txt
splits: config/Shield/rels/d_a_startAndGoal/splits.txt
# map: orig/Shield/fixed_maps/d_a_startAndGoal.map
- object: files/rel/Rfinal/Release/d_a_swBall.rel
hash: 3f2f8177481a6ae60ca7605ff87be8251c8ae477
symbols: config/Shield/rels/d_a_swBall/symbols.txt
splits: config/Shield/rels/d_a_swBall/splits.txt
# map: orig/Shield/fixed_maps/d_a_swBall.map
- object: files/rel/Rfinal/Release/d_a_swLBall.rel
hash: 83f80935506e88698afac15bb17018a0a2bacd8d
symbols: config/Shield/rels/d_a_swLBall/symbols.txt
splits: config/Shield/rels/d_a_swLBall/splits.txt
# map: orig/Shield/fixed_maps/d_a_swLBall.map
- object: files/rel/Rfinal/Release/d_a_swTime.rel
hash: 94810dfc2dd662fea110cbfa082a686ebbee8c9c
symbols: config/Shield/rels/d_a_swTime/symbols.txt
splits: config/Shield/rels/d_a_swTime/splits.txt
# map: orig/Shield/fixed_maps/d_a_swTime.map
- object: files/rel/Rfinal/Release/d_a_tag_Lv6Gate.rel
hash: 05f45a04d1f20306a93cbb2fdf73b021b8ef4522
symbols: config/Shield/rels/d_a_tag_Lv6Gate/symbols.txt
splits: config/Shield/rels/d_a_tag_Lv6Gate/splits.txt
# map: orig/Shield/fixed_maps/d_a_tag_Lv6Gate.map
- object: files/rel/Rfinal/Release/d_a_tag_Lv7Gate.rel
hash: 6880aa9a8d34bbcad099a1a0a592832390657a43
symbols: config/Shield/rels/d_a_tag_Lv7Gate/symbols.txt
splits: config/Shield/rels/d_a_tag_Lv7Gate/splits.txt
# map: orig/Shield/fixed_maps/d_a_tag_Lv7Gate.map
- object: files/rel/Rfinal/Release/d_a_tag_Lv8Gate.rel
hash: 7496c592d16b099a7c2b1b58969bbec6b7e8c47d
symbols: config/Shield/rels/d_a_tag_Lv8Gate/symbols.txt
splits: config/Shield/rels/d_a_tag_Lv8Gate/splits.txt
# map: orig/Shield/fixed_maps/d_a_tag_Lv8Gate.map
- object: files/rel/Rfinal/Release/d_a_tag_TWgate.rel
hash: 07c6848fc7c4dc2711cd88401d220d4693dbdc03
symbols: config/Shield/rels/d_a_tag_TWgate/symbols.txt
splits: config/Shield/rels/d_a_tag_TWgate/splits.txt
# map: orig/Shield/fixed_maps/d_a_tag_TWgate.map
- object: files/rel/Rfinal/Release/d_a_tag_arena.rel
hash: 350693975e10545532570f0ad51c09060ebc58db
symbols: config/Shield/rels/d_a_tag_arena/symbols.txt
splits: config/Shield/rels/d_a_tag_arena/splits.txt
# map: orig/Shield/fixed_maps/d_a_tag_arena.map
- object: files/rel/Rfinal/Release/d_a_tag_assistance.rel
hash: 41e85fd4b1497b008aae1b3607ca1d027ea557d8
symbols: config/Shield/rels/d_a_tag_assistance/symbols.txt
splits: config/Shield/rels/d_a_tag_assistance/splits.txt
# map: orig/Shield/fixed_maps/d_a_tag_assistance.map
- object: files/rel/Rfinal/Release/d_a_tag_bottle_item.rel
hash: fb418b8a20bdb37511e4222f6a29c65d0007e3c6
symbols: config/Shield/rels/d_a_tag_bottle_item/symbols.txt
splits: config/Shield/rels/d_a_tag_bottle_item/splits.txt
# map: orig/Shield/fixed_maps/d_a_tag_bottle_item.map
- object: files/rel/Rfinal/Release/d_a_tag_chgrestart.rel
hash: 2c0e1511754781261985946cfb04eb32548d3011
symbols: config/Shield/rels/d_a_tag_chgrestart/symbols.txt
splits: config/Shield/rels/d_a_tag_chgrestart/splits.txt
# map: orig/Shield/fixed_maps/d_a_tag_chgrestart.map
- object: files/rel/Rfinal/Release/d_a_tag_csw.rel
hash: 246fbb3fdd5269e645b10b4e65eb4b8b68770a58
symbols: config/Shield/rels/d_a_tag_csw/symbols.txt
splits: config/Shield/rels/d_a_tag_csw/splits.txt
# map: orig/Shield/fixed_maps/d_a_tag_csw.map
- object: files/rel/Rfinal/Release/d_a_tag_escape.rel
hash: e84e3fd483301976aa5e684d1af982b304449729
symbols: config/Shield/rels/d_a_tag_escape/symbols.txt
splits: config/Shield/rels/d_a_tag_escape/splits.txt
# map: orig/Shield/fixed_maps/d_a_tag_escape.map
- object: files/rel/Rfinal/Release/d_a_tag_firewall.rel
hash: 6cdf82ee06ed83baed66f0599ba86bfa6da902cb
symbols: config/Shield/rels/d_a_tag_firewall/symbols.txt
splits: config/Shield/rels/d_a_tag_firewall/splits.txt
# map: orig/Shield/fixed_maps/d_a_tag_firewall.map
- object: files/rel/Rfinal/Release/d_a_tag_gra.rel
hash: 270b03d51796883f9d8a34b123af02c32a7340b1
symbols: config/Shield/rels/d_a_tag_gra/symbols.txt
splits: config/Shield/rels/d_a_tag_gra/splits.txt
# map: orig/Shield/fixed_maps/d_a_tag_gra.map
- object: files/rel/Rfinal/Release/d_a_tag_guard.rel
hash: fb01cc0699f04d24b718604001d456229cde4f64
symbols: config/Shield/rels/d_a_tag_guard/symbols.txt
splits: config/Shield/rels/d_a_tag_guard/splits.txt
# map: orig/Shield/fixed_maps/d_a_tag_guard.map
- object: files/rel/Rfinal/Release/d_a_tag_instruction.rel
hash: 3ac9f541db5f5b434c9d3868d004b08113902d06
symbols: config/Shield/rels/d_a_tag_instruction/symbols.txt
splits: config/Shield/rels/d_a_tag_instruction/splits.txt
# map: orig/Shield/fixed_maps/d_a_tag_instruction.map
- object: files/rel/Rfinal/Release/d_a_tag_kago_fall.rel
hash: 9f6656d410241a222edc5d2cf61948927f401214
symbols: config/Shield/rels/d_a_tag_kago_fall/symbols.txt
splits: config/Shield/rels/d_a_tag_kago_fall/splits.txt
# map: orig/Shield/fixed_maps/d_a_tag_kago_fall.map
- object: files/rel/Rfinal/Release/d_a_tag_lightball.rel
hash: eda8bca44cea3e2ceb08bbedc64761f1dcb5332d
symbols: config/Shield/rels/d_a_tag_lightball/symbols.txt
splits: config/Shield/rels/d_a_tag_lightball/splits.txt
# map: orig/Shield/fixed_maps/d_a_tag_lightball.map
- object: files/rel/Rfinal/Release/d_a_tag_lv5soup.rel
hash: 66fce2e97920dadf49df86171eba5eefea81ccc8
symbols: config/Shield/rels/d_a_tag_lv5soup/symbols.txt
splits: config/Shield/rels/d_a_tag_lv5soup/splits.txt
# map: orig/Shield/fixed_maps/d_a_tag_lv5soup.map
- object: files/rel/Rfinal/Release/d_a_tag_lv6CstaSw.rel
hash: bdec8f6de9e3d58254d6567cfc8b4aa4826b4e50
symbols: config/Shield/rels/d_a_tag_lv6CstaSw/symbols.txt
splits: config/Shield/rels/d_a_tag_lv6CstaSw/splits.txt
# map: orig/Shield/fixed_maps/d_a_tag_lv6CstaSw.map
- object: files/rel/Rfinal/Release/d_a_tag_mmsg.rel
hash: 885257f887247cedc222689f55c5a7e83c7ad251
symbols: config/Shield/rels/d_a_tag_mmsg/symbols.txt
splits: config/Shield/rels/d_a_tag_mmsg/splits.txt
# map: orig/Shield/fixed_maps/d_a_tag_mmsg.map
- object: files/rel/Rfinal/Release/d_a_tag_mwait.rel
hash: 014d2c958f2b6bd3777fa1aa23b1617fefc44146
symbols: config/Shield/rels/d_a_tag_mwait/symbols.txt
splits: config/Shield/rels/d_a_tag_mwait/splits.txt
# map: orig/Shield/fixed_maps/d_a_tag_mwait.map
- object: files/rel/Rfinal/Release/d_a_tag_myna2.rel
hash: 4304c692134fcecee4c381f022f5535002b8b888
symbols: config/Shield/rels/d_a_tag_myna2/symbols.txt
splits: config/Shield/rels/d_a_tag_myna2/splits.txt
# map: orig/Shield/fixed_maps/d_a_tag_myna2.map
- object: files/rel/Rfinal/Release/d_a_tag_myna_light.rel
hash: b8f606983f02c683f3047324f351f665d0dc6943
symbols: config/Shield/rels/d_a_tag_myna_light/symbols.txt
splits: config/Shield/rels/d_a_tag_myna_light/splits.txt
# map: orig/Shield/fixed_maps/d_a_tag_myna_light.map
- object: files/rel/Rfinal/Release/d_a_tag_pachi.rel
hash: 3fc7cc93218f83ec5aede18e9c74af300d20bd49
symbols: config/Shield/rels/d_a_tag_pachi/symbols.txt
splits: config/Shield/rels/d_a_tag_pachi/splits.txt
# map: orig/Shield/fixed_maps/d_a_tag_pachi.map
- object: files/rel/Rfinal/Release/d_a_tag_poFire.rel
hash: 79ad6f5b9905d1aabb780e61c692978b2c918ed6
symbols: config/Shield/rels/d_a_tag_poFire/symbols.txt
splits: config/Shield/rels/d_a_tag_poFire/splits.txt
# map: orig/Shield/fixed_maps/d_a_tag_poFire.map
- object: files/rel/Rfinal/Release/d_a_tag_qs.rel
hash: 5360e55f9fb9f482cd8f96137ee839e68a5f7587
symbols: config/Shield/rels/d_a_tag_qs/symbols.txt
splits: config/Shield/rels/d_a_tag_qs/splits.txt
# map: orig/Shield/fixed_maps/d_a_tag_qs.map
- object: files/rel/Rfinal/Release/d_a_tag_ret_room.rel
hash: 7fefafb7e65e59b3e2342d580a8e01c9a63439b2
symbols: config/Shield/rels/d_a_tag_ret_room/symbols.txt
splits: config/Shield/rels/d_a_tag_ret_room/splits.txt
# map: orig/Shield/fixed_maps/d_a_tag_ret_room.map
- object: files/rel/Rfinal/Release/d_a_tag_river_back.rel
hash: 78fc28dcf8a45a7d401eda37397d55852cf4d7fe
symbols: config/Shield/rels/d_a_tag_river_back/symbols.txt
splits: config/Shield/rels/d_a_tag_river_back/splits.txt
# map: orig/Shield/fixed_maps/d_a_tag_river_back.map
- object: files/rel/Rfinal/Release/d_a_tag_rmbit_sw.rel
hash: 5caf5eafa8107c794dd650f7f879561b3ec4ff8e
symbols: config/Shield/rels/d_a_tag_rmbit_sw/symbols.txt
splits: config/Shield/rels/d_a_tag_rmbit_sw/splits.txt
# map: orig/Shield/fixed_maps/d_a_tag_rmbit_sw.map
- object: files/rel/Rfinal/Release/d_a_tag_schedule.rel
hash: 2c626a47925010c08de229e8ab14ca7b80cb2567
symbols: config/Shield/rels/d_a_tag_schedule/symbols.txt
splits: config/Shield/rels/d_a_tag_schedule/splits.txt
# map: orig/Shield/fixed_maps/d_a_tag_schedule.map
- object: files/rel/Rfinal/Release/d_a_tag_setBall.rel
hash: c1a93606a6b3398191981ed7ca73fe6c0dfaa8f5
symbols: config/Shield/rels/d_a_tag_setBall/symbols.txt
splits: config/Shield/rels/d_a_tag_setBall/splits.txt
# map: orig/Shield/fixed_maps/d_a_tag_setBall.map
- object: files/rel/Rfinal/Release/d_a_tag_setrestart.rel
hash: c6dc744eca51da9a91992c6128e1a2344990c0bd
symbols: config/Shield/rels/d_a_tag_setrestart/symbols.txt
splits: config/Shield/rels/d_a_tag_setrestart/splits.txt
# map: orig/Shield/fixed_maps/d_a_tag_setrestart.map
- object: files/rel/Rfinal/Release/d_a_tag_shop_camera.rel
hash: 115ae56ed70c3f3ec81833c484f3a00256fe2a2c
symbols: config/Shield/rels/d_a_tag_shop_camera/symbols.txt
splits: config/Shield/rels/d_a_tag_shop_camera/splits.txt
# map: orig/Shield/fixed_maps/d_a_tag_shop_camera.map
- object: files/rel/Rfinal/Release/d_a_tag_shop_item.rel
hash: d65a3dff050353564f55e2a379b6cce74b12073e
symbols: config/Shield/rels/d_a_tag_shop_item/symbols.txt
splits: config/Shield/rels/d_a_tag_shop_item/splits.txt
# map: orig/Shield/fixed_maps/d_a_tag_shop_item.map
- object: files/rel/Rfinal/Release/d_a_tag_smk_emt.rel
hash: a20a67eb03c05a4ecd8a76a0a3e43e592f0f77c7
symbols: config/Shield/rels/d_a_tag_smk_emt/symbols.txt
splits: config/Shield/rels/d_a_tag_smk_emt/splits.txt
# map: orig/Shield/fixed_maps/d_a_tag_smk_emt.map
- object: files/rel/Rfinal/Release/d_a_tag_spinner.rel
hash: 0ddf58bfb552f8010b2b95a53e3da67f59a5ab33
symbols: config/Shield/rels/d_a_tag_spinner/symbols.txt
splits: config/Shield/rels/d_a_tag_spinner/splits.txt
# map: orig/Shield/fixed_maps/d_a_tag_spinner.map
- object: files/rel/Rfinal/Release/d_a_tag_sppath.rel
hash: 76210ca19feca6e341047a3b521ef49c78f083af
symbols: config/Shield/rels/d_a_tag_sppath/symbols.txt
splits: config/Shield/rels/d_a_tag_sppath/splits.txt
# map: orig/Shield/fixed_maps/d_a_tag_sppath.map
- object: files/rel/Rfinal/Release/d_a_tag_ss_drink.rel
hash: 32bac8f68a454ee7fee054e361b9daffe4348745
symbols: config/Shield/rels/d_a_tag_ss_drink/symbols.txt
splits: config/Shield/rels/d_a_tag_ss_drink/splits.txt
# map: orig/Shield/fixed_maps/d_a_tag_ss_drink.map
- object: files/rel/Rfinal/Release/d_a_tag_stream.rel
hash: 09a5a5719fdd34902aca20d93391ec1801b22b97
symbols: config/Shield/rels/d_a_tag_stream/symbols.txt
splits: config/Shield/rels/d_a_tag_stream/splits.txt
# map: orig/Shield/fixed_maps/d_a_tag_stream.map
- object: files/rel/Rfinal/Release/d_a_tag_theB_hint.rel
hash: c9957f8d5511a6308fb48eaca0c511c67a0ac889
symbols: config/Shield/rels/d_a_tag_theB_hint/symbols.txt
splits: config/Shield/rels/d_a_tag_theB_hint/splits.txt
# map: orig/Shield/fixed_maps/d_a_tag_theB_hint.map
- object: files/rel/Rfinal/Release/d_a_tag_wara_howl.rel
hash: cb7818ac31b9794a37e43303b00db0b68d652bce
symbols: config/Shield/rels/d_a_tag_wara_howl/symbols.txt
splits: config/Shield/rels/d_a_tag_wara_howl/splits.txt
# map: orig/Shield/fixed_maps/d_a_tag_wara_howl.map
- object: files/rel/Rfinal/Release/d_a_tag_watchge.rel
hash: 71bb0d4b0af1ab6c042b91cb8665335d4a630fee
symbols: config/Shield/rels/d_a_tag_watchge/symbols.txt
splits: config/Shield/rels/d_a_tag_watchge/splits.txt
# map: orig/Shield/fixed_maps/d_a_tag_watchge.map
- object: files/rel/Rfinal/Release/d_a_tag_waterfall.rel
hash: 9d946a08d5af34a813e24ff543aaf2336c754111
symbols: config/Shield/rels/d_a_tag_waterfall/symbols.txt
splits: config/Shield/rels/d_a_tag_waterfall/splits.txt
# map: orig/Shield/fixed_maps/d_a_tag_waterfall.map
- object: files/rel/Rfinal/Release/d_a_tag_wljump.rel
hash: cdb764f9c4c2a442e78aee8d64c01daead878a65
symbols: config/Shield/rels/d_a_tag_wljump/symbols.txt
splits: config/Shield/rels/d_a_tag_wljump/splits.txt
# map: orig/Shield/fixed_maps/d_a_tag_wljump.map
- object: files/rel/Rfinal/Release/d_a_tag_yami.rel
hash: 5b610dac09171d6fd2cc3949795ce82a2862a503
symbols: config/Shield/rels/d_a_tag_yami/symbols.txt
splits: config/Shield/rels/d_a_tag_yami/splits.txt
# map: orig/Shield/fixed_maps/d_a_tag_yami.map
- object: files/rel/Rfinal/Release/d_a_talk.rel
hash: 5085c0d7214927b458638f0914f4ee5d8a8fde27
symbols: config/Shield/rels/d_a_talk/symbols.txt
splits: config/Shield/rels/d_a_talk/splits.txt
# map: orig/Shield/fixed_maps/d_a_talk.map
- object: files/rel/Rfinal/Release/d_a_tboxSw.rel
hash: 62e74b62ec664a14652bc9f398fab12d060f4d73
symbols: config/Shield/rels/d_a_tboxSw/symbols.txt
splits: config/Shield/rels/d_a_tboxSw/splits.txt
# map: orig/Shield/fixed_maps/d_a_tboxSw.map
- object: files/rel/Rfinal/Release/d_a_title.rel
hash: af51a595635657120c7a6a69ba626e05a40aa55c
symbols: config/Shield/rels/d_a_title/symbols.txt
splits: config/Shield/rels/d_a_title/splits.txt
# map: orig/Shield/fixed_maps/d_a_title.map
- object: files/rel/Rfinal/Release/d_a_warp_bug.rel
hash: e0ab1569abfb9f305e8cdc77488a1a4fe6a704b5
symbols: config/Shield/rels/d_a_warp_bug/symbols.txt
splits: config/Shield/rels/d_a_warp_bug/splits.txt
# map: orig/Shield/fixed_maps/d_a_warp_bug.map
extract:
- symbol: black_tex
binary: assets/black_tex.bin
header: assets/black_tex.h
- symbol: msg_data
binary: assets/msg_data.bin
header: assets/msg_data.h
- symbol: font_data
binary: assets/font_data.bin
header: assets/font_data.h
- symbol: l_sightDL!.data:0x804CC1A0
binary: assets/l_sightDL__d_a_player.bin
header: assets/l_sightDL__d_a_player.h
|