summaryrefslogblamecommitdiffstats
path: root/disas/hppa.c
blob: a2d371fdb1ea5225cec4e17e590bc07e6460f988 (plain) (tree)
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
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





























































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































                                                                                     
                                                                   















































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































                                                                                
/* Disassembler for the PA-RISC. Somewhat derived from sparc-pinsn.c.
   Copyright 1989, 1990, 1992, 1993, 1994, 1995, 1998, 1999, 2000, 2001, 2003,
   2005 Free Software Foundation, Inc.

   Contributed by the Center for Software Science at the
   University of Utah (pa-gdb-bugs@cs.utah.edu).

   This program is free software; you can redistribute it and/or modify
   it under the terms of the GNU General Public License as published by
   the Free Software Foundation; either version 2 of the License, or
   (at your option) any later version.

   This program is distributed in the hope that it will be useful,
   but WITHOUT ANY WARRANTY; without even the implied warranty of
   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
   GNU General Public License for more details.

   You should have received a copy of the GNU General Public License
   along with this program; if not, see <http://www.gnu.org/licenses/>. */

#include "qemu/osdep.h"
#include "disas/bfd.h"

/* HP PA-RISC SOM object file format:  definitions internal to BFD.
   Copyright 1990, 1991, 1992, 1993, 1994, 1995, 1996, 1998, 1999, 2000,
   2003 Free Software Foundation, Inc.

   Contributed by the Center for Software Science at the
   University of Utah (pa-gdb-bugs@cs.utah.edu).

   This file is part of BFD, the Binary File Descriptor library.

   This program is free software; you can redistribute it and/or modify
   it under the terms of the GNU General Public License as published by
   the Free Software Foundation; either version 2 of the License, or
   (at your option) any later version.

   This program is distributed in the hope that it will be useful,
   but WITHOUT ANY WARRANTY; without even the implied warranty of
   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
   GNU General Public License for more details.

   You should have received a copy of the GNU General Public License
   along with this program; if not, see <http://www.gnu.org/licenses/>.  */

#ifndef _LIBHPPA_H
#define _LIBHPPA_H

#define BYTES_IN_WORD 4
#define PA_PAGESIZE 0x1000

/* The PA instruction set variants.  */
enum pa_arch {pa10 = 10, pa11 = 11, pa20 = 20, pa20w = 25};

/* HP PA-RISC relocation types */

enum hppa_reloc_field_selector_type
  {
    R_HPPA_FSEL = 0x0,
    R_HPPA_LSSEL = 0x1,
    R_HPPA_RSSEL = 0x2,
    R_HPPA_LSEL = 0x3,
    R_HPPA_RSEL = 0x4,
    R_HPPA_LDSEL = 0x5,
    R_HPPA_RDSEL = 0x6,
    R_HPPA_LRSEL = 0x7,
    R_HPPA_RRSEL = 0x8,
    R_HPPA_NSEL  = 0x9,
    R_HPPA_NLSEL  = 0xa,
    R_HPPA_NLRSEL  = 0xb,
    R_HPPA_PSEL = 0xc,
    R_HPPA_LPSEL = 0xd,
    R_HPPA_RPSEL = 0xe,
    R_HPPA_TSEL = 0xf,
    R_HPPA_LTSEL = 0x10,
    R_HPPA_RTSEL = 0x11,
    R_HPPA_LTPSEL = 0x12,
    R_HPPA_RTPSEL = 0x13
  };

/* /usr/include/reloc.h defines these to constants.  We want to use
   them in enums, so #undef them before we start using them.  We might
   be able to fix this another way by simply managing not to include
   /usr/include/reloc.h, but currently GDB picks up these defines
   somewhere.  */
#undef e_fsel
#undef e_lssel
#undef e_rssel
#undef e_lsel
#undef e_rsel
#undef e_ldsel
#undef e_rdsel
#undef e_lrsel
#undef e_rrsel
#undef e_nsel
#undef e_nlsel
#undef e_nlrsel
#undef e_psel
#undef e_lpsel
#undef e_rpsel
#undef e_tsel
#undef e_ltsel
#undef e_rtsel
#undef e_one
#undef e_two
#undef e_pcrel
#undef e_con
#undef e_plabel
#undef e_abs

/* for compatibility */
enum hppa_reloc_field_selector_type_alt
  {
    e_fsel = R_HPPA_FSEL,
    e_lssel = R_HPPA_LSSEL,
    e_rssel = R_HPPA_RSSEL,
    e_lsel = R_HPPA_LSEL,
    e_rsel = R_HPPA_RSEL,
    e_ldsel = R_HPPA_LDSEL,
    e_rdsel = R_HPPA_RDSEL,
    e_lrsel = R_HPPA_LRSEL,
    e_rrsel = R_HPPA_RRSEL,
    e_nsel = R_HPPA_NSEL,
    e_nlsel = R_HPPA_NLSEL,
    e_nlrsel = R_HPPA_NLRSEL,
    e_psel = R_HPPA_PSEL,
    e_lpsel = R_HPPA_LPSEL,
    e_rpsel = R_HPPA_RPSEL,
    e_tsel = R_HPPA_TSEL,
    e_ltsel = R_HPPA_LTSEL,
    e_rtsel = R_HPPA_RTSEL,
    e_ltpsel = R_HPPA_LTPSEL,
    e_rtpsel = R_HPPA_RTPSEL
  };

enum hppa_reloc_expr_type
  {
    R_HPPA_E_ONE = 0,
    R_HPPA_E_TWO = 1,
    R_HPPA_E_PCREL = 2,
    R_HPPA_E_CON = 3,
    R_HPPA_E_PLABEL = 7,
    R_HPPA_E_ABS = 18
  };

/* for compatibility */
enum hppa_reloc_expr_type_alt
  {
    e_one = R_HPPA_E_ONE,
    e_two = R_HPPA_E_TWO,
    e_pcrel = R_HPPA_E_PCREL,
    e_con = R_HPPA_E_CON,
    e_plabel = R_HPPA_E_PLABEL,
    e_abs = R_HPPA_E_ABS
  };


/* Relocations for function calls must be accompanied by parameter
   relocation bits.  These bits describe exactly where the caller has
   placed the function's arguments and where it expects to find a return
   value.

   Both ELF and SOM encode this information within the addend field
   of the call relocation.  (Note this could break very badly if one
   was to make a call like bl foo + 0x12345678).

   The high order 10 bits contain parameter relocation information,
   the low order 22 bits contain the constant offset.  */

#define HPPA_R_ARG_RELOC(a)	\
  (((a) >> 22) & 0x3ff)
#define HPPA_R_CONSTANT(a)	\
  ((((bfd_signed_vma)(a)) << (BFD_ARCH_SIZE-22)) >> (BFD_ARCH_SIZE-22))
#define HPPA_R_ADDEND(r, c)	\
  (((r) << 22) + ((c) & 0x3fffff))


/* Some functions to manipulate PA instructions.  */

/* Declare the functions with the unused attribute to avoid warnings.  */
static inline int sign_extend (int, int) ATTRIBUTE_UNUSED;
static inline int low_sign_extend (int, int) ATTRIBUTE_UNUSED;
static inline int sign_unext (int, int) ATTRIBUTE_UNUSED;
static inline int low_sign_unext (int, int) ATTRIBUTE_UNUSED;
static inline int re_assemble_3 (int) ATTRIBUTE_UNUSED;
static inline int re_assemble_12 (int) ATTRIBUTE_UNUSED;
static inline int re_assemble_14 (int) ATTRIBUTE_UNUSED;
static inline int re_assemble_16 (int) ATTRIBUTE_UNUSED;
static inline int re_assemble_17 (int) ATTRIBUTE_UNUSED;
static inline int re_assemble_21 (int) ATTRIBUTE_UNUSED;
static inline int re_assemble_22 (int) ATTRIBUTE_UNUSED;
static inline bfd_signed_vma hppa_field_adjust
  (bfd_vma, bfd_signed_vma, enum hppa_reloc_field_selector_type_alt)
  ATTRIBUTE_UNUSED;
static inline int hppa_rebuild_insn (int, int, int) ATTRIBUTE_UNUSED;


/* The *sign_extend functions are used to assemble various bitfields
   taken from an instruction and return the resulting immediate
   value.  */

static inline int
sign_extend (int x, int len)
{
  int signbit = (1 << (len - 1));
  int mask = (signbit << 1) - 1;
  return ((x & mask) ^ signbit) - signbit;
}

static inline int
low_sign_extend (int x, int len)
{
  return (x >> 1) - ((x & 1) << (len - 1));
}


/* The re_assemble_* functions prepare an immediate value for
   insertion into an opcode. pa-risc uses all sorts of weird bitfields
   in the instruction to hold the value.  */

static inline int
sign_unext (int x, int len)
{
  int len_ones;

  len_ones = (1 << len) - 1;

  return x & len_ones;
}

static inline int
low_sign_unext (int x, int len)
{
  int temp;
  int sign;

  sign = (x >> (len-1)) & 1;

  temp = sign_unext (x, len-1);

  return (temp << 1) | sign;
}

static inline int
re_assemble_3 (int as3)
{
  return ((  (as3 & 4) << (13-2))
	  | ((as3 & 3) << (13+1)));
}

static inline int
re_assemble_12 (int as12)
{
  return ((  (as12 & 0x800) >> 11)
	  | ((as12 & 0x400) >> (10 - 2))
	  | ((as12 & 0x3ff) << (1 + 2)));
}

static inline int
re_assemble_14 (int as14)
{
  return ((  (as14 & 0x1fff) << 1)
	  | ((as14 & 0x2000) >> 13));
}

static inline int
re_assemble_16 (int as16)
{
  int s, t;

  /* Unusual 16-bit encoding, for wide mode only.  */
  t = (as16 << 1) & 0xffff;
  s = (as16 & 0x8000);
  return (t ^ s ^ (s >> 1)) | (s >> 15);
}

static inline int
re_assemble_17 (int as17)
{
  return ((  (as17 & 0x10000) >> 16)
	  | ((as17 & 0x0f800) << (16 - 11))
	  | ((as17 & 0x00400) >> (10 - 2))
	  | ((as17 & 0x003ff) << (1 + 2)));
}

static inline int
re_assemble_21 (int as21)
{
  return ((  (as21 & 0x100000) >> 20)
	  | ((as21 & 0x0ffe00) >> 8)
	  | ((as21 & 0x000180) << 7)
	  | ((as21 & 0x00007c) << 14)
	  | ((as21 & 0x000003) << 12));
}

static inline int
re_assemble_22 (int as22)
{
  return ((  (as22 & 0x200000) >> 21)
	  | ((as22 & 0x1f0000) << (21 - 16))
	  | ((as22 & 0x00f800) << (16 - 11))
	  | ((as22 & 0x000400) >> (10 - 2))
	  | ((as22 & 0x0003ff) << (1 + 2)));
}


/* Handle field selectors for PA instructions.
   The L and R (and LS, RS etc.) selectors are used in pairs to form a
   full 32 bit address.  eg.

   LDIL	L'start,%r1		; put left part into r1
   LDW	R'start(%r1),%r2	; add r1 and right part to form address

   This function returns sign extended values in all cases.
*/

static inline bfd_signed_vma
hppa_field_adjust (bfd_vma sym_val,
		   bfd_signed_vma addend,
		   enum hppa_reloc_field_selector_type_alt r_field)
{
  bfd_signed_vma value;

  value = sym_val + addend;
  switch (r_field)
    {
    case e_fsel:
      /* F: No change.  */
      break;

    case e_nsel:
      /* N: null selector.  I don't really understand what this is all
	 about, but HP's documentation says "this indicates that zero
	 bits are to be used for the displacement on the instruction.
	 This fixup is used to identify three-instruction sequences to
	 access data (for importing shared library data)."  */
      value = 0;
      break;

    case e_lsel:
    case e_nlsel:
      /* L:  Select top 21 bits.  */
      value = value >> 11;
      break;

    case e_rsel:
      /* R:  Select bottom 11 bits.  */
      value = value & 0x7ff;
      break;

    case e_lssel:
      /* LS:  Round to nearest multiple of 2048 then select top 21 bits.  */
      value = value + 0x400;
      value = value >> 11;
      break;

    case e_rssel:
      /* RS:  Select bottom 11 bits for LS.
	 We need to return a value such that 2048 * LS'x + RS'x == x.
	 ie. RS'x = x - ((x + 0x400) & -0x800)
	 this is just a sign extension from bit 21.  */
      value = ((value & 0x7ff) ^ 0x400) - 0x400;
      break;

    case e_ldsel:
      /* LD:  Round to next multiple of 2048 then select top 21 bits.
	 Yes, if we are already on a multiple of 2048, we go up to the
	 next one.  RD in this case will be -2048.  */
      value = value + 0x800;
      value = value >> 11;
      break;

    case e_rdsel:
      /* RD:  Set bits 0-20 to one.  */
      value = value | -0x800;
      break;

    case e_lrsel:
    case e_nlrsel:
      /* LR:  L with rounding of the addend to nearest 8k.  */
      value = sym_val + ((addend + 0x1000) & -0x2000);
      value = value >> 11;
      break;

    case e_rrsel:
      /* RR:  R with rounding of the addend to nearest 8k.
	 We need to return a value such that 2048 * LR'x + RR'x == x
	 ie. RR'x = s+a - (s + (((a + 0x1000) & -0x2000) & -0x800))
	 .	  = s+a - ((s & -0x800) + ((a + 0x1000) & -0x2000))
	 .	  = (s & 0x7ff) + a - ((a + 0x1000) & -0x2000)  */
      value = (sym_val & 0x7ff) + (((addend & 0x1fff) ^ 0x1000) - 0x1000);
      break;

    default:
      abort ();
    }
  return value;
}

/* PA-RISC OPCODES */
#define get_opcode(insn)	(((insn) >> 26) & 0x3f)

enum hppa_opcode_type
{
  /* None of the opcodes in the first group generate relocs, so we
     aren't too concerned about them.  */
  OP_SYSOP   = 0x00,
  OP_MEMMNG  = 0x01,
  OP_ALU     = 0x02,
  OP_NDXMEM  = 0x03,
  OP_SPOP    = 0x04,
  OP_DIAG    = 0x05,
  OP_FMPYADD = 0x06,
  OP_UNDEF07 = 0x07,
  OP_COPRW   = 0x09,
  OP_COPRDW  = 0x0b,
  OP_COPR    = 0x0c,
  OP_FLOAT   = 0x0e,
  OP_PRDSPEC = 0x0f,
  OP_UNDEF15 = 0x15,
  OP_UNDEF1d = 0x1d,
  OP_FMPYSUB = 0x26,
  OP_FPFUSED = 0x2e,
  OP_SHEXDP0 = 0x34,
  OP_SHEXDP1 = 0x35,
  OP_SHEXDP2 = 0x36,
  OP_UNDEF37 = 0x37,
  OP_SHEXDP3 = 0x3c,
  OP_SHEXDP4 = 0x3d,
  OP_MULTMED = 0x3e,
  OP_UNDEF3f = 0x3f,

  OP_LDIL    = 0x08,
  OP_ADDIL   = 0x0a,

  OP_LDO     = 0x0d,
  OP_LDB     = 0x10,
  OP_LDH     = 0x11,
  OP_LDW     = 0x12,
  OP_LDWM    = 0x13,
  OP_STB     = 0x18,
  OP_STH     = 0x19,
  OP_STW     = 0x1a,
  OP_STWM    = 0x1b,

  OP_LDD     = 0x14,
  OP_STD     = 0x1c,

  OP_FLDW    = 0x16,
  OP_LDWL    = 0x17,
  OP_FSTW    = 0x1e,
  OP_STWL    = 0x1f,

  OP_COMBT   = 0x20,
  OP_COMIBT  = 0x21,
  OP_COMBF   = 0x22,
  OP_COMIBF  = 0x23,
  OP_CMPBDT  = 0x27,
  OP_ADDBT   = 0x28,
  OP_ADDIBT  = 0x29,
  OP_ADDBF   = 0x2a,
  OP_ADDIBF  = 0x2b,
  OP_CMPBDF  = 0x2f,
  OP_BVB     = 0x30,
  OP_BB      = 0x31,
  OP_MOVB    = 0x32,
  OP_MOVIB   = 0x33,
  OP_CMPIBD  = 0x3b,

  OP_COMICLR = 0x24,
  OP_SUBI    = 0x25,
  OP_ADDIT   = 0x2c,
  OP_ADDI    = 0x2d,

  OP_BE      = 0x38,
  OP_BLE     = 0x39,
  OP_BL      = 0x3a
};


/* Insert VALUE into INSN using R_FORMAT to determine exactly what
   bits to change.  */

static inline int
hppa_rebuild_insn (int insn, int value, int r_format)
{
  switch (r_format)
    {
    case 11:
      return (insn & ~ 0x7ff) | low_sign_unext (value, 11);

    case 12:
      return (insn & ~ 0x1ffd) | re_assemble_12 (value);


    case 10:
      return (insn & ~ 0x3ff1) | re_assemble_14 (value & -8);

    case -11:
      return (insn & ~ 0x3ff9) | re_assemble_14 (value & -4);

    case 14:
      return (insn & ~ 0x3fff) | re_assemble_14 (value);


    case -10:
      return (insn & ~ 0xfff1) | re_assemble_16 (value & -8);

    case -16:
      return (insn & ~ 0xfff9) | re_assemble_16 (value & -4);

    case 16:
      return (insn & ~ 0xffff) | re_assemble_16 (value);


    case 17:
      return (insn & ~ 0x1f1ffd) | re_assemble_17 (value);

    case 21:
      return (insn & ~ 0x1fffff) | re_assemble_21 (value);

    case 22:
      return (insn & ~ 0x3ff1ffd) | re_assemble_22 (value);

    case 32:
      return value;

    default:
      abort ();
    }
  return insn;
}

#endif /* _LIBHPPA_H */
/* Table of opcodes for the PA-RISC.
   Copyright 1990, 1991, 1992, 1993, 1994, 1995, 1996, 1998, 1999, 2000,
   2001, 2002, 2003, 2004, 2005
   Free Software Foundation, Inc.

   Contributed by the Center for Software Science at the
   University of Utah (pa-gdb-bugs@cs.utah.edu).

This file is part of GAS, the GNU Assembler, and GDB, the GNU disassembler.

GAS/GDB is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 1, or (at your option)
any later version.

GAS/GDB is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
GNU General Public License for more details.

You should have received a copy of the GNU General Public License
along with GAS or GDB; see the file COPYING.
If not, see <http://www.gnu.org/licenses/>. */

#if !defined(__STDC__) && !defined(const)
#define const
#endif

/*
 * Structure of an opcode table entry.
 */

/* There are two kinds of delay slot nullification: normal which is
 * controlled by the nullification bit, and conditional, which depends
 * on the direction of the branch and its success or failure.
 *
 * NONE is unfortunately #defined in the hiux system include files.
 * #undef it away.
 */
#undef NONE
struct pa_opcode
{
    const char *name;
    unsigned long int match;	/* Bits that must be set...  */
    unsigned long int mask;	/* ... in these bits. */
    const char *args;
    enum pa_arch arch;
    char flags;
};

/* Enables strict matching.  Opcodes with match errors are skipped
   when this bit is set.  */
#define FLAG_STRICT 0x1

/*
   All hppa opcodes are 32 bits.

   The match component is a mask saying which bits must match a
   particular opcode in order for an instruction to be an instance
   of that opcode.

   The args component is a string containing one character for each operand of
   the instruction.  Characters used as a prefix allow any second character to
   be used without conflicting with the main operand characters.

   Bit positions in this description follow HP usage of lsb = 31,
   "at" is lsb of field.

   In the args field, the following characters must match exactly:

	'+,() '

   In the args field, the following characters are unused:

	'  "         -  /   34 6789:;    '
	'@  C         M             [\]  '
	'`    e g                     }  '

   Here are all the characters:

	' !"#$%&'()*+-,./0123456789:;<=>?'
	'@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_'
	'`abcdefghijklmnopqrstuvwxyz{|}~ '

Kinds of operands:
   x    integer register field at 15.
   b    integer register field at 10.
   t    integer register field at 31.
   a	integer register field at 10 and 15 (for PERMH)
   5    5 bit immediate at 15.
   s    2 bit space specifier at 17.
   S    3 bit space specifier at 18.
   V    5 bit immediate value at 31
   i    11 bit immediate value at 31
   j    14 bit immediate value at 31
   k    21 bit immediate value at 31
   l    16 bit immediate value at 31 (wide mode only, unusual encoding).
   n	nullification for branch instructions
   N	nullification for spop and copr instructions
   w    12 bit branch displacement
   W    17 bit branch displacement (PC relative)
   X    22 bit branch displacement (PC relative)
   z    17 bit branch displacement (just a number, not an address)

Also these:

   .    2 bit shift amount at 25
   *    4 bit shift amount at 25
   p    5 bit shift count at 26 (to support the SHD instruction) encoded as
        31-p
   ~    6 bit shift count at 20,22:26 encoded as 63-~.
   P    5 bit bit position at 26
   q    6 bit bit position at 20,22:26
   T    5 bit field length at 31 (encoded as 32-T)
   %	6 bit field length at 23,27:31 (variable extract/deposit)
   |	6 bit field length at 19,27:31 (fixed extract/deposit)
   A    13 bit immediate at 18 (to support the BREAK instruction)
   ^	like b, but describes a control register
   !    sar (cr11) register
   D    26 bit immediate at 31 (to support the DIAG instruction)
   $    9 bit immediate at 28 (to support POPBTS)

   v    3 bit Special Function Unit identifier at 25
   O    20 bit Special Function Unit operation split between 15 bits at 20
        and 5 bits at 31
   o    15 bit Special Function Unit operation at 20
   2    22 bit Special Function Unit operation split between 17 bits at 20
        and 5 bits at 31
   1    15 bit Special Function Unit operation split between 10 bits at 20
        and 5 bits at 31
   0    10 bit Special Function Unit operation split between 5 bits at 20
        and 5 bits at 31
   u    3 bit coprocessor unit identifier at 25
   F    Source Floating Point Operand Format Completer encoded 2 bits at 20
   I    Source Floating Point Operand Format Completer encoded 1 bits at 20
	(for 0xe format FP instructions)
   G    Destination Floating Point Operand Format Completer encoded 2 bits at 18
   H    Floating Point Operand Format at 26 for 'fmpyadd' and 'fmpysub'
        (very similar to 'F')

   r	5 bit immediate value at 31 (for the break instruction)
	(very similar to V above, except the value is unsigned instead of
	low_sign_ext)
   R	5 bit immediate value at 15 (for the ssm, rsm, probei instructions)
	(same as r above, except the value is in a different location)
   U	10 bit immediate value at 15 (for SSM, RSM on pa2.0)
   Q	5 bit immediate value at 10 (a bit position specified in
	the bb instruction. It's the same as r above, except the
        value is in a different location)
   B	5 bit immediate value at 10 (a bit position specified in
	the bb instruction. Similar to Q, but 64 bit handling is
	different.
   Z    %r1 -- implicit target of addil instruction.
   L    ,%r2 completer for new syntax branch
   {    Source format completer for fcnv
   _    Destination format completer for fcnv
   h    cbit for fcmp
   =    gfx tests for ftest
   d    14 bit offset for single precision FP long load/store.
   #    14 bit offset for double precision FP load long/store.
   J    Yet another 14 bit offset for load/store with ma,mb completers.
   K    Yet another 14 bit offset for load/store with ma,mb completers.
   y    16 bit offset for word aligned load/store (PA2.0 wide).
   &    16 bit offset for dword aligned load/store (PA2.0 wide).
   <    16 bit offset for load/store with ma,mb completers (PA2.0 wide).
   >    16 bit offset for load/store with ma,mb completers (PA2.0 wide).
   Y    %sr0,%r31 -- implicit target of be,l instruction.
   @	implicit immediate value of 0

Completer operands all have 'c' as the prefix:

   cx   indexed load and store completer.
   cX   indexed load and store completer.  Like cx, but emits a space
	after in disassembler.
   cm   short load and store completer.
   cM   short load and store completer.  Like cm, but emits a space
        after in disassembler.
   cq   long load and store completer (like cm, but inserted into a
	different location in the target instruction).
   cs   store bytes short completer.
   cA   store bytes short completer.  Like cs, but emits a space
        after in disassembler.
   ce   long load/store completer for LDW/STW with a different encoding
	than the others
   cc   load cache control hint
   cd   load and clear cache control hint
   cC   store cache control hint
   co	ordered access

   cp	branch link and push completer
   cP	branch pop completer
   cl	branch link completer
   cg	branch gate completer

   cw	read/write completer for PROBE
   cW	wide completer for MFCTL
   cL	local processor completer for cache control
   cZ   System Control Completer (to support LPA, LHA, etc.)

   ci	correction completer for DCOR
   ca	add completer
   cy	32 bit add carry completer
   cY	64 bit add carry completer
   cv	signed overflow trap completer
   ct	trap on condition completer for ADDI, SUB
   cT	trap on condition completer for UADDCM
   cb	32 bit borrow completer for SUB
   cB	64 bit borrow completer for SUB

   ch	left/right half completer
   cH	signed/unsigned saturation completer
   cS	signed/unsigned completer at 21
   cz	zero/sign extension completer.
   c*	permutation completer

Condition operands all have '?' as the prefix:

   ?f   Floating point compare conditions (encoded as 5 bits at 31)

   ?a	add conditions
   ?A	64 bit add conditions
   ?@   add branch conditions followed by nullify
   ?d	non-negated add branch conditions
   ?D	negated add branch conditions
   ?w	wide mode non-negated add branch conditions
   ?W	wide mode negated add branch conditions

   ?s   compare/subtract conditions
   ?S	64 bit compare/subtract conditions
   ?t   non-negated compare and branch conditions
   ?n   32 bit compare and branch conditions followed by nullify
   ?N   64 bit compare and branch conditions followed by nullify
   ?Q	64 bit compare and branch conditions for CMPIB instruction

   ?l   logical conditions
   ?L	64 bit logical conditions

   ?b   branch on bit conditions
   ?B	64 bit branch on bit conditions

   ?x   shift/extract/deposit conditions
   ?X	64 bit shift/extract/deposit conditions
   ?y   shift/extract/deposit conditions followed by nullify for conditional
        branches

   ?u   unit conditions
   ?U   64 bit unit conditions

Floating point registers all have 'f' as a prefix:

   ft	target register at 31
   fT	target register with L/R halves at 31
   fa	operand 1 register at 10
   fA   operand 1 register with L/R halves at 10
   fX   Same as fA, except prints a space before register during disasm
   fb	operand 2 register at 15
   fB   operand 2 register with L/R halves at 15
   fC   operand 3 register with L/R halves at 16:18,21:23
   fe   Like fT, but encoding is different.
   fE   Same as fe, except prints a space before register during disasm.
   fx	target register at 15 (only for PA 2.0 long format FLDD/FSTD).

Float registers for fmpyadd and fmpysub:

   fi	mult operand 1 register at 10
   fj	mult operand 2 register at 15
   fk	mult target register at 20
   fl	add/sub operand register at 25
   fm	add/sub target register at 31

*/


#if 0
/* List of characters not to put a space after.  Note that
   "," is included, as the "spopN" operations use literal
   commas in their completer sections.  */
static const char *const completer_chars = ",CcY<>?!@+&U~FfGHINnOoZMadu|/=0123%e$m}";
#endif

/* The order of the opcodes in this table is significant:

   * The assembler requires that all instances of the same mnemonic be
     consecutive.  If they aren't, the assembler will bomb at runtime.

   * Immediate fields use pa_get_absolute_expression to parse the
     string.  It will generate a "bad expression" error if passed
     a register name.  Thus, register index variants of an opcode
     need to precede immediate variants.

   * The disassembler does not care about the order of the opcodes
     except in cases where implicit addressing is used.

   Here are the rules for ordering the opcodes of a mnemonic:

   1) Opcodes with FLAG_STRICT should precede opcodes without
      FLAG_STRICT.

   2) Opcodes with FLAG_STRICT should be ordered as follows:
      register index opcodes, short immediate opcodes, and finally
      long immediate opcodes.  When both pa10 and pa11 variants
      of the same opcode are available, the pa10 opcode should
      come first for correct architectural promotion.

   3) When implicit addressing is available for an opcode, the
      implicit opcode should precede the explicit opcode.

   4) Opcodes without FLAG_STRICT should be ordered as follows:
      register index opcodes, long immediate opcodes, and finally
      short immediate opcodes.  */

static const struct pa_opcode pa_opcodes[] =
{

/* Pseudo-instructions.  */

{ "ldi",	0x34000000, 0xffe00000, "l,x", pa20w, 0},/* ldo val(r0),r */
{ "ldi",	0x34000000, 0xffe0c000, "j,x", pa10, 0},/* ldo val(r0),r */

{ "cmpib",	0xec000000, 0xfc000000, "?Qn5,b,w", pa20, FLAG_STRICT},
{ "cmpib", 	0x84000000, 0xf4000000, "?nn5,b,w", pa10, FLAG_STRICT},
{ "comib", 	0x84000000, 0xfc000000, "?nn5,b,w", pa10, 0}, /* comib{tf}*/
/* This entry is for the disassembler only.  It will never be used by
   assembler.  */
{ "comib", 	0x8c000000, 0xfc000000, "?nn5,b,w", pa10, 0}, /* comib{tf}*/
{ "cmpb",	0x9c000000, 0xdc000000, "?Nnx,b,w", pa20, FLAG_STRICT},
{ "cmpb",	0x80000000, 0xf4000000, "?nnx,b,w", pa10, FLAG_STRICT},
{ "comb",	0x80000000, 0xfc000000, "?nnx,b,w", pa10, 0}, /* comb{tf} */
/* This entry is for the disassembler only.  It will never be used by
   assembler.  */
{ "comb",	0x88000000, 0xfc000000, "?nnx,b,w", pa10, 0}, /* comb{tf} */
{ "addb",	0xa0000000, 0xf4000000, "?Wnx,b,w", pa20w, FLAG_STRICT},
{ "addb",	0xa0000000, 0xfc000000, "?@nx,b,w", pa10, 0}, /* addb{tf} */
/* This entry is for the disassembler only.  It will never be used by
   assembler.  */
{ "addb",	0xa8000000, 0xfc000000, "?@nx,b,w", pa10, 0},
{ "addib",	0xa4000000, 0xf4000000, "?Wn5,b,w", pa20w, FLAG_STRICT},
{ "addib",	0xa4000000, 0xfc000000, "?@n5,b,w", pa10, 0}, /* addib{tf}*/
/* This entry is for the disassembler only.  It will never be used by
   assembler.  */
{ "addib",	0xac000000, 0xfc000000, "?@n5,b,w", pa10, 0}, /* addib{tf}*/
{ "nop",	0x08000240, 0xffffffff, "", pa10, 0},      /* or 0,0,0 */
{ "copy",	0x08000240, 0xffe0ffe0, "x,t", pa10, 0},   /* or r,0,t */
{ "mtsar",	0x01601840, 0xffe0ffff, "x", pa10, 0}, /* mtctl r,cr11 */

/* Loads and Stores for integer registers.  */

{ "ldd",	0x0c0000c0, 0xfc00d3c0, "cxccx(b),t", pa20, FLAG_STRICT},
{ "ldd",	0x0c0000c0, 0xfc0013c0, "cxccx(s,b),t", pa20, FLAG_STRICT},
{ "ldd",	0x0c0010e0, 0xfc1ff3e0, "cocc@(b),t", pa20, FLAG_STRICT},
{ "ldd",	0x0c0010e0, 0xfc1f33e0, "cocc@(s,b),t", pa20, FLAG_STRICT},
{ "ldd",	0x0c0010c0, 0xfc00d3c0, "cmcc5(b),t", pa20, FLAG_STRICT},
{ "ldd",	0x0c0010c0, 0xfc0013c0, "cmcc5(s,b),t", pa20, FLAG_STRICT},
{ "ldd",	0x50000000, 0xfc000002, "cq&(b),x", pa20w, FLAG_STRICT},
{ "ldd",	0x50000000, 0xfc00c002, "cq#(b),x", pa20, FLAG_STRICT},
{ "ldd",	0x50000000, 0xfc000002, "cq#(s,b),x", pa20, FLAG_STRICT},
{ "ldw",	0x0c000080, 0xfc00dfc0, "cXx(b),t", pa10, FLAG_STRICT},
{ "ldw",	0x0c000080, 0xfc001fc0, "cXx(s,b),t", pa10, FLAG_STRICT},
{ "ldw",	0x0c000080, 0xfc00d3c0, "cxccx(b),t", pa11, FLAG_STRICT},
{ "ldw",	0x0c000080, 0xfc0013c0, "cxccx(s,b),t", pa11, FLAG_STRICT},
{ "ldw",	0x0c0010a0, 0xfc1ff3e0, "cocc@(b),t", pa20, FLAG_STRICT},
{ "ldw",	0x0c0010a0, 0xfc1f33e0, "cocc@(s,b),t", pa20, FLAG_STRICT},
{ "ldw",	0x0c001080, 0xfc00dfc0, "cM5(b),t", pa10, FLAG_STRICT},
{ "ldw",	0x0c001080, 0xfc001fc0, "cM5(s,b),t", pa10, FLAG_STRICT},
{ "ldw",	0x0c001080, 0xfc00d3c0, "cmcc5(b),t", pa11, FLAG_STRICT},
{ "ldw",	0x0c001080, 0xfc0013c0, "cmcc5(s,b),t", pa11, FLAG_STRICT},
{ "ldw",	0x4c000000, 0xfc000000, "ce<(b),x", pa20w, FLAG_STRICT},
{ "ldw",	0x5c000004, 0xfc000006, "ce>(b),x", pa20w, FLAG_STRICT},
{ "ldw",	0x48000000, 0xfc000000, "l(b),x", pa20w, FLAG_STRICT},
{ "ldw",	0x5c000004, 0xfc00c006, "ceK(b),x", pa20, FLAG_STRICT},
{ "ldw",	0x5c000004, 0xfc000006, "ceK(s,b),x", pa20, FLAG_STRICT},
{ "ldw",	0x4c000000, 0xfc00c000, "ceJ(b),x", pa10, FLAG_STRICT},
{ "ldw",	0x4c000000, 0xfc000000, "ceJ(s,b),x", pa10, FLAG_STRICT},
{ "ldw",	0x48000000, 0xfc00c000, "j(b),x", pa10, 0},
{ "ldw",	0x48000000, 0xfc000000, "j(s,b),x", pa10, 0},
{ "ldh",	0x0c000040, 0xfc00dfc0, "cXx(b),t", pa10, FLAG_STRICT},
{ "ldh",	0x0c000040, 0xfc001fc0, "cXx(s,b),t", pa10, FLAG_STRICT},
{ "ldh",	0x0c000040, 0xfc00d3c0, "cxccx(b),t", pa11, FLAG_STRICT},
{ "ldh",	0x0c000040, 0xfc0013c0, "cxccx(s,b),t", pa11, FLAG_STRICT},
{ "ldh",	0x0c001060, 0xfc1ff3e0, "cocc@(b),t", pa20, FLAG_STRICT},
{ "ldh",	0x0c001060, 0xfc1f33e0, "cocc@(s,b),t", pa20, FLAG_STRICT},
{ "ldh",	0x0c001040, 0xfc00dfc0, "cM5(b),t", pa10, FLAG_STRICT},
{ "ldh",	0x0c001040, 0xfc001fc0, "cM5(s,b),t", pa10, FLAG_STRICT},
{ "ldh",	0x0c001040, 0xfc00d3c0, "cmcc5(b),t", pa11, FLAG_STRICT},
{ "ldh",	0x0c001040, 0xfc0013c0, "cmcc5(s,b),t", pa11, FLAG_STRICT},
{ "ldh",	0x44000000, 0xfc000000, "l(b),x", pa20w, FLAG_STRICT},
{ "ldh",	0x44000000, 0xfc00c000, "j(b),x", pa10, 0},
{ "ldh",	0x44000000, 0xfc000000, "j(s,b),x", pa10, 0},
{ "ldb",	0x0c000000, 0xfc00dfc0, "cXx(b),t", pa10, FLAG_STRICT},
{ "ldb",	0x0c000000, 0xfc001fc0, "cXx(s,b),t", pa10, FLAG_STRICT},
{ "ldb",	0x0c000000, 0xfc00d3c0, "cxccx(b),t", pa11, FLAG_STRICT},
{ "ldb",	0x0c000000, 0xfc0013c0, "cxccx(s,b),t", pa11, FLAG_STRICT},
{ "ldb",	0x0c001020, 0xfc1ff3e0, "cocc@(b),t", pa20, FLAG_STRICT},
{ "ldb",	0x0c001020, 0xfc1f33e0, "cocc@(s,b),t", pa20, FLAG_STRICT},
{ "ldb",	0x0c001000, 0xfc00dfc0, "cM5(b),t", pa10, FLAG_STRICT},
{ "ldb",	0x0c001000, 0xfc001fc0, "cM5(s,b),t", pa10, FLAG_STRICT},
{ "ldb",	0x0c001000, 0xfc00d3c0, "cmcc5(b),t", pa11, FLAG_STRICT},
{ "ldb",	0x0c001000, 0xfc0013c0, "cmcc5(s,b),t", pa11, FLAG_STRICT},
{ "ldb",	0x40000000, 0xfc000000, "l(b),x", pa20w, FLAG_STRICT},
{ "ldb",	0x40000000, 0xfc00c000, "j(b),x", pa10, 0},
{ "ldb",	0x40000000, 0xfc000000, "j(s,b),x", pa10, 0},
{ "std",	0x0c0012e0, 0xfc00f3ff, "cocCx,@(b)", pa20, FLAG_STRICT},
{ "std",	0x0c0012e0, 0xfc0033ff, "cocCx,@(s,b)", pa20, FLAG_STRICT},
{ "std",	0x0c0012c0, 0xfc00d3c0, "cmcCx,V(b)", pa20, FLAG_STRICT},
{ "std",	0x0c0012c0, 0xfc0013c0, "cmcCx,V(s,b)", pa20, FLAG_STRICT},
{ "std",	0x70000000, 0xfc000002, "cqx,&(b)", pa20w, FLAG_STRICT},
{ "std",	0x70000000, 0xfc00c002, "cqx,#(b)", pa20, FLAG_STRICT},
{ "std",	0x70000000, 0xfc000002, "cqx,#(s,b)", pa20, FLAG_STRICT},
{ "stw",	0x0c0012a0, 0xfc00f3ff, "cocCx,@(b)", pa20, FLAG_STRICT},
{ "stw",	0x0c0012a0, 0xfc0033ff, "cocCx,@(s,b)", pa20, FLAG_STRICT},
{ "stw",	0x0c001280, 0xfc00dfc0, "cMx,V(b)", pa10, FLAG_STRICT},
{ "stw",	0x0c001280, 0xfc001fc0, "cMx,V(s,b)", pa10, FLAG_STRICT},
{ "stw",	0x0c001280, 0xfc00d3c0, "cmcCx,V(b)", pa11, FLAG_STRICT},
{ "stw",	0x0c001280, 0xfc0013c0, "cmcCx,V(s,b)", pa11, FLAG_STRICT},
{ "stw",	0x6c000000, 0xfc000000, "cex,<(b)", pa20w, FLAG_STRICT},
{ "stw",	0x7c000004, 0xfc000006, "cex,>(b)", pa20w, FLAG_STRICT},
{ "stw",	0x68000000, 0xfc000000, "x,l(b)", pa20w, FLAG_STRICT},
{ "stw",	0x7c000004, 0xfc00c006, "cex,K(b)", pa20, FLAG_STRICT},
{ "stw",	0x7c000004, 0xfc000006, "cex,K(s,b)", pa20, FLAG_STRICT},
{ "stw",	0x6c000000, 0xfc00c000, "cex,J(b)", pa10, FLAG_STRICT},
{ "stw",	0x6c000000, 0xfc000000, "cex,J(s,b)", pa10, FLAG_STRICT},
{ "stw",	0x68000000, 0xfc00c000, "x,j(b)", pa10, 0},
{ "stw",	0x68000000, 0xfc000000, "x,j(s,b)", pa10, 0},
{ "sth",	0x0c001260, 0xfc00f3ff, "cocCx,@(b)", pa20, FLAG_STRICT},
{ "sth",	0x0c001260, 0xfc0033ff, "cocCx,@(s,b)", pa20, FLAG_STRICT},
{ "sth",	0x0c001240, 0xfc00dfc0, "cMx,V(b)", pa10, FLAG_STRICT},
{ "sth",	0x0c001240, 0xfc001fc0, "cMx,V(s,b)", pa10, FLAG_STRICT},
{ "sth",	0x0c001240, 0xfc00d3c0, "cmcCx,V(b)", pa11, FLAG_STRICT},
{ "sth",	0x0c001240, 0xfc0013c0, "cmcCx,V(s,b)", pa11, FLAG_STRICT},
{ "sth",	0x64000000, 0xfc000000, "x,l(b)", pa20w, FLAG_STRICT},
{ "sth",	0x64000000, 0xfc00c000, "x,j(b)", pa10, 0},
{ "sth",	0x64000000, 0xfc000000, "x,j(s,b)", pa10, 0},
{ "stb",	0x0c001220, 0xfc00f3ff, "cocCx,@(b)", pa20, FLAG_STRICT},
{ "stb",	0x0c001220, 0xfc0033ff, "cocCx,@(s,b)", pa20, FLAG_STRICT},
{ "stb",	0x0c001200, 0xfc00dfc0, "cMx,V(b)", pa10, FLAG_STRICT},
{ "stb",	0x0c001200, 0xfc001fc0, "cMx,V(s,b)", pa10, FLAG_STRICT},
{ "stb",	0x0c001200, 0xfc00d3c0, "cmcCx,V(b)", pa11, FLAG_STRICT},
{ "stb",	0x0c001200, 0xfc0013c0, "cmcCx,V(s,b)", pa11, FLAG_STRICT},
{ "stb",	0x60000000, 0xfc000000, "x,l(b)", pa20w, FLAG_STRICT},
{ "stb",	0x60000000, 0xfc00c000, "x,j(b)", pa10, 0},
{ "stb",	0x60000000, 0xfc000000, "x,j(s,b)", pa10, 0},
{ "ldwm",	0x4c000000, 0xfc00c000, "j(b),x", pa10, 0},
{ "ldwm",	0x4c000000, 0xfc000000, "j(s,b),x", pa10, 0},
{ "stwm",	0x6c000000, 0xfc00c000, "x,j(b)", pa10, 0},
{ "stwm",	0x6c000000, 0xfc000000, "x,j(s,b)", pa10, 0},
{ "ldwx",	0x0c000080, 0xfc00dfc0, "cXx(b),t", pa10, FLAG_STRICT},
{ "ldwx",	0x0c000080, 0xfc001fc0, "cXx(s,b),t", pa10, FLAG_STRICT},
{ "ldwx",	0x0c000080, 0xfc00d3c0, "cxccx(b),t", pa11, FLAG_STRICT},
{ "ldwx",	0x0c000080, 0xfc0013c0, "cxccx(s,b),t", pa11, FLAG_STRICT},
{ "ldwx",	0x0c000080, 0xfc00dfc0, "cXx(b),t", pa10, 0},
{ "ldwx",	0x0c000080, 0xfc001fc0, "cXx(s,b),t", pa10, 0},
{ "ldhx",	0x0c000040, 0xfc00dfc0, "cXx(b),t", pa10, FLAG_STRICT},
{ "ldhx",	0x0c000040, 0xfc001fc0, "cXx(s,b),t", pa10, FLAG_STRICT},
{ "ldhx",	0x0c000040, 0xfc00d3c0, "cxccx(b),t", pa11, FLAG_STRICT},
{ "ldhx",	0x0c000040, 0xfc0013c0, "cxccx(s,b),t", pa11, FLAG_STRICT},
{ "ldhx",	0x0c000040, 0xfc00dfc0, "cXx(b),t", pa10, 0},
{ "ldhx",	0x0c000040, 0xfc001fc0, "cXx(s,b),t", pa10, 0},
{ "ldbx",	0x0c000000, 0xfc00dfc0, "cXx(b),t", pa10, FLAG_STRICT},
{ "ldbx",	0x0c000000, 0xfc001fc0, "cXx(s,b),t", pa10, FLAG_STRICT},
{ "ldbx",	0x0c000000, 0xfc00d3c0, "cxccx(b),t", pa11, FLAG_STRICT},
{ "ldbx",	0x0c000000, 0xfc0013c0, "cxccx(s,b),t", pa11, FLAG_STRICT},
{ "ldbx",	0x0c000000, 0xfc00dfc0, "cXx(b),t", pa10, 0},
{ "ldbx",	0x0c000000, 0xfc001fc0, "cXx(s,b),t", pa10, 0},
{ "ldwa",	0x0c000180, 0xfc00dfc0, "cXx(b),t", pa10, FLAG_STRICT},
{ "ldwa",	0x0c000180, 0xfc00d3c0, "cxccx(b),t", pa11, FLAG_STRICT},
{ "ldwa",	0x0c0011a0, 0xfc1ff3e0, "cocc@(b),t", pa20, FLAG_STRICT},
{ "ldwa",	0x0c001180, 0xfc00dfc0, "cM5(b),t", pa10, FLAG_STRICT},
{ "ldwa",	0x0c001180, 0xfc00d3c0, "cmcc5(b),t", pa11, FLAG_STRICT},
{ "ldcw",	0x0c0001c0, 0xfc00dfc0, "cXx(b),t", pa10, FLAG_STRICT},
{ "ldcw",	0x0c0001c0, 0xfc001fc0, "cXx(s,b),t", pa10, FLAG_STRICT},
{ "ldcw",	0x0c0001c0, 0xfc00d3c0, "cxcdx(b),t", pa11, FLAG_STRICT},
{ "ldcw",	0x0c0001c0, 0xfc0013c0, "cxcdx(s,b),t", pa11, FLAG_STRICT},
{ "ldcw",	0x0c0011c0, 0xfc00dfc0, "cM5(b),t", pa10, FLAG_STRICT},
{ "ldcw",	0x0c0011c0, 0xfc001fc0, "cM5(s,b),t", pa10, FLAG_STRICT},
{ "ldcw",	0x0c0011c0, 0xfc00d3c0, "cmcd5(b),t", pa11, FLAG_STRICT},
{ "ldcw",	0x0c0011c0, 0xfc0013c0, "cmcd5(s,b),t", pa11, FLAG_STRICT},
{ "stwa",	0x0c0013a0, 0xfc00d3ff, "cocCx,@(b)", pa20, FLAG_STRICT},
{ "stwa",	0x0c001380, 0xfc00dfc0, "cMx,V(b)", pa10, FLAG_STRICT},
{ "stwa",	0x0c001380, 0xfc00d3c0, "cmcCx,V(b)", pa11, FLAG_STRICT},
{ "stby",	0x0c001300, 0xfc00dfc0, "cAx,V(b)", pa10, FLAG_STRICT},
{ "stby",	0x0c001300, 0xfc001fc0, "cAx,V(s,b)", pa10, FLAG_STRICT},
{ "stby",	0x0c001300, 0xfc00d3c0, "cscCx,V(b)", pa11, FLAG_STRICT},
{ "stby",	0x0c001300, 0xfc0013c0, "cscCx,V(s,b)", pa11, FLAG_STRICT},
{ "ldda",	0x0c000100, 0xfc00d3c0, "cxccx(b),t", pa20, FLAG_STRICT},
{ "ldda",	0x0c001120, 0xfc1ff3e0, "cocc@(b),t", pa20, FLAG_STRICT},
{ "ldda",	0x0c001100, 0xfc00d3c0, "cmcc5(b),t", pa20, FLAG_STRICT},
{ "ldcd",	0x0c000140, 0xfc00d3c0, "cxcdx(b),t", pa20, FLAG_STRICT},
{ "ldcd",	0x0c000140, 0xfc0013c0, "cxcdx(s,b),t", pa20, FLAG_STRICT},
{ "ldcd",	0x0c001140, 0xfc00d3c0, "cmcd5(b),t", pa20, FLAG_STRICT},
{ "ldcd",	0x0c001140, 0xfc0013c0, "cmcd5(s,b),t", pa20, FLAG_STRICT},
{ "stda",	0x0c0013e0, 0xfc00f3ff, "cocCx,@(b)", pa20, FLAG_STRICT},
{ "stda",	0x0c0013c0, 0xfc00d3c0, "cmcCx,V(b)", pa20, FLAG_STRICT},
{ "ldwax",	0x0c000180, 0xfc00dfc0, "cXx(b),t", pa10, FLAG_STRICT},
{ "ldwax",	0x0c000180, 0xfc00d3c0, "cxccx(b),t", pa11, FLAG_STRICT},
{ "ldwax",	0x0c000180, 0xfc00dfc0, "cXx(b),t", pa10, 0},
{ "ldcwx",	0x0c0001c0, 0xfc00dfc0, "cXx(b),t", pa10, FLAG_STRICT},
{ "ldcwx",	0x0c0001c0, 0xfc001fc0, "cXx(s,b),t", pa10, FLAG_STRICT},
{ "ldcwx",	0x0c0001c0, 0xfc00d3c0, "cxcdx(b),t", pa11, FLAG_STRICT},
{ "ldcwx",	0x0c0001c0, 0xfc0013c0, "cxcdx(s,b),t", pa11, FLAG_STRICT},
{ "ldcwx",	0x0c0001c0, 0xfc00dfc0, "cXx(b),t", pa10, 0},
{ "ldcwx",	0x0c0001c0, 0xfc001fc0, "cXx(s,b),t", pa10, 0},
{ "ldws",	0x0c001080, 0xfc00dfc0, "cM5(b),t", pa10, FLAG_STRICT},
{ "ldws",	0x0c001080, 0xfc001fc0, "cM5(s,b),t", pa10, FLAG_STRICT},
{ "ldws",	0x0c001080, 0xfc00d3c0, "cmcc5(b),t", pa11, FLAG_STRICT},
{ "ldws",	0x0c001080, 0xfc0013c0, "cmcc5(s,b),t", pa11, FLAG_STRICT},
{ "ldws",	0x0c001080, 0xfc00dfc0, "cM5(b),t", pa10, 0},
{ "ldws",	0x0c001080, 0xfc001fc0, "cM5(s,b),t", pa10, 0},
{ "ldhs",	0x0c001040, 0xfc00dfc0, "cM5(b),t", pa10, FLAG_STRICT},
{ "ldhs",	0x0c001040, 0xfc001fc0, "cM5(s,b),t", pa10, FLAG_STRICT},
{ "ldhs",	0x0c001040, 0xfc00d3c0, "cmcc5(b),t", pa11, FLAG_STRICT},
{ "ldhs",	0x0c001040, 0xfc0013c0, "cmcc5(s,b),t", pa11, FLAG_STRICT},
{ "ldhs",	0x0c001040, 0xfc00dfc0, "cM5(b),t", pa10, 0},
{ "ldhs",	0x0c001040, 0xfc001fc0, "cM5(s,b),t", pa10, 0},
{ "ldbs",	0x0c001000, 0xfc00dfc0, "cM5(b),t", pa10, FLAG_STRICT},
{ "ldbs",	0x0c001000, 0xfc001fc0, "cM5(s,b),t", pa10, FLAG_STRICT},
{ "ldbs",	0x0c001000, 0xfc00d3c0, "cmcc5(b),t", pa11, FLAG_STRICT},
{ "ldbs",	0x0c001000, 0xfc0013c0, "cmcc5(s,b),t", pa11, FLAG_STRICT},
{ "ldbs",	0x0c001000, 0xfc00dfc0, "cM5(b),t", pa10, 0},
{ "ldbs",	0x0c001000, 0xfc001fc0, "cM5(s,b),t", pa10, 0},
{ "ldwas",	0x0c001180, 0xfc00dfc0, "cM5(b),t", pa10, FLAG_STRICT},
{ "ldwas",	0x0c001180, 0xfc00d3c0, "cmcc5(b),t", pa11, FLAG_STRICT},
{ "ldwas",	0x0c001180, 0xfc00dfc0, "cM5(b),t", pa10, 0},
{ "ldcws",	0x0c0011c0, 0xfc00dfc0, "cM5(b),t", pa10, FLAG_STRICT},
{ "ldcws",	0x0c0011c0, 0xfc001fc0, "cM5(s,b),t", pa10, FLAG_STRICT},
{ "ldcws",	0x0c0011c0, 0xfc00d3c0, "cmcd5(b),t", pa11, FLAG_STRICT},
{ "ldcws",	0x0c0011c0, 0xfc0013c0, "cmcd5(s,b),t", pa11, FLAG_STRICT},
{ "ldcws",	0x0c0011c0, 0xfc00dfc0, "cM5(b),t", pa10, 0},
{ "ldcws",	0x0c0011c0, 0xfc001fc0, "cM5(s,b),t", pa10, 0},
{ "stws",	0x0c001280, 0xfc00dfc0, "cMx,V(b)", pa10, FLAG_STRICT},
{ "stws",	0x0c001280, 0xfc001fc0, "cMx,V(s,b)", pa10, FLAG_STRICT},
{ "stws",	0x0c001280, 0xfc00d3c0, "cmcCx,V(b)", pa11, FLAG_STRICT},
{ "stws",	0x0c001280, 0xfc0013c0, "cmcCx,V(s,b)", pa11, FLAG_STRICT},
{ "stws",	0x0c001280, 0xfc00dfc0, "cMx,V(b)", pa10, 0},
{ "stws",	0x0c001280, 0xfc001fc0, "cMx,V(s,b)", pa10, 0},
{ "sths",	0x0c001240, 0xfc00dfc0, "cMx,V(b)", pa10, FLAG_STRICT},
{ "sths",	0x0c001240, 0xfc001fc0, "cMx,V(s,b)", pa10, FLAG_STRICT},
{ "sths",	0x0c001240, 0xfc00d3c0, "cmcCx,V(b)", pa11, FLAG_STRICT},
{ "sths",	0x0c001240, 0xfc0013c0, "cmcCx,V(s,b)", pa11, FLAG_STRICT},
{ "sths",	0x0c001240, 0xfc00dfc0, "cMx,V(b)", pa10, 0},
{ "sths",	0x0c001240, 0xfc001fc0, "cMx,V(s,b)", pa10, 0},
{ "stbs",	0x0c001200, 0xfc00dfc0, "cMx,V(b)", pa10, FLAG_STRICT},
{ "stbs",	0x0c001200, 0xfc001fc0, "cMx,V(s,b)", pa10, FLAG_STRICT},
{ "stbs",	0x0c001200, 0xfc00d3c0, "cmcCx,V(b)", pa11, FLAG_STRICT},
{ "stbs",	0x0c001200, 0xfc0013c0, "cmcCx,V(s,b)", pa11, FLAG_STRICT},
{ "stbs",	0x0c001200, 0xfc00dfc0, "cMx,V(b)", pa10, 0},
{ "stbs",	0x0c001200, 0xfc001fc0, "cMx,V(s,b)", pa10, 0},
{ "stwas",	0x0c001380, 0xfc00dfc0, "cMx,V(b)", pa10, FLAG_STRICT},
{ "stwas",	0x0c001380, 0xfc00d3c0, "cmcCx,V(b)", pa11, FLAG_STRICT},
{ "stwas",	0x0c001380, 0xfc00dfc0, "cMx,V(b)", pa10, 0},
{ "stdby",	0x0c001340, 0xfc00d3c0, "cscCx,V(b)", pa20, FLAG_STRICT},
{ "stdby",	0x0c001340, 0xfc0013c0, "cscCx,V(s,b)", pa20, FLAG_STRICT},
{ "stbys",	0x0c001300, 0xfc00dfc0, "cAx,V(b)", pa10, FLAG_STRICT},
{ "stbys",	0x0c001300, 0xfc001fc0, "cAx,V(s,b)", pa10, FLAG_STRICT},
{ "stbys",	0x0c001300, 0xfc00d3c0, "cscCx,V(b)", pa11, FLAG_STRICT},
{ "stbys",	0x0c001300, 0xfc0013c0, "cscCx,V(s,b)", pa11, FLAG_STRICT},
{ "stbys",	0x0c001300, 0xfc00dfc0, "cAx,V(b)", pa10, 0},
{ "stbys",	0x0c001300, 0xfc001fc0, "cAx,V(s,b)", pa10, 0},

/* Immediate instructions.  */
{ "ldo",	0x34000000, 0xfc000000, "l(b),x", pa20w, 0},
{ "ldo",	0x34000000, 0xfc00c000, "j(b),x", pa10, 0},
{ "ldil",	0x20000000, 0xfc000000, "k,b", pa10, 0},
{ "addil",	0x28000000, 0xfc000000, "k,b,Z", pa10, 0},
{ "addil",	0x28000000, 0xfc000000, "k,b", pa10, 0},

/* Branching instructions.  */
{ "b",		0xe8008000, 0xfc00e000, "cpnXL", pa20, FLAG_STRICT},
{ "b",		0xe800a000, 0xfc00e000, "clnXL", pa20, FLAG_STRICT},
{ "b",		0xe8000000, 0xfc00e000, "clnW,b", pa10, FLAG_STRICT},
{ "b",		0xe8002000, 0xfc00e000, "cgnW,b", pa10, FLAG_STRICT},
{ "b",		0xe8000000, 0xffe0e000, "nW", pa10, 0},  /* b,l foo,r0 */
{ "bl",		0xe8000000, 0xfc00e000, "nW,b", pa10, 0},
{ "gate",	0xe8002000, 0xfc00e000, "nW,b", pa10, 0},
{ "blr",	0xe8004000, 0xfc00e001, "nx,b", pa10, 0},
{ "bv",		0xe800c000, 0xfc00fffd, "nx(b)", pa10, 0},
{ "bv",		0xe800c000, 0xfc00fffd, "n(b)", pa10, 0},
{ "bve",	0xe800f001, 0xfc1ffffd, "cpn(b)L", pa20, FLAG_STRICT},
{ "bve",	0xe800f000, 0xfc1ffffd, "cln(b)L", pa20, FLAG_STRICT},
{ "bve",	0xe800d001, 0xfc1ffffd, "cPn(b)", pa20, FLAG_STRICT},
{ "bve",	0xe800d000, 0xfc1ffffd, "n(b)", pa20, FLAG_STRICT},
{ "be",		0xe4000000, 0xfc000000, "clnz(S,b),Y", pa10, FLAG_STRICT},
{ "be",		0xe4000000, 0xfc000000, "clnz(b),Y", pa10, FLAG_STRICT},
{ "be",		0xe0000000, 0xfc000000, "nz(S,b)", pa10, 0},
{ "be",		0xe0000000, 0xfc000000, "nz(b)", pa10, 0},
{ "ble",	0xe4000000, 0xfc000000, "nz(S,b)", pa10, 0},
{ "movb",	0xc8000000, 0xfc000000, "?ynx,b,w", pa10, 0},
{ "movib",	0xcc000000, 0xfc000000, "?yn5,b,w", pa10, 0},
{ "combt",	0x80000000, 0xfc000000, "?tnx,b,w", pa10, 0},
{ "combf",	0x88000000, 0xfc000000, "?tnx,b,w", pa10, 0},
{ "comibt",	0x84000000, 0xfc000000, "?tn5,b,w", pa10, 0},
{ "comibf",	0x8c000000, 0xfc000000, "?tn5,b,w", pa10, 0},
{ "addbt",	0xa0000000, 0xfc000000, "?dnx,b,w", pa10, 0},
{ "addbf",	0xa8000000, 0xfc000000, "?dnx,b,w", pa10, 0},
{ "addibt",	0xa4000000, 0xfc000000, "?dn5,b,w", pa10, 0},
{ "addibf",	0xac000000, 0xfc000000, "?dn5,b,w", pa10, 0},
{ "bb",		0xc0004000, 0xffe06000, "?bnx,!,w", pa10, FLAG_STRICT},
{ "bb",		0xc0006000, 0xffe06000, "?Bnx,!,w", pa20, FLAG_STRICT},
{ "bb",		0xc4004000, 0xfc006000, "?bnx,Q,w", pa10, FLAG_STRICT},
{ "bb",		0xc4004000, 0xfc004000, "?Bnx,B,w", pa20, FLAG_STRICT},
{ "bvb",	0xc0004000, 0xffe04000, "?bnx,w", pa10, 0},
{ "clrbts",	0xe8004005, 0xffffffff, "", pa20, FLAG_STRICT},
{ "popbts",	0xe8004005, 0xfffff007, "$", pa20, FLAG_STRICT},
{ "pushnom",	0xe8004001, 0xffffffff, "", pa20, FLAG_STRICT},
{ "pushbts",	0xe8004001, 0xffe0ffff, "x", pa20, FLAG_STRICT},

/* Computation Instructions.  */

{ "cmpclr",	0x080008a0, 0xfc000fe0, "?Sx,b,t", pa20, FLAG_STRICT},
{ "cmpclr",	0x08000880, 0xfc000fe0, "?sx,b,t", pa10, FLAG_STRICT},
{ "comclr",	0x08000880, 0xfc000fe0, "?sx,b,t", pa10, 0},
{ "or",		0x08000260, 0xfc000fe0, "?Lx,b,t", pa20, FLAG_STRICT},
{ "or",		0x08000240, 0xfc000fe0, "?lx,b,t", pa10, 0},
{ "xor",	0x080002a0, 0xfc000fe0, "?Lx,b,t", pa20, FLAG_STRICT},
{ "xor",	0x08000280, 0xfc000fe0, "?lx,b,t", pa10, 0},
{ "and",	0x08000220, 0xfc000fe0, "?Lx,b,t", pa20, FLAG_STRICT},
{ "and",	0x08000200, 0xfc000fe0, "?lx,b,t", pa10, 0},
{ "andcm",	0x08000020, 0xfc000fe0, "?Lx,b,t", pa20, FLAG_STRICT},
{ "andcm",	0x08000000, 0xfc000fe0, "?lx,b,t", pa10, 0},
{ "uxor",	0x080003a0, 0xfc000fe0, "?Ux,b,t", pa20, FLAG_STRICT},
{ "uxor",	0x08000380, 0xfc000fe0, "?ux,b,t", pa10, 0},
{ "uaddcm",	0x080009a0, 0xfc000fa0, "cT?Ux,b,t", pa20, FLAG_STRICT},
{ "uaddcm",	0x08000980, 0xfc000fa0, "cT?ux,b,t", pa10, FLAG_STRICT},
{ "uaddcm",	0x08000980, 0xfc000fe0, "?ux,b,t", pa10, 0},
{ "uaddcmt",	0x080009c0, 0xfc000fe0, "?ux,b,t", pa10, 0},
{ "dcor",	0x08000ba0, 0xfc1f0fa0, "ci?Ub,t", pa20, FLAG_STRICT},
{ "dcor",	0x08000b80, 0xfc1f0fa0, "ci?ub,t", pa10, FLAG_STRICT},
{ "dcor",	0x08000b80, 0xfc1f0fe0, "?ub,t",   pa10, 0},
{ "idcor",	0x08000bc0, 0xfc1f0fe0, "?ub,t",   pa10, 0},
{ "addi",	0xb0000000, 0xfc000000, "ct?ai,b,x", pa10, FLAG_STRICT},
{ "addi",	0xb4000000, 0xfc000000, "cv?ai,b,x", pa10, FLAG_STRICT},
{ "addi",	0xb4000000, 0xfc000800, "?ai,b,x", pa10, 0},
{ "addio",	0xb4000800, 0xfc000800, "?ai,b,x", pa10, 0},
{ "addit",	0xb0000000, 0xfc000800, "?ai,b,x", pa10, 0},
{ "addito",	0xb0000800, 0xfc000800, "?ai,b,x", pa10, 0},
{ "add",	0x08000720, 0xfc0007e0, "cY?Ax,b,t", pa20, FLAG_STRICT},
{ "add",	0x08000700, 0xfc0007e0, "cy?ax,b,t", pa10, FLAG_STRICT},
{ "add",	0x08000220, 0xfc0003e0, "ca?Ax,b,t", pa20, FLAG_STRICT},
{ "add",	0x08000200, 0xfc0003e0, "ca?ax,b,t", pa10, FLAG_STRICT},
{ "add",	0x08000600, 0xfc000fe0, "?ax,b,t", pa10, 0},
{ "addl",	0x08000a00, 0xfc000fe0, "?ax,b,t", pa10, 0},
{ "addo",	0x08000e00, 0xfc000fe0, "?ax,b,t", pa10, 0},
{ "addc",	0x08000700, 0xfc000fe0, "?ax,b,t", pa10, 0},
{ "addco",	0x08000f00, 0xfc000fe0, "?ax,b,t", pa10, 0},
{ "sub",	0x080004e0, 0xfc0007e0, "ct?Sx,b,t", pa20, FLAG_STRICT},
{ "sub",	0x080004c0, 0xfc0007e0, "ct?sx,b,t", pa10, FLAG_STRICT},
{ "sub",	0x08000520, 0xfc0007e0, "cB?Sx,b,t", pa20, FLAG_STRICT},
{ "sub",	0x08000500, 0xfc0007e0, "cb?sx,b,t", pa10, FLAG_STRICT},
{ "sub",	0x08000420, 0xfc0007e0, "cv?Sx,b,t", pa20, FLAG_STRICT},
{ "sub",	0x08000400, 0xfc0007e0, "cv?sx,b,t", pa10, FLAG_STRICT},
{ "sub",	0x08000400, 0xfc000fe0, "?sx,b,t", pa10, 0},
{ "subo",	0x08000c00, 0xfc000fe0, "?sx,b,t", pa10, 0},
{ "subb",	0x08000500, 0xfc000fe0, "?sx,b,t", pa10, 0},
{ "subbo",	0x08000d00, 0xfc000fe0, "?sx,b,t", pa10, 0},
{ "subt",	0x080004c0, 0xfc000fe0, "?sx,b,t", pa10, 0},
{ "subto",	0x08000cc0, 0xfc000fe0, "?sx,b,t", pa10, 0},
{ "ds",		0x08000440, 0xfc000fe0, "?sx,b,t", pa10, 0},
{ "subi",	0x94000000, 0xfc000000, "cv?si,b,x", pa10, FLAG_STRICT},
{ "subi",	0x94000000, 0xfc000800, "?si,b,x", pa10, 0},
{ "subio",	0x94000800, 0xfc000800, "?si,b,x", pa10, 0},
{ "cmpiclr",	0x90000800, 0xfc000800, "?Si,b,x", pa20, FLAG_STRICT},
{ "cmpiclr",	0x90000000, 0xfc000800, "?si,b,x", pa10, FLAG_STRICT},
{ "comiclr",	0x90000000, 0xfc000800, "?si,b,x", pa10, 0},
{ "shladd",	0x08000220, 0xfc000320, "ca?Ax,.,b,t", pa20, FLAG_STRICT},
{ "shladd",	0x08000200, 0xfc000320, "ca?ax,.,b,t", pa10, FLAG_STRICT},
{ "sh1add",	0x08000640, 0xfc000fe0, "?ax,b,t", pa10, 0},
{ "sh1addl",	0x08000a40, 0xfc000fe0, "?ax,b,t", pa10, 0},
{ "sh1addo",	0x08000e40, 0xfc000fe0, "?ax,b,t", pa10, 0},
{ "sh2add",	0x08000680, 0xfc000fe0, "?ax,b,t", pa10, 0},
{ "sh2addl",	0x08000a80, 0xfc000fe0, "?ax,b,t", pa10, 0},
{ "sh2addo",	0x08000e80, 0xfc000fe0, "?ax,b,t", pa10, 0},
{ "sh3add",	0x080006c0, 0xfc000fe0, "?ax,b,t", pa10, 0},
{ "sh3addl",	0x08000ac0, 0xfc000fe0, "?ax,b,t", pa10, 0},
{ "sh3addo",	0x08000ec0, 0xfc000fe0, "?ax,b,t", pa10, 0},

/* Subword Operation Instructions.  */

{ "hadd",	0x08000300, 0xfc00ff20, "cHx,b,t", pa20, FLAG_STRICT},
{ "havg",	0x080002c0, 0xfc00ffe0, "x,b,t", pa20, FLAG_STRICT},
{ "hshl",	0xf8008800, 0xffe0fc20, "x,*,t", pa20, FLAG_STRICT},
{ "hshladd",	0x08000700, 0xfc00ff20, "x,.,b,t", pa20, FLAG_STRICT},
{ "hshr",	0xf800c800, 0xfc1ff820, "cSb,*,t", pa20, FLAG_STRICT},
{ "hshradd",	0x08000500, 0xfc00ff20, "x,.,b,t", pa20, FLAG_STRICT},
{ "hsub",	0x08000100, 0xfc00ff20, "cHx,b,t", pa20, FLAG_STRICT},
{ "mixh",	0xf8008400, 0xfc009fe0, "chx,b,t", pa20, FLAG_STRICT},
{ "mixw",	0xf8008000, 0xfc009fe0, "chx,b,t", pa20, FLAG_STRICT},
{ "permh",	0xf8000000, 0xfc009020, "c*a,t", pa20, FLAG_STRICT},


/* Extract and Deposit Instructions.  */

{ "shrpd",	0xd0000200, 0xfc001fe0, "?Xx,b,!,t", pa20, FLAG_STRICT},
{ "shrpd",	0xd0000400, 0xfc001400, "?Xx,b,~,t", pa20, FLAG_STRICT},
{ "shrpw",	0xd0000000, 0xfc001fe0, "?xx,b,!,t", pa10, FLAG_STRICT},
{ "shrpw",	0xd0000800, 0xfc001c00, "?xx,b,p,t", pa10, FLAG_STRICT},
{ "vshd",	0xd0000000, 0xfc001fe0, "?xx,b,t", pa10, 0},
{ "shd",	0xd0000800, 0xfc001c00, "?xx,b,p,t", pa10, 0},
{ "extrd",	0xd0001200, 0xfc001ae0, "cS?Xb,!,%,x", pa20, FLAG_STRICT},
{ "extrd",	0xd8000000, 0xfc000000, "cS?Xb,q,|,x", pa20, FLAG_STRICT},
{ "extrw",	0xd0001000, 0xfc001be0, "cS?xb,!,T,x", pa10, FLAG_STRICT},
{ "extrw",	0xd0001800, 0xfc001800, "cS?xb,P,T,x", pa10, FLAG_STRICT},
{ "vextru",	0xd0001000, 0xfc001fe0, "?xb,T,x", pa10, 0},
{ "vextrs",	0xd0001400, 0xfc001fe0, "?xb,T,x", pa10, 0},
{ "extru",	0xd0001800, 0xfc001c00, "?xb,P,T,x", pa10, 0},
{ "extrs",	0xd0001c00, 0xfc001c00, "?xb,P,T,x", pa10, 0},
{ "depd",	0xd4000200, 0xfc001ae0, "cz?Xx,!,%,b", pa20, FLAG_STRICT},
{ "depd",	0xf0000000, 0xfc000000, "cz?Xx,~,|,b", pa20, FLAG_STRICT},
{ "depdi",	0xd4001200, 0xfc001ae0, "cz?X5,!,%,b", pa20, FLAG_STRICT},
{ "depdi",	0xf4000000, 0xfc000000, "cz?X5,~,|,b", pa20, FLAG_STRICT},
{ "depw",	0xd4000000, 0xfc001be0, "cz?xx,!,T,b", pa10, FLAG_STRICT},
{ "depw",	0xd4000800, 0xfc001800, "cz?xx,p,T,b", pa10, FLAG_STRICT},
{ "depwi",	0xd4001000, 0xfc001be0, "cz?x5,!,T,b", pa10, FLAG_STRICT},
{ "depwi",	0xd4001800, 0xfc001800, "cz?x5,p,T,b", pa10, FLAG_STRICT},
{ "zvdep",	0xd4000000, 0xfc001fe0, "?xx,T,b", pa10, 0},
{ "vdep",	0xd4000400, 0xfc001fe0, "?xx,T,b", pa10, 0},
{ "zdep",	0xd4000800, 0xfc001c00, "?xx,p,T,b", pa10, 0},
{ "dep",	0xd4000c00, 0xfc001c00, "?xx,p,T,b", pa10, 0},
{ "zvdepi",	0xd4001000, 0xfc001fe0, "?x5,T,b", pa10, 0},
{ "vdepi",	0xd4001400, 0xfc001fe0, "?x5,T,b", pa10, 0},
{ "zdepi",	0xd4001800, 0xfc001c00, "?x5,p,T,b", pa10, 0},
{ "depi",	0xd4001c00, 0xfc001c00, "?x5,p,T,b", pa10, 0},

/* System Control Instructions.  */

{ "break",	0x00000000, 0xfc001fe0, "r,A", pa10, 0},
{ "rfi",	0x00000c00, 0xffffff1f, "cr", pa10, FLAG_STRICT},
{ "rfi",	0x00000c00, 0xffffffff, "", pa10, 0},
{ "rfir",	0x00000ca0, 0xffffffff, "", pa11, 0},
{ "ssm",	0x00000d60, 0xfc00ffe0, "U,t", pa20, FLAG_STRICT},
{ "ssm",	0x00000d60, 0xffe0ffe0, "R,t", pa10, 0},
{ "rsm",	0x00000e60, 0xfc00ffe0, "U,t", pa20, FLAG_STRICT},
{ "rsm",	0x00000e60, 0xffe0ffe0, "R,t", pa10, 0},
{ "mtsm",	0x00001860, 0xffe0ffff, "x", pa10, 0},
{ "ldsid",	0x000010a0, 0xfc1fffe0, "(b),t", pa10, 0},
{ "ldsid",	0x000010a0, 0xfc1f3fe0, "(s,b),t", pa10, 0},
{ "mtsp",	0x00001820, 0xffe01fff, "x,S", pa10, 0},
{ "mtctl",	0x00001840, 0xfc00ffff, "x,^", pa10, 0},
{ "mtsarcm",	0x016018C0, 0xffe0ffff, "x", pa20, FLAG_STRICT},
{ "mfia",	0x000014A0, 0xffffffe0, "t", pa20, FLAG_STRICT},
{ "mfsp",	0x000004a0, 0xffff1fe0, "S,t", pa10, 0},
{ "mfctl",	0x016048a0, 0xffffffe0, "cW!,t", pa20, FLAG_STRICT},
{ "mfctl",	0x000008a0, 0xfc1fffe0, "^,t", pa10, 0},
{ "sync",	0x00000400, 0xffffffff, "", pa10, 0},
{ "syncdma",	0x00100400, 0xffffffff, "", pa10, 0},
{ "probe",	0x04001180, 0xfc00ffa0, "cw(b),x,t", pa10, FLAG_STRICT},
{ "probe",	0x04001180, 0xfc003fa0, "cw(s,b),x,t", pa10, FLAG_STRICT},
{ "probei",	0x04003180, 0xfc00ffa0, "cw(b),R,t", pa10, FLAG_STRICT},
{ "probei",	0x04003180, 0xfc003fa0, "cw(s,b),R,t", pa10, FLAG_STRICT},
{ "prober",	0x04001180, 0xfc00ffe0, "(b),x,t", pa10, 0},
{ "prober",	0x04001180, 0xfc003fe0, "(s,b),x,t", pa10, 0},
{ "proberi",	0x04003180, 0xfc00ffe0, "(b),R,t", pa10, 0},
{ "proberi",	0x04003180, 0xfc003fe0, "(s,b),R,t", pa10, 0},
{ "probew",	0x040011c0, 0xfc00ffe0, "(b),x,t", pa10, 0},
{ "probew",	0x040011c0, 0xfc003fe0, "(s,b),x,t", pa10, 0},
{ "probewi",	0x040031c0, 0xfc00ffe0, "(b),R,t", pa10, 0},
{ "probewi",	0x040031c0, 0xfc003fe0, "(s,b),R,t", pa10, 0},
{ "lpa",	0x04001340, 0xfc00ffc0, "cZx(b),t", pa10, 0},
{ "lpa",	0x04001340, 0xfc003fc0, "cZx(s,b),t", pa10, 0},
{ "lci",	0x04001300, 0xfc00ffe0, "x(b),t", pa11, 0},
{ "lci",	0x04001300, 0xfc003fe0, "x(s,b),t", pa11, 0},
{ "pdtlb",	0x04001600, 0xfc00ffdf, "cLcZx(b)", pa20, FLAG_STRICT},
{ "pdtlb",	0x04001600, 0xfc003fdf, "cLcZx(s,b)", pa20, FLAG_STRICT},
{ "pdtlb",	0x04001600, 0xfc1fffdf, "cLcZ@(b)", pa20, FLAG_STRICT},
{ "pdtlb",	0x04001600, 0xfc1f3fdf, "cLcZ@(s,b)", pa20, FLAG_STRICT},
{ "pdtlb",	0x04001200, 0xfc00ffdf, "cZx(b)", pa10, 0},
{ "pdtlb",	0x04001200, 0xfc003fdf, "cZx(s,b)", pa10, 0},
{ "pitlb",	0x04000600, 0xfc001fdf, "cLcZx(S,b)", pa20, FLAG_STRICT},
{ "pitlb",	0x04000600, 0xfc1f1fdf, "cLcZ@(S,b)", pa20, FLAG_STRICT},
{ "pitlb",	0x04000200, 0xfc001fdf, "cZx(S,b)", pa10, 0},
{ "pdtlbe",	0x04001240, 0xfc00ffdf, "cZx(b)", pa10, 0},
{ "pdtlbe",	0x04001240, 0xfc003fdf, "cZx(s,b)", pa10, 0},
{ "pitlbe",	0x04000240, 0xfc001fdf, "cZx(S,b)", pa10, 0},
{ "idtlba",	0x04001040, 0xfc00ffff, "x,(b)", pa10, 0},
{ "idtlba",	0x04001040, 0xfc003fff, "x,(s,b)", pa10, 0},
{ "iitlba",	0x04000040, 0xfc001fff, "x,(S,b)", pa10, 0},
{ "idtlbp",	0x04001000, 0xfc00ffff, "x,(b)", pa10, 0},
{ "idtlbp",	0x04001000, 0xfc003fff, "x,(s,b)", pa10, 0},
{ "iitlbp",	0x04000000, 0xfc001fff, "x,(S,b)", pa10, 0},
{ "pdc",	0x04001380, 0xfc00ffdf, "cZx(b)", pa10, 0},
{ "pdc",	0x04001380, 0xfc003fdf, "cZx(s,b)", pa10, 0},
{ "fdc",	0x04001280, 0xfc00ffdf, "cZx(b)", pa10, FLAG_STRICT},
{ "fdc",	0x04001280, 0xfc003fdf, "cZx(s,b)", pa10, FLAG_STRICT},
{ "fdc",	0x04003280, 0xfc00ffff, "5(b)", pa20, FLAG_STRICT},
{ "fdc",	0x04003280, 0xfc003fff, "5(s,b)", pa20, FLAG_STRICT},
{ "fdc",	0x04001280, 0xfc00ffdf, "cZx(b)", pa10, 0},
{ "fdc",	0x04001280, 0xfc003fdf, "cZx(s,b)", pa10, 0},
{ "fic",	0x040013c0, 0xfc00dfdf, "cZx(b)", pa20, FLAG_STRICT},
{ "fic",	0x04000280, 0xfc001fdf, "cZx(S,b)", pa10, 0},
{ "fdce",	0x040012c0, 0xfc00ffdf, "cZx(b)", pa10, 0},
{ "fdce",	0x040012c0, 0xfc003fdf, "cZx(s,b)", pa10, 0},
{ "fice",	0x040002c0, 0xfc001fdf, "cZx(S,b)", pa10, 0},
{ "diag",	0x14000000, 0xfc000000, "D", pa10, 0},
{ "idtlbt",	0x04001800, 0xfc00ffff, "x,b", pa20, FLAG_STRICT},
{ "iitlbt",	0x04000800, 0xfc00ffff, "x,b", pa20, FLAG_STRICT},

/* These may be specific to certain versions of the PA.  Joel claimed
   they were 72000 (7200?) specific.  However, I'm almost certain the
   mtcpu/mfcpu were undocumented, but available in the older 700 machines.  */
{ "mtcpu",	0x14001600, 0xfc00ffff, "x,^", pa10, 0},
{ "mfcpu",	0x14001A00, 0xfc00ffff, "^,x", pa10, 0},
{ "tocen",	0x14403600, 0xffffffff, "", pa10, 0},
{ "tocdis",	0x14401620, 0xffffffff, "", pa10, 0},
{ "shdwgr",	0x14402600, 0xffffffff, "", pa10, 0},
{ "grshdw",	0x14400620, 0xffffffff, "", pa10, 0},

/* gfw and gfr are not in the HP PA 1.1 manual, but they are in either
   the Timex FPU or the Mustang ERS (not sure which) manual.  */
{ "gfw",	0x04001680, 0xfc00ffdf, "cZx(b)", pa11, 0},
{ "gfw",	0x04001680, 0xfc003fdf, "cZx(s,b)", pa11, 0},
{ "gfr",	0x04001a80, 0xfc00ffdf, "cZx(b)", pa11, 0},
{ "gfr",	0x04001a80, 0xfc003fdf, "cZx(s,b)", pa11, 0},

/* Floating Point Coprocessor Instructions.  */

{ "fldw",	0x24000000, 0xfc00df80, "cXx(b),fT", pa10, FLAG_STRICT},
{ "fldw",	0x24000000, 0xfc001f80, "cXx(s,b),fT", pa10, FLAG_STRICT},
{ "fldw",	0x24000000, 0xfc00d380, "cxccx(b),fT", pa11, FLAG_STRICT},
{ "fldw",	0x24000000, 0xfc001380, "cxccx(s,b),fT", pa11, FLAG_STRICT},
{ "fldw",	0x24001020, 0xfc1ff3a0, "cocc@(b),fT", pa20, FLAG_STRICT},
{ "fldw",	0x24001020, 0xfc1f33a0, "cocc@(s,b),fT", pa20, FLAG_STRICT},
{ "fldw",	0x24001000, 0xfc00df80, "cM5(b),fT", pa10, FLAG_STRICT},
{ "fldw",	0x24001000, 0xfc001f80, "cM5(s,b),fT", pa10, FLAG_STRICT},
{ "fldw",	0x24001000, 0xfc00d380, "cmcc5(b),fT", pa11, FLAG_STRICT},
{ "fldw",	0x24001000, 0xfc001380, "cmcc5(s,b),fT", pa11, FLAG_STRICT},
{ "fldw",	0x5c000000, 0xfc000004, "y(b),fe", pa20w, FLAG_STRICT},
{ "fldw",	0x58000000, 0xfc000000, "cJy(b),fe", pa20w, FLAG_STRICT},
{ "fldw",	0x5c000000, 0xfc00c004, "d(b),fe", pa20, FLAG_STRICT},
{ "fldw",	0x5c000000, 0xfc000004, "d(s,b),fe", pa20, FLAG_STRICT},
{ "fldw",	0x58000000, 0xfc00c000, "cJd(b),fe", pa20, FLAG_STRICT},
{ "fldw",	0x58000000, 0xfc000000, "cJd(s,b),fe", pa20, FLAG_STRICT},
{ "fldd",	0x2c000000, 0xfc00dfc0, "cXx(b),ft", pa10, FLAG_STRICT},
{ "fldd",	0x2c000000, 0xfc001fc0, "cXx(s,b),ft", pa10, FLAG_STRICT},
{ "fldd",	0x2c000000, 0xfc00d3c0, "cxccx(b),ft", pa11, FLAG_STRICT},
{ "fldd",	0x2c000000, 0xfc0013c0, "cxccx(s,b),ft", pa11, FLAG_STRICT},
{ "fldd",	0x2c001020, 0xfc1ff3e0, "cocc@(b),ft", pa20, FLAG_STRICT},
{ "fldd",	0x2c001020, 0xfc1f33e0, "cocc@(s,b),ft", pa20, FLAG_STRICT},
{ "fldd",	0x2c001000, 0xfc00dfc0, "cM5(b),ft", pa10, FLAG_STRICT},
{ "fldd",	0x2c001000, 0xfc001fc0, "cM5(s,b),ft", pa10, FLAG_STRICT},
{ "fldd",	0x2c001000, 0xfc00d3c0, "cmcc5(b),ft", pa11, FLAG_STRICT},
{ "fldd",	0x2c001000, 0xfc0013c0, "cmcc5(s,b),ft", pa11, FLAG_STRICT},
{ "fldd",	0x50000002, 0xfc000002, "cq&(b),fx", pa20w, FLAG_STRICT},
{ "fldd",	0x50000002, 0xfc00c002, "cq#(b),fx", pa20, FLAG_STRICT},
{ "fldd",	0x50000002, 0xfc000002, "cq#(s,b),fx", pa20, FLAG_STRICT},
{ "fstw",	0x24000200, 0xfc00df80, "cXfT,x(b)", pa10, FLAG_STRICT},
{ "fstw",	0x24000200, 0xfc001f80, "cXfT,x(s,b)", pa10, FLAG_STRICT},
{ "fstw",	0x24000200, 0xfc00d380, "cxcCfT,x(b)", pa11, FLAG_STRICT},
{ "fstw",	0x24000200, 0xfc001380, "cxcCfT,x(s,b)", pa11, FLAG_STRICT},
{ "fstw",	0x24001220, 0xfc1ff3a0, "cocCfT,@(b)", pa20, FLAG_STRICT},
{ "fstw",	0x24001220, 0xfc1f33a0, "cocCfT,@(s,b)", pa20, FLAG_STRICT},
{ "fstw",	0x24001200, 0xfc00df80, "cMfT,5(b)", pa10, FLAG_STRICT},
{ "fstw",	0x24001200, 0xfc001f80, "cMfT,5(s,b)", pa10, FLAG_STRICT},
{ "fstw",	0x24001200, 0xfc00df80, "cMfT,5(b)", pa10, FLAG_STRICT},
{ "fstw",	0x24001200, 0xfc001f80, "cMfT,5(s,b)", pa10, FLAG_STRICT},
{ "fstw",	0x7c000000, 0xfc000004, "fE,y(b)", pa20w, FLAG_STRICT},
{ "fstw",	0x78000000, 0xfc000000, "cJfE,y(b)", pa20w, FLAG_STRICT},
{ "fstw",	0x7c000000, 0xfc00c004, "fE,d(b)", pa20, FLAG_STRICT},
{ "fstw",	0x7c000000, 0xfc000004, "fE,d(s,b)", pa20, FLAG_STRICT},
{ "fstw",	0x78000000, 0xfc00c000, "cJfE,d(b)", pa20, FLAG_STRICT},
{ "fstw",	0x78000000, 0xfc000000, "cJfE,d(s,b)", pa20, FLAG_STRICT},
{ "fstd",	0x2c000200, 0xfc00dfc0, "cXft,x(b)", pa10, FLAG_STRICT},
{ "fstd",	0x2c000200, 0xfc001fc0, "cXft,x(s,b)", pa10, FLAG_STRICT},
{ "fstd",	0x2c000200, 0xfc00d3c0, "cxcCft,x(b)", pa11, FLAG_STRICT},
{ "fstd",	0x2c000200, 0xfc0013c0, "cxcCft,x(s,b)", pa11, FLAG_STRICT},
{ "fstd",	0x2c001220, 0xfc1ff3e0, "cocCft,@(b)", pa20, FLAG_STRICT},
{ "fstd",	0x2c001220, 0xfc1f33e0, "cocCft,@(s,b)", pa20, FLAG_STRICT},
{ "fstd",	0x2c001200, 0xfc00dfc0, "cMft,5(b)", pa10, FLAG_STRICT},
{ "fstd",	0x2c001200, 0xfc001fc0, "cMft,5(s,b)", pa10, FLAG_STRICT},
{ "fstd",	0x2c001200, 0xfc00d3c0, "cmcCft,5(b)", pa11, FLAG_STRICT},
{ "fstd",	0x2c001200, 0xfc0013c0, "cmcCft,5(s,b)", pa11, FLAG_STRICT},
{ "fstd",	0x70000002, 0xfc000002, "cqfx,&(b)", pa20w, FLAG_STRICT},
{ "fstd",	0x70000002, 0xfc00c002, "cqfx,#(b)", pa20, FLAG_STRICT},
{ "fstd",	0x70000002, 0xfc000002, "cqfx,#(s,b)", pa20, FLAG_STRICT},
{ "fldwx",	0x24000000, 0xfc00df80, "cXx(b),fT", pa10, FLAG_STRICT},
{ "fldwx",	0x24000000, 0xfc001f80, "cXx(s,b),fT", pa10, FLAG_STRICT},
{ "fldwx",	0x24000000, 0xfc00d380, "cxccx(b),fT", pa11, FLAG_STRICT},
{ "fldwx",	0x24000000, 0xfc001380, "cxccx(s,b),fT", pa11, FLAG_STRICT},
{ "fldwx",	0x24000000, 0xfc00df80, "cXx(b),fT", pa10, 0},
{ "fldwx",	0x24000000, 0xfc001f80, "cXx(s,b),fT", pa10, 0},
{ "flddx",	0x2c000000, 0xfc00dfc0, "cXx(b),ft", pa10, FLAG_STRICT},
{ "flddx",	0x2c000000, 0xfc001fc0, "cXx(s,b),ft", pa10, FLAG_STRICT},
{ "flddx",	0x2c000000, 0xfc00d3c0, "cxccx(b),ft", pa11, FLAG_STRICT},
{ "flddx",	0x2c000000, 0xfc0013c0, "cxccx(s,b),ft", pa11, FLAG_STRICT},
{ "flddx",	0x2c000000, 0xfc00dfc0, "cXx(b),ft", pa10, 0},
{ "flddx",	0x2c000000, 0xfc001fc0, "cXx(s,b),ft", pa10, 0},
{ "fstwx",	0x24000200, 0xfc00df80, "cxfT,x(b)", pa10, FLAG_STRICT},
{ "fstwx",	0x24000200, 0xfc001f80, "cxfT,x(s,b)", pa10, FLAG_STRICT},
{ "fstwx",	0x24000200, 0xfc00d380, "cxcCfT,x(b)", pa11, FLAG_STRICT},
{ "fstwx",	0x24000200, 0xfc001380, "cxcCfT,x(s,b)", pa11, FLAG_STRICT},
{ "fstwx",	0x24000200, 0xfc00df80, "cxfT,x(b)", pa10, 0},
{ "fstwx",	0x24000200, 0xfc001f80, "cxfT,x(s,b)", pa10, 0},
{ "fstdx",	0x2c000200, 0xfc00dfc0, "cxft,x(b)", pa10, FLAG_STRICT},
{ "fstdx",	0x2c000200, 0xfc001fc0, "cxft,x(s,b)", pa10, FLAG_STRICT},
{ "fstdx",	0x2c000200, 0xfc00d3c0, "cxcCft,x(b)", pa11, FLAG_STRICT},
{ "fstdx",	0x2c000200, 0xfc0013c0, "cxcCft,x(s,b)", pa11, FLAG_STRICT},
{ "fstdx",	0x2c000200, 0xfc00dfc0, "cxft,x(b)", pa10, 0},
{ "fstdx",	0x2c000200, 0xfc001fc0, "cxft,x(s,b)", pa10, 0},
{ "fstqx",	0x3c000200, 0xfc00dfc0, "cxft,x(b)", pa10, 0},
{ "fstqx",	0x3c000200, 0xfc001fc0, "cxft,x(s,b)", pa10, 0},
{ "fldws",	0x24001000, 0xfc00df80, "cm5(b),fT", pa10, FLAG_STRICT},
{ "fldws",	0x24001000, 0xfc001f80, "cm5(s,b),fT", pa10, FLAG_STRICT},
{ "fldws",	0x24001000, 0xfc00d380, "cmcc5(b),fT", pa11, FLAG_STRICT},
{ "fldws",	0x24001000, 0xfc001380, "cmcc5(s,b),fT", pa11, FLAG_STRICT},
{ "fldws",	0x24001000, 0xfc00df80, "cm5(b),fT", pa10, 0},
{ "fldws",	0x24001000, 0xfc001f80, "cm5(s,b),fT", pa10, 0},
{ "fldds",	0x2c001000, 0xfc00dfc0, "cm5(b),ft", pa10, FLAG_STRICT},
{ "fldds",	0x2c001000, 0xfc001fc0, "cm5(s,b),ft", pa10, FLAG_STRICT},
{ "fldds",	0x2c001000, 0xfc00d3c0, "cmcc5(b),ft", pa11, FLAG_STRICT},
{ "fldds",	0x2c001000, 0xfc0013c0, "cmcc5(s,b),ft", pa11, FLAG_STRICT},
{ "fldds",	0x2c001000, 0xfc00dfc0, "cm5(b),ft", pa10, 0},
{ "fldds",	0x2c001000, 0xfc001fc0, "cm5(s,b),ft", pa10, 0},
{ "fstws",	0x24001200, 0xfc00df80, "cmfT,5(b)", pa10, FLAG_STRICT},
{ "fstws",	0x24001200, 0xfc001f80, "cmfT,5(s,b)", pa10, FLAG_STRICT},
{ "fstws",	0x24001200, 0xfc00d380, "cmcCfT,5(b)", pa11, FLAG_STRICT},
{ "fstws",	0x24001200, 0xfc001380, "cmcCfT,5(s,b)", pa11, FLAG_STRICT},
{ "fstws",	0x24001200, 0xfc00df80, "cmfT,5(b)", pa10, 0},
{ "fstws",	0x24001200, 0xfc001f80, "cmfT,5(s,b)", pa10, 0},
{ "fstds",	0x2c001200, 0xfc00dfc0, "cmft,5(b)", pa10, FLAG_STRICT},
{ "fstds",	0x2c001200, 0xfc001fc0, "cmft,5(s,b)", pa10, FLAG_STRICT},
{ "fstds",	0x2c001200, 0xfc00d3c0, "cmcCft,5(b)", pa11, FLAG_STRICT},
{ "fstds",	0x2c001200, 0xfc0013c0, "cmcCft,5(s,b)", pa11, FLAG_STRICT},
{ "fstds",	0x2c001200, 0xfc00dfc0, "cmft,5(b)", pa10, 0},
{ "fstds",	0x2c001200, 0xfc001fc0, "cmft,5(s,b)", pa10, 0},
{ "fstqs",	0x3c001200, 0xfc00dfc0, "cmft,5(b)", pa10, 0},
{ "fstqs",	0x3c001200, 0xfc001fc0, "cmft,5(s,b)", pa10, 0},
{ "fadd",	0x30000600, 0xfc00e7e0, "Ffa,fb,fT", pa10, 0},
{ "fadd",	0x38000600, 0xfc00e720, "IfA,fB,fT", pa10, 0},
{ "fsub",	0x30002600, 0xfc00e7e0, "Ffa,fb,fT", pa10, 0},
{ "fsub",	0x38002600, 0xfc00e720, "IfA,fB,fT", pa10, 0},
{ "fmpy",	0x30004600, 0xfc00e7e0, "Ffa,fb,fT", pa10, 0},
{ "fmpy",	0x38004600, 0xfc00e720, "IfA,fB,fT", pa10, 0},
{ "fdiv",	0x30006600, 0xfc00e7e0, "Ffa,fb,fT", pa10, 0},
{ "fdiv",	0x38006600, 0xfc00e720, "IfA,fB,fT", pa10, 0},
{ "fsqrt",	0x30008000, 0xfc1fe7e0, "Ffa,fT", pa10, 0},
{ "fsqrt",	0x38008000, 0xfc1fe720, "FfA,fT", pa10, 0},
{ "fabs",	0x30006000, 0xfc1fe7e0, "Ffa,fT", pa10, 0},
{ "fabs",	0x38006000, 0xfc1fe720, "FfA,fT", pa10, 0},
{ "frem",	0x30008600, 0xfc00e7e0, "Ffa,fb,fT", pa10, 0},
{ "frem",	0x38008600, 0xfc00e720, "FfA,fB,fT", pa10, 0},
{ "frnd",	0x3000a000, 0xfc1fe7e0, "Ffa,fT", pa10, 0},
{ "frnd",	0x3800a000, 0xfc1fe720, "FfA,fT", pa10, 0},
{ "fcpy",	0x30004000, 0xfc1fe7e0, "Ffa,fT", pa10, 0},
{ "fcpy",	0x38004000, 0xfc1fe720, "FfA,fT", pa10, 0},
{ "fcnvff",	0x30000200, 0xfc1f87e0, "FGfa,fT", pa10, 0},
{ "fcnvff",	0x38000200, 0xfc1f8720, "FGfA,fT", pa10, 0},
{ "fcnvxf",	0x30008200, 0xfc1f87e0, "FGfa,fT", pa10, 0},
{ "fcnvxf",	0x38008200, 0xfc1f8720, "FGfA,fT", pa10, 0},
{ "fcnvfx",	0x30010200, 0xfc1f87e0, "FGfa,fT", pa10, 0},
{ "fcnvfx",	0x38010200, 0xfc1f8720, "FGfA,fT", pa10, 0},
{ "fcnvfxt",	0x30018200, 0xfc1f87e0, "FGfa,fT", pa10, 0},
{ "fcnvfxt",	0x38018200, 0xfc1f8720, "FGfA,fT", pa10, 0},
{ "fmpyfadd",	0xb8000000, 0xfc000020, "IfA,fB,fC,fT", pa20, FLAG_STRICT},
{ "fmpynfadd",	0xb8000020, 0xfc000020, "IfA,fB,fC,fT", pa20, FLAG_STRICT},
{ "fneg",	0x3000c000, 0xfc1fe7e0, "Ffa,fT", pa20, FLAG_STRICT},
{ "fneg",	0x3800c000, 0xfc1fe720, "IfA,fT", pa20, FLAG_STRICT},
{ "fnegabs",	0x3000e000, 0xfc1fe7e0, "Ffa,fT", pa20, FLAG_STRICT},
{ "fnegabs",	0x3800e000, 0xfc1fe720, "IfA,fT", pa20, FLAG_STRICT},
{ "fcnv",	0x30000200, 0xfc1c0720, "{_fa,fT", pa20, FLAG_STRICT},
{ "fcnv",	0x38000200, 0xfc1c0720, "FGfA,fT", pa20, FLAG_STRICT},
{ "fcmp",	0x30000400, 0xfc00e7e0, "F?ffa,fb", pa10, FLAG_STRICT},
{ "fcmp",	0x38000400, 0xfc00e720, "I?ffA,fB", pa10, FLAG_STRICT},
{ "fcmp",	0x30000400, 0xfc0007e0, "F?ffa,fb,h", pa20, FLAG_STRICT},
{ "fcmp",	0x38000400, 0xfc000720, "I?ffA,fB,h", pa20, FLAG_STRICT},
{ "fcmp",	0x30000400, 0xfc00e7e0, "F?ffa,fb", pa10, 0},
{ "fcmp",	0x38000400, 0xfc00e720, "I?ffA,fB", pa10, 0},
{ "xmpyu",	0x38004700, 0xfc00e720, "fX,fB,fT", pa11, 0},
{ "fmpyadd",	0x18000000, 0xfc000000, "Hfi,fj,fk,fl,fm", pa11, 0},
{ "fmpysub",	0x98000000, 0xfc000000, "Hfi,fj,fk,fl,fm", pa11, 0},
{ "ftest",	0x30002420, 0xffffffff, "", pa10, FLAG_STRICT},
{ "ftest",	0x30002420, 0xffffffe0, ",=", pa20, FLAG_STRICT},
{ "ftest",	0x30000420, 0xffff1fff, "m", pa20, FLAG_STRICT},
{ "fid",	0x30000000, 0xffffffff, "", pa11, 0},

/* Performance Monitor Instructions.  */

{ "pmdis",	0x30000280, 0xffffffdf, "N", pa20, FLAG_STRICT},
{ "pmenb",	0x30000680, 0xffffffff, "", pa20, FLAG_STRICT},

/* Assist Instructions.  */

{ "spop0",	0x10000000, 0xfc000600, "v,ON", pa10, 0},
{ "spop1",	0x10000200, 0xfc000600, "v,oNt", pa10, 0},
{ "spop2",	0x10000400, 0xfc000600, "v,1Nb", pa10, 0},
{ "spop3",	0x10000600, 0xfc000600, "v,0Nx,b", pa10, 0},
{ "copr",	0x30000000, 0xfc000000, "u,2N", pa10, 0},
{ "cldw",	0x24000000, 0xfc00de00, "ucXx(b),t", pa10, FLAG_STRICT},
{ "cldw",	0x24000000, 0xfc001e00, "ucXx(s,b),t", pa10, FLAG_STRICT},
{ "cldw",	0x24000000, 0xfc00d200, "ucxccx(b),t", pa11, FLAG_STRICT},
{ "cldw",	0x24000000, 0xfc001200, "ucxccx(s,b),t", pa11, FLAG_STRICT},
{ "cldw",	0x24001000, 0xfc00d200, "ucocc@(b),t", pa20, FLAG_STRICT},
{ "cldw",	0x24001000, 0xfc001200, "ucocc@(s,b),t", pa20, FLAG_STRICT},
{ "cldw",	0x24001000, 0xfc00de00, "ucM5(b),t", pa10, FLAG_STRICT},
{ "cldw",	0x24001000, 0xfc001e00, "ucM5(s,b),t", pa10, FLAG_STRICT},
{ "cldw",	0x24001000, 0xfc00d200, "ucmcc5(b),t", pa11, FLAG_STRICT},
{ "cldw",	0x24001000, 0xfc001200, "ucmcc5(s,b),t", pa11, FLAG_STRICT},
{ "cldd",	0x2c000000, 0xfc00de00, "ucXx(b),t", pa10, FLAG_STRICT},
{ "cldd",	0x2c000000, 0xfc001e00, "ucXx(s,b),t", pa10, FLAG_STRICT},
{ "cldd",	0x2c000000, 0xfc00d200, "ucxccx(b),t", pa11, FLAG_STRICT},
{ "cldd",	0x2c000000, 0xfc001200, "ucxccx(s,b),t", pa11, FLAG_STRICT},
{ "cldd",	0x2c001000, 0xfc00d200, "ucocc@(b),t", pa20, FLAG_STRICT},
{ "cldd",	0x2c001000, 0xfc001200, "ucocc@(s,b),t", pa20, FLAG_STRICT},
{ "cldd",	0x2c001000, 0xfc00de00, "ucM5(b),t", pa10, FLAG_STRICT},
{ "cldd",	0x2c001000, 0xfc001e00, "ucM5(s,b),t", pa10, FLAG_STRICT},
{ "cldd",	0x2c001000, 0xfc00d200, "ucmcc5(b),t", pa11, FLAG_STRICT},
{ "cldd",	0x2c001000, 0xfc001200, "ucmcc5(s,b),t", pa11, FLAG_STRICT},
{ "cstw",	0x24000200, 0xfc00de00, "ucXt,x(b)", pa10, FLAG_STRICT},
{ "cstw",	0x24000200, 0xfc001e00, "ucXt,x(s,b)", pa10, FLAG_STRICT},
{ "cstw",	0x24000200, 0xfc00d200, "ucxcCt,x(b)", pa11, FLAG_STRICT},
{ "cstw",	0x24000200, 0xfc001200, "ucxcCt,x(s,b)", pa11, FLAG_STRICT},
{ "cstw",	0x24001200, 0xfc00d200, "ucocCt,@(b)", pa20, FLAG_STRICT},
{ "cstw",	0x24001200, 0xfc001200, "ucocCt,@(s,b)", pa20, FLAG_STRICT},
{ "cstw",	0x24001200, 0xfc00de00, "ucMt,5(b)", pa10, FLAG_STRICT},
{ "cstw",	0x24001200, 0xfc001e00, "ucMt,5(s,b)", pa10, FLAG_STRICT},
{ "cstw",	0x24001200, 0xfc00d200, "ucmcCt,5(b)", pa11, FLAG_STRICT},
{ "cstw",	0x24001200, 0xfc001200, "ucmcCt,5(s,b)", pa11, FLAG_STRICT},
{ "cstd",	0x2c000200, 0xfc00de00, "ucXt,x(b)", pa10, FLAG_STRICT},
{ "cstd",	0x2c000200, 0xfc001e00, "ucXt,x(s,b)", pa10, FLAG_STRICT},
{ "cstd",	0x2c000200, 0xfc00d200, "ucxcCt,x(b)", pa11, FLAG_STRICT},
{ "cstd",	0x2c000200, 0xfc001200, "ucxcCt,x(s,b)", pa11, FLAG_STRICT},
{ "cstd",	0x2c001200, 0xfc00d200, "ucocCt,@(b)", pa20, FLAG_STRICT},
{ "cstd",	0x2c001200, 0xfc001200, "ucocCt,@(s,b)", pa20, FLAG_STRICT},
{ "cstd",	0x2c001200, 0xfc00de00, "ucMt,5(b)", pa10, FLAG_STRICT},
{ "cstd",	0x2c001200, 0xfc001e00, "ucMt,5(s,b)", pa10, FLAG_STRICT},
{ "cstd",	0x2c001200, 0xfc00d200, "ucmcCt,5(b)", pa11, FLAG_STRICT},
{ "cstd",	0x2c001200, 0xfc001200, "ucmcCt,5(s,b)", pa11, FLAG_STRICT},
{ "cldwx",	0x24000000, 0xfc00de00, "ucXx(b),t", pa10, FLAG_STRICT},
{ "cldwx",	0x24000000, 0xfc001e00, "ucXx(s,b),t", pa10, FLAG_STRICT},
{ "cldwx",	0x24000000, 0xfc00d200, "ucxccx(b),t", pa11, FLAG_STRICT},
{ "cldwx",	0x24000000, 0xfc001200, "ucxccx(s,b),t", pa11, FLAG_STRICT},
{ "cldwx",	0x24000000, 0xfc00de00, "ucXx(b),t", pa10, 0},
{ "cldwx",	0x24000000, 0xfc001e00, "ucXx(s,b),t", pa10, 0},
{ "clddx",	0x2c000000, 0xfc00de00, "ucXx(b),t", pa10, FLAG_STRICT},
{ "clddx",	0x2c000000, 0xfc001e00, "ucXx(s,b),t", pa10, FLAG_STRICT},
{ "clddx",	0x2c000000, 0xfc00d200, "ucxccx(b),t", pa11, FLAG_STRICT},
{ "clddx",	0x2c000000, 0xfc001200, "ucxccx(s,b),t", pa11, FLAG_STRICT},
{ "clddx",	0x2c000000, 0xfc00de00, "ucXx(b),t", pa10, 0},
{ "clddx",	0x2c000000, 0xfc001e00, "ucXx(s,b),t", pa10, 0},
{ "cstwx",	0x24000200, 0xfc00de00, "ucXt,x(b)", pa10, FLAG_STRICT},
{ "cstwx",	0x24000200, 0xfc001e00, "ucXt,x(s,b)", pa10, FLAG_STRICT},
{ "cstwx",	0x24000200, 0xfc00d200, "ucxcCt,x(b)", pa11, FLAG_STRICT},
{ "cstwx",	0x24000200, 0xfc001200, "ucxcCt,x(s,b)", pa11, FLAG_STRICT},
{ "cstwx",	0x24000200, 0xfc00de00, "ucXt,x(b)", pa10, 0},
{ "cstwx",	0x24000200, 0xfc001e00, "ucXt,x(s,b)", pa10, 0},
{ "cstdx",	0x2c000200, 0xfc00de00, "ucXt,x(b)", pa10, FLAG_STRICT},
{ "cstdx",	0x2c000200, 0xfc001e00, "ucXt,x(s,b)", pa10, FLAG_STRICT},
{ "cstdx",	0x2c000200, 0xfc00d200, "ucxcCt,x(b)", pa11, FLAG_STRICT},
{ "cstdx",	0x2c000200, 0xfc001200, "ucxcCt,x(s,b)", pa11, FLAG_STRICT},
{ "cstdx",	0x2c000200, 0xfc00de00, "ucXt,x(b)", pa10, 0},
{ "cstdx",	0x2c000200, 0xfc001e00, "ucXt,x(s,b)", pa10, 0},
{ "cldws",	0x24001000, 0xfc00de00, "ucM5(b),t", pa10, FLAG_STRICT},
{ "cldws",	0x24001000, 0xfc001e00, "ucM5(s,b),t", pa10, FLAG_STRICT},
{ "cldws",	0x24001000, 0xfc00d200, "ucmcc5(b),t", pa11, FLAG_STRICT},
{ "cldws",	0x24001000, 0xfc001200, "ucmcc5(s,b),t", pa11, FLAG_STRICT},
{ "cldws",	0x24001000, 0xfc00de00, "ucM5(b),t", pa10, 0},
{ "cldws",	0x24001000, 0xfc001e00, "ucM5(s,b),t", pa10, 0},
{ "cldds",	0x2c001000, 0xfc00de00, "ucM5(b),t", pa10, FLAG_STRICT},
{ "cldds",	0x2c001000, 0xfc001e00, "ucM5(s,b),t", pa10, FLAG_STRICT},
{ "cldds",	0x2c001000, 0xfc00d200, "ucmcc5(b),t", pa11, FLAG_STRICT},
{ "cldds",	0x2c001000, 0xfc001200, "ucmcc5(s,b),t", pa11, FLAG_STRICT},
{ "cldds",	0x2c001000, 0xfc00de00, "ucM5(b),t", pa10, 0},
{ "cldds",	0x2c001000, 0xfc001e00, "ucM5(s,b),t", pa10, 0},
{ "cstws",	0x24001200, 0xfc00de00, "ucMt,5(b)", pa10, FLAG_STRICT},
{ "cstws",	0x24001200, 0xfc001e00, "ucMt,5(s,b)", pa10, FLAG_STRICT},
{ "cstws",	0x24001200, 0xfc00d200, "ucmcCt,5(b)", pa11, FLAG_STRICT},
{ "cstws",	0x24001200, 0xfc001200, "ucmcCt,5(s,b)", pa11, FLAG_STRICT},
{ "cstws",	0x24001200, 0xfc00de00, "ucMt,5(b)", pa10, 0},
{ "cstws",	0x24001200, 0xfc001e00, "ucMt,5(s,b)", pa10, 0},
{ "cstds",	0x2c001200, 0xfc00de00, "ucMt,5(b)", pa10, FLAG_STRICT},
{ "cstds",	0x2c001200, 0xfc001e00, "ucMt,5(s,b)", pa10, FLAG_STRICT},
{ "cstds",	0x2c001200, 0xfc00d200, "ucmcCt,5(b)", pa11, FLAG_STRICT},
{ "cstds",	0x2c001200, 0xfc001200, "ucmcCt,5(s,b)", pa11, FLAG_STRICT},
{ "cstds",	0x2c001200, 0xfc00de00, "ucMt,5(b)", pa10, 0},
{ "cstds",	0x2c001200, 0xfc001e00, "ucMt,5(s,b)", pa10, 0},

/* More pseudo instructions which must follow the main table.  */
{ "call",	0xe800f000, 0xfc1ffffd, "n(b)", pa20, FLAG_STRICT},
{ "call",	0xe800a000, 0xffe0e000, "nW", pa10, FLAG_STRICT},
{ "ret",	0xe840d000, 0xfffffffd, "n", pa20, FLAG_STRICT},

};

#define NUMOPCODES ((sizeof pa_opcodes)/(sizeof pa_opcodes[0]))

/* SKV 12/18/92. Added some denotations for various operands.  */

#define PA_IMM11_AT_31 'i'
#define PA_IMM14_AT_31 'j'
#define PA_IMM21_AT_31 'k'
#define PA_DISP12 'w'
#define PA_DISP17 'W'

#define N_HPPA_OPERAND_FORMATS 5

/* Integer register names, indexed by the numbers which appear in the
   opcodes.  */
static const char *const reg_names[] =
{
  "flags", "r1", "rp", "r3", "r4", "r5", "r6", "r7", "r8", "r9",
  "r10", "r11", "r12", "r13", "r14", "r15", "r16", "r17", "r18", "r19",
  "r20", "r21", "r22", "r23", "r24", "r25", "r26", "dp", "ret0", "ret1",
  "sp", "r31"
};

/* Floating point register names, indexed by the numbers which appear in the
   opcodes.  */
static const char *const fp_reg_names[] =
{
  "fpsr", "fpe2", "fpe4", "fpe6",
  "fr4", "fr5", "fr6", "fr7", "fr8",
  "fr9", "fr10", "fr11", "fr12", "fr13", "fr14", "fr15",
  "fr16", "fr17", "fr18", "fr19", "fr20", "fr21", "fr22", "fr23",
  "fr24", "fr25", "fr26", "fr27", "fr28", "fr29", "fr30", "fr31"
};

typedef unsigned int CORE_ADDR;

/* Get at various relevant fields of an instruction word.  */

#define MASK_5  0x1f
#define MASK_10 0x3ff
#define MASK_11 0x7ff
#define MASK_14 0x3fff
#define MASK_16 0xffff
#define MASK_21 0x1fffff

/* These macros get bit fields using HP's numbering (MSB = 0).  */

#define GET_FIELD(X, FROM, TO) \
  ((X) >> (31 - (TO)) & ((1 << ((TO) - (FROM) + 1)) - 1))

#define GET_BIT(X, WHICH) \
  GET_FIELD (X, WHICH, WHICH)

/* Some of these have been converted to 2-d arrays because they
   consume less storage this way.  If the maintenance becomes a
   problem, convert them back to const 1-d pointer arrays.  */
static const char *const control_reg[] =
{
  "rctr", "cr1", "cr2", "cr3", "cr4", "cr5", "cr6", "cr7",
  "pidr1", "pidr2", "ccr", "sar", "pidr3", "pidr4",
  "iva", "eiem", "itmr", "pcsq", "pcoq", "iir", "isr",
  "ior", "ipsw", "eirr", "tr0", "tr1", "tr2", "tr3",
  "tr4", "tr5", "tr6", "tr7"
};

static const char *const compare_cond_names[] =
{
  "", ",=", ",<", ",<=", ",<<", ",<<=", ",sv", ",od",
  ",tr", ",<>", ",>=", ",>", ",>>=", ",>>", ",nsv", ",ev"
};
static const char *const compare_cond_64_names[] =
{
  "", ",*=", ",*<", ",*<=", ",*<<", ",*<<=", ",*sv", ",*od",
  ",*tr", ",*<>", ",*>=", ",*>", ",*>>=", ",*>>", ",*nsv", ",*ev"
};
static const char *const cmpib_cond_64_names[] =
{
  ",*<<", ",*=", ",*<", ",*<=", ",*>>=", ",*<>", ",*>=", ",*>"
};
static const char *const add_cond_names[] =
{
  "", ",=", ",<", ",<=", ",nuv", ",znv", ",sv", ",od",
  ",tr", ",<>", ",>=", ",>", ",uv", ",vnz", ",nsv", ",ev"
};
static const char *const add_cond_64_names[] =
{
  "", ",*=", ",*<", ",*<=", ",*nuv", ",*znv", ",*sv", ",*od",
  ",*tr", ",*<>", ",*>=", ",*>", ",*uv", ",*vnz", ",*nsv", ",*ev"
};
static const char *const wide_add_cond_names[] =
{
  "", ",=", ",<", ",<=", ",nuv", ",*=", ",*<", ",*<=",
  ",tr", ",<>", ",>=", ",>", ",uv", ",*<>", ",*>=", ",*>"
};
static const char *const logical_cond_names[] =
{
  "", ",=", ",<", ",<=", 0, 0, 0, ",od",
  ",tr", ",<>", ",>=", ",>", 0, 0, 0, ",ev"};
static const char *const logical_cond_64_names[] =
{
  "", ",*=", ",*<", ",*<=", 0, 0, 0, ",*od",
  ",*tr", ",*<>", ",*>=", ",*>", 0, 0, 0, ",*ev"};
static const char *const unit_cond_names[] =
{
  "", ",swz", ",sbz", ",shz", ",sdc", ",swc", ",sbc", ",shc",
  ",tr", ",nwz", ",nbz", ",nhz", ",ndc", ",nwc", ",nbc", ",nhc"
};
static const char *const unit_cond_64_names[] =
{
  "", ",*swz", ",*sbz", ",*shz", ",*sdc", ",*swc", ",*sbc", ",*shc",
  ",*tr", ",*nwz", ",*nbz", ",*nhz", ",*ndc", ",*nwc", ",*nbc", ",*nhc"
};
static const char *const shift_cond_names[] =
{
  "", ",=", ",<", ",od", ",tr", ",<>", ",>=", ",ev"
};
static const char *const shift_cond_64_names[] =
{
  "", ",*=", ",*<", ",*od", ",*tr", ",*<>", ",*>=", ",*ev"
};
static const char *const bb_cond_64_names[] =
{
  ",*<", ",*>="
};
static const char *const index_compl_names[] = {"", ",m", ",s", ",sm"};
static const char *const short_ldst_compl_names[] = {"", ",ma", "", ",mb"};
static const char *const short_bytes_compl_names[] =
{
  "", ",b,m", ",e", ",e,m"
};
static const char *const float_format_names[] = {",sgl", ",dbl", "", ",quad"};
static const char *const fcnv_fixed_names[] = {",w", ",dw", "", ",qw"};
static const char *const fcnv_ufixed_names[] = {",uw", ",udw", "", ",uqw"};
static const char *const float_comp_names[] =
{
  ",false?", ",false", ",?", ",!<=>", ",=", ",=t", ",?=", ",!<>",
  ",!?>=", ",<", ",?<", ",!>=", ",!?>", ",<=", ",?<=", ",!>",
  ",!?<=", ",>", ",?>", ",!<=", ",!?<", ",>=", ",?>=", ",!<",
  ",!?=", ",<>", ",!=", ",!=t", ",!?", ",<=>", ",true?", ",true"
};
static const char *const signed_unsigned_names[] = {",u", ",s"};
static const char *const mix_half_names[] = {",l", ",r"};
static const char *const saturation_names[] = {",us", ",ss", 0, ""};
static const char *const read_write_names[] = {",r", ",w"};
static const char *const add_compl_names[] = { 0, "", ",l", ",tsv" };

/* For a bunch of different instructions form an index into a
   completer name table.  */
#define GET_COMPL(insn) (GET_FIELD (insn, 26, 26) | \
			 GET_FIELD (insn, 18, 18) << 1)

#define GET_COND(insn) (GET_FIELD ((insn), 16, 18) + \
			(GET_FIELD ((insn), 19, 19) ? 8 : 0))

/* Utility function to print registers.  Put these first, so gcc's function
   inlining can do its stuff.  */

#define fputs_filtered(STR,F)	(*info->fprintf_func) (info->stream, "%s", STR)

static void
fput_reg (unsigned reg, disassemble_info *info)
{
  (*info->fprintf_func) (info->stream, "%s", reg ? reg_names[reg] : "r0");
}

static void
fput_fp_reg (unsigned reg, disassemble_info *info)
{
  (*info->fprintf_func) (info->stream, "%s", reg ? fp_reg_names[reg] : "fr0");
}

static void
fput_fp_reg_r (unsigned reg, disassemble_info *info)
{
  /* Special case floating point exception registers.  */
  if (reg < 4)
    (*info->fprintf_func) (info->stream, "fpe%d", reg * 2 + 1);
  else
    (*info->fprintf_func) (info->stream, "%sR", fp_reg_names[reg]);
}

static void
fput_creg (unsigned reg, disassemble_info *info)
{
  (*info->fprintf_func) (info->stream, "%s", control_reg[reg]);
}

/* Print constants with sign.  */

static void
fput_const (unsigned num, disassemble_info *info)
{
  if ((int) num < 0)
    (*info->fprintf_func) (info->stream, "-%x", - (int) num);
  else
    (*info->fprintf_func) (info->stream, "%x", num);
}

/* Routines to extract various sized constants out of hppa
   instructions.  */

/* Extract a 3-bit space register number from a be, ble, mtsp or mfsp.  */
static int
extract_3 (unsigned word)
{
  return GET_FIELD (word, 18, 18) << 2 | GET_FIELD (word, 16, 17);
}

static int
extract_5_load (unsigned word)
{
  return low_sign_extend (word >> 16 & MASK_5, 5);
}

/* Extract the immediate field from a st{bhw}s instruction.  */

static int
extract_5_store (unsigned word)
{
  return low_sign_extend (word & MASK_5, 5);
}

/* Extract the immediate field from a break instruction.  */

static unsigned
extract_5r_store (unsigned word)
{
  return (word & MASK_5);
}

/* Extract the immediate field from a {sr}sm instruction.  */

static unsigned
extract_5R_store (unsigned word)
{
  return (word >> 16 & MASK_5);
}

/* Extract the 10 bit immediate field from a {sr}sm instruction.  */

static unsigned
extract_10U_store (unsigned word)
{
  return (word >> 16 & MASK_10);
}

/* Extract the immediate field from a bb instruction.  */

static unsigned
extract_5Q_store (unsigned word)
{
  return (word >> 21 & MASK_5);
}

/* Extract an 11 bit immediate field.  */

static int
extract_11 (unsigned word)
{
  return low_sign_extend (word & MASK_11, 11);
}

/* Extract a 14 bit immediate field.  */

static int
extract_14 (unsigned word)
{
  return low_sign_extend (word & MASK_14, 14);
}

/* Extract a 16 bit immediate field (PA2.0 wide only).  */

static int
extract_16 (unsigned word)
{
  int m15, m0, m1;

  m0 = GET_BIT (word, 16);
  m1 = GET_BIT (word, 17);
  m15 = GET_BIT (word, 31);
  word = (word >> 1) & 0x1fff;
  word = word | (m15 << 15) | ((m15 ^ m0) << 14) | ((m15 ^ m1) << 13);
  return sign_extend (word, 16);
}

/* Extract a 21 bit constant.  */

static int
extract_21 (unsigned word)
{
  int val;

  word &= MASK_21;
  word <<= 11;
  val = GET_FIELD (word, 20, 20);
  val <<= 11;
  val |= GET_FIELD (word, 9, 19);
  val <<= 2;
  val |= GET_FIELD (word, 5, 6);
  val <<= 5;
  val |= GET_FIELD (word, 0, 4);
  val <<= 2;
  val |= GET_FIELD (word, 7, 8);
  return sign_extend (val, 21) << 11;
}

/* Extract a 12 bit constant from branch instructions.  */

static int
extract_12 (unsigned word)
{
  return sign_extend (GET_FIELD (word, 19, 28)
		      | GET_FIELD (word, 29, 29) << 10
		      | (word & 0x1) << 11, 12) << 2;
}

/* Extract a 17 bit constant from branch instructions, returning the
   19 bit signed value.  */

static int
extract_17 (unsigned word)
{
  return sign_extend (GET_FIELD (word, 19, 28)
		      | GET_FIELD (word, 29, 29) << 10
		      | GET_FIELD (word, 11, 15) << 11
		      | (word & 0x1) << 16, 17) << 2;
}

static int
extract_22 (unsigned word)
{
  return sign_extend (GET_FIELD (word, 19, 28)
		      | GET_FIELD (word, 29, 29) << 10
		      | GET_FIELD (word, 11, 15) << 11
		      | GET_FIELD (word, 6, 10) << 16
		      | (word & 0x1) << 21, 22) << 2;
}

/* Print one instruction.  */

int
print_insn_hppa (bfd_vma memaddr, disassemble_info *info)
{
  bfd_byte buffer[4];
  unsigned int insn, i;

  {
    int status =
      (*info->read_memory_func) (memaddr, buffer, sizeof (buffer), info);
    if (status != 0)
      {
	(*info->memory_error_func) (status, memaddr, info);
	return -1;
      }
  }

  insn = bfd_getb32 (buffer);

  for (i = 0; i < NUMOPCODES; ++i)
    {
      const struct pa_opcode *opcode = &pa_opcodes[i];

      if ((insn & opcode->mask) == opcode->match)
	{
	  const char *s;
#ifndef BFD64
	  if (opcode->arch == pa20w)
	    continue;
#endif
	  (*info->fprintf_func) (info->stream, "%s", opcode->name);

	  if (!strchr ("cfCY?-+nHNZFIuv{", opcode->args[0]))
	    (*info->fprintf_func) (info->stream, " ");
	  for (s = opcode->args; *s != '\0'; ++s)
	    {
	      switch (*s)
		{
		case 'x':
		  fput_reg (GET_FIELD (insn, 11, 15), info);
		  break;
		case 'a':
		case 'b':
		  fput_reg (GET_FIELD (insn, 6, 10), info);
		  break;
		case '^':
		  fput_creg (GET_FIELD (insn, 6, 10), info);
		  break;
		case 't':
		  fput_reg (GET_FIELD (insn, 27, 31), info);
		  break;

		  /* Handle floating point registers.  */
		case 'f':
		  switch (*++s)
		    {
		    case 't':
		      fput_fp_reg (GET_FIELD (insn, 27, 31), info);
		      break;
		    case 'T':
		      if (GET_FIELD (insn, 25, 25))
			fput_fp_reg_r (GET_FIELD (insn, 27, 31), info);
		      else
			fput_fp_reg (GET_FIELD (insn, 27, 31), info);
		      break;
		    case 'a':
		      if (GET_FIELD (insn, 25, 25))
			fput_fp_reg_r (GET_FIELD (insn, 6, 10), info);
		      else
			fput_fp_reg (GET_FIELD (insn, 6, 10), info);
		      break;

		      /* 'fA' will not generate a space before the regsiter
			 name.  Normally that is fine.  Except that it
			 causes problems with xmpyu which has no FP format
			 completer.  */
		    case 'X':
		      fputs_filtered (" ", info);
		      /* FALLTHRU */

		    case 'A':
		      if (GET_FIELD (insn, 24, 24))
			fput_fp_reg_r (GET_FIELD (insn, 6, 10), info);
		      else
			fput_fp_reg (GET_FIELD (insn, 6, 10), info);
		      break;
		    case 'b':
		      if (GET_FIELD (insn, 25, 25))
			fput_fp_reg_r (GET_FIELD (insn, 11, 15), info);
		      else
			fput_fp_reg (GET_FIELD (insn, 11, 15), info);
		      break;
		    case 'B':
		      if (GET_FIELD (insn, 19, 19))
			fput_fp_reg_r (GET_FIELD (insn, 11, 15), info);
		      else
			fput_fp_reg (GET_FIELD (insn, 11, 15), info);
		      break;
		    case 'C':
		      {
			int reg = GET_FIELD (insn, 21, 22);
			reg |= GET_FIELD (insn, 16, 18) << 2;
			if (GET_FIELD (insn, 23, 23) != 0)
			  fput_fp_reg_r (reg, info);
			else
			  fput_fp_reg (reg, info);
			break;
		      }
		    case 'i':
		      {
			int reg = GET_FIELD (insn, 6, 10);

			reg |= (GET_FIELD (insn, 26, 26) << 4);
			fput_fp_reg (reg, info);
			break;
		      }
		    case 'j':
		      {
			int reg = GET_FIELD (insn, 11, 15);

			reg |= (GET_FIELD (insn, 26, 26) << 4);
			fput_fp_reg (reg, info);
			break;
		      }
		    case 'k':
		      {
			int reg = GET_FIELD (insn, 27, 31);

			reg |= (GET_FIELD (insn, 26, 26) << 4);
			fput_fp_reg (reg, info);
			break;
		      }
		    case 'l':
		      {
			int reg = GET_FIELD (insn, 21, 25);

			reg |= (GET_FIELD (insn, 26, 26) << 4);
			fput_fp_reg (reg, info);
			break;
		      }
		    case 'm':
		      {
			int reg = GET_FIELD (insn, 16, 20);

			reg |= (GET_FIELD (insn, 26, 26) << 4);
			fput_fp_reg (reg, info);
			break;
		      }

		      /* 'fe' will not generate a space before the register
			 name.  Normally that is fine.  Except that it
			 causes problems with fstw fe,y(b) which has no FP
			 format completer.  */
		    case 'E':
		      fputs_filtered (" ", info);
		      /* FALLTHRU */

		    case 'e':
		      if (GET_FIELD (insn, 30, 30))
			fput_fp_reg_r (GET_FIELD (insn, 11, 15), info);
		      else
			fput_fp_reg (GET_FIELD (insn, 11, 15), info);
		      break;
		    case 'x':
		      fput_fp_reg (GET_FIELD (insn, 11, 15), info);
		      break;
		    }
		  break;

		case '5':
		  fput_const (extract_5_load (insn), info);
		  break;
		case 's':
		  {
		    int space = GET_FIELD (insn, 16, 17);
		    /* Zero means implicit addressing, not use of sr0.  */
		    if (space != 0)
		      (*info->fprintf_func) (info->stream, "sr%d", space);
		  }
		  break;

		case 'S':
		  (*info->fprintf_func) (info->stream, "sr%d",
					 extract_3 (insn));
		  break;

		  /* Handle completers.  */
		case 'c':
		  switch (*++s)
		    {
		    case 'x':
		      (*info->fprintf_func)
			(info->stream, "%s",
			 index_compl_names[GET_COMPL (insn)]);
		      break;
		    case 'X':
		      (*info->fprintf_func)
			(info->stream, "%s ",
			 index_compl_names[GET_COMPL (insn)]);
		      break;
		    case 'm':
		      (*info->fprintf_func)
			(info->stream, "%s",
			 short_ldst_compl_names[GET_COMPL (insn)]);
		      break;
		    case 'M':
		      (*info->fprintf_func)
			(info->stream, "%s ",
			 short_ldst_compl_names[GET_COMPL (insn)]);
		      break;
		    case 'A':
		      (*info->fprintf_func)
			(info->stream, "%s ",
			 short_bytes_compl_names[GET_COMPL (insn)]);
		      break;
		    case 's':
		      (*info->fprintf_func)
			(info->stream, "%s",
			 short_bytes_compl_names[GET_COMPL (insn)]);
		      break;
		    case 'c':
		    case 'C':
		      switch (GET_FIELD (insn, 20, 21))
			{
			case 1:
			  (*info->fprintf_func) (info->stream, ",bc ");
			  break;
			case 2:
			  (*info->fprintf_func) (info->stream, ",sl ");
			  break;
			default:
			  (*info->fprintf_func) (info->stream, " ");
			}
		      break;
		    case 'd':
		      switch (GET_FIELD (insn, 20, 21))
			{
			case 1:
			  (*info->fprintf_func) (info->stream, ",co ");
			  break;
			default:
			  (*info->fprintf_func) (info->stream, " ");
			}
		      break;
		    case 'o':
		      (*info->fprintf_func) (info->stream, ",o");
		      break;
		    case 'g':
		      (*info->fprintf_func) (info->stream, ",gate");
		      break;
		    case 'p':
		      (*info->fprintf_func) (info->stream, ",l,push");
		      break;
		    case 'P':
		      (*info->fprintf_func) (info->stream, ",pop");
		      break;
		    case 'l':
		    case 'L':
		      (*info->fprintf_func) (info->stream, ",l");
		      break;
		    case 'w':
		      (*info->fprintf_func)
			(info->stream, "%s ",
			 read_write_names[GET_FIELD (insn, 25, 25)]);
		      break;
		    case 'W':
		      (*info->fprintf_func) (info->stream, ",w ");
		      break;
		    case 'r':
		      if (GET_FIELD (insn, 23, 26) == 5)
			(*info->fprintf_func) (info->stream, ",r");
		      break;
		    case 'Z':
		      if (GET_FIELD (insn, 26, 26))
			(*info->fprintf_func) (info->stream, ",m ");
		      else
			(*info->fprintf_func) (info->stream, " ");
		      break;
		    case 'i':
		      if (GET_FIELD (insn, 25, 25))
			(*info->fprintf_func) (info->stream, ",i");
		      break;
		    case 'z':
		      if (!GET_FIELD (insn, 21, 21))
			(*info->fprintf_func) (info->stream, ",z");
		      break;
		    case 'a':
		      (*info->fprintf_func)
			(info->stream, "%s",
			 add_compl_names[GET_FIELD (insn, 20, 21)]);
		      break;
		    case 'Y':
		      (*info->fprintf_func)
			(info->stream, ",dc%s",
			 add_compl_names[GET_FIELD (insn, 20, 21)]);
		      break;
		    case 'y':
		      (*info->fprintf_func)
			(info->stream, ",c%s",
			 add_compl_names[GET_FIELD (insn, 20, 21)]);
		      break;
		    case 'v':
		      if (GET_FIELD (insn, 20, 20))
			(*info->fprintf_func) (info->stream, ",tsv");
		      break;
		    case 't':
		      (*info->fprintf_func) (info->stream, ",tc");
		      if (GET_FIELD (insn, 20, 20))
			(*info->fprintf_func) (info->stream, ",tsv");
		      break;
		    case 'B':
		      (*info->fprintf_func) (info->stream, ",db");
		      if (GET_FIELD (insn, 20, 20))
			(*info->fprintf_func) (info->stream, ",tsv");
		      break;
		    case 'b':
		      (*info->fprintf_func) (info->stream, ",b");
		      if (GET_FIELD (insn, 20, 20))
			(*info->fprintf_func) (info->stream, ",tsv");
		      break;
		    case 'T':
		      if (GET_FIELD (insn, 25, 25))
			(*info->fprintf_func) (info->stream, ",tc");
		      break;
		    case 'S':
		      /* EXTRD/W has a following condition.  */
		      if (*(s + 1) == '?')
			(*info->fprintf_func)
			  (info->stream, "%s",
			   signed_unsigned_names[GET_FIELD (insn, 21, 21)]);
		      else
			(*info->fprintf_func)
			  (info->stream, "%s ",
			   signed_unsigned_names[GET_FIELD (insn, 21, 21)]);
		      break;
		    case 'h':
		      (*info->fprintf_func)
			(info->stream, "%s",
			 mix_half_names[GET_FIELD (insn, 17, 17)]);
		      break;
		    case 'H':
		      (*info->fprintf_func)
			(info->stream, "%s ",
			 saturation_names[GET_FIELD (insn, 24, 25)]);
		      break;
		    case '*':
		      (*info->fprintf_func)
			(info->stream, ",%d%d%d%d ",
			 GET_FIELD (insn, 17, 18), GET_FIELD (insn, 20, 21),
			 GET_FIELD (insn, 22, 23), GET_FIELD (insn, 24, 25));
		      break;

		    case 'q':
		      {
			int m, a;

			m = GET_FIELD (insn, 28, 28);
			a = GET_FIELD (insn, 29, 29);

			if (m && !a)
			  fputs_filtered (",ma ", info);
			else if (m && a)
			  fputs_filtered (",mb ", info);
			else
			  fputs_filtered (" ", info);
			break;
		      }

		    case 'J':
		      {
			int opc = GET_FIELD (insn, 0, 5);

			if (opc == 0x16 || opc == 0x1e)
			  {
			    if (GET_FIELD (insn, 29, 29) == 0)
			      fputs_filtered (",ma ", info);
			    else
			      fputs_filtered (",mb ", info);
			  }
			else
			  fputs_filtered (" ", info);
			break;
		      }

		    case 'e':
		      {
			int opc = GET_FIELD (insn, 0, 5);

			if (opc == 0x13 || opc == 0x1b)
			  {
			    if (GET_FIELD (insn, 18, 18) == 1)
			      fputs_filtered (",mb ", info);
			    else
			      fputs_filtered (",ma ", info);
			  }
			else if (opc == 0x17 || opc == 0x1f)
			  {
			    if (GET_FIELD (insn, 31, 31) == 1)
			      fputs_filtered (",ma ", info);
			    else
			      fputs_filtered (",mb ", info);
			  }
			else
			  fputs_filtered (" ", info);

			break;
		      }
		    }
		  break;

		  /* Handle conditions.  */
		case '?':
		  {
		    s++;
		    switch (*s)
		      {
		      case 'f':
			(*info->fprintf_func)
			  (info->stream, "%s ",
			   float_comp_names[GET_FIELD (insn, 27, 31)]);
			break;

			/* These four conditions are for the set of instructions
			   which distinguish true/false conditions by opcode
			   rather than by the 'f' bit (sigh): comb, comib,
			   addb, addib.  */
		      case 't':
			fputs_filtered
			  (compare_cond_names[GET_FIELD (insn, 16, 18)], info);
			break;
		      case 'n':
			fputs_filtered
			  (compare_cond_names[GET_FIELD (insn, 16, 18)
					      + GET_FIELD (insn, 4, 4) * 8],
			   info);
			break;
		      case 'N':
			fputs_filtered
			  (compare_cond_64_names[GET_FIELD (insn, 16, 18)
						 + GET_FIELD (insn, 2, 2) * 8],
			   info);
			break;
		      case 'Q':
			fputs_filtered
			  (cmpib_cond_64_names[GET_FIELD (insn, 16, 18)],
			   info);
			break;
		      case '@':
			fputs_filtered
			  (add_cond_names[GET_FIELD (insn, 16, 18)
					  + GET_FIELD (insn, 4, 4) * 8],
			   info);
			break;
		      case 's':
			(*info->fprintf_func)
			  (info->stream, "%s ",
			   compare_cond_names[GET_COND (insn)]);
			break;
		      case 'S':
			(*info->fprintf_func)
			  (info->stream, "%s ",
			   compare_cond_64_names[GET_COND (insn)]);
			break;
		      case 'a':
			(*info->fprintf_func)
			  (info->stream, "%s ",
			   add_cond_names[GET_COND (insn)]);
			break;
		      case 'A':
			(*info->fprintf_func)
			  (info->stream, "%s ",
			   add_cond_64_names[GET_COND (insn)]);
			break;
		      case 'd':
			(*info->fprintf_func)
			  (info->stream, "%s",
			   add_cond_names[GET_FIELD (insn, 16, 18)]);
			break;

		      case 'W':
			(*info->fprintf_func)
			  (info->stream, "%s",
			   wide_add_cond_names[GET_FIELD (insn, 16, 18) +
					       GET_FIELD (insn, 4, 4) * 8]);
			break;

		      case 'l':
			(*info->fprintf_func)
			  (info->stream, "%s ",
			   logical_cond_names[GET_COND (insn)]);
			break;
		      case 'L':
			(*info->fprintf_func)
			  (info->stream, "%s ",
			   logical_cond_64_names[GET_COND (insn)]);
			break;
		      case 'u':
			(*info->fprintf_func)
			  (info->stream, "%s ",
			   unit_cond_names[GET_COND (insn)]);
			break;
		      case 'U':
			(*info->fprintf_func)
			  (info->stream, "%s ",
			   unit_cond_64_names[GET_COND (insn)]);
			break;
		      case 'y':
		      case 'x':
		      case 'b':
			(*info->fprintf_func)
			  (info->stream, "%s",
			   shift_cond_names[GET_FIELD (insn, 16, 18)]);

			/* If the next character in args is 'n', it will handle
			   putting out the space.  */
			if (s[1] != 'n')
			  (*info->fprintf_func) (info->stream, " ");
			break;
		      case 'X':
			(*info->fprintf_func)
			  (info->stream, "%s ",
			   shift_cond_64_names[GET_FIELD (insn, 16, 18)]);
			break;
		      case 'B':
			(*info->fprintf_func)
			  (info->stream, "%s",
			   bb_cond_64_names[GET_FIELD (insn, 16, 16)]);

			/* If the next character in args is 'n', it will handle
			   putting out the space.  */
			if (s[1] != 'n')
			  (*info->fprintf_func) (info->stream, " ");
			break;
		      }
		    break;
		  }

		case 'V':
		  fput_const (extract_5_store (insn), info);
		  break;
		case 'r':
		  fput_const (extract_5r_store (insn), info);
		  break;
		case 'R':
		  fput_const (extract_5R_store (insn), info);
		  break;
		case 'U':
		  fput_const (extract_10U_store (insn), info);
		  break;
		case 'B':
		case 'Q':
		  fput_const (extract_5Q_store (insn), info);
		  break;
		case 'i':
		  fput_const (extract_11 (insn), info);
		  break;
		case 'j':
		  fput_const (extract_14 (insn), info);
		  break;
		case 'k':
		  fputs_filtered ("L%", info);
		  fput_const (extract_21 (insn), info);
		  break;
		case '<':
		case 'l':
		  /* 16-bit long disp., PA2.0 wide only.  */
		  fput_const (extract_16 (insn), info);
		  break;
		case 'n':
		  if (insn & 0x2)
		    (*info->fprintf_func) (info->stream, ",n ");
		  else
		    (*info->fprintf_func) (info->stream, " ");
		  break;
		case 'N':
		  if ((insn & 0x20) && s[1])
		    (*info->fprintf_func) (info->stream, ",n ");
		  else if (insn & 0x20)
		    (*info->fprintf_func) (info->stream, ",n");
		  else if (s[1])
		    (*info->fprintf_func) (info->stream, " ");
		  break;
		case 'w':
		  (*info->print_address_func)
		    (memaddr + 8 + extract_12 (insn), info);
		  break;
		case 'W':
		  /* 17 bit PC-relative branch.  */
		  (*info->print_address_func)
		    ((memaddr + 8 + extract_17 (insn)), info);
		  break;
		case 'z':
		  /* 17 bit displacement.  This is an offset from a register
		     so it gets disasssembled as just a number, not any sort
		     of address.  */
		  fput_const (extract_17 (insn), info);
		  break;

		case 'Z':
		  /* addil %r1 implicit output.  */
		  fputs_filtered ("r1", info);
		  break;

		case 'Y':
		  /* be,l %sr0,%r31 implicit output.  */
		  fputs_filtered ("sr0,r31", info);
		  break;

		case '@':
		  (*info->fprintf_func) (info->stream, "0");
		  break;

		case '.':
		  (*info->fprintf_func) (info->stream, "%d",
					 GET_FIELD (insn, 24, 25));
		  break;
		case '*':
		  (*info->fprintf_func) (info->stream, "%d",
					 GET_FIELD (insn, 22, 25));
		  break;
		case '!':
		  fputs_filtered ("sar", info);
		  break;
		case 'p':
		  (*info->fprintf_func) (info->stream, "%d",
					 31 - GET_FIELD (insn, 22, 26));
		  break;
		case '~':
		  {
		    int num;
		    num = GET_FIELD (insn, 20, 20) << 5;
		    num |= GET_FIELD (insn, 22, 26);
		    (*info->fprintf_func) (info->stream, "%d", 63 - num);
		    break;
		  }
		case 'P':
		  (*info->fprintf_func) (info->stream, "%d",
					 GET_FIELD (insn, 22, 26));
		  break;
		case 'q':
		  {
		    int num;
		    num = GET_FIELD (insn, 20, 20) << 5;
		    num |= GET_FIELD (insn, 22, 26);
		    (*info->fprintf_func) (info->stream, "%d", num);
		    break;
		  }
		case 'T':
		  (*info->fprintf_func) (info->stream, "%d",
					 32 - GET_FIELD (insn, 27, 31));
		  break;
		case '%':
		  {
		    int num;
		    num = (GET_FIELD (insn, 23, 23) + 1) * 32;
		    num -= GET_FIELD (insn, 27, 31);
		    (*info->fprintf_func) (info->stream, "%d", num);
		    break;
		  }
		case '|':
		  {
		    int num;
		    num = (GET_FIELD (insn, 19, 19) + 1) * 32;
		    num -= GET_FIELD (insn, 27, 31);
		    (*info->fprintf_func) (info->stream, "%d", num);
		    break;
		  }
		case '$':
		  fput_const (GET_FIELD (insn, 20, 28), info);
		  break;
		case 'A':
		  fput_const (GET_FIELD (insn, 6, 18), info);
		  break;
		case 'D':
		  fput_const (GET_FIELD (insn, 6, 31), info);
		  break;
		case 'v':
		  (*info->fprintf_func) (info->stream, ",%d",
					 GET_FIELD (insn, 23, 25));
		  break;
		case 'O':
		  fput_const ((GET_FIELD (insn, 6,20) << 5 |
			       GET_FIELD (insn, 27, 31)), info);
		  break;
		case 'o':
		  fput_const (GET_FIELD (insn, 6, 20), info);
		  break;
		case '2':
		  fput_const ((GET_FIELD (insn, 6, 22) << 5 |
			       GET_FIELD (insn, 27, 31)), info);
		  break;
		case '1':
		  fput_const ((GET_FIELD (insn, 11, 20) << 5 |
			       GET_FIELD (insn, 27, 31)), info);
		  break;
		case '0':
		  fput_const ((GET_FIELD (insn, 16, 20) << 5 |
			       GET_FIELD (insn, 27, 31)), info);
		  break;
		case 'u':
		  (*info->fprintf_func) (info->stream, ",%d",
					 GET_FIELD (insn, 23, 25));
		  break;
		case 'F':
		  /* If no destination completer and not before a completer
		     for fcmp, need a space here.  */
		  if (s[1] == 'G' || s[1] == '?')
		    fputs_filtered
		      (float_format_names[GET_FIELD (insn, 19, 20)], info);
		  else
		    (*info->fprintf_func)
		      (info->stream, "%s ",
		       float_format_names[GET_FIELD (insn, 19, 20)]);
		  break;
		case 'G':
		  (*info->fprintf_func)
		    (info->stream, "%s ",
		     float_format_names[GET_FIELD (insn, 17, 18)]);
		  break;
		case 'H':
		  if (GET_FIELD (insn, 26, 26) == 1)
		    (*info->fprintf_func) (info->stream, "%s ",
					   float_format_names[0]);
		  else
		    (*info->fprintf_func) (info->stream, "%s ",
					   float_format_names[1]);
		  break;
		case 'I':
		  /* If no destination completer and not before a completer
		     for fcmp, need a space here.  */
		  if (s[1] == '?')
		    fputs_filtered
		      (float_format_names[GET_FIELD (insn, 20, 20)], info);
		  else
		    (*info->fprintf_func)
		      (info->stream, "%s ",
		       float_format_names[GET_FIELD (insn, 20, 20)]);
		  break;

		case 'J':
		  fput_const (extract_14 (insn), info);
		  break;

		case '#':
		  {
		    int sign = GET_FIELD (insn, 31, 31);
		    int imm10 = GET_FIELD (insn, 18, 27);
		    int disp;

		    if (sign)
		      disp = (-1 << 10) | imm10;
		    else
		      disp = imm10;

		    disp <<= 3;
		    fput_const (disp, info);
		    break;
		  }
		case 'K':
		case 'd':
		  {
		    int sign = GET_FIELD (insn, 31, 31);
		    int imm11 = GET_FIELD (insn, 18, 28);
		    int disp;

		    if (sign)
		      disp = (-1 << 11) | imm11;
		    else
		      disp = imm11;

		    disp <<= 2;
		    fput_const (disp, info);
		    break;
		  }

		case '>':
		case 'y':
		  {
		    /* 16-bit long disp., PA2.0 wide only.  */
		    int disp = extract_16 (insn);
		    disp &= ~3;
		    fput_const (disp, info);
		    break;
		  }

		case '&':
		  {
		    /* 16-bit long disp., PA2.0 wide only.  */
		    int disp = extract_16 (insn);
		    disp &= ~7;
		    fput_const (disp, info);
		    break;
		  }

		case '_':
		  break; /* Dealt with by '{' */

		case '{':
		  {
		    int sub = GET_FIELD (insn, 14, 16);
		    int df = GET_FIELD (insn, 17, 18);
		    int sf = GET_FIELD (insn, 19, 20);
		    const char * const * source = float_format_names;
		    const char * const * dest = float_format_names;
		    const char *t = "";

		    if (sub == 4)
		      {
			fputs_filtered (",UND ", info);
			break;
		      }
		    if ((sub & 3) == 3)
		      t = ",t";
		    if ((sub & 3) == 1)
		      source = sub & 4 ? fcnv_ufixed_names : fcnv_fixed_names;
		    if (sub & 2)
		      dest = sub & 4 ? fcnv_ufixed_names : fcnv_fixed_names;

		    (*info->fprintf_func) (info->stream, "%s%s%s ",
					   t, source[sf], dest[df]);
		    break;
		  }

		case 'm':
		  {
		    int y = GET_FIELD (insn, 16, 18);

		    if (y != 1)
		      fput_const ((y ^ 1) - 1, info);
		  }
		  break;

		case 'h':
		  {
		    int cbit;

		    cbit = GET_FIELD (insn, 16, 18);

		    if (cbit > 0)
		      (*info->fprintf_func) (info->stream, ",%d", cbit - 1);
		    break;
		  }

		case '=':
		  {
		    int cond = GET_FIELD (insn, 27, 31);

		    switch (cond)
		      {
		      case  0: fputs_filtered (" ", info); break;
		      case  1: fputs_filtered ("acc ", info); break;
		      case  2: fputs_filtered ("rej ", info); break;
		      case  5: fputs_filtered ("acc8 ", info); break;
		      case  6: fputs_filtered ("rej8 ", info); break;
		      case  9: fputs_filtered ("acc6 ", info); break;
		      case 13: fputs_filtered ("acc4 ", info); break;
		      case 17: fputs_filtered ("acc2 ", info); break;
		      default: break;
		      }
		    break;
		  }

		case 'X':
		  (*info->print_address_func)
		    (memaddr + 8 + extract_22 (insn), info);
		  break;
		case 'L':
		  fputs_filtered (",rp", info);
		  break;
		default:
		  (*info->fprintf_func) (info->stream, "%c", *s);
		  break;
		}
	    }
	  return sizeof (insn);
	}
    }
  (*info->fprintf_func) (info->stream, "#%8x", insn);
  return sizeof (insn);
}
n>,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,255,255,0,16,0,0,0,0, 0,0,0,0,8,0,224,3,0,0,0,0, 148,255,189,39,16,0,161,175,20,0,162,175, 24,0,163,175,28,0,164,175,32,0,165,175, 36,0,166,175,40,0,167,175,44,0,168,175, 48,0,169,175,52,0,170,175,56,0,171,175, 60,0,172,175,64,0,173,175,68,0,174,175, 72,0,175,175,76,0,184,175,80,0,185,175, 88,0,190,175,92,0,191,175,0,112,8,64, 18,72,0,0,16,80,0,0,0,96,11,64, 84,0,168,175,96,0,169,175,100,0,170,175, 104,0,171,175,33,56,0,1,0,131,24,60, 0,1,24,39,0,0,8,143,0,0,0,0, 1,0,8,33,0,0,8,175,0,104,5,64, 0,96,6,64,124,0,168,48,212,255,0,21, 0,0,0,0,36,64,166,0,0,255,8,49, 27,0,0,17,0,0,0,0,130,65,8,0, 2,131,9,60,33,72,40,1,0,220,41,141, 66,64,8,0,2,131,10,60,33,80,72,1, 0,224,74,141,0,0,0,0,38,80,70,1, 1,255,74,49,33,40,192,0,38,48,202,0, 0,96,134,64,66,64,8,0,2,131,4,60, 33,32,136,0,0,226,132,144,9,248,32,1, 0,0,0,0,104,0,166,143,0,0,0,0, 0,96,134,64,0,104,5,64,227,255,0,16, 0,0,0,0,104,0,168,143,96,0,169,143, 100,0,170,143,0,0,0,0,0,96,136,64, 19,0,32,1,17,0,64,1,20,0,162,143, 24,0,163,143,28,0,164,143,32,0,165,143, 36,0,166,143,40,0,167,143,44,0,168,143, 48,0,169,143,52,0,170,143,56,0,171,143, 60,0,172,143,64,0,173,143,68,0,174,143, 72,0,175,143,76,0,184,143,80,0,185,143, 88,0,190,143,92,0,191,143,0,0,0,0, 84,0,186,143,16,0,161,143,108,0,189,39, 8,0,64,3,16,0,0,66,0,96,26,64, 0,0,0,0,255,255,27,60,254,0,123,55, 0,0,0,0,36,208,91,3,0,0,0,0, 0,96,154,64,0,0,0,0,0,112,26,64, 0,0,0,0,16,0,0,66,0,0,0,0, 8,0,64,3,0,0,0,0,255,255,8,36, 133,255,0,17,0,0,0,0,1,0,8,37, 130,255,0,21,0,0,0,0,255,255,8,36, 33,8,0,1,126,255,40,20,0,0,0,0, 1,0,33,36,123,255,32,20,0,0,0,0, 255,255,2,36,120,255,72,20,0,0,0,0, 1,0,66,36,117,255,64,20,0,0,0,0, 255,255,3,36,114,255,104,20,0,0,0,0, 1,0,99,36,111,255,96,20,0,0,0,0, 255,255,4,36,108,255,136,20,0,0,0,0, 1,0,132,36,105,255,128,20,0,0,0,0, 255,255,5,36,102,255,168,20,0,0,0,0, 1,0,165,36,99,255,160,20,0,0,0,0, 255,255,6,36,96,255,200,20,0,0,0,0, 1,0,198,36,93,255,192,20,0,0,0,0, 255,255,7,36,90,255,232,20,0,0,0,0, 1,0,231,36,87,255,224,20,0,0,0,0, 255,255,9,36,84,255,40,21,0,0,0,0, 1,0,41,37,81,255,32,21,0,0,0,0, 255,255,10,36,78,255,72,21,0,0,0,0, 1,0,74,37,75,255,64,21,0,0,0,0, 255,255,11,36,72,255,104,21,0,0,0,0, 1,0,107,37,69,255,96,21,0,0,0,0, 255,255,12,36,66,255,136,21,0,0,0,0, 1,0,140,37,63,255,128,21,0,0,0,0, 255,255,13,36,60,255,168,21,0,0,0,0, 1,0,173,37,57,255,160,21,0,0,0,0, 255,255,14,36,54,255,200,21,0,0,0,0, 1,0,206,37,51,255,192,21,0,0,0,0, 255,255,15,36,48,255,232,21,0,0,0,0, 1,0,239,37,45,255,224,21,0,0,0,0, 255,255,24,36,42,255,8,23,0,0,0,0, 1,0,24,39,39,255,0,23,0,0,0,0, 255,255,16,36,36,255,8,22,0,0,0,0, 1,0,16,38,33,255,0,22,0,0,0,0, 255,255,17,36,30,255,40,22,0,0,0,0, 1,0,49,38,27,255,32,22,0,0,0,0, 255,255,18,36,24,255,72,22,0,0,0,0, 1,0,82,38,21,255,64,22,0,0,0,0, 255,255,19,36,18,255,104,22,0,0,0,0, 1,0,115,38,15,255,96,22,0,0,0,0, 255,255,20,36,12,255,136,22,0,0,0,0, 1,0,148,38,9,255,128,22,0,0,0,0, 255,255,21,36,6,255,168,22,0,0,0,0, 1,0,181,38,3,255,160,22,0,0,0,0, 255,255,22,36,0,255,200,22,0,0,0,0, 1,0,214,38,253,254,192,22,0,0,0,0, 255,255,23,36,250,254,232,22,0,0,0,0, 1,0,247,38,247,254,224,22,0,0,0,0, 255,255,26,36,244,254,72,23,0,0,0,0, 1,0,90,39,241,254,64,23,0,0,0,0, 255,255,27,36,238,254,104,23,0,0,0,0, 1,0,123,39,235,254,96,23,0,0,0,0, 255,255,28,36,232,254,136,23,0,0,0,0, 1,0,156,39,229,254,128,23,0,0,0,0, 255,255,29,36,226,254,168,23,0,0,0,0, 1,0,189,39,223,254,160,23,0,0,0,0, 255,255,30,36,220,254,200,23,0,0,0,0, 1,0,222,39,217,254,192,23,0,0,0,0, 255,255,31,36,214,254,232,23,0,0,0,0, 1,0,255,39,211,254,224,23,0,0,0,0, 0,131,24,60,0,1,24,39,0,32,1,60, 37,192,1,3,0,96,8,64,0,0,0,0, 1,0,1,60,37,64,1,1,0,96,136,64, 33,16,0,0,165,165,3,60,165,165,99,52, 0,128,1,60,0,0,35,172,0,128,9,60, 0,0,41,141,0,0,0,0,0,96,10,64, 0,0,0,0,8,0,1,60,36,80,65,1, 29,0,64,21,0,0,0,0,27,0,105,20, 0,0,0,0,0,1,2,36,0,128,1,60, 33,8,34,0,0,0,32,172,64,16,2,0, 1,0,1,60,1,0,33,52,43,8,65,0, 248,255,32,20,0,0,0,0,255,255,3,36, 0,128,1,60,0,0,35,172,0,1,2,36, 0,128,3,60,33,24,98,0,0,0,99,140, 0,0,0,0,7,0,96,20,0,0,0,0, 64,16,2,0,1,0,1,60,1,0,33,52, 43,8,65,0,245,255,32,20,0,0,0,0, 0,96,128,64,0,0,0,0,84,0,2,175, 0,96,8,64,0,0,0,0,3,0,1,60, 37,64,1,1,0,96,136,64,33,16,0,0, 165,165,3,60,165,165,99,52,0,128,1,60, 0,0,35,172,0,128,9,60,0,0,41,141, 0,0,0,0,0,96,10,64,0,0,0,0, 8,0,1,60,36,80,65,1,29,0,64,21, 0,0,0,0,27,0,105,20,0,0,0,0, 0,1,2,36,0,128,1,60,33,8,34,0, 0,0,32,172,64,16,2,0,1,0,1,60, 1,0,33,52,43,8,65,0,248,255,32,20, 0,0,0,0,255,255,3,36,0,128,1,60, 0,0,35,172,0,1,2,36,0,128,3,60, 33,24,98,0,0,0,99,140,0,0,0,0, 7,0,96,20,0,0,0,0,64,16,2,0, 1,0,1,60,1,0,33,52,43,8,65,0, 245,255,32,20,0,0,0,0,0,96,128,64, 0,0,0,0,88,0,2,175,88,0,9,143, 0,0,0,0,17,0,32,17,0,0,0,0, 0,0,0,0,3,0,2,60,0,0,0,0, 0,96,130,64,0,128,8,60,37,72,40,1, 0,0,0,161,4,0,0,161,8,0,0,161, 12,0,0,161,16,0,0,161,20,0,0,161, 24,0,0,161,32,0,8,37,247,255,9,21, 252,255,0,161,84,0,9,143,0,0,0,0, 17,0,32,17,0,0,0,0,0,0,0,0, 1,0,2,60,0,0,0,0,0,96,130,64, 0,128,8,60,37,72,40,1,0,0,0,161, 4,0,0,161,8,0,0,161,12,0,0,161, 16,0,0,161,20,0,0,161,24,0,0,161, 32,0,8,37,247,255,9,21,252,255,0,161, 32,0,8,60,0,96,136,64,0,104,128,64, 0,131,2,60,152,28,66,36,255,31,9,60, 255,255,41,53,36,16,73,0,0,128,9,60, 37,16,73,0,8,0,64,0,0,0,0,0, 2,131,8,60,224,210,8,37,252,255,1,36, 36,64,1,1,3,131,9,60,124,18,41,37, 252,255,1,36,36,72,33,1,0,0,10,36, 0,0,10,173,254,255,9,21,4,0,8,37, 3,131,8,60,128,18,8,37,252,255,1,36, 36,64,1,1,31,131,9,60,252,255,41,53, 252,255,1,36,36,72,33,1,237,254,10,60, 175,222,74,53,0,0,10,173,254,255,9,21, 4,0,8,37,2,131,8,60,0,212,8,37, 252,255,1,36,36,64,1,1,2,131,9,60, 252,219,41,37,252,255,1,36,36,72,33,1, 173,222,10,60,239,190,74,53,0,0,10,173, 254,255,9,21,4,0,8,37,0,4,8,60, 0,0,0,0,0,24,136,64,0,0,0,0, 2,131,29,60,0,220,189,39,0,0,30,36, 2,131,28,60,51,8,192,12,16,78,156,39, 0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0, 232,255,189,39,16,0,191,175,8,128,132,39, 15,63,192,12,0,0,0,0,16,0,191,143, 24,0,189,39,8,0,224,3,0,0,0,0, 232,255,189,39,16,0,191,175,12,128,132,39, 15,63,192,12,0,0,0,0,16,0,191,143, 24,0,189,39,8,0,224,3,0,0,0,0, 232,255,189,39,16,0,191,175,16,128,132,39, 15,63,192,12,0,0,0,0,16,0,191,143, 24,0,189,39,8,0,224,3,0,0,0,0, 232,255,189,39,16,0,191,175,20,128,132,39, 15,63,192,12,0,0,0,0,16,0,191,143, 24,0,189,39,8,0,224,3,0,0,0,0, 232,255,189,39,24,133,131,143,6,0,2,36, 20,0,191,175,6,0,98,20,16,0,176,175, 7,162,3,60,228,0,99,52,1,0,2,36, 184,7,192,8,0,0,98,172,0,128,130,151, 5,162,16,60,0,1,66,52,120,63,192,12, 0,0,2,166,0,128,130,151,0,0,0,0, 255,254,66,48,0,0,2,166,20,0,191,143, 16,0,176,143,8,0,224,3,24,0,189,39, 232,255,189,39,33,16,128,0,3,0,64,4, 16,0,191,175,254,255,2,60,192,29,66,52, 0,163,4,60,96,1,132,52,0,163,1,60, 92,1,34,172,0,163,1,60,104,1,38,172, 204,63,192,12,8,0,6,36,228,63,192,12, 255,255,4,36,204,7,192,8,0,0,0,0, 16,0,191,143,24,0,189,39,8,0,224,3, 0,0,0,0,216,255,189,39,1,0,6,36, 3,131,2,60,143,18,66,36,240,255,3,36, 36,16,67,0,0,163,1,60,120,1,34,172, 0,163,2,60,120,1,66,140,33,56,0,0, 32,0,191,175,28,0,177,175,24,0,176,175, 16,0,160,175,0,163,1,60,116,1,34,172, 0,163,3,60,112,1,99,140,0,163,2,60, 116,1,66,140,0,163,4,60,116,1,132,140, 35,136,98,0,84,64,192,12,33,40,32,2, 13,0,64,16,0,0,0,0,1,131,4,60, 96,127,132,36,24,128,144,39,33,40,0,2, 1,131,7,60,128,127,231,36,15,63,192,12, 148,0,6,36,1,0,4,36,33,40,0,2, 188,7,192,12,148,0,6,36,2,0,33,6, 33,16,32,2,3,0,34,38,131,136,2,0, 0,163,2,60,116,1,66,140,0,0,0,0, 6,0,32,18,237,254,3,60,175,222,99,52, 0,0,67,172,255,255,49,38,253,255,32,22, 4,0,66,36,32,0,191,143,28,0,177,143, 24,0,176,143,8,0,224,3,40,0,189,39, 224,255,189,39,15,0,132,36,240,255,3,36, 20,0,177,175,0,163,17,60,120,1,49,142, 0,163,2,60,120,1,66,140,36,32,131,0, 33,16,68,0,0,163,1,60,120,1,34,172, 0,163,3,60,120,1,99,140,0,163,2,60, 112,1,66,140,24,0,191,175,43,16,67,0, 13,0,64,16,16,0,176,175,1,131,4,60, 96,127,132,36,24,128,144,39,33,40,0,2, 1,131,7,60,176,127,231,36,15,63,192,12, 171,0,6,36,1,0,4,36,33,40,0,2, 188,7,192,12,171,0,6,36,33,16,32,2, 24,0,191,143,20,0,177,143,16,0,176,143, 8,0,224,3,32,0,189,39,216,255,189,39, 3,0,2,60,7,162,3,60,36,0,191,175, 32,0,176,175,0,163,1,60,92,1,32,172, 0,0,99,140,79,17,66,52,32,0,98,20, 87,0,4,60,76,0,8,60,64,75,8,53, 250,2,7,60,128,240,231,52,7,162,6,60, 152,0,198,52,67,73,3,60,67,3,99,52, 7,162,4,60,48,1,132,52,7,162,5,60, 0,1,165,52,6,0,2,36,24,133,130,175, 0,163,1,60,204,5,34,172,4,0,2,36, 50,133,130,167,2,0,2,36,48,133,130,167, 1,0,2,36,20,133,130,167,119,119,2,36, 28,133,136,175,16,133,135,175,0,0,195,172, 0,0,130,172,67,1,2,36,0,0,162,172, 109,8,192,8,31,131,4,60,240,188,132,52, 189,2,3,60,128,231,99,52,4,0,2,36, 24,133,130,175,0,163,1,60,204,5,34,172, 0,8,2,36,50,133,130,167,0,4,2,36, 48,133,130,167,0,2,2,36,20,133,130,167, 28,133,132,175,16,133,131,175,31,131,4,60, 0,240,132,52,24,133,131,143,0,131,2,60, 0,163,1,60,108,1,34,172,0,163,1,60, 112,1,36,172,1,0,99,36,32,133,131,175, 210,7,192,12,0,0,0,0,0,163,2,60, 132,1,66,140,0,128,128,167,2,0,64,20, 85,0,2,36,0,128,130,167,0,163,2,60, 136,1,66,140,0,0,0,0,5,0,64,20, 0,0,0,0,0,128,130,151,0,0,0,0, 170,0,66,52,0,128,130,167,0,128,131,151, 5,162,2,60,0,0,67,164,188,64,192,12, 1,0,16,36,2,131,4,60,0,220,132,36, 2,131,5,60,0,224,165,36,2,131,6,60, 0,226,198,36,8,0,7,36,2,131,2,60, 112,154,66,36,16,0,162,175,2,131,2,60, 144,154,66,36,20,0,162,175,2,131,2,60, 176,154,66,36,24,0,162,175,0,131,2,60, 36,30,66,36,0,163,1,60,92,1,48,172, 240,64,192,12,28,0,162,175,0,163,3,60, 124,1,99,140,40,133,128,175,2,0,98,40, 7,0,64,16,2,0,2,36,18,0,97,4, 255,255,2,36,7,0,98,16,0,0,0,0, 196,8,192,8,0,0,0,0,16,0,98,16, 0,0,0,0,196,8,192,8,0,0,0,0, 24,133,133,143,1,131,4,60,15,63,192,12, 208,127,132,36,0,163,1,60,112,25,192,12, 124,1,32,172,207,8,192,8,0,0,0,0, 211,8,192,12,0,0,0,0,207,8,192,8, 0,0,0,0,40,133,144,175,31,10,192,12, 0,0,0,0,207,8,192,8,0,0,0,0, 1,131,4,60,96,127,132,36,24,128,144,39, 33,40,0,2,32,128,135,39,15,63,192,12, 58,1,6,36,1,0,4,36,33,40,0,2, 188,7,192,12,58,1,6,36,36,0,191,143, 32,0,176,143,8,0,224,3,40,0,189,39, 192,255,189,39,56,0,191,175,52,0,181,175, 48,0,180,175,44,0,179,175,40,0,178,175, 36,0,177,175,180,10,192,12,32,0,176,175, 33,32,0,0,2,0,2,36,0,163,1,60, 244,57,192,12,92,1,34,172,3,0,2,36, 0,163,1,60,0,12,192,12,92,1,34,172, 1,0,4,36,4,0,2,36,0,163,1,60, 34,11,192,12,92,1,34,172,5,0,2,36, 0,163,1,60,92,1,34,172,0,163,19,60, 124,1,115,142,0,163,3,60,160,1,99,140, 1,0,98,46,80,133,130,175,0,128,2,60, 5,0,98,20,0,0,0,0,32,133,130,143, 0,0,0,0,252,8,192,8,255,255,66,36, 32,133,130,143,0,0,0,0,84,133,130,175, 130,11,192,12,0,0,0,0,33,32,64,0, 2,0,5,36,232,3,6,36,0,131,7,60, 196,37,231,36,156,11,192,12,16,0,160,175, 35,35,192,12,0,0,0,0,6,0,2,36, 0,163,1,60,84,35,192,12,92,1,34,172, 7,0,2,36,0,163,1,60,141,47,192,12, 92,1,34,172,8,0,2,36,0,163,1,60, 120,50,192,12,92,1,34,172,9,0,2,36, 0,163,1,60,92,1,34,172,0,163,2,60, 240,5,66,140,0,0,0,0,8,0,64,16, 10,0,2,36,0,163,4,60,240,5,132,140, 13,8,192,12,0,0,0,0,0,163,1,60, 244,5,34,172,10,0,2,36,0,163,1,60, 92,1,34,172,157,15,192,12,1,0,21,36, 2,131,2,60,192,246,66,36,33,160,64,0, 80,133,131,143,11,0,2,36,0,163,1,60, 92,1,34,172,100,0,2,36,0,163,1,60, 92,1,34,172,84,133,130,143,64,26,3,0, 33,136,116,0,64,18,2,0,33,144,84,0, 0,163,2,60,8,1,66,140,0,0,0,0, 1,0,66,36,0,163,1,60,8,1,34,172, 0,163,2,60,8,1,66,140,0,163,2,60, 124,1,66,140,0,0,0,0,14,0,83,16, 0,0,0,0,4,0,64,16,33,152,64,0, 80,133,128,175,76,9,192,8,0,0,0,0, 80,133,149,175,2,131,4,60,163,23,192,12, 192,246,132,36,80,133,130,143,0,0,0,0, 64,18,2,0,33,136,84,0,0,163,2,60, 0,6,66,140,0,0,0,0,3,0,64,24, 33,128,32,2,239,15,192,12,0,0,0,0, 43,16,18,2,11,0,64,16,33,32,0,2, 151,18,192,12,10,0,5,36,27,22,192,12, 33,32,0,2,142,22,192,12,33,32,0,2, 0,2,16,38,43,16,18,2,247,255,64,20, 33,32,0,2,184,11,192,12,0,0,0,0, 54,9,192,8,0,0,0,0,56,0,191,143, 52,0,181,143,48,0,180,143,44,0,179,143, 40,0,178,143,36,0,177,143,32,0,176,143, 8,0,224,3,64,0,189,39,4,128,130,143, 232,255,189,39,20,0,191,175,16,0,176,175, 1,0,67,36,4,128,131,175,255,255,3,36, 4,0,67,20,255,31,4,60,0,163,1,60, 8,1,32,172,255,31,4,60,255,255,132,52, 0,163,16,60,0,163,2,60,8,1,66,140, 208,132,131,143,220,5,16,54,35,16,67,0, 0,163,1,60,16,1,34,172,2,131,2,60, 192,246,66,36,36,16,68,0,0,160,3,60, 37,16,67,0,0,163,3,60,8,1,99,140, 28,0,68,140,0,0,5,142,3,131,2,60, 20,18,66,140,208,132,131,175,36,133,132,175, 18,0,162,16,0,163,4,60,99,59,192,12, 220,5,132,52,255,0,5,60,255,0,165,52, 0,255,6,60,0,0,4,142,0,255,198,52, 0,20,4,0,2,28,4,0,37,16,67,0, 2,26,2,0,36,24,101,0,0,18,2,0, 36,16,70,0,37,24,98,0,176,133,132,175, 184,133,131,175,0,163,16,60,16,6,16,54, 0,0,3,142,3,131,2,60,68,18,66,140, 0,0,0,0,18,0,98,16,0,163,4,60, 119,59,192,12,16,6,132,52,255,0,5,60, 255,0,165,52,0,255,6,60,0,0,4,142, 0,255,198,52,0,20,4,0,2,28,4,0, 37,16,67,0,2,26,2,0,36,24,101,0, 0,18,2,0,36,16,70,0,37,24,98,0, 196,133,132,175,192,133,131,175,0,163,16,60, 224,5,16,54,0,0,3,142,3,131,2,60, 24,18,66,140,0,0,0,0,18,0,98,16, 0,163,4,60,139,59,192,12,224,5,132,52, 255,0,5,60,255,0,165,52,0,255,6,60, 0,0,4,142,0,255,198,52,0,20,4,0, 2,28,4,0,37,16,67,0,2,26,2,0, 36,24,101,0,0,18,2,0,36,16,70,0, 37,24,98,0,188,133,132,175,180,133,131,175, 44,133,131,143,0,163,2,60,144,1,66,140, 0,0,0,0,5,0,98,16,0,0,0,0, 0,163,4,60,144,1,132,140,159,59,192,12, 0,0,0,0,0,163,3,60,140,1,99,140, 3,131,2,60,64,18,66,140,0,0,0,0, 5,0,98,16,0,0,0,0,0,163,4,60, 140,1,132,140,51,60,192,12,0,0,0,0, 44,133,130,143,0,0,0,0,3,0,64,16, 0,0,0,0,116,38,192,12,0,0,0,0, 164,7,192,12,0,0,0,0,36,128,130,143, 0,0,0,0,1,0,66,36,36,128,130,175, 60,0,66,40,8,0,64,20,0,0,0,0, 3,131,2,60,24,18,66,140,36,128,128,175, 3,0,64,16,0,0,0,0,222,48,192,12, 0,0,0,0,0,163,2,60,48,1,66,140, 0,0,0,0,20,0,64,16,0,0,0,0, 0,163,1,60,48,1,32,172,0,163,1,60, 16,1,32,172,0,163,1,60,20,1,32,172, 0,163,1,60,24,1,32,172,0,163,1,60, 28,1,32,172,0,163,1,60,32,1,32,172, 0,163,1,60,36,1,32,172,0,163,1,60, 40,1,32,172,0,163,1,60,201,13,192,12, 44,1,32,172,20,0,191,143,16,0,176,143, 8,0,224,3,24,0,189,39,216,255,189,39, 36,0,191,175,32,0,178,175,28,0,177,175, 180,10,192,12,24,0,176,175,33,32,0,0, 2,0,2,36,0,163,1,60,244,57,192,12, 92,1,34,172,3,0,2,36,0,163,1,60, 0,12,192,12,92,1,34,172,1,0,4,36, 4,0,2,36,0,163,1,60,34,11,192,12, 92,1,34,172,32,133,131,143,5,0,2,36, 0,163,1,60,92,1,34,172,80,133,128,175, 84,133,131,175,130,11,192,12,0,0,0,0, 33,32,64,0,2,0,5,36,232,3,6,36, 0,131,7,60,196,37,231,36,156,11,192,12, 16,0,160,175,0,163,2,60,240,5,66,140, 0,0,0,0,8,0,64,16,10,0,2,36, 0,163,4,60,240,5,132,140,13,8,192,12, 0,0,0,0,0,163,1,60,244,5,34,172, 10,0,2,36,0,163,1,60,92,1,34,172, 100,0,2,36,80,133,131,143,2,131,4,60, 192,246,132,36,0,163,1,60,92,1,34,172, 84,133,130,143,64,26,3,0,33,144,100,0, 64,18,2,0,33,136,68,0,0,163,2,60, 8,1,66,140,33,128,64,2,1,0,66,36, 0,163,1,60,8,1,34,172,0,163,2,60, 8,1,66,140,43,16,17,2,11,0,64,16, 33,32,0,2,151,18,192,12,10,0,5,36, 27,22,192,12,33,32,0,2,142,22,192,12, 33,32,0,2,0,2,16,38,43,16,17,2, 247,255,64,20,33,32,0,2,184,11,192,12, 0,0,0,0,91,10,192,8,0,0,0,0, 36,0,191,143,32,0,178,143,28,0,177,143, 24,0,176,143,8,0,224,3,40,0,189,39, 4,128,130,143,232,255,189,39,16,0,191,175, 1,0,67,36,4,128,131,175,255,255,3,36, 4,0,67,20,255,31,4,60,0,163,1,60, 8,1,32,172,255,31,4,60,0,163,2,60, 8,1,66,140,212,132,131,143,255,255,132,52, 35,16,67,0,0,163,1,60,16,1,34,172, 2,131,2,60,192,246,66,36,36,16,68,0, 0,160,3,60,37,16,67,0,0,163,3,60, 8,1,99,140,28,0,66,140,212,132,131,175, 36,133,130,175,164,7,192,12,0,0,0,0, 0,163,2,60,48,1,66,140,0,0,0,0, 20,0,64,16,0,0,0,0,0,163,1,60, 48,1,32,172,0,163,1,60,16,1,32,172, 0,163,1,60,20,1,32,172,0,163,1,60, 24,1,32,172,0,163,1,60,28,1,32,172, 0,163,1,60,32,1,32,172,0,163,1,60, 36,1,32,172,0,163,1,60,40,1,32,172, 0,163,1,60,201,13,192,12,44,1,32,172, 16,0,191,143,24,0,189,39,8,0,224,3, 0,0,0,0,224,255,189,39,24,0,191,175, 20,0,177,175,120,63,192,12,16,0,176,175, 52,0,2,36,4,162,1,60,12,0,34,160, 120,63,192,12,232,3,16,36,28,133,130,143, 0,0,0,0,27,0,80,0,2,0,0,22, 0,0,0,0,13,0,7,0,18,16,0,0, 4,162,17,60,120,63,192,12,0,0,34,162, 28,133,130,143,0,0,0,0,27,0,80,0, 2,0,0,22,0,0,0,0,13,0,7,0, 18,16,0,0,33,40,0,0,33,32,0,0, 6,162,3,60,2,18,2,0,0,0,34,162, 1,0,2,36,0,163,1,60,4,1,32,172, 0,0,98,172,2,131,1,60,33,8,36,0, 8,245,32,172,1,0,165,36,22,0,162,44, 250,255,64,20,20,0,132,36,31,131,4,60, 0,240,132,52,52,128,131,143,1,0,2,36, 68,133,128,175,48,128,130,175,64,133,128,175, 32,131,1,60,252,239,36,172,8,0,96,16, 31,131,5,60,252,239,165,52,31,131,6,60, 1,131,4,60,224,127,132,36,15,63,192,12, 0,240,198,52,52,128,128,175,24,0,191,143, 20,0,177,143,16,0,176,143,8,0,224,3, 32,0,189,39,232,255,189,39,16,0,176,175, 116,0,2,36,20,0,191,175,4,162,1,60, 12,0,34,160,130,63,192,12,33,128,128,0, 4,162,1,60,4,0,48,160,130,63,192,12, 3,130,16,0,4,162,1,60,130,63,192,12, 4,0,48,160,20,0,191,143,16,0,176,143, 8,0,224,3,24,0,189,39,224,255,189,39, 64,0,2,36,24,0,191,175,20,0,177,175, 16,0,176,175,4,162,1,60,130,63,192,12, 12,0,34,160,4,162,17,60,4,0,49,146, 0,0,0,0,130,63,192,12,255,0,49,50, 4,162,16,60,4,0,16,146,0,0,0,0, 130,63,192,12,255,0,16,50,0,130,16,0, 37,16,17,2,24,0,191,143,20,0,177,143, 16,0,176,143,8,0,224,3,32,0,189,39, 48,128,130,143,232,255,189,39,16,0,176,175, 33,128,128,0,3,0,64,20,20,0,191,175, 180,10,192,12,0,0,0,0,5,0,0,18, 0,0,0,0,236,63,192,12,1,4,4,36, 50,11,192,8,0,0,0,0,228,63,192,12, 0,4,4,36,20,0,191,143,16,0,176,143, 8,0,224,3,24,0,189,39,216,255,189,39, 6,162,3,60,1,0,2,36,32,0,191,175, 28,0,177,175,24,0,176,175,0,0,98,172, 0,163,2,60,4,1,66,140,33,136,224,0, 1,0,66,36,0,163,1,60,4,1,34,172, 56,128,130,143,0,163,3,60,4,1,99,140, 1,0,66,36,56,128,130,175,232,3,66,40, 21,0,64,20,255,127,3,60,68,133,130,143, 254,255,99,52,56,128,128,175,1,0,66,36, 43,24,98,0,68,133,130,175,13,0,96,16, 0,0,0,0,2,131,4,60,28,128,132,36, 60,128,144,39,33,40,0,2,2,131,7,60, 60,128,231,36,15,63,192,12,144,0,6,36, 1,0,4,36,33,40,0,2,188,7,192,12, 144,0,6,36,64,133,134,143,0,0,0,0, 14,0,192,24,33,24,0,0,2,131,5,60, 0,245,165,36,33,32,0,0,2,131,2,60, 33,16,68,0,0,245,66,140,20,0,132,36, 1,0,99,36,255,255,66,36,0,0,162,172, 42,16,102,0,247,255,64,20,20,0,165,36, 31,131,4,60,252,239,132,52,31,131,2,60, 0,0,131,140,255,255,66,52,0,0,113,172, 4,0,99,36,43,16,67,0,3,0,64,16, 0,0,0,0,31,131,3,60,0,240,99,52, 0,0,131,172,32,0,191,143,28,0,177,143, 24,0,176,143,8,0,224,3,40,0,189,39, 64,133,130,143,232,255,189,39,20,0,191,175, 22,0,66,40,13,0,64,20,16,0,176,175, 2,131,4,60,28,128,132,36,60,128,144,39, 33,40,0,2,2,131,7,60,84,128,231,36, 15,63,192,12,173,0,6,36,1,0,4,36, 33,40,0,2,188,7,192,12,173,0,6,36, 64,133,130,143,0,0,0,0,1,0,67,36, 64,133,131,175,20,0,191,143,16,0,176,143, 8,0,224,3,24,0,189,39,128,16,4,0, 33,16,68,0,16,0,163,143,128,16,2,0, 2,131,1,60,33,8,34,0,4,245,38,172, 2,131,1,60,33,8,34,0,12,245,39,172, 2,131,1,60,33,8,34,0,0,245,38,172, 2,131,1,60,33,8,34,0,8,245,37,172, 2,131,1,60,33,8,34,0,16,245,35,172, 8,0,224,3,33,16,0,1,128,16,4,0, 33,16,68,0,128,16,2,0,2,131,1,60, 33,8,34,0,8,0,224,3,8,245,32,172, 64,133,130,143,192,255,189,39,40,0,180,175, 33,160,0,0,56,0,191,175,52,0,183,175, 48,0,182,175,44,0,181,175,36,0,179,175, 32,0,178,175,28,0,177,175,48,0,64,24, 24,0,176,175,1,0,23,36,2,0,22,36, 2,131,16,60,12,245,16,38,4,0,19,38, 244,255,17,38,252,255,18,38,33,168,0,0, 0,0,67,142,0,0,0,0,7,0,119,16, 2,0,98,40,25,0,64,20,0,0,0,0, 9,0,118,16,0,0,0,0,236,11,192,8, 20,0,16,38,0,0,34,142,0,0,0,0, 17,0,64,28,0,0,0,0,230,11,192,8, 0,0,64,174,0,0,34,142,0,0,0,0, 11,0,64,28,0,0,0,0,2,131,2,60, 33,16,85,0,4,245,66,140,0,0,0,0, 0,0,34,174,0,0,100,142,0,0,2,142, 0,0,0,0,9,248,64,0,0,0,0,0, 20,0,16,38,20,0,115,38,20,0,49,38, 20,0,82,38,64,133,130,143,1,0,148,38, 42,16,130,2,218,255,64,20,20,0,181,38, 56,0,191,143,52,0,183,143,48,0,182,143, 44,0,181,143,40,0,180,143,36,0,179,143, 32,0,178,143,28,0,177,143,24,0,176,143, 8,0,224,3,64,0,189,39,0,0,0,0, 2,131,3,60,192,246,99,36,0,2,2,36, 0,163,1,60,200,5,35,172,0,163,1,60, 208,5,34,172,0,163,2,60,124,1,66,140, 216,255,189,39,16,0,176,175,33,128,0,0, 28,0,179,175,255,255,19,36,24,0,178,175, 21,0,114,36,20,0,177,175,32,0,191,175, 1,0,66,44,80,133,130,175,139,14,192,12, 20,0,113,36,184,24,192,12,0,0,0,0, 27,67,192,12,33,32,0,2,6,0,83,20, 1,0,16,38,2,131,4,60,15,63,192,12, 112,128,132,36,126,12,192,8,1,0,2,36, 0,0,34,162,3,18,2,0,0,0,66,162, 2,0,82,38,3,0,2,42,241,255,64,20, 2,0,49,38,2,131,17,60,212,246,49,38, 33,32,32,2,33,40,0,0,255,127,6,60, 247,24,192,12,255,255,198,52,255,31,3,60, 255,255,99,52,236,255,48,38,36,0,34,38, 36,16,67,0,0,160,3,60,37,16,67,0, 0,32,3,36,236,255,32,174,2,131,1,60, 220,246,32,172,2,131,1,60,204,246,32,172, 2,131,1,60,236,246,34,172,0,0,67,164, 222,21,192,12,33,32,0,2,122,15,192,12, 33,32,0,2,242,21,192,12,33,32,0,2, 32,133,130,143,1,0,16,36,42,16,2,2, 12,0,64,16,255,31,3,60,236,1,49,38, 133,12,192,12,33,32,0,2,242,21,192,12, 33,32,32,2,32,133,130,143,1,0,16,38, 42,16,2,2,248,255,64,20,0,2,49,38, 255,31,3,60,255,255,99,52,2,131,16,60, 192,4,16,38,7,0,2,36,0,0,2,174, 56,0,2,38,36,16,67,0,0,160,3,60, 37,16,67,0,0,32,3,36,2,131,1,60, 220,4,32,172,2,131,1,60,204,4,32,172, 2,131,1,60,236,4,34,172,0,0,67,164, 2,131,2,60,212,246,66,140,2,131,3,60, 216,246,99,132,20,0,2,174,24,0,3,166, 2,131,2,60,217,4,66,144,0,0,0,0, 7,0,66,36,2,131,1,60,217,4,34,160, 112,15,192,12,33,32,0,2,33,32,0,2, 19,15,192,12,32,0,5,36,20,0,16,38, 33,32,0,2,7,0,5,36,255,127,6,60, 247,24,192,12,255,255,198,52,33,16,0,0, 32,0,191,143,28,0,179,143,24,0,178,143, 20,0,177,143,16,0,176,143,8,0,224,3, 40,0,189,39,200,255,189,39,48,0,180,175, 33,160,128,0,255,31,6,60,255,255,198,52, 64,26,20,0,2,131,2,60,192,246,66,36, 40,0,178,175,33,144,98,0,255,255,132,38, 64,18,4,0,0,162,3,60,33,16,67,0, 52,0,191,175,44,0,179,175,36,0,177,175, 32,0,176,175,4,0,66,174,0,1,66,36, 8,0,66,174,0,16,2,36,4,16,130,0, 12,0,66,174,4,0,2,36,4,16,130,0, 0,160,5,60,16,0,66,174,48,0,66,38, 36,16,70,0,37,16,69,0,36,0,66,174, 64,16,4,0,33,16,68,0,128,16,2,0, 2,131,3,60,240,231,99,36,33,16,67,0, 36,16,70,0,37,16,69,0,40,0,66,174, 56,0,66,38,36,16,70,0,37,16,69,0, 0,0,84,174,44,0,66,174,32,0,64,174, 2,131,2,60,212,246,66,140,2,131,3,60, 216,246,99,132,20,0,66,174,24,0,67,166, 25,0,66,146,0,0,0,0,33,32,84,0, 2,131,2,60,0,227,66,36,36,16,70,0, 37,128,69,0,2,131,2,60,32,227,66,36, 36,16,70,0,25,0,68,162,40,133,131,143, 0,0,0,0,3,0,96,16,37,136,69,0, 255,255,130,36,25,0,66,162,12,0,68,142, 28,0,64,174,228,63,192,12,1,0,132,52, 4,0,68,142,0,0,0,0,76,67,192,12, 33,40,0,0,76,63,192,12,0,0,0,0, 76,63,192,12,0,0,0,0,255,255,2,36, 4,0,2,174,4,0,2,142,0,0,0,0, 0,0,2,174,4,0,68,142,0,0,0,0, 76,67,192,12,1,0,5,54,4,0,4,38, 33,40,0,0,255,255,6,36,211,67,192,12, 208,7,7,36,8,0,64,20,255,255,2,52, 2,131,4,60,184,128,132,36,4,0,6,142, 0,0,0,0,15,63,192,12,33,40,128,2, 255,255,2,52,48,1,34,174,4,0,68,142, 0,0,0,0,76,67,192,12,3,0,37,54, 48,1,36,38,33,40,0,0,255,255,6,52, 211,67,192,12,208,7,7,36,7,0,64,20, 0,0,0,0,2,131,4,60,8,129,132,36, 48,1,38,142,0,0,0,0,15,63,192,12, 33,40,128,2,143,63,192,12,0,0,0,0, 40,0,69,142,4,0,68,142,0,0,0,0, 76,67,192,12,2,0,165,52,44,0,81,142, 84,128,131,143,80,128,132,143,100,0,2,36, 0,0,32,166,2,0,32,166,4,0,32,174, 8,0,32,174,12,0,32,174,16,0,32,174, 24,0,32,174,20,0,32,174,28,0,32,174, 32,0,32,174,36,0,34,166,38,0,34,166, 36,0,35,166,38,0,36,166,36,0,83,142, 1,0,2,36,0,0,98,174,44,0,66,142, 0,0,0,0,4,0,98,174,40,0,67,142, 116,0,2,60,0,0,98,172,40,0,67,142, 36,0,66,142,0,0,0,0,8,0,98,172, 8,0,66,142,0,0,0,0,0,0,64,172, 0,0,98,142,0,0,0,0,10,0,64,16, 33,128,0,0,208,7,2,42,7,0,64,16, 0,0,0,0,143,63,192,12,0,0,0,0, 0,0,98,142,0,0,0,0,248,255,64,20, 1,0,16,38,0,0,98,142,0,0,0,0, 6,0,64,16,33,32,32,2,2,131,4,60, 76,129,132,36,15,63,192,12,33,40,128,2, 33,32,32,2,8,0,5,36,0,0,34,150, 8,0,6,36,0,240,66,48,0,6,66,52, 2,0,34,166,8,0,66,142,208,7,7,36, 129,67,192,12,0,0,64,172,6,0,64,20, 2,0,36,38,2,131,4,60,160,129,132,36, 15,63,192,12,33,40,128,2,2,0,36,38, 33,40,0,0,0,0,34,150,33,48,0,0, 0,240,66,48,2,0,34,166,8,0,66,142, 208,7,7,36,129,67,192,12,0,0,64,172, 4,0,64,20,0,0,0,0,2,131,4,60, 15,63,192,12,248,129,132,36,143,63,192,12, 0,0,0,0,108,0,80,142,0,128,2,52, 0,0,0,166,2,0,2,166,44,0,66,142, 0,32,5,36,4,0,80,172,44,0,67,142, 0,241,2,52,2,0,98,164,8,0,66,142, 0,32,6,36,0,0,64,172,44,0,68,142, 0,0,0,0,129,67,192,12,208,7,7,36, 12,0,64,20,0,0,0,0,44,0,66,142, 0,0,0,0,0,0,69,148,2,131,4,60, 15,63,192,12,16,130,132,36,254,255,4,36, 2,131,5,60,44,130,165,36,188,7,192,12, 1,1,6,36,108,0,80,142,2,128,2,52, 0,0,0,166,2,0,2,166,14,0,2,36, 8,0,2,162,200,0,2,36,9,0,2,162, 65,0,2,36,10,0,2,162,46,0,2,36, 11,0,2,162,87,0,2,36,12,0,0,162, 13,0,2,162,242,0,2,36,14,0,0,162, 15,0,2,162,1,0,2,36,16,0,2,162, 8,0,2,36,17,0,2,162,88,128,130,143, 0,0,0,0,6,0,64,16,64,0,2,36, 2,131,4,60,15,63,192,12,56,130,132,36, 88,128,128,175,64,0,2,36,18,0,2,162, 255,0,2,36,19,0,2,162,63,0,2,36, 20,0,0,162,21,0,2,162,44,0,66,142, 0,32,5,36,4,0,80,172,44,0,67,142, 0,33,2,36,2,0,98,164,8,0,66,142, 0,32,6,36,0,0,64,172,44,0,68,142, 0,0,0,0,129,67,192,12,208,7,7,36, 12,0,64,20,0,0,0,0,44,0,66,142, 0,0,0,0,0,0,69,148,2,131,4,60, 15,63,192,12,16,130,132,36,253,255,4,36, 2,131,5,60,44,130,165,36,188,7,192,12, 85,1,6,36,222,21,192,12,33,32,64,2, 122,15,192,12,33,32,64,2,52,0,191,143, 48,0,180,143,44,0,179,143,40,0,178,143, 36,0,177,143,32,0,176,143,8,0,224,3, 56,0,189,39,248,255,189,39,32,133,133,143, 0,0,0,0,50,0,160,24,33,32,0,0, 2,131,3,60,192,246,99,36,44,0,98,140, 152,0,96,172,156,0,96,172,160,0,96,172, 164,0,96,172,168,0,96,172,172,0,96,172, 176,0,96,172,180,0,96,172,184,0,96,172, 188,0,96,172,192,0,96,172,196,0,96,172, 200,0,96,172,204,0,96,172,208,0,96,172, 212,0,96,172,216,0,96,172,224,0,96,172, 232,0,96,172,236,0,96,172,240,0,96,172, 244,0,96,172,248,0,96,172,252,0,96,172, 0,1,96,172,4,1,96,172,8,1,96,172, 12,0,64,172,44,0,98,140,0,0,0,0, 16,0,64,172,44,0,98,140,0,0,0,0, 24,0,64,172,44,0,98,140,0,0,0,0, 20,0,64,172,44,0,98,140,1,0,132,36, 28,0,64,172,44,0,98,140,0,2,99,36, 32,0,64,172,42,16,133,0,210,255,64,20, 0,0,0,0,33,32,0,0,0,163,3,60, 0,1,99,52,32,0,5,36,33,16,131,0, 188,0,69,160,1,0,132,36,0,2,130,44, 251,255,64,20,0,0,0,0,8,0,224,3, 8,0,189,39,0,0,0,0,124,133,130,143, 232,255,189,39,20,0,191,175,17,0,64,20, 16,0,176,175,208,7,16,36,7,0,0,26, 0,0,0,0,143,63,192,12,255,255,16,38, 124,133,130,143,0,0,0,0,249,255,64,16, 0,0,0,0,6,0,0,22,0,0,0,0, 2,131,4,60,15,63,192,12,80,130,132,36, 45,14,192,8,33,16,0,0,220,63,192,12, 33,32,0,0,33,32,64,0,124,133,144,143, 128,133,130,143,4,0,3,142,255,255,66,36, 128,133,130,175,124,133,131,175,220,63,192,12, 0,0,0,0,33,16,0,2,20,0,191,143, 16,0,176,143,8,0,224,3,24,0,189,39, 232,255,189,39,96,133,130,143,33,40,128,0, 43,16,162,0,6,0,64,20,16,0,191,175, 100,133,130,143,0,0,0,0,43,16,162,0, 6,0,64,20,0,0,0,0,2,131,4,60, 15,63,192,12,116,130,132,36,71,14,192,8, 0,0,0,0,124,133,131,143,128,133,130,143, 124,133,133,175,1,0,66,36,4,0,163,172, 128,133,130,175,16,0,191,143,24,0,189,39, 8,0,224,3,0,0,0,0,108,133,130,143, 232,255,189,39,20,0,191,175,17,0,64,20, 16,0,176,175,208,7,16,36,7,0,0,26, 0,0,0,0,143,63,192,12,255,255,16,38, 108,133,130,143,0,0,0,0,249,255,64,16, 0,0,0,0,6,0,0,22,0,0,0,0, 2,131,4,60,15,63,192,12,148,130,132,36, 108,14,192,8,33,16,0,0,220,63,192,12, 33,32,0,0,33,32,64,0,108,133,144,143, 120,133,130,143,0,0,3,142,255,255,66,36, 120,133,130,175,108,133,131,175,220,63,192,12, 0,0,0,0,33,16,0,2,20,0,191,143, 16,0,176,143,8,0,224,3,24,0,189,39, 232,255,189,39,104,133,130,143,33,40,128,0, 43,16,162,0,6,0,64,20,16,0,191,175, 112,133,130,143,0,0,0,0,43,16,162,0, 6,0,64,20,0,0,0,0,2,131,4,60, 15,63,192,12,184,130,132,36,135,14,192,8, 0,0,0,0,108,133,130,143,0,0,0,0, 0,0,162,172,120,133,130,143,108,133,133,175, 1,0,66,36,120,133,130,175,16,0,191,143, 24,0,189,39,8,0,224,3,0,0,0,0, 232,255,189,39,20,0,191,175,16,0,176,175, 124,133,128,175,13,8,192,12,0,32,4,36, 255,31,3,60,255,255,99,52,255,1,16,36, 36,16,67,0,0,160,3,60,37,16,67,0, 96,133,130,175,0,32,66,36,100,133,130,175, 0,17,16,0,96,133,132,143,255,255,16,38, 49,14,192,12,33,32,130,0,251,255,1,6, 0,17,16,0,0,2,2,36,132,133,130,175, 108,133,128,175,13,8,192,12,18,0,4,60, 255,31,3,60,255,255,99,52,255,17,16,36, 36,16,67,0,0,160,3,60,37,16,67,0, 18,0,3,60,104,133,130,175,33,16,67,0, 112,133,130,175,0,18,16,0,104,133,132,143, 255,255,16,38,112,14,192,12,33,32,130,0, 251,255,1,6,0,18,16,0,0,18,2,36, 116,133,130,175,20,0,191,143,16,0,176,143, 8,0,224,3,24,0,189,39,0,0,0,0, 0,0,0,0,0,0,0,0,0,163,2,60, 168,1,66,140,216,255,189,39,28,0,177,175, 33,136,128,0,32,0,178,175,33,144,160,0, 36,0,191,175,17,0,64,16,24,0,176,175, 0,163,2,60,168,1,66,140,0,0,0,0, 42,16,82,0,12,0,64,16,128,128,18,0, 0,0,34,142,0,163,18,60,168,1,82,142, 0,0,0,0,6,0,64,20,128,128,18,0, 2,131,4,60,224,130,132,36,15,63,192,12, 33,40,64,2,128,128,18,0,33,128,18,2, 128,128,16,0,13,8,192,12,33,32,0,2, 255,31,3,60,255,255,99,52,33,32,0,0, 36,16,67,0,0,160,3,60,37,16,67,0, 112,0,34,174,112,0,35,142,33,16,80,0, 15,0,64,26,116,0,34,174,8,0,5,36, 1,0,132,36,20,0,98,36,4,0,98,172, 2,0,101,164,0,0,96,164,8,0,96,172, 14,0,96,164,12,0,96,164,33,24,64,0, 42,16,146,0,246,255,64,20,1,0,132,36, 255,255,132,36,116,0,35,142,112,0,34,142, 0,0,0,0,240,255,98,172,116,0,35,142, 0,0,0,0,218,255,98,148,0,0,0,0, 0,128,66,52,218,255,98,164,116,0,35,142, 0,0,0,0,238,255,98,148,0,0,0,0, 0,128,66,52,238,255,98,164,116,0,34,142, 112,0,35,142,216,255,66,36,120,0,35,174, 124,0,34,174,36,0,191,143,32,0,178,143, 28,0,177,143,24,0,176,143,8,0,224,3, 40,0,189,39,200,255,189,39,32,0,178,175, 33,144,128,0,0,1,2,36,48,0,191,175, 44,0,181,175,40,0,180,175,36,0,179,175, 28,0,177,175,24,0,176,175,144,0,66,174, 0,163,2,60,172,1,66,140,0,0,0,0, 17,0,64,16,33,160,160,0,0,163,2,60, 172,1,66,140,0,0,0,0,42,16,84,0, 12,0,64,16,128,128,20,0,0,0,66,142, 0,163,20,60,172,1,148,142,0,0,0,0, 6,0,64,20,128,128,20,0,2,131,4,60, 236,130,132,36,15,63,192,12,33,40,128,2, 128,128,20,0,33,128,20,2,128,128,16,0, 33,32,0,2,13,8,192,12,148,0,84,174, 255,31,3,60,255,255,99,52,33,152,0,0, 36,16,67,0,0,160,3,60,37,16,67,0, 128,0,66,174,128,0,81,142,33,16,80,0, 15,0,128,26,132,0,66,174,0,1,21,36, 20,0,48,38,4,0,48,174,75,14,192,12, 0,0,32,174,8,0,34,174,12,0,53,174, 0,0,66,142,1,0,115,38,16,0,34,162, 17,0,32,162,42,16,116,2,244,255,64,20, 33,136,0,2,132,0,67,142,128,0,66,142, 0,0,0,0,240,255,98,172,132,0,67,142, 0,0,0,0,228,255,98,140,0,0,0,0, 0,128,66,52,228,255,98,172,132,0,67,142, 0,0,0,0,248,255,98,140,0,0,0,0, 0,128,66,52,248,255,98,172,132,0,66,142, 128,0,67,142,216,255,66,36,136,0,67,174, 140,0,66,174,48,0,191,143,44,0,181,143, 40,0,180,143,36,0,179,143,32,0,178,143, 28,0,177,143,24,0,176,143,8,0,224,3, 56,0,189,39,152,0,128,172,156,0,128,172, 160,0,128,172,164,0,128,172,168,0,128,172, 252,0,128,172,0,1,128,172,152,0,128,172, 8,0,224,3,216,0,128,172,232,255,189,39, 16,0,176,175,20,0,191,175,112,15,192,12, 33,128,128,0,33,32,0,2,192,14,192,12, 0,4,5,36,33,32,0,2,19,15,192,12, 128,2,5,36,120,0,3,142,136,0,2,142, 0,0,0,0,8,0,98,172,44,0,3,142, 120,0,2,142,0,0,0,0,8,0,98,172, 0,0,2,142,0,0,0,0,255,255,66,36, 6,0,66,44,7,0,64,16,16,0,3,36, 44,0,2,142,0,0,0,0,2,0,67,164, 8,0,2,142,0,0,0,0,0,0,64,172, 20,0,191,143,16,0,176,143,8,0,224,3, 24,0,189,39,184,255,189,39,0,32,6,36, 68,0,191,175,64,0,190,175,60,0,183,175, 56,0,182,175,52,0,181,175,48,0,180,175, 44,0,179,175,40,0,178,175,36,0,177,175, 32,0,176,175,0,163,1,60,252,5,38,172, 13,8,192,12,0,32,4,36,255,31,4,60, 255,255,132,52,33,168,0,0,255,31,6,60, 255,255,198,52,2,131,3,60,212,247,99,36, 16,0,101,36,8,0,126,36,248,255,119,36, 33,176,96,0,36,16,68,0,0,160,3,60, 37,16,67,0,16,0,166,175,0,163,1,60, 248,5,34,172,0,163,1,60,0,6,32,172, 33,160,0,0,33,128,224,2,33,152,160,0, 33,144,192,3,33,136,192,2,32,133,130,143, 0,0,32,174,0,0,0,174,0,0,64,174, 42,16,162,2,10,0,64,16,0,0,96,174, 0,32,4,36,13,8,192,12,24,0,165,175, 16,0,166,143,0,128,3,60,36,16,70,0, 37,16,67,0,0,0,2,174,24,0,165,143, 4,0,16,38,4,0,115,38,4,0,82,38, 1,0,148,38,2,0,130,42,234,255,64,20, 4,0,49,38,0,2,165,36,0,2,222,39, 0,2,247,38,1,0,181,38,7,0,162,42, 222,255,64,20,0,2,214,38,68,0,191,143, 64,0,190,143,60,0,183,143,56,0,182,143, 52,0,181,143,48,0,180,143,44,0,179,143, 40,0,178,143,36,0,177,143,32,0,176,143, 8,0,224,3,72,0,189,39,0,163,4,60, 0,6,132,140,0,163,3,60,8,6,99,140, 32,133,130,143,224,255,189,39,16,0,176,175, 0,163,16,60,12,6,16,142,20,0,177,175, 0,163,17,60,4,6,49,142,43,16,98,0, 42,0,64,16,24,0,191,175,2,0,2,46, 40,0,64,16,255,255,2,36,0,163,2,60, 252,5,66,140,0,0,0,0,43,16,81,0, 34,0,64,20,255,255,2,36,64,18,3,0, 2,131,3,60,192,246,99,36,33,24,67,0, 1,0,2,36,5,0,130,16,2,0,2,36, 18,0,130,16,128,16,16,0,36,16,192,8, 0,0,0,0,128,128,16,0,33,128,3,2, 12,1,4,142,0,163,5,60,248,5,165,140, 33,48,32,2,80,68,192,12,36,1,17,174, 12,1,4,142,12,1,2,142,33,40,32,2, 114,68,192,12,20,1,2,174,36,16,192,8, 0,0,0,0,33,16,67,0,20,1,64,172, 36,1,64,172,0,163,1,60,42,16,192,8, 0,6,32,172,255,255,2,36,0,163,1,60, 0,6,34,172,24,0,191,143,20,0,177,143, 16,0,176,143,8,0,224,3,32,0,189,39, 176,133,136,143,188,133,137,143,232,255,189,39, 3,0,0,21,16,0,191,175,124,0,32,17, 0,0,0,0,12,0,194,148,0,0,0,0, 0,26,2,0,2,18,2,0,37,56,98,0, 255,255,227,48,221,5,98,44,36,0,64,20, 170,170,2,52,0,8,2,36,23,0,98,20, 6,8,2,36,21,0,0,17,0,0,0,0, 32,0,194,148,30,0,195,148,0,20,2,0, 37,56,67,0,36,0,195,148,0,161,2,52, 5,0,98,16,8,0,2,36,34,0,195,148, 0,0,0,0,98,0,98,20,0,0,0,0, 3,0,232,16,255,255,2,36,94,0,226,20, 0,0,0,0,226,46,192,12,14,0,6,36, 177,16,192,8,0,0,0,0,7,0,98,20, 255,255,227,48,71,0,0,17,55,129,2,52, 108,43,192,12,14,0,6,36,177,16,192,8, 0,0,0,0,162,16,192,8,55,129,2,52, 14,0,195,148,0,0,0,0,61,0,98,20, 255,255,2,52,16,0,195,144,3,0,2,36, 55,0,98,20,255,255,2,52,20,0,194,148, 0,0,0,0,0,26,2,0,2,18,2,0, 37,56,98,0,255,255,227,48,0,8,2,36, 23,0,98,20,6,8,2,36,21,0,0,17, 0,0,0,0,40,0,194,148,38,0,195,148, 0,20,2,0,37,56,67,0,44,0,195,148, 0,161,2,52,5,0,98,16,8,0,2,36, 42,0,195,148,0,0,0,0,49,0,98,20, 0,0,0,0,3,0,232,16,255,255,2,36, 45,0,226,20,0,0,0,0,226,46,192,12, 22,0,6,36,177,16,192,8,0,0,0,0, 7,0,98,20,255,255,227,48,6,0,0,17, 55,129,2,52,108,43,192,12,22,0,6,36, 177,16,192,8,0,0,0,0,55,129,2,52, 30,0,98,20,0,0,0,0,28,0,32,17, 144,15,3,36,38,0,194,148,28,0,198,140, 24,0,67,20,0,0,0,0,3,0,201,16, 0,0,0,0,20,0,192,20,0,0,0,0, 175,16,192,8,22,0,6,36,14,0,195,148, 0,0,0,0,14,0,98,20,0,0,0,0, 12,0,32,17,144,15,3,36,30,0,194,148, 20,0,198,140,8,0,67,20,0,0,0,0, 3,0,201,16,0,0,0,0,4,0,192,20, 0,0,0,0,14,0,6,36,126,49,192,12, 0,0,0,0,16,0,191,143,24,0,189,39, 8,0,224,3,0,0,0,0,128,255,189,39, 116,0,183,175,33,184,128,0,3,0,3,36, 124,0,191,175,120,0,190,175,112,0,182,175, 108,0,181,175,104,0,180,175,100,0,179,175, 96,0,178,175,92,0,177,175,88,0,176,175, 0,0,245,142,8,0,178,140,192,17,21,0, 3,131,4,60,33,32,130,0,20,13,132,140, 8,0,84,142,0,0,0,0,59,0,131,16, 5,0,130,44,57,0,64,16,128,16,4,0, 2,131,1,60,33,8,34,0,104,131,34,140, 0,0,0,0,8,0,64,0,0,0,0,0, 44,133,130,143,0,0,0,0,48,0,64,16, 6,0,132,38,4,0,131,150,2,131,2,60, 68,207,66,148,0,0,0,0,6,0,98,20, 33,32,0,0,0,0,130,142,48,129,131,143, 0,0,0,0,38,16,67,0,1,0,68,44, 72,1,128,16,33,32,160,2,114,42,192,12, 33,40,128,2,45,18,192,8,33,32,64,2, 44,133,130,143,0,0,0,0,27,0,64,16, 6,0,132,38,4,0,131,150,2,131,2,60, 68,207,66,148,0,0,0,0,6,0,98,20, 33,32,0,0,0,0,130,142,48,129,131,143, 0,0,0,0,38,16,67,0,1,0,68,44, 5,0,128,16,33,32,160,2,114,42,192,12, 33,40,128,2,45,18,192,8,33,32,64,2, 6,0,132,38,0,163,6,60,140,1,198,140, 0,0,0,0,247,24,192,12,33,40,160,2, 45,18,192,8,33,32,64,2,6,0,132,38, 0,163,6,60,140,1,198,140,0,0,0,0, 247,24,192,12,33,40,160,2,203,24,192,12, 33,32,128,2,20,1,227,142,0,0,0,0, 14,0,96,16,33,240,64,0,33,32,128,2, 16,0,166,39,18,0,69,150,0,0,0,0, 9,248,96,0,33,56,192,3,6,0,64,16, 33,32,64,2,28,1,226,142,0,0,0,0, 1,0,66,36,45,18,192,8,28,1,226,174, 132,0,193,7,7,0,2,36,4,0,131,150, 2,131,2,60,68,207,66,148,0,0,0,0, 6,0,98,20,33,32,0,0,0,0,130,142, 48,129,131,143,0,0,0,0,38,16,67,0, 1,0,68,44,9,0,128,16,255,255,2,36, 44,133,130,143,0,0,0,0,251,0,64,16, 33,32,160,2,114,42,192,12,33,40,128,2, 45,18,192,8,33,32,64,2,10,0,194,23, 0,0,0,0,8,0,160,18,0,0,0,0, 36,133,130,143,0,0,0,0,8,0,64,16, 1,0,19,36,80,133,147,143,69,17,192,8, 0,0,0,0,0,1,226,142,80,133,147,143, 1,0,66,36,0,1,226,174,84,133,130,143, 0,0,0,0,35,16,83,0,255,255,66,36, 17,0,66,162,84,133,130,143,33,128,96,2, 42,16,2,2,15,0,64,16,64,18,16,0, 2,131,3,60,192,246,99,36,33,136,67,0, 5,0,21,18,0,0,0,0,247,22,192,12, 33,32,32,2,217,0,64,16,33,16,0,0, 84,133,130,143,1,0,16,38,42,16,2,2, 246,255,64,20,0,2,49,38,84,133,130,143, 33,128,96,2,42,16,2,2,55,0,64,16, 64,18,16,0,2,131,3,60,192,246,99,36, 33,152,67,0,33,136,64,0,192,177,16,0, 41,0,21,18,0,0,0,0,2,131,2,60, 33,16,81,0,216,247,66,140,0,0,0,0, 15,0,64,16,33,32,128,2,16,0,166,39, 18,0,69,150,0,0,0,0,9,248,64,0, 33,56,160,2,8,0,64,16,0,0,0,0, 2,131,2,60,33,16,81,0,224,247,66,140, 0,0,0,0,1,0,66,36,140,17,192,8, 32,1,98,174,44,133,130,143,0,0,0,0, 7,0,64,16,3,0,8,36,3,131,2,60, 33,16,86,0,20,13,66,140,0,0,0,0, 6,0,72,20,0,0,0,0,33,32,96,2, 6,23,192,12,33,40,64,2,146,17,192,8, 0,2,115,38,17,0,66,146,0,0,0,0, 255,255,66,36,17,0,66,162,17,0,66,146, 0,2,115,38,0,2,49,38,84,133,130,143, 1,0,16,38,42,16,2,2,208,255,64,20, 128,0,214,38,254,255,2,36,4,0,194,23, 33,32,224,2,33,40,64,2,47,16,192,12, 33,48,128,2,17,0,66,146,0,0,0,0, 140,0,64,16,33,32,64,2,36,18,192,8, 0,0,0,0,26,0,194,23,0,0,0,0, 36,133,130,143,0,0,0,0,11,0,64,16, 33,32,224,2,9,0,160,18,1,0,2,36, 17,0,66,162,2,131,4,60,192,246,132,36, 6,23,192,12,33,40,64,2,126,0,64,16, 33,16,0,0,33,32,224,2,33,40,64,2, 47,16,192,12,33,48,128,2,36,133,130,143, 0,0,0,0,115,0,64,16,33,32,64,2, 116,0,160,22,1,0,2,36,45,18,192,8, 0,0,0,0,87,0,213,19,64,130,30,0, 2,131,2,60,33,16,80,0,216,247,66,140, 0,0,0,0,18,0,64,16,33,32,128,2, 16,0,166,39,18,0,69,150,0,0,0,0, 9,248,64,0,33,56,160,2,11,0,64,16, 33,32,64,2,2,131,2,60,33,16,80,0, 224,247,66,140,0,0,0,0,1,0,66,36, 2,131,1,60,33,8,48,0,224,247,34,172, 45,18,192,8,17,0,128,160,36,133,130,143, 0,0,0,0,43,0,64,16,0,0,0,0, 41,0,192,19,0,0,0,0,39,0,160,18, 64,18,30,0,2,131,16,60,192,246,16,38, 33,136,80,0,247,22,192,12,33,32,32,2, 74,0,64,16,33,16,0,0,247,22,192,12, 33,32,0,2,63,0,64,16,2,0,2,36, 17,0,66,162,44,133,130,143,0,0,0,0, 7,0,64,16,192,17,30,0,3,131,3,60, 33,24,98,0,20,13,99,140,3,0,2,36, 6,0,98,20,0,0,0,0,33,32,32,2, 6,23,192,12,33,40,64,2,0,18,192,8, 0,0,0,0,17,0,66,146,0,0,0,0, 255,255,66,36,17,0,66,162,17,0,66,146, 2,131,4,60,192,246,132,36,6,23,192,12, 33,40,64,2,36,18,192,8,0,0,0,0, 44,133,130,143,0,0,0,0,7,0,64,16, 192,17,30,0,3,131,3,60,33,24,98,0, 20,13,99,140,3,0,2,36,28,0,98,20, 0,0,0,0,1,0,2,36,17,0,66,162, 64,18,30,0,2,131,4,60,192,246,132,36, 32,18,192,8,33,32,68,0,36,133,130,143, 0,0,0,0,17,0,64,16,0,0,0,0, 15,0,192,19,1,0,2,36,17,0,66,162, 2,131,4,60,192,246,132,36,6,23,192,12, 33,40,64,2,13,0,64,16,33,16,0,0, 252,0,226,142,0,0,0,0,1,0,66,36, 47,18,192,8,252,0,226,174,48,18,192,8, 33,16,0,0,17,0,64,162,33,32,64,2, 152,21,192,12,0,0,0,0,1,0,2,36, 124,0,191,143,120,0,190,143,116,0,183,143, 112,0,182,143,108,0,181,143,104,0,180,143, 100,0,179,143,96,0,178,143,92,0,177,143, 88,0,176,143,8,0,224,3,128,0,189,39, 216,255,189,39,24,0,178,175,33,144,128,0, 32,0,191,175,28,0,179,175,20,0,177,175, 16,0,176,175,8,0,177,140,0,0,66,142, 8,0,38,142,36,0,64,16,0,0,0,0, 28,0,66,142,0,0,0,0,18,0,64,20, 1,0,2,36,0,0,194,144,0,0,0,0, 1,0,66,48,13,0,64,20,1,0,2,36, 4,0,195,148,24,0,66,150,0,0,0,0, 6,0,98,20,33,32,0,0,0,0,194,140, 20,0,67,142,0,0,0,0,38,16,67,0, 1,0,68,44,10,0,128,16,1,0,2,36, 17,0,34,162,2,131,4,60,192,246,132,36, 6,23,192,12,33,40,32,2,45,0,64,16, 33,16,0,0,139,18,192,8,0,0,0,0, 17,0,32,162,152,21,192,12,33,32,32,2, 144,18,192,8,1,0,2,36,16,0,179,140, 0,0,0,0,6,0,96,26,0,0,0,0, 32,133,130,143,0,0,0,0,42,16,98,2, 15,0,64,20,1,0,2,36,2,131,4,60, 248,130,132,36,2,131,16,60,24,131,16,38, 33,40,0,2,2,131,7,60,36,131,231,36, 15,63,192,12,188,2,6,36,1,0,4,36, 33,40,0,2,188,7,192,12,188,2,6,36, 1,0,2,36,17,0,34,162,64,18,19,0, 2,131,4,60,192,246,132,36,33,32,68,0, 6,23,192,12,33,40,32,2,6,0,64,16, 33,16,0,0,252,0,66,142,0,0,0,0, 1,0,66,36,252,0,66,174,1,0,2,36, 32,0,191,143,28,0,179,143,24,0,178,143, 20,0,177,143,16,0,176,143,8,0,224,3, 40,0,189,39,72,255,189,39,164,0,181,175, 33,168,128,0,180,0,191,175,176,0,190,175, 172,0,183,175,168,0,182,175,160,0,180,175, 156,0,179,175,152,0,178,175,148,0,177,175, 144,0,176,175,88,0,165,175,120,0,160,175, 120,0,168,142,0,0,0,0,96,0,168,175, 124,0,169,142,0,0,0,0,15,2,160,24, 104,0,169,175,96,0,168,143,0,0,0,0, 0,0,4,149,0,0,0,0,0,128,130,48, 9,2,64,16,0,0,0,0,128,0,160,175, 8,0,2,141,136,0,169,142,255,255,8,36, 18,0,72,16,112,0,169,175,112,0,169,143, 0,0,0,0,0,0,35,141,4,0,40,141, 128,0,169,143,255,63,98,48,33,72,34,1, 0,128,99,48,112,0,168,175,246,255,96,16, 128,0,169,175,96,0,168,143,0,0,0,0, 8,0,2,141,128,0,169,151,0,0,0,0, 18,0,73,164,0,32,130,48,200,1,64,16, 0,0,0,0,40,133,130,143,0,0,0,0, 75,0,64,16,3,0,8,36,96,0,168,143, 0,0,0,0,8,0,16,141,0,0,162,142, 8,0,5,142,30,0,64,16,0,0,0,0, 28,0,162,142,0,0,0,0,18,0,64,20, 1,0,9,36,0,0,162,144,0,0,0,0, 1,0,66,48,13,0,64,20,0,0,0,0, 4,0,163,148,24,0,162,150,0,0,0,0, 6,0,98,20,33,32,0,0,0,0,162,140, 20,0,163,142,0,0,0,0,38,16,67,0, 1,0,68,44,6,0,128,16,1,0,9,36, 17,0,9,162,2,131,4,60,192,246,132,36, 18,19,192,8,33,40,0,2,17,0,0,162, 130,20,192,8,33,32,0,2,16,0,17,141, 0,0,0,0,6,0,32,26,0,0,0,0, 32,133,130,143,0,0,0,0,42,16,34,2, 15,0,64,20,1,0,9,36,2,131,4,60, 248,130,132,36,2,131,5,60,24,131,165,36, 2,131,7,60,36,131,231,36,15,63,192,12, 188,2,6,36,1,0,4,36,2,131,5,60, 24,131,165,36,188,7,192,12,188,2,6,36, 1,0,9,36,17,0,9,162,64,34,17,0, 2,131,8,60,192,246,8,37,33,32,136,0, 33,40,0,2,6,23,192,12,0,0,0,0, 112,1,64,16,33,16,0,0,252,0,162,142, 0,0,0,0,1,0,66,36,132,20,192,8, 252,0,162,174,0,0,182,142,96,0,169,143, 192,17,22,0,8,0,50,141,3,131,3,60, 33,24,98,0,20,13,99,140,8,0,84,142, 0,0,0,0,59,0,104,16,5,0,98,44, 57,0,64,16,128,16,3,0,2,131,1,60, 33,8,34,0,128,131,34,140,0,0,0,0, 8,0,64,0,0,0,0,0,44,133,130,143, 0,0,0,0,48,0,64,16,6,0,132,38, 4,0,131,150,2,131,2,60,68,207,66,148, 0,0,0,0,6,0,98,20,33,32,0,0, 0,0,130,142,48,129,131,143,0,0,0,0, 38,16,67,0,1,0,68,44,67,1,128,16, 33,32,192,2,114,42,192,12,33,40,128,2, 130,20,192,8,33,32,64,2,44,133,130,143, 0,0,0,0,27,0,64,16,6,0,132,38, 4,0,131,150,2,131,2,60,68,207,66,148, 0,0,0,0,6,0,98,20,33,32,0,0, 0,0,130,142,48,129,131,143,0,0,0,0, 38,16,67,0,1,0,68,44,5,0,128,16, 33,32,192,2,114,42,192,12,33,40,128,2, 130,20,192,8,33,32,64,2,6,0,132,38, 0,163,6,60,140,1,198,140,0,0,0,0, 247,24,192,12,33,40,192,2,130,20,192,8, 33,32,64,2,6,0,132,38,0,163,6,60, 140,1,198,140,0,0,0,0,247,24,192,12, 33,40,192,2,203,24,192,12,33,32,128,2, 20,1,163,142,0,0,0,0,14,0,96,16, 33,240,64,0,33,32,128,2,16,0,166,39, 18,0,69,150,0,0,0,0,9,248,96,0, 33,56,192,3,6,0,64,16,33,32,64,2, 28,1,162,142,0,0,0,0,1,0,66,36, 130,20,192,8,28,1,162,174,132,0,193,7, 7,0,2,36,4,0,131,150,2,131,2,60, 68,207,66,148,0,0,0,0,6,0,98,20, 33,32,0,0,0,0,130,142,48,129,131,143, 0,0,0,0,38,16,67,0,1,0,68,44, 9,0,128,16,255,255,9,36,44,133,130,143, 0,0,0,0,246,0,64,16,33,32,192,2, 114,42,192,12,33,40,128,2,130,20,192,8, 33,32,64,2,10,0,201,23,0,0,0,0, 8,0,192,18,0,0,0,0,36,133,130,143, 0,0,0,0,8,0,64,16,1,0,19,36, 80,133,147,143,159,19,192,8,0,0,0,0, 0,1,162,142,80,133,147,143,1,0,66,36, 0,1,162,174,84,133,130,143,0,0,0,0, 35,16,83,0,255,255,66,36,17,0,66,162, 84,133,130,143,33,136,96,2,42,16,34,2, 15,0,64,16,64,18,17,0,2,131,8,60, 192,246,8,37,33,128,72,0,5,0,54,18, 0,0,0,0,247,22,192,12,33,32,0,2, 212,0,64,16,33,16,0,0,84,133,130,143, 1,0,49,38,42,16,34,2,246,255,64,20, 0,2,16,38,84,133,130,143,33,136,96,2, 42,16,34,2,55,0,64,16,64,18,17,0, 2,131,9,60,192,246,41,37,33,152,73,0, 33,128,64,0,192,185,17,0,41,0,54,18, 0,0,0,0,2,131,2,60,33,16,80,0, 216,247,66,140,0,0,0,0,15,0,64,16, 33,32,128,2,16,0,166,39,18,0,69,150, 0,0,0,0,9,248,64,0,33,56,192,2, 8,0,64,16,0,0,0,0,2,131,2,60, 33,16,80,0,224,247,66,140,0,0,0,0, 1,0,66,36,230,19,192,8,32,1,98,174, 44,133,130,143,0,0,0,0,7,0,64,16, 3,0,8,36,3,131,2,60,33,16,87,0, 20,13,66,140,0,0,0,0,6,0,72,20, 0,0,0,0,33,32,96,2,6,23,192,12, 33,40,64,2,236,19,192,8,0,2,115,38, 17,0,66,146,0,0,0,0,255,255,66,36, 17,0,66,162,17,0,66,146,0,2,115,38, 0,2,16,38,84,133,130,143,1,0,49,38, 42,16,34,2,208,255,64,20,128,0,247,38, 254,255,2,36,4,0,194,23,33,32,160,2, 33,40,64,2,47,16,192,12,33,48,128,2, 17,0,66,146,0,0,0,0,135,0,64,16, 33,32,64,2,22,19,192,8,0,0,0,0, 26,0,194,23,0,0,0,0,36,133,130,143, 0,0,0,0,11,0,64,16,33,32,160,2, 9,0,192,18,1,0,9,36,17,0,73,162, 2,131,4,60,192,246,132,36,6,23,192,12, 33,40,64,2,121,0,64,16,33,16,0,0, 33,32,160,2,33,40,64,2,47,16,192,12, 33,48,128,2,36,133,130,143,0,0,0,0, 110,0,64,16,33,32,64,2,111,0,192,22, 1,0,2,36,130,20,192,8,0,0,0,0, 89,0,214,19,64,130,30,0,2,131,2,60, 33,16,80,0,216,247,66,140,0,0,0,0, 18,0,64,16,33,32,128,2,16,0,166,39, 18,0,69,150,0,0,0,0,9,248,64,0, 33,56,192,2,11,0,64,16,33,32,64,2, 2,131,8,60,192,246,8,37,2,131,2,60, 33,16,80,0,224,247,66,140,33,24,8,2, 1,0,66,36,32,1,98,172,130,20,192,8, 17,0,128,160,36,133,130,143,0,0,0,0, 44,0,64,16,0,0,0,0,42,0,192,19, 0,0,0,0,40,0,192,18,64,18,30,0, 2,131,9,60,192,246,41,37,33,128,73,0, 247,22,192,12,33,32,0,2,69,0,64,16, 33,16,0,0,2,131,4,60,247,22,192,12, 192,246,132,36,57,0,64,16,2,0,2,36, 17,0,66,162,44,133,130,143,0,0,0,0, 7,0,64,16,192,17,30,0,3,131,1,60, 33,8,34,0,20,13,34,140,3,0,8,36, 6,0,72,20,0,0,0,0,33,32,0,2, 6,23,192,12,33,40,64,2,91,20,192,8, 0,0,0,0,17,0,66,146,0,0,0,0, 255,255,66,36,17,0,66,162,17,0,66,146, 2,131,4,60,192,246,132,36,6,23,192,12, 33,40,64,2,22,19,192,8,0,0,0,0, 44,133,130,143,0,0,0,0,7,0,64,16, 192,17,30,0,3,131,1,60,33,8,34,0, 20,13,34,140,3,0,9,36,22,0,73,20, 0,0,0,0,1,0,8,36,17,0,72,162, 64,34,30,0,2,131,9,60,192,246,41,37, 33,32,137,0,18,19,192,8,33,40,64,2, 36,133,130,143,0,0,0,0,10,0,64,16, 0,0,0,0,8,0,192,19,1,0,8,36, 17,0,72,162,2,131,4,60,192,246,132,36, 18,19,192,8,33,40,64,2,133,20,192,8, 33,16,0,0,17,0,64,162,33,32,64,2, 152,21,192,12,0,0,0,0,1,0,2,36, 52,0,64,16,0,0,0,0,152,0,162,142, 0,0,0,0,1,0,66,36,152,0,162,174, 156,0,162,142,168,0,163,142,1,0,66,36, 156,0,162,174,128,0,169,143,0,0,0,0, 33,24,105,0,163,20,192,8,168,0,163,174, 152,0,162,142,160,0,163,142,1,0,66,36, 1,0,99,36,152,0,162,174,160,0,163,174, 96,0,168,143,0,0,0,0,8,0,2,141, 255,255,9,36,4,0,73,16,0,0,0,0, 8,0,4,141,152,21,192,12,0,0,0,0, 120,0,168,143,112,0,169,143,1,0,8,37, 120,0,168,175,136,0,169,174,96,0,168,143, 8,128,2,52,0,0,0,165,2,0,2,165, 104,0,169,143,8,0,2,36,2,0,34,165, 4,0,40,141,96,0,169,143,104,0,168,175, 4,0,41,141,120,0,168,143,96,0,169,175, 88,0,169,143,0,0,0,0,42,16,9,1, 243,253,64,20,0,0,0,0,96,0,168,143, 44,0,163,142,120,0,168,174,104,0,169,143, 0,0,0,0,124,0,169,174,0,0,98,148, 0,0,0,0,0,16,66,48,43,0,64,16, 0,0,0,0,2,0,98,148,0,0,0,0, 39,0,64,20,0,0,0,0,0,0,2,149, 0,0,0,0,35,0,64,20,0,0,0,0, 2,0,2,149,8,0,3,36,255,255,66,48, 30,0,67,20,0,0,0,0,136,0,162,142, 0,0,0,0,12,0,66,140,0,0,0,0, 0,128,66,48,23,0,64,20,0,0,0,0, 164,0,162,142,44,0,163,142,1,0,66,36, 164,0,162,174,8,0,104,172,136,0,162,142, 0,0,0,0,8,0,2,173,44,0,163,142, 16,16,2,36,2,0,98,164,0,0,162,142, 0,0,0,0,5,0,64,20,0,0,0,0, 164,7,192,12,0,0,0,0,239,20,192,8, 0,0,0,0,8,0,162,142,0,0,0,0, 0,0,64,172,180,0,191,143,176,0,190,143, 172,0,183,143,168,0,182,143,164,0,181,143, 160,0,180,143,156,0,179,143,152,0,178,143, 148,0,177,143,144,0,176,143,8,0,224,3, 184,0,189,39,216,255,189,39,28,0,177,175, 33,136,128,0,32,0,178,175,33,144,160,0, 96,128,132,39,6,0,37,38,24,0,176,175, 104,128,144,39,36,0,191,175,31,21,192,12, 33,48,0,2,108,128,132,39,33,40,32,2, 31,21,192,12,33,48,0,2,10,0,64,26, 33,128,0,0,116,128,132,39,33,16,17,2, 12,0,69,144,0,0,0,0,15,63,192,12, 1,0,16,38,42,16,18,2,248,255,64,20, 0,0,0,0,124,128,132,39,15,63,192,12, 0,0,0,0,36,0,191,143,32,0,178,143, 28,0,177,143,24,0,176,143,8,0,224,3, 40,0,189,39,208,255,189,39,40,0,191,175, 2,0,162,144,0,0,163,144,1,0,167,144, 16,0,162,175,3,0,162,144,33,64,128,0, 20,0,162,175,4,0,162,144,2,131,4,60, 68,131,132,36,24,0,162,175,5,0,162,144, 33,40,0,1,32,0,166,175,33,48,96,0, 15,63,192,12,28,0,162,175,40,0,191,143, 48,0,189,39,8,0,224,3,0,0,0,0, 248,255,189,39,136,0,135,140,255,255,163,36, 12,0,160,16,33,48,224,0,255,255,5,36, 12,0,194,140,0,0,0,0,0,128,66,48, 8,0,64,20,33,16,0,0,255,255,99,36, 0,0,192,172,4,0,198,140,247,255,101,20, 0,0,0,0,136,0,134,172,33,16,224,0, 8,0,224,3,8,0,189,39,224,255,189,39, 16,0,176,175,33,128,160,0,28,0,191,175, 24,0,178,175,33,0,128,20,20,0,177,175, 84,133,130,143,80,133,131,143,0,0,0,0, 35,16,67,0,17,0,2,162,80,133,145,143, 84,133,130,143,0,0,0,0,42,16,34,2, 19,0,64,16,64,18,17,0,2,131,3,60, 192,246,99,36,33,144,67,0,33,32,64,2, 6,23,192,12,33,40,0,2,6,0,64,20, 0,0,0,0,17,0,2,146,0,0,0,0, 255,255,66,36,17,0,2,162,17,0,2,146, 84,133,130,143,1,0,49,38,42,16,34,2, 242,255,64,20,0,2,82,38,17,0,2,146, 144,21,192,8,0,0,0,0,36,133,130,143, 0,0,0,0,25,0,64,16,1,0,2,36, 0,0,130,140,0,0,0,0,20,0,64,16, 2,0,2,36,17,0,2,162,6,23,192,12, 33,40,0,2,19,0,64,16,33,16,0,0, 2,131,4,60,192,246,132,36,6,23,192,12, 33,40,0,2,7,0,64,20,0,0,0,0, 17,0,2,146,0,0,0,0,255,255,66,36, 17,0,2,162,17,0,2,146,0,0,0,0, 144,21,192,8,1,0,2,36,1,0,2,36, 17,0,2,162,6,23,192,12,33,40,0,2, 28,0,191,143,24,0,178,143,20,0,177,143, 16,0,176,143,8,0,224,3,32,0,189,39, 0,0,0,0,0,0,0,0,0,129,9,52, 16,0,130,144,2,131,3,60,192,246,99,36, 64,18,2,0,33,56,67,0,140,0,230,140, 0,1,8,36,4,0,197,140,0,0,131,140, 0,0,128,172,12,0,137,172,4,0,164,172, 12,0,200,172,33,48,160,0,216,0,226,140, 33,40,128,0,1,0,66,36,0,128,99,48, 4,0,96,20,216,0,226,172,4,0,132,140, 161,21,192,8,0,0,0,0,8,0,224,3, 140,0,230,172,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,8,0,224,3,0,0,0,0, 172,0,128,172,176,0,128,172,180,0,128,172, 184,0,128,172,188,0,128,172,192,0,128,172, 196,0,128,172,200,0,128,172,204,0,128,172, 208,0,128,172,212,0,128,172,224,0,128,172, 8,1,128,172,4,1,128,172,236,0,128,172, 240,0,128,172,232,0,128,172,244,0,128,172, 8,0,224,3,248,0,128,172,224,255,189,39, 16,0,176,175,33,128,128,0,20,0,177,175, 0,2,17,36,24,0,191,175,13,8,192,12, 0,48,4,36,255,31,3,60,255,255,99,52, 33,32,0,0,36,16,67,0,0,128,3,60, 37,40,67,0,33,24,160,0,0,128,6,52, 1,0,132,36,24,0,98,36,0,0,96,164, 2,0,102,164,4,0,98,172,33,24,64,0, 42,16,145,0,249,255,64,20,1,0,132,36, 255,255,132,36,64,16,17,0,33,16,81,0, 192,16,2,0,33,16,69,0,48,0,163,36, 236,255,69,172,108,0,3,174,104,0,3,174, 96,0,5,174,100,0,2,174,24,0,191,143, 20,0,177,143,16,0,176,143,8,0,224,3, 32,0,189,39,248,255,189,39,0,32,14,60, 4,0,177,175,7,0,17,60,0,0,176,175, 4,0,16,60,2,131,25,60,192,246,57,39, 0,1,15,36,108,0,152,140,104,0,137,140, 176,0,140,140,180,0,141,140,94,0,56,17, 0,0,0,0,4,0,43,141,0,0,0,0, 37,16,110,1,0,0,66,148,0,0,0,0, 0,128,66,48,86,0,64,16,37,16,46,1, 0,0,67,140,0,0,0,0,36,16,113,0, 76,0,80,20,0,32,98,48,41,0,64,20, 15,0,98,48,188,0,130,140,0,0,0,0, 1,0,66,36,188,0,130,172,0,8,98,48, 6,0,64,16,0,4,98,48,192,0,130,140, 0,0,0,0,1,0,66,36,192,0,130,172, 0,4,98,48,6,0,64,16,0,2,98,48, 196,0,130,140,0,0,0,0,1,0,66,36, 196,0,130,172,0,2,98,48,6,0,64,16, 0,1,98,48,200,0,130,140,0,0,0,0, 1,0,66,36,200,0,130,172,0,1,98,48, 6,0,64,16,32,0,98,48,204,0,130,140, 0,0,0,0,1,0,66,36,204,0,130,172, 32,0,98,48,6,0,64,16,15,0,98,48, 208,0,130,140,0,0,0,0,1,0,66,36, 208,0,130,172,15,0,98,48,212,0,131,140, 8,0,37,141,33,24,98,0,212,0,131,172, 17,0,162,144,1,0,140,37,255,255,66,36, 17,0,162,160,25,0,64,20,37,24,46,1, 16,0,162,144,1,0,173,37,64,18,2,0, 33,64,89,0,140,0,7,141,0,129,10,52, 4,0,230,140,0,0,163,140,0,0,160,172, 12,0,170,172,4,0,197,172,12,0,239,172, 33,56,192,0,216,0,2,141,33,48,160,0, 1,0,66,36,0,128,99,48,4,0,96,20, 216,0,2,173,4,0,165,140,114,22,192,8, 0,0,0,0,140,0,7,173,37,24,46,1, 0,128,2,60,0,0,98,172,40,22,192,8, 33,72,96,1,104,0,137,172,176,0,140,172, 180,0,141,172,4,0,177,143,0,0,176,143, 8,0,224,3,8,0,189,39,224,255,189,39, 16,0,176,175,33,128,128,0,24,0,191,175, 20,0,177,175,44,0,17,142,0,0,0,0, 0,0,34,150,0,0,0,0,0,32,66,48, 89,0,64,16,0,0,0,0,2,0,34,150, 0,0,0,0,0,1,66,48,84,0,64,20, 0,0,0,0,27,22,192,12,0,0,0,0, 104,0,4,142,0,0,0,0,2,0,130,148, 0,128,3,52,255,255,66,48,75,0,67,16, 0,0,0,0,224,0,2,142,0,0,0,0, 1,0,66,36,224,0,2,174,4,0,36,174, 0,0,128,164,4,0,130,140,0,0,0,0, 0,0,64,164,0,0,2,142,0,0,0,0, 51,0,64,16,0,33,2,36,2,0,34,150, 0,0,0,0,47,0,64,16,0,33,2,36, 0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0, 2,0,34,150,0,0,0,0,211,255,64,20, 0,33,2,36,2,0,34,166,0,0,2,142, 0,0,0,0,5,0,64,16,0,0,0,0, 8,0,2,142,0,0,0,0,242,22,192,8, 0,0,64,172,164,7,192,12,0,0,0,0, 24,0,191,143,20,0,177,143,16,0,176,143, 8,0,224,3,32,0,189,39,108,0,133,140, 0,0,0,0,4,0,162,140,0,0,0,0, 4,0,67,140,104,0,130,140,0,0,0,0, 5,0,98,20,33,16,160,0,184,0,131,140, 33,16,0,0,1,0,99,36,184,0,131,172, 8,0,224,3,0,0,0,0,224,255,189,39, 16,0,176,175,33,128,128,0,28,0,191,175, 24,0,178,175,20,0,177,175,108,0,18,142, 8,1,6,142,44,0,17,142,4,0,66,142, 104,0,7,142,4,0,66,140,18,0,163,148, 172,0,4,142,0,0,0,0,6,0,71,20, 255,255,99,48,184,0,3,142,33,16,0,0, 1,0,99,36,157,23,192,8,184,0,3,174, 33,48,195,0,1,0,130,36,172,0,2,174, 8,1,6,174,8,0,162,140,4,1,3,142, 0,0,70,144,33,32,64,2,8,0,69,174, 12,0,64,174,1,0,194,48,2,0,64,16, 1,0,98,36,4,1,2,174,0,0,2,142, 0,0,0,0,35,0,64,20,0,0,0,0, 18,0,162,148,0,0,0,0,255,255,66,48, 12,0,66,174,0,0,34,150,0,0,0,0, 0,32,66,48,24,0,64,16,12,0,2,36, 2,0,34,150,0,0,0,0,0,1,66,48, 19,0,64,20,12,0,2,36,4,0,242,16, 0,0,0,0,27,22,192,12,33,32,0,2, 12,0,2,36,2,0,66,166,104,0,4,142, 0,0,0,0,0,0,128,164,4,0,130,140, 0,0,0,0,0,0,64,164,0,33,2,36, 4,0,36,174,164,7,192,12,2,0,34,166, 154,23,192,8,0,0,0,0,154,23,192,8, 2,0,130,164,0,0,34,150,0,0,0,0, 0,32,66,48,69,0,64,16,12,0,2,36, 4,0,242,16,0,0,0,0,27,22,192,12, 33,32,0,2,12,0,2,36,2,0,66,166, 104,0,4,142,0,0,0,0,0,0,128,164, 4,0,130,140,0,0,0,0,0,0,64,164, 4,0,36,174,2,0,34,150,0,0,0,0, 47,0,64,16,0,33,2,36,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,2,0,34,150, 0,0,0,0,211,255,64,20,0,33,2,36, 2,0,34,166,8,0,2,142,0,0,0,0, 154,23,192,8,0,0,64,172,2,0,66,166, 4,0,67,142,1,0,2,36,108,0,3,174, 28,0,191,143,24,0,178,143,20,0,177,143, 16,0,176,143,8,0,224,3,32,0,189,39, 216,255,189,39,20,0,177,175,33,136,128,0, 24,0,178,175,2,131,18,60,192,131,82,38, 28,0,179,175,0,1,19,36,32,0,191,175, 16,0,176,175,104,0,48,142,108,0,34,142, 0,0,0,0,4,0,2,22,0,0,0,0, 2,0,2,150,245,23,192,8,0,0,0,0, 2,0,2,150,0,0,0,0,7,0,66,48, 11,0,64,20,33,40,64,2,2,131,4,60, 160,131,132,36,2,131,7,60,252,131,231,36, 15,63,192,12,0,2,6,36,1,0,4,36, 33,40,64,2,188,7,192,12,0,2,6,36, 2,0,2,150,4,0,3,36,7,0,66,48, 40,0,67,20,0,128,2,52,8,0,3,142, 0,0,0,0,17,0,98,144,0,0,0,0, 255,255,66,36,17,0,98,160,17,0,98,144, 0,0,0,0,30,0,64,20,0,128,2,52, 180,0,34,142,33,32,96,0,1,0,66,36, 180,0,34,174,16,0,130,144,2,131,3,60, 192,246,99,36,64,18,2,0,33,56,67,0, 140,0,230,140,0,129,8,52,4,0,197,140, 0,0,131,140,0,0,128,172,12,0,136,172, 4,0,164,172,12,0,211,172,33,48,160,0, 216,0,226,140,33,40,128,0,1,0,66,36, 0,128,99,48,4,0,96,20,216,0,226,172, 4,0,132,140,223,23,192,8,0,0,0,0, 140,0,230,172,0,128,2,52,2,0,2,166, 0,0,0,166,4,0,16,142,174,23,192,8, 0,0,0,0,44,0,35,142,104,0,48,174, 0,0,98,148,0,0,0,0,0,32,66,52, 0,0,98,164,32,0,191,143,28,0,179,143, 24,0,178,143,20,0,177,143,16,0,176,143, 8,0,224,3,40,0,189,39,0,163,2,60, 0,1,66,52,0,0,66,140,2,131,3,60, 192,6,99,36,255,3,66,48,60,0,66,36, 0,128,66,52,8,0,224,3,0,0,98,172, 208,255,189,39,28,0,177,175,33,136,128,0, 32,0,178,175,33,144,160,0,24,0,176,175, 0,163,16,60,0,163,2,60,164,1,66,140, 0,1,16,54,44,0,191,175,40,0,180,175, 4,0,64,20,36,0,179,175,60,0,2,36, 0,163,1,60,164,1,34,172,0,163,2,60, 164,1,66,140,0,0,0,0,221,5,66,40, 3,0,64,20,220,5,2,36,0,163,1,60, 164,1,34,172,0,163,3,60,164,1,99,140, 255,255,2,36,21,0,98,20,0,0,0,0, 128,128,130,143,0,0,0,0,5,0,67,20, 2,0,5,36,130,11,192,12,0,0,0,0, 128,128,130,175,2,0,5,36,10,0,6,36, 128,128,132,143,0,131,7,60,8,96,231,36, 156,11,192,12,16,0,160,175,0,0,2,142, 2,131,3,60,192,6,99,36,255,3,66,48, 66,24,192,8,64,0,66,36,0,163,2,60, 164,1,66,140,2,131,3,60,192,6,99,36, 0,128,66,52,0,0,98,172,255,31,4,60, 255,255,132,52,2,131,2,60,208,6,66,36, 36,16,68,0,0,160,5,60,37,16,69,0, 2,131,3,60,176,12,99,36,2,131,1,60, 196,6,32,172,2,131,1,60,200,6,34,172, 12,0,2,36,0,0,96,164,2,131,1,60, 178,12,34,164,6,0,65,6,36,16,100,0, 37,16,69,0,2,131,1,60,180,12,34,172, 99,24,192,8,255,31,18,60,2,131,2,60, 178,12,66,148,0,0,0,0,0,128,66,52, 2,131,1,60,178,12,34,164,255,31,18,60, 255,255,82,54,2,131,2,60,192,6,66,36, 36,16,82,0,0,160,20,60,37,16,84,0, 2,131,1,60,184,12,34,172,2,131,1,60, 188,12,32,172,44,0,34,142,0,0,0,0, 0,0,66,148,2,131,19,60,176,12,115,38, 0,32,66,48,15,0,64,20,33,40,0,0, 2,131,4,60,160,131,132,36,2,131,16,60, 192,131,16,38,33,40,0,2,2,131,7,60, 24,132,231,36,15,63,192,12,71,2,6,36, 1,0,4,36,33,40,0,2,188,7,192,12, 71,2,6,36,33,40,0,0,33,48,0,0, 36,16,114,2,44,0,35,142,37,16,84,0, 4,0,98,172,44,0,36,142,208,7,7,36, 129,67,192,12,2,0,132,36,12,0,64,20, 0,0,0,0,44,0,34,142,0,0,0,0, 2,0,69,148,2,131,4,60,15,63,192,12, 56,132,132,36,255,255,4,36,2,131,5,60, 192,131,165,36,188,7,192,12,79,2,6,36, 44,0,34,142,0,33,3,36,2,0,67,164, 8,0,34,142,0,0,0,0,0,0,64,172, 44,0,191,143,40,0,180,143,36,0,179,143, 32,0,178,143,28,0,177,143,24,0,176,143, 8,0,224,3,48,0,189,39,232,255,189,39, 128,128,132,143,0,128,2,52,16,0,191,175, 2,131,1,60,3,0,128,4,178,12,34,164, 177,11,192,12,0,0,0,0,16,0,191,143, 24,0,189,39,8,0,224,3,0,0,0,0, 8,0,224,3,0,0,0,0,0,0,0,0, 0,0,0,0,240,255,2,52,2,131,1,60, 33,8,34,0,208,12,32,172,240,255,66,36, 251,255,65,4,0,0,0,0,2,131,2,60, 208,12,66,36,0,163,1,60,12,1,32,172, 0,163,1,60,212,5,34,172,1,0,2,60, 148,133,128,175,144,133,128,175,0,163,1,60, 8,0,224,3,216,5,34,172,0,0,136,148, 4,0,138,148,1,0,2,49,34,0,64,20, 2,0,137,148,0,25,10,0,38,24,106,0, 38,24,105,0,240,255,99,48,2,131,15,60, 208,12,239,37,33,40,111,0,68,133,142,143, 128,0,3,36,0,0,162,140,4,0,171,148, 23,0,64,16,43,16,194,1,9,0,64,16, 6,0,172,148,7,0,11,21,8,0,173,148, 5,0,44,21,0,0,0,0,3,0,77,21, 10,0,162,148,8,0,224,3,0,0,0,0, 255,255,99,36,10,0,96,16,240,255,165,36, 43,16,175,0,238,255,64,16,0,0,162,140, 248,127,229,37,248,127,165,36,218,24,192,8, 0,0,162,140,8,0,224,3,254,255,2,36, 8,0,224,3,255,255,2,36,8,0,224,3, 0,0,0,0,0,0,136,148,68,133,142,143, 1,0,2,49,53,0,64,20,2,0,137,148, 0,131,2,60,4,0,138,148,12,1,89,140, 0,25,10,0,38,24,106,0,38,24,105,0, 240,255,99,48,2,131,15,60,208,12,239,37, 33,56,111,0,128,0,3,36,0,0,248,140, 4,0,235,148,43,16,216,1,14,0,64,16, 6,0,236,148,24,0,11,21,8,0,237,148, 22,0,44,21,255,127,2,60,20,0,77,21, 255,255,66,52,43,16,2,3,2,0,64,16, 33,16,198,1,0,0,226,172,10,0,229,164, 8,0,224,3,0,0,2,36,3,0,0,23, 1,0,57,35,0,131,2,60,12,1,89,172, 33,16,198,1,0,0,226,172,10,0,229,164, 4,0,232,164,6,0,233,164,8,0,234,164, 8,0,224,3,1,0,2,36,255,255,99,36, 11,0,96,16,0,0,0,0,240,255,231,36, 43,16,239,0,221,255,64,16,0,0,248,140, 248,127,231,37,248,127,231,36,8,25,192,8, 0,0,248,140,8,0,224,3,0,0,2,36, 144,133,130,143,0,0,0,0,1,0,66,32, 144,133,130,175,8,0,224,3,255,255,2,36, 8,0,224,3,0,0,0,0,164,128,130,143, 0,0,0,0,7,0,130,20,232,255,189,39, 160,128,130,143,2,131,3,60,208,12,99,36, 0,17,2,0,108,25,192,8,33,16,67,0, 42,16,130,0,3,0,64,16,255,255,2,36, 164,128,128,175,160,128,130,175,164,128,130,143, 160,128,131,143,35,48,130,0,1,0,101,36, 0,16,162,40,25,0,64,16,0,25,5,0, 68,133,135,143,2,131,2,60,33,16,67,0, 208,12,66,140,0,0,0,0,43,16,226,0, 4,0,64,16,0,0,0,0,255,255,198,36, 6,0,192,16,0,16,162,40,1,0,165,36, 0,16,162,40,243,255,64,20,16,0,99,36, 0,16,162,40,7,0,64,16,0,25,5,0, 2,131,2,60,208,12,66,36,160,128,133,175, 164,128,132,175,108,25,192,8,33,16,98,0, 33,16,0,0,255,255,3,36,164,128,128,175, 160,128,131,175,8,0,224,3,24,0,189,39, 0,0,0,0,0,0,0,0,24,255,189,39, 228,0,191,175,224,0,190,175,220,0,183,175, 216,0,182,175,212,0,181,175,208,0,180,175, 204,0,179,175,200,0,178,175,196,0,177,175, 192,0,176,175,44,28,192,12,0,0,0,0, 176,128,132,39,15,63,192,12,1,0,17,36, 24,0,176,39,164,68,192,12,33,32,0,2, 24,0,162,131,0,0,0,0,137,25,192,8, 32,0,8,36,0,0,2,130,32,0,8,36, 253,255,72,16,1,0,16,38,255,255,16,38, 9,0,8,36,249,255,72,16,1,0,16,38, 255,255,16,38,0,0,2,146,0,0,0,0, 208,255,66,36,10,0,66,44,27,0,64,16, 33,32,0,2,33,40,0,0,212,68,192,12, 33,48,0,0,0,0,3,146,0,0,0,0, 208,255,99,36,10,0,99,44,9,0,96,16, 33,136,64,0,1,0,16,38,0,0,2,146, 0,0,0,0,208,255,66,36,10,0,66,44, 251,255,64,20,1,0,16,38,255,255,16,38, 0,0,2,130,32,0,8,36,253,255,72,16, 1,0,16,38,255,255,16,38,9,0,8,36, 249,255,72,16,1,0,16,38,255,255,16,38, 0,0,2,130,0,0,3,146,0,0,0,0, 22,0,64,16,104,0,180,39,32,0,8,36, 19,0,72,16,9,0,8,36,17,0,72,16, 32,0,5,36,9,0,4,36,208,255,98,36, 10,0,66,44,12,0,64,20,0,0,0,0, 1,0,16,38,0,0,131,162,0,0,2,130, 0,0,3,146,0,0,0,0,5,0,64,16, 1,0,148,38,3,0,69,16,0,0,0,0, 243,255,68,20,208,255,98,36,0,0,128,162, 104,0,180,39,0,0,2,130,32,0,8,36, 253,255,72,16,1,0,16,38,255,255,16,38, 9,0,8,36,249,255,72,16,1,0,16,38, 255,255,16,38,33,240,0,2,0,0,196,131, 0,0,0,0,32,69,192,12,144,0,190,175, 11,0,64,16,33,32,192,3,33,40,0,0, 212,68,192,12,33,48,0,0,33,152,64,0, 33,32,192,3,33,40,0,0,44,69,192,12, 16,0,6,36,232,25,192,8,33,144,64,0, 255,255,18,36,255,255,19,36,0,0,3,130, 0,0,2,146,0,0,0,0,17,0,96,16, 32,0,8,36,15,0,104,16,1,0,16,38, 255,255,16,38,32,0,4,36,0,22,2,0, 3,22,2,0,9,0,8,36,8,0,72,16, 0,0,0,0,1,0,16,38,0,0,3,130, 0,0,2,146,3,0,96,16,0,0,0,0, 246,255,100,20,0,22,2,0,0,0,2,130, 32,0,8,36,253,255,72,16,1,0,16,38, 255,255,16,38,9,0,8,36,249,255,72,16, 1,0,16,38,255,255,16,38,33,184,0,2, 33,32,224,2,33,40,0,0,212,68,192,12, 33,48,0,0,33,32,224,2,33,40,0,0, 16,0,6,36,44,69,192,12,33,176,64,0, 0,0,227,130,0,0,0,0,15,0,96,16, 33,168,64,0,32,0,8,36,12,0,104,16, 32,0,3,36,0,0,2,130,9,0,8,36, 8,0,72,16,0,0,0,0,1,0,16,38, 0,0,2,130,0,0,0,0,3,0,64,16, 0,0,0,0,248,255,67,20,0,0,0,0, 0,0,131,130,0,0,0,0,121,0,98,44, 244,1,64,16,128,16,3,0,2,131,1,60, 33,8,34,0,160,138,34,140,0,0,0,0, 8,0,64,0,0,0,0,0,1,0,131,130, 104,0,2,36,26,0,98,16,105,0,98,40, 7,0,64,16,116,0,2,36,34,0,96,16, 98,0,2,36,11,0,98,16,0,0,0,0, 26,28,192,8,0,0,0,0,5,0,98,16, 119,0,8,36,27,0,104,16,33,16,32,2, 26,28,192,8,0,0,0,0,4,162,2,60, 33,144,66,2,2,0,130,130,0,0,0,0, 214,1,64,20,0,0,0,0,2,131,4,60, 108,132,132,36,0,0,70,146,82,26,192,8, 0,0,0,0,2,0,130,130,0,0,0,0, 205,1,64,20,0,0,0,0,2,131,4,60, 120,132,132,36,0,0,70,150,0,0,0,0, 15,63,192,12,33,40,64,2,125,25,192,8, 0,0,0,0,33,16,32,2,37,255,64,16, 255,255,49,38,0,0,80,142,2,131,4,60, 132,132,132,36,33,40,64,2,4,0,82,38, 15,63,192,12,33,48,0,2,33,16,32,2, 247,255,64,20,255,255,49,38,125,25,192,8, 0,0,0,0,1,0,131,130,104,0,2,36, 23,0,98,16,105,0,98,40,7,0,64,16, 116,0,2,36,25,0,96,16,98,0,2,36, 11,0,98,16,0,0,0,0,26,28,192,8, 0,0,0,0,5,0,98,16,119,0,8,36, 17,0,104,16,0,0,0,0,26,28,192,8, 0,0,0,0,4,162,2,60,33,144,66,2, 2,0,130,130,0,0,0,0,158,1,64,20, 0,0,0,0,125,25,192,8,0,0,85,162, 2,0,130,130,0,0,0,0,152,1,64,20, 0,0,0,0,125,25,192,8,0,0,85,166, 125,25,192,8,0,0,85,174,0,163,16,60, 31,163,17,60,255,255,49,54,0,0,2,142, 0,0,0,0,4,0,82,20,0,0,0,0, 180,128,132,39,15,63,192,12,33,40,0,2, 4,0,16,38,43,16,48,2,246,255,64,16, 0,0,0,0,125,25,192,8,0,0,0,0, 33,16,32,2,228,254,64,16,255,255,49,38, 33,32,96,2,164,32,192,12,33,40,192,2, 33,16,32,2,251,255,64,20,255,255,49,38, 125,25,192,8,0,0,0,0,1,0,130,130, 0,0,0,0,117,1,64,20,33,32,32,2, 133,29,192,12,33,40,96,2,125,25,192,8, 0,0,0,0,33,32,96,2,33,40,32,2, 234,31,192,12,33,48,192,2,125,25,192,8, 0,0,0,0,1,0,130,130,0,0,0,0, 103,1,64,20,33,16,32,2,200,254,64,16, 255,255,49,38,33,32,96,2,33,40,192,2, 182,29,192,12,33,48,0,2,33,16,32,2, 250,255,64,20,255,255,49,38,125,25,192,8, 0,0,0,0,33,32,32,2,33,40,96,2, 33,48,192,2,38,30,192,12,33,56,0,2, 125,25,192,8,0,0,0,0,5,162,2,60, 0,0,69,144,2,131,4,60,15,63,192,12, 144,132,132,36,125,25,192,8,0,0,0,0, 0,163,1,60,20,1,32,172,14,0,32,18, 33,128,0,0,164,7,192,12,1,0,16,38, 143,63,192,12,0,0,0,0,143,63,192,12, 0,0,0,0,143,63,192,12,0,0,0,0, 143,63,192,12,0,0,0,0,43,16,17,2, 244,255,64,20,0,0,0,0,184,63,192,12, 0,0,0,0,0,163,16,60,20,1,16,142, 0,0,0,0,7,0,17,22,33,40,32,2, 2,131,4,60,164,132,132,36,15,63,192,12, 33,40,32,2,125,25,192,8,0,0,0,0, 2,131,4,60,188,132,132,36,15,63,192,12, 33,48,0,2,125,25,192,8,0,0,0,0, 0,0,226,130,7,162,8,60,16,0,64,16, 33,144,72,2,33,16,32,2,134,254,64,16, 255,255,49,38,0,0,85,174,2,131,4,60, 132,132,132,36,33,40,64,2,15,63,192,12, 33,48,160,2,4,0,82,38,33,16,32,2, 247,255,64,20,255,255,49,38,125,25,192,8, 0,0,0,0,33,16,32,2,119,254,64,16, 255,255,49,38,0,0,80,142,2,131,4,60, 132,132,132,36,33,40,64,2,4,0,82,38, 15,63,192,12,33,48,0,2,33,16,32,2, 247,255,64,20,255,255,49,38,125,25,192,8, 0,0,0,0,7,162,16,60,64,0,17,38, 2,131,4,60,228,132,132,36,33,40,0,2, 0,0,6,142,0,0,0,0,15,63,192,12, 4,0,16,38,42,16,17,2,247,255,64,20, 7,162,8,60,128,0,16,37,176,0,17,37, 2,131,4,60,228,132,132,36,33,40,0,2, 0,0,6,142,0,0,0,0,15,63,192,12, 4,0,16,38,42,16,17,2,247,255,64,20, 7,162,8,60,192,0,16,37,240,0,17,37, 2,131,4,60,228,132,132,36,33,40,0,2, 0,0,6,142,0,0,0,0,15,63,192,12, 4,0,16,38,42,16,17,2,247,255,64,20, 0,0,0,0,125,25,192,8,0,0,0,0, 1,0,130,130,0,0,0,0,222,0,64,20, 33,16,32,2,63,254,64,16,255,255,49,38, 33,32,96,2,213,29,192,12,33,40,160,2, 33,16,32,2,251,255,64,20,255,255,49,38, 125,25,192,8,0,0,0,0,1,0,130,130, 0,0,0,0,208,0,64,20,33,16,32,2, 49,254,64,16,255,255,49,38,33,32,96,2, 161,31,192,12,33,40,192,2,33,16,32,2, 251,255,64,20,255,255,49,38,125,25,192,8, 0,0,0,0,33,16,32,2,38,254,64,16, 255,255,49,38,208,32,192,12,33,32,0,0, 33,32,0,0,164,32,192,12,33,40,0,0, 40,29,192,12,0,0,0,0,133,29,192,12, 255,255,4,36,33,16,32,2,245,255,64,20, 255,255,49,38,125,25,192,8,0,0,0,0, 1,0,131,130,87,0,2,36,27,0,98,16, 88,0,98,40,7,0,64,16,114,0,2,36, 37,0,96,16,82,0,2,36,9,0,98,16, 0,0,0,0,125,25,192,8,0,0,0,0, 5,0,98,16,119,0,8,36,15,0,104,16, 0,0,0,0,125,25,192,8,0,0,0,0, 2,0,130,130,0,0,0,0,159,0,64,20, 0,0,0,0,60,65,192,12,33,32,96,2, 184,128,132,39,33,40,96,2,15,63,192,12, 33,48,64,0,125,25,192,8,0,0,0,0, 2,0,130,130,0,0,0,0,147,0,64,20, 33,32,96,2,162,65,192,12,33,40,160,2, 242,253,64,20,33,40,160,2,2,131,4,60, 8,133,132,36,15,63,192,12,33,48,96,2, 125,25,192,8,0,0,0,0,33,16,32,2, 233,253,64,16,255,255,49,38,40,29,192,12, 0,0,0,0,33,16,32,2,252,255,64,20, 255,255,49,38,125,25,192,8,0,0,0,0, 1,0,133,130,87,0,2,36,29,0,162,16, 88,0,162,40,5,0,64,16,82,0,2,36, 11,0,162,16,33,16,32,2,125,25,192,8, 0,0,0,0,114,0,2,36,5,0,162,16, 119,0,8,36,19,0,168,16,33,32,64,2, 125,25,192,8,0,0,0,0,33,16,32,2, 206,253,64,16,255,255,49,38,168,69,192,12, 33,32,64,2,184,128,132,39,33,40,64,2, 15,63,192,12,33,48,64,0,1,0,82,38, 33,16,32,2,247,255,64,20,255,255,49,38, 125,25,192,8,0,0,0,0,33,32,64,2, 29,70,192,12,33,40,160,2,189,253,64,20, 33,40,160,2,2,131,4,60,40,133,132,36, 15,63,192,12,33,48,64,2,125,25,192,8, 0,0,0,0,144,0,164,143,122,28,192,12, 0,0,0,0,125,25,192,8,0,0,0,0, 33,16,96,2,175,253,64,16,255,255,115,38, 143,63,192,12,0,0,0,0,33,16,96,2, 252,255,64,20,255,255,115,38,125,25,192,8, 0,0,0,0,33,16,32,2,165,253,64,16, 255,255,49,38,33,32,96,2,208,32,192,12, 33,40,192,2,33,16,32,2,251,255,64,20, 255,255,49,38,125,25,192,8,0,0,0,0, 1,0,130,146,0,0,0,0,159,255,66,36, 0,22,2,0,3,30,2,0,24,0,98,44, 27,0,64,16,128,16,3,0,2,131,1,60, 33,8,34,0,136,140,34,140,0,0,0,0, 8,0,64,0,0,0,0,0,12,33,192,12, 33,32,64,2,125,25,192,8,0,0,0,0, 15,33,192,12,33,32,96,2,125,25,192,8, 0,0,0,0,18,33,192,12,33,32,96,2, 125,25,192,8,0,0,0,0,22,33,192,12, 33,32,96,2,125,25,192,8,0,0,0,0, 25,33,192,12,33,32,64,2,125,25,192,8, 0,0,0,0,33,32,64,2,7,33,192,12, 33,40,192,2,125,25,192,8,0,0,0,0, 16,0,182,175,33,32,32,2,33,40,192,3, 33,48,224,2,161,33,192,12,33,56,160,2, 125,25,192,8,0,0,0,0,33,136,0,0, 2,131,4,60,72,133,132,36,15,63,192,12, 1,0,49,38,32,0,34,46,250,255,64,20, 0,0,0,0,125,25,192,8,0,0,0,0, 2,131,4,60,92,133,132,36,15,63,192,12, 33,40,128,2,123,25,192,8,0,0,0,0, 228,0,191,143,224,0,190,143,220,0,183,143, 216,0,182,143,212,0,181,143,208,0,180,143, 204,0,179,143,200,0,178,143,196,0,177,143, 192,0,176,143,8,0,224,3,232,0,189,39, 232,255,189,39,2,131,5,60,192,154,165,36, 20,0,191,175,16,0,176,175,0,0,162,140, 0,0,0,0,9,0,64,16,33,128,160,0, 0,0,5,142,192,128,132,39,15,63,192,12, 4,0,16,38,0,0,2,142,0,0,0,0, 249,255,64,20,0,0,0,0,20,0,191,143, 16,0,176,143,8,0,224,3,24,0,189,39, 0,0,132,144,0,0,0,0,208,255,130,36, 10,0,66,44,4,0,64,16,0,22,4,0, 3,22,2,0,89,28,192,8,208,255,66,36, 159,255,130,36,6,0,66,44,4,0,64,16, 0,22,4,0,3,22,2,0,89,28,192,8, 169,255,66,36,191,255,130,36,6,0,66,44, 3,0,64,20,0,22,4,0,89,28,192,8, 255,255,2,36,3,22,2,0,201,255,66,36, 8,0,224,3,0,0,0,0,216,255,189,39, 24,0,178,175,33,144,128,0,32,0,191,175, 28,0,179,175,20,0,177,175,16,0,176,175, 0,0,81,142,0,0,0,0,65,28,192,12, 33,32,32,2,33,24,64,0,255,255,19,36, 9,0,115,16,0,129,3,0,65,28,192,12, 1,0,36,38,33,24,64,0,4,0,115,16, 2,0,34,38,0,0,66,174,115,28,192,8, 37,16,3,2,255,255,2,36,32,0,191,143, 28,0,179,143,24,0,178,143,20,0,177,143, 16,0,176,143,8,0,224,3,40,0,189,39, 176,255,189,39,64,0,180,175,33,160,128,0, 72,0,191,175,68,0,181,175,60,0,179,175, 56,0,178,175,52,0,177,175,48,0,176,175, 0,0,130,130,0,0,0,0,53,0,64,20, 33,128,0,0,27,67,192,12,33,32,0,0, 1,0,4,36,27,67,192,12,33,128,64,0, 2,0,4,36,27,67,192,12,33,136,64,0, 33,24,64,0,255,255,2,36,5,0,2,18, 0,0,0,0,3,0,34,18,0,0,0,0, 6,0,98,20,255,255,2,52,2,131,4,60, 15,63,192,12,60,137,132,36,29,29,192,8, 0,0,0,0,5,0,2,18,0,0,0,0, 3,0,34,18,0,0,0,0,6,0,98,20, 1,0,2,50,2,131,4,60,15,63,192,12, 104,137,132,36,29,29,192,8,0,0,0,0, 6,0,64,16,255,0,5,50,2,131,4,60, 15,63,192,12,132,137,132,36,29,29,192,8, 0,0,0,0,2,131,4,60,176,137,132,36, 3,50,16,0,3,18,17,0,16,0,162,175, 255,0,98,48,20,0,162,175,3,18,3,0, 255,0,39,50,15,63,192,12,24,0,162,175, 29,29,192,8,0,0,0,0,40,0,180,175, 58,0,21,36,32,0,19,36,255,255,18,36, 32,0,177,39,40,0,162,143,0,0,0,0, 0,0,67,128,0,0,0,0,3,0,117,16, 0,0,0,0,3,0,115,20,0,0,0,0, 1,0,66,36,40,0,162,175,91,28,192,12, 40,0,164,39,33,24,64,0,75,0,114,16, 0,0,0,0,40,0,162,143,0,0,35,166, 0,0,67,128,0,0,0,0,3,0,117,16, 0,0,0,0,3,0,115,20,0,0,0,0, 1,0,66,36,40,0,162,175,91,28,192,12, 40,0,164,39,33,24,64,0,60,0,114,16, 1,0,16,38,0,0,34,150,0,26,3,0, 37,16,67,0,0,0,34,166,3,0,2,42, 220,255,64,20,2,0,49,38,32,0,165,151, 0,0,0,0,1,0,162,48,7,0,64,16, 0,0,0,0,2,131,4,60,208,137,132,36, 15,63,192,12,255,0,165,48,25,29,192,8, 0,0,0,0,36,0,162,151,0,0,0,0, 0,7,66,48,6,0,64,16,0,0,0,0, 2,131,4,60,15,63,192,12,0,138,132,36, 25,29,192,8,0,0,0,0,255,66,192,12, 33,32,0,0,1,0,4,36,34,0,165,151, 0,0,0,0,255,66,192,12,33,128,0,0, 36,0,165,151,0,0,0,0,255,66,192,12, 2,0,4,36,2,131,4,60,15,63,192,12, 32,138,132,36,2,131,4,60,80,138,132,36, 15,63,192,12,33,40,0,2,196,128,132,39, 200,128,134,39,31,21,192,12,32,0,165,39, 36,0,162,151,1,0,16,38,0,1,66,36, 36,0,162,167,8,0,2,42,7,0,64,16, 0,0,0,0,8,29,192,8,0,0,0,0, 2,131,4,60,116,138,132,36,15,63,192,12, 33,40,128,2,72,0,191,143,68,0,181,143, 64,0,180,143,60,0,179,143,56,0,178,143, 52,0,177,143,48,0,176,143,8,0,224,3, 80,0,189,39,0,0,0,0,0,0,0,0, 224,255,189,39,16,0,176,175,33,128,0,0, 20,0,177,175,33,136,0,0,24,0,191,175, 33,32,0,2,162,65,192,12,33,40,0,0, 43,0,64,16,0,0,0,0,1,0,16,38, 64,0,2,42,249,255,64,20,33,32,0,2, 33,128,0,0,85,85,17,36,33,32,0,2, 162,65,192,12,85,85,5,36,32,0,64,16, 0,0,0,0,1,0,16,38,64,0,2,42, 249,255,64,20,33,32,0,2,33,128,0,0, 170,170,17,52,33,32,0,2,162,65,192,12, 170,170,5,52,21,0,64,16,0,0,0,0, 1,0,16,38,64,0,2,42,249,255,64,20, 33,32,0,2,33,128,0,0,255,255,17,52, 33,32,0,2,162,65,192,12,255,255,5,52, 10,0,64,16,0,0,0,0,1,0,16,38, 64,0,2,42,249,255,64,20,33,32,0,2, 2,131,4,60,15,63,192,12,240,140,132,36, 101,29,192,8,0,0,0,0,60,65,192,12, 33,32,0,2,2,131,4,60,4,141,132,36, 33,40,32,2,33,48,0,2,15,63,192,12, 33,56,64,0,24,0,191,143,20,0,177,143, 16,0,176,143,8,0,224,3,32,0,189,39, 0,0,0,0,0,0,0,0,232,255,189,39, 16,0,191,175,210,7,192,12,0,0,0,0, 139,14,192,12,0,0,0,0,180,10,192,12, 0,0,0,0,32,133,132,143,1,0,2,36, 42,16,68,0,9,0,64,16,0,2,3,36, 64,34,4,0,2,131,1,60,33,8,35,0, 196,246,32,172,0,2,99,36,42,16,100,0, 250,255,64,20,0,0,0,0,16,0,191,143, 24,0,189,39,8,0,224,3,0,0,0,0, 208,255,189,39,24,0,178,175,33,144,128,0, 32,0,180,175,33,160,160,0,44,0,191,175, 40,0,182,175,36,0,181,175,28,0,179,175, 20,0,177,175,3,0,128,26,16,0,176,175, 149,29,192,8,1,0,147,38,1,0,20,36, 32,133,147,143,255,255,82,38,255,255,2,36, 20,0,66,18,255,255,21,36,2,131,22,60, 192,246,214,38,108,29,192,12,33,128,128,2, 42,16,19,2,10,0,64,16,64,18,16,0, 33,136,86,0,242,21,192,12,33,32,32,2, 133,12,192,12,33,32,0,2,1,0,16,38, 42,16,19,2,249,255,64,20,0,2,49,38, 255,255,82,38,240,255,85,22,0,0,0,0, 44,0,191,143,40,0,182,143,36,0,181,143, 32,0,180,143,28,0,179,143,24,0,178,143, 20,0,177,143,16,0,176,143,8,0,224,3, 48,0,189,39,216,255,189,39,24,0,178,175, 33,144,160,0,28,0,179,175,33,152,192,0, 32,0,191,175,20,0,177,175,3,0,128,24, 16,0,176,175,195,29,192,8,1,0,145,36, 1,0,4,36,32,133,145,143,33,128,128,0, 42,16,17,2,8,0,64,16,33,32,0,2, 33,40,64,2,250,29,192,12,33,48,96,2, 1,0,16,38,42,16,17,2,250,255,64,20, 33,32,0,2,32,0,191,143,28,0,179,143, 24,0,178,143,20,0,177,143,16,0,176,143, 8,0,224,3,40,0,189,39,224,255,189,39, 24,0,191,175,20,0,177,175,3,0,128,24, 16,0,176,175,222,29,192,8,1,0,145,36, 1,0,4,36,32,133,145,143,33,128,128,0, 42,16,17,2,7,0,64,16,0,0,0,0, 237,29,192,12,33,32,0,2,1,0,16,38, 42,16,17,2,251,255,64,20,0,0,0,0, 24,0,191,143,20,0,177,143,16,0,176,143, 8,0,224,3,32,0,189,39,64,34,4,0, 2,131,2,60,192,246,66,36,33,32,130,0, 44,0,131,140,1,0,2,36,32,0,130,172, 16,0,2,36,2,0,98,164,8,0,130,140, 0,0,0,0,8,0,224,3,0,0,64,172, 208,255,189,39,33,48,128,0,64,18,6,0, 2,131,3,60,192,246,99,36,36,0,177,175, 33,136,67,0,40,0,191,175,32,0,176,175, 4,0,34,142,0,0,0,0,4,0,64,20, 33,128,160,0,1,0,4,36,133,29,192,12, 33,40,192,0,3,0,0,30,221,5,2,42, 17,30,192,8,1,0,16,36,3,0,64,20, 33,32,32,2,220,5,16,36,33,32,32,2, 208,7,5,36,108,0,131,140,12,0,2,36, 2,0,98,164,16,0,162,39,8,0,98,172, 0,128,2,54,12,0,96,172,16,0,162,175, 255,255,2,36,20,0,162,175,2,131,2,60, 0,155,66,36,98,31,192,12,24,0,162,175, 40,0,191,143,36,0,177,143,32,0,176,143, 8,0,224,3,48,0,189,39,56,254,189,39, 160,1,176,175,33,128,192,0,48,1,164,175, 33,32,224,0,64,18,5,0,2,131,3,60, 192,246,99,36,33,16,67,0,56,1,162,175, 64,18,16,0,33,16,67,0,40,0,168,39, 196,1,191,175,192,1,190,175,188,1,183,175, 184,1,182,175,180,1,181,175,176,1,180,175, 172,1,179,175,168,1,178,175,164,1,177,175, 64,1,162,175,12,0,160,24,96,1,168,175, 32,133,131,143,0,0,0,0,42,16,163,0, 19,1,64,16,1,0,2,36,5,0,0,26, 42,16,3,2,15,1,64,16,1,0,2,36, 3,0,176,20,33,40,0,0,86,31,192,8, 1,0,2,36,212,68,192,12,33,48,0,0, 6,0,65,4,104,1,162,175,33,72,64,0, 35,72,9,0,104,1,169,175,87,30,192,8, 112,1,160,175,1,0,8,36,112,1,168,175, 1,0,4,36,133,29,192,12,33,40,0,0, 237,29,192,12,33,32,0,2,24,0,169,39, 56,1,168,143,255,0,2,36,80,1,169,175, 108,0,8,141,43,1,163,39,72,1,168,175, 0,0,98,160,255,255,66,36,253,255,65,4, 255,255,99,36,64,1,169,143,0,0,0,0, 120,0,41,141,64,1,168,143,128,1,169,175, 124,0,8,141,64,1,169,143,136,1,168,175, 44,0,34,141,0,0,0,0,12,0,64,172, 44,0,34,141,0,0,0,0,16,0,64,172, 44,0,34,141,120,1,160,175,32,0,64,172, 44,0,34,141,88,1,160,175,24,0,64,172, 48,1,168,143,0,0,0,0,168,0,0,25, 40,0,169,39,144,1,169,175,88,1,168,143, 0,0,0,0,255,0,2,49,4,0,86,36, 60,0,194,42,2,0,64,16,0,0,0,0, 60,0,22,36,104,1,169,143,0,0,0,0, 2,0,32,17,0,0,0,0,104,1,182,143, 56,1,164,143,72,1,168,143,12,0,2,36, 2,0,2,165,80,1,169,143,0,128,194,54, 8,0,9,173,12,0,0,173,0,0,34,173, 255,255,8,36,4,0,40,173,144,1,168,143, 0,0,0,0,8,0,40,173,88,1,168,143, 96,1,169,143,208,7,5,36,98,31,192,12, 0,0,40,173,0,128,5,52,0,128,6,52, 128,1,164,143,0,0,0,0,129,67,192,12, 2,0,7,36,13,0,64,20,0,0,0,0, 88,1,165,143,2,131,4,60,15,63,192,12, 64,141,132,36,120,1,169,143,0,0,0,0, 1,0,41,37,20,0,34,41,117,0,64,16, 120,1,169,175,32,31,192,8,0,0,0,0, 128,1,168,143,64,1,169,143,8,0,2,141, 255,255,8,36,136,0,53,141,0,0,0,0, 50,0,72,16,33,184,0,0,1,0,4,36, 4,0,18,36,4,0,3,36,0,0,190,142, 8,0,166,142,112,1,169,143,255,63,212,51, 30,0,32,17,33,184,244,2,42,16,116,0, 27,0,64,16,33,152,96,0,144,1,168,143, 0,0,0,0,33,136,72,2,33,128,102,0, 15,0,128,16,0,0,0,0,0,0,2,146, 0,0,35,146,0,0,0,0,10,0,67,16, 33,48,192,2,2,131,4,60,92,141,132,36, 88,1,165,143,16,0,163,175,0,0,2,146, 33,56,64,2,15,63,192,12,20,0,162,175, 33,32,0,0,1,0,115,38,1,0,16,38, 1,0,49,38,42,16,116,2,235,255,64,20, 1,0,82,38,33,24,0,0,4,0,181,142, 0,128,194,51,217,255,64,16,0,0,0,0, 128,1,169,143,0,0,0,0,8,0,34,141, 0,0,0,0,25,0,128,16,18,0,87,164, 9,0,246,18,33,48,192,2,2,131,4,60, 140,141,132,36,88,1,165,143,0,0,0,0, 15,63,192,12,33,56,224,2,5,31,192,8, 0,0,0,0,64,1,168,143,0,0,0,0, 136,0,2,141,96,1,169,143,8,0,70,140, 0,0,34,141,0,0,198,140,0,0,0,0, 7,0,194,16,0,0,0,0,88,1,165,143, 2,131,4,60,15,63,192,12,184,141,132,36, 64,1,168,143,0,0,0,0,136,0,4,141, 152,21,192,12,0,0,0,0,64,1,169,143, 0,0,0,0,136,0,53,173,128,1,168,143, 8,128,2,52,0,0,0,165,2,0,2,165, 8,0,0,173,12,0,0,165,136,1,169,143, 8,0,2,36,2,0,34,165,4,0,40,141, 128,1,169,143,136,1,168,175,4,0,41,141, 64,1,168,143,128,1,169,175,120,0,9,173, 136,1,169,143,0,0,0,0,124,0,9,173, 88,1,168,143,48,1,169,143,1,0,8,37, 42,16,9,1,91,255,64,20,88,1,168,175, 64,1,168,143,0,0,0,0,44,0,3,141, 0,0,0,0,12,0,98,140,0,0,0,0, 5,0,64,16,0,0,0,0,12,0,101,140, 2,131,4,60,15,63,192,12,212,141,132,36, 64,1,169,143,0,0,0,0,44,0,35,141, 0,0,0,0,16,0,98,140,0,0,0,0, 5,0,64,16,0,0,0,0,16,0,101,140, 2,131,4,60,15,63,192,12,240,141,132,36, 64,1,168,143,0,0,0,0,44,0,3,141, 0,0,0,0,32,0,98,140,0,0,0,0, 5,0,64,16,0,0,0,0,32,0,101,140, 2,131,4,60,15,63,192,12,16,142,132,36, 64,1,169,143,0,0,0,0,44,0,35,141, 0,0,0,0,24,0,98,140,0,0,0,0, 5,0,64,16,0,0,0,0,24,0,101,140, 2,131,4,60,15,63,192,12,48,142,132,36, 196,1,191,143,192,1,190,143,188,1,183,143, 184,1,182,143,180,1,181,143,176,1,180,143, 172,1,179,143,168,1,178,143,164,1,177,143, 160,1,176,143,8,0,224,3,200,1,189,39, 224,255,189,39,16,0,176,175,33,128,128,0, 24,0,191,175,20,0,177,175,44,0,4,142, 0,0,0,0,0,0,130,148,0,0,0,0, 0,32,66,48,7,0,64,20,33,136,160,0, 0,0,133,148,2,131,4,60,15,63,192,12, 80,142,132,36,156,31,192,8,3,0,2,36, 2,0,132,36,33,40,0,0,33,48,0,0, 129,67,192,12,33,56,32,2,13,0,64,16, 33,40,0,0,44,0,3,142,0,33,2,36, 2,0,98,164,8,0,2,142,33,48,0,0, 0,0,64,172,44,0,4,142,33,56,32,2, 129,67,192,12,2,0,132,36,9,0,64,20, 0,32,5,36,44,0,2,142,0,0,0,0, 2,0,69,148,2,131,4,60,15,63,192,12, 108,142,132,36,156,31,192,8,1,0,2,36, 44,0,4,142,0,32,6,36,129,67,192,12, 33,56,32,2,8,0,64,20,33,16,0,0, 44,0,2,142,0,0,0,0,0,0,69,148, 2,131,4,60,15,63,192,12,132,142,132,36, 2,0,2,36,24,0,191,143,20,0,177,143, 16,0,176,143,8,0,224,3,32,0,189,39, 224,255,189,39,24,0,178,175,33,144,160,0, 28,0,191,175,20,0,177,175,7,0,128,4, 16,0,176,175,24,133,130,143,0,0,0,0, 255,255,66,36,42,16,68,0,4,0,64,16, 33,136,128,0,24,133,130,143,33,32,0,0, 255,255,81,36,33,128,128,0,42,16,48,2, 7,0,64,20,33,32,0,2,193,31,192,12, 33,40,64,2,1,0,16,38,42,16,48,2, 251,255,64,16,33,32,0,2,28,0,191,143, 24,0,178,143,20,0,177,143,16,0,176,143, 8,0,224,3,32,0,189,39,8,0,224,3, 0,0,0,0,232,255,189,39,16,0,191,175, 236,63,192,12,1,16,4,36,85,0,2,36, 131,131,1,60,128,18,34,160,16,0,191,143, 24,0,189,39,8,0,224,3,0,0,0,0, 216,255,189,39,28,0,177,175,33,136,128,0, 32,0,178,175,33,144,160,0,212,128,132,39, 36,0,191,175,15,63,192,12,24,0,176,175, 9,0,64,26,33,128,0,0,0,0,37,146, 1,0,49,38,220,128,132,39,15,63,192,12, 1,0,16,38,42,16,18,2,249,255,64,20, 0,0,0,0,228,128,132,39,15,63,192,12, 0,0,0,0,36,0,191,143,32,0,178,143, 28,0,177,143,24,0,176,143,8,0,224,3, 40,0,189,39,48,255,189,39,33,56,128,0, 192,0,178,175,33,144,160,0,200,0,180,175, 33,160,192,0,255,255,226,36,6,0,66,44, 204,0,191,175,196,0,179,175,188,0,177,175, 2,0,64,20,184,0,176,175,1,0,7,36, 2,0,64,30,0,0,0,0,1,0,18,36, 2,0,128,30,64,18,7,0,60,0,20,36, 2,131,3,60,192,246,99,36,33,136,67,0, 4,0,34,142,0,0,0,0,4,0,64,20, 33,152,64,2,1,0,4,36,133,29,192,12, 33,40,224,0,255,31,4,60,255,255,132,52, 0,128,133,54,120,0,162,39,36,16,68,0, 0,160,3,60,37,16,67,0,104,0,165,175, 108,0,160,175,112,0,162,175,12,0,2,36, 80,0,160,167,82,0,162,167,80,0,162,39, 36,16,68,0,37,128,67,0,104,0,162,39, 36,16,68,0,232,128,132,143,37,16,67,0, 84,0,176,175,88,0,162,175,92,0,160,175, 5,0,128,16,4,0,2,36,82,0,162,167, 255,255,2,36,92,0,165,175,88,0,162,175, 44,0,34,142,0,0,0,0,0,0,66,148, 0,0,0,0,0,32,66,48,7,0,64,20, 33,40,0,0,255,255,4,36,2,131,5,60, 184,142,165,36,188,7,192,12,208,1,6,36, 33,40,0,0,44,0,34,142,33,48,0,0, 4,0,80,172,44,0,36,142,208,7,7,36, 129,67,192,12,2,0,132,36,12,0,64,20, 0,0,0,0,44,0,34,142,0,0,0,0, 2,0,69,148,2,131,4,60,15,63,192,12, 108,142,132,36,255,255,4,36,2,131,5,60, 184,142,165,36,188,7,192,12,216,1,6,36, 34,11,192,12,1,0,4,36,0,163,16,60, 4,1,16,142,0,163,2,60,4,1,66,140, 0,0,0,0,252,255,2,18,0,33,3,36, 44,0,34,142,0,0,0,0,2,0,67,164, 8,0,34,142,0,0,0,0,0,0,64,172, 0,163,16,60,4,1,16,142,44,0,36,142, 0,0,0,0,4,0,130,140,0,0,0,0, 0,0,66,148,0,0,0,0,0,128,66,48, 10,0,64,20,0,0,0,0,44,0,35,142, 0,0,0,0,4,0,98,140,0,0,0,0, 0,0,66,148,0,0,0,0,0,128,66,48, 250,255,64,16,0,0,0,0,255,255,115,38, 19,0,96,18,33,40,64,2,44,0,35,142, 0,0,0,0,4,0,98,140,0,0,0,0, 0,0,66,148,0,0,0,0,0,128,66,48, 229,255,64,16,0,0,0,0,4,0,98,140, 0,0,0,0,0,0,66,148,0,0,0,0, 0,128,66,48,250,255,64,20,0,0,0,0, 89,32,192,8,0,0,0,0,2,131,4,60, 200,142,132,36,33,48,128,2,0,163,3,60, 4,1,99,140,0,128,2,52,82,0,162,167, 35,128,112,0,15,63,192,12,33,56,0,2, 19,0,0,18,64,41,18,0,35,40,178,0, 128,40,5,0,33,40,178,0,192,40,5,0, 26,0,176,0,2,0,0,22,0,0,0,0, 13,0,7,0,255,255,1,36,4,0,1,22, 0,128,1,60,2,0,161,20,0,0,0,0, 13,0,6,0,18,40,0,0,236,128,132,39, 15,63,192,12,0,0,0,0,204,0,191,143, 200,0,180,143,196,0,179,143,192,0,178,143, 188,0,177,143,184,0,176,143,8,0,224,3, 208,0,189,39,224,255,189,39,20,0,177,175, 33,136,128,0,24,0,191,175,180,10,192,12, 16,0,176,175,34,11,192,12,1,0,4,36, 16,133,132,143,0,163,16,60,4,1,16,142, 193,63,192,12,0,0,0,0,0,163,2,60, 4,1,66,140,0,0,0,0,35,40,80,0, 73,252,162,36,99,0,66,44,4,0,64,16, 0,0,0,0,2,131,4,60,196,32,192,8, 0,143,132,36,5,0,160,20,0,0,0,0, 2,131,4,60,36,143,132,36,196,32,192,8, 33,40,0,0,2,131,4,60,76,143,132,36, 15,63,192,12,1,0,16,36,3,0,48,18, 0,0,0,0,34,11,192,12,33,32,0,0, 0,129,144,175,24,0,191,143,20,0,177,143, 16,0,176,143,8,0,224,3,32,0,189,39, 200,255,189,39,32,0,178,175,33,144,128,0, 33,48,64,2,44,0,181,175,1,131,21,60, 60,252,181,38,33,56,160,2,40,0,180,175, 2,131,20,60,144,143,148,38,36,0,179,175, 0,163,19,60,120,1,115,142,0,163,3,60, 120,1,99,140,32,131,2,60,48,0,191,175, 28,0,177,175,24,0,176,175,16,0,180,175, 33,32,96,2,35,136,67,0,84,64,192,12, 33,40,32,2,3,0,64,18,33,128,64,0, 10,0,0,22,0,0,0,0,16,0,180,175, 33,32,96,2,33,40,32,2,33,48,64,2, 244,63,192,12,33,56,160,2,33,128,2,2, 5,0,0,18,33,40,96,2,2,131,4,60, 168,143,132,36,252,32,192,8,33,40,96,2, 2,131,4,60,204,143,132,36,15,63,192,12, 33,48,177,0,48,0,191,143,44,0,181,143, 40,0,180,143,36,0,179,143,32,0,178,143, 28,0,177,143,24,0,176,143,8,0,224,3, 56,0,189,39,0,163,1,60,232,5,36,172, 0,163,1,60,8,0,224,3,236,5,37,172, 28,129,132,175,8,0,224,3,0,0,0,0, 16,129,132,175,8,0,224,3,0,0,0,0, 15,0,132,48,20,129,132,175,8,0,224,3, 0,0,0,0,24,129,132,175,8,0,224,3, 0,0,0,0,32,129,132,175,8,0,224,3, 0,0,0,0,33,72,128,0,33,80,160,0, 33,88,192,0,7,162,4,60,48,1,132,52, 7,162,8,60,0,1,8,53,20,129,130,143, 24,129,131,143,128,48,2,0,28,129,130,143, 3,0,197,52,2,0,96,16,0,0,130,172, 67,0,197,52,16,129,130,143,0,0,0,0, 2,0,64,16,33,24,160,0,0,1,99,52, 36,129,130,143,0,0,0,0,2,0,64,16, 0,0,0,0,0,4,99,52,32,129,130,143, 0,0,3,173,3,0,64,16,7,162,5,60, 0,0,2,173,7,162,5,60,4,1,165,52, 7,162,6,60,8,1,198,52,255,0,2,60, 255,255,66,52,7,162,3,60,12,1,99,52, 7,162,4,60,16,1,132,52,36,16,66,1, 0,0,169,172,0,0,194,172,43,16,7,0, 192,16,2,0,0,0,107,172,8,0,224,3, 0,0,130,172,7,162,3,60,40,1,99,52, 3,0,2,36,0,163,1,60,20,1,32,172, 8,0,224,3,0,0,98,172,232,255,189,39, 16,0,191,175,33,24,0,0,7,162,6,60, 40,1,198,52,15,0,4,60,63,66,132,52, 0,0,197,140,0,0,0,0,16,0,162,48, 7,0,64,20,1,0,99,36,42,16,131,0, 249,255,64,16,0,0,0,0,2,131,4,60, 122,33,192,8,240,143,132,36,36,129,130,143, 0,0,0,0,3,0,64,20,33,24,0,0, 125,33,192,8,33,16,0,0,1,0,5,36, 15,0,4,60,63,66,132,52,0,163,2,60, 20,1,66,140,0,0,0,0,247,255,69,16, 1,0,99,36,42,16,131,0,249,255,64,16, 0,0,0,0,0,163,5,60,20,1,165,140, 2,131,4,60,24,144,132,36,15,63,192,12, 0,0,0,0,1,0,2,36,16,0,191,143, 24,0,189,39,8,0,224,3,0,0,0,0, 224,255,189,39,24,0,191,175,33,72,192,0, 255,31,3,60,255,255,99,52,33,64,0,0, 36,32,131,0,0,160,2,60,37,32,130,0, 36,40,163,0,16,0,32,25,37,40,162,0, 0,0,134,144,0,0,167,144,0,0,0,0, 7,0,199,16,1,0,165,36,2,131,4,60, 72,144,132,36,15,63,192,12,33,40,0,1, 157,33,192,8,1,0,2,36,1,0,8,37, 42,16,9,1,242,255,64,20,1,0,132,36, 33,16,0,0,24,0,191,143,32,0,189,39, 8,0,224,3,0,0,0,0,0,163,2,60, 232,5,66,140,152,255,189,39,80,0,180,175, 120,0,180,143,64,0,176,175,33,128,160,0, 68,0,177,175,33,136,192,0,72,0,178,175, 33,144,224,0,100,0,191,175,96,0,190,175, 92,0,183,175,88,0,182,175,84,0,181,175, 76,0,179,175,12,0,64,16,16,0,164,175, 0,163,2,60,236,5,66,140,0,0,0,0, 7,0,64,16,0,0,0,0,0,163,2,60, 236,5,66,140,0,0,0,0,1,8,66,44, 10,0,64,20,16,0,2,60,0,163,5,60, 232,5,165,140,0,163,6,60,236,5,198,140, 2,131,4,60,15,63,192,12,124,144,132,36, 7,35,192,8,0,0,0,0,16,0,168,143, 0,0,0,0,43,16,72,0,6,0,64,16, 0,0,0,0,2,131,4,60,15,63,192,12, 172,144,132,36,7,35,192,8,0,0,0,0, 224,132,130,143,0,0,0,0,11,0,64,20, 0,0,0,0,0,163,4,60,236,5,132,140, 13,8,192,12,0,0,0,0,255,31,3,60, 255,255,99,52,36,16,67,0,0,160,3,60, 37,16,67,0,224,132,130,175,228,132,130,143, 0,0,0,0,11,0,64,20,0,0,0,0, 0,163,4,60,236,5,132,140,13,8,192,12, 0,0,0,0,255,31,3,60,255,255,99,52, 36,16,67,0,0,160,3,60,37,16,67,0, 228,132,130,175,224,132,133,143,0,163,6,60, 232,5,198,140,228,132,135,143,2,131,4,60, 15,63,192,12,208,144,132,36,16,129,133,143, 20,129,134,143,2,131,4,60,15,63,192,12, 8,145,132,36,7,162,2,60,232,0,66,52, 0,0,83,140,1,0,3,130,105,0,2,36, 7,0,98,20,251,255,2,60,1,0,2,36, 36,129,130,175,4,0,2,60,0,8,66,52, 10,34,192,8,37,152,98,2,36,129,128,175, 255,247,66,52,36,152,98,2,7,162,2,60, 232,0,66,52,0,0,83,172,0,0,5,130, 114,0,2,36,3,0,162,16,82,0,2,36, 3,0,162,20,119,0,2,36,42,34,192,8, 33,176,0,0,3,0,162,16,87,0,2,36, 3,0,162,20,108,0,2,36,42,34,192,8, 1,0,22,36,3,0,162,16,76,0,2,36, 3,0,162,20,116,0,2,36,42,34,192,8, 2,0,22,36,118,0,162,16,84,0,2,36, 116,0,162,16,0,0,0,0,2,131,4,60, 15,63,192,12,52,145,132,36,7,35,192,8, 0,0,0,0,0,0,38,130,0,0,0,0, 12,0,192,16,99,0,2,36,3,0,194,16, 67,0,2,36,4,0,194,20,33,152,0,0, 5,0,19,36,61,34,192,8,5,0,21,36, 2,131,1,60,80,155,50,160,61,34,192,8, 33,168,0,0,33,168,0,0,5,0,19,36, 2,131,1,60,80,155,32,160,16,0,168,143, 0,163,18,60,236,5,82,142,0,0,0,0, 197,0,0,17,255,255,20,37,255,255,194,38, 2,0,87,44,2,0,30,36,33,128,160,2, 42,16,112,2,73,0,64,20,0,0,0,0, 42,0,224,18,5,0,2,36,13,0,2,22, 0,0,0,0,25,0,64,26,33,136,0,0, 224,132,130,143,0,0,0,0,33,16,81,0, 0,0,81,160,1,0,49,38,42,16,50,2, 249,255,64,20,33,48,64,2,105,34,192,8, 0,0,0,0,2,131,3,60,33,24,112,0, 80,155,99,144,0,0,0,0,9,0,64,26, 33,136,0,0,224,132,130,143,0,0,0,0, 33,16,81,0,1,0,49,38,0,0,67,160, 42,16,50,2,249,255,64,20,0,0,0,0, 33,48,64,2,0,163,4,60,232,5,132,140, 224,132,133,143,0,0,0,0,28,33,192,12, 1,0,7,36,76,33,192,12,0,0,0,0, 83,33,192,12,0,0,0,0,147,0,64,20, 0,0,0,0,3,0,192,18,33,48,64,2, 22,0,222,22,0,0,0,0,0,163,4,60, 232,5,132,140,228,132,133,143,0,0,0,0, 28,33,192,12,33,56,0,0,76,33,192,12, 0,0,0,0,83,33,192,12,0,0,0,0, 131,0,64,20,0,0,0,0,8,0,222,22, 0,0,0,0,224,132,132,143,228,132,133,143, 0,0,0,0,129,33,192,12,33,48,64,2, 122,0,64,20,0,0,0,0,1,0,16,38, 42,16,112,2,185,255,64,16,0,0,0,0, 255,255,148,38,255,255,2,36,178,255,130,22, 33,128,160,2,7,35,192,8,0,0,0,0, 180,10,192,12,0,0,0,0,34,11,192,12, 1,0,4,36,0,0,34,130,0,0,0,0, 6,0,64,16,33,184,0,0,24,0,160,175, 2,131,1,60,88,155,52,164,171,34,192,8, 33,176,0,0,6,0,23,36,4,0,2,36, 24,0,160,175,2,131,1,60,88,155,34,164, 33,176,0,0,0,8,30,36,24,0,177,143, 0,0,0,0,42,16,241,2,83,0,64,20, 64,16,17,0,2,131,8,60,88,155,8,37, 33,168,72,0,0,0,178,150,0,0,0,0, 26,0,210,3,2,0,64,22,0,0,0,0, 13,0,7,0,255,255,1,36,4,0,65,22, 0,128,1,60,2,0,193,23,0,0,0,0, 13,0,6,0,18,16,0,0,16,0,168,143, 0,0,0,0,24,0,72,0,33,56,192,2, 33,128,0,0,0,163,19,60,4,1,115,142, 0,163,4,60,232,5,132,140,224,132,133,143, 18,160,0,0,0,0,0,0,0,0,0,0, 28,33,192,12,33,48,64,2,10,0,128,26, 0,0,0,0,76,33,192,12,0,0,0,0, 83,33,192,12,0,0,0,0,48,0,64,20, 1,0,16,38,42,16,20,2,248,255,64,20, 0,0,0,0,2,131,5,60,140,145,165,36, 0,163,16,60,4,1,16,142,3,0,192,18, 0,0,0,0,2,131,5,60,128,145,165,36, 2,131,4,60,96,145,132,36,15,63,192,12, 33,48,64,2,19,0,19,18,24,0,146,2, 18,24,0,0,35,16,19,2,0,0,0,0, 27,0,98,0,2,0,64,20,0,0,0,0, 13,0,7,0,18,16,0,0,2,131,4,60, 152,145,132,36,64,41,2,0,35,40,162,0, 128,40,5,0,33,40,162,0,15,63,192,12, 192,40,5,0,255,34,192,8,2,0,181,38, 2,131,4,60,168,145,132,36,15,63,192,12, 2,0,181,38,1,0,49,38,42,16,241,2, 178,255,64,16,0,0,0,0,1,0,214,38, 2,0,194,42,166,255,64,20,0,0,0,0, 100,0,191,143,96,0,190,143,92,0,183,143, 88,0,182,143,84,0,181,143,80,0,180,143, 76,0,179,143,72,0,178,143,68,0,177,143, 64,0,176,143,8,0,224,3,104,0,189,39, 0,0,0,0,43,16,134,0,0,0,164,175, 4,0,165,175,8,0,166,175,7,0,64,20, 12,0,167,175,43,16,196,0,5,0,64,20, 1,0,2,36,43,16,167,0,2,0,64,16, 43,16,229,0,255,255,2,36,8,0,224,3, 0,0,0,0,232,255,189,39,3,131,4,60, 208,12,132,36,170,0,5,36,16,0,191,175, 144,71,192,12,60,0,6,36,2,131,6,60, 112,155,198,36,2,131,2,60,212,246,66,140, 2,131,3,60,216,246,99,132,0,0,194,172, 4,0,195,164,2,131,2,60,138,155,66,148, 2,131,3,60,132,155,99,148,2,131,4,60, 134,155,132,148,2,131,5,60,136,155,165,148, 3,131,1,60,216,12,34,164,2,131,2,60, 130,155,66,148,3,131,10,60,218,12,74,37, 3,0,199,136,0,0,199,152,4,0,200,128, 5,0,201,128,3,0,71,169,0,0,71,185, 4,0,72,161,5,0,73,161,3,131,1,60, 238,12,35,164,3,131,1,60,242,12,36,164, 3,131,1,60,246,12,37,164,3,131,1,60, 240,12,34,164,16,0,191,143,24,0,189,39, 8,0,224,3,0,0,0,0,3,131,2,60, 216,12,66,140,3,131,3,60,220,12,99,140, 3,131,1,60,208,12,34,172,3,131,1,60, 212,12,35,172,3,131,2,60,238,12,66,148, 3,131,3,60,240,12,99,148,3,131,4,60, 242,12,132,148,232,255,189,39,16,0,176,175, 3,131,1,60,234,12,35,164,24,133,131,143, 20,0,191,175,3,131,1,60,224,12,32,172, 3,131,1,60,228,12,32,172,3,131,1,60, 248,12,32,172,3,131,1,60,252,12,32,172, 3,131,1,60,8,13,32,164,3,131,1,60, 4,13,32,164,3,131,1,60,232,12,34,164, 33,16,68,0,3,131,1,60,236,12,36,164, 3,131,1,60,244,12,34,164,8,0,96,24, 1,0,16,36,150,35,192,12,33,32,0,2, 24,133,130,143,1,0,16,38,42,16,80,0, 250,255,64,16,0,0,0,0,206,35,192,12, 0,0,0,0,52,36,192,12,0,0,0,0, 1,0,2,36,3,131,1,60,0,13,34,164, 3,0,2,36,3,131,1,60,2,13,32,164, 3,131,1,60,20,13,34,172,2,131,1,60, 164,247,34,172,20,0,191,143,16,0,176,143, 8,0,224,3,24,0,189,39,224,255,189,39, 20,0,177,175,33,136,128,0,16,0,176,175, 192,129,17,0,3,131,4,60,16,13,132,36, 33,32,4,2,187,0,5,36,24,0,191,175, 144,71,192,12,128,0,6,36,2,131,2,60, 140,155,66,148,100,0,3,36,3,131,1,60, 33,8,48,0,24,13,35,172,0,18,2,0, 37,16,34,2,3,131,1,60,33,8,48,0, 16,13,34,164,22,36,192,12,33,32,32,2, 4,0,2,36,64,138,17,0,3,131,1,60, 33,8,48,0,20,13,34,172,2,131,1,60, 33,8,49,0,164,247,34,172,3,131,1,60, 33,8,48,0,52,13,32,172,3,131,1,60, 33,8,48,0,56,13,32,172,3,131,1,60, 33,8,48,0,106,13,32,164,3,131,1,60, 33,8,48,0,110,13,32,164,3,131,1,60, 33,8,48,0,114,13,32,164,3,131,1,60, 33,8,48,0,120,13,32,172,24,0,191,143, 20,0,177,143,16,0,176,143,8,0,224,3, 32,0,189,39,24,133,130,143,216,255,189,39, 20,0,177,175,1,0,17,36,36,0,191,175, 32,0,180,175,28,0,179,175,24,0,178,175, 55,0,64,24,16,0,176,175,3,131,20,60, 228,12,148,38,3,131,2,60,56,13,66,36, 128,0,83,36,124,0,82,36,128,0,16,36, 0,0,130,142,0,0,0,0,6,0,34,22, 33,32,32,2,0,0,64,174,101,36,192,12, 0,0,96,174,8,36,192,8,128,0,115,38, 3,131,4,60,33,32,144,0,40,13,132,140, 3,131,5,60,33,40,176,0,44,13,165,140, 244,255,134,142,248,255,135,142,20,35,192,12, 0,0,0,0,17,0,64,20,33,32,32,2, 3,131,3,60,33,24,112,0,48,13,99,148, 3,131,2,60,33,16,80,0,16,13,66,148, 0,0,0,0,8,0,98,20,0,0,0,0, 3,131,1,60,33,8,48,0,106,13,32,164, 101,36,192,12,33,32,32,2,8,36,192,8, 128,0,115,38,0,0,64,174,125,36,192,12, 0,0,96,174,128,0,115,38,128,0,82,38, 24,133,130,143,1,0,49,38,42,16,81,0, 210,255,64,16,128,0,16,38,36,0,191,143, 32,0,180,143,28,0,179,143,24,0,178,143, 20,0,177,143,16,0,176,143,8,0,224,3, 40,0,189,39,192,33,4,0,3,131,2,60, 28,13,66,36,33,24,130,0,3,131,5,60, 208,12,165,140,3,131,6,60,212,12,198,140, 0,0,101,172,4,0,102,172,12,0,66,36, 3,131,3,60,224,12,99,140,33,16,130,0, 3,131,1,60,33,8,36,0,36,13,35,172, 3,131,3,60,216,12,99,140,3,131,5,60, 220,12,165,140,0,0,67,172,4,0,69,172, 3,131,2,60,33,16,68,0,16,13,66,148, 3,131,1,60,33,8,36,0,8,0,224,3, 48,13,34,164,24,133,130,143,224,255,189,39, 20,0,177,175,1,0,17,36,24,0,191,175, 38,0,64,24,16,0,176,175,128,0,16,36, 3,131,4,60,33,32,144,0,40,13,132,140, 3,131,5,60,33,40,176,0,44,13,165,140, 3,131,6,60,216,12,198,140,3,131,7,60, 220,12,231,140,20,35,192,12,0,0,0,0, 18,0,64,20,0,0,0,0,3,131,3,60, 33,24,112,0,48,13,99,148,3,131,2,60, 33,16,80,0,16,13,66,148,0,0,0,0, 9,0,98,20,0,0,0,0,3,131,2,60, 33,16,80,0,20,13,66,140,0,0,0,0, 3,0,64,16,0,0,0,0,203,36,192,12, 33,32,32,2,24,133,130,143,1,0,49,38, 42,16,81,0,221,255,64,16,128,0,16,38, 24,0,191,143,20,0,177,143,16,0,176,143, 8,0,224,3,32,0,189,39,192,41,4,0, 3,131,3,60,33,24,101,0,20,13,99,140, 4,0,2,36,16,0,98,20,240,255,189,39, 1,0,2,36,64,26,4,0,3,131,1,60, 33,8,37,0,20,13,34,172,2,131,1,60, 33,8,35,0,164,247,34,172,1,0,2,36, 3,131,1,60,33,8,37,0,110,13,34,164, 3,131,1,60,33,8,37,0,112,13,32,164, 8,0,224,3,16,0,189,39,224,255,189,39, 24,0,178,175,33,144,128,0,16,0,176,175, 192,129,18,0,28,0,191,175,20,0,177,175, 3,131,2,60,33,16,80,0,20,13,66,140, 0,0,0,0,18,0,64,16,4,0,17,36, 16,0,81,16,254,255,66,36,2,0,66,44, 4,0,64,16,64,18,18,0,161,36,192,12, 0,0,0,0,64,18,18,0,3,131,1,60, 33,8,48,0,20,13,49,172,2,131,1,60, 33,8,34,0,164,247,49,172,3,131,1,60, 33,8,48,0,110,13,32,164,28,0,191,143, 24,0,178,143,20,0,177,143,16,0,176,143, 8,0,224,3,32,0,189,39,3,131,4,60, 208,12,132,140,3,131,5,60,212,12,165,140, 3,131,6,60,216,12,198,140,3,131,7,60, 220,12,231,140,232,255,189,39,16,0,191,175, 20,35,192,12,0,0,0,0,10,0,64,20, 1,0,2,36,3,131,1,60,252,12,34,172, 1,0,2,36,3,131,1,60,4,13,34,164, 3,131,1,60,6,13,32,164,197,36,192,8, 1,0,2,36,3,131,2,60,248,12,66,140, 0,0,0,0,9,0,64,20,1,0,2,36, 72,37,192,12,0,0,0,0,1,0,2,36, 3,131,1,60,8,13,34,164,3,131,1,60, 10,13,32,164,1,0,2,36,3,131,1,60, 248,12,34,172,16,0,191,143,24,0,189,39, 8,0,224,3,0,0,0,0,224,255,189,39, 20,0,177,175,33,136,128,0,16,0,176,175, 192,129,17,0,24,0,191,175,3,131,2,60, 33,16,80,0,114,13,66,132,0,0,0,0, 5,0,64,16,1,0,2,36,3,131,1,60, 33,8,48,0,67,37,192,8,56,13,34,172, 3,131,4,60,208,12,132,36,3,131,2,60, 64,13,66,36,33,24,2,2,3,131,1,60, 33,8,48,0,60,13,32,164,0,0,133,140, 4,0,134,140,0,0,101,172,4,0,102,172, 12,0,66,36,3,131,3,60,224,12,99,140, 33,16,2,2,3,131,1,60,33,8,48,0, 72,13,35,172,3,131,3,60,216,12,99,140, 3,131,5,60,220,12,165,140,0,0,67,172, 4,0,69,172,3,131,2,60,33,16,80,0, 16,13,66,148,3,131,1,60,33,8,48,0, 84,13,34,164,0,0,132,140,3,131,5,60, 212,12,165,140,3,131,6,60,216,12,198,140, 3,131,7,60,220,12,231,140,20,35,192,12, 0,0,0,0,5,0,64,20,0,0,0,0, 3,131,1,60,33,8,48,0,22,37,192,8, 86,13,32,164,3,131,2,60,228,12,66,140, 2,131,3,60,128,155,99,148,192,17,2,0, 3,131,1,60,33,8,34,0,108,13,34,148, 0,0,0,0,33,16,67,0,3,131,1,60, 33,8,48,0,86,13,34,164,3,131,2,60, 232,12,66,148,192,129,17,0,3,131,1,60, 33,8,48,0,88,13,34,164,3,131,2,60, 234,12,66,148,33,32,32,2,3,131,1,60, 33,8,48,0,90,13,34,164,3,131,3,60, 236,12,99,148,3,131,2,60,33,16,80,0, 52,13,66,140,3,131,5,60,60,13,165,36, 3,131,1,60,33,8,48,0,52,13,32,172, 3,131,1,60,33,8,48,0,96,13,34,172, 3,131,1,60,33,8,48,0,92,13,35,164, 3,131,2,60,252,12,66,140,3,131,1,60, 33,8,48,0,100,13,34,172,80,40,192,12, 33,40,5,2,1,0,2,36,3,131,1,60, 33,8,48,0,56,13,32,172,3,131,1,60, 33,8,48,0,114,13,34,164,3,131,1,60, 33,8,48,0,116,13,32,164,24,0,191,143, 20,0,177,143,16,0,176,143,8,0,224,3, 32,0,189,39,232,255,189,39,128,0,2,36, 3,131,4,60,228,12,132,140,3,131,5,60, 104,13,165,36,16,0,191,175,192,25,4,0, 3,131,1,60,33,8,35,0,104,13,34,164, 151,40,192,12,33,40,101,0,2,131,4,60, 15,63,192,12,12,146,132,36,16,0,191,143, 24,0,189,39,8,0,224,3,0,0,0,0, 232,255,189,39,16,0,191,175,102,37,192,12, 0,0,0,0,13,38,192,12,0,0,0,0, 16,0,191,143,24,0,189,39,8,0,224,3, 0,0,0,0,24,133,130,143,208,255,189,39, 24,0,178,175,33,144,0,0,28,0,179,175, 1,0,19,36,44,0,191,175,40,0,182,175, 36,0,181,175,32,0,180,175,20,0,177,175, 110,0,64,24,16,0,176,175,3,131,21,60, 216,12,181,38,3,131,22,60,16,13,214,38, 128,0,208,38,128,0,20,36,192,17,18,0, 3,131,4,60,33,32,148,0,40,13,132,140, 3,131,5,60,33,40,180,0,44,13,165,140, 0,0,166,142,3,131,7,60,220,12,231,140, 0,0,0,0,20,35,192,12,33,136,86,0, 10,0,64,20,0,0,0,0,3,131,3,60, 33,24,116,0,48,13,99,148,3,131,2,60, 33,16,84,0,16,13,66,148,0,0,0,0, 74,0,98,16,0,0,0,0,4,0,2,142, 0,0,0,0,70,0,64,16,0,0,0,0, 12,0,4,142,16,0,5,142,0,0,166,142, 3,131,7,60,220,12,231,140,20,35,192,12, 0,0,0,0,61,0,65,4,0,0,0,0, 58,0,64,18,0,0,0,0,12,0,4,142, 16,0,5,142,12,0,38,142,16,0,39,142, 20,35,192,12,0,0,0,0,50,0,64,4, 0,0,0,0,12,0,4,142,16,0,5,142, 12,0,38,142,16,0,39,142,20,35,192,12, 0,0,0,0,43,0,64,20,0,0,0,0, 20,0,5,142,8,0,3,142,20,0,36,142, 8,0,34,142,33,40,163,0,33,32,130,0, 43,16,164,0,33,0,64,20,0,0,0,0, 32,0,164,20,0,0,0,0,24,0,4,142, 28,0,5,142,24,0,38,142,28,0,39,142, 20,35,192,12,0,0,0,0,23,0,64,4, 0,0,0,0,24,0,4,142,28,0,5,142, 24,0,38,142,28,0,39,142,20,35,192,12, 0,0,0,0,16,0,64,20,0,0,0,0, 32,0,4,150,32,0,35,150,0,0,0,0, 43,16,131,0,9,0,64,20,0,0,0,0, 8,0,131,20,0,0,0,0,0,0,2,150, 0,0,35,150,0,0,0,0,43,16,67,0, 2,0,64,16,0,0,0,0,33,144,96,2, 128,0,16,38,24,133,130,143,1,0,115,38, 42,16,83,0,154,255,64,16,128,0,148,38, 3,131,1,60,228,12,50,172,12,0,64,22, 192,17,18,0,3,131,2,60,216,12,66,140, 3,131,3,60,220,12,99,140,3,131,1,60, 208,12,34,172,3,131,1,60,212,12,35,172, 3,131,1,60,3,38,192,8,224,12,32,172, 3,131,3,60,33,24,98,0,28,13,99,140, 3,131,4,60,33,32,130,0,32,13,132,140, 3,131,1,60,208,12,35,172,3,131,1,60, 212,12,36,172,3,131,3,60,33,24,98,0, 36,13,99,140,3,131,1,60,33,8,34,0, 24,13,34,140,0,0,0,0,33,24,98,0, 3,131,1,60,224,12,35,172,44,0,191,143, 40,0,182,143,36,0,181,143,32,0,180,143, 28,0,179,143,24,0,178,143,20,0,177,143, 16,0,176,143,8,0,224,3,48,0,189,39, 24,133,130,143,208,255,189,39,36,0,181,175, 1,0,21,36,44,0,191,175,40,0,182,175, 32,0,180,175,28,0,179,175,24,0,178,175, 20,0,177,175,82,0,64,24,16,0,176,175, 3,131,22,60,216,12,214,38,3,131,2,60, 48,13,66,36,128,0,84,36,96,0,83,36, 124,0,82,36,120,0,81,36,128,0,16,36, 0,0,36,142,0,0,69,142,0,0,198,142, 3,131,7,60,220,12,231,140,20,35,192,12, 0,0,0,0,55,0,64,20,0,0,0,0, 0,0,131,150,0,0,98,150,0,0,0,0, 50,0,98,20,0,0,0,0,3,131,4,60, 33,32,144,0,28,13,132,140,3,131,5,60, 33,40,176,0,32,13,165,140,248,255,198,142, 3,131,7,60,212,12,231,140,20,35,192,12, 0,0,0,0,37,0,64,16,0,0,0,0, 8,0,196,142,3,131,3,60,33,24,112,0, 36,13,99,140,0,0,0,0,43,16,131,0, 29,0,64,20,0,0,0,0,27,0,131,20, 0,0,0,0,0,0,196,142,3,131,5,60, 220,12,165,140,0,0,38,142,0,0,71,142, 20,35,192,12,0,0,0,0,16,0,64,4, 0,0,0,0,0,0,196,142,3,131,5,60, 220,12,165,140,0,0,38,142,0,0,71,142, 20,35,192,12,0,0,0,0,9,0,64,20, 0,0,0,0,0,0,99,150,0,0,130,150, 0,0,0,0,43,16,67,0,3,0,64,20, 0,0,0,0,22,36,192,12,33,32,160,2, 128,0,148,38,128,0,115,38,128,0,82,38, 128,0,49,38,24,133,130,143,1,0,181,38, 42,16,85,0,185,255,64,16,128,0,16,38, 44,0,191,143,40,0,182,143,36,0,181,143, 32,0,180,143,28,0,179,143,24,0,178,143, 20,0,177,143,16,0,176,143,8,0,224,3, 48,0,189,39,216,255,189,39,3,131,4,60, 0,13,132,36,32,0,191,175,28,0,179,175, 24,0,178,175,20,0,177,175,16,0,176,175, 0,0,130,132,0,0,0,0,14,0,64,16, 0,0,0,0,3,131,2,60,2,13,66,148, 3,131,3,60,234,12,99,148,1,0,66,36, 3,131,1,60,2,13,34,164,255,255,66,48, 43,16,67,0,3,0,64,20,0,0,0,0, 11,39,192,12,0,0,128,164,3,131,4,60, 8,13,132,36,0,0,130,132,0,0,0,0, 14,0,64,16,0,0,0,0,3,131,2,60, 10,13,66,148,3,131,3,60,234,12,99,148, 1,0,66,36,3,131,1,60,10,13,34,164, 255,255,66,48,43,16,67,0,3,0,64,20, 0,0,0,0,24,39,192,12,0,0,128,164, 3,131,4,60,4,13,132,36,0,0,130,132, 0,0,0,0,14,0,64,16,0,0,0,0, 3,131,2,60,6,13,66,148,3,131,3,60, 244,12,99,148,1,0,66,36,3,131,1,60, 6,13,34,164,255,255,66,48,43,16,67,0, 3,0,64,20,0,0,0,0,37,39,192,12, 0,0,128,164,24,133,130,143,0,0,0,0, 78,0,64,24,1,0,17,36,3,131,2,60, 16,13,66,36,226,0,83,36,128,0,82,36, 128,0,16,36,3,131,2,60,33,16,80,0, 110,13,66,132,0,0,0,0,18,0,64,16, 0,0,0,0,3,131,2,60,33,16,80,0, 112,13,66,148,0,0,0,0,1,0,66,36, 96,0,66,166,3,131,3,60,236,12,99,148, 255,255,66,48,43,16,67,0,6,0,64,20, 0,0,0,0,3,131,1,60,33,8,48,0, 110,13,32,164,79,39,192,12,33,32,32,2, 3,131,2,60,33,16,80,0,106,13,66,132, 0,0,0,0,18,0,64,16,0,0,0,0, 3,131,2,60,33,16,80,0,108,13,66,148, 0,0,0,0,1,0,66,36,92,0,66,166, 3,131,3,60,232,12,99,148,255,255,66,48, 43,16,67,0,6,0,64,20,0,0,0,0, 3,131,1,60,33,8,48,0,106,13,32,164, 129,39,192,12,33,32,32,2,0,0,98,134, 0,0,0,0,16,0,64,16,0,0,0,0, 3,131,2,60,33,16,80,0,116,13,66,148, 0,0,0,0,1,0,66,36,100,0,66,166, 3,131,3,60,246,12,99,148,255,255,66,48, 43,16,67,0,4,0,64,20,0,0,0,0, 0,0,96,166,191,39,192,12,33,32,32,2, 128,0,115,38,128,0,82,38,24,133,130,143, 1,0,49,38,42,16,81,0,185,255,64,16, 128,0,16,38,32,0,191,143,28,0,179,143, 24,0,178,143,20,0,177,143,16,0,176,143, 8,0,224,3,40,0,189,39,232,255,189,39, 16,0,191,175,52,36,192,12,0,0,0,0, 1,0,2,36,3,131,1,60,0,13,34,164, 3,131,1,60,2,13,32,164,16,0,191,143, 24,0,189,39,8,0,224,3,0,0,0,0, 232,255,189,39,16,0,191,175,72,37,192,12, 0,0,0,0,1,0,2,36,3,131,1,60, 8,13,34,164,3,131,1,60,10,13,32,164, 16,0,191,143,24,0,189,39,8,0,224,3, 0,0,0,0,240,255,189,39,3,131,1,60, 248,12,32,172,3,131,1,60,252,12,32,172, 8,0,224,3,16,0,189,39,24,133,130,143, 224,255,189,39,20,0,177,175,1,0,17,36, 24,0,191,175,23,0,64,24,16,0,176,175, 128,0,16,36,3,131,4,60,33,32,144,0, 40,13,132,140,3,131,5,60,33,40,176,0, 44,13,165,140,3,131,6,60,216,12,198,140, 3,131,7,60,220,12,231,140,20,35,192,12, 0,0,0,0,3,0,64,20,1,0,49,38, 74,39,192,8,1,0,2,36,24,133,130,143, 0,0,0,0,42,16,81,0,236,255,64,16, 128,0,16,38,33,16,0,0,24,0,191,143, 20,0,177,143,16,0,176,143,8,0,224,3, 32,0,189,39,232,255,189,39,192,41,4,0, 16,0,191,175,3,131,3,60,33,24,101,0, 20,13,99,140,1,0,2,36,16,0,98,20, 2,0,2,36,64,26,4,0,3,131,1,60, 33,8,37,0,20,13,34,172,2,131,1,60, 33,8,35,0,164,247,34,172,1,0,2,36, 3,131,1,60,33,8,37,0,110,13,34,164, 3,131,1,60,33,8,37,0,125,39,192,8, 112,13,32,164,21,0,98,20,3,0,3,36, 64,18,4,0,3,131,1,60,33,8,37,0, 20,13,35,172,2,131,1,60,33,8,34,0, 164,247,35,172,3,131,2,60,33,16,69,0, 120,13,66,140,0,0,0,0,1,0,66,36, 3,131,1,60,33,8,37,0,44,39,192,12, 120,13,34,172,3,0,64,16,0,0,0,0, 161,36,192,12,0,0,0,0,16,0,191,143, 24,0,189,39,8,0,224,3,0,0,0,0, 224,255,189,39,16,0,176,175,33,128,128,0, 20,0,177,175,3,131,17,60,208,12,49,38, 24,0,191,175,0,0,36,142,3,131,5,60, 212,12,165,140,3,131,6,60,216,12,198,140, 3,131,7,60,220,12,231,140,20,35,192,12, 0,0,0,0,33,32,0,2,22,36,192,12, 1,0,80,44,92,37,192,12,0,0,0,0, 206,35,192,12,0,0,0,0,33,0,0,22, 0,0,0,0,0,0,36,142,3,131,5,60, 212,12,165,140,3,131,6,60,216,12,198,140, 3,131,7,60,220,12,231,140,20,35,192,12, 0,0,0,0,22,0,64,20,0,0,0,0, 3,131,2,60,238,12,66,148,3,131,3,60, 240,12,99,148,3,131,4,60,242,12,132,148, 3,131,1,60,232,12,34,164,3,131,1,60, 234,12,35,164,3,131,1,60,161,36,192,12, 236,12,36,164,3,131,1,60,52,36,192,12, 8,13,32,164,1,0,2,36,3,131,1,60, 0,13,34,164,3,131,1,60,2,13,32,164, 24,0,191,143,20,0,177,143,16,0,176,143, 8,0,224,3,32,0,189,39,232,255,189,39, 192,17,4,0,16,0,191,175,3,131,1,60, 33,8,34,0,56,13,34,140,0,0,0,0, 3,0,64,16,0,0,0,0,203,36,192,12, 0,0,0,0,16,0,191,143,24,0,189,39, 8,0,224,3,0,0,0,0,3,131,1,60, 248,12,32,172,3,131,1,60,8,0,224,3, 8,13,32,164,232,255,189,39,192,25,4,0, 1,0,2,36,16,0,191,175,3,131,1,60, 33,8,35,0,203,36,192,12,52,13,34,172, 16,0,191,143,24,0,189,39,8,0,224,3, 0,0,0,0,192,33,4,0,3,131,2,60, 28,13,66,36,33,24,130,0,4,0,166,140, 8,0,167,140,0,0,102,172,4,0,103,172, 12,0,66,36,12,0,163,140,33,16,130,0, 3,131,1,60,33,8,36,0,36,13,35,172, 16,0,163,140,20,0,166,140,0,0,67,172, 4,0,70,172,24,0,163,148,1,0,2,36, 3,131,1,60,33,8,36,0,106,13,34,164, 3,131,1,60,33,8,36,0,48,13,35,164, 26,0,162,148,3,131,1,60,33,8,36,0, 8,0,224,3,108,13,34,164,28,0,130,148, 3,131,1,60,232,12,34,164,30,0,130,148, 3,131,1,60,234,12,34,164,32,0,130,148, 3,131,1,60,236,12,34,164,40,0,130,140, 3,131,1,60,8,0,224,3,252,12,34,172, 224,255,189,39,16,0,176,175,33,128,160,0, 192,25,4,0,3,131,2,60,16,13,66,36, 20,0,177,175,33,136,98,0,24,0,191,175, 4,0,4,142,8,0,5,142,12,0,38,142, 16,0,39,142,20,35,192,12,0,0,0,0, 48,0,64,4,1,0,2,36,4,0,4,142, 8,0,5,142,12,0,38,142,16,0,39,142, 20,35,192,12,0,0,0,0,40,0,64,20, 33,16,0,0,12,0,4,142,20,0,35,142, 0,0,0,0,43,16,131,0,34,0,64,20, 1,0,2,36,32,0,131,20,33,16,0,0, 16,0,4,142,20,0,5,142,24,0,38,142, 28,0,39,142,20,35,192,12,0,0,0,0, 24,0,64,4,1,0,2,36,16,0,4,142, 20,0,5,142,24,0,38,142,28,0,39,142, 20,35,192,12,0,0,0,0,16,0,64,20, 33,16,0,0,16,0,4,142,20,0,5,142, 3,131,6,60,216,12,198,140,3,131,7,60, 220,12,231,140,20,35,192,12,0,0,0,0, 6,0,64,20,1,0,2,36,24,0,3,150, 32,0,34,150,0,0,0,0,43,16,67,0, 1,0,66,56,24,0,191,143,20,0,177,143, 16,0,176,143,8,0,224,3,32,0,189,39, 44,133,130,143,216,255,189,39,20,0,177,175, 33,136,128,0,32,0,180,175,33,160,160,0, 36,0,191,175,28,0,179,175,24,0,178,175, 53,0,64,16,16,0,176,175,2,131,19,60, 192,4,115,38,33,32,96,2,54,21,192,12, 1,0,5,36,33,128,64,0,8,0,0,22, 64,26,17,0,2,131,2,60,33,16,67,0, 176,247,66,140,33,24,99,2,1,0,66,36, 143,40,192,8,240,242,98,172,8,0,4,142, 64,146,17,0,20,242,101,38,33,40,69,2, 172,41,192,12,33,48,128,2,33,24,64,0, 60,0,98,40,2,0,64,16,0,242,98,38, 60,0,3,36,33,136,66,2,33,32,32,2, 33,40,0,2,1,0,2,36,17,0,2,162, 0,128,98,52,0,0,2,174,6,23,192,12, 18,0,3,166,10,0,64,20,33,32,0,2, 2,131,2,60,33,16,82,0,172,247,66,140, 0,0,0,0,1,0,66,36,152,21,192,12, 236,0,34,174,143,40,192,8,0,0,0,0, 2,131,2,60,33,16,82,0,168,247,66,140, 0,0,0,0,1,0,66,36,232,0,34,174, 36,0,191,143,32,0,180,143,28,0,179,143, 24,0,178,143,20,0,177,143,16,0,176,143, 8,0,224,3,40,0,189,39,44,133,130,143, 216,255,189,39,20,0,177,175,33,136,128,0, 32,0,180,175,33,160,160,0,36,0,191,175, 28,0,179,175,24,0,178,175,53,0,64,16, 16,0,176,175,2,131,19,60,192,4,115,38, 33,32,96,2,54,21,192,12,1,0,5,36, 33,128,64,0,8,0,0,22,64,26,17,0, 2,131,2,60,33,16,67,0,176,247,66,140, 33,24,99,2,1,0,66,36,214,40,192,8, 240,242,98,172,8,0,4,142,64,146,17,0, 20,242,101,38,33,40,69,2,74,42,192,12, 33,48,128,2,33,24,64,0,60,0,98,40, 2,0,64,16,0,242,98,38,60,0,3,36, 33,136,66,2,33,32,32,2,33,40,0,2, 1,0,2,36,17,0,2,162,0,128,98,52, 0,0,2,174,6,23,192,12,18,0,3,166, 10,0,64,20,33,32,0,2,2,131,2,60, 33,16,82,0,172,247,66,140,0,0,0,0, 1,0,66,36,152,21,192,12,236,0,34,174, 214,40,192,8,0,0,0,0,2,131,2,60, 33,16,82,0,168,247,66,140,0,0,0,0, 1,0,66,36,232,0,34,174,36,0,191,143, 32,0,180,143,28,0,179,143,24,0,178,143, 20,0,177,143,16,0,176,143,8,0,224,3, 40,0,189,39,216,255,189,39,24,0,178,175, 33,144,128,0,20,0,177,175,33,136,160,0, 16,0,176,175,33,128,192,0,36,0,191,175, 32,0,180,175,28,0,179,175,4,0,36,142, 8,0,37,142,160,133,134,143,2,131,7,60, 180,211,231,140,20,35,192,12,0,0,0,0, 11,0,64,20,0,0,0,0,2,131,4,60, 144,146,132,36,15,63,192,12,33,40,0,2, 100,129,132,39,108,129,134,39,31,21,192,12, 6,0,5,38,92,41,192,8,0,0,0,0, 3,131,20,60,208,12,148,38,0,0,132,142, 3,131,5,60,212,12,165,140,3,131,6,60, 216,12,198,140,3,131,7,60,220,12,231,140, 0,0,0,0,20,35,192,12,192,129,18,0, 3,131,3,60,33,24,112,0,20,13,99,140, 0,0,0,0,80,0,96,16,1,0,83,44, 33,32,64,2,11,40,192,12,33,40,32,2, 50,0,64,16,33,32,64,2,223,39,192,12, 33,40,32,2,92,37,192,12,0,0,0,0, 206,35,192,12,0,0,0,0,0,0,132,142, 3,131,5,60,212,12,165,140,3,131,6,60, 216,12,198,140,3,131,7,60,220,12,231,140, 20,35,192,12,0,0,0,0,16,0,64,16, 0,0,0,0,14,0,96,18,0,0,0,0, 3,131,2,60,248,12,66,140,3,131,1,60, 9,0,64,16,0,13,32,164,3,131,1,60, 72,37,192,12,4,13,32,164,1,0,2,36, 3,131,1,60,8,13,34,164,3,131,1,60, 10,13,32,164,3,131,2,60,228,12,66,140, 0,0,0,0,38,0,66,22,0,0,0,0, 254,39,192,12,33,32,32,2,52,36,192,12, 0,0,0,0,36,0,34,142,0,0,0,0, 30,0,64,16,0,0,0,0,206,39,192,12, 0,0,0,0,92,41,192,8,0,0,0,0, 3,131,4,60,33,32,144,0,40,13,132,140, 3,131,5,60,33,40,176,0,44,13,165,140, 3,131,6,60,216,12,198,140,3,131,7,60, 220,12,231,140,20,35,192,12,0,0,0,0, 12,0,64,20,0,0,0,0,3,131,3,60, 33,24,112,0,48,13,99,148,3,131,2,60, 33,16,80,0,16,13,66,148,0,0,0,0, 3,0,98,20,0,0,0,0,203,36,192,12, 33,32,64,2,36,0,191,143,32,0,180,143, 28,0,179,143,24,0,178,143,20,0,177,143, 16,0,176,143,8,0,224,3,40,0,189,39, 224,255,189,39,20,0,177,175,33,136,128,0, 16,0,176,175,192,129,17,0,24,0,191,175, 3,131,2,60,33,16,80,0,20,13,66,140, 0,0,0,0,28,0,64,16,0,0,0,0, 3,131,4,60,33,32,144,0,40,13,132,140, 3,131,5,60,33,40,176,0,44,13,165,140, 3,131,6,60,216,12,198,140,3,131,7,60, 220,12,231,140,20,35,192,12,0,0,0,0, 14,0,64,20,0,0,0,0,3,131,3,60, 33,24,112,0,48,13,99,148,3,131,2,60, 33,16,80,0,16,13,66,148,0,0,0,0, 5,0,98,20,0,0,0,0,161,36,192,12, 0,0,0,0,211,39,192,12,33,32,32,2, 24,0,191,143,20,0,177,143,16,0,176,143, 8,0,224,3,32,0,189,39,2,18,5,0, 0,0,130,160,8,0,224,3,1,0,133,160, 2,22,5,0,0,0,130,160,2,20,5,0, 1,0,130,160,2,18,5,0,2,0,130,160, 8,0,224,3,3,0,133,160,0,0,130,144, 1,0,131,144,0,18,2,0,8,0,224,3, 37,16,98,0,0,0,130,144,1,0,131,144, 2,0,133,144,0,22,2,0,0,28,3,0, 33,16,67,0,0,42,5,0,3,0,131,144, 33,16,69,0,8,0,224,3,37,16,67,0, 224,255,189,39,16,0,176,175,33,128,128,0, 24,0,191,175,20,0,177,175,48,129,135,39, 3,0,226,136,0,0,226,152,4,0,227,128, 5,0,228,128,3,0,2,170,0,0,2,186, 4,0,3,162,5,0,4,162,3,0,162,136, 0,0,162,152,4,0,163,128,5,0,164,128, 9,0,2,170,6,0,2,186,10,0,3,162, 11,0,4,162,12,0,4,38,38,0,5,36, 144,41,192,12,33,136,192,0,14,0,4,38, 144,41,192,12,66,66,5,36,17,0,4,38, 33,40,0,0,3,0,2,36,144,41,192,12, 16,0,2,162,19,0,0,162,20,0,0,162, 40,0,34,142,0,0,0,0,43,32,2,0, 36,0,34,142,0,0,0,0,3,0,64,16, 33,24,128,0,218,41,192,8,128,0,130,52, 33,16,96,0,21,0,2,162,4,0,37,150, 0,0,0,0,144,41,192,12,22,0,4,38, 9,0,34,138,6,0,34,154,10,0,35,130, 11,0,36,130,27,0,2,170,24,0,2,186, 28,0,3,162,29,0,4,162,12,0,37,142, 0,0,0,0,148,41,192,12,30,0,4,38, 16,0,37,150,0,0,0,0,144,41,192,12, 34,0,4,38,21,0,34,138,18,0,34,154, 22,0,35,130,23,0,36,130,39,0,2,170, 36,0,2,186,40,0,3,162,41,0,4,162, 24,0,37,150,0,0,0,0,144,41,192,12, 42,0,4,38,26,0,37,150,0,0,0,0, 144,41,192,12,44,0,4,38,28,0,37,150, 0,0,0,0,144,41,192,12,46,0,4,38, 30,0,37,150,0,0,0,0,144,41,192,12, 48,0,4,38,32,0,37,150,0,0,0,0, 144,41,192,12,50,0,4,38,52,0,2,36, 24,0,191,143,20,0,177,143,16,0,176,143, 8,0,224,3,32,0,189,39,224,255,189,39, 16,0,176,175,33,128,160,0,24,0,191,175, 20,0,177,175,21,0,2,146,33,136,128,0, 1,0,66,48,40,0,34,174,22,0,2,146, 22,0,4,38,128,0,66,48,156,41,192,12, 36,0,34,174,4,0,34,166,27,0,2,138, 24,0,2,154,28,0,3,130,29,0,4,130, 9,0,34,170,6,0,34,186,10,0,35,162, 11,0,36,162,161,41,192,12,30,0,4,38, 34,0,4,38,156,41,192,12,12,0,34,174, 16,0,34,166,39,0,2,138,36,0,2,154, 40,0,3,130,41,0,4,130,21,0,34,170, 18,0,34,186,22,0,35,162,23,0,36,162, 156,41,192,12,42,0,4,38,44,0,4,38, 156,41,192,12,24,0,34,166,46,0,4,38, 156,41,192,12,26,0,34,166,48,0,4,38, 156,41,192,12,28,0,34,166,50,0,4,38, 156,41,192,12,30,0,34,166,32,0,34,166, 24,0,191,143,20,0,177,143,16,0,176,143, 8,0,224,3,32,0,189,39,232,255,189,39, 16,0,176,175,33,128,128,0,20,0,191,175, 48,129,134,39,3,0,194,136,0,0,194,152, 4,0,195,128,5,0,196,128,3,0,2,170, 0,0,2,186,4,0,3,162,5,0,4,162, 3,0,162,136,0,0,162,152,4,0,163,128, 5,0,164,128,9,0,2,170,6,0,2,186, 10,0,3,162,11,0,4,162,12,0,4,38, 144,41,192,12,7,0,5,36,14,0,4,38, 144,41,192,12,66,66,5,36,17,0,4,38, 33,40,0,0,3,0,2,36,144,41,192,12, 16,0,2,162,21,0,2,36,128,0,3,36, 19,0,0,162,20,0,3,162,20,0,191,143, 16,0,176,143,8,0,224,3,24,0,189,39, 176,255,189,39,68,0,177,175,64,0,176,175, 33,128,160,0,72,0,191,175,14,0,3,146, 66,0,2,36,9,0,98,20,33,136,128,0, 15,0,2,146,0,0,0,0,6,0,67,20, 64,26,17,0,16,0,3,146,3,0,2,36, 11,0,98,16,0,0,0,0,64,26,17,0, 2,131,2,60,33,16,67,0,184,247,66,140, 0,0,0,0,1,0,66,36,2,131,1,60, 33,8,35,0,182,42,192,8,184,247,34,172, 20,0,3,146,0,0,0,0,5,0,96,16, 128,0,2,36,21,0,98,16,64,26,17,0, 179,42,192,8,0,0,0,0,16,0,164,39, 64,26,17,0,2,131,2,60,33,16,67,0, 180,247,66,140,0,0,0,0,1,0,66,36, 2,131,1,60,33,8,35,0,180,247,34,172, 17,42,192,12,33,40,0,2,33,32,32,2, 16,0,165,39,222,40,192,12,33,48,0,2, 182,42,192,8,0,0,0,0,2,131,2,60, 33,16,67,0,180,247,66,140,0,0,0,0, 1,0,66,36,2,131,1,60,33,8,35,0, 180,247,34,172,100,41,192,12,33,32,32,2, 182,42,192,8,0,0,0,0,112,129,132,39, 15,63,192,12,0,0,0,0,72,0,191,143, 68,0,177,143,64,0,176,143,8,0,224,3, 80,0,189,39,8,0,224,3,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0, 1,0,162,48,8,0,64,16,255,255,198,48, 67,40,5,0,64,16,5,0,33,16,68,0, 0,0,66,144,0,0,0,0,203,42,192,8, 33,48,194,0,67,40,5,0,255,255,165,36, 255,255,2,36,6,0,162,16,255,255,3,36, 0,0,130,148,2,0,132,36,255,255,165,36, 252,255,163,20,33,48,194,0,255,255,195,48, 2,20,6,0,33,48,98,0,255,255,195,48, 2,20,6,0,33,48,98,0,8,0,224,3, 255,255,194,48,208,255,189,39,16,0,176,175, 33,128,128,0,28,0,179,175,33,152,160,0, 24,0,178,175,33,144,192,0,36,0,181,175, 33,168,0,2,32,0,180,175,33,160,0,0, 40,0,191,175,20,0,177,175,12,0,3,142, 0,0,2,142,0,0,0,0,35,24,98,0, 42,16,114,0,2,0,64,16,33,136,64,2, 33,136,96,0,13,0,32,18,33,40,96,2, 35,144,81,2,8,0,2,142,0,0,4,142, 33,48,32,2,80,68,192,12,33,32,68,0, 8,0,2,142,0,0,2,142,0,0,2,142, 33,152,113,2,33,16,81,0,0,0,2,174, 0,0,2,142,0,0,0,0,4,0,64,18, 33,160,130,2,4,0,16,142,233,42,192,8, 0,0,0,0,18,0,180,166,33,16,0,2, 40,0,191,143,36,0,181,143,32,0,180,143, 28,0,179,143,24,0,178,143,20,0,177,143, 16,0,176,143,8,0,224,3,48,0,189,39, 224,255,189,39,24,0,178,175,33,144,128,0, 2,131,4,60,192,4,132,36,36,0,165,175, 1,0,5,36,28,0,191,175,20,0,177,175, 54,21,192,12,16,0,176,175,33,136,64,0, 8,0,32,22,33,40,0,0,2,131,2,60, 176,5,66,140,0,0,0,0,1,0,66,36, 2,131,1,60,102,43,192,8,176,5,34,172, 0,1,3,36,8,0,48,142,8,0,2,36, 16,0,2,166,6,0,2,36,18,0,2,162, 4,0,2,36,14,0,3,166,19,0,2,162, 20,0,3,166,2,131,6,60,212,4,198,36, 3,0,194,136,0,0,194,152,4,0,195,132, 25,0,2,170,22,0,2,186,26,0,3,166, 2,131,1,60,195,211,34,136,176,133,130,155, 0,0,0,0,31,0,2,170,28,0,2,186, 32,0,4,38,144,71,192,12,6,0,6,36, 39,0,162,139,36,0,162,155,0,0,0,0, 41,0,2,170,38,0,2,186,132,129,133,39, 3,0,162,136,0,0,162,152,4,0,163,128, 5,0,164,128,3,0,2,170,0,0,2,186, 4,0,3,162,5,0,4,162,2,131,5,60, 212,4,165,36,3,0,162,136,0,0,162,152, 4,0,163,128,5,0,164,128,9,0,2,170, 6,0,2,186,10,0,3,162,11,0,4,162, 33,32,64,2,8,6,2,36,12,0,2,166, 60,128,2,52,0,0,34,174,60,0,2,36, 18,0,34,166,74,21,192,12,33,40,32,2, 3,0,64,20,0,0,0,0,152,21,192,12, 33,32,32,2,28,0,191,143,24,0,178,143, 20,0,177,143,16,0,176,143,8,0,224,3, 32,0,189,39,216,255,189,39,32,0,180,175, 33,160,128,0,16,0,176,175,33,128,160,0, 36,0,191,175,28,0,179,175,24,0,178,175, 20,0,177,175,8,0,2,142,33,152,192,0, 33,136,83,0,6,0,35,150,0,1,4,36, 5,0,100,16,0,2,2,36,113,0,98,16, 0,0,0,0,15,44,192,8,0,0,0,0, 24,0,35,150,176,133,130,151,0,0,0,0, 139,0,98,20,0,0,0,0,26,0,35,150, 2,131,2,60,194,211,66,148,0,0,0,0, 133,0,98,20,0,0,0,0,0,0,34,150, 0,0,0,0,129,0,68,20,8,0,2,36, 2,0,35,150,0,0,0,0,125,0,98,20, 6,4,2,36,4,0,35,150,0,0,0,0, 121,0,98,20,0,0,0,0,2,131,4,60, 192,4,132,36,54,21,192,12,1,0,5,36, 33,144,64,0,8,0,64,22,0,0,0,0, 2,131,2,60,176,5,66,140,0,0,0,0, 1,0,66,36,2,131,1,60,15,44,192,8, 176,5,34,172,8,0,5,142,8,0,80,142, 9,0,162,136,6,0,162,152,10,0,163,128, 11,0,164,128,3,0,2,170,0,0,2,186, 4,0,3,162,5,0,4,162,2,131,6,60, 212,4,198,36,3,0,194,136,0,0,194,152, 4,0,195,128,5,0,196,128,9,0,2,170, 6,0,2,186,10,0,3,162,11,0,4,162, 12,0,4,38,12,0,165,36,33,128,19,2, 80,68,192,12,244,255,102,38,0,1,2,36, 0,0,2,166,8,0,2,36,2,0,2,166, 6,0,2,36,4,0,2,162,4,0,2,36, 5,0,2,162,0,2,2,36,6,0,2,166, 2,131,5,60,212,4,165,36,3,0,162,136, 0,0,162,152,4,0,163,132,11,0,2,170, 8,0,2,186,12,0,3,166,2,131,1,60, 195,211,34,136,176,133,130,155,0,0,0,0, 17,0,2,170,14,0,2,186,11,0,34,138, 8,0,34,154,12,0,35,134,21,0,2,170, 18,0,2,186,22,0,3,166,17,0,34,138, 14,0,34,154,0,0,0,0,27,0,2,170, 24,0,2,186,33,32,128,2,33,40,64,2, 60,128,2,52,0,0,66,174,60,0,2,36, 74,21,192,12,18,0,66,166,38,0,64,20, 0,0,0,0,152,21,192,12,33,32,64,2, 15,44,192,8,0,0,0,0,14,0,35,150, 196,133,130,151,0,0,0,0,29,0,98,20, 0,0,0,0,16,0,35,150,2,131,2,60, 214,211,66,148,0,0,0,0,23,0,98,20, 0,0,0,0,0,0,34,150,0,0,0,0, 19,0,68,20,8,0,2,36,2,0,35,150, 0,0,0,0,15,0,98,20,6,4,2,36, 4,0,35,150,0,0,0,0,11,0,98,20, 0,0,0,0,68,133,130,143,140,129,134,39, 11,0,35,138,8,0,35,154,12,0,36,134, 3,0,195,168,0,0,195,184,4,0,196,164, 20,0,66,36,152,129,130,175,36,0,191,143, 32,0,180,143,28,0,179,143,24,0,178,143, 20,0,177,143,16,0,176,143,8,0,224,3, 40,0,189,39,192,255,189,39,80,0,169,143, 84,0,168,143,56,0,180,175,33,160,128,0, 44,0,177,175,88,0,177,143,16,0,164,39, 52,0,179,175,92,0,179,143,3,131,3,60, 32,17,99,36,40,0,176,175,33,128,192,0, 60,0,191,175,48,0,178,175,0,0,98,140, 8,0,50,142,1,0,66,36,0,0,98,172, 3,0,162,136,0,0,162,152,4,0,163,128, 5,0,170,128,3,0,66,170,0,0,66,186, 4,0,67,162,5,0,74,162,2,131,10,60, 212,4,74,37,3,0,66,137,0,0,66,153, 4,0,67,129,5,0,69,129,9,0,66,170, 6,0,66,186,10,0,67,162,11,0,69,162, 69,0,2,36,16,0,162,163,17,0,168,163, 18,0,34,150,240,132,131,143,33,48,0,0, 25,0,169,163,20,0,66,36,0,66,2,0, 255,255,66,48,2,18,2,0,37,64,2,1, 0,74,3,0,255,255,98,48,2,18,2,0, 37,72,34,1,3,131,2,60,0,17,66,140, 22,0,160,167,26,0,160,167,18,0,168,167, 176,133,136,143,1,0,99,36,240,132,131,175, 20,0,169,167,24,0,162,163,28,0,168,175, 3,0,226,136,0,0,226,152,0,0,0,0, 35,0,162,171,32,0,162,187,192,42,192,12, 20,0,5,36,39,16,2,0,26,0,162,167, 14,0,2,36,44,0,2,22,8,0,2,36, 12,0,66,166,19,0,162,139,16,0,162,155, 23,0,163,139,20,0,163,155,27,0,164,139, 24,0,164,155,31,0,165,139,28,0,165,155, 17,0,66,170,14,0,66,186,21,0,67,170, 18,0,67,186,25,0,68,170,22,0,68,186, 29,0,69,170,26,0,69,186,35,0,162,139, 32,0,162,155,0,0,0,0,33,0,66,170, 30,0,66,186,34,0,2,36,0,0,34,174, 0,0,35,142,18,0,34,150,0,0,0,0, 33,16,67,0,18,0,34,166,18,0,34,150, 0,0,0,0,60,0,66,44,68,0,64,16, 33,32,128,2,0,0,98,142,18,0,35,150, 60,0,66,36,35,16,67,0,0,0,98,174, 60,0,2,36,18,0,34,166,201,44,192,8, 33,32,128,2,164,129,133,39,3,0,162,136, 0,0,162,152,4,0,163,128,5,0,164,128, 17,0,66,170,14,0,66,186,18,0,67,162, 19,0,68,162,8,0,2,36,20,0,66,166, 19,0,162,139,16,0,162,155,23,0,163,139, 20,0,163,155,27,0,164,139,24,0,164,155, 31,0,165,139,28,0,165,155,25,0,66,170, 22,0,66,186,29,0,67,170,26,0,67,186, 33,0,68,170,30,0,68,186,37,0,69,170, 34,0,69,186,35,0,162,139,32,0,162,155, 0,0,0,0,41,0,66,170,38,0,66,186, 42,0,2,36,0,0,34,174,0,0,35,142, 18,0,34,150,0,0,0,0,33,16,67,0, 18,0,34,166,18,0,34,150,0,0,0,0, 60,0,66,44,8,0,64,16,0,0,0,0, 0,0,98,142,18,0,35,150,60,0,66,36, 35,16,67,0,0,0,98,174,60,0,2,36, 18,0,34,166,18,0,34,150,0,0,0,0, 0,26,2,0,2,18,2,0,37,24,98,0, 12,0,67,166,33,32,128,2,74,21,192,12, 33,40,32,2,8,0,64,20,33,32,32,2, 3,131,3,60,36,17,99,36,0,0,98,140, 0,0,0,0,1,0,66,36,152,21,192,12, 0,0,98,172,60,0,191,143,56,0,180,143, 52,0,179,143,48,0,178,143,44,0,177,143, 40,0,176,143,8,0,224,3,64,0,189,39, 176,255,189,39,56,0,180,175,112,0,180,143, 48,0,178,175,100,0,178,143,52,0,179,175, 104,0,179,143,64,0,182,175,33,176,128,0, 72,0,190,175,33,240,160,0,60,0,181,175, 33,168,224,0,68,0,183,175,108,0,183,143, 2,131,4,60,192,4,132,36,76,0,191,175, 44,0,177,175,40,0,176,175,32,0,166,175, 7,2,130,38,2,130,2,0,54,21,192,12, 33,40,0,2,33,136,64,0,8,0,32,22, 0,74,18,0,2,131,4,60,232,146,132,36, 33,40,128,2,15,63,192,12,33,48,0,2, 74,45,192,8,0,0,0,0,255,255,66,50, 2,18,2,0,37,72,34,1,0,66,19,0, 255,255,98,50,2,18,2,0,37,64,2,1, 8,0,130,38,0,58,2,0,255,255,66,48, 2,18,2,0,37,56,226,0,0,163,4,60, 220,5,132,52,4,0,5,36,4,0,34,142, 0,17,6,36,8,0,80,140,4,0,35,142, 8,0,2,36,0,0,98,172,0,0,9,166, 2,0,8,166,6,0,0,166,192,42,192,12, 4,0,7,166,33,32,160,2,4,0,5,36, 192,42,192,12,255,255,70,48,4,0,4,38, 2,0,5,36,192,42,192,12,255,255,70,48, 33,32,0,2,8,0,5,36,192,42,192,12, 255,255,70,48,33,32,224,2,33,40,128,2, 192,42,192,12,255,255,70,48,39,24,2,0, 255,255,98,48,2,0,64,20,33,40,224,2, 255,255,3,52,6,0,3,166,4,0,36,142, 0,0,0,0,220,42,192,12,33,48,128,2, 33,32,192,2,0,0,67,140,33,40,192,3, 0,128,99,52,0,0,67,172,4,0,35,142, 32,0,166,143,18,0,99,148,33,56,160,2, 18,0,35,166,96,0,170,143,17,0,3,36, 16,0,163,175,24,0,177,175,28,0,162,175, 23,44,192,12,20,0,170,175,3,131,3,60, 124,17,99,36,0,0,98,140,0,0,0,0, 1,0,66,36,0,0,98,172,76,0,191,143, 72,0,190,143,68,0,183,143,64,0,182,143, 60,0,181,143,56,0,180,143,52,0,179,143, 48,0,178,143,44,0,177,143,40,0,176,143, 8,0,224,3,80,0,189,39,128,255,189,39, 116,0,183,175,33,184,128,0,112,0,182,175, 33,176,160,0,104,0,180,175,33,160,192,0, 108,0,181,175,33,168,224,0,40,0,164,39, 96,0,178,175,144,0,178,143,33,40,0,0, 100,0,179,175,148,0,179,143,16,0,6,36, 120,0,191,175,92,0,177,175,144,71,192,12, 88,0,176,175,56,0,177,39,33,32,32,2, 33,40,0,0,2,0,16,36,40,0,176,167, 2,0,162,150,0,0,0,0,42,0,162,167, 19,0,130,138,16,0,130,154,0,0,0,0, 47,0,162,171,44,0,162,187,144,71,192,12, 16,0,6,36,33,32,64,2,33,40,96,2, 40,0,166,39,33,56,32,2,56,0,176,167, 0,0,162,150,2,131,16,60,8,239,16,38, 58,0,162,167,15,0,130,138,12,0,130,154, 0,0,0,0,63,0,162,171,60,0,162,187, 242,5,2,36,84,0,162,167,72,0,162,39, 72,0,160,167,76,0,176,175,80,0,176,175, 247,71,192,12,16,0,162,175,255,255,3,36, 22,0,67,16,12,0,145,38,33,32,224,2, 6,0,197,38,35,48,150,2,0,0,163,150, 4,0,2,36,16,0,162,175,161,0,2,36, 20,0,162,175,28,0,176,175,0,18,3,0, 2,26,3,0,37,16,67,0,255,255,66,48, 24,0,162,175,80,0,162,143,76,0,163,143, 33,56,32,2,35,16,67,0,255,255,66,48, 220,44,192,12,32,0,162,175,120,0,191,143, 116,0,183,143,112,0,182,143,108,0,181,143, 104,0,180,143,100,0,179,143,96,0,178,143, 92,0,177,143,88,0,176,143,8,0,224,3, 128,0,189,39,196,133,130,143,184,255,189,39, 64,0,191,175,60,0,177,175,109,0,64,16, 56,0,176,175,255,255,3,36,106,0,67,16, 0,0,0,0,176,133,130,143,176,133,145,39, 102,0,64,16,0,0,0,0,100,0,67,16, 0,0,0,0,2,131,2,60,8,239,66,36, 44,0,162,175,48,0,162,175,242,5,2,36, 40,0,160,167,6,0,128,16,52,0,162,167, 1,0,2,36,23,0,130,16,0,0,0,0, 36,46,192,8,0,0,0,0,2,131,16,60, 160,204,16,38,156,71,192,12,33,32,0,2, 0,163,4,60,4,1,132,140,204,204,3,60, 205,204,99,52,25,0,131,0,33,40,32,2, 33,48,0,2,33,56,64,0,40,0,164,39, 16,64,0,0,194,16,8,0,0,0,0,0, 104,56,192,12,16,0,162,175,251,45,192,8, 33,24,64,0,3,131,2,60,28,18,66,148, 0,0,0,0,2,0,66,48,61,0,64,16, 0,0,0,0,2,131,16,60,160,204,16,38, 156,71,192,12,33,32,0,2,0,163,4,60, 4,1,132,140,204,204,3,60,205,204,99,52, 25,0,131,0,33,40,32,2,33,48,0,2, 33,56,64,0,40,0,164,39,16,64,0,0, 194,16,8,0,0,0,0,0,105,57,192,12, 16,0,162,175,33,24,64,0,255,255,2,36, 39,0,98,16,0,0,0,0,140,129,130,147, 0,0,0,0,1,0,66,48,7,0,64,20, 0,0,0,0,68,133,131,143,152,129,130,143, 0,0,0,0,43,16,67,0,11,0,64,16, 33,32,0,0,68,133,131,143,148,129,130,143, 0,0,0,0,6,0,98,16,33,32,0,0, 196,133,133,143,148,129,131,175,17,43,192,12, 33,32,0,0,33,32,0,0,140,129,133,39, 14,0,6,36,4,0,2,36,16,0,162,175, 162,0,2,36,20,0,162,175,24,0,162,175, 2,131,2,60,8,239,66,36,28,0,162,175, 48,0,162,143,44,0,163,143,196,133,135,39, 35,16,67,0,255,255,66,48,220,44,192,12, 32,0,162,175,64,0,191,143,60,0,177,143, 56,0,176,143,8,0,224,3,72,0,189,39, 208,255,189,39,36,0,179,175,33,152,128,0, 40,0,180,175,33,160,160,0,32,0,178,175, 24,0,176,175,33,128,224,0,44,0,191,175, 28,0,177,175,6,0,2,150,64,0,177,143, 0,0,0,0,20,0,64,16,33,144,192,0, 12,0,68,38,8,0,5,36,192,42,192,12, 0,17,6,36,4,0,4,38,2,0,5,36, 192,42,192,12,255,255,70,48,33,32,0,2, 33,40,32,2,192,42,192,12,255,255,70,48, 255,255,66,48,255,255,3,52,4,0,67,16, 0,0,0,0,3,131,3,60,111,46,192,8, 120,17,99,36,4,0,2,150,0,0,0,0, 0,26,2,0,2,18,2,0,37,24,98,0, 255,255,99,48,4,0,113,16,8,0,7,38, 3,131,3,60,111,46,192,8,120,17,99,36, 2,0,2,150,0,0,0,0,0,26,2,0, 2,18,2,0,37,24,98,0,255,255,99,48, 161,0,2,36,15,0,98,20,248,255,40,38, 33,32,96,2,33,40,128,2,3,131,3,60, 112,17,99,36,0,0,98,140,33,48,64,2, 16,0,167,175,33,56,0,2,20,0,168,175, 1,0,66,36,86,45,192,12,0,0,98,172, 115,46,192,8,0,0,0,0,3,131,3,60, 116,17,99,36,0,0,98,140,0,0,0,0, 1,0,66,36,0,0,98,172,44,0,191,143, 40,0,180,143,36,0,179,143,32,0,178,143, 28,0,177,143,24,0,176,143,8,0,224,3, 48,0,189,39,192,255,189,39,52,0,181,175, 33,168,128,0,44,0,179,175,33,152,160,0, 48,0,180,175,33,160,192,0,32,0,176,175, 33,128,224,0,33,32,0,2,33,48,0,0, 40,0,178,175,80,0,178,143,3,131,3,60, 144,16,99,36,56,0,191,175,36,0,177,175, 0,0,98,140,33,40,64,2,1,0,66,36, 192,42,192,12,0,0,98,172,255,255,66,48, 255,255,3,52,8,0,67,16,8,0,2,36, 3,131,2,60,148,16,66,140,0,0,0,0, 1,0,66,36,3,131,1,60,217,46,192,8, 148,16,34,172,0,0,3,150,0,0,0,0, 58,0,98,20,255,1,69,38,2,131,4,60, 192,4,132,36,3,131,2,60,172,16,66,140, 3,131,3,60,196,16,99,140,1,0,66,36, 1,0,99,36,3,131,1,60,172,16,34,172, 3,131,1,60,196,16,35,172,54,21,192,12, 2,42,5,0,33,136,64,0,8,0,32,22, 33,32,0,2,3,131,2,60,200,16,66,140, 0,0,0,0,1,0,66,36,3,131,1,60, 217,46,192,8,200,16,34,172,33,40,64,2, 33,48,0,0,0,0,0,162,192,42,192,12, 2,0,0,166,33,40,0,2,39,16,2,0, 2,0,162,164,4,0,36,142,0,0,0,0, 220,42,192,12,33,48,64,2,33,32,160,2, 6,0,101,38,35,48,147,2,0,0,67,140, 12,0,135,38,0,128,99,52,0,0,67,172, 1,0,3,36,18,0,50,166,16,0,163,175, 4,0,3,36,20,0,163,175,24,0,177,175, 23,44,192,12,28,0,162,175,3,131,2,60, 228,16,66,140,0,0,0,0,1,0,66,36, 3,131,1,60,228,16,34,172,56,0,191,143, 52,0,181,143,48,0,180,143,44,0,179,143, 40,0,178,143,36,0,177,143,32,0,176,143, 8,0,224,3,64,0,189,39,200,255,189,39, 44,0,181,175,33,168,128,0,3,131,3,60, 4,17,99,36,48,0,191,175,40,0,180,175, 36,0,179,175,32,0,178,175,28,0,177,175, 24,0,176,175,0,0,98,140,33,136,160,0, 1,0,66,36,0,0,98,172,18,0,34,150, 0,0,0,0,255,255,84,48,243,5,130,46, 8,0,64,20,33,152,192,0,3,131,2,60, 8,17,66,140,0,0,0,0,1,0,66,36, 3,131,1,60,132,47,192,8,8,17,34,172, 2,131,18,60,18,233,82,38,33,32,64,2, 0,0,48,142,8,0,37,142,255,63,16,50, 80,68,192,12,33,48,0,2,0,0,34,142, 0,0,0,0,0,128,66,48,5,0,64,20, 33,144,80,2,4,0,49,142,0,0,0,0, 1,47,192,8,33,32,64,2,2,131,18,60, 18,233,82,38,33,128,114,2,16,0,17,38, 33,32,32,2,176,133,133,39,168,71,192,12, 4,0,6,36,9,0,64,16,33,32,32,2, 128,129,133,39,168,71,192,12,4,0,6,36, 4,0,64,16,0,0,0,0,3,131,3,60, 128,47,192,8,12,17,99,36,0,0,4,146, 64,0,2,36,240,0,131,48,4,0,98,16, 15,0,130,48,3,131,3,60,128,47,192,8, 8,17,99,36,128,136,2,0,20,0,34,42, 4,0,64,16,33,32,0,2,3,131,3,60, 128,47,192,8,8,17,99,36,33,40,32,2, 192,42,192,12,33,48,0,0,255,255,66,48, 255,255,3,52,4,0,67,16,0,0,0,0, 3,131,3,60,128,47,192,8,8,17,99,36, 6,0,2,150,0,0,0,0,63,255,66,48, 18,0,64,16,33,56,17,2,3,131,3,60, 48,17,99,36,0,0,98,140,0,0,0,0, 1,0,66,36,0,0,98,172,3,131,2,60, 56,17,66,140,3,131,3,60,24,17,99,140, 1,0,66,36,1,0,99,36,3,131,1,60, 56,17,34,172,3,131,1,60,132,47,192,8, 24,17,35,172,2,0,2,150,0,0,0,0, 0,26,2,0,2,18,2,0,37,24,98,0, 255,255,99,48,35,64,113,0,35,16,242,0, 35,16,130,2,42,16,72,0,4,0,64,16, 1,0,2,36,3,131,3,60,128,47,192,8, 24,17,99,36,9,0,3,146,0,0,0,0, 5,0,98,16,17,0,2,36,15,0,98,16, 33,32,160,2,126,47,192,8,0,0,0,0, 33,32,160,2,33,40,64,2,3,131,3,60, 28,17,99,36,0,0,98,140,33,48,0,2, 16,0,168,175,1,0,66,36,123,46,192,12, 0,0,98,172,132,47,192,8,0,0,0,0, 33,40,64,2,3,131,3,60,28,17,99,36, 0,0,98,140,33,48,0,2,16,0,168,175, 1,0,66,36,41,46,192,12,0,0,98,172, 132,47,192,8,0,0,0,0,3,131,3,60, 20,17,99,36,0,0,98,140,0,0,0,0, 1,0,66,36,0,0,98,172,48,0,191,143, 44,0,181,143,40,0,180,143,36,0,179,143, 32,0,178,143,28,0,177,143,24,0,176,143, 8,0,224,3,56,0,189,39,232,255,189,39, 255,0,12,60,255,0,140,53,0,255,13,60, 0,255,173,53,16,0,176,175,3,131,16,60, 0,17,16,38,33,32,0,2,33,40,0,0, 0,163,9,60,220,5,41,141,0,163,10,60, 16,6,74,141,0,163,11,60,224,5,107,141, 20,0,191,175,0,28,9,0,2,20,9,0, 37,24,98,0,0,60,10,0,2,20,10,0, 37,56,226,0,0,68,11,0,2,20,11,0, 37,64,2,1,2,18,3,0,36,16,76,0, 0,26,3,0,36,24,109,0,37,16,67,0, 184,133,130,175,2,18,7,0,36,16,76,0, 0,58,7,0,36,56,237,0,37,16,71,0, 192,133,130,175,2,18,8,0,36,16,76,0, 0,66,8,0,36,64,13,1,37,16,72,0, 176,133,137,175,196,133,138,175,188,133,139,175, 180,133,130,175,144,71,192,12,76,0,6,36, 3,131,4,60,144,16,132,36,33,40,0,0, 32,0,2,36,0,0,2,174,10,0,2,36, 3,131,1,60,44,17,34,172,144,71,192,12, 104,0,6,36,3,131,4,60,112,17,132,36, 33,40,0,0,144,71,192,12,16,0,6,36, 3,131,4,60,80,17,132,36,33,40,0,0, 144,71,192,12,32,0,6,36,20,0,191,143, 16,0,176,143,8,0,224,3,24,0,189,39, 176,255,189,39,100,0,162,143,96,0,169,143, 72,0,182,175,33,176,128,0,48,0,176,175, 104,0,176,143,34,0,164,39,60,0,179,175, 108,0,179,143,3,131,3,60,104,17,99,36, 56,0,178,175,2,131,18,60,212,4,82,38, 52,0,177,175,33,136,192,0,68,0,181,175, 112,0,181,143,4,0,6,36,76,0,191,175, 64,0,180,175,0,66,2,0,255,255,66,48, 2,18,2,0,37,64,2,1,0,0,98,140, 8,0,116,142,1,0,66,36,0,0,98,172, 3,0,162,136,0,0,162,152,4,0,163,128, 5,0,170,128,3,0,130,170,0,0,130,186, 4,0,131,162,5,0,138,162,3,0,66,138, 0,0,66,154,4,0,67,130,5,0,69,130, 9,0,130,170,6,0,130,186,10,0,131,162, 11,0,133,162,255,255,2,52,16,0,162,167, 18,0,98,150,33,40,0,0,20,0,160,163, 21,0,160,163,30,0,66,36,0,26,2,0, 255,255,66,48,2,18,2,0,37,24,98,0, 18,0,163,167,3,0,226,136,0,0,226,152, 0,0,0,0,25,0,162,171,22,0,162,187, 3,0,34,137,0,0,34,153,4,0,35,129, 5,0,39,129,29,0,162,171,26,0,162,187, 30,0,163,163,31,0,167,163,144,71,192,12, 32,0,168,167,3,0,66,138,0,0,66,154, 4,0,67,134,41,0,162,171,38,0,162,187, 42,0,163,167,33,16,0,2,0,130,16,0, 255,255,66,48,2,18,2,0,37,128,2,2, 14,0,2,36,58,0,34,22,44,0,176,167, 18,0,162,151,0,0,0,0,12,0,130,166, 19,0,162,139,16,0,162,155,23,0,163,139, 20,0,163,155,27,0,164,139,24,0,164,155, 31,0,165,139,28,0,165,155,17,0,130,170, 14,0,130,186,21,0,131,170,18,0,131,186, 25,0,132,170,22,0,132,186,29,0,133,170, 26,0,133,186,35,0,162,139,32,0,162,155, 39,0,163,139,36,0,163,155,43,0,164,139, 40,0,164,155,44,0,165,131,33,0,130,170, 30,0,130,186,37,0,131,170,34,0,131,186, 41,0,132,170,38,0,132,186,42,0,133,162, 45,0,162,131,0,0,0,0,43,0,130,162, 44,0,2,36,0,0,98,174,0,0,99,142, 18,0,98,150,0,0,0,0,33,16,67,0, 18,0,98,166,18,0,98,150,0,0,0,0, 60,0,66,44,80,0,64,16,33,32,192,2, 0,0,162,142,18,0,99,150,60,0,66,36, 35,16,67,0,0,0,162,174,60,0,2,36, 18,0,98,166,172,48,192,8,33,32,192,2, 208,129,133,39,3,0,162,136,0,0,162,152, 4,0,163,128,5,0,164,128,17,0,130,170, 14,0,130,186,18,0,131,162,19,0,132,162, 129,55,2,36,20,0,130,166,19,0,162,139, 16,0,162,155,23,0,163,139,20,0,163,155, 27,0,164,139,24,0,164,155,31,0,165,139, 28,0,165,155,25,0,130,170,22,0,130,186, 29,0,131,170,26,0,131,186,33,0,132,170, 30,0,132,186,37,0,133,170,34,0,133,186, 35,0,162,139,32,0,162,155,39,0,163,139, 36,0,163,155,43,0,164,139,40,0,164,155, 44,0,165,131,41,0,130,170,38,0,130,186, 45,0,131,170,42,0,131,186,49,0,132,170, 46,0,132,186,50,0,133,162,45,0,162,131, 0,0,0,0,51,0,130,162,52,0,2,36, 0,0,98,174,0,0,99,142,18,0,98,150, 0,0,0,0,33,16,67,0,18,0,98,166, 18,0,98,150,0,0,0,0,60,0,66,44, 8,0,64,16,0,0,0,0,0,0,162,142, 18,0,99,150,60,0,66,36,35,16,67,0, 0,0,162,174,60,0,2,36,18,0,98,166, 18,0,98,150,0,0,0,0,0,26,2,0, 2,18,2,0,37,24,98,0,12,0,131,166, 33,32,192,2,74,21,192,12,33,40,96,2, 8,0,64,20,33,32,96,2,3,131,3,60, 108,17,99,36,0,0,98,140,0,0,0,0, 1,0,66,36,152,21,192,12,0,0,98,172, 76,0,191,143,72,0,182,143,68,0,181,143, 64,0,180,143,60,0,179,143,56,0,178,143, 52,0,177,143,48,0,176,143,8,0,224,3, 80,0,189,39,33,24,0,0,5,0,7,36, 58,0,6,36,0,0,162,144,0,0,0,0, 2,17,2,0,2,131,1,60,33,8,34,0, 176,155,34,144,0,0,0,0,0,0,130,160, 0,0,162,144,1,0,132,36,15,0,66,48, 2,131,1,60,33,8,34,0,176,155,34,144, 1,0,165,36,0,0,130,160,3,0,103,16, 1,0,132,36,0,0,134,160,1,0,132,36, 1,0,99,36,6,0,98,40,233,255,64,20, 0,0,0,0,8,0,224,3,0,0,0,0, 128,255,189,39,2,101,2,36,0,2,3,36, 112,0,176,175,44,0,176,39,33,32,0,2, 33,40,0,0,48,0,6,36,120,0,191,175, 116,0,177,175,40,0,162,167,144,71,192,12, 42,0,163,167,3,131,17,60,96,18,49,38, 2,131,5,60,224,147,165,36,188,71,192,12, 33,32,32,2,18,0,64,20,33,32,0,2, 2,131,5,60,236,147,165,36,0,0,162,140, 4,0,163,140,8,0,164,140,44,0,162,175, 48,0,163,175,52,0,164,175,12,0,162,128, 0,0,0,0,56,0,162,163,2,131,5,60, 212,4,165,36,193,48,192,12,56,0,164,39, 8,49,192,8,92,0,177,39,33,40,32,2, 204,63,192,12,48,0,6,36,92,0,177,39, 33,32,32,2,33,40,0,0,144,71,192,12, 4,0,6,36,2,131,4,60,212,4,132,36, 0,0,130,140,4,0,131,132,96,0,162,175, 100,0,163,167,4,82,2,36,0,1,3,36, 236,255,132,36,2,0,5,36,102,0,162,167, 54,21,192,12,104,0,163,167,33,128,64,0, 22,0,0,18,40,0,165,39,4,0,4,142, 0,0,0,0,220,42,192,12,66,0,6,36, 33,32,0,0,0,0,67,140,132,129,133,39, 0,128,99,52,0,0,67,172,4,0,3,142, 14,0,6,36,18,0,99,148,33,56,32,2, 18,0,3,166,82,4,3,36,16,0,165,175, 20,0,163,175,24,0,163,175,28,0,176,175, 214,47,192,12,32,0,162,175,120,0,191,143, 116,0,177,143,112,0,176,143,8,0,224,3, 128,0,189,39,144,255,189,39,104,0,180,175, 33,160,128,0,100,0,179,175,33,152,160,0, 92,0,177,175,33,136,192,0,33,32,224,0, 40,0,166,39,56,0,167,39,96,0,178,175, 2,131,18,60,8,239,82,38,88,0,176,175, 128,0,176,143,242,5,2,36,84,0,162,167, 72,0,162,39,108,0,191,175,72,0,160,167, 76,0,178,175,80,0,178,175,16,0,162,175, 247,71,192,12,33,40,0,2,255,255,3,36, 37,0,67,16,255,1,5,38,2,131,4,60, 192,4,132,36,54,21,192,12,2,42,5,0, 33,128,64,0,30,0,0,18,33,40,64,2, 80,0,166,143,76,0,162,143,4,0,4,142, 35,48,194,0,220,42,192,12,255,255,198,48, 33,32,128,2,0,0,67,140,6,0,101,38, 0,128,99,52,0,0,67,172,4,0,3,142, 35,48,51,2,18,0,99,148,18,0,39,38, 18,0,3,166,28,0,40,150,22,0,35,38, 16,0,163,175,15,144,3,52,24,0,163,175, 28,0,176,175,32,0,162,175,0,18,8,0, 2,66,8,0,37,16,72,0,255,255,66,48, 214,47,192,12,20,0,162,175,108,0,191,143, 104,0,180,143,100,0,179,143,96,0,178,143, 92,0,177,143,88,0,176,143,8,0,224,3, 112,0,189,39,200,255,189,39,44,0,181,175, 33,168,128,0,28,0,177,175,33,136,160,0, 48,0,191,175,40,0,180,175,36,0,179,175, 32,0,178,175,24,0,176,175,18,0,34,150, 0,0,0,0,255,255,84,48,243,5,130,46, 4,0,64,20,33,152,192,0,3,131,3,60, 241,49,192,8,84,17,99,36,2,131,18,60, 16,233,82,38,33,32,64,2,0,0,48,142, 8,0,37,142,255,63,16,50,80,68,192,12, 33,48,0,2,0,0,34,142,0,0,0,0, 0,128,66,48,5,0,64,20,33,144,80,2, 4,0,49,142,0,0,0,0,148,49,192,8, 33,32,64,2,2,131,2,60,16,233,66,36, 33,128,98,2,6,0,17,38,33,32,32,2, 0,163,5,60,224,5,165,52,168,71,192,12, 4,0,6,36,9,0,64,16,33,32,32,2, 224,129,133,39,168,71,192,12,4,0,6,36, 5,0,64,16,10,0,17,38,3,131,3,60, 241,49,192,8,88,17,99,36,10,0,17,38, 33,32,32,2,2,131,5,60,212,4,165,36, 168,71,192,12,6,0,6,36,9,0,64,16, 33,32,32,2,228,129,133,39,168,71,192,12, 6,0,6,36,4,0,64,16,0,0,0,0, 3,131,3,60,241,49,192,8,88,17,99,36, 0,0,3,150,255,255,2,52,4,0,98,16, 30,0,7,38,3,131,3,60,241,49,192,8, 88,17,99,36,2,0,2,150,2,131,5,60, 16,233,165,36,0,26,2,0,2,18,2,0, 37,24,98,0,255,255,99,48,226,255,104,36, 35,16,229,0,35,16,130,2,42,16,72,0, 4,0,64,16,0,0,0,0,3,131,3,60, 241,49,192,8,96,17,99,36,16,0,2,150, 0,0,0,0,0,26,2,0,2,18,2,0, 37,24,98,0,255,255,99,48,15,144,2,52, 11,0,98,20,33,32,160,2,3,131,3,60, 100,17,99,36,0,0,98,140,33,48,0,2, 16,0,168,175,1,0,66,36,54,49,192,12, 0,0,98,172,245,49,192,8,0,0,0,0, 3,131,3,60,92,17,99,36,0,0,98,140, 0,0,0,0,1,0,66,36,0,0,98,172, 48,0,191,143,44,0,181,143,40,0,180,143, 36,0,179,143,32,0,178,143,28,0,177,143, 24,0,176,143,8,0,224,3,56,0,189,39, 0,0,0,0,0,0,0,0,232,255,189,39, 16,0,191,175,13,8,192,12,0,8,4,36, 8,133,130,175,16,0,191,143,24,0,189,39, 8,0,224,3,0,0,0,0,232,255,189,39, 45,0,128,16,16,0,191,175,240,129,133,143, 7,0,130,36,194,16,2,0,10,0,160,20, 1,0,70,36,8,133,133,143,0,133,130,39, 0,133,133,175,0,0,162,172,0,8,2,36, 240,129,133,175,2,131,1,60,20,211,32,172, 4,0,162,172,0,0,164,140,0,0,0,0, 4,0,131,140,0,0,0,0,43,16,102,0, 14,0,64,20,0,0,0,0,5,0,102,20, 35,16,102,0,0,0,130,140,0,0,0,0, 43,50,192,8,0,0,162,172,4,0,130,172, 192,16,2,0,33,32,130,0,4,0,134,172, 240,129,133,175,57,50,192,8,8,0,130,36, 240,129,130,143,0,0,0,0,4,0,130,16, 33,40,128,0,0,0,132,140,28,50,192,8, 0,0,0,0,2,131,4,60,15,63,192,12, 64,148,132,36,33,16,0,0,16,0,191,143, 24,0,189,39,8,0,224,3,0,0,0,0, 56,0,128,16,248,255,132,36,240,129,133,143, 0,0,0,0,78,50,192,8,43,16,164,0, 0,0,163,140,0,0,0,0,43,16,163,0, 5,0,64,20,43,16,164,0,12,0,64,20, 43,16,131,0,10,0,64,20,0,0,0,0, 33,40,96,0,43,16,164,0,244,255,64,16, 0,0,0,0,0,0,162,140,0,0,0,0, 43,16,130,0,239,255,64,16,0,0,0,0, 4,0,134,140,0,0,163,140,192,16,6,0, 33,16,130,0,11,0,67,20,0,0,0,0, 4,0,98,140,0,0,0,0,33,16,194,0, 4,0,130,172,0,0,162,140,0,0,0,0, 0,0,66,140,0,0,0,0,102,50,192,8, 0,0,130,172,0,0,131,172,4,0,163,140, 0,0,0,0,192,16,3,0,33,16,162,0, 9,0,68,20,0,0,0,0,4,0,130,140, 0,0,0,0,33,16,98,0,4,0,162,172, 0,0,130,140,0,0,0,0,117,50,192,8, 0,0,162,172,0,0,164,172,240,129,133,175, 8,0,224,3,0,0,0,0,232,255,189,39, 16,0,191,175,0,50,192,12,0,0,0,0, 178,45,192,12,33,32,0,0,16,0,191,143, 24,0,189,39,8,0,224,3,0,0,0,0, 1,0,3,36,5,0,195,20,255,255,2,36, 0,0,226,140,0,0,0,0,43,16,2,0, 35,16,2,0,8,0,224,3,0,0,0,0, 224,255,189,39,16,0,176,175,33,128,224,0, 20,0,177,175,48,0,177,143,1,0,2,36, 5,0,162,20,24,0,191,175,0,0,194,140, 0,0,0,0,8,0,64,16,0,0,0,0, 11,0,2,36,33,32,0,2,33,40,32,2, 48,72,192,12,96,0,2,174,1,0,66,36, 100,0,2,174,17,0,34,146,0,0,0,0, 1,0,66,52,17,0,34,162,24,0,191,143, 20,0,177,143,16,0,176,143,8,0,224,3, 32,0,189,39,8,0,224,3,0,0,0,0, 16,0,163,143,0,0,0,0,17,0,98,144, 0,0,0,0,2,0,66,52,8,0,224,3, 17,0,98,160,8,0,224,3,0,0,0,0, 224,255,189,39,16,0,176,175,33,128,128,0, 244,129,131,151,255,0,2,36,28,0,191,175, 24,0,178,175,20,0,177,175,4,0,2,174, 60,0,0,174,1,0,98,36,244,129,130,167, 10,0,3,166,3,0,162,136,0,0,162,152, 7,0,163,136,4,0,163,152,11,0,164,136, 8,0,164,152,15,0,167,136,12,0,167,152, 15,0,2,170,12,0,2,186,19,0,3,170, 16,0,3,186,23,0,4,170,20,0,4,186, 27,0,7,170,24,0,7,186,3,0,194,136, 0,0,194,152,7,0,195,136,4,0,195,152, 11,0,196,136,8,0,196,152,15,0,197,136, 12,0,197,152,31,0,2,170,28,0,2,186, 35,0,3,170,32,0,3,186,39,0,4,170, 36,0,4,186,43,0,5,170,40,0,5,186, 80,0,2,142,76,0,3,142,0,0,0,0, 35,16,67,0,255,255,81,48,88,0,3,150, 3,0,2,36,13,0,98,16,0,0,0,0, 2,131,18,60,160,204,82,38,156,71,192,12, 33,32,64,2,7,0,81,20,33,32,64,2, 76,0,5,142,0,0,0,0,168,71,192,12, 33,48,32,2,21,0,64,16,33,16,0,0, 2,131,18,60,192,204,82,38,156,71,192,12, 33,32,64,2,7,0,81,20,33,32,64,2, 76,0,5,142,0,0,0,0,168,71,192,12, 33,48,32,2,9,0,64,16,33,16,0,0, 3,131,3,60,132,17,99,36,0,0,98,140, 1,0,4,36,1,0,66,36,178,45,192,12, 0,0,98,172,1,0,2,36,28,0,191,143, 24,0,178,143,20,0,177,143,16,0,176,143, 8,0,224,3,32,0,189,39,0,0,0,0, 0,0,0,0,224,255,189,39,20,0,177,175, 33,136,224,0,16,0,176,175,48,0,176,143, 24,0,191,175,156,71,192,12,33,32,32,2, 0,0,2,174,33,16,32,2,24,0,191,143, 20,0,177,143,16,0,176,143,8,0,224,3, 32,0,189,39,8,0,224,3,33,16,224,0, 0,0,227,140,204,204,2,60,205,204,66,52, 25,0,98,0,16,32,0,0,0,0,0,0, 0,0,0,0,8,0,224,3,194,16,4,0, 224,255,189,39,16,0,176,175,33,128,224,0, 33,32,0,2,33,40,0,0,20,0,177,175, 48,0,177,143,24,0,191,175,208,71,192,12, 16,0,6,36,2,0,64,20,35,16,80,0, 16,0,2,36,0,0,34,174,33,16,0,2, 24,0,191,143,20,0,177,143,16,0,176,143, 8,0,224,3,32,0,189,39,232,255,189,39, 40,0,164,143,44,0,165,143,16,0,191,175, 205,59,192,12,0,0,0,0,16,0,191,143, 24,0,189,39,8,0,224,3,0,0,0,0, 232,255,189,39,40,0,164,143,44,0,165,143, 16,0,191,175,239,59,192,12,0,0,0,0, 16,0,191,143,24,0,189,39,8,0,224,3, 0,0,0,0,232,255,189,39,40,0,164,143, 44,0,165,143,16,0,191,175,17,60,192,12, 0,0,0,0,16,0,191,143,24,0,189,39, 8,0,224,3,0,0,0,0,8,0,224,3, 33,16,224,0,0,0,226,140,8,0,224,3, 0,0,0,0,216,255,189,39,24,0,176,175, 56,0,176,143,32,0,191,175,28,0,177,175, 36,0,2,142,1,0,3,36,20,0,81,140, 187,0,163,20,0,0,0,0,0,0,195,140, 0,0,0,0,183,0,96,16,0,0,0,0, 32,133,130,143,0,0,0,0,43,16,67,0, 178,0,64,20,255,255,104,36,64,18,8,0, 2,131,3,60,192,246,99,36,33,40,67,0, 255,255,132,36,22,0,130,44,170,0,64,16, 128,16,4,0,2,131,1,60,33,8,34,0, 144,148,34,140,0,0,0,0,8,0,64,0, 0,0,0,0,2,0,2,36,16,0,2,162, 17,0,2,146,0,0,195,140,0,0,0,0, 15,52,192,8,2,0,66,52,33,32,32,2, 17,0,3,146,4,0,2,36,16,0,2,162, 40,0,0,166,44,0,17,174,2,0,99,52, 156,71,192,12,17,0,3,162,255,255,66,48, 33,16,34,2,48,0,2,174,40,52,192,8, 52,0,0,166,17,0,3,146,2,0,2,36, 16,0,2,162,243,51,192,8,40,0,17,174, 17,0,3,146,2,0,2,36,16,0,2,162, 243,51,192,8,40,0,17,174,66,0,2,36, 13,0,0,21,16,0,2,162,24,133,132,143, 0,0,0,0,64,25,4,0,35,24,100,0, 128,17,3,0,35,16,67,0,192,16,2,0, 33,16,68,0,128,24,2,0,33,16,67,0, 178,51,192,8,192,17,2,0,152,0,2,60, 128,150,66,52,40,0,2,174,17,0,2,146, 0,0,0,0,199,51,192,8,2,0,66,52, 17,0,3,146,4,0,2,36,16,0,2,162, 20,0,162,36,44,0,2,174,26,0,162,36, 40,0,0,166,48,0,2,174,243,51,192,8, 52,0,0,166,2,0,2,36,16,0,2,162, 17,0,2,146,1,0,3,36,40,0,3,174, 2,0,66,52,40,52,192,8,17,0,2,162, 17,0,3,146,0,0,0,0,241,51,192,8, 67,0,2,36,65,0,2,36,16,0,2,162, 17,0,2,146,168,0,163,140,0,0,0,0, 15,52,192,8,2,0,66,52,65,0,2,36, 16,0,2,162,156,0,162,140,0,1,164,140, 22,52,192,8,0,0,0,0,65,0,2,36, 16,0,2,162,17,0,2,146,0,1,163,140, 0,0,0,0,15,52,192,8,2,0,66,52, 65,0,2,36,16,0,2,162,17,0,2,146, 164,0,163,140,0,0,0,0,15,52,192,8, 2,0,66,52,65,0,2,36,16,0,2,162, 17,0,2,146,160,0,163,140,0,0,0,0, 15,52,192,8,2,0,66,52,17,0,3,146, 65,0,2,36,16,0,2,162,40,0,0,174, 2,0,99,52,40,52,192,8,17,0,3,162, 65,0,2,36,16,0,2,162,172,0,162,140, 4,1,164,140,22,52,192,8,0,0,0,0, 65,0,2,36,16,0,2,162,17,0,2,146, 4,1,163,140,0,0,0,0,15,52,192,8, 2,0,66,52,65,0,2,36,16,0,2,162, 17,0,2,146,184,0,163,140,0,0,0,0, 15,52,192,8,2,0,66,52,65,0,2,36, 16,0,2,162,17,0,2,146,188,0,163,140, 2,0,66,52,40,0,3,174,40,52,192,8, 17,0,2,162,66,0,2,36,16,0,2,162, 172,0,162,140,176,0,164,140,17,0,3,146, 35,16,68,0,2,0,99,52,40,0,2,174, 40,52,192,8,17,0,3,162,16,0,160,175, 33,32,224,0,33,40,0,2,2,131,7,60, 96,204,231,36,226,76,192,12,2,0,6,36, 40,52,192,8,0,0,0,0,33,32,224,0, 200,76,192,12,33,40,0,2,32,0,191,143, 28,0,177,143,24,0,176,143,8,0,224,3, 40,0,189,39,224,255,189,39,16,0,176,175, 33,128,224,0,20,0,177,175,48,0,177,143, 1,0,2,36,10,0,162,20,24,0,191,175, 0,0,198,140,0,0,0,0,6,0,192,16, 0,0,0,0,32,133,130,143,0,0,0,0, 43,16,70,0,5,0,64,16,7,0,2,36, 33,32,0,2,33,40,32,2,70,52,192,8, 11,0,2,36,7,0,130,16,33,32,0,2, 33,40,32,2,17,0,2,36,48,72,192,12, 96,0,2,174,1,0,66,36,100,0,2,174, 17,0,34,146,0,0,0,0,1,0,66,52, 17,0,34,162,24,0,191,143,20,0,177,143, 16,0,176,143,8,0,224,3,32,0,189,39, 208,255,189,39,32,0,176,175,64,0,176,143, 36,0,177,175,33,136,224,0,4,0,160,20, 40,0,191,175,1,0,2,36,106,52,192,8, 24,0,162,175,0,0,198,140,32,133,130,143, 0,0,0,0,43,16,194,0,3,0,64,16, 1,0,194,36,106,52,192,8,24,0,162,175, 17,0,2,146,0,0,0,0,18,0,66,52, 116,52,192,8,17,0,2,162,16,0,176,175, 1,0,5,36,24,0,166,39,97,51,192,12, 33,56,32,2,33,32,32,2,33,40,0,2, 1,0,6,36,253,76,192,12,24,0,167,39, 40,0,191,143,36,0,177,143,32,0,176,143, 8,0,224,3,48,0,189,39,16,0,163,143, 1,0,2,36,13,0,162,20,14,0,2,36, 0,0,198,140,0,0,0,0,9,0,192,16, 0,0,0,0,32,133,130,143,0,0,0,0, 43,16,70,0,4,0,64,20,14,0,2,36, 7,0,2,36,2,0,130,16,14,0,2,36, 96,0,226,172,17,0,98,144,0,0,0,0, 2,0,66,52,8,0,224,3,17,0,98,160, 16,0,162,143,0,0,0,0,8,0,224,3, 0,0,226,172,0,0,226,140,8,0,224,3, 0,0,0,0,232,255,189,39,40,0,168,143, 1,0,2,36,61,0,162,20,16,0,191,175, 0,0,197,140,0,0,0,0,57,0,160,16, 0,0,0,0,32,133,130,143,0,0,0,0, 43,16,69,0,52,0,64,20,255,255,132,36, 5,0,130,44,49,0,64,16,128,16,4,0, 2,131,1,60,33,8,34,0,232,148,34,140, 0,0,0,0,8,0,64,0,0,0,0,0, 64,0,2,36,16,0,2,161,0,163,5,60, 220,5,165,52,3,0,162,136,0,0,162,152, 0,0,0,0,43,0,2,169,40,0,2,185, 17,0,2,145,0,0,0,0,213,52,192,8, 2,0,66,52,2,0,2,36,16,0,2,161, 17,0,2,145,0,0,195,140,0,0,0,0, 198,52,192,8,2,0,66,52,64,0,2,36, 16,0,2,161,17,0,2,145,128,132,131,143, 2,0,66,52,40,0,3,173,218,52,192,8, 17,0,2,161,2,0,2,36,16,0,2,161, 17,0,2,145,0,0,0,0,211,52,192,8, 1,0,3,36,2,0,2,36,16,0,2,161, 17,0,2,145,220,5,3,36,40,0,3,173, 2,0,66,52,218,52,192,8,17,0,2,161, 33,32,224,0,200,76,192,12,33,40,0,1, 16,0,191,143,24,0,189,39,8,0,224,3, 0,0,0,0,208,255,189,39,32,0,176,175, 64,0,176,143,36,0,177,175,33,136,224,0, 4,0,160,20,40,0,191,175,1,0,2,36, 245,52,192,8,24,0,162,175,0,0,198,140, 32,133,130,143,0,0,0,0,43,16,194,0, 3,0,64,16,1,0,194,36,245,52,192,8, 24,0,162,175,17,0,2,146,0,0,0,0, 18,0,66,52,255,52,192,8,17,0,2,162, 16,0,176,175,1,0,5,36,24,0,166,39, 150,52,192,12,33,56,32,2,33,32,32,2, 33,40,0,2,1,0,6,36,253,76,192,12, 24,0,167,39,40,0,191,143,36,0,177,143, 32,0,176,143,8,0,224,3,48,0,189,39, 232,255,189,39,40,0,165,143,16,0,191,175, 200,76,192,12,33,32,224,0,16,0,191,143, 24,0,189,39,8,0,224,3,0,0,0,0, 16,0,163,143,14,0,2,36,96,0,226,172, 17,0,98,144,0,0,0,0,2,0,66,52, 8,0,224,3,17,0,98,160,224,255,189,39, 16,0,176,175,33,128,224,0,17,0,2,36, 24,0,191,175,20,0,177,175,96,0,2,174, 48,0,177,143,33,32,0,2,48,72,192,12, 33,40,32,2,1,0,66,36,100,0,2,174, 17,0,34,146,0,0,0,0,1,0,66,52, 17,0,34,162,24,0,191,143,20,0,177,143, 16,0,176,143,8,0,224,3,32,0,189,39, 16,0,163,143,0,0,0,0,17,0,98,144, 0,0,0,0,18,0,66,52,8,0,224,3, 17,0,98,160,8,0,224,3,33,16,224,0, 224,255,189,39,48,0,168,143,1,0,2,36, 114,0,162,20,24,0,191,175,0,0,195,140, 0,0,0,0,110,0,96,16,0,0,0,0, 32,133,130,143,0,0,0,0,43,16,67,0, 105,0,64,20,255,255,98,36,64,18,2,0, 2,131,3,60,192,246,99,36,33,24,67,0, 255,255,132,36,17,0,130,44,97,0,64,16, 128,16,4,0,2,131,1,60,33,8,34,0, 0,149,34,140,0,0,0,0,8,0,64,0, 0,0,0,0,2,0,2,36,16,0,2,161, 17,0,2,145,0,0,195,140,0,0,0,0, 140,53,192,8,2,0,66,52,2,0,2,36, 16,0,2,161,44,0,99,140,17,0,2,145, 16,0,99,140,0,0,0,0,101,53,192,8, 2,0,66,52,2,0,2,36,16,0,2,161, 44,0,99,140,17,0,2,145,12,0,99,140, 2,0,66,52,17,0,2,161,173,53,192,8, 40,0,3,173,2,0,2,36,16,0,2,161, 17,0,2,145,212,0,99,140,0,0,0,0, 140,53,192,8,2,0,66,52,2,0,2,36, 16,0,2,161,17,0,2,145,192,0,99,140, 0,0,0,0,140,53,192,8,2,0,66,52, 2,0,2,36,16,0,2,161,17,0,2,145, 208,0,99,140,0,0,0,0,140,53,192,8, 2,0,66,52,2,0,2,36,16,0,2,161, 204,0,98,140,184,0,100,140,17,0,3,145, 33,16,68,0,2,0,99,52,40,0,2,173, 173,53,192,8,17,0,3,161,2,0,2,36, 16,0,2,161,17,0,2,145,196,0,99,140, 2,0,66,52,40,0,3,173,173,53,192,8, 17,0,2,161,17,0,3,145,2,0,2,36, 16,0,2,161,40,0,0,173,2,0,99,52, 173,53,192,8,17,0,3,161,2,0,2,36, 16,0,2,161,44,0,100,140,17,0,2,145, 20,0,131,140,24,0,132,140,2,0,66,52, 17,0,2,161,33,24,100,0,173,53,192,8, 40,0,3,173,16,0,160,175,33,32,224,0, 33,40,0,1,2,131,7,60,104,204,231,36, 226,76,192,12,11,0,6,36,173,53,192,8, 0,0,0,0,33,32,224,0,200,76,192,12, 33,40,0,1,24,0,191,143,32,0,189,39, 8,0,224,3,0,0,0,0,208,255,189,39, 32,0,176,175,64,0,176,143,36,0,177,175, 33,136,224,0,4,0,160,20,40,0,191,175, 1,0,2,36,200,53,192,8,24,0,162,175, 0,0,198,140,32,133,130,143,0,0,0,0, 43,16,194,0,3,0,64,16,1,0,194,36, 200,53,192,8,24,0,162,175,17,0,2,146, 0,0,0,0,18,0,66,52,210,53,192,8, 17,0,2,162,16,0,176,175,1,0,5,36, 24,0,166,39,52,53,192,12,33,56,32,2, 33,32,32,2,33,40,0,2,1,0,6,36, 253,76,192,12,24,0,167,39,40,0,191,143, 36,0,177,143,32,0,176,143,8,0,224,3, 48,0,189,39,0,0,226,140,8,0,224,3, 0,0,0,0,3,131,2,60,28,18,66,148, 0,0,0,0,2,0,66,48,2,0,64,16, 2,0,3,36,1,0,3,36,8,0,224,3, 33,16,96,0,232,255,189,39,40,0,164,143, 16,0,191,175,1,0,132,56,186,59,192,12, 1,0,132,44,16,0,191,143,24,0,189,39, 8,0,224,3,0,0,0,0,16,0,163,143, 6,0,2,36,0,0,98,172,8,0,224,3, 33,16,224,0,224,255,189,39,48,0,168,143, 1,0,2,36,52,0,162,20,24,0,191,175, 0,0,197,140,0,0,0,0,48,0,160,16, 0,0,0,0,24,133,130,143,0,0,0,0, 43,16,69,0,43,0,64,20,255,255,132,36, 5,0,130,44,40,0,64,16,128,16,4,0, 2,131,1,60,33,8,34,0,72,149,34,140, 0,0,0,0,8,0,64,0,0,0,0,0, 2,0,2,36,16,0,2,161,17,0,2,145, 0,0,195,140,2,0,66,52,40,0,3,173, 45,54,192,8,17,0,2,161,2,0,2,36, 16,0,2,161,0,0,194,140,17,0,3,145, 1,0,66,36,2,0,99,52,40,0,2,173, 45,54,192,8,17,0,3,161,16,0,160,175, 33,32,224,0,33,40,0,1,2,131,7,60, 148,204,231,36,226,76,192,12,2,0,6,36, 45,54,192,8,0,0,0,0,17,0,3,145, 2,0,2,36,16,0,2,161,40,0,0,173, 2,0,99,52,45,54,192,8,17,0,3,161, 33,32,224,0,200,76,192,12,33,40,0,1, 24,0,191,143,32,0,189,39,8,0,224,3, 0,0,0,0,208,255,189,39,32,0,176,175, 64,0,176,143,36,0,177,175,33,136,224,0, 4,0,160,20,40,0,191,175,1,0,2,36, 72,54,192,8,24,0,162,175,0,0,198,140, 24,133,130,143,0,0,0,0,43,16,194,0, 3,0,64,16,1,0,194,36,72,54,192,8, 24,0,162,175,17,0,2,146,0,0,0,0, 18,0,66,52,82,54,192,8,17,0,2,162, 16,0,176,175,1,0,5,36,24,0,166,39, 242,53,192,12,33,56,32,2,33,32,32,2, 33,40,0,2,1,0,6,36,253,76,192,12, 24,0,167,39,40,0,191,143,36,0,177,143, 32,0,176,143,8,0,224,3,48,0,189,39, 0,0,226,148,8,0,224,3,0,0,0,0, 8,0,224,3,33,16,224,0,16,0,163,143, 8,0,2,36,0,0,98,172,8,0,224,3, 33,16,224,0,224,255,189,39,16,0,176,175, 48,0,176,143,1,0,2,36,24,0,191,175, 126,0,162,20,20,0,177,175,0,0,198,140, 0,0,0,0,122,0,192,16,0,0,0,0, 24,133,130,143,0,0,0,0,43,16,70,0, 117,0,64,20,192,17,6,0,3,131,3,60, 16,13,99,36,33,136,67,0,255,255,132,36, 10,0,130,44,110,0,64,16,128,16,4,0, 2,131,1,60,33,8,34,0,96,149,34,140, 0,0,0,0,8,0,64,0,0,0,0,0, 17,0,3,146,2,0,2,36,16,0,2,162, 211,54,192,8,40,0,6,174,2,0,2,36, 16,0,2,162,0,0,34,150,17,0,3,146, 0,0,0,0,143,54,192,8,2,18,2,0, 2,0,2,36,16,0,2,162,4,0,34,142, 17,0,3,146,1,0,66,36,2,0,99,52, 40,0,2,174,232,54,192,8,17,0,3,162, 2,0,2,36,16,0,2,162,4,0,34,142, 0,0,0,0,2,0,64,16,2,0,3,36, 1,0,3,36,17,0,2,146,40,0,3,174, 2,0,66,52,232,54,192,8,17,0,2,162, 2,0,2,36,16,0,2,162,17,0,2,146, 8,0,35,142,0,0,0,0,226,54,192,8, 2,0,66,52,9,50,192,12,8,0,4,36, 33,48,64,0,15,0,34,138,12,0,34,154, 19,0,35,138,16,0,35,154,3,0,194,168, 0,0,194,184,7,0,195,168,196,54,192,8, 4,0,195,184,2,0,2,36,16,0,2,162, 17,0,2,146,20,0,35,142,0,0,0,0, 226,54,192,8,2,0,66,52,9,50,192,12, 8,0,4,36,33,48,64,0,27,0,34,138, 24,0,34,154,31,0,35,138,28,0,35,154, 3,0,194,168,0,0,194,184,7,0,195,168, 4,0,195,184,0,0,194,148,0,0,0,0, 0,26,2,0,2,18,2,0,37,24,98,0, 0,0,195,164,17,0,3,146,4,0,2,36, 16,0,2,162,1,0,2,36,40,0,2,166, 8,0,194,36,44,0,6,174,48,0,2,174, 52,0,0,166,2,0,99,52,232,54,192,8, 17,0,3,162,2,0,2,36,16,0,2,162, 17,0,2,146,32,0,35,150,0,0,0,0, 226,54,192,8,2,0,66,52,2,0,2,36, 16,0,2,162,17,0,2,146,104,0,35,142, 2,0,66,52,40,0,3,174,232,54,192,8, 17,0,2,162,33,32,224,0,200,76,192,12, 33,40,0,2,24,0,191,143,20,0,177,143, 16,0,176,143,8,0,224,3,32,0,189,39, 224,255,189,39,16,0,176,175,33,128,224,0, 20,0,177,175,48,0,177,143,1,0,2,36, 10,0,162,20,24,0,191,175,0,0,198,140, 0,0,0,0,6,0,192,16,0,0,0,0, 24,133,130,143,0,0,0,0,43,16,70,0, 5,0,64,16,2,0,2,36,33,32,0,2, 33,40,32,2,13,55,192,8,11,0,2,36, 14,0,130,16,2,0,130,44,5,0,64,20, 6,0,130,44,3,0,64,16,4,0,130,44, 8,0,64,16,0,0,0,0,33,32,0,2, 33,40,32,2,17,0,2,36,48,72,192,12, 96,0,2,174,1,0,66,36,100,0,2,174, 17,0,34,146,0,0,0,0,1,0,66,52, 17,0,34,162,24,0,191,143,20,0,177,143, 16,0,176,143,8,0,224,3,32,0,189,39, 208,255,189,39,32,0,176,175,64,0,176,143, 36,0,177,175,33,136,224,0,4,0,160,20, 40,0,191,175,1,0,2,36,49,55,192,8, 24,0,162,175,0,0,198,140,24,133,130,143, 0,0,0,0,43,16,194,0,3,0,64,16, 1,0,194,36,49,55,192,8,24,0,162,175, 17,0,2,146,0,0,0,0,18,0,66,52, 59,55,192,8,17,0,2,162,16,0,176,175, 1,0,5,36,24,0,166,39,97,54,192,12, 33,56,32,2,33,32,32,2,33,40,0,2, 1,0,6,36,253,76,192,12,24,0,167,39, 40,0,191,143,36,0,177,143,32,0,176,143, 8,0,224,3,48,0,189,39,232,255,189,39, 33,64,128,0,16,0,176,175,40,0,176,143, 1,0,2,36,57,0,162,20,20,0,191,175, 0,0,196,140,0,0,0,0,54,0,128,16, 14,0,2,36,24,133,130,143,0,0,0,0, 43,16,68,0,49,0,64,20,14,0,2,36, 192,17,4,0,3,131,3,60,16,13,99,36, 33,48,67,0,4,0,2,36,21,0,2,17, 5,0,2,45,5,0,64,16,2,0,2,36, 8,0,2,17,14,0,2,36,129,55,192,8, 96,0,226,172,5,0,2,36,28,0,2,17, 14,0,2,36,129,55,192,8,96,0,226,172, 0,0,195,144,0,0,0,0,0,0,195,164, 40,0,2,142,0,0,0,0,0,18,2,0, 37,24,98,0,129,55,192,8,0,0,195,164, 40,0,3,142,0,0,0,0,5,0,101,16, 2,0,2,36,7,0,98,16,14,0,2,36, 129,55,192,8,96,0,226,172,187,42,192,12, 1,0,5,36,129,55,192,8,0,0,0,0, 187,42,192,12,33,40,0,0,129,55,192,8, 0,0,0,0,40,0,2,142,0,0,0,0, 129,55,192,8,8,0,194,172,14,0,2,36, 96,0,226,172,17,0,2,146,0,0,0,0, 2,0,66,52,17,0,2,162,20,0,191,143, 16,0,176,143,8,0,224,3,24,0,189,39, 216,255,189,39,20,0,177,175,33,136,128,0, 28,0,179,175,33,152,160,0,24,0,178,175, 33,144,224,0,16,0,176,175,56,0,176,143, 1,0,2,36,46,0,98,22,32,0,191,175, 0,0,196,140,0,0,0,0,42,0,128,16, 0,0,0,0,58,25,192,12,0,0,0,0, 33,32,64,0,37,0,128,16,2,0,2,36, 11,0,34,18,3,0,34,46,5,0,64,16, 3,0,2,36,15,0,51,18,4,0,2,36, 195,55,192,8,33,32,64,2,20,0,34,18, 33,32,64,2,195,55,192,8,0,0,0,0, 2,0,2,36,16,0,2,162,17,0,2,146, 10,0,131,132,2,0,66,52,40,0,3,174, 197,55,192,8,17,0,2,162,17,0,3,146, 16,0,2,162,4,0,130,36,44,0,2,174, 10,0,130,36,40,0,0,166,48,0,2,174, 191,55,192,8,52,0,0,166,17,0,3,146, 2,0,2,36,16,0,2,162,40,0,17,174, 2,0,99,52,197,55,192,8,17,0,3,162, 33,32,64,2,200,76,192,12,33,40,0,2, 32,0,191,143,28,0,179,143,24,0,178,143, 20,0,177,143,16,0,176,143,8,0,224,3, 40,0,189,39,208,255,189,39,32,0,176,175, 64,0,176,143,40,0,178,175,33,144,128,0, 36,0,177,175,33,136,224,0,3,0,160,20, 44,0,191,175,218,55,192,8,1,0,2,36, 0,0,194,140,0,0,0,0,1,0,66,36, 24,0,162,175,24,0,164,143,58,25,192,12, 0,0,0,0,6,0,64,20,33,32,64,2, 17,0,2,146,0,0,0,0,18,0,66,52, 239,55,192,8,17,0,2,162,16,0,176,175, 1,0,5,36,24,0,166,39,137,55,192,12, 33,56,32,2,33,32,32,2,33,40,0,2, 1,0,6,36,253,76,192,12,24,0,167,39, 44,0,191,143,40,0,178,143,36,0,177,143, 32,0,176,143,8,0,224,3,48,0,189,39, 232,255,189,39,40,0,168,143,1,0,2,36, 63,0,162,20,16,0,191,175,0,0,195,140, 0,0,0,0,59,0,96,16,0,0,0,0, 24,133,130,143,0,0,0,0,43,16,67,0, 54,0,64,20,64,18,3,0,2,131,3,60, 192,246,99,36,33,24,67,0,255,255,132,36, 5,0,130,44,47,0,64,16,128,16,4,0, 2,131,1,60,33,8,34,0,136,149,34,140, 0,0,0,0,8,0,64,0,0,0,0,0, 2,0,2,36,16,0,2,161,17,0,2,145, 0,0,195,140,0,0,0,0,43,56,192,8, 2,0,66,52,2,0,2,36,16,0,2,161, 17,0,2,145,220,5,3,36,40,0,3,173, 2,0,66,52,59,56,192,8,17,0,2,161, 65,0,2,36,16,0,2,161,17,0,2,145, 156,0,99,140,0,0,0,0,43,56,192,8, 2,0,66,52,65,0,2,36,16,0,2,161, 17,0,2,145,172,0,99,140,2,0,66,52, 40,0,3,173,59,56,192,8,17,0,2,161, 65,0,2,36,16,0,2,161,156,0,98,140, 252,0,100,140,17,0,3,145,35,16,68,0, 2,0,99,52,40,0,2,173,59,56,192,8, 17,0,3,161,33,32,224,0,200,76,192,12, 33,40,0,1,16,0,191,143,24,0,189,39, 8,0,224,3,0,0,0,0,208,255,189,39, 32,0,176,175,64,0,176,143,36,0,177,175, 33,136,224,0,4,0,160,20,40,0,191,175, 1,0,2,36,86,56,192,8,24,0,162,175, 0,0,198,140,24,133,130,143,0,0,0,0, 43,16,194,0,3,0,64,16,1,0,194,36, 86,56,192,8,24,0,162,175,17,0,2,146, 0,0,0,0,18,0,66,52,96,56,192,8, 17,0,2,162,16,0,176,175,1,0,5,36, 24,0,166,39,245,55,192,12,33,56,32,2, 33,32,32,2,33,40,0,2,1,0,6,36, 253,76,192,12,24,0,167,39,40,0,191,143, 36,0,177,143,32,0,176,143,8,0,224,3, 48,0,189,39,0,0,0,0,0,0,0,0, 0,0,0,0,200,255,189,39,72,0,163,143, 44,0,177,175,33,136,128,0,20,0,165,175, 33,40,224,0,2,131,2,60,172,210,66,140, 152,132,135,143,33,32,0,0,48,0,191,175, 40,0,176,175,24,0,160,175,28,0,160,175, 36,0,160,175,16,0,162,175,104,77,192,12, 32,0,163,175,33,128,64,0,3,0,0,22, 33,32,0,2,143,56,192,8,33,16,0,0, 197,80,192,12,33,40,32,2,255,255,3,36, 5,0,67,20,0,0,0,0,167,83,192,12, 33,32,0,2,143,56,192,8,33,16,0,0, 167,83,192,12,33,32,0,2,8,0,34,142, 4,0,35,142,0,0,0,0,35,16,67,0, 255,255,66,48,48,0,191,143,44,0,177,143, 40,0,176,143,8,0,224,3,56,0,189,39, 200,255,189,39,44,0,177,175,33,136,128,0, 72,0,168,143,33,32,0,0,20,0,165,175, 33,40,224,0,2,131,3,60,172,210,99,140, 152,132,135,143,1,0,2,36,48,0,191,175, 40,0,176,175,24,0,162,175,28,0,160,175, 36,0,160,175,16,0,163,175,104,77,192,12, 32,0,168,175,33,128,64,0,3,0,0,22, 33,32,0,2,188,56,192,8,33,16,0,0, 197,80,192,12,33,40,32,2,255,255,3,36, 5,0,67,20,0,0,0,0,167,83,192,12, 33,32,0,2,188,56,192,8,33,16,0,0, 167,83,192,12,33,32,0,2,8,0,34,142, 4,0,35,142,0,0,0,0,35,16,67,0, 255,255,66,48,48,0,191,143,44,0,177,143, 40,0,176,143,8,0,224,3,56,0,189,39, 176,255,189,39,44,0,177,175,108,0,177,143, 68,0,183,175,96,0,183,143,72,0,190,175, 100,0,190,143,48,0,178,175,33,144,128,0, 56,0,180,175,33,160,160,0,52,0,179,175, 33,152,192,0,40,0,176,175,33,128,224,0, 60,0,181,175,1,0,21,36,76,0,191,175, 3,0,53,18,64,0,182,175,9,57,192,8, 255,255,2,36,4,0,6,36,2,131,22,60, 48,205,214,38,160,132,132,143,104,0,165,143, 128,32,4,0,80,68,192,12,33,32,150,0, 33,32,0,0,33,40,0,2,152,132,135,143, 2,0,2,36,24,0,162,175,160,132,130,143, 2,131,3,60,172,210,99,140,33,48,96,2, 20,0,180,175,28,0,160,175,32,0,183,175, 36,0,181,175,1,0,81,36,104,77,192,12, 16,0,163,175,33,128,64,0,23,0,0,18, 33,40,0,0,16,0,190,175,33,32,0,2, 33,48,32,2,108,84,192,12,33,56,192,2, 255,255,17,36,13,0,81,16,33,32,0,2, 197,80,192,12,33,40,64,2,9,0,81,16, 0,0,0,0,167,83,192,12,33,32,0,2, 8,0,66,142,4,0,67,142,0,0,0,0, 35,16,67,0,9,57,192,8,255,255,66,48, 167,83,192,12,33,32,0,2,33,16,0,0, 76,0,191,143,72,0,190,143,68,0,183,143, 64,0,182,143,60,0,181,143,56,0,180,143, 52,0,179,143,48,0,178,143,44,0,177,143, 40,0,176,143,8,0,224,3,80,0,189,39, 176,255,189,39,44,0,177,175,108,0,177,143, 68,0,183,175,96,0,183,143,72,0,190,175, 100,0,190,143,48,0,178,175,33,144,128,0, 56,0,180,175,33,160,160,0,52,0,179,175, 33,152,192,0,40,0,176,175,33,128,224,0, 60,0,181,175,1,0,21,36,76,0,191,175, 3,0,53,18,64,0,182,175,93,57,192,8, 255,255,2,36,4,0,6,36,2,131,22,60, 48,205,214,38,160,132,132,143,104,0,165,143, 128,32,4,0,80,68,192,12,33,32,150,0, 33,32,0,0,33,40,0,2,152,132,135,143, 3,0,2,36,24,0,162,175,160,132,130,143, 2,131,3,60,172,210,99,140,33,48,96,2, 20,0,180,175,28,0,160,175,32,0,183,175, 36,0,181,175,1,0,81,36,104,77,192,12, 16,0,163,175,33,128,64,0,23,0,0,18, 33,40,0,0,16,0,190,175,33,32,0,2, 33,48,32,2,108,84,192,12,33,56,192,2, 255,255,17,36,13,0,81,16,33,32,0,2, 197,80,192,12,33,40,64,2,9,0,81,16, 0,0,0,0,167,83,192,12,33,32,0,2, 8,0,66,142,4,0,67,142,0,0,0,0, 35,16,67,0,93,57,192,8,255,255,66,48, 167,83,192,12,33,32,0,2,33,16,0,0, 76,0,191,143,72,0,190,143,68,0,183,143, 64,0,182,143,60,0,181,143,56,0,180,143, 52,0,179,143,48,0,178,143,44,0,177,143, 40,0,176,143,8,0,224,3,80,0,189,39, 200,255,189,39,44,0,177,175,33,136,128,0, 72,0,168,143,33,32,0,0,20,0,165,175, 33,40,224,0,2,131,3,60,172,210,99,140, 152,132,135,143,4,0,2,36,48,0,191,175, 40,0,176,175,24,0,162,175,28,0,160,175, 36,0,160,175,16,0,163,175,104,77,192,12, 32,0,168,175,33,128,64,0,3,0,0,22, 33,32,0,2,145,57,192,8,33,16,0,0, 197,80,192,12,33,40,32,2,255,255,3,36, 5,0,67,20,0,0,0,0,167,83,192,12, 33,32,0,2,145,57,192,8,33,16,0,0, 167,83,192,12,33,32,0,2,8,0,34,142, 4,0,35,142,0,0,0,0,35,16,67,0, 255,255,66,48,48,0,191,143,44,0,177,143, 40,0,176,143,8,0,224,3,56,0,189,39, 200,255,189,39,44,0,177,175,33,136,128,0, 72,0,163,143,33,32,0,0,20,0,165,175, 33,40,224,0,164,132,135,143,2,131,2,60, 92,205,66,36,16,0,162,175,6,0,2,36, 24,0,162,175,1,0,2,36,48,0,191,175, 40,0,176,175,28,0,162,175,36,0,160,175, 104,77,192,12,32,0,163,175,33,128,64,0, 3,0,0,22,33,32,0,2,191,57,192,8, 33,16,0,0,197,80,192,12,33,40,32,2, 255,255,3,36,5,0,67,20,0,0,0,0, 167,83,192,12,33,32,0,2,191,57,192,8, 33,16,0,0,167,83,192,12,33,32,0,2, 8,0,34,142,4,0,35,142,0,0,0,0, 35,16,67,0,255,255,66,48,48,0,191,143, 44,0,177,143,40,0,176,143,8,0,224,3, 56,0,189,39,200,255,189,39,44,0,177,175, 33,136,128,0,72,0,163,143,33,32,0,0, 20,0,165,175,33,40,224,0,164,132,135,143, 2,131,2,60,92,205,66,36,16,0,162,175, 6,0,2,36,24,0,162,175,2,0,2,36, 48,0,191,175,40,0,176,175,28,0,162,175, 36,0,160,175,104,77,192,12,32,0,163,175, 33,128,64,0,3,0,0,22,33,32,0,2, 237,57,192,8,33,16,0,0,197,80,192,12, 33,40,32,2,255,255,3,36,5,0,67,20, 0,0,0,0,167,83,192,12,33,32,0,2, 237,57,192,8,33,16,0,0,167,83,192,12, 33,32,0,2,8,0,34,142,4,0,35,142, 0,0,0,0,35,16,67,0,255,255,66,48, 48,0,191,143,44,0,177,143,40,0,176,143, 8,0,224,3,56,0,189,39,0,0,0,0, 0,0,0,0,224,255,189,39,24,0,178,175, 33,144,128,0,20,0,177,175,3,131,17,60, 0,18,49,38,16,0,176,175,33,128,0,0, 28,0,191,175,208,133,128,175,60,65,192,12, 33,32,0,2,0,0,34,166,1,0,16,38, 64,0,2,42,250,255,64,20,2,0,49,38, 3,131,3,60,18,18,99,144,255,0,2,36, 3,0,98,16,0,0,0,0,6,0,64,18, 0,163,4,60,75,59,192,12,32,0,4,36, 87,59,192,12,255,0,4,36,0,163,4,60, 220,5,132,52,176,132,133,39,168,71,192,12, 4,0,6,36,25,0,64,20,0,163,4,60, 3,131,16,60,20,18,16,38,33,32,0,2, 176,132,133,39,168,71,192,12,4,0,6,36, 3,0,64,16,0,163,4,60,7,0,64,18, 0,0,0,0,220,5,132,52,33,40,0,0, 144,71,192,12,4,0,6,36,47,58,192,8, 0,163,4,60,0,163,5,60,220,5,165,52, 3,0,2,138,0,0,2,154,0,0,0,0, 3,0,162,168,0,0,162,184,0,163,4,60, 99,59,192,12,220,5,132,52,0,163,4,60, 16,6,132,52,176,132,133,39,168,71,192,12, 4,0,6,36,25,0,64,20,0,163,4,60, 3,131,16,60,68,18,16,38,33,32,0,2, 176,132,133,39,168,71,192,12,4,0,6,36, 3,0,64,16,0,163,4,60,7,0,64,18, 0,0,0,0,16,6,132,52,33,40,0,0, 144,71,192,12,4,0,6,36,80,58,192,8, 0,163,4,60,0,163,5,60,16,6,165,52, 3,0,2,138,0,0,2,154,0,0,0,0, 3,0,162,168,0,0,162,184,0,163,4,60, 119,59,192,12,16,6,132,52,0,163,4,60, 224,5,132,52,176,132,133,39,168,71,192,12, 4,0,6,36,25,0,64,20,0,163,4,60, 3,131,16,60,24,18,16,38,33,32,0,2, 176,132,133,39,168,71,192,12,4,0,6,36, 3,0,64,16,0,163,4,60,7,0,64,18, 0,0,0,0,224,5,132,52,33,40,0,0, 144,71,192,12,4,0,6,36,113,58,192,8, 0,163,4,60,0,163,5,60,224,5,165,52, 3,0,2,138,0,0,2,154,0,0,0,0, 3,0,162,168,0,0,162,184,0,163,4,60, 139,59,192,12,224,5,132,52,3,131,3,60, 28,18,99,36,0,0,98,148,0,0,0,0, 0,128,66,48,3,0,64,20,1,0,2,36, 2,0,64,18,0,0,0,0,0,0,98,164, 0,163,2,60,144,1,66,140,0,0,0,0, 7,0,64,20,0,0,0,0,3,131,3,60, 28,18,99,36,0,0,98,148,0,0,0,0, 146,58,192,8,254,255,66,48,0,163,2,60, 144,1,66,140,0,0,0,0,7,0,64,24, 0,0,0,0,3,131,3,60,28,18,99,36, 0,0,98,148,0,0,0,0,1,0,66,52, 0,0,98,164,3,131,4,60,28,18,132,148, 0,0,0,0,159,59,192,12,1,0,132,48, 3,131,3,60,80,18,99,144,255,0,2,36, 3,0,98,16,0,0,0,0,5,0,64,18, 0,0,0,0,2,131,4,60,160,149,132,36, 205,59,192,12,14,0,5,36,3,131,3,60, 96,18,99,144,255,0,2,36,3,0,98,16, 0,0,0,0,5,0,64,18,0,0,0,0, 2,131,4,60,176,149,132,36,239,59,192,12, 11,0,5,36,3,131,3,60,112,18,99,144, 255,0,2,36,3,0,98,16,0,0,0,0, 5,0,64,18,0,0,0,0,2,131,4,60, 188,149,132,36,17,60,192,12,15,0,5,36, 0,163,2,60,140,1,66,140,0,0,0,0, 7,0,64,16,15,0,2,60,0,163,3,60, 140,1,99,140,64,66,66,52,43,16,67,0, 26,0,64,16,0,0,0,0,3,131,3,60, 64,18,99,140,255,255,2,36,3,0,98,16, 44,1,2,36,4,0,64,18,0,0,0,0, 0,163,1,60,221,58,192,8,140,1,34,172, 5,0,96,20,15,0,4,60,1,0,2,36, 0,163,1,60,221,58,192,8,140,1,34,172, 64,66,132,52,43,16,131,0,4,0,64,16, 0,0,0,0,0,163,1,60,221,58,192,8, 140,1,36,172,0,163,1,60,140,1,35,172, 0,163,4,60,140,1,132,140,51,60,192,12, 0,0,0,0,28,0,191,143,24,0,178,143, 20,0,177,143,16,0,176,143,8,0,224,3, 32,0,189,39,208,255,189,39,20,0,177,175, 33,136,128,0,36,0,181,175,33,168,160,0, 28,0,179,175,33,152,192,0,44,0,191,175, 40,0,182,175,32,0,180,175,24,0,178,175, 168,71,192,12,16,0,176,175,76,0,64,16, 0,0,0,0,3,131,22,60,0,18,214,38, 35,16,54,2,194,31,2,0,33,16,67,0, 67,144,2,0,1,0,98,38,194,31,2,0, 33,16,67,0,67,128,2,0,255,255,20,38, 64,0,130,46,14,0,64,20,64,0,66,46, 2,131,4,60,204,149,132,36,180,132,144,39, 33,40,0,2,2,131,7,60,236,149,231,36, 15,63,192,12,143,0,6,36,1,0,4,36, 33,40,0,2,188,7,192,12,143,0,6,36, 64,0,66,46,14,0,64,20,33,32,32,2, 2,131,4,60,204,149,132,36,180,132,144,39, 33,40,0,2,2,131,7,60,20,150,231,36, 15,63,192,12,144,0,6,36,1,0,4,36, 33,40,0,2,188,7,192,12,144,0,6,36, 33,32,32,2,33,40,160,2,80,68,192,12, 33,48,96,2,64,16,18,0,33,136,86,0, 33,128,128,2,255,255,2,36,25,0,2,18, 255,255,20,36,180,132,147,39,33,32,64,2, 208,133,130,143,1,0,82,38,1,0,66,36, 208,133,130,175,0,0,37,150,0,0,0,0, 162,65,192,12,2,0,49,38,10,0,64,20, 33,40,96,2,2,131,4,60,204,149,132,36, 188,132,135,39,15,63,192,12,159,0,6,36, 1,0,4,36,33,40,96,2,188,7,192,12, 159,0,6,36,255,255,16,38,235,255,20,22, 33,32,64,2,44,0,191,143,40,0,182,143, 36,0,181,143,32,0,180,143,28,0,179,143, 24,0,178,143,20,0,177,143,16,0,176,143, 8,0,224,3,48,0,189,39,224,255,189,39, 16,0,164,163,3,131,4,60,18,18,132,36, 16,0,165,39,24,0,191,175,231,58,192,12, 1,0,6,36,24,0,191,143,32,0,189,39, 8,0,224,3,0,0,0,0,224,255,189,39, 16,0,164,163,3,131,4,60,19,18,132,36, 16,0,165,39,24,0,191,175,231,58,192,12, 1,0,6,36,24,0,191,143,32,0,189,39, 8,0,224,3,0,0,0,0,232,255,189,39, 33,40,128,0,16,0,176,175,3,131,16,60, 20,18,16,38,33,32,0,2,20,0,191,175, 231,58,192,12,4,0,6,36,0,163,5,60, 220,5,165,52,3,0,2,138,0,0,2,154, 0,0,0,0,3,0,162,168,0,0,162,184, 20,0,191,143,16,0,176,143,8,0,224,3, 24,0,189,39,232,255,189,39,33,40,128,0, 16,0,176,175,3,131,16,60,68,18,16,38, 33,32,0,2,20,0,191,175,231,58,192,12, 4,0,6,36,0,163,5,60,16,6,165,52, 3,0,2,138,0,0,2,154,0,0,0,0, 3,0,162,168,0,0,162,184,20,0,191,143, 16,0,176,143,8,0,224,3,24,0,189,39, 232,255,189,39,33,40,128,0,16,0,176,175, 3,131,16,60,24,18,16,38,33,32,0,2, 20,0,191,175,231,58,192,12,4,0,6,36, 0,163,5,60,224,5,165,52,3,0,2,138, 0,0,2,154,0,0,0,0,3,0,162,168, 0,0,162,184,20,0,191,143,16,0,176,143, 8,0,224,3,24,0,189,39,3,131,2,60, 28,18,66,148,224,255,189,39,24,0,191,175, 8,0,128,16,16,0,162,167,1,0,66,52, 16,0,162,167,1,0,2,36,44,133,130,175, 0,163,1,60,177,59,192,8,144,1,34,172, 254,255,66,48,16,0,162,167,44,133,128,175, 0,163,1,60,144,1,32,172,3,131,4,60, 28,18,132,36,16,0,165,39,231,58,192,12, 2,0,6,36,24,0,191,143,32,0,189,39, 8,0,224,3,0,0,0,0,3,131,2,60, 28,18,66,148,224,255,189,39,24,0,191,175, 3,0,128,16,16,0,162,167,195,59,192,8, 2,0,66,52,253,255,66,48,16,0,162,167, 3,131,4,60,28,18,132,36,16,0,165,39, 231,58,192,12,2,0,6,36,24,0,191,143, 32,0,189,39,8,0,224,3,0,0,0,0, 216,255,189,39,32,0,191,175,33,56,128,0, 33,48,160,0,3,0,226,136,0,0,226,152, 7,0,227,136,4,0,227,152,11,0,228,136, 8,0,228,152,15,0,229,136,12,0,229,152, 19,0,162,171,16,0,162,187,23,0,163,171, 20,0,163,187,27,0,164,171,24,0,164,187, 31,0,165,171,28,0,165,187,16,0,194,44, 3,0,64,16,16,0,163,39,33,16,102,0, 0,0,64,160,3,131,4,60,80,18,132,36, 33,40,224,0,231,58,192,12,16,0,6,36, 32,0,191,143,40,0,189,39,8,0,224,3, 0,0,0,0,216,255,189,39,32,0,191,175, 33,56,128,0,33,48,160,0,3,0,226,136, 0,0,226,152,7,0,227,136,4,0,227,152, 11,0,228,136,8,0,228,152,15,0,229,136, 12,0,229,152,19,0,162,171,16,0,162,187, 23,0,163,171,20,0,163,187,27,0,164,171, 24,0,164,187,31,0,165,171,28,0,165,187, 16,0,194,44,3,0,64,16,16,0,163,39, 33,16,102,0,0,0,64,160,3,131,4,60, 96,18,132,36,33,40,224,0,231,58,192,12, 16,0,6,36,32,0,191,143,40,0,189,39, 8,0,224,3,0,0,0,0,216,255,189,39, 32,0,191,175,33,56,128,0,33,48,160,0, 3,0,226,136,0,0,226,152,7,0,227,136, 4,0,227,152,11,0,228,136,8,0,228,152, 15,0,229,136,12,0,229,152,19,0,162,171, 16,0,162,187,23,0,163,171,20,0,163,187, 27,0,164,171,24,0,164,187,31,0,165,171, 28,0,165,187,16,0,194,44,3,0,64,16, 16,0,163,39,33,16,102,0,0,0,64,160, 3,131,4,60,112,18,132,36,33,40,224,0, 231,58,192,12,16,0,6,36,32,0,191,143, 40,0,189,39,8,0,224,3,0,0,0,0, 232,255,189,39,15,0,2,60,54,66,66,52, 24,0,164,175,246,255,132,36,43,16,68,0, 3,0,64,16,16,0,191,175,44,1,2,36, 24,0,162,175,3,131,4,60,64,18,132,36, 24,0,165,39,231,58,192,12,4,0,6,36, 24,0,162,143,0,163,1,60,140,1,34,172, 16,0,191,143,24,0,189,39,8,0,224,3, 0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,232,255,189,39,16,0,191,175, 0,38,4,0,196,64,192,12,3,38,4,0, 16,0,191,143,24,0,189,39,8,0,224,3, 0,0,0,0,232,255,189,39,16,0,191,175, 0,38,4,0,196,64,192,12,3,38,4,0, 16,0,191,143,24,0,189,39,8,0,224,3, 0,0,0,0,160,255,189,39,112,0,162,143, 72,0,176,175,33,128,224,0,88,0,180,175, 33,160,0,0,84,0,179,175,33,152,192,0, 92,0,191,175,80,0,178,175,7,0,160,16, 76,0,177,175,6,0,65,4,51,0,177,39, 45,0,20,36,3,0,0,18,35,16,2,0, 255,255,16,38,51,0,177,39,51,0,160,163, 27,0,68,0,2,0,128,20,0,0,0,0, 13,0,7,0,18,24,0,0,16,16,0,0, 2,131,1,60,33,8,34,0,128,205,34,144, 255,255,49,38,2,0,0,18,0,0,34,162, 255,255,16,38,33,16,96,0,241,255,64,20, 1,0,3,36,0,22,19,0,3,22,2,0, 11,0,67,20,33,32,128,2,255,255,16,38, 255,255,2,36,7,0,2,18,0,0,0,0, 255,255,18,36,196,64,192,12,32,0,4,36, 255,255,16,38,252,255,18,22,33,32,128,2, 4,0,128,16,0,22,19,0,196,64,192,12, 0,0,0,0,0,22,19,0,3,22,2,0, 2,0,3,36,14,0,67,20,255,255,2,36, 255,255,16,38,11,0,2,18,255,255,18,36, 196,64,192,12,48,0,4,36,255,255,16,38, 6,0,18,18,0,0,0,0,156,60,192,8, 0,0,0,0,0,38,4,0,196,64,192,12, 3,38,4,0,0,0,34,130,0,0,36,146, 0,0,0,0,249,255,64,20,1,0,49,38, 255,255,49,38,0,22,19,0,3,22,2,0, 3,0,3,36,9,0,67,20,255,255,16,38, 255,255,2,36,6,0,2,18,255,255,17,36, 196,64,192,12,32,0,4,36,255,255,16,38, 252,255,17,22,0,0,0,0,92,0,191,143, 88,0,180,143,84,0,179,143,80,0,178,143, 76,0,177,143,72,0,176,143,8,0,224,3, 96,0,189,39,200,255,189,39,40,0,178,175, 33,144,128,0,32,0,176,175,33,128,160,0, 36,0,177,175,33,136,192,0,33,32,32,2, 48,0,191,175,156,71,192,12,44,0,179,175, 33,32,0,0,33,24,64,0,42,16,112,0, 2,0,64,16,33,152,64,2,35,32,3,2, 0,22,18,0,3,22,2,0,1,0,3,36, 11,0,67,20,33,128,128,0,255,255,16,38, 255,255,2,36,8,0,2,18,0,22,19,0, 255,255,18,36,196,64,192,12,32,0,4,36, 255,255,16,38,252,255,18,22,0,0,0,0, 0,22,19,0,3,22,2,0,2,0,3,36, 14,0,67,20,255,255,2,36,255,255,16,38, 11,0,2,18,255,255,18,36,196,64,192,12, 48,0,4,36,255,255,16,38,6,0,18,18, 0,0,0,0,233,60,192,8,0,0,0,0, 0,38,4,0,196,64,192,12,3,38,4,0, 0,0,34,130,0,0,36,146,0,0,0,0, 249,255,64,20,1,0,49,38,255,255,49,38, 0,22,19,0,3,22,2,0,3,0,3,36, 9,0,67,20,255,255,16,38,255,255,2,36, 6,0,2,18,255,255,17,36,196,64,192,12, 32,0,4,36,255,255,16,38,252,255,17,22, 0,0,0,0,48,0,191,143,44,0,179,143, 40,0,178,143,36,0,177,143,32,0,176,143, 8,0,224,3,56,0,189,39,32,255,189,39, 192,0,178,175,33,144,160,0,196,0,179,175, 33,152,0,0,220,0,191,175,216,0,190,175, 212,0,183,175,208,0,182,175,204,0,181,175, 200,0,180,175,188,0,177,175,184,0,176,175, 1,0,130,128,0,0,0,0,229,1,64,16, 33,136,0,0,255,255,22,36,1,0,23,36, 2,0,30,36,1,0,149,36,0,0,162,146, 0,0,0,0,219,255,66,36,0,22,2,0, 3,30,2,0,84,0,98,44,217,1,64,16, 128,16,3,0,2,131,1,60,33,8,34,0, 80,150,34,140,0,0,0,0,8,0,64,0, 0,0,0,0,209,61,192,8,37,0,4,36, 2,131,16,60,64,150,16,38,156,71,192,12, 33,32,0,2,59,61,192,8,0,0,0,0, 0,38,4,0,196,64,192,12,3,38,4,0, 0,0,2,130,0,0,4,146,0,0,0,0, 249,255,64,20,1,0,16,38,3,63,192,8, 1,0,162,38,0,38,18,0,209,61,192,8, 3,38,4,0,2,0,3,36,33,128,32,2, 33,40,64,2,33,160,0,0,51,0,177,39, 51,0,160,163,27,0,163,0,2,0,96,20, 0,0,0,0,13,0,7,0,18,40,0,0, 16,16,0,0,2,131,1,60,33,8,34,0, 128,205,34,144,255,255,49,38,2,0,0,18, 0,0,34,162,255,255,16,38,242,255,160,20, 0,0,0,0,10,0,119,22,0,22,20,0, 255,255,16,38,8,0,22,18,3,38,2,0, 255,255,18,36,196,64,192,12,32,0,4,36, 255,255,16,38,252,255,18,22,0,22,20,0, 3,38,2,0,3,0,128,16,0,0,0,0, 196,64,192,12,0,0,0,0,14,0,126,22, 0,0,0,0,255,255,16,38,11,0,22,18, 255,255,18,36,196,64,192,12,48,0,4,36, 255,255,16,38,6,0,18,18,0,0,0,0, 111,61,192,8,0,0,0,0,0,38,4,0, 196,64,192,12,3,38,4,0,0,0,34,130, 0,0,36,146,0,0,0,0,249,255,64,20, 1,0,49,38,255,255,49,38,3,0,6,36, 80,0,102,22,66,0,4,36,255,255,16,38, 77,0,22,18,255,255,17,36,196,64,192,12, 32,0,4,36,255,255,16,38,252,255,17,22, 66,0,4,36,209,61,192,8,0,0,0,0, 8,0,3,36,33,128,32,2,33,40,64,2, 33,160,0,0,51,0,177,39,51,0,160,163, 27,0,163,0,2,0,96,20,0,0,0,0, 13,0,7,0,18,40,0,0,16,16,0,0, 2,131,1,60,33,8,34,0,128,205,34,144, 255,255,49,38,2,0,0,18,0,0,34,162, 255,255,16,38,242,255,160,20,0,0,0,0, 10,0,119,22,0,22,20,0,255,255,16,38, 8,0,22,18,3,38,2,0,255,255,18,36, 196,64,192,12,32,0,4,36,255,255,16,38, 252,255,18,22,0,22,20,0,3,38,2,0, 3,0,128,16,0,0,0,0,196,64,192,12, 0,0,0,0,14,0,126,22,0,0,0,0, 255,255,16,38,11,0,22,18,255,255,18,36, 196,64,192,12,48,0,4,36,255,255,16,38, 6,0,18,18,0,0,0,0,182,61,192,8, 0,0,0,0,0,38,4,0,196,64,192,12, 3,38,4,0,0,0,34,130,0,0,36,146, 0,0,0,0,249,255,64,20,1,0,49,38, 255,255,49,38,3,0,6,36,9,0,102,22, 81,0,4,36,255,255,16,38,6,0,22,18, 255,255,17,36,196,64,192,12,32,0,4,36, 255,255,16,38,252,255,17,22,81,0,4,36, 196,64,192,12,0,0,0,0,3,63,192,8, 1,0,162,38,33,128,32,2,33,16,64,2, 33,160,0,0,5,0,65,6,10,0,4,36, 45,0,20,36,2,0,32,18,35,16,18,0, 255,255,48,38,51,0,177,39,51,0,160,163, 27,0,68,0,2,0,128,20,0,0,0,0, 13,0,7,0,18,24,0,0,16,16,0,0, 2,131,1,60,33,8,34,0,128,205,34,144, 255,255,49,38,2,0,0,18,0,0,34,162, 255,255,16,38,33,16,96,0,241,255,64,20, 0,0,0,0,10,0,119,22,33,32,128,2, 255,255,16,38,7,0,22,18,0,0,0,0, 255,255,18,36,196,64,192,12,32,0,4,36, 255,255,16,38,252,255,18,22,33,32,128,2, 3,0,128,16,0,0,0,0,196,64,192,12, 0,0,0,0,14,0,126,22,0,0,0,0, 255,255,16,38,11,0,22,18,255,255,18,36, 196,64,192,12,48,0,4,36,255,255,16,38, 6,0,18,18,0,0,0,0,4,62,192,8, 0,0,0,0,0,38,4,0,196,64,192,12, 3,38,4,0,0,0,34,130,0,0,36,146, 0,0,0,0,249,255,64,20,1,0,49,38, 255,255,49,38,3,0,6,36,237,0,102,22, 1,0,162,38,255,255,16,38,234,0,22,18, 255,255,17,36,196,64,192,12,32,0,4,36, 255,255,16,38,252,255,17,22,1,0,162,38, 3,63,192,8,0,0,0,0,10,0,3,36, 33,128,32,2,33,40,64,2,33,160,0,0, 51,0,177,39,51,0,160,163,27,0,163,0, 2,0,96,20,0,0,0,0,13,0,7,0, 18,40,0,0,16,16,0,0,2,131,1,60, 33,8,34,0,128,205,34,144,255,255,49,38, 2,0,0,18,0,0,34,162,255,255,16,38, 242,255,160,20,0,0,0,0,10,0,119,22, 0,22,20,0,255,255,16,38,8,0,22,18, 3,38,2,0,255,255,18,36,196,64,192,12, 32,0,4,36,255,255,16,38,252,255,18,22, 0,22,20,0,3,38,2,0,3,0,128,16, 0,0,0,0,196,64,192,12,0,0,0,0, 14,0,126,22,0,0,0,0,255,255,16,38, 11,0,22,18,255,255,18,36,196,64,192,12, 48,0,4,36,255,255,16,38,6,0,18,18, 0,0,0,0,75,62,192,8,0,0,0,0, 0,38,4,0,196,64,192,12,3,38,4,0, 0,0,34,130,0,0,36,146,0,0,0,0, 249,255,64,20,1,0,49,38,255,255,49,38, 3,0,6,36,166,0,102,22,1,0,162,38, 255,255,16,38,163,0,22,18,255,255,17,36, 196,64,192,12,32,0,4,36,255,255,16,38, 252,255,17,22,1,0,162,38,3,63,192,8, 0,0,0,0,192,132,144,39,156,71,192,12, 33,32,0,2,112,62,192,8,0,0,0,0, 0,38,4,0,196,64,192,12,3,38,4,0, 0,0,2,130,0,0,4,146,0,0,0,0, 249,255,64,20,1,0,16,38,16,0,3,36, 33,128,32,2,33,40,64,2,33,160,0,0, 51,0,177,39,51,0,160,163,27,0,163,0, 2,0,96,20,0,0,0,0,13,0,7,0, 18,40,0,0,16,16,0,0,2,131,1,60, 33,8,34,0,128,205,34,144,255,255,49,38, 2,0,0,18,0,0,34,162,255,255,16,38, 242,255,160,20,0,0,0,0,10,0,119,22, 0,22,20,0,255,255,16,38,8,0,22,18, 3,38,2,0,255,255,18,36,196,64,192,12, 32,0,4,36,255,255,16,38,252,255,18,22, 0,22,20,0,3,38,2,0,3,0,128,16, 0,0,0,0,196,64,192,12,0,0,0,0, 14,0,126,22,0,0,0,0,255,255,16,38, 11,0,22,18,255,255,18,36,196,64,192,12, 48,0,4,36,255,255,16,38,6,0,18,18, 0,0,0,0,159,62,192,8,0,0,0,0, 0,38,4,0,196,64,192,12,3,38,4,0, 0,0,34,130,0,0,36,146,0,0,0,0, 249,255,64,20,1,0,49,38,255,255,49,38, 3,0,6,36,82,0,102,22,1,0,162,38, 255,255,16,38,79,0,22,18,255,255,17,36, 196,64,192,12,32,0,4,36,255,255,16,38, 252,255,17,22,1,0,162,38,3,63,192,8, 0,0,0,0,156,71,192,12,33,32,64,2, 33,24,64,0,42,16,113,0,2,0,64,16, 33,32,0,0,35,32,35,2,10,0,119,22, 33,128,128,0,255,255,16,38,7,0,22,18, 0,0,0,0,255,255,17,36,196,64,192,12, 32,0,4,36,255,255,16,38,252,255,17,22, 0,0,0,0,14,0,126,22,0,0,0,0, 255,255,16,38,11,0,22,18,255,255,17,36, 196,64,192,12,48,0,4,36,255,255,16,38, 6,0,17,18,0,0,0,0,211,62,192,8, 0,0,0,0,0,38,4,0,196,64,192,12, 3,38,4,0,0,0,66,130,0,0,68,146, 0,0,0,0,249,255,64,20,1,0,82,38, 255,255,82,38,3,0,6,36,30,0,102,22, 1,0,162,38,255,255,16,38,27,0,22,18, 255,255,17,36,196,64,192,12,32,0,4,36, 255,255,16,38,252,255,17,22,1,0,162,38, 3,63,192,8,0,0,0,0,253,62,192,8, 3,0,19,36,3,0,96,22,128,16,17,0, 2,0,19,36,128,16,17,0,33,16,81,0, 64,16,2,0,0,0,163,130,208,255,66,36, 2,0,96,22,33,136,67,0,1,0,19,36, 1,0,181,38,0,0,162,130,0,0,0,0, 33,254,64,20,0,0,0,0,1,0,130,36, 220,0,191,143,216,0,190,143,212,0,183,143, 208,0,182,143,204,0,181,143,200,0,180,143, 196,0,179,143,192,0,178,143,188,0,177,143, 184,0,176,143,8,0,224,3,224,0,189,39, 0,0,164,175,4,0,165,175,8,0,166,175, 12,0,167,175,200,255,189,39,59,0,162,39, 252,255,3,36,36,16,67,0,52,0,191,175, 48,0,180,175,44,0,179,175,40,0,178,175, 36,0,177,175,32,0,176,175,56,0,164,175, 0,0,80,140,4,0,81,36,0,0,2,130, 0,0,3,146,0,0,0,0,31,0,64,16, 37,0,20,36,69,0,19,36,252,255,18,36, 0,22,3,0,3,38,2,0,18,0,148,20, 0,0,0,0,1,0,3,130,0,0,0,0, 4,0,100,16,33,32,0,2,4,0,115,20, 3,0,34,38,33,32,0,2,56,63,192,8, 33,40,0,0,36,16,82,0,4,0,81,36, 0,0,69,140,33,32,0,2,13,61,192,12, 0,0,0,0,62,63,192,8,33,128,64,0, 196,64,192,12,1,0,16,38,0,0,2,130, 0,0,3,146,0,0,0,0,230,255,64,20, 0,22,3,0,52,0,191,143,48,0,180,143, 44,0,179,143,40,0,178,143,36,0,177,143, 32,0,176,143,8,0,224,3,56,0,189,39, 0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,8,0,224,3,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,8,0,224,3, 0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0, 8,0,224,3,0,0,0,0,33,72,224,3, 170,3,8,36,76,63,192,12,0,0,0,0, 255,255,8,33,252,255,0,21,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,8,0,32,1, 0,0,0,0,33,88,224,3,232,3,10,36, 143,63,192,12,0,0,0,0,255,255,74,33, 252,255,64,21,0,0,0,0,8,0,96,1, 0,0,0,0,250,255,132,32,130,32,4,0, 255,255,132,32,0,0,0,0,253,255,128,20, 0,0,0,0,8,0,224,3,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0, 248,255,189,39,255,255,195,36,10,0,192,16, 33,56,160,0,255,255,6,36,0,0,162,144, 1,0,165,36,0,0,130,160,4,0,64,16, 1,0,132,36,255,255,99,36,249,255,102,20, 0,0,0,0,33,16,224,0,8,0,224,3, 8,0,189,39,0,96,2,64,0,0,0,0, 38,64,68,0,1,255,8,49,38,64,2,1, 0,96,136,64,8,0,224,3,1,255,66,48, 0,96,2,64,0,0,0,0,1,255,132,48, 39,32,128,0,36,64,68,0,0,96,136,64, 8,0,224,3,1,255,66,48,0,96,2,64, 0,0,0,0,0,255,132,48,37,64,68,0, 1,0,8,53,0,96,136,64,8,0,224,3, 1,255,66,48,176,255,189,39,64,0,182,175, 33,176,128,0,52,0,179,175,33,152,160,0, 72,0,190,175,33,240,192,0,68,0,183,175, 33,184,224,0,60,0,181,175,33,168,0,0, 56,0,180,175,33,160,0,0,76,0,191,175, 48,0,178,175,44,0,177,175,40,0,176,175, 2,131,6,60,33,48,212,0,160,205,198,144, 0,0,0,0,28,0,96,26,33,128,0,0, 33,24,192,2,33,32,118,2,0,0,102,160, 1,0,99,36,42,16,100,0,252,255,64,20, 0,0,0,0,19,0,96,26,33,128,0,0, 255,0,210,48,33,136,192,2,0,0,39,146, 0,0,0,0,9,0,242,16,0,0,0,0, 5,0,224,18,33,40,0,2,96,0,164,143, 0,0,0,0,9,248,224,2,33,48,64,2, 32,0,192,23,1,0,181,38,1,0,16,38, 42,16,19,2,241,255,64,20,1,0,49,38, 1,0,148,38,4,0,130,46,220,255,64,20, 0,0,0,0,7,0,96,26,33,128,0,0, 33,24,192,2,0,0,112,160,1,0,16,38, 42,16,19,2,252,255,64,20,1,0,99,36, 20,0,96,26,33,128,0,0,33,136,192,2, 0,0,39,146,255,0,6,50,11,0,230,16, 0,0,0,0,5,0,224,18,0,0,0,0, 96,0,164,143,0,0,0,0,9,248,224,2, 33,40,0,2,3,0,192,19,1,0,181,38, 72,64,192,8,1,0,2,36,1,0,16,38, 42,16,19,2,239,255,64,20,1,0,49,38, 33,16,160,2,76,0,191,143,72,0,190,143, 68,0,183,143,64,0,182,143,60,0,181,143, 56,0,180,143,52,0,179,143,48,0,178,143, 44,0,177,143,40,0,176,143,8,0,224,3, 80,0,189,39,160,255,189,39,88,0,190,175, 33,240,128,0,68,0,179,175,33,152,160,0, 76,0,181,175,33,168,224,0,72,0,180,175, 33,160,0,0,33,16,96,2,92,0,191,175, 84,0,183,175,80,0,182,175,64,0,178,175, 60,0,177,175,56,0,176,175,2,0,97,6, 16,0,166,175,3,0,98,38,131,152,2,0, 33,184,0,0,2,131,22,60,164,205,214,38, 0,0,210,142,0,0,0,0,7,0,96,18, 33,128,0,0,33,24,192,3,0,0,114,172, 1,0,16,38,43,16,19,2,252,255,64,20, 4,0,99,36,20,0,96,18,33,128,0,0, 33,136,192,3,0,0,39,142,0,0,0,0, 11,0,242,16,128,40,16,0,5,0,160,18, 0,0,0,0,112,0,164,143,0,0,0,0, 9,248,160,2,33,48,64,2,16,0,168,143, 0,0,0,0,34,0,0,21,1,0,148,38, 1,0,16,38,43,16,19,2,239,255,64,20, 4,0,49,38,1,0,247,38,4,0,226,46, 222,255,64,20,4,0,214,38,7,0,96,18, 33,128,0,0,33,24,192,3,0,0,112,172, 1,0,16,38,43,16,19,2,252,255,64,20, 4,0,99,36,22,0,96,18,33,128,0,0, 33,136,192,3,0,0,39,142,0,0,0,0, 13,0,240,16,128,40,16,0,5,0,160,18, 0,0,0,0,112,0,164,143,0,0,0,0, 9,248,160,2,33,48,0,2,16,0,168,143, 0,0,0,0,3,0,0,17,1,0,148,38, 174,64,192,8,1,0,2,36,1,0,16,38, 43,16,19,2,237,255,64,20,4,0,49,38, 33,16,128,2,92,0,191,143,88,0,190,143, 84,0,183,143,80,0,182,143,76,0,181,143, 72,0,180,143,68,0,179,143,64,0,178,143, 60,0,177,143,56,0,176,143,8,0,224,3, 96,0,189,39,0,0,0,0,0,0,0,0, 255,1,2,36,0,163,1,60,176,1,32,172, 0,163,1,60,180,1,32,172,0,163,1,60, 8,0,224,3,184,1,34,172,232,255,189,39, 16,0,176,175,33,128,128,0,20,0,191,175, 220,63,192,12,33,32,0,0,33,40,64,0, 0,163,3,60,180,1,99,140,0,163,2,60, 184,1,66,140,0,163,4,60,128,1,132,140, 1,0,99,36,11,0,128,20,36,24,98,0, 0,163,2,60,176,1,66,140,0,0,0,0, 6,0,98,20,0,0,0,0,0,163,2,60, 128,1,66,140,0,0,0,0,247,255,64,16, 0,0,0,0,0,163,2,60,180,1,66,140, 33,32,160,0,0,163,1,60,33,8,34,0, 188,1,48,160,0,163,1,60,220,63,192,12, 180,1,35,172,20,0,191,143,16,0,176,143, 8,0,224,3,24,0,189,39,8,0,224,3, 0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,192,255,189,39,33,80,0,0, 80,0,185,143,84,0,184,143,88,0,175,143, 1,0,2,36,60,0,177,175,92,0,177,143, 4,112,226,0,12,0,224,24,56,0,176,175, 1,0,9,36,33,64,160,3,33,24,32,3, 0,0,98,140,4,0,99,36,1,0,74,37, 4,16,73,0,0,0,2,173,42,16,71,1, 249,255,64,20,4,0,8,37,46,0,192,25, 33,80,0,0,255,0,16,36,33,72,0,0, 0,0,145,172,0,0,160,164,34,0,224,24, 0,0,208,160,33,88,128,0,33,96,160,0, 33,104,192,0,33,64,32,3,33,24,160,3, 0,0,98,140,0,0,0,0,36,16,66,1, 19,0,64,16,0,0,0,0,0,0,2,141, 0,0,0,0,128,16,2,0,33,16,88,0, 0,0,66,140,0,0,0,0,0,0,98,173, 0,0,2,141,0,0,0,0,64,16,2,0, 33,16,79,0,0,0,66,148,0,0,0,0, 0,0,130,165,0,0,2,141,0,0,0,0, 47,65,192,8,0,0,162,161,4,0,8,37, 1,0,41,37,42,16,39,1,229,255,64,20, 4,0,99,36,1,0,198,36,2,0,165,36, 1,0,74,37,42,16,78,1,213,255,64,20, 4,0,132,36,60,0,177,143,56,0,176,143, 8,0,224,3,64,0,189,39,0,0,0,0, 0,0,0,0,0,0,0,0,216,255,189,39, 63,0,132,48,28,0,179,175,128,1,147,52, 50,133,130,151,48,133,132,151,0,128,131,151, 20,0,177,175,16,0,176,175,5,162,16,60, 32,0,191,175,24,0,178,175,39,16,68,0, 36,24,98,0,0,128,131,167,0,0,3,166, 76,63,192,12,0,1,17,36,0,128,130,151, 48,133,131,151,5,162,18,60,37,16,67,0, 0,128,130,167,0,0,2,166,36,16,51,2, 6,0,64,16,0,0,0,0,0,128,131,151, 20,133,130,151,0,0,0,0,96,65,192,8, 37,24,98,0,20,133,130,151,0,128,131,151, 39,16,2,0,36,24,98,0,0,128,131,167, 0,0,67,166,76,63,192,12,66,136,17,0, 0,128,130,151,50,133,131,151,0,0,0,0, 37,16,67,0,0,128,130,167,76,63,192,12, 0,0,66,166,50,133,130,151,0,128,131,151, 39,16,2,0,36,24,98,0,255,255,34,50, 0,128,131,167,0,0,67,166,226,255,64,20, 36,16,51,2,33,136,0,0,16,0,16,36, 5,162,18,60,255,255,19,36,76,63,192,12, 0,0,0,0,0,128,131,151,50,133,130,151, 0,0,0,0,37,24,98,0,0,128,131,167, 76,63,192,12,0,0,67,166,8,0,0,18, 0,0,0,0,0,0,67,150,20,133,130,151, 0,0,0,0,36,16,67,0,2,0,64,16, 64,136,17,0,1,0,49,54,76,63,192,12, 255,255,16,38,50,133,130,151,0,128,131,151, 39,16,2,0,36,24,98,0,0,128,131,167, 230,255,19,22,0,0,67,166,48,133,130,151, 0,128,131,151,39,16,2,0,36,24,98,0, 5,162,2,60,0,128,131,167,0,0,67,164, 255,255,34,50,32,0,191,143,28,0,179,143, 24,0,178,143,20,0,177,143,16,0,176,143, 8,0,224,3,40,0,189,39,208,255,189,39, 36,0,181,175,33,168,160,0,32,0,180,175, 63,0,148,48,33,32,128,2,44,0,191,175, 40,0,182,175,28,0,179,175,24,0,178,175, 20,0,177,175,60,65,192,12,16,0,176,175, 33,152,64,0,255,255,163,50,255,255,98,50, 3,0,98,20,48,1,22,36,245,66,192,8, 1,0,2,36,5,162,16,60,50,133,130,151, 48,133,132,151,0,128,131,151,39,16,68,0, 36,24,98,0,0,128,131,167,0,0,3,166, 76,63,192,12,0,1,17,36,0,128,130,151, 48,133,131,151,5,162,18,60,37,16,67,0, 0,128,130,167,0,0,2,166,36,16,54,2, 6,0,64,16,0,0,0,0,0,128,131,151, 20,133,130,151,0,0,0,0,210,65,192,8, 37,24,98,0,20,133,130,151,0,128,131,151, 39,16,2,0,36,24,98,0,0,128,131,167, 0,0,67,166,76,63,192,12,66,136,17,0, 0,128,130,151,50,133,131,151,0,0,0,0, 37,16,67,0,0,128,130,167,76,63,192,12, 0,0,66,166,50,133,130,151,0,128,131,151, 39,16,2,0,36,24,98,0,255,255,34,50, 0,128,131,167,0,0,67,166,226,255,64,20, 36,16,54,2,255,255,163,50,255,255,98,50, 39,16,2,0,36,24,98,0,84,0,96,16, 192,1,147,54,5,162,16,60,50,133,130,151, 48,133,132,151,0,128,131,151,39,16,68,0, 36,24,98,0,0,128,131,167,0,0,3,166, 76,63,192,12,0,1,17,36,0,128,130,151, 48,133,131,151,5,162,18,60,37,16,67,0, 0,128,130,167,0,0,2,166,36,16,51,2, 6,0,64,16,0,0,0,0,0,128,131,151, 20,133,130,151,0,0,0,0,8,66,192,8, 37,24,98,0,20,133,130,151,0,128,131,151, 39,16,2,0,36,24,98,0,0,128,131,167, 0,0,67,166,76,63,192,12,66,136,17,0, 0,128,130,151,50,133,131,151,0,0,0,0, 37,16,67,0,0,128,130,167,76,63,192,12, 0,0,66,166,50,133,130,151,0,128,131,151, 39,16,2,0,36,24,98,0,255,255,34,50, 0,128,131,167,0,0,67,166,226,255,64,20, 36,16,51,2,5,162,16,60,50,133,130,151, 48,133,132,151,0,128,131,151,39,16,68,0, 36,24,98,0,0,128,131,167,76,63,192,12, 0,0,3,166,0,128,131,151,48,133,130,151, 0,0,0,0,37,24,98,0,0,0,3,166, 0,0,4,150,20,133,130,151,0,128,131,167, 36,16,68,0,9,0,64,20,0,0,0,0, 76,63,192,12,0,0,0,0,0,0,3,150, 20,133,130,151,0,0,0,0,36,16,67,0, 249,255,64,16,0,0,0,0,48,133,130,151, 0,128,131,151,39,16,2,0,36,24,98,0, 5,162,2,60,0,128,131,167,0,0,67,164, 255,255,163,50,255,255,2,52,125,0,98,16, 64,1,147,54,5,162,16,60,50,133,130,151, 48,133,132,151,0,128,131,151,39,16,68,0, 36,24,98,0,0,128,131,167,0,0,3,166, 76,63,192,12,0,1,17,36,0,128,130,151, 48,133,131,151,5,162,18,60,37,16,67,0, 0,128,130,167,0,0,2,166,36,16,51,2, 6,0,64,16,0,0,0,0,0,128,131,151, 20,133,130,151,0,0,0,0,95,66,192,8, 37,24,98,0,20,133,130,151,0,128,131,151, 39,16,2,0,36,24,98,0,0,128,131,167, 0,0,67,166,76,63,192,12,66,136,17,0, 0,128,130,151,50,133,131,151,0,0,0,0, 37,16,67,0,0,128,130,167,76,63,192,12, 0,0,66,166,50,133,130,151,0,128,131,151, 39,16,2,0,36,24,98,0,255,255,34,50, 0,128,131,167,0,0,67,166,226,255,64,20, 36,16,51,2,33,144,160,2,0,128,16,52, 0,128,130,151,48,133,131,151,5,162,17,60, 37,16,67,0,5,162,3,60,0,128,130,167, 0,0,98,164,36,16,18,2,6,0,64,16, 0,0,0,0,0,128,131,151,20,133,130,151, 0,0,0,0,136,66,192,8,37,24,98,0, 20,133,130,151,0,128,131,151,39,16,2,0, 36,24,98,0,0,128,131,167,0,0,35,166, 76,63,192,12,66,128,16,0,0,128,130,151, 50,133,131,151,0,0,0,0,37,16,67,0, 0,128,130,167,76,63,192,12,0,0,34,166, 50,133,130,151,0,128,131,151,39,16,2,0, 36,24,98,0,255,255,2,50,0,128,131,167, 0,0,35,166,226,255,64,20,36,16,18,2, 5,162,16,60,50,133,130,151,48,133,132,151, 0,128,131,151,39,16,68,0,36,24,98,0, 0,128,131,167,76,63,192,12,0,0,3,166, 0,128,131,151,48,133,130,151,0,0,0,0, 37,24,98,0,0,0,3,166,0,0,4,150, 20,133,130,151,0,128,131,167,36,16,68,0, 9,0,64,20,0,0,0,0,76,63,192,12, 0,0,0,0,0,0,3,150,20,133,130,151, 0,0,0,0,36,16,67,0,249,255,64,16, 0,0,0,0,48,133,130,151,0,128,131,151, 39,16,2,0,36,24,98,0,5,162,2,60, 0,128,131,167,0,0,67,164,0,1,19,36, 5,162,16,60,50,133,130,151,48,133,132,151, 0,128,131,151,39,16,68,0,36,24,98,0, 0,128,131,167,0,0,3,166,76,63,192,12, 0,1,17,36,0,128,130,151,48,133,131,151, 5,162,18,60,37,16,67,0,0,128,130,167, 0,0,2,166,36,16,113,2,6,0,64,16, 0,0,0,0,0,128,131,151,20,133,130,151, 0,0,0,0,220,66,192,8,37,24,98,0, 20,133,130,151,0,128,131,151,39,16,2,0, 36,24,98,0,0,128,131,167,0,0,67,166, 76,63,192,12,66,136,17,0,0,128,130,151, 50,133,131,151,0,0,0,0,37,16,67,0, 0,128,130,167,76,63,192,12,0,0,66,166, 50,133,130,151,0,128,131,151,39,16,2,0, 36,24,98,0,255,255,34,50,0,128,131,167, 0,0,67,166,226,255,64,20,36,16,113,2, 60,65,192,12,33,32,128,2,38,16,162,2, 255,255,66,48,1,0,66,44,44,0,191,143, 40,0,182,143,36,0,181,143,32,0,180,143, 28,0,179,143,24,0,178,143,20,0,177,143, 16,0,176,143,8,0,224,3,48,0,189,39, 224,255,189,39,24,0,178,175,33,144,0,0, 64,16,4,0,16,0,176,175,33,128,68,0, 33,32,0,2,20,0,177,175,255,255,177,48, 28,0,191,175,162,65,192,12,33,40,32,2, 8,0,64,16,1,0,4,38,162,65,192,12, 33,40,32,2,4,0,64,16,2,0,4,38, 162,65,192,12,33,40,32,2,43,144,2,0, 33,16,64,2,28,0,191,143,24,0,178,143, 20,0,177,143,16,0,176,143,8,0,224,3, 32,0,189,39,216,255,189,39,64,16,4,0, 24,0,178,175,33,144,68,0,33,32,64,2, 36,0,191,175,32,0,180,175,28,0,179,175, 20,0,177,175,60,65,192,12,16,0,176,175, 1,0,84,38,33,32,128,2,60,65,192,12, 33,136,64,0,2,0,83,38,33,32,96,2, 60,65,192,12,33,128,64,0,255,255,35,50, 255,255,17,50,8,0,113,20,0,0,0,0, 255,255,66,48,3,0,34,18,33,32,96,2, 162,65,192,12,33,40,32,2,66,67,192,8, 33,16,32,2,255,255,80,48,4,0,112,16, 33,32,128,2,5,0,48,22,255,255,2,36, 33,32,64,2,162,65,192,12,33,40,0,2, 33,16,0,2,36,0,191,143,32,0,180,143, 28,0,179,143,24,0,178,143,20,0,177,143, 16,0,176,143,8,0,224,3,40,0,189,39, 0,0,0,0,0,0,0,0,0,96,8,64, 0,0,0,0,254,255,1,36,36,72,1,1, 0,96,137,64,0,0,133,164,2,0,132,32, 2,44,5,0,0,0,133,164,0,96,136,64, 8,0,224,3,0,0,0,0,208,255,189,39, 32,0,178,175,33,144,128,0,28,0,177,175, 33,136,160,0,36,0,179,175,33,152,192,0, 40,0,180,175,33,160,224,0,44,0,191,175, 2,0,32,22,24,0,176,175,255,255,17,36, 0,0,66,142,0,0,0,0,36,16,81,0, 3,0,83,20,0,0,0,0,121,67,192,8, 1,0,2,36,11,0,128,26,33,128,0,0, 143,63,192,12,0,0,0,0,0,0,66,142, 0,0,0,0,36,16,81,0,246,255,83,16, 1,0,16,38,42,16,20,2,247,255,64,20, 0,0,0,0,33,16,0,0,44,0,191,143, 40,0,180,143,36,0,179,143,32,0,178,143, 28,0,177,143,24,0,176,143,8,0,224,3, 48,0,189,39,208,255,189,39,32,0,178,175, 33,144,128,0,28,0,177,175,33,136,160,0, 36,0,179,175,33,152,192,0,40,0,180,175, 33,160,224,0,44,0,191,175,2,0,32,22, 24,0,176,175,255,255,17,52,0,0,66,150, 0,0,0,0,36,16,81,0,3,0,83,20, 0,0,0,0,162,67,192,8,1,0,2,36, 11,0,128,26,33,128,0,0,143,63,192,12, 0,0,0,0,0,0,66,150,0,0,0,0, 36,16,81,0,246,255,83,16,1,0,16,38, 42,16,20,2,247,255,64,20,0,0,0,0, 33,16,0,0,44,0,191,143,40,0,180,143, 36,0,179,143,32,0,178,143,28,0,177,143, 24,0,176,143,8,0,224,3,48,0,189,39, 208,255,189,39,32,0,178,175,33,144,128,0, 28,0,177,175,33,136,160,0,36,0,179,175, 33,152,192,0,40,0,180,175,33,160,224,0, 44,0,191,175,2,0,32,22,24,0,176,175, 255,0,17,36,0,0,66,146,0,0,0,0, 36,16,81,0,3,0,83,20,0,0,0,0, 203,67,192,8,1,0,2,36,11,0,128,26, 33,128,0,0,143,63,192,12,0,0,0,0, 0,0,66,146,0,0,0,0,36,16,81,0, 246,255,83,16,1,0,16,38,42,16,20,2, 247,255,64,20,0,0,0,0,33,16,0,0, 44,0,191,143,40,0,180,143,36,0,179,143, 32,0,178,143,28,0,177,143,24,0,176,143, 8,0,224,3,48,0,189,39,208,255,189,39, 32,0,178,175,33,144,128,0,28,0,177,175, 33,136,160,0,36,0,179,175,33,152,192,0, 40,0,180,175,33,160,224,0,44,0,191,175, 2,0,32,22,24,0,176,175,255,255,17,36, 0,0,66,142,0,0,0,0,36,16,81,0, 3,0,83,20,0,0,0,0,244,67,192,8, 1,0,2,36,11,0,128,26,33,128,0,0, 143,63,192,12,0,0,0,0,0,0,66,142, 0,0,0,0,36,16,81,0,246,255,83,20, 1,0,16,38,42,16,20,2,247,255,64,20, 0,0,0,0,33,16,0,0,44,0,191,143, 40,0,180,143,36,0,179,143,32,0,178,143, 28,0,177,143,24,0,176,143,8,0,224,3, 48,0,189,39,208,255,189,39,32,0,178,175, 33,144,128,0,28,0,177,175,33,136,160,0, 36,0,179,175,33,152,192,0,40,0,180,175, 33,160,224,0,44,0,191,175,2,0,32,22, 24,0,176,175,255,255,17,52,0,0,66,150, 0,0,0,0,36,16,81,0,3,0,83,20, 0,0,0,0,29,68,192,8,1,0,2,36, 11,0,128,26,33,128,0,0,143,63,192,12, 0,0,0,0,0,0,66,150,0,0,0,0, 36,16,81,0,246,255,83,20,1,0,16,38, 42,16,20,2,247,255,64,20,0,0,0,0, 33,16,0,0,44,0,191,143,40,0,180,143, 36,0,179,143,32,0,178,143,28,0,177,143, 24,0,176,143,8,0,224,3,48,0,189,39, 208,255,189,39,32,0,178,175,33,144,128,0, 28,0,177,175,33,136,160,0,36,0,179,175, 33,152,192,0,40,0,180,175,33,160,224,0, 44,0,191,175,2,0,32,22,24,0,176,175, 255,0,17,36,0,0,66,146,0,0,0,0, 36,16,81,0,3,0,83,20,0,0,0,0, 70,68,192,8,1,0,2,36,11,0,128,26, 33,128,0,0,143,63,192,12,0,0,0,0, 0,0,66,146,0,0,0,0,36,16,81,0, 246,255,83,20,1,0,16,38,42,16,20,2, 247,255,64,20,0,0,0,0,33,16,0,0, 44,0,191,143,40,0,180,143,36,0,179,143, 32,0,178,143,28,0,177,143,24,0,176,143, 8,0,224,3,48,0,189,39,0,0,0,0, 0,0,0,0,248,255,189,39,255,255,195,36, 8,0,192,16,33,56,128,0,255,255,6,36, 0,0,162,144,1,0,165,36,255,255,99,36, 0,0,130,160,251,255,102,20,1,0,132,36, 33,16,224,0,8,0,224,3,8,0,189,39, 0,0,0,0,0,0,0,0,0,96,8,64, 1,0,9,60,0,96,137,64,15,0,138,48, 33,40,170,0,192,255,165,36,0,0,128,160, 16,0,128,160,32,0,128,160,251,255,160,28, 48,0,128,160,64,0,132,36,0,96,136,64, 0,0,0,0,0,0,0,0,8,0,224,3, 0,0,0,0,0,0,0,0,1,131,2,60, 224,17,66,36,0,32,9,60,37,16,73,0, 8,0,64,0,0,0,0,0,0,96,8,64, 3,0,9,60,0,96,137,64,15,0,138,48, 33,40,170,0,192,255,165,36,0,0,128,160, 16,0,128,160,32,0,128,160,251,255,160,28, 48,0,128,160,64,0,132,36,0,96,136,64, 0,0,0,0,0,0,0,0,8,0,224,3, 0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,163,3,60,192,3,99,140, 0,163,2,60,188,3,66,140,0,0,0,0, 16,0,98,16,255,255,2,36,0,163,2,60, 188,3,66,140,0,163,1,60,33,8,34,0, 200,3,34,144,0,163,3,60,188,3,99,140, 0,163,4,60,196,3,132,140,0,22,2,0, 3,22,2,0,1,0,99,36,36,24,100,0, 0,163,1,60,188,3,35,172,8,0,224,3, 0,0,0,0,0,163,6,60,0,1,198,52, 10,0,9,36,255,255,8,36,13,0,7,36, 0,163,3,60,192,3,99,140,0,163,2,60, 188,3,66,140,0,0,0,0,17,0,98,16, 255,255,5,36,0,163,2,60,188,3,66,140, 0,0,0,0,33,16,70,0,200,2,66,144, 0,0,0,0,0,22,2,0,3,46,2,0, 0,163,2,60,188,3,66,140,0,163,3,60, 196,3,99,140,1,0,66,36,36,16,67,0, 0,163,1,60,188,3,34,172,11,0,169,16, 11,0,162,40,5,0,64,16,0,0,0,0, 228,255,168,16,0,0,0,0,206,68,192,8, 0,0,133,160,224,255,167,16,0,0,0,0, 206,68,192,8,0,0,133,160,208,68,192,8, 0,0,128,160,169,68,192,8,1,0,132,36, 8,0,224,3,0,0,0,0,0,0,0,0, 0,0,0,0,208,255,189,39,24,0,176,175, 33,128,128,0,36,0,179,175,33,152,160,0, 28,0,177,175,33,136,0,0,32,0,178,175, 33,144,0,2,5,0,64,22,40,0,191,175, 54,0,96,22,33,16,0,0,22,69,192,8, 0,0,32,174,0,0,67,130,0,0,0,0, 233,68,192,8,32,0,2,36,0,0,3,130, 32,0,2,36,253,255,98,16,1,0,16,38, 255,255,16,38,9,0,2,36,249,255,98,16, 1,0,16,38,255,255,16,38,0,0,3,130, 45,0,2,36,4,0,98,20,43,0,2,36, 1,0,16,38,250,68,192,8,1,0,17,36, 3,0,98,20,33,32,0,2,1,0,16,38, 33,32,0,2,44,69,192,12,16,0,165,39, 7,0,96,18,33,24,64,0,16,0,162,143, 0,0,0,0,2,0,80,20,0,0,0,0, 33,16,64,2,0,0,98,174,6,0,32,18, 0,128,2,60,43,16,67,0,5,0,64,20, 255,127,2,60,19,69,192,8,33,16,96,0, 5,0,97,4,255,127,2,60,7,0,32,18, 255,255,66,52,22,69,192,8,0,128,2,60, 33,16,96,0,2,0,32,18,0,0,0,0, 35,16,2,0,40,0,191,143,36,0,179,143, 32,0,178,143,28,0,177,143,24,0,176,143, 8,0,224,3,48,0,189,39,0,0,0,0, 0,0,0,0,0,0,0,0,208,255,130,36, 10,0,66,44,7,0,64,20,1,0,2,36, 191,255,130,36,6,0,66,44,3,0,64,20, 1,0,2,36,159,255,130,36,6,0,66,44, 8,0,224,3,0,0,0,0,248,255,189,39, 0,0,176,175,33,56,0,0,33,72,0,0, 33,80,0,0,33,112,0,0,5,0,128,20, 33,200,128,0,110,0,160,20,33,16,0,0, 163,69,192,8,0,0,192,173,0,0,131,128, 32,0,2,36,253,255,98,16,1,0,132,36, 255,255,132,36,9,0,2,36,249,255,98,16, 1,0,132,36,255,255,132,36,0,0,131,128, 43,0,2,36,3,0,98,20,45,0,2,36, 75,69,192,8,1,0,132,36,3,0,98,20, 0,0,0,0,1,0,132,36,1,0,14,36, 3,0,192,16,16,0,2,36,16,0,194,20, 0,0,0,0,0,0,131,128,48,0,2,36, 9,0,98,20,10,0,2,36,1,0,131,128, 88,0,2,36,3,0,98,16,120,0,2,36, 3,0,98,20,8,0,2,36,16,0,2,36, 2,0,132,36,2,0,192,20,0,0,0,0, 33,48,64,0,0,0,131,128,255,255,2,36, 27,0,70,0,2,0,192,20,0,0,0,0, 13,0,7,0,18,64,0,0,16,192,0,0, 0,0,0,0,0,0,0,0,42,0,96,16, 48,0,98,44,48,0,207,36,11,0,205,40, 87,0,204,36,55,0,203,36,5,0,64,20, 43,16,111,0,3,0,64,16,0,0,0,0, 130,69,192,8,208,255,99,36,30,0,160,21, 97,0,98,44,6,0,64,20,65,0,98,44, 43,16,108,0,3,0,64,16,65,0,98,44, 130,69,192,8,169,255,99,36,21,0,64,20, 43,16,107,0,19,0,64,16,0,0,0,0, 201,255,99,36,43,16,7,1,6,0,64,20, 1,0,9,36,6,0,232,20,24,0,230,0, 43,16,3,3,3,0,64,16,0,0,0,0, 1,0,10,36,24,0,230,0,1,0,132,36, 18,128,0,0,33,56,3,2,0,0,131,128, 0,0,0,0,220,255,96,20,48,0,98,44, 5,0,64,17,0,0,0,0,13,0,160,16, 255,255,2,36,163,69,192,8,0,0,164,172, 6,0,160,16,0,0,0,0,3,0,32,21, 0,0,0,0,160,69,192,8,0,0,185,172, 0,0,164,172,2,0,192,17,33,16,224,0, 35,16,2,0,0,0,176,143,8,0,224,3, 8,0,189,39,0,0,0,0,0,0,0,0, 200,255,189,39,16,0,176,175,7,162,16,60, 236,0,16,54,255,240,3,60,255,255,99,52, 63,0,132,48,36,0,181,175,128,1,149,52, 24,0,178,175,0,1,18,36,20,0,177,175, 7,162,17,60,236,0,49,54,44,0,183,175, 0,4,23,60,32,0,180,175,255,251,20,60, 255,255,148,54,40,0,182,175,0,1,22,60, 28,0,179,175,255,254,19,60,48,0,191,175, 0,0,2,142,0,0,0,0,36,16,67,0, 224,133,130,175,0,0,2,174,76,63,192,12, 255,255,115,54,224,133,130,143,0,2,3,60, 37,16,67,0,224,133,130,175,0,0,2,174, 36,16,85,2,5,0,64,16,0,0,0,0, 224,133,130,143,0,0,0,0,214,69,192,8, 37,16,87,0,224,133,130,143,0,0,0,0, 36,16,84,0,224,133,130,175,76,63,192,12, 0,0,34,174,224,133,130,143,0,0,0,0, 37,16,86,0,224,133,130,175,0,0,34,174, 76,63,192,12,66,144,18,0,224,133,130,143, 0,0,0,0,36,16,83,0,224,133,130,175, 0,0,34,174,255,255,66,50,230,255,64,20, 36,16,85,2,33,136,0,0,16,0,16,36, 7,162,18,60,236,0,82,54,0,1,22,60, 0,8,21,60,255,254,19,60,255,255,115,54, 255,255,20,36,76,63,192,12,0,0,0,0, 224,133,130,143,0,0,0,0,37,16,86,0, 224,133,130,175,76,63,192,12,0,0,66,174, 7,0,0,18,0,0,0,0,0,0,66,142, 0,0,0,0,36,16,85,0,2,0,64,16, 64,136,17,0,1,0,49,54,76,63,192,12, 255,255,16,38,224,133,130,143,0,0,0,0, 36,16,83,0,224,133,130,175,0,0,66,174, 232,255,20,22,7,162,4,60,236,0,132,52, 255,253,3,60,224,133,130,143,255,255,99,52, 36,16,67,0,224,133,130,175,0,0,130,172, 255,255,34,50,48,0,191,143,44,0,183,143, 40,0,182,143,36,0,181,143,32,0,180,143, 28,0,179,143,24,0,178,143,20,0,177,143, 16,0,176,143,8,0,224,3,56,0,189,39, 200,255,189,39,48,0,190,175,33,240,160,0, 40,0,182,175,63,0,150,48,33,32,192,2, 52,0,191,175,44,0,183,175,36,0,181,175, 32,0,180,175,28,0,179,175,24,0,178,175, 20,0,177,175,168,69,192,12,16,0,176,175, 33,152,64,0,255,255,195,51,255,255,98,50, 3,0,98,20,7,162,16,60,131,71,192,8, 1,0,2,36,236,0,16,54,255,252,3,60, 255,255,99,52,0,1,18,36,7,162,17,60, 236,0,49,54,255,251,21,60,255,255,181,54, 0,1,23,60,255,254,20,60,224,133,130,143, 0,0,0,0,36,16,67,0,224,133,130,175, 0,0,2,174,76,63,192,12,255,255,148,54, 224,133,130,143,0,2,3,60,37,16,67,0, 224,133,130,175,0,0,2,174,48,1,66,50, 5,0,64,16,0,4,6,60,224,133,130,143, 0,0,0,0,83,70,192,8,37,16,70,0, 224,133,130,143,0,0,0,0,36,16,85,0, 224,133,130,175,76,63,192,12,0,0,34,174, 224,133,130,143,0,0,0,0,37,16,87,0, 224,133,130,175,0,0,34,174,76,63,192,12, 66,144,18,0,224,133,130,143,0,0,0,0, 36,16,84,0,224,133,130,175,0,0,34,174, 255,255,66,50,230,255,64,20,48,1,66,50, 255,255,195,51,255,255,98,50,39,16,2,0, 36,24,98,0,88,0,96,16,192,1,213,54, 7,162,16,60,236,0,16,54,255,252,3,60, 255,255,99,52,0,1,18,36,7,162,17,60, 236,0,49,54,255,251,20,60,255,255,148,54, 0,1,23,60,255,254,19,60,224,133,130,143, 0,0,0,0,36,16,67,0,224,133,130,175, 0,0,2,174,76,63,192,12,255,255,115,54, 224,133,130,143,0,2,3,60,37,16,67,0, 224,133,130,175,0,0,2,174,36,16,85,2, 5,0,64,16,0,4,6,60,224,133,130,143, 0,0,0,0,140,70,192,8,37,16,70,0, 224,133,130,143,0,0,0,0,36,16,84,0, 224,133,130,175,76,63,192,12,0,0,34,174, 224,133,130,143,0,0,0,0,37,16,87,0, 224,133,130,175,0,0,34,174,76,63,192,12, 66,144,18,0,224,133,130,143,0,0,0,0, 36,16,83,0,224,133,130,175,0,0,34,174, 255,255,66,50,230,255,64,20,36,16,85,2, 7,162,16,60,236,0,16,54,255,252,3,60, 224,133,130,143,255,255,99,52,36,16,67,0, 224,133,130,175,76,63,192,12,0,0,2,174, 224,133,130,143,0,2,3,60,37,16,67,0, 224,133,130,175,0,0,2,174,0,0,2,142, 0,8,3,60,36,16,67,0,11,0,64,20, 7,162,4,60,7,162,16,60,236,0,16,54, 0,8,17,60,76,63,192,12,0,0,0,0, 0,0,2,142,0,0,0,0,36,16,81,0, 250,255,64,16,7,162,4,60,236,0,132,52, 255,253,3,60,224,133,130,143,255,255,99,52, 36,16,67,0,224,133,130,175,0,0,130,172, 255,255,195,51,255,255,2,52,133,0,98,16, 64,1,213,54,7,162,16,60,236,0,16,54, 255,252,3,60,255,255,99,52,0,1,18,36, 7,162,17,60,236,0,49,54,255,251,20,60, 255,255,148,54,0,1,23,60,255,254,19,60, 224,133,130,143,0,0,0,0,36,16,67,0, 224,133,130,175,0,0,2,174,76,63,192,12, 255,255,115,54,224,133,130,143,0,2,3,60, 37,16,67,0,224,133,130,175,0,0,2,174, 36,16,85,2,5,0,64,16,0,4,6,60, 224,133,130,143,0,0,0,0,231,70,192,8, 37,16,70,0,224,133,130,143,0,0,0,0, 36,16,84,0,224,133,130,175,76,63,192,12, 0,0,34,174,224,133,130,143,0,0,0,0, 37,16,87,0,224,133,130,175,0,0,34,174, 76,63,192,12,66,144,18,0,224,133,130,143, 0,0,0,0,36,16,83,0,224,133,130,175, 0,0,34,174,255,255,66,50,230,255,64,20, 36,16,85,2,33,160,192,3,7,162,2,60, 236,0,66,52,0,128,17,52,7,162,16,60, 236,0,16,54,0,4,23,60,255,251,19,60, 255,255,115,54,0,1,21,60,255,254,18,60, 255,255,82,54,224,133,131,143,0,2,4,60, 37,24,100,0,224,133,131,175,0,0,67,172, 36,16,52,2,5,0,64,16,0,0,0,0, 224,133,130,143,0,0,0,0,20,71,192,8, 37,16,87,0,224,133,130,143,0,0,0,0, 36,16,83,0,224,133,130,175,76,63,192,12, 0,0,2,174,224,133,130,143,0,0,0,0, 37,16,85,0,224,133,130,175,0,0,2,174, 76,63,192,12,66,136,17,0,224,133,130,143, 0,0,0,0,36,16,82,0,224,133,130,175, 0,0,2,174,255,255,34,50,230,255,64,20, 36,16,52,2,7,162,16,60,236,0,16,54, 255,252,3,60,224,133,130,143,255,255,99,52, 36,16,67,0,224,133,130,175,76,63,192,12, 0,0,2,174,224,133,130,143,0,2,3,60, 37,16,67,0,224,133,130,175,0,0,2,174, 0,0,2,142,0,8,3,60,36,16,67,0, 11,0,64,20,7,162,4,60,7,162,16,60, 236,0,16,54,0,8,17,60,76,63,192,12, 0,0,0,0,0,0,2,142,0,0,0,0, 36,16,81,0,250,255,64,16,7,162,4,60, 236,0,132,52,255,253,3,60,224,133,130,143, 255,255,99,52,36,16,67,0,224,133,130,175, 0,0,130,172,7,162,16,60,236,0,16,54, 255,252,3,60,255,255,99,52,0,1,18,36, 7,162,17,60,236,0,49,54,0,4,23,60, 255,251,20,60,255,255,148,54,0,1,21,60, 255,254,19,60,224,133,130,143,0,0,0,0, 36,16,67,0,224,133,130,175,0,0,2,174, 76,63,192,12,255,255,115,54,224,133,130,143, 0,2,3,60,37,16,67,0,224,133,130,175, 0,0,2,174,0,1,66,50,5,0,64,16, 0,0,0,0,224,133,130,143,0,0,0,0, 108,71,192,8,37,16,87,0,224,133,130,143, 0,0,0,0,36,16,84,0,224,133,130,175, 76,63,192,12,0,0,34,174,224,133,130,143, 0,0,0,0,37,16,85,0,224,133,130,175, 0,0,34,174,76,63,192,12,66,144,18,0, 224,133,130,143,0,0,0,0,36,16,83,0, 224,133,130,175,0,0,34,174,255,255,66,50, 230,255,64,20,0,1,66,50,168,69,192,12, 33,32,192,2,38,16,194,3,255,255,66,48, 1,0,66,44,52,0,191,143,48,0,190,143, 44,0,183,143,40,0,182,143,36,0,181,143, 32,0,180,143,28,0,179,143,24,0,178,143, 20,0,177,143,16,0,176,143,8,0,224,3, 56,0,189,39,0,0,0,0,248,255,189,39, 255,255,195,36,6,0,192,16,33,16,128,0, 255,255,6,36,0,0,133,160,255,255,99,36, 253,255,102,20,1,0,132,36,8,0,189,39, 8,0,224,3,0,0,0,0,159,71,192,8, 33,24,0,0,1,0,99,36,0,0,130,128, 0,0,0,0,252,255,64,20,1,0,132,36, 8,0,224,3,33,16,96,0,0,0,0,0, 0,0,0,0,0,0,0,0,255,255,198,36, 10,0,192,16,0,0,0,0,0,0,131,128, 0,0,162,128,0,0,0,0,5,0,98,20, 0,0,0,0,1,0,132,36,255,255,198,36, 248,255,192,20,1,0,165,36,0,0,131,144, 0,0,162,144,0,0,0,0,8,0,224,3, 35,16,98,0,0,0,0,0,0,0,0,0, 0,0,0,0,196,71,192,8,240,255,189,39, 0,0,163,128,3,22,2,0,8,0,67,20, 0,0,0,0,1,0,132,36,1,0,165,36, 0,0,130,128,0,0,131,144,0,0,0,0, 246,255,64,20,0,22,3,0,0,0,131,144, 0,0,162,144,0,0,0,0,35,16,98,0, 8,0,224,3,16,0,189,39,0,0,0,0, 255,255,198,36,9,0,192,4,33,16,0,0, 0,0,130,144,0,0,0,0,5,0,69,16, 33,16,128,0,255,255,198,36,250,255,193,4, 1,0,132,36,33,16,0,0,8,0,224,3, 0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,2,0,192,20,255,255,2,36, 1,0,2,36,8,0,224,3,0,0,226,172, 232,255,189,39,20,0,191,175,16,0,176,175, 40,0,176,143,33,32,192,0,4,0,5,142, 0,0,0,0,15,86,192,12,255,255,230,48, 3,0,64,16,255,255,2,36,243,71,192,8, 0,0,2,174,0,0,0,174,20,0,191,143, 16,0,176,143,8,0,224,3,24,0,189,39, 208,255,189,39,40,0,191,175,33,24,128,0, 64,0,162,143,32,0,160,175,36,0,162,175, 12,0,66,148,0,0,0,0,2,0,64,20, 33,32,160,0,120,5,2,36,255,255,66,48, 16,0,162,175,1,131,2,60,148,31,66,36, 20,0,162,175,1,131,2,60,128,31,66,36, 24,0,162,175,32,0,162,39,28,0,162,175, 166,85,192,12,33,40,96,0,32,0,162,143, 40,0,191,143,48,0,189,39,8,0,224,3, 0,0,0,0,0,0,0,0,88,0,131,148, 4,0,2,36,9,0,98,20,0,0,0,0, 33,72,192,8,116,0,132,36,33,16,69,0, 128,16,2,0,8,0,131,140,0,0,0,0, 46,72,192,8,33,16,67,0,104,0,132,36, 12,0,128,16,33,16,0,0,4,0,130,140, 0,0,0,0,42,16,162,0,243,255,64,20, 0,17,5,0,4,0,130,140,12,0,132,140, 0,0,0,0,247,255,128,20,35,40,162,0, 33,16,0,0,8,0,224,3,0,0,0,0, 88,0,131,148,4,0,2,36,3,0,98,20, 33,48,0,0,55,72,192,8,116,0,132,36, 104,0,132,36,8,0,130,140,0,0,0,0, 43,16,162,0,14,0,64,16,255,255,2,36, 92,72,192,8,0,0,0,0,35,24,163,0, 0,17,3,0,35,16,67,0,0,26,2,0, 33,16,67,0,0,28,2,0,33,16,67,0, 35,16,2,0,131,16,2,0,92,72,192,8, 33,16,194,0,18,0,128,16,0,0,0,0, 4,0,131,140,0,0,0,0,0,17,3,0, 33,16,67,0,128,16,2,0,8,0,131,140, 0,0,0,0,33,16,67,0,43,16,162,0, 233,255,64,20,0,0,0,0,4,0,130,140, 12,0,132,140,0,0,0,0,241,255,128,20, 33,48,194,0,255,255,2,36,8,0,224,3, 0,0,0,0,0,0,0,0,0,0,0,0, 8,0,130,36,144,0,163,140,120,132,135,39, 2,0,96,16,20,0,137,36,33,56,96,0, 0,0,72,140,4,0,68,140,132,72,192,8, 0,0,0,0,30,0,0,25,0,0,0,0, 4,0,227,140,0,0,0,0,4,0,98,140, 0,0,0,0,55,0,64,16,255,255,2,36, 0,0,135,140,0,0,98,140,0,0,0,0, 8,0,71,16,0,0,0,0,8,0,99,36, 4,0,98,140,0,0,0,0,248,255,64,20, 255,255,2,36,168,72,192,8,0,0,0,0, 0,0,130,140,0,0,0,0,4,0,34,173, 4,0,103,140,255,255,8,37,4,0,132,36, 0,0,226,148,0,0,0,0,1,0,66,48, 226,255,64,16,0,0,0,0,0,0,226,148, 0,0,0,0,64,0,66,48,27,0,64,20, 255,255,2,36,0,0,226,148,0,0,0,0, 1,0,66,48,17,0,64,16,0,0,0,0, 13,0,192,16,1,0,2,36,64,0,162,140, 0,0,0,0,9,0,64,20,1,0,2,36, 28,0,226,140,4,0,163,140,0,0,0,0, 36,16,67,0,3,0,64,20,1,0,2,36, 168,72,192,8,255,255,2,36,164,72,192,8, 0,0,34,165,0,0,32,165,8,0,40,173, 12,0,36,173,16,0,39,173,33,16,0,0, 8,0,224,3,0,0,0,0,200,255,189,39, 48,0,191,175,44,0,179,175,40,0,178,175, 36,0,177,175,32,0,176,175,33,152,128,0, 33,128,160,0,33,144,192,0,0,0,4,142, 0,0,0,0,48,0,130,40,2,0,64,16, 8,0,113,38,48,0,4,36,0,0,36,174, 9,50,192,12,128,32,4,0,3,0,64,20, 4,0,34,174,214,72,192,8,255,255,2,36, 144,0,66,142,120,132,132,39,2,0,64,16, 0,0,0,0,33,32,64,0,16,0,160,175, 20,0,179,175,24,0,178,175,0,0,5,142, 4,0,6,142,0,0,0,0,221,72,192,12, 33,56,32,2,33,128,64,0,4,0,0,26, 0,0,0,0,0,0,34,142,214,72,192,8, 0,0,0,0,110,86,192,12,33,32,32,2, 33,16,0,2,48,0,191,143,44,0,179,143, 40,0,178,143,36,0,177,143,32,0,176,143, 8,0,224,3,56,0,189,39,184,255,189,39, 68,0,191,175,64,0,190,175,60,0,183,175, 56,0,182,175,52,0,181,175,48,0,180,175, 44,0,179,175,40,0,178,175,36,0,177,175, 32,0,176,175,33,144,128,0,33,176,160,0, 33,136,224,0,88,0,183,143,92,0,179,143, 96,0,190,143,32,0,226,38,0,0,36,142, 0,0,0,0,42,16,130,0,22,0,64,16, 33,160,192,0,4,0,132,36,9,50,192,12, 128,32,4,0,33,128,64,0,3,0,0,22, 33,32,0,2,153,73,192,8,255,255,2,36, 0,0,38,142,4,0,37,142,0,0,0,0, 80,68,192,12,128,48,6,0,4,0,36,142, 61,50,192,12,0,0,0,0,4,0,48,174, 0,0,34,142,0,0,0,0,4,0,66,36, 0,0,34,174,0,0,66,150,0,0,0,0, 1,0,66,48,96,0,64,20,0,0,0,0, 33,0,192,30,0,0,0,0,4,0,80,142, 0,0,0,0,4,0,2,142,0,0,0,0, 108,0,64,16,128,160,23,0,1,0,242,38, 4,0,34,142,0,0,0,0,33,16,130,2, 0,0,3,142,0,0,0,0,0,0,67,172, 0,0,2,142,0,0,0,0,24,0,98,174, 16,0,178,175,20,0,179,175,24,0,190,175, 4,0,4,142,33,40,0,0,33,48,0,0, 221,72,192,12,33,56,32,2,112,0,64,20, 8,0,16,38,4,0,2,142,0,0,0,0, 234,255,64,20,33,16,0,0,153,73,192,8, 0,0,0,0,4,0,80,142,0,0,0,0, 4,0,2,142,0,0,0,0,76,0,64,16, 128,168,23,0,1,0,242,38,0,0,3,142, 0,0,132,142,0,0,0,0,43,16,100,0, 42,0,64,20,0,0,0,0,19,0,100,20, 255,255,197,38,4,0,34,142,0,0,0,0, 33,16,162,2,0,0,67,172,0,0,2,142, 0,0,0,0,24,0,98,174,16,0,178,175, 20,0,179,175,24,0,190,175,4,0,4,142, 4,0,134,38,221,72,192,12,33,56,32,2, 25,0,64,16,8,0,16,38,153,73,192,8, 0,0,0,0,0,0,130,142,0,0,0,0, 43,16,67,0,17,0,64,16,33,40,0,0, 4,0,34,142,0,0,0,0,33,16,162,2, 0,0,67,172,0,0,2,142,0,0,0,0, 24,0,98,174,16,0,178,175,20,0,179,175, 24,0,190,175,4,0,4,142,33,48,0,0, 221,72,192,12,33,56,32,2,52,0,64,20, 0,0,0,0,8,0,16,38,4,0,2,142, 0,0,0,0,205,255,64,20,33,16,0,0, 153,73,192,8,0,0,0,0,0,0,66,150, 0,0,0,0,64,0,66,48,40,0,64,20, 33,16,0,0,3,0,66,146,0,0,0,0, 1,0,66,48,11,0,64,16,33,24,64,2, 64,0,194,143,0,0,0,0,9,0,64,20, 0,0,0,0,28,0,98,140,4,0,195,143, 0,0,0,0,36,16,67,0,3,0,64,20, 0,0,0,0,153,73,192,8,33,16,0,0, 14,0,192,26,33,16,246,2,0,0,34,174, 4,0,36,142,128,128,23,0,33,32,4,2, 33,40,128,2,80,68,192,12,128,48,22,0, 28,0,118,174,4,0,34,142,0,0,0,0, 33,128,2,2,149,73,192,8,32,0,112,174, 0,0,55,174,28,0,96,174,32,0,96,174, 36,0,114,174,1,0,2,36,20,0,98,166, 1,0,2,36,68,0,191,143,64,0,190,143, 60,0,183,143,56,0,182,143,52,0,181,143, 48,0,180,143,44,0,179,143,40,0,178,143, 36,0,177,143,32,0,176,143,8,0,224,3, 72,0,189,39,3,0,160,28,33,16,0,0, 0,0,224,172,1,0,2,36,8,0,224,3, 0,0,0,0,208,255,189,39,44,0,191,175, 40,0,178,175,36,0,177,175,32,0,176,175, 33,144,128,0,33,136,224,0,64,0,176,143, 0,0,0,0,6,0,160,24,24,0,160,175, 17,0,2,146,0,0,0,0,18,0,66,52, 200,73,192,8,17,0,2,162,33,32,32,2, 33,40,0,2,1,0,6,36,253,76,192,12, 24,0,167,39,36,0,2,142,16,0,176,175, 8,0,66,140,33,32,64,2,1,0,5,36, 24,0,166,39,9,248,64,0,33,56,32,2, 44,0,191,143,40,0,178,143,36,0,177,143, 32,0,176,143,8,0,224,3,48,0,189,39, 224,255,189,39,28,0,191,175,24,0,178,175, 20,0,177,175,33,144,128,0,33,136,160,0, 31,0,81,18,16,0,176,175,4,0,80,142, 0,0,0,0,4,0,2,142,0,0,0,0, 10,0,64,16,0,0,0,0,4,0,4,142, 0,0,0,0,206,73,192,12,33,40,32,2, 8,0,16,38,4,0,2,142,0,0,0,0, 248,255,64,20,0,0,0,0,0,0,66,150, 0,0,0,0,32,0,66,48,4,0,64,16, 0,0,0,0,4,0,68,142,61,50,192,12, 0,0,0,0,0,0,66,150,0,0,0,0, 16,0,66,48,3,0,64,16,0,0,0,0, 61,50,192,12,33,32,64,2,28,0,191,143, 24,0,178,143,20,0,177,143,16,0,176,143, 8,0,224,3,32,0,189,39,120,132,131,39, 2,0,128,16,0,0,0,0,33,24,128,0, 0,0,167,140,4,0,165,140,26,74,192,8, 0,0,0,0,28,0,224,24,0,0,0,0, 4,0,99,140,0,0,0,0,4,0,98,140, 0,0,0,0,11,0,64,16,0,0,0,0, 0,0,164,140,0,0,98,140,0,0,0,0, 9,0,68,16,0,0,0,0,8,0,99,36, 4,0,98,140,0,0,0,0,248,255,64,20, 0,0,0,0,0,0,192,172,33,74,192,8, 2,0,2,36,4,0,99,140,255,255,231,36, 4,0,165,36,0,0,98,148,0,0,0,0, 1,0,66,48,228,255,64,16,0,0,0,0, 0,0,195,172,42,16,7,0,8,0,224,3, 0,0,0,0,208,255,189,39,44,0,191,175, 40,0,182,175,36,0,181,175,32,0,180,175, 28,0,179,175,24,0,178,175,20,0,177,175, 16,0,176,175,33,168,192,0,0,0,162,140, 0,0,0,0,3,0,64,28,33,48,0,0, 220,74,192,8,5,0,2,36,120,132,147,39, 2,0,128,16,0,0,224,172,33,152,128,0, 0,0,177,140,4,0,180,140,84,74,192,8, 0,0,0,0,29,0,32,26,0,0,0,0, 4,0,102,142,0,0,0,0,4,0,194,140, 0,0,0,0,23,0,64,16,0,0,0,0, 0,0,131,142,0,0,194,140,0,0,0,0, 6,0,67,16,0,0,0,0,8,0,198,36, 4,0,194,140,0,0,0,0,248,255,64,20, 0,0,0,0,4,0,194,140,0,0,0,0, 9,0,64,16,0,0,0,0,255,255,49,38, 4,0,148,38,33,152,64,0,0,0,98,150, 0,0,0,0,1,0,66,48,227,255,64,16, 0,0,0,0,29,0,32,22,0,0,0,0, 0,0,99,150,0,0,0,0,1,0,98,48, 11,0,64,16,4,0,98,48,123,0,64,16, 3,0,2,36,0,0,162,150,0,0,0,0, 1,0,66,48,118,0,64,16,4,0,2,36, 0,0,243,172,219,74,192,8,4,0,213,172, 0,0,98,150,0,0,0,0,4,0,66,48, 110,0,64,16,3,0,2,36,0,0,162,150, 0,0,0,0,1,0,66,48,105,0,64,20, 4,0,2,36,0,0,243,172,219,74,192,8, 4,0,213,172,0,0,98,150,0,0,0,0, 1,0,66,48,97,0,64,20,2,0,2,36, 2,0,34,42,23,0,64,20,33,144,160,2, 56,0,22,36,9,50,192,12,16,0,4,36, 33,128,64,0,40,0,0,18,128,16,17,0, 33,16,84,0,252,255,66,140,0,0,0,0, 0,0,2,174,4,0,18,174,8,0,0,174, 12,0,0,174,9,50,192,12,8,0,4,36, 33,144,64,0,24,0,64,18,255,255,49,38, 0,0,86,166,2,0,34,42,236,255,64,16, 4,0,80,174,4,0,102,142,0,0,0,0, 4,0,194,140,0,0,0,0,6,0,64,16, 1,0,17,36,8,0,198,36,4,0,194,140, 0,0,0,0,252,255,64,20,1,0,49,38, 1,0,36,38,9,50,192,12,192,32,4,0, 33,128,64,0,12,0,0,22,33,32,64,2, 173,74,192,8,0,0,0,0,0,0,18,142, 0,0,0,0,61,50,192,12,33,32,0,2, 33,32,64,2,206,73,192,12,33,40,160,2, 220,74,192,8,1,0,2,36,4,0,102,142, 0,0,0,0,192,74,192,8,33,168,0,2, 4,0,194,140,0,0,0,0,14,0,64,16, 0,0,0,0,0,0,194,140,4,0,195,140, 0,0,2,174,4,0,3,174,8,0,198,36, 8,0,16,38,255,255,49,38,0,0,194,140, 0,0,131,142,0,0,0,0,43,16,67,0, 240,255,64,20,0,0,0,0,0,0,130,142, 0,0,0,0,0,0,2,174,4,0,18,174, 8,0,4,38,33,40,192,0,80,68,192,12, 192,48,17,0,4,0,102,142,4,0,117,174, 0,0,98,150,0,0,0,0,32,0,66,48, 3,0,64,16,0,0,0,0,61,50,192,12, 33,32,192,0,0,0,98,150,0,0,0,0, 32,0,66,52,0,0,98,166,33,16,0,0, 44,0,191,143,40,0,182,143,36,0,181,143, 32,0,180,143,28,0,179,143,24,0,178,143, 20,0,177,143,16,0,176,143,8,0,224,3, 48,0,189,39,232,255,189,39,20,0,191,175, 16,0,176,175,0,0,162,140,0,0,0,0, 85,0,64,24,33,16,0,0,120,132,144,39, 2,0,128,16,0,0,0,0,33,128,128,0, 0,0,164,140,4,0,165,140,0,0,0,0, 0,0,168,140,0,0,2,150,0,0,0,0, 33,24,64,0,1,0,66,48,34,0,64,20, 33,56,0,2,32,0,128,24,8,0,98,48, 4,0,6,142,5,0,64,16,0,0,0,0, 12,0,194,140,0,0,0,0,3,0,64,16, 0,0,0,0,33,56,0,2,0,0,168,140, 0,0,195,140,0,0,162,140,0,0,0,0, 10,0,98,16,0,0,0,0,0,0,163,140, 4,0,194,140,0,0,0,0,20,0,64,16, 8,0,198,36,0,0,194,140,0,0,0,0, 249,255,67,20,0,0,0,0,255,255,132,36, 4,0,208,140,0,0,0,0,0,0,3,150, 0,0,0,0,1,0,98,48,224,255,64,16, 4,0,165,36,36,0,128,20,33,16,0,0, 0,0,2,150,0,0,0,0,2,0,66,48, 3,0,64,20,0,0,0,0,65,75,192,8, 33,16,0,0,4,0,230,140,0,0,0,0, 0,0,194,140,0,0,0,0,7,0,72,16, 0,0,0,0,8,0,198,36,0,0,194,140, 0,0,0,0,253,255,72,20,8,0,198,36, 248,255,198,36,4,0,199,140,0,0,0,0, 10,0,224,16,33,32,224,0,8,0,194,140, 12,0,195,140,0,0,194,172,4,0,195,172, 8,0,198,36,4,0,194,140,0,0,0,0, 248,255,64,20,33,32,224,0,206,73,192,12, 33,40,0,2,33,16,0,2,20,0,191,143, 16,0,176,143,8,0,224,3,24,0,189,39, 0,0,0,0,0,0,0,0,0,0,0,0, 192,255,189,39,56,0,191,175,52,0,181,175, 48,0,180,175,44,0,179,175,40,0,178,175, 36,0,177,175,32,0,176,175,33,136,128,0, 33,144,160,0,33,152,192,0,33,160,224,0, 80,0,181,143,0,0,0,0,36,0,162,142, 0,0,0,0,20,0,80,140,33,32,128,2, 48,72,192,12,33,40,160,2,16,0,3,142, 0,0,0,0,16,0,163,175,20,0,180,175, 24,0,162,175,0,0,2,142,1,0,4,36, 33,40,32,2,33,48,64,2,9,248,64,0, 33,56,96,2,6,0,64,20,33,32,128,2, 17,0,162,146,0,0,0,0,1,0,66,52, 113,75,192,8,17,0,162,162,33,40,160,2, 59,77,192,12,33,48,64,0,56,0,191,143, 52,0,181,143,48,0,180,143,44,0,179,143, 40,0,178,143,36,0,177,143,32,0,176,143, 8,0,224,3,64,0,189,39,192,255,189,39, 60,0,191,175,56,0,178,175,52,0,177,175, 48,0,176,175,33,136,224,0,80,0,178,143, 36,0,160,175,36,0,66,142,0,0,0,0, 20,0,67,140,2,0,80,144,0,0,0,0, 255,0,2,50,254,255,71,36,70,0,226,44, 110,0,64,16,128,16,7,0,2,131,1,60, 33,8,34,0,160,151,34,140,0,0,0,0, 8,0,64,0,0,0,0,0,16,0,177,175, 8,0,98,140,16,0,103,140,9,248,64,0, 0,0,0,0,2,0,3,36,16,0,67,162, 251,75,192,8,40,0,66,174,16,0,177,175, 8,0,98,140,16,0,103,140,9,248,64,0, 0,0,0,0,40,0,162,175,16,0,80,162, 40,0,162,143,0,0,0,0,251,75,192,8, 40,0,66,174,32,0,162,39,16,0,162,175, 20,0,177,175,36,0,162,39,24,0,162,175, 8,0,98,140,16,0,103,140,9,248,64,0, 0,0,0,0,33,48,64,0,16,0,80,162, 17,0,66,146,0,0,0,0,2,0,66,52, 17,0,66,162,36,0,162,143,0,0,0,0, 43,16,2,0,40,0,66,166,44,0,70,174, 32,0,162,151,0,0,0,0,33,16,194,0, 48,0,66,174,255,75,192,8,52,0,64,166, 16,0,177,175,36,0,162,39,20,0,162,175, 8,0,98,140,16,0,103,140,9,248,64,0, 0,0,0,0,33,128,64,0,8,0,0,22, 33,32,32,2,16,0,160,175,33,40,64,2, 33,48,0,0,226,76,192,12,33,56,0,0, 255,75,192,8,0,0,0,0,36,0,162,143, 0,0,0,0,16,0,162,175,0,0,6,142, 4,0,7,142,0,0,0,0,226,76,192,12, 33,40,64,2,36,0,162,143,0,0,0,0, 35,0,64,16,0,0,0,0,61,50,192,12, 33,32,0,2,255,75,192,8,0,0,0,0, 5,0,2,36,251,75,192,8,16,0,66,162, 16,0,177,175,40,0,162,39,20,0,162,175, 8,0,98,140,16,0,103,140,9,248,64,0, 0,0,0,0,33,48,64,0,7,0,192,16, 64,0,2,36,3,0,194,136,0,0,194,152, 0,0,0,0,43,0,162,171,40,0,162,187, 64,0,2,36,16,0,66,162,40,0,162,143, 0,0,0,0,251,75,192,8,40,0,66,174, 5,0,2,36,96,0,34,174,17,0,66,146, 0,0,0,0,2,0,66,52,17,0,66,162, 60,0,191,143,56,0,178,143,52,0,177,143, 48,0,176,143,8,0,224,3,64,0,189,39, 80,255,189,39,168,0,191,175,164,0,179,175, 160,0,178,175,156,0,177,175,152,0,176,175, 33,152,128,0,33,136,224,0,192,0,178,143, 0,0,0,0,36,0,66,142,0,0,0,0, 20,0,67,140,0,0,0,0,16,0,98,140, 0,0,0,0,16,0,162,175,20,0,177,175, 4,0,98,140,0,0,0,0,9,248,64,0, 24,0,167,39,33,128,64,0,6,0,0,22, 33,32,32,2,17,0,66,146,0,0,0,0, 18,0,66,52,45,76,192,8,17,0,66,162, 33,40,64,2,33,48,0,2,253,76,192,12, 24,0,167,39,16,0,178,175,33,32,96,2, 33,40,0,2,24,0,166,39,122,75,192,12, 33,56,32,2,168,0,191,143,164,0,179,143, 160,0,178,143,156,0,177,143,152,0,176,143, 8,0,224,3,176,0,189,39,192,255,189,39, 56,0,191,175,52,0,181,175,48,0,180,175, 44,0,179,175,40,0,178,175,36,0,177,175, 32,0,176,175,33,152,128,0,33,160,160,0, 33,168,192,0,33,136,224,0,80,0,178,143, 0,0,0,0,36,0,66,142,0,0,0,0, 20,0,80,140,33,32,32,2,48,72,192,12, 33,40,64,2,16,0,3,142,0,0,0,0, 16,0,163,175,20,0,177,175,24,0,162,175, 0,0,2,142,33,32,0,0,33,40,96,2, 33,48,128,2,9,248,64,0,33,56,160,2, 5,0,64,16,33,32,32,2,200,76,192,12, 33,40,64,2,95,76,192,8,0,0,0,0, 16,0,178,175,33,32,96,2,33,40,128,2, 33,48,160,2,122,75,192,12,33,56,32,2, 56,0,191,143,52,0,181,143,48,0,180,143, 44,0,179,143,40,0,178,143,36,0,177,143, 32,0,176,143,8,0,224,3,64,0,189,39, 192,255,189,39,56,0,191,175,52,0,181,175, 48,0,180,175,44,0,179,175,40,0,178,175, 36,0,177,175,32,0,176,175,33,152,128,0, 33,160,160,0,33,168,192,0,80,0,177,143, 0,0,0,0,36,0,34,142,0,0,0,0, 20,0,82,140,2,0,66,144,0,0,0,0, 254,255,67,36,70,0,98,44,57,0,64,16, 33,128,224,0,128,16,3,0,2,131,1,60, 33,8,34,0,184,152,34,140,0,0,0,0, 8,0,64,0,0,0,0,0,33,32,0,2, 48,72,192,12,33,40,32,2,40,0,35,142, 0,0,0,0,16,0,163,175,20,0,176,175, 173,76,192,8,24,0,162,175,33,32,0,2, 48,72,192,12,33,40,32,2,44,0,35,142, 0,0,0,0,16,0,163,175,48,0,35,142, 44,0,36,142,0,0,0,0,35,24,100,0, 170,76,192,8,255,255,99,48,33,32,0,2, 48,72,192,12,33,40,32,2,40,0,35,142, 0,0,0,0,16,0,163,175,44,0,35,142, 0,0,0,0,171,76,192,8,20,0,163,175, 33,32,0,2,48,72,192,12,33,40,32,2, 40,0,35,38,16,0,163,175,4,0,3,36, 20,0,163,175,24,0,176,175,28,0,162,175, 12,0,66,142,33,32,96,2,33,40,128,2, 16,0,71,142,0,0,0,0,9,248,64,0, 33,48,160,2,184,76,192,8,0,0,0,0, 5,0,2,36,96,0,2,174,17,0,34,146, 0,0,0,0,2,0,66,52,17,0,34,162, 56,0,191,143,52,0,181,143,48,0,180,143, 44,0,179,143,40,0,178,143,36,0,177,143, 32,0,176,143,8,0,224,3,64,0,189,39, 0,0,0,0,0,0,0,0,0,0,0,0, 224,255,189,39,24,0,191,175,20,0,177,175, 16,0,176,175,33,128,128,0,64,0,2,142, 0,0,0,0,7,0,64,20,33,136,160,0, 2,0,2,36,48,72,192,12,96,0,2,174, 1,0,66,36,217,76,192,8,100,0,2,174, 129,0,2,36,16,0,34,162,17,0,34,146, 0,0,0,0,2,0,66,52,17,0,34,162, 24,0,191,143,20,0,177,143,16,0,176,143, 8,0,224,3,32,0,189,39,232,255,189,39, 20,0,191,175,16,0,176,175,33,128,128,0, 33,64,160,0,33,32,192,0,33,40,224,0, 40,0,162,143,17,0,3,145,0,0,0,0, 2,0,99,52,17,0,3,161,6,0,3,36, 4,0,64,16,16,0,3,161,40,0,4,173, 249,76,192,8,44,0,5,173,80,86,192,12, 40,0,6,37,2,0,64,16,5,0,2,36, 96,0,2,174,20,0,191,143,16,0,176,143, 8,0,224,3,24,0,189,39,200,255,189,39, 48,0,191,175,44,0,183,175,40,0,182,175, 36,0,181,175,32,0,180,175,28,0,179,175, 24,0,178,175,20,0,177,175,16,0,176,175, 33,176,128,0,33,144,160,0,33,152,192,0, 37,0,96,18,33,184,224,0,28,0,84,38, 8,0,67,142,28,0,66,142,0,0,0,0, 35,128,98,0,42,16,83,0,23,0,64,16, 33,168,19,2,9,50,192,12,128,32,21,0, 33,136,64,0,8,0,32,22,128,128,16,0, 5,0,2,36,96,0,194,174,17,0,66,146, 0,0,0,0,2,0,66,52,48,77,192,8, 17,0,66,162,33,32,32,2,12,0,69,142, 0,0,0,0,80,68,192,12,33,48,0,2, 110,86,192,12,8,0,68,38,12,0,81,174, 33,128,48,2,4,0,144,174,4,0,132,142, 33,40,224,2,80,68,192,12,128,48,19,0, 0,0,147,174,8,0,85,174,48,0,191,143, 44,0,183,143,40,0,182,143,36,0,181,143, 32,0,180,143,28,0,179,143,24,0,178,143, 20,0,177,143,16,0,176,143,8,0,224,3, 56,0,189,39,224,255,189,39,24,0,191,175, 20,0,177,175,16,0,176,175,33,136,128,0, 5,0,192,24,33,128,160,0,3,0,2,36, 96,0,34,174,95,77,192,8,100,0,38,174, 19,0,195,36,19,0,98,44,9,0,64,16, 128,16,3,0,2,131,1,60,33,8,34,0, 208,153,34,140,0,0,0,0,8,0,64,0, 0,0,0,0,89,77,192,8,2,0,6,36, 89,77,192,8,5,0,6,36,89,77,192,8, 3,0,6,36,89,77,192,8,1,0,6,36, 35,48,6,0,96,0,38,174,33,32,32,2, 48,72,192,12,33,40,0,2,1,0,66,36, 100,0,34,174,17,0,2,146,0,0,0,0, 1,0,66,52,17,0,2,162,24,0,191,143, 20,0,177,143,16,0,176,143,8,0,224,3, 32,0,189,39,200,255,189,39,52,0,191,175, 48,0,190,175,44,0,183,175,40,0,182,175, 36,0,181,175,32,0,180,175,28,0,179,175, 24,0,178,175,20,0,177,175,16,0,176,175, 33,152,128,0,33,168,160,0,33,160,192,0, 76,0,182,143,80,0,183,143,84,0,190,143, 92,0,177,143,0,0,0,0,209,83,192,12, 33,144,224,0,33,128,64,0,3,0,0,22, 4,0,2,36,168,77,192,8,33,16,0,0, 88,0,2,166,64,0,19,174,33,32,64,2, 72,0,165,143,0,0,0,0,80,86,192,12, 92,0,6,38,255,255,3,36,23,0,67,16, 0,0,0,0,3,0,194,138,0,0,194,154, 0,0,0,0,103,0,2,170,100,0,2,186, 104,0,23,174,108,0,30,174,88,0,168,143, 0,0,0,0,112,0,8,174,72,0,0,166, 76,0,20,174,255,255,162,50,33,16,130,2, 80,0,2,174,84,0,0,166,9,0,32,18, 120,0,17,174,224,83,192,12,33,32,32,2, 6,0,64,20,124,0,2,174,167,83,192,12, 33,32,0,2,168,77,192,8,33,16,0,0, 124,0,0,174,33,16,0,2,52,0,191,143, 48,0,190,143,44,0,183,143,40,0,182,143, 36,0,181,143,32,0,180,143,28,0,179,143, 24,0,178,143,20,0,177,143,16,0,176,143, 8,0,224,3,56,0,189,39,224,255,189,39, 28,0,191,175,24,0,178,175,20,0,177,175, 16,0,176,175,33,144,128,0,92,0,68,142, 128,86,192,12,0,0,0,0,96,0,68,142, 0,0,0,0,128,86,192,12,33,128,64,0, 100,0,68,142,0,0,0,0,128,86,192,12, 33,136,64,0,33,128,17,2,6,0,16,38, 33,16,80,0,90,0,66,166,191,79,192,12, 104,0,68,38,255,255,67,48,90,0,68,150, 128,0,98,44,5,0,64,20,2,0,130,36, 0,1,98,44,2,0,64,20,3,0,130,36, 4,0,130,36,33,16,67,0,90,0,66,166, 80,0,66,142,76,0,67,142,90,0,80,150, 64,0,68,142,0,0,0,0,128,86,192,12, 35,136,67,0,255,255,67,48,90,0,68,150, 0,0,0,0,128,0,130,44,9,0,64,20, 0,1,130,44,4,0,64,16,0,0,0,0, 33,24,112,0,237,77,192,8,6,0,99,36, 33,24,112,0,237,77,192,8,7,0,99,36, 33,24,112,0,5,0,99,36,255,255,36,50, 128,0,130,44,5,0,64,20,1,0,130,36, 0,1,130,44,2,0,64,20,2,0,130,36, 3,0,130,36,33,16,98,0,2,0,66,166, 2,0,67,150,2,0,68,150,0,0,0,0, 128,0,130,44,6,0,64,20,1,0,99,36, 0,1,130,44,4,0,64,20,2,0,98,36, 3,78,192,8,3,0,98,36,1,0,98,36, 0,0,66,166,0,0,66,150,28,0,191,143, 24,0,178,143,20,0,177,143,16,0,176,143, 8,0,224,3,32,0,189,39,216,255,189,39, 32,0,191,175,28,0,179,175,24,0,178,175, 20,0,177,175,16,0,176,175,33,152,128,0, 171,86,192,12,92,0,100,38,104,0,100,142, 0,0,0,0,128,86,192,12,33,144,64,0, 108,0,100,142,0,0,0,0,128,86,192,12, 33,136,64,0,112,0,100,142,0,0,0,0, 153,86,192,12,33,128,64,0,10,0,82,38, 33,136,50,2,33,128,17,2,4,0,16,38, 33,16,80,0,90,0,98,166,191,79,192,12, 116,0,100,38,255,255,67,48,90,0,100,150, 128,0,98,44,5,0,64,20,2,0,130,36, 0,1,98,44,2,0,64,20,3,0,130,36, 4,0,130,36,33,16,67,0,90,0,98,166, 80,0,98,142,76,0,99,142,90,0,113,150, 64,0,100,142,0,0,0,0,128,86,192,12, 35,128,67,0,255,255,67,48,90,0,100,150, 0,0,0,0,128,0,130,44,9,0,64,20, 0,1,130,44,4,0,64,16,0,0,0,0, 33,24,113,0,74,78,192,8,6,0,99,36, 33,24,113,0,74,78,192,8,7,0,99,36, 33,24,113,0,5,0,99,36,255,255,4,50, 128,0,130,44,5,0,64,20,1,0,130,36, 0,1,130,44,2,0,64,20,2,0,130,36, 3,0,130,36,33,16,98,0,2,0,98,166, 2,0,99,150,2,0,100,150,0,0,0,0, 128,0,130,44,6,0,64,20,1,0,99,36, 0,1,130,44,4,0,64,20,2,0,112,36, 96,78,192,8,3,0,112,36,1,0,112,36, 255,255,2,50,32,0,191,143,28,0,179,143, 24,0,178,143,20,0,177,143,16,0,176,143, 8,0,224,3,40,0,189,39,208,255,189,39, 40,0,191,175,36,0,179,175,32,0,178,175, 28,0,177,175,24,0,176,175,33,128,128,0, 33,152,192,0,33,144,224,0,33,136,160,0, 16,0,4,36,32,0,5,36,1,131,6,60, 56,97,198,36,242,86,192,12,33,56,0,2, 255,255,36,50,1,131,5,60,56,97,165,36, 44,87,192,12,33,48,0,2,16,0,176,175, 2,0,4,36,33,40,0,0,1,131,7,60, 56,97,231,36,94,87,192,12,33,48,96,2, 8,0,71,142,4,0,66,142,0,0,0,0, 35,56,226,0,1,131,2,60,56,97,66,36, 16,0,162,175,20,0,176,175,4,0,4,36, 33,40,0,0,4,0,70,142,0,0,0,0, 194,87,192,12,255,255,231,48,40,0,191,143, 36,0,179,143,32,0,178,143,28,0,177,143, 24,0,176,143,8,0,224,3,48,0,189,39, 216,255,189,39,36,0,191,175,32,0,178,175, 28,0,177,175,24,0,176,175,33,128,128,0, 33,136,160,0,88,0,4,150,160,0,5,36, 1,131,6,60,56,97,198,36,242,86,192,12, 33,56,32,2,90,0,4,150,1,131,5,60, 56,97,165,36,44,87,192,12,33,48,32,2, 16,0,177,175,6,0,4,36,33,40,0,0, 1,131,7,60,56,97,231,36,15,88,192,12, 92,0,6,38,1,131,18,60,56,97,82,38, 16,0,178,175,20,0,177,175,33,32,0,0, 64,0,5,36,100,0,6,38,194,87,192,12, 4,0,7,36,16,0,177,175,2,0,4,36, 33,40,0,0,104,0,6,142,0,0,0,0, 94,87,192,12,33,56,64,2,16,0,177,175, 2,0,4,36,33,40,0,0,108,0,6,142, 0,0,0,0,94,87,192,12,33,56,64,2, 16,0,177,175,3,0,4,36,64,0,5,36, 112,0,6,142,0,0,0,0,143,87,192,12, 33,56,64,2,116,0,4,38,7,79,192,12, 33,40,32,2,36,0,191,143,32,0,178,143, 28,0,177,143,24,0,176,143,8,0,224,3, 40,0,189,39,216,255,189,39,32,0,191,175, 28,0,177,175,24,0,176,175,33,128,128,0, 33,136,160,0,88,0,4,150,160,0,5,36, 1,131,6,60,56,97,198,36,242,86,192,12, 33,56,32,2,90,0,4,150,1,131,5,60, 56,97,165,36,44,87,192,12,33,48,32,2, 16,0,177,175,2,0,4,36,92,0,6,142, 1,131,7,60,56,97,231,36,94,87,192,12, 33,40,0,0,16,0,177,175,2,0,4,36, 96,0,6,142,1,131,7,60,56,97,231,36, 94,87,192,12,33,40,0,0,16,0,177,175, 2,0,4,36,100,0,6,142,1,131,7,60, 56,97,231,36,94,87,192,12,33,40,0,0, 104,0,4,38,7,79,192,12,33,40,32,2, 32,0,191,143,28,0,177,143,24,0,176,143, 8,0,224,3,40,0,189,39,200,255,189,39, 52,0,191,175,48,0,180,175,44,0,179,175, 40,0,178,175,36,0,177,175,32,0,176,175, 33,144,128,0,33,136,160,0,16,0,4,36, 32,0,5,36,1,131,6,60,56,97,198,36, 242,86,192,12,33,56,32,2,0,0,68,150, 1,131,5,60,56,97,165,36,44,87,192,12, 33,48,32,2,155,0,64,18,0,0,0,0, 1,131,20,60,56,97,148,38,8,0,80,142, 0,0,0,0,145,0,0,18,0,0,0,0, 4,0,66,142,0,0,0,0,141,0,64,24, 33,152,0,0,16,0,4,36,32,0,5,36, 33,48,128,2,242,86,192,12,33,56,32,2, 4,0,4,150,33,40,128,2,44,87,192,12, 33,48,32,2,16,0,177,175,6,0,4,36, 33,40,0,0,8,0,6,38,15,88,192,12, 33,56,128,2,16,0,3,146,65,0,2,36, 47,0,98,16,66,0,98,40,18,0,64,16, 5,0,2,36,88,0,98,16,6,0,98,40, 7,0,64,16,2,0,2,36,30,0,98,16, 4,0,2,36,51,0,98,16,4,0,4,36, 174,79,192,8,1,0,115,38,6,0,2,36, 68,0,98,16,64,0,2,36,78,0,98,16, 33,32,0,0,174,79,192,8,1,0,115,38, 68,0,2,36,47,0,98,16,69,0,98,40, 7,0,64,16,66,0,2,36,24,0,98,16, 67,0,2,36,25,0,98,16,3,0,4,36, 174,79,192,8,1,0,115,38,131,0,98,40, 83,0,64,16,128,0,98,40,68,0,64,16, 0,0,0,0,174,79,192,8,1,0,115,38, 16,0,177,175,2,0,4,36,40,0,6,142, 1,131,7,60,56,97,231,36,94,87,192,12, 33,40,0,0,174,79,192,8,1,0,115,38, 16,0,177,175,111,79,192,8,1,0,4,36, 16,0,177,175,111,79,192,8,2,0,4,36, 16,0,177,175,40,0,6,142,1,131,7,60, 56,97,231,36,143,87,192,12,64,0,5,36, 174,79,192,8,1,0,115,38,48,0,7,142, 44,0,2,142,0,0,0,0,35,56,226,0, 16,0,180,175,20,0,177,175,134,79,192,8, 33,40,0,0,48,0,7,142,44,0,2,142, 0,0,0,0,35,56,226,0,16,0,180,175, 20,0,177,175,4,0,4,36,64,0,5,36, 44,0,6,142,0,0,0,0,194,87,192,12, 255,255,231,48,174,79,192,8,1,0,115,38, 16,0,177,175,6,0,4,36,33,40,0,0, 1,131,7,60,56,97,231,36,15,88,192,12, 40,0,6,38,174,79,192,8,1,0,115,38, 5,0,4,36,164,79,192,8,33,40,0,0, 16,0,180,175,20,0,177,175,64,0,5,36, 40,0,6,38,194,87,192,12,4,0,7,36, 174,79,192,8,1,0,115,38,16,0,4,146, 16,0,5,146,31,0,132,48,224,0,165,48, 1,131,6,60,56,97,198,36,242,86,192,12, 33,56,32,2,33,32,0,0,1,131,5,60, 56,97,165,36,44,87,192,12,33,48,32,2, 1,0,115,38,4,0,66,142,0,0,0,0, 42,16,98,2,117,255,64,20,68,0,16,38, 12,0,82,142,0,0,0,0,105,255,64,22, 0,0,0,0,52,0,191,143,48,0,180,143, 44,0,179,143,40,0,178,143,36,0,177,143, 32,0,176,143,8,0,224,3,56,0,189,39, 200,255,189,39,52,0,191,175,48,0,182,175, 44,0,181,175,40,0,180,175,36,0,179,175, 32,0,178,175,28,0,177,175,24,0,176,175, 33,168,128,0,33,152,160,2,113,0,160,18, 33,144,0,0,4,0,22,36,8,0,112,142, 0,0,0,0,104,0,0,18,0,0,0,0, 4,0,98,142,0,0,0,0,100,0,64,24, 33,160,0,0,171,86,192,12,8,0,4,38, 255,255,67,48,128,0,98,44,5,0,64,20, 2,0,113,36,0,1,98,44,2,0,64,20, 3,0,113,36,4,0,113,36,16,0,3,146, 64,0,2,36,50,0,98,16,65,0,98,40, 16,0,64,16,68,0,2,36,34,0,118,16, 5,0,98,40,5,0,64,16,2,0,2,36, 20,0,98,16,255,255,36,50,22,80,192,8, 0,0,0,0,5,0,2,36,35,0,98,16, 6,0,2,36,29,0,98,16,255,255,36,50, 22,80,192,8,0,0,0,0,19,0,98,16, 68,0,98,40,12,0,64,20,131,0,98,40, 28,0,64,16,128,0,98,40,27,0,64,20, 255,255,36,50,22,80,192,8,18,0,0,166, 40,0,4,142,128,86,192,12,0,0,0,0, 21,80,192,8,18,0,2,166,40,0,4,142, 153,86,192,12,0,0,0,0,21,80,192,8, 18,0,2,166,48,0,2,142,44,0,3,142, 0,0,0,0,35,16,67,0,21,80,192,8, 18,0,2,166,171,86,192,12,40,0,4,38, 21,80,192,8,18,0,2,166,21,80,192,8, 18,0,0,166,18,0,22,166,255,255,36,50, 18,0,3,150,0,0,0,0,128,0,98,44, 6,0,64,20,1,0,132,36,0,1,98,44, 4,0,64,20,2,0,98,36,33,80,192,8, 3,0,98,36,1,0,98,36,33,16,130,0, 4,0,2,166,4,0,4,150,0,0,0,0, 1,0,132,36,4,0,3,150,0,0,0,0, 128,0,98,44,6,0,64,20,255,255,69,50, 0,1,98,44,4,0,64,20,2,0,162,36, 49,80,192,8,3,0,162,36,1,0,162,36, 33,144,68,0,1,0,148,38,4,0,98,142, 0,0,0,0,42,16,130,2,158,255,64,20, 68,0,16,38,12,0,115,142,0,0,0,0, 146,255,96,22,0,0,0,0,0,0,178,166, 255,255,66,50,52,0,191,143,48,0,182,143, 44,0,181,143,40,0,180,143,36,0,179,143, 32,0,178,143,28,0,177,143,24,0,176,143, 8,0,224,3,56,0,189,39,224,255,189,39, 24,0,191,175,20,0,177,175,16,0,176,175, 33,128,128,0,171,86,192,12,8,0,4,38, 255,255,67,48,128,0,98,44,5,0,64,20, 2,0,113,36,0,1,98,44,2,0,64,20, 3,0,113,36,4,0,113,36,16,0,3,146, 64,0,2,36,52,0,98,16,65,0,98,40, 17,0,64,16,4,0,2,36,37,0,98,16, 0,0,0,0,5,0,98,40,5,0,64,16, 2,0,2,36,22,0,98,16,255,255,36,50, 145,80,192,8,0,0,0,0,5,0,2,36, 36,0,98,16,6,0,2,36,30,0,98,16, 255,255,36,50,145,80,192,8,0,0,0,0, 68,0,2,36,20,0,98,16,0,0,0,0, 68,0,98,40,12,0,64,20,131,0,98,40, 28,0,64,16,128,0,98,40,27,0,64,20, 255,255,36,50,145,80,192,8,18,0,0,166, 40,0,4,142,128,86,192,12,0,0,0,0, 144,80,192,8,18,0,2,166,40,0,4,142, 153,86,192,12,0,0,0,0,144,80,192,8, 18,0,2,166,48,0,2,142,44,0,3,142, 0,0,0,0,143,80,192,8,35,16,67,0, 171,86,192,12,40,0,4,38,144,80,192,8, 18,0,2,166,144,80,192,8,18,0,0,166, 4,0,2,36,18,0,2,166,255,255,36,50, 18,0,3,150,0,0,0,0,128,0,98,44, 6,0,64,20,1,0,132,36,0,1,98,44, 4,0,64,20,2,0,98,36,156,80,192,8, 3,0,98,36,1,0,98,36,33,16,130,0, 4,0,2,166,4,0,3,150,4,0,4,150, 0,0,0,0,128,0,130,44,6,0,64,20, 1,0,99,36,0,1,130,44,4,0,64,20, 2,0,98,36,170,80,192,8,3,0,98,36, 1,0,98,36,255,255,66,48,24,0,191,143, 20,0,177,143,16,0,176,143,8,0,224,3, 32,0,189,39,232,255,189,39,16,0,191,175, 64,0,130,140,0,0,0,0,12,0,64,20, 33,16,0,0,88,0,131,148,4,0,2,36, 5,0,98,16,0,0,0,0,180,77,192,12, 0,0,0,0,193,80,192,8,255,255,66,48, 11,78,192,12,0,0,0,0,255,255,66,48, 16,0,191,143,24,0,189,39,8,0,224,3, 0,0,0,0,224,255,189,39,24,0,191,175, 20,0,177,175,16,0,176,175,33,128,128,0, 176,80,192,12,33,136,160,0,33,32,0,2, 33,40,32,2,213,80,192,12,255,255,70,48, 24,0,191,143,20,0,177,143,16,0,176,143, 8,0,224,3,32,0,189,39,224,255,189,39, 28,0,191,175,24,0,178,175,20,0,177,175, 16,0,176,175,33,144,128,0,33,136,192,0, 255,255,34,50,41,0,64,16,33,128,160,0, 4,0,2,142,0,0,0,0,11,0,64,20, 255,255,35,50,9,50,192,12,255,255,36,50, 33,24,64,0,32,0,96,16,1,0,2,36, 0,0,2,166,4,0,3,174,8,0,3,174, 242,80,192,8,12,0,17,166,12,0,2,150, 0,0,0,0,43,16,67,0,23,0,64,20, 255,255,2,36,64,0,66,142,0,0,0,0, 19,0,64,20,255,255,2,36,33,32,0,2, 2,0,69,150,33,48,0,0,104,78,192,12, 72,0,71,38,88,0,67,150,4,0,2,36, 5,0,98,16,33,32,64,2,217,78,192,12, 33,40,0,2,8,81,192,8,33,16,0,0, 153,78,192,12,33,40,0,2,8,81,192,8, 33,16,0,0,255,255,2,36,28,0,191,143, 24,0,178,143,20,0,177,143,16,0,176,143, 8,0,224,3,32,0,189,39,0,0,0,0, 0,0,0,0,168,255,189,39,80,0,191,175, 76,0,183,175,72,0,182,175,68,0,181,175, 64,0,180,175,60,0,179,175,56,0,178,175, 52,0,177,175,48,0,176,175,33,24,128,0, 33,152,160,0,33,176,192,0,33,184,224,0, 104,0,162,143,0,0,0,0,2,0,64,20, 44,0,160,175,40,0,162,39,0,0,64,172, 24,0,164,39,33,40,96,0,156,88,192,12, 33,48,96,2,33,136,64,0,82,0,32,18, 33,16,0,0,209,83,192,12,0,0,0,0, 33,144,64,0,5,0,64,22,1,0,2,36, 183,88,192,12,33,32,32,2,124,81,192,8, 33,16,0,0,148,0,66,162,196,88,192,12, 33,32,32,2,224,0,85,48,44,0,176,39, 33,32,32,2,124,89,192,12,33,40,0,2, 33,160,64,0,33,32,32,2,198,89,192,12, 33,40,0,2,2,0,66,166,44,0,162,143, 0,0,0,0,14,0,64,20,0,0,0,0, 8,0,35,142,4,0,34,142,0,0,0,0, 35,128,98,0,2,0,66,150,0,0,0,0, 33,128,2,2,42,16,19,2,16,0,64,20, 33,32,32,2,42,16,112,2,16,0,64,16, 0,0,0,0,167,83,192,12,33,32,64,2, 183,88,192,12,33,32,32,2,3,131,3,60, 140,17,99,36,0,0,98,140,0,0,0,0, 1,0,66,36,0,0,98,172,124,81,192,8, 33,16,0,0,33,40,0,2,42,89,192,12, 33,48,0,0,255,0,162,50,255,255,131,50, 37,16,67,0,48,0,3,36,8,0,67,20, 33,32,64,2,16,0,176,175,33,40,32,2, 33,48,192,2,135,81,192,12,33,56,224,2, 117,81,192,8,33,128,64,0,3,131,3,60, 140,17,99,36,0,0,98,140,0,0,0,0, 1,0,66,36,0,0,98,172,33,128,0,0, 3,0,0,22,0,0,0,0,167,83,192,12, 33,32,64,2,183,88,192,12,33,32,32,2, 33,16,0,2,80,0,191,143,76,0,183,143, 72,0,182,143,68,0,181,143,64,0,180,143, 60,0,179,143,56,0,178,143,52,0,177,143, 48,0,176,143,8,0,224,3,88,0,189,39, 176,255,189,39,76,0,191,175,72,0,182,175, 68,0,181,175,64,0,180,175,60,0,179,175, 56,0,178,175,52,0,177,175,48,0,176,175, 33,128,128,0,33,136,160,0,33,160,192,0, 33,168,224,0,96,0,182,143,24,0,160,175, 33,32,32,2,24,0,165,39,2,0,6,36, 239,90,192,12,33,56,0,0,64,0,2,174, 24,0,162,143,0,0,0,0,155,0,64,20, 0,0,0,0,64,0,2,142,0,0,0,0, 4,0,64,16,33,32,32,2,3,131,3,60, 60,82,192,8,148,17,99,36,16,0,160,175, 72,0,5,38,24,0,166,39,110,90,192,12, 4,0,7,36,24,0,162,143,0,0,0,0, 139,0,64,20,0,0,0,0,196,88,192,12, 33,32,32,2,224,0,66,48,160,0,3,36, 133,0,67,20,33,32,32,2,124,89,192,12, 24,0,165,39,33,144,64,0,33,32,32,2, 198,89,192,12,24,0,165,39,33,152,64,0, 24,0,162,143,0,0,0,0,122,0,64,20, 0,0,0,0,255,255,66,50,5,0,66,44, 118,0,64,16,0,0,0,0,8,0,34,142, 4,0,35,142,0,0,0,0,35,16,67,0, 255,255,99,50,33,16,67,0,110,0,194,22, 33,32,0,2,88,0,18,166,90,0,19,166, 33,40,128,2,178,50,192,12,33,48,160,2, 118,0,64,20,33,16,0,0,255,255,67,50, 4,0,2,36,24,0,98,16,33,32,32,2, 24,0,165,39,2,0,6,36,239,90,192,12, 33,56,0,0,92,0,2,174,33,32,32,2, 24,0,165,39,2,0,6,36,239,90,192,12, 33,56,0,0,96,0,2,174,33,32,32,2, 24,0,165,39,2,0,6,36,239,90,192,12, 33,56,0,0,100,0,2,174,24,0,162,143, 0,0,0,0,78,0,64,20,33,32,32,2, 67,82,192,8,104,0,5,38,4,0,2,36, 88,0,2,166,90,0,19,166,124,0,0,174, 16,0,160,175,92,0,5,38,24,0,166,39, 186,91,192,12,6,0,7,36,24,0,162,143, 0,0,0,0,63,0,64,20,100,0,4,38, 33,40,0,0,144,71,192,12,4,0,6,36, 32,0,160,167,40,0,160,175,36,0,160,175, 44,0,160,167,32,0,178,39,64,0,2,36, 16,0,162,175,33,32,32,2,33,40,64,2, 24,0,166,39,110,90,192,12,33,56,0,0, 24,0,162,143,0,0,0,0,5,0,64,16, 0,0,0,0,24,92,192,12,33,32,64,2, 58,82,192,8,0,0,0,0,40,0,162,143, 36,0,163,143,0,0,0,0,35,16,67,0, 255,255,70,48,5,0,194,44,2,0,64,20, 0,0,0,0,4,0,6,36,8,0,192,16, 33,32,32,2,36,0,165,143,0,0,0,0, 80,68,192,12,100,0,4,38,24,92,192,12, 32,0,164,39,33,32,32,2,24,0,165,39, 2,0,6,36,239,90,192,12,33,56,0,0, 104,0,2,174,33,32,32,2,24,0,165,39, 2,0,6,36,239,90,192,12,33,56,0,0, 108,0,2,174,33,32,32,2,24,0,165,39, 3,0,6,36,239,90,192,12,64,0,7,36, 112,0,2,174,24,0,162,143,0,0,0,0, 9,0,64,16,33,32,32,2,3,131,3,60, 140,17,99,36,0,0,98,140,0,0,0,0, 1,0,66,36,0,0,98,172,73,82,192,8, 33,16,0,0,116,0,5,38,33,48,192,2, 163,82,192,12,33,56,0,2,255,255,3,36, 248,255,67,16,33,16,0,2,76,0,191,143, 72,0,182,143,68,0,181,143,64,0,180,143, 60,0,179,143,56,0,178,143,52,0,177,143, 48,0,176,143,8,0,224,3,80,0,189,39, 184,255,189,39,64,0,191,175,60,0,183,175, 56,0,182,175,52,0,181,175,48,0,180,175, 44,0,179,175,40,0,178,175,36,0,177,175, 32,0,176,175,33,128,128,0,16,0,160,175, 8,0,2,142,4,0,3,142,0,0,0,0, 35,184,67,0,33,144,0,0,255,255,162,48, 45,0,64,16,33,136,0,0,3,131,19,60, 140,17,115,38,255,255,22,36,255,255,181,48, 8,0,3,142,4,0,2,142,0,0,0,0, 35,160,98,0,0,0,2,146,0,0,0,0, 128,0,66,48,32,0,64,20,33,32,0,2, 124,89,192,12,16,0,165,39,33,32,0,2, 198,89,192,12,16,0,165,39,33,40,64,0, 16,0,162,143,0,0,0,0,6,0,64,20, 33,32,0,2,255,255,165,48,251,88,192,12, 1,0,6,36,7,0,86,20,0,0,0,0, 0,0,98,142,0,0,0,0,1,0,66,36, 0,0,98,174,147,82,192,8,255,255,17,36, 8,0,2,142,4,0,3,142,0,0,0,0, 35,16,67,0,33,16,66,2,35,144,84,0, 255,255,66,50,43,16,85,0,217,255,64,20, 1,0,49,38,33,32,0,2,33,40,224,2, 251,88,192,12,33,48,0,0,33,16,32,2, 64,0,191,143,60,0,183,143,56,0,182,143, 52,0,181,143,48,0,180,143,44,0,179,143, 40,0,178,143,36,0,177,143,32,0,176,143, 8,0,224,3,72,0,189,39,192,255,189,39, 56,0,191,175,52,0,181,175,48,0,180,175, 44,0,179,175,40,0,178,175,36,0,177,175, 32,0,176,175,33,144,128,0,33,152,160,0, 33,168,224,0,16,0,160,175,124,89,192,12, 16,0,165,39,33,32,64,2,198,89,192,12, 16,0,165,39,0,0,98,166,16,0,162,143, 0,0,0,0,28,0,64,20,0,0,0,0, 12,0,66,142,8,0,67,142,0,0,0,0, 35,16,67,0,0,0,99,150,255,255,66,48, 20,0,98,20,0,0,0,0,4,0,96,174, 0,0,101,150,0,0,0,0,83,82,192,12, 33,32,64,2,33,32,64,0,255,255,2,36, 46,0,130,16,0,0,0,0,3,0,128,20, 0,0,0,0,246,82,192,8,8,0,96,174, 224,83,192,12,4,0,100,174,10,0,64,20, 8,0,98,174,247,82,192,8,255,255,2,36, 3,131,3,60,140,17,99,36,0,0,98,140, 0,0,0,0,1,0,66,36,210,82,192,8, 0,0,98,172,8,0,112,142,4,0,98,142, 0,0,0,0,23,0,64,24,33,136,0,0, 255,255,20,36,33,32,64,2,124,89,192,12, 16,0,165,39,33,32,64,2,198,89,192,12, 16,0,165,39,4,0,2,166,16,0,162,143, 0,0,0,0,233,255,64,20,33,32,64,2, 33,40,0,2,0,83,192,12,33,48,160,2, 226,255,84,16,1,0,49,38,4,0,98,142, 0,0,0,0,42,16,34,2,236,255,64,20, 68,0,16,38,33,16,0,0,56,0,191,143, 52,0,181,143,48,0,180,143,44,0,179,143, 40,0,178,143,36,0,177,143,32,0,176,143, 8,0,224,3,64,0,189,39,184,255,189,39, 68,0,191,175,64,0,180,175,60,0,179,175, 56,0,178,175,52,0,177,175,48,0,176,175, 33,128,128,0,33,144,160,0,24,0,160,175, 16,0,160,175,8,0,69,38,24,0,166,39, 186,91,192,12,6,0,7,36,24,0,162,143, 0,0,0,0,103,0,64,20,0,0,0,0, 196,88,192,12,33,32,0,2,224,0,84,48, 33,32,0,2,124,89,192,12,24,0,165,39, 33,152,64,0,33,32,0,2,198,89,192,12, 24,0,165,39,33,136,64,0,24,0,162,143, 0,0,0,0,88,0,64,20,37,16,116,2, 18,0,81,166,16,0,66,162,16,0,67,146, 64,0,2,36,48,0,98,16,65,0,98,40, 16,0,64,16,4,0,2,36,31,0,98,16, 5,0,98,40,5,0,64,16,2,0,2,36, 22,0,98,16,33,32,0,2,121,83,192,8, 0,0,0,0,5,0,2,36,65,0,98,16, 6,0,2,36,27,0,98,16,33,32,0,2, 121,83,192,8,0,0,0,0,68,0,2,36, 15,0,98,16,68,0,98,40,8,0,64,20, 33,32,0,2,131,0,98,40,57,0,64,16, 128,0,98,40,51,0,64,16,0,0,0,0, 121,83,192,8,0,0,0,0,255,255,37,50, 164,90,192,12,24,0,166,39,117,83,192,8, 40,0,66,174,33,32,0,2,255,255,37,50, 40,0,70,38,19,90,192,12,24,0,167,39, 117,83,192,8,0,0,0,0,255,255,37,50, 40,0,70,38,24,91,192,12,24,0,167,39, 117,83,192,8,0,0,0,0,40,0,68,38, 33,40,0,0,144,71,192,12,4,0,6,36, 32,0,160,167,40,0,160,175,36,0,160,175, 44,0,160,167,33,32,0,2,255,255,37,50, 32,0,166,39,19,90,192,12,24,0,167,39, 40,0,162,143,36,0,163,143,0,0,0,0, 35,16,67,0,255,255,70,48,5,0,194,44, 2,0,64,20,0,0,0,0,4,0,6,36, 7,0,192,16,0,0,0,0,36,0,165,143, 0,0,0,0,80,68,192,12,40,0,68,38, 24,92,192,12,32,0,164,39,24,0,162,143, 0,0,0,0,8,0,64,16,33,16,0,0, 3,131,3,60,140,17,99,36,0,0,98,140, 0,0,0,0,1,0,66,36,0,0,98,172, 255,255,2,36,68,0,191,143,64,0,180,143, 60,0,179,143,56,0,178,143,52,0,177,143, 48,0,176,143,8,0,224,3,72,0,189,39, 232,255,189,39,20,0,191,175,16,0,176,175, 33,128,128,0,76,0,2,142,0,0,0,0, 3,0,64,16,0,0,0,0,24,92,192,12, 72,0,4,38,88,0,3,150,4,0,2,36, 5,0,98,20,0,0,0,0,110,86,192,12, 92,0,4,38,157,83,192,8,116,0,4,38, 13,84,192,12,104,0,4,38,120,0,4,38, 13,84,192,12,0,0,0,0,148,0,3,146, 0,0,0,0,248,83,192,12,33,32,0,2, 20,0,191,143,16,0,176,143,8,0,224,3, 24,0,189,39,232,255,189,39,20,0,191,175, 16,0,176,175,33,128,128,0,5,0,0,18, 0,0,0,0,136,83,192,12,0,0,0,0, 61,50,192,12,33,32,0,2,20,0,191,143, 16,0,176,143,8,0,224,3,24,0,189,39, 224,255,189,39,24,0,191,175,20,0,177,175, 16,0,176,175,33,136,128,0,9,50,192,12, 16,0,4,36,33,128,64,0,11,0,0,18, 33,32,0,2,33,40,0,0,144,71,192,12, 16,0,6,36,224,83,192,12,33,32,32,2, 4,0,64,16,8,0,2,174,4,0,17,174, 204,83,192,8,33,16,0,2,61,50,192,12, 33,32,0,2,33,16,0,0,24,0,191,143, 20,0,177,143,16,0,176,143,8,0,224,3, 32,0,189,39,232,255,189,39,20,0,191,175, 16,0,176,175,9,50,192,12,152,0,4,36, 33,128,64,0,4,0,0,18,33,16,0,0, 248,83,192,12,33,32,0,2,33,16,0,2, 20,0,191,143,16,0,176,143,8,0,224,3, 24,0,189,39,224,255,189,39,24,0,191,175, 20,0,177,175,0,17,4,0,33,16,68,0, 128,136,2,0,11,0,32,18,16,0,176,175, 9,50,192,12,33,32,32,2,33,128,64,0, 4,0,0,18,33,32,0,2,33,40,0,0, 144,71,192,12,33,48,32,2,243,83,192,8, 33,16,0,2,33,16,0,0,24,0,191,143, 20,0,177,143,16,0,176,143,8,0,224,3, 32,0,189,39,232,255,189,39,20,0,191,175, 16,0,176,175,33,128,128,0,33,40,0,0, 144,71,192,12,152,0,6,36,255,0,2,36, 88,0,2,166,120,5,2,36,58,0,2,166, 72,0,0,166,80,0,0,174,76,0,0,174, 84,0,0,166,148,0,0,162,149,0,0,162, 20,0,191,143,16,0,176,143,8,0,224,3, 24,0,189,39,208,255,189,39,40,0,191,175, 36,0,179,175,32,0,178,175,28,0,177,175, 24,0,176,175,33,128,128,0,31,0,0,18, 1,0,19,36,8,0,18,142,0,0,0,0, 16,0,64,18,0,0,0,0,4,0,2,142, 0,0,0,0,9,0,64,24,33,136,0,0, 59,84,192,12,33,32,64,2,1,0,49,38, 4,0,2,142,0,0,0,0,42,16,34,2, 249,255,64,20,68,0,82,38,8,0,4,142, 61,50,192,12,0,0,0,0,12,0,17,142, 4,0,96,18,0,0,0,0,33,152,0,0, 49,84,192,8,4,0,0,174,61,50,192,12, 33,32,0,2,33,128,32,2,227,255,0,22, 0,0,0,0,40,0,191,143,36,0,179,143, 32,0,178,143,28,0,177,143,24,0,176,143, 8,0,224,3,48,0,189,39,232,255,189,39, 20,0,191,175,16,0,176,175,33,128,128,0, 60,0,2,142,0,0,0,0,4,0,64,16, 0,0,0,0,9,248,64,0,0,0,0,0, 60,0,0,174,110,86,192,12,8,0,4,38, 78,84,192,12,33,32,0,2,20,0,191,143, 16,0,176,143,8,0,224,3,24,0,189,39, 232,255,189,39,16,0,191,175,16,0,131,144, 6,0,2,36,18,0,98,16,7,0,98,40, 5,0,64,16,4,0,2,36,6,0,98,16, 0,0,0,0,103,84,192,8,0,0,0,0, 68,0,2,36,11,0,98,20,0,0,0,0, 44,0,130,140,0,0,0,0,7,0,64,16, 0,0,0,0,24,92,192,12,40,0,132,36, 103,84,192,8,0,0,0,0,110,86,192,12, 40,0,132,36,16,0,191,143,24,0,189,39, 8,0,224,3,0,0,0,0,0,0,0,0, 216,255,189,39,32,0,191,175,28,0,179,175, 24,0,178,175,20,0,177,175,16,0,176,175, 33,136,192,0,56,0,179,143,0,0,0,0, 20,72,192,12,33,144,224,0,33,128,64,0, 11,0,0,18,33,32,32,2,33,40,64,2, 80,86,192,12,8,0,6,38,255,255,3,36, 5,0,67,16,2,0,2,36,16,0,2,162, 40,0,19,174,133,84,192,8,33,16,0,0, 255,255,2,36,32,0,191,143,28,0,179,143, 24,0,178,143,20,0,177,143,16,0,176,143, 8,0,224,3,40,0,189,39,216,255,189,39, 32,0,191,175,28,0,177,175,24,0,176,175, 33,128,128,0,96,0,5,174,100,0,6,174, 128,0,2,142,0,0,0,0,11,0,64,16, 0,0,0,0,13,84,192,12,104,0,4,38, 124,0,2,142,0,0,0,0,108,0,2,174, 128,0,2,142,0,0,0,0,112,0,2,174, 128,0,0,174,124,0,0,174,88,0,17,150, 2,0,2,36,88,0,2,166,176,80,192,12, 33,32,0,2,33,56,64,0,64,0,2,142, 0,0,0,0,35,0,64,20,255,255,35,50, 3,0,2,36,14,0,98,16,255,255,227,48, 58,0,2,150,0,0,0,0,43,16,67,0, 9,0,64,16,12,0,4,38,48,0,2,142, 28,0,5,38,52,0,7,142,0,0,0,0, 9,248,64,0,1,0,6,36,214,84,192,8, 0,0,0,0,96,0,2,142,0,0,0,0, 250,255,67,36,13,0,98,44,13,0,64,16, 128,16,3,0,2,131,1,60,33,8,34,0, 32,154,34,140,0,0,0,0,8,0,64,0, 0,0,0,0,204,84,192,8,2,0,2,36, 204,84,192,8,3,0,2,36,5,0,2,36, 96,0,2,174,52,0,2,142,0,0,0,0, 16,0,162,175,44,0,2,142,12,0,4,38, 28,0,5,38,33,48,0,2,9,248,64,0, 255,255,231,48,32,0,191,143,28,0,177,143, 24,0,176,143,8,0,224,3,40,0,189,39, 224,255,189,39,28,0,191,175,24,0,176,175, 33,128,128,0,96,0,5,142,0,0,0,0, 6,0,160,16,0,0,0,0,100,0,6,142, 140,84,192,12,0,0,0,0,56,85,192,8, 0,0,0,0,176,80,192,12,33,32,0,2, 33,56,64,0,88,0,2,150,0,0,0,0, 2,0,66,44,11,0,64,16,255,255,227,48, 58,0,2,150,0,0,0,0,43,16,67,0, 6,0,64,16,33,32,0,2,1,0,5,36, 140,84,192,12,33,48,0,0,56,85,192,8, 0,0,0,0,96,0,2,142,0,0,0,0, 49,0,64,20,2,0,2,36,88,0,3,150, 3,0,2,36,33,0,98,16,4,0,98,40, 7,0,64,16,2,0,98,40,41,0,64,16, 2,0,2,36,39,0,96,4,0,0,0,0, 13,85,192,8,0,0,0,0,5,0,2,36, 34,0,98,20,2,0,2,36,3,131,3,60, 236,17,99,36,0,0,98,140,0,0,0,0, 1,0,66,36,104,0,4,38,25,0,128,16, 0,0,98,172,3,131,5,60,176,17,165,36, 0,0,162,140,108,0,3,142,0,0,0,0, 33,16,67,0,0,0,162,172,12,0,132,140, 0,0,0,0,248,255,128,20,2,0,2,36, 47,85,192,8,88,0,2,166,3,131,4,60, 236,17,132,36,0,0,130,140,0,0,0,0, 1,0,66,36,0,0,130,172,200,255,130,140, 108,0,3,142,0,0,0,0,33,16,67,0, 200,255,130,172,2,0,2,36,88,0,2,166, 52,0,2,142,0,0,0,0,16,0,162,175, 44,0,2,142,12,0,4,38,28,0,5,38, 33,48,0,2,9,248,64,0,255,255,231,48, 28,0,191,143,24,0,176,143,8,0,224,3, 32,0,189,39,232,255,189,39,20,0,191,175, 16,0,176,175,33,128,128,0,88,0,3,150, 1,0,2,36,25,0,98,16,2,0,98,40, 5,0,64,16,3,0,2,36,7,0,96,16, 0,0,0,0,116,85,192,8,0,0,0,0, 37,0,98,16,0,0,0,0,116,85,192,8, 0,0,0,0,112,0,4,142,108,0,3,142, 0,0,0,0,34,0,96,16,0,0,0,0, 17,0,130,144,0,0,0,0,2,0,66,48, 33,0,64,16,255,255,99,36,250,255,96,20, 68,0,132,36,116,85,192,8,0,0,0,0, 112,0,4,142,108,0,3,142,0,0,0,0, 8,0,96,16,0,0,0,0,17,0,130,144, 0,0,0,0,2,0,66,48,19,0,64,16, 255,255,99,36,250,255,96,20,68,0,132,36, 118,93,192,12,33,32,0,2,241,255,64,28, 255,255,66,40,7,0,64,16,0,0,0,0, 92,85,192,8,0,0,0,0,120,94,192,12, 33,32,0,2,5,0,64,20,0,0,0,0, 219,84,192,12,33,32,0,2,167,83,192,12, 33,32,0,2,20,0,191,143,16,0,176,143, 8,0,224,3,24,0,189,39,232,255,189,39, 20,0,191,175,16,0,176,175,33,128,128,0, 88,0,3,150,1,0,2,36,17,0,98,16, 2,0,98,40,5,0,64,16,3,0,2,36, 9,0,96,16,0,0,0,0,156,85,192,8, 0,0,0,0,13,0,98,16,5,0,2,36, 7,0,98,16,0,0,0,0,156,85,192,8, 0,0,0,0,60,95,192,12,33,32,0,2, 154,85,192,8,0,0,0,0,0,93,192,12, 33,32,0,2,154,85,192,8,0,0,0,0, 252,93,192,12,33,32,0,2,5,0,64,20, 0,0,0,0,60,85,192,12,33,32,0,2, 162,85,192,8,0,0,0,0,167,83,192,12, 33,32,0,2,20,0,191,143,16,0,176,143, 8,0,224,3,24,0,189,39,192,255,189,39, 60,0,191,175,56,0,182,175,52,0,181,175, 48,0,180,175,44,0,179,175,40,0,178,175, 36,0,177,175,32,0,176,175,33,64,128,0, 33,136,192,0,33,152,224,0,84,0,182,143, 88,0,181,143,92,0,180,143,80,0,178,151, 3,131,3,60,128,17,99,36,0,0,98,140, 0,0,0,0,1,0,66,36,0,0,98,172, 24,0,162,39,16,0,162,175,33,32,160,0, 16,81,192,12,33,40,0,1,33,128,64,0, 57,0,0,18,255,255,66,50,58,0,3,150, 0,0,0,0,43,16,67,0,2,0,64,16, 0,0,0,0,58,0,18,166,44,0,22,174, 48,0,21,174,52,0,20,174,24,0,162,143, 0,0,0,0,7,0,64,16,1,0,2,36, 219,84,192,12,33,32,0,2,167,83,192,12, 33,32,0,2,5,86,192,8,0,0,0,0, 88,0,3,150,0,0,0,0,16,0,98,16, 2,0,98,40,5,0,64,16,3,0,2,36, 9,0,96,16,0,0,0,0,244,85,192,8, 0,0,0,0,11,0,98,16,5,0,2,36, 31,0,98,16,0,0,0,0,244,85,192,8, 0,0,0,0,3,131,3,60,239,85,192,8, 184,17,99,36,3,131,3,60,239,85,192,8, 188,17,99,36,3,131,3,60,192,17,99,36, 0,0,98,140,0,0,0,0,1,0,66,36, 3,86,192,8,0,0,98,172,3,131,3,60, 140,17,99,36,0,0,98,140,0,0,0,0, 1,0,66,36,0,0,98,172,167,83,192,12, 33,32,0,2,33,32,32,2,33,40,96,2, 1,0,6,36,9,248,160,2,33,56,128,2, 5,86,192,8,0,0,0,0,124,85,192,12, 33,32,0,2,60,0,191,143,56,0,182,143, 52,0,181,143,48,0,180,143,44,0,179,143, 40,0,178,143,36,0,177,143,32,0,176,143, 8,0,224,3,64,0,189,39,232,255,189,39, 20,0,191,175,16,0,176,175,33,128,128,0, 213,80,192,12,255,255,198,48,53,0,64,20, 255,255,2,36,3,131,3,60,144,17,99,36, 0,0,98,140,0,0,0,0,1,0,66,36, 0,0,98,172,96,0,2,142,0,0,0,0, 32,0,64,16,4,0,2,36,92,0,98,140, 0,0,0,0,1,0,66,36,92,0,98,172, 96,0,2,142,0,0,0,0,255,255,67,36, 5,0,98,44,32,0,64,16,128,16,3,0, 2,131,1,60,33,8,34,0,88,154,34,140, 0,0,0,0,8,0,64,0,0,0,0,0, 3,131,3,60,70,86,192,8,204,17,99,36, 3,131,3,60,70,86,192,8,212,17,99,36, 3,131,3,60,70,86,192,8,216,17,99,36, 3,131,3,60,70,86,192,8,208,17,99,36, 3,131,3,60,70,86,192,8,220,17,99,36, 88,0,3,150,0,0,0,0,8,0,98,20, 33,16,0,0,3,131,3,60,240,17,99,36, 0,0,98,140,0,0,0,0,1,0,66,36, 0,0,98,172,33,16,0,0,20,0,191,143, 16,0,176,143,8,0,224,3,24,0,189,39, 0,0,0,0,224,255,189,39,28,0,191,175, 24,0,178,175,20,0,177,175,16,0,176,175, 33,144,160,0,33,128,192,0,4,0,0,174, 14,0,128,16,0,0,4,174,128,136,4,0, 9,50,192,12,33,32,32,2,3,0,64,20, 4,0,2,174,104,86,192,8,255,255,2,36, 5,0,32,18,33,40,64,2,4,0,4,142, 0,0,0,0,80,68,192,12,33,48,32,2, 33,16,0,0,28,0,191,143,24,0,178,143, 20,0,177,143,16,0,176,143,8,0,224,3, 32,0,189,39,232,255,189,39,20,0,191,175, 16,0,176,175,33,128,128,0,4,0,4,142, 0,0,0,0,4,0,128,16,0,0,0,0, 61,50,192,12,0,0,0,0,4,0,0,174, 0,0,0,174,20,0,191,143,16,0,176,143, 8,0,224,3,24,0,189,39,0,0,0,0, 0,0,0,0,11,0,128,4,128,0,130,40, 20,0,64,20,1,0,3,36,255,127,2,36, 42,16,68,0,16,0,64,16,2,0,3,36, 127,0,2,60,255,255,66,52,148,86,192,8, 42,16,68,0,128,255,130,40,9,0,64,16, 1,0,3,36,0,128,130,40,6,0,64,16, 2,0,3,36,128,255,2,60,42,16,130,0, 2,0,64,20,4,0,3,36,3,0,3,36, 8,0,224,3,33,16,96,0,128,0,130,44, 14,0,64,20,1,0,2,36,255,127,2,36, 43,16,68,0,9,0,64,16,127,0,2,60, 255,255,66,52,43,16,68,0,6,0,64,16, 3,0,2,36,4,0,128,4,5,0,2,36, 169,86,192,8,4,0,2,36,2,0,2,36, 8,0,224,3,0,0,0,0,4,0,135,140, 0,0,130,140,0,0,0,0,65,0,64,16, 33,16,0,0,0,0,227,140,4,0,231,36, 128,16,3,0,33,16,67,0,192,16,2,0, 0,0,227,140,0,0,0,0,33,24,67,0, 128,0,98,44,17,0,64,20,4,0,231,36, 0,64,98,44,15,0,64,20,2,0,5,36, 31,0,2,60,255,255,66,52,43,16,67,0, 7,0,64,16,255,15,2,60,255,255,66,52, 43,16,67,0,6,0,64,20,5,0,5,36, 204,86,192,8,4,0,5,36,204,86,192,8, 3,0,5,36,1,0,5,36,2,0,6,36, 0,0,130,140,0,0,0,0,42,16,194,0, 31,0,64,16,255,255,162,48,31,0,9,60, 255,255,41,53,255,15,8,60,255,255,8,53, 0,0,132,140,0,0,227,140,4,0,231,36, 128,0,98,44,16,0,64,20,255,255,165,48, 0,64,98,44,11,0,64,20,43,16,35,1, 7,0,64,16,43,16,3,1,3,0,64,20, 0,0,0,0,236,86,192,8,4,0,165,36, 236,86,192,8,5,0,165,36,236,86,192,8, 3,0,165,36,236,86,192,8,2,0,165,36, 1,0,165,36,1,0,198,36,42,16,196,0, 232,255,64,20,255,255,162,48,8,0,224,3, 0,0,0,0,208,255,189,39,40,0,191,175, 33,72,192,0,224,0,165,48,255,255,130,48, 31,0,66,44,7,0,64,16,33,48,160,0, 37,16,133,0,16,0,162,163,33,32,224,0, 16,0,165,39,38,87,192,8,1,0,6,36, 32,0,163,39,33,40,0,0,31,0,194,52, 24,0,162,163,255,255,130,48,8,0,64,16, 25,0,168,39,127,0,130,48,0,0,98,160, 1,0,99,36,255,255,130,48,194,33,2,0, 250,255,128,20,1,0,165,36,1,0,166,36, 33,16,160,0,255,255,66,48,2,0,66,44, 13,0,64,20,255,255,165,36,255,255,4,52, 255,255,99,36,0,0,98,144,0,0,0,0, 128,0,66,52,0,0,2,161,1,0,8,37, 33,16,160,0,255,255,66,48,2,0,66,44, 246,255,64,16,33,40,164,0,255,255,98,144, 0,0,0,0,0,0,2,161,33,32,224,0, 24,0,165,39,255,255,198,48,9,248,32,1, 0,0,0,0,40,0,191,143,48,0,189,39, 8,0,224,3,0,0,0,0,208,255,189,39, 40,0,191,175,33,72,160,0,255,255,130,48, 128,0,66,44,6,0,64,16,33,64,192,0, 16,0,164,163,33,32,0,1,16,0,165,39, 88,87,192,8,1,0,6,36,24,0,167,39, 32,0,165,39,255,255,130,48,7,0,64,16, 33,24,0,0,0,0,164,160,1,0,165,36, 255,255,130,48,2,34,2,0,251,255,128,20, 1,0,99,36,128,0,98,52,0,0,226,160, 1,0,231,36,1,0,102,36,33,16,96,0, 255,255,66,48,11,0,64,16,255,255,99,36, 255,255,4,52,255,255,165,36,0,0,162,144, 0,0,0,0,0,0,226,160,1,0,231,36, 33,16,96,0,255,255,66,48,248,255,64,20, 33,24,100,0,33,32,0,1,24,0,165,39, 255,255,198,48,9,248,32,1,0,0,0,0, 40,0,191,143,48,0,189,39,8,0,224,3, 0,0,0,0,200,255,189,39,48,0,191,175, 44,0,181,175,40,0,180,175,36,0,179,175, 32,0,178,175,28,0,177,175,24,0,176,175, 33,136,160,0,33,144,192,0,33,152,224,0, 72,0,180,143,33,128,128,0,128,86,192,12, 33,32,64,2,33,168,64,0,255,255,4,50, 192,0,37,50,33,48,96,2,242,86,192,12, 33,56,128,2,255,255,176,50,33,32,0,2, 33,40,96,2,44,87,192,12,33,48,128,2, 16,0,162,39,33,24,80,0,255,255,99,36, 6,0,98,16,0,0,114,160,16,0,162,39, 3,146,18,0,255,255,99,36,253,255,98,20, 0,0,114,160,33,32,128,2,16,0,165,39, 9,248,96,2,255,255,166,50,48,0,191,143, 44,0,181,143,40,0,180,143,36,0,179,143, 32,0,178,143,28,0,177,143,24,0,176,143, 8,0,224,3,56,0,189,39,200,255,189,39, 48,0,191,175,44,0,181,175,40,0,180,175, 36,0,179,175,32,0,178,175,28,0,177,175, 24,0,176,175,33,136,160,0,33,144,192,0, 33,160,224,0,72,0,181,143,33,128,128,0, 153,86,192,12,33,32,64,2,33,152,64,0, 255,255,4,50,192,0,37,50,33,48,128,2, 242,86,192,12,33,56,160,2,255,255,112,50, 33,32,0,2,33,40,128,2,44,87,192,12, 33,48,160,2,16,0,162,39,33,32,80,0, 9,0,0,18,255,255,99,38,255,255,5,52, 255,255,132,36,0,0,146,160,2,146,18,0, 33,16,96,0,255,255,66,48,250,255,64,20, 33,24,101,0,33,32,160,2,16,0,165,39, 9,248,128,2,255,255,102,50,48,0,191,143, 44,0,181,143,40,0,180,143,36,0,179,143, 32,0,178,143,28,0,177,143,24,0,176,143, 8,0,224,3,56,0,189,39,216,255,189,39, 32,0,191,175,28,0,179,175,24,0,178,175, 20,0,177,175,16,0,176,175,33,152,192,0, 56,0,178,143,60,0,177,143,33,128,224,0, 255,255,132,48,192,0,165,48,33,48,64,2, 242,86,192,12,33,56,32,2,255,255,16,50, 33,32,0,2,33,40,64,2,44,87,192,12, 33,48,32,2,4,0,0,18,33,32,32,2, 33,40,96,2,9,248,64,2,33,48,0,2, 32,0,191,143,28,0,179,143,24,0,178,143, 20,0,177,143,16,0,176,143,8,0,224,3, 40,0,189,39,224,255,189,39,24,0,191,175, 33,72,160,0,128,0,130,44,18,0,64,20, 33,64,192,0,0,64,130,44,13,0,64,20, 31,0,2,60,255,255,66,52,43,16,68,0, 7,0,64,16,255,15,2,60,255,255,66,52, 43,16,68,0,8,0,64,20,5,0,6,36, 250,87,192,8,4,0,6,36,250,87,192,8, 3,0,6,36,250,87,192,8,2,0,6,36, 1,0,6,36,255,255,194,48,16,0,163,39, 33,40,98,0,9,0,163,16,33,56,0,0, 16,0,163,39,255,255,165,36,127,0,130,48, 37,16,226,0,0,0,162,160,194,33,4,0, 250,255,163,20,128,0,7,36,33,32,0,1, 16,0,165,39,9,248,32,1,255,255,198,48, 24,0,191,143,32,0,189,39,8,0,224,3, 0,0,0,0,208,255,189,39,44,0,191,175, 40,0,182,175,36,0,181,175,32,0,180,175, 28,0,179,175,24,0,178,175,20,0,177,175, 16,0,176,175,33,144,160,0,33,168,192,0, 33,160,224,0,64,0,182,143,33,136,128,0, 4,0,179,142,0,0,0,0,171,86,192,12, 33,32,160,2,33,128,64,0,255,255,36,50, 192,0,69,50,33,48,128,2,242,86,192,12, 33,56,192,2,255,255,16,50,33,32,0,2, 33,40,128,2,44,87,192,12,33,48,192,2, 23,0,0,18,33,40,128,2,0,0,98,142, 4,0,115,38,128,32,2,0,33,32,130,0, 192,32,4,0,0,0,98,142,4,0,115,38, 33,32,130,0,226,87,192,12,33,48,192,2, 63,88,192,8,2,0,16,36,0,0,100,142, 4,0,115,38,226,87,192,12,33,48,192,2, 1,0,16,38,0,0,162,142,0,0,0,0, 42,16,2,2,247,255,64,20,33,40,128,2, 44,0,191,143,40,0,182,143,36,0,181,143, 32,0,180,143,28,0,179,143,24,0,178,143, 20,0,177,143,16,0,176,143,8,0,224,3, 48,0,189,39,224,255,189,39,28,0,191,175, 24,0,178,175,20,0,177,175,16,0,176,175, 33,136,128,0,33,144,192,0,255,255,67,50, 12,0,34,150,0,0,0,0,43,16,67,0, 4,0,64,16,1,0,2,36,12,0,50,150, 0,0,0,0,255,255,67,50,11,0,98,16, 2,0,98,40,5,0,64,16,2,0,2,36, 50,0,96,16,255,255,80,50,137,88,192,8, 0,0,0,0,15,0,98,16,255,255,80,50, 137,88,192,8,0,0,0,0,8,0,35,142, 0,0,0,0,1,0,98,36,8,0,34,174, 0,0,162,144,0,0,0,0,0,0,98,160, 12,0,34,150,0,0,0,0,255,255,66,36, 149,88,192,8,12,0,34,166,8,0,35,142, 0,0,0,0,1,0,98,36,8,0,34,174, 0,0,162,144,0,0,0,0,0,0,98,160, 8,0,35,142,0,0,0,0,1,0,98,36, 8,0,34,174,1,0,162,144,0,0,0,0, 0,0,98,160,12,0,34,150,0,0,0,0, 254,255,66,36,149,88,192,8,12,0,34,166, 8,0,36,142,0,0,0,0,80,68,192,12, 33,48,0,2,12,0,34,150,0,0,0,0, 35,16,82,0,12,0,34,166,8,0,34,142, 0,0,0,0,33,128,2,2,8,0,48,174, 255,255,66,50,28,0,191,143,24,0,178,143, 20,0,177,143,16,0,176,143,8,0,224,3, 32,0,189,39,224,255,189,39,24,0,191,175, 20,0,177,175,16,0,176,175,33,128,160,0, 10,0,128,20,33,136,192,0,9,50,192,12, 16,0,4,36,33,32,64,0,3,0,128,20, 1,0,2,36,178,88,192,8,33,16,0,0, 173,88,192,8,0,0,130,160,0,0,128,160, 4,0,144,172,8,0,144,172,33,16,17,2, 12,0,130,172,33,16,128,0,24,0,191,143, 20,0,177,143,16,0,176,143,8,0,224,3, 32,0,189,39,232,255,189,39,16,0,191,175, 0,0,130,144,0,0,0,0,1,0,66,48, 3,0,64,16,0,0,0,0,61,50,192,12, 0,0,0,0,16,0,191,143,24,0,189,39, 8,0,224,3,0,0,0,0,0,0,130,144, 0,0,0,0,128,0,66,48,16,0,64,20, 255,255,2,36,8,0,130,140,12,0,131,140, 0,0,0,0,43,16,67,0,7,0,64,20, 0,0,0,0,0,0,130,144,0,0,0,0, 128,0,66,52,0,0,130,160,216,88,192,8, 255,255,2,36,8,0,130,140,0,0,0,0, 0,0,66,144,8,0,224,3,0,0,0,0, 30,0,192,24,33,56,192,0,0,0,130,144, 0,0,0,0,128,0,66,48,16,0,64,20, 255,0,3,36,8,0,131,140,12,0,130,140, 0,0,0,0,43,16,98,0,5,0,64,16, 1,0,98,36,8,0,130,172,0,0,99,144, 240,88,192,8,0,0,0,0,0,0,130,144, 0,0,0,0,128,0,66,52,0,0,130,160, 255,0,3,36,0,0,130,144,0,0,0,0, 128,0,66,48,5,0,64,20,0,0,0,0, 0,0,163,160,255,255,198,36,228,255,192,28, 1,0,165,36,8,0,224,3,35,16,230,0, 1,0,2,36,15,0,194,16,2,0,194,40, 5,0,64,16,2,0,2,36,7,0,192,16, 255,255,2,36,40,89,192,8,0,0,0,0, 11,0,194,16,255,255,2,36,40,89,192,8, 0,0,0,0,4,0,130,140,0,0,0,0, 21,89,192,8,33,40,162,0,8,0,130,140, 0,0,0,0,19,89,192,8,33,40,162,0, 12,0,130,140,0,0,0,0,35,40,69,0, 4,0,130,140,0,0,0,0,43,16,162,0, 17,0,64,20,255,255,2,36,12,0,130,140, 0,0,0,0,43,16,69,0,12,0,64,20, 255,255,2,36,12,0,130,140,0,0,0,0, 43,16,162,0,5,0,64,16,0,0,0,0, 0,0,130,144,0,0,0,0,127,0,66,48, 0,0,130,160,8,0,133,172,33,16,0,0, 8,0,224,3,0,0,0,0,12,0,130,140, 4,0,131,140,0,0,0,0,35,56,67,0, 1,0,2,36,15,0,194,16,2,0,194,40, 5,0,64,16,2,0,2,36,7,0,192,16, 255,255,2,36,87,89,192,8,0,0,0,0, 12,0,194,16,255,255,2,36,87,89,192,8, 0,0,0,0,4,0,130,140,0,0,0,0, 66,89,192,8,33,16,162,0,8,0,130,140, 0,0,0,0,33,16,162,0,72,89,192,8, 12,0,130,172,12,0,130,140,0,0,0,0, 35,16,69,0,12,0,130,172,8,0,130,140, 12,0,131,140,0,0,0,0,43,16,67,0, 5,0,64,16,0,0,0,0,0,0,130,144, 0,0,0,0,85,89,192,8,127,0,66,48, 0,0,130,144,0,0,0,0,128,0,66,52, 0,0,130,160,33,16,224,0,8,0,224,3, 0,0,0,0,232,255,189,39,20,0,191,175, 16,0,176,175,12,0,128,20,33,128,160,0, 9,50,192,12,16,0,4,36,33,32,64,0, 3,0,128,20,0,0,0,0,119,89,192,8, 33,16,0,0,0,0,2,146,0,0,0,0, 108,89,192,8,1,0,66,52,0,0,2,146, 0,0,0,0,254,0,66,48,0,0,130,160, 4,0,2,142,0,0,0,0,4,0,130,172, 8,0,2,142,0,0,0,0,8,0,130,172, 12,0,2,142,0,0,0,0,12,0,130,172, 33,16,128,0,20,0,191,143,16,0,176,143, 8,0,224,3,24,0,189,39,0,0,0,0, 0,0,130,144,0,0,0,0,128,0,66,48, 17,0,64,20,31,0,3,36,8,0,131,140, 12,0,130,140,0,0,0,0,43,16,98,0, 6,0,64,16,1,0,98,36,8,0,130,172, 0,0,98,144,0,0,0,0,145,89,192,8, 31,0,67,48,0,0,130,144,0,0,0,0, 128,0,66,52,0,0,130,160,31,0,3,36, 0,0,130,144,0,0,0,0,128,0,66,48, 4,0,64,16,1,0,2,36,0,0,162,172, 196,89,192,8,33,16,0,0,255,0,99,48, 31,0,2,36,6,0,98,16,33,16,96,0, 196,89,192,8,0,0,0,0,1,0,2,36, 195,89,192,8,0,0,162,172,33,48,0,0, 0,0,130,144,0,0,0,0,128,0,66,48, 16,0,64,20,255,0,3,36,8,0,131,140, 12,0,130,140,0,0,0,0,43,16,98,0, 5,0,64,16,1,0,98,36,8,0,130,172, 0,0,99,144,183,89,192,8,0,0,0,0, 0,0,130,144,0,0,0,0,128,0,66,52, 0,0,130,160,255,0,3,36,0,0,130,144, 0,0,0,0,128,0,66,48,228,255,64,20, 128,0,98,48,4,0,64,16,127,0,98,48, 37,16,194,0,163,89,192,8,192,49,2,0, 255,0,98,48,37,48,70,0,255,255,194,48, 8,0,224,3,0,0,0,0,0,0,130,144, 0,0,0,0,128,0,66,48,16,0,64,20, 255,0,6,36,8,0,131,140,12,0,130,140, 0,0,0,0,43,16,98,0,5,0,64,16, 1,0,98,36,8,0,130,172,0,0,102,144, 218,89,192,8,0,0,0,0,0,0,130,144, 0,0,0,0,128,0,66,52,0,0,130,160, 255,0,6,36,0,0,130,144,0,0,0,0, 128,0,66,48,13,0,64,20,1,0,2,36, 255,0,195,48,128,0,2,36,4,0,98,20, 2,0,2,36,0,0,162,172,17,90,192,8, 255,255,2,52,128,0,194,48,6,0,64,20, 33,24,0,0,17,90,192,8,255,0,194,48, 0,0,162,172,17,90,192,8,33,16,0,0, 127,0,194,48,32,0,64,16,255,255,71,36, 0,26,3,0,0,0,130,144,0,0,0,0, 128,0,66,48,16,0,64,20,255,255,102,48, 8,0,131,140,12,0,130,140,0,0,0,0, 43,16,98,0,6,0,64,16,1,0,98,36, 8,0,130,172,0,0,98,144,0,0,0,0, 7,90,192,8,37,24,194,0,0,0,130,144, 0,0,0,0,128,0,66,52,0,0,130,160, 255,0,195,52,0,0,130,144,0,0,0,0, 128,0,66,48,224,255,64,20,1,0,2,36, 33,16,224,0,255,0,66,48,226,255,64,20, 255,255,231,36,255,255,98,48,8,0,224,3, 0,0,0,0,216,255,189,39,36,0,191,175, 32,0,180,175,28,0,179,175,24,0,178,175, 20,0,177,175,16,0,176,175,33,152,128,0, 33,128,192,0,33,144,160,0,255,255,81,50, 33,0,32,18,33,160,224,0,255,255,2,52, 30,0,34,18,0,0,0,0,9,50,192,12, 33,32,32,2,33,24,64,0,29,0,96,16, 1,0,2,36,0,0,2,166,4,0,3,174, 8,0,3,174,12,0,18,166,33,32,96,2, 8,0,5,142,0,0,0,0,218,88,192,12, 33,48,32,2,33,24,64,0,255,255,100,48, 10,0,145,20,1,0,2,36,12,0,2,150, 0,0,0,0,35,16,67,0,12,0,2,166, 8,0,2,142,0,0,0,0,33,16,130,0, 68,90,192,8,8,0,2,174,68,90,192,8, 0,0,130,174,0,0,0,166,4,0,0,174, 8,0,0,174,12,0,0,166,36,0,191,143, 32,0,180,143,28,0,179,143,24,0,178,143, 20,0,177,143,16,0,176,143,8,0,224,3, 40,0,189,39,224,255,189,39,28,0,191,175, 24,0,178,175,20,0,177,175,16,0,176,175, 33,144,128,0,33,136,160,0,33,128,192,0, 124,89,192,12,33,40,0,2,33,32,64,2, 198,89,192,12,33,40,0,2,33,40,64,0, 0,0,2,142,0,0,0,0,7,0,64,20, 33,32,64,2,255,255,165,48,33,48,32,2, 19,90,192,12,33,56,0,2,104,90,192,8, 0,0,0,0,0,0,32,166,4,0,32,174, 8,0,32,174,12,0,32,166,28,0,191,143, 24,0,178,143,20,0,177,143,16,0,176,143, 8,0,224,3,32,0,189,39,216,255,189,39, 36,0,191,175,32,0,180,175,28,0,179,175, 24,0,178,175,20,0,177,175,16,0,176,175, 33,152,128,0,33,136,160,0,33,144,192,0, 56,0,176,147,0,0,0,0,196,88,192,12, 33,160,224,0,224,0,66,48,7,0,80,20, 33,32,96,2,124,89,192,12,33,40,64,2, 255,255,66,48,255,255,131,50,7,0,67,16, 33,32,96,2,0,0,66,142,0,0,0,0, 16,0,64,20,4,0,2,36,152,90,192,8, 0,0,66,174,198,89,192,12,33,40,64,2, 33,40,64,0,0,0,66,142,0,0,0,0, 7,0,64,20,33,32,96,2,255,255,165,48, 33,48,32,2,19,90,192,12,33,56,64,2, 156,90,192,8,0,0,0,0,0,0,32,166, 4,0,32,174,8,0,32,174,12,0,32,166, 36,0,191,143,32,0,180,143,28,0,179,143, 24,0,178,143,20,0,177,143,16,0,176,143, 8,0,224,3,40,0,189,39,33,56,0,0, 255,255,168,36,255,255,165,48,50,0,160,16, 1,0,9,36,1,0,12,36,4,0,10,36, 3,0,11,36,255,255,5,52,0,0,130,144, 0,0,0,0,128,0,66,48,16,0,64,20, 255,0,3,36,8,0,131,140,12,0,130,140, 0,0,0,0,43,16,98,0,5,0,64,16, 1,0,98,36,8,0,130,172,0,0,99,144, 193,90,192,8,0,0,0,0,0,0,130,144, 0,0,0,0,128,0,66,52,0,0,130,160, 255,0,3,36,0,0,130,144,0,0,0,0, 128,0,66,48,3,0,64,16,0,0,0,0, 218,90,192,8,0,0,204,172,11,0,32,17, 255,255,2,49,5,0,74,20,33,72,0,0, 3,0,96,16,0,0,0,0,218,90,192,8, 0,0,203,172,128,0,98,48,3,0,64,16, 0,18,7,0,255,255,7,36,0,18,7,0, 37,56,67,0,33,16,0,1,255,255,66,48, 212,255,64,20,33,64,5,1,8,0,224,3, 33,16,224,0,224,255,189,39,24,0,191,175, 20,0,177,175,16,0,176,175,33,128,128,0, 124,89,192,12,33,136,160,0,33,32,0,2, 198,89,192,12,33,40,32,2,33,32,0,2, 255,255,69,48,164,90,192,12,33,48,32,2, 24,0,191,143,20,0,177,143,16,0,176,143, 8,0,224,3,32,0,189,39,216,255,189,39, 32,0,191,175,28,0,179,175,24,0,178,175, 20,0,177,175,16,0,176,175,33,144,128,0, 33,136,160,0,33,152,192,0,196,88,192,12, 33,128,224,0,224,0,66,48,255,0,16,50, 7,0,80,20,33,32,64,2,124,89,192,12, 33,40,32,2,255,255,66,48,255,255,99,50, 8,0,67,16,33,32,64,2,0,0,34,142, 0,0,0,0,2,0,64,20,4,0,2,36, 0,0,34,174,17,91,192,8,33,16,0,0, 198,89,192,12,33,40,32,2,33,32,64,2, 255,255,69,48,164,90,192,12,33,48,32,2, 32,0,191,143,28,0,179,143,24,0,178,143, 20,0,177,143,16,0,176,143,8,0,224,3, 40,0,189,39,208,255,189,39,44,0,191,175, 40,0,180,175,36,0,179,175,32,0,178,175, 28,0,177,175,24,0,176,175,33,128,128,0, 33,152,192,0,33,160,224,0,0,0,96,174, 4,0,96,174,8,0,3,142,4,0,2,142, 0,0,0,0,35,24,98,0,255,255,165,48, 35,0,160,24,33,144,0,0,1,0,6,36, 0,0,2,146,0,0,0,0,128,0,66,48, 16,0,64,20,255,0,4,36,8,0,4,142, 12,0,2,142,0,0,0,0,43,16,130,0, 5,0,64,16,1,0,130,36,8,0,2,174, 0,0,132,144,64,91,192,8,0,0,0,0, 0,0,2,146,0,0,0,0,128,0,66,52, 0,0,2,162,255,0,4,36,0,0,2,146, 0,0,0,0,128,0,66,48,3,0,64,16, 128,0,130,48,150,91,192,8,0,0,134,174, 2,0,64,20,0,0,0,0,1,0,82,38, 255,255,165,36,224,255,160,28,0,0,0,0, 33,32,0,2,33,40,96,0,251,88,192,12, 33,48,0,0,68,0,64,18,1,0,81,38, 9,50,192,12,128,32,17,0,33,40,64,0, 63,0,160,16,0,0,0,0,0,0,113,174, 4,0,101,174,59,0,64,26,33,56,0,0, 1,0,8,36,33,48,0,0,0,0,2,146, 0,0,0,0,128,0,66,48,16,0,64,20, 255,0,4,36,8,0,3,142,12,0,2,142, 0,0,0,0,43,16,98,0,5,0,64,16, 1,0,98,36,8,0,2,174,0,0,100,144, 114,91,192,8,0,0,0,0,0,0,2,146, 0,0,0,0,128,0,66,52,0,0,2,162, 255,0,4,36,0,0,2,146,0,0,0,0, 128,0,66,48,3,0,64,16,192,49,6,0, 150,91,192,8,0,0,136,174,127,0,130,48, 37,48,194,0,128,0,130,48,225,255,64,20, 0,0,0,0,18,0,224,20,40,0,194,44, 4,0,64,16,80,0,194,44,0,0,160,172, 145,91,192,8,4,0,165,36,5,0,64,16, 216,255,194,36,0,0,168,172,4,0,165,36, 146,91,192,8,0,0,162,172,2,0,2,36, 0,0,162,172,4,0,165,36,176,255,194,36, 146,91,192,8,0,0,162,172,0,0,166,172, 1,0,231,36,42,16,242,0,200,255,64,20, 4,0,165,36,44,0,191,143,40,0,180,143, 36,0,179,143,32,0,178,143,28,0,177,143, 24,0,176,143,8,0,224,3,48,0,189,39, 224,255,189,39,28,0,191,175,24,0,178,175, 20,0,177,175,16,0,176,175,33,136,128,0, 33,144,160,0,33,128,192,0,124,89,192,12, 33,40,0,2,33,32,32,2,198,89,192,12, 33,40,0,2,33,40,64,0,0,0,2,142, 0,0,0,0,5,0,64,20,33,32,32,2, 255,255,165,48,33,48,64,2,24,91,192,12, 33,56,0,2,28,0,191,143,24,0,178,143, 20,0,177,143,16,0,176,143,8,0,224,3, 32,0,189,39,216,255,189,39,36,0,191,175, 32,0,180,175,28,0,179,175,24,0,178,175, 20,0,177,175,16,0,176,175,33,144,128,0, 33,160,160,0,33,136,192,0,56,0,176,147, 0,0,0,0,196,88,192,12,33,152,224,0, 224,0,66,48,7,0,80,20,33,32,64,2, 124,89,192,12,33,40,32,2,255,255,66,48, 255,255,99,50,7,0,67,16,33,32,64,2, 0,0,34,142,0,0,0,0,14,0,64,20, 4,0,2,36,226,91,192,8,0,0,34,174, 198,89,192,12,33,40,32,2,33,40,64,0, 0,0,34,142,0,0,0,0,5,0,64,20, 33,32,64,2,255,255,165,48,33,48,128,2, 24,91,192,12,33,56,32,2,36,0,191,143, 32,0,180,143,28,0,179,143,24,0,178,143, 20,0,177,143,16,0,176,143,8,0,224,3, 40,0,189,39,0,0,0,0,0,0,0,0, 216,255,189,39,32,0,191,175,28,0,179,175, 24,0,178,175,20,0,177,175,16,0,176,175, 33,152,128,0,8,0,99,142,4,0,98,142, 0,0,0,0,35,128,98,0,255,255,4,50, 19,0,128,16,33,136,160,0,9,50,192,12, 0,0,0,0,33,144,64,0,3,0,64,22, 255,255,16,50,17,92,192,8,255,255,2,36, 33,32,64,2,4,0,101,142,0,0,0,0, 80,68,192,12,33,48,0,2,1,0,2,36, 0,0,34,166,4,0,50,174,33,128,80,2, 15,92,192,8,8,0,48,174,0,0,32,166, 4,0,32,174,8,0,32,174,12,0,32,166, 33,16,0,0,32,0,191,143,28,0,179,143, 24,0,178,143,20,0,177,143,16,0,176,143, 8,0,224,3,40,0,189,39,232,255,189,39, 20,0,191,175,16,0,176,175,33,128,128,0, 0,0,2,150,0,0,0,0,1,0,66,48, 7,0,64,16,0,0,0,0,4,0,4,142, 0,0,0,0,3,0,128,16,0,0,0,0, 61,50,192,12,0,0,0,0,0,0,0,166, 8,0,0,174,4,0,0,174,12,0,0,166, 20,0,191,143,16,0,176,143,8,0,224,3, 24,0,189,39,224,255,189,39,24,0,191,175, 20,0,177,175,16,0,176,175,33,128,128,0, 8,0,163,140,4,0,162,140,0,0,0,0, 35,136,98,0,255,255,35,50,12,0,2,150, 0,0,0,0,43,16,67,0,4,0,64,16, 255,255,38,50,12,0,17,150,0,0,0,0, 255,255,38,50,6,0,192,16,255,255,34,50, 8,0,4,142,4,0,165,140,80,68,192,12, 0,0,0,0,255,255,34,50,8,0,3,142, 0,0,0,0,33,16,67,0,8,0,2,174, 12,0,2,150,0,0,0,0,35,16,81,0, 12,0,2,166,24,0,191,143,20,0,177,143, 16,0,176,143,8,0,224,3,32,0,189,39, 1,0,2,36,23,0,194,16,2,0,194,40, 5,0,64,16,2,0,2,36,7,0,192,16, 255,255,2,36,132,92,192,8,0,0,0,0, 23,0,194,16,255,255,2,36,132,92,192,8, 0,0,0,0,255,255,162,48,4,0,131,140, 0,0,0,0,33,48,67,0,8,0,130,140, 0,0,0,0,35,16,67,0,12,0,131,148, 0,0,0,0,33,16,67,0,124,92,192,8, 35,40,69,0,255,255,162,48,8,0,131,140, 0,0,0,0,33,48,67,0,12,0,130,148, 0,0,0,0,124,92,192,8,35,40,69,0, 12,0,130,148,8,0,131,140,0,0,0,0, 33,48,67,0,255,255,162,48,35,48,194,0, 4,0,130,140,0,0,0,0,43,16,194,0, 4,0,64,20,255,255,2,36,8,0,134,172, 12,0,133,164,33,16,0,0,8,0,224,3, 0,0,0,0,216,255,189,39,32,0,191,175, 28,0,179,175,24,0,178,175,20,0,177,175, 16,0,176,175,33,128,128,0,33,152,160,0, 8,0,3,142,4,0,2,142,0,0,0,0, 35,144,98,0,255,255,66,50,12,0,3,150, 0,0,0,0,33,16,67,0,255,255,99,50, 42,16,67,0,35,0,64,16,1,0,2,36, 0,0,3,150,0,0,0,0,32,0,98,20, 255,255,2,36,9,50,192,12,255,255,100,50, 33,136,64,0,3,0,32,22,255,255,70,50, 189,92,192,8,255,255,2,36,5,0,192,16, 0,0,0,0,4,0,5,142,0,0,0,0, 80,68,192,12,33,32,32,2,0,0,2,150, 0,0,0,0,1,0,66,48,7,0,64,16, 0,0,0,0,4,0,4,142,0,0,0,0, 3,0,128,16,0,0,0,0,61,50,192,12, 0,0,0,0,4,0,17,174,255,255,66,50, 33,16,34,2,8,0,2,174,35,16,114,2, 12,0,2,166,33,16,0,0,32,0,191,143, 28,0,179,143,24,0,178,143,20,0,177,143, 16,0,176,143,8,0,224,3,40,0,189,39, 216,255,189,39,32,0,191,175,28,0,179,175, 24,0,178,175,20,0,177,175,16,0,176,175, 33,128,128,0,33,136,192,0,255,255,36,50, 35,0,128,16,33,152,160,0,8,0,2,142, 4,0,3,142,0,0,0,0,35,16,67,0, 255,255,66,48,12,0,3,150,0,0,0,0, 33,16,67,0,42,16,68,0,20,0,64,16, 0,0,0,0,9,50,192,12,0,0,0,0, 33,144,64,0,24,0,64,18,255,255,2,36, 0,0,2,150,0,0,0,0,1,0,66,48, 8,0,64,16,1,0,2,36,4,0,4,142, 0,0,0,0,4,0,128,16,0,0,0,0, 61,50,192,12,0,0,0,0,1,0,2,36, 0,0,2,166,4,0,18,174,4,0,4,142, 33,40,96,2,80,68,192,12,255,255,38,50, 33,32,0,2,255,255,37,50,85,92,192,12, 33,48,0,0,33,16,0,0,32,0,191,143, 28,0,179,143,24,0,178,143,20,0,177,143, 16,0,176,143,8,0,224,3,40,0,189,39, 0,0,0,0,0,0,0,0,0,0,0,0, 184,255,189,39,64,0,191,175,60,0,183,175, 56,0,182,175,52,0,181,175,48,0,180,175, 44,0,179,175,40,0,178,175,36,0,177,175, 32,0,176,175,33,144,128,0,112,0,84,142, 0,0,0,0,92,0,128,18,1,0,2,36, 108,0,81,142,0,0,0,0,88,0,32,18, 0,0,0,0,96,0,87,38,136,0,66,174, 140,0,64,174,96,0,64,174,100,0,64,174, 224,83,192,12,33,32,32,2,33,168,64,0, 25,0,160,18,33,128,160,2,108,0,66,142, 0,0,0,0,124,0,66,174,128,0,84,174, 108,0,81,174,112,0,85,174,29,0,32,26, 33,152,0,0,255,255,22,36,33,32,0,2, 8,0,133,38,33,48,64,2,170,72,192,12, 1,0,7,36,10,0,86,16,33,32,64,2, 14,0,64,20,0,0,0,0,64,0,66,142, 0,0,0,0,10,0,64,20,2,0,5,36, 56,93,192,8,1,0,102,38,33,32,64,2, 5,0,5,36,33,48,0,0,140,84,192,12, 0,0,0,0,107,93,192,8,1,0,2,36, 1,0,115,38,68,0,16,38,42,16,113,2, 230,255,64,20,68,0,148,38,40,0,32,18, 33,128,160,2,17,0,2,146,0,0,0,0, 34,0,66,48,32,0,64,20,0,0,0,0, 36,0,2,142,16,0,176,175,16,0,66,140, 24,0,4,142,28,0,5,142,32,0,6,142, 0,0,0,0,9,248,64,0,33,56,64,2, 17,0,2,146,0,0,0,0,32,0,66,52, 17,0,2,162,0,0,226,142,0,0,0,0, 15,0,64,16,0,0,0,0,255,255,49,38, 15,0,32,18,68,0,16,38,17,0,3,146, 0,0,0,0,32,0,98,48,2,0,64,20, 34,0,98,52,17,0,2,162,255,255,49,38, 248,255,32,22,68,0,16,38,107,93,192,8, 33,16,0,0,255,255,49,38,218,255,32,22, 68,0,16,38,33,16,0,0,64,0,191,143, 60,0,183,143,56,0,182,143,52,0,181,143, 48,0,180,143,44,0,179,143,40,0,178,143, 36,0,177,143,32,0,176,143,8,0,224,3, 72,0,189,39,168,255,189,39,80,0,191,175, 76,0,183,175,72,0,182,175,68,0,181,175, 64,0,180,175,60,0,179,175,56,0,178,175, 52,0,177,175,48,0,176,175,33,144,128,0, 96,0,66,142,0,0,0,0,3,0,64,16, 33,32,0,0,240,93,192,8,255,255,2,36, 116,0,66,142,0,0,0,0,7,0,64,16, 104,0,67,38,12,0,99,140,0,0,0,0, 12,0,98,140,0,0,0,0,251,255,64,20, 0,0,0,0,8,0,116,140,0,0,0,0, 92,0,128,18,33,16,0,0,4,0,115,140, 0,0,0,0,88,0,96,18,0,0,0,0, 64,0,66,142,0,0,0,0,55,0,64,20, 0,0,0,0,33,128,128,2,52,0,96,26, 33,136,0,0,255,255,23,36,2,0,22,36, 5,0,21,36,17,0,2,146,0,0,0,0, 16,0,66,48,40,0,64,16,24,0,165,39, 8,0,3,142,28,0,2,142,0,0,0,0, 35,24,98,0,24,0,163,175,12,0,2,142, 0,0,0,0,28,0,162,175,128,24,3,0, 33,24,98,0,252,255,98,140,0,0,0,0, 1,0,66,36,252,255,98,172,12,0,0,174, 8,0,0,174,33,32,0,2,33,48,64,2, 170,72,192,12,1,0,7,36,6,0,87,16, 0,0,0,0,9,0,64,20,1,0,34,38, 96,0,86,174,196,93,192,8,100,0,66,174, 96,0,85,174,110,86,192,12,24,0,164,39, 240,93,192,8,255,255,2,36,110,86,192,12, 24,0,164,39,17,0,2,146,0,0,0,0, 12,0,66,48,17,0,2,162,1,0,4,36, 1,0,49,38,42,16,51,2,209,255,64,20, 68,0,16,38,27,0,128,16,33,128,128,2, 23,0,96,26,33,136,0,0,17,0,2,146, 0,0,0,0,34,0,66,48,14,0,64,20, 0,0,0,0,36,0,2,142,16,0,176,175, 16,0,66,140,24,0,4,142,28,0,5,142, 32,0,6,142,0,0,0,0,9,248,64,0, 33,56,64,2,17,0,2,146,0,0,0,0, 32,0,66,52,17,0,2,162,1,0,49,38, 42,16,51,2,235,255,64,20,68,0,16,38, 240,93,192,8,1,0,2,36,33,16,0,0, 80,0,191,143,76,0,183,143,72,0,182,143, 68,0,181,143,64,0,180,143,60,0,179,143, 56,0,178,143,52,0,177,143,48,0,176,143, 8,0,224,3,88,0,189,39,0,0,0,0, 200,255,189,39,48,0,191,175,44,0,179,175, 40,0,178,175,36,0,177,175,32,0,176,175, 33,144,128,0,96,0,64,174,100,0,64,174, 112,0,80,142,0,0,0,0,105,0,0,18, 33,16,0,0,108,0,81,142,0,0,0,0, 101,0,32,18,0,0,0,0,64,0,66,142, 0,0,0,0,43,0,64,20,33,32,64,2, 50,0,32,26,33,152,0,0,33,32,0,2, 33,40,64,2,96,72,192,12,1,0,6,36, 13,0,64,20,33,32,64,2,20,0,2,150, 0,0,0,0,1,0,66,48,34,0,64,16, 2,0,5,36,36,0,2,142,0,0,0,0, 3,0,66,144,0,0,0,0,2,0,66,48, 3,0,64,20,0,0,0,0,63,94,192,8, 2,0,5,36,36,0,2,142,0,0,0,0, 32,0,66,140,4,0,67,142,0,0,0,0, 36,16,67,0,16,0,64,16,33,32,64,2, 36,0,2,142,16,0,3,146,2,0,66,144, 0,0,0,0,11,0,98,20,3,0,5,36, 1,0,115,38,42,16,113,2,219,255,64,20, 68,0,16,38,69,94,192,8,96,0,83,38, 5,0,5,36,64,94,192,8,33,48,0,0, 2,0,5,36,1,0,102,38,140,84,192,12, 0,0,0,0,113,94,192,8,1,0,2,36, 96,0,83,38,112,0,80,142,0,0,0,0, 41,0,32,18,33,16,0,0,17,0,2,146, 0,0,0,0,17,0,66,48,32,0,64,20, 0,0,0,0,36,0,2,142,16,0,176,175, 4,0,66,140,24,0,4,142,28,0,5,142, 32,0,6,142,0,0,0,0,9,248,64,0, 33,56,64,2,17,0,2,146,0,0,0,0, 16,0,66,52,17,0,2,162,0,0,98,142, 0,0,0,0,15,0,64,16,0,0,0,0, 255,255,49,38,15,0,32,18,68,0,16,38, 17,0,3,146,0,0,0,0,16,0,98,48, 2,0,64,20,17,0,98,52,17,0,2,162, 255,255,49,38,248,255,32,22,68,0,16,38, 113,94,192,8,33,16,0,0,255,255,49,38, 218,255,32,22,68,0,16,38,33,16,0,0, 48,0,191,143,44,0,179,143,40,0,178,143, 36,0,177,143,32,0,176,143,8,0,224,3, 56,0,189,39,192,255,189,39,56,0,191,175, 52,0,183,175,48,0,182,175,44,0,181,175, 40,0,180,175,36,0,179,175,32,0,178,175, 28,0,177,175,24,0,176,175,33,144,128,0, 112,0,84,142,0,0,0,0,171,0,128,18, 33,16,0,0,108,0,85,142,0,0,0,0, 166,0,160,18,32,0,2,36,56,0,67,146, 0,0,0,0,75,0,98,16,96,0,83,38, 33,0,98,40,5,0,64,16,64,0,2,36, 9,0,96,16,33,16,0,0,49,95,192,8, 0,0,0,0,85,0,98,16,128,0,2,36, 137,0,98,16,33,16,0,0,49,95,192,8, 0,0,0,0,33,136,160,2,8,0,32,18, 33,128,128,2,17,0,2,146,0,0,0,0, 1,0,66,48,139,0,64,16,255,255,49,38, 250,255,32,22,68,0,16,38,0,0,98,142, 0,0,0,0,136,0,64,20,33,16,0,0, 33,136,160,2,43,0,32,18,33,128,128,2, 14,0,22,36,64,0,23,36,17,0,2,146, 0,0,0,0,34,0,66,48,33,0,64,20, 0,0,0,0,36,0,2,142,16,0,176,175, 12,0,66,140,24,0,4,142,28,0,5,142, 32,0,6,142,0,0,0,0,9,248,64,0, 33,56,64,2,17,0,2,146,0,0,0,0, 32,0,66,52,17,0,2,162,0,0,98,142, 0,0,0,0,16,0,64,16,0,0,0,0, 255,255,49,38,10,0,32,18,68,0,16,38, 17,0,3,146,0,0,0,0,32,0,98,48, 2,0,64,20,192,0,98,52,17,0,2,162, 255,255,49,38,248,255,32,22,68,0,16,38, 0,0,118,174,236,94,192,8,56,0,87,162, 255,255,49,38,217,255,32,22,68,0,16,38, 32,0,2,36,56,0,66,162,0,0,98,142, 0,0,0,0,13,0,64,20,64,0,2,36, 33,136,160,2,81,0,32,18,33,128,128,2, 17,0,2,146,0,0,0,0,2,0,66,48, 74,0,64,16,255,255,49,38,250,255,32,22, 68,0,16,38,49,95,192,8,33,16,0,0, 56,0,66,162,14,0,2,36,0,0,98,174, 33,136,160,2,53,0,32,18,33,128,128,2, 2,0,23,36,15,0,22,36,17,0,2,146, 0,0,0,0,194,0,66,48,5,0,64,16, 0,0,0,0,19,0,87,16,0,0,0,0, 32,95,192,8,255,255,49,38,64,0,2,142, 0,0,0,0,34,0,64,16,0,0,0,0, 16,0,176,175,64,0,2,142,24,0,4,142, 28,0,5,142,32,0,6,142,0,0,0,0, 9,248,64,0,33,56,64,2,17,0,2,146, 0,0,0,0,30,95,192,8,64,0,66,52, 64,0,2,142,0,0,0,0,13,0,64,16, 0,0,0,0,16,0,176,175,64,0,2,142, 24,0,4,142,28,0,5,142,32,0,6,142, 0,0,0,0,9,248,64,0,33,56,64,2, 17,0,2,146,0,0,0,0,30,95,192,8, 64,0,66,52,0,0,118,174,17,0,2,146, 0,0,0,0,128,0,66,52,17,0,2,162, 255,255,49,38,208,255,32,22,68,0,16,38, 33,136,160,2,12,0,32,18,33,128,128,2, 17,0,2,146,0,0,0,0,128,0,66,48, 5,0,64,16,255,255,49,38,250,255,32,22, 68,0,16,38,49,95,192,8,33,16,0,0, 49,95,192,8,1,0,2,36,33,16,0,0, 56,0,191,143,52,0,183,143,48,0,182,143, 44,0,181,143,40,0,180,143,36,0,179,143, 32,0,178,143,28,0,177,143,24,0,176,143, 8,0,224,3,64,0,189,39,184,255,189,39, 64,0,191,175,60,0,183,175,56,0,182,175, 52,0,181,175,48,0,180,175,44,0,179,175, 40,0,178,175,36,0,177,175,32,0,176,175, 33,160,128,0,112,0,147,142,0,0,0,0, 129,0,96,18,33,16,0,0,108,0,146,142, 0,0,0,0,125,0,64,18,96,0,151,38, 96,0,128,174,100,0,128,174,224,83,192,12, 33,32,64,2,33,168,64,0,5,0,160,22, 33,136,64,2,33,32,128,2,5,0,5,36, 123,95,192,8,33,48,0,0,36,0,64,18, 33,128,160,2,5,0,22,36,16,0,22,162, 8,0,100,142,12,0,101,142,0,0,0,0, 80,86,192,12,8,0,6,38,5,0,64,20, 0,0,0,0,255,255,49,38,68,0,115,38, 245,255,32,22,68,0,16,38,21,0,32,18, 42,16,50,2,7,0,64,16,33,128,160,2, 59,84,192,12,33,32,0,2,1,0,49,38, 42,16,50,2,251,255,64,20,68,0,16,38, 61,50,192,12,33,32,160,2,33,32,128,2, 5,0,5,36,123,95,192,8,33,48,0,0, 2,0,5,36,1,0,38,38,140,84,192,12, 0,0,0,0,203,95,192,8,1,0,2,36, 124,0,146,174,112,0,130,142,0,0,0,0, 128,0,130,174,112,0,149,174,33,128,160,2, 27,0,64,26,33,136,0,0,33,32,0,2, 33,40,128,2,96,72,192,12,1,0,6,36, 13,0,64,20,0,0,0,0,20,0,2,150, 0,0,0,0,1,0,66,48,8,0,64,16, 0,0,0,0,36,0,2,142,0,0,0,0, 3,0,66,144,0,0,0,0,1,0,66,48, 5,0,64,20,0,0,0,0,64,0,130,142, 0,0,0,0,221,255,64,16,33,32,128,2, 1,0,49,38,42,16,50,2,231,255,64,20, 68,0,16,38,40,0,64,18,33,128,160,2, 17,0,2,146,0,0,0,0,34,0,66,48, 32,0,64,20,0,0,0,0,36,0,2,142, 16,0,176,175,8,0,66,140,24,0,4,142, 28,0,5,142,32,0,6,142,0,0,0,0, 9,248,64,0,33,56,128,2,17,0,2,146, 0,0,0,0,32,0,66,52,17,0,2,162, 0,0,226,142,0,0,0,0,15,0,64,16, 0,0,0,0,255,255,82,38,15,0,64,18, 68,0,16,38,17,0,3,146,0,0,0,0, 32,0,98,48,2,0,64,20,34,0,98,52, 17,0,2,162,255,255,82,38,248,255,64,22, 68,0,16,38,203,95,192,8,33,16,0,0, 255,255,82,38,218,255,64,22,68,0,16,38, 33,16,0,0,64,0,191,143,60,0,183,143, 56,0,182,143,52,0,181,143,48,0,180,143, 44,0,179,143,40,0,178,143,36,0,177,143, 32,0,176,143,8,0,224,3,72,0,189,39, 0,0,0,0,0,0,0,0,37,115,58,37, 100,58,32,102,97,105,108,101,100,32,97,115, 115,101,114,116,105,111,110,32,96,37,115,39, 10,0,0,0,114,97,109,116,101,115,116,100, 119,40,98,99,46,98,99,95,104,101,97,112, 115,116,97,114,116,44,32,108,101,110,44,32, 49,44,32,48,44,32,48,41,32,61,61,32, 48,0,0,0,98,99,46,98,99,95,104,101, 97,112,101,110,100,32,60,61,32,98,99,46, 98,99,95,114,97,109,101,110,100,0,0,0, 35,32,112,111,114,116,115,58,32,37,100,10, 0,0,0,0,42,42,42,80,114,111,102,105, 108,105,110,103,32,64,32,37,120,44,32,37, 120,10,0,0,103,111,116,32,104,101,114,101, 32,99,97,117,115,101,61,37,120,32,115,116, 97,116,117,115,61,37,120,32,118,101,99,61, 37,120,10,0,37,115,58,37,100,58,32,102, 97,105,108,101,100,32,97,115,115,101,114,116, 105,111,110,32,96,37,115,39,10,0,0,0, 83,101,99,111,110,100,115,32,60,32,48,120, 55,70,70,70,102,102,102,102,0,0,0,0, 84,105,109,101,114,115,85,115,101,100,32,60, 32,78,84,73,77,69,82,83,0,0,0,0, 0,0,0,0,69,69,80,82,79,77,32,105, 115,32,98,97,100,10,0,0,80,111,114,116, 32,37,100,32,101,116,104,101,114,32,97,100, 100,114,101,115,115,58,32,37,48,50,88,58, 37,48,50,88,58,37,48,50,88,58,37,48, 50,88,58,37,48,50,88,58,37,48,50,88, 10,0,0,0,35,35,35,32,56,50,53,57, 54,32,67,104,97,110,32,37,100,58,32,115, 101,108,102,116,101,115,116,32,102,97,105,108, 101,100,32,40,37,120,41,10,0,0,0,0, 42,42,42,32,56,50,53,57,54,32,80,111, 114,116,32,37,100,58,32,115,101,108,102,116, 101,115,116,32,112,97,115,115,101,100,10,0, 56,50,53,57,54,32,80,111,114,116,32,37, 100,58,32,100,117,109,112,32,102,97,105,108, 101,100,32,40,37,120,41,10,0,0,0,0, 42,42,42,32,56,50,53,57,54,32,80,111, 114,116,32,37,100,58,32,100,117,109,112,32, 112,97,115,115,101,100,10,0,35,35,35,32, 56,50,53,57,54,32,80,111,114,116,32,37, 100,58,32,83,67,80,32,102,101,116,99,104, 32,102,97,105,108,101,100,10,0,0,0,0, 42,42,42,32,56,50,53,57,54,32,80,111, 114,116,32,37,100,58,32,83,67,80,32,102, 101,116,99,104,32,112,97,115,115,101,100,32, 37,120,32,10,0,0,0,0,35,35,35,32, 56,50,53,57,54,32,80,111,114,116,32,37, 100,58,32,66,85,83,84,73,77,69,82,83, 32,108,111,97,100,32,102,97,105,108,101,100, 10,0,0,0,42,42,42,32,56,50,53,57, 54,32,80,111,114,116,32,37,100,58,32,66, 85,83,84,73,77,69,82,83,32,108,111,97, 100,32,112,97,115,115,101,100,10,0,0,0, 35,35,35,32,65,67,75,32,100,105,100,32, 110,111,116,32,111,99,99,117,114,10,0,0, 35,35,35,32,115,116,97,116,117,115,32,115, 116,105,108,108,32,98,117,115,121,58,32,37, 120,10,0,0,101,116,104,95,105,110,105,116, 46,99,0,0,42,42,42,76,49,87,65,10, 0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,35,35,35,32,84,66,68,32, 98,108,111,99,107,115,32,97,114,101,110,39, 116,32,98,101,105,110,103,32,102,114,101,101, 100,10,0,0,65,116,116,101,109,112,116,32, 116,111,32,102,114,101,101,32,98,111,103,117, 115,32,84,66,68,32,37,120,10,0,0,0, 35,35,35,32,66,85,70,32,98,108,111,99, 107,115,32,97,114,101,110,39,116,32,98,101, 105,110,103,32,102,114,101,101,100,10,0,0, 65,116,116,101,109,112,116,32,116,111,32,102, 114,101,101,32,98,111,103,117,115,32,66,85, 70,32,37,120,10,0,0,0,0,0,0,0, 0,0,0,0,82,70,68,115,32,37,100,32, 10,0,0,0,82,66,68,115,32,37,100,32, 10,0,0,0,37,115,58,37,100,58,32,102, 97,105,108,101,100,32,97,115,115,101,114,116, 105,111,110,32,96,37,115,39,10,0,0,0, 101,116,104,95,114,99,118,46,99,0,0,0, 100,115,116,99,104,97,110,32,62,61,32,49, 32,38,38,32,100,115,116,99,104,97,110,32, 60,32,78,99,104,97,110,0,37,115,37,48, 50,88,58,37,48,50,88,58,37,48,50,88, 58,37,48,50,88,58,37,48,50,88,58,37, 48,50,88,37,115,0,0,0,176,72,0,131, 80,67,0,131,164,67,0,131,24,68,0,131, 80,67,0,131,0,0,0,0,4,82,0,131, 184,76,0,131,12,77,0,131,128,77,0,131, 184,76,0,131,0,0,0,0,0,0,0,0, 0,0,0,0,37,115,58,37,100,58,32,102, 97,105,108,101,100,32,97,115,115,101,114,116, 105,111,110,32,96,37,115,39,10,0,0,0, 101,116,104,95,120,109,105,116,46,99,0,0, 99,98,112,45,62,110,111,112,46,99,109,100, 32,61,61,32,73,53,57,54,95,67,66,95, 67,77,68,95,78,79,80,124,73,53,57,54, 95,67,66,95,67,77,68,95,69,76,0,0, 99,98,112,45,62,110,111,112,46,99,109,100, 32,38,32,73,53,57,54,95,67,66,95,67, 77,68,0,0,112,45,62,115,99,98,112,45, 62,115,116,97,116,117,115,32,38,32,73,53, 57,54,95,83,67,66,95,67,78,65,0,0, 35,35,35,32,99,109,100,32,115,116,105,108, 108,32,98,117,115,121,58,32,37,120,10,0, 37,100,61,37,100,44,37,120,44,37,100,10, 0,0,0,0,39,37,115,39,32,37,120,32, 37,120,10,0,37,48,56,120,58,32,37,48, 50,120,10,0,37,48,56,120,58,32,37,48, 52,120,10,0,37,48,56,120,58,32,37,48, 56,120,10,0,108,105,110,107,32,115,116,97, 116,101,32,37,48,50,120,10,0,0,0,0, 42,42,42,32,103,111,116,32,37,100,32,105, 110,116,101,114,114,117,112,116,115,10,0,0, 35,35,35,32,69,120,112,101,99,116,101,100, 32,37,100,32,98,117,116,32,103,111,116,32, 37,100,32,105,110,116,101,114,114,117,112,116, 115,10,0,0,80,76,88,57,48,54,48,32, 65,100,100,114,101,115,115,32,61,32,37,88, 32,68,65,84,65,32,61,32,37,88,32,10, 0,0,0,0,42,42,42,32,87,114,105,116, 101,32,111,102,32,37,120,32,116,111,32,37, 100,32,102,97,105,108,101,100,10,0,0,0, 42,42,42,32,87,114,105,116,101,32,111,102, 32,37,120,32,116,111,32,37,120,32,102,97, 105,108,101,100,10,0,0,0,42,42,42,42, 42,42,42,42,42,42,42,42,42,42,42,42, 0,0,0,0,42,42,42,32,73,108,108,101, 103,97,108,32,99,111,109,109,97,110,100,32, 39,37,115,39,10,0,0,0,45,45,45,32, 99,111,109,109,97,110,100,115,32,109,44,116, 44,101,44,69,44,97,44,120,44,108,44,115, 44,112,32,99,97,110,32,98,101,32,112,114, 101,102,105,120,101,100,32,119,105,116,104,32, 97,32,114,101,112,101,97,116,32,99,111,117, 110,116,0,0,108,32,120,112,111,114,116,32, 114,112,111,114,116,32,91,108,101,110,93,32, 32,32,32,32,32,32,32,32,32,76,111,111, 112,98,97,99,107,32,116,101,115,116,32,102, 114,111,109,32,120,112,111,114,116,32,40,49, 45,54,41,32,116,111,32,114,112,111,114,116, 32,40,49,45,54,41,0,0,105,32,32,32, 32,32,32,32,32,32,73,110,116,101,114,114, 117,112,116,32,72,111,115,116,32,32,124,32, 32,115,32,91,112,111,114,116,93,32,91,108, 101,110,93,32,66,97,99,107,50,98,97,99, 107,32,120,109,105,116,32,99,110,116,32,112, 97,99,107,101,116,115,0,0,80,32,32,32, 32,32,32,32,32,32,84,101,115,116,32,80, 76,88,32,57,48,54,48,32,32,32,124,32, 32,100,32,91,114,124,119,124,108,124,116,93, 32,91,118,97,108,124,39,99,39,93,32,32, 82,101,97,100,47,87,114,105,116,101,47,76, 111,111,112,47,84,105,109,101,32,68,77,65, 0,0,0,0,76,32,32,32,32,32,32,32, 32,32,82,101,97,100,32,76,105,110,107,32, 76,69,68,115,32,32,124,32,32,112,32,114, 101,103,110,111,32,91,118,97,108,93,32,32, 82,101,97,100,47,91,119,114,105,116,101,93, 32,80,76,88,32,114,101,103,105,115,116,101, 114,0,0,0,65,32,97,100,100,114,32,32, 32,32,83,101,116,32,101,116,104,101,114,32, 97,100,100,114,32,32,124,32,32,36,32,115, 99,114,105,112,116,32,32,32,32,32,32,32, 82,101,97,100,32,99,109,100,115,32,102,114, 111,109,32,102,105,108,101,32,39,115,99,114, 105,112,116,39,0,0,0,0,120,32,91,112, 111,114,116,93,32,32,84,120,32,101,116,104, 101,114,32,32,32,32,32,32,32,32,124,32, 32,82,32,91,112,111,114,116,93,32,32,32, 32,32,32,32,82,120,32,101,116,104,101,114, 32,91,111,110,32,112,111,114,116,32,49,45, 54,93,0,0,72,32,32,32,32,32,32,32, 32,32,84,111,103,103,108,101,32,70,67,67, 32,116,101,115,116,32,124,32,32,113,44,94, 68,44,94,90,32,32,32,32,32,32,32,32, 81,117,105,116,0,0,0,0,97,32,32,32, 32,32,32,32,32,32,84,101,115,116,32,97, 108,108,32,32,32,32,32,32,32,32,124,32, 32,90,32,109,115,101,99,115,32,32,32,32, 32,32,32,32,80,97,117,115,101,32,102,111, 114,32,97,32,119,104,105,108,101,0,0,0, 69,32,32,32,32,32,32,32,32,32,84,101, 115,116,32,69,69,80,82,79,77,32,32,32, 32,32,124,32,32,83,114,32,97,100,100,114, 59,32,83,119,32,97,100,100,114,32,118,97, 108,59,32,32,82,101,97,100,47,87,114,105, 116,101,32,80,76,88,32,69,50,32,114,101, 103,0,0,0,101,32,91,112,111,114,116,93, 32,32,84,101,115,116,32,101,116,104,101,114, 110,101,116,32,32,32,124,32,32,69,114,32, 97,100,100,114,59,32,69,119,32,97,100,100, 114,32,118,97,108,59,32,32,82,101,97,100, 47,87,114,105,116,101,32,69,69,80,82,79, 77,32,114,101,103,0,0,0,116,32,32,32, 32,32,32,32,32,32,84,101,115,116,32,116, 105,109,101,114,115,32,32,32,32,32,124,32, 32,119,91,42,93,32,97,100,100,114,32,118, 97,108,32,32,87,114,105,116,101,32,109,101, 109,111,114,121,58,32,119,98,32,119,104,44, 32,119,119,44,32,119,116,0,109,32,32,32, 32,32,32,32,32,32,84,101,115,116,32,109, 101,109,111,114,121,32,32,32,32,32,124,32, 32,114,91,42,93,32,97,100,100,114,32,32, 32,32,32,32,82,101,97,100,32,109,101,109, 111,114,121,58,32,114,98,32,114,104,44,32, 114,119,44,32,114,116,0,0,42,42,42,32, 82,105,103,104,116,83,119,105,116,99,104,32, 68,105,97,103,110,111,115,116,105,99,115,32, 109,101,110,117,32,42,42,42,0,0,0,0, 45,45,45,32,84,104,114,101,101,32,99,111, 112,105,101,115,32,111,102,32,97,100,100,114, 101,115,115,32,100,111,32,110,111,116,32,97, 103,114,101,101,33,10,0,0,45,45,45,32, 69,116,104,101,114,32,65,100,100,114,101,115, 115,32,78,111,116,32,83,101,116,33,10,0, 45,45,45,32,69,116,104,101,114,32,65,100, 100,114,101,115,115,32,105,115,32,97,32,109, 117,108,116,105,99,97,115,116,32,97,100,100, 114,101,115,115,33,10,0,0,42,42,42,32, 37,48,50,88,37,48,50,88,37,48,50,88, 58,37,48,50,88,58,37,48,50,88,37,48, 50,88,10,0,45,45,45,32,70,105,114,115, 116,32,98,121,116,101,32,40,37,48,50,88, 41,32,105,115,32,97,32,98,114,111,97,100, 99,97,115,116,32,97,100,100,114,101,115,115, 10,0,0,0,45,45,45,32,76,97,115,116, 32,100,105,103,105,116,32,109,117,115,116,32, 98,101,32,48,32,111,114,32,56,10,0,0, 42,42,42,32,69,105,103,104,116,32,101,116, 104,101,114,110,101,116,32,97,100,100,114,101, 115,115,101,115,32,104,97,118,101,32,98,101, 101,110,32,117,115,101,100,58,10,0,0,0, 42,42,42,32,80,111,114,116,32,37,100,32, 101,116,104,101,114,110,101,116,32,97,100,100, 114,101,115,115,32,105,115,32,0,0,0,0, 45,45,45,32,66,97,100,32,101,116,104,101, 114,32,97,100,100,114,101,115,115,32,39,37, 115,39,32,115,112,101,99,105,102,105,101,100, 10,0,0,0,0,0,0,0,244,101,0,131, 104,112,0,131,104,112,0,131,104,112,0,131, 104,112,0,131,104,112,0,131,104,112,0,131, 104,112,0,131,104,112,0,131,104,112,0,131, 104,112,0,131,104,112,0,131,104,112,0,131, 104,112,0,131,104,112,0,131,104,112,0,131, 104,112,0,131,104,112,0,131,104,112,0,131, 104,112,0,131,104,112,0,131,104,112,0,131, 104,112,0,131,104,112,0,131,104,112,0,131, 104,112,0,131,104,112,0,131,104,112,0,131, 104,112,0,131,104,112,0,131,104,112,0,131, 104,112,0,131,104,112,0,131,104,112,0,131, 104,112,0,131,244,101,0,131,104,112,0,131, 104,112,0,131,104,112,0,131,104,112,0,131, 104,112,0,131,104,112,0,131,64,112,0,131, 104,112,0,131,104,112,0,131,104,112,0,131, 104,112,0,131,104,112,0,131,104,112,0,131, 104,112,0,131,104,112,0,131,104,112,0,131, 104,112,0,131,104,112,0,131,104,112,0,131, 104,112,0,131,104,112,0,131,104,112,0,131, 104,112,0,131,104,112,0,131,104,112,0,131, 104,112,0,131,104,112,0,131,104,112,0,131, 104,112,0,131,28,111,0,131,104,112,0,131, 104,112,0,131,132,111,0,131,152,109,0,131, 104,112,0,131,104,112,0,131,244,101,0,131, 104,112,0,131,104,112,0,131,104,112,0,131, 24,107,0,131,104,112,0,131,104,112,0,131, 104,112,0,131,76,108,0,131,104,112,0,131, 228,108,0,131,112,110,0,131,104,112,0,131, 104,112,0,131,104,112,0,131,104,112,0,131, 28,109,0,131,104,112,0,131,48,111,0,131, 104,112,0,131,104,112,0,131,104,112,0,131, 104,112,0,131,104,112,0,131,104,112,0,131, 84,109,0,131,104,112,0,131,104,112,0,131, 32,112,0,131,136,106,0,131,28,106,0,131, 104,112,0,131,104,112,0,131,52,107,0,131, 104,112,0,131,104,112,0,131,252,106,0,131, 88,111,0,131,104,112,0,131,104,112,0,131, 196,107,0,131,104,112,0,131,180,104,0,131, 168,106,0,131,92,106,0,131,104,112,0,131, 104,112,0,131,148,105,0,131,192,106,0,131, 0,0,0,0,188,111,0,131,204,111,0,131, 12,112,0,131,12,112,0,131,12,112,0,131, 12,112,0,131,12,112,0,131,12,112,0,131, 12,112,0,131,12,112,0,131,12,112,0,131, 12,112,0,131,252,111,0,131,12,112,0,131, 12,112,0,131,12,112,0,131,12,112,0,131, 236,111,0,131,12,112,0,131,12,112,0,131, 12,112,0,131,12,112,0,131,220,111,0,131, 252,111,0,131,0,0,0,0,0,0,0,0, 42,42,42,32,69,69,80,82,79,77,32,80, 97,115,115,101,100,10,0,0,33,33,33,32, 69,69,80,82,79,77,32,70,97,105,108,117, 114,101,58,32,87,114,111,116,101,32,37,48, 52,120,32,97,116,32,37,100,44,32,103,111, 116,32,37,48,52,120,10,0,0,0,0,0, 0,0,0,0,0,0,0,0,35,35,35,70, 114,97,109,101,32,37,100,32,100,105,100,32, 110,111,116,32,97,114,114,105,118,101,10,0, 35,35,35,32,70,114,97,109,101,32,37,100, 44,32,108,101,110,32,37,100,44,32,98,121, 116,101,32,37,100,44,32,119,97,110,116,32, 37,120,32,103,111,116,32,37,120,10,0,0, 35,35,35,70,114,97,109,101,32,37,100,32, 119,114,111,110,103,32,108,101,110,103,116,104, 32,40,119,97,110,116,32,37,100,32,103,111, 116,32,37,100,41,10,0,0,35,35,35,70, 114,97,109,101,32,37,100,58,32,103,111,116, 32,115,101,113,32,37,100,10,0,0,0,0, 35,35,35,32,37,100,32,67,82,67,32,101, 114,114,111,114,115,32,111,99,99,117,114,101, 100,10,0,0,35,35,35,32,37,100,32,65, 108,105,103,110,32,101,114,114,111,114,115,32, 111,99,99,117,114,101,100,10,0,0,0,0, 35,35,35,32,37,100,32,83,104,111,114,116, 32,101,114,114,111,114,115,32,111,99,99,117, 114,101,100,10,0,0,0,0,35,35,35,32, 37,100,32,79,118,101,114,114,117,110,32,101, 114,114,111,114,115,32,111,99,99,117,114,101, 100,10,0,0,35,35,35,32,67,85,32,115, 116,105,108,108,32,114,117,110,110,105,110,103, 58,32,37,120,10,0,0,0,35,35,35,32, 99,109,100,32,115,116,105,108,108,32,98,117, 115,121,58,32,37,120,10,0,35,35,35,32, 115,116,97,116,117,115,32,115,116,105,108,108, 32,98,117,115,121,58,32,37,120,10,0,0, 67,66,61,37,120,44,32,84,66,68,61,37, 120,44,32,66,85,70,61,37,120,10,0,0, 116,101,115,116,95,101,116,104,101,114,46,99, 0,0,0,0,37,100,32,102,114,97,109,101, 115,32,111,102,32,108,101,110,103,116,104,32, 37,100,32,115,101,110,116,32,105,110,32,37, 100,32,109,115,101,99,115,10,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0, 42,42,42,32,56,50,53,52,32,84,105,109, 101,114,32,48,32,79,75,44,32,99,111,117, 110,116,32,119,97,115,32,37,100,10,0,0, 42,42,42,32,56,50,53,52,32,84,105,109, 101,114,32,48,32,110,111,116,32,105,110,116, 101,114,114,117,112,116,105,110,103,32,37,100, 10,0,0,0,42,42,42,32,56,50,53,52, 32,84,105,109,101,114,32,48,32,115,112,101, 101,100,32,119,114,111,110,103,44,32,103,111, 116,32,37,100,32,115,104,111,117,108,100,32, 98,101,32,49,48,48,48,10,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0, 9,37,120,58,32,119,97,110,116,32,37,120, 32,103,111,116,32,37,120,10,0,0,0,0, 45,45,45,32,82,65,77,32,84,101,115,116, 32,111,102,32,37,120,32,116,111,32,37,120, 32,102,97,105,108,101,100,10,0,0,0,0, 42,42,42,32,82,65,77,32,84,101,115,116, 32,111,102,32,37,120,32,116,111,32,37,120, 32,112,97,115,115,101,100,10,0,0,0,0, 35,35,35,32,68,77,65,32,68,79,78,69, 32,110,101,118,101,114,32,111,99,99,117,114, 114,101,100,46,32,32,99,115,114,32,61,32, 37,120,10,0,35,35,35,32,72,111,115,116, 32,110,101,118,101,114,32,103,111,116,32,68, 77,65,32,105,110,116,101,114,114,117,112,116, 46,32,98,99,95,99,110,116,32,61,32,37, 100,10,0,0,35,35,35,32,68,77,65,32, 101,114,114,111,114,32,97,116,32,105,110,100, 101,120,32,37,100,58,32,119,97,110,116,101, 100,32,37,48,50,120,32,103,111,116,32,37, 48,50,120,10,0,0,0,0,35,35,35,32, 73,108,108,101,103,97,108,32,72,111,115,116, 32,97,100,100,114,32,40,61,37,120,41,32, 111,114,32,108,101,110,103,116,104,32,40,61, 37,100,41,10,0,0,0,0,35,35,35,32, 67,111,117,110,116,32,99,97,110,110,111,116, 32,98,101,32,62,32,49,48,50,52,42,49, 48,50,52,10,0,0,0,0,42,42,42,32, 108,99,108,46,66,117,102,49,32,61,32,37, 120,32,45,45,62,32,104,111,115,116,46,66, 117,102,32,61,32,37,120,32,45,45,62,32, 108,99,108,46,66,117,102,50,32,61,32,37, 120,10,0,0,42,42,42,32,62,32,68,98, 32,37,100,32,40,98,117,114,115,116,41,59, 32,62,32,68,119,32,37,100,32,40,119,97, 105,116,115,116,97,116,101,115,41,10,0,0, 35,35,35,32,83,101,99,111,110,100,32,97, 114,103,32,109,117,115,116,32,98,101,32,39, 114,39,32,111,114,32,39,119,39,32,111,114, 32,39,108,39,10,0,0,0,42,42,42,32, 68,77,65,32,37,115,32,105,110,32,37,52, 100,32,98,121,116,101,32,99,104,117,110,107, 115,58,32,0,32,32,116,111,32,104,111,115, 116,0,0,0,102,114,111,109,32,104,111,115, 116,0,0,0,37,56,100,32,98,121,116,101, 115,47,115,101,99,46,10,0,116,105,109,101, 32,116,111,111,32,115,104,111,114,116,32,116, 111,32,109,101,97,115,117,114,101,10,0,0, 0,0,0,0,0,0,0,0,0,0,0,0, 80,37,100,45,62,37,115,32,10,0,0,0, 116,114,97,110,115,109,105,116,32,112,101,110, 100,105,110,103,32,111,110,32,37,100,10,0, 116,114,97,110,115,109,105,116,32,99,111,110, 102,105,103,32,111,110,32,37,100,10,0,0, 116,114,97,110,115,109,105,116,32,116,99,110, 10,0,0,0,116,99,110,32,101,120,112,10, 0,0,0,0,102,111,114,119,97,114,100,95, 100,101,108,97,121,32,101,120,112,32,37,100, 10,0,0,0,109,101,115,115,97,103,101,95, 97,103,101,32,101,120,112,32,37,100,10,0, 104,111,108,100,32,101,120,112,32,37,100,10, 0,0,0,0,84,120,67,79,78,70,73,71, 37,100,10,0,84,120,84,67,78,37,100,10, 0,0,0,0,114,99,118,32,99,111,110,102, 105,103,32,111,110,32,37,100,10,0,0,0, 90,69,82,79,32,114,111,111,116,33,32,97, 116,32,37,120,32,0,0,0,115,117,112,101, 114,99,101,100,101,115,32,37,100,10,0,0, 0,0,0,0,0,0,0,0,0,0,0,0, 65,82,80,82,69,81,32,37,120,33,10,0, 65,82,80,82,69,80,32,37,120,33,10,0, 83,101,110,100,32,85,68,80,32,37,100,10, 0,0,0,0,78,111,32,82,66,68,39,115, 32,105,110,32,85,68,80,32,40,37,100,32, 37,100,41,10,0,0,0,0,83,101,110,116, 32,85,68,80,32,37,100,10,0,0,0,0, 83,78,77,80,32,39,37,99,39,32,108,101, 110,32,37,100,10,0,0,0,69,110,118,111, 121,32,114,99,61,37,100,10,0,0,0,0, 71,101,110,32,116,114,97,112,32,37,100,32, 114,99,61,37,100,10,0,0,66,97,100,32, 85,68,80,32,99,104,101,99,107,115,117,109, 32,37,120,32,108,101,110,32,37,100,10,0, 66,97,100,32,85,68,80,32,108,101,110,103, 116,104,32,119,97,110,116,32,37,100,32,103, 111,116,32,37,100,10,0,0,66,97,100,32, 73,67,77,80,32,99,104,101,99,107,115,117, 109,10,0,0,78,111,32,82,66,68,39,115, 32,105,110,32,73,67,77,80,10,0,0,0, 66,97,100,32,73,80,32,99,104,101,99,107, 115,117,109,10,0,0,0,0,84,114,117,110, 99,97,116,101,100,32,73,80,10,0,0,0, 83,69,78,84,32,73,80,88,33,10,0,0, 110,111,32,115,121,115,78,97,109,101,0,0, 114,105,103,104,116,115,119,105,116,99,104,45, 0,0,0,0,78,111,32,82,66,68,39,115, 32,105,110,32,115,101,110,100,95,115,97,112, 10,0,0,0,78,111,32,82,66,68,39,115, 32,105,110,32,73,80,88,10,0,0,0,0, 84,114,117,110,99,97,116,101,100,32,73,80, 88,10,0,0,0,0,0,0,0,0,0,0, 77,97,108,108,111,99,32,114,101,116,117,114, 110,115,32,78,85,76,76,33,0,0,0,0, 0,0,0,0,0,0,0,0,68,105,103,105, 32,73,110,116,108,46,32,82,105,103,104,116, 83,119,105,116,99,104,32,83,69,45,88,0, 73,110,116,101,108,32,56,50,53,57,54,0, 0,0,0,0,0,0,0,0,8,206,0,131, 36,206,0,131,92,206,0,131,112,206,0,131, 132,206,0,131,220,206,0,131,4,207,0,131, 4,207,0,131,36,207,0,131,52,207,0,131, 80,207,0,131,104,207,0,131,132,207,0,131, 160,207,0,131,188,207,0,131,188,207,0,131, 216,207,0,131,240,207,0,131,12,208,0,131, 40,208,0,131,72,208,0,131,112,208,0,131, 180,210,0,131,232,210,0,131,4,211,0,131, 36,211,0,131,60,211,0,131,0,0,0,0, 64,213,0,131,92,213,0,131,124,213,0,131, 160,213,0,131,60,214,0,131,60,214,0,131, 60,214,0,131,188,213,0,131,216,213,0,131, 244,213,0,131,28,214,0,131,168,214,0,131, 60,214,0,131,168,214,0,131,168,214,0,131, 88,214,0,131,132,214,0,131,0,0,0,0, 36,216,0,131,68,216,0,131,104,216,0,131, 140,216,0,131,140,216,0,131,0,0,0,0, 248,217,0,131,12,218,0,131,40,218,0,131, 76,218,0,131,124,218,0,131,152,218,0,131, 200,218,0,131,228,218,0,131,88,219,0,131, 116,219,0,131,64,224,0,131,92,224,0,131, 124,224,0,131,152,224,0,131,184,224,0,131, 0,0,0,0,110,111,32,115,121,115,67,111, 110,116,97,99,116,0,0,0,110,111,32,115, 121,115,78,97,109,101,0,0,110,111,32,115, 121,115,76,111,99,97,116,105,111,110,0,0, 37,115,58,37,100,58,32,102,97,105,108,101, 100,32,97,115,115,101,114,116,105,111,110,32, 96,37,115,39,10,0,0,0,110,117,109,114, 101,103,115,32,60,61,32,78,86,82,65,77, 95,78,82,69,71,83,32,38,38,32,110,117, 109,114,101,103,115,32,62,32,48,0,0,0, 102,105,114,115,116,114,101,103,32,60,32,78, 86,82,65,77,95,78,82,69,71,83,32,38, 38,32,102,105,114,115,116,114,101,103,32,62, 61,32,48,0,0,0,0,0,10,13,69,82, 82,79,82,32,45,0,0,0,0,0,0,0, 192,244,0,131,8,252,0,131,8,252,0,131, 8,252,0,131,8,252,0,131,8,252,0,131, 8,252,0,131,8,252,0,131,192,251,0,131, 8,252,0,131,8,252,0,131,200,251,0,131, 212,251,0,131,212,251,0,131,212,251,0,131, 212,251,0,131,212,251,0,131,212,251,0,131, 212,251,0,131,212,251,0,131,212,251,0,131, 8,252,0,131,8,252,0,131,8,252,0,131, 8,252,0,131,8,252,0,131,8,252,0,131, 8,252,0,131,8,252,0,131,8,252,0,131, 8,252,0,131,8,252,0,131,200,244,0,131, 8,252,0,131,8,252,0,131,8,252,0,131, 8,252,0,131,8,252,0,131,8,252,0,131, 8,252,0,131,8,252,0,131,8,252,0,131, 8,252,0,131,8,252,0,131,8,252,0,131, 8,252,0,131,8,252,0,131,8,252,0,131, 8,252,0,131,8,252,0,131,8,252,0,131, 212,249,0,131,8,252,0,131,8,252,0,131, 8,252,0,131,8,252,0,131,8,252,0,131, 8,252,0,131,8,252,0,131,8,252,0,131, 8,252,0,131,20,245,0,131,8,245,0,131, 84,247,0,131,8,252,0,131,8,252,0,131, 8,252,0,131,8,252,0,131,8,252,0,131, 8,252,0,131,8,252,0,131,244,251,0,131, 8,252,0,131,8,252,0,131,48,246,0,131, 8,252,0,131,8,252,0,131,8,252,0,131, 240,250,0,131,8,252,0,131,132,248,0,131, 8,252,0,131,8,252,0,131,160,249,0,131, 72,46,1,131,228,47,1,131,152,46,1,131, 132,47,1,131,0,47,1,131,228,47,1,131, 228,47,1,131,228,47,1,131,228,47,1,131, 228,47,1,131,228,47,1,131,228,47,1,131, 228,47,1,131,228,47,1,131,228,47,1,131, 228,47,1,131,228,47,1,131,228,47,1,131, 228,47,1,131,228,47,1,131,228,47,1,131, 228,47,1,131,228,47,1,131,228,47,1,131, 228,47,1,131,228,47,1,131,228,47,1,131, 228,47,1,131,228,47,1,131,228,47,1,131, 228,47,1,131,228,47,1,131,228,47,1,131, 228,47,1,131,228,47,1,131,228,47,1,131, 228,47,1,131,228,47,1,131,228,47,1,131, 228,47,1,131,228,47,1,131,228,47,1,131, 228,47,1,131,228,47,1,131,228,47,1,131, 228,47,1,131,228,47,1,131,228,47,1,131, 228,47,1,131,228,47,1,131,228,47,1,131, 228,47,1,131,228,47,1,131,228,47,1,131, 228,47,1,131,228,47,1,131,228,47,1,131, 228,47,1,131,228,47,1,131,228,47,1,131, 228,47,1,131,228,47,1,131,144,47,1,131, 108,46,1,131,108,46,1,131,108,46,1,131, 152,46,1,131,152,46,1,131,228,47,1,131, 108,46,1,131,20,50,1,131,216,50,1,131, 56,50,1,131,224,50,1,131,104,50,1,131, 216,50,1,131,216,50,1,131,216,50,1,131, 216,50,1,131,216,50,1,131,216,50,1,131, 216,50,1,131,216,50,1,131,216,50,1,131, 216,50,1,131,216,50,1,131,216,50,1,131, 216,50,1,131,216,50,1,131,216,50,1,131, 216,50,1,131,216,50,1,131,216,50,1,131, 216,50,1,131,216,50,1,131,216,50,1,131, 216,50,1,131,216,50,1,131,216,50,1,131, 216,50,1,131,216,50,1,131,216,50,1,131, 216,50,1,131,216,50,1,131,216,50,1,131, 216,50,1,131,216,50,1,131,216,50,1,131, 216,50,1,131,216,50,1,131,216,50,1,131, 216,50,1,131,216,50,1,131,216,50,1,131, 216,50,1,131,216,50,1,131,216,50,1,131, 216,50,1,131,216,50,1,131,216,50,1,131, 216,50,1,131,216,50,1,131,216,50,1,131, 216,50,1,131,216,50,1,131,216,50,1,131, 216,50,1,131,216,50,1,131,216,50,1,131, 216,50,1,131,216,50,1,131,216,50,1,131, 144,50,1,131,20,50,1,131,20,50,1,131, 20,50,1,131,56,50,1,131,56,50,1,131, 216,50,1,131,20,50,1,131,124,53,1,131, 96,53,1,131,96,53,1,131,96,53,1,131, 96,53,1,131,96,53,1,131,96,53,1,131, 96,53,1,131,96,53,1,131,96,53,1,131, 96,53,1,131,96,53,1,131,96,53,1,131, 96,53,1,131,88,53,1,131,64,53,1,131, 80,53,1,131,72,53,1,131,64,53,1,131, 0,0,0,0,28,83,1,131,36,83,1,131, 36,83,1,131,36,83,1,131,36,83,1,131, 28,83,1,131,44,83,1,131,44,83,1,131, 44,83,1,131,44,83,1,131,44,83,1,131, 28,83,1,131,44,83,1,131,0,0,0,0, 196,88,1,131,232,88,1,131,208,88,1,131, 220,88,1,131,244,88,1,131,0,0,0,0, 4,0,0,0,5,0,0,0,6,0,0,0, 7,0,0,0,2,0,0,0,3,0,0,0, 0,0,0,0,1,0,0,0,72,30,0,131, 72,30,0,131,216,44,0,131,0,30,0,131, 108,30,0,131,108,30,0,131,108,30,0,131, 108,30,0,131,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,20,137,1,131, 204,136,1,131,132,136,1,131,56,136,1,131, 236,135,1,131,172,135,1,131,120,135,1,131, 52,135,1,131,232,134,1,131,160,134,1,131, 80,134,1,131,8,134,1,131,188,133,1,131, 120,133,1,131,0,0,0,0,0,0,0,0, 72,72,72,72,72,72,72,72,72,72,72,72, 72,72,72,72,72,72,72,72,72,72,72,72, 72,72,72,72,72,72,72,72,72,72,72,72, 72,72,72,72,72,72,72,72,72,72,72,72, 72,72,72,72,72,72,72,72,72,72,72,72, 72,72,72,72,72,72,72,72,72,72,72,72, 72,72,72,72,72,0,0,0,0,255,85,170, 0,0,0,0,4,0,8,0,16,0,32,0, 64,0,0,1,0,8,0,0,0,0,0,0, 0,0,0,0,0,4,3,2,1,0,0,0, 7,0,0,0,1,0,1,0,1,0,2,0, 20,0,15,0,1,0,0,128,128,0,0,0, 100,0,0,0,96,207,1,131,92,207,1,131, 88,207,1,131,84,207,1,131,80,207,1,131, 0,0,0,0,0,0,0,0,48,49,50,51, 52,53,54,55,56,57,65,66,67,68,69,70, 0,0,0,0,0,0,0,0,8,202,0,131, 148,38,1,131,64,204,0,131,156,202,0,131, 96,148,1,131,1,0,4,1,32,45,1,131, 208,48,1,131,160,49,1,131,20,48,1,131, 200,155,1,131,0,0,0,0,255,0,0,0, 255,0,0,0,0,0,0,0,8,202,0,131, 148,38,1,131,124,204,0,131,156,202,0,131, 168,210,1,131,1,0,6,1,32,45,1,131, 208,48,1,131,160,49,1,131,20,48,1,131, 4,156,1,131,0,0,0,0,255,0,0,0, 255,0,0,0,0,0,0,0,8,202,0,131, 148,38,1,131,132,204,0,131,156,202,0,131, 4,1,0,163,1,0,67,1,32,45,1,131, 208,48,1,131,160,49,1,131,20,48,1,131, 64,156,1,131,0,0,0,0,255,0,0,0, 255,0,0,0,0,0,0,0,8,202,0,131, 148,38,1,131,168,204,0,131,248,204,0,131, 80,18,3,131,1,0,4,3,32,45,1,131, 208,48,1,131,160,49,1,131,20,48,1,131, 124,156,1,131,0,0,0,0,255,0,0,0, 255,0,0,0,0,0,0,0,8,202,0,131, 148,38,1,131,168,204,0,131,32,205,0,131, 96,18,3,131,1,0,4,3,32,45,1,131, 208,48,1,131,160,49,1,131,20,48,1,131, 184,156,1,131,0,0,0,0,255,0,0,0, 255,0,0,0,0,0,0,0,8,202,0,131, 148,38,1,131,168,204,0,131,72,205,0,131, 112,18,3,131,1,0,4,3,32,45,1,131, 208,48,1,131,160,49,1,131,20,48,1,131, 244,156,1,131,0,0,0,0,255,0,0,0, 255,0,0,0,0,0,0,0,8,202,0,131, 148,38,1,131,112,205,0,131,156,202,0,131, 2,0,0,0,1,0,2,1,32,45,1,131, 208,48,1,131,160,49,1,131,20,48,1,131, 48,157,1,131,0,0,0,0,255,0,0,0, 255,0,0,0,0,0,0,0,1,0,0,0, 220,155,1,131,2,0,0,0,24,156,1,131, 3,0,0,0,84,156,1,131,4,0,0,0, 144,156,1,131,5,0,0,0,204,156,1,131, 6,0,0,0,8,157,1,131,7,0,0,0, 68,157,1,131,0,0,0,0,0,0,0,0, 8,202,0,131,148,38,1,131,120,205,0,131, 156,202,0,131,48,211,1,131,1,0,2,1, 32,45,1,131,208,48,1,131,160,49,1,131, 20,48,1,131,172,157,1,131,0,0,0,0, 255,0,0,0,255,0,0,0,0,0,0,0, 1,0,2,1,180,208,0,131,132,205,0,131, 164,202,0,131,76,209,0,131,0,0,0,0, 0,0,0,0,255,0,0,0,255,0,0,0, 0,0,0,0,1,0,4,1,180,208,0,131, 132,205,0,131,164,202,0,131,76,209,0,131, 124,148,1,131,0,0,0,0,255,0,0,0, 255,0,0,0,0,0,0,0,1,0,2,1, 180,208,0,131,132,205,0,131,164,202,0,131, 76,209,0,131,6,0,0,0,0,0,0,0, 255,0,0,0,255,0,0,0,0,0,0,0, 1,0,2,1,180,208,0,131,132,205,0,131, 164,202,0,131,76,209,0,131,220,5,0,0, 0,0,0,0,255,0,0,0,255,0,0,0, 0,0,0,0,1,0,66,1,180,208,0,131, 132,205,0,131,164,202,0,131,76,209,0,131, 0,0,0,0,0,0,0,0,255,0,0,0, 255,0,0,0,0,0,0,0,1,0,4,1, 180,208,0,131,132,205,0,131,164,202,0,131, 76,209,0,131,0,0,0,0,0,0,0,0, 255,0,0,0,255,0,0,0,0,0,0,0, 1,0,2,3,180,208,0,131,132,205,0,131, 228,209,0,131,76,209,0,131,0,0,0,0, 0,0,0,0,255,0,0,0,255,0,0,0, 0,0,0,0,1,0,2,1,180,208,0,131, 132,205,0,131,164,202,0,131,76,209,0,131, 0,0,0,0,0,0,0,0,255,0,0,0, 255,0,0,0,0,0,0,0,1,0,67,1, 180,208,0,131,132,205,0,131,164,202,0,131, 76,209,0,131,0,0,0,0,0,0,0,0, 255,0,0,0,255,0,0,0,0,0,0,0, 1,0,65,1,180,208,0,131,132,205,0,131, 164,202,0,131,76,209,0,131,0,0,0,0, 0,0,0,0,255,0,0,0,255,0,0,0, 0,0,0,0,1,0,65,1,180,208,0,131, 132,205,0,131,164,202,0,131,76,209,0,131, 0,0,0,0,0,0,0,0,255,0,0,0, 255,0,0,0,0,0,0,0,1,0,65,1, 180,208,0,131,132,205,0,131,164,202,0,131, 76,209,0,131,0,0,0,0,0,0,0,0, 255,0,0,0,255,0,0,0,0,0,0,0, 1,0,65,1,180,208,0,131,132,205,0,131, 164,202,0,131,76,209,0,131,0,0,0,0, 0,0,0,0,255,0,0,0,255,0,0,0, 0,0,0,0,1,0,65,1,180,208,0,131, 132,205,0,131,164,202,0,131,76,209,0,131, 0,0,0,0,0,0,0,0,255,0,0,0, 255,0,0,0,0,0,0,0,1,0,65,1, 180,208,0,131,132,205,0,131,164,202,0,131, 76,209,0,131,0,0,0,0,0,0,0,0, 255,0,0,0,255,0,0,0,0,0,0,0, 1,0,65,1,180,208,0,131,132,205,0,131, 164,202,0,131,76,209,0,131,0,0,0,0, 0,0,0,0,255,0,0,0,255,0,0,0, 0,0,0,0,1,0,65,1,180,208,0,131, 132,205,0,131,164,202,0,131,76,209,0,131, 0,0,0,0,0,0,0,0,255,0,0,0, 255,0,0,0,0,0,0,0,1,0,65,1, 180,208,0,131,132,205,0,131,164,202,0,131, 76,209,0,131,0,0,0,0,0,0,0,0, 255,0,0,0,255,0,0,0,0,0,0,0, 1,0,65,1,180,208,0,131,132,205,0,131, 164,202,0,131,76,209,0,131,0,0,0,0, 0,0,0,0,255,0,0,0,255,0,0,0, 0,0,0,0,1,0,65,1,180,208,0,131, 132,205,0,131,164,202,0,131,76,209,0,131, 0,0,0,0,0,0,0,0,255,0,0,0, 255,0,0,0,0,0,0,0,1,0,66,1, 180,208,0,131,132,205,0,131,164,202,0,131, 76,209,0,131,0,0,0,0,0,0,0,0, 255,0,0,0,255,0,0,0,0,0,0,0, 1,0,6,1,180,208,0,131,132,205,0,131, 164,202,0,131,76,209,0,131,0,0,0,0, 0,0,0,0,255,0,0,0,255,0,0,0, 0,0,0,0,1,0,0,0,232,157,1,131, 2,0,0,0,16,158,1,131,3,0,0,0, 56,158,1,131,4,0,0,0,96,158,1,131, 5,0,0,0,136,158,1,131,6,0,0,0, 176,158,1,131,7,0,0,0,216,158,1,131, 8,0,0,0,0,159,1,131,9,0,0,0, 40,159,1,131,10,0,0,0,80,159,1,131, 11,0,0,0,120,159,1,131,12,0,0,0, 160,159,1,131,13,0,0,0,200,159,1,131, 14,0,0,0,240,159,1,131,15,0,0,0, 24,160,1,131,16,0,0,0,64,160,1,131, 17,0,0,0,104,160,1,131,18,0,0,0, 144,160,1,131,19,0,0,0,184,160,1,131, 20,0,0,0,224,160,1,131,21,0,0,0, 8,161,1,131,22,0,0,0,48,161,1,131, 0,0,0,0,0,0,0,0,1,0,0,0, 32,208,1,131,0,0,0,0,0,0,0,0, 1,0,0,0,192,157,1,131,2,0,0,0, 40,208,1,131,0,0,0,0,0,0,0,0, 8,202,0,131,148,38,1,131,112,205,0,131, 60,210,0,131,2,0,0,0,1,0,2,3, 32,45,1,131,208,48,1,131,160,49,1,131, 20,48,1,131,56,162,1,131,0,0,0,0, 255,0,0,0,255,0,0,0,0,0,0,0, 8,202,0,131,148,38,1,131,120,205,0,131, 60,210,0,131,0,17,3,131,1,0,2,3, 32,45,1,131,208,48,1,131,160,49,1,131, 20,48,1,131,116,162,1,131,0,0,0,0, 255,0,0,0,255,0,0,0,0,0,0,0, 8,202,0,131,148,38,1,131,76,210,0,131, 156,202,0,131,4,17,3,131,1,0,65,1, 32,45,1,131,208,48,1,131,160,49,1,131, 20,48,1,131,176,162,1,131,0,0,0,0, 255,0,0,0,255,0,0,0,0,0,0,0, 8,202,0,131,148,38,1,131,76,210,0,131, 156,202,0,131,8,17,3,131,1,0,65,1, 32,45,1,131,208,48,1,131,160,49,1,131, 20,48,1,131,236,162,1,131,0,0,0,0, 255,0,0,0,255,0,0,0,0,0,0,0, 8,202,0,131,148,38,1,131,76,210,0,131, 156,202,0,131,12,17,3,131,1,0,65,1, 32,45,1,131,208,48,1,131,160,49,1,131, 20,48,1,131,40,163,1,131,0,0,0,0, 255,0,0,0,255,0,0,0,0,0,0,0, 8,202,0,131,148,38,1,131,76,210,0,131, 156,202,0,131,16,17,3,131,1,0,65,1, 32,45,1,131,208,48,1,131,160,49,1,131, 20,48,1,131,100,163,1,131,0,0,0,0, 255,0,0,0,255,0,0,0,0,0,0,0, 8,202,0,131,148,38,1,131,76,210,0,131, 156,202,0,131,20,17,3,131,1,0,65,1, 32,45,1,131,208,48,1,131,160,49,1,131, 20,48,1,131,160,163,1,131,0,0,0,0, 255,0,0,0,255,0,0,0,0,0,0,0, 8,202,0,131,148,38,1,131,76,210,0,131, 156,202,0,131,24,17,3,131,1,0,65,1, 32,45,1,131,208,48,1,131,160,49,1,131, 20,48,1,131,220,163,1,131,0,0,0,0, 255,0,0,0,255,0,0,0,0,0,0,0, 8,202,0,131,148,38,1,131,76,210,0,131, 156,202,0,131,28,17,3,131,1,0,65,1, 32,45,1,131,208,48,1,131,160,49,1,131, 20,48,1,131,24,164,1,131,0,0,0,0, 255,0,0,0,255,0,0,0,0,0,0,0, 8,202,0,131,148,38,1,131,76,210,0,131, 156,202,0,131,32,17,3,131,1,0,65,1, 32,45,1,131,208,48,1,131,160,49,1,131, 20,48,1,131,84,164,1,131,0,0,0,0, 255,0,0,0,255,0,0,0,0,0,0,0, 8,202,0,131,148,38,1,131,76,210,0,131, 156,202,0,131,36,17,3,131,1,0,65,1, 32,45,1,131,208,48,1,131,160,49,1,131, 20,48,1,131,144,164,1,131,0,0,0,0, 255,0,0,0,255,0,0,0,0,0,0,0, 8,202,0,131,148,38,1,131,76,210,0,131, 156,202,0,131,40,17,3,131,1,0,65,1, 32,45,1,131,208,48,1,131,160,49,1,131, 20,48,1,131,204,164,1,131,0,0,0,0, 255,0,0,0,255,0,0,0,0,0,0,0, 8,202,0,131,148,38,1,131,120,205,0,131, 156,202,0,131,44,17,3,131,1,0,2,1, 32,45,1,131,208,48,1,131,160,49,1,131, 20,48,1,131,8,165,1,131,0,0,0,0, 255,0,0,0,255,0,0,0,0,0,0,0, 8,202,0,131,148,38,1,131,76,210,0,131, 156,202,0,131,48,17,3,131,1,0,65,1, 32,45,1,131,208,48,1,131,160,49,1,131, 20,48,1,131,68,165,1,131,0,0,0,0, 255,0,0,0,255,0,0,0,0,0,0,0, 8,202,0,131,148,38,1,131,76,210,0,131, 156,202,0,131,52,17,3,131,1,0,65,1, 32,45,1,131,208,48,1,131,160,49,1,131, 20,48,1,131,128,165,1,131,0,0,0,0, 255,0,0,0,255,0,0,0,0,0,0,0, 8,202,0,131,148,38,1,131,76,210,0,131, 156,202,0,131,56,17,3,131,1,0,65,1, 32,45,1,131,208,48,1,131,160,49,1,131, 20,48,1,131,188,165,1,131,0,0,0,0, 255,0,0,0,255,0,0,0,0,0,0,0, 8,202,0,131,148,38,1,131,76,210,0,131, 156,202,0,131,60,17,3,131,1,0,65,1, 32,45,1,131,208,48,1,131,160,49,1,131, 20,48,1,131,248,165,1,131,0,0,0,0, 255,0,0,0,255,0,0,0,0,0,0,0, 8,202,0,131,148,38,1,131,76,210,0,131, 156,202,0,131,64,17,3,131,1,0,65,1, 32,45,1,131,208,48,1,131,160,49,1,131, 20,48,1,131,52,166,1,131,0,0,0,0, 255,0,0,0,255,0,0,0,0,0,0,0, 8,202,0,131,148,38,1,131,76,210,0,131, 156,202,0,131,68,17,3,131,1,0,65,1, 32,45,1,131,208,48,1,131,160,49,1,131, 20,48,1,131,112,166,1,131,0,0,0,0, 255,0,0,0,255,0,0,0,0,0,0,0, 1,0,64,1,44,202,0,131,88,210,0,131, 164,202,0,131,120,211,0,131,0,0,0,0, 0,0,0,0,255,0,0,0,255,0,0,0, 0,0,0,0,1,0,2,1,44,202,0,131, 88,210,0,131,164,202,0,131,120,211,0,131, 0,0,0,0,0,0,0,0,255,0,0,0, 255,0,0,0,0,0,0,0,1,0,64,1, 44,202,0,131,88,210,0,131,164,202,0,131, 120,211,0,131,0,0,0,0,0,0,0,0, 255,0,0,0,255,0,0,0,0,0,0,0, 1,0,2,1,44,202,0,131,88,210,0,131, 164,202,0,131,120,211,0,131,0,0,0,0, 0,0,0,0,255,0,0,0,255,0,0,0, 0,0,0,0,1,0,2,1,44,202,0,131, 88,210,0,131,164,202,0,131,120,211,0,131, 0,0,0,0,0,0,0,0,255,0,0,0, 255,0,0,0,0,0,0,0,1,0,0,0, 172,166,1,131,2,0,0,0,212,166,1,131, 3,0,0,0,252,166,1,131,4,0,0,0, 36,167,1,131,5,0,0,0,76,167,1,131, 0,0,0,0,0,0,0,0,1,0,0,0, 56,208,1,131,0,0,0,0,0,0,0,0, 1,0,64,3,84,212,0,131,16,212,0,131, 52,212,0,131,172,212,0,131,0,0,0,0, 0,0,0,0,255,0,0,0,255,0,0,0, 0,0,0,0,1,0,2,3,84,212,0,131, 16,212,0,131,52,212,0,131,172,212,0,131, 0,0,0,0,0,0,0,0,255,0,0,0, 255,0,0,0,0,0,0,0,1,0,2,3, 84,212,0,131,16,212,0,131,52,212,0,131, 172,212,0,131,0,0,0,0,0,0,0,0, 255,0,0,0,255,0,0,0,0,0,0,0, 1,0,2,3,84,212,0,131,16,212,0,131, 52,212,0,131,172,212,0,131,0,0,0,0, 0,0,0,0,255,0,0,0,255,0,0,0, 0,0,0,0,1,0,2,3,84,212,0,131, 16,212,0,131,52,212,0,131,172,212,0,131, 0,0,0,0,0,0,0,0,255,0,0,0, 255,0,0,0,0,0,0,0,1,0,2,3, 84,212,0,131,16,212,0,131,52,212,0,131, 172,212,0,131,0,0,0,0,0,0,0,0, 255,0,0,0,255,0,0,0,0,0,0,0, 1,0,64,3,84,212,0,131,16,212,0,131, 52,212,0,131,172,212,0,131,0,0,0,0, 0,0,0,0,255,0,0,0,255,0,0,0, 0,0,0,0,1,0,2,3,84,212,0,131, 16,212,0,131,52,212,0,131,172,212,0,131, 0,0,0,0,0,0,0,0,255,0,0,0, 255,0,0,0,0,0,0,0,1,0,2,1, 84,212,0,131,16,212,0,131,164,202,0,131, 172,212,0,131,0,0,0,0,0,0,0,0, 255,0,0,0,255,0,0,0,0,0,0,0, 1,0,2,3,84,212,0,131,16,212,0,131, 52,212,0,131,172,212,0,131,0,0,0,0, 0,0,0,0,255,0,0,0,255,0,0,0, 0,0,0,0,1,0,64,3,84,212,0,131, 16,212,0,131,52,212,0,131,172,212,0,131, 0,0,0,0,0,0,0,0,255,0,0,0, 255,0,0,0,0,0,0,0,1,0,2,3, 84,212,0,131,16,212,0,131,52,212,0,131, 172,212,0,131,0,0,0,0,0,0,0,0, 255,0,0,0,255,0,0,0,0,0,0,0, 1,0,6,1,84,212,0,131,16,212,0,131, 164,202,0,131,172,212,0,131,0,0,0,0, 0,0,0,0,255,0,0,0,255,0,0,0, 0,0,0,0,1,0,0,0,180,167,1,131, 2,0,0,0,220,167,1,131,3,0,0,0, 4,168,1,131,4,0,0,0,44,168,1,131, 5,0,0,0,84,168,1,131,6,0,0,0, 124,168,1,131,7,0,0,0,164,168,1,131, 8,0,0,0,204,168,1,131,9,0,0,0, 244,168,1,131,10,0,0,0,28,169,1,131, 11,0,0,0,68,169,1,131,12,0,0,0, 108,169,1,131,13,0,0,0,148,169,1,131, 0,0,0,0,0,0,0,0,1,0,0,0, 72,208,1,131,0,0,0,0,0,0,0,0, 1,0,2,3,84,212,0,131,16,212,0,131, 52,212,0,131,172,212,0,131,0,0,0,0, 0,0,0,0,255,0,0,0,255,0,0,0, 0,0,0,0,1,0,4,3,84,212,0,131, 16,212,0,131,52,212,0,131,172,212,0,131, 0,0,0,0,0,0,0,0,255,0,0,0, 255,0,0,0,0,0,0,0,1,0,64,3, 84,212,0,131,16,212,0,131,52,212,0,131, 172,212,0,131,0,0,0,0,0,0,0,0, 255,0,0,0,255,0,0,0,0,0,0,0, 1,0,2,3,84,212,0,131,16,212,0,131, 52,212,0,131,172,212,0,131,0,0,0,0, 0,0,0,0,255,0,0,0,255,0,0,0, 0,0,0,0,1,0,0,0,60,170,1,131, 2,0,0,0,100,170,1,131,3,0,0,0, 140,170,1,131,4,0,0,0,180,170,1,131, 0,0,0,0,0,0,0,0,1,0,0,0, 88,208,1,131,0,0,0,0,0,0,0,0, 8,202,0,131,148,38,1,131,76,210,0,131, 156,202,0,131,72,17,3,131,1,0,65,1, 32,45,1,131,208,48,1,131,160,49,1,131, 20,48,1,131,20,171,1,131,0,0,0,0, 255,0,0,0,255,0,0,0,0,0,0,0, 1,0,0,0,76,162,1,131,2,0,0,0, 136,162,1,131,3,0,0,0,196,162,1,131, 4,0,0,0,0,163,1,131,5,0,0,0, 60,163,1,131,6,0,0,0,120,163,1,131, 7,0,0,0,180,163,1,131,8,0,0,0, 240,163,1,131,9,0,0,0,44,164,1,131, 10,0,0,0,104,164,1,131,11,0,0,0, 164,164,1,131,12,0,0,0,224,164,1,131, 13,0,0,0,28,165,1,131,14,0,0,0, 88,165,1,131,15,0,0,0,148,165,1,131, 16,0,0,0,208,165,1,131,17,0,0,0, 12,166,1,131,18,0,0,0,72,166,1,131, 19,0,0,0,132,166,1,131,20,0,0,0, 64,208,1,131,21,0,0,0,80,208,1,131, 22,0,0,0,96,208,1,131,23,0,0,0, 40,171,1,131,0,0,0,0,0,0,0,0, 8,202,0,131,148,38,1,131,76,210,0,131, 156,202,0,131,144,16,3,131,1,0,65,1, 32,45,1,131,208,48,1,131,160,49,1,131, 20,48,1,131,16,172,1,131,0,0,0,0, 255,0,0,0,255,0,0,0,0,0,0,0, 8,202,0,131,148,38,1,131,76,210,0,131, 156,202,0,131,148,16,3,131,1,0,65,1, 32,45,1,131,208,48,1,131,160,49,1,131, 20,48,1,131,76,172,1,131,0,0,0,0, 255,0,0,0,255,0,0,0,0,0,0,0, 8,202,0,131,148,38,1,131,76,210,0,131, 156,202,0,131,152,16,3,131,1,0,65,1, 32,45,1,131,208,48,1,131,160,49,1,131, 20,48,1,131,136,172,1,131,0,0,0,0, 255,0,0,0,255,0,0,0,0,0,0,0, 8,202,0,131,148,38,1,131,76,210,0,131, 156,202,0,131,156,16,3,131,1,0,65,1, 32,45,1,131,208,48,1,131,160,49,1,131, 20,48,1,131,196,172,1,131,0,0,0,0, 255,0,0,0,255,0,0,0,0,0,0,0, 8,202,0,131,148,38,1,131,76,210,0,131, 156,202,0,131,160,16,3,131,1,0,65,1, 32,45,1,131,208,48,1,131,160,49,1,131, 20,48,1,131,0,173,1,131,0,0,0,0, 255,0,0,0,255,0,0,0,0,0,0,0, 8,202,0,131,148,38,1,131,76,210,0,131, 156,202,0,131,164,16,3,131,1,0,65,1, 32,45,1,131,208,48,1,131,160,49,1,131, 20,48,1,131,60,173,1,131,0,0,0,0, 255,0,0,0,255,0,0,0,0,0,0,0, 8,202,0,131,148,38,1,131,76,210,0,131, 156,202,0,131,168,16,3,131,1,0,65,1, 32,45,1,131,208,48,1,131,160,49,1,131, 20,48,1,131,120,173,1,131,0,0,0,0, 255,0,0,0,255,0,0,0,0,0,0,0, 8,202,0,131,148,38,1,131,76,210,0,131, 156,202,0,131,172,16,3,131,1,0,65,1, 32,45,1,131,208,48,1,131,160,49,1,131, 20,48,1,131,180,173,1,131,0,0,0,0, 255,0,0,0,255,0,0,0,0,0,0,0, 8,202,0,131,148,38,1,131,76,210,0,131, 156,202,0,131,176,16,3,131,1,0,65,1, 32,45,1,131,208,48,1,131,160,49,1,131, 20,48,1,131,240,173,1,131,0,0,0,0, 255,0,0,0,255,0,0,0,0,0,0,0, 8,202,0,131,148,38,1,131,76,210,0,131, 156,202,0,131,180,16,3,131,1,0,65,1, 32,45,1,131,208,48,1,131,160,49,1,131, 20,48,1,131,44,174,1,131,0,0,0,0, 255,0,0,0,255,0,0,0,0,0,0,0, 8,202,0,131,148,38,1,131,76,210,0,131, 156,202,0,131,184,16,3,131,1,0,65,1, 32,45,1,131,208,48,1,131,160,49,1,131, 20,48,1,131,104,174,1,131,0,0,0,0, 255,0,0,0,255,0,0,0,0,0,0,0, 8,202,0,131,148,38,1,131,76,210,0,131, 156,202,0,131,188,16,3,131,1,0,65,1, 32,45,1,131,208,48,1,131,160,49,1,131, 20,48,1,131,164,174,1,131,0,0,0,0, 255,0,0,0,255,0,0,0,0,0,0,0, 8,202,0,131,148,38,1,131,76,210,0,131, 156,202,0,131,192,16,3,131,1,0,65,1, 32,45,1,131,208,48,1,131,160,49,1,131, 20,48,1,131,224,174,1,131,0,0,0,0, 255,0,0,0,255,0,0,0,0,0,0,0, 8,202,0,131,148,38,1,131,76,210,0,131, 156,202,0,131,196,16,3,131,1,0,65,1, 32,45,1,131,208,48,1,131,160,49,1,131, 20,48,1,131,28,175,1,131,0,0,0,0, 255,0,0,0,255,0,0,0,0,0,0,0, 8,202,0,131,148,38,1,131,76,210,0,131, 156,202,0,131,200,16,3,131,1,0,65,1, 32,45,1,131,208,48,1,131,160,49,1,131, 20,48,1,131,88,175,1,131,0,0,0,0, 255,0,0,0,255,0,0,0,0,0,0,0, 8,202,0,131,148,38,1,131,76,210,0,131, 156,202,0,131,204,16,3,131,1,0,65,1, 32,45,1,131,208,48,1,131,160,49,1,131, 20,48,1,131,148,175,1,131,0,0,0,0, 255,0,0,0,255,0,0,0,0,0,0,0, 8,202,0,131,148,38,1,131,76,210,0,131, 156,202,0,131,208,16,3,131,1,0,65,1, 32,45,1,131,208,48,1,131,160,49,1,131, 20,48,1,131,208,175,1,131,0,0,0,0, 255,0,0,0,255,0,0,0,0,0,0,0, 8,202,0,131,148,38,1,131,76,210,0,131, 156,202,0,131,212,16,3,131,1,0,65,1, 32,45,1,131,208,48,1,131,160,49,1,131, 20,48,1,131,12,176,1,131,0,0,0,0, 255,0,0,0,255,0,0,0,0,0,0,0, 8,202,0,131,148,38,1,131,76,210,0,131, 156,202,0,131,216,16,3,131,1,0,65,1, 32,45,1,131,208,48,1,131,160,49,1,131, 20,48,1,131,72,176,1,131,0,0,0,0, 255,0,0,0,255,0,0,0,0,0,0,0, 8,202,0,131,148,38,1,131,76,210,0,131, 156,202,0,131,220,16,3,131,1,0,65,1, 32,45,1,131,208,48,1,131,160,49,1,131, 20,48,1,131,132,176,1,131,0,0,0,0, 255,0,0,0,255,0,0,0,0,0,0,0, 8,202,0,131,148,38,1,131,76,210,0,131, 156,202,0,131,224,16,3,131,1,0,65,1, 32,45,1,131,208,48,1,131,160,49,1,131, 20,48,1,131,192,176,1,131,0,0,0,0, 255,0,0,0,255,0,0,0,0,0,0,0, 8,202,0,131,148,38,1,131,76,210,0,131, 156,202,0,131,228,16,3,131,1,0,65,1, 32,45,1,131,208,48,1,131,160,49,1,131, 20,48,1,131,252,176,1,131,0,0,0,0, 255,0,0,0,255,0,0,0,0,0,0,0, 8,202,0,131,148,38,1,131,76,210,0,131, 156,202,0,131,232,16,3,131,1,0,65,1, 32,45,1,131,208,48,1,131,160,49,1,131, 20,48,1,131,56,177,1,131,0,0,0,0, 255,0,0,0,255,0,0,0,0,0,0,0, 8,202,0,131,148,38,1,131,76,210,0,131, 156,202,0,131,236,16,3,131,1,0,65,1, 32,45,1,131,208,48,1,131,160,49,1,131, 20,48,1,131,116,177,1,131,0,0,0,0, 255,0,0,0,255,0,0,0,0,0,0,0, 8,202,0,131,148,38,1,131,76,210,0,131, 156,202,0,131,240,16,3,131,1,0,65,1, 32,45,1,131,208,48,1,131,160,49,1,131, 20,48,1,131,176,177,1,131,0,0,0,0, 255,0,0,0,255,0,0,0,0,0,0,0, 8,202,0,131,148,38,1,131,76,210,0,131, 156,202,0,131,244,16,3,131,1,0,65,1, 32,45,1,131,208,48,1,131,160,49,1,131, 20,48,1,131,236,177,1,131,0,0,0,0, 255,0,0,0,255,0,0,0,0,0,0,0, 1,0,0,0,36,172,1,131,2,0,0,0, 96,172,1,131,3,0,0,0,156,172,1,131, 4,0,0,0,216,172,1,131,5,0,0,0, 20,173,1,131,6,0,0,0,80,173,1,131, 7,0,0,0,140,173,1,131,8,0,0,0, 200,173,1,131,9,0,0,0,4,174,1,131, 10,0,0,0,64,174,1,131,11,0,0,0, 124,174,1,131,12,0,0,0,184,174,1,131, 13,0,0,0,244,174,1,131,14,0,0,0, 48,175,1,131,15,0,0,0,108,175,1,131, 16,0,0,0,168,175,1,131,17,0,0,0, 228,175,1,131,18,0,0,0,32,176,1,131, 19,0,0,0,92,176,1,131,20,0,0,0, 152,176,1,131,21,0,0,0,212,176,1,131, 22,0,0,0,16,177,1,131,23,0,0,0, 76,177,1,131,24,0,0,0,136,177,1,131, 25,0,0,0,196,177,1,131,26,0,0,0, 0,178,1,131,0,0,0,0,0,0,0,0, 8,202,0,131,148,38,1,131,76,210,0,131, 156,202,0,131,112,17,3,131,1,0,65,1, 32,45,1,131,208,48,1,131,160,49,1,131, 20,48,1,131,0,179,1,131,0,0,0,0, 255,0,0,0,255,0,0,0,0,0,0,0, 8,202,0,131,148,38,1,131,76,210,0,131, 156,202,0,131,116,17,3,131,1,0,65,1, 32,45,1,131,208,48,1,131,160,49,1,131, 20,48,1,131,60,179,1,131,0,0,0,0, 255,0,0,0,255,0,0,0,0,0,0,0, 8,202,0,131,148,38,1,131,76,210,0,131, 156,202,0,131,120,17,3,131,1,0,65,1, 32,45,1,131,208,48,1,131,160,49,1,131, 20,48,1,131,120,179,1,131,0,0,0,0, 255,0,0,0,255,0,0,0,0,0,0,0, 8,202,0,131,148,38,1,131,76,210,0,131, 156,202,0,131,124,17,3,131,1,0,65,1, 32,45,1,131,208,48,1,131,160,49,1,131, 20,48,1,131,180,179,1,131,0,0,0,0, 255,0,0,0,255,0,0,0,0,0,0,0, 8,202,0,131,148,38,1,131,200,212,0,131, 156,202,0,131,220,5,0,163,1,0,64,1, 32,45,1,131,208,48,1,131,160,49,1,131, 20,48,1,131,240,179,1,131,0,0,0,0, 255,0,0,0,255,0,0,0,0,0,0,0, 8,202,0,131,148,38,1,131,112,205,0,131, 156,202,0,131,161,0,0,0,1,0,2,1, 32,45,1,131,208,48,1,131,160,49,1,131, 20,48,1,131,44,180,1,131,0,0,0,0, 255,0,0,0,255,0,0,0,0,0,0,0, 1,0,0,0,4,180,1,131,2,0,0,0, 64,180,1,131,0,0,0,0,0,0,0,0, 1,0,0,0,120,208,1,131,0,0,0,0, 0,0,0,0,1,0,0,0,20,179,1,131, 2,0,0,0,80,179,1,131,3,0,0,0, 140,179,1,131,4,0,0,0,200,179,1,131, 5,0,0,0,128,208,1,131,0,0,0,0, 0,0,0,0,1,0,2,1,44,202,0,131, 208,212,0,131,164,202,0,131,196,214,0,131, 0,0,0,0,0,0,0,0,255,0,0,0, 255,0,0,0,0,0,0,0,1,0,65,1, 44,202,0,131,208,212,0,131,164,202,0,131, 196,214,0,131,0,0,0,0,0,0,0,0, 255,0,0,0,255,0,0,0,0,0,0,0, 1,0,65,1,44,202,0,131,208,212,0,131, 164,202,0,131,196,214,0,131,0,0,0,0, 0,0,0,0,255,0,0,0,255,0,0,0, 0,0,0,0,1,0,65,1,44,202,0,131, 208,212,0,131,164,202,0,131,196,214,0,131, 0,0,0,0,0,0,0,0,255,0,0,0, 255,0,0,0,0,0,0,0,1,0,65,1, 44,202,0,131,208,212,0,131,164,202,0,131, 196,214,0,131,0,0,0,0,0,0,0,0, 255,0,0,0,255,0,0,0,0,0,0,0, 1,0,65,1,44,202,0,131,208,212,0,131, 164,202,0,131,196,214,0,131,0,0,0,0, 0,0,0,0,255,0,0,0,255,0,0,0, 0,0,0,0,1,0,65,1,44,202,0,131, 208,212,0,131,164,202,0,131,196,214,0,131, 0,0,0,0,0,0,0,0,255,0,0,0, 255,0,0,0,0,0,0,0,1,0,65,1, 44,202,0,131,208,212,0,131,164,202,0,131, 196,214,0,131,0,0,0,0,0,0,0,0, 255,0,0,0,255,0,0,0,0,0,0,0, 1,0,65,1,44,202,0,131,208,212,0,131, 164,202,0,131,196,214,0,131,0,0,0,0, 0,0,0,0,255,0,0,0,255,0,0,0, 0,0,0,0,1,0,65,1,44,202,0,131, 208,212,0,131,164,202,0,131,196,214,0,131, 0,0,0,0,0,0,0,0,255,0,0,0, 255,0,0,0,0,0,0,0,1,0,65,1, 44,202,0,131,208,212,0,131,164,202,0,131, 196,214,0,131,0,0,0,0,0,0,0,0, 255,0,0,0,255,0,0,0,0,0,0,0, 1,0,65,1,44,202,0,131,208,212,0,131, 164,202,0,131,196,214,0,131,0,0,0,0, 0,0,0,0,255,0,0,0,255,0,0,0, 0,0,0,0,1,0,65,1,44,202,0,131, 208,212,0,131,164,202,0,131,196,214,0,131, 0,0,0,0,0,0,0,0,255,0,0,0, 255,0,0,0,0,0,0,0,1,0,6,1, 44,202,0,131,208,212,0,131,164,202,0,131, 196,214,0,131,0,0,0,0,0,0,0,0, 255,0,0,0,255,0,0,0,0,0,0,0, 1,0,0,0,192,180,1,131,2,0,0,0, 232,180,1,131,3,0,0,0,16,181,1,131, 4,0,0,0,56,181,1,131,5,0,0,0, 96,181,1,131,6,0,0,0,136,181,1,131, 7,0,0,0,176,181,1,131,8,0,0,0, 216,181,1,131,9,0,0,0,0,182,1,131, 10,0,0,0,40,182,1,131,11,0,0,0, 80,182,1,131,13,0,0,0,120,182,1,131, 16,0,0,0,160,182,1,131,17,0,0,0, 200,182,1,131,0,0,0,0,0,0,0,0, 1,0,0,0,144,208,1,131,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,1,0,0,0, 160,208,1,131,2,0,0,0,168,208,1,131, 0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0, 1,0,0,0,184,208,1,131,2,0,0,0, 192,208,1,131,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0, 1,0,0,0,208,208,1,131,2,0,0,0, 216,208,1,131,3,0,0,0,224,208,1,131, 0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0, 1,0,0,0,240,208,1,131,2,0,0,0, 248,208,1,131,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,1,0,0,0, 8,209,1,131,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,1,0,0,0,24,209,1,131, 2,0,0,0,32,209,1,131,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0, 1,0,0,0,48,209,1,131,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0, 1,0,0,0,64,209,1,131,0,0,0,0, 0,0,0,0,1,0,0,0,232,208,1,131, 2,0,0,0,0,209,1,131,3,0,0,0, 16,209,1,131,4,0,0,0,40,209,1,131, 5,0,0,0,56,209,1,131,6,0,0,0, 72,209,1,131,0,0,0,0,0,0,0,0, 2,0,0,0,152,208,1,131,6,0,0,0, 176,208,1,131,7,0,0,0,200,208,1,131, 8,0,0,0,80,209,1,131,0,0,0,0, 0,0,0,0,7,0,0,0,88,209,1,131, 0,0,0,0,0,0,0,0,8,202,0,131, 148,38,1,131,92,215,0,131,156,202,0,131, 128,17,3,131,1,0,65,1,32,45,1,131, 208,48,1,131,160,49,1,131,20,48,1,131, 8,185,1,131,0,0,0,0,255,0,0,0, 255,0,0,0,0,0,0,0,8,202,0,131, 148,38,1,131,92,215,0,131,156,202,0,131, 144,17,3,131,1,0,65,1,32,45,1,131, 208,48,1,131,160,49,1,131,20,48,1,131, 68,185,1,131,0,0,0,0,255,0,0,0, 255,0,0,0,0,0,0,0,8,202,0,131, 148,38,1,131,92,215,0,131,156,202,0,131, 148,17,3,131,1,0,65,1,32,45,1,131, 208,48,1,131,160,49,1,131,20,48,1,131, 128,185,1,131,0,0,0,0,255,0,0,0, 255,0,0,0,0,0,0,0,8,202,0,131, 148,38,1,131,92,215,0,131,156,202,0,131, 132,17,3,131,1,0,65,1,32,45,1,131, 208,48,1,131,160,49,1,131,20,48,1,131, 188,185,1,131,0,0,0,0,255,0,0,0, 255,0,0,0,0,0,0,0,8,202,0,131, 148,38,1,131,92,215,0,131,156,202,0,131, 136,17,3,131,1,0,65,1,32,45,1,131, 208,48,1,131,160,49,1,131,20,48,1,131, 248,185,1,131,0,0,0,0,255,0,0,0, 255,0,0,0,0,0,0,0,8,202,0,131, 148,38,1,131,92,215,0,131,156,202,0,131, 140,17,3,131,1,0,65,1,32,45,1,131, 208,48,1,131,160,49,1,131,20,48,1,131, 52,186,1,131,0,0,0,0,255,0,0,0, 255,0,0,0,0,0,0,0,8,202,0,131, 148,38,1,131,92,215,0,131,156,202,0,131, 156,17,3,131,1,0,65,1,32,45,1,131, 208,48,1,131,160,49,1,131,20,48,1,131, 112,186,1,131,0,0,0,0,255,0,0,0, 255,0,0,0,0,0,0,0,8,202,0,131, 148,38,1,131,92,215,0,131,156,202,0,131, 160,17,3,131,1,0,65,1,32,45,1,131, 208,48,1,131,160,49,1,131,20,48,1,131, 172,186,1,131,0,0,0,0,255,0,0,0, 255,0,0,0,0,0,0,0,8,202,0,131, 148,38,1,131,92,215,0,131,156,202,0,131, 164,17,3,131,1,0,65,1,32,45,1,131, 208,48,1,131,160,49,1,131,20,48,1,131, 232,186,1,131,0,0,0,0,255,0,0,0, 255,0,0,0,0,0,0,0,8,202,0,131, 148,38,1,131,92,215,0,131,156,202,0,131, 168,17,3,131,1,0,65,1,32,45,1,131, 208,48,1,131,160,49,1,131,20,48,1,131, 36,187,1,131,0,0,0,0,255,0,0,0, 255,0,0,0,0,0,0,0,8,202,0,131, 148,38,1,131,92,215,0,131,156,202,0,131, 172,17,3,131,1,0,65,1,32,45,1,131, 208,48,1,131,160,49,1,131,20,48,1,131, 96,187,1,131,0,0,0,0,255,0,0,0, 255,0,0,0,0,0,0,0,8,202,0,131, 148,38,1,131,92,215,0,131,156,202,0,131, 176,17,3,131,1,0,65,1,32,45,1,131, 208,48,1,131,160,49,1,131,20,48,1,131, 156,187,1,131,0,0,0,0,255,0,0,0, 255,0,0,0,0,0,0,0,8,202,0,131, 148,38,1,131,92,215,0,131,156,202,0,131, 180,17,3,131,1,0,65,1,32,45,1,131, 208,48,1,131,160,49,1,131,20,48,1,131, 216,187,1,131,0,0,0,0,255,0,0,0, 255,0,0,0,0,0,0,0,8,202,0,131, 148,38,1,131,92,215,0,131,156,202,0,131, 184,17,3,131,1,0,65,1,32,45,1,131, 208,48,1,131,160,49,1,131,20,48,1,131, 20,188,1,131,0,0,0,0,255,0,0,0, 255,0,0,0,0,0,0,0,8,202,0,131, 148,38,1,131,92,215,0,131,156,202,0,131, 188,17,3,131,1,0,65,1,32,45,1,131, 208,48,1,131,160,49,1,131,20,48,1,131, 80,188,1,131,0,0,0,0,255,0,0,0, 255,0,0,0,0,0,0,0,8,202,0,131, 148,38,1,131,92,215,0,131,156,202,0,131, 192,17,3,131,1,0,65,1,32,45,1,131, 208,48,1,131,160,49,1,131,20,48,1,131, 140,188,1,131,0,0,0,0,255,0,0,0, 255,0,0,0,0,0,0,0,8,202,0,131, 148,38,1,131,92,215,0,131,156,202,0,131, 196,17,3,131,1,0,65,1,32,45,1,131, 208,48,1,131,160,49,1,131,20,48,1,131, 200,188,1,131,0,0,0,0,255,0,0,0, 255,0,0,0,0,0,0,0,8,202,0,131, 148,38,1,131,92,215,0,131,156,202,0,131, 200,17,3,131,1,0,65,1,32,45,1,131, 208,48,1,131,160,49,1,131,20,48,1,131, 4,189,1,131,0,0,0,0,255,0,0,0, 255,0,0,0,0,0,0,0,8,202,0,131, 148,38,1,131,92,215,0,131,156,202,0,131, 204,17,3,131,1,0,65,1,32,45,1,131, 208,48,1,131,160,49,1,131,20,48,1,131, 64,189,1,131,0,0,0,0,255,0,0,0, 255,0,0,0,0,0,0,0,8,202,0,131, 148,38,1,131,92,215,0,131,156,202,0,131, 208,17,3,131,1,0,65,1,32,45,1,131, 208,48,1,131,160,49,1,131,20,48,1,131, 124,189,1,131,0,0,0,0,255,0,0,0, 255,0,0,0,0,0,0,0,8,202,0,131, 148,38,1,131,92,215,0,131,156,202,0,131, 212,17,3,131,1,0,65,1,32,45,1,131, 208,48,1,131,160,49,1,131,20,48,1,131, 184,189,1,131,0,0,0,0,255,0,0,0, 255,0,0,0,0,0,0,0,8,202,0,131, 148,38,1,131,92,215,0,131,156,202,0,131, 220,17,3,131,1,0,65,1,32,45,1,131, 208,48,1,131,160,49,1,131,20,48,1,131, 244,189,1,131,0,0,0,0,255,0,0,0, 255,0,0,0,0,0,0,0,8,202,0,131, 148,38,1,131,92,215,0,131,156,202,0,131, 224,17,3,131,1,0,65,1,32,45,1,131, 208,48,1,131,160,49,1,131,20,48,1,131, 48,190,1,131,0,0,0,0,255,0,0,0, 255,0,0,0,0,0,0,0,8,202,0,131, 148,38,1,131,92,215,0,131,156,202,0,131, 228,17,3,131,1,0,65,1,32,45,1,131, 208,48,1,131,160,49,1,131,20,48,1,131, 108,190,1,131,0,0,0,0,255,0,0,0, 255,0,0,0,0,0,0,0,8,202,0,131, 148,38,1,131,92,215,0,131,156,202,0,131, 232,17,3,131,1,0,65,1,32,45,1,131, 208,48,1,131,160,49,1,131,20,48,1,131, 168,190,1,131,0,0,0,0,255,0,0,0, 255,0,0,0,0,0,0,0,8,202,0,131, 148,38,1,131,92,215,0,131,156,202,0,131, 236,17,3,131,1,0,65,1,32,45,1,131, 208,48,1,131,160,49,1,131,20,48,1,131, 228,190,1,131,0,0,0,0,255,0,0,0, 255,0,0,0,0,0,0,0,8,202,0,131, 148,38,1,131,92,215,0,131,156,202,0,131, 240,17,3,131,1,0,65,1,32,45,1,131, 208,48,1,131,160,49,1,131,20,48,1,131, 32,191,1,131,0,0,0,0,255,0,0,0, 255,0,0,0,0,0,0,0,8,202,0,131, 148,38,1,131,104,215,0,131,140,215,0,131, 0,0,0,0,1,0,2,3,32,45,1,131, 208,48,1,131,160,49,1,131,20,48,1,131, 92,191,1,131,0,0,0,0,255,0,0,0, 255,0,0,0,0,0,0,0,1,0,0,0, 28,185,1,131,2,0,0,0,88,185,1,131, 3,0,0,0,148,185,1,131,4,0,0,0, 208,185,1,131,5,0,0,0,12,186,1,131, 6,0,0,0,72,186,1,131,8,0,0,0, 132,186,1,131,9,0,0,0,192,186,1,131, 10,0,0,0,252,186,1,131,11,0,0,0, 56,187,1,131,12,0,0,0,116,187,1,131, 13,0,0,0,176,187,1,131,14,0,0,0, 236,187,1,131,15,0,0,0,40,188,1,131, 16,0,0,0,100,188,1,131,17,0,0,0, 160,188,1,131,18,0,0,0,220,188,1,131, 19,0,0,0,24,189,1,131,20,0,0,0, 84,189,1,131,21,0,0,0,144,189,1,131, 22,0,0,0,204,189,1,131,24,0,0,0, 8,190,1,131,25,0,0,0,68,190,1,131, 26,0,0,0,128,190,1,131,27,0,0,0, 188,190,1,131,28,0,0,0,248,190,1,131, 29,0,0,0,52,191,1,131,30,0,0,0, 112,191,1,131,0,0,0,0,0,0,0,0, 8,202,0,131,148,38,1,131,180,215,0,131, 156,202,0,131,218,12,3,131,1,0,4,1, 32,45,1,131,208,48,1,131,160,49,1,131, 20,48,1,131,128,192,1,131,0,0,0,0, 255,0,0,0,255,0,0,0,0,0,0,0, 8,202,0,131,148,38,1,131,120,205,0,131, 156,202,0,131,40,211,1,131,1,0,2,1, 32,45,1,131,208,48,1,131,160,49,1,131, 20,48,1,131,188,192,1,131,0,0,0,0, 255,0,0,0,255,0,0,0,0,0,0,0, 8,202,0,131,148,38,1,131,112,205,0,131, 156,202,0,131,2,0,0,0,1,0,2,1, 32,45,1,131,208,48,1,131,160,49,1,131, 20,48,1,131,248,192,1,131,0,0,0,0, 255,0,0,0,255,0,0,0,0,0,0,0, 1,0,2,1,44,202,0,131,200,215,0,131, 164,202,0,131,196,216,0,131,0,0,0,0, 0,0,0,0,255,0,0,0,255,0,0,0, 0,0,0,0,1,0,2,1,44,202,0,131, 200,215,0,131,164,202,0,131,196,216,0,131, 0,0,0,0,0,0,0,0,255,0,0,0, 255,0,0,0,0,0,0,0,1,0,6,1, 44,202,0,131,200,215,0,131,164,202,0,131, 196,216,0,131,0,0,0,0,0,0,0,0, 255,0,0,0,255,0,0,0,0,0,0,0, 1,0,65,1,44,202,0,131,200,215,0,131, 164,202,0,131,196,216,0,131,0,0,0,0, 0,0,0,0,255,0,0,0,255,0,0,0, 0,0,0,0,1,0,65,1,44,202,0,131, 200,215,0,131,164,202,0,131,196,216,0,131, 0,0,0,0,0,0,0,0,255,0,0,0, 255,0,0,0,0,0,0,0,1,0,0,0, 52,193,1,131,2,0,0,0,92,193,1,131, 3,0,0,0,132,193,1,131,4,0,0,0, 172,193,1,131,5,0,0,0,212,193,1,131, 0,0,0,0,0,0,0,0,1,0,0,0, 112,209,1,131,0,0,0,0,0,0,0,0, 1,0,0,0,148,192,1,131,2,0,0,0, 208,192,1,131,3,0,0,0,12,193,1,131, 4,0,0,0,120,209,1,131,0,0,0,0, 0,0,0,0,8,202,0,131,148,38,1,131, 112,205,0,131,156,202,0,131,3,0,0,0, 1,0,2,1,32,45,1,131,208,48,1,131, 160,49,1,131,20,48,1,131,100,194,1,131, 0,0,0,0,255,0,0,0,255,0,0,0, 0,0,0,0,8,202,0,131,148,38,1,131, 92,217,0,131,60,210,0,131,216,12,3,131, 1,0,2,3,32,45,1,131,208,48,1,131, 160,49,1,131,20,48,1,131,160,194,1,131, 0,0,0,0,255,0,0,0,255,0,0,0, 0,0,0,0,8,202,0,131,148,38,1,131, 104,217,0,131,156,202,0,131,0,0,0,0, 1,0,67,1,32,45,1,131,208,48,1,131, 160,49,1,131,20,48,1,131,220,194,1,131, 0,0,0,0,255,0,0,0,255,0,0,0, 0,0,0,0,8,202,0,131,148,38,1,131, 104,217,0,131,156,202,0,131,0,0,0,0, 1,0,65,1,32,45,1,131,208,48,1,131, 160,49,1,131,20,48,1,131,24,195,1,131, 0,0,0,0,255,0,0,0,255,0,0,0, 0,0,0,0,8,202,0,131,148,38,1,131, 112,217,0,131,156,202,0,131,216,12,3,131, 1,0,4,1,32,45,1,131,208,48,1,131, 160,49,1,131,20,48,1,131,84,195,1,131, 0,0,0,0,255,0,0,0,255,0,0,0, 0,0,0,0,8,202,0,131,148,38,1,131, 120,205,0,131,156,202,0,131,224,12,3,131, 1,0,2,1,32,45,1,131,208,48,1,131, 160,49,1,131,20,48,1,131,144,195,1,131, 0,0,0,0,255,0,0,0,255,0,0,0, 0,0,0,0,8,202,0,131,148,38,1,131, 120,205,0,131,156,202,0,131,228,12,3,131, 1,0,2,1,32,45,1,131,208,48,1,131, 160,49,1,131,20,48,1,131,204,195,1,131, 0,0,0,0,255,0,0,0,255,0,0,0, 0,0,0,0,8,202,0,131,148,38,1,131, 92,217,0,131,156,202,0,131,232,12,3,131, 1,0,2,1,32,45,1,131,208,48,1,131, 160,49,1,131,20,48,1,131,8,196,1,131, 0,0,0,0,255,0,0,0,255,0,0,0, 0,0,0,0,8,202,0,131,148,38,1,131, 92,217,0,131,156,202,0,131,234,12,3,131, 1,0,2,1,32,45,1,131,208,48,1,131, 160,49,1,131,20,48,1,131,68,196,1,131, 0,0,0,0,255,0,0,0,255,0,0,0, 0,0,0,0,8,202,0,131,148,38,1,131, 92,217,0,131,156,202,0,131,246,12,3,131, 1,0,2,1,32,45,1,131,208,48,1,131, 160,49,1,131,20,48,1,131,128,196,1,131, 0,0,0,0,255,0,0,0,255,0,0,0, 0,0,0,0,8,202,0,131,148,38,1,131, 92,217,0,131,156,202,0,131,236,12,3,131, 1,0,2,1,32,45,1,131,208,48,1,131, 160,49,1,131,20,48,1,131,188,196,1,131, 0,0,0,0,255,0,0,0,255,0,0,0, 0,0,0,0,8,202,0,131,148,38,1,131, 92,217,0,131,60,210,0,131,238,12,3,131, 1,0,2,3,32,45,1,131,208,48,1,131, 160,49,1,131,20,48,1,131,248,196,1,131, 0,0,0,0,255,0,0,0,255,0,0,0, 0,0,0,0,8,202,0,131,148,38,1,131, 92,217,0,131,60,210,0,131,240,12,3,131, 1,0,2,3,32,45,1,131,208,48,1,131, 160,49,1,131,20,48,1,131,52,197,1,131, 0,0,0,0,255,0,0,0,255,0,0,0, 0,0,0,0,8,202,0,131,148,38,1,131, 92,217,0,131,60,210,0,131,242,12,3,131, 1,0,2,3,32,45,1,131,208,48,1,131, 160,49,1,131,20,48,1,131,112,197,1,131, 0,0,0,0,255,0,0,0,255,0,0,0, 0,0,0,0,1,0,2,1,180,219,0,131, 132,217,0,131,164,202,0,131,104,220,0,131, 0,0,0,0,0,0,0,0,255,0,0,0, 255,0,0,0,0,0,0,0,1,0,2,3, 180,219,0,131,132,217,0,131,0,221,0,131, 104,220,0,131,0,0,0,0,0,0,0,0, 255,0,0,0,255,0,0,0,0,0,0,0, 1,0,2,1,180,219,0,131,132,217,0,131, 164,202,0,131,104,220,0,131,0,0,0,0, 0,0,0,0,255,0,0,0,255,0,0,0, 0,0,0,0,1,0,2,3,180,219,0,131, 132,217,0,131,0,221,0,131,104,220,0,131, 0,0,0,0,0,0,0,0,255,0,0,0, 255,0,0,0,0,0,0,0,1,0,2,3, 180,219,0,131,132,217,0,131,0,221,0,131, 104,220,0,131,0,0,0,0,0,0,0,0, 255,0,0,0,255,0,0,0,0,0,0,0, 1,0,4,1,180,219,0,131,132,217,0,131, 164,202,0,131,104,220,0,131,0,0,0,0, 0,0,0,0,255,0,0,0,255,0,0,0, 0,0,0,0,1,0,2,1,180,219,0,131, 132,217,0,131,164,202,0,131,104,220,0,131, 0,0,0,0,0,0,0,0,255,0,0,0, 255,0,0,0,0,0,0,0,1,0,4,1, 180,219,0,131,132,217,0,131,164,202,0,131, 104,220,0,131,0,0,0,0,0,0,0,0, 255,0,0,0,255,0,0,0,0,0,0,0, 1,0,4,1,180,219,0,131,132,217,0,131, 164,202,0,131,104,220,0,131,0,0,0,0, 0,0,0,0,255,0,0,0,255,0,0,0, 0,0,0,0,1,0,65,1,180,219,0,131, 132,217,0,131,164,202,0,131,104,220,0,131, 0,0,0,0,0,0,0,0,255,0,0,0, 255,0,0,0,0,0,0,0,1,0,0,0, 172,197,1,131,2,0,0,0,212,197,1,131, 3,0,0,0,252,197,1,131,4,0,0,0, 36,198,1,131,5,0,0,0,76,198,1,131, 6,0,0,0,116,198,1,131,7,0,0,0, 156,198,1,131,8,0,0,0,196,198,1,131, 9,0,0,0,236,198,1,131,10,0,0,0, 20,199,1,131,0,0,0,0,0,0,0,0, 1,0,0,0,136,209,1,131,0,0,0,0, 0,0,0,0,1,0,0,0,120,194,1,131, 2,0,0,0,180,194,1,131,3,0,0,0, 240,194,1,131,4,0,0,0,44,195,1,131, 5,0,0,0,104,195,1,131,6,0,0,0, 164,195,1,131,7,0,0,0,224,195,1,131, 8,0,0,0,28,196,1,131,9,0,0,0, 88,196,1,131,10,0,0,0,148,196,1,131, 11,0,0,0,208,196,1,131,12,0,0,0, 12,197,1,131,13,0,0,0,72,197,1,131, 14,0,0,0,132,197,1,131,15,0,0,0, 144,209,1,131,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,8,202,0,131, 148,38,1,131,76,210,0,131,156,202,0,131, 160,211,1,131,1,0,65,1,32,45,1,131, 208,48,1,131,160,49,1,131,20,48,1,131, 44,200,1,131,0,0,0,0,255,0,0,0, 255,0,0,0,0,0,0,0,8,202,0,131, 148,38,1,131,120,205,0,131,60,210,0,131, 140,1,0,163,1,0,2,3,32,45,1,131, 208,48,1,131,160,49,1,131,20,48,1,131, 104,200,1,131,0,0,0,0,255,0,0,0, 255,0,0,0,0,0,0,0,1,0,4,1, 44,202,0,131,36,222,0,131,164,202,0,131, 48,223,0,131,0,0,0,0,0,0,0,0, 255,0,0,0,255,0,0,0,0,0,0,0, 1,0,2,1,44,202,0,131,36,222,0,131, 164,202,0,131,48,223,0,131,0,0,0,0, 0,0,0,0,255,0,0,0,255,0,0,0, 0,0,0,0,1,0,2,1,44,202,0,131, 36,222,0,131,164,202,0,131,48,223,0,131, 0,0,0,0,0,0,0,0,255,0,0,0, 255,0,0,0,0,0,0,0,1,0,0,0, 164,200,1,131,2,0,0,0,204,200,1,131, 3,0,0,0,244,200,1,131,0,0,0,0, 0,0,0,0,1,0,0,0,168,209,1,131, 0,0,0,0,0,0,0,0,1,0,2,1, 44,202,0,131,212,223,0,131,164,202,0,131, 252,224,0,131,0,0,0,0,0,0,0,0, 255,0,0,0,255,0,0,0,0,0,0,0, 1,0,2,1,44,202,0,131,212,223,0,131, 164,202,0,131,252,224,0,131,0,0,0,0, 0,0,0,0,255,0,0,0,255,0,0,0, 0,0,0,0,1,0,65,1,44,202,0,131, 212,223,0,131,164,202,0,131,252,224,0,131, 0,0,0,0,0,0,0,0,255,0,0,0, 255,0,0,0,0,0,0,0,1,0,65,1, 44,202,0,131,212,223,0,131,164,202,0,131, 252,224,0,131,0,0,0,0,0,0,0,0, 255,0,0,0,255,0,0,0,0,0,0,0, 1,0,65,1,44,202,0,131,212,223,0,131, 164,202,0,131,252,224,0,131,0,0,0,0, 0,0,0,0,255,0,0,0,255,0,0,0, 0,0,0,0,1,0,0,0,76,201,1,131, 2,0,0,0,116,201,1,131,3,0,0,0, 156,201,1,131,4,0,0,0,196,201,1,131, 5,0,0,0,236,201,1,131,0,0,0,0, 0,0,0,0,1,0,0,0,184,209,1,131, 0,0,0,0,0,0,0,0,1,0,0,0, 64,200,1,131,2,0,0,0,124,200,1,131, 3,0,0,0,176,209,1,131,4,0,0,0, 192,209,1,131,0,0,0,0,0,0,0,0, 1,0,0,0,128,209,1,131,2,0,0,0, 152,209,1,131,3,0,0,0,160,209,1,131, 4,0,0,0,200,209,1,131,0,0,0,0, 0,0,0,0,1,0,0,0,24,208,1,131, 2,0,0,0,48,208,1,131,4,0,0,0, 104,208,1,131,5,0,0,0,112,208,1,131, 7,0,0,0,136,208,1,131,10,0,0,0, 96,209,1,131,11,0,0,0,104,209,1,131, 17,0,0,0,208,209,1,131,0,0,0,0, 0,0,0,0,1,0,0,0,216,209,1,131, 0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0, 1,0,0,0,240,209,1,131,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,1,0,0,0,8,210,1,131, 2,0,0,0,16,210,1,131,3,0,0,0, 24,210,1,131,4,0,0,0,32,210,1,131, 5,0,0,0,40,210,1,131,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,1,0,0,0, 56,210,1,131,2,0,0,0,64,210,1,131, 0,0,0,0,0,0,0,0,1,0,0,0, 72,210,1,131,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,1,0,0,0, 48,210,1,131,2,0,0,0,80,210,1,131, 3,0,0,0,88,210,1,131,0,0,0,0, 0,0,0,0,1,0,0,0,16,208,1,131, 2,0,0,0,224,209,1,131,3,0,0,0, 232,209,1,131,4,0,0,0,248,209,1,131, 5,0,0,0,0,210,1,131,6,0,0,0, 96,210,1,131,0,0,0,0,0,0,0,0, 1,0,0,0,104,210,1,131,0,0,0,0, 0,0,0,0,6,0,0,0,112,210,1,131, 0,0,0,0,0,0,0,0,3,0,0,0, 120,210,1,131,0,0,0,0,0,0,0,0, 1,0,0,0,128,210,1,131,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0, 1,0,0,0,3,0,0,0,6,0,0,0, 1,0,0,0,2,0,0,0,1,0,0,0, 10,0,0,0,7,0,0,0,8,0,0,0, 2,0,0,0,2,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,112,117,98,108, 105,99,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,112,114,105,118,97,116,101,0, 0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0, 83,78,77,80,95,116,114,97,112,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,1,0,0,0, 3,0,0,0,6,0,0,0,1,0,0,0, 4,0,0,0,1,0,0,0,76,1,0,0, 5,0,0,0,1,0,0,0,1,0,0,0, 0,0,0,0,0,0,0,0,1,0,0,0, 3,0,0,0,6,0,0,0,1,0,0,0, 2,0,0,0,1,0,0,0,2,0,0,0, 2,0,0,0,1,0,0,0,1,0,0,0, 0,0,0,0,1,0,0,0,3,0,0,0, 6,0,0,0,1,0,0,0,2,0,0,0, 1,0,0,0,17,0,0,0,0,0,0,0, 0,0,0,0,48,49,50,51,52,53,54,55, 56,57,65,66,67,68,69,70,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0, 255,85,170,0,255,255,255,255,85,85,85,85, 170,170,170,170,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,64,40,35,41, 32,67,111,112,121,114,105,103,104,116,32,40, 99,41,32,49,57,56,54,32,45,32,49,57, 57,53,32,32,69,112,105,108,111,103,117,101, 32,84,101,99,104,110,111,108,111,103,121,32, 67,111,114,112,111,114,97,116,105,111,110,10, 0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,255,255,255,255, 72,10,0,0,78,10,0,0,83,10,0,0, 69,10,0,0,109,97,105,110,46,99,0,0, 48,0,0,0,55,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,1,0,0,0, 0,0,0,0,116,105,109,101,114,46,99,0, 0,0,0,0,0,0,0,0,0,0,0,0, 100,0,0,0,100,0,0,0,1,0,0,0, 0,0,0,0,115,114,99,32,0,0,0,0, 32,0,0,0,100,115,116,32,0,0,0,0, 32,37,48,50,88,0,0,0,10,0,0,0, 255,255,255,255,48,48,48,48,48,48,0,0, 48,48,48,48,48,49,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,255,255,255,255, 0,0,0,0,0,0,0,0,0,0,0,0, 62,32,0,0,37,120,10,0,37,120,58,9, 37,120,10,0,37,115,10,0,0,0,0,0, 10,0,0,0,0,0,0,0,0,0,0,0, 68,85,77,80,10,0,0,0,37,48,50,120, 32,0,0,0,10,0,0,0,0,0,0,0, 37,100,32,112,112,115,10,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0, 1,0,0,0,0,0,0,0,1,0,0,0, 119,119,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,1,128,194,0, 0,0,0,0,1,128,194,0,0,16,0,0, 66,76,75,0,70,87,68,0,76,82,78,0, 76,73,83,0,68,73,83,0,72,69,76,76, 79,10,0,0,116,99,32,101,120,112,10,0, 102,114,111,109,32,0,0,0,10,0,0,0, 87,101,105,114,100,0,0,0,0,0,0,0, 0,0,0,0,255,255,255,255,255,255,255,255, 255,255,0,0,255,255,255,255,255,255,0,0, 0,0,0,0,0,0,0,0,80,65,68,37, 100,10,0,0,170,170,3,0,0,0,0,0, 83,69,78,84,33,10,0,0,85,68,80,10, 0,0,0,0,73,67,77,80,10,0,0,0, 69,67,72,79,10,0,0,0,73,80,10,0, 170,170,3,0,0,0,0,0,73,80,88,33, 10,0,0,0,0,0,0,0,255,255,255,255, 255,255,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,192,155,1,131,0,0,0,0, 108,157,1,131,0,0,0,0,88,161,1,131, 0,0,0,0,16,162,1,131,0,0,0,0, 32,162,1,131,0,0,0,0,116,167,1,131, 0,0,0,0,164,167,1,131,0,0,0,0, 188,169,1,131,0,0,0,0,44,170,1,131, 0,0,0,0,220,170,1,131,0,0,0,0, 4,171,1,131,0,0,0,0,80,171,1,131, 0,0,0,0,40,178,1,131,0,0,0,0, 104,180,1,131,0,0,0,0,128,180,1,131, 0,0,0,0,144,180,1,131,0,0,0,0, 240,182,1,131,0,0,0,0,104,183,1,131, 0,0,0,0,120,183,1,131,0,0,0,0, 128,183,1,131,0,0,0,0,136,183,1,131, 0,0,0,0,160,183,1,131,0,0,0,0, 168,183,1,131,0,0,0,0,176,183,1,131, 0,0,0,0,200,183,1,131,0,0,0,0, 208,183,1,131,0,0,0,0,216,183,1,131, 0,0,0,0,224,183,1,131,0,0,0,0, 0,184,1,131,0,0,0,0,8,184,1,131, 0,0,0,0,16,184,1,131,0,0,0,0, 40,184,1,131,0,0,0,0,48,184,1,131, 0,0,0,0,64,184,1,131,0,0,0,0, 72,184,1,131,0,0,0,0,80,184,1,131, 0,0,0,0,104,184,1,131,0,0,0,0, 112,184,1,131,0,0,0,0,128,184,1,131, 0,0,0,0,136,184,1,131,0,0,0,0, 152,184,1,131,0,0,0,0,208,184,1,131, 0,0,0,0,248,184,1,131,0,0,0,0, 152,191,1,131,0,0,0,0,252,193,1,131, 0,0,0,0,44,194,1,131,0,0,0,0, 60,194,1,131,0,0,0,0,60,199,1,131, 0,0,0,0,148,199,1,131,0,0,0,0, 164,199,1,131,0,0,0,0,36,200,1,131, 0,0,0,0,28,201,1,131,0,0,0,0, 60,201,1,131,0,0,0,0,20,202,1,131, 0,0,0,0,68,202,1,131,0,0,0,0, 84,202,1,131,0,0,0,0,124,202,1,131, 0,0,0,0,164,202,1,131,0,0,0,0, 236,202,1,131,0,0,0,0,252,202,1,131, 0,0,0,0,4,203,1,131,0,0,0,0, 12,203,1,131,0,0,0,0,28,203,1,131, 0,0,0,0,36,203,1,131,0,0,0,0, 44,203,1,131,0,0,0,0,52,203,1,131, 0,0,0,0,60,203,1,131,0,0,0,0, 68,203,1,131,0,0,0,0,76,203,1,131, 0,0,0,0,124,203,1,131,0,0,0,0, 132,203,1,131,0,0,0,0,140,203,1,131, 0,0,0,0,164,203,1,131,0,0,0,0, 180,203,1,131,0,0,0,0,188,203,1,131, 0,0,0,0,220,203,1,131,0,0,0,0, 20,204,1,131,0,0,0,0,36,204,1,131, 0,0,0,0,52,204,1,131,0,0,0,0, 68,204,1,131,255,255,255,0,0,0,0,0, 0,0,0,0,0,0,0,0,1,0,0,0, 10,0,0,0,10,0,0,0,0,205,1,131, 10,0,0,0,7,0,0,0,0,0,0,0, 0,0,0,0,255,255,255,255,110,118,114,97, 109,46,99,0,114,99,0,0,48,120,0,0, 0,0,0,0,0,0,0,0,0,0,0,0 } ; static int dgrs_ncode = 119520 ;