summaryrefslogtreecommitdiff
path: root/src/text/text_offsets.asm
blob: 71720a964f6f6532fd62f0af2e383f6df450f62c (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

const_value = 1

TextOffsets:: ; 34000 (d:4000)
	db $00,$00,$00
	text Text0001
	text Text0002
	text Text0003
	text Text0004
	text Text0005
	text Text0006
	text Text0007
	text Text0008
	text Text0009
	text Text000a
	text Text000b
	text Text000c
	text Text000d
	text Text000e
	text Text000f
	text Text0010
	text Text0011
	text Text0012
	text Text0013
	text Text0014
	text Text0015
	text Text0016
	text Text0017
	text Text0018
	text Text0019
	text Text001a
	text Text001b
	text Text001c
	text Text001d
	text Text001e
	text Text001f
	text Text0020
	text Text0021
	text Text0022
	text Text0023
	text Text0024
	text Text0025
	text Text0026
	text Text0027
	text Text0028
	text Text0029
	text Text002a
	text Text002b
	text Text002c
	text Text002d
	text Text002e
	text Text002f
	text Text0030
	text Text0031
	text Text0032
	text Text0033
	text Text0034
	text Text0035
	text Text0036
	text Text0037
	text Text0038
	text Text0039
	text Text003a
	text Text003b
	text Text003c
	text Text003d
	text Text003e
	text Text003f
	text Text0040
	text Text0041
	text Text0042
	text Text0043
	text Text0044
	text Text0045
	text Text0046
	text Text0047
	text Text0048
	text Text0049
	text Text004a
	text Text004b
	text Text004c
	text Text004d
	text Text004e
	text Text004f
	text Text0050
	text Text0051
	text Text0052
	text Text0053
	text Text0054
	text Text0055
	text Text0056
	text Text0057
	text Text0058
	text Text0059
	text Text005a
	text Text005b
	text Text005c
	text Text005d
	text Text005e
	text Text005f
	text Text0060
	text Text0061
	text Text0062
	text Text0063
	text Text0064
	text Text0065
	text Text0066
	text Text0067
	text Text0068
	text Text0069
	text Text006a
	text Text006b
	text Text006c
	text Text006d
	text Text006e
	text Text006f
	text Text0070
	text Text0071
	text Text0072
	text Text0073
	text Text0074
	text Text0075
	text Text0076
	text Text0077
	text Text0078
	text Text0079
	text Text007a
	text Text007b
	text Text007c
	text Text007d
	text Text007e
	text Text007f
	text Text0080
	text Text0081
	text Text0082
	text Text0083
	text Text0084
	text Text0085
	text Text0086
	text Text0087
	text Text0088
	text Text0089
	text Text008a
	text Text008b
	text Text008c
	text Text008d
	text Text008e
	text Text008f
	text Text0090
	text Text0091
	text Text0092
	text Text0093
	text Text0094
	text Text0095
	text Text0096
	text Text0097
	text Text0098
	text Text0099
	text Text009a
	text Text009b
	text Text009c
	text Text009d
	text Text009e
	text Text009f
	text Text00a0
	text Text00a1
	text Text00a2
	text Text00a3
	text Text00a4
	text Text00a5
	text Text00a6
	text Text00a7
	text Text00a8
	text Text00a9
	text Text00aa
	text Text00ab
	text Text00ac
	text Text00ad
	text Text00ae
	text Text00af
	text Text00b0
	text Text00b1
	text Text00b2
	text Text00b3
	text Text00b4
	text Text00b5
	text Text00b6
	text Text00b7
	text Text00b8
	text Text00b9
	text Text00ba
	text Text00bb
	text Text00bc
	text Text00bd
	text Text00be
	text Text00bf
	text Text00c0
	text Text00c1
	text Text00c2
	text Text00c3
	text Text00c4
	text Text00c5
	text Text00c6
	text Text00c7
	text Text00c8
	text Text00c9
	text Text00ca
	text Text00cb
	text Text00cc
	text Text00cd
	text Text00ce
	text Text00cf
	text Text00d0
	text Text00d1
	text Text00d2
	text Text00d3
	text Text00d4
	text Text00d5
	text Text00d6
	text Text00d7
	text Text00d8
	text Text00d9
	text Text00da
	text Text00db
	text Text00dc
	text Text00dd
	text Text00de
	text Text00df
	text Text00e0
	text Text00e1
	text Text00e2
	text Text00e3
	text Text00e4
	text Text00e5
	text Text00e6
	text Text00e7
	text Text00e8
	text Text00e9
	text Text00ea
	text Text00eb
	text Text00ec
	text Text00ed
	text Text00ee
	text Text00ef
	text Text00f0
	text Text00f1
	text Text00f2
	text Text00f3
	text Text00f4
	text Text00f5
	text Text00f6
	text Text00f7
	text Text00f8
	text Text00f9
	text Text00fa
	text Text00fb
	text Text00fc
	text Text00fd
	text Text00fe
	text Text00ff
	text Text0100
	text Text0101
	text Text0102
	text Text0103
	text Text0104
	text Text0105
	text Text0106
	text Text0107
	text Text0108
	text Text0109
	text Text010a
	text Text010b
	text Text010c
	text Text010d
	text Text010e
	text Text010f
	text Text0110
	text Text0111
	text Text0112
	text Text0113
	text Text0114
	text Text0115
	text Text0116
	text Text0117
	text Text0118
	text Text0119
	text Text011a
	text Text011b
	text Text011c
	text Text011d
	text Text011e
	text Text011f
	text Text0120
	text Text0121
	text Text0122
	text Text0123
	text Text0124
	text Text0125
	text Text0126
	text Text0127
	text Text0128
	text Text0129
	text Text012a
	text Text012b
	text Text012c
	text Text012d
	text Text012e
	text Text012f
	text Text0130
	text Text0131
	text Text0132
	text Text0133
	text Text0134
	text Text0135
	text Text0136
	text Text0137
	text Text0138
	text Text0139
	text Text013a
	text Text013b
	text Text013c
	text Text013d
	text Text013e
	text Text013f
	text Text0140
	text Text0141
	text Text0142
	text Text0143
	text Text0144
	text Text0145
	text Text0146
	text Text0147
	text Text0148
	text Text0149
	text Text014a
	text Text014b
	text Text014c
	text Text014d
	text Text014e
	text Text014f
	text Text0150
	text Text0151
	text Text0152
	text Text0153
	text Text0154
	text Text0155
	text Text0156
	text Text0157
	text Text0158
	text Text0159
	text Text015a
	text Text015b
	text Text015c
	text Text015d
	text Text015e
	text Text015f
	text Text0160
	text Text0161
	text Text0162
	text Text0163
	text Text0164
	text Text0165
	text Text0166
	text Text0167
	text Text0168
	text Text0169
	text Text016a
	text Text016b
	text Text016c
	text Text016d
	text Text016e
	text Text016f
	text Text0170
	text Text0171
	text Text0172
	text Text0173
	text Text0174
	text Text0175
	text Text0176
	text Text0177
	text Text0178
	text Text0179
	text Text017a
	text Text017b
	text Text017c
	text Text017d
	text Text017e
	text Text017f
	text Text0180
	text Text0181
	text Text0182
	text Text0183
	text Text0184
	text Text0185
	text Text0186
	text Text0187
	text Text0188
	text Text0189
	text Text018a
	text Text018b
	text Text018c
	text Text018d
	text Text018e
	text Text018f
	text Text0190
	text Text0191
	text Text0192
	text Text0193
	text Text0194
	text Text0195
	text Text0196
	text Text0197
	text Text0198
	text Text0199
	text Text019a
	text Text019b
	text Text019c
	text Text019d
	text Text019e
	text Text019f
	text Text01a0
	text Text01a1
	text Text01a2
	text Text01a3
	text Text01a4
	text Text01a5
	text Text01a6
	text Text01a7
	text Text01a8
	text Text01a9
	text Text01aa
	text Text01ab
	text Text01ac
	text Text01ad
	text Text01ae
	text Text01af
	text Text01b0
	text Text01b1
	text Text01b2
	text Text01b3
	text Text01b4
	text Text01b5
	text Text01b6
	text Text01b7
	text Text01b8
	text Text01b9
	text Text01ba
	text Text01bb
	text Text01bc
	text Text01bd
	text Text01be
	text Text01bf
	text Text01c0
	text Text01c1
	text Text01c2
	text Text01c3
	text Text01c4
	text Text01c5
	text Text01c6
	text Text01c7
	text Text01c8
	text Text01c9
	text Text01ca
	text Text01cb
	text Text01cc
	text Text01cd
	text Text01ce
	text Text01cf
	text Text01d0
	text Text01d1
	text Text01d2
	text Text01d3
	text Text01d4
	text Text01d5
	text Text01d6
	text Text01d7
	text Text01d8
	text Text01d9
	text Text01da
	text Text01db
	text Text01dc
	text Text01dd
	text Text01de
	text Text01df
	text Text01e0
	text Text01e1
	text Text01e2
	text Text01e3
	text Text01e4
	text Text01e5
	text Text01e6
	text Text01e7
	text Text01e8
	text Text01e9
	text Text01ea
	text Text01eb
	text Text01ec
	text Text01ed
	text Text01ee
	text Text01ef
	text Text01f0
	text Text01f1
	text Text01f2
	text Text01f3
	text Text01f4
	text Text01f5
	text Text01f6
	text Text01f7
	text Text01f8
	text Text01f9
	text Text01fa
	text Text01fb
	text Text01fc
	text Text01fd
	text Text01fe
	text Text01ff
	text Text0200
	text Text0201
	text Text0202
	text Text0203
	text Text0204
	text Text0205
	text Text0206
	text Text0207
	text Text0208
	text Text0209
	text Text020a
	text Text020b
	text Text020c
	text Text020d
	text Text020e
	text Text020f
	text Text0210
	text Text0211
	text Text0212
	text Text0213
	text Text0214
	text Text0215
	text Text0216
	text Text0217
	text Text0218
	text Text0219
	text Text021a
	text Text021b
	text Text021c
	text Text021d
	text Text021e
	text Text021f
	text Text0220
	text Text0221
	text Text0222
	text Text0223
	text Text0224
	text Text0225
	text Text0226
	text Text0227
	text Text0228
	text Text0229
	text Text022a
	text Text022b
	text Text022c
	text Text022d
	text Text022e
	text Text022f
	text Text0230
	text Text0231
	text Text0232
	text Text0233
	text Text0234
	text Text0235
	text Text0236
	text Text0237
	text Text0238
	text Text0239
	text Text023a
	text Text023b
	text Text023c
	text Text023d
	text Text023e
	text Text023f
	text Text0240
	text Text0241
	text Text0242
	text Text0243
	text Text0244
	text Text0245
	text Text0246
	text Text0247
	text Text0248
	text Text0249
	text Text024a
	text Text024b
	text Text024c
	text Text024d
	text Text024e
	text Text024f
	text Text0250
	text Text0251
	text Text0252
	text Text0253
	text Text0254
	text Text0255
	text Text0256
	text Text0257
	text Text0258
	text Text0259
	text Text025a
	text Text025b
	text Text025c
	text Text025d
	text Text025e
	text Text025f
	text Text0260
	text Text0261
	text Text0262
	text Text0263
	text Text0264
	text Text0265
	text Text0266
	text Text0267
	text Text0268
	text Text0269
	text Text026a
	text Text026b
	text Text026c
	text Text026d
	text Text026e
	text Text026f
	text Text0270
	text Text0271
	text Text0272
	text Text0273
	text Text0274
	text Text0275
	text Text0276
	text Text0277
	text Text0278
	text Text0279
	text Text027a
	text Text027b
	text Text027c
	text Text027d
	text Text027e
	text Text027f
	text Text0280
	text Text0281
	text Text0282
	text Text0283
	text Text0284
	text Text0285
	text Text0286
	text Text0287
	text Text0288
	text Text0289
	text Text028a
	text Text028b
	text Text028c
	text Text028d
	text Text028e
	text Text028f
	text Text0290
	text Text0291
	text Text0292
	text Text0293
	text Text0294
	text Text0295
	text Text0296
	text Text0297
	text Text0298
	text Text0299
	text Text029a
	text Text029b
	text Text029c
	text Text029d
	text Text029e
	text Text029f
	text Text02a0
	text Text02a1
	text Text02a2
	text Text02a3
	text Text02a4
	text Text02a5
	text Text02a6
	text Text02a7
	text Text02a8
	text Text02a9
	text Text02aa
	text Text02ab
	text Text02ac
	text Text02ad
	text Text02ae
	text Text02af
	text Text02b0
	text Text02b1
	text Text02b2
	text Text02b3
	text Text02b4
	text Text02b5
	text Text02b6
	text Text02b7
	text Text02b8
	text Text02b9
	text Text02ba
	text Text02bb
	text Text02bc
	text Text02bd
	text Text02be
	text Text02bf
	text Text02c0
	text Text02c1
	text Text02c2
	text Text02c3
	text Text02c4
	text Text02c5
	text Text02c6
	text Text02c7
	text Text02c8
	text Text02c9
	text Text02ca
	text Text02cb
	text Text02cc
	text Text02cd
	text Text02ce
	text Text02cf
	text Text02d0
	text Text02d1
	text Text02d2
	text Text02d3
	text Text02d4
	text Text02d5
	text Text02d6
	text Text02d7
	text Text02d8
	text Text02d9
	text Text02da
	text Text02db
	text Text02dc
	text Text02dd
	text Text02de
	text Text02df
	text Text02e0
	text Text02e1
	text Text02e2
	text Text02e3
	text Text02e4
	text Text02e5
	text Text02e6
	text Text02e7
	text Text02e8
	text Text02e9
	text Text02ea
	text Text02eb
	text Text02ec
	text Text02ed
	text Text02ee
	text Text02ef
	text Text02f0
	text Text02f1
	text Text02f2
	text Text02f3
	text Text02f4
	text Text02f5
	text Text02f6
	text Text02f7
	text Text02f8
	text Text02f9
	text Text02fa
	text Text02fb
	text Text02fc
	text Text02fd
	text Text02fe
	text Text02ff
	text Text0300
	text Text0301
	text Text0302
	text Text0303
	text Text0304
	text Text0305
	text Text0306
	text Text0307
	text Text0308
	text Text0309
	text Text030a
	text Text030b
	text Text030c
	text Text030d
	text Text030e
	text Text030f
	text Text0310
	text Text0311
	text Text0312
	text Text0313
	text Text0314
	text Text0315
	text Text0316
	text Text0317
	text Text0318
	text Text0319
	text Text031a
	text Text031b
	text Text031c
	text Text031d
	text Text031e
	text Text031f
	text Text0320
	text Text0321
	text Text0322
	text Text0323
	text Text0324
	text Text0325
	text Text0326
	text Text0327
	text Text0328
	text Text0329
	text Text032a
	text Text032b
	text Text032c
	text Text032d
	text Text032e
	text Text032f
	text Text0330
	text Text0331
	text Text0332
	text Text0333
	text Text0334
	text Text0335
	text Text0336
	text Text0337
	text Text0338
	text Text0339
	text Text033a
	text Text033b
	text Text033c
	text Text033d
	text Text033e
	text Text033f
	text Text0340
	text Text0341
	text Text0342
	text Text0343
	text Text0344
	text Text0345
	text Text0346
	text Text0347
	text Text0348
	text Text0349
	text Text034a
	text Text034b
	text Text034c
	text Text034d
	text Text034e
	text Text034f
	text Text0350
	text Text0351
	text Text0352
	text Text0353
	text Text0354
	text Text0355
	text Text0356
	text Text0357
	text Text0358
	text Text0359
	text Text035a
	text Text035b
	text Text035c
	text Text035d
	text Text035e
	text Text035f
	text Text0360
	text Text0361
	text Text0362
	text Text0363
	text Text0364
	text Text0365
	text Text0366
	text Text0367
	text Text0368
	text Text0369
	text Text036a
	text Text036b
	text Text036c
	text Text036d
	text Text036e
	text Text036f
	text Text0370
	text Text0371
	text Text0372
	text Text0373
	text Text0374
	text Text0375
	text Text0376
	text Text0377
	text Text0378
	text Text0379
	text Text037a
	text Text037b
	text Text037c
	text Text037d
	text Text037e
	text Text037f
	text Text0380
	text Text0381
	text Text0382
	text Text0383
	text Text0384
	text Text0385
	text Text0386
	text Text0387
	text Text0388
	text Text0389
	text Text038a
	text Text038b
	text Text038c
	text Text038d
	text Text038e
	text Text038f
	text Text0390
	text Text0391
	text Text0392
	text Text0393
	text Text0394
	text Text0395
	text Text0396
	text Text0397
	text Text0398
	text Text0399
	text Text039a
	text Text039b
	text Text039c
	text Text039d
	text Text039e
	text Text039f
	text Text03a0
	text Text03a1
	text Text03a2
	text Text03a3
	text Text03a4
	text Text03a5
	text Text03a6
	text Text03a7
	text Text03a8
	text Text03a9
	text Text03aa
	text Text03ab
	text Text03ac
	text Text03ad
	text Text03ae
	text Text03af
	text Text03b0
	text Text03b1
	text Text03b2
	text Text03b3
	text Text03b4
	text Text03b5
	text Text03b6
	text Text03b7
	text Text03b8
	text Text03b9
	text Text03ba
	text Text03bb
	text Text03bc
	text Text03bd
	text Text03be
	text Text03bf
	text Text03c0
	text Text03c1
	text Text03c2
	text Text03c3
	text Text03c4
	text Text03c5
	text Text03c6
	text Text03c7
	text Text03c8
	text Text03c9
	text Text03ca
	text Text03cb
	text Text03cc
	text Text03cd
	text Text03ce
	text Text03cf
	text Text03d0
	text Text03d1
	text Text03d2
	text Text03d3
	text Text03d4
	text Text03d5
	text Text03d6
	text Text03d7
	text Text03d8
	text Text03d9
	text Text03da
	text Text03db
	text Text03dc
	text Text03dd
	text Text03de
	text Text03df
	text Text03e0
	text Text03e1
	text Text03e2
	text Text03e3
	text Text03e4
	text Text03e5
	text Text03e6
	text Text03e7
	text Text03e8
	text Text03e9
	text Text03ea
	text Text03eb
	text Text03ec
	text Text03ed
	text Text03ee
	text Text03ef
	text Text03f0
	text Text03f1
	text Text03f2
	text Text03f3
	text Text03f4
	text Text03f5
	text Text03f6
	text Text03f7
	text Text03f8
	text Text03f9
	text Text03fa
	text Text03fb
	text Text03fc
	text Text03fd
	text Text03fe
	text Text03ff
	text Text0400
	text Text0401
	text Text0402
	text Text0403
	text Text0404
	text Text0405
	text Text0406
	text Text0407
	text Text0408
	text Text0409
	text Text040a
	text Text040b
	text Text040c
	text Text040d
	text Text040e
	text Text040f
	text Text0410
	text Text0411
	text Text0412
	text Text0413
	text Text0414
	text Text0415
	text Text0416
	text Text0417
	text Text0418
	text Text0419
	text Text041a
	text Text041b
	text Text041c
	text Text041d
	text Text041e
	text Text041f
	text Text0420
	text Text0421
	text Text0422
	text Text0423
	text Text0424
	text Text0425
	text Text0426
	text Text0427
	text Text0428
	text Text0429
	text Text042a
	text Text042b
	text Text042c
	text Text042d
	text Text042e
	text Text042f
	text Text0430
	text Text0431
	text Text0432
	text Text0433
	text Text0434
	text Text0435
	text Text0436
	text Text0437
	text Text0438
	text Text0439
	text Text043a
	text Text043b
	text Text043c
	text Text043d
	text Text043e
	text Text043f
	text Text0440
	text Text0441
	text Text0442
	text Text0443
	text Text0444
	text Text0445
	text Text0446
	text Text0447
	text Text0448
	text Text0449
	text Text044a
	text Text044b
	text Text044c
	text Text044d
	text Text044e
	text Text044f
	text Text0450
	text Text0451
	text Text0452
	text Text0453
	text Text0454
	text Text0455
	text Text0456
	text Text0457
	text Text0458
	text Text0459
	text Text045a
	text Text045b
	text Text045c
	text Text045d
	text Text045e
	text Text045f
	text Text0460
	text Text0461
	text Text0462
	text Text0463
	text Text0464
	text Text0465
	text Text0466
	text Text0467
	text Text0468
	text Text0469
	text Text046a
	text Text046b
	text Text046c
	text Text046d
	text Text046e
	text Text046f
	text Text0470
	text Text0471
	text Text0472
	text Text0473
	text Text0474
	text Text0475
	text Text0476
	text Text0477
	text Text0478
	text Text0479
	text Text047a
	text Text047b
	text Text047c
	text Text047d
	text Text047e
	text Text047f
	text Text0480
	text Text0481
	text Text0482
	text Text0483
	text Text0484
	text Text0485
	text Text0486
	text Text0487
	text Text0488
	text Text0489
	text Text048a
	text Text048b
	text Text048c
	text Text048d
	text Text048e
	text Text048f
	text Text0490
	text Text0491
	text Text0492
	text Text0493
	text Text0494
	text Text0495
	text Text0496
	text Text0497
	text Text0498
	text Text0499
	text Text049a
	text Text049b
	text Text049c
	text Text049d
	text Text049e
	text Text049f
	text Text04a0
	text Text04a1
	text Text04a2
	text Text04a3
	text Text04a4
	text Text04a5
	text Text04a6
	text Text04a7
	text Text04a8
	text Text04a9
	text Text04aa
	text Text04ab
	text Text04ac
	text Text04ad
	text Text04ae
	text Text04af
	text Text04b0
	text Text04b1
	text Text04b2
	text Text04b3
	text Text04b4
	text Text04b5
	text Text04b6
	text Text04b7
	text Text04b8
	text Text04b9
	text Text04ba
	text Text04bb
	text Text04bc
	text Text04bd
	text Text04be
	text Text04bf
	text Text04c0
	text Text04c1
	text Text04c2
	text Text04c3
	text Text04c4
	text Text04c5
	text Text04c6
	text Text04c7
	text Text04c8
	text Text04c9
	text Text04ca
	text Text04cb
	text Text04cc
	text Text04cd
	text Text04ce
	text Text04cf
	text Text04d0
	text Text04d1
	text Text04d2
	text Text04d3
	text Text04d4
	text Text04d5
	text Text04d6
	text Text04d7
	text Text04d8
	text Text04d9
	text Text04da
	text Text04db
	text Text04dc
	text Text04dd
	text Text04de
	text Text04df
	text Text04e0
	text Text04e1
	text Text04e2
	text Text04e3
	text Text04e4
	text Text04e5
	text Text04e6
	text Text04e7
	text Text04e8
	text Text04e9
	text Text04ea
	text Text04eb
	text Text04ec
	text Text04ed
	text Text04ee
	text Text04ef
	text Text04f0
	text Text04f1
	text Text04f2
	text Text04f3
	text Text04f4
	text Text04f5
	text Text04f6
	text Text04f7
	text Text04f8
	text Text04f9
	text Text04fa
	text Text04fb
	text Text04fc
	text Text04fd
	text Text04fe
	text Text04ff
	text Text0500
	text Text0501
	text Text0502
	text Text0503
	text Text0504
	text Text0505
	text Text0506
	text Text0507
	text Text0508
	text Text0509
	text Text050a
	text Text050b
	text Text050c
	text Text050d
	text Text050e
	text Text050f
	text Text0510
	text Text0511
	text Text0512
	text Text0513
	text Text0514
	text Text0515
	text Text0516
	text Text0517
	text Text0518
	text Text0519
	text Text051a
	text Text051b
	text Text051c
	text Text051d
	text Text051e
	text Text051f
	text Text0520
	text Text0521
	text Text0522
	text Text0523
	text Text0524
	text Text0525
	text Text0526
	text Text0527
	text Text0528
	text Text0529
	text Text052a
	text Text052b
	text Text052c
	text Text052d
	text Text052e
	text Text052f
	text Text0530
	text Text0531
	text Text0532
	text Text0533
	text Text0534
	text Text0535
	text Text0536
	text Text0537
	text Text0538
	text Text0539
	text Text053a
	text Text053b
	text Text053c
	text Text053d
	text Text053e
	text Text053f
	text Text0540
	text Text0541
	text Text0542
	text Text0543
	text Text0544
	text Text0545
	text Text0546
	text Text0547
	text Text0548
	text Text0549
	text Text054a
	text Text054b
	text Text054c
	text Text054d
	text Text054e
	text Text054f
	text Text0550
	text Text0551
	text Text0552
	text Text0553
	text Text0554
	text Text0555
	text Text0556
	text Text0557
	text Text0558
	text Text0559
	text Text055a
	text Text055b
	text Text055c
	text Text055d
	text Text055e
	text Text055f
	text Text0560
	text Text0561
	text Text0562
	text Text0563
	text Text0564
	text Text0565
	text Text0566
	text Text0567
	text Text0568
	text Text0569
	text Text056a
	text Text056b
	text Text056c
	text Text056d
	text Text056e
	text Text056f
	text Text0570
	text Text0571
	text Text0572
	text Text0573
	text Text0574
	text Text0575
	text Text0576
	text Text0577
	text Text0578
	text Text0579
	text Text057a
	text Text057b
	text Text057c
	text Text057d
	text Text057e
	text Text057f
	text Text0580
	text Text0581
	text Text0582
	text Text0583
	text Text0584
	text Text0585
	text Text0586
	text Text0587
	text Text0588
	text Text0589
	text Text058a
	text Text058b
	text Text058c
	text Text058d
	text Text058e
	text Text058f
	text Text0590
	text Text0591
	text Text0592
	text Text0593
	text Text0594
	text Text0595
	text Text0596
	text Text0597
	text Text0598
	text Text0599
	text Text059a
	text Text059b
	text Text059c
	text Text059d
	text Text059e
	text Text059f
	text Text05a0
	text Text05a1
	text Text05a2
	text Text05a3
	text Text05a4
	text Text05a5
	text Text05a6
	text Text05a7
	text Text05a8
	text Text05a9
	text Text05aa
	text Text05ab
	text Text05ac
	text Text05ad
	text Text05ae
	text Text05af
	text Text05b0
	text Text05b1
	text Text05b2
	text Text05b3
	text Text05b4
	text Text05b5
	text Text05b6
	text Text05b7
	text Text05b8
	text Text05b9
	text Text05ba
	text Text05bb
	text Text05bc
	text Text05bd
	text Text05be
	text Text05bf
	text Text05c0
	text Text05c1
	text Text05c2
	text Text05c3
	text Text05c4
	text Text05c5
	text Text05c6
	text Text05c7
	text Text05c8
	text Text05c9
	text Text05ca
	text Text05cb
	text Text05cc
	text Text05cd
	text Text05ce
	text Text05cf
	text Text05d0
	text Text05d1
	text Text05d2
	text Text05d3
	text Text05d4
	text Text05d5
	text Text05d6
	text Text05d7
	text Text05d8
	text Text05d9
	text Text05da
	text Text05db
	text Text05dc
	text Text05dd
	text Text05de
	text Text05df
	text Text05e0
	text Text05e1
	text Text05e2
	text Text05e3
	text Text05e4
	text Text05e5
	text Text05e6
	text Text05e7
	text Text05e8
	text Text05e9
	text Text05ea
	text Text05eb
	text Text05ec
	text Text05ed
	text Text05ee
	text Text05ef
	text Text05f0
	text Text05f1
	text Text05f2
	text Text05f3
	text Text05f4
	text Text05f5
	text Text05f6
	text Text05f7
	text Text05f8
	text Text05f9
	text Text05fa
	text Text05fb
	text Text05fc
	text Text05fd
	text Text05fe
	text Text05ff
	text Text0600
	text Text0601
	text Text0602
	text Text0603
	text Text0604
	text Text0605
	text Text0606
	text Text0607
	text Text0608
	text Text0609
	text Text060a
	text Text060b
	text Text060c
	text Text060d
	text Text060e
	text Text060f
	text Text0610
	text Text0611
	text Text0612
	text Text0613
	text Text0614
	text Text0615
	text Text0616
	text Text0617
	text Text0618
	text Text0619
	text Text061a
	text Text061b
	text Text061c
	text Text061d
	text Text061e
	text Text061f
	text Text0620
	text Text0621
	text Text0622
	text Text0623
	text Text0624
	text Text0625
	text Text0626
	text Text0627
	text Text0628
	text Text0629
	text Text062a
	text Text062b
	text Text062c
	text Text062d
	text Text062e
	text Text062f
	text Text0630
	text Text0631
	text Text0632
	text Text0633
	text Text0634
	text Text0635
	text Text0636
	text Text0637
	text Text0638
	text Text0639
	text Text063a
	text Text063b
	text Text063c
	text Text063d
	text Text063e
	text Text063f
	text Text0640
	text Text0641
	text Text0642
	text Text0643
	text Text0644
	text Text0645
	text Text0646
	text Text0647
	text Text0648
	text Text0649
	text Text064a
	text Text064b
	text Text064c
	text Text064d
	text Text064e
	text Text064f
	text Text0650
	text Text0651
	text Text0652
	text Text0653
	text Text0654
	text Text0655
	text Text0656
	text Text0657
	text Text0658
	text Text0659
	text Text065a
	text Text065b
	text Text065c
	text Text065d
	text Text065e
	text Text065f
	text Text0660
	text Text0661
	text Text0662
	text Text0663
	text Text0664
	text Text0665
	text Text0666
	text Text0667
	text Text0668
	text Text0669
	text Text066a
	text Text066b
	text Text066c
	text Text066d
	text Text066e
	text Text066f
	text Text0670
	text Text0671
	text Text0672
	text Text0673
	text Text0674
	text Text0675
	text Text0676
	text Text0677
	text Text0678
	text Text0679
	text Text067a
	text Text067b
	text Text067c
	text Text067d
	text Text067e
	text Text067f
	text Text0680
	text Text0681
	text Text0682
	text Text0683
	text Text0684
	text Text0685
	text Text0686
	text Text0687
	text Text0688
	text Text0689
	text Text068a
	text Text068b
	text Text068c
	text Text068d
	text Text068e
	text Text068f
	text Text0690
	text Text0691
	text Text0692
	text Text0693
	text Text0694
	text Text0695
	text Text0696
	text Text0697
	text Text0698
	text Text0699
	text Text069a
	text Text069b
	text Text069c
	text Text069d
	text Text069e
	text Text069f
	text Text06a0
	text Text06a1
	text Text06a2
	text Text06a3
	text Text06a4
	text Text06a5
	text Text06a6
	text Text06a7
	text Text06a8
	text Text06a9
	text Text06aa
	text Text06ab
	text Text06ac
	text Text06ad
	text Text06ae
	text Text06af
	text Text06b0
	text Text06b1
	text Text06b2
	text Text06b3
	text Text06b4
	text Text06b5
	text Text06b6
	text Text06b7
	text Text06b8
	text Text06b9
	text Text06ba
	text Text06bb
	text Text06bc
	text Text06bd
	text Text06be
	text Text06bf
	text Text06c0
	text Text06c1
	text Text06c2
	text Text06c3
	text Text06c4
	text Text06c5
	text Text06c6
	text Text06c7
	text Text06c8
	text Text06c9
	text Text06ca
	text Text06cb
	text Text06cc
	text Text06cd
	text Text06ce
	text Text06cf
	text Text06d0
	text Text06d1
	text Text06d2
	text Text06d3
	text Text06d4
	text Text06d5
	text Text06d6
	text Text06d7
	text Text06d8
	text Text06d9
	text Text06da
	text Text06db
	text Text06dc
	text Text06dd
	text Text06de
	text Text06df
	text Text06e0
	text Text06e1
	text Text06e2
	text Text06e3
	text Text06e4
	text Text06e5
	text Text06e6
	text Text06e7
	text Text06e8
	text Text06e9
	text Text06ea
	text Text06eb
	text Text06ec
	text Text06ed
	text Text06ee
	text Text06ef
	text Text06f0
	text Text06f1
	text Text06f2
	text Text06f3
	text Text06f4
	text Text06f5
	text Text06f6
	text Text06f7
	text Text06f8
	text Text06f9
	text Text06fa
	text Text06fb
	text Text06fc
	text Text06fd
	text Text06fe
	text Text06ff
	text Text0700
	text Text0701
	text Text0702
	text Text0703
	text Text0704
	text Text0705
	text Text0706
	text Text0707
	text Text0708
	text Text0709
	text Text070a
	text Text070b
	text Text070c
	text Text070d
	text Text070e
	text Text070f
	text Text0710
	text Text0711
	text Text0712
	text Text0713
	text Text0714
	text Text0715
	text Text0716
	text Text0717
	text Text0718
	text Text0719
	text Text071a
	text Text071b
	text Text071c
	text Text071d
	text Text071e
	text Text071f
	text Text0720
	text Text0721
	text Text0722
	text Text0723
	text Text0724
	text Text0725
	text Text0726
	text Text0727
	text Text0728
	text Text0729
	text Text072a
	text Text072b
	text Text072c
	text Text072d
	text Text072e
	text Text072f
	text Text0730
	text Text0731
	text Text0732
	text Text0733
	text Text0734
	text Text0735
	text Text0736
	text Text0737
	text Text0738
	text Text0739
	text Text073a
	text Text073b
	text Text073c
	text Text073d
	text Text073e
	text Text073f
	text Text0740
	text Text0741
	text Text0742
	text Text0743
	text Text0744
	text Text0745
	text Text0746
	text Text0747
	text Text0748
	text Text0749
	text Text074a
	text Text074b
	text Text074c
	text Text074d
	text Text074e
	text Text074f
	text Text0750
	text Text0751
	text Text0752
	text Text0753
	text Text0754
	text Text0755
	text Text0756
	text Text0757
	text Text0758
	text Text0759
	text Text075a
	text Text075b
	text Text075c
	text Text075d
	text Text075e
	text Text075f
	text Text0760
	text Text0761
	text Text0762
	text Text0763
	text Text0764
	text Text0765
	text Text0766
	text Text0767
	text Text0768
	text Text0769
	text Text076a
	text Text076b
	text Text076c
	text Text076d
	text Text076e
	text Text076f
	text Text0770
	text Text0771
	text Text0772
	text Text0773
	text Text0774
	text Text0775
	text Text0776
	text Text0777
	text Text0778
	text Text0779
	text Text077a
	text Text077b
	text Text077c
	text Text077d
	text Text077e
	text Text077f
	text Text0780
	text Text0781
	text Text0782
	text Text0783
	text Text0784
	text Text0785
	text Text0786
	text Text0787
	text Text0788
	text Text0789
	text Text078a
	text Text078b
	text Text078c
	text Text078d
	text Text078e
	text Text078f
	text Text0790
	text Text0791
	text Text0792
	text Text0793
	text Text0794
	text Text0795
	text Text0796
	text Text0797
	text Text0798
	text Text0799
	text Text079a
	text Text079b
	text Text079c
	text Text079d
	text Text079e
	text Text079f
	text Text07a0
	text Text07a1
	text Text07a2
	text Text07a3
	text Text07a4
	text Text07a5
	text Text07a6
	text Text07a7
	text Text07a8
	text Text07a9
	text Text07aa
	text Text07ab
	text Text07ac
	text Text07ad
	text Text07ae
	text Text07af
	text Text07b0
	text Text07b1
	text Text07b2
	text Text07b3
	text Text07b4
	text Text07b5
	text Text07b6
	text Text07b7
	text Text07b8
	text Text07b9
	text Text07ba
	text Text07bb
	text Text07bc
	text Text07bd
	text Text07be
	text Text07bf
	text Text07c0
	text Text07c1
	text Text07c2
	text Text07c3
	text Text07c4
	text Text07c5
	text Text07c6
	text Text07c7
	text Text07c8
	text Text07c9
	text Text07ca
	text Text07cb
	text Text07cc
	text Text07cd
	text Text07ce
	text Text07cf
	text Text07d0
	text Text07d1
	text Text07d2
	text Text07d3
	text Text07d4
	text Text07d5
	text Text07d6
	text Text07d7
	text Text07d8
	text Text07d9
	text Text07da
	text Text07db
	text Text07dc
	text Text07dd
	text Text07de
	text Text07df
	text Text07e0
	text Text07e1
	text Text07e2
	text Text07e3
	text Text07e4
	text Text07e5
	text Text07e6
	text Text07e7
	text Text07e8
	text Text07e9
	text Text07ea
	text Text07eb
	text Text07ec
	text Text07ed
	text Text07ee
	text Text07ef
	text Text07f0
	text Text07f1
	text Text07f2
	text Text07f3
	text Text07f4
	text Text07f5
	text Text07f6
	text Text07f7
	text Text07f8
	text Text07f9
	text Text07fa
	text Text07fb
	text GrassEnergyName
	text GrassEnergyDescription
	text FireEnergyName
	text FireEnergyDescription
	text WaterEnergyName
	text WaterEnergyDescription
	text LightningEnergyName
	text LightningEnergyDescription
	text FightingEnergyName
	text FightingEnergyDescription
	text PsychicEnergyName
	text PsychicEnergyDescription
	text DoubleColorlessEnergyName
	text DoubleColorlessEnergyDescription
	text BulbasaurName
	text LeechSeedName
	text BulbasaursLeechSeedDescription
	text BulbasaurKind
	text BulbasaurDescription
	text IvysaurName
	text VineWhipName
	text PoisonPowderName
	text InflictPoisonDescription
	text IvysaurDescription
	text VenusaurName
	text SolarPowerName
	text SolarPowerDescription
	text SolarPowerDescriptionCont
	text MegaDrainName
	text VenusaursMegaDrainDescription
	text VenusaursMegaDrainDescriptionCont
	text Venusaur1Description
	text EnergyTransName
	text EnergyTransDescription
	text SolarBeamName
	text Venusaur2Description
	text CaterpieName
	text StringShotName
	text MayInflictParalysisDescription
	text CaterpieKind
	text CaterpieDescription
	text MetapodName
	text StiffenName
	text MetapodsStiffenDescription
	text StunSporeName
	text MetapodKind
	text MetapodDescription
	text ButterfreeName
	text WhirlwindName
	text WhirlwindDescription
	text ButterfreesMegaDrainDescription
	text ButterfreesMegaDrainDescriptionCont
	text ButterfreeKind
	text ButterfreeDescription
	text WeedleName
	text PoisonStingName
	text MayInflictPoisonDescription
	text WeedleKind
	text WeedleDescription
	text KakunaName
	text KakunasStiffenDescription
	text KakunaDescription
	text BeedrillName
	text TwineedleName
	text DoubleAttackX30Description
	text BeedrillKind
	text BeedrillDescription
	text EkansName
	text SpitPoisonName
	text WrapName
	text EkansKind
	text EkansDescription
	text ArbokName
	text TerrorStrikeName
	text TerrorStrikeDescription
	text PoisonFangName
	text ArbokKind
	text ArbokDescription
	text NidoranFName
	text FurySweepesName
	text TripleAttackX10Description
	text CallforFamilyName
	text NidoranFsCallforFamilyDescription
	text NidoranFKind
	text NidoranFDescription
	text NidorinaName
	text SupersonicName
	text MayInflictConfusionDescription
	text DoubleKickName
	text NidorinaDescription
	text NidoqueenName
	text BoyfriendsName
	text BoyfriendsDescription
	text MegaPunchName
	text NidoqueenKind
	text NidoqueenDescription
	text NidoranMName
	text HornHazardName
	text MayDoNothingDescription
	text NidoranMDescription
	text NidorinoName
	text HornDrillName
	text NidorinoDescription
	text NidokingName
	text ThrashName
	text ThrashDescriptipn
	text ToxicName
	text ToxicDescription
	text NidokingDescription
	text ZubatName
	text LeechLifeName
	text ZubatsLeechLifeDescription
	text ZubatKind
	text ZubatDescription
	text GolbatName
	text WingAttackName
	text GolbatsLeechLifeDescription
	text GolbatDescription
	text OddishName
	text SproutName
	text SproutDescription
	text OddishKind
	text OddishDescription
	text GloomName
	text FoulOdorName
	text FoulOdorDescription
	text GloomDescription
	text VileplumeName
	text HealName
	text HealDescription
	text PetalDanceName
	text PetalDanceDescription
	text VileplumeKind
	text VileplumeDescription
	text ParasName
	text ScratchName
	text SporeName
	text InflictSleepDescription
	text ParasKind
	text ParasDescription
	text ParasectName
	text SlashName
	text ParasectDescription
	text VenonatName
	text VenonatLeechLifeDescription
	text VenonatKind
	text VenonatDescription
	text VenomothName
	text ShiftName
	text ShiftDescription
	text VenomPowderName
	text VenomPowderDescription
	text VenomothKind
	text VenomothDescription
	text BellsproutName
	text BellsproutsCallforFamilyDescription
	text BellsproutDescription
	text WeepinbellName
	text RazorLeafName
	text WeepinbellKind
	text WeepinbellDescription
	text VictreebelName
	text LureName
	text VictreebelsLureDescription
	text AcidName
	text VictreebelsAcidDescription
	text VictreebelDescription
	text GrimerName
	text NastyGooName
	text MinimizeName
	text GrimersMinimizeDescription
	text GrimerKind
	text GrimerDescription
	text MukName
	text ToxicGasName
	text ToxicGasDescription
	text MukDescription
	text ExeggcuteName
	text HypnosisName
	text ExeggcutesLeechSeedDescription
	text ExeggcuteKind
	text ExeggcuteDescription
	text ExeggutorName
	text TeleportName
	text TeleportDescription
	text BigEggsplosionName
	text BigEggsplosionDescription
	text ExeggutorKind
	text ExeggutorDescription
	text KoffingName
	text FoulGasName
	text FoulGasDescription
	text KoffingKind
	text KoffingDescription
	text WeezingName
	text SmogName
	text SelfdestructName
	text WeezingsSelfdestructDescription
	text WeezingDescription
	text TangelaName
	text BindName
	text TangelaKind
	text Tangela1Description
	text PoisonWhipName
	text Tangela2Description
	text ScytherName
	text SwordsDanceName
	text SwordsDanceDescription
	text ScytherKind
	text ScytherDescription
	text PinsirName
	text IronGripName
	text GuillotineName
	text PinsirKind
	text PinsirDescription
	text CharmanderName
	text EmberName
	text EmberDescription
	text CharmanderKind
	text CharmanderDescription
	text CharmeleonName
	text FlamethrowerName
	text CharmeleonsFlamethrowerDescription
	text CharmeleonKind
	text CharmeleonDescription
	text CharizardName
	text EnergyBurnName
	text EnergyBurnDescription
	text FireSpinName
	text FireSpinDescription
	text CharizardDescription
	text VulpixName
	text ConfuseRayName
	text VulpixKind
	text VulpixDescription
	text NinetailsName
	text NinetailsLureDescription
	text FireBlastName
	text FireBlastDescription
	text Ninetails1Description
	text MixUpName
	text MixUpDescription
	text MixUpDescriptionCont
	text DancingEmbersName
	text DancingEmbersDescription
	text Ninetails2Description
	text GrowlitheName
	text FlareName
	text GrowlitheKind
	text GrowlitheDescription
	text ArcanineName
	text QuickAttackName
	text QuickAttackDescription
	text FlamesofRageName
	text FlamesofRageDescription
	text ArcanineKind
	text Arcanine1Description
	text ArcaninesFlamethrowerDescription
	text TakeDownName
	text TakeDownDescription
	text Arcanine2Description
	text PonytaName
	text SmashKickName
	text FlameTailName
	text PonytaKind
	text PonytaDescription
	text RapidashName
	text StompName
	text StompDescription
	text AgilityName
	text RapidashsAgilityDescription
	text RapidashDescription
	text MagmarName
	text FirePunchName
	text FirePunchDescription
	text MagmarKind
	text Magmar1Description
	text SmokescreenName
	text MagmarsSmokescreenDescription
	text Magmar2Description
	text FlareonName
	text EeveeName
	text BiteName
	text RageName
	text FlareonsRageDescription
	text Flareon1Description
	text FlareonsFlamethrowerDescription
	text Flareon2Description
	text MoltresName
	text WildfireName
	text WildfireDescription
	text DiveBombName
	text Moltres1Description
	text FiregiverName
	text FiregiverDescription
	text Moltres2Description
	text SquirtleName
	text BubbleName
	text WithdrawName
	text SquirtlesWithdrawDescription
	text SquirtleKind
	text SquirtleDescription
	text WartortleName
	text WartortlesWithdrawDescription
	text WartortleKind
	text WartortleDescription
	text BlastoiseName
	text RainDanceName
	text RainDanceDescription
	text RainDanceDescriptionCont
	text HydroPumpName
	text HydroPumpDescription
	text BlastoiseKind
	text BlastoiseDescription
	text PsyduckName
	text HeadacheName
	text HeadacheDescription
	text PsyduckKind
	text PsyduckDescription
	text GolduckName
	text PsyshockName
	text HyperBeamName
	text Discard1EnergyFromTargetDescription
	text GolduckDescription
	text PoliwagName
	text WaterGunName
	text PoliwagsWaterGunDescription
	text PoliwagKind
	text PoliwagDescription
	text PoliwhirlName
	text AmnesiaName
	text PoliwhirlsAmnesiaDescription
	text DoubleslapName
	text PoliwhirlsDescription
	text PoliwrathName
	text PoliwrathsWaterGunDescription
	text WhirlpoolName
	text PoliwrathDescription
	text TentacoolName
	text CowardiceName
	text CowardiceDescription
	text TentacoolKind
	text TentacoolDescription
	text TentacruelName
	text JellyfishStingName
	text TentacruelDescription
	text SeelName
	text HeadbuttName
	text SeelKind
	text SeelDescription
	text DewgongName
	text AuroraBeamName
	text IceBeamName
	text DewgongDescription
	text ShellderName
	text HideinShellName
	text HideinShellDescription
	text ShellderKind
	text ShellderDescription
	text CloysterName
	text ClampName
	text ClampDescription
	text SpikeCannonName
	text CloysterDescription
	text KrabbyName
	text KrabbysCallforFamilyDescription
	text KrabbyKind
	text KrabbyDescription
	text KinglerName
	text FlailName
	text KinglersFlailDescription
	text CrabhammerName
	text KinglerKind
	text KinglerDescription
	text HorseaName
	text HorseasSmokescreenDescription
	text HorseaKind
	text HorseaDescription
	text SeadraName
	text SeadrasWaterGunDescription
	text SeadrasAgilityDescription
	text SeadraDescription
	text GoldeenName
	text HornAttackName
	text GoldeenKind
	text GoldeenDescription
	text SeakingName
	text WaterfallName
	text SeakingDescription
	text StaryuName
	text SlapName
	text StaryuKind
	text StaryuDescription
	text StarmieName
	text RecoverName
	text StarmiesRecoverDescription
	text StarFreezeName
	text StarmieKind
	text StarmieDescription
	text MagikarpName
	text TackleName
	text MagikarpsFlailDescription
	text MagikarpKind
	text MagikarpDescription
	text GyaradosName
	text DragonRageName
	text BubblebeamName
	text GyaradosKind
	text GyaradosDescription
	text LaprasName
	text LaprasWaterGunDescription
	text LaprasKind
	text LaprasDescription
	text VaporeonName
	text FocusEnergyName
	text FocusEnergyDescription
	text VaporeonKind
	text Vaporeon1Description
	text VaporeonsWaterGunDescription
	text Vaporeon2Description
	text OmanyteName
	text MysteriousFossilName
	text ClairvoyanceName
	text ClairvoyanceDescription
	text OmanytesWaterGunDescription
	text OmanyteKind
	text OmanyteDescription
	text OmastarName
	text OmastarsWaterGunDescription
	text OmastarDescription
	text ArticunoName
	text FreezeDryName
	text BlizzardName
	text BlizzardDescription
	text ArticunoKind
	text Articuno1Description
	text QuickfreezeName
	text QuickfreezeDescription
	text IceBreathName
	text IceBreathDescription
	text Articuno2Description
	text PikachuName
	text GnawName
	text ThunderJoltName
	text ThunderJoltDescription
	text PikachuKind
	text Pikachu1Description
	text SparkName
	text SparkDescription
	text Pikachu2Description
	text GrowlName
	text GrowlDescription
	text ThundershockName
	text Pikachu3Description
	text FlyingPikachuName
	text FlyName
	text FlyDescription
	text FlyingPikachuDescription
	text SurfingPikachuName
	text SurfName
	text SurfingPikachuDescription
	text RaichuName
	text RaichusAgilityDescription
	text ThunderName
	text RaichusThunderDescription
	text Raichu1Description
	text GigashockName
	text GigashockDescription
	text Raichu2Description
	text MagnemiteName
	text ThunderWaveName
	text MagnemitesSelfdestructDescription
	text MagnemiteKind
	text Magnemite1Description
	text MagneticStormName
	text MagneticStormDescription
	text Magnemite2Description
	text MagnetonName
	text Magneton1sSelfdestructDescription
	text Magneton1Description
	text SonicboomName
	text SonicboomDescription
	text Magneton2sSelfdestructDescription
	text Magneton2Description
	text VoltorbName
	text VoltorbKind
	text VoltorbDescription
	text ElectrodeName
	text EnergySpikeName
	text EnergySpikeDescription
	text Electrode1Description
	text ChainLightningName
	text ChainLightningDescription
	text Electrode2Description
	text ElectabuzzName
	text LightScreenName
	text LightScreenDescription
	text LightScreenDescriptionCont
	text ElectabuzzsQuickAttackDescription
	text ElectabuzzKind
	text Electabuzz1Description
	text ThunderpunchName
	text ThunderpunchDescription
	text Electabuzz2Description
	text JolteonName
	text DoubleAttackX20Description
	text StunNeedleName
	text JolteonKind
	text Jolteon1Description
	text PinMissileName
	text QuadrupleAttackX20Description
	text Jolteon2Description
	text ZapdosName
	text ThunderstormName
	text ThunderstormDescription
	text Zapdos1Description
	text ZapdosThunderDescription
	text ThunderboltName
	text ThunderboltDescription
	text Zapdos2Description
	text PealofThunderName
	text PealofThunderDescription
	text BigThunderName
	text BigThunderDescription
	text Zapdos3Description
	text SandshrewName
	text SandAttackName
	text SandshrewDescription
	text SandslashName
	text TripleAttackX20Description
	text SandslashDescription
	text DiglettName
	text DigName
	text MudSlapName
	text DiglettKind
	text DiglettDescription
	text DugtrioName
	text EarthquakeName
	text EarthquakeDescription
	text DugtrioDescription
	text MankeyName
	text PeekName
	text PeekDescription
	text PeekDescriptionCont
	text MankeyKind
	text MankeyDescription
	text PrimeapeName
	text TantrumName
	text TantrumDescription
	text PrimeapeDescription
	text MachopName
	text LowKickName
	text SuperpowerName
	text MachopDescription
	text MachokeName
	text KarateChopName
	text KarateChopDescription
	text SubmissionName
	text SubmissionDescription
	text MachokeDescription
	text MachampName
	text StrikesBackName
	text StrikesBackDescription
	text StrikesBackDescriptionCont
	text SeismicTossName
	text MachampDescription
	text GeodudeName
	text StoneBarrageName
	text StoneBarrageDescription
	text GeodudeKind
	text GeodudeDescription
	text GravelerName
	text HardenName
	text GravelersHardenDescription
	text RockThrowName
	text GravelerDescription
	text GolemName
	text AvalancheName
	text AvalancheDescription
	text GolemKind
	text GolemDescription
	text OnixName
	text OnixsHardenDescription
	text OnixKind
	text OnixDescription
	text CuboneName
	text SnivelName
	text SnivelDescription
	text CubonesRageDescription
	text CuboneKind
	text CuboneDescription
	text MarowakName
	text BonemerangName
	text CallforFriendName
	text CallforFriendDescription
	text MarowakKind
	text Marowak1Description
	text BoneAttackName
	text BoneAttackDescription
	text WailName
	text WailDescription
	text Marowak2Description
	text HitmonleeName
	text StretchKickName
	text StretchKickDescription
	text HighJumpKickName
	text HitmonleeKind
	text HitmonleeDescription
	text HitmonchanName
	text JabName
	text SpecialPunch
	text HitmonchanKind
	text HitmonchanDescription
	text RhyhornName
	text LeerName
	text LeerDescription
	text RhyhornKind
	text RhyhornDescription
	text RhydonName
	text RamName
	text RamDescription
	text RamDescriptionCont
	text RhydonDescription
	text KabutoName
	text KabutoArmorName
	text KabutoArmorDescription
	text KabutoArmorDescriptionCont
	text KabutoDescription
	text KabutopsName
	text SharpSickleName
	text AbsorbName
	text AbsorbDescription
	text AbsorbDescriptionCont
	text KabutopsDescription
	text AerodactylName
	text PrehistoricPowerName
	text PrehistoricPowerDescription
	text AerodactylKind
	text AerodactylDescription
	text AbraName
	text AbraKind
	text AbraDescription
	text KadabraName
	text KadabrasRecoverDescription
	text KadabraKind
	text KadabraDescription
	text AlakazamName
	text DamageSwapName
	text DamageSwapDescription
	text AlakazamDescription
	text SlowpokeName
	text SlowpokesAmnesiaDescription
	text SlowpokeKind
	text Slowpoke1Description
	text SpacingOutName
	text SpacingOutDescription
	text ScavengeName
	text ScavengeDescription
	text SlowbroName
	text StrangeBehaviorName
	text StrangeBehaviorDescription
	text SlowbroKind
	text SlowbroDescription
	text GastlyName
	text SleepingGasName
	text MayInflictSleepDescription
	text DestinyBondName
	text DestinyBondDescription
	text GastlyKind
	text Gastly1Description
	text LickName
	text EnergyConversionName
	text EnergyConversionDescription
	text Gastly2Description
	text HaunterName
	text TransparencyName
	text TransparencyDescription
	text NightmareName
	text HaunterDescription
	text DreamEaterName
	text DreamEaterDescription
	text GengarName
	text CurseName
	text CurseDescription
	text DarkMindName
	text DarkMindDescription
	text GengarKind
	text GengarDescription
	text DrowzeeName
	text PoundName
	text DrowzeeDescription
	text HypnoName
	text ProphecyName
	text ProphecyDescription
	text HypnoDescription
	text MrMimeName
	text InvisibleWallName
	text InvisibleWallDescription
	text InvisibleWallDescriptionCont
	text MeditateName
	text MrMimesMeditateDescription
	text MrMimeKindAndBarrierName
	text MrMimeDescription
	text JynxName
	text DoubleAttackX10Description
	text JynxsMeditateDescription
	text JynxKind
	text JynxDescription
	text MewtwoName
	text PsychicName
	text PsychicDescription
	text BarrierDescription
	text MewtwoKind
	text Mewtwo1Description
	text EnergyAbsorptionName
	text EnergyAbsorptionDescription
	text PsyburnName
	text Mewtwo2Description
	text MewName
	text NeutralizingShieldName
	text NeutralizingShieldDescription
	text MewKind
	text Mew1Description
	text MysteryAttackName
	text MysteryAttackDescription
	text Mew2Description
	text PsywaveName
	text PsywaveDescription
	text DevolutionBeamName
	text DevolutionBeamDescription
	text PidgeyName
	text PidgeyKind
	text PidgeyDescription
	text PidgeottoName
	text MirrorMoveName
	text PidgeottosMirrorMoveDescription
	text PidgeottoKind
	text PidgeottoDescription
	text PidgeotName
	text SlicingWindName
	text SlicingWildDescription
	text GaleName
	text GaleDescription
	text Pidgeot1Description
	text HurricaneName
	text HurricaneDescription
	text Pidgeot2Description
	text RattataName
	text RattataKind
	text RattataDescription
	text RaticateName
	text SuperFangName
	text SuperFangDescription
	text RaticateDescription
	text SpearowName
	text PeckName
	text SpearowsMirrorMoveDescription
	text SpearowDescription
	text FearowName
	text FearowsAgilityDescription
	text DrillPeckName
	text FearowKind
	text FearowDescription
	text ClefairyName
	text SingName
	text MetronomeName
	text ClefairysMetronomeDescription
	text ClefairyKind
	text ClefairyDescription
	text ClefableName
	text ClefablesMetronomeDescription
	text ClefablesMinimizeDescription
	text ClefableDescription
	text JigglypuffName
	text FirstAidName
	text FirstAidDescription
	text DoubleEdgeName
	text JigglypuffsDoubleEdgeDescription
	text JigglypuffKind
	text Jigglypuff1Description
	text FriendshipSongName
	text FriendshipSongDescription
	text ExpandName
	text ExpandDescription
	text Jigglypuff2Description
	text LullabyName
	text Jigglypuff3Description
	text WigglytuffName
	text DotheWaveName
	text DotheWaveDescription
	text WigglytuffDescription
	text MeowthName
	text CatPunchName
	text CatPunchDescription
	text MeowthKind
	text Meowth1Description
	text PayDayName
	text PayDayDescription
	text Meowth2Description
	text PersianName
	text PounceName
	text PounceDescription
	text PersianKind
	text PersianDescription
	text FarfetchdName
	text LeekSlapName
	text LeekSlapDescription
	text PotSmashName
	text FarfetchdKind
	text FarfetchdDescription
	text DoduoName
	text FuryAttackName
	text DoduoKind
	text DoduoDescription
	text DodrioName
	text RetreatAidName
	text RetreatAidDescription
	text DodriosRageDescription
	text DodrioKind
	text DodrioDescription
	text LickitungName
	text TongueWrapName
	text LickitungKind
	text LickitungDescription
	text ChanseyName
	text ScrunchName
	text ScrunchDescription
	text ChanseysDoubleEdgeDescription
	text ChanseyDescription
	text KangaskhanName
	text FetchName
	text FetchDescription
	text CometPunchName
	text KangaskhanKind
	text KangaskhanDescription
	text TaurosName
	text RampageName
	text RampageDescription
	text TaurosKind
	text TaurosDescription
	text DittoName
	text MorphName
	text MorphDescription
	text MorphDescriptionCont
	text DittoKind
	text DittoDescription
	text TailWagName
	text TailWagDescription
	text EeveeKind
	text EeveeDescription
	text PorygonName
	text Conversion1Name
	text Conversion1Description
	text Conversion2Name
	text Conversion2Description
	text PorygonKind
	text PorygonDescription
	text SnorlaxName
	text ThickSkinnedName
	text ThickSkinnedDescription
	text BodySlamName
	text SnorlaxKind
	text SnorlaxDescription
	text DratiniName
	text DratiniDescription
	text DragonairName
	text SlamName
	text DragonairDescription
	text DragoniteName
	text HealingWindName
	text HealingWindDescription
	text Dragonite1Description
	text StepInName
	text StepInDescription
	text DoubleAttackX40Description
	text DragoniteDescription
	text ProfessorOakName
	text ProfessorOakDescription
	text ImposterProfessorOakName
	text ImposterProfessorOakDescription
	text BillName
	text BillDescription
	text MrFujiName
	text MrFujiDescription
	text LassName
	text LassDescription
	text ImakuniName
	text ImakuniDescription
	text PokemonTraderName
	text PokemonTraderDescription
	text PokemonBreederName
	text PokemonBreederDescription
	text ClefairyDollName
	text ClefairyDollDescription
	text ClefairyDollDescriptionCont
	text MysteriousFossilDescription
	text MysteriousFossilDescriptionCont
	text EnergyRetrievalName
	text EnergyRetrievalDescription
	text SuperEnergyRetrievalName
	text SuperEnergyRetrievalDescription
	text EnergySearchName
	text EnergySearchDescription
	text EnergyRemovalName
	text EnergyRemovalDescription
	text SuperEnergyRemovalName
	text SuperEnergyRemovalDescription
	text SwitchName
	text SwitchDescription
	text PokemonCenterName
	text PokemonCenterDescription
	text PokeBallName
	text PokeBallDescription
	text ScoopUpName
	text ScoopUpDescription
	text ComputerSearchName
	text ComputerSearchDescription
	text PokedexName
	text PokedexDescription
	text PlusPowerName
	text PlusPowerDescription
	text DefenderName
	text DefenderDescription
	text ItemFinderName
	text ItemFinderDescription
	text GustofWindName
	text GustofWindDescription
	text DevolutionSprayName
	text DevolutionSprayDescription
	text DevolutionSprayDescriptionCont
	text PotionName
	text PotionDescription
	text SuperPotionName
	text SuperPotionDescription
	text FullHealName
	text FullHealDescription
	text ReviveName
	text ReviveDescription
	text MaintenanceName
	text MaintenanceDescription
	text PokemonFluteName
	text PokemonFluteDescription
	text GamblerName
	text GamblerDescription
	text RecycleName
	text RecycleDescription