blob: df0b9dc6314233d924ca98fdffff66e42479705e (
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
|
NITROFS_FILES := data/UTF16.dat \
data/area00light.txt \
data/area01light.txt \
data/area02light.txt \
data/battle_win.NSCR \
data/btower_canm.resdat \
data/btower_celact.cldat \
data/btower_cell.resdat \
data/btower_chr.resdat \
data/btower_pal.resdat \
data/cell0.NCGR \
data/cell0.NCLR \
data/clact_default.NANR \
data/crystal.nsbmd \
data/demo_climax.narc \
data/dp_areawindow.NCGR \
data/dp_areawindow.NCLR \
data/dt_test_celact.txt \
data/dt_test_res_cell.txt \
data/dt_test_res_cellanm.txt \
data/dt_test_res_char.txt \
data/dt_test_res_multi.txt \
data/dt_test_res_multianm.txt \
data/dt_test_res_pltt.txt \
data/dun_sea.nsbtx \
data/eoo.dat \
data/exdata.dat \
data/field_cutin.narc \
data/fld_anime0.bin \
data/fld_anime1.bin \
data/fld_anime10.bin \
data/fld_anime2.bin \
data/fld_anime3.bin \
data/fld_anime4.bin \
data/fld_anime5.bin \
data/fld_anime6.bin \
data/fld_anime7.bin \
data/fld_anime8.bin \
data/fld_anime9.bin \
data/fs_kanban.nsbca \
data/ground0.NCGR \
data/ground0.NCLR \
data/ground0.NSCR \
data/kemu_itpconv.dat \
data/lake_anim.nsbtx \
data/miniasahamabe.nsbtx \
data/miniasasea.nsbtx \
data/minihamabe.nsbtx \
data/minimum.nsbtx \
data/minirhana.nsbtx \
data/namein.narc \
data/nfont.NCGR \
data/nfont.NCLR \
data/pc.nsbca \
data/plist_canm.resdat \
data/plist_cell.resdat \
data/plist_chr.resdat \
data/plist_h.cldat \
data/plist_pal.resdat \
data/porucase_canm.resdat \
data/porucase_celact.cldat \
data/porucase_cell.resdat \
data/porucase_chr.resdat \
data/porucase_pal.resdat \
data/pst_canm.resdat \
data/pst_cell.resdat \
data/pst_chr.resdat \
data/pst_h.cldat \
data/pst_pal.resdat \
data/shop_canm.resdat \
data/shop_cell.resdat \
data/shop_chr.resdat \
data/shop_h.cldat \
data/shop_pal.resdat \
data/slot.narc \
data/smptm_koori.NANR \
data/smptm_koori.NCER \
data/smptm_koori.NCGR \
data/smptm_koori.NCLR \
data/smptm_nemuri.NANR \
data/smptm_nemuri.NCER \
data/smptm_nemuri.NCGR \
data/smptm_nemuri.NCLR \
data/t3_fl_b.nsbtx \
data/t3_fl_p.nsbtx \
data/t3_fl_r.nsbtx \
data/t3_fl_y.nsbtx \
data/test.atr \
data/tmap_block.dat \
data/tmap_flags.dat \
data/tmapn_canm.resdat \
data/tmapn_celact.cldat \
data/tmapn_celact.txt \
data/tmapn_cell.resdat \
data/tmapn_chr.resdat \
data/tmapn_pal.resdat \
data/tmapn_res_canm.txt \
data/tmapn_res_cell.txt \
data/tmapn_res_chr.txt \
data/tmapn_res_pal.txt \
data/tradelist.narc \
data/trapmark.narc \
data/ug_anim.narc \
data/ug_base_cur.nsbmd \
data/ug_boygirl.NCGR \
data/ug_boygirl.NCLR \
data/ug_fossil.narc \
data/ug_hero.NANR \
data/ug_hero.NCER \
data/ug_hole.NANR \
data/ug_hole.NCER \
data/ug_hole.NCGR \
data/ug_parts.narc \
data/ug_radar.narc \
data/ug_trap.narc \
data/ugeffect_obj_graphic.narc \
data/uground_cell.resdat \
data/uground_cellanm.resdat \
data/uground_char.resdat \
data/uground_char2.resdat \
data/uground_clact.cldat \
data/uground_pltt.resdat \
data/uground_pltt2.resdat \
data/underg_radar.narc \
data/utility.bin \
data/weather_sys.narc \
data/wifi.ncgr \
data/wifinote.narc \
data/wifip2pmatch.narc \
data/wm.ncgr \
data/wm.nclr \
data/sound/sound_data.sdat \
msgdata/msg.narc \
msgdata/scenario/scr_msg.narc \
poketool/pokegra/height.narc \
poketool/pokegra/height_o.narc \
poketool/pokegra/otherpoke.narc \
poketool/pokegra/poke_shadow.narc \
poketool/pokegra/poke_shadow_ofx.narc \
poketool/pokegra/poke_yofs.narc \
poketool/pokegra/pokegra.narc \
poketool/trgra/trbgra.narc \
poketool/trgra/trfgra.narc \
poketool/personal/personal.narc \
poketool/personal/evo.narc \
poketool/personal/growtbl.narc \
poketool/personal/pms.narc \
poketool/personal/wotbl.narc \
poketool/trainer/trdata.narc \
poketool/trainer/trpoke.narc \
poketool/trmsg/trtbl.narc \
poketool/trmsg/trtblofs.narc \
battle/graphic/b_bag_gra.narc \
battle/graphic/b_plist_gra.narc \
battle/graphic/batt_bg.narc \
battle/graphic/batt_obj.narc \
battle/graphic/vs_demo_gra.narc \
wazaeffect/we.arc \
wazaeffect/we_sub.narc \
battle/skill/be_seq.narc \
battle/skill/sub_seq.narc \
battle/skill/waza_seq.narc \
wazaeffect/effectclact/wecell.narc \
wazaeffect/effectclact/wecellanm.narc \
wazaeffect/effectclact/wechar.narc \
wazaeffect/effectclact/wepltt.narc \
poketool/waza/waza_tbl.narc \
fielddata/script/scr_seq_release.narc \
graphic/bag_gra.narc \
graphic/box.narc \
graphic/btower.narc \
graphic/config_gra.narc \
graphic/demo_trade.narc \
graphic/dendou_demo.narc \
graphic/dendou_pc.narc \
graphic/ending.narc \
graphic/ev_pokeselect.narc \
graphic/f_note_gra.narc \
graphic/field_board.narc \
graphic/field_encounteffect.narc \
graphic/fld_comact.narc \
graphic/font.narc \
graphic/fontoam.narc \
graphic/hiden_effect.narc \
graphic/imageclip.narc \
graphic/mail_gra.narc \
graphic/menu_gra.narc \
graphic/mysign.narc \
graphic/mystery.narc \
graphic/ntag_gra.narc \
graphic/nutmixer.narc \
graphic/oekaki.narc \
graphic/opening.narc \
graphic/plist_gra.narc \
graphic/pmsi.narc \
graphic/poketch.narc \
graphic/poru_gra.narc \
graphic/poruact.narc \
graphic/porudemo.narc \
graphic/pst_gra.narc \
graphic/ranking.narc \
graphic/record.narc \
graphic/shop_gra.narc \
graphic/tmap_gra.narc \
graphic/touch_subwindow.narc \
graphic/trainer_case.narc \
graphic/unionroom.narc \
graphic/waza_oshie_gra.narc \
graphic/winframe.narc \
graphic/worldtrade.narc \
itemtool/itemdata/item_data.narc \
itemtool/itemdata/item_icon.narc \
itemtool/itemdata/nuts_data.narc \
poketool/icongra/poke_icon.narc \
poketool/pokefoot/pokefoot.narc \
data/mmodel/mmodel.narc \
data/mmodel/fldeff.narc \
wazaeffect/effectdata/ball_particle.narc \
wazaeffect/effectdata/waza_particle.narc \
wazaeffect/pt_debug/debug_particle.narc \
fielddata/eventdata/zone_event_release.narc \
fielddata/encountdata/d_enc_data.narc \
fielddata/encountdata/p_enc_data.narc \
fielddata/build_model/build_model.narc \
fielddata/build_model/build_model_matshp.dat \
fielddata/mapmatrix/map_matrix.narc \
fielddata/areadata/area_data.narc \
fielddata/areadata/area_build_model/area_build.narc \
fielddata/areadata/area_build_model/areabm_texset.narc \
fielddata/areadata/area_map_tex/map_tex_set.narc \
fielddata/areadata/area_move_model/move_model_list.narc \
fielddata/land_data/land_data_release.narc \
contest/graphic/contest_bg.narc \
contest/graphic/contest_obj.narc \
contest/data/contest_data.narc \
particledata/particledata.narc \
application/zukanlist/zkn_data/zukan_data.narc \
application/wifi_earth/wifi_earth.narc \
application/wifi_earth/wifi_earth_place.narc \
demo/title/titledemo.narc \
application/custom_ball/data/cb_data.narc \
demo/egg/data/egg_data.narc \
demo/egg/data/particle/egg_demo_particle.narc \
fielddata/mm_list/move_model_list.narc \
pokeanime/poke_anm.narc \
battle/tr_ai/tr_ai_seq.narc \
arc/bm_anime.narc \
arc/bm_anime_list.narc \
arc/encdata_ex.narc \
arc/ppark.narc \
arc/ship_demo.narc \
arc/tv.narc \
fielddata/maptable/mapname.bin \
poketool/pokezukan.narc \
poketool/shinzukan.narc \
poketool/pokeanm/pokeanm.narc \
fielddata/pokemon_trade/fld_trade.narc \
demo/shinka/data/particle/shinka_demo_particle.narc \
demo/intro/intro.narc \
demo/intro/intro_tv.narc \
demo/title/op_demo.narc \
demo/syoujyou/syoujyou.narc \
battle/b_tower/btdpm.narc \
battle/b_tower/btdtr.narc \
application/zukanlist/zkn_data/zukan_enc_diamond.narc \
application/zukanlist/zkn_data/zukan_enc_pearl.narc \
resource/eng/trial/trial.narc \
resource/eng/zukan/zukan.narc \
dwc/utility.bin
ifeq ($(GAME_VERSION),PEARL)
NITROFS_FILES := $(NITROFS_FILES:poketool/personal/personal.narc=poketool/personal_pearl/personal.narc)
endif
HOSTFS_FILES := $(NITROFS_FILES:%=files/%)
%.narc:
$(KNARC) -d $(basename $@)/ -p $@ -i
%.arc:
$(KNARC) -d $(basename $@)/ -p $@ -i
%.naix: %.narc
files/wazaeffect/we.naix: %.naix: %.arc
O2NARC_TARGETS := \
files/poketool/personal/personal.narc \
files/poketool/personal_pearl/personal.narc \
files/poketool/personal/wotbl.narc \
files/poketool/personal/evo.narc \
files/poketool/personal/growtbl.narc \
files/poketool/personal/pms.narc \
files/poketool/waza/waza_tbl.narc \
files/itemtool/itemdata/item_data.narc \
files/itemtool/itemdata/nuts_data.narc \
files/poketool/trainer/trdata.narc \
ALL_O2NARC_TARGETS := $(O2NARC_TARGETS) \
files/poketool/trainer/trpoke.narc
O2NARCFLAGS := -i
files/poketool/personal/pms.narc: O2NARCFLAGS = -f
files/itemtool/itemdata/item_data.narc: O2NARCFLAGS += -p 0xFF
ifeq (,$(NODEP))
$(ALL_O2NARC_TARGETS): dep = $(shell $(SCANINC) -I include -I include-mw -I arm9/lib/include $(patsubst %.narc,%.json.txt,$@))
else
$(ALL_O2NARC_TARGETS): dep :=
endif
## This specific target shares its source JSON with trdata.narc
files/poketool/trainer/trpoke.narc: %/trpoke.narc: %/trdata.json %/trpoke.json.txt $$(dep)
$(JSONPROC) $< $(word 2,$^) $*/trpoke.c
$(CC) $(MWCFLAGS) -c -o $*/trpoke.o $*/trpoke.c
$(O2NARC) $(O2NARCFLAGS) $*/trpoke.o $@
@$(RM) $*/trpoke.o $*/trpoke.c
$(O2NARC_TARGETS): %.narc: %.json %.json.txt $$(dep)
$(JSONPROC) $*.json $*.json.txt $*.c
$(CC) $(MWCFLAGS) -c -o $*.o $*.c
$(O2NARC) $(O2NARCFLAGS) $*.o $@
@$(RM) $*.o $*.c
files/application/wifi_earth/wifi_earth.narc: \
files/application/wifi_earth/wifi_earth/narc_0005.NCGR \
files/application/wifi_earth/wifi_earth/narc_0006.NCLR
files/battle/graphic/batt_bg.narc: \
files/battle/graphic/batt_bg/narc_0156.NSCR.lz \
files/battle/graphic/batt_bg/narc_0142.NSCR.lz \
files/battle/graphic/batt_bg/narc_0022.NCGR.lz \
files/battle/graphic/batt_bg/narc_0036.NSCR.lz \
files/battle/graphic/batt_bg/narc_0037.NSCR.lz \
files/battle/graphic/batt_bg/narc_0023.NCGR.lz \
files/battle/graphic/batt_bg/narc_0143.NCGR.lz \
files/battle/graphic/batt_bg/narc_0141.NCGR.lz \
files/battle/graphic/batt_bg/narc_0155.NSCR.lz \
files/battle/graphic/batt_bg/narc_0035.NSCR.lz \
files/battle/graphic/batt_bg/narc_0021.NCGR.lz \
files/battle/graphic/batt_bg/narc_0009.NCGR.lz \
files/battle/graphic/batt_bg/narc_0008.NCGR.lz \
files/battle/graphic/batt_bg/narc_0020.NCGR.lz \
files/battle/graphic/batt_bg/narc_0034.NSCR.lz \
files/battle/graphic/batt_bg/narc_0154.NCGR.lz \
files/battle/graphic/batt_bg/narc_0140.NSCR.lz \
files/battle/graphic/batt_bg/narc_0144.NSCR.lz \
files/battle/graphic/batt_bg/narc_0150.NSCR.lz \
files/battle/graphic/batt_bg/narc_0018.NCGR.lz \
files/battle/graphic/batt_bg/narc_0030.NSCR.lz \
files/battle/graphic/batt_bg/narc_0024.NCGR.lz \
files/battle/graphic/batt_bg/narc_0025.NCGR.lz \
files/battle/graphic/batt_bg/narc_0031.NSCR.lz \
files/battle/graphic/batt_bg/narc_0019.NCGR.lz \
files/battle/graphic/batt_bg/narc_0151.NCGR.lz \
files/battle/graphic/batt_bg/narc_0145.NSCR.lz \
files/battle/graphic/batt_bg/narc_0153.NSCR.lz \
files/battle/graphic/batt_bg/narc_0147.NSCR.lz \
files/battle/graphic/batt_bg/narc_0027.NCGR.lz \
files/battle/graphic/batt_bg/narc_0033.NSCR.lz \
files/battle/graphic/batt_bg/narc_0032.NSCR.lz \
files/battle/graphic/batt_bg/narc_0026.NCGR.lz \
files/battle/graphic/batt_bg/narc_0146.NSCR.lz \
files/battle/graphic/batt_bg/narc_0152.NSCR.lz \
files/battle/graphic/batt_bg/narc_0135.NSCR.lz \
files/battle/graphic/batt_bg/narc_0121.NSCR.lz \
files/battle/graphic/batt_bg/narc_0109.NSCR.lz \
files/battle/graphic/batt_bg/narc_0082.NSCR.lz \
files/battle/graphic/batt_bg/narc_0096.NSCR.lz \
files/battle/graphic/batt_bg/narc_0041.NSCR.lz \
files/battle/graphic/batt_bg/narc_0055.NSCR.lz \
files/battle/graphic/batt_bg/narc_0069.NCGR.lz \
files/battle/graphic/batt_bg/narc_0068.NSCR.lz \
files/battle/graphic/batt_bg/narc_0054.NSCR.lz \
files/battle/graphic/batt_bg/narc_0040.NCGR.lz \
files/battle/graphic/batt_bg/narc_0097.NSCR.lz \
files/battle/graphic/batt_bg/narc_0083.NCGR.lz \
files/battle/graphic/batt_bg/narc_0108.NCGR.lz \
files/battle/graphic/batt_bg/narc_0120.NSCR.lz \
files/battle/graphic/batt_bg/narc_0134.NCGR.lz \
files/battle/graphic/batt_bg/narc_0122.NCGR.lz \
files/battle/graphic/batt_bg/narc_0136.NSCR.lz \
files/battle/graphic/batt_bg/narc_0095.NSCR.lz \
files/battle/graphic/batt_bg/narc_0081.NSCR.lz \
files/battle/graphic/batt_bg/narc_0056.NSCR.lz \
files/battle/graphic/batt_bg/narc_0042.NCGR.lz \
files/battle/graphic/batt_bg/narc_0043.NSCR.lz \
files/battle/graphic/batt_bg/narc_0057.NCGR.lz \
files/battle/graphic/batt_bg/narc_0080.NSCR.lz \
files/battle/graphic/batt_bg/narc_0094.NSCR.lz \
files/battle/graphic/batt_bg/narc_0137.NSCR.lz \
files/battle/graphic/batt_bg/narc_0123.NSCR.lz \
files/battle/graphic/batt_bg/narc_0127.NCGR.lz \
files/battle/graphic/batt_bg/narc_0133.NSCR.lz \
files/battle/graphic/batt_bg/narc_0090.NCGR.lz \
files/battle/graphic/batt_bg/narc_0084.NSCR.lz \
files/battle/graphic/batt_bg/narc_0053.NCGR.lz \
files/battle/graphic/batt_bg/narc_0047.NSCR.lz \
files/battle/graphic/batt_bg/narc_0046.NCGR.lz \
files/battle/graphic/batt_bg/narc_0052.NSCR.lz \
files/battle/graphic/batt_bg/narc_0085.NSCR.lz \
files/battle/graphic/batt_bg/narc_0091.NSCR.lz \
files/battle/graphic/batt_bg/narc_0132.NSCR.lz \
files/battle/graphic/batt_bg/narc_0126.NCGR.lz \
files/battle/graphic/batt_bg/narc_0118.NSCR.lz \
files/battle/graphic/batt_bg/narc_0130.NSCR.lz \
files/battle/graphic/batt_bg/narc_0124.NSCR.lz \
files/battle/graphic/batt_bg/narc_0087.NCGR.lz \
files/battle/graphic/batt_bg/narc_0093.NCGR.lz \
files/battle/graphic/batt_bg/narc_0078.NCGR.lz \
files/battle/graphic/batt_bg/narc_0044.NCGR.lz \
files/battle/graphic/batt_bg/narc_0050.NSCR.lz \
files/battle/graphic/batt_bg/narc_0051.NSCR.lz \
files/battle/graphic/batt_bg/narc_0045.NSCR.lz \
files/battle/graphic/batt_bg/narc_0079.NSCR.lz \
files/battle/graphic/batt_bg/narc_0092.NSCR.lz \
files/battle/graphic/batt_bg/narc_0086.NSCR.lz \
files/battle/graphic/batt_bg/narc_0125.NSCR.lz \
files/battle/graphic/batt_bg/narc_0131.NSCR.lz \
files/battle/graphic/batt_bg/narc_0119.NCGR.lz \
files/battle/graphic/batt_bg/narc_0114.NCGR.lz \
files/battle/graphic/batt_bg/narc_0100.NCGR.lz \
files/battle/graphic/batt_bg/narc_0128.NSCR.lz \
files/battle/graphic/batt_bg/narc_0060.NSCR.lz \
files/battle/graphic/batt_bg/narc_0074.NSCR.lz \
files/battle/graphic/batt_bg/narc_0048.NCGR.lz \
files/battle/graphic/batt_bg/narc_0049.NSCR.lz \
files/battle/graphic/batt_bg/narc_0075.NSCR.lz \
files/battle/graphic/batt_bg/narc_0061.NSCR.lz \
files/battle/graphic/batt_bg/narc_0129.NCGR.lz \
files/battle/graphic/batt_bg/narc_0101.NSCR.lz \
files/battle/graphic/batt_bg/narc_0115.NSCR.lz \
files/battle/graphic/batt_bg/narc_0103.NSCR.lz \
files/battle/graphic/batt_bg/narc_0117.NCGR.lz \
files/battle/graphic/batt_bg/narc_0088.NCGR.lz \
files/battle/graphic/batt_bg/narc_0077.NCGR.lz \
files/battle/graphic/batt_bg/narc_0063.NSCR.lz \
files/battle/graphic/batt_bg/narc_0062.NSCR.lz \
files/battle/graphic/batt_bg/narc_0076.NSCR.lz \
files/battle/graphic/batt_bg/narc_0089.NSCR.lz \
files/battle/graphic/batt_bg/narc_0116.NSCR.lz \
files/battle/graphic/batt_bg/narc_0102.NCGR.lz \
files/battle/graphic/batt_bg/narc_0106.NSCR.lz \
files/battle/graphic/batt_bg/narc_0112.NCGR.lz \
files/battle/graphic/batt_bg/narc_0099.NCGR.lz \
files/battle/graphic/batt_bg/narc_0072.NSCR.lz \
files/battle/graphic/batt_bg/narc_0066.NCGR.lz \
files/battle/graphic/batt_bg/narc_0067.NSCR.lz \
files/battle/graphic/batt_bg/narc_0073.NCGR.lz \
files/battle/graphic/batt_bg/narc_0098.NSCR.lz \
files/battle/graphic/batt_bg/narc_0113.NSCR.lz \
files/battle/graphic/batt_bg/narc_0107.NCGR.lz \
files/battle/graphic/batt_bg/narc_0139.NCGR.lz \
files/battle/graphic/batt_bg/narc_0111.NSCR.lz \
files/battle/graphic/batt_bg/narc_0105.NSCR.lz \
files/battle/graphic/batt_bg/narc_0059.NSCR.lz \
files/battle/graphic/batt_bg/narc_0065.NSCR.lz \
files/battle/graphic/batt_bg/narc_0071.NSCR.lz \
files/battle/graphic/batt_bg/narc_0070.NSCR.lz \
files/battle/graphic/batt_bg/narc_0064.NCGR.lz \
files/battle/graphic/batt_bg/narc_0058.NCGR.lz \
files/battle/graphic/batt_bg/narc_0104.NSCR.lz \
files/battle/graphic/batt_bg/narc_0110.NCGR.lz \
files/battle/graphic/batt_bg/narc_0138.NCGR.lz \
files/battle/graphic/batt_bg/narc_0003.NCGR.lz \
files/battle/graphic/batt_bg/narc_0017.NCGR.lz \
files/battle/graphic/batt_bg/narc_0016.NSCR.lz \
files/battle/graphic/batt_bg/narc_0002.NSCR.lz \
files/battle/graphic/batt_bg/narc_0148.NCGR.lz \
files/battle/graphic/batt_bg/narc_0014.NCGR.lz \
files/battle/graphic/batt_bg/narc_0000.NCGR.lz \
files/battle/graphic/batt_bg/narc_0028.NCGR.lz \
files/battle/graphic/batt_bg/narc_0029.NCGR.lz \
files/battle/graphic/batt_bg/narc_0001.NSCR.lz \
files/battle/graphic/batt_bg/narc_0015.NCGR.lz \
files/battle/graphic/batt_bg/narc_0149.NCGR.lz \
files/battle/graphic/batt_bg/narc_0039.NCGR.lz \
files/battle/graphic/batt_bg/narc_0011.NCGR.lz \
files/battle/graphic/batt_bg/narc_0005.NCGR.lz \
files/battle/graphic/batt_bg/narc_0004.NCGR.lz \
files/battle/graphic/batt_bg/narc_0010.NCGR.lz \
files/battle/graphic/batt_bg/narc_0038.NCGR.lz \
files/battle/graphic/batt_bg/narc_0006.NCGR.lz \
files/battle/graphic/batt_bg/narc_0012.NCGR.lz \
files/battle/graphic/batt_bg/narc_0013.NCGR.lz \
files/battle/graphic/batt_bg/narc_0007.NCGR.lz
files/battle/graphic/batt_obj.narc: \
files/battle/graphic/batt_obj/narc_0195.NCGR.lz \
files/battle/graphic/batt_obj/narc_0181.NCGR.lz \
files/battle/graphic/batt_obj/narc_0156.NCGR.lz \
files/battle/graphic/batt_obj/narc_0142.NANR.lz \
files/battle/graphic/batt_obj/narc_0220.NCER.lz \
files/battle/graphic/batt_obj/narc_0234.NANR.lz \
files/battle/graphic/batt_obj/narc_0208.NCER.lz \
files/battle/graphic/batt_obj/narc_0209.NCER.lz \
files/battle/graphic/batt_obj/narc_0235.NCER.lz \
files/battle/graphic/batt_obj/narc_0221.NCGR.lz \
files/battle/graphic/batt_obj/narc_0143.NCER.lz \
files/battle/graphic/batt_obj/narc_0157.NCGR.lz \
files/battle/graphic/batt_obj/narc_0180.NCGR.lz \
files/battle/graphic/batt_obj/narc_0194.NANR.lz \
files/battle/graphic/batt_obj/narc_0182.NCGR.lz \
files/battle/graphic/batt_obj/narc_0196.NCGR.lz \
files/battle/graphic/batt_obj/narc_0141.NCGR.lz \
files/battle/graphic/batt_obj/narc_0155.NCGR.lz \
files/battle/graphic/batt_obj/narc_0169.NCGR.lz \
files/battle/graphic/batt_obj/narc_0237.NANR.lz \
files/battle/graphic/batt_obj/narc_0223.NCER.lz \
files/battle/graphic/batt_obj/narc_0222.NANR.lz \
files/battle/graphic/batt_obj/narc_0236.NCGR.lz \
files/battle/graphic/batt_obj/narc_0168.NCGR.lz \
files/battle/graphic/batt_obj/narc_0154.NANR.lz \
files/battle/graphic/batt_obj/narc_0140.NCER.lz \
files/battle/graphic/batt_obj/narc_0197.NCGR.lz \
files/battle/graphic/batt_obj/narc_0183.NCGR.lz \
files/battle/graphic/batt_obj/narc_0187.NCER.lz \
files/battle/graphic/batt_obj/narc_0193.NCER.lz \
files/battle/graphic/batt_obj/narc_0178.NCER.lz \
files/battle/graphic/batt_obj/narc_0144.NCGR.lz \
files/battle/graphic/batt_obj/narc_0150.NCGR.lz \
files/battle/graphic/batt_obj/narc_0232.NCER.lz \
files/battle/graphic/batt_obj/narc_0226.NCER.lz \
files/battle/graphic/batt_obj/narc_0227.NCGR.lz \
files/battle/graphic/batt_obj/narc_0233.NCGR.lz \
files/battle/graphic/batt_obj/narc_0151.NANR.lz \
files/battle/graphic/batt_obj/narc_0145.NANR.lz \
files/battle/graphic/batt_obj/narc_0179.NANR.lz \
files/battle/graphic/batt_obj/narc_0192.NCGR.lz \
files/battle/graphic/batt_obj/narc_0186.NCGR.lz \
files/battle/graphic/batt_obj/narc_0190.NCER.lz \
files/battle/graphic/batt_obj/narc_0184.NCER.lz \
files/battle/graphic/batt_obj/narc_0153.NCGR.lz \
files/battle/graphic/batt_obj/narc_0147.NCGR.lz \
files/battle/graphic/batt_obj/narc_0219.NANR.lz \
files/battle/graphic/batt_obj/narc_0225.NANR.lz \
files/battle/graphic/batt_obj/narc_0231.NANR.lz \
files/battle/graphic/batt_obj/narc_0230.NCGR.lz \
files/battle/graphic/batt_obj/narc_0224.NCGR.lz \
files/battle/graphic/batt_obj/narc_0218.NANR.lz \
files/battle/graphic/batt_obj/narc_0146.NCER.lz \
files/battle/graphic/batt_obj/narc_0152.NCER.lz \
files/battle/graphic/batt_obj/narc_0185.NANR.lz \
files/battle/graphic/batt_obj/narc_0191.NANR.lz \
files/battle/graphic/batt_obj/narc_0135.NCER.lz \
files/battle/graphic/batt_obj/narc_0121.NCGR.lz \
files/battle/graphic/batt_obj/narc_0109.NCGR.lz \
files/battle/graphic/batt_obj/narc_0082.NCER.lz \
files/battle/graphic/batt_obj/narc_0096.NCGR.lz \
files/battle/graphic/batt_obj/narc_0243.NANR.lz \
files/battle/graphic/batt_obj/narc_0257.NCGR.lz \
files/battle/graphic/batt_obj/narc_0256.NCER.lz \
files/battle/graphic/batt_obj/narc_0242.NCGR.lz \
files/battle/graphic/batt_obj/narc_0097.NCGR.lz \
files/battle/graphic/batt_obj/narc_0083.NANR.lz \
files/battle/graphic/batt_obj/narc_0108.NCGR.lz \
files/battle/graphic/batt_obj/narc_0120.NCER.lz \
files/battle/graphic/batt_obj/narc_0134.NANR.lz \
files/battle/graphic/batt_obj/narc_0122.NANR.lz \
files/battle/graphic/batt_obj/narc_0136.NCGR.lz \
files/battle/graphic/batt_obj/narc_0095.NCGR.lz \
files/battle/graphic/batt_obj/narc_0081.NCGR.lz \
files/battle/graphic/batt_obj/narc_0254.NCGR.lz \
files/battle/graphic/batt_obj/narc_0240.NANR.lz \
files/battle/graphic/batt_obj/narc_0268.NCER.lz \
files/battle/graphic/batt_obj/narc_0269.NCGR.lz \
files/battle/graphic/batt_obj/narc_0241.NCER.lz \
files/battle/graphic/batt_obj/narc_0255.NANR.lz \
files/battle/graphic/batt_obj/narc_0080.NCGR.lz \
files/battle/graphic/batt_obj/narc_0094.NCGR.lz \
files/battle/graphic/batt_obj/narc_0137.NANR.lz \
files/battle/graphic/batt_obj/narc_0123.NCER.lz \
files/battle/graphic/batt_obj/narc_0127.NCGR.lz \
files/battle/graphic/batt_obj/narc_0133.NCGR.lz \
files/battle/graphic/batt_obj/narc_0090.NCGR.lz \
files/battle/graphic/batt_obj/narc_0084.NCGR.lz \
files/battle/graphic/batt_obj/narc_0251.NCGR.lz \
files/battle/graphic/batt_obj/narc_0245.NCGR.lz \
files/battle/graphic/batt_obj/narc_0244.NCER.lz \
files/battle/graphic/batt_obj/narc_0250.NCER.lz \
files/battle/graphic/batt_obj/narc_0278.NANR.lz \
files/battle/graphic/batt_obj/narc_0085.NCER.lz \
files/battle/graphic/batt_obj/narc_0091.NCER.lz \
files/battle/graphic/batt_obj/narc_0132.NCER.lz \
files/battle/graphic/batt_obj/narc_0126.NCER.lz \
files/battle/graphic/batt_obj/narc_0118.NCGR.lz \
files/battle/graphic/batt_obj/narc_0130.NCGR.lz \
files/battle/graphic/batt_obj/narc_0124.NCGR.lz \
files/battle/graphic/batt_obj/narc_0087.NCGR.lz \
files/battle/graphic/batt_obj/narc_0093.NCGR.lz \
files/battle/graphic/batt_obj/narc_0078.NANR.lz \
files/battle/graphic/batt_obj/narc_0246.NANR.lz \
files/battle/graphic/batt_obj/narc_0252.NANR.lz \
files/battle/graphic/batt_obj/narc_0253.NCER.lz \
files/battle/graphic/batt_obj/narc_0247.NCER.lz \
files/battle/graphic/batt_obj/narc_0079.NCER.lz \
files/battle/graphic/batt_obj/narc_0092.NANR.lz \
files/battle/graphic/batt_obj/narc_0086.NANR.lz \
files/battle/graphic/batt_obj/narc_0125.NANR.lz \
files/battle/graphic/batt_obj/narc_0131.NANR.lz \
files/battle/graphic/batt_obj/narc_0119.NANR.lz \
files/battle/graphic/batt_obj/narc_0114.NCER.lz \
files/battle/graphic/batt_obj/narc_0100.NCGR.lz \
files/battle/graphic/batt_obj/narc_0128.NANR.lz \
files/battle/graphic/batt_obj/narc_0262.NCER.lz \
files/battle/graphic/batt_obj/narc_0276.NCGR.lz \
files/battle/graphic/batt_obj/narc_0277.NCER.lz \
files/battle/graphic/batt_obj/narc_0263.NCGR.lz \
files/battle/graphic/batt_obj/narc_0075.NANR.lz \
files/battle/graphic/batt_obj/narc_0129.NCER.lz \
files/battle/graphic/batt_obj/narc_0101.NCGR.lz \
files/battle/graphic/batt_obj/narc_0115.NCGR.lz \
files/battle/graphic/batt_obj/narc_0103.NCGR.lz \
files/battle/graphic/batt_obj/narc_0117.NCER.lz \
files/battle/graphic/batt_obj/narc_0088.NCER.lz \
files/battle/graphic/batt_obj/narc_0077.NCGR.lz \
files/battle/graphic/batt_obj/narc_0275.NCGR.lz \
files/battle/graphic/batt_obj/narc_0261.NANR.lz \
files/battle/graphic/batt_obj/narc_0249.NANR.lz \
files/battle/graphic/batt_obj/narc_0248.NCGR.lz \
files/battle/graphic/batt_obj/narc_0260.NCGR.lz \
files/battle/graphic/batt_obj/narc_0274.NCER.lz \
files/battle/graphic/batt_obj/narc_0076.NCER.lz \
files/battle/graphic/batt_obj/narc_0089.NANR.lz \
files/battle/graphic/batt_obj/narc_0116.NANR.lz \
files/battle/graphic/batt_obj/narc_0102.NCGR.lz \
files/battle/graphic/batt_obj/narc_0106.NCGR.lz \
files/battle/graphic/batt_obj/narc_0112.NCGR.lz \
files/battle/graphic/batt_obj/narc_0099.NCGR.lz \
files/battle/graphic/batt_obj/narc_0258.NANR.lz \
files/battle/graphic/batt_obj/narc_0270.NANR.lz \
files/battle/graphic/batt_obj/narc_0264.NANR.lz \
files/battle/graphic/batt_obj/narc_0265.NCER.lz \
files/battle/graphic/batt_obj/narc_0271.NCER.lz \
files/battle/graphic/batt_obj/narc_0259.NCER.lz \
files/battle/graphic/batt_obj/narc_0098.NCGR.lz \
files/battle/graphic/batt_obj/narc_0113.NANR.lz \
files/battle/graphic/batt_obj/narc_0107.NCGR.lz \
files/battle/graphic/batt_obj/narc_0139.NCGR.lz \
files/battle/graphic/batt_obj/narc_0111.NCGR.lz \
files/battle/graphic/batt_obj/narc_0105.NCGR.lz \
files/battle/graphic/batt_obj/narc_0267.NANR.lz \
files/battle/graphic/batt_obj/narc_0273.NANR.lz \
files/battle/graphic/batt_obj/narc_0272.NCGR.lz \
files/battle/graphic/batt_obj/narc_0266.NCGR.lz \
files/battle/graphic/batt_obj/narc_0104.NCGR.lz \
files/battle/graphic/batt_obj/narc_0110.NCGR.lz \
files/battle/graphic/batt_obj/narc_0138.NCER.lz \
files/battle/graphic/batt_obj/narc_0188.NANR.lz \
files/battle/graphic/batt_obj/narc_0177.NCGR.lz \
files/battle/graphic/batt_obj/narc_0163.NCGR.lz \
files/battle/graphic/batt_obj/narc_0201.NCGR.lz \
files/battle/graphic/batt_obj/narc_0215.NANR.lz \
files/battle/graphic/batt_obj/narc_0229.NCER.lz \
files/battle/graphic/batt_obj/narc_0228.NANR.lz \
files/battle/graphic/batt_obj/narc_0214.NANR.lz \
files/battle/graphic/batt_obj/narc_0200.NCGR.lz \
files/battle/graphic/batt_obj/narc_0162.NCGR.lz \
files/battle/graphic/batt_obj/narc_0176.NCGR.lz \
files/battle/graphic/batt_obj/narc_0189.NCGR.lz \
files/battle/graphic/batt_obj/narc_0160.NCGR.lz \
files/battle/graphic/batt_obj/narc_0174.NCGR.lz \
files/battle/graphic/batt_obj/narc_0148.NANR.lz \
files/battle/graphic/batt_obj/narc_0216.NANR.lz \
files/battle/graphic/batt_obj/narc_0202.NCGR.lz \
files/battle/graphic/batt_obj/narc_0203.NCER.lz \
files/battle/graphic/batt_obj/narc_0217.NANR.lz \
files/battle/graphic/batt_obj/narc_0149.NCER.lz \
files/battle/graphic/batt_obj/narc_0175.NCGR.lz \
files/battle/graphic/batt_obj/narc_0161.NCGR.lz \
files/battle/graphic/batt_obj/narc_0159.NCGR.lz \
files/battle/graphic/batt_obj/narc_0165.NCGR.lz \
files/battle/graphic/batt_obj/narc_0171.NCGR.lz \
files/battle/graphic/batt_obj/narc_0213.NANR.lz \
files/battle/graphic/batt_obj/narc_0207.NCER.lz \
files/battle/graphic/batt_obj/narc_0206.NCER.lz \
files/battle/graphic/batt_obj/narc_0212.NANR.lz \
files/battle/graphic/batt_obj/narc_0170.NCGR.lz \
files/battle/graphic/batt_obj/narc_0164.NCGR.lz \
files/battle/graphic/batt_obj/narc_0158.NCGR.lz \
files/battle/graphic/batt_obj/narc_0199.NCGR.lz \
files/battle/graphic/batt_obj/narc_0172.NCGR.lz \
files/battle/graphic/batt_obj/narc_0166.NCGR.lz \
files/battle/graphic/batt_obj/narc_0238.NCER.lz \
files/battle/graphic/batt_obj/narc_0204.NCER.lz \
files/battle/graphic/batt_obj/narc_0210.NCER.lz \
files/battle/graphic/batt_obj/narc_0211.NANR.lz \
files/battle/graphic/batt_obj/narc_0205.NCER.lz \
files/battle/graphic/batt_obj/narc_0239.NCGR.lz \
files/battle/graphic/batt_obj/narc_0167.NCGR.lz \
files/battle/graphic/batt_obj/narc_0173.NCGR.lz \
files/battle/graphic/batt_obj/narc_0198.NCGR.lz
files/demo/egg/data/egg_data.narc: \
files/demo/egg/data/egg_data/narc_0003.NCER.lz \
files/demo/egg/data/egg_data/narc_0002.NANR.lz \
files/demo/egg/data/egg_data/narc_0000.NCGR.lz \
files/demo/egg/data/egg_data/narc_0001.NSCR.lz \
files/demo/egg/data/egg_data/narc_0005.NANR.lz \
files/demo/egg/data/egg_data/narc_0004.NCGR.lz \
files/demo/egg/data/egg_data/narc_0006.NCER.lz \
files/demo/egg/data/egg_data/narc_0007.NCGR.lz
files/wazaeffect/effectclact/wecell.narc: \
files/wazaeffect/effectclact/wecell/narc_0022.NCER.lz \
files/wazaeffect/effectclact/wecell/narc_0036.NCER.lz \
files/wazaeffect/effectclact/wecell/narc_0023.NCER.lz \
files/wazaeffect/effectclact/wecell/narc_0035.NCER.lz \
files/wazaeffect/effectclact/wecell/narc_0021.NCER.lz \
files/wazaeffect/effectclact/wecell/narc_0009.NCER.lz \
files/wazaeffect/effectclact/wecell/narc_0008.NCER.lz \
files/wazaeffect/effectclact/wecell/narc_0020.NCER.lz \
files/wazaeffect/effectclact/wecell/narc_0034.NCER.lz \
files/wazaeffect/effectclact/wecell/narc_0018.NCER.lz \
files/wazaeffect/effectclact/wecell/narc_0030.NCER.lz \
files/wazaeffect/effectclact/wecell/narc_0024.NCER.lz \
files/wazaeffect/effectclact/wecell/narc_0025.NCER.lz \
files/wazaeffect/effectclact/wecell/narc_0031.NCER.lz \
files/wazaeffect/effectclact/wecell/narc_0019.NCER.lz \
files/wazaeffect/effectclact/wecell/narc_0027.NCER.lz \
files/wazaeffect/effectclact/wecell/narc_0033.NCER.lz \
files/wazaeffect/effectclact/wecell/narc_0032.NCER.lz \
files/wazaeffect/effectclact/wecell/narc_0026.NCER.lz \
files/wazaeffect/effectclact/wecell/narc_0003.NCER.lz \
files/wazaeffect/effectclact/wecell/narc_0017.NCER.lz \
files/wazaeffect/effectclact/wecell/narc_0016.NCER.lz \
files/wazaeffect/effectclact/wecell/narc_0002.NCER.lz \
files/wazaeffect/effectclact/wecell/narc_0014.NCER.lz \
files/wazaeffect/effectclact/wecell/narc_0000.NCER.lz \
files/wazaeffect/effectclact/wecell/narc_0028.NCER.lz \
files/wazaeffect/effectclact/wecell/narc_0029.NCER.lz \
files/wazaeffect/effectclact/wecell/narc_0001.NCER.lz \
files/wazaeffect/effectclact/wecell/narc_0015.NCER.lz \
files/wazaeffect/effectclact/wecell/narc_0011.NCER.lz \
files/wazaeffect/effectclact/wecell/narc_0005.NCER.lz \
files/wazaeffect/effectclact/wecell/narc_0004.NCER.lz \
files/wazaeffect/effectclact/wecell/narc_0010.NCER.lz \
files/wazaeffect/effectclact/wecell/narc_0006.NCER.lz \
files/wazaeffect/effectclact/wecell/narc_0012.NCER.lz \
files/wazaeffect/effectclact/wecell/narc_0013.NCER.lz \
files/wazaeffect/effectclact/wecell/narc_0007.NCER.lz
files/wazaeffect/effectclact/wechar.narc: \
files/wazaeffect/effectclact/wechar/narc_0022.NCGR.lz \
files/wazaeffect/effectclact/wechar/narc_0036.NCGR.lz \
files/wazaeffect/effectclact/wechar/narc_0023.NCGR.lz \
files/wazaeffect/effectclact/wechar/narc_0035.NCGR.lz \
files/wazaeffect/effectclact/wechar/narc_0021.NCGR.lz \
files/wazaeffect/effectclact/wechar/narc_0009.NCGR.lz \
files/wazaeffect/effectclact/wechar/narc_0008.NCGR.lz \
files/wazaeffect/effectclact/wechar/narc_0020.NCGR.lz \
files/wazaeffect/effectclact/wechar/narc_0034.NCGR.lz \
files/wazaeffect/effectclact/wechar/narc_0018.NCGR.lz \
files/wazaeffect/effectclact/wechar/narc_0030.NCGR.lz \
files/wazaeffect/effectclact/wechar/narc_0024.NCGR.lz \
files/wazaeffect/effectclact/wechar/narc_0025.NCGR.lz \
files/wazaeffect/effectclact/wechar/narc_0031.NCGR.lz \
files/wazaeffect/effectclact/wechar/narc_0019.NCGR.lz \
files/wazaeffect/effectclact/wechar/narc_0027.NCGR.lz \
files/wazaeffect/effectclact/wechar/narc_0033.NCGR.lz \
files/wazaeffect/effectclact/wechar/narc_0032.NCGR.lz \
files/wazaeffect/effectclact/wechar/narc_0026.NCGR.lz \
files/wazaeffect/effectclact/wechar/narc_0003.NCGR.lz \
files/wazaeffect/effectclact/wechar/narc_0017.NCGR.lz \
files/wazaeffect/effectclact/wechar/narc_0016.NCGR.lz \
files/wazaeffect/effectclact/wechar/narc_0002.NCGR.lz \
files/wazaeffect/effectclact/wechar/narc_0014.NCGR.lz \
files/wazaeffect/effectclact/wechar/narc_0000.NCGR.lz \
files/wazaeffect/effectclact/wechar/narc_0028.NCGR.lz \
files/wazaeffect/effectclact/wechar/narc_0029.NCGR.lz \
files/wazaeffect/effectclact/wechar/narc_0001.NCGR.lz \
files/wazaeffect/effectclact/wechar/narc_0015.NCGR.lz \
files/wazaeffect/effectclact/wechar/narc_0011.NCGR.lz \
files/wazaeffect/effectclact/wechar/narc_0005.NCGR.lz \
files/wazaeffect/effectclact/wechar/narc_0004.NCGR.lz \
files/wazaeffect/effectclact/wechar/narc_0010.NCGR.lz \
files/wazaeffect/effectclact/wechar/narc_0006.NCGR.lz \
files/wazaeffect/effectclact/wechar/narc_0012.NCGR.lz \
files/wazaeffect/effectclact/wechar/narc_0013.NCGR.lz \
files/wazaeffect/effectclact/wechar/narc_0007.NCGR.lz
files/wazaeffect/effectclact/wecellanm.narc: \
files/wazaeffect/effectclact/wecellanm/narc_0022.NANR.lz \
files/wazaeffect/effectclact/wecellanm/narc_0036.NANR.lz \
files/wazaeffect/effectclact/wecellanm/narc_0023.NANR.lz \
files/wazaeffect/effectclact/wecellanm/narc_0035.NANR.lz \
files/wazaeffect/effectclact/wecellanm/narc_0021.NANR.lz \
files/wazaeffect/effectclact/wecellanm/narc_0009.NANR.lz \
files/wazaeffect/effectclact/wecellanm/narc_0008.NANR.lz \
files/wazaeffect/effectclact/wecellanm/narc_0020.NANR.lz \
files/wazaeffect/effectclact/wecellanm/narc_0034.NANR.lz \
files/wazaeffect/effectclact/wecellanm/narc_0018.NANR.lz \
files/wazaeffect/effectclact/wecellanm/narc_0030.NANR.lz \
files/wazaeffect/effectclact/wecellanm/narc_0024.NANR.lz \
files/wazaeffect/effectclact/wecellanm/narc_0025.NANR.lz \
files/wazaeffect/effectclact/wecellanm/narc_0031.NANR.lz \
files/wazaeffect/effectclact/wecellanm/narc_0019.NANR.lz \
files/wazaeffect/effectclact/wecellanm/narc_0027.NANR.lz \
files/wazaeffect/effectclact/wecellanm/narc_0033.NANR.lz \
files/wazaeffect/effectclact/wecellanm/narc_0032.NANR.lz \
files/wazaeffect/effectclact/wecellanm/narc_0026.NANR.lz \
files/wazaeffect/effectclact/wecellanm/narc_0003.NANR.lz \
files/wazaeffect/effectclact/wecellanm/narc_0017.NANR.lz \
files/wazaeffect/effectclact/wecellanm/narc_0016.NANR.lz \
files/wazaeffect/effectclact/wecellanm/narc_0002.NANR.lz \
files/wazaeffect/effectclact/wecellanm/narc_0014.NANR.lz \
files/wazaeffect/effectclact/wecellanm/narc_0000.NANR.lz \
files/wazaeffect/effectclact/wecellanm/narc_0028.NANR.lz \
files/wazaeffect/effectclact/wecellanm/narc_0029.NANR.lz \
files/wazaeffect/effectclact/wecellanm/narc_0001.NANR.lz \
files/wazaeffect/effectclact/wecellanm/narc_0015.NANR.lz \
files/wazaeffect/effectclact/wecellanm/narc_0011.NANR.lz \
files/wazaeffect/effectclact/wecellanm/narc_0005.NANR.lz \
files/wazaeffect/effectclact/wecellanm/narc_0004.NANR.lz \
files/wazaeffect/effectclact/wecellanm/narc_0010.NANR.lz \
files/wazaeffect/effectclact/wecellanm/narc_0006.NANR.lz \
files/wazaeffect/effectclact/wecellanm/narc_0012.NANR.lz \
files/wazaeffect/effectclact/wecellanm/narc_0013.NANR.lz \
files/wazaeffect/effectclact/wecellanm/narc_0007.NANR.lz
files/graphic/bag_gra.narc: \
files/graphic/bag_gra/narc_0002.NCGR \
files/graphic/bag_gra/narc_0003.NCLR \
files/graphic/bag_gra/narc_0006.NCGR \
files/graphic/bag_gra/narc_0034.NCGR \
files/graphic/bag_gra/narc_0034.NCLR
files/graphic/box.narc: \
files/graphic/box/narc_0022.NANR.lz \
files/graphic/box/narc_0036.NSCR.lz \
files/graphic/box/narc_0023.NCER.lz \
files/graphic/box/narc_0035.NCGR.lz \
files/graphic/box/narc_0021.NCER.lz \
files/graphic/box/narc_0009.NCGR.lz \
files/graphic/box/narc_0008.NSCR.lz \
files/graphic/box/narc_0018.NCER.lz \
files/graphic/box/narc_0030.NSCR.lz \
files/graphic/box/narc_0024.NANR.lz \
files/graphic/box/narc_0025.NCGR.lz \
files/graphic/box/narc_0019.NANR.lz \
files/graphic/box/narc_0033.NSCR.lz \
files/graphic/box/narc_0032.NCGR.lz \
files/graphic/box/narc_0096.NSCR.lz \
files/graphic/box/narc_0041.NCGR.lz \
files/graphic/box/narc_0069.NSCR.lz \
files/graphic/box/narc_0068.NCGR.lz \
files/graphic/box/narc_0054.NSCR.lz \
files/graphic/box/narc_0083.NCGR.lz \
files/graphic/box/narc_0108.NCGR.lz \
files/graphic/box/narc_0095.NCGR.lz \
files/graphic/box/narc_0081.NSCR.lz \
files/graphic/box/narc_0056.NCGR.lz \
files/graphic/box/narc_0042.NSCR.lz \
files/graphic/box/narc_0057.NSCR.lz \
files/graphic/box/narc_0080.NCGR.lz \
files/graphic/box/narc_0090.NSCR.lz \
files/graphic/box/narc_0084.NSCR.lz \
files/graphic/box/narc_0053.NCGR.lz \
files/graphic/box/narc_0047.NCGR.lz \
files/graphic/box/narc_0118.NCER.lz \
files/graphic/box/narc_0087.NSCR.lz \
files/graphic/box/narc_0093.NSCR.lz \
files/graphic/box/narc_0078.NSCR.lz \
files/graphic/box/narc_0044.NCGR.lz \
files/graphic/box/narc_0050.NCGR.lz \
files/graphic/box/narc_0051.NSCR.lz \
files/graphic/box/narc_0045.NSCR.lz \
files/graphic/box/narc_0092.NCGR.lz \
files/graphic/box/narc_0086.NCGR.lz \
files/graphic/box/narc_0119.NANR.lz \
files/graphic/box/narc_0114.NCGR.lz \
files/graphic/box/narc_0100.NSCR.lz \
files/graphic/box/narc_0060.NSCR.lz \
files/graphic/box/narc_0074.NCGR.lz \
files/graphic/box/narc_0048.NSCR.lz \
files/graphic/box/narc_0075.NSCR.lz \
files/graphic/box/narc_0101.NSCR.lz \
files/graphic/box/narc_0115.NCER.lz \
files/graphic/box/narc_0103.NCGR.lz \
files/graphic/box/narc_0117.NCGR.lz \
files/graphic/box/narc_0077.NCGR.lz \
files/graphic/box/narc_0063.NSCR.lz \
files/graphic/box/narc_0062.NCGR.lz \
files/graphic/box/narc_0089.NCGR.lz \
files/graphic/box/narc_0116.NANR.lz \
files/graphic/box/narc_0102.NSCR.lz \
files/graphic/box/narc_0106.NSCR.lz \
files/graphic/box/narc_0112.NANR.lz \
files/graphic/box/narc_0099.NSCR.lz \
files/graphic/box/narc_0072.NSCR.lz \
files/graphic/box/narc_0066.NSCR.lz \
files/graphic/box/narc_0098.NCGR.lz \
files/graphic/box/narc_0107.NSCR.lz \
files/graphic/box/narc_0111.NCER.lz \
files/graphic/box/narc_0105.NSCR.lz \
files/graphic/box/narc_0059.NCGR.lz \
files/graphic/box/narc_0065.NCGR.lz \
files/graphic/box/narc_0071.NCGR.lz \
files/graphic/box/narc_0110.NCGR.lz \
files/graphic/box/narc_0003.NSCR.lz \
files/graphic/box/narc_0017.NCGR.lz \
files/graphic/box/narc_0016.NCER.lz \
files/graphic/box/narc_0002.NSCR.lz \
files/graphic/box/narc_0014.NANR.lz \
files/graphic/box/narc_0000.NSCR.lz \
files/graphic/box/narc_0029.NCGR.lz \
files/graphic/box/narc_0001.NCGR.lz \
files/graphic/box/narc_0015.NCGR.lz \
files/graphic/box/narc_0039.NSCR.lz \
files/graphic/box/narc_0011.NANR.lz \
files/graphic/box/narc_0004.NCGR.lz \
files/graphic/box/narc_0010.NCER.lz \
files/graphic/box/narc_0038.NCGR.lz \
files/graphic/box/narc_0006.NSCR.lz \
files/graphic/box/narc_0012.NCGR.lz \
files/graphic/box/narc_0013.NCER.lz \
files/graphic/box/narc_0007.NSCR.lz
files/graphic/record.narc: \
files/graphic/record/narc_0009.NCGR.lz \
files/graphic/record/narc_0003.NSCR.lz \
files/graphic/record/narc_0002.NCGR.lz \
files/graphic/record/narc_0014.NANR.lz \
files/graphic/record/narc_0011.NANR.lz \
files/graphic/record/narc_0005.NCER.lz \
files/graphic/record/narc_0004.NCGR.lz \
files/graphic/record/narc_0010.NCER.lz \
files/graphic/record/narc_0006.NANR.lz \
files/graphic/record/narc_0012.NCGR.lz \
files/graphic/record/narc_0013.NCER.lz
files/graphic/mysign.narc: \
files/graphic/mysign/narc_0009.NANR.lz \
files/graphic/mysign/narc_0008.NCER.lz \
files/graphic/mysign/narc_0003.NCGR.lz \
files/graphic/mysign/narc_0005.NSCR.lz \
files/graphic/mysign/narc_0004.NCGR.lz \
files/graphic/mysign/narc_0006.NSCR.lz \
files/graphic/mysign/narc_0007.NCGR.lz
files/graphic/mystery.narc: \
files/graphic/mystery/narc_0022.NCGR.lz \
files/graphic/mystery/narc_0037.NANR.lz \
files/graphic/mystery/narc_0035.NCGR.lz \
files/graphic/mystery/narc_0021.NSCR.lz \
files/graphic/mystery/narc_0009.NCER.lz \
files/graphic/mystery/narc_0008.NANR.lz \
files/graphic/mystery/narc_0020.NSCR.lz \
files/graphic/mystery/narc_0034.NCER.lz \
files/graphic/mystery/narc_0018.NSCR.lz \
files/graphic/mystery/narc_0030.NCGR.lz \
files/graphic/mystery/narc_0024.NANR.lz \
files/graphic/mystery/narc_0025.NCER.lz \
files/graphic/mystery/narc_0031.NSCR.lz \
files/graphic/mystery/narc_0027.NCGR.lz \
files/graphic/mystery/narc_0033.NANR.lz \
files/graphic/mystery/narc_0026.NCGR.lz \
files/graphic/mystery/narc_0017.NCGR.lz \
files/graphic/mystery/narc_0002.NSCR.lz \
files/graphic/mystery/narc_0014.NCER.lz \
files/graphic/mystery/narc_0028.NSCR.lz \
files/graphic/mystery/narc_0001.NCGR.lz \
files/graphic/mystery/narc_0015.NCGR.lz \
files/graphic/mystery/narc_0039.NCGR.lz \
files/graphic/mystery/narc_0005.NSCR.lz \
files/graphic/mystery/narc_0004.NSCR.lz \
files/graphic/mystery/narc_0010.NCGR.lz \
files/graphic/mystery/narc_0038.NCER.lz \
files/graphic/mystery/narc_0006.NCGR.lz \
files/graphic/mystery/narc_0013.NANR.lz
files/graphic/oekaki.narc: \
files/graphic/oekaki/narc_0008.NANR.lz \
files/graphic/oekaki/narc_0003.NCGR.lz \
files/graphic/oekaki/narc_0002.NCGR.lz \
files/graphic/oekaki/narc_0005.NSCR.lz \
files/graphic/oekaki/narc_0004.NSCR.lz \
files/graphic/oekaki/narc_0006.NCGR.lz \
files/graphic/oekaki/narc_0007.NCER.lz
files/graphic/worldtrade.narc: \
files/graphic/worldtrade/narc_0022.NSCR.lz \
files/graphic/worldtrade/narc_0036.NCER.lz \
files/graphic/worldtrade/narc_0037.NANR.lz \
files/graphic/worldtrade/narc_0023.NSCR.lz \
files/graphic/worldtrade/narc_0035.NCGR.lz \
files/graphic/worldtrade/narc_0021.NSCR.lz \
files/graphic/worldtrade/narc_0020.NANR.lz \
files/graphic/worldtrade/narc_0034.NANR.lz \
files/graphic/worldtrade/narc_0018.NCGR.lz \
files/graphic/worldtrade/narc_0030.NSCR.lz \
files/graphic/worldtrade/narc_0024.NSCR.lz \
files/graphic/worldtrade/narc_0025.NSCR.lz \
files/graphic/worldtrade/narc_0031.NSCR.lz \
files/graphic/worldtrade/narc_0019.NCER.lz \
files/graphic/worldtrade/narc_0027.NSCR.lz \
files/graphic/worldtrade/narc_0033.NCER.lz \
files/graphic/worldtrade/narc_0032.NCGR.lz \
files/graphic/worldtrade/narc_0026.NSCR.lz \
files/graphic/worldtrade/narc_0017.NCGR.lz \
files/graphic/worldtrade/narc_0016.NCGR.lz \
files/graphic/worldtrade/narc_0014.NCGR.lz \
files/graphic/worldtrade/narc_0028.NSCR.lz \
files/graphic/worldtrade/narc_0029.NSCR.lz \
files/graphic/worldtrade/narc_0015.NCGR.lz \
files/graphic/worldtrade/narc_0011.NCGR.lz \
files/graphic/worldtrade/narc_0010.NCGR.lz \
files/graphic/worldtrade/narc_0012.NCGR.lz \
files/graphic/worldtrade/narc_0013.NCGR.lz
files/graphic/unionroom.narc: \
files/graphic/unionroom/narc_0003.NSCR.lz \
files/graphic/unionroom/narc_0002.NCGR.lz \
files/graphic/unionroom/narc_0005.NCGR.lz \
files/graphic/unionroom/narc_0004.NSCR.lz \
files/graphic/unionroom/narc_0006.NCER.lz \
files/graphic/unionroom/narc_0007.NANR.lz
files/graphic/dendou_demo.narc: \
files/graphic/dendou_demo/narc_0003.NCGR.lz \
files/graphic/dendou_demo/narc_0002.NSCR.lz \
files/graphic/dendou_demo/narc_0000.NSCR.lz \
files/graphic/dendou_demo/narc_0001.NSCR.lz
files/graphic/pmsi.narc: \
files/graphic/pmsi/narc_0022.NCER.lz \
files/graphic/pmsi/narc_0023.NANR.lz \
files/graphic/pmsi/narc_0009.NCGR.lz \
files/graphic/pmsi/narc_0008.NANR.lz \
files/graphic/pmsi/narc_0020.NCGR.lz \
files/graphic/pmsi/narc_0018.NSCR.lz \
files/graphic/pmsi/narc_0024.NCGR.lz \
files/graphic/pmsi/narc_0019.NSCR.lz \
files/graphic/pmsi/narc_0003.NCGR.lz \
files/graphic/pmsi/narc_0017.NSCR.lz \
files/graphic/pmsi/narc_0016.NSCR.lz \
files/graphic/pmsi/narc_0002.NSCR.lz \
files/graphic/pmsi/narc_0014.NSCR.lz \
files/graphic/pmsi/narc_0000.NSCR.lz \
files/graphic/pmsi/narc_0001.NCGR.lz \
files/graphic/pmsi/narc_0015.NSCR.lz \
files/graphic/pmsi/narc_0011.NSCR.lz \
files/graphic/pmsi/narc_0005.NCGR.lz \
files/graphic/pmsi/narc_0004.NSCR.lz \
files/graphic/pmsi/narc_0012.NSCR.lz \
files/graphic/pmsi/narc_0013.NSCR.lz \
files/graphic/pmsi/narc_0007.NCER.lz
files/graphic/demo_trade.narc: \
files/graphic/demo_trade/narc_0022.NCGR.lz \
files/graphic/demo_trade/narc_0021.NSCR.lz \
files/graphic/demo_trade/narc_0009.NCGR.lz \
files/graphic/demo_trade/narc_0008.NANR.lz \
files/graphic/demo_trade/narc_0018.NSCR.lz \
files/graphic/demo_trade/narc_0024.NSCR.lz \
files/graphic/demo_trade/narc_0025.NCGR.lz \
files/graphic/demo_trade/narc_0019.NCGR.lz \
files/graphic/demo_trade/narc_0016.NCGR.lz \
files/graphic/demo_trade/narc_0002.NCGR.lz \
files/graphic/demo_trade/narc_0000.NSCR.lz \
files/graphic/demo_trade/narc_0001.NSCR.lz \
files/graphic/demo_trade/narc_0015.NSCR.lz \
files/graphic/demo_trade/narc_0011.NCER.lz \
files/graphic/demo_trade/narc_0005.NCGR.lz \
files/graphic/demo_trade/narc_0004.NSCR.lz \
files/graphic/demo_trade/narc_0012.NANR.lz \
files/graphic/demo_trade/narc_0013.NCGR.lz \
files/graphic/demo_trade/narc_0007.NCER.lz
files/graphic/font.narc: \
files/graphic/font/narc_0004.NCGR.lz
files/graphic/touch_subwindow.narc: \
files/graphic/touch_subwindow/narc_0009.NSCR.lz \
files/graphic/touch_subwindow/narc_0008.NSCR.lz \
files/graphic/touch_subwindow/narc_0003.NSCR.lz \
files/graphic/touch_subwindow/narc_0002.NSCR.lz \
files/graphic/touch_subwindow/narc_0001.NCGR.lz \
files/graphic/touch_subwindow/narc_0005.NSCR.lz \
files/graphic/touch_subwindow/narc_0004.NSCR.lz \
files/graphic/touch_subwindow/narc_0006.NSCR.lz \
files/graphic/touch_subwindow/narc_0007.NSCR.lz
files/graphic/dendou_pc.narc: \
files/graphic/dendou_pc/narc_0000.NSCR.lz \
files/graphic/dendou_pc/narc_0001.NCGR.lz
files/poketool/pokefoot/pokefoot.narc: \
files/poketool/pokefoot/pokefoot/narc_0397.NCGR.lz \
files/poketool/pokefoot/pokefoot/narc_0383.NCGR.lz \
files/poketool/pokefoot/pokefoot/narc_0354.NCGR.lz \
files/poketool/pokefoot/pokefoot/narc_0432.NCGR.lz \
files/poketool/pokefoot/pokefoot/narc_0426.NCGR.lz \
files/poketool/pokefoot/pokefoot/narc_0340.NCGR.lz \
files/poketool/pokefoot/pokefoot/narc_0368.NCGR.lz \
files/poketool/pokefoot/pokefoot/narc_0195.NCGR.lz \
files/poketool/pokefoot/pokefoot/narc_0181.NCGR.lz \
files/poketool/pokefoot/pokefoot/narc_0156.NCGR.lz \
files/poketool/pokefoot/pokefoot/narc_0142.NCGR.lz \
files/poketool/pokefoot/pokefoot/narc_0022.NCGR.lz \
files/poketool/pokefoot/pokefoot/narc_0036.NCGR.lz \
files/poketool/pokefoot/pokefoot/narc_0220.NCGR.lz \
files/poketool/pokefoot/pokefoot/narc_0234.NCGR.lz \
files/poketool/pokefoot/pokefoot/narc_0208.NCGR.lz \
files/poketool/pokefoot/pokefoot/narc_0209.NCGR.lz \
files/poketool/pokefoot/pokefoot/narc_0235.NCGR.lz \
files/poketool/pokefoot/pokefoot/narc_0221.NCGR.lz \
files/poketool/pokefoot/pokefoot/narc_0037.NCGR.lz \
files/poketool/pokefoot/pokefoot/narc_0023.NCGR.lz \
files/poketool/pokefoot/pokefoot/narc_0143.NCGR.lz \
files/poketool/pokefoot/pokefoot/narc_0157.NCGR.lz \
files/poketool/pokefoot/pokefoot/narc_0180.NCGR.lz \
files/poketool/pokefoot/pokefoot/narc_0194.NCGR.lz \
files/poketool/pokefoot/pokefoot/narc_0369.NCGR.lz \
files/poketool/pokefoot/pokefoot/narc_0427.NCGR.lz \
files/poketool/pokefoot/pokefoot/narc_0341.NCGR.lz \
files/poketool/pokefoot/pokefoot/narc_0355.NCGR.lz \
files/poketool/pokefoot/pokefoot/narc_0433.NCGR.lz \
files/poketool/pokefoot/pokefoot/narc_0382.NCGR.lz \
files/poketool/pokefoot/pokefoot/narc_0396.NCGR.lz \
files/poketool/pokefoot/pokefoot/narc_0380.NCGR.lz \
files/poketool/pokefoot/pokefoot/narc_0394.NCGR.lz \
files/poketool/pokefoot/pokefoot/narc_0343.NCGR.lz \
files/poketool/pokefoot/pokefoot/narc_0425.NCGR.lz \
files/poketool/pokefoot/pokefoot/narc_0431.NCGR.lz \
files/poketool/pokefoot/pokefoot/narc_0357.NCGR.lz \
files/poketool/pokefoot/pokefoot/narc_0419.NCGR.lz \
files/poketool/pokefoot/pokefoot/narc_0182.NCGR.lz \
files/poketool/pokefoot/pokefoot/narc_0196.NCGR.lz \
files/poketool/pokefoot/pokefoot/narc_0141.NCGR.lz \
files/poketool/pokefoot/pokefoot/narc_0155.NCGR.lz \
files/poketool/pokefoot/pokefoot/narc_0169.NCGR.lz \
files/poketool/pokefoot/pokefoot/narc_0035.NCGR.lz \
files/poketool/pokefoot/pokefoot/narc_0021.NCGR.lz \
files/poketool/pokefoot/pokefoot/narc_0009.NCGR.lz \
files/poketool/pokefoot/pokefoot/narc_0237.NCGR.lz \
files/poketool/pokefoot/pokefoot/narc_0223.NCGR.lz \
files/poketool/pokefoot/pokefoot/narc_0222.NCGR.lz \
files/poketool/pokefoot/pokefoot/narc_0236.NCGR.lz \
files/poketool/pokefoot/pokefoot/narc_0008.NCGR.lz \
files/poketool/pokefoot/pokefoot/narc_0020.NCGR.lz \
files/poketool/pokefoot/pokefoot/narc_0034.NCGR.lz \
files/poketool/pokefoot/pokefoot/narc_0168.NCGR.lz \
files/poketool/pokefoot/pokefoot/narc_0154.NCGR.lz \
files/poketool/pokefoot/pokefoot/narc_0140.NCGR.lz \
files/poketool/pokefoot/pokefoot/narc_0197.NCGR.lz \
files/poketool/pokefoot/pokefoot/narc_0183.NCGR.lz \
files/poketool/pokefoot/pokefoot/narc_0418.NCGR.lz \
files/poketool/pokefoot/pokefoot/narc_0430.NCGR.lz \
files/poketool/pokefoot/pokefoot/narc_0356.NCGR.lz \
files/poketool/pokefoot/pokefoot/narc_0342.NCGR.lz \
files/poketool/pokefoot/pokefoot/narc_0424.NCGR.lz \
files/poketool/pokefoot/pokefoot/narc_0395.NCGR.lz \
files/poketool/pokefoot/pokefoot/narc_0381.NCGR.lz \
files/poketool/pokefoot/pokefoot/narc_0385.NCGR.lz \
files/poketool/pokefoot/pokefoot/narc_0391.NCGR.lz \
files/poketool/pokefoot/pokefoot/narc_0408.NCGR.lz \
files/poketool/pokefoot/pokefoot/narc_0420.NCGR.lz \
files/poketool/pokefoot/pokefoot/narc_0346.NCGR.lz \
files/poketool/pokefoot/pokefoot/narc_0352.NCGR.lz \
files/poketool/pokefoot/pokefoot/narc_0434.NCGR.lz \
files/poketool/pokefoot/pokefoot/narc_0187.NCGR.lz \
files/poketool/pokefoot/pokefoot/narc_0193.NCGR.lz \
files/poketool/pokefoot/pokefoot/narc_0178.NCGR.lz \
files/poketool/pokefoot/pokefoot/narc_0144.NCGR.lz \
files/poketool/pokefoot/pokefoot/narc_0150.NCGR.lz \
files/poketool/pokefoot/pokefoot/narc_0018.NCGR.lz \
files/poketool/pokefoot/pokefoot/narc_0030.NCGR.lz \
files/poketool/pokefoot/pokefoot/narc_0024.NCGR.lz \
files/poketool/pokefoot/pokefoot/narc_0232.NCGR.lz \
files/poketool/pokefoot/pokefoot/narc_0226.NCGR.lz \
files/poketool/pokefoot/pokefoot/narc_0227.NCGR.lz \
files/poketool/pokefoot/pokefoot/narc_0233.NCGR.lz \
files/poketool/pokefoot/pokefoot/narc_0025.NCGR.lz \
files/poketool/pokefoot/pokefoot/narc_0031.NCGR.lz \
files/poketool/pokefoot/pokefoot/narc_0019.NCGR.lz \
files/poketool/pokefoot/pokefoot/narc_0151.NCGR.lz \
files/poketool/pokefoot/pokefoot/narc_0145.NCGR.lz \
files/poketool/pokefoot/pokefoot/narc_0179.NCGR.lz \
files/poketool/pokefoot/pokefoot/narc_0192.NCGR.lz \
files/poketool/pokefoot/pokefoot/narc_0186.NCGR.lz \
files/poketool/pokefoot/pokefoot/narc_0353.NCGR.lz \
files/poketool/pokefoot/pokefoot/narc_0435.NCGR.lz \
files/poketool/pokefoot/pokefoot/narc_0421.NCGR.lz \
files/poketool/pokefoot/pokefoot/narc_0347.NCGR.lz \
files/poketool/pokefoot/pokefoot/narc_0409.NCGR.lz \
files/poketool/pokefoot/pokefoot/narc_0390.NCGR.lz \
files/poketool/pokefoot/pokefoot/narc_0384.NCGR.lz \
files/poketool/pokefoot/pokefoot/narc_0392.NCGR.lz \
files/poketool/pokefoot/pokefoot/narc_0386.NCGR.lz \
files/poketool/pokefoot/pokefoot/narc_0379.NCGR.lz \
files/poketool/pokefoot/pokefoot/narc_0437.NCGR.lz \
files/poketool/pokefoot/pokefoot/narc_0351.NCGR.lz \
files/poketool/pokefoot/pokefoot/narc_0345.NCGR.lz \
files/poketool/pokefoot/pokefoot/narc_0423.NCGR.lz \
files/poketool/pokefoot/pokefoot/narc_0190.NCGR.lz \
files/poketool/pokefoot/pokefoot/narc_0184.NCGR.lz \
files/poketool/pokefoot/pokefoot/narc_0153.NCGR.lz \
files/poketool/pokefoot/pokefoot/narc_0147.NCGR.lz \
files/poketool/pokefoot/pokefoot/narc_0027.NCGR.lz \
files/poketool/pokefoot/pokefoot/narc_0033.NCGR.lz \
files/poketool/pokefoot/pokefoot/narc_0219.NCGR.lz \
files/poketool/pokefoot/pokefoot/narc_0225.NCGR.lz \
files/poketool/pokefoot/pokefoot/narc_0231.NCGR.lz \
files/poketool/pokefoot/pokefoot/narc_0230.NCGR.lz \
files/poketool/pokefoot/pokefoot/narc_0224.NCGR.lz \
files/poketool/pokefoot/pokefoot/narc_0218.NCGR.lz \
files/poketool/pokefoot/pokefoot/narc_0032.NCGR.lz \
files/poketool/pokefoot/pokefoot/narc_0026.NCGR.lz \
files/poketool/pokefoot/pokefoot/narc_0146.NCGR.lz \
files/poketool/pokefoot/pokefoot/narc_0152.NCGR.lz \
files/poketool/pokefoot/pokefoot/narc_0185.NCGR.lz \
files/poketool/pokefoot/pokefoot/narc_0191.NCGR.lz \
files/poketool/pokefoot/pokefoot/narc_0344.NCGR.lz \
files/poketool/pokefoot/pokefoot/narc_0422.NCGR.lz \
files/poketool/pokefoot/pokefoot/narc_0436.NCGR.lz \
files/poketool/pokefoot/pokefoot/narc_0350.NCGR.lz \
files/poketool/pokefoot/pokefoot/narc_0378.NCGR.lz \
files/poketool/pokefoot/pokefoot/narc_0387.NCGR.lz \
files/poketool/pokefoot/pokefoot/narc_0393.NCGR.lz \
files/poketool/pokefoot/pokefoot/narc_0492.NCGR.lz \
files/poketool/pokefoot/pokefoot/narc_0486.NCGR.lz \
files/poketool/pokefoot/pokefoot/narc_0451.NCGR.lz \
files/poketool/pokefoot/pokefoot/narc_0337.NCGR.lz \
files/poketool/pokefoot/pokefoot/narc_0323.NCGR.lz \
files/poketool/pokefoot/pokefoot/narc_0445.NCGR.lz \
files/poketool/pokefoot/pokefoot/narc_0479.NCGR.lz \
files/poketool/pokefoot/pokefoot/narc_0135.NCGR.lz \
files/poketool/pokefoot/pokefoot/narc_0121.NCGR.lz \
files/poketool/pokefoot/pokefoot/narc_0109.NCGR.lz \
files/poketool/pokefoot/pokefoot/narc_0082.NCGR.lz \
files/poketool/pokefoot/pokefoot/narc_0096.NCGR.lz \
files/poketool/pokefoot/pokefoot/narc_0041.NCGR.lz \
files/poketool/pokefoot/pokefoot/narc_0055.NCGR.lz \
files/poketool/pokefoot/pokefoot/narc_0069.NCGR.lz \
files/poketool/pokefoot/pokefoot/narc_0280.NCGR.lz \
files/poketool/pokefoot/pokefoot/narc_0294.NCGR.lz \
files/poketool/pokefoot/pokefoot/narc_0243.NCGR.lz \
files/poketool/pokefoot/pokefoot/narc_0257.NCGR.lz \
files/poketool/pokefoot/pokefoot/narc_0256.NCGR.lz \
files/poketool/pokefoot/pokefoot/narc_0242.NCGR.lz \
files/poketool/pokefoot/pokefoot/narc_0295.NCGR.lz \
files/poketool/pokefoot/pokefoot/narc_0281.NCGR.lz \
files/poketool/pokefoot/pokefoot/narc_0068.NCGR.lz \
files/poketool/pokefoot/pokefoot/narc_0054.NCGR.lz \
files/poketool/pokefoot/pokefoot/narc_0040.NCGR.lz \
files/poketool/pokefoot/pokefoot/narc_0097.NCGR.lz \
files/poketool/pokefoot/pokefoot/narc_0083.NCGR.lz \
files/poketool/pokefoot/pokefoot/narc_0108.NCGR.lz \
files/poketool/pokefoot/pokefoot/narc_0120.NCGR.lz \
files/poketool/pokefoot/pokefoot/narc_0134.NCGR.lz \
files/poketool/pokefoot/pokefoot/narc_0478.NCGR.lz \
files/poketool/pokefoot/pokefoot/narc_0322.NCGR.lz \
files/poketool/pokefoot/pokefoot/narc_0444.NCGR.lz \
files/poketool/pokefoot/pokefoot/narc_0450.NCGR.lz \
files/poketool/pokefoot/pokefoot/narc_0336.NCGR.lz \
files/poketool/pokefoot/pokefoot/narc_0487.NCGR.lz \
files/poketool/pokefoot/pokefoot/narc_0493.NCGR.lz \
files/poketool/pokefoot/pokefoot/narc_0485.NCGR.lz \
files/poketool/pokefoot/pokefoot/narc_0491.NCGR.lz \
files/poketool/pokefoot/pokefoot/narc_0446.NCGR.lz \
files/poketool/pokefoot/pokefoot/narc_0320.NCGR.lz \
files/poketool/pokefoot/pokefoot/narc_0334.NCGR.lz \
files/poketool/pokefoot/pokefoot/narc_0452.NCGR.lz \
files/poketool/pokefoot/pokefoot/narc_0308.NCGR.lz \
files/poketool/pokefoot/pokefoot/narc_0122.NCGR.lz \
files/poketool/pokefoot/pokefoot/narc_0136.NCGR.lz \
files/poketool/pokefoot/pokefoot/narc_0095.NCGR.lz \
files/poketool/pokefoot/pokefoot/narc_0081.NCGR.lz \
files/poketool/pokefoot/pokefoot/narc_0056.NCGR.lz \
files/poketool/pokefoot/pokefoot/narc_0042.NCGR.lz \
files/poketool/pokefoot/pokefoot/narc_0297.NCGR.lz \
files/poketool/pokefoot/pokefoot/narc_0283.NCGR.lz \
files/poketool/pokefoot/pokefoot/narc_0254.NCGR.lz \
files/poketool/pokefoot/pokefoot/narc_0240.NCGR.lz \
files/poketool/pokefoot/pokefoot/narc_0268.NCGR.lz \
files/poketool/pokefoot/pokefoot/narc_0269.NCGR.lz \
files/poketool/pokefoot/pokefoot/narc_0241.NCGR.lz \
files/poketool/pokefoot/pokefoot/narc_0255.NCGR.lz \
files/poketool/pokefoot/pokefoot/narc_0282.NCGR.lz \
files/poketool/pokefoot/pokefoot/narc_0296.NCGR.lz \
files/poketool/pokefoot/pokefoot/narc_0043.NCGR.lz \
files/poketool/pokefoot/pokefoot/narc_0057.NCGR.lz \
files/poketool/pokefoot/pokefoot/narc_0080.NCGR.lz \
files/poketool/pokefoot/pokefoot/narc_0094.NCGR.lz \
files/poketool/pokefoot/pokefoot/narc_0137.NCGR.lz \
files/poketool/pokefoot/pokefoot/narc_0123.NCGR.lz \
files/poketool/pokefoot/pokefoot/narc_0309.NCGR.lz \
files/poketool/pokefoot/pokefoot/narc_0335.NCGR.lz \
files/poketool/pokefoot/pokefoot/narc_0453.NCGR.lz \
files/poketool/pokefoot/pokefoot/narc_0447.NCGR.lz \
files/poketool/pokefoot/pokefoot/narc_0321.NCGR.lz \
files/poketool/pokefoot/pokefoot/narc_0490.NCGR.lz \
files/poketool/pokefoot/pokefoot/narc_0484.NCGR.lz \
files/poketool/pokefoot/pokefoot/narc_0480.NCGR.lz \
files/poketool/pokefoot/pokefoot/narc_0494.NCGR.lz \
files/poketool/pokefoot/pokefoot/narc_0319.NCGR.lz \
files/poketool/pokefoot/pokefoot/narc_0325.NCGR.lz \
files/poketool/pokefoot/pokefoot/narc_0443.NCGR.lz \
files/poketool/pokefoot/pokefoot/narc_0457.NCGR.lz \
files/poketool/pokefoot/pokefoot/narc_0331.NCGR.lz \
files/poketool/pokefoot/pokefoot/narc_0127.NCGR.lz \
files/poketool/pokefoot/pokefoot/narc_0133.NCGR.lz \
files/poketool/pokefoot/pokefoot/narc_0090.NCGR.lz \
files/poketool/pokefoot/pokefoot/narc_0084.NCGR.lz \
files/poketool/pokefoot/pokefoot/narc_0053.NCGR.lz \
files/poketool/pokefoot/pokefoot/narc_0047.NCGR.lz \
files/poketool/pokefoot/pokefoot/narc_0292.NCGR.lz \
files/poketool/pokefoot/pokefoot/narc_0286.NCGR.lz \
files/poketool/pokefoot/pokefoot/narc_0279.NCGR.lz \
files/poketool/pokefoot/pokefoot/narc_0251.NCGR.lz \
files/poketool/pokefoot/pokefoot/narc_0245.NCGR.lz \
files/poketool/pokefoot/pokefoot/narc_0244.NCGR.lz \
files/poketool/pokefoot/pokefoot/narc_0250.NCGR.lz \
files/poketool/pokefoot/pokefoot/narc_0278.NCGR.lz \
files/poketool/pokefoot/pokefoot/narc_0287.NCGR.lz \
files/poketool/pokefoot/pokefoot/narc_0293.NCGR.lz \
files/poketool/pokefoot/pokefoot/narc_0046.NCGR.lz \
files/poketool/pokefoot/pokefoot/narc_0052.NCGR.lz \
files/poketool/pokefoot/pokefoot/narc_0085.NCGR.lz \
files/poketool/pokefoot/pokefoot/narc_0091.NCGR.lz \
files/poketool/pokefoot/pokefoot/narc_0132.NCGR.lz \
files/poketool/pokefoot/pokefoot/narc_0126.NCGR.lz \
files/poketool/pokefoot/pokefoot/narc_0456.NCGR.lz \
files/poketool/pokefoot/pokefoot/narc_0330.NCGR.lz \
files/poketool/pokefoot/pokefoot/narc_0324.NCGR.lz \
files/poketool/pokefoot/pokefoot/narc_0442.NCGR.lz \
files/poketool/pokefoot/pokefoot/narc_0318.NCGR.lz \
files/poketool/pokefoot/pokefoot/narc_0495.NCGR.lz \
files/poketool/pokefoot/pokefoot/narc_0481.NCGR.lz \
files/poketool/pokefoot/pokefoot/narc_0483.NCGR.lz \
files/poketool/pokefoot/pokefoot/narc_0468.NCGR.lz \
files/poketool/pokefoot/pokefoot/narc_0332.NCGR.lz \
files/poketool/pokefoot/pokefoot/narc_0454.NCGR.lz \
files/poketool/pokefoot/pokefoot/narc_0440.NCGR.lz \
files/poketool/pokefoot/pokefoot/narc_0326.NCGR.lz \
files/poketool/pokefoot/pokefoot/narc_0118.NCGR.lz \
files/poketool/pokefoot/pokefoot/narc_0130.NCGR.lz \
files/poketool/pokefoot/pokefoot/narc_0124.NCGR.lz \
files/poketool/pokefoot/pokefoot/narc_0087.NCGR.lz \
files/poketool/pokefoot/pokefoot/narc_0093.NCGR.lz \
files/poketool/pokefoot/pokefoot/narc_0078.NCGR.lz \
files/poketool/pokefoot/pokefoot/narc_0044.NCGR.lz \
files/poketool/pokefoot/pokefoot/narc_0050.NCGR.lz \
files/poketool/pokefoot/pokefoot/narc_0285.NCGR.lz \
files/poketool/pokefoot/pokefoot/narc_0291.NCGR.lz \
files/poketool/pokefoot/pokefoot/narc_0246.NCGR.lz \
files/poketool/pokefoot/pokefoot/narc_0252.NCGR.lz \
files/poketool/pokefoot/pokefoot/narc_0253.NCGR.lz \
files/poketool/pokefoot/pokefoot/narc_0247.NCGR.lz \
files/poketool/pokefoot/pokefoot/narc_0290.NCGR.lz \
files/poketool/pokefoot/pokefoot/narc_0284.NCGR.lz \
files/poketool/pokefoot/pokefoot/narc_0051.NCGR.lz \
files/poketool/pokefoot/pokefoot/narc_0045.NCGR.lz \
files/poketool/pokefoot/pokefoot/narc_0079.NCGR.lz \
files/poketool/pokefoot/pokefoot/narc_0092.NCGR.lz \
files/poketool/pokefoot/pokefoot/narc_0086.NCGR.lz \
files/poketool/pokefoot/pokefoot/narc_0125.NCGR.lz \
files/poketool/pokefoot/pokefoot/narc_0131.NCGR.lz \
files/poketool/pokefoot/pokefoot/narc_0119.NCGR.lz \
files/poketool/pokefoot/pokefoot/narc_0441.NCGR.lz \
files/poketool/pokefoot/pokefoot/narc_0327.NCGR.lz \
files/poketool/pokefoot/pokefoot/narc_0333.NCGR.lz \
files/poketool/pokefoot/pokefoot/narc_0455.NCGR.lz \
files/poketool/pokefoot/pokefoot/narc_0469.NCGR.lz \
files/poketool/pokefoot/pokefoot/narc_0482.NCGR.lz \
files/poketool/pokefoot/pokefoot/narc_0496.NCGR.lz \
files/poketool/pokefoot/pokefoot/narc_0470.NCGR.lz \
files/poketool/pokefoot/pokefoot/narc_0316.NCGR.lz \
files/poketool/pokefoot/pokefoot/narc_0302.NCGR.lz \
files/poketool/pokefoot/pokefoot/narc_0464.NCGR.lz \
files/poketool/pokefoot/pokefoot/narc_0458.NCGR.lz \
files/poketool/pokefoot/pokefoot/narc_0114.NCGR.lz \
files/poketool/pokefoot/pokefoot/narc_0100.NCGR.lz \
files/poketool/pokefoot/pokefoot/narc_0128.NCGR.lz \
files/poketool/pokefoot/pokefoot/narc_0060.NCGR.lz \
files/poketool/pokefoot/pokefoot/narc_0074.NCGR.lz \
files/poketool/pokefoot/pokefoot/narc_0048.NCGR.lz \
files/poketool/pokefoot/pokefoot/narc_0289.NCGR.lz \
files/poketool/pokefoot/pokefoot/narc_0262.NCGR.lz \
files/poketool/pokefoot/pokefoot/narc_0276.NCGR.lz \
files/poketool/pokefoot/pokefoot/narc_0277.NCGR.lz \
files/poketool/pokefoot/pokefoot/narc_0263.NCGR.lz \
files/poketool/pokefoot/pokefoot/narc_0288.NCGR.lz \
files/poketool/pokefoot/pokefoot/narc_0049.NCGR.lz \
files/poketool/pokefoot/pokefoot/narc_0075.NCGR.lz \
files/poketool/pokefoot/pokefoot/narc_0061.NCGR.lz \
files/poketool/pokefoot/pokefoot/narc_0129.NCGR.lz \
files/poketool/pokefoot/pokefoot/narc_0101.NCGR.lz \
files/poketool/pokefoot/pokefoot/narc_0115.NCGR.lz \
files/poketool/pokefoot/pokefoot/narc_0459.NCGR.lz \
files/poketool/pokefoot/pokefoot/narc_0303.NCGR.lz \
files/poketool/pokefoot/pokefoot/narc_0465.NCGR.lz \
files/poketool/pokefoot/pokefoot/narc_0471.NCGR.lz \
files/poketool/pokefoot/pokefoot/narc_0317.NCGR.lz \
files/poketool/pokefoot/pokefoot/narc_0467.NCGR.lz \
files/poketool/pokefoot/pokefoot/narc_0301.NCGR.lz \
files/poketool/pokefoot/pokefoot/narc_0315.NCGR.lz \
files/poketool/pokefoot/pokefoot/narc_0473.NCGR.lz \
files/poketool/pokefoot/pokefoot/narc_0329.NCGR.lz \
files/poketool/pokefoot/pokefoot/narc_0103.NCGR.lz \
files/poketool/pokefoot/pokefoot/narc_0117.NCGR.lz \
files/poketool/pokefoot/pokefoot/narc_0088.NCGR.lz \
files/poketool/pokefoot/pokefoot/narc_0077.NCGR.lz \
files/poketool/pokefoot/pokefoot/narc_0063.NCGR.lz \
files/poketool/pokefoot/pokefoot/narc_0275.NCGR.lz \
files/poketool/pokefoot/pokefoot/narc_0261.NCGR.lz \
files/poketool/pokefoot/pokefoot/narc_0249.NCGR.lz \
files/poketool/pokefoot/pokefoot/narc_0248.NCGR.lz \
files/poketool/pokefoot/pokefoot/narc_0260.NCGR.lz \
files/poketool/pokefoot/pokefoot/narc_0274.NCGR.lz \
files/poketool/pokefoot/pokefoot/narc_0062.NCGR.lz \
files/poketool/pokefoot/pokefoot/narc_0076.NCGR.lz \
files/poketool/pokefoot/pokefoot/narc_0089.NCGR.lz \
files/poketool/pokefoot/pokefoot/narc_0116.NCGR.lz \
files/poketool/pokefoot/pokefoot/narc_0102.NCGR.lz \
files/poketool/pokefoot/pokefoot/narc_0328.NCGR.lz \
files/poketool/pokefoot/pokefoot/narc_0314.NCGR.lz \
files/poketool/pokefoot/pokefoot/narc_0472.NCGR.lz \
files/poketool/pokefoot/pokefoot/narc_0466.NCGR.lz \
files/poketool/pokefoot/pokefoot/narc_0300.NCGR.lz \
files/poketool/pokefoot/pokefoot/narc_0489.NCGR.lz \
files/poketool/pokefoot/pokefoot/narc_0338.NCGR.lz \
files/poketool/pokefoot/pokefoot/narc_0304.NCGR.lz \
files/poketool/pokefoot/pokefoot/narc_0462.NCGR.lz \
files/poketool/pokefoot/pokefoot/narc_0476.NCGR.lz \
files/poketool/pokefoot/pokefoot/narc_0310.NCGR.lz \
files/poketool/pokefoot/pokefoot/narc_0106.NCGR.lz \
files/poketool/pokefoot/pokefoot/narc_0112.NCGR.lz \
files/poketool/pokefoot/pokefoot/narc_0099.NCGR.lz \
files/poketool/pokefoot/pokefoot/narc_0072.NCGR.lz \
files/poketool/pokefoot/pokefoot/narc_0066.NCGR.lz \
files/poketool/pokefoot/pokefoot/narc_0258.NCGR.lz \
files/poketool/pokefoot/pokefoot/narc_0270.NCGR.lz \
files/poketool/pokefoot/pokefoot/narc_0264.NCGR.lz \
files/poketool/pokefoot/pokefoot/narc_0265.NCGR.lz \
files/poketool/pokefoot/pokefoot/narc_0271.NCGR.lz \
files/poketool/pokefoot/pokefoot/narc_0259.NCGR.lz \
files/poketool/pokefoot/pokefoot/narc_0067.NCGR.lz \
files/poketool/pokefoot/pokefoot/narc_0073.NCGR.lz \
files/poketool/pokefoot/pokefoot/narc_0098.NCGR.lz \
files/poketool/pokefoot/pokefoot/narc_0113.NCGR.lz \
files/poketool/pokefoot/pokefoot/narc_0107.NCGR.lz \
files/poketool/pokefoot/pokefoot/narc_0477.NCGR.lz \
files/poketool/pokefoot/pokefoot/narc_0311.NCGR.lz \
files/poketool/pokefoot/pokefoot/narc_0305.NCGR.lz \
files/poketool/pokefoot/pokefoot/narc_0463.NCGR.lz \
files/poketool/pokefoot/pokefoot/narc_0339.NCGR.lz \
files/poketool/pokefoot/pokefoot/narc_0488.NCGR.lz \
files/poketool/pokefoot/pokefoot/narc_0449.NCGR.lz \
files/poketool/pokefoot/pokefoot/narc_0313.NCGR.lz \
files/poketool/pokefoot/pokefoot/narc_0475.NCGR.lz \
files/poketool/pokefoot/pokefoot/narc_0461.NCGR.lz \
files/poketool/pokefoot/pokefoot/narc_0307.NCGR.lz \
files/poketool/pokefoot/pokefoot/narc_0139.NCGR.lz \
files/poketool/pokefoot/pokefoot/narc_0111.NCGR.lz \
files/poketool/pokefoot/pokefoot/narc_0105.NCGR.lz \
files/poketool/pokefoot/pokefoot/narc_0059.NCGR.lz \
files/poketool/pokefoot/pokefoot/narc_0065.NCGR.lz \
files/poketool/pokefoot/pokefoot/narc_0071.NCGR.lz \
files/poketool/pokefoot/pokefoot/narc_0298.NCGR.lz \
files/poketool/pokefoot/pokefoot/narc_0267.NCGR.lz \
files/poketool/pokefoot/pokefoot/narc_0273.NCGR.lz \
files/poketool/pokefoot/pokefoot/narc_0272.NCGR.lz \
files/poketool/pokefoot/pokefoot/narc_0266.NCGR.lz \
files/poketool/pokefoot/pokefoot/narc_0299.NCGR.lz \
files/poketool/pokefoot/pokefoot/narc_0070.NCGR.lz \
files/poketool/pokefoot/pokefoot/narc_0064.NCGR.lz \
files/poketool/pokefoot/pokefoot/narc_0058.NCGR.lz \
files/poketool/pokefoot/pokefoot/narc_0104.NCGR.lz \
files/poketool/pokefoot/pokefoot/narc_0110.NCGR.lz \
files/poketool/pokefoot/pokefoot/narc_0138.NCGR.lz \
files/poketool/pokefoot/pokefoot/narc_0460.NCGR.lz \
files/poketool/pokefoot/pokefoot/narc_0306.NCGR.lz \
files/poketool/pokefoot/pokefoot/narc_0312.NCGR.lz \
files/poketool/pokefoot/pokefoot/narc_0474.NCGR.lz \
files/poketool/pokefoot/pokefoot/narc_0448.NCGR.lz \
files/poketool/pokefoot/pokefoot/narc_0375.NCGR.lz \
files/poketool/pokefoot/pokefoot/narc_0413.NCGR.lz \
files/poketool/pokefoot/pokefoot/narc_0407.NCGR.lz \
files/poketool/pokefoot/pokefoot/narc_0361.NCGR.lz \
files/poketool/pokefoot/pokefoot/narc_0349.NCGR.lz \
files/poketool/pokefoot/pokefoot/narc_0188.NCGR.lz \
files/poketool/pokefoot/pokefoot/narc_0177.NCGR.lz \
files/poketool/pokefoot/pokefoot/narc_0163.NCGR.lz \
files/poketool/pokefoot/pokefoot/narc_0003.NCGR.lz \
files/poketool/pokefoot/pokefoot/narc_0017.NCGR.lz \
files/poketool/pokefoot/pokefoot/narc_0201.NCGR.lz \
files/poketool/pokefoot/pokefoot/narc_0215.NCGR.lz \
files/poketool/pokefoot/pokefoot/narc_0229.NCGR.lz \
files/poketool/pokefoot/pokefoot/narc_0228.NCGR.lz \
files/poketool/pokefoot/pokefoot/narc_0214.NCGR.lz \
files/poketool/pokefoot/pokefoot/narc_0200.NCGR.lz \
files/poketool/pokefoot/pokefoot/narc_0016.NCGR.lz \
files/poketool/pokefoot/pokefoot/narc_0002.NCER.lz \
files/poketool/pokefoot/pokefoot/narc_0162.NCGR.lz \
files/poketool/pokefoot/pokefoot/narc_0176.NCGR.lz \
files/poketool/pokefoot/pokefoot/narc_0189.NCGR.lz \
files/poketool/pokefoot/pokefoot/narc_0348.NCGR.lz \
files/poketool/pokefoot/pokefoot/narc_0406.NCGR.lz \
files/poketool/pokefoot/pokefoot/narc_0360.NCGR.lz \
files/poketool/pokefoot/pokefoot/narc_0374.NCGR.lz \
files/poketool/pokefoot/pokefoot/narc_0412.NCGR.lz \
files/poketool/pokefoot/pokefoot/narc_0389.NCGR.lz \
files/poketool/pokefoot/pokefoot/narc_0362.NCGR.lz \
files/poketool/pokefoot/pokefoot/narc_0404.NCGR.lz \
files/poketool/pokefoot/pokefoot/narc_0410.NCGR.lz \
files/poketool/pokefoot/pokefoot/narc_0376.NCGR.lz \
files/poketool/pokefoot/pokefoot/narc_0438.NCGR.lz \
files/poketool/pokefoot/pokefoot/narc_0160.NCGR.lz \
files/poketool/pokefoot/pokefoot/narc_0174.NCGR.lz \
files/poketool/pokefoot/pokefoot/narc_0148.NCGR.lz \
files/poketool/pokefoot/pokefoot/narc_0014.NCGR.lz \
files/poketool/pokefoot/pokefoot/narc_0028.NCGR.lz \
files/poketool/pokefoot/pokefoot/narc_0216.NCGR.lz \
files/poketool/pokefoot/pokefoot/narc_0202.NCGR.lz \
files/poketool/pokefoot/pokefoot/narc_0203.NCGR.lz \
files/poketool/pokefoot/pokefoot/narc_0217.NCGR.lz \
files/poketool/pokefoot/pokefoot/narc_0029.NCGR.lz \
files/poketool/pokefoot/pokefoot/narc_0001.NANR.lz \
files/poketool/pokefoot/pokefoot/narc_0015.NCGR.lz \
files/poketool/pokefoot/pokefoot/narc_0149.NCGR.lz \
files/poketool/pokefoot/pokefoot/narc_0175.NCGR.lz \
files/poketool/pokefoot/pokefoot/narc_0161.NCGR.lz \
files/poketool/pokefoot/pokefoot/narc_0439.NCGR.lz \
files/poketool/pokefoot/pokefoot/narc_0411.NCGR.lz \
files/poketool/pokefoot/pokefoot/narc_0377.NCGR.lz \
files/poketool/pokefoot/pokefoot/narc_0363.NCGR.lz \
files/poketool/pokefoot/pokefoot/narc_0405.NCGR.lz \
files/poketool/pokefoot/pokefoot/narc_0388.NCGR.lz \
files/poketool/pokefoot/pokefoot/narc_0398.NCGR.lz \
files/poketool/pokefoot/pokefoot/narc_0429.NCGR.lz \
files/poketool/pokefoot/pokefoot/narc_0401.NCGR.lz \
files/poketool/pokefoot/pokefoot/narc_0367.NCGR.lz \
files/poketool/pokefoot/pokefoot/narc_0373.NCGR.lz \
files/poketool/pokefoot/pokefoot/narc_0415.NCGR.lz \
files/poketool/pokefoot/pokefoot/narc_0159.NCGR.lz \
files/poketool/pokefoot/pokefoot/narc_0165.NCGR.lz \
files/poketool/pokefoot/pokefoot/narc_0171.NCGR.lz \
files/poketool/pokefoot/pokefoot/narc_0039.NCGR.lz \
files/poketool/pokefoot/pokefoot/narc_0011.NCGR.lz \
files/poketool/pokefoot/pokefoot/narc_0005.NCGR.lz \
files/poketool/pokefoot/pokefoot/narc_0213.NCGR.lz \
files/poketool/pokefoot/pokefoot/narc_0207.NCGR.lz \
files/poketool/pokefoot/pokefoot/narc_0206.NCGR.lz \
files/poketool/pokefoot/pokefoot/narc_0212.NCGR.lz \
files/poketool/pokefoot/pokefoot/narc_0004.NCGR.lz \
files/poketool/pokefoot/pokefoot/narc_0010.NCGR.lz \
files/poketool/pokefoot/pokefoot/narc_0038.NCGR.lz \
files/poketool/pokefoot/pokefoot/narc_0170.NCGR.lz \
files/poketool/pokefoot/pokefoot/narc_0164.NCGR.lz \
files/poketool/pokefoot/pokefoot/narc_0158.NCGR.lz \
files/poketool/pokefoot/pokefoot/narc_0372.NCGR.lz \
files/poketool/pokefoot/pokefoot/narc_0414.NCGR.lz \
files/poketool/pokefoot/pokefoot/narc_0400.NCGR.lz \
files/poketool/pokefoot/pokefoot/narc_0366.NCGR.lz \
files/poketool/pokefoot/pokefoot/narc_0428.NCGR.lz \
files/poketool/pokefoot/pokefoot/narc_0399.NCGR.lz \
files/poketool/pokefoot/pokefoot/narc_0358.NCGR.lz \
files/poketool/pokefoot/pokefoot/narc_0416.NCGR.lz \
files/poketool/pokefoot/pokefoot/narc_0370.NCGR.lz \
files/poketool/pokefoot/pokefoot/narc_0364.NCGR.lz \
files/poketool/pokefoot/pokefoot/narc_0402.NCGR.lz \
files/poketool/pokefoot/pokefoot/narc_0199.NCGR.lz \
files/poketool/pokefoot/pokefoot/narc_0172.NCGR.lz \
files/poketool/pokefoot/pokefoot/narc_0166.NCGR.lz \
files/poketool/pokefoot/pokefoot/narc_0006.NCGR.lz \
files/poketool/pokefoot/pokefoot/narc_0012.NCGR.lz \
files/poketool/pokefoot/pokefoot/narc_0238.NCGR.lz \
files/poketool/pokefoot/pokefoot/narc_0204.NCGR.lz \
files/poketool/pokefoot/pokefoot/narc_0210.NCGR.lz \
files/poketool/pokefoot/pokefoot/narc_0211.NCGR.lz \
files/poketool/pokefoot/pokefoot/narc_0205.NCGR.lz \
files/poketool/pokefoot/pokefoot/narc_0239.NCGR.lz \
files/poketool/pokefoot/pokefoot/narc_0013.NCGR.lz \
files/poketool/pokefoot/pokefoot/narc_0007.NCGR.lz \
files/poketool/pokefoot/pokefoot/narc_0167.NCGR.lz \
files/poketool/pokefoot/pokefoot/narc_0173.NCGR.lz \
files/poketool/pokefoot/pokefoot/narc_0198.NCGR.lz \
files/poketool/pokefoot/pokefoot/narc_0365.NCGR.lz \
files/poketool/pokefoot/pokefoot/narc_0403.NCGR.lz \
files/poketool/pokefoot/pokefoot/narc_0417.NCGR.lz \
files/poketool/pokefoot/pokefoot/narc_0371.NCGR.lz \
files/poketool/pokefoot/pokefoot/narc_0359.NCGR.lz
files/itemtool/itemdata/item_icon.narc: \
files/itemtool/itemdata/item_icon/narc_0002.NCGR \
files/itemtool/itemdata/item_icon/narc_0002.NCLR \
files/itemtool/itemdata/item_icon/narc_0004.NCGR \
files/itemtool/itemdata/item_icon/narc_0004.NCLR \
files/itemtool/itemdata/item_icon/narc_0006.NCGR \
files/itemtool/itemdata/item_icon/narc_0006.NCLR \
files/itemtool/itemdata/item_icon/narc_0008.NCGR \
files/itemtool/itemdata/item_icon/narc_0008.NCLR \
files/itemtool/itemdata/item_icon/narc_0010.NCGR \
files/itemtool/itemdata/item_icon/narc_0010.NCLR \
files/itemtool/itemdata/item_icon/narc_0012.NCGR \
files/itemtool/itemdata/item_icon/narc_0012.NCLR \
files/itemtool/itemdata/item_icon/narc_0014.NCGR \
files/itemtool/itemdata/item_icon/narc_0014.NCLR \
files/itemtool/itemdata/item_icon/narc_0016.NCGR \
files/itemtool/itemdata/item_icon/narc_0016.NCLR \
files/itemtool/itemdata/item_icon/narc_0018.NCGR \
files/itemtool/itemdata/item_icon/narc_0018.NCLR \
files/itemtool/itemdata/item_icon/narc_0020.NCGR \
files/itemtool/itemdata/item_icon/narc_0021.NCGR \
files/itemtool/itemdata/item_icon/narc_0022.NCLR \
files/itemtool/itemdata/item_icon/narc_0023.NCGR \
files/itemtool/itemdata/item_icon/narc_0024.NCGR \
files/itemtool/itemdata/item_icon/narc_0025.NCLR \
files/itemtool/itemdata/item_icon/narc_0026.NCGR \
files/itemtool/itemdata/item_icon/narc_0027.NCLR \
files/itemtool/itemdata/item_icon/narc_0028.NCLR \
files/itemtool/itemdata/item_icon/narc_0029.NCLR \
files/itemtool/itemdata/item_icon/narc_0030.NCGR \
files/itemtool/itemdata/item_icon/narc_0031.NCLR \
files/itemtool/itemdata/item_icon/narc_0032.NCLR \
files/itemtool/itemdata/item_icon/narc_0033.NCGR \
files/itemtool/itemdata/item_icon/narc_0034.NCLR \
files/itemtool/itemdata/item_icon/narc_0035.NCLR \
files/itemtool/itemdata/item_icon/narc_0036.NCLR \
files/itemtool/itemdata/item_icon/narc_0037.NCLR \
files/itemtool/itemdata/item_icon/narc_0038.NCGR \
files/itemtool/itemdata/item_icon/narc_0038.NCLR \
files/itemtool/itemdata/item_icon/narc_0040.NCGR \
files/itemtool/itemdata/item_icon/narc_0041.NCGR \
files/itemtool/itemdata/item_icon/narc_0042.NCLR \
files/itemtool/itemdata/item_icon/narc_0043.NCGR \
files/itemtool/itemdata/item_icon/narc_0043.NCLR \
files/itemtool/itemdata/item_icon/narc_0045.NCGR \
files/itemtool/itemdata/item_icon/narc_0045.NCLR \
files/itemtool/itemdata/item_icon/narc_0047.NCGR \
files/itemtool/itemdata/item_icon/narc_0047.NCLR \
files/itemtool/itemdata/item_icon/narc_0049.NCGR \
files/itemtool/itemdata/item_icon/narc_0049.NCLR \
files/itemtool/itemdata/item_icon/narc_0051.NCGR \
files/itemtool/itemdata/item_icon/narc_0052.NCLR \
files/itemtool/itemdata/item_icon/narc_0053.NCGR \
files/itemtool/itemdata/item_icon/narc_0053.NCLR \
files/itemtool/itemdata/item_icon/narc_0055.NCLR \
files/itemtool/itemdata/item_icon/narc_0056.NCGR \
files/itemtool/itemdata/item_icon/narc_0056.NCLR \
files/itemtool/itemdata/item_icon/narc_0058.NCGR \
files/itemtool/itemdata/item_icon/narc_0059.NCLR \
files/itemtool/itemdata/item_icon/narc_0060.NCLR \
files/itemtool/itemdata/item_icon/narc_0061.NCLR \
files/itemtool/itemdata/item_icon/narc_0062.NCLR \
files/itemtool/itemdata/item_icon/narc_0063.NCGR \
files/itemtool/itemdata/item_icon/narc_0063.NCLR \
files/itemtool/itemdata/item_icon/narc_0065.NCGR \
files/itemtool/itemdata/item_icon/narc_0066.NCLR \
files/itemtool/itemdata/item_icon/narc_0067.NCLR \
files/itemtool/itemdata/item_icon/narc_0068.NCLR \
files/itemtool/itemdata/item_icon/narc_0069.NCLR \
files/itemtool/itemdata/item_icon/narc_0070.NCLR \
files/itemtool/itemdata/item_icon/narc_0071.NCGR \
files/itemtool/itemdata/item_icon/narc_0071.NCLR \
files/itemtool/itemdata/item_icon/narc_0073.NCGR \
files/itemtool/itemdata/item_icon/narc_0074.NCLR \
files/itemtool/itemdata/item_icon/narc_0075.NCLR \
files/itemtool/itemdata/item_icon/narc_0076.NCGR \
files/itemtool/itemdata/item_icon/narc_0076.NCLR \
files/itemtool/itemdata/item_icon/narc_0078.NCGR \
files/itemtool/itemdata/item_icon/narc_0079.NCLR \
files/itemtool/itemdata/item_icon/narc_0080.NCLR \
files/itemtool/itemdata/item_icon/narc_0081.NCLR \
files/itemtool/itemdata/item_icon/narc_0082.NCLR \
files/itemtool/itemdata/item_icon/narc_0083.NCGR \
files/itemtool/itemdata/item_icon/narc_0083.NCLR \
files/itemtool/itemdata/item_icon/narc_0085.NCGR \
files/itemtool/itemdata/item_icon/narc_0086.NCLR \
files/itemtool/itemdata/item_icon/narc_0087.NCLR \
files/itemtool/itemdata/item_icon/narc_0088.NCLR \
files/itemtool/itemdata/item_icon/narc_0089.NCLR \
files/itemtool/itemdata/item_icon/narc_0090.NCGR \
files/itemtool/itemdata/item_icon/narc_0090.NCLR \
files/itemtool/itemdata/item_icon/narc_0092.NCGR \
files/itemtool/itemdata/item_icon/narc_0092.NCLR \
files/itemtool/itemdata/item_icon/narc_0094.NCLR \
files/itemtool/itemdata/item_icon/narc_0095.NCGR \
files/itemtool/itemdata/item_icon/narc_0095.NCLR \
files/itemtool/itemdata/item_icon/narc_0097.NCLR \
files/itemtool/itemdata/item_icon/narc_0098.NCLR \
files/itemtool/itemdata/item_icon/narc_0099.NCLR \
files/itemtool/itemdata/item_icon/narc_0100.NCGR \
files/itemtool/itemdata/item_icon/narc_0101.NCLR \
files/itemtool/itemdata/item_icon/narc_0102.NCLR \
files/itemtool/itemdata/item_icon/narc_0103.NCLR \
files/itemtool/itemdata/item_icon/narc_0104.NCLR \
files/itemtool/itemdata/item_icon/narc_0105.NCGR \
files/itemtool/itemdata/item_icon/narc_0105.NCLR \
files/itemtool/itemdata/item_icon/narc_0107.NCGR \
files/itemtool/itemdata/item_icon/narc_0107.NCLR \
files/itemtool/itemdata/item_icon/narc_0109.NCGR \
files/itemtool/itemdata/item_icon/narc_0110.NCLR \
files/itemtool/itemdata/item_icon/narc_0111.NCLR \
files/itemtool/itemdata/item_icon/narc_0112.NCGR \
files/itemtool/itemdata/item_icon/narc_0112.NCLR \
files/itemtool/itemdata/item_icon/narc_0114.NCLR \
files/itemtool/itemdata/item_icon/narc_0115.NCGR \
files/itemtool/itemdata/item_icon/narc_0115.NCLR \
files/itemtool/itemdata/item_icon/narc_0117.NCGR \
files/itemtool/itemdata/item_icon/narc_0117.NCLR \
files/itemtool/itemdata/item_icon/narc_0119.NCGR \
files/itemtool/itemdata/item_icon/narc_0119.NCLR \
files/itemtool/itemdata/item_icon/narc_0121.NCGR \
files/itemtool/itemdata/item_icon/narc_0121.NCLR \
files/itemtool/itemdata/item_icon/narc_0123.NCGR \
files/itemtool/itemdata/item_icon/narc_0123.NCLR \
files/itemtool/itemdata/item_icon/narc_0125.NCGR \
files/itemtool/itemdata/item_icon/narc_0125.NCLR \
files/itemtool/itemdata/item_icon/narc_0127.NCGR \
files/itemtool/itemdata/item_icon/narc_0128.NCGR \
files/itemtool/itemdata/item_icon/narc_0129.NCLR \
files/itemtool/itemdata/item_icon/narc_0130.NCGR \
files/itemtool/itemdata/item_icon/narc_0131.NCLR \
files/itemtool/itemdata/item_icon/narc_0132.NCGR \
files/itemtool/itemdata/item_icon/narc_0133.NCGR \
files/itemtool/itemdata/item_icon/narc_0134.NCLR \
files/itemtool/itemdata/item_icon/narc_0135.NCGR \
files/itemtool/itemdata/item_icon/narc_0136.NCGR \
files/itemtool/itemdata/item_icon/narc_0136.NCLR \
files/itemtool/itemdata/item_icon/narc_0138.NCGR \
files/itemtool/itemdata/item_icon/narc_0138.NCLR \
files/itemtool/itemdata/item_icon/narc_0140.NCGR \
files/itemtool/itemdata/item_icon/narc_0140.NCLR \
files/itemtool/itemdata/item_icon/narc_0142.NCGR \
files/itemtool/itemdata/item_icon/narc_0142.NCLR \
files/itemtool/itemdata/item_icon/narc_0144.NCGR \
files/itemtool/itemdata/item_icon/narc_0144.NCLR \
files/itemtool/itemdata/item_icon/narc_0146.NCGR \
files/itemtool/itemdata/item_icon/narc_0146.NCLR \
files/itemtool/itemdata/item_icon/narc_0148.NCGR \
files/itemtool/itemdata/item_icon/narc_0148.NCLR \
files/itemtool/itemdata/item_icon/narc_0150.NCGR \
files/itemtool/itemdata/item_icon/narc_0150.NCLR \
files/itemtool/itemdata/item_icon/narc_0152.NCGR \
files/itemtool/itemdata/item_icon/narc_0152.NCLR \
files/itemtool/itemdata/item_icon/narc_0154.NCGR \
files/itemtool/itemdata/item_icon/narc_0154.NCLR \
files/itemtool/itemdata/item_icon/narc_0156.NCGR \
files/itemtool/itemdata/item_icon/narc_0156.NCLR \
files/itemtool/itemdata/item_icon/narc_0158.NCGR \
files/itemtool/itemdata/item_icon/narc_0158.NCLR \
files/itemtool/itemdata/item_icon/narc_0160.NCGR \
files/itemtool/itemdata/item_icon/narc_0160.NCLR \
files/itemtool/itemdata/item_icon/narc_0162.NCGR \
files/itemtool/itemdata/item_icon/narc_0162.NCLR \
files/itemtool/itemdata/item_icon/narc_0164.NCGR \
files/itemtool/itemdata/item_icon/narc_0164.NCLR \
files/itemtool/itemdata/item_icon/narc_0166.NCGR \
files/itemtool/itemdata/item_icon/narc_0166.NCLR \
files/itemtool/itemdata/item_icon/narc_0168.NCGR \
files/itemtool/itemdata/item_icon/narc_0168.NCLR \
files/itemtool/itemdata/item_icon/narc_0170.NCGR \
files/itemtool/itemdata/item_icon/narc_0170.NCLR \
files/itemtool/itemdata/item_icon/narc_0172.NCGR \
files/itemtool/itemdata/item_icon/narc_0172.NCLR \
files/itemtool/itemdata/item_icon/narc_0174.NCGR \
files/itemtool/itemdata/item_icon/narc_0174.NCLR \
files/itemtool/itemdata/item_icon/narc_0176.NCGR \
files/itemtool/itemdata/item_icon/narc_0176.NCLR \
files/itemtool/itemdata/item_icon/narc_0178.NCGR \
files/itemtool/itemdata/item_icon/narc_0178.NCLR
files/application/custom_ball/data/cb_data.narc: \
files/application/custom_ball/data/cb_data/narc_0195.NCGR.lz \
files/application/custom_ball/data/cb_data/narc_0181.NCER.lz \
files/application/custom_ball/data/cb_data/narc_0156.NCER.lz \
files/application/custom_ball/data/cb_data/narc_0142.NCER.lz \
files/application/custom_ball/data/cb_data/narc_0022.NANR.lz \
files/application/custom_ball/data/cb_data/narc_0036.NANR.lz \
files/application/custom_ball/data/cb_data/narc_0220.NCGR.lz \
files/application/custom_ball/data/cb_data/narc_0234.NCGR.lz \
files/application/custom_ball/data/cb_data/narc_0208.NCGR.lz \
files/application/custom_ball/data/cb_data/narc_0209.NCGR.lz \
files/application/custom_ball/data/cb_data/narc_0235.NCGR.lz \
files/application/custom_ball/data/cb_data/narc_0221.NCGR.lz \
files/application/custom_ball/data/cb_data/narc_0037.NANR.lz \
files/application/custom_ball/data/cb_data/narc_0023.NANR.lz \
files/application/custom_ball/data/cb_data/narc_0143.NCER.lz \
files/application/custom_ball/data/cb_data/narc_0157.NCER.lz \
files/application/custom_ball/data/cb_data/narc_0180.NCER.lz \
files/application/custom_ball/data/cb_data/narc_0194.NCGR.lz \
files/application/custom_ball/data/cb_data/narc_0182.NCER.lz \
files/application/custom_ball/data/cb_data/narc_0196.NCGR.lz \
files/application/custom_ball/data/cb_data/narc_0141.NCER.lz \
files/application/custom_ball/data/cb_data/narc_0155.NCER.lz \
files/application/custom_ball/data/cb_data/narc_0169.NCER.lz \
files/application/custom_ball/data/cb_data/narc_0035.NANR.lz \
files/application/custom_ball/data/cb_data/narc_0021.NANR.lz \
files/application/custom_ball/data/cb_data/narc_0009.NANR.lz \
files/application/custom_ball/data/cb_data/narc_0237.NCGR.lz \
files/application/custom_ball/data/cb_data/narc_0223.NCGR.lz \
files/application/custom_ball/data/cb_data/narc_0222.NCGR.lz \
files/application/custom_ball/data/cb_data/narc_0236.NCGR.lz \
files/application/custom_ball/data/cb_data/narc_0008.NANR.lz \
files/application/custom_ball/data/cb_data/narc_0020.NANR.lz \
files/application/custom_ball/data/cb_data/narc_0034.NANR.lz \
files/application/custom_ball/data/cb_data/narc_0168.NCER.lz \
files/application/custom_ball/data/cb_data/narc_0154.NCER.lz \
files/application/custom_ball/data/cb_data/narc_0140.NCER.lz \
files/application/custom_ball/data/cb_data/narc_0197.NCGR.lz \
files/application/custom_ball/data/cb_data/narc_0183.NCER.lz \
files/application/custom_ball/data/cb_data/narc_0187.NCGR.lz \
files/application/custom_ball/data/cb_data/narc_0193.NCGR.lz \
files/application/custom_ball/data/cb_data/narc_0178.NCER.lz \
files/application/custom_ball/data/cb_data/narc_0144.NCER.lz \
files/application/custom_ball/data/cb_data/narc_0150.NCER.lz \
files/application/custom_ball/data/cb_data/narc_0018.NANR.lz \
files/application/custom_ball/data/cb_data/narc_0030.NANR.lz \
files/application/custom_ball/data/cb_data/narc_0024.NANR.lz \
files/application/custom_ball/data/cb_data/narc_0232.NCGR.lz \
files/application/custom_ball/data/cb_data/narc_0226.NCGR.lz \
files/application/custom_ball/data/cb_data/narc_0227.NCGR.lz \
files/application/custom_ball/data/cb_data/narc_0233.NCGR.lz \
files/application/custom_ball/data/cb_data/narc_0025.NANR.lz \
files/application/custom_ball/data/cb_data/narc_0031.NANR.lz \
files/application/custom_ball/data/cb_data/narc_0019.NANR.lz \
files/application/custom_ball/data/cb_data/narc_0151.NCER.lz \
files/application/custom_ball/data/cb_data/narc_0145.NCER.lz \
files/application/custom_ball/data/cb_data/narc_0179.NCER.lz \
files/application/custom_ball/data/cb_data/narc_0192.NCGR.lz \
files/application/custom_ball/data/cb_data/narc_0186.NCGR.lz \
files/application/custom_ball/data/cb_data/narc_0190.NCGR.lz \
files/application/custom_ball/data/cb_data/narc_0184.NCGR.lz \
files/application/custom_ball/data/cb_data/narc_0153.NCER.lz \
files/application/custom_ball/data/cb_data/narc_0147.NCER.lz \
files/application/custom_ball/data/cb_data/narc_0027.NANR.lz \
files/application/custom_ball/data/cb_data/narc_0033.NANR.lz \
files/application/custom_ball/data/cb_data/narc_0219.NCGR.lz \
files/application/custom_ball/data/cb_data/narc_0225.NCGR.lz \
files/application/custom_ball/data/cb_data/narc_0231.NCGR.lz \
files/application/custom_ball/data/cb_data/narc_0230.NCGR.lz \
files/application/custom_ball/data/cb_data/narc_0224.NCGR.lz \
files/application/custom_ball/data/cb_data/narc_0218.NCGR.lz \
files/application/custom_ball/data/cb_data/narc_0032.NANR.lz \
files/application/custom_ball/data/cb_data/narc_0026.NANR.lz \
files/application/custom_ball/data/cb_data/narc_0146.NCER.lz \
files/application/custom_ball/data/cb_data/narc_0152.NCER.lz \
files/application/custom_ball/data/cb_data/narc_0185.NCGR.lz \
files/application/custom_ball/data/cb_data/narc_0191.NCGR.lz \
files/application/custom_ball/data/cb_data/narc_0135.NCER.lz \
files/application/custom_ball/data/cb_data/narc_0121.NCER.lz \
files/application/custom_ball/data/cb_data/narc_0109.NCER.lz \
files/application/custom_ball/data/cb_data/narc_0082.NANR.lz \
files/application/custom_ball/data/cb_data/narc_0096.NCER.lz \
files/application/custom_ball/data/cb_data/narc_0041.NANR.lz \
files/application/custom_ball/data/cb_data/narc_0055.NANR.lz \
files/application/custom_ball/data/cb_data/narc_0069.NANR.lz \
files/application/custom_ball/data/cb_data/narc_0280.NCGR.lz \
files/application/custom_ball/data/cb_data/narc_0243.NCGR.lz \
files/application/custom_ball/data/cb_data/narc_0257.NCGR.lz \
files/application/custom_ball/data/cb_data/narc_0256.NCGR.lz \
files/application/custom_ball/data/cb_data/narc_0242.NCGR.lz \
files/application/custom_ball/data/cb_data/narc_0281.NCGR.lz \
files/application/custom_ball/data/cb_data/narc_0068.NANR.lz \
files/application/custom_ball/data/cb_data/narc_0054.NANR.lz \
files/application/custom_ball/data/cb_data/narc_0040.NANR.lz \
files/application/custom_ball/data/cb_data/narc_0097.NCER.lz \
files/application/custom_ball/data/cb_data/narc_0083.NANR.lz \
files/application/custom_ball/data/cb_data/narc_0108.NCER.lz \
files/application/custom_ball/data/cb_data/narc_0120.NCER.lz \
files/application/custom_ball/data/cb_data/narc_0134.NCER.lz \
files/application/custom_ball/data/cb_data/narc_0122.NCER.lz \
files/application/custom_ball/data/cb_data/narc_0136.NCER.lz \
files/application/custom_ball/data/cb_data/narc_0095.NCER.lz \
files/application/custom_ball/data/cb_data/narc_0081.NANR.lz \
files/application/custom_ball/data/cb_data/narc_0056.NANR.lz \
files/application/custom_ball/data/cb_data/narc_0042.NANR.lz \
files/application/custom_ball/data/cb_data/narc_0283.NSCR.lz \
files/application/custom_ball/data/cb_data/narc_0254.NCGR.lz \
files/application/custom_ball/data/cb_data/narc_0240.NCGR.lz \
files/application/custom_ball/data/cb_data/narc_0268.NCGR.lz \
files/application/custom_ball/data/cb_data/narc_0269.NCGR.lz \
files/application/custom_ball/data/cb_data/narc_0241.NCGR.lz \
files/application/custom_ball/data/cb_data/narc_0255.NCGR.lz \
files/application/custom_ball/data/cb_data/narc_0282.NSCR.lz \
files/application/custom_ball/data/cb_data/narc_0043.NANR.lz \
files/application/custom_ball/data/cb_data/narc_0057.NANR.lz \
files/application/custom_ball/data/cb_data/narc_0080.NANR.lz \
files/application/custom_ball/data/cb_data/narc_0094.NCER.lz \
files/application/custom_ball/data/cb_data/narc_0137.NCER.lz \
files/application/custom_ball/data/cb_data/narc_0123.NCER.lz \
files/application/custom_ball/data/cb_data/narc_0127.NCER.lz \
files/application/custom_ball/data/cb_data/narc_0133.NCER.lz \
files/application/custom_ball/data/cb_data/narc_0090.NANR.lz \
files/application/custom_ball/data/cb_data/narc_0084.NANR.lz \
files/application/custom_ball/data/cb_data/narc_0053.NANR.lz \
files/application/custom_ball/data/cb_data/narc_0047.NANR.lz \
files/application/custom_ball/data/cb_data/narc_0279.NCGR.lz \
files/application/custom_ball/data/cb_data/narc_0251.NCGR.lz \
files/application/custom_ball/data/cb_data/narc_0245.NCGR.lz \
files/application/custom_ball/data/cb_data/narc_0244.NCGR.lz \
files/application/custom_ball/data/cb_data/narc_0250.NCGR.lz \
files/application/custom_ball/data/cb_data/narc_0278.NCGR.lz \
files/application/custom_ball/data/cb_data/narc_0046.NANR.lz \
files/application/custom_ball/data/cb_data/narc_0052.NANR.lz \
files/application/custom_ball/data/cb_data/narc_0085.NANR.lz \
files/application/custom_ball/data/cb_data/narc_0091.NANR.lz \
files/application/custom_ball/data/cb_data/narc_0132.NCER.lz \
files/application/custom_ball/data/cb_data/narc_0126.NCER.lz \
files/application/custom_ball/data/cb_data/narc_0118.NCER.lz \
files/application/custom_ball/data/cb_data/narc_0130.NCER.lz \
files/application/custom_ball/data/cb_data/narc_0124.NCER.lz \
files/application/custom_ball/data/cb_data/narc_0087.NANR.lz \
files/application/custom_ball/data/cb_data/narc_0093.NCER.lz \
files/application/custom_ball/data/cb_data/narc_0078.NANR.lz \
files/application/custom_ball/data/cb_data/narc_0044.NANR.lz \
files/application/custom_ball/data/cb_data/narc_0050.NANR.lz \
files/application/custom_ball/data/cb_data/narc_0285.NSCR.lz \
files/application/custom_ball/data/cb_data/narc_0246.NCGR.lz \
files/application/custom_ball/data/cb_data/narc_0252.NCGR.lz \
files/application/custom_ball/data/cb_data/narc_0253.NCGR.lz \
files/application/custom_ball/data/cb_data/narc_0247.NCGR.lz \
files/application/custom_ball/data/cb_data/narc_0284.NSCR.lz \
files/application/custom_ball/data/cb_data/narc_0051.NANR.lz \
files/application/custom_ball/data/cb_data/narc_0045.NANR.lz \
files/application/custom_ball/data/cb_data/narc_0079.NANR.lz \
files/application/custom_ball/data/cb_data/narc_0092.NCER.lz \
files/application/custom_ball/data/cb_data/narc_0086.NANR.lz \
files/application/custom_ball/data/cb_data/narc_0125.NCER.lz \
files/application/custom_ball/data/cb_data/narc_0131.NCER.lz \
files/application/custom_ball/data/cb_data/narc_0119.NCER.lz \
files/application/custom_ball/data/cb_data/narc_0114.NCER.lz \
files/application/custom_ball/data/cb_data/narc_0100.NCER.lz \
files/application/custom_ball/data/cb_data/narc_0128.NCER.lz \
files/application/custom_ball/data/cb_data/narc_0060.NANR.lz \
files/application/custom_ball/data/cb_data/narc_0074.NANR.lz \
files/application/custom_ball/data/cb_data/narc_0048.NANR.lz \
files/application/custom_ball/data/cb_data/narc_0262.NCGR.lz \
files/application/custom_ball/data/cb_data/narc_0276.NCGR.lz \
files/application/custom_ball/data/cb_data/narc_0277.NCGR.lz \
files/application/custom_ball/data/cb_data/narc_0263.NCGR.lz \
files/application/custom_ball/data/cb_data/narc_0049.NANR.lz \
files/application/custom_ball/data/cb_data/narc_0075.NANR.lz \
files/application/custom_ball/data/cb_data/narc_0061.NANR.lz \
files/application/custom_ball/data/cb_data/narc_0129.NCER.lz \
files/application/custom_ball/data/cb_data/narc_0101.NCER.lz \
files/application/custom_ball/data/cb_data/narc_0115.NCER.lz \
files/application/custom_ball/data/cb_data/narc_0103.NCER.lz \
files/application/custom_ball/data/cb_data/narc_0117.NCER.lz \
files/application/custom_ball/data/cb_data/narc_0088.NANR.lz \
files/application/custom_ball/data/cb_data/narc_0077.NANR.lz \
files/application/custom_ball/data/cb_data/narc_0063.NANR.lz \
files/application/custom_ball/data/cb_data/narc_0275.NCGR.lz \
files/application/custom_ball/data/cb_data/narc_0261.NCGR.lz \
files/application/custom_ball/data/cb_data/narc_0249.NCGR.lz \
files/application/custom_ball/data/cb_data/narc_0248.NCGR.lz \
files/application/custom_ball/data/cb_data/narc_0260.NCGR.lz \
files/application/custom_ball/data/cb_data/narc_0274.NCGR.lz \
files/application/custom_ball/data/cb_data/narc_0062.NANR.lz \
files/application/custom_ball/data/cb_data/narc_0076.NANR.lz \
files/application/custom_ball/data/cb_data/narc_0089.NANR.lz \
files/application/custom_ball/data/cb_data/narc_0116.NCER.lz \
files/application/custom_ball/data/cb_data/narc_0102.NCER.lz \
files/application/custom_ball/data/cb_data/narc_0106.NCER.lz \
files/application/custom_ball/data/cb_data/narc_0112.NCER.lz \
files/application/custom_ball/data/cb_data/narc_0099.NCER.lz \
files/application/custom_ball/data/cb_data/narc_0072.NANR.lz \
files/application/custom_ball/data/cb_data/narc_0066.NANR.lz \
files/application/custom_ball/data/cb_data/narc_0258.NCGR.lz \
files/application/custom_ball/data/cb_data/narc_0270.NCGR.lz \
files/application/custom_ball/data/cb_data/narc_0264.NCGR.lz \
files/application/custom_ball/data/cb_data/narc_0265.NCGR.lz \
files/application/custom_ball/data/cb_data/narc_0271.NCGR.lz \
files/application/custom_ball/data/cb_data/narc_0259.NCGR.lz \
files/application/custom_ball/data/cb_data/narc_0067.NANR.lz \
files/application/custom_ball/data/cb_data/narc_0073.NANR.lz \
files/application/custom_ball/data/cb_data/narc_0098.NCER.lz \
files/application/custom_ball/data/cb_data/narc_0113.NCER.lz \
files/application/custom_ball/data/cb_data/narc_0107.NCER.lz \
files/application/custom_ball/data/cb_data/narc_0139.NCER.lz \
files/application/custom_ball/data/cb_data/narc_0111.NCER.lz \
files/application/custom_ball/data/cb_data/narc_0105.NCER.lz \
files/application/custom_ball/data/cb_data/narc_0059.NANR.lz \
files/application/custom_ball/data/cb_data/narc_0065.NANR.lz \
files/application/custom_ball/data/cb_data/narc_0071.NANR.lz \
files/application/custom_ball/data/cb_data/narc_0267.NCGR.lz \
files/application/custom_ball/data/cb_data/narc_0273.NCGR.lz \
files/application/custom_ball/data/cb_data/narc_0272.NCGR.lz \
files/application/custom_ball/data/cb_data/narc_0266.NCGR.lz \
files/application/custom_ball/data/cb_data/narc_0070.NANR.lz \
files/application/custom_ball/data/cb_data/narc_0064.NANR.lz \
files/application/custom_ball/data/cb_data/narc_0058.NANR.lz \
files/application/custom_ball/data/cb_data/narc_0104.NCER.lz \
files/application/custom_ball/data/cb_data/narc_0110.NCER.lz \
files/application/custom_ball/data/cb_data/narc_0138.NCER.lz \
files/application/custom_ball/data/cb_data/narc_0188.NCGR.lz \
files/application/custom_ball/data/cb_data/narc_0177.NCER.lz \
files/application/custom_ball/data/cb_data/narc_0163.NCER.lz \
files/application/custom_ball/data/cb_data/narc_0003.NANR.lz \
files/application/custom_ball/data/cb_data/narc_0017.NANR.lz \
files/application/custom_ball/data/cb_data/narc_0201.NCGR.lz \
files/application/custom_ball/data/cb_data/narc_0215.NCGR.lz \
files/application/custom_ball/data/cb_data/narc_0229.NCGR.lz \
files/application/custom_ball/data/cb_data/narc_0228.NCGR.lz \
files/application/custom_ball/data/cb_data/narc_0214.NCGR.lz \
files/application/custom_ball/data/cb_data/narc_0200.NCGR.lz \
files/application/custom_ball/data/cb_data/narc_0016.NANR.lz \
files/application/custom_ball/data/cb_data/narc_0002.NANR.lz \
files/application/custom_ball/data/cb_data/narc_0162.NCER.lz \
files/application/custom_ball/data/cb_data/narc_0176.NCER.lz \
files/application/custom_ball/data/cb_data/narc_0189.NCGR.lz \
files/application/custom_ball/data/cb_data/narc_0160.NCER.lz \
files/application/custom_ball/data/cb_data/narc_0174.NCER.lz \
files/application/custom_ball/data/cb_data/narc_0148.NCER.lz \
files/application/custom_ball/data/cb_data/narc_0014.NANR.lz \
files/application/custom_ball/data/cb_data/narc_0000.NANR.lz \
files/application/custom_ball/data/cb_data/narc_0028.NANR.lz \
files/application/custom_ball/data/cb_data/narc_0216.NCGR.lz \
files/application/custom_ball/data/cb_data/narc_0202.NCGR.lz \
files/application/custom_ball/data/cb_data/narc_0203.NCGR.lz \
files/application/custom_ball/data/cb_data/narc_0217.NCGR.lz \
files/application/custom_ball/data/cb_data/narc_0029.NANR.lz \
files/application/custom_ball/data/cb_data/narc_0001.NANR.lz \
files/application/custom_ball/data/cb_data/narc_0015.NANR.lz \
files/application/custom_ball/data/cb_data/narc_0149.NCER.lz \
files/application/custom_ball/data/cb_data/narc_0175.NCER.lz \
files/application/custom_ball/data/cb_data/narc_0161.NCER.lz \
files/application/custom_ball/data/cb_data/narc_0159.NCER.lz \
files/application/custom_ball/data/cb_data/narc_0165.NCER.lz \
files/application/custom_ball/data/cb_data/narc_0171.NCER.lz \
files/application/custom_ball/data/cb_data/narc_0039.NANR.lz \
files/application/custom_ball/data/cb_data/narc_0011.NANR.lz \
files/application/custom_ball/data/cb_data/narc_0005.NANR.lz \
files/application/custom_ball/data/cb_data/narc_0213.NCGR.lz \
files/application/custom_ball/data/cb_data/narc_0207.NCGR.lz \
files/application/custom_ball/data/cb_data/narc_0206.NCGR.lz \
files/application/custom_ball/data/cb_data/narc_0212.NCGR.lz \
files/application/custom_ball/data/cb_data/narc_0004.NANR.lz \
files/application/custom_ball/data/cb_data/narc_0010.NANR.lz \
files/application/custom_ball/data/cb_data/narc_0038.NANR.lz \
files/application/custom_ball/data/cb_data/narc_0170.NCER.lz \
files/application/custom_ball/data/cb_data/narc_0164.NCER.lz \
files/application/custom_ball/data/cb_data/narc_0158.NCER.lz \
files/application/custom_ball/data/cb_data/narc_0199.NCGR.lz \
files/application/custom_ball/data/cb_data/narc_0172.NCER.lz \
files/application/custom_ball/data/cb_data/narc_0166.NCER.lz \
files/application/custom_ball/data/cb_data/narc_0006.NANR.lz \
files/application/custom_ball/data/cb_data/narc_0012.NANR.lz \
files/application/custom_ball/data/cb_data/narc_0238.NCGR.lz \
files/application/custom_ball/data/cb_data/narc_0204.NCGR.lz \
files/application/custom_ball/data/cb_data/narc_0210.NCGR.lz \
files/application/custom_ball/data/cb_data/narc_0211.NCGR.lz \
files/application/custom_ball/data/cb_data/narc_0205.NCGR.lz \
files/application/custom_ball/data/cb_data/narc_0239.NCGR.lz \
files/application/custom_ball/data/cb_data/narc_0013.NANR.lz \
files/application/custom_ball/data/cb_data/narc_0007.NANR.lz \
files/application/custom_ball/data/cb_data/narc_0167.NCER.lz \
files/application/custom_ball/data/cb_data/narc_0173.NCER.lz \
files/application/custom_ball/data/cb_data/narc_0198.NCGR.lz
files/resource/eng/zukan/zukan.narc: \
files/resource/eng/zukan/zukan/narc_0036.NCGR.lz \
files/resource/eng/zukan/zukan/narc_0037.NSCR.lz \
files/resource/eng/zukan/zukan/narc_0035.NCGR.lz \
files/resource/eng/zukan/zukan/narc_0034.NCGR.lz \
files/resource/eng/zukan/zukan/narc_0030.NCGR.lz \
files/resource/eng/zukan/zukan/narc_0031.NCGR.lz \
files/resource/eng/zukan/zukan/narc_0027.NCGR.lz \
files/resource/eng/zukan/zukan/narc_0033.NCGR.lz \
files/resource/eng/zukan/zukan/narc_0032.NCGR.lz \
files/resource/eng/zukan/zukan/narc_0121.NANR.lz \
files/resource/eng/zukan/zukan/narc_0109.NCER.lz \
files/resource/eng/zukan/zukan/narc_0082.NCER.lz \
files/resource/eng/zukan/zukan/narc_0096.NCGR.lz \
files/resource/eng/zukan/zukan/narc_0041.NSCR.lz \
files/resource/eng/zukan/zukan/narc_0055.NSCR.lz \
files/resource/eng/zukan/zukan/narc_0069.NSCR.lz \
files/resource/eng/zukan/zukan/narc_0068.NSCR.lz \
files/resource/eng/zukan/zukan/narc_0054.NSCR.lz \
files/resource/eng/zukan/zukan/narc_0040.NSCR.lz \
files/resource/eng/zukan/zukan/narc_0097.NCER.lz \
files/resource/eng/zukan/zukan/narc_0083.NANR.lz \
files/resource/eng/zukan/zukan/narc_0108.NCGR.lz \
files/resource/eng/zukan/zukan/narc_0120.NCER.lz \
files/resource/eng/zukan/zukan/narc_0122.NCGR.lz \
files/resource/eng/zukan/zukan/narc_0095.NANR.lz \
files/resource/eng/zukan/zukan/narc_0081.NCGR.lz \
files/resource/eng/zukan/zukan/narc_0056.NSCR.lz \
files/resource/eng/zukan/zukan/narc_0042.NSCR.lz \
files/resource/eng/zukan/zukan/narc_0043.NSCR.lz \
files/resource/eng/zukan/zukan/narc_0057.NSCR.lz \
files/resource/eng/zukan/zukan/narc_0080.NANR.lz \
files/resource/eng/zukan/zukan/narc_0094.NCER.lz \
files/resource/eng/zukan/zukan/narc_0123.NCER.lz \
files/resource/eng/zukan/zukan/narc_0127.NANR.lz \
files/resource/eng/zukan/zukan/narc_0090.NCGR.lz \
files/resource/eng/zukan/zukan/narc_0084.NCGR.lz \
files/resource/eng/zukan/zukan/narc_0053.NSCR.lz \
files/resource/eng/zukan/zukan/narc_0047.NSCR.lz \
files/resource/eng/zukan/zukan/narc_0046.NSCR.lz \
files/resource/eng/zukan/zukan/narc_0052.NSCR.lz \
files/resource/eng/zukan/zukan/narc_0085.NCER.lz \
files/resource/eng/zukan/zukan/narc_0091.NCER.lz \
files/resource/eng/zukan/zukan/narc_0126.NCER.lz \
files/resource/eng/zukan/zukan/narc_0118.NANR.lz \
files/resource/eng/zukan/zukan/narc_0124.NANR.lz \
files/resource/eng/zukan/zukan/narc_0087.NCGR.lz \
files/resource/eng/zukan/zukan/narc_0093.NCGR.lz \
files/resource/eng/zukan/zukan/narc_0078.NCGR.lz \
files/resource/eng/zukan/zukan/narc_0044.NSCR.lz \
files/resource/eng/zukan/zukan/narc_0050.NSCR.lz \
files/resource/eng/zukan/zukan/narc_0051.NSCR.lz \
files/resource/eng/zukan/zukan/narc_0045.NSCR.lz \
files/resource/eng/zukan/zukan/narc_0079.NCER.lz \
files/resource/eng/zukan/zukan/narc_0092.NANR.lz \
files/resource/eng/zukan/zukan/narc_0086.NANR.lz \
files/resource/eng/zukan/zukan/narc_0125.NCGR.lz \
files/resource/eng/zukan/zukan/narc_0119.NCGR.lz \
files/resource/eng/zukan/zukan/narc_0114.NCER.lz \
files/resource/eng/zukan/zukan/narc_0100.NCER.lz \
files/resource/eng/zukan/zukan/narc_0128.NCGR.lz \
files/resource/eng/zukan/zukan/narc_0060.NSCR.lz \
files/resource/eng/zukan/zukan/narc_0074.NSCR.lz \
files/resource/eng/zukan/zukan/narc_0048.NSCR.lz \
files/resource/eng/zukan/zukan/narc_0049.NSCR.lz \
files/resource/eng/zukan/zukan/narc_0075.NSCR.lz \
files/resource/eng/zukan/zukan/narc_0061.NSCR.lz \
files/resource/eng/zukan/zukan/narc_0129.NCER.lz \
files/resource/eng/zukan/zukan/narc_0101.NANR.lz \
files/resource/eng/zukan/zukan/narc_0115.NANR.lz \
files/resource/eng/zukan/zukan/narc_0103.NCER.lz \
files/resource/eng/zukan/zukan/narc_0117.NCER.lz \
files/resource/eng/zukan/zukan/narc_0088.NCER.lz \
files/resource/eng/zukan/zukan/narc_0077.NANR.lz \
files/resource/eng/zukan/zukan/narc_0063.NSCR.lz \
files/resource/eng/zukan/zukan/narc_0062.NSCR.lz \
files/resource/eng/zukan/zukan/narc_0076.NCER.lz \
files/resource/eng/zukan/zukan/narc_0089.NANR.lz \
files/resource/eng/zukan/zukan/narc_0116.NCGR.lz \
files/resource/eng/zukan/zukan/narc_0102.NCGR.lz \
files/resource/eng/zukan/zukan/narc_0106.NCER.lz \
files/resource/eng/zukan/zukan/narc_0112.NANR.lz \
files/resource/eng/zukan/zukan/narc_0099.NCGR.lz \
files/resource/eng/zukan/zukan/narc_0072.NSCR.lz \
files/resource/eng/zukan/zukan/narc_0066.NSCR.lz \
files/resource/eng/zukan/zukan/narc_0067.NSCR.lz \
files/resource/eng/zukan/zukan/narc_0073.NSCR.lz \
files/resource/eng/zukan/zukan/narc_0098.NANR.lz \
files/resource/eng/zukan/zukan/narc_0113.NCGR.lz \
files/resource/eng/zukan/zukan/narc_0107.NANR.lz \
files/resource/eng/zukan/zukan/narc_0111.NCGR.lz \
files/resource/eng/zukan/zukan/narc_0105.NCGR.lz \
files/resource/eng/zukan/zukan/narc_0059.NSCR.lz \
files/resource/eng/zukan/zukan/narc_0065.NSCR.lz \
files/resource/eng/zukan/zukan/narc_0071.NSCR.lz \
files/resource/eng/zukan/zukan/narc_0070.NSCR.lz \
files/resource/eng/zukan/zukan/narc_0064.NSCR.lz \
files/resource/eng/zukan/zukan/narc_0058.NSCR.lz \
files/resource/eng/zukan/zukan/narc_0104.NANR.lz \
files/resource/eng/zukan/zukan/narc_0110.NANR.lz \
files/resource/eng/zukan/zukan/narc_0028.NCGR.lz \
files/resource/eng/zukan/zukan/narc_0029.NCGR.lz \
files/resource/eng/zukan/zukan/narc_0039.NSCR.lz \
files/resource/eng/zukan/zukan/narc_0038.NSCR.lz
files/contest/graphic/contest_bg.narc: \
files/contest/graphic/contest_bg/narc_0022.NCGR.lz \
files/contest/graphic/contest_bg/narc_0023.NCGR.lz \
files/contest/graphic/contest_bg/narc_0021.NSCR.lz \
files/contest/graphic/contest_bg/narc_0009.NCGR.lz \
files/contest/graphic/contest_bg/narc_0008.NSCR.lz \
files/contest/graphic/contest_bg/narc_0020.NSCR.lz \
files/contest/graphic/contest_bg/narc_0018.NCGR.lz \
files/contest/graphic/contest_bg/narc_0024.NSCR.lz \
files/contest/graphic/contest_bg/narc_0025.NSCR.lz \
files/contest/graphic/contest_bg/narc_0019.NSCR.lz \
files/contest/graphic/contest_bg/narc_0027.NSCR.lz \
files/contest/graphic/contest_bg/narc_0026.NCGR.lz \
files/contest/graphic/contest_bg/narc_0003.NCGR.lz \
files/contest/graphic/contest_bg/narc_0017.NCGR.lz \
files/contest/graphic/contest_bg/narc_0016.NSCR.lz \
files/contest/graphic/contest_bg/narc_0002.NSCR.lz \
files/contest/graphic/contest_bg/narc_0014.NSCR.lz \
files/contest/graphic/contest_bg/narc_0000.NSCR.lz \
files/contest/graphic/contest_bg/narc_0028.NSCR.lz \
files/contest/graphic/contest_bg/narc_0001.NCGR.lz \
files/contest/graphic/contest_bg/narc_0015.NCGR.lz \
files/contest/graphic/contest_bg/narc_0011.NCGR.lz \
files/contest/graphic/contest_bg/narc_0005.NSCR.lz \
files/contest/graphic/contest_bg/narc_0004.NSCR.lz \
files/contest/graphic/contest_bg/narc_0010.NSCR.lz \
files/contest/graphic/contest_bg/narc_0006.NSCR.lz \
files/contest/graphic/contest_bg/narc_0012.NSCR.lz \
files/contest/graphic/contest_bg/narc_0013.NCGR.lz \
files/contest/graphic/contest_bg/narc_0007.NSCR.lz
files/contest/graphic/contest_obj.narc: \
files/contest/graphic/contest_obj/narc_0022.NCER.lz \
files/contest/graphic/contest_obj/narc_0036.NANR.lz \
files/contest/graphic/contest_obj/narc_0037.NCGR.lz \
files/contest/graphic/contest_obj/narc_0023.NCGR.lz \
files/contest/graphic/contest_obj/narc_0035.NCER.lz \
files/contest/graphic/contest_obj/narc_0021.NANR.lz \
files/contest/graphic/contest_obj/narc_0020.NCGR.lz \
files/contest/graphic/contest_obj/narc_0034.NCGR.lz \
files/contest/graphic/contest_obj/narc_0018.NANR.lz \
files/contest/graphic/contest_obj/narc_0030.NANR.lz \
files/contest/graphic/contest_obj/narc_0024.NANR.lz \
files/contest/graphic/contest_obj/narc_0025.NCER.lz \
files/contest/graphic/contest_obj/narc_0031.NCGR.lz \
files/contest/graphic/contest_obj/narc_0019.NCER.lz \
files/contest/graphic/contest_obj/narc_0027.NANR.lz \
files/contest/graphic/contest_obj/narc_0033.NANR.lz \
files/contest/graphic/contest_obj/narc_0032.NCER.lz \
files/contest/graphic/contest_obj/narc_0026.NCGR.lz \
files/contest/graphic/contest_obj/narc_0082.NANR.lz \
files/contest/graphic/contest_obj/narc_0096.NCGR.lz \
files/contest/graphic/contest_obj/narc_0041.NANR.lz \
files/contest/graphic/contest_obj/narc_0055.NCGR.lz \
files/contest/graphic/contest_obj/narc_0069.NANR.lz \
files/contest/graphic/contest_obj/narc_0068.NCER.lz \
files/contest/graphic/contest_obj/narc_0054.NCGR.lz \
files/contest/graphic/contest_obj/narc_0040.NCER.lz \
files/contest/graphic/contest_obj/narc_0083.NCER.lz \
files/contest/graphic/contest_obj/narc_0095.NCER.lz \
files/contest/graphic/contest_obj/narc_0081.NCGR.lz \
files/contest/graphic/contest_obj/narc_0056.NCER.lz \
files/contest/graphic/contest_obj/narc_0042.NCGR.lz \
files/contest/graphic/contest_obj/narc_0043.NCER.lz \
files/contest/graphic/contest_obj/narc_0057.NANR.lz \
files/contest/graphic/contest_obj/narc_0080.NCER.lz \
files/contest/graphic/contest_obj/narc_0094.NANR.lz \
files/contest/graphic/contest_obj/narc_0090.NCGR.lz \
files/contest/graphic/contest_obj/narc_0084.NCGR.lz \
files/contest/graphic/contest_obj/narc_0053.NCGR.lz \
files/contest/graphic/contest_obj/narc_0047.NANR.lz \
files/contest/graphic/contest_obj/narc_0046.NCER.lz \
files/contest/graphic/contest_obj/narc_0052.NCGR.lz \
files/contest/graphic/contest_obj/narc_0085.NANR.lz \
files/contest/graphic/contest_obj/narc_0091.NANR.lz \
files/contest/graphic/contest_obj/narc_0087.NCGR.lz \
files/contest/graphic/contest_obj/narc_0093.NCGR.lz \
files/contest/graphic/contest_obj/narc_0078.NANR.lz \
files/contest/graphic/contest_obj/narc_0044.NANR.lz \
files/contest/graphic/contest_obj/narc_0050.NANR.lz \
files/contest/graphic/contest_obj/narc_0051.NCGR.lz \
files/contest/graphic/contest_obj/narc_0045.NCGR.lz \
files/contest/graphic/contest_obj/narc_0079.NANR.lz \
files/contest/graphic/contest_obj/narc_0092.NCER.lz \
files/contest/graphic/contest_obj/narc_0086.NCER.lz \
files/contest/graphic/contest_obj/narc_0060.NCGR.lz \
files/contest/graphic/contest_obj/narc_0074.NCER.lz \
files/contest/graphic/contest_obj/narc_0048.NCGR.lz \
files/contest/graphic/contest_obj/narc_0049.NCER.lz \
files/contest/graphic/contest_obj/narc_0075.NANR.lz \
files/contest/graphic/contest_obj/narc_0061.NCGR.lz \
files/contest/graphic/contest_obj/narc_0088.NANR.lz \
files/contest/graphic/contest_obj/narc_0077.NCER.lz \
files/contest/graphic/contest_obj/narc_0063.NANR.lz \
files/contest/graphic/contest_obj/narc_0062.NCER.lz \
files/contest/graphic/contest_obj/narc_0076.NCGR.lz \
files/contest/graphic/contest_obj/narc_0089.NCER.lz \
files/contest/graphic/contest_obj/narc_0072.NCER.lz \
files/contest/graphic/contest_obj/narc_0066.NANR.lz \
files/contest/graphic/contest_obj/narc_0067.NCGR.lz \
files/contest/graphic/contest_obj/narc_0073.NCGR.lz \
files/contest/graphic/contest_obj/narc_0059.NCGR.lz \
files/contest/graphic/contest_obj/narc_0065.NCER.lz \
files/contest/graphic/contest_obj/narc_0071.NANR.lz \
files/contest/graphic/contest_obj/narc_0070.NCGR.lz \
files/contest/graphic/contest_obj/narc_0064.NCGR.lz \
files/contest/graphic/contest_obj/narc_0058.NCGR.lz \
files/contest/graphic/contest_obj/narc_0017.NCGR.lz \
files/contest/graphic/contest_obj/narc_0016.NCER.lz \
files/contest/graphic/contest_obj/narc_0014.NCGR.lz \
files/contest/graphic/contest_obj/narc_0028.NCER.lz \
files/contest/graphic/contest_obj/narc_0029.NCGR.lz \
files/contest/graphic/contest_obj/narc_0015.NANR.lz \
files/contest/graphic/contest_obj/narc_0039.NCGR.lz \
files/contest/graphic/contest_obj/narc_0038.NCER.lz \
files/contest/graphic/contest_obj/narc_0012.NANR.lz \
files/contest/graphic/contest_obj/narc_0013.NCER.lz
files/data/tradelist.narc: \
files/data/tradelist/narc_0009.NANR.lz \
files/data/tradelist/narc_0008.NCER.lz \
files/data/tradelist/narc_0003.NSCR.lz \
files/data/tradelist/narc_0002.NCGR.lz \
files/data/tradelist/narc_0001.NCGR.lz \
files/data/tradelist/narc_0011.NCER.lz \
files/data/tradelist/narc_0005.NSCR.lz \
files/data/tradelist/narc_0004.NSCR.lz \
files/data/tradelist/narc_0010.NCGR.lz \
files/data/tradelist/narc_0006.NSCR.lz \
files/data/tradelist/narc_0012.NANR.lz \
files/data/tradelist/narc_0007.NCGR.lz
files/data/namein.narc: \
files/data/namein/narc_0009.NSCR.lz \
files/data/namein/narc_0008.NSCR.lz \
files/data/namein/narc_0018.NSCR.lz \
files/data/namein/narc_0003.NCGR.lz \
files/data/namein/narc_0017.NSCR.lz \
files/data/namein/narc_0016.NCGR.lz \
files/data/namein/narc_0002.NCGR.lz \
files/data/namein/narc_0014.NANR.lz \
files/data/namein/narc_0015.NANR.lz \
files/data/namein/narc_0011.NCGR.lz \
files/data/namein/narc_0005.NSCR.lz \
files/data/namein/narc_0004.NSCR.lz \
files/data/namein/narc_0010.NCGR.lz \
files/data/namein/narc_0006.NSCR.lz \
files/data/namein/narc_0012.NCER.lz \
files/data/namein/narc_0013.NCER.lz \
files/data/namein/narc_0007.NSCR.lz
files/demo/title/titledemo.narc: \
files/demo/title/titledemo/narc_0000.NSCR \
files/demo/title/titledemo/narc_0001.NCGR \
files/demo/title/titledemo/narc_0001.NCLR \
files/demo/title/titledemo/narc_0003.NCGR \
files/demo/title/titledemo/narc_0003.NCLR \
files/demo/title/titledemo/narc_0007.NCGR \
files/demo/title/titledemo/narc_0008.NSCR \
files/demo/title/titledemo/narc_0009.NCLR \
files/demo/title/titledemo/narc_0010.NCLR \
files/demo/title/titledemo/narc_0011.NCGR \
files/demo/title/titledemo/narc_0012.NSCR \
files/demo/title/titledemo/narc_0013.NCLR \
files/demo/title/titledemo/narc_0014.NCLR \
files/demo/title/titledemo/narc_0015.NCGR \
files/demo/title/titledemo/narc_0016.NCLR \
files/demo/title/titledemo/narc_0017.NSCR
files/poketool/trgra/trbgra.narc: \
files/poketool/trgra/trbgra/narc_0000.NCGR \
files/poketool/trgra/trbgra/narc_0000.NCLR \
files/poketool/trgra/trbgra/narc_0002.NCGR \
files/poketool/trgra/trbgra/narc_0002.NCLR \
files/poketool/trgra/trbgra/narc_0004.NCGR \
files/poketool/trgra/trbgra/narc_0004.NCLR \
files/poketool/trgra/trbgra/narc_0006.NCGR \
files/poketool/trgra/trbgra/narc_0006.NCLR \
files/poketool/trgra/trbgra/narc_0008.NCGR \
files/poketool/trgra/trbgra/narc_0008.NCLR \
files/poketool/trgra/trbgra/narc_0010.NCGR \
files/poketool/trgra/trbgra/narc_0010.NCLR \
files/poketool/trgra/trbgra/narc_0012.NCGR \
files/poketool/trgra/trbgra/narc_0012.NCLR \
files/poketool/trgra/trbgra/narc_0014.NCGR \
files/poketool/trgra/trbgra/narc_0014.NCLR
files/poketool/trgra/trfgra.narc: \
files/poketool/trgra/trfgra/narc_0000.NCGR \
files/poketool/trgra/trfgra/narc_0000.NCLR \
files/poketool/trgra/trfgra/narc_0002.NCGR \
files/poketool/trgra/trfgra/narc_0002.NCLR \
files/poketool/trgra/trfgra/narc_0004.NCGR \
files/poketool/trgra/trfgra/narc_0004.NCLR \
files/poketool/trgra/trfgra/narc_0006.NCGR \
files/poketool/trgra/trfgra/narc_0006.NCLR \
files/poketool/trgra/trfgra/narc_0008.NCGR \
files/poketool/trgra/trfgra/narc_0008.NCLR \
files/poketool/trgra/trfgra/narc_0010.NCGR \
files/poketool/trgra/trfgra/narc_0010.NCLR \
files/poketool/trgra/trfgra/narc_0012.NCGR \
files/poketool/trgra/trfgra/narc_0012.NCLR \
files/poketool/trgra/trfgra/narc_0014.NCGR \
files/poketool/trgra/trfgra/narc_0014.NCLR \
files/poketool/trgra/trfgra/narc_0016.NCGR \
files/poketool/trgra/trfgra/narc_0016.NCLR \
files/poketool/trgra/trfgra/narc_0018.NCGR \
files/poketool/trgra/trfgra/narc_0018.NCLR \
files/poketool/trgra/trfgra/narc_0020.NCGR \
files/poketool/trgra/trfgra/narc_0020.NCLR \
files/poketool/trgra/trfgra/narc_0022.NCGR \
files/poketool/trgra/trfgra/narc_0022.NCLR \
files/poketool/trgra/trfgra/narc_0024.NCGR \
files/poketool/trgra/trfgra/narc_0024.NCLR \
files/poketool/trgra/trfgra/narc_0026.NCGR \
files/poketool/trgra/trfgra/narc_0026.NCLR \
files/poketool/trgra/trfgra/narc_0028.NCGR \
files/poketool/trgra/trfgra/narc_0028.NCLR \
files/poketool/trgra/trfgra/narc_0030.NCGR \
files/poketool/trgra/trfgra/narc_0030.NCLR \
files/poketool/trgra/trfgra/narc_0032.NCGR \
files/poketool/trgra/trfgra/narc_0032.NCLR \
files/poketool/trgra/trfgra/narc_0034.NCGR \
files/poketool/trgra/trfgra/narc_0034.NCLR \
files/poketool/trgra/trfgra/narc_0036.NCGR \
files/poketool/trgra/trfgra/narc_0036.NCLR \
files/poketool/trgra/trfgra/narc_0038.NCGR \
files/poketool/trgra/trfgra/narc_0038.NCLR \
files/poketool/trgra/trfgra/narc_0040.NCGR \
files/poketool/trgra/trfgra/narc_0040.NCLR \
files/poketool/trgra/trfgra/narc_0042.NCGR \
files/poketool/trgra/trfgra/narc_0042.NCLR \
files/poketool/trgra/trfgra/narc_0044.NCGR \
files/poketool/trgra/trfgra/narc_0044.NCLR \
files/poketool/trgra/trfgra/narc_0046.NCGR \
files/poketool/trgra/trfgra/narc_0046.NCLR \
files/poketool/trgra/trfgra/narc_0048.NCGR \
files/poketool/trgra/trfgra/narc_0048.NCLR \
files/poketool/trgra/trfgra/narc_0050.NCGR \
files/poketool/trgra/trfgra/narc_0050.NCLR \
files/poketool/trgra/trfgra/narc_0052.NCGR \
files/poketool/trgra/trfgra/narc_0052.NCLR \
files/poketool/trgra/trfgra/narc_0054.NCGR \
files/poketool/trgra/trfgra/narc_0054.NCLR \
files/poketool/trgra/trfgra/narc_0056.NCGR \
files/poketool/trgra/trfgra/narc_0056.NCLR \
files/poketool/trgra/trfgra/narc_0058.NCGR \
files/poketool/trgra/trfgra/narc_0058.NCLR \
files/poketool/trgra/trfgra/narc_0060.NCGR \
files/poketool/trgra/trfgra/narc_0060.NCLR \
files/poketool/trgra/trfgra/narc_0062.NCGR \
files/poketool/trgra/trfgra/narc_0062.NCLR \
files/poketool/trgra/trfgra/narc_0064.NCGR \
files/poketool/trgra/trfgra/narc_0064.NCLR \
files/poketool/trgra/trfgra/narc_0066.NCGR \
files/poketool/trgra/trfgra/narc_0066.NCLR \
files/poketool/trgra/trfgra/narc_0068.NCGR \
files/poketool/trgra/trfgra/narc_0068.NCLR \
files/poketool/trgra/trfgra/narc_0070.NCGR \
files/poketool/trgra/trfgra/narc_0070.NCLR \
files/poketool/trgra/trfgra/narc_0072.NCGR \
files/poketool/trgra/trfgra/narc_0072.NCLR \
files/poketool/trgra/trfgra/narc_0074.NCGR \
files/poketool/trgra/trfgra/narc_0074.NCLR \
files/poketool/trgra/trfgra/narc_0076.NCGR \
files/poketool/trgra/trfgra/narc_0076.NCLR \
files/poketool/trgra/trfgra/narc_0078.NCGR \
files/poketool/trgra/trfgra/narc_0078.NCLR \
files/poketool/trgra/trfgra/narc_0080.NCGR \
files/poketool/trgra/trfgra/narc_0080.NCLR \
files/poketool/trgra/trfgra/narc_0082.NCGR \
files/poketool/trgra/trfgra/narc_0082.NCLR \
files/poketool/trgra/trfgra/narc_0084.NCGR \
files/poketool/trgra/trfgra/narc_0084.NCLR \
files/poketool/trgra/trfgra/narc_0086.NCGR \
files/poketool/trgra/trfgra/narc_0086.NCLR \
files/poketool/trgra/trfgra/narc_0088.NCGR \
files/poketool/trgra/trfgra/narc_0088.NCLR \
files/poketool/trgra/trfgra/narc_0090.NCGR \
files/poketool/trgra/trfgra/narc_0090.NCLR \
files/poketool/trgra/trfgra/narc_0092.NCGR \
files/poketool/trgra/trfgra/narc_0092.NCLR \
files/poketool/trgra/trfgra/narc_0094.NCGR \
files/poketool/trgra/trfgra/narc_0094.NCLR \
files/poketool/trgra/trfgra/narc_0096.NCGR \
files/poketool/trgra/trfgra/narc_0096.NCLR \
files/poketool/trgra/trfgra/narc_0098.NCGR \
files/poketool/trgra/trfgra/narc_0098.NCLR \
files/poketool/trgra/trfgra/narc_0100.NCGR \
files/poketool/trgra/trfgra/narc_0100.NCLR \
files/poketool/trgra/trfgra/narc_0102.NCGR \
files/poketool/trgra/trfgra/narc_0102.NCLR \
files/poketool/trgra/trfgra/narc_0104.NCGR \
files/poketool/trgra/trfgra/narc_0104.NCLR \
files/poketool/trgra/trfgra/narc_0106.NCGR \
files/poketool/trgra/trfgra/narc_0106.NCLR \
files/poketool/trgra/trfgra/narc_0108.NCGR \
files/poketool/trgra/trfgra/narc_0108.NCLR \
files/poketool/trgra/trfgra/narc_0110.NCGR \
files/poketool/trgra/trfgra/narc_0110.NCLR \
files/poketool/trgra/trfgra/narc_0112.NCGR \
files/poketool/trgra/trfgra/narc_0112.NCLR \
files/poketool/trgra/trfgra/narc_0114.NCGR \
files/poketool/trgra/trfgra/narc_0114.NCLR \
files/poketool/trgra/trfgra/narc_0116.NCGR \
files/poketool/trgra/trfgra/narc_0116.NCLR \
files/poketool/trgra/trfgra/narc_0118.NCGR \
files/poketool/trgra/trfgra/narc_0118.NCLR \
files/poketool/trgra/trfgra/narc_0120.NCGR \
files/poketool/trgra/trfgra/narc_0120.NCLR \
files/poketool/trgra/trfgra/narc_0122.NCGR \
files/poketool/trgra/trfgra/narc_0122.NCLR \
files/poketool/trgra/trfgra/narc_0124.NCGR \
files/poketool/trgra/trfgra/narc_0124.NCLR \
files/poketool/trgra/trfgra/narc_0126.NCGR \
files/poketool/trgra/trfgra/narc_0126.NCLR \
files/poketool/trgra/trfgra/narc_0128.NCGR \
files/poketool/trgra/trfgra/narc_0128.NCLR \
files/poketool/trgra/trfgra/narc_0130.NCGR \
files/poketool/trgra/trfgra/narc_0130.NCLR \
files/poketool/trgra/trfgra/narc_0132.NCGR \
files/poketool/trgra/trfgra/narc_0132.NCLR \
files/poketool/trgra/trfgra/narc_0134.NCGR \
files/poketool/trgra/trfgra/narc_0134.NCLR \
files/poketool/trgra/trfgra/narc_0136.NCGR \
files/poketool/trgra/trfgra/narc_0136.NCLR \
files/poketool/trgra/trfgra/narc_0138.NCGR \
files/poketool/trgra/trfgra/narc_0138.NCLR \
files/poketool/trgra/trfgra/narc_0140.NCGR \
files/poketool/trgra/trfgra/narc_0140.NCLR \
files/poketool/trgra/trfgra/narc_0142.NCGR \
files/poketool/trgra/trfgra/narc_0142.NCLR \
files/poketool/trgra/trfgra/narc_0144.NCGR \
files/poketool/trgra/trfgra/narc_0144.NCLR \
files/poketool/trgra/trfgra/narc_0146.NCGR \
files/poketool/trgra/trfgra/narc_0146.NCLR \
files/poketool/trgra/trfgra/narc_0148.NCGR \
files/poketool/trgra/trfgra/narc_0148.NCLR \
files/poketool/trgra/trfgra/narc_0150.NCGR \
files/poketool/trgra/trfgra/narc_0150.NCLR \
files/poketool/trgra/trfgra/narc_0152.NCGR \
files/poketool/trgra/trfgra/narc_0152.NCLR \
files/poketool/trgra/trfgra/narc_0154.NCGR \
files/poketool/trgra/trfgra/narc_0154.NCLR \
files/poketool/trgra/trfgra/narc_0156.NCGR \
files/poketool/trgra/trfgra/narc_0156.NCLR \
files/poketool/trgra/trfgra/narc_0158.NCGR \
files/poketool/trgra/trfgra/narc_0158.NCLR \
files/poketool/trgra/trfgra/narc_0160.NCGR \
files/poketool/trgra/trfgra/narc_0160.NCLR \
files/poketool/trgra/trfgra/narc_0162.NCGR \
files/poketool/trgra/trfgra/narc_0162.NCLR \
files/poketool/trgra/trfgra/narc_0164.NCGR \
files/poketool/trgra/trfgra/narc_0164.NCLR \
files/poketool/trgra/trfgra/narc_0166.NCGR \
files/poketool/trgra/trfgra/narc_0166.NCLR \
files/poketool/trgra/trfgra/narc_0168.NCGR \
files/poketool/trgra/trfgra/narc_0168.NCLR \
files/poketool/trgra/trfgra/narc_0170.NCGR \
files/poketool/trgra/trfgra/narc_0170.NCLR \
files/poketool/trgra/trfgra/narc_0172.NCGR \
files/poketool/trgra/trfgra/narc_0172.NCLR \
files/poketool/trgra/trfgra/narc_0174.NCGR \
files/poketool/trgra/trfgra/narc_0174.NCLR \
files/poketool/trgra/trfgra/narc_0176.NCGR \
files/poketool/trgra/trfgra/narc_0176.NCLR \
files/poketool/trgra/trfgra/narc_0178.NCGR \
files/poketool/trgra/trfgra/narc_0178.NCLR \
files/poketool/trgra/trfgra/narc_0180.NCGR \
files/poketool/trgra/trfgra/narc_0180.NCLR \
files/poketool/trgra/trfgra/narc_0182.NCGR \
files/poketool/trgra/trfgra/narc_0182.NCLR \
files/poketool/trgra/trfgra/narc_0184.NCGR \
files/poketool/trgra/trfgra/narc_0184.NCLR \
files/poketool/trgra/trfgra/narc_0186.NCGR \
files/poketool/trgra/trfgra/narc_0186.NCLR \
files/poketool/trgra/trfgra/narc_0188.NCGR \
files/poketool/trgra/trfgra/narc_0188.NCLR \
files/poketool/trgra/trfgra/narc_0190.NCGR \
files/poketool/trgra/trfgra/narc_0190.NCLR \
files/poketool/trgra/trfgra/narc_0192.NCGR \
files/poketool/trgra/trfgra/narc_0192.NCLR \
files/poketool/trgra/trfgra/narc_0194.NCGR \
files/poketool/trgra/trfgra/narc_0194.NCLR \
files/poketool/pokegra/pokegra.narc: \
files/poketool/pokegra/pokegra/narc_0006.NCGR \
files/poketool/pokegra/pokegra/narc_0007.NCGR \
files/poketool/pokegra/pokegra/narc_0008.NCGR \
files/poketool/pokegra/pokegra/narc_0009.NCGR \
files/poketool/pokegra/pokegra/narc_0010.NCLR \
files/poketool/pokegra/pokegra/narc_0011.NCLR \
files/poketool/pokegra/pokegra/narc_0012.NCGR \
files/poketool/pokegra/pokegra/narc_0013.NCGR \
files/poketool/pokegra/pokegra/narc_0014.NCGR \
files/poketool/pokegra/pokegra/narc_0015.NCGR \
files/poketool/pokegra/pokegra/narc_0016.NCLR \
files/poketool/pokegra/pokegra/narc_0017.NCLR \
files/poketool/pokegra/pokegra/narc_0018.NCGR \
files/poketool/pokegra/pokegra/narc_0019.NCGR \
files/poketool/pokegra/pokegra/narc_0020.NCGR \
files/poketool/pokegra/pokegra/narc_0021.NCGR \
files/poketool/pokegra/pokegra/narc_0022.NCLR \
files/poketool/pokegra/pokegra/narc_0023.NCLR \
files/poketool/pokegra/pokegra/narc_0024.NCGR \
files/poketool/pokegra/pokegra/narc_0025.NCGR \
files/poketool/pokegra/pokegra/narc_0026.NCGR \
files/poketool/pokegra/pokegra/narc_0027.NCGR \
files/poketool/pokegra/pokegra/narc_0028.NCLR \
files/poketool/pokegra/pokegra/narc_0029.NCLR \
files/poketool/pokegra/pokegra/narc_0030.NCGR \
files/poketool/pokegra/pokegra/narc_0031.NCGR \
files/poketool/pokegra/pokegra/narc_0032.NCGR \
files/poketool/pokegra/pokegra/narc_0033.NCGR \
files/poketool/pokegra/pokegra/narc_0034.NCLR \
files/poketool/pokegra/pokegra/narc_0035.NCLR \
files/poketool/pokegra/pokegra/narc_0036.NCGR \
files/poketool/pokegra/pokegra/narc_0037.NCGR \
files/poketool/pokegra/pokegra/narc_0038.NCGR \
files/poketool/pokegra/pokegra/narc_0039.NCGR \
files/poketool/pokegra/pokegra/narc_0040.NCLR \
files/poketool/pokegra/pokegra/narc_0041.NCLR \
files/poketool/pokegra/pokegra/narc_0042.NCGR \
files/poketool/pokegra/pokegra/narc_0043.NCGR \
files/poketool/pokegra/pokegra/narc_0044.NCGR \
files/poketool/pokegra/pokegra/narc_0045.NCGR \
files/poketool/pokegra/pokegra/narc_0046.NCLR \
files/poketool/pokegra/pokegra/narc_0047.NCLR \
files/poketool/pokegra/pokegra/narc_0048.NCGR \
files/poketool/pokegra/pokegra/narc_0049.NCGR \
files/poketool/pokegra/pokegra/narc_0050.NCGR \
files/poketool/pokegra/pokegra/narc_0051.NCGR \
files/poketool/pokegra/pokegra/narc_0052.NCLR \
files/poketool/pokegra/pokegra/narc_0053.NCLR \
files/poketool/pokegra/pokegra/narc_0054.NCGR \
files/poketool/pokegra/pokegra/narc_0055.NCGR \
files/poketool/pokegra/pokegra/narc_0056.NCGR \
files/poketool/pokegra/pokegra/narc_0057.NCGR \
files/poketool/pokegra/pokegra/narc_0058.NCLR \
files/poketool/pokegra/pokegra/narc_0059.NCLR \
files/poketool/pokegra/pokegra/narc_2370.NCGR \
files/poketool/pokegra/pokegra/narc_2371.NCGR \
files/poketool/pokegra/pokegra/narc_2372.NCGR \
files/poketool/pokegra/pokegra/narc_2373.NCGR \
files/poketool/pokegra/pokegra/narc_2374.NCLR \
files/poketool/pokegra/pokegra/narc_2375.NCLR
files/poketool/icongra/poke_icon.narc: \
files/poketool/icongra/poke_icon/narc_0000.NCLR \
files/poketool/icongra/poke_icon/narc_0002.NCER \
files/poketool/icongra/poke_icon/narc_0004.NCER \
files/poketool/icongra/poke_icon/narc_0006.NCER \
files/poketool/icongra/poke_icon/narc_0007.NCGR \
files/poketool/icongra/poke_icon/narc_0008.NCGR \
files/poketool/icongra/poke_icon/narc_0009.NCGR \
files/poketool/icongra/poke_icon/narc_0010.NCGR \
files/poketool/icongra/poke_icon/narc_0011.NCGR \
files/poketool/icongra/poke_icon/narc_0012.NCGR \
files/poketool/icongra/poke_icon/narc_0013.NCGR \
files/poketool/icongra/poke_icon/narc_0014.NCGR \
files/poketool/icongra/poke_icon/narc_0015.NCGR \
files/poketool/icongra/poke_icon/narc_0016.NCGR \
files/poketool/icongra/poke_icon/narc_0017.NCGR \
files/poketool/icongra/poke_icon/narc_0018.NCGR \
files/poketool/icongra/poke_icon/narc_0019.NCGR \
files/poketool/icongra/poke_icon/narc_0020.NCGR \
files/poketool/icongra/poke_icon/narc_0021.NCGR \
files/poketool/icongra/poke_icon/narc_0022.NCGR \
files/poketool/icongra/poke_icon/narc_0023.NCGR \
files/poketool/icongra/poke_icon/narc_0024.NCGR \
files/poketool/icongra/poke_icon/narc_0025.NCGR \
files/poketool/icongra/poke_icon/narc_0026.NCGR \
files/poketool/icongra/poke_icon/narc_0027.NCGR \
files/poketool/icongra/poke_icon/narc_0028.NCGR \
files/poketool/icongra/poke_icon/narc_0029.NCGR \
files/poketool/icongra/poke_icon/narc_0030.NCGR \
files/poketool/icongra/poke_icon/narc_0031.NCGR \
files/poketool/icongra/poke_icon/narc_0032.NCGR \
files/poketool/icongra/poke_icon/narc_0033.NCGR \
files/poketool/icongra/poke_icon/narc_0034.NCGR \
files/poketool/icongra/poke_icon/narc_0035.NCGR \
files/poketool/icongra/poke_icon/narc_0036.NCGR \
files/poketool/icongra/poke_icon/narc_0402.NCGR
files/msgdata/msg.narc: \
files/msgdata/msg/narc_0000.bin \
files/msgdata/msg/narc_0001.bin \
files/msgdata/msg/narc_0002.bin \
files/msgdata/msg/narc_0003.bin \
files/msgdata/msg/narc_0004.bin \
files/msgdata/msg/narc_0005.bin \
files/msgdata/msg/narc_0006.bin \
files/msgdata/msg/narc_0007.bin \
files/msgdata/msg/narc_0008.bin \
files/msgdata/msg/narc_0009.bin \
files/msgdata/msg/narc_0010.bin \
files/msgdata/msg/narc_0011.bin \
files/msgdata/msg/narc_0012.bin \
files/msgdata/msg/narc_0013.bin \
files/msgdata/msg/narc_0014.bin \
files/msgdata/msg/narc_0015.bin \
files/msgdata/msg/narc_0016.bin \
files/msgdata/msg/narc_0017.bin \
files/msgdata/msg/narc_0018.bin \
files/msgdata/msg/narc_0019.bin \
files/msgdata/msg/narc_0020.bin \
files/msgdata/msg/narc_0021.bin \
files/msgdata/msg/narc_0022.bin \
files/msgdata/msg/narc_0023.bin \
files/msgdata/msg/narc_0024.bin \
files/msgdata/msg/narc_0025.bin \
files/msgdata/msg/narc_0026.bin \
files/msgdata/msg/narc_0027.bin \
files/msgdata/msg/narc_0028.bin \
files/msgdata/msg/narc_0029.bin \
files/msgdata/msg/narc_0030.bin \
files/msgdata/msg/narc_0031.bin \
files/msgdata/msg/narc_0032.bin \
files/msgdata/msg/narc_0033.bin \
files/msgdata/msg/narc_0034.bin \
files/msgdata/msg/narc_0035.bin \
files/msgdata/msg/narc_0036.bin \
files/msgdata/msg/narc_0037.bin \
files/msgdata/msg/narc_0038.bin \
files/msgdata/msg/narc_0039.bin \
files/msgdata/msg/narc_0040.bin \
files/msgdata/msg/narc_0041.bin \
files/msgdata/msg/narc_0042.bin \
files/msgdata/msg/narc_0043.bin \
files/msgdata/msg/narc_0044.bin \
files/msgdata/msg/narc_0045.bin \
files/msgdata/msg/narc_0046.bin \
files/msgdata/msg/narc_0047.bin \
files/msgdata/msg/narc_0048.bin \
files/msgdata/msg/narc_0049.bin \
files/msgdata/msg/narc_0050.bin \
files/msgdata/msg/narc_0051.bin \
files/msgdata/msg/narc_0052.bin \
files/msgdata/msg/narc_0053.bin \
files/msgdata/msg/narc_0054.bin \
files/msgdata/msg/narc_0055.bin \
files/msgdata/msg/narc_0056.bin \
files/msgdata/msg/narc_0057.bin \
files/msgdata/msg/narc_0058.bin \
files/msgdata/msg/narc_0059.bin \
files/msgdata/msg/narc_0060.bin \
files/msgdata/msg/narc_0061.bin \
files/msgdata/msg/narc_0062.bin \
files/msgdata/msg/narc_0063.bin \
files/msgdata/msg/narc_0064.bin \
files/msgdata/msg/narc_0065.bin \
files/msgdata/msg/narc_0066.bin \
files/msgdata/msg/narc_0067.bin \
files/msgdata/msg/narc_0068.bin \
files/msgdata/msg/narc_0069.bin \
files/msgdata/msg/narc_0070.bin \
files/msgdata/msg/narc_0071.bin \
files/msgdata/msg/narc_0072.bin \
files/msgdata/msg/narc_0073.bin \
files/msgdata/msg/narc_0074.bin \
files/msgdata/msg/narc_0075.bin \
files/msgdata/msg/narc_0076.bin \
files/msgdata/msg/narc_0077.bin \
files/msgdata/msg/narc_0078.bin \
files/msgdata/msg/narc_0079.bin \
files/msgdata/msg/narc_0080.bin \
files/msgdata/msg/narc_0081.bin \
files/msgdata/msg/narc_0082.bin \
files/msgdata/msg/narc_0083.bin \
files/msgdata/msg/narc_0084.bin \
files/msgdata/msg/narc_0085.bin \
files/msgdata/msg/narc_0086.bin \
files/msgdata/msg/narc_0087.bin \
files/msgdata/msg/narc_0088.bin \
files/msgdata/msg/narc_0089.bin \
files/msgdata/msg/narc_0090.bin \
files/msgdata/msg/narc_0091.bin \
files/msgdata/msg/narc_0092.bin \
files/msgdata/msg/narc_0093.bin \
files/msgdata/msg/narc_0094.bin \
files/msgdata/msg/narc_0095.bin \
files/msgdata/msg/narc_0096.bin \
files/msgdata/msg/narc_0097.bin \
files/msgdata/msg/narc_0098.bin \
files/msgdata/msg/narc_0099.bin \
files/msgdata/msg/narc_0100.bin \
files/msgdata/msg/narc_0101.bin \
files/msgdata/msg/narc_0102.bin \
files/msgdata/msg/narc_0103.bin \
files/msgdata/msg/narc_0104.bin \
files/msgdata/msg/narc_0105.bin \
files/msgdata/msg/narc_0106.bin \
files/msgdata/msg/narc_0107.bin \
files/msgdata/msg/narc_0108.bin \
files/msgdata/msg/narc_0109.bin \
files/msgdata/msg/narc_0110.bin \
files/msgdata/msg/narc_0111.bin \
files/msgdata/msg/narc_0112.bin \
files/msgdata/msg/narc_0113.bin \
files/msgdata/msg/narc_0114.bin \
files/msgdata/msg/narc_0115.bin \
files/msgdata/msg/narc_0116.bin \
files/msgdata/msg/narc_0117.bin \
files/msgdata/msg/narc_0118.bin \
files/msgdata/msg/narc_0119.bin \
files/msgdata/msg/narc_0120.bin \
files/msgdata/msg/narc_0121.bin \
files/msgdata/msg/narc_0122.bin \
files/msgdata/msg/narc_0123.bin \
files/msgdata/msg/narc_0124.bin \
files/msgdata/msg/narc_0125.bin \
files/msgdata/msg/narc_0126.bin \
files/msgdata/msg/narc_0127.bin \
files/msgdata/msg/narc_0128.bin \
files/msgdata/msg/narc_0129.bin \
files/msgdata/msg/narc_0130.bin \
files/msgdata/msg/narc_0131.bin \
files/msgdata/msg/narc_0132.bin \
files/msgdata/msg/narc_0133.bin \
files/msgdata/msg/narc_0134.bin \
files/msgdata/msg/narc_0135.bin \
files/msgdata/msg/narc_0136.bin \
files/msgdata/msg/narc_0137.bin \
files/msgdata/msg/narc_0138.bin \
files/msgdata/msg/narc_0139.bin \
files/msgdata/msg/narc_0140.bin \
files/msgdata/msg/narc_0141.bin \
files/msgdata/msg/narc_0142.bin \
files/msgdata/msg/narc_0143.bin \
files/msgdata/msg/narc_0144.bin \
files/msgdata/msg/narc_0145.bin \
files/msgdata/msg/narc_0146.bin \
files/msgdata/msg/narc_0147.bin \
files/msgdata/msg/narc_0148.bin \
files/msgdata/msg/narc_0149.bin \
files/msgdata/msg/narc_0150.bin \
files/msgdata/msg/narc_0151.bin \
files/msgdata/msg/narc_0152.bin \
files/msgdata/msg/narc_0153.bin \
files/msgdata/msg/narc_0154.bin \
files/msgdata/msg/narc_0155.bin \
files/msgdata/msg/narc_0156.bin \
files/msgdata/msg/narc_0157.bin \
files/msgdata/msg/narc_0158.bin \
files/msgdata/msg/narc_0159.bin \
files/msgdata/msg/narc_0160.bin \
files/msgdata/msg/narc_0161.bin \
files/msgdata/msg/narc_0162.bin \
files/msgdata/msg/narc_0163.bin \
files/msgdata/msg/narc_0164.bin \
files/msgdata/msg/narc_0165.bin \
files/msgdata/msg/narc_0166.bin \
files/msgdata/msg/narc_0167.bin \
files/msgdata/msg/narc_0168.bin \
files/msgdata/msg/narc_0169.bin \
files/msgdata/msg/narc_0170.bin \
files/msgdata/msg/narc_0171.bin \
files/msgdata/msg/narc_0172.bin \
files/msgdata/msg/narc_0173.bin \
files/msgdata/msg/narc_0174.bin \
files/msgdata/msg/narc_0175.bin \
files/msgdata/msg/narc_0176.bin \
files/msgdata/msg/narc_0177.bin \
files/msgdata/msg/narc_0178.bin \
files/msgdata/msg/narc_0179.bin \
files/msgdata/msg/narc_0180.bin \
files/msgdata/msg/narc_0181.bin \
files/msgdata/msg/narc_0182.bin \
files/msgdata/msg/narc_0183.bin \
files/msgdata/msg/narc_0184.bin \
files/msgdata/msg/narc_0185.bin \
files/msgdata/msg/narc_0186.bin \
files/msgdata/msg/narc_0187.bin \
files/msgdata/msg/narc_0188.bin \
files/msgdata/msg/narc_0189.bin \
files/msgdata/msg/narc_0190.bin \
files/msgdata/msg/narc_0191.bin \
files/msgdata/msg/narc_0192.bin \
files/msgdata/msg/narc_0193.bin \
files/msgdata/msg/narc_0194.bin \
files/msgdata/msg/narc_0195.bin \
files/msgdata/msg/narc_0196.bin \
files/msgdata/msg/narc_0197.bin \
files/msgdata/msg/narc_0198.bin \
files/msgdata/msg/narc_0199.bin \
files/msgdata/msg/narc_0200.bin \
files/msgdata/msg/narc_0201.bin \
files/msgdata/msg/narc_0202.bin \
files/msgdata/msg/narc_0203.bin \
files/msgdata/msg/narc_0204.bin \
files/msgdata/msg/narc_0205.bin \
files/msgdata/msg/narc_0206.bin \
files/msgdata/msg/narc_0207.bin \
files/msgdata/msg/narc_0208.bin \
files/msgdata/msg/narc_0209.bin \
files/msgdata/msg/narc_0210.bin \
files/msgdata/msg/narc_0211.bin \
files/msgdata/msg/narc_0212.bin \
files/msgdata/msg/narc_0213.bin \
files/msgdata/msg/narc_0214.bin \
files/msgdata/msg/narc_0215.bin \
files/msgdata/msg/narc_0216.bin \
files/msgdata/msg/narc_0217.bin \
files/msgdata/msg/narc_0218.bin \
files/msgdata/msg/narc_0219.bin \
files/msgdata/msg/narc_0220.bin \
files/msgdata/msg/narc_0221.bin \
files/msgdata/msg/narc_0222.bin \
files/msgdata/msg/narc_0223.bin \
files/msgdata/msg/narc_0224.bin \
files/msgdata/msg/narc_0225.bin \
files/msgdata/msg/narc_0226.bin \
files/msgdata/msg/narc_0227.bin \
files/msgdata/msg/narc_0228.bin \
files/msgdata/msg/narc_0229.bin \
files/msgdata/msg/narc_0230.bin \
files/msgdata/msg/narc_0231.bin \
files/msgdata/msg/narc_0232.bin \
files/msgdata/msg/narc_0233.bin \
files/msgdata/msg/narc_0234.bin \
files/msgdata/msg/narc_0235.bin \
files/msgdata/msg/narc_0236.bin \
files/msgdata/msg/narc_0237.bin \
files/msgdata/msg/narc_0238.bin \
files/msgdata/msg/narc_0239.bin \
files/msgdata/msg/narc_0240.bin \
files/msgdata/msg/narc_0241.bin \
files/msgdata/msg/narc_0242.bin \
files/msgdata/msg/narc_0243.bin \
files/msgdata/msg/narc_0244.bin \
files/msgdata/msg/narc_0245.bin \
files/msgdata/msg/narc_0246.bin \
files/msgdata/msg/narc_0247.bin \
files/msgdata/msg/narc_0248.bin \
files/msgdata/msg/narc_0249.bin \
files/msgdata/msg/narc_0250.bin \
files/msgdata/msg/narc_0251.bin \
files/msgdata/msg/narc_0252.bin \
files/msgdata/msg/narc_0253.bin \
files/msgdata/msg/narc_0254.bin \
files/msgdata/msg/narc_0255.bin \
files/msgdata/msg/narc_0256.bin \
files/msgdata/msg/narc_0257.bin \
files/msgdata/msg/narc_0258.bin \
files/msgdata/msg/narc_0259.bin \
files/msgdata/msg/narc_0260.bin \
files/msgdata/msg/narc_0261.bin \
files/msgdata/msg/narc_0262.bin \
files/msgdata/msg/narc_0263.bin \
files/msgdata/msg/narc_0264.bin \
files/msgdata/msg/narc_0265.bin \
files/msgdata/msg/narc_0266.bin \
files/msgdata/msg/narc_0267.bin \
files/msgdata/msg/narc_0268.bin \
files/msgdata/msg/narc_0269.bin \
files/msgdata/msg/narc_0270.bin \
files/msgdata/msg/narc_0271.bin \
files/msgdata/msg/narc_0272.bin \
files/msgdata/msg/narc_0273.bin \
files/msgdata/msg/narc_0274.bin \
files/msgdata/msg/narc_0275.bin \
files/msgdata/msg/narc_0276.bin \
files/msgdata/msg/narc_0277.bin \
files/msgdata/msg/narc_0278.bin \
files/msgdata/msg/narc_0279.bin \
files/msgdata/msg/narc_0280.bin \
files/msgdata/msg/narc_0281.bin \
files/msgdata/msg/narc_0282.bin \
files/msgdata/msg/narc_0283.bin \
files/msgdata/msg/narc_0284.bin \
files/msgdata/msg/narc_0285.bin \
files/msgdata/msg/narc_0286.bin \
files/msgdata/msg/narc_0287.bin \
files/msgdata/msg/narc_0288.bin \
files/msgdata/msg/narc_0289.bin \
files/msgdata/msg/narc_0290.bin \
files/msgdata/msg/narc_0291.bin \
files/msgdata/msg/narc_0292.bin \
files/msgdata/msg/narc_0293.bin \
files/msgdata/msg/narc_0294.bin \
files/msgdata/msg/narc_0295.bin \
files/msgdata/msg/narc_0296.bin \
files/msgdata/msg/narc_0297.bin \
files/msgdata/msg/narc_0298.bin \
files/msgdata/msg/narc_0299.bin \
files/msgdata/msg/narc_0300.bin \
files/msgdata/msg/narc_0301.bin \
files/msgdata/msg/narc_0302.bin \
files/msgdata/msg/narc_0303.bin \
files/msgdata/msg/narc_0304.bin \
files/msgdata/msg/narc_0305.bin \
files/msgdata/msg/narc_0306.bin \
files/msgdata/msg/narc_0307.bin \
files/msgdata/msg/narc_0308.bin \
files/msgdata/msg/narc_0309.bin \
files/msgdata/msg/narc_0310.bin \
files/msgdata/msg/narc_0311.bin \
files/msgdata/msg/narc_0312.bin \
files/msgdata/msg/narc_0313.bin \
files/msgdata/msg/narc_0314.bin \
files/msgdata/msg/narc_0315.bin \
files/msgdata/msg/narc_0316.bin \
files/msgdata/msg/narc_0317.bin \
files/msgdata/msg/narc_0318.bin \
files/msgdata/msg/narc_0319.bin \
files/msgdata/msg/narc_0320.bin \
files/msgdata/msg/narc_0321.bin \
files/msgdata/msg/narc_0322.bin \
files/msgdata/msg/narc_0323.bin \
files/msgdata/msg/narc_0324.bin \
files/msgdata/msg/narc_0325.bin \
files/msgdata/msg/narc_0326.bin \
files/msgdata/msg/narc_0327.bin \
files/msgdata/msg/narc_0328.bin \
files/msgdata/msg/narc_0329.bin \
files/msgdata/msg/narc_0330.bin \
files/msgdata/msg/narc_0331.bin \
files/msgdata/msg/narc_0332.bin \
files/msgdata/msg/narc_0333.bin \
files/msgdata/msg/narc_0334.bin \
files/msgdata/msg/narc_0335.bin \
files/msgdata/msg/narc_0336.bin \
files/msgdata/msg/narc_0337.bin \
files/msgdata/msg/narc_0338.bin \
files/msgdata/msg/narc_0339.bin \
files/msgdata/msg/narc_0340.bin \
files/msgdata/msg/narc_0341.bin \
files/msgdata/msg/narc_0342.bin \
files/msgdata/msg/narc_0343.bin \
files/msgdata/msg/narc_0344.bin \
files/msgdata/msg/narc_0345.bin \
files/msgdata/msg/narc_0346.bin \
files/msgdata/msg/narc_0347.bin \
files/msgdata/msg/narc_0348.bin \
files/msgdata/msg/narc_0349.bin \
files/msgdata/msg/narc_0350.bin \
files/msgdata/msg/narc_0351.bin \
files/msgdata/msg/narc_0352.bin \
files/msgdata/msg/narc_0353.bin \
files/msgdata/msg/narc_0354.bin \
files/msgdata/msg/narc_0355.bin \
files/msgdata/msg/narc_0356.bin \
files/msgdata/msg/narc_0357.bin \
files/msgdata/msg/narc_0358.bin \
files/msgdata/msg/narc_0359.bin \
files/msgdata/msg/narc_0360.bin \
files/msgdata/msg/narc_0361.bin \
files/msgdata/msg/narc_0362.bin \
files/msgdata/msg/narc_0363.bin \
files/msgdata/msg/narc_0364.bin \
files/msgdata/msg/narc_0365.bin \
files/msgdata/msg/narc_0366.bin \
files/msgdata/msg/narc_0367.bin \
files/msgdata/msg/narc_0368.bin \
files/msgdata/msg/narc_0369.bin \
files/msgdata/msg/narc_0370.bin \
files/msgdata/msg/narc_0371.bin \
files/msgdata/msg/narc_0372.bin \
files/msgdata/msg/narc_0373.bin \
files/msgdata/msg/narc_0374.bin \
files/msgdata/msg/narc_0375.bin \
files/msgdata/msg/narc_0376.bin \
files/msgdata/msg/narc_0377.bin \
files/msgdata/msg/narc_0378.bin \
files/msgdata/msg/narc_0379.bin \
files/msgdata/msg/narc_0380.bin \
files/msgdata/msg/narc_0381.bin \
files/msgdata/msg/narc_0382.bin \
files/msgdata/msg/narc_0383.bin \
files/msgdata/msg/narc_0384.bin \
files/msgdata/msg/narc_0385.bin \
files/msgdata/msg/narc_0386.bin \
files/msgdata/msg/narc_0387.bin \
files/msgdata/msg/narc_0388.bin \
files/msgdata/msg/narc_0389.bin \
files/msgdata/msg/narc_0390.bin \
files/msgdata/msg/narc_0391.bin \
files/msgdata/msg/narc_0392.bin \
files/msgdata/msg/narc_0393.bin \
files/msgdata/msg/narc_0394.bin \
files/msgdata/msg/narc_0395.bin \
files/msgdata/msg/narc_0396.bin \
files/msgdata/msg/narc_0397.bin \
files/msgdata/msg/narc_0398.bin \
files/msgdata/msg/narc_0399.bin \
files/msgdata/msg/narc_0400.bin \
files/msgdata/msg/narc_0401.bin \
files/msgdata/msg/narc_0402.bin \
files/msgdata/msg/narc_0403.bin \
files/msgdata/msg/narc_0404.bin \
files/msgdata/msg/narc_0405.bin \
files/msgdata/msg/narc_0406.bin \
files/msgdata/msg/narc_0407.bin \
files/msgdata/msg/narc_0408.bin \
files/msgdata/msg/narc_0409.bin \
files/msgdata/msg/narc_0410.bin \
files/msgdata/msg/narc_0411.bin \
files/msgdata/msg/narc_0412.bin \
files/msgdata/msg/narc_0413.bin \
files/msgdata/msg/narc_0414.bin \
files/msgdata/msg/narc_0415.bin \
files/msgdata/msg/narc_0416.bin \
files/msgdata/msg/narc_0417.bin \
files/msgdata/msg/narc_0418.bin \
files/msgdata/msg/narc_0419.bin \
files/msgdata/msg/narc_0420.bin \
files/msgdata/msg/narc_0421.bin \
files/msgdata/msg/narc_0422.bin \
files/msgdata/msg/narc_0423.bin \
files/msgdata/msg/narc_0424.bin \
files/msgdata/msg/narc_0425.bin \
files/msgdata/msg/narc_0426.bin \
files/msgdata/msg/narc_0427.bin \
files/msgdata/msg/narc_0428.bin \
files/msgdata/msg/narc_0429.bin \
files/msgdata/msg/narc_0430.bin \
files/msgdata/msg/narc_0431.bin \
files/msgdata/msg/narc_0432.bin \
files/msgdata/msg/narc_0433.bin \
files/msgdata/msg/narc_0434.bin \
files/msgdata/msg/narc_0435.bin \
files/msgdata/msg/narc_0436.bin \
files/msgdata/msg/narc_0437.bin \
files/msgdata/msg/narc_0438.bin \
files/msgdata/msg/narc_0439.bin \
files/msgdata/msg/narc_0440.bin \
files/msgdata/msg/narc_0441.bin \
files/msgdata/msg/narc_0442.bin \
files/msgdata/msg/narc_0443.bin \
files/msgdata/msg/narc_0444.bin \
files/msgdata/msg/narc_0445.bin \
files/msgdata/msg/narc_0446.bin \
files/msgdata/msg/narc_0447.bin \
files/msgdata/msg/narc_0448.bin \
files/msgdata/msg/narc_0449.bin \
files/msgdata/msg/narc_0450.bin \
files/msgdata/msg/narc_0451.bin \
files/msgdata/msg/narc_0452.bin \
files/msgdata/msg/narc_0453.bin \
files/msgdata/msg/narc_0454.bin \
files/msgdata/msg/narc_0455.bin \
files/msgdata/msg/narc_0456.bin \
files/msgdata/msg/narc_0457.bin \
files/msgdata/msg/narc_0458.bin \
files/msgdata/msg/narc_0459.bin \
files/msgdata/msg/narc_0460.bin \
files/msgdata/msg/narc_0461.bin \
files/msgdata/msg/narc_0462.bin \
files/msgdata/msg/narc_0463.bin \
files/msgdata/msg/narc_0464.bin \
files/msgdata/msg/narc_0465.bin \
files/msgdata/msg/narc_0466.bin \
files/msgdata/msg/narc_0467.bin \
files/msgdata/msg/narc_0468.bin \
files/msgdata/msg/narc_0469.bin \
files/msgdata/msg/narc_0470.bin \
files/msgdata/msg/narc_0471.bin \
files/msgdata/msg/narc_0472.bin \
files/msgdata/msg/narc_0473.bin \
files/msgdata/msg/narc_0474.bin \
files/msgdata/msg/narc_0475.bin \
files/msgdata/msg/narc_0476.bin \
files/msgdata/msg/narc_0477.bin \
files/msgdata/msg/narc_0478.bin \
files/msgdata/msg/narc_0479.bin \
files/msgdata/msg/narc_0480.bin \
files/msgdata/msg/narc_0481.bin \
files/msgdata/msg/narc_0482.bin \
files/msgdata/msg/narc_0483.bin \
files/msgdata/msg/narc_0484.bin \
files/msgdata/msg/narc_0485.bin \
files/msgdata/msg/narc_0486.bin \
files/msgdata/msg/narc_0487.bin \
files/msgdata/msg/narc_0488.bin \
files/msgdata/msg/narc_0489.bin \
files/msgdata/msg/narc_0490.bin \
files/msgdata/msg/narc_0491.bin \
files/msgdata/msg/narc_0492.bin \
files/msgdata/msg/narc_0493.bin \
files/msgdata/msg/narc_0494.bin \
files/msgdata/msg/narc_0495.bin \
files/msgdata/msg/narc_0496.bin \
files/msgdata/msg/narc_0497.bin \
files/msgdata/msg/narc_0498.bin \
files/msgdata/msg/narc_0499.bin \
files/msgdata/msg/narc_0500.bin \
files/msgdata/msg/narc_0501.bin \
files/msgdata/msg/narc_0502.bin \
files/msgdata/msg/narc_0503.bin \
files/msgdata/msg/narc_0504.bin \
files/msgdata/msg/narc_0505.bin \
files/msgdata/msg/narc_0506.bin \
files/msgdata/msg/narc_0507.bin \
files/msgdata/msg/narc_0508.bin \
files/msgdata/msg/narc_0509.bin \
files/msgdata/msg/narc_0510.bin \
files/msgdata/msg/narc_0511.bin \
files/msgdata/msg/narc_0512.bin \
files/msgdata/msg/narc_0513.bin \
files/msgdata/msg/narc_0514.bin \
files/msgdata/msg/narc_0515.bin \
files/msgdata/msg/narc_0516.bin \
files/msgdata/msg/narc_0517.bin \
files/msgdata/msg/narc_0518.bin \
files/msgdata/msg/narc_0519.bin \
files/msgdata/msg/narc_0520.bin \
files/msgdata/msg/narc_0521.bin \
files/msgdata/msg/narc_0522.bin \
files/msgdata/msg/narc_0523.bin \
files/msgdata/msg/narc_0524.bin \
files/msgdata/msg/narc_0525.bin \
files/msgdata/msg/narc_0526.bin \
files/msgdata/msg/narc_0527.bin \
files/msgdata/msg/narc_0528.bin \
files/msgdata/msg/narc_0529.bin \
files/msgdata/msg/narc_0530.bin \
files/msgdata/msg/narc_0531.bin \
files/msgdata/msg/narc_0532.bin \
files/msgdata/msg/narc_0533.bin \
files/msgdata/msg/narc_0534.bin \
files/msgdata/msg/narc_0535.bin \
files/msgdata/msg/narc_0536.bin \
files/msgdata/msg/narc_0537.bin \
files/msgdata/msg/narc_0538.bin \
files/msgdata/msg/narc_0539.bin \
files/msgdata/msg/narc_0540.bin \
files/msgdata/msg/narc_0541.bin \
files/msgdata/msg/narc_0542.bin \
files/msgdata/msg/narc_0543.bin \
files/msgdata/msg/narc_0544.bin \
files/msgdata/msg/narc_0545.bin \
files/msgdata/msg/narc_0546.bin \
files/msgdata/msg/narc_0547.bin \
files/msgdata/msg/narc_0548.bin \
files/msgdata/msg/narc_0549.bin \
files/msgdata/msg/narc_0550.bin \
files/msgdata/msg/narc_0551.bin \
files/msgdata/msg/narc_0552.bin \
files/msgdata/msg/narc_0553.bin \
files/msgdata/msg/narc_0554.bin \
files/msgdata/msg/narc_0555.bin \
files/msgdata/msg/narc_0556.bin \
files/msgdata/msg/narc_0557.bin \
files/msgdata/msg/narc_0558.bin \
files/msgdata/msg/narc_0559.bin \
files/msgdata/msg/narc_0560.bin \
files/msgdata/msg/narc_0561.bin \
files/msgdata/msg/narc_0562.bin \
files/msgdata/msg/narc_0563.bin \
files/msgdata/msg/narc_0564.bin \
files/msgdata/msg/narc_0565.bin \
files/msgdata/msg/narc_0566.bin \
files/msgdata/msg/narc_0567.bin \
files/msgdata/msg/narc_0568.bin \
files/msgdata/msg/narc_0569.bin \
files/msgdata/msg/narc_0570.bin \
files/msgdata/msg/narc_0571.bin \
files/msgdata/msg/narc_0572.bin \
files/msgdata/msg/narc_0573.bin \
files/msgdata/msg/narc_0574.bin \
files/msgdata/msg/narc_0575.bin \
files/msgdata/msg/narc_0576.bin \
files/msgdata/msg/narc_0577.bin \
files/msgdata/msg/narc_0578.bin \
files/msgdata/msg/narc_0579.bin \
files/msgdata/msg/narc_0580.bin \
files/msgdata/msg/narc_0581.bin \
files/msgdata/msg/narc_0582.bin \
files/msgdata/msg/narc_0583.bin \
files/msgdata/msg/narc_0584.bin \
files/msgdata/msg/narc_0585.bin \
files/msgdata/msg/narc_0586.bin \
files/msgdata/msg/narc_0587.bin \
files/msgdata/msg/narc_0588.bin \
files/msgdata/msg/narc_0589.bin \
files/msgdata/msg/narc_0590.bin \
files/msgdata/msg/narc_0591.bin \
files/msgdata/msg/narc_0592.bin \
files/msgdata/msg/narc_0593.bin \
files/msgdata/msg/narc_0594.bin \
files/msgdata/msg/narc_0595.bin \
files/msgdata/msg/narc_0596.bin \
files/msgdata/msg/narc_0597.bin \
files/msgdata/msg/narc_0598.bin \
files/msgdata/msg/narc_0599.bin \
files/msgdata/msg/narc_0600.bin \
files/msgdata/msg/narc_0601.bin \
files/msgdata/msg/narc_0602.bin \
files/msgdata/msg/narc_0603.bin \
files/msgdata/msg/narc_0604.bin \
files/msgdata/msg/narc_0605.bin \
files/msgdata/msg/narc_0606.bin \
files/msgdata/msg/narc_0607.bin \
files/msgdata/msg/narc_0608.bin \
files/msgdata/msg/narc_0609.bin \
files/msgdata/msg/narc_0610.bin \
files/msgdata/msg/narc_0611.bin \
files/msgdata/msg/narc_0612.bin \
files/msgdata/msg/narc_0613.bin \
files/msgdata/msg/narc_0614.bin \
files/msgdata/msg/narc_0615.bin \
files/msgdata/msg/narc_0616.bin \
files/msgdata/msg/narc_0617.bin \
files/msgdata/msg/narc_0618.bin \
files/msgdata/msg/narc_0619.bin \
files/msgdata/msg/narc_0620.bin \
files/msgdata/msg/narc_0621.bin \
files/msgdata/msg/narc_0622.bin \
files/msgdata/msg/narc_0623.bin
files/graphic/poketch.narc: \
files/graphic/poketch/narc_0010.NCGR.lz \
files/graphic/poketch/narc_0011.NSCR.lz
files/resource/eng/trial/trial.narc: \
files/resource/eng/trial/trial/narc_0000.NCLR \
files/resource/eng/trial/trial/narc_0001.NCGR \
files/resource/eng/trial/trial/narc_0002.NSCR \
files/resource/eng/trial/trial/narc_0003.NCLR \
files/resource/eng/trial/trial/narc_0004.NCGR \
files/resource/eng/trial/trial/narc_0005.NSCR \
files/resource/eng/trial/trial/narc_0006.NCLR \
files/resource/eng/trial/trial/narc_0007.NCGR
files/graphic/field_board.narc: \
files/graphic/field_board/narc_0000.NCGR \
files/graphic/field_board/narc_0001.NCLR \
files/graphic/field_board/narc_0002.NCGR \
files/graphic/field_board/narc_0003.NCGR \
files/graphic/field_board/narc_0004.NCGR \
files/graphic/field_board/narc_0005.NCGR \
files/graphic/field_board/narc_0006.NCGR \
files/graphic/field_board/narc_0007.NCGR \
files/graphic/field_board/narc_0008.NCGR \
files/graphic/field_board/narc_0009.NCGR \
files/graphic/field_board/narc_0010.NCGR \
files/graphic/field_board/narc_0011.NCGR \
files/graphic/field_board/narc_0012.NCGR \
files/graphic/field_board/narc_0013.NCGR \
files/graphic/field_board/narc_0014.NCGR \
files/graphic/field_board/narc_0015.NCGR \
files/graphic/field_board/narc_0016.NCGR \
files/graphic/field_board/narc_0017.NCGR \
files/graphic/field_board/narc_0018.NCGR \
files/graphic/field_board/narc_0019.NCGR \
files/graphic/field_board/narc_0020.NCGR \
files/graphic/field_board/narc_0021.NCGR \
files/graphic/field_board/narc_0022.NCGR \
files/graphic/field_board/narc_0023.NCGR \
files/graphic/field_board/narc_0024.NCGR \
files/graphic/field_board/narc_0025.NCGR \
files/graphic/field_board/narc_0026.NCGR \
files/graphic/field_board/narc_0027.NCGR \
files/graphic/field_board/narc_0028.NCGR \
files/graphic/field_board/narc_0029.NCGR \
files/graphic/field_board/narc_0030.NCGR \
files/graphic/field_board/narc_0031.NCGR \
files/graphic/field_board/narc_0032.NCGR \
files/graphic/field_board/narc_0033.NCGR \
files/graphic/field_board/narc_0034.NCGR \
files/graphic/field_board/narc_0035.NCGR \
files/graphic/field_board/narc_0036.NCGR \
files/graphic/field_board/narc_0037.NCGR \
files/graphic/field_board/narc_0038.NCGR \
files/graphic/field_board/narc_0039.NCGR \
files/graphic/field_board/narc_0040.NCGR \
files/graphic/field_board/narc_0041.NCGR \
files/graphic/field_board/narc_0042.NCGR \
files/graphic/field_board/narc_0043.NCGR \
files/graphic/field_board/narc_0044.NCGR \
files/graphic/field_board/narc_0045.NCGR \
files/graphic/field_board/narc_0046.NCGR \
files/graphic/field_board/narc_0047.NCGR \
files/graphic/field_board/narc_0048.NCGR \
files/graphic/field_board/narc_0049.NCGR \
files/graphic/field_board/narc_0050.NCGR \
files/graphic/field_board/narc_0051.NCGR
include files/msgdata/msg.mk
.PHONY: filesystem
filesystem: $(HOSTFS_FILES)
|