summaryrefslogtreecommitdiff
path: root/chromium/ui/events/ozone/evdev/touch_filter/palm_model/onedevice_train_palm_detection_filter_inference.cc
blob: 5bb81b253e8653d89f7daeaeea620d241b70bc3e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
3002
3003
3004
3005
3006
3007
3008
3009
3010
3011
3012
3013
3014
3015
3016
3017
3018
3019
3020
3021
3022
3023
3024
3025
3026
3027
3028
3029
3030
3031
3032
3033
3034
3035
3036
3037
3038
3039
3040
3041
3042
3043
3044
3045
3046
3047
3048
3049
3050
3051
3052
3053
3054
3055
3056
3057
3058
3059
3060
3061
3062
3063
3064
3065
3066
3067
3068
3069
3070
3071
3072
3073
3074
3075
3076
3077
3078
3079
3080
3081
3082
3083
3084
3085
3086
3087
3088
3089
3090
3091
3092
3093
3094
3095
3096
3097
3098
3099
3100
3101
3102
3103
3104
3105
3106
3107
3108
3109
3110
3111
3112
3113
3114
3115
3116
3117
3118
3119
3120
3121
3122
3123
3124
3125
3126
3127
3128
3129
3130
3131
3132
3133
3134
3135
3136
3137
3138
3139
3140
3141
3142
3143
3144
3145
3146
3147
3148
3149
3150
3151
3152
3153
3154
3155
3156
3157
3158
3159
3160
3161
3162
3163
3164
3165
3166
3167
3168
3169
3170
3171
3172
3173
3174
3175
3176
3177
3178
3179
3180
3181
3182
3183
3184
3185
3186
3187
3188
3189
3190
3191
3192
3193
3194
3195
3196
3197
3198
3199
3200
3201
3202
3203
3204
3205
3206
3207
3208
3209
3210
3211
3212
3213
3214
3215
3216
3217
3218
3219
3220
3221
3222
3223
3224
3225
3226
3227
3228
3229
3230
3231
3232
3233
3234
3235
3236
3237
3238
3239
3240
3241
3242
3243
3244
3245
3246
3247
3248
3249
3250
3251
3252
3253
3254
3255
3256
3257
3258
3259
3260
3261
3262
3263
3264
3265
3266
3267
3268
3269
3270
3271
3272
3273
3274
3275
3276
3277
3278
3279
3280
3281
3282
3283
3284
3285
3286
3287
3288
3289
3290
3291
3292
3293
3294
3295
3296
3297
3298
3299
3300
3301
3302
3303
3304
3305
3306
3307
3308
3309
3310
3311
3312
3313
3314
3315
3316
3317
3318
3319
3320
3321
3322
3323
3324
3325
3326
3327
3328
3329
3330
3331
3332
3333
3334
3335
3336
3337
3338
3339
3340
3341
3342
3343
3344
3345
3346
3347
3348
3349
3350
3351
3352
3353
3354
3355
3356
3357
3358
3359
3360
3361
3362
3363
3364
3365
3366
3367
3368
3369
3370
3371
3372
3373
3374
3375
3376
3377
3378
3379
3380
3381
3382
3383
3384
3385
3386
3387
3388
3389
3390
3391
3392
3393
3394
3395
3396
3397
3398
3399
3400
3401
3402
3403
3404
3405
3406
3407
3408
3409
3410
3411
3412
3413
3414
3415
3416
3417
3418
3419
3420
3421
3422
3423
3424
3425
3426
3427
3428
3429
3430
3431
3432
3433
3434
3435
3436
3437
3438
3439
3440
3441
3442
3443
3444
3445
3446
3447
3448
3449
3450
3451
3452
3453
3454
3455
3456
3457
3458
3459
3460
3461
3462
3463
3464
3465
3466
3467
3468
3469
3470
3471
3472
3473
3474
3475
3476
3477
3478
3479
3480
3481
3482
3483
3484
3485
3486
3487
3488
3489
3490
3491
3492
3493
3494
3495
3496
3497
3498
3499
3500
3501
3502
3503
3504
3505
3506
3507
3508
3509
3510
3511
3512
3513
3514
3515
3516
3517
3518
3519
3520
3521
3522
3523
3524
3525
3526
3527
3528
3529
3530
3531
3532
3533
3534
3535
3536
3537
3538
3539
3540
3541
3542
3543
3544
3545
3546
3547
3548
3549
3550
3551
3552
3553
3554
3555
3556
3557
3558
3559
3560
3561
3562
3563
3564
3565
3566
3567
3568
3569
3570
3571
3572
3573
3574
3575
3576
3577
3578
3579
3580
3581
3582
3583
3584
3585
3586
3587
3588
3589
3590
3591
3592
3593
3594
3595
3596
3597
3598
3599
3600
3601
3602
3603
3604
3605
3606
3607
3608
3609
3610
3611
3612
3613
3614
3615
3616
3617
3618
3619
3620
3621
3622
3623
3624
3625
3626
3627
3628
3629
3630
3631
3632
3633
3634
3635
3636
3637
3638
3639
3640
3641
3642
3643
3644
3645
3646
3647
3648
3649
3650
3651
3652
3653
3654
3655
3656
3657
3658
3659
3660
3661
3662
3663
3664
3665
3666
3667
3668
3669
3670
3671
3672
3673
3674
3675
3676
3677
3678
3679
3680
3681
3682
3683
3684
3685
3686
3687
3688
3689
3690
3691
3692
3693
3694
3695
3696
3697
3698
3699
3700
3701
3702
3703
3704
3705
3706
3707
3708
3709
3710
3711
3712
3713
3714
3715
3716
3717
3718
3719
3720
3721
3722
3723
3724
3725
3726
3727
3728
3729
3730
3731
3732
3733
3734
3735
3736
3737
3738
3739
3740
3741
3742
3743
3744
3745
3746
3747
3748
3749
3750
3751
3752
3753
3754
3755
3756
3757
3758
3759
3760
3761
3762
3763
3764
3765
3766
3767
3768
3769
3770
3771
3772
3773
3774
3775
3776
3777
3778
3779
3780
3781
3782
3783
3784
3785
3786
3787
3788
3789
3790
3791
3792
3793
3794
3795
3796
3797
3798
3799
3800
3801
3802
3803
3804
3805
3806
3807
3808
3809
3810
3811
3812
3813
3814
3815
3816
3817
3818
3819
3820
3821
3822
3823
3824
3825
3826
3827
3828
3829
3830
3831
3832
3833
3834
3835
3836
3837
3838
3839
3840
3841
3842
3843
3844
3845
3846
3847
3848
3849
3850
3851
3852
3853
3854
3855
3856
3857
3858
3859
3860
3861
3862
3863
3864
3865
3866
3867
3868
3869
3870
3871
3872
3873
3874
3875
3876
3877
3878
3879
3880
3881
3882
3883
3884
3885
3886
3887
3888
3889
3890
3891
3892
3893
3894
3895
3896
3897
3898
3899
3900
3901
3902
3903
3904
3905
3906
3907
3908
3909
3910
3911
3912
3913
3914
3915
3916
3917
3918
3919
3920
3921
3922
3923
3924
// Copyright 2019 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "ui/events/ozone/evdev/touch_filter/palm_model/onedevice_train_palm_detection_filter_inference.h"
#include <algorithm>
#include <cassert>
#include <cmath>
#include <cstdint>
#include <cstring>
#include <limits>
#include <tuple>

#ifndef USE_EIGEN
#define USE_EIGEN 0
#endif

namespace ui::internal_onedevice::alpha_model {

namespace {

// -----------------------------------------------------------------------------
// OP LIBRARY
// Copied here to make sure that the inference code always stays in sync with
// the lib that it was generated for.
// -----------------------------------------------------------------------------

// Default to using std::copy and std::fill over memcpy and memset as they
// are usually faster, thanks to the compiler getting stricter alignment
// guarantees.
#ifndef USE_TYPED_MEMSETMEMCPY
#define USE_TYPED_MEMSETMEMCPY 1
#endif
#ifndef USE_EIGEN
#error Please define USE_EIGEN to either 0 or 1
#endif

// Helper to reinterpret memory as Eigen matrices.
#if USE_EIGEN
template <typename Scalar>
using ConstMatrixMap = typename Eigen::Map<
    const Eigen::Matrix<Scalar, Eigen::Dynamic, Eigen::Dynamic>>;
template <typename Scalar>
using ConstRowVectorMap =
    typename Eigen::Map<const Eigen::Matrix<Scalar, Eigen::Dynamic, 1>>;
template <typename Scalar>
using RowVectorMap =
    typename Eigen::Map<Eigen::Matrix<Scalar, Eigen::Dynamic, 1>>;
template <typename Scalar>
using MatrixMap =
    typename Eigen::Map<Eigen::Matrix<Scalar, Eigen::Dynamic, Eigen::Dynamic>>;
template <typename Scalar, typename StorageIndex>
using SparseMatrix = Eigen::SparseMatrix<Scalar, Eigen::RowMajor, StorageIndex>;
#endif

#if OP_LIB_BENCHMARK
class PerOpTimings {
 public:
  void Add(const std::string& op, absl::Duration time) {
    time_per_op_[op] += time;
  }

  void Reset() { time_per_op_.clear(); }

  void WriteTimingsToInfoLog() {
    std::string message = "Per op totals:\n";
    absl::Duration total;
    for (auto& entry : time_per_op_) {
      total += entry.second;
      absl::StrAppend(
          &message, entry.first, ": ",
          absl::LegacyPrecision(absl::ToDoubleMilliseconds(entry.second)),
          " ms\n");
    }
    absl::StrAppend(&message, "Total: ",
                    absl::LegacyPrecision(absl::ToDoubleMilliseconds(total)),
                    " ms\n");
    VLOG(1) << message;
  }

 private:
  std::map<std::string, absl::Duration> time_per_op_;
};

// Timer for individual operations. For each operation, add a statement like
//   BENCHMARK_TIMER(name_part1, name_part2, ...);
// to the beginning of the code. All name parts will be concatenated together
// and a line will be logged after executing the operation showing the name and
// the elapsed time.
class BenchmarkTimer {
 public:
  explicit BenchmarkTimer(std::string name)
      : name_(std::move(name)), start_(absl::Now()) {}

  ~BenchmarkTimer() {
    const absl::Duration elapsed = absl::Now() - start_;
    Singleton<PerOpTimings>::get()->Add(name_, elapsed);
    VLOG(1) << "Time for " << name_ << ": "
            << absl::ToDoubleMilliseconds(elapsed) << " ms";
  }

 private:
  const std::string name_;
  const absl::Time start_;
};

#define BENCHMARK_TIMER(...) BenchmarkTimer timer(absl::StrCat(__VA_ARGS__));

#else  // OP_LIB_BENCHMARK
#define BENCHMARK_TIMER(...)
#endif  // OP_LIB_BENCHMARK

// The size of a shape in terms of number of coefficients.
inline int32_t ShapeSize(const int32_t rank, const int32_t* shape) {
  int32_t size = 1;
  for (int32_t i = 0; i < rank; ++i)
    size *= shape[i];
  return size;
}

// For convolutional operations, calculates the output size with VALID padding.
// Returns (height, width).
inline std::tuple<int, int> GetConvOutputSizeVALID(const int32_t* input_shape,
                                                   const int32_t* kernel_shape,
                                                   int32_t stride_y,
                                                   int32_t stride_x) {
  return std::make_tuple(
      (input_shape[1] + stride_y - kernel_shape[0]) / stride_y,
      (input_shape[2] + stride_x - kernel_shape[1]) / stride_x);
}

// For convolutional operations, calculates the output size with SAME padding.
// Returns (height, width).
inline std::tuple<int, int> GetConvOutputSizeSAME(const int32_t* input_shape,
                                                  int32_t stride_y,
                                                  int32_t stride_x) {
  return std::make_tuple((input_shape[1] + stride_y - 1) / stride_y,
                         (input_shape[2] + stride_x - 1) / stride_x);
}

// Helper to compute the size of the inner loop for an op that uses indices to
// specify which axes are reduced.
template <typename Tidx>
int32_t GetReduceInnerSize(int32_t input_tensor_rank,
                           const int32_t* __restrict input_shape,
                           int32_t index_tensor_rank,
                           const int32_t* __restrict index_shape,
                           const Tidx* __restrict index_values) {
  assert(index_tensor_rank <= 1);
  const int32_t num_indices = index_tensor_rank > 0 ? index_shape[0] : 1;
  int32_t inner_size = 1;
  for (int32_t i = 0; i < num_indices; ++i) {
    Tidx index_value = index_values[i];
    if (index_value < 0) {
      index_value = input_tensor_rank + index_value;
    }
    inner_size *= input_shape[index_value];
  }
  return inner_size;
}

template <typename T>
void ConcatV2Args2(int32_t arg0_rank,
                   const int32_t* __restrict arg0_shape,
                   const T* __restrict arg0_values,
                   int32_t arg1_rank,
                   const int32_t* __restrict arg1_shape,
                   const T* __restrict arg1_values,
                   const int32_t* __restrict axis_value,
                   T* __restrict output_values) {
  BENCHMARK_TIMER("ConcatV2Args2");
  const int32_t axis = axis_value[0];
  const int32_t num_lines = ShapeSize(axis, arg0_shape);
  const int32_t arg0_line_size = ShapeSize(arg0_rank - axis, arg0_shape + axis);
  const int32_t arg1_line_size = ShapeSize(arg1_rank - axis, arg1_shape + axis);
  for (int32_t line = 0; line < num_lines; ++line) {
    std::copy(arg0_values, arg0_values + arg0_line_size, output_values);
    arg0_values += arg0_line_size;
    output_values += arg0_line_size;
    std::copy(arg1_values, arg1_values + arg1_line_size, output_values);
    arg1_values += arg1_line_size;
    output_values += arg1_line_size;
  }
}

template <typename T>
void MatMul(const int32_t* __restrict input_shape,
            const T* __restrict input_values,
            const int32_t* __restrict weight_shape,
            const T* __restrict weight_values,
            T* __restrict output_values) {
  BENCHMARK_TIMER("MatMul");
#if USE_EIGEN
  const auto in =
      ConstMatrixMap<T>(input_values, input_shape[1], input_shape[0]);
  const auto weight =
      ConstMatrixMap<T>(weight_values, weight_shape[1], weight_shape[0]);
  auto result = MatrixMap<T>(output_values, weight_shape[1], input_shape[0]);
  result.noalias() = weight * in;
#else
  const int32_t batch_size = input_shape[0];
  const int32_t num_inputs = weight_shape[0];
  const int32_t num_outputs = weight_shape[1];
  assert(input_shape[1] == num_inputs);
  for (int32_t batch = 0; batch < batch_size; ++batch) {
    for (int32_t out_i = 0; out_i < num_outputs; ++out_i) {
      T value = 0;
      for (int32_t in_i = 0; in_i < num_inputs; ++in_i) {
        value += input_values[batch * num_inputs + in_i] *
                 weight_values[in_i * num_outputs + out_i];
      }
      *output_values++ = value;
    }
  }
#endif
}

template <typename T>
void DepthwiseConv2dNative(const int32_t* __restrict input_shape,
                           const T* __restrict input_values,
                           const int32_t* __restrict kernel_shape,
                           const T* __restrict kernel_values,
                           int32_t stride_y,
                           int32_t stride_x,
                           int32_t out_height,
                           int32_t out_width,
                           T* __restrict output_values) {
  BENCHMARK_TIMER("DepthwiseConv2dNative");
  // Give the shape values nicer names.
  assert(input_shape[3] == kernel_shape[2]);
  const int32_t batch_size = input_shape[0];
  const int32_t kernel_height = kernel_shape[0];
  const int32_t kernel_width = kernel_shape[1];
  const int32_t in_depth = kernel_shape[2];
  const int32_t depth_mul = kernel_shape[3];
  const int32_t in_height = input_shape[1];
  const int32_t in_width = input_shape[2];

  // Compute the amount of padding needed to get the desired output size.
  const int32_t pad_height =
      ((out_height - 1) * stride_y + kernel_height - in_height) / 2;
  const int32_t pad_width =
      ((out_width - 1) * stride_x + kernel_width - in_width) / 2;

  // Cache the strides for address computations.
  const int32_t in_strides[4] = {
      input_shape[1] * input_shape[2] * input_shape[3],  // batch
      input_shape[2] * input_shape[3],                   // y
      input_shape[3],                                    // x
      1,                                                 // channel
  };
  const int32_t kernel_strides[4] = {
      kernel_shape[1] * kernel_shape[2] * kernel_shape[3],  // y
      kernel_shape[2] * kernel_shape[3],                    // x
      kernel_shape[3],                                      // in channels
      1,                                                    // channel mult
  };

  T* out_write_ptr = output_values;
  for (int32_t batch = 0; batch < batch_size; ++batch) {
    for (int32_t out_y = 0; out_y < out_height; ++out_y) {
      for (int32_t out_x = 0; out_x < out_width; ++out_x) {
        // Compute the input read offsets.
        const int32_t in_y_origin = (out_y * stride_y) - pad_height;
        const int32_t in_x_origin = (out_x * stride_x) - pad_width;

        // Compute the range of the kernel to be applied (we may need to clip
        // when we'd read outside of the valid input region - for SAME).
        const int32_t kernel_y_start =
            std::max(static_cast<int32_t>(0), -in_y_origin);
        const int32_t kernel_y_end =
            std::min(kernel_height, in_height - in_y_origin);
        const int32_t kernel_x_start =
            std::max(static_cast<int32_t>(0), -in_x_origin);
        const int32_t kernel_x_end =
            std::min(kernel_width, in_width - in_x_origin);

        for (int32_t in_c = 0; in_c < in_depth; ++in_c) {
          for (int32_t mul_c = 0; mul_c < depth_mul; ++mul_c, ++out_write_ptr) {
            // Convolve.
            T sum = 0;
            for (int32_t k_y = kernel_y_start; k_y < kernel_y_end; ++k_y) {
              const int32_t in_y = in_y_origin + k_y;
              assert(in_y >= 0 && in_y < in_height);
              for (int32_t k_x = kernel_x_start; k_x < kernel_x_end; ++k_x) {
                const int32_t in_x = in_x_origin + k_x;
                assert(in_x >= 0 && in_x < in_width);
                const T input_value =
                    input_values[batch * in_strides[0] +  // batch
                                 in_y * in_strides[1] +   // y
                                 in_x * in_strides[2] +   // x
                                 in_c];                   // in chan
                const T kernel_value =
                    kernel_values[k_y * kernel_strides[0] +   // y
                                  k_x * kernel_strides[1] +   // x
                                  in_c * kernel_strides[2] +  // in chan
                                  mul_c];                     // chan mult
                sum += input_value * kernel_value;
              }
            }
            *out_write_ptr = sum;
          }  // mul_c
        }    // in_c
      }      // out_x
    }        // out_y
  }          // batch
}

template <typename T>
void DepthwiseConv2dNativeVALID(const int32_t* __restrict input_shape,
                                const T* __restrict input_values,
                                const int32_t* __restrict kernel_shape,
                                const T* __restrict kernel_values,
                                int32_t stride_y,
                                int32_t stride_x,
                                T* __restrict output_values) {
  const auto out_size =
      GetConvOutputSizeVALID(input_shape, kernel_shape, stride_y, stride_x);
  DepthwiseConv2dNative<T>(
      input_shape, input_values, kernel_shape, kernel_values, stride_y,
      stride_x, std::get<0>(out_size), std::get<1>(out_size), output_values);
}

template <typename T>
void DepthwiseConv2dNativeSAME(const int32_t* __restrict input_shape,
                               const T* __restrict input_values,
                               const int32_t* __restrict kernel_shape,
                               const T* __restrict kernel_values,
                               int32_t stride_y,
                               int32_t stride_x,
                               T* __restrict output_values) {
  const auto out_size = GetConvOutputSizeSAME(input_shape, stride_y, stride_x);
  DepthwiseConv2dNative<T>(
      input_shape, input_values, kernel_shape, kernel_values, stride_y,
      stride_x, std::get<0>(out_size), std::get<1>(out_size), output_values);
}

template <typename T>
void FullyConnected(const int32_t* __restrict input_shape,
                    const T* __restrict input_values,
                    const int32_t* __restrict weight_shape,
                    const T* __restrict weight_values,
                    const int32_t* __restrict bias_shape,
                    const T* __restrict bias_values,
                    T* __restrict output_values) {
  BENCHMARK_TIMER("FullyConnected");
#if USE_EIGEN
  const auto in =
      ConstMatrixMap<T>(input_values, input_shape[1], input_shape[0]);
  const auto weight =
      ConstMatrixMap<T>(weight_values, weight_shape[1], weight_shape[0]);
  const auto bias = ConstRowVectorMap<T>(bias_values, bias_shape[0]);
  auto result = MatrixMap<T>(output_values, weight_shape[1], input_shape[0]);
  result.noalias() = (weight * in).colwise() + bias;
#else
  const int32_t batch_size = input_shape[0];
  const int32_t num_inputs = weight_shape[0];
  const int32_t num_outputs = weight_shape[1];
  assert(input_shape[1] == num_inputs);
  assert(bias_shape[0] == num_outputs);
  for (int32_t batch = 0; batch < batch_size; ++batch) {
    for (int32_t out_i = 0; out_i < num_outputs; ++out_i) {
      T value = bias_values[out_i];
      for (int32_t in_i = 0; in_i < num_inputs; ++in_i) {
        value += input_values[batch * num_inputs + in_i] *
                 weight_values[in_i * num_outputs + out_i];
      }
      output_values[batch * num_outputs + out_i] = value;
    }
  }
#endif
}

template <typename T, typename TBlocks, typename TPaddings>
void SpaceToBatchNDRank4(const int32_t* __restrict input_shape,
                         const T* __restrict input_values,
                         const TBlocks* __restrict block_shape_values,
                         const TPaddings* __restrict padding_values,
                         T* __restrict output_values) {
  BENCHMARK_TIMER("SpaceToBatchNDRank4");
  const int32_t input_batch_size = input_shape[0];
  const int32_t input_height = input_shape[1];
  const int32_t input_width = input_shape[2];
  const int32_t input_depth = input_shape[3];

  const TBlocks block_shape_height = block_shape_values[0];
  const TBlocks block_shape_width = block_shape_values[1];
  const TPaddings padding_top = padding_values[0];
  const TPaddings padding_bottom = padding_values[1];
  const TPaddings padding_left = padding_values[2];
  const TPaddings padding_right = padding_values[3];

  const int32_t block_size = block_shape_height * block_shape_width;
  const int32_t output_depth = input_depth;
  const int32_t output_batch_size = input_batch_size * block_size;
  const int32_t output_height =
      (padding_top + padding_bottom + input_height) / block_shape_height;
  const int32_t output_width =
      (padding_left + padding_right + input_width) / block_shape_width;

  const T pad_value = 0;

  for (int32_t out_b = 0; out_b < output_batch_size; ++out_b) {
    const int32_t input_batch = out_b % input_batch_size;
    const int32_t shift_w = (out_b / input_batch_size) % block_shape_width;
    const int32_t shift_h = (out_b / input_batch_size) / block_shape_width;
    for (int32_t out_h = 0; out_h < output_height; ++out_h) {
      for (int32_t out_w = 0; out_w < output_width; ++out_w) {
        T* out = output_values +
                 (((out_b * output_height + out_h) * output_width + out_w) *
                      output_depth +
                  0);
        // Check if padding cell are being handled.
        if (out_h * block_shape_height + shift_h < padding_top ||
            out_h * block_shape_height + shift_h >=
                padding_top + input_height ||
            out_w * block_shape_width + shift_w < padding_left ||
            out_w * block_shape_width + shift_w >= padding_left + input_width) {
// This may not execute correctly when pad_value != 0 and T != uint8.
#if USE_TYPED_MEMSETMEMCPY
          std::fill(out, out + input_depth, pad_value);
#else
          std::memset(out, pad_value, input_depth * sizeof(T));
#endif
        } else {
          const int32_t i0 = input_batch;
          const int32_t i1 =
              (out_h * block_shape_height + shift_h) - padding_top;
          const int32_t i2 =
              (out_w * block_shape_width + shift_w) - padding_left;
          const T* in =
              input_values +
              (((i0 * input_height + i1) * input_width + i2) * input_depth + 0);
#if USE_TYPED_MEMSETMEMCPY
          std::copy(in, in + input_depth, out);
#else
          std::memcpy(out, in, input_depth * sizeof(T));
#endif
        }
      }
    }
  }
}

template <typename T, typename TBlocks, typename TCrops>
void BatchToSpaceNDRank4(const int32_t* __restrict input_shape,
                         const T* __restrict input_values,
                         const TBlocks* __restrict block_shape_values,
                         const TCrops* __restrict crops_values,
                         T* __restrict output_values) {
  BENCHMARK_TIMER("BatchToSpaceNDRank4");
  const int32_t input_batch_size = input_shape[0];
  const int32_t input_height = input_shape[1];
  const int32_t input_width = input_shape[2];
  const int32_t input_depth = input_shape[3];
  const TBlocks block_shape_height = block_shape_values[0];
  const TBlocks block_shape_width = block_shape_values[1];
  const TCrops crops_top = crops_values[0];
  const TCrops crops_bottom = crops_values[1];
  const TCrops crops_left = crops_values[2];
  const TCrops crops_right = crops_values[3];

  const int32_t output_depth = input_depth;
  const int32_t output_batch_size =
      input_batch_size / (block_shape_width * block_shape_height);
  const int32_t output_height =
      input_height * block_shape_height - crops_top - crops_bottom;
  const int32_t output_width =
      input_width * block_shape_width - crops_left - crops_right;

  for (int32_t in_batch = 0; in_batch < input_batch_size; ++in_batch) {
    const int32_t out_batch = in_batch % output_batch_size;
    const int32_t spatial_offset = in_batch / output_batch_size;
    for (int32_t in_h = 0; in_h < input_height; ++in_h) {
      const int32_t out_h = in_h * block_shape_height +
                            spatial_offset / block_shape_width - crops_top;
      if (out_h < 0 || out_h >= output_height) {
        continue;
      }
      for (int32_t in_w = 0; in_w < input_width; ++in_w) {
        const int32_t out_w = in_w * block_shape_width +
                              spatial_offset % block_shape_width - crops_left;

        if (out_w < 0 || out_w >= output_width) {
          continue;
        }
        T* out = output_values +
                 (((out_batch * output_height + out_h) * output_width + out_w) *
                      output_depth +
                  0);
        const T* in = input_values +
                      (((in_batch * input_height + in_h) * input_width + in_w) *
                           input_depth +
                       0);
#if USE_TYPED_MEMSETMEMCPY
        std::copy(in, in + input_depth, out);
#else
        std::memcpy(out, in, input_depth * sizeof(T));
#endif
      }
    }
  }
}

#if USE_EIGEN
template <typename T, typename Tidx>
void SparseDenseMatMulCSR(const int32_t* __restrict input_shape,
                          const T* __restrict input_values,
                          const int32_t num_rows,
                          const int32_t* __restrict nnz_shape,
                          const T* __restrict nnz_values,
                          const Tidx* __restrict outer_index,
                          const Tidx* __restrict cols,
                          T* __restrict output_values) {
  BENCHMARK_TIMER("SparseDenseMatMulCSR");
  const int32_t num_cols = input_shape[1];
  const auto in =
      ConstMatrixMap<T>(input_values, input_shape[1], input_shape[0]);
  const Eigen::Map<const SparseMatrix<T, Tidx>> weight(
      num_rows, num_cols, nnz_shape[0], outer_index, cols, nnz_values);
  auto result = MatrixMap<T>(output_values, num_rows, input_shape[0]);
  result.noalias() = weight * in;
}

template <typename T, typename Tidx>
void SparseFullyConnectedCSR(const int32_t* __restrict input_shape,
                             const T* __restrict input_values,
                             const int32_t num_rows,
                             const int32_t* __restrict nnz_shape,
                             const T* __restrict nnz_values,
                             const Tidx* __restrict outer_index,
                             const Tidx* __restrict cols,
                             const int32_t* __restrict bias_shape,
                             const T* __restrict bias_values,
                             T* __restrict output_values) {
  BENCHMARK_TIMER("SparseFullyConnectedCSR");
  const int32_t num_cols = input_shape[1];
  const auto in =
      ConstMatrixMap<T>(input_values, input_shape[1], input_shape[0]);
  const auto bias = ConstRowVectorMap<T>(bias_values, bias_shape[0]);
  const Eigen::Map<const SparseMatrix<T, Tidx>> weight(
      num_rows, num_cols, nnz_shape[0], outer_index, cols, nnz_values);
  auto result = MatrixMap<T>(output_values, num_rows, input_shape[0]);
  result.noalias() = (weight * in).colwise() + bias;
}
#endif

template <typename T, typename TIndex>
void Gather(int32_t params_rank,
            const int32_t* __restrict params_shape,
            const T* __restrict params_values,
            int32_t indices_rank,
            const int32_t* __restrict indices_shape,
            const TIndex* __restrict indices_values,
            T* __restrict output_values) {
  BENCHMARK_TIMER("Gather");
  const int32_t num_indices = ShapeSize(indices_rank, indices_shape);
  const int32_t num_params = params_shape[0];
  const int32_t slice_size = ShapeSize(params_rank - 1, params_shape + 1);
  for (int32_t i = 0; i < num_indices; ++i) {
    const int32_t index = indices_values[i];
    if (index < 0 || index >= num_params) {
      std::fill(output_values, output_values + slice_size, 0);
    } else {
      std::copy(params_values + index * slice_size,
                params_values + index * slice_size + slice_size, output_values);
    }
    output_values += slice_size;
  }
}

template <typename T>
void Im2Row(const int32_t* __restrict input_shape,
            const T* __restrict input_values,
            const int32_t* __restrict kernel_shape,
            int32_t stride_y,
            int32_t stride_x,
            int32_t out_height,
            int32_t out_width,
            T* __restrict output_values) {
  BENCHMARK_TIMER("Im2Row");
  // Give the shape values nicer names.
  assert(input_shape[3] == kernel_shape[2]);
  const int32_t batch_size = input_shape[0];
  const int32_t kernel_height = kernel_shape[0];
  const int32_t kernel_width = kernel_shape[1];
  const int32_t in_depth = kernel_shape[2];
  const int32_t in_height = input_shape[1];
  const int32_t in_width = input_shape[2];

  // Compute the amount of padding needed to get the desired output size.
  const int32_t pad_height =
      ((out_height - 1) * stride_y + kernel_height - in_height) / 2;
  const int32_t pad_width =
      ((out_width - 1) * stride_x + kernel_width - in_width) / 2;

  // Cache the strides for address computations.
  const int32_t x_stride = input_shape[3];
  const int32_t y_stride = input_shape[2] * x_stride;
  const int32_t batch_stride = input_shape[1] * y_stride;

  for (int32_t batch = 0; batch < batch_size; ++batch) {
    for (int32_t out_y = 0; out_y < out_height; ++out_y) {
      for (int32_t out_x = 0; out_x < out_width; ++out_x) {
        // Compute the input read offsets.
        const int32_t in_y_origin = (out_y * stride_y) - pad_height;
        const int32_t in_x_origin = (out_x * stride_x) - pad_width;

        // Compute the range of the kernel to be applied (we may need to clip
        // when we'd read outside of the valid input region - for SAME).
        const int32_t kernel_y_start =
            std::max(static_cast<int32_t>(0), -in_y_origin);
        const int32_t kernel_y_end =
            std::min(kernel_height, in_height - in_y_origin);
        const int32_t kernel_x_start =
            std::max(static_cast<int32_t>(0), -in_x_origin);
        const int32_t kernel_x_end =
            std::min(kernel_width, in_width - in_x_origin);

        // Padding top.
        if (kernel_y_start != 0) {
          const int32_t num_lines = kernel_y_start;
          const int32_t num_coeffs = num_lines * kernel_width * in_depth;
#if USE_TYPED_MEMSETMEMCPY
          std::fill(output_values, output_values + num_coeffs, 0);
#else
          std::memset(output_values, 0, num_coeffs * sizeof(T));
#endif
          output_values += num_coeffs;
        }
        for (int32_t k_y = kernel_y_start; k_y < kernel_y_end; ++k_y) {
          // Padding left.
          if (kernel_x_start != 0) {
            const int32_t num_coeffs = kernel_x_start * in_depth;
#if USE_TYPED_MEMSETMEMCPY
            std::fill(output_values, output_values + num_coeffs, 0);
#else
            std::memset(output_values, 0, num_coeffs * sizeof(T));
#endif
            output_values += num_coeffs;
          }
          // Valid values.
          {
            const int32_t in_y = in_y_origin + k_y;
            const int32_t in_x = in_x_origin + kernel_x_start;
            const int32_t num_coeffs =
                (kernel_x_end - kernel_x_start) * in_depth;
#if USE_TYPED_MEMSETMEMCPY
            const int32_t offset =
                batch * batch_stride + in_y * y_stride + in_x * x_stride;
            std::copy(input_values + offset, input_values + offset + num_coeffs,
                      output_values);
#else
            std::memcpy(output_values,
                        input_values  // Reusing the restricted pointer.
                            + batch * batch_stride  // batch
                            + in_y * y_stride       // y
                            + in_x * x_stride,      // x
                        num_coeffs * sizeof(T));
#endif
            output_values += num_coeffs;
          }
          // Padding right.
          if (kernel_x_end != kernel_width) {
            const int32_t num_coeffs = (kernel_width - kernel_x_end) * in_depth;
#if USE_TYPED_MEMSETMEMCPY
            std::fill(output_values, output_values + num_coeffs, 0);
#else
            std::memset(output_values, 0, num_coeffs * sizeof(T));
#endif
            output_values += num_coeffs;
          }
        }
        // Padding bottom.
        if (kernel_y_end != kernel_height) {
          const int32_t num_lines = kernel_height - kernel_y_end;
          const int32_t num_coeffs = num_lines * kernel_width * in_depth;
#if USE_TYPED_MEMSETMEMCPY
          std::fill(output_values, output_values + num_coeffs, 0);
#else
          std::memset(output_values, 0, num_coeffs * sizeof(T));
#endif
          output_values += num_coeffs;
        }
      }
    }
  }
}

template <typename T>
void Im2RowVALID(const int32_t* __restrict input_shape,
                 const T* __restrict input_values,
                 const int32_t* __restrict kernel_shape,
                 int32_t stride_y,
                 int32_t stride_x,
                 T* __restrict output_values) {
  const auto out_size =
      GetConvOutputSizeVALID(input_shape, kernel_shape, stride_y, stride_x);
  Im2Row<T>(input_shape, input_values, kernel_shape, stride_y, stride_x,
            std::get<0>(out_size), std::get<1>(out_size), output_values);
}

template <typename T>
void Im2RowSAME(const int32_t* __restrict input_shape,
                const T* __restrict input_values,
                const int32_t* __restrict kernel_shape,
                int32_t stride_y,
                int32_t stride_x,
                T* __restrict output_values) {
  const auto out_size = GetConvOutputSizeSAME(input_shape, stride_y, stride_x);
  Im2Row<T>(input_shape, input_values, kernel_shape, stride_y, stride_x,
            std::get<0>(out_size), std::get<1>(out_size), output_values);
}

// We use macros instead of template functions with templated functors here
// because it's a lot less verbose and easier for the compiler to optimize.
#define POOL_OP(OP_NAME, DEFAULT_VALUE, UPDATE_EXPR, RESULT_EXPR)              \
  template <typename T>                                                        \
  void OP_NAME##Pool(const int32_t* __restrict input_shape,                    \
                     const T* __restrict input_values, int32_t stride_y,       \
                     int32_t stride_x, int32_t kernel_height,                  \
                     int32_t kernel_width, int32_t out_height,                 \
                     int32_t out_width, T* __restrict output_values) {         \
    BENCHMARK_TIMER(#OP_NAME, "Pool");                                         \
    const int32_t batch_size = input_shape[0];                                 \
    const int32_t in_height = input_shape[1];                                  \
    const int32_t in_width = input_shape[2];                                   \
    const int32_t depth = input_shape[3];                                      \
                                                                               \
    const int32_t pad_height =                                                 \
        ((out_height - 1) * stride_y + kernel_height - in_height) / 2;         \
    const int32_t pad_width =                                                  \
        ((out_width - 1) * stride_x + kernel_width - in_width) / 2;            \
                                                                               \
    const int32_t in_strides[4] = {                                            \
        input_shape[1] * input_shape[2] * input_shape[3],                      \
        input_shape[2] * input_shape[3],                                       \
        input_shape[3],                                                        \
        1,                                                                     \
    };                                                                         \
                                                                               \
    T* out_write_ptr = output_values;                                          \
    for (int32_t batch = 0; batch < batch_size; ++batch) {                     \
      for (int32_t out_y = 0; out_y < out_height; ++out_y) {                   \
        for (int32_t out_x = 0; out_x < out_width; ++out_x) {                  \
          const int32_t in_y_origin = (out_y * stride_y) - pad_height;         \
          const int32_t in_x_origin = (out_x * stride_x) - pad_width;          \
          const int32_t kernel_y_start =                                       \
              std::max(static_cast<int32_t>(0), -in_y_origin);                 \
          const int32_t kernel_y_end =                                         \
              std::min(kernel_height, in_height - in_y_origin);                \
          const int32_t kernel_x_start =                                       \
              std::max(static_cast<int32_t>(0), -in_x_origin);                 \
          const int32_t kernel_x_end =                                         \
              std::min(kernel_width, in_width - in_x_origin);                  \
          const int32_t count = (kernel_y_end - kernel_y_start) *              \
                                (kernel_x_end - kernel_x_start);               \
          (void)sizeof(count);                                                 \
                                                                               \
          for (int32_t chan = 0; chan < depth; ++chan, ++out_write_ptr) {      \
            T value = DEFAULT_VALUE;                                           \
            for (int32_t k_y = kernel_y_start; k_y < kernel_y_end; ++k_y) {    \
              const int32_t in_y = in_y_origin + k_y;                          \
              assert(in_y >= 0 && in_y < in_height);                           \
              for (int32_t k_x = kernel_x_start; k_x < kernel_x_end; ++k_x) {  \
                const int32_t in_x = in_x_origin + k_x;                        \
                assert(in_x >= 0 && in_x < in_width);                          \
                const T next = input_values[batch * in_strides[0] +            \
                                            in_y * in_strides[1] +             \
                                            in_x * in_strides[2] + chan];      \
                value = UPDATE_EXPR;                                           \
              }                                                                \
            }                                                                  \
            *out_write_ptr = RESULT_EXPR;                                      \
          }                                                                    \
        }                                                                      \
      }                                                                        \
    }                                                                          \
  }                                                                            \
                                                                               \
  template <typename T>                                                        \
  void OP_NAME##PoolVALID(const int32_t* __restrict input_shape,               \
                          const T* __restrict input_values, int32_t stride_y,  \
                          int32_t stride_x, int32_t kernel_height,             \
                          int32_t kernel_width, T* __restrict output_values) { \
    const int32_t kernel_shape[4] = {kernel_height, kernel_width, 1, 1};       \
    const auto out_size =                                                      \
        GetConvOutputSizeVALID(input_shape, kernel_shape, stride_y, stride_x); \
    OP_NAME##Pool<T>(input_shape, input_values, stride_y, stride_x,            \
                     kernel_height, kernel_width, std::get<0>(out_size),       \
                     std::get<1>(out_size), output_values);                    \
  }                                                                            \
                                                                               \
  template <typename T>                                                        \
  void OP_NAME##PoolSAME(const int32_t* __restrict input_shape,                \
                         const T* __restrict input_values, int32_t stride_y,   \
                         int32_t stride_x, int32_t kernel_height,              \
                         int32_t kernel_width, T* __restrict output_values) {  \
    const auto out_size =                                                      \
        GetConvOutputSizeSAME(input_shape, stride_y, stride_x);                \
    OP_NAME##Pool<T>(input_shape, input_values, stride_y, stride_x,            \
                     kernel_height, kernel_width, std::get<0>(out_size),       \
                     std::get<1>(out_size), output_values);                    \
  }

POOL_OP(Max, std::numeric_limits<T>::lowest(), std::max(value, next), value)
POOL_OP(Avg, 0, value + next, value / count)

template <typename T>
void Memcpy(const int32_t rank,
            const int32_t* __restrict input_shape,
            const T* __restrict input_values,
            T* __restrict output_values) {
  BENCHMARK_TIMER("Memcpy");
  const int32_t size = ShapeSize(rank, input_shape);
  for (int32_t i = 0; i < size; ++i) {
    output_values[i] = input_values[i];
  }
}

template <typename T>
void Softmax(const int32_t rank,
             const int32_t* __restrict input_shape,
             const T* __restrict input_values,
             const int32_t reduce_dim,
             T* __restrict output_values,
             T* __restrict scratch_values) {
  BENCHMARK_TIMER("Softmax");
  const int32_t size = ShapeSize(rank, input_shape);
  if (rank == 2 && reduce_dim == 1) {
    T logits_max = std::numeric_limits<T>::lowest();

    // Max.
    for (int32_t i = 0; i < size; ++i) {
      logits_max = std::max(logits_max, input_values[i]);
    }

    // Pre-compute exp.
    for (int32_t i = 0; i < size; ++i) {
      scratch_values[i] = std::exp(input_values[i] - logits_max);
    }

    // Sum over the last dimension, then divide the exps and write out.
    for (int32_t offset = 0; offset < size; offset += input_shape[1]) {
      const int32_t end_offset = offset + input_shape[1];
      T sum = 0;
      for (int32_t i = offset; i < end_offset; ++i) {
        sum += scratch_values[i];
      }
      const T rcp_denom = static_cast<T>(1) / sum;
      for (int32_t i = 0; i < input_shape[1]; ++i) {
        output_values[offset + i] = scratch_values[offset + i] * rcp_denom;
      }
    }
  } else {
    assert(false && "Generic Softmax not yet supported.");
  }
}

// Returns the start position for a slice in a single dimension.
template <typename T>
int32_t StridedSliceBegin(int32_t range_mask,
                          const T* __restrict range_values,
                          const T* __restrict strides,
                          const int32_t* __restrict input_shape,
                          int32_t dim) {
  const bool is_explicit = 0 == (range_mask & (1 << dim));
  if (is_explicit) {
    const T range_value = range_values[dim];
    return (range_value < 0 ? range_value + input_shape[dim] : range_value);
  } else {
    const bool is_reverse = strides[dim] < 0;
    return is_reverse ? input_shape[dim] - 1 : 0;
  }
}

// Returns the end position for a slice in a single dimension.
template <typename T>
int32_t StridedSliceEnd(int32_t range_mask,
                        const T* __restrict range_values,
                        const T* __restrict strides,
                        const int32_t* __restrict input_shape,
                        int32_t dim) {
  const bool is_explicit = 0 == (range_mask & (1 << dim));
  if (is_explicit) {
    const T range_value = range_values[dim];
    return (range_value < 0 ? range_value + input_shape[dim] : range_value);
  } else {
    const bool is_reverse = strides[dim] < 0;
    return is_reverse ? -1 : input_shape[dim];
  }
}

template <typename T, typename TIdx>
void StridedSlice(const int32_t input_rank,
                  const int32_t* __restrict input_shape,
                  const T* __restrict input_values,
                  const TIdx* __restrict begin,
                  const TIdx* __restrict end,
                  const TIdx* __restrict strides,
                  int32_t begin_mask,
                  int32_t end_mask,
                  T* __restrict output_values) {
  BENCHMARK_TIMER("StridedSlice");
  const int32_t MAX_RANK = 8;
  assert(input_rank < MAX_RANK);

  // Compute the address strides for each dimension.
  int32_t dim_addr_strides[MAX_RANK] = {0};
  dim_addr_strides[input_rank - 1] = 1;
  for (int32_t dim = input_rank - 2; dim >= 0; --dim) {
    dim_addr_strides[dim] = dim_addr_strides[dim + 1] * input_shape[dim + 1];
  }

  // Resolve the masks and get explicit ranges for each dimension.
  int32_t dim_begin[MAX_RANK];
  int32_t dim_end[MAX_RANK];
  bool dim_is_full_range[MAX_RANK];
  for (int32_t dim = 0; dim < input_rank; ++dim) {
    const int32_t stride = strides[dim];
    dim_begin[dim] =
        StridedSliceBegin(begin_mask, begin, strides, input_shape, dim);
    dim_end[dim] = StridedSliceEnd(end_mask, end, strides, input_shape, dim);
    dim_is_full_range[dim] =
        dim_begin[dim] == 0 && dim_end[dim] == input_shape[dim] && stride == 1;
    // Make sure that the dim_end is always bigger than dim_begin, this
    // simplifies the boundary checks below.
    if (stride > 0 && dim_begin[dim] > dim_end[dim]) {
      dim_end[dim] += input_shape[dim];
    }

    // Our termination criteria for loops is that we hit the end exactly, so
    // we need to ensure that we don't step over the end with stride != 1.
    const int32_t length_mod = (dim_end[dim] - dim_begin[dim]) % stride;
    if (length_mod != 0) {
      dim_end[dim] += stride - length_mod;
    }
  }

  // Find out how large the blocks are that we can copy contiguously. (All
  // dimensions on the right for which we fetch the full range)
  int32_t last_sliced_dim = input_rank - 1;
  int32_t block_size = 1;
  for (int32_t dim = input_rank - 1; dim >= 0 && dim_is_full_range[dim];
       --dim) {
    block_size *= input_shape[dim];
    last_sliced_dim--;
  }

  // Initialize the read pos for each dimension according to the begin offsets.
  int32_t read_pos[MAX_RANK] = {0};
  for (int32_t dim = 0; dim < input_rank; ++dim) {
    read_pos[dim] = dim_begin[dim];
  }

  while (read_pos[0] != dim_end[0]) {
    // Compute the read offset for the current position.
    int32_t read_offset = 0;
    for (int32_t dim = 0; dim <= last_sliced_dim; ++dim) {
      read_offset += (read_pos[dim] % input_shape[dim]) * dim_addr_strides[dim];
    }

#if USE_TYPED_MEMSETMEMCPY
    std::copy(input_values + read_offset,
              input_values + read_offset + block_size, output_values);
#else
    std::memcpy(output_values, input_values + read_offset,
                block_size * sizeof(T));
#endif
    output_values += block_size;

    // Advance the read position.
    for (int32_t dim = last_sliced_dim; dim >= 0; --dim) {
      read_pos[dim] += strides[dim];
      if (dim == 0 || read_pos[dim] != dim_end[dim])
        break;
      read_pos[dim] = dim_begin[dim];
    }
  }
}

template <typename T>
void TransposeRank3(const int32_t* __restrict input_shape,
                    const T* __restrict input_values,
                    const int32_t* __restrict perm,
                    T* __restrict output_values) {
  BENCHMARK_TIMER("TransposeRank3");
  const int32_t in_strides[3] = {
      input_shape[1] * input_shape[2],
      input_shape[2],
      1,
  };
  const int32_t out_strides[3] = {in_strides[perm[0]], in_strides[perm[1]],
                                  in_strides[perm[2]]};
  const int32_t out_shape[3] = {input_shape[perm[0]], input_shape[perm[1]],
                                input_shape[perm[2]]};

  int32_t write_offset = 0;
  for (int32_t it0 = 0; it0 < out_shape[0]; ++it0) {
    const int32_t read_offset0 = it0 * out_strides[0];
    for (int32_t it1 = 0; it1 < out_shape[1]; ++it1) {
      const int32_t read_offset01 = read_offset0 + it1 * out_strides[1];
      for (int32_t it2 = 0; it2 < out_shape[2]; ++it2, ++write_offset) {
        const int32_t read_offset = read_offset01 + it2 * out_strides[2];
        output_values[write_offset] = input_values[read_offset];
      }
    }
  }
}

template <typename T>
void TransposeRank4(const int32_t* __restrict input_shape,
                    const T* __restrict input_values,
                    const int32_t* __restrict perm,
                    T* __restrict output_values) {
  BENCHMARK_TIMER("TransposeRank4");
  const int32_t in_strides[4] = {
      input_shape[1] * input_shape[2] * input_shape[3],
      input_shape[2] * input_shape[3],
      input_shape[3],
      1,
  };
  const int32_t out_strides[4] = {in_strides[perm[0]], in_strides[perm[1]],
                                  in_strides[perm[2]], in_strides[perm[3]]};
  const int32_t out_shape[4] = {input_shape[perm[0]], input_shape[perm[1]],
                                input_shape[perm[2]], input_shape[perm[3]]};

  int32_t write_offset = 0;
  for (int32_t it0 = 0; it0 < out_shape[0]; ++it0) {
    const int32_t read_offset0 = it0 * out_strides[0];
    for (int32_t it1 = 0; it1 < out_shape[1]; ++it1) {
      const int32_t read_offset01 = read_offset0 + it1 * out_strides[1];
      for (int32_t it2 = 0; it2 < out_shape[2]; ++it2) {
        const int32_t read_offset012 = read_offset01 + it2 * out_strides[2];
        for (int32_t it3 = 0; it3 < out_shape[3]; ++it3, ++write_offset) {
          const int32_t read_offset = read_offset012 + it3 * out_strides[3];
          output_values[write_offset] = input_values[read_offset];
        }
      }
    }
  }
}

template <typename T, typename TIdx, typename TDepth>
void OneHot(const int32_t input_rank,
            const int32_t* __restrict input_shape,
            const TIdx* __restrict input_values,
            const TDepth* __restrict depth,
            const T* __restrict on_value,
            const T* __restrict off_value,
            const int32_t axis,
            T* __restrict output_values) {
  BENCHMARK_TIMER("OneHot");
  const int32_t num_elements = ShapeSize(input_rank, input_shape);
  // We can assume axis >= 0 in this implementation.
  const int32_t prefix_dim_size = ShapeSize(axis, input_shape);
  const int32_t suffix_dim_size = num_elements / prefix_dim_size;
  int32_t write_offset = 0;
  for (int32_t i = 0; i < prefix_dim_size; ++i) {
    const int32_t read_offset_pre = i * suffix_dim_size;
    for (TDepth d = 0; d < *depth; ++d) {
      for (int32_t j = 0; j < suffix_dim_size; ++j, ++write_offset) {
        const int32_t read_offset = read_offset_pre + j;
        output_values[write_offset] =
            (input_values[read_offset] == d) ? *on_value : *off_value;
      }
    }
  }
}

template <typename T, typename TIdx, typename TDepth>
void OneHotLastDim(const int32_t input_rank,
                   const int32_t* __restrict input_shape,
                   const TIdx* __restrict input_values,
                   const TDepth* __restrict depth,
                   const T* __restrict on_value,
                   const T* __restrict off_value,
                   T* __restrict output_values) {
  BENCHMARK_TIMER("OneHotLastDim");
  const int32_t num_elements = ShapeSize(input_rank, input_shape);
  int32_t write_offset = 0;
  for (int32_t i = 0; i < num_elements; ++i) {
    for (TDepth d = 0; d < *depth; ++d, ++write_offset) {
      output_values[write_offset] =
          (input_values[i] == d) ? *on_value : *off_value;
    }
  }
}

// -----------------------------------------------------------------------------
// Simple unary ops
// -----------------------------------------------------------------------------

// We use macros instead of template functions with templated functors here
// because it's a lot less verbose and easier for the compiler to optimize.

#if USE_EIGEN

#define SIMPLE_UNARY_OP(OP_NAME, _, EXPR_EIGEN)                           \
  template <typename T>                                                   \
  void OP_NAME(const int32_t rank, const int32_t* __restrict input_shape, \
               const T* __restrict input_values,                          \
               T* __restrict output_values) {                             \
    BENCHMARK_TIMER(#OP_NAME);                                            \
    const int32_t size = ShapeSize(rank, input_shape);                    \
    auto values = ConstRowVectorMap<T>(input_values, size).array();       \
    auto output = RowVectorMap<T>(output_values, size).array();           \
    output = EXPR_EIGEN;                                                  \
  }

#else

#define SIMPLE_UNARY_OP(OP_NAME, EXPR, _)                                 \
  template <typename T>                                                   \
  void OP_NAME(const int32_t rank, const int32_t* __restrict input_shape, \
               const T* __restrict input_values,                          \
               T* __restrict output_values) {                             \
    BENCHMARK_TIMER(#OP_NAME);                                            \
    const int32_t size = ShapeSize(rank, input_shape);                    \
    for (int32_t i = 0; i < size; ++i) {                                  \
      const T value = input_values[i];                                    \
      output_values[i] = EXPR;                                            \
    }                                                                     \
  }

#endif

// Second macro param is value expression, third entry is Eigen vector
// expression.
SIMPLE_UNARY_OP(Abs, std::abs(value), values.abs())
SIMPLE_UNARY_OP(Acos, std::acos(value), values.acos())
SIMPLE_UNARY_OP(Asin, std::asin(value), values.asin())
SIMPLE_UNARY_OP(Atan, std::atan(value), values.atan())
SIMPLE_UNARY_OP(Cos, std::cos(value), values.cos())
SIMPLE_UNARY_OP(Cosh, std::cosh(value), values.cosh())
SIMPLE_UNARY_OP(Exp, std::exp(value), values.exp())
SIMPLE_UNARY_OP(Elu,
                value < 0 ? std::expm1(value) : value,
                // Use branchless version of Elu: min(ReLU, e^x - 1)
                values.max(0).min(values.exp() - 1))
SIMPLE_UNARY_OP(HardSigmoid,
                std::min(std::max((static_cast<T>(0.2) * value +
                                   static_cast<T>(0.5)),
                                  static_cast<T>(0)),
                         static_cast<T>(1)),
                (0.2 * values + 0.5).max(0).min(1))
SIMPLE_UNARY_OP(Log, std::log(value), values.log())
SIMPLE_UNARY_OP(Log1p, std::log1p(value), values.log1p())
SIMPLE_UNARY_OP(Neg, -value, -values)
SIMPLE_UNARY_OP(Reciprocal, static_cast<T>(1) / value, values.cwiseInverse())
SIMPLE_UNARY_OP(Relu, std::max(value, static_cast<T>(0)), values.max(0))
SIMPLE_UNARY_OP(Relu6,
                std::min(std::max(value, static_cast<T>(0)), static_cast<T>(6)),
                values.max(0).min(6))
SIMPLE_UNARY_OP(Rsqrt, static_cast<T>(1) / std::sqrt(value), values.rsqrt())
SIMPLE_UNARY_OP(Sigmoid,
                static_cast<T>(1) / (1 + std::exp(-value)),
                ((-values).exp() + 1).cwiseInverse())
SIMPLE_UNARY_OP(Sin, std::sin(value), values.sin())
SIMPLE_UNARY_OP(Sinh, std::sinh(value), values.sinh())
SIMPLE_UNARY_OP(Sqrt, std::sqrt(value), values.sqrt())
SIMPLE_UNARY_OP(Square, value* value, values.square())
SIMPLE_UNARY_OP(Tan, std::tan(value), values.tan())
SIMPLE_UNARY_OP(Tanh, std::tanh(value), values.tanh())

// -----------------------------------------------------------------------------
// Broadcasting binary ops
// -----------------------------------------------------------------------------

template <typename T, typename OP>
void OpNoBroadcast(const int32_t left_rank,
                   const int32_t* __restrict left_shape,
                   const T* __restrict left_values,
                   const int32_t right_rank,
                   const int32_t* __restrict right_shape,
                   const T* __restrict right_values,
                   T* __restrict output_values,
                   OP op) {
  BENCHMARK_TIMER(op.name, "NoBroadcast");
  const int32_t size = ShapeSize(left_rank, left_shape);
#if USE_EIGEN
  auto lhs = ConstRowVectorMap<T>(left_values, size).array();
  auto rhs = ConstRowVectorMap<T>(right_values, size).array();
  auto output = RowVectorMap<T>(output_values, size).array();
  op.apply(lhs, rhs, output);
#else
  for (int32_t i = 0; i < size; ++i) {
    output_values[i] = op(left_values[i], right_values[i]);
  }
#endif
}

template <typename T, typename OP>
void OpInnerBroadcast(int32_t left_rank,
                      const int32_t* __restrict left_shape,
                      const T* __restrict left_values,
                      int32_t right_rank,
                      const int32_t* __restrict right_shape,
                      const T* __restrict right_values,
                      T* __restrict output_values,
                      OP op) {
  BENCHMARK_TIMER(op.name, "InnerBroadcast");
  const int32_t output_size = ShapeSize(left_rank, left_shape);
  const int32_t inner_size = ShapeSize(right_rank, right_shape);
  const int32_t outer_size = output_size / inner_size;
#if USE_EIGEN
  if (inner_size == 1) {
    // Apply the same value to all elements.
    auto left = ConstMatrixMap<T>(left_values, inner_size, outer_size);
    auto output = MatrixMap<T>(output_values, inner_size, outer_size);
    op.apply(left.array(), right_values[0], output.array());
  } else {
    auto left = ConstMatrixMap<T>(left_values, inner_size, outer_size);
    auto right = ConstRowVectorMap<T>(right_values, inner_size);
    auto output = MatrixMap<T>(output_values, inner_size, outer_size);
    for (int32_t col = 0; col < outer_size; col++) {
      op.apply(left.col(col).array(), right.array(), output.col(col).array());
    }
  }
#else
  for (int32_t idx_out = 0; idx_out < outer_size; ++idx_out) {
    for (int32_t idx_in = 0; idx_in < inner_size; ++idx_in) {
      const int32_t offset = idx_out * inner_size + idx_in;
      output_values[offset] = op(left_values[offset], right_values[idx_in]);
    }
  }
#endif
}

// Increments indices according to a shape.
// Returns false if indices can't be incremented because they point to the last
// element.
//
// E.g. if shape is (2, 3) and indices is [1, 2], indices is incremented to [2,
// 0].
inline bool IncrementIndices(int32_t rank,
                             const int32_t* shape,
                             int32_t* indices) {
  int32_t i = rank - 1;
  while (i >= 0 && indices[i] == shape[i] - 1) {
    --i;
  }
  if (i < 0) {
    return false;
  }
  indices[i] += 1;
  for (++i; i < rank; ++i) {
    indices[i] = 0;
  }
  return true;
}

// Returns the offset in a values array given its shape and indices.
// E.g. if the shape is (2, 3) and indices are [1, 2] the offset is 1*3 + 2.
inline int32_t Offset(int32_t rank,
                      const int32_t* shape,
                      const int32_t* indices) {
  int32_t offset = 0;
  int32_t mul = 1;
  for (int32_t i = rank - 1; i >= 0; --i) {
    offset += mul * indices[i];
    mul *= shape[i];
  }
  return offset;
}

// Like Offset() but with broadcasting.
// E.g. if the input_shape is (2, 1, 3) and indices are [1, 2, 2] the offset is
// 1*1*3 + 2*0 + 2.
// The indices_rank can be greater than the input_rank and then the first
// indices_rank - input_rank indices are ignored.
// E.g. if the input_shape is (4) and indices are [2, 3, 1] the offset is 1.
inline int32_t BroadcastOffset(int32_t input_rank,
                               const int32_t* input_shape,
                               int32_t indices_rank,
                               const int32_t* indices) {
  int32_t offset = 0;
  int32_t mul = 1;
  for (int32_t i = input_rank - 1; i >= 0; --i) {
    int32_t index =
        input_shape[i] == 1 ? 0 : indices[i + indices_rank - input_rank];
    offset += mul * index;
    mul *= input_shape[i];
  }
  return offset;
}

template <typename T, typename OP>
void OpGenericBroadcast(int32_t left_rank,
                        const int32_t* __restrict left_shape,
                        const T* __restrict left_values,
                        int32_t right_rank,
                        const int32_t* __restrict right_shape,
                        const T* __restrict right_values,
                        T* __restrict output_values,
                        OP op) {
  BENCHMARK_TIMER(op.name, "GenericBroadcast");
  const int32_t output_rank = std::max(left_rank, right_rank);
  const int32_t kMaxRank = 8;
  assert(output_rank <= kMaxRank);

  int32_t output_shape[kMaxRank];
  for (int32_t i = 0; i < output_rank; ++i) {
    int32_t left_i = i - output_rank + left_rank;
    int32_t right_i = i - output_rank + right_rank;
    output_shape[i] = std::max(left_i >= 0 ? left_shape[left_i] : 0,
                               right_i >= 0 ? right_shape[right_i] : 0);
  }

  int32_t output_indices[kMaxRank]{};
  do {
    output_values[Offset(output_rank, output_shape, output_indices)] =
        op(left_values[BroadcastOffset(left_rank, left_shape, output_rank,
                                       output_indices)],
           right_values[BroadcastOffset(right_rank, right_shape, output_rank,
                                        output_indices)]);
  } while (IncrementIndices(output_rank, output_shape, output_indices));
}

#define BROADCAST_BINARY_OP(OP_NAME, EXPR, EXPR_EIGEN)                         \
  template <typename T>                                                        \
  struct Op##OP_NAME {                                                         \
    const char* name = #OP_NAME;                                               \
    T operator()(const T lhs, const T rhs) { return EXPR; }                    \
    template <typename X, typename Y, typename Z>                              \
    void apply(const X& lhs, const Y& rhs, Z out) {                            \
      out = EXPR_EIGEN;                                                        \
    }                                                                          \
  };                                                                           \
  template <typename T>                                                        \
  void OP_NAME##NoBroadcast(                                                   \
      const int32_t left_rank, const int32_t* __restrict left_shape,           \
      const T* __restrict left_values, const int32_t right_rank,               \
      const int32_t* __restrict right_shape, const T* __restrict right_values, \
      T* __restrict output_values) {                                           \
    OpNoBroadcast(left_rank, left_shape, left_values, right_rank, right_shape, \
                  right_values, output_values, Op##OP_NAME<T>());              \
  }                                                                            \
  template <typename T>                                                        \
  void OP_NAME##InnerBroadcast(                                                \
      const int32_t left_rank, const int32_t* __restrict left_shape,           \
      const T* __restrict left_values, const int32_t right_rank,               \
      const int32_t* __restrict right_shape, const T* __restrict right_values, \
      T* __restrict output_values) {                                           \
    OpInnerBroadcast(left_rank, left_shape, left_values, right_rank,           \
                     right_shape, right_values, output_values,                 \
                     Op##OP_NAME<T>());                                        \
  }                                                                            \
  template <typename T>                                                        \
  void OP_NAME(const int32_t left_rank, const int32_t* __restrict left_shape,  \
               const T* __restrict left_values, const int32_t right_rank,      \
               const int32_t* __restrict right_shape,                          \
               const T* __restrict right_values,                               \
               T* __restrict output_values) {                                  \
    OpGenericBroadcast(left_rank, left_shape, left_values, right_rank,         \
                       right_shape, right_values, output_values,               \
                       Op##OP_NAME<T>());                                      \
  }

// Second macro param is value expression, third entry is Eigen vector
// expression.
BROADCAST_BINARY_OP(Add, lhs + rhs, lhs + rhs)
BROADCAST_BINARY_OP(Maximum, std::max(lhs, rhs), lhs.max(rhs))
BROADCAST_BINARY_OP(Minimum, std::min(lhs, rhs), lhs.min(rhs))
BROADCAST_BINARY_OP(Mul, lhs* rhs, lhs* rhs)
BROADCAST_BINARY_OP(Sub, lhs - rhs, lhs - rhs)
BROADCAST_BINARY_OP(SquaredDifference,
                    (lhs - rhs) * (lhs - rhs),
                    (lhs - rhs).square())

// -----------------------------------------------------------------------------
// Reduce ops
// -----------------------------------------------------------------------------

// We use macros instead of template functions with templated functors here
// because it's a lot less verbose and easier for the compiler to optimize.
#define REDUCE_OP(OP_NAME, DEFAULT_VALUE, UPDATE_EXPR, RESULT_EXPR)           \
  template <typename T, typename Tidx>                                        \
  void OP_NAME##InnerReduce(                                                  \
      int32_t input_rank, const int32_t* __restrict input_shape,              \
      const T* __restrict input_values, int32_t index_tensor_rank,            \
      const int32_t* __restrict index_shape,                                  \
      const Tidx* __restrict index_values, T* __restrict output_values) {     \
    BENCHMARK_TIMER(#OP_NAME, "InnerReduce");                                 \
    const int32_t inner_size =                                                \
        GetReduceInnerSize(input_rank, input_shape, index_tensor_rank,        \
                           index_shape, index_values);                        \
    const int32_t input_size = ShapeSize(input_rank, input_shape);            \
    const int32_t outer_size = input_size / inner_size;                       \
    for (int32_t idx_out = 0; idx_out < outer_size; ++idx_out) {              \
      T value = DEFAULT_VALUE;                                                \
      for (int32_t idx_in = 0; idx_in < inner_size; ++idx_in) {               \
        const T prev = value;                                                 \
        const T next = input_values[idx_out * inner_size + idx_in];           \
        value = UPDATE_EXPR;                                                  \
      }                                                                       \
      const T count = inner_size;                                             \
      /* Used by mean reduce. */                                              \
      (void)sizeof(count);                                                    \
      output_values[idx_out] = RESULT_EXPR;                                   \
    }                                                                         \
  }                                                                           \
  template <typename T, typename Tidx>                                        \
  void OP_NAME##GenericReduceRank2(                                           \
      int32_t input_rank, const int32_t* __restrict input_shape,              \
      const T* __restrict input_values, int32_t index_tensor_rank,            \
      const int32_t* __restrict index_shape,                                  \
      const Tidx* __restrict index_values, T* __restrict output_values) {     \
    assert(input_rank == 2);                                                  \
    assert(index_tensor_rank <= 1);                                           \
    BENCHMARK_TIMER(#OP_NAME, "GenericReduceRank2");                          \
    const int32_t output_size = input_shape[1];                               \
    std::fill_n(output_values, output_size, DEFAULT_VALUE);                   \
    for (int32_t dim0 = 0; dim0 < input_shape[0]; ++dim0) {                   \
      for (int32_t dim1 = 0; dim1 < input_shape[1]; ++dim1, ++input_values) { \
        T* out_ptr = output_values + dim1;                                    \
        const T prev = *out_ptr;                                              \
        const T next = *input_values;                                         \
        *out_ptr = UPDATE_EXPR;                                               \
      }                                                                       \
    }                                                                         \
    const T count = input_shape[0];                                           \
    /* Used by mean reduce. */                                                \
    (void)sizeof(count);                                                      \
    for (int32_t i = 0; i < output_size; ++i) {                               \
      const T value = output_values[i];                                       \
      output_values[i] = RESULT_EXPR;                                         \
    }                                                                         \
  }                                                                           \
  template <typename T, typename Tidx>                                        \
  void OP_NAME##GenericReduceRank3(                                           \
      int32_t input_rank, const int32_t* __restrict input_shape,              \
      const T* __restrict input_values, int32_t index_tensor_rank,            \
      const int32_t* __restrict index_shape,                                  \
      const Tidx* __restrict index_values, T* __restrict output_values) {     \
    assert(input_rank == 3);                                                  \
    assert(index_tensor_rank <= 1);                                           \
    BENCHMARK_TIMER(#OP_NAME, "GenericReduceRank3");                          \
    int32_t out_shape[3] = {input_shape[0], input_shape[1], input_shape[2]};  \
    bool reduce_mask[3] = {false, false, false};                              \
    const int32_t num_indices = index_tensor_rank > 0 ? index_shape[0] : 1;   \
    for (int32_t i = 0; i < num_indices; ++i) {                               \
      reduce_mask[index_values[i]] = true;                                    \
      out_shape[index_values[i]] = 1;                                         \
    }                                                                         \
    const int32_t out_strides[3] = {                                          \
        reduce_mask[0] ? 0 : out_shape[1] * out_shape[2],                     \
        reduce_mask[1] ? 0 : out_shape[2],                                    \
        reduce_mask[2] ? 0 : 1,                                               \
    };                                                                        \
    const int32_t output_size = ShapeSize(input_rank, out_shape);             \
    std::fill_n(output_values, output_size, DEFAULT_VALUE);                   \
    for (int32_t dim0 = 0; dim0 < input_shape[0]; ++dim0) {                   \
      for (int32_t dim1 = 0; dim1 < input_shape[1]; ++dim1) {                 \
        for (int32_t dim2 = 0; dim2 < input_shape[2];                         \
             ++dim2, ++input_values) {                                        \
          T* out_ptr = output_values + out_strides[0] * dim0 +                \
                       out_strides[1] * dim1 + out_strides[2] * dim2;         \
          const T prev = *out_ptr;                                            \
          const T next = *input_values;                                       \
          *out_ptr = UPDATE_EXPR;                                             \
        }                                                                     \
      }                                                                       \
    }                                                                         \
    const T count = (reduce_mask[0] ? input_shape[0] : 1) *                   \
                    (reduce_mask[1] ? input_shape[1] : 1) *                   \
                    (reduce_mask[2] ? input_shape[2] : 1);                    \
    /* Used by mean reduce. */                                                \
    (void)sizeof(count);                                                      \
    for (int32_t i = 0; i < output_size; ++i) {                               \
      const T value = output_values[i];                                       \
      output_values[i] = RESULT_EXPR;                                         \
    }                                                                         \
  }                                                                           \
  template <typename T, typename Tidx>                                        \
  void OP_NAME##GenericReduceRank4(                                           \
      int32_t input_rank, const int32_t* __restrict input_shape,              \
      const T* __restrict input_values, int32_t index_tensor_rank,            \
      const int32_t* __restrict index_shape,                                  \
      const Tidx* __restrict index_values, T* __restrict output_values) {     \
    assert(input_rank == 4);                                                  \
    assert(index_tensor_rank <= 1);                                           \
    BENCHMARK_TIMER(#OP_NAME, "GenericReduceRank4");                          \
    int32_t out_shape[4] = {input_shape[0], input_shape[1], input_shape[2],   \
                            input_shape[3]};                                  \
    bool reduce_mask[4] = {false, false, false, false};                       \
    const int32_t num_indices = index_tensor_rank > 0 ? index_shape[0] : 1;   \
    for (int32_t i = 0; i < num_indices; ++i) {                               \
      reduce_mask[index_values[i]] = true;                                    \
      out_shape[index_values[i]] = 1;                                         \
    }                                                                         \
    const int32_t out_strides[4] = {                                          \
        reduce_mask[0] ? 0 : out_shape[1] * out_shape[2] * out_shape[3],      \
        reduce_mask[1] ? 0 : out_shape[2] * out_shape[3],                     \
        reduce_mask[2] ? 0 : out_shape[3],                                    \
        reduce_mask[3] ? 0 : 1,                                               \
    };                                                                        \
    const int32_t output_size = ShapeSize(input_rank, out_shape);             \
    std::fill_n(output_values, output_size, DEFAULT_VALUE);                   \
    for (int32_t dim0 = 0; dim0 < input_shape[0]; ++dim0) {                   \
      for (int32_t dim1 = 0; dim1 < input_shape[1]; ++dim1) {                 \
        for (int32_t dim2 = 0; dim2 < input_shape[2]; ++dim2) {               \
          for (int32_t dim3 = 0; dim3 < input_shape[3];                       \
               ++dim3, ++input_values) {                                      \
            T* out_ptr = output_values + out_strides[0] * dim0 +              \
                         out_strides[1] * dim1 + out_strides[2] * dim2 +      \
                         out_strides[3] * dim3;                               \
            const T prev = *out_ptr;                                          \
            const T next = *input_values;                                     \
            *out_ptr = UPDATE_EXPR;                                           \
          }                                                                   \
        }                                                                     \
      }                                                                       \
    }                                                                         \
    const T count = (reduce_mask[0] ? input_shape[0] : 1) *                   \
                    (reduce_mask[1] ? input_shape[1] : 1) *                   \
                    (reduce_mask[2] ? input_shape[2] : 1) *                   \
                    (reduce_mask[3] ? input_shape[3] : 1);                    \
    /* Used by mean reduce. */                                                \
    (void)sizeof(count);                                                      \
    for (int32_t i = 0; i < output_size; ++i) {                               \
      const T value = output_values[i];                                       \
      output_values[i] = RESULT_EXPR;                                         \
    }                                                                         \
  }                                                                           \
  template <typename T, typename Tidx>                                        \
  void OP_NAME##GenericReduceRank5(                                           \
      int32_t input_rank, const int32_t* __restrict input_shape,              \
      const T* __restrict input_values, int32_t index_tensor_rank,            \
      const int32_t* __restrict index_shape,                                  \
      const Tidx* __restrict index_values, T* __restrict output_values) {     \
    assert(input_rank == 5);                                                  \
    assert(index_tensor_rank <= 1);                                           \
    BENCHMARK_TIMER(#OP_NAME, "GenericReduceRank5");                          \
    int32_t out_shape[5] = {input_shape[0], input_shape[1], input_shape[2],   \
                            input_shape[3], input_shape[4]};                  \
    /* If true, reduce the input across that dimension. */                    \
    bool reduce_mask[5] = {false, false, false, false, false};                \
    const int32_t num_indices = index_tensor_rank > 0 ? index_shape[0] : 1;   \
    for (int32_t i = 0; i < num_indices; ++i) {                               \
      reduce_mask[index_values[i]] = true;                                    \
      out_shape[index_values[i]] = 1;                                         \
    }                                                                         \
    const int32_t out_strides[5] = {                                          \
        reduce_mask[0]                                                        \
            ? 0                                                               \
            : out_shape[1] * out_shape[2] * out_shape[3] * out_shape[4],      \
        reduce_mask[1] ? 0 : out_shape[2] * out_shape[3] * out_shape[4],      \
        reduce_mask[2] ? 0 : out_shape[3] * out_shape[4],                     \
        reduce_mask[3] ? 0 : out_shape[4],                                    \
        reduce_mask[4] ? 0 : 1,                                               \
    };                                                                        \
    const int32_t output_size = ShapeSize(input_rank, out_shape);             \
    std::fill_n(output_values, output_size, DEFAULT_VALUE);                   \
    for (int32_t dim0 = 0; dim0 < input_shape[0]; ++dim0) {                   \
      for (int32_t dim1 = 0; dim1 < input_shape[1]; ++dim1) {                 \
        for (int32_t dim2 = 0; dim2 < input_shape[2]; ++dim2) {               \
          for (int32_t dim3 = 0; dim3 < input_shape[3]; ++dim3) {             \
            for (int32_t dim4 = 0; dim4 < input_shape[4];                     \
                 ++dim4, ++input_values) {                                    \
              T* out_ptr = output_values + out_strides[0] * dim0 +            \
                           out_strides[1] * dim1 + out_strides[2] * dim2 +    \
                           out_strides[3] * dim3 + out_strides[4] * dim4;     \
              const T prev = *out_ptr;                                        \
              const T next = *input_values;                                   \
              *out_ptr = UPDATE_EXPR;                                         \
            }                                                                 \
          }                                                                   \
        }                                                                     \
      }                                                                       \
    }                                                                         \
    const T count = (reduce_mask[0] ? input_shape[0] : 1) *                   \
                    (reduce_mask[1] ? input_shape[1] : 1) *                   \
                    (reduce_mask[2] ? input_shape[2] : 1) *                   \
                    (reduce_mask[3] ? input_shape[3] : 1) *                   \
                    (reduce_mask[4] ? input_shape[4] : 1);                    \
    /* Used by mean reduce. */                                                \
    (void)sizeof(count);                                                      \
    for (int32_t i = 0; i < output_size; ++i) {                               \
      const T value = output_values[i];                                       \
      output_values[i] = RESULT_EXPR;                                         \
    }                                                                         \
  }

REDUCE_OP(Max, std::numeric_limits<T>::lowest(), std::max(prev, next), value)
REDUCE_OP(Min, std::numeric_limits<T>::infinity(), std::min(prev, next), value)
REDUCE_OP(Sum, 0, prev + next, value)
REDUCE_OP(Mean, 0, prev + next, value / count)

// -----------------------------------------------------------------------------
// Dequantize ops
// -----------------------------------------------------------------------------

template <typename T>
void DequantizeMinCombined(const int32_t rank,
                           const int32_t* __restrict input_shape,
                           const T* __restrict input_values,
                           const float* __restrict min_range,
                           const float* __restrict max_range,
                           float* __restrict output_values) {
  BENCHMARK_TIMER("DequantizeMinCombined");
  const int32_t size = ShapeSize(rank, input_shape);
  const float offset =
      std::is_signed<T>::value
          ? (static_cast<float>(std::numeric_limits<T>::max()) -
             std::numeric_limits<T>::min() + 1) /
                2.0f
          : 0.0f;
  const float range_scale = (max_range[0] - min_range[0]) /
                            (static_cast<float>(std::numeric_limits<T>::max()) -
                             std::numeric_limits<T>::min());
  for (int32_t i = 0; i < size; ++i) {
    output_values[i] =
        ((static_cast<int32_t>(input_values[i]) + offset) * range_scale) +
        min_range[0];
  }
}

template <typename T>
void DequantizeMinFirst(const int32_t rank,
                        const int32_t* __restrict input_shape,
                        const T* __restrict input_values,
                        const float* __restrict min_range,
                        const float* __restrict max_range,
                        float* __restrict output_values) {
  BENCHMARK_TIMER("DequantizeMinFirst");
  const int32_t size = ShapeSize(rank, input_shape);
  const float range_scale = (max_range[0] - min_range[0]) /
                            (static_cast<float>(std::numeric_limits<T>::max()) -
                             std::numeric_limits<T>::min());
  const float range_min_rounded =
      (max_range[0] == min_range[0]
           ? min_range[0]
           : std::round(min_range[0] / range_scale) * range_scale);
  for (int32_t i = 0; i < size; ++i) {
    output_values[i] = ((static_cast<int32_t>(input_values[i]) -
                         std::numeric_limits<T>::min()) *
                        range_scale) +
                       range_min_rounded;
  }
}

// -----------------------------------------------------------------------------
// AddN op
// -----------------------------------------------------------------------------

template <typename T>
void AddN(const int32_t rank,
          const int32_t* __restrict shape,
          std::initializer_list<const T* __restrict> input_values,
          T* __restrict output_values) {
  BENCHMARK_TIMER("AddN");
  const int32_t size = ShapeSize(rank, shape);
#if USE_EIGEN
  auto output = RowVectorMap<T>(output_values, size).array();
  std::fill_n(output_values, size, 0);
  for (const auto input_value : input_values) {
    output += ConstRowVectorMap<T>(input_value, size).array();
  }
#else
  for (int32_t i = 0; i < size; ++i) {
    T output_value = 0;
    for (auto input_value : input_values) {
      output_value += input_value[i];
    }
    output_values[i] = output_value;
  }
#endif
}

// -----------------------------------------------------------------------------
// CONSTANTS
// Note that for now, endianness of the target machine needs to match that of
// the one training was performed on.
// -----------------------------------------------------------------------------
const int32_t dnn_hiddenlayer_0_bias__0__cf__0_shape[1] = {20};
const union {
  uint8_t bytes[80];
  float values[20];
} dnn_hiddenlayer_0_bias__0__cf__0 = {{
    0x6d, 0x69, 0x23, 0xbe, 0x8f, 0xde, 0x7f, 0x3f, 0xc2, 0x0a, 0xb8, 0xbf,
    0xcf, 0x0c, 0x23, 0x3e, 0x1c, 0xf8, 0x8c, 0xbf, 0x21, 0xb3, 0xf9, 0xbd,
    0x6d, 0xae, 0xce, 0xbf, 0x6e, 0x72, 0xac, 0x3f, 0xcd, 0x1b, 0xba, 0x3f,
    0x30, 0x1e, 0xdb, 0x3f, 0xdc, 0xb4, 0xbd, 0x3f, 0x99, 0x41, 0x12, 0x3f,
    0x8f, 0x44, 0x25, 0xbf, 0x73, 0xf5, 0x0f, 0xbe, 0x56, 0x2a, 0xa6, 0x3f,
    0xc1, 0xad, 0x0a, 0xc0, 0x96, 0x6d, 0xa2, 0xbd, 0xde, 0xce, 0xec, 0xbf,
    0xd0, 0x44, 0x0e, 0xc0, 0x78, 0xef, 0xa6, 0x3f,
}};
const int32_t dnn_hiddenlayer_0_kernel__1__cf__1_shape[2] = {323, 20};
const union {
  uint8_t bytes[25840];
  float values[6460];
} dnn_hiddenlayer_0_kernel__1__cf__1 = {{
    0x40, 0x7e, 0x08, 0xbe, 0x00, 0x00, 0x00, 0x00, 0x40, 0xbd, 0xcc, 0xbe,
    0x00, 0x7e, 0x08, 0x3e, 0x40, 0x7e, 0x08, 0xbe, 0x40, 0xbd, 0xcc, 0xbe,
    0x40, 0x7e, 0x08, 0xbe, 0x40, 0xbd, 0x4c, 0x3e, 0x20, 0xbd, 0xcc, 0x3e,
    0x40, 0xbd, 0x4c, 0x3e, 0x80, 0x7e, 0x88, 0xbd, 0x40, 0x7e, 0x08, 0xbe,
    0xc0, 0xdc, 0xee, 0xbe, 0x40, 0xbd, 0x4c, 0xbe, 0xa0, 0x9d, 0xaa, 0x3e,
    0x40, 0x7e, 0x08, 0xbe, 0x40, 0x7e, 0x08, 0xbe, 0x40, 0xbd, 0x4c, 0xbe,
    0x40, 0xbd, 0x4c, 0xbe, 0x00, 0x7e, 0x08, 0x3e, 0x40, 0x7e, 0x08, 0xbe,
    0x00, 0x7e, 0x88, 0x3d, 0xc0, 0xdc, 0xee, 0xbe, 0x00, 0x7e, 0x08, 0x3e,
    0x80, 0x7e, 0x88, 0xbd, 0x20, 0x7e, 0x88, 0xbe, 0x00, 0x00, 0x00, 0x00,
    0x40, 0xbd, 0x4c, 0x3e, 0xa0, 0x9d, 0xaa, 0x3e, 0x00, 0x00, 0x00, 0x00,
    0x80, 0x7e, 0x88, 0xbd, 0x80, 0x7e, 0x88, 0xbd, 0x20, 0x7e, 0x08, 0xbf,
    0x40, 0x7e, 0x08, 0xbe, 0xc0, 0xdc, 0xee, 0x3e, 0x80, 0x7e, 0x88, 0xbd,
    0x40, 0xbd, 0x4c, 0xbe, 0x00, 0x7e, 0x88, 0x3d, 0x20, 0x7e, 0x88, 0xbe,
    0x20, 0x7e, 0x88, 0x3e, 0x00, 0x7e, 0x88, 0x3d, 0x00, 0x00, 0x00, 0x00,
    0x00, 0x7e, 0x88, 0x3d, 0x40, 0x7e, 0x08, 0xbe, 0x80, 0x7e, 0x88, 0xbd,
    0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x7e, 0x08, 0x3e,
    0x80, 0x7e, 0x88, 0xbd, 0x40, 0x7e, 0x08, 0xbe, 0x00, 0x7e, 0x88, 0x3d,
    0x40, 0x7e, 0x08, 0xbe, 0x00, 0x7e, 0x88, 0x3d, 0x00, 0x7e, 0x88, 0x3d,
    0x80, 0x7e, 0x88, 0xbd, 0x00, 0x7e, 0x88, 0x3d, 0x00, 0x7e, 0x88, 0x3d,
    0x00, 0x00, 0x00, 0x00, 0x00, 0x7e, 0x88, 0x3d, 0x00, 0x7e, 0x88, 0x3d,
    0x40, 0xbd, 0x4c, 0xbe, 0x00, 0x00, 0x00, 0x00, 0x00, 0x7e, 0x08, 0x3e,
    0xc0, 0xdc, 0xee, 0xbe, 0x00, 0x00, 0x00, 0x00, 0x40, 0xbd, 0x4c, 0xbe,
    0x40, 0xbd, 0x4c, 0x3e, 0x00, 0x00, 0x00, 0x00, 0x40, 0x7e, 0x08, 0xbe,
    0x00, 0x00, 0x00, 0x00, 0xc0, 0x9d, 0xaa, 0xbe, 0x80, 0x7e, 0x88, 0xbd,
    0x00, 0x00, 0x00, 0x00, 0x40, 0xbd, 0x4c, 0xbe, 0x80, 0x7e, 0x88, 0xbd,
    0x00, 0x00, 0x00, 0x00, 0x40, 0x7e, 0x08, 0xbe, 0x80, 0x7e, 0x88, 0xbd,
    0x00, 0x7e, 0x08, 0x3e, 0x40, 0x7e, 0x08, 0xbe, 0x80, 0x7e, 0x88, 0xbd,
    0x80, 0xec, 0x7f, 0x3f, 0x50, 0x35, 0xc4, 0xbf, 0x20, 0x7e, 0x88, 0x3e,
    0x80, 0xec, 0x7f, 0xbf, 0x40, 0xbd, 0x4c, 0xbe, 0x18, 0x45, 0xd5, 0xbf,
    0xc8, 0x15, 0xa2, 0x3f, 0x50, 0x35, 0xc4, 0x3f, 0x30, 0xbd, 0xcc, 0x3f,
    0x88, 0x25, 0xb3, 0x3f, 0xe0, 0x8d, 0x19, 0x3f, 0xb0, 0x9d, 0x2a, 0xbf,
    0x80, 0x7e, 0x88, 0xbd, 0xe8, 0x8d, 0x99, 0x3f, 0x14, 0xc2, 0x0c, 0xc0,
    0x40, 0x7e, 0x08, 0xbe, 0xf8, 0xcc, 0xdd, 0xbf, 0x14, 0xc2, 0x0c, 0xc0,
    0xe8, 0x8d, 0x99, 0x3f, 0x40, 0x7e, 0x08, 0xbe, 0x00, 0x00, 0x00, 0x00,
    0x00, 0x00, 0x00, 0x00, 0x00, 0x7e, 0x88, 0x3d, 0x00, 0x00, 0x00, 0x00,
    0xc0, 0x9d, 0xaa, 0xbe, 0x00, 0x7e, 0x88, 0x3d, 0x00, 0x7e, 0x88, 0x3d,
    0x20, 0x7e, 0x88, 0x3e, 0x40, 0x7e, 0x08, 0xbe, 0x00, 0x00, 0x00, 0x00,
    0x20, 0x7e, 0x88, 0xbe, 0xc0, 0x9d, 0xaa, 0xbe, 0x40, 0xbd, 0x4c, 0xbe,
    0x00, 0x7e, 0x08, 0x3e, 0x40, 0xbd, 0x4c, 0xbe, 0x40, 0x7e, 0x08, 0xbe,
    0x00, 0x7e, 0x88, 0x3d, 0x40, 0x7e, 0x08, 0xbe, 0x00, 0x7e, 0x88, 0x3d,
    0x20, 0x7e, 0x88, 0xbe, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
    0x00, 0x7e, 0x88, 0x3d, 0x00, 0x00, 0x00, 0x00, 0x40, 0xbd, 0x4c, 0xbe,
    0x00, 0x00, 0x00, 0x00, 0x00, 0x7e, 0x08, 0x3e, 0x00, 0x7e, 0x88, 0x3d,
    0x80, 0x7e, 0x88, 0xbd, 0x00, 0x00, 0x00, 0x00, 0x40, 0x7e, 0x08, 0xbe,
    0x40, 0xbd, 0xcc, 0xbe, 0x00, 0x00, 0x00, 0x00, 0x00, 0x7e, 0x08, 0x3e,
    0x40, 0x7e, 0x08, 0xbe, 0x80, 0x7e, 0x88, 0xbd, 0x00, 0x7e, 0x08, 0x3e,
    0x80, 0x7e, 0x88, 0xbd, 0x00, 0x00, 0x00, 0x00, 0x00, 0x7e, 0x08, 0x3e,
    0x80, 0xec, 0x7f, 0x3f, 0x24, 0x01, 0x51, 0x40, 0xe0, 0x8d, 0x19, 0x3f,
    0xa0, 0x9d, 0x2a, 0x3f, 0x40, 0xbd, 0x4c, 0x3e, 0x70, 0xad, 0x3b, 0xbf,
    0xc0, 0x9d, 0xaa, 0xbe, 0x8d, 0x25, 0xb3, 0xc0, 0x40, 0xbd, 0x4c, 0x3e,
    0x88, 0x25, 0xb3, 0x3f, 0xc0, 0xdc, 0xee, 0xbe, 0x20, 0xbd, 0xcc, 0x3e,
    0x14, 0xc2, 0x0c, 0xc0, 0x37, 0xac, 0x4b, 0xc1, 0xc8, 0x15, 0xa2, 0x3f,
    0x00, 0x00, 0x00, 0x00, 0x50, 0x35, 0xc4, 0x3f, 0xc8, 0x15, 0xa2, 0x3f,
    0xba, 0x59, 0xa6, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x7e, 0x88, 0x3d,
    0x80, 0x7e, 0x88, 0xbd, 0x40, 0xbd, 0xcc, 0xbe, 0x80, 0x7e, 0x88, 0xbd,
    0x40, 0x7e, 0x08, 0xbe, 0x00, 0x7e, 0x88, 0x3d, 0x80, 0x7e, 0x88, 0xbd,
    0x80, 0x7e, 0x88, 0xbd, 0x80, 0x7e, 0x88, 0xbd, 0xc0, 0x9d, 0xaa, 0xbe,
    0x70, 0xad, 0x3b, 0xbf, 0x00, 0x00, 0x00, 0x00, 0x80, 0x7e, 0x88, 0xbd,
    0x80, 0x7e, 0x88, 0xbd, 0x00, 0x00, 0x00, 0x00, 0x00, 0x7e, 0x88, 0x3d,
    0x00, 0x7e, 0x88, 0x3d, 0x00, 0x7e, 0x88, 0x3d, 0x00, 0x7e, 0x88, 0x3d,
    0x40, 0xbd, 0x4c, 0xbe, 0xb0, 0xdc, 0x6e, 0x3f, 0x90, 0x25, 0xb3, 0xbf,
    0x40, 0xbd, 0x4c, 0x3e, 0x28, 0x7e, 0x88, 0xbf, 0x00, 0x00, 0x00, 0x00,
    0x18, 0x45, 0xd5, 0xbf, 0xa8, 0x9d, 0xaa, 0x3f, 0x50, 0x35, 0xc4, 0x3f,
    0x30, 0xbd, 0xcc, 0x3f, 0x30, 0xbd, 0xcc, 0x3f, 0xa0, 0x9d, 0x2a, 0x3f,
    0xb0, 0x9d, 0x2a, 0xbf, 0x20, 0x7e, 0x88, 0xbe, 0xa8, 0x9d, 0xaa, 0x3f,
    0x04, 0x06, 0x11, 0xc0, 0x80, 0x7e, 0x88, 0xbd, 0xc0, 0xdc, 0xee, 0xbf,
    0xf8, 0x49, 0x15, 0xc0, 0xa8, 0x9d, 0xaa, 0x3f, 0x80, 0x7e, 0x88, 0xbd,
    0x40, 0x7e, 0x08, 0xbe, 0x80, 0x7e, 0x88, 0xbd, 0x00, 0x7e, 0x08, 0x3e,
    0x40, 0xbd, 0x4c, 0x3e, 0x20, 0x7e, 0x88, 0xbe, 0x00, 0x7e, 0x88, 0x3d,
    0x80, 0x7e, 0x88, 0xbd, 0x00, 0x7e, 0x08, 0x3e, 0x80, 0x7e, 0x88, 0xbd,
    0x00, 0x7e, 0x88, 0x3d, 0x40, 0xbd, 0x4c, 0xbe, 0x80, 0x7e, 0x88, 0xbd,
    0x00, 0x00, 0x00, 0x00, 0x00, 0x7e, 0x08, 0x3e, 0x40, 0xbd, 0x4c, 0x3e,
    0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x80, 0x7e, 0x88, 0xbd,
    0x40, 0x7e, 0x08, 0xbe, 0x00, 0x00, 0x00, 0x00, 0x40, 0xbd, 0x4c, 0xbe,
    0x80, 0x7e, 0x88, 0xbd, 0x00, 0x7e, 0x88, 0x3d, 0x40, 0xbd, 0x4c, 0x3e,
    0xc0, 0x9d, 0xaa, 0xbe, 0x00, 0x7e, 0x08, 0x3e, 0x00, 0x7e, 0x88, 0x3d,
    0x00, 0x7e, 0x08, 0x3e, 0x80, 0x7e, 0x88, 0xbd, 0x00, 0x7e, 0x88, 0x3d,
    0x20, 0x7e, 0x88, 0xbe, 0x80, 0x7e, 0x88, 0xbd, 0x00, 0x7e, 0x88, 0x3d,
    0x20, 0x7e, 0x88, 0x3e, 0x00, 0x7e, 0x08, 0x3e, 0x40, 0x7e, 0x08, 0xbe,
    0x00, 0x7e, 0x08, 0x3e, 0x40, 0x7e, 0x08, 0xbe, 0x80, 0x7e, 0x88, 0xbd,
    0x00, 0x00, 0x00, 0x00, 0x40, 0xbd, 0x4c, 0x3e, 0x50, 0x35, 0x44, 0x40,
    0xf0, 0x8d, 0x19, 0xbf, 0x20, 0xbd, 0xcc, 0x3e, 0x80, 0x7e, 0x88, 0xbd,
    0x00, 0x06, 0x91, 0x3f, 0xc0, 0xdc, 0xee, 0xbe, 0x24, 0x01, 0x51, 0xc0,
    0xe8, 0x8d, 0x99, 0xbf, 0x70, 0xad, 0x3b, 0x3f, 0xb0, 0xdc, 0x6e, 0x3f,
    0xc0, 0x9d, 0xaa, 0xbe, 0xf8, 0xcc, 0xdd, 0xbf, 0xa6, 0x42, 0xf5, 0xc0,
    0xe0, 0x8d, 0x19, 0x3f, 0x00, 0x00, 0x00, 0x00, 0x80, 0xec, 0x7f, 0x3f,
    0x20, 0x7e, 0x08, 0x3f, 0x80, 0xec, 0xff, 0xbf, 0x80, 0x7e, 0x88, 0xbd,
    0x00, 0x7e, 0x88, 0x3d, 0x40, 0xbd, 0x4c, 0x3e, 0x40, 0xbd, 0x4c, 0xbe,
    0x40, 0xbd, 0x4c, 0xbe, 0x20, 0x7e, 0x88, 0xbe, 0x80, 0x7e, 0x88, 0xbd,
    0x00, 0x7e, 0x88, 0x3d, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
    0x80, 0x7e, 0x88, 0xbd, 0x30, 0xbd, 0x4c, 0xbf, 0x00, 0x00, 0x00, 0x00,
    0x40, 0x7e, 0x08, 0xbe, 0x80, 0x7e, 0x88, 0xbd, 0x00, 0x7e, 0x88, 0x3d,
    0x80, 0x7e, 0x88, 0xbd, 0x00, 0x7e, 0x88, 0x3d, 0x40, 0xbd, 0x4c, 0x3e,
    0x00, 0x7e, 0x88, 0x3d, 0x40, 0x7e, 0x08, 0xbe, 0x80, 0xec, 0x7f, 0x3f,
    0x70, 0xad, 0xbb, 0xbf, 0x20, 0x7e, 0x88, 0x3e, 0x08, 0x06, 0x91, 0xbf,
    0x80, 0x7e, 0x88, 0xbd, 0x38, 0xbd, 0xcc, 0xbf, 0x70, 0xad, 0xbb, 0x3f,
    0xa8, 0x9d, 0xaa, 0x3f, 0xd8, 0x54, 0xe6, 0x3f, 0x30, 0xbd, 0xcc, 0x3f,
    0x20, 0x7e, 0x08, 0x3f, 0xf0, 0x8d, 0x19, 0xbf, 0x40, 0x7e, 0x08, 0xbe,
    0x88, 0x25, 0xb3, 0x3f, 0x04, 0x06, 0x11, 0xc0, 0x00, 0x00, 0x00, 0x00,
    0xd8, 0x54, 0xe6, 0xbf, 0x24, 0x7e, 0x08, 0xc0, 0xc8, 0x15, 0xa2, 0x3f,
    0x00, 0x00, 0x00, 0x00, 0x40, 0xbd, 0x4c, 0xbe, 0x40, 0xbd, 0x4c, 0x3e,
    0x00, 0x7e, 0x08, 0x3e, 0x20, 0x7e, 0x88, 0x3e, 0x20, 0x7e, 0x88, 0xbe,
    0x00, 0x7e, 0x88, 0x3d, 0x20, 0x7e, 0x88, 0xbe, 0x80, 0x7e, 0x88, 0xbd,
    0x20, 0x7e, 0x88, 0xbe, 0x40, 0x7e, 0x08, 0xbe, 0x40, 0x7e, 0x08, 0xbe,
    0x00, 0x00, 0x00, 0x00, 0x00, 0x7e, 0x88, 0x3d, 0x00, 0x00, 0x00, 0x00,
    0x20, 0x7e, 0x88, 0x3e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x7e, 0x08, 0x3e,
    0x40, 0xbd, 0x4c, 0x3e, 0x20, 0x7e, 0x88, 0xbe, 0x40, 0xbd, 0x4c, 0xbe,
    0x20, 0x7e, 0x88, 0xbe, 0x00, 0x7e, 0x88, 0x3d, 0x00, 0x7e, 0x88, 0x3d,
    0x00, 0x7e, 0x08, 0x3e, 0xc0, 0x9d, 0xaa, 0xbe, 0x00, 0x7e, 0x88, 0x3d,
    0xc0, 0x9d, 0xaa, 0xbe, 0x40, 0xbd, 0x4c, 0xbe, 0x80, 0x7e, 0x88, 0xbd,
    0x40, 0x7e, 0x08, 0xbe, 0x40, 0x7e, 0x08, 0xbe, 0x40, 0x7e, 0x08, 0xbe,
    0x00, 0x7e, 0x08, 0x3e, 0x00, 0x7e, 0x88, 0x3d, 0xa0, 0x9d, 0xaa, 0x3e,
    0x00, 0x00, 0x00, 0x00, 0x20, 0xbd, 0xcc, 0x3e, 0x80, 0x7e, 0x88, 0xbd,
    0x40, 0x7e, 0x08, 0xbe, 0x00, 0x00, 0x00, 0x00, 0x20, 0x7e, 0x08, 0xbf,
    0x30, 0xbd, 0xcc, 0x3f, 0x30, 0xbd, 0x4c, 0xbf, 0x70, 0xad, 0xbb, 0xbf,
    0x00, 0x00, 0x00, 0x00, 0x80, 0xec, 0x7f, 0x3f, 0x00, 0x7e, 0x08, 0x3e,
    0xf0, 0x8d, 0x19, 0xbf, 0xf0, 0x8d, 0x19, 0xbf, 0x20, 0x7e, 0x88, 0x3e,
    0x00, 0x7e, 0x08, 0x3e, 0x20, 0xbd, 0xcc, 0x3e, 0x70, 0xad, 0x3b, 0xbf,
    0x18, 0x45, 0xd5, 0xbf, 0xf0, 0x8d, 0x19, 0xbf, 0x00, 0x7e, 0x88, 0x3d,
    0xe8, 0x8d, 0x99, 0x3f, 0xf0, 0xcc, 0x5d, 0x3f, 0xe0, 0x8d, 0x19, 0x3f,
    0x40, 0x7e, 0x08, 0xbe, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
    0x00, 0x00, 0x00, 0x00, 0xf0, 0x8d, 0x19, 0xbf, 0x40, 0x7e, 0x08, 0xbe,
    0x40, 0x7e, 0x08, 0xbe, 0x00, 0x7e, 0x88, 0x3d, 0x00, 0x7e, 0x08, 0x3e,
    0x40, 0xbd, 0x4c, 0x3e, 0x00, 0x7e, 0x08, 0x3e, 0x40, 0xbd, 0xcc, 0xbe,
    0x00, 0x7e, 0x88, 0x3d, 0x40, 0x7e, 0x08, 0xbe, 0x00, 0x00, 0x00, 0x00,
    0x40, 0x7e, 0x08, 0xbe, 0x80, 0x7e, 0x88, 0xbd, 0x80, 0x7e, 0x88, 0xbd,
    0x00, 0x7e, 0x88, 0x3d, 0x00, 0x00, 0x00, 0x00, 0x40, 0x7e, 0x08, 0xbe,
    0xf0, 0xcc, 0x5d, 0x3f, 0x70, 0xad, 0xbb, 0xbf, 0x00, 0x7e, 0x08, 0x3e,
    0x80, 0xec, 0x7f, 0xbf, 0x40, 0x7e, 0x08, 0xbe, 0x38, 0xbd, 0xcc, 0xbf,
    0xa8, 0x9d, 0xaa, 0x3f, 0xa8, 0x9d, 0xaa, 0x3f, 0x10, 0x45, 0xd5, 0x3f,
    0x88, 0x25, 0xb3, 0x3f, 0xc0, 0xdc, 0xee, 0x3e, 0xf0, 0x8d, 0x19, 0xbf,
    0x40, 0xbd, 0x4c, 0xbe, 0xc8, 0x15, 0xa2, 0x3f, 0x24, 0x7e, 0x08, 0xc0,
    0x00, 0x00, 0x00, 0x00, 0x80, 0xec, 0xff, 0xbf, 0x14, 0xc2, 0x0c, 0xc0,
    0xc8, 0x15, 0xa2, 0x3f, 0x40, 0xbd, 0x4c, 0xbe, 0x20, 0x7e, 0x88, 0xbe,
    0x20, 0x7e, 0x08, 0x3f, 0x40, 0xbd, 0x4c, 0xbe, 0xc0, 0xdc, 0xee, 0x3e,
    0x20, 0x7e, 0x88, 0xbe, 0x20, 0xbd, 0xcc, 0x3e, 0xf0, 0x8d, 0x19, 0xbf,
    0xc0, 0xdc, 0xee, 0xbe, 0x20, 0x7e, 0x08, 0xbf, 0x00, 0x00, 0x00, 0x00,
    0x00, 0x7e, 0x88, 0x3d, 0x20, 0x7e, 0x88, 0x3e, 0x00, 0x7e, 0x88, 0x3d,
    0x20, 0x7e, 0x88, 0xbe, 0xe0, 0x8d, 0x19, 0x3f, 0x00, 0x7e, 0x88, 0x3d,
    0xa0, 0x9d, 0x2a, 0x3f, 0xa0, 0x9d, 0xaa, 0x3e, 0x20, 0x7e, 0x08, 0xbf,
    0x40, 0x7e, 0x08, 0xbe, 0xc0, 0xdc, 0xee, 0xbe, 0x20, 0xbd, 0xcc, 0x3e,
    0x80, 0x7e, 0x88, 0xbd, 0xc0, 0xdc, 0xee, 0x3e, 0x40, 0xbd, 0x4c, 0xbe,
    0x20, 0x7e, 0x88, 0x3e, 0x30, 0xbd, 0x4c, 0xbf, 0xc0, 0xdc, 0xee, 0xbe,
    0x40, 0xbd, 0xcc, 0xbe, 0x00, 0x00, 0x00, 0x00, 0x00, 0x7e, 0x08, 0x3e,
    0xa0, 0x9d, 0xaa, 0x3e, 0x40, 0xbd, 0x4c, 0x3e, 0x40, 0xbd, 0xcc, 0xbe,
    0xc0, 0xdc, 0xee, 0x3e, 0x00, 0x00, 0x00, 0x00, 0x70, 0xad, 0x3b, 0x3f,
    0xc0, 0xdc, 0xee, 0x3e, 0x20, 0x7e, 0x08, 0xbf, 0x40, 0x7e, 0x08, 0xbe,
    0x00, 0x00, 0x00, 0x00, 0xe8, 0x8d, 0x99, 0xbf, 0xc0, 0x9d, 0xaa, 0xbe,
    0xc0, 0xdc, 0xee, 0x3e, 0xa0, 0x9d, 0xaa, 0x3e, 0xc8, 0x15, 0xa2, 0x3f,
    0x00, 0x7e, 0x88, 0x3d, 0x20, 0x7e, 0x08, 0x3f, 0x00, 0x00, 0x00, 0x00,
    0x20, 0x7e, 0x88, 0x3e, 0x40, 0xbd, 0x4c, 0xbe, 0x20, 0x7e, 0x08, 0x40,
    0x20, 0xbd, 0xcc, 0x3e, 0xf0, 0x8d, 0x19, 0xbf, 0x20, 0x7e, 0x88, 0x3e,
    0x00, 0x00, 0x00, 0x00, 0xf0, 0xcc, 0x5d, 0x3f, 0x80, 0x7e, 0x88, 0xbd,
    0x80, 0xec, 0x7f, 0x3f, 0x40, 0x7e, 0x08, 0xbe, 0x80, 0x7e, 0x88, 0xbd,
    0x40, 0xbd, 0x4c, 0xbe, 0x00, 0x7e, 0x88, 0x3d, 0x40, 0xbd, 0xcc, 0xbe,
    0x40, 0xbd, 0x4c, 0xbe, 0x00, 0x00, 0x00, 0x00, 0x00, 0x7e, 0x88, 0x3d,
    0xa0, 0x9d, 0xaa, 0x3e, 0x00, 0x7e, 0x08, 0x3e, 0x00, 0x7e, 0x08, 0x3e,
    0x00, 0x7e, 0x88, 0x3d, 0x00, 0x7e, 0x88, 0x3d, 0x00, 0x7e, 0x88, 0x3d,
    0x00, 0x7e, 0x88, 0x3d, 0x00, 0x7e, 0x88, 0x3d, 0x40, 0xbd, 0x4c, 0xbe,
    0x00, 0x00, 0x00, 0x00, 0x00, 0x7e, 0x88, 0x3d, 0x20, 0x7e, 0x88, 0x3e,
    0x40, 0x7e, 0x08, 0xbe, 0xf0, 0xcc, 0x5d, 0x3f, 0x90, 0x25, 0xb3, 0xbf,
    0x00, 0x7e, 0x88, 0x3d, 0x28, 0x7e, 0x88, 0xbf, 0x40, 0x7e, 0x08, 0xbe,
    0x38, 0xbd, 0xcc, 0xbf, 0xc8, 0x15, 0xa2, 0x3f, 0x50, 0x35, 0xc4, 0x3f,
    0xf8, 0xcc, 0xdd, 0x3f, 0x70, 0xad, 0xbb, 0x3f, 0x20, 0x7e, 0x08, 0x3f,
    0xf0, 0x8d, 0x19, 0xbf, 0x20, 0x7e, 0x88, 0xbe, 0xe8, 0x8d, 0x99, 0x3f,
    0x24, 0x7e, 0x08, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x80, 0xec, 0xff, 0xbf,
    0xf8, 0x49, 0x15, 0xc0, 0xa8, 0x9d, 0xaa, 0x3f, 0x40, 0xbd, 0x4c, 0xbe,
    0x00, 0x7e, 0x88, 0x3d, 0x20, 0xbd, 0xcc, 0x3e, 0x00, 0x00, 0x00, 0x00,
    0x00, 0x7e, 0x88, 0x3d, 0x20, 0x7e, 0x88, 0xbe, 0x20, 0x7e, 0x88, 0x3e,
    0x80, 0x7e, 0x88, 0xbd, 0x20, 0x7e, 0x88, 0xbe, 0x40, 0xbd, 0x4c, 0xbe,
    0x00, 0x7e, 0x88, 0x3d, 0x20, 0xbd, 0xcc, 0x3e, 0x20, 0xbd, 0xcc, 0x3e,
    0x00, 0x7e, 0x88, 0x3d, 0x00, 0x7e, 0x08, 0x3e, 0x00, 0x00, 0x00, 0x00,
    0x00, 0x00, 0x00, 0x00, 0x00, 0x7e, 0x08, 0x3e, 0x80, 0x7e, 0x88, 0xbd,
    0x20, 0x7e, 0x88, 0xbe, 0x00, 0x7e, 0x88, 0x3d, 0x00, 0x7e, 0x88, 0x3d,
    0x40, 0xbd, 0x4c, 0x3e, 0x80, 0x7e, 0x88, 0xbd, 0x80, 0x7e, 0x88, 0xbd,
    0x00, 0x00, 0x00, 0x00, 0x40, 0xbd, 0x4c, 0x3e, 0x40, 0xbd, 0x4c, 0xbe,
    0x40, 0x7e, 0x08, 0xbe, 0x40, 0xbd, 0x4c, 0xbe, 0x80, 0x7e, 0x88, 0xbd,
    0x20, 0x7e, 0x08, 0x3f, 0xa0, 0x9d, 0xaa, 0x3e, 0x00, 0x00, 0x00, 0x00,
    0x40, 0x7e, 0x08, 0xbe, 0x00, 0x00, 0x00, 0x00, 0x40, 0x7e, 0x08, 0xbe,
    0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xc0, 0x9d, 0xaa, 0xbe,
    0x40, 0x7e, 0x08, 0xbe, 0x40, 0xbd, 0x4c, 0xbe, 0x00, 0x00, 0x00, 0x00,
    0xb0, 0xdc, 0x6e, 0x3f, 0xa0, 0x9d, 0x2a, 0x3f, 0x20, 0x7e, 0x88, 0x3e,
    0xf0, 0xcc, 0x5d, 0x3f, 0xb0, 0xdc, 0x6e, 0x3f, 0x80, 0x7e, 0x88, 0xbd,
    0x20, 0x7e, 0x88, 0xbe, 0x40, 0x7e, 0x08, 0xbe, 0x40, 0xbd, 0xcc, 0xbe,
    0xf0, 0xcc, 0x5d, 0x3f, 0x20, 0x7e, 0x88, 0x3e, 0x40, 0xbd, 0xcc, 0xbe,
    0xc0, 0xdc, 0xee, 0x3e, 0x40, 0x7e, 0x08, 0xbe, 0x30, 0x3a, 0x04, 0x40,
    0x08, 0x06, 0x91, 0xbf, 0x20, 0x7e, 0x08, 0x3f, 0x80, 0x7e, 0x88, 0xbd,
    0x40, 0x7e, 0x08, 0xbe, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
    0x80, 0x7e, 0x88, 0xbd, 0x80, 0x7e, 0x88, 0xbd, 0x00, 0x00, 0x00, 0x00,
    0x00, 0x00, 0x00, 0x00, 0x00, 0x7e, 0x88, 0x3d, 0x00, 0x00, 0x00, 0x00,
    0x00, 0x00, 0x00, 0x00, 0x40, 0xbd, 0x4c, 0xbe, 0x80, 0x7e, 0x88, 0xbd,
    0x40, 0xbd, 0x4c, 0xbe, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
    0x00, 0x7e, 0x88, 0x3d, 0x00, 0x00, 0x00, 0x00, 0x00, 0x7e, 0x88, 0x3d,
    0x00, 0x00, 0x00, 0x00, 0x80, 0x7e, 0x88, 0xbd, 0x20, 0xbd, 0xcc, 0x3e,
    0xc8, 0x15, 0xa2, 0xbf, 0x00, 0x7e, 0x08, 0x3e, 0x18, 0x45, 0xd5, 0xbf,
    0x80, 0x7e, 0x88, 0xbd, 0x70, 0xad, 0xbb, 0xbf, 0xc8, 0x15, 0xa2, 0x3f,
    0x88, 0x25, 0xb3, 0x3f, 0x10, 0x45, 0xd5, 0x3f, 0xe8, 0x8d, 0x99, 0x3f,
    0xc0, 0xdc, 0xee, 0x3e, 0x30, 0xbd, 0x4c, 0xbf, 0x20, 0x7e, 0x88, 0xbe,
    0xc8, 0x15, 0xa2, 0x3f, 0x80, 0xec, 0xff, 0xbf, 0x40, 0x7e, 0x08, 0xbe,
    0xd8, 0x54, 0xe6, 0xbf, 0x34, 0x3a, 0x04, 0xc0, 0x30, 0xbd, 0x4c, 0x3f,
    0x40, 0x7e, 0x08, 0xbe, 0x00, 0x00, 0x00, 0x00, 0x00, 0x7e, 0x88, 0x3d,
    0x80, 0x7e, 0x88, 0xbd, 0x00, 0x7e, 0x88, 0x3d, 0x00, 0x00, 0x00, 0x00,
    0x40, 0xbd, 0x4c, 0x3e, 0x40, 0x7e, 0x08, 0xbe, 0xc0, 0x9d, 0xaa, 0xbe,
    0x40, 0xbd, 0x4c, 0xbe, 0x00, 0x7e, 0x88, 0x3d, 0x00, 0x7e, 0x08, 0x3e,
    0x20, 0x7e, 0x08, 0x3f, 0x00, 0x7e, 0x08, 0x3e, 0x40, 0x7e, 0x08, 0xbe,
    0x40, 0x7e, 0x08, 0xbe, 0x80, 0x7e, 0x88, 0xbd, 0x40, 0x7e, 0x08, 0xbe,
    0x00, 0x7e, 0x88, 0x3d, 0x80, 0x7e, 0x88, 0xbd, 0x40, 0x7e, 0x08, 0xbe,
    0x40, 0x7e, 0x08, 0xbe, 0x20, 0x7e, 0x88, 0x3e, 0x00, 0x00, 0x00, 0x00,
    0x00, 0x7e, 0x88, 0x3d, 0x80, 0x7e, 0x88, 0xbd, 0x00, 0x00, 0x00, 0x00,
    0x40, 0xbd, 0x4c, 0xbe, 0xc0, 0x9d, 0xaa, 0xbe, 0x40, 0xbd, 0x4c, 0xbe,
    0x80, 0x7e, 0x88, 0xbd, 0x00, 0x00, 0x00, 0x00, 0xa0, 0x9d, 0x2a, 0x3f,
    0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x80, 0x7e, 0x88, 0xbd,
    0x40, 0x7e, 0x08, 0xbe, 0x00, 0x00, 0x00, 0x00, 0x80, 0x7e, 0x88, 0xbd,
    0x00, 0x7e, 0x88, 0x3d, 0x80, 0x7e, 0x88, 0xbd, 0xc0, 0xdc, 0xee, 0xbe,
    0x20, 0x7e, 0x08, 0xbf, 0xa0, 0x9d, 0xaa, 0x3e, 0x00, 0x00, 0x00, 0x00,
    0x00, 0x7e, 0x88, 0x3d, 0x70, 0xad, 0x3b, 0x3f, 0x00, 0x7e, 0x08, 0x3e,
    0x00, 0x00, 0x00, 0x00, 0x30, 0xbd, 0x4c, 0xbf, 0x40, 0xbd, 0xcc, 0xbe,
    0x00, 0x00, 0x00, 0x00, 0xc0, 0xdc, 0xee, 0xbe, 0x00, 0x7e, 0x88, 0x3d,
    0x00, 0x7e, 0x88, 0x3d, 0x80, 0xec, 0x7f, 0x3f, 0x80, 0x7e, 0x88, 0xbd,
    0x80, 0xec, 0xff, 0x3f, 0x70, 0xad, 0x3b, 0x3f, 0xa0, 0x9d, 0x2a, 0x3f,
    0x40, 0x7e, 0x08, 0xbe, 0x80, 0x7e, 0x88, 0xbd, 0x00, 0x00, 0x00, 0x00,
    0x00, 0x7e, 0x08, 0x3e, 0x80, 0x7e, 0x88, 0xbd, 0x40, 0x7e, 0x08, 0xbe,
    0x00, 0x7e, 0x88, 0x3d, 0x00, 0x00, 0x00, 0x00, 0x00, 0x7e, 0x88, 0x3d,
    0x00, 0x7e, 0x88, 0x3d, 0x00, 0x00, 0x00, 0x00, 0xc0, 0x9d, 0xaa, 0xbe,
    0x80, 0x7e, 0x88, 0xbd, 0x40, 0x7e, 0x08, 0xbe, 0x00, 0x00, 0x00, 0x00,
    0x00, 0x00, 0x00, 0x00, 0x80, 0x7e, 0x88, 0xbd, 0x00, 0x00, 0x00, 0x00,
    0x00, 0x00, 0x00, 0x00, 0x80, 0x7e, 0x88, 0xbd, 0x80, 0x7e, 0x88, 0xbd,
    0x20, 0xbd, 0xcc, 0x3e, 0xc8, 0x15, 0xa2, 0xbf, 0x40, 0xbd, 0x4c, 0x3e,
    0x08, 0x06, 0x91, 0xbf, 0x40, 0xbd, 0x4c, 0x3e, 0x50, 0x35, 0xc4, 0xbf,
    0xa0, 0x9d, 0x2a, 0x3f, 0x20, 0x7e, 0x88, 0x3f, 0x50, 0x35, 0xc4, 0x3f,
    0xf0, 0xcc, 0x5d, 0x3f, 0x40, 0x7e, 0x08, 0xbe, 0xc0, 0xdc, 0x6e, 0xbf,
    0x40, 0x7e, 0x08, 0xbe, 0x00, 0x06, 0x91, 0x3f, 0x50, 0x35, 0xc4, 0xbf,
    0x40, 0xbd, 0x4c, 0xbe, 0x50, 0x35, 0xc4, 0xbf, 0xa0, 0x64, 0xf7, 0xbf,
    0x20, 0x7e, 0x08, 0x3f, 0x00, 0x00, 0x00, 0x00, 0x20, 0x7e, 0x88, 0xbe,
    0x40, 0xbd, 0x4c, 0x3e, 0x40, 0x7e, 0x08, 0xbe, 0x00, 0x7e, 0x88, 0x3d,
    0x00, 0x7e, 0x88, 0x3d, 0x00, 0x00, 0x00, 0x00, 0x80, 0x7e, 0x88, 0xbd,
    0x40, 0xbd, 0x4c, 0xbe, 0x40, 0x7e, 0x08, 0xbe, 0x00, 0x00, 0x00, 0x00,
    0x80, 0x7e, 0x88, 0xbd, 0x20, 0x7e, 0x88, 0x3e, 0x00, 0x00, 0x00, 0x00,
    0x40, 0x7e, 0x08, 0xbe, 0x40, 0xbd, 0x4c, 0xbe, 0x80, 0x7e, 0x88, 0xbd,
    0x40, 0xbd, 0x4c, 0xbe, 0x00, 0x00, 0x00, 0x00, 0x00, 0x7e, 0x88, 0x3d,
    0x00, 0x7e, 0x88, 0x3d, 0x40, 0xbd, 0x4c, 0xbe, 0x00, 0x00, 0x00, 0x00,
    0x20, 0x7e, 0x88, 0xbe, 0x00, 0x00, 0x00, 0x00, 0x00, 0x7e, 0x88, 0x3d,
    0x00, 0x00, 0x00, 0x00, 0x40, 0x7e, 0x08, 0xbe, 0xc0, 0x9d, 0xaa, 0xbe,
    0xc0, 0x9d, 0xaa, 0xbe, 0x00, 0x00, 0x00, 0x00, 0x00, 0x7e, 0x08, 0x3e,
    0x40, 0xbd, 0x4c, 0x3e, 0x00, 0x00, 0x00, 0x00, 0x40, 0xbd, 0x4c, 0xbe,
    0x00, 0x00, 0x00, 0x00, 0x00, 0x7e, 0x88, 0x3d, 0x40, 0x7e, 0x08, 0xbe,
    0x80, 0x7e, 0x88, 0xbd, 0x00, 0x7e, 0x88, 0x3d, 0x00, 0x00, 0x00, 0x00,
    0x70, 0xad, 0x3b, 0xbf, 0x40, 0xbd, 0x4c, 0xbe, 0x00, 0x00, 0x00, 0x00,
    0x80, 0x7e, 0x88, 0xbd, 0x70, 0xad, 0x3b, 0x3f, 0xe0, 0x8d, 0x19, 0x3f,
    0x40, 0xbd, 0x4c, 0xbe, 0x00, 0x7e, 0x88, 0x3d, 0x40, 0xbd, 0x4c, 0xbe,
    0xe8, 0x8d, 0x99, 0xbf, 0x40, 0x7e, 0x08, 0xbe, 0x40, 0xbd, 0xcc, 0xbe,
    0x30, 0xbd, 0x4c, 0x3f, 0x40, 0x7e, 0x08, 0xbe, 0x30, 0xbd, 0x4c, 0x3f,
    0x00, 0x7e, 0x88, 0x3d, 0xc8, 0x15, 0xa2, 0x3f, 0xe8, 0x8d, 0x99, 0x3f,
    0x20, 0xbd, 0xcc, 0x3e, 0x80, 0x7e, 0x88, 0xbd, 0x80, 0x7e, 0x88, 0xbd,
    0x00, 0x7e, 0x88, 0x3d, 0x00, 0x7e, 0x88, 0x3d, 0x80, 0x7e, 0x88, 0xbd,
    0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x7e, 0x88, 0x3d,
    0x00, 0x00, 0x00, 0x00, 0x00, 0x7e, 0x88, 0x3d, 0x00, 0x7e, 0x88, 0x3d,
    0x80, 0x7e, 0x88, 0xbd, 0x80, 0x7e, 0x88, 0xbd, 0x00, 0x7e, 0x88, 0x3d,
    0x00, 0x7e, 0x88, 0x3d, 0x00, 0x7e, 0x88, 0x3d, 0x00, 0x7e, 0x88, 0x3d,
    0x00, 0x7e, 0x88, 0x3d, 0x00, 0x00, 0x00, 0x00, 0x40, 0x7e, 0x08, 0xbe,
    0x40, 0xbd, 0x4c, 0xbe, 0x30, 0xbd, 0x4c, 0x3f, 0x90, 0x25, 0xb3, 0xbf,
    0x00, 0x7e, 0x88, 0x3d, 0x30, 0xbd, 0x4c, 0xbf, 0x00, 0x7e, 0x88, 0x3d,
    0x90, 0x25, 0xb3, 0xbf, 0x20, 0x7e, 0x08, 0x3f, 0xb0, 0xdc, 0x6e, 0x3f,
    0x30, 0xbd, 0xcc, 0x3f, 0xe8, 0x8d, 0x99, 0x3f, 0x40, 0xbd, 0x4c, 0xbe,
    0x28, 0x7e, 0x88, 0xbf, 0x20, 0x7e, 0x88, 0xbe, 0x20, 0x7e, 0x88, 0x3f,
    0xc8, 0x15, 0xa2, 0xbf, 0x40, 0x7e, 0x08, 0xbe, 0x70, 0xad, 0xbb, 0xbf,
    0xf8, 0xcc, 0xdd, 0xbf, 0x20, 0x7e, 0x88, 0x3e, 0x00, 0x7e, 0x88, 0x3d,
    0xc0, 0x9d, 0xaa, 0xbe, 0x40, 0xbd, 0x4c, 0x3e, 0xc0, 0x9d, 0xaa, 0xbe,
    0x80, 0x7e, 0x88, 0xbd, 0x80, 0x7e, 0x88, 0xbd, 0x80, 0x7e, 0x88, 0xbd,
    0x20, 0x7e, 0x88, 0xbe, 0x20, 0x7e, 0x88, 0xbe, 0x80, 0x7e, 0x88, 0xbd,
    0x80, 0x7e, 0x88, 0xbd, 0x00, 0x00, 0x00, 0x00, 0x00, 0x7e, 0x88, 0x3d,
    0x00, 0x7e, 0x08, 0x3e, 0x40, 0xbd, 0x4c, 0xbe, 0x00, 0x00, 0x00, 0x00,
    0x40, 0x7e, 0x08, 0xbe, 0x20, 0x7e, 0x88, 0xbe, 0x40, 0xbd, 0x4c, 0xbe,
    0x40, 0x7e, 0x08, 0xbe, 0x80, 0x7e, 0x88, 0xbd, 0x20, 0x7e, 0x88, 0xbe,
    0x00, 0x7e, 0x08, 0x3e, 0x40, 0x7e, 0x08, 0xbe, 0x00, 0x7e, 0x88, 0x3d,
    0x00, 0x7e, 0x08, 0x3e, 0x00, 0x00, 0x00, 0x00, 0x80, 0x7e, 0x88, 0xbd,
    0xc0, 0x9d, 0xaa, 0xbe, 0x40, 0x7e, 0x08, 0xbe, 0x00, 0x00, 0x00, 0x00,
    0x00, 0x7e, 0x08, 0x3e, 0x00, 0x00, 0x00, 0x00, 0x80, 0x7e, 0x88, 0xbd,
    0x80, 0x7e, 0x88, 0xbd, 0x40, 0xbd, 0x4c, 0x3e, 0x40, 0xbd, 0x4c, 0xbe,
    0x40, 0x7e, 0x08, 0xbe, 0x00, 0x00, 0x00, 0x00, 0x80, 0x7e, 0x88, 0xbd,
    0x00, 0x7e, 0x88, 0x3d, 0x40, 0xbd, 0x4c, 0xbe, 0x00, 0x00, 0x00, 0x00,
    0x00, 0x06, 0x91, 0x3f, 0x20, 0x7e, 0x88, 0xbe, 0xf0, 0xcc, 0x5d, 0x3f,
    0x40, 0xbd, 0xcc, 0xbe, 0x20, 0xbd, 0xcc, 0x3e, 0x40, 0x7e, 0x08, 0xbe,
    0x40, 0xbd, 0xcc, 0xbe, 0x40, 0xbd, 0x4c, 0xbe, 0x80, 0x7e, 0x88, 0xbd,
    0x40, 0x7e, 0x08, 0xbe, 0xe0, 0x8d, 0x19, 0x3f, 0xc0, 0xdc, 0xee, 0xbe,
    0xe0, 0x8d, 0x19, 0x3f, 0x40, 0xbd, 0x4c, 0xbe, 0xe8, 0x8d, 0x99, 0x3f,
    0x40, 0xbd, 0x4c, 0x3e, 0x40, 0xbd, 0xcc, 0xbe, 0x80, 0x7e, 0x88, 0xbd,
    0x00, 0x7e, 0x88, 0x3d, 0x00, 0x00, 0x00, 0x00, 0x00, 0x7e, 0x88, 0x3d,
    0x00, 0x7e, 0x88, 0x3d, 0x00, 0x00, 0x00, 0x00, 0x00, 0x7e, 0x88, 0x3d,
    0x00, 0x7e, 0x88, 0x3d, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
    0x80, 0x7e, 0x88, 0xbd, 0x00, 0x7e, 0x88, 0x3d, 0x00, 0x00, 0x00, 0x00,
    0x00, 0x7e, 0x88, 0x3d, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
    0x40, 0x7e, 0x08, 0xbe, 0x00, 0x00, 0x00, 0x00, 0x00, 0x7e, 0x88, 0x3d,
    0x40, 0x7e, 0x08, 0xbe, 0x00, 0x00, 0x00, 0x00, 0x70, 0xad, 0x3b, 0x3f,
    0xc8, 0x15, 0xa2, 0xbf, 0x40, 0xbd, 0x4c, 0x3e, 0xb0, 0x9d, 0x2a, 0xbf,
    0x40, 0xbd, 0x4c, 0x3e, 0x50, 0x35, 0xc4, 0xbf, 0x20, 0x7e, 0x08, 0x3f,
    0x70, 0xad, 0x3b, 0x3f, 0x88, 0x25, 0xb3, 0x3f, 0xe8, 0x8d, 0x99, 0x3f,
    0x20, 0x7e, 0x88, 0xbe, 0xe8, 0x8d, 0x99, 0xbf, 0x00, 0x7e, 0x88, 0x3d,
    0x00, 0x06, 0x91, 0x3f, 0xb0, 0x9d, 0xaa, 0xbf, 0x00, 0x00, 0x00, 0x00,
    0x08, 0x06, 0x91, 0xbf, 0x18, 0x45, 0xd5, 0xbf, 0x00, 0x7e, 0x88, 0x3d,
    0x00, 0x7e, 0x08, 0x3e, 0xc0, 0x9d, 0xaa, 0xbe, 0x00, 0x7e, 0x08, 0x3e,
    0x00, 0x7e, 0x88, 0x3d, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
    0x00, 0x7e, 0x88, 0x3d, 0x40, 0xbd, 0x4c, 0xbe, 0x40, 0xbd, 0x4c, 0xbe,
    0x80, 0x7e, 0x88, 0xbd, 0x40, 0xbd, 0xcc, 0xbe, 0x80, 0x7e, 0x88, 0xbd,
    0x00, 0x00, 0x00, 0x00, 0x00, 0x7e, 0x88, 0x3d, 0x40, 0x7e, 0x08, 0xbe,
    0x00, 0x00, 0x00, 0x00, 0x00, 0x7e, 0x88, 0x3d, 0x40, 0xbd, 0xcc, 0xbe,
    0x80, 0x7e, 0x88, 0xbd, 0x40, 0xbd, 0x4c, 0xbe, 0x00, 0x7e, 0x08, 0x3e,
    0x40, 0xbd, 0xcc, 0xbe, 0x00, 0x00, 0x00, 0x00, 0x40, 0x7e, 0x08, 0xbe,
    0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x7e, 0x88, 0x3d,
    0x40, 0xbd, 0x4c, 0xbe, 0xc0, 0x9d, 0xaa, 0xbe, 0x20, 0x7e, 0x88, 0xbe,
    0x40, 0xbd, 0x4c, 0xbe, 0x00, 0x7e, 0x08, 0x3e, 0x00, 0x00, 0x00, 0x00,
    0x00, 0x00, 0x00, 0x00, 0x40, 0xbd, 0x4c, 0xbe, 0x00, 0x7e, 0x08, 0x3e,
    0x00, 0x00, 0x00, 0x00, 0x40, 0xbd, 0xcc, 0xbe, 0x20, 0x7e, 0x88, 0xbe,
    0x80, 0x7e, 0x88, 0xbd, 0x80, 0x7e, 0x88, 0xbd, 0x20, 0x7e, 0x88, 0xbe,
    0xc0, 0xdc, 0x6e, 0xbf, 0x20, 0x7e, 0x08, 0x3f, 0x40, 0xbd, 0x4c, 0xbe,
    0xc0, 0xdc, 0xee, 0x3e, 0xc0, 0xdc, 0xee, 0x3e, 0xa0, 0x9d, 0xaa, 0x3e,
    0x80, 0x7e, 0x88, 0xbd, 0x00, 0x7e, 0x08, 0x3e, 0x70, 0xad, 0x3b, 0xbf,
    0x20, 0x7e, 0x08, 0x3f, 0x40, 0x7e, 0x08, 0xbe, 0x20, 0x7e, 0x88, 0x3e,
    0x20, 0xbd, 0xcc, 0x3e, 0xf0, 0xcc, 0x5d, 0x3f, 0x80, 0x7e, 0x88, 0xbd,
    0xa0, 0x9d, 0x2a, 0x3f, 0xa0, 0x9d, 0xaa, 0x3e, 0x20, 0x7e, 0x08, 0xbf,
    0x80, 0x7e, 0x88, 0xbd, 0x00, 0x7e, 0x88, 0x3d, 0x00, 0x00, 0x00, 0x00,
    0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x7e, 0x88, 0x3d,
    0x00, 0x7e, 0x88, 0x3d, 0x00, 0x7e, 0x88, 0x3d, 0x00, 0x00, 0x00, 0x00,
    0x00, 0x7e, 0x88, 0x3d, 0x00, 0x00, 0x00, 0x00, 0x40, 0x7e, 0x08, 0xbe,
    0x00, 0x7e, 0x88, 0x3d, 0x00, 0x7e, 0x08, 0x3e, 0x00, 0x7e, 0x88, 0x3d,
    0x00, 0x00, 0x00, 0x00, 0x80, 0x7e, 0x88, 0xbd, 0x00, 0x7e, 0x88, 0x3d,
    0x00, 0x7e, 0x88, 0x3d, 0x80, 0x7e, 0x88, 0xbd, 0x80, 0x7e, 0x88, 0xbd,
    0x20, 0x7e, 0x08, 0x3f, 0x90, 0x25, 0xb3, 0xbf, 0xa0, 0x9d, 0xaa, 0x3e,
    0x40, 0xbd, 0xcc, 0xbe, 0x40, 0xbd, 0x4c, 0x3e, 0x18, 0x45, 0xd5, 0xbf,
    0x40, 0xbd, 0x4c, 0x3e, 0xb0, 0xdc, 0x6e, 0x3f, 0x88, 0x25, 0xb3, 0x3f,
    0x00, 0x06, 0x91, 0x3f, 0xc0, 0x9d, 0xaa, 0xbe, 0x50, 0x35, 0xc4, 0xbf,
    0x00, 0x7e, 0x88, 0x3d, 0x20, 0x7e, 0x88, 0x3f, 0xe8, 0x8d, 0x99, 0xbf,
    0x80, 0x7e, 0x88, 0xbd, 0xe8, 0x8d, 0x99, 0xbf, 0x38, 0xbd, 0xcc, 0xbf,
    0x00, 0x7e, 0x08, 0x3e, 0x00, 0x00, 0x00, 0x00, 0x40, 0xbd, 0x4c, 0xbe,
    0x00, 0x7e, 0x08, 0x3e, 0x20, 0x7e, 0x88, 0xbe, 0x80, 0x7e, 0x88, 0xbd,
    0x00, 0x7e, 0x88, 0x3d, 0x40, 0xbd, 0x4c, 0x3e, 0x40, 0xbd, 0xcc, 0xbe,
    0xc0, 0x9d, 0xaa, 0xbe, 0x40, 0xbd, 0xcc, 0xbe, 0x20, 0x7e, 0x88, 0xbe,
    0x00, 0x7e, 0x88, 0x3d, 0x00, 0x00, 0x00, 0x00, 0x00, 0x7e, 0x08, 0x3e,
    0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x40, 0x7e, 0x08, 0xbe,
    0x00, 0x7e, 0x08, 0x3e, 0x40, 0xbd, 0x4c, 0x3e, 0x40, 0xbd, 0x4c, 0xbe,
    0x00, 0x00, 0x00, 0x00, 0x40, 0xbd, 0xcc, 0xbe, 0x40, 0xbd, 0x4c, 0x3e,
    0x40, 0x7e, 0x08, 0xbe, 0x00, 0x00, 0x00, 0x00, 0x80, 0x7e, 0x88, 0xbd,
    0x00, 0x7e, 0x88, 0x3d, 0x40, 0xbd, 0xcc, 0xbe, 0x20, 0x7e, 0x88, 0xbe,
    0x40, 0xbd, 0xcc, 0xbe, 0x40, 0xbd, 0xcc, 0xbe, 0x00, 0x7e, 0x88, 0x3d,
    0x80, 0x7e, 0x88, 0xbd, 0x80, 0x7e, 0x88, 0xbd, 0x20, 0x7e, 0x88, 0xbe,
    0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
    0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
    0xc0, 0xdc, 0xee, 0xbe, 0x00, 0xcd, 0x5d, 0xbf, 0x20, 0xbd, 0xcc, 0x3e,
    0x20, 0x7e, 0x08, 0x3f, 0x20, 0x7e, 0x88, 0x3e, 0xa0, 0x9d, 0xaa, 0x3e,
    0x80, 0xec, 0x7f, 0x3f, 0x00, 0x00, 0x00, 0x00, 0x40, 0xbd, 0x4c, 0x3e,
    0xe8, 0x8d, 0x99, 0xbf, 0x40, 0xbd, 0x4c, 0xbe, 0x00, 0x00, 0x00, 0x00,
    0x80, 0xec, 0x7f, 0xbf, 0x30, 0xbd, 0x4c, 0x3f, 0x40, 0xbd, 0x4c, 0x3e,
    0x00, 0x00, 0x00, 0x00, 0x40, 0x7e, 0x08, 0xbe, 0x20, 0xbd, 0xcc, 0x3e,
    0x20, 0x7e, 0x88, 0x3e, 0x00, 0x7e, 0x08, 0x3e, 0x00, 0x00, 0x00, 0x00,
    0x80, 0x7e, 0x88, 0xbd, 0x00, 0x7e, 0x88, 0x3d, 0x80, 0x7e, 0x88, 0xbd,
    0x00, 0x7e, 0x08, 0x3e, 0x00, 0x7e, 0x88, 0x3d, 0x00, 0x7e, 0x08, 0x3e,
    0x80, 0x7e, 0x88, 0xbd, 0x00, 0x7e, 0x08, 0x3e, 0x00, 0x00, 0x00, 0x00,
    0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x7e, 0x08, 0x3e,
    0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
    0x80, 0x7e, 0x88, 0xbd, 0x00, 0x7e, 0x88, 0x3d, 0x70, 0xad, 0x3b, 0xbf,
    0x00, 0x7e, 0x88, 0x3d, 0x70, 0xad, 0x3b, 0x3f, 0x70, 0xad, 0xbb, 0xbf,
    0x20, 0x7e, 0x88, 0x3e, 0xc0, 0x9d, 0xaa, 0xbe, 0x40, 0xbd, 0x4c, 0x3e,
    0xc0, 0xdc, 0xee, 0xbf, 0xb0, 0xdc, 0x6e, 0x3f, 0xf0, 0xcc, 0x5d, 0x3f,
    0x70, 0xad, 0xbb, 0x3f, 0x20, 0x7e, 0x88, 0x3f, 0x20, 0x7e, 0x88, 0xbe,
    0x70, 0xad, 0xbb, 0xbf, 0x40, 0xbd, 0x4c, 0x3e, 0xc8, 0x15, 0xa2, 0x3f,
    0xe8, 0x8d, 0x99, 0xbf, 0x00, 0x00, 0x00, 0x00, 0xc8, 0x15, 0xa2, 0xbf,
    0x18, 0x45, 0xd5, 0xbf, 0x00, 0x7e, 0x88, 0x3d, 0x40, 0xbd, 0x4c, 0x3e,
    0x80, 0x7e, 0x88, 0xbd, 0x20, 0x7e, 0x88, 0x3e, 0x40, 0x7e, 0x08, 0xbe,
    0x00, 0x00, 0x00, 0x00, 0x80, 0x7e, 0x88, 0xbd, 0x00, 0x00, 0x00, 0x00,
    0x40, 0x7e, 0x08, 0xbe, 0x40, 0xbd, 0x4c, 0xbe, 0x40, 0xbd, 0x4c, 0xbe,
    0x40, 0xbd, 0x4c, 0xbe, 0x80, 0x7e, 0x88, 0xbd, 0x00, 0x7e, 0x88, 0x3d,
    0x80, 0x7e, 0x88, 0xbd, 0x80, 0x7e, 0x88, 0xbd, 0x00, 0x00, 0x00, 0x00,
    0x00, 0x7e, 0x08, 0x3e, 0x80, 0x7e, 0x88, 0xbd, 0x80, 0x7e, 0x88, 0xbd,
    0x00, 0x7e, 0x88, 0x3d, 0x40, 0xbd, 0x4c, 0x3e, 0x20, 0x7e, 0x88, 0xbe,
    0x20, 0xbd, 0xcc, 0x3e, 0x00, 0x00, 0x00, 0x00, 0x80, 0x7e, 0x88, 0xbd,
    0x80, 0x7e, 0x88, 0xbd, 0x00, 0x00, 0x00, 0x00, 0x20, 0x7e, 0x88, 0xbe,
    0x20, 0x7e, 0x88, 0xbe, 0x40, 0xbd, 0x4c, 0xbe, 0x20, 0x7e, 0x88, 0xbe,
    0x00, 0x00, 0x00, 0x00, 0x00, 0x7e, 0x88, 0x3d, 0x80, 0x7e, 0x88, 0xbd,
    0x00, 0x7e, 0x88, 0x3d, 0x00, 0x7e, 0x08, 0x3e, 0x40, 0x7e, 0x08, 0xbe,
    0x00, 0x7e, 0x08, 0x3e, 0x40, 0x7e, 0x08, 0xbe, 0x00, 0x00, 0x00, 0x00,
    0x40, 0xbd, 0x4c, 0x3e, 0x80, 0x7e, 0x88, 0xbd, 0xc0, 0x9d, 0xaa, 0xbe,
    0x20, 0x7e, 0x88, 0x3f, 0x40, 0xbd, 0x4c, 0x3e, 0x40, 0xbd, 0x4c, 0x3e,
    0x80, 0x7e, 0x88, 0xbd, 0xc0, 0xdc, 0xee, 0x3e, 0x00, 0xcd, 0x5d, 0xbf,
    0x40, 0x7e, 0x08, 0xbe, 0x20, 0x7e, 0x88, 0xbe, 0x40, 0xbd, 0x4c, 0x3e,
    0x40, 0xbd, 0x4c, 0x3e, 0x20, 0x7e, 0x88, 0xbe, 0x00, 0x7e, 0x08, 0x3e,
    0x20, 0x7e, 0x88, 0x3e, 0x40, 0x7e, 0x08, 0xbe, 0x20, 0x7e, 0x88, 0xbe,
    0xe0, 0x8d, 0x19, 0x3f, 0x20, 0x7e, 0x88, 0xbe, 0x00, 0x00, 0x00, 0x00,
    0x00, 0x7e, 0x88, 0x3d, 0x80, 0x7e, 0x88, 0xbd, 0x00, 0x00, 0x00, 0x00,
    0x80, 0x7e, 0x88, 0xbd, 0x00, 0x7e, 0x88, 0x3d, 0x00, 0x7e, 0x88, 0x3d,
    0x00, 0x00, 0x00, 0x00, 0x40, 0xbd, 0x4c, 0xbe, 0x40, 0xbd, 0x4c, 0x3e,
    0x40, 0xbd, 0x4c, 0xbe, 0x00, 0x00, 0x00, 0x00, 0x00, 0x7e, 0x88, 0x3d,
    0x00, 0x00, 0x00, 0x00, 0x80, 0x7e, 0x88, 0xbd, 0x00, 0x00, 0x00, 0x00,
    0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x80, 0x7e, 0x88, 0xbd,
    0xc0, 0x9d, 0xaa, 0xbe, 0x00, 0x7e, 0x88, 0x3d, 0xc0, 0xdc, 0xee, 0x3e,
    0xe8, 0x8d, 0x99, 0xbf, 0x20, 0xbd, 0xcc, 0x3e, 0x20, 0x7e, 0x88, 0xbe,
    0x80, 0x7e, 0x88, 0xbd, 0x38, 0xbd, 0xcc, 0xbf, 0x20, 0x7e, 0x08, 0x3f,
    0x20, 0x7e, 0x08, 0x3f, 0x50, 0x35, 0xc4, 0x3f, 0xe0, 0x8d, 0x19, 0x3f,
    0x20, 0x7e, 0x88, 0xbe, 0xc8, 0x15, 0xa2, 0xbf, 0x00, 0x00, 0x00, 0x00,
    0xa8, 0x9d, 0xaa, 0x3f, 0xc0, 0xdc, 0x6e, 0xbf, 0x40, 0xbd, 0x4c, 0xbe,
    0x28, 0x7e, 0x88, 0xbf, 0xc8, 0x15, 0xa2, 0xbf, 0x40, 0xbd, 0x4c, 0x3e,
    0x80, 0x7e, 0x88, 0xbd, 0x80, 0xec, 0x7f, 0x3f, 0x50, 0x35, 0xc4, 0xbf,
    0x20, 0x7e, 0x88, 0x3e, 0x28, 0x7e, 0x88, 0xbf, 0x00, 0x00, 0x00, 0x00,
    0x50, 0x35, 0xc4, 0xbf, 0xc8, 0x15, 0xa2, 0x3f, 0x88, 0x25, 0xb3, 0x3f,
    0x10, 0x45, 0xd5, 0x3f, 0x70, 0xad, 0xbb, 0x3f, 0x20, 0x7e, 0x88, 0x3e,
    0x30, 0xbd, 0x4c, 0xbf, 0x40, 0x7e, 0x08, 0xbe, 0xa8, 0x9d, 0xaa, 0x3f,
    0x24, 0x7e, 0x08, 0xc0, 0x80, 0x7e, 0x88, 0xbd, 0xd8, 0x54, 0xe6, 0xbf,
    0x24, 0x7e, 0x08, 0xc0, 0x20, 0x7e, 0x88, 0x3f, 0x00, 0x7e, 0x88, 0x3d,
    0x20, 0x7e, 0x88, 0x3e, 0x80, 0xec, 0x7f, 0xbf, 0x70, 0xad, 0x3b, 0x3f,
    0x00, 0x7e, 0x08, 0x3e, 0x20, 0x7e, 0x88, 0x3e, 0x20, 0x7e, 0x88, 0xbe,
    0xb0, 0xdc, 0x6e, 0x3f, 0x20, 0x7e, 0x08, 0x3f, 0x20, 0xbd, 0xcc, 0x3e,
    0xe8, 0x8d, 0x99, 0x3f, 0x00, 0x7e, 0x88, 0x3d, 0x40, 0xbd, 0x4c, 0xbe,
    0x40, 0xbd, 0x4c, 0xbe, 0x20, 0x7e, 0x88, 0x3e, 0xc0, 0x9d, 0xaa, 0xbe,
    0x40, 0xbd, 0x4c, 0xbe, 0x20, 0x7e, 0x08, 0x3f, 0x20, 0x7e, 0x08, 0xbf,
    0x30, 0xbd, 0x4c, 0x3f, 0x00, 0x00, 0x00, 0x00, 0x80, 0x7e, 0x88, 0xbd,
    0x00, 0x00, 0x00, 0x00, 0x80, 0x7e, 0x88, 0xbd, 0x00, 0x00, 0x00, 0x00,
    0x00, 0x7e, 0x88, 0x3d, 0x00, 0x7e, 0x88, 0x3d, 0x00, 0x7e, 0x88, 0x3d,
    0x00, 0x7e, 0x88, 0x3d, 0x00, 0x7e, 0x08, 0x3e, 0x00, 0x7e, 0x88, 0x3d,
    0x00, 0x7e, 0x88, 0x3d, 0x00, 0x00, 0x00, 0x00, 0x00, 0x7e, 0x08, 0x3e,
    0x80, 0x7e, 0x88, 0xbd, 0x80, 0x7e, 0x88, 0xbd, 0x80, 0x7e, 0x88, 0xbd,
    0x80, 0x7e, 0x88, 0xbd, 0x80, 0x7e, 0x88, 0xbd, 0x00, 0x00, 0x00, 0x00,
    0x40, 0xbd, 0x4c, 0xbe, 0xa8, 0x9d, 0xaa, 0x3f, 0x08, 0x06, 0x91, 0xbf,
    0x80, 0x7e, 0x88, 0xbd, 0x40, 0xbd, 0xcc, 0xbe, 0x20, 0x7e, 0x88, 0xbe,
    0x28, 0x7e, 0x88, 0xbf, 0x40, 0xbd, 0x4c, 0xbe, 0x80, 0xec, 0x7f, 0x3f,
    0x10, 0x45, 0xd5, 0x3f, 0x70, 0xad, 0xbb, 0x3f, 0x40, 0x7e, 0x08, 0xbe,
    0x40, 0xbd, 0x4c, 0x3e, 0x40, 0xbd, 0x4c, 0x3e, 0x70, 0xad, 0x3b, 0x3f,
    0x80, 0x7e, 0x88, 0xbd, 0x80, 0x7e, 0x88, 0xbd, 0xb0, 0x9d, 0x2a, 0xbf,
    0xc0, 0xdc, 0xee, 0xbe, 0x20, 0xbd, 0xcc, 0x3e, 0x40, 0xbd, 0x4c, 0xbe,
    0x20, 0x7e, 0x88, 0xbe, 0x00, 0x7e, 0x88, 0x3d, 0x00, 0x7e, 0x88, 0x3d,
    0x40, 0x7e, 0x08, 0xbe, 0x40, 0xbd, 0x4c, 0xbe, 0xb0, 0x9d, 0x2a, 0xbf,
    0x40, 0xbd, 0x4c, 0xbe, 0x20, 0x7e, 0x88, 0x3e, 0x00, 0x7e, 0x88, 0x3d,
    0x00, 0x7e, 0x88, 0x3d, 0x80, 0x7e, 0x88, 0xbd, 0x20, 0x7e, 0x88, 0xbe,
    0x00, 0x7e, 0x88, 0x3d, 0x00, 0x7e, 0x08, 0x3e, 0x80, 0x7e, 0x88, 0xbd,
    0x40, 0x7e, 0x08, 0xbe, 0x00, 0x00, 0x00, 0x00, 0x40, 0xbd, 0x4c, 0xbe,
    0x00, 0x00, 0x00, 0x00, 0x80, 0x7e, 0x88, 0xbd, 0xc0, 0x9d, 0xaa, 0xbe,
    0x40, 0xbd, 0x4c, 0x3e, 0x40, 0xbd, 0xcc, 0xbe, 0x40, 0xbd, 0x4c, 0x3e,
    0x20, 0x7e, 0x88, 0xbe, 0x20, 0x7e, 0x08, 0x3f, 0x30, 0xbd, 0x4c, 0xbf,
    0x00, 0x7e, 0x88, 0x3d, 0xc0, 0xdc, 0xee, 0xbe, 0x40, 0xbd, 0x4c, 0xbe,
    0x40, 0x7e, 0x08, 0xbe, 0x00, 0x00, 0x00, 0x00, 0x20, 0x7e, 0x08, 0xbf,
    0x00, 0x00, 0x00, 0x00, 0x00, 0x7e, 0x88, 0x3d, 0x40, 0x7e, 0x08, 0xbe,
    0x00, 0x00, 0x00, 0x00, 0x40, 0xbd, 0x4c, 0x3e, 0x00, 0x7e, 0x88, 0x3d,
    0x00, 0x00, 0x00, 0x00, 0xc0, 0x9d, 0xaa, 0xbe, 0x20, 0x7e, 0x88, 0x3e,
    0x40, 0xbd, 0xcc, 0xbe, 0x00, 0x7e, 0x08, 0x3e, 0x40, 0xbd, 0x4c, 0xbe,
    0x20, 0xbd, 0xcc, 0x3e, 0xb0, 0x9d, 0x2a, 0xbf, 0x80, 0x7e, 0x88, 0xbd,
    0xf0, 0x8d, 0x19, 0xbf, 0x40, 0x7e, 0x08, 0xbe, 0x80, 0x7e, 0x88, 0xbd,
    0x00, 0x00, 0x00, 0x00, 0x20, 0x7e, 0x08, 0xbf, 0x40, 0x7e, 0x08, 0xbe,
    0x40, 0xbd, 0x4c, 0x3e, 0x00, 0x00, 0x00, 0x00, 0x20, 0x7e, 0x88, 0xbe,
    0x40, 0xbd, 0x4c, 0x3e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x7e, 0x88, 0x3d,
    0xe8, 0x8d, 0x99, 0x3f, 0xd8, 0xd1, 0x1d, 0xc0, 0x9c, 0xe1, 0x2e, 0xc0,
    0x80, 0x7e, 0x88, 0xbd, 0x80, 0x7e, 0x88, 0xbd, 0xf0, 0xcc, 0x5d, 0x3f,
    0x20, 0xbd, 0xcc, 0x3e, 0x88, 0x25, 0xb3, 0x3f, 0x00, 0x7e, 0x08, 0x3e,
    0x00, 0xcd, 0x5d, 0xbf, 0x80, 0x7e, 0x88, 0xbd, 0xc0, 0xdc, 0xee, 0xbf,
    0x80, 0xec, 0x7f, 0x3f, 0xa0, 0x64, 0x77, 0xc0, 0xb0, 0x9d, 0x2a, 0xbf,
    0x00, 0x00, 0x00, 0x00, 0x38, 0xbd, 0xcc, 0xbf, 0x10, 0x45, 0xd5, 0x3f,
    0xe0, 0x8d, 0x19, 0x3f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x7e, 0x08, 0x3e,
    0x20, 0x7e, 0x88, 0x3e, 0x20, 0x7e, 0x88, 0xbe, 0x80, 0x7e, 0x88, 0xbd,
    0x80, 0x7e, 0x88, 0xbd, 0x00, 0x7e, 0x08, 0x3e, 0x00, 0x7e, 0x88, 0x3d,
    0x80, 0x7e, 0x88, 0xbd, 0x00, 0x00, 0x00, 0x00, 0x20, 0x7e, 0x88, 0xbe,
    0x80, 0x7e, 0x88, 0xbd, 0x00, 0x00, 0x00, 0x00, 0x00, 0x7e, 0x08, 0x3e,
    0x80, 0x7e, 0x88, 0xbd, 0x20, 0x7e, 0x88, 0xbe, 0x80, 0x7e, 0x88, 0xbd,
    0x00, 0x7e, 0x88, 0x3d, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
    0x00, 0x00, 0x00, 0x00, 0xc8, 0x15, 0xa2, 0x3f, 0x08, 0x06, 0x91, 0xbf,
    0x80, 0x7e, 0x88, 0xbd, 0x40, 0xbd, 0xcc, 0xbe, 0x40, 0x7e, 0x08, 0xbe,
    0xe8, 0x8d, 0x99, 0xbf, 0x40, 0x7e, 0x08, 0xbe, 0xe8, 0x8d, 0x99, 0x3f,
    0x30, 0xbd, 0xcc, 0x3f, 0x50, 0x35, 0xc4, 0x3f, 0x00, 0x7e, 0x88, 0x3d,
    0x00, 0x7e, 0x88, 0x3d, 0x00, 0x7e, 0x08, 0x3e, 0xf0, 0xcc, 0x5d, 0x3f,
    0x80, 0x7e, 0x88, 0xbd, 0x40, 0x7e, 0x08, 0xbe, 0x70, 0xad, 0x3b, 0xbf,
    0x40, 0xbd, 0xcc, 0xbe, 0x20, 0xbd, 0xcc, 0x3e, 0x00, 0x7e, 0x08, 0x3e,
    0xc0, 0x9d, 0xaa, 0xbe, 0x20, 0x7e, 0x88, 0x3e, 0x40, 0x7e, 0x08, 0xbe,
    0x00, 0x7e, 0x08, 0x3e, 0x40, 0xbd, 0x4c, 0xbe, 0xa0, 0x9d, 0xaa, 0x3e,
    0x70, 0xad, 0x3b, 0xbf, 0x80, 0x7e, 0x88, 0xbd, 0x20, 0x7e, 0x88, 0xbe,
    0x00, 0x00, 0x00, 0x00, 0x00, 0x7e, 0x88, 0x3d, 0x00, 0x00, 0x00, 0x00,
    0x20, 0x7e, 0x88, 0xbe, 0x00, 0x7e, 0x08, 0x3e, 0x00, 0x7e, 0x08, 0x3e,
    0x40, 0xbd, 0x4c, 0xbe, 0x80, 0x7e, 0x88, 0xbd, 0x20, 0x7e, 0x88, 0x3e,
    0x40, 0x7e, 0x08, 0xbe, 0x40, 0x7e, 0x08, 0xbe, 0xc0, 0x9d, 0xaa, 0xbe,
    0x20, 0xbd, 0xcc, 0x3e, 0x40, 0xbd, 0x4c, 0xbe, 0x00, 0x7e, 0x08, 0x3e,
    0x20, 0x7e, 0x88, 0xbe, 0x20, 0xbd, 0xcc, 0x3e, 0xf0, 0x8d, 0x19, 0xbf,
    0x40, 0x7e, 0x08, 0xbe, 0x20, 0x7e, 0x88, 0xbe, 0x20, 0x7e, 0x88, 0xbe,
    0x00, 0x7e, 0x88, 0x3d, 0x40, 0xbd, 0x4c, 0x3e, 0x40, 0xbd, 0x4c, 0xbe,
    0x80, 0x7e, 0x88, 0xbd, 0x40, 0xbd, 0x4c, 0x3e, 0x40, 0x7e, 0x08, 0xbe,
    0x40, 0x7e, 0x08, 0xbe, 0xa0, 0x9d, 0xaa, 0x3e, 0x20, 0x7e, 0x88, 0xbe,
    0x00, 0x7e, 0x88, 0x3d, 0xa8, 0x9d, 0xaa, 0x3f, 0xb8, 0xdc, 0xee, 0x3f,
    0xc0, 0xdc, 0x6e, 0xbf, 0x20, 0x7e, 0x88, 0x3f, 0x40, 0xbd, 0x4c, 0xbe,
    0x40, 0xbd, 0x4c, 0x3e, 0x40, 0xbd, 0x4c, 0xbe, 0x80, 0xec, 0xff, 0xbf,
    0x00, 0x00, 0x00, 0x00, 0xa0, 0x9d, 0x2a, 0x3f, 0x40, 0xbd, 0x4c, 0x3e,
    0x80, 0xec, 0x7f, 0xbf, 0xc0, 0xdc, 0xee, 0x3e, 0x9c, 0xe1, 0x2e, 0xc1,
    0x22, 0x7e, 0x88, 0x40, 0x00, 0x00, 0x00, 0x00, 0x8c, 0xa8, 0x7b, 0x40,
    0xc0, 0xdc, 0xee, 0x3e, 0xf9, 0x38, 0x14, 0xc1, 0x40, 0x7e, 0x08, 0xbe,
    0x00, 0x7e, 0x08, 0x3e, 0x00, 0x7e, 0x88, 0x3d, 0xc0, 0x9d, 0xaa, 0xbe,
    0x00, 0x7e, 0x88, 0x3d, 0x40, 0x7e, 0x08, 0xbe, 0x80, 0x7e, 0x88, 0xbd,
    0x00, 0x7e, 0x88, 0x3d, 0x40, 0x7e, 0x08, 0xbe, 0x00, 0x00, 0x00, 0x00,
    0x40, 0xbd, 0x4c, 0xbe, 0x40, 0xbd, 0x4c, 0xbe, 0x00, 0x7e, 0x88, 0x3d,
    0x80, 0x7e, 0x88, 0xbd, 0x80, 0x7e, 0x88, 0xbd, 0x40, 0xbd, 0x4c, 0xbe,
    0x00, 0x7e, 0x88, 0x3d, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
    0x00, 0x00, 0x00, 0x00, 0x40, 0x7e, 0x08, 0xbe, 0xc8, 0x15, 0xa2, 0x3f,
    0x28, 0x7e, 0x88, 0xbf, 0x00, 0x00, 0x00, 0x00, 0x40, 0xbd, 0xcc, 0xbe,
    0x40, 0xbd, 0x4c, 0xbe, 0xc8, 0x15, 0xa2, 0xbf, 0x40, 0xbd, 0x4c, 0xbe,
    0x20, 0x7e, 0x88, 0x3f, 0x50, 0x35, 0xc4, 0x3f, 0x50, 0x35, 0xc4, 0x3f,
    0x80, 0x7e, 0x88, 0xbd, 0x00, 0x7e, 0x08, 0x3e, 0x00, 0x7e, 0x08, 0x3e,
    0x70, 0xad, 0x3b, 0x3f, 0x40, 0x7e, 0x08, 0xbe, 0x40, 0x7e, 0x08, 0xbe,
    0xf0, 0x8d, 0x19, 0xbf, 0xc0, 0x9d, 0xaa, 0xbe, 0x20, 0xbd, 0xcc, 0x3e,
    0x00, 0x7e, 0x88, 0x3d, 0x40, 0xbd, 0x4c, 0xbe, 0x00, 0x7e, 0x88, 0x3d,
    0x00, 0x7e, 0x88, 0x3d, 0x00, 0x00, 0x00, 0x00, 0x40, 0x7e, 0x08, 0xbe,
    0x00, 0x00, 0x00, 0x00, 0xf0, 0x8d, 0x19, 0xbf, 0x80, 0x7e, 0x88, 0xbd,
    0x20, 0x7e, 0x88, 0xbe, 0x00, 0x7e, 0x08, 0x3e, 0x80, 0x7e, 0x88, 0xbd,
    0x00, 0x00, 0x00, 0x00, 0x40, 0xbd, 0x4c, 0xbe, 0x00, 0x7e, 0x08, 0x3e,
    0x00, 0x7e, 0x08, 0x3e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
    0x00, 0x7e, 0x08, 0x3e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x7e, 0x88, 0x3d,
    0x40, 0x7e, 0x08, 0xbe, 0x00, 0x7e, 0x08, 0x3e, 0x00, 0x7e, 0x88, 0x3d,
    0x00, 0x7e, 0x08, 0x3e, 0x40, 0x7e, 0x08, 0xbe, 0x00, 0x7e, 0x88, 0x3d,
    0xb0, 0x9d, 0x2a, 0xbf, 0x80, 0x7e, 0x88, 0xbd, 0x40, 0x7e, 0x08, 0xbe,
    0x00, 0x7e, 0x88, 0x3d, 0x40, 0x7e, 0x08, 0xbe, 0x00, 0x7e, 0x88, 0x3d,
    0x80, 0x7e, 0x88, 0xbd, 0x00, 0x7e, 0x88, 0x3d, 0x40, 0xbd, 0x4c, 0x3e,
    0x00, 0x7e, 0x88, 0x3d, 0x00, 0x00, 0x00, 0x00, 0x00, 0x7e, 0x88, 0x3d,
    0x80, 0x7e, 0x88, 0xbd, 0x40, 0xbd, 0x4c, 0x3e, 0x30, 0xbd, 0xcc, 0x3f,
    0x80, 0xec, 0xff, 0x3f, 0x00, 0x7e, 0x88, 0x3d, 0x00, 0x7e, 0x08, 0x3e,
    0x80, 0x7e, 0x88, 0xbd, 0x40, 0x7e, 0x08, 0xbe, 0x40, 0xbd, 0xcc, 0xbe,
    0x14, 0xc2, 0x0c, 0xc0, 0xc0, 0xdc, 0xee, 0xbe, 0x20, 0x7e, 0x88, 0x3f,
    0x00, 0x7e, 0x08, 0x3e, 0xc0, 0x9d, 0xaa, 0xbe, 0x20, 0xbd, 0xcc, 0x3e,
    0x16, 0x45, 0xd5, 0xc0, 0xa8, 0x9d, 0xaa, 0x3f, 0x00, 0x7e, 0x88, 0x3d,
    0xac, 0x20, 0x73, 0x40, 0x30, 0xbd, 0x4c, 0x3f, 0x18, 0x45, 0x55, 0xc0,
    0x40, 0xbd, 0x4c, 0xbe, 0x80, 0x7e, 0x88, 0xbd, 0x00, 0x00, 0x00, 0x00,
    0x40, 0xbd, 0x4c, 0xbe, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
    0x80, 0x7e, 0x88, 0xbd, 0x40, 0x7e, 0x08, 0xbe, 0x40, 0x7e, 0x08, 0xbe,
    0x00, 0x00, 0x00, 0x00, 0x00, 0x7e, 0x88, 0x3d, 0x00, 0x00, 0x00, 0x00,
    0x80, 0x7e, 0x88, 0xbd, 0x80, 0x7e, 0x88, 0xbd, 0x80, 0x7e, 0x88, 0xbd,
    0xc0, 0x9d, 0xaa, 0xbe, 0x00, 0x7e, 0x88, 0x3d, 0x80, 0x7e, 0x88, 0xbd,
    0x80, 0x7e, 0x88, 0xbd, 0x00, 0x7e, 0x08, 0x3e, 0x20, 0x7e, 0x88, 0xbe,
    0x70, 0xad, 0xbb, 0x3f, 0x08, 0x06, 0x91, 0xbf, 0x00, 0x00, 0x00, 0x00,
    0x20, 0x7e, 0x08, 0xbf, 0x20, 0x7e, 0x88, 0xbe, 0xe8, 0x8d, 0x99, 0xbf,
    0x20, 0x7e, 0x88, 0xbe, 0x20, 0x7e, 0x88, 0x3f, 0x10, 0x45, 0xd5, 0x3f,
    0x50, 0x35, 0xc4, 0x3f, 0x00, 0x00, 0x00, 0x00, 0x40, 0xbd, 0x4c, 0x3e,
    0x40, 0xbd, 0x4c, 0x3e, 0xb0, 0xdc, 0x6e, 0x3f, 0x40, 0x7e, 0x08, 0xbe,
    0x40, 0x7e, 0x08, 0xbe, 0x30, 0xbd, 0x4c, 0xbf, 0xc0, 0xdc, 0xee, 0xbe,
    0x20, 0x7e, 0x08, 0x3f, 0x00, 0x7e, 0x88, 0x3d, 0x20, 0x7e, 0x88, 0xbe,
    0x20, 0x7e, 0x88, 0x3e, 0x00, 0x7e, 0x88, 0x3d, 0x00, 0x7e, 0x08, 0x3e,
    0x20, 0x7e, 0x88, 0xbe, 0x40, 0x7e, 0x08, 0xbe, 0x30, 0xbd, 0x4c, 0xbf,
    0x40, 0xbd, 0x4c, 0xbe, 0x80, 0x7e, 0x88, 0xbd, 0x40, 0xbd, 0x4c, 0x3e,
    0x00, 0x7e, 0x88, 0x3d, 0x40, 0x7e, 0x08, 0xbe, 0x80, 0x7e, 0x88, 0xbd,
    0x00, 0x00, 0x00, 0x00, 0x00, 0x7e, 0x08, 0x3e, 0x40, 0xbd, 0x4c, 0xbe,
    0x40, 0xbd, 0x4c, 0x3e, 0x00, 0x00, 0x00, 0x00, 0x40, 0xbd, 0x4c, 0xbe,
    0x80, 0x7e, 0x88, 0xbd, 0x80, 0x7e, 0x88, 0xbd, 0x20, 0x7e, 0x88, 0x3e,
    0x00, 0x7e, 0x08, 0x3e, 0x00, 0x7e, 0x08, 0x3e, 0x20, 0x7e, 0x88, 0xbe,
    0x00, 0x00, 0x00, 0x00, 0x30, 0xbd, 0x4c, 0xbf, 0x80, 0x7e, 0x88, 0xbd,
    0x40, 0x7e, 0x08, 0xbe, 0xa0, 0x9d, 0xaa, 0x3e, 0x00, 0x00, 0x00, 0x00,
    0x00, 0x7e, 0x88, 0x3d, 0x00, 0x00, 0x00, 0x00, 0x00, 0x7e, 0x08, 0x3e,
    0x40, 0xbd, 0x4c, 0x3e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x7e, 0x08, 0x3e,
    0x80, 0x7e, 0x88, 0xbd, 0x40, 0xbd, 0x4c, 0xbe, 0x80, 0x7e, 0x88, 0xbd,
    0x00, 0x00, 0x00, 0x00, 0x20, 0xbd, 0xcc, 0x3e, 0x40, 0x7e, 0x08, 0xbe,
    0x40, 0x7e, 0x08, 0xbe, 0x00, 0x7e, 0x88, 0x3d, 0x20, 0x7e, 0x88, 0x3e,
    0x40, 0x7e, 0x08, 0xbe, 0xc0, 0xdc, 0xee, 0xbe, 0x40, 0xbd, 0xcc, 0xbe,
    0xc0, 0x9d, 0xaa, 0xbe, 0x40, 0xbd, 0x4c, 0x3e, 0xb0, 0xdc, 0x6e, 0x3f,
    0x40, 0xbd, 0xcc, 0xbe, 0xa0, 0x64, 0xf7, 0xbf, 0x30, 0xbd, 0x4c, 0xbf,
    0x00, 0x7e, 0x88, 0x3d, 0x70, 0xad, 0xbb, 0x3f, 0xf4, 0x49, 0x15, 0x40,
    0x20, 0xbd, 0xcc, 0x3e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x7e, 0x88, 0x3d,
    0x00, 0x00, 0x00, 0x00, 0x00, 0x7e, 0x88, 0x3d, 0x00, 0x00, 0x00, 0x00,
    0x80, 0x7e, 0x88, 0xbd, 0x00, 0x7e, 0x88, 0x3d, 0x40, 0x7e, 0x08, 0xbe,
    0x00, 0x00, 0x00, 0x00, 0x00, 0x7e, 0x88, 0x3d, 0x00, 0x7e, 0x88, 0x3d,
    0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x40, 0x7e, 0x08, 0xbe,
    0x00, 0x00, 0x00, 0x00, 0x40, 0xbd, 0xcc, 0xbe, 0x40, 0x7e, 0x08, 0xbe,
    0x00, 0x00, 0x00, 0x00, 0x40, 0xbd, 0x4c, 0xbe, 0x00, 0x7e, 0x88, 0x3d,
    0x80, 0x7e, 0x88, 0xbd, 0xc8, 0x15, 0xa2, 0x3f, 0xe8, 0x8d, 0x99, 0xbf,
    0x80, 0x7e, 0x88, 0xbd, 0x20, 0x7e, 0x08, 0xbf, 0x20, 0x7e, 0x88, 0xbe,
    0x28, 0x7e, 0x88, 0xbf, 0x20, 0x7e, 0x88, 0xbe, 0x80, 0xec, 0x7f, 0x3f,
    0x70, 0xad, 0xbb, 0x3f, 0xa8, 0x9d, 0xaa, 0x3f, 0x40, 0x7e, 0x08, 0xbe,
    0x00, 0x7e, 0x88, 0x3d, 0x40, 0xbd, 0x4c, 0x3e, 0x30, 0xbd, 0x4c, 0x3f,
    0x40, 0x7e, 0x08, 0xbe, 0x80, 0x7e, 0x88, 0xbd, 0xb0, 0x9d, 0x2a, 0xbf,
    0x20, 0x7e, 0x08, 0xbf, 0x20, 0x7e, 0x08, 0x3f, 0x00, 0x00, 0x00, 0x00,
    0x20, 0x7e, 0x88, 0xbe, 0xc0, 0xdc, 0xee, 0x3e, 0xa0, 0x9d, 0xaa, 0x3e,
    0x00, 0x00, 0x00, 0x00, 0xc0, 0x9d, 0xaa, 0xbe, 0x80, 0x7e, 0x88, 0xbd,
    0x70, 0xad, 0x3b, 0xbf, 0x20, 0x7e, 0x08, 0xbf, 0xc0, 0x9d, 0xaa, 0xbe,
    0x20, 0x7e, 0x88, 0x3e, 0x40, 0x7e, 0x08, 0xbe, 0x00, 0x7e, 0x88, 0x3d,
    0x40, 0xbd, 0x4c, 0x3e, 0x40, 0xbd, 0xcc, 0xbe, 0x00, 0x7e, 0x08, 0x3e,
    0x00, 0x7e, 0x88, 0x3d, 0xa0, 0x9d, 0xaa, 0x3e, 0x00, 0x00, 0x00, 0x00,
    0xb0, 0x9d, 0x2a, 0xbf, 0x00, 0x00, 0x00, 0x00, 0x80, 0x7e, 0x88, 0xbd,
    0x20, 0xbd, 0xcc, 0x3e, 0x00, 0x7e, 0x08, 0x3e, 0x00, 0x7e, 0x88, 0x3d,
    0xc0, 0x9d, 0xaa, 0xbe, 0x00, 0x7e, 0x88, 0x3d, 0x70, 0xad, 0x3b, 0xbf,
    0xf0, 0x8d, 0x19, 0xbf, 0xc0, 0x9d, 0xaa, 0xbe, 0x00, 0x7e, 0x08, 0x3e,
    0x40, 0xbd, 0x4c, 0xbe, 0x00, 0x7e, 0x08, 0x3e, 0x00, 0x7e, 0x08, 0x3e,
    0x20, 0x7e, 0x88, 0xbe, 0x40, 0xbd, 0x4c, 0x3e, 0x80, 0x7e, 0x88, 0xbd,
    0x20, 0xbd, 0xcc, 0x3e, 0x00, 0x00, 0x00, 0x00, 0x20, 0x7e, 0x08, 0xbf,
    0x80, 0x7e, 0x88, 0xbd, 0xa0, 0x9d, 0xaa, 0x3e, 0x20, 0x7e, 0x88, 0xbe,
    0x80, 0x7e, 0x88, 0xbd, 0x20, 0x7e, 0x08, 0x3f, 0x00, 0x00, 0x00, 0x00,
    0x00, 0x7e, 0x08, 0x3e, 0x00, 0x00, 0x00, 0x00, 0xb0, 0xdc, 0x6e, 0x3f,
    0x40, 0x7e, 0x08, 0xbe, 0x20, 0xbd, 0xcc, 0x3e, 0x00, 0x7e, 0x08, 0x3e,
    0x60, 0xf1, 0x3f, 0x40, 0x20, 0xbd, 0xcc, 0x3e, 0x30, 0xbd, 0x4c, 0xbf,
    0xa0, 0x64, 0xf7, 0xbf, 0x00, 0x7e, 0x08, 0x3e, 0xdf, 0xaf, 0x9b, 0xc0,
    0x20, 0xbd, 0xcc, 0x3e, 0xb8, 0xdc, 0xee, 0x3f, 0x00, 0x00, 0x00, 0x00,
    0x40, 0x7e, 0x08, 0xbe, 0x00, 0x00, 0x00, 0x00, 0x80, 0x7e, 0x88, 0xbd,
    0x00, 0x7e, 0x88, 0x3d, 0x80, 0x7e, 0x88, 0xbd, 0x00, 0x00, 0x00, 0x00,
    0x40, 0xbd, 0x4c, 0xbe, 0x00, 0x7e, 0x88, 0x3d, 0x00, 0x00, 0x00, 0x00,
    0x40, 0xbd, 0x4c, 0x3e, 0x40, 0x7e, 0x08, 0xbe, 0x00, 0x00, 0x00, 0x00,
    0x40, 0xbd, 0x4c, 0xbe, 0x00, 0x7e, 0x88, 0x3d, 0xf0, 0x8d, 0x19, 0xbf,
    0x40, 0xbd, 0x4c, 0xbe, 0x00, 0x00, 0x00, 0x00, 0x40, 0xbd, 0x4c, 0xbe,
    0x40, 0xbd, 0x4c, 0x3e, 0x00, 0x00, 0x00, 0x00, 0x88, 0x25, 0xb3, 0x3f,
    0xe8, 0x8d, 0x99, 0xbf, 0x40, 0xbd, 0x4c, 0xbe, 0xc0, 0xdc, 0xee, 0xbe,
    0x40, 0x7e, 0x08, 0xbe, 0xe8, 0x8d, 0x99, 0xbf, 0x20, 0x7e, 0x88, 0xbe,
    0x00, 0x06, 0x91, 0x3f, 0x50, 0x35, 0xc4, 0x3f, 0xc8, 0x15, 0xa2, 0x3f,
    0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x7e, 0x08, 0x3e,
    0x30, 0xbd, 0x4c, 0x3f, 0x40, 0x7e, 0x08, 0xbe, 0x00, 0x7e, 0x88, 0x3d,
    0x20, 0x7e, 0x08, 0xbf, 0x20, 0x7e, 0x08, 0xbf, 0xe0, 0x8d, 0x19, 0x3f,
    0x00, 0x7e, 0x88, 0x3d, 0x00, 0x00, 0x00, 0x00, 0x40, 0xbd, 0x4c, 0x3e,
    0x00, 0x00, 0x00, 0x00, 0x80, 0x7e, 0x88, 0xbd, 0x80, 0x7e, 0x88, 0xbd,
    0x00, 0x7e, 0x88, 0x3d, 0x40, 0xbd, 0xcc, 0xbe, 0x80, 0x7e, 0x88, 0xbd,
    0x20, 0x7e, 0x88, 0xbe, 0x40, 0x7e, 0x08, 0xbe, 0x80, 0x7e, 0x88, 0xbd,
    0x00, 0x7e, 0x08, 0x3e, 0xa0, 0x9d, 0xaa, 0x3e, 0x00, 0x00, 0x00, 0x00,
    0x00, 0x7e, 0x08, 0x3e, 0x00, 0x7e, 0x88, 0x3d, 0x00, 0x7e, 0x08, 0x3e,
    0x40, 0xbd, 0x4c, 0x3e, 0x20, 0x7e, 0x88, 0xbe, 0x80, 0x7e, 0x88, 0xbd,
    0x00, 0x7e, 0x88, 0x3d, 0x40, 0xbd, 0x4c, 0x3e, 0x00, 0x7e, 0x08, 0x3e,
    0x00, 0x7e, 0x88, 0x3d, 0x40, 0x7e, 0x08, 0xbe, 0x00, 0x7e, 0x88, 0x3d,
    0xc0, 0xdc, 0xee, 0xbe, 0x20, 0x7e, 0x88, 0xbe, 0x20, 0x7e, 0x88, 0xbe,
    0xc0, 0x9d, 0xaa, 0xbe, 0x00, 0x7e, 0x88, 0x3d, 0x20, 0x7e, 0x88, 0x3e,
    0xa0, 0x9d, 0xaa, 0x3e, 0x00, 0x00, 0x00, 0x00, 0x20, 0x7e, 0x88, 0x3e,
    0x40, 0x7e, 0x08, 0xbe, 0xa0, 0x9d, 0xaa, 0x3e, 0x00, 0x7e, 0x08, 0x3e,
    0x40, 0xbd, 0x4c, 0xbe, 0x40, 0x7e, 0x08, 0xbe, 0x70, 0xad, 0x3b, 0xbf,
    0xa0, 0x9d, 0x2a, 0x3f, 0x00, 0x7e, 0x08, 0x3e, 0x00, 0x7e, 0x08, 0x3e,
    0x80, 0x7e, 0x88, 0xbd, 0xa0, 0x9d, 0x2a, 0x3f, 0x80, 0x7e, 0x88, 0xbd,
    0x80, 0x7e, 0x88, 0xbd, 0xc0, 0x9d, 0xaa, 0xbe, 0x00, 0x7e, 0x88, 0x3d,
    0xa0, 0x9d, 0xaa, 0x3e, 0x80, 0xec, 0xff, 0x3f, 0xc0, 0xdc, 0xee, 0x3e,
    0xb0, 0x9d, 0x2a, 0xbf, 0x20, 0x7e, 0x08, 0x3f, 0x40, 0x7e, 0x08, 0xbe,
    0xbc, 0xdc, 0x6e, 0xc0, 0x20, 0x7e, 0x08, 0xbf, 0xa0, 0x9d, 0x2a, 0x3f,
    0x00, 0x7e, 0x88, 0x3d, 0x40, 0x7e, 0x08, 0xbe, 0x00, 0x00, 0x00, 0x00,
    0x40, 0x7e, 0x08, 0xbe, 0x00, 0x00, 0x00, 0x00, 0x40, 0x7e, 0x08, 0xbe,
    0x00, 0x00, 0x00, 0x00, 0x00, 0x7e, 0x88, 0x3d, 0x00, 0x7e, 0x88, 0x3d,
    0x80, 0x7e, 0x88, 0xbd, 0x00, 0x7e, 0x88, 0x3d, 0x00, 0x7e, 0x08, 0x3e,
    0x80, 0x7e, 0x88, 0xbd, 0x40, 0xbd, 0x4c, 0xbe, 0x00, 0x7e, 0x88, 0x3d,
    0x70, 0xad, 0x3b, 0xbf, 0x00, 0x00, 0x00, 0x00, 0x80, 0x7e, 0x88, 0xbd,
    0x80, 0x7e, 0x88, 0xbd, 0x80, 0x7e, 0x88, 0xbd, 0x40, 0x7e, 0x08, 0xbe,
    0x50, 0x35, 0xc4, 0x3f, 0xc8, 0x15, 0xa2, 0xbf, 0x20, 0x7e, 0x88, 0xbe,
    0x20, 0x7e, 0x88, 0xbe, 0x40, 0x7e, 0x08, 0xbe, 0xc8, 0x15, 0xa2, 0xbf,
    0x00, 0x7e, 0x88, 0x3d, 0x00, 0x06, 0x91, 0x3f, 0xf8, 0xcc, 0xdd, 0x3f,
    0xf0, 0xcc, 0x5d, 0x3f, 0x80, 0x7e, 0x88, 0xbd, 0x00, 0x7e, 0x88, 0x3d,
    0x00, 0x00, 0x00, 0x00, 0x80, 0xec, 0x7f, 0x3f, 0x00, 0x7e, 0x08, 0x3e,
    0x40, 0xbd, 0x4c, 0xbe, 0x70, 0xad, 0x3b, 0xbf, 0x80, 0x7e, 0x88, 0xbd,
    0x20, 0x7e, 0x88, 0x3e, 0x00, 0x00, 0x00, 0x00, 0xa0, 0x9d, 0xaa, 0x3e,
    0x40, 0xbd, 0x4c, 0x3e, 0x00, 0x7e, 0x08, 0x3e, 0x00, 0x00, 0x00, 0x00,
    0x80, 0x7e, 0x88, 0xbd, 0x00, 0x7e, 0x88, 0x3d, 0xc0, 0x9d, 0xaa, 0xbe,
    0x40, 0xbd, 0x4c, 0xbe, 0x40, 0xbd, 0x4c, 0xbe, 0x40, 0xbd, 0xcc, 0xbe,
    0x80, 0x7e, 0x88, 0xbd, 0x00, 0x7e, 0x88, 0x3d, 0x40, 0xbd, 0x4c, 0x3e,
    0x00, 0x7e, 0x88, 0x3d, 0x00, 0x00, 0x00, 0x00, 0x80, 0x7e, 0x88, 0xbd,
    0x00, 0x7e, 0x88, 0x3d, 0x00, 0x7e, 0x08, 0x3e, 0x40, 0xbd, 0x4c, 0xbe,
    0x80, 0x7e, 0x88, 0xbd, 0x00, 0x7e, 0x88, 0x3d, 0x40, 0xbd, 0x4c, 0x3e,
    0x80, 0x7e, 0x88, 0xbd, 0x00, 0x00, 0x00, 0x00, 0x20, 0x7e, 0x88, 0xbe,
    0x00, 0x7e, 0x88, 0x3d, 0xc0, 0x9d, 0xaa, 0xbe, 0x40, 0x7e, 0x08, 0xbe,
    0x80, 0x7e, 0x88, 0xbd, 0x20, 0x7e, 0x88, 0xbe, 0x00, 0x00, 0x00, 0x00,
    0x00, 0x7e, 0x08, 0x3e, 0xa0, 0x9d, 0xaa, 0x3e, 0x80, 0x7e, 0x88, 0xbd,
    0x00, 0x7e, 0x08, 0x3e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x7e, 0x88, 0x3d,
    0x00, 0x7e, 0x08, 0x3e, 0x00, 0x00, 0x00, 0x00, 0x80, 0x7e, 0x88, 0xbd,
    0x30, 0xbd, 0x4c, 0xbf, 0x20, 0x7e, 0x88, 0x3f, 0x40, 0xbd, 0xcc, 0xbe,
    0xc0, 0xdc, 0xee, 0xbe, 0x00, 0x00, 0x00, 0x00, 0xa0, 0x9d, 0x2a, 0x3f,
    0x20, 0x7e, 0x88, 0x3e, 0x40, 0xbd, 0x4c, 0xbe, 0x00, 0x00, 0x00, 0x00,
    0x30, 0xbd, 0x4c, 0xbf, 0x00, 0x7e, 0x88, 0x3d, 0xe8, 0x8d, 0x99, 0xbf,
    0xa0, 0x9d, 0xaa, 0x3e, 0x80, 0x7e, 0x88, 0xbd, 0xe8, 0x8d, 0x99, 0x3f,
    0x40, 0x7e, 0x08, 0xbe, 0xf8, 0x49, 0x15, 0xc0, 0x80, 0x7e, 0x88, 0xbd,
    0x80, 0x7e, 0x88, 0xbd, 0x00, 0x7e, 0x88, 0x3d, 0x40, 0x7e, 0x08, 0xbe,
    0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
    0x00, 0x00, 0x00, 0x00, 0x80, 0x7e, 0x88, 0xbd, 0x00, 0x7e, 0x88, 0x3d,
    0x00, 0x7e, 0x08, 0x3e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
    0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xc0, 0x9d, 0xaa, 0xbe,
    0x00, 0x7e, 0x88, 0x3d, 0x70, 0xad, 0x3b, 0xbf, 0x00, 0x00, 0x00, 0x00,
    0x00, 0x00, 0x00, 0x00, 0x40, 0x7e, 0x08, 0xbe, 0x80, 0x7e, 0x88, 0xbd,
    0x00, 0x00, 0x00, 0x00, 0x50, 0x35, 0xc4, 0x3f, 0x70, 0xad, 0xbb, 0xbf,
    0x80, 0x7e, 0x88, 0xbd, 0x00, 0x7e, 0x08, 0x3e, 0x40, 0xbd, 0x4c, 0xbe,
    0xe8, 0x8d, 0x99, 0xbf, 0x20, 0x7e, 0x88, 0x3e, 0x88, 0x25, 0xb3, 0x3f,
    0xf8, 0xcc, 0xdd, 0x3f, 0x80, 0xec, 0x7f, 0x3f, 0x80, 0x7e, 0x88, 0xbd,
    0x00, 0x7e, 0x88, 0x3d, 0x40, 0xbd, 0x4c, 0xbe, 0x88, 0x25, 0xb3, 0x3f,
    0x00, 0x7e, 0x88, 0x3d, 0x80, 0x7e, 0x88, 0xbd, 0x70, 0xad, 0x3b, 0xbf,
    0x40, 0x7e, 0x08, 0xbe, 0x20, 0x7e, 0x88, 0x3e, 0x80, 0x7e, 0x88, 0xbd,
    0x40, 0xbd, 0x4c, 0x3e, 0xa0, 0x9d, 0xaa, 0x3e, 0x40, 0xbd, 0x4c, 0x3e,
    0x40, 0x7e, 0x08, 0xbe, 0x40, 0xbd, 0x4c, 0xbe, 0x00, 0x7e, 0x08, 0x3e,
    0xc0, 0x9d, 0xaa, 0xbe, 0xc0, 0x9d, 0xaa, 0xbe, 0xc0, 0xdc, 0xee, 0xbe,
    0xf0, 0x8d, 0x19, 0xbf, 0x00, 0x00, 0x00, 0x00, 0x80, 0x7e, 0x88, 0xbd,
    0x00, 0x7e, 0x88, 0x3d, 0x40, 0xbd, 0x4c, 0xbe, 0x00, 0x7e, 0x08, 0x3e,
    0x00, 0x7e, 0x88, 0x3d, 0x00, 0x7e, 0x88, 0x3d, 0x20, 0x7e, 0x88, 0x3e,
    0x00, 0x7e, 0x88, 0x3d, 0x80, 0x7e, 0x88, 0xbd, 0x00, 0x7e, 0x88, 0x3d,
    0x20, 0x7e, 0x88, 0x3e, 0x20, 0x7e, 0x88, 0x3e, 0x00, 0x00, 0x00, 0x00,
    0x20, 0x7e, 0x88, 0xbe, 0x00, 0x7e, 0x88, 0x3d, 0x40, 0xbd, 0x4c, 0xbe,
    0x20, 0x7e, 0x88, 0xbe, 0x40, 0xbd, 0xcc, 0xbe, 0x20, 0x7e, 0x08, 0xbf,
    0x80, 0x7e, 0x88, 0xbd, 0x00, 0x00, 0x00, 0x00, 0x00, 0x7e, 0x08, 0x3e,
    0x20, 0x7e, 0x88, 0xbe, 0x00, 0x7e, 0x88, 0x3d, 0x00, 0x7e, 0x88, 0x3d,
    0x00, 0x00, 0x00, 0x00, 0x20, 0x7e, 0x88, 0x3e, 0x00, 0x00, 0x00, 0x00,
    0x80, 0x7e, 0x88, 0xbd, 0x20, 0x7e, 0x88, 0xbe, 0x10, 0x45, 0xd5, 0x3f,
    0x40, 0xbd, 0xcc, 0xbe, 0x30, 0xbd, 0x4c, 0xbf, 0x00, 0x7e, 0x08, 0x3e,
    0x00, 0x7e, 0x88, 0x3d, 0xc0, 0xdc, 0xee, 0x3e, 0xf0, 0x8d, 0x19, 0xbf,
    0xa0, 0x9d, 0xaa, 0x3e, 0xb0, 0x9d, 0x2a, 0xbf, 0x00, 0x00, 0x00, 0x00,
    0x24, 0x7e, 0x08, 0xc0, 0xc0, 0xdc, 0xee, 0x3e, 0xc0, 0xdc, 0xee, 0xbe,
    0x80, 0xec, 0x7f, 0x3f, 0x80, 0x7e, 0x88, 0xbd, 0xbc, 0x59, 0x26, 0xc0,
    0xc0, 0x9d, 0xaa, 0xbe, 0x40, 0x7e, 0x08, 0xbe, 0x40, 0x7e, 0x08, 0xbe,
    0x40, 0x7e, 0x08, 0xbe, 0x80, 0x7e, 0x88, 0xbd, 0x40, 0xbd, 0x4c, 0x3e,
    0x00, 0x00, 0x00, 0x00, 0x40, 0x7e, 0x08, 0xbe, 0x80, 0x7e, 0x88, 0xbd,
    0x80, 0x7e, 0x88, 0xbd, 0x00, 0x7e, 0x08, 0x3e, 0x80, 0x7e, 0x88, 0xbd,
    0x00, 0x7e, 0x88, 0x3d, 0x40, 0x7e, 0x08, 0xbe, 0x00, 0x00, 0x00, 0x00,
    0x00, 0x7e, 0x88, 0x3d, 0x00, 0x7e, 0x88, 0x3d, 0xf0, 0x8d, 0x19, 0xbf,
    0x80, 0x7e, 0x88, 0xbd, 0x00, 0x00, 0x00, 0x00, 0x40, 0x7e, 0x08, 0xbe,
    0x40, 0x7e, 0x08, 0xbe, 0x00, 0x00, 0x00, 0x00, 0x70, 0xad, 0xbb, 0x3f,
    0x90, 0x25, 0xb3, 0xbf, 0x40, 0x7e, 0x08, 0xbe, 0x80, 0x7e, 0x88, 0xbd,
    0x40, 0x7e, 0x08, 0xbe, 0xe8, 0x8d, 0x99, 0xbf, 0x40, 0xbd, 0x4c, 0x3e,
    0x10, 0x45, 0xd5, 0x3f, 0xf8, 0xcc, 0xdd, 0x3f, 0x20, 0xbd, 0xcc, 0x3e,
    0x40, 0x7e, 0x08, 0xbe, 0xa0, 0x9d, 0xaa, 0x3e, 0x40, 0xbd, 0xcc, 0xbe,
    0x20, 0x7e, 0x88, 0x3f, 0x40, 0x7e, 0x08, 0xbe, 0x40, 0x7e, 0x08, 0xbe,
    0x30, 0xbd, 0x4c, 0xbf, 0x00, 0x7e, 0x88, 0x3d, 0x00, 0x7e, 0x88, 0x3d,
    0x00, 0x7e, 0x08, 0x3e, 0x00, 0x7e, 0x08, 0x3e, 0x00, 0x00, 0x00, 0x00,
    0x80, 0x7e, 0x88, 0xbd, 0x40, 0xbd, 0x4c, 0xbe, 0x40, 0xbd, 0x4c, 0xbe,
    0x00, 0x7e, 0x88, 0x3d, 0x40, 0xbd, 0x4c, 0xbe, 0x40, 0xbd, 0x4c, 0xbe,
    0x40, 0xbd, 0xcc, 0xbe, 0x40, 0xbd, 0xcc, 0xbe, 0x00, 0x7e, 0x88, 0x3d,
    0x00, 0x00, 0x00, 0x00, 0x00, 0x7e, 0x08, 0x3e, 0x20, 0x7e, 0x88, 0xbe,
    0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x40, 0x7e, 0x08, 0xbe,
    0x00, 0x00, 0x00, 0x00, 0x80, 0x7e, 0x88, 0xbd, 0x00, 0x7e, 0x08, 0x3e,
    0x80, 0x7e, 0x88, 0xbd, 0x00, 0x7e, 0x08, 0x3e, 0x80, 0x7e, 0x88, 0xbd,
    0x80, 0x7e, 0x88, 0xbd, 0x40, 0xbd, 0x4c, 0xbe, 0x40, 0xbd, 0x4c, 0x3e,
    0x40, 0xbd, 0x4c, 0xbe, 0xc0, 0x9d, 0xaa, 0xbe, 0x40, 0xbd, 0x4c, 0xbe,
    0xc0, 0xdc, 0xee, 0xbe, 0x40, 0x7e, 0x08, 0xbe, 0x80, 0x7e, 0x88, 0xbd,
    0x80, 0x7e, 0x88, 0xbd, 0x40, 0x7e, 0x08, 0xbe, 0x40, 0xbd, 0x4c, 0x3e,
    0x00, 0x7e, 0x88, 0x3d, 0x80, 0x7e, 0x88, 0xbd, 0x00, 0x00, 0x00, 0x00,
    0x20, 0x7e, 0x88, 0xbe, 0x00, 0x00, 0x00, 0x00, 0x20, 0x7e, 0x88, 0x3e,
    0x80, 0xec, 0x7f, 0x3f, 0x20, 0x7e, 0x88, 0x3e, 0xf0, 0xcc, 0x5d, 0x3f,
    0x40, 0x7e, 0x08, 0xbe, 0x20, 0xbd, 0xcc, 0x3e, 0xf0, 0xcc, 0x5d, 0x3f,
    0x20, 0x7e, 0x08, 0x3f, 0xa0, 0x9d, 0x2a, 0x3f, 0x00, 0x7e, 0x88, 0x3d,
    0x00, 0x7e, 0x08, 0x3e, 0x38, 0xbd, 0xcc, 0xbf, 0xf0, 0xcc, 0x5d, 0x3f,
    0x00, 0x7e, 0x08, 0x3e, 0x20, 0xbd, 0xcc, 0x3e, 0x40, 0xbd, 0x4c, 0xbe,
    0xa0, 0x64, 0xf7, 0xbf, 0x30, 0xbd, 0x4c, 0xbf, 0x40, 0xbd, 0x4c, 0x3e,
    0x40, 0x7e, 0x08, 0xbe, 0x40, 0xbd, 0x4c, 0xbe, 0x00, 0x7e, 0x08, 0x3e,
    0x00, 0x7e, 0x88, 0x3d, 0x00, 0x00, 0x00, 0x00, 0x40, 0x7e, 0x08, 0xbe,
    0x00, 0x00, 0x00, 0x00, 0x80, 0x7e, 0x88, 0xbd, 0x00, 0x7e, 0x08, 0x3e,
    0x80, 0x7e, 0x88, 0xbd, 0x40, 0x7e, 0x08, 0xbe, 0x40, 0x7e, 0x08, 0xbe,
    0x00, 0x00, 0x00, 0x00, 0x40, 0xbd, 0x4c, 0xbe, 0x00, 0x7e, 0x88, 0x3d,
    0x70, 0xad, 0x3b, 0xbf, 0x00, 0x7e, 0x88, 0x3d, 0x00, 0x00, 0x00, 0x00,
    0x00, 0x00, 0x00, 0x00, 0x40, 0x7e, 0x08, 0xbe, 0x40, 0x7e, 0x08, 0xbe,
    0x50, 0x35, 0xc4, 0x3f, 0x38, 0xbd, 0xcc, 0xbf, 0x40, 0x7e, 0x08, 0xbe,
    0x00, 0x7e, 0x88, 0x3d, 0x40, 0x7e, 0x08, 0xbe, 0xc8, 0x15, 0xa2, 0xbf,
    0x20, 0xbd, 0xcc, 0x3e, 0x10, 0x45, 0xd5, 0x3f, 0x80, 0xec, 0xff, 0x3f,
    0xc0, 0xdc, 0xee, 0x3e, 0x00, 0x7e, 0x88, 0x3d, 0xe0, 0x8d, 0x19, 0x3f,
    0x20, 0x7e, 0x08, 0xbf, 0x20, 0x7e, 0x88, 0x3f, 0x40, 0xbd, 0xcc, 0xbe,
    0x40, 0x7e, 0x08, 0xbe, 0x40, 0xbd, 0x4c, 0xbe, 0x00, 0x00, 0x00, 0x00,
    0x20, 0x7e, 0x08, 0xbf, 0x00, 0x7e, 0x08, 0x3e, 0x00, 0x00, 0x00, 0x00,
    0x80, 0x7e, 0x88, 0xbd, 0x00, 0x7e, 0x08, 0x3e, 0x80, 0x7e, 0x88, 0xbd,
    0x20, 0x7e, 0x88, 0xbe, 0x00, 0x7e, 0x88, 0x3d, 0x80, 0x7e, 0x88, 0xbd,
    0xc0, 0x9d, 0xaa, 0xbe, 0x40, 0xbd, 0xcc, 0xbe, 0x20, 0x7e, 0x08, 0xbf,
    0x00, 0x7e, 0x88, 0x3d, 0x00, 0x7e, 0x88, 0x3d, 0x20, 0x7e, 0x88, 0xbe,
    0xc0, 0x9d, 0xaa, 0xbe, 0x40, 0xbd, 0x4c, 0x3e, 0x00, 0x7e, 0x88, 0x3d,
    0xc0, 0x9d, 0xaa, 0xbe, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
    0x00, 0x7e, 0x08, 0x3e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x7e, 0x88, 0x3d,
    0x00, 0x00, 0x00, 0x00, 0x80, 0x7e, 0x88, 0xbd, 0x20, 0x7e, 0x88, 0xbe,
    0x40, 0x7e, 0x08, 0xbe, 0x00, 0x00, 0x00, 0x00, 0xc0, 0xdc, 0xee, 0xbe,
    0xc0, 0x9d, 0xaa, 0xbe, 0x20, 0x7e, 0x08, 0xbf, 0x40, 0x7e, 0x08, 0xbe,
    0x00, 0x7e, 0x88, 0x3d, 0x40, 0x7e, 0x08, 0xbe, 0x20, 0x7e, 0x88, 0xbe,
    0x00, 0x7e, 0x88, 0x3d, 0x40, 0x7e, 0x08, 0xbe, 0x20, 0x7e, 0x88, 0xbe,
    0x40, 0x7e, 0x08, 0xbe, 0x40, 0xbd, 0x4c, 0xbe, 0x00, 0x7e, 0x88, 0x3d,
    0x80, 0x7e, 0x88, 0xbd, 0x20, 0x7e, 0x88, 0xbe, 0x20, 0x7e, 0x08, 0xbf,
    0xe0, 0x8d, 0x19, 0x3f, 0xc0, 0x9d, 0xaa, 0xbe, 0xf0, 0xcc, 0x5d, 0x3f,
    0x70, 0xad, 0x3b, 0x3f, 0xe8, 0x8d, 0x99, 0x3f, 0x20, 0x7e, 0x08, 0x3f,
    0xf0, 0x8d, 0x19, 0xbf, 0x40, 0xbd, 0x4c, 0x3e, 0xac, 0x9d, 0x2a, 0xc0,
    0x00, 0x06, 0x91, 0x3f, 0x20, 0x7e, 0x08, 0x3f, 0xc0, 0xdc, 0xee, 0xbe,
    0x40, 0xbd, 0x4c, 0xbe, 0xac, 0x9d, 0x2a, 0xc0, 0x40, 0x7e, 0x08, 0xbe,
    0xe0, 0x8d, 0x19, 0x3f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
    0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
    0x40, 0x7e, 0x08, 0xbe, 0x00, 0x7e, 0x88, 0x3d, 0x40, 0x7e, 0x08, 0xbe,
    0x00, 0x7e, 0x88, 0x3d, 0x40, 0xbd, 0x4c, 0x3e, 0x20, 0x7e, 0x88, 0xbe,
    0x80, 0x7e, 0x88, 0xbd, 0x00, 0x00, 0x00, 0x00, 0x80, 0x7e, 0x88, 0xbd,
    0x00, 0x7e, 0x88, 0x3d, 0xc0, 0x9d, 0xaa, 0xbe, 0x40, 0x7e, 0x08, 0xbe,
    0x00, 0x7e, 0x88, 0x3d, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
    0x00, 0x00, 0x00, 0x00, 0xf8, 0xcc, 0xdd, 0x3f, 0xf8, 0xcc, 0xdd, 0xbf,
    0x00, 0x7e, 0x08, 0x3e, 0xa0, 0x9d, 0xaa, 0x3e, 0x20, 0x7e, 0x88, 0xbe,
    0x38, 0xbd, 0xcc, 0xbf, 0xe0, 0x8d, 0x19, 0x3f, 0xd8, 0x54, 0xe6, 0x3f,
    0x20, 0x7e, 0x08, 0x40, 0x20, 0x7e, 0x08, 0x3f, 0x40, 0x7e, 0x08, 0xbe,
    0xc0, 0xdc, 0xee, 0x3e, 0xf0, 0x8d, 0x19, 0xbf, 0x80, 0xec, 0x7f, 0x3f,
    0x40, 0xbd, 0x4c, 0xbe, 0x00, 0x00, 0x00, 0x00, 0xc0, 0x9d, 0xaa, 0xbe,
    0x40, 0xbd, 0xcc, 0xbe, 0x40, 0x7e, 0x08, 0xbe, 0x40, 0xbd, 0x4c, 0x3e,
    0x00, 0x7e, 0x88, 0x3d, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
    0x40, 0x7e, 0x08, 0xbe, 0x00, 0x00, 0x00, 0x00, 0x00, 0x7e, 0x08, 0x3e,
    0x00, 0x7e, 0x88, 0x3d, 0x40, 0xbd, 0xcc, 0xbe, 0xc0, 0xdc, 0xee, 0xbe,
    0xb0, 0x9d, 0x2a, 0xbf, 0x00, 0x00, 0x00, 0x00, 0x80, 0x7e, 0x88, 0xbd,
    0x40, 0xbd, 0xcc, 0xbe, 0x20, 0x7e, 0x88, 0xbe, 0x40, 0xbd, 0x4c, 0x3e,
    0x40, 0x7e, 0x08, 0xbe, 0x20, 0x7e, 0x08, 0xbf, 0x20, 0x7e, 0x08, 0xbf,
    0x00, 0xcd, 0x5d, 0xbf, 0x00, 0x7e, 0x08, 0x3e, 0x00, 0x00, 0x00, 0x00,
    0x80, 0x7e, 0x88, 0xbd, 0x40, 0x7e, 0x08, 0xbe, 0x00, 0x00, 0x00, 0x00,
    0x80, 0x7e, 0x88, 0xbd, 0x00, 0x7e, 0x88, 0x3d, 0x80, 0x7e, 0x88, 0xbd,
    0x20, 0x7e, 0x88, 0xbe, 0xb0, 0x9d, 0x2a, 0xbf, 0xc0, 0xdc, 0xee, 0xbe,
    0x80, 0x7e, 0x88, 0xbd, 0x80, 0x7e, 0x88, 0xbd, 0xc0, 0xdc, 0xee, 0xbe,
    0x40, 0xbd, 0xcc, 0xbe, 0x20, 0x7e, 0x88, 0x3e, 0x80, 0x7e, 0x88, 0xbd,
    0x20, 0x7e, 0x08, 0xbf, 0x40, 0xbd, 0xcc, 0xbe, 0xc0, 0xdc, 0x6e, 0xbf,
    0x00, 0x7e, 0x88, 0x3d, 0x28, 0x7e, 0x88, 0xbf, 0x00, 0x00, 0x00, 0x00,
    0x20, 0x7e, 0x08, 0xbf, 0x00, 0x7e, 0x08, 0x3e, 0x40, 0x7e, 0x08, 0xbe,
    0xe8, 0x8d, 0x99, 0x3f, 0xf0, 0xcc, 0x5d, 0x3f, 0x40, 0x7e, 0x08, 0xbe,
    0xf0, 0xcc, 0x5d, 0x3f, 0xf0, 0x8d, 0x19, 0xbf, 0x00, 0x7e, 0x88, 0x3d,
    0xb0, 0x9d, 0xaa, 0xbf, 0xa0, 0x9d, 0x2a, 0x3f, 0x20, 0x7e, 0x88, 0x3f,
    0x28, 0x7e, 0x88, 0xbf, 0x40, 0xbd, 0x4c, 0xbe, 0xf8, 0x49, 0x15, 0xc0,
    0x30, 0xbd, 0x4c, 0x3f, 0xf8, 0xcc, 0xdd, 0x3f, 0x40, 0xbd, 0x4c, 0xbe,
    0x00, 0x7e, 0x08, 0x3e, 0x00, 0x7e, 0x88, 0x3d, 0x00, 0x00, 0x00, 0x00,
    0x80, 0x7e, 0x88, 0xbd, 0x00, 0x7e, 0x88, 0x3d, 0x00, 0x7e, 0x88, 0x3d,
    0x80, 0x7e, 0x88, 0xbd, 0x00, 0x7e, 0x08, 0x3e, 0x00, 0x7e, 0x08, 0x3e,
    0xc0, 0xdc, 0xee, 0xbe, 0x80, 0x7e, 0x88, 0xbd, 0x80, 0x7e, 0x88, 0xbd,
    0x00, 0x7e, 0x88, 0x3d, 0x00, 0x7e, 0x88, 0x3d, 0x40, 0xbd, 0x4c, 0xbe,
    0x40, 0x7e, 0x08, 0xbe, 0x00, 0x7e, 0x88, 0x3d, 0xc0, 0xdc, 0xee, 0xbe,
    0xb0, 0x9d, 0x2a, 0xbf, 0x00, 0x00, 0x00, 0x00, 0x30, 0xbd, 0xcc, 0x3f,
    0x34, 0x3a, 0x04, 0xc0, 0x40, 0xbd, 0x4c, 0x3e, 0x20, 0xbd, 0xcc, 0x3e,
    0x40, 0x7e, 0x08, 0xbe, 0x38, 0xbd, 0xcc, 0xbf, 0x20, 0x7e, 0x08, 0x3f,
    0x80, 0xec, 0xff, 0x3f, 0xb8, 0xdc, 0xee, 0x3f, 0x70, 0xad, 0x3b, 0x3f,
    0x00, 0x7e, 0x88, 0x3d, 0x20, 0xbd, 0xcc, 0x3e, 0xc0, 0xdc, 0xee, 0xbe,
    0x88, 0x25, 0xb3, 0x3f, 0x20, 0x7e, 0x88, 0xbe, 0x00, 0x00, 0x00, 0x00,
    0x20, 0x7e, 0x08, 0xbf, 0xb0, 0x9d, 0x2a, 0xbf, 0x00, 0xcd, 0x5d, 0xbf,
    0x00, 0x00, 0x00, 0x00, 0x80, 0x7e, 0x88, 0xbd, 0xc0, 0x9d, 0xaa, 0xbe,
    0x20, 0x7e, 0x88, 0xbe, 0x20, 0x7e, 0x88, 0xbe, 0x40, 0x7e, 0x08, 0xbe,
    0x00, 0x00, 0x00, 0x00, 0x80, 0x7e, 0x88, 0xbd, 0x20, 0x7e, 0x88, 0xbe,
    0xc0, 0xdc, 0xee, 0xbe, 0xc0, 0x9d, 0xaa, 0xbe, 0x00, 0x7e, 0x08, 0x3e,
    0x40, 0xbd, 0xcc, 0xbe, 0x70, 0xad, 0x3b, 0xbf, 0x80, 0x7e, 0x88, 0xbd,
    0x20, 0x7e, 0x88, 0x3e, 0x80, 0x7e, 0x88, 0xbd, 0xb0, 0x9d, 0x2a, 0xbf,
    0xb0, 0x9d, 0x2a, 0xbf, 0x80, 0x7e, 0x88, 0xbd, 0x80, 0x7e, 0x88, 0xbd,
    0x80, 0x7e, 0x88, 0xbd, 0xc0, 0x9d, 0xaa, 0xbe, 0x80, 0x7e, 0x88, 0xbd,
    0xc0, 0x9d, 0xaa, 0xbe, 0x80, 0x7e, 0x88, 0xbd, 0x40, 0xbd, 0x4c, 0x3e,
    0x80, 0x7e, 0x88, 0xbd, 0x40, 0xbd, 0x4c, 0xbe, 0xc0, 0xdc, 0xee, 0xbe,
    0x40, 0xbd, 0x4c, 0xbe, 0x00, 0x7e, 0x08, 0x3e, 0xf0, 0x8d, 0x19, 0xbf,
    0xb0, 0x9d, 0x2a, 0xbf, 0x40, 0x7e, 0x08, 0xbe, 0xc0, 0xdc, 0xee, 0x3e,
    0x00, 0x7e, 0x88, 0x3d, 0x20, 0x7e, 0x08, 0xbf, 0x20, 0x7e, 0x08, 0xbf,
    0x80, 0x7e, 0x88, 0xbd, 0x40, 0x7e, 0x08, 0xbe, 0x34, 0x3a, 0x04, 0xc0,
    0xc8, 0x15, 0xa2, 0x3f, 0xe0, 0x8d, 0x19, 0x3f, 0x20, 0x7e, 0x08, 0xbf,
    0x40, 0xbd, 0x4c, 0x3e, 0x40, 0xbd, 0x4c, 0x3e, 0xd8, 0x54, 0xe6, 0xbf,
    0x24, 0x7e, 0x08, 0xc0, 0x70, 0xad, 0xbb, 0x3f, 0x40, 0xbd, 0x4c, 0x3e,
    0x00, 0x7e, 0x08, 0x3e, 0x28, 0x7e, 0x88, 0xbf, 0x30, 0xbd, 0x4c, 0x3f,
    0xb8, 0xdc, 0xee, 0x3f, 0x34, 0x3a, 0x04, 0xc0, 0x00, 0x00, 0x00, 0x00,
    0x00, 0xcd, 0x5d, 0xbf, 0x80, 0xec, 0x7f, 0x3f, 0x40, 0x7e, 0x08, 0xbe,
    0x80, 0x7e, 0x88, 0xbd, 0x00, 0x7e, 0x08, 0x3e, 0x80, 0x7e, 0x88, 0xbd,
    0x00, 0x00, 0x00, 0x00, 0x80, 0x7e, 0x88, 0xbd, 0x80, 0x7e, 0x88, 0xbd,
    0x40, 0xbd, 0x4c, 0x3e, 0x40, 0xbd, 0x4c, 0xbe, 0x80, 0x7e, 0x88, 0xbd,
    0x00, 0x7e, 0x08, 0x3e, 0xc0, 0x9d, 0xaa, 0xbe, 0x00, 0x7e, 0x88, 0x3d,
    0x00, 0x7e, 0x88, 0x3d, 0x00, 0x7e, 0x88, 0x3d, 0x80, 0x7e, 0x88, 0xbd,
    0x40, 0xbd, 0x4c, 0xbe, 0x00, 0x7e, 0x88, 0x3d, 0x00, 0x00, 0x00, 0x00,
    0xc0, 0x9d, 0xaa, 0xbe, 0x40, 0x7e, 0x08, 0xbe, 0x00, 0x00, 0x00, 0x00,
    0x10, 0x45, 0xd5, 0x3f, 0x04, 0x06, 0x11, 0xc0, 0x20, 0xbd, 0xcc, 0x3e,
    0x40, 0xbd, 0x4c, 0x3e, 0x00, 0x00, 0x00, 0x00, 0xf8, 0xcc, 0xdd, 0xbf,
    0x20, 0xbd, 0xcc, 0x3e, 0x04, 0x06, 0x11, 0x40, 0x20, 0x7e, 0x08, 0x40,
    0x80, 0xec, 0x7f, 0x3f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
    0x70, 0xad, 0x3b, 0xbf, 0xd8, 0x54, 0xe6, 0x3f, 0x20, 0x7e, 0x88, 0xbe,
    0x40, 0xbd, 0x4c, 0xbe, 0xf0, 0x8d, 0x19, 0xbf, 0x00, 0xcd, 0x5d, 0xbf,
    0x00, 0x7e, 0x88, 0x3d, 0x00, 0x00, 0x00, 0x00, 0x88, 0x25, 0xb3, 0x3f,
    0xb0, 0x9d, 0xaa, 0xbf, 0x40, 0xbd, 0x4c, 0xbe, 0x40, 0xbd, 0x4c, 0xbe,
    0x40, 0x7e, 0x08, 0xbe, 0xc8, 0x15, 0xa2, 0xbf, 0x40, 0xbd, 0x4c, 0x3e,
    0x70, 0xad, 0xbb, 0x3f, 0xd8, 0x54, 0xe6, 0x3f, 0x00, 0x06, 0x91, 0x3f,
    0x40, 0xbd, 0x4c, 0xbe, 0x00, 0x7e, 0x08, 0x3e, 0x40, 0xbd, 0x4c, 0xbe,
    0x20, 0x7e, 0x88, 0x3f, 0x00, 0x00, 0x00, 0x00, 0x80, 0x7e, 0x88, 0xbd,
    0x20, 0x7e, 0x08, 0xbf, 0xc0, 0x9d, 0xaa, 0xbe, 0xa0, 0x9d, 0xaa, 0x3e,
    0x00, 0x7e, 0x88, 0x3d, 0x20, 0x7e, 0x88, 0x3e, 0xb0, 0x9d, 0x2a, 0xbf,
    0x20, 0x7e, 0x08, 0x3f, 0x80, 0x7e, 0x88, 0xbd, 0x40, 0x7e, 0x08, 0xbe,
    0x80, 0x7e, 0x88, 0xbd, 0x00, 0x7e, 0x88, 0x3d, 0xe0, 0x8d, 0x19, 0x3f,
    0xa0, 0x9d, 0x2a, 0x3f, 0x30, 0xbd, 0x4c, 0x3f, 0x40, 0xbd, 0x4c, 0x3e,
    0x20, 0x7e, 0x88, 0x3e, 0x20, 0x7e, 0x08, 0x3f, 0xe0, 0x8d, 0x19, 0x3f,
    0x20, 0xbd, 0xcc, 0x3e, 0x80, 0x7e, 0x88, 0xbd, 0x38, 0xbd, 0xcc, 0xbf,
    0x80, 0x7e, 0x88, 0xbd, 0xc0, 0xdc, 0xee, 0x3e, 0x00, 0x00, 0x00, 0x00,
    0x00, 0x00, 0x00, 0x00, 0x20, 0x7e, 0x88, 0xbe, 0xd8, 0x54, 0xe6, 0xbf,
    0x00, 0x00, 0x00, 0x00, 0xa0, 0x9d, 0xaa, 0x3e, 0x00, 0x7e, 0x08, 0x3e,
    0x20, 0xbd, 0xcc, 0x3e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x7e, 0x88, 0x3d,
    0x20, 0xbd, 0xcc, 0x3e, 0x40, 0x7e, 0x08, 0xbe, 0xc0, 0x9d, 0xaa, 0xbe,
    0x40, 0xbd, 0x4c, 0xbe, 0xe8, 0x8d, 0x99, 0xbf, 0x20, 0x7e, 0x88, 0xbe,
    0x80, 0x7e, 0x88, 0xbd, 0x00, 0x00, 0x00, 0x00, 0x20, 0xbd, 0xcc, 0x3e,
    0xc0, 0x9d, 0xaa, 0xbe, 0x40, 0xbd, 0x4c, 0xbe, 0x20, 0x7e, 0x08, 0x3f,
    0x30, 0xbd, 0x4c, 0xbf, 0x40, 0xbd, 0x4c, 0x3e, 0xc0, 0x9d, 0xaa, 0xbe,
    0x80, 0x7e, 0x88, 0xbd, 0x08, 0x06, 0x91, 0xbf, 0x20, 0x7e, 0x88, 0xbe,
    0xc0, 0xdc, 0xee, 0x3e, 0xf8, 0xcc, 0xdd, 0x3f, 0xe0, 0x8d, 0x19, 0x3f,
    0x80, 0x7e, 0x88, 0xbd, 0x30, 0xbd, 0x4c, 0x3f, 0x00, 0x7e, 0x88, 0x3d,
    0x00, 0x7e, 0x08, 0x3e, 0x80, 0x7e, 0x88, 0xbd, 0x00, 0x7e, 0x88, 0x3d,
    0x00, 0x00, 0x00, 0x00, 0x30, 0xbd, 0x4c, 0xbf, 0x40, 0xbd, 0x4c, 0x3e,
    0x40, 0x7e, 0x08, 0xbe, 0x70, 0xad, 0x3b, 0x3f, 0x80, 0x7e, 0x88, 0xbd,
    0x00, 0x7e, 0x08, 0x3e, 0x80, 0x7e, 0x88, 0xbd, 0x00, 0x7e, 0x88, 0x3d,
    0x70, 0xad, 0x3b, 0xbf, 0x40, 0xbd, 0x4c, 0xbe, 0x20, 0x7e, 0x88, 0xbe,
    0x80, 0x7e, 0x88, 0xbd, 0x20, 0xbd, 0xcc, 0x3e, 0x00, 0x00, 0x00, 0x00,
    0x40, 0xbd, 0x4c, 0xbe, 0x40, 0xbd, 0x4c, 0x3e, 0x00, 0x00, 0x00, 0x00,
    0x40, 0xbd, 0x4c, 0x3e, 0x80, 0x7e, 0x88, 0xbd, 0x00, 0x7e, 0x88, 0x3d,
    0xc0, 0xdc, 0x6e, 0xbf, 0x00, 0x7e, 0x88, 0x3d, 0x00, 0x7e, 0x88, 0x3d,
    0x40, 0xbd, 0xcc, 0xbe, 0x80, 0x7e, 0x88, 0xbd, 0x00, 0x7e, 0x08, 0x3e,
    0x00, 0x7e, 0x88, 0x3d, 0x40, 0x7e, 0x08, 0xbe, 0xa0, 0x9d, 0xaa, 0x3e,
    0xc0, 0x9d, 0xaa, 0xbe, 0x20, 0x7e, 0x08, 0x3f, 0x00, 0x7e, 0x88, 0x3d,
    0x00, 0x00, 0x00, 0x00, 0x80, 0x7e, 0x88, 0xbd, 0xa0, 0x9d, 0xaa, 0x3e,
    0xa0, 0x9d, 0xaa, 0x3e, 0xa0, 0x9d, 0xaa, 0x3e, 0x00, 0x7e, 0x88, 0x3d,
    0x00, 0x7e, 0x88, 0x3d, 0xc0, 0x9d, 0xaa, 0xbe, 0xa0, 0x9d, 0x2a, 0x3f,
    0x00, 0x7e, 0x08, 0x3e, 0x00, 0x00, 0x00, 0x00, 0x20, 0x7e, 0x88, 0xbe,
    0x40, 0x7e, 0x08, 0xbe, 0x40, 0xbd, 0x4c, 0x3e, 0x40, 0xbd, 0x4c, 0x3e,
    0x40, 0xbd, 0x4c, 0xbe, 0x20, 0x7e, 0x88, 0x3e, 0x40, 0xbd, 0xcc, 0xbe,
    0xa0, 0x9d, 0xaa, 0x3e, 0x40, 0x7e, 0x08, 0xbe, 0x40, 0x7e, 0x08, 0xbe,
    0x40, 0x7e, 0x08, 0xbe, 0x20, 0x7e, 0x88, 0x3e, 0xa0, 0x9d, 0xaa, 0x3e,
    0xc0, 0xdc, 0xee, 0x3e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
    0xc0, 0x9d, 0xaa, 0xbe, 0xe0, 0x8d, 0x19, 0x3f, 0x20, 0x7e, 0x88, 0x3e,
    0x80, 0x7e, 0x88, 0xbd, 0x20, 0xbd, 0xcc, 0x3e, 0x04, 0x06, 0x11, 0xc0,
    0xb0, 0x9d, 0xaa, 0xbf, 0xc0, 0x9d, 0xaa, 0xbe, 0xa0, 0x9d, 0xaa, 0x3e,
    0x80, 0x7e, 0x88, 0xbd, 0x40, 0x7e, 0x08, 0xbe, 0x00, 0x7e, 0x88, 0x3d,
    0xa0, 0x9d, 0x2a, 0x3f, 0x20, 0xbd, 0xcc, 0x3e, 0x80, 0x7e, 0x88, 0xbd,
    0x80, 0x7e, 0x88, 0xbd, 0xe0, 0x8d, 0x19, 0x3f, 0xb0, 0x9d, 0xaa, 0xbf,
    0x40, 0xbd, 0xcc, 0xbe, 0x80, 0x7e, 0x88, 0xbd, 0x24, 0x7e, 0x08, 0xc0,
    0xd8, 0x54, 0xe6, 0x3f, 0xc0, 0xdc, 0xee, 0xbe, 0x40, 0x7e, 0x08, 0xbe,
    0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xc0, 0x9d, 0xaa, 0xbe,
    0x80, 0x7e, 0x88, 0xbd, 0x20, 0x7e, 0x88, 0xbe, 0x00, 0x00, 0x00, 0x00,
    0xc0, 0x9d, 0xaa, 0xbe, 0x40, 0x7e, 0x08, 0xbe, 0x00, 0x7e, 0x88, 0x3d,
    0x40, 0xbd, 0x4c, 0xbe, 0x80, 0x7e, 0x88, 0xbd, 0x00, 0x7e, 0x88, 0x3d,
    0x00, 0x7e, 0x08, 0x3e, 0x40, 0x7e, 0x08, 0xbe, 0x40, 0xbd, 0x4c, 0xbe,
    0x00, 0x7e, 0x88, 0x3d, 0x00, 0x7e, 0x88, 0x3d, 0x00, 0x00, 0x00, 0x00,
    0x00, 0x00, 0x00, 0x00, 0x80, 0x7e, 0x88, 0xbd, 0x20, 0x7e, 0x08, 0x3f,
    0x70, 0xad, 0x3b, 0xbf, 0x20, 0x7e, 0x88, 0x3e, 0x40, 0xbd, 0xcc, 0xbe,
    0xc0, 0x9d, 0xaa, 0xbe, 0x80, 0xec, 0x7f, 0xbf, 0x40, 0xbd, 0xcc, 0xbe,
    0x20, 0x7e, 0x88, 0x3e, 0x50, 0x35, 0xc4, 0x3f, 0xe0, 0x8d, 0x19, 0x3f,
    0x00, 0x00, 0x00, 0x00, 0x30, 0xbd, 0x4c, 0x3f, 0x40, 0xbd, 0x4c, 0x3e,
    0x20, 0x7e, 0x88, 0x3e, 0x40, 0x7e, 0x08, 0xbe, 0x00, 0x00, 0x00, 0x00,
    0x00, 0x7e, 0x88, 0x3d, 0x70, 0xad, 0x3b, 0xbf, 0x00, 0x00, 0x00, 0x00,
    0x80, 0x7e, 0x88, 0xbd, 0xc0, 0xdc, 0xee, 0xbe, 0x00, 0x7e, 0x08, 0x3e,
    0x40, 0xbd, 0x4c, 0x3e, 0x00, 0x7e, 0x08, 0x3e, 0x40, 0x7e, 0x08, 0xbe,
    0xa0, 0x9d, 0xaa, 0x3e, 0xc0, 0x9d, 0xaa, 0xbe, 0x20, 0x7e, 0x88, 0x3e,
    0x80, 0x7e, 0x88, 0xbd, 0x40, 0xbd, 0x4c, 0xbe, 0x40, 0x7e, 0x08, 0xbe,
    0x20, 0xbd, 0xcc, 0x3e, 0x40, 0xbd, 0x4c, 0x3e, 0x00, 0x7e, 0x08, 0x3e,
    0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xc0, 0x9d, 0xaa, 0xbe,
    0xc0, 0xdc, 0xee, 0x3e, 0x40, 0xbd, 0x4c, 0x3e, 0x80, 0x7e, 0x88, 0xbd,
    0x40, 0xbd, 0xcc, 0xbe, 0x40, 0xbd, 0x4c, 0x3e, 0x00, 0x7e, 0x08, 0x3e,
    0x00, 0x7e, 0x08, 0x3e, 0x40, 0x7e, 0x08, 0xbe, 0xa0, 0x9d, 0xaa, 0x3e,
    0x40, 0xbd, 0xcc, 0xbe, 0x00, 0x7e, 0x08, 0x3e, 0x80, 0x7e, 0x88, 0xbd,
    0x40, 0xbd, 0x4c, 0xbe, 0x00, 0x00, 0x00, 0x00, 0x20, 0x7e, 0x88, 0x3e,
    0x20, 0x7e, 0x88, 0x3e, 0xa0, 0x9d, 0xaa, 0x3e, 0x40, 0xbd, 0x4c, 0x3e,
    0x80, 0x7e, 0x88, 0xbd, 0x40, 0xbd, 0xcc, 0xbe, 0xe0, 0x8d, 0x19, 0x3f,
    0x00, 0x00, 0x00, 0x00, 0x00, 0x7e, 0x08, 0x3e, 0xa0, 0x9d, 0x2a, 0x3f,
    0xb8, 0xdc, 0xee, 0x3f, 0x00, 0x7e, 0x88, 0x3d, 0xc8, 0x15, 0xa2, 0x3f,
    0x00, 0x7e, 0x88, 0x3d, 0x20, 0x7e, 0x88, 0x3e, 0x40, 0xbd, 0xcc, 0xbe,
    0xa0, 0x64, 0x77, 0xc0, 0xb0, 0xdc, 0x6e, 0x3f, 0xc0, 0xdc, 0xee, 0x3e,
    0x00, 0x7e, 0x88, 0x3d, 0xb8, 0xdc, 0xee, 0x3f, 0xb0, 0x9d, 0x2a, 0xbf,
    0x1b, 0xa0, 0x0a, 0xc1, 0xf4, 0x49, 0x15, 0x40, 0x40, 0x7e, 0x08, 0xbe,
    0x50, 0x35, 0xc4, 0x3f, 0x20, 0xbd, 0xcc, 0x3e, 0x1d, 0x23, 0xd3, 0xc0,
    0x00, 0x7e, 0x88, 0x3d, 0x00, 0x7e, 0x08, 0x3e, 0x00, 0x7e, 0x88, 0x3d,
    0xc0, 0x9d, 0xaa, 0xbe, 0x40, 0x7e, 0x08, 0xbe, 0x20, 0x7e, 0x88, 0xbe,
    0x00, 0x00, 0x00, 0x00, 0xc0, 0x9d, 0xaa, 0xbe, 0x80, 0x7e, 0x88, 0xbd,
    0x00, 0x00, 0x00, 0x00, 0x40, 0xbd, 0x4c, 0xbe, 0x00, 0x7e, 0x88, 0x3d,
    0x00, 0x7e, 0x88, 0x3d, 0x40, 0x7e, 0x08, 0xbe, 0x80, 0x7e, 0x88, 0xbd,
    0x00, 0x7e, 0x88, 0x3d, 0x00, 0x00, 0x00, 0x00, 0x40, 0xbd, 0x4c, 0x3e,
    0x40, 0x7e, 0x08, 0xbe, 0x40, 0x7e, 0x08, 0xbe, 0x80, 0x7e, 0x88, 0xbd,
    0xc0, 0xdc, 0xee, 0x3e, 0x70, 0xad, 0x3b, 0xbf, 0x40, 0xbd, 0x4c, 0x3e,
    0x20, 0x7e, 0x88, 0xbe, 0x20, 0x7e, 0x88, 0xbe, 0x28, 0x7e, 0x88, 0xbf,
    0x40, 0xbd, 0x4c, 0xbe, 0x20, 0xbd, 0xcc, 0x3e, 0x50, 0x35, 0xc4, 0x3f,
    0x20, 0x7e, 0x08, 0x3f, 0x00, 0x7e, 0x88, 0x3d, 0x70, 0xad, 0x3b, 0x3f,
    0x40, 0xbd, 0x4c, 0x3e, 0x00, 0x7e, 0x08, 0x3e, 0x40, 0xbd, 0x4c, 0xbe,
    0x40, 0x7e, 0x08, 0xbe, 0x80, 0x7e, 0x88, 0xbd, 0x70, 0xad, 0x3b, 0xbf,
    0x00, 0x7e, 0x08, 0x3e, 0x00, 0x7e, 0x88, 0x3d, 0x20, 0x7e, 0x88, 0xbe,
    0x00, 0x00, 0x00, 0x00, 0x40, 0xbd, 0x4c, 0x3e, 0x00, 0x7e, 0x88, 0x3d,
    0x00, 0x00, 0x00, 0x00, 0x20, 0xbd, 0xcc, 0x3e, 0x40, 0xbd, 0xcc, 0xbe,
    0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x80, 0x7e, 0x88, 0xbd,
    0x80, 0x7e, 0x88, 0xbd, 0x20, 0xbd, 0xcc, 0x3e, 0xa0, 0x9d, 0xaa, 0x3e,
    0x00, 0x7e, 0x08, 0x3e, 0x00, 0x00, 0x00, 0x00, 0x40, 0x7e, 0x08, 0xbe,
    0x40, 0xbd, 0x4c, 0xbe, 0xe0, 0x8d, 0x19, 0x3f, 0x80, 0x7e, 0x88, 0xbd,
    0x00, 0x00, 0x00, 0x00, 0xc0, 0xdc, 0xee, 0xbe, 0x00, 0x7e, 0x08, 0x3e,
    0x20, 0x7e, 0x88, 0x3e, 0x00, 0x7e, 0x88, 0x3d, 0x80, 0x7e, 0x88, 0xbd,
    0x20, 0xbd, 0xcc, 0x3e, 0x40, 0xbd, 0x4c, 0xbe, 0x00, 0x00, 0x00, 0x00,
    0x00, 0x7e, 0x88, 0x3d, 0x00, 0x00, 0x00, 0x00, 0x00, 0x7e, 0x88, 0x3d,
    0x40, 0xbd, 0x4c, 0x3e, 0x20, 0x7e, 0x88, 0x3e, 0x20, 0x7e, 0x88, 0x3e,
    0x00, 0x7e, 0x88, 0x3d, 0x40, 0x7e, 0x08, 0xbe, 0x40, 0xbd, 0x4c, 0xbe,
    0xa0, 0x9d, 0x2a, 0x3f, 0x00, 0x7e, 0x88, 0x3d, 0x00, 0x7e, 0x88, 0x3d,
    0xb0, 0xdc, 0x6e, 0x3f, 0xd8, 0x54, 0xe6, 0x3f, 0xa0, 0x9d, 0xaa, 0x3e,
    0xa0, 0x9d, 0x2a, 0x3f, 0x20, 0x7e, 0x88, 0x3e, 0x20, 0x7e, 0x08, 0x3f,
    0x40, 0xbd, 0xcc, 0xbe, 0x8c, 0x25, 0x33, 0xc0, 0xe0, 0x8d, 0x19, 0x3f,
    0xa0, 0x9d, 0x2a, 0x3f, 0x00, 0x00, 0x00, 0x00, 0xf8, 0xcc, 0xdd, 0x3f,
    0x00, 0xcd, 0x5d, 0xbf, 0x26, 0x6d, 0x07, 0xc1, 0x14, 0xc2, 0x0c, 0x40,
    0x00, 0x7e, 0x88, 0x3d, 0xe8, 0x8d, 0x99, 0x3f, 0x80, 0x7e, 0x88, 0xbd,
    0xf8, 0x49, 0x15, 0xc0, 0x00, 0x7e, 0x88, 0x3d, 0x80, 0x7e, 0x88, 0xbd,
    0x00, 0x7e, 0x88, 0x3d, 0x40, 0x7e, 0x08, 0xbe, 0x00, 0x7e, 0x08, 0x3e,
    0xc0, 0x9d, 0xaa, 0xbe, 0x00, 0x00, 0x00, 0x00, 0xc0, 0x9d, 0xaa, 0xbe,
    0x00, 0x00, 0x00, 0x00, 0x00, 0x7e, 0x88, 0x3d, 0x40, 0x7e, 0x08, 0xbe,
    0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x40, 0x7e, 0x08, 0xbe,
    0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x40, 0x7e, 0x08, 0xbe,
    0x00, 0x00, 0x00, 0x00, 0x80, 0x7e, 0x88, 0xbd, 0x00, 0x7e, 0x88, 0x3d,
    0x00, 0x7e, 0x88, 0x3d, 0x20, 0xbd, 0xcc, 0x3e, 0xb0, 0x9d, 0x2a, 0xbf,
    0x20, 0x7e, 0x88, 0x3e, 0xc0, 0x9d, 0xaa, 0xbe, 0x80, 0x7e, 0x88, 0xbd,
    0x80, 0xec, 0x7f, 0xbf, 0xc0, 0x9d, 0xaa, 0xbe, 0xc0, 0xdc, 0xee, 0x3e,
    0x70, 0xad, 0xbb, 0x3f, 0x20, 0x7e, 0x08, 0x3f, 0x00, 0x7e, 0x88, 0x3d,
    0x70, 0xad, 0x3b, 0x3f, 0x20, 0x7e, 0x88, 0x3e, 0x00, 0x7e, 0x08, 0x3e,
    0x00, 0x00, 0x00, 0x00, 0x00, 0x7e, 0x88, 0x3d, 0x40, 0x7e, 0x08, 0xbe,
    0xf0, 0x8d, 0x19, 0xbf, 0x00, 0x7e, 0x88, 0x3d, 0x00, 0x00, 0x00, 0x00,
    0xc0, 0xdc, 0xee, 0xbe, 0x00, 0x7e, 0x08, 0x3e, 0x20, 0x7e, 0x88, 0x3e,
    0x40, 0xbd, 0x4c, 0x3e, 0x40, 0xbd, 0x4c, 0xbe, 0x20, 0x7e, 0x08, 0x3f,
    0x40, 0xbd, 0xcc, 0xbe, 0x00, 0x7e, 0x88, 0x3d, 0x40, 0x7e, 0x08, 0xbe,
    0x80, 0x7e, 0x88, 0xbd, 0x00, 0x00, 0x00, 0x00, 0xa0, 0x9d, 0xaa, 0x3e,
    0xa0, 0x9d, 0xaa, 0x3e, 0x00, 0x7e, 0x88, 0x3d, 0x00, 0x00, 0x00, 0x00,
    0x80, 0x7e, 0x88, 0xbd, 0x00, 0x7e, 0x88, 0x3d, 0x20, 0xbd, 0xcc, 0x3e,
    0x80, 0x7e, 0x88, 0xbd, 0x00, 0x7e, 0x88, 0x3d, 0xc0, 0xdc, 0xee, 0xbe,
    0x20, 0xbd, 0xcc, 0x3e, 0x00, 0x7e, 0x08, 0x3e, 0x00, 0x00, 0x00, 0x00,
    0x00, 0x00, 0x00, 0x00, 0xc0, 0xdc, 0xee, 0x3e, 0x40, 0xbd, 0x4c, 0xbe,
    0x00, 0x7e, 0x88, 0x3d, 0x40, 0xbd, 0x4c, 0xbe, 0x00, 0x7e, 0x88, 0x3d,
    0x00, 0x7e, 0x88, 0x3d, 0xa0, 0x9d, 0xaa, 0x3e, 0xa0, 0x9d, 0xaa, 0x3e,
    0x00, 0x00, 0x00, 0x00, 0x00, 0x7e, 0x88, 0x3d, 0x00, 0x00, 0x00, 0x00,
    0x80, 0x7e, 0x88, 0xbd, 0x20, 0xbd, 0xcc, 0x3e, 0x20, 0x7e, 0x88, 0xbe,
    0x00, 0x7e, 0x88, 0x3d, 0x40, 0xbd, 0x4c, 0xbe, 0xe8, 0x8d, 0x99, 0x3f,
    0x40, 0x7e, 0x08, 0xbe, 0xe0, 0x8d, 0x19, 0x3f, 0x00, 0x7e, 0x08, 0x3e,
    0xe8, 0x8d, 0x99, 0x3f, 0xc0, 0x9d, 0xaa, 0xbe, 0x00, 0x7e, 0x88, 0x3d,
    0x00, 0x7e, 0x88, 0x3d, 0x20, 0x7e, 0x08, 0xbf, 0x40, 0x7e, 0x08, 0xbe,
    0x20, 0x7e, 0x88, 0x3e, 0xa0, 0x9d, 0x2a, 0x3f, 0x50, 0x35, 0x44, 0xc0,
    0x00, 0x06, 0x91, 0x3f, 0x00, 0x00, 0x00, 0x00, 0x80, 0xec, 0x7f, 0x3f,
    0xe0, 0x8d, 0x19, 0x3f, 0x70, 0xad, 0xbb, 0x3f, 0x00, 0x00, 0x00, 0x00,
    0x00, 0x7e, 0x88, 0x3d, 0x00, 0x7e, 0x88, 0x3d, 0x80, 0x7e, 0x88, 0xbd,
    0x80, 0x7e, 0x88, 0xbd, 0x40, 0x7e, 0x08, 0xbe, 0x00, 0x7e, 0x08, 0x3e,
    0x40, 0xbd, 0x4c, 0xbe, 0x80, 0x7e, 0x88, 0xbd, 0x00, 0x7e, 0x88, 0x3d,
    0x00, 0x00, 0x00, 0x00, 0x80, 0x7e, 0x88, 0xbd, 0x40, 0x7e, 0x08, 0xbe,
    0x80, 0x7e, 0x88, 0xbd, 0x00, 0x7e, 0x88, 0x3d, 0x80, 0x7e, 0x88, 0xbd,
    0x00, 0x00, 0x00, 0x00, 0x00, 0x7e, 0x08, 0x3e, 0x40, 0xbd, 0x4c, 0xbe,
    0x00, 0x7e, 0x88, 0x3d, 0x40, 0x7e, 0x08, 0xbe, 0xa0, 0x9d, 0xaa, 0x3e,
    0x30, 0xbd, 0x4c, 0xbf, 0x40, 0xbd, 0x4c, 0x3e, 0xc0, 0x9d, 0xaa, 0xbe,
    0x40, 0xbd, 0x4c, 0xbe, 0xe8, 0x8d, 0x99, 0xbf, 0x20, 0x7e, 0x88, 0xbe,
    0x20, 0x7e, 0x88, 0x3e, 0x10, 0x45, 0xd5, 0x3f, 0x70, 0xad, 0x3b, 0x3f,
    0x40, 0x7e, 0x08, 0xbe, 0x70, 0xad, 0x3b, 0x3f, 0x40, 0xbd, 0x4c, 0x3e,
    0x40, 0xbd, 0x4c, 0x3e, 0x40, 0x7e, 0x08, 0xbe, 0x00, 0x7e, 0x08, 0x3e,
    0x80, 0x7e, 0x88, 0xbd, 0x30, 0xbd, 0x4c, 0xbf, 0x00, 0x00, 0x00, 0x00,
    0x40, 0x7e, 0x08, 0xbe, 0xc0, 0xdc, 0xee, 0xbe, 0xc0, 0xdc, 0xee, 0x3e,
    0x40, 0xbd, 0x4c, 0x3e, 0x00, 0x7e, 0x88, 0x3d, 0x40, 0xbd, 0x4c, 0xbe,
    0xe0, 0x8d, 0x19, 0x3f, 0xc0, 0x9d, 0xaa, 0xbe, 0x40, 0xbd, 0xcc, 0xbe,
    0x40, 0x7e, 0x08, 0xbe, 0x40, 0x7e, 0x08, 0xbe, 0x00, 0x7e, 0x88, 0x3d,
    0xa0, 0x9d, 0xaa, 0x3e, 0x20, 0x7e, 0x88, 0x3e, 0x40, 0x7e, 0x08, 0xbe,
    0x00, 0x7e, 0x88, 0x3d, 0x00, 0x7e, 0x08, 0x3e, 0x00, 0x00, 0x00, 0x00,
    0xe0, 0x8d, 0x19, 0x3f, 0x20, 0x7e, 0x88, 0xbe, 0x80, 0x7e, 0x88, 0xbd,
    0xc0, 0xdc, 0xee, 0xbe, 0x20, 0x7e, 0x08, 0x3f, 0x00, 0x7e, 0x08, 0x3e,
    0x00, 0x00, 0x00, 0x00, 0x80, 0x7e, 0x88, 0xbd, 0xa0, 0x9d, 0x2a, 0x3f,
    0x40, 0xbd, 0x4c, 0xbe, 0x20, 0x7e, 0x88, 0xbe, 0x80, 0x7e, 0x88, 0xbd,
    0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, 0xbd, 0xcc, 0x3e,
    0x20, 0x7e, 0x88, 0x3e, 0x40, 0xbd, 0x4c, 0xbe, 0x00, 0x7e, 0x88, 0x3d,
    0x40, 0x7e, 0x08, 0xbe, 0x00, 0x00, 0x00, 0x00, 0xa0, 0x9d, 0x2a, 0x3f,
    0x40, 0xbd, 0xcc, 0xbe, 0x00, 0x00, 0x00, 0x00, 0xc0, 0xdc, 0xee, 0x3e,
    0xc0, 0xdc, 0xee, 0xbf, 0x80, 0x7e, 0x88, 0xbd, 0x70, 0xad, 0x3b, 0x3f,
    0x40, 0xbd, 0x4c, 0x3e, 0x70, 0xad, 0x3b, 0x3f, 0x40, 0xbd, 0x4c, 0xbe,
    0xa8, 0x9d, 0xaa, 0x3f, 0x20, 0x7e, 0x88, 0x3e, 0x70, 0xad, 0x3b, 0x3f,
    0x80, 0x7e, 0x88, 0xbd, 0x60, 0xf1, 0x3f, 0xc0, 0xc0, 0xdc, 0xee, 0x3e,
    0x70, 0xad, 0x3b, 0xbf, 0x70, 0xad, 0x3b, 0xbf, 0x00, 0x00, 0x00, 0x00,
    0xac, 0x9d, 0x2a, 0xc0, 0x20, 0xbd, 0xcc, 0x3e, 0xb8, 0xdc, 0xee, 0x3f,
    0x80, 0x7e, 0x88, 0xbd, 0x80, 0x7e, 0x88, 0xbd, 0x80, 0x7e, 0x88, 0xbd,
    0x40, 0xbd, 0x4c, 0xbe, 0x00, 0x7e, 0x88, 0x3d, 0x20, 0x7e, 0x88, 0xbe,
    0x00, 0x00, 0x00, 0x00, 0x40, 0xbd, 0x4c, 0xbe, 0x00, 0x00, 0x00, 0x00,
    0x40, 0x7e, 0x08, 0xbe, 0x40, 0xbd, 0x4c, 0x3e, 0x80, 0x7e, 0x88, 0xbd,
    0xc0, 0x9d, 0xaa, 0xbe, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
    0x00, 0x7e, 0x88, 0x3d, 0x80, 0x7e, 0x88, 0xbd, 0x40, 0x7e, 0x08, 0xbe,
    0x40, 0x7e, 0x08, 0xbe, 0x20, 0x7e, 0x88, 0x3e, 0x40, 0x7e, 0x08, 0xbe,
    0xe0, 0x8d, 0x19, 0x3f, 0x20, 0x7e, 0x08, 0xbf, 0x00, 0x7e, 0x08, 0x3e,
    0xc0, 0x9d, 0xaa, 0xbe, 0x40, 0xbd, 0x4c, 0xbe, 0x80, 0xec, 0x7f, 0xbf,
    0x40, 0xbd, 0xcc, 0xbe, 0x20, 0x7e, 0x88, 0x3e, 0x70, 0xad, 0xbb, 0x3f,
    0xe0, 0x8d, 0x19, 0x3f, 0x40, 0x7e, 0x08, 0xbe, 0x70, 0xad, 0x3b, 0x3f,
    0x00, 0x7e, 0x08, 0x3e, 0x00, 0x7e, 0x08, 0x3e, 0x40, 0xbd, 0x4c, 0xbe,
    0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x70, 0xad, 0x3b, 0xbf,
    0x80, 0x7e, 0x88, 0xbd, 0x80, 0x7e, 0x88, 0xbd, 0xc0, 0x9d, 0xaa, 0xbe,
    0x20, 0x7e, 0x88, 0x3e, 0x00, 0x7e, 0x08, 0x3e, 0x00, 0x7e, 0x88, 0x3d,
    0x80, 0x7e, 0x88, 0xbd, 0x20, 0x7e, 0x88, 0x3e, 0xc0, 0x9d, 0xaa, 0xbe,
    0x40, 0x7e, 0x08, 0xbe, 0x40, 0xbd, 0x4c, 0xbe, 0x40, 0x7e, 0x08, 0xbe,
    0x00, 0x00, 0x00, 0x00, 0x40, 0xbd, 0x4c, 0x3e, 0x20, 0x7e, 0x88, 0x3e,
    0x00, 0x7e, 0x08, 0x3e, 0x80, 0x7e, 0x88, 0xbd, 0x80, 0x7e, 0x88, 0xbd,
    0x00, 0x00, 0x00, 0x00, 0x40, 0xbd, 0x4c, 0x3e, 0x40, 0xbd, 0x4c, 0xbe,
    0x00, 0x7e, 0x88, 0x3d, 0x20, 0x7e, 0x88, 0xbe, 0x20, 0xbd, 0xcc, 0x3e,
    0x20, 0x7e, 0x88, 0x3e, 0x00, 0x7e, 0x88, 0x3d, 0x20, 0x7e, 0x88, 0xbe,
    0xa0, 0x9d, 0xaa, 0x3e, 0x40, 0xbd, 0xcc, 0xbe, 0x40, 0x7e, 0x08, 0xbe,
    0xc0, 0x9d, 0xaa, 0xbe, 0x40, 0x7e, 0x08, 0xbe, 0x40, 0x7e, 0x08, 0xbe,
    0xa0, 0x9d, 0xaa, 0x3e, 0x20, 0x7e, 0x88, 0x3e, 0x00, 0x00, 0x00, 0x00,
    0x00, 0x7e, 0x08, 0x3e, 0x40, 0x7e, 0x08, 0xbe, 0x00, 0x00, 0x00, 0x00,
    0x00, 0x7e, 0x08, 0x3e, 0x20, 0x7e, 0x88, 0xbe, 0x00, 0x00, 0x00, 0x00,
    0xb0, 0x9d, 0x2a, 0xbf, 0x04, 0x06, 0x11, 0xc0, 0x40, 0xbd, 0x4c, 0x3e,
    0xa0, 0x9d, 0xaa, 0x3e, 0x40, 0xbd, 0x4c, 0x3e, 0x50, 0x35, 0xc4, 0x3f,
    0x40, 0x7e, 0x08, 0xbe, 0x40, 0x7e, 0x08, 0xbe, 0xa0, 0x9d, 0xaa, 0x3e,
    0xf0, 0x8d, 0x19, 0xbf, 0x00, 0x00, 0x00, 0x00, 0xc8, 0x15, 0x22, 0xc0,
    0x20, 0x7e, 0x08, 0x3f, 0xc0, 0xdc, 0x6e, 0xbf, 0x30, 0xbd, 0x4c, 0xbf,
    0x80, 0x7e, 0x88, 0xbd, 0xb0, 0x9d, 0xaa, 0xbf, 0xe8, 0x8d, 0x99, 0x3f,
    0xb0, 0x9d, 0x2a, 0xbf, 0x00, 0x7e, 0x88, 0x3d, 0x00, 0x00, 0x00, 0x00,
    0x00, 0x00, 0x00, 0x00, 0x00, 0x7e, 0x08, 0x3e, 0x00, 0x7e, 0x88, 0x3d,
    0x40, 0xbd, 0x4c, 0xbe, 0x00, 0x00, 0x00, 0x00, 0x20, 0x7e, 0x88, 0xbe,
    0x00, 0x7e, 0x88, 0x3d, 0x80, 0x7e, 0x88, 0xbd, 0x00, 0x00, 0x00, 0x00,
    0x40, 0x7e, 0x08, 0xbe, 0x40, 0x7e, 0x08, 0xbe, 0x00, 0x00, 0x00, 0x00,
    0x00, 0x7e, 0x88, 0x3d, 0x00, 0x7e, 0x88, 0x3d, 0x00, 0x00, 0x00, 0x00,
    0x00, 0x00, 0x00, 0x00, 0x40, 0xbd, 0x4c, 0xbe, 0x00, 0x7e, 0x88, 0x3d,
    0x00, 0x7e, 0x88, 0x3d, 0x20, 0x7e, 0x08, 0x3f, 0xb0, 0x9d, 0x2a, 0xbf,
    0xa0, 0x9d, 0xaa, 0x3e, 0xc0, 0xdc, 0xee, 0xbe, 0x40, 0xbd, 0x4c, 0xbe,
    0xb0, 0x9d, 0xaa, 0xbf, 0x20, 0x7e, 0x88, 0xbe, 0x20, 0x7e, 0x88, 0x3e,
    0x10, 0x45, 0xd5, 0x3f, 0x20, 0x7e, 0x08, 0x3f, 0x40, 0x7e, 0x08, 0xbe,
    0x70, 0xad, 0x3b, 0x3f, 0x40, 0x7e, 0x08, 0xbe, 0x20, 0x7e, 0x88, 0x3e,
    0x40, 0x7e, 0x08, 0xbe, 0x00, 0x00, 0x00, 0x00, 0x00, 0x7e, 0x08, 0x3e,
    0x00, 0xcd, 0x5d, 0xbf, 0x40, 0xbd, 0x4c, 0xbe, 0x40, 0x7e, 0x08, 0xbe,
    0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x7e, 0x88, 0x3d,
    0x80, 0x7e, 0x88, 0xbd, 0x40, 0x7e, 0x08, 0xbe, 0x20, 0x7e, 0x88, 0x3e,
    0xc0, 0x9d, 0xaa, 0xbe, 0x40, 0xbd, 0x4c, 0xbe, 0xc0, 0x9d, 0xaa, 0xbe,
    0x40, 0x7e, 0x08, 0xbe, 0x00, 0x00, 0x00, 0x00, 0x20, 0x7e, 0x88, 0x3e,
    0x00, 0x7e, 0x08, 0x3e, 0x00, 0x00, 0x00, 0x00, 0x80, 0x7e, 0x88, 0xbd,
    0x00, 0x00, 0x00, 0x00, 0x40, 0xbd, 0x4c, 0xbe, 0x00, 0x7e, 0x88, 0x3d,
    0x40, 0xbd, 0x4c, 0xbe, 0x40, 0x7e, 0x08, 0xbe, 0x80, 0x7e, 0x88, 0xbd,
    0x00, 0x7e, 0x88, 0x3d, 0x00, 0x00, 0x00, 0x00, 0x80, 0x7e, 0x88, 0xbd,
    0x20, 0x7e, 0x88, 0xbe, 0x40, 0xbd, 0x4c, 0x3e, 0x40, 0xbd, 0xcc, 0xbe,
    0x20, 0x7e, 0x88, 0xbe, 0x20, 0x7e, 0x88, 0xbe, 0x40, 0x7e, 0x08, 0xbe,
    0x00, 0x00, 0x00, 0x00, 0x00, 0x7e, 0x08, 0x3e, 0x00, 0x7e, 0x08, 0x3e,
    0x80, 0x7e, 0x88, 0xbd, 0x00, 0x7e, 0x88, 0x3d, 0x00, 0x00, 0x00, 0x00,
    0x40, 0xbd, 0x4c, 0xbe, 0x80, 0x7e, 0x88, 0xbd, 0x20, 0x7e, 0x88, 0xbe,
    0x00, 0x00, 0x00, 0x00, 0x20, 0x7e, 0x08, 0xbf, 0xb0, 0x9d, 0xaa, 0xbf,
    0xa0, 0x9d, 0xaa, 0x3e, 0xc0, 0xdc, 0xee, 0x3e, 0x40, 0xbd, 0x4c, 0x3e,
    0xc8, 0x15, 0xa2, 0x3f, 0x20, 0x7e, 0x88, 0xbe, 0x00, 0x7e, 0x88, 0x3d,
    0xa0, 0x9d, 0xaa, 0x3e, 0x30, 0xbd, 0x4c, 0xbf, 0x80, 0x7e, 0x88, 0xbd,
    0x14, 0xc2, 0x8c, 0xc0, 0x88, 0x25, 0xb3, 0x3f, 0xa0, 0x9d, 0xaa, 0x3e,
    0x50, 0x35, 0xc4, 0xbf, 0x40, 0x7e, 0x08, 0xbe, 0x00, 0x7e, 0x08, 0x3e,
    0xc8, 0x15, 0xa2, 0x3f, 0x40, 0x7e, 0x08, 0xbe, 0x00, 0x00, 0x00, 0x00,
    0x00, 0x7e, 0x88, 0x3d, 0x00, 0x7e, 0x88, 0x3d, 0x00, 0x7e, 0x08, 0x3e,
    0x00, 0x00, 0x00, 0x00, 0x20, 0x7e, 0x88, 0xbe, 0x80, 0x7e, 0x88, 0xbd,
    0xc0, 0x9d, 0xaa, 0xbe, 0x00, 0x7e, 0x08, 0x3e, 0x40, 0x7e, 0x08, 0xbe,
    0x40, 0x7e, 0x08, 0xbe, 0x00, 0x00, 0x00, 0x00, 0x40, 0x7e, 0x08, 0xbe,
    0x80, 0x7e, 0x88, 0xbd, 0x00, 0x7e, 0x88, 0x3d, 0x00, 0x00, 0x00, 0x00,
    0x40, 0xbd, 0x4c, 0xbe, 0x80, 0x7e, 0x88, 0xbd, 0x80, 0x7e, 0x88, 0xbd,
    0x80, 0x7e, 0x88, 0xbd, 0x40, 0x7e, 0x08, 0xbe, 0x30, 0xbd, 0x4c, 0x3f,
    0x08, 0x06, 0x91, 0xbf, 0x40, 0xbd, 0x4c, 0x3e, 0xf0, 0x8d, 0x19, 0xbf,
    0x40, 0xbd, 0x4c, 0xbe, 0x50, 0x35, 0xc4, 0xbf, 0x40, 0xbd, 0x4c, 0xbe,
    0xa0, 0x9d, 0x2a, 0x3f, 0x10, 0x45, 0xd5, 0x3f, 0xc0, 0xdc, 0xee, 0x3e,
    0x00, 0x7e, 0x88, 0x3d, 0xf0, 0xcc, 0x5d, 0x3f, 0x80, 0x7e, 0x88, 0xbd,
    0x20, 0x7e, 0x88, 0x3e, 0x80, 0x7e, 0x88, 0xbd, 0x40, 0x7e, 0x08, 0xbe,
    0x00, 0x7e, 0x88, 0x3d, 0x80, 0xec, 0x7f, 0xbf, 0x70, 0xad, 0x3b, 0xbf,
    0x80, 0x7e, 0x88, 0xbd, 0x00, 0x00, 0x00, 0x00, 0x40, 0xbd, 0x4c, 0x3e,
    0x00, 0x7e, 0x88, 0x3d, 0x00, 0x7e, 0x88, 0x3d, 0x20, 0x7e, 0x88, 0xbe,
    0x20, 0x7e, 0x88, 0x3e, 0xc0, 0x9d, 0xaa, 0xbe, 0x40, 0x7e, 0x08, 0xbe,
    0x80, 0x7e, 0x88, 0xbd, 0x00, 0x7e, 0x08, 0x3e, 0x00, 0x7e, 0x08, 0x3e,
    0x40, 0xbd, 0x4c, 0x3e, 0x40, 0xbd, 0x4c, 0x3e, 0x80, 0x7e, 0x88, 0xbd,
    0x00, 0x00, 0x00, 0x00, 0x00, 0x7e, 0x88, 0x3d, 0x00, 0x7e, 0x88, 0x3d,
    0x80, 0x7e, 0x88, 0xbd, 0x00, 0x7e, 0x88, 0x3d, 0x40, 0x7e, 0x08, 0xbe,
    0x00, 0x00, 0x00, 0x00, 0x00, 0x7e, 0x88, 0x3d, 0x00, 0x7e, 0x88, 0x3d,
    0x40, 0x7e, 0x08, 0xbe, 0x20, 0x7e, 0x88, 0xbe, 0x00, 0x7e, 0x08, 0x3e,
    0x40, 0xbd, 0xcc, 0xbe, 0x80, 0x7e, 0x88, 0xbd, 0x00, 0x00, 0x00, 0x00,
    0xa0, 0x9d, 0xaa, 0x3e, 0x00, 0x7e, 0x88, 0x3d, 0x20, 0xbd, 0xcc, 0x3e,
    0x40, 0xbd, 0x4c, 0x3e, 0x40, 0x7e, 0x08, 0xbe, 0x40, 0xbd, 0x4c, 0x3e,
    0x80, 0x7e, 0x88, 0xbd, 0x00, 0x00, 0x00, 0x00, 0x40, 0x7e, 0x08, 0xbe,
    0x00, 0x7e, 0x88, 0x3d, 0x00, 0x7e, 0x88, 0x3d, 0x20, 0x7e, 0x88, 0xbe,
    0x38, 0xbd, 0xcc, 0xbf, 0x20, 0x7e, 0x88, 0x3e, 0x20, 0x7e, 0x08, 0xbf,
    0x00, 0x7e, 0x88, 0x3d, 0x70, 0xad, 0x3b, 0x3f, 0xc0, 0x9d, 0xaa, 0xbe,
    0x30, 0xbd, 0x4c, 0x3f, 0x40, 0xbd, 0x4c, 0x3e, 0x40, 0xbd, 0xcc, 0xbe,
    0x80, 0x7e, 0x88, 0xbd, 0x04, 0x06, 0x91, 0xc0, 0x40, 0xbd, 0xcc, 0xbe,
    0x10, 0x45, 0xd5, 0x3f, 0xe8, 0x8d, 0x99, 0xbf, 0x00, 0x00, 0x00, 0x00,
    0x20, 0x7e, 0x88, 0x3f, 0x50, 0x35, 0xc4, 0x3f, 0x20, 0x7e, 0x88, 0x3f,
    0x40, 0x7e, 0x08, 0xbe, 0x80, 0x7e, 0x88, 0xbd, 0x80, 0x7e, 0x88, 0xbd,
    0x00, 0x7e, 0x88, 0x3d, 0x00, 0x7e, 0x08, 0x3e, 0x40, 0xbd, 0x4c, 0xbe,
    0x00, 0x7e, 0x88, 0x3d, 0x40, 0xbd, 0x4c, 0xbe, 0x00, 0x7e, 0x08, 0x3e,
    0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x40, 0x7e, 0x08, 0xbe,
    0x40, 0xbd, 0x4c, 0xbe, 0x40, 0x7e, 0x08, 0xbe, 0x00, 0x00, 0x00, 0x00,
    0x00, 0x00, 0x00, 0x00, 0x80, 0x7e, 0x88, 0xbd, 0x80, 0x7e, 0x88, 0xbd,
    0x00, 0x00, 0x00, 0x00, 0x20, 0x7e, 0x88, 0xbe, 0x00, 0x7e, 0x08, 0x3e,
    0x80, 0xec, 0x7f, 0x3f, 0x28, 0x7e, 0x88, 0xbf, 0x20, 0x7e, 0x88, 0x3e,
    0xc0, 0x9d, 0xaa, 0xbe, 0x20, 0x7e, 0x88, 0xbe, 0x18, 0x45, 0xd5, 0xbf,
    0x40, 0xbd, 0xcc, 0xbe, 0x30, 0xbd, 0x4c, 0x3f, 0xb8, 0xdc, 0xee, 0x3f,
    0x30, 0xbd, 0x4c, 0x3f, 0x00, 0x00, 0x00, 0x00, 0x20, 0x7e, 0x88, 0x3f,
    0x80, 0x7e, 0x88, 0xbd, 0xa0, 0x9d, 0xaa, 0x3e, 0x80, 0x7e, 0x88, 0xbd,
    0x80, 0x7e, 0x88, 0xbd, 0x00, 0x7e, 0x08, 0x3e, 0xe8, 0x8d, 0x99, 0xbf,
    0x20, 0x7e, 0x08, 0xbf, 0x80, 0x7e, 0x88, 0xbd, 0x00, 0x7e, 0x88, 0x3d,
    0x00, 0x7e, 0x88, 0x3d, 0x00, 0x7e, 0x08, 0x3e, 0x40, 0x7e, 0x08, 0xbe,
    0x40, 0xbd, 0x4c, 0xbe, 0x20, 0x7e, 0x88, 0x3e, 0xc0, 0x9d, 0xaa, 0xbe,
    0x80, 0x7e, 0x88, 0xbd, 0x40, 0xbd, 0x4c, 0xbe, 0x00, 0x7e, 0x08, 0x3e,
    0x00, 0x7e, 0x88, 0x3d, 0x20, 0xbd, 0xcc, 0x3e, 0xa0, 0x9d, 0xaa, 0x3e,
    0x80, 0x7e, 0x88, 0xbd, 0x00, 0x7e, 0x08, 0x3e, 0x80, 0x7e, 0x88, 0xbd,
    0x00, 0x7e, 0x88, 0x3d, 0x00, 0x00, 0x00, 0x00, 0xc0, 0x9d, 0xaa, 0xbe,
    0x40, 0x7e, 0x08, 0xbe, 0x40, 0x7e, 0x08, 0xbe, 0x00, 0x7e, 0x88, 0x3d,
    0x00, 0x7e, 0x88, 0x3d, 0x40, 0x7e, 0x08, 0xbe, 0x80, 0x7e, 0x88, 0xbd,
    0x20, 0x7e, 0x88, 0x3e, 0xc0, 0x9d, 0xaa, 0xbe, 0x80, 0x7e, 0x88, 0xbd,
    0x20, 0x7e, 0x88, 0xbe, 0x00, 0x7e, 0x08, 0x3e, 0x40, 0x7e, 0x08, 0xbe,
    0xa0, 0x9d, 0xaa, 0x3e, 0x00, 0x7e, 0x88, 0x3d, 0x80, 0x7e, 0x88, 0xbd,
    0x20, 0xbd, 0xcc, 0x3e, 0x40, 0x7e, 0x08, 0xbe, 0x00, 0x00, 0x00, 0x00,
    0x40, 0x7e, 0x08, 0xbe, 0xc0, 0x9d, 0xaa, 0xbe, 0x80, 0x7e, 0x88, 0xbd,
    0x00, 0x7e, 0x88, 0x3d, 0x40, 0xbd, 0x4c, 0x3e, 0xc0, 0xdc, 0xee, 0x3e,
    0x50, 0x35, 0xc4, 0xbf, 0x00, 0x7e, 0x08, 0x3e, 0x00, 0x00, 0x00, 0x00,
    0x40, 0x7e, 0x08, 0xbe, 0xb0, 0xdc, 0x6e, 0x3f, 0xa0, 0x9d, 0xaa, 0x3e,
    0x20, 0x7e, 0x88, 0xbe, 0x80, 0x7e, 0x88, 0xbd, 0xac, 0x9d, 0x2a, 0xc0,
    0x40, 0xbd, 0x4c, 0xbe, 0x70, 0xad, 0x3b, 0x3f, 0xf8, 0xcc, 0xdd, 0xbf,
    0x00, 0x00, 0x00, 0x00, 0x00, 0x06, 0x91, 0x3f, 0x30, 0xbd, 0xcc, 0x3f,
    0x20, 0x7e, 0x88, 0x3f, 0x80, 0x7e, 0x88, 0xbd, 0x40, 0xbd, 0x4c, 0xbe,
    0x80, 0x7e, 0x88, 0xbd, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
    0x40, 0xbd, 0x4c, 0xbe, 0x00, 0x00, 0x00, 0x00, 0x40, 0xbd, 0x4c, 0xbe,
    0x00, 0x00, 0x00, 0x00, 0x00, 0x7e, 0x08, 0x3e, 0x00, 0x00, 0x00, 0x00,
    0x80, 0x7e, 0x88, 0xbd, 0xc0, 0xdc, 0xee, 0xbe, 0x40, 0x7e, 0x08, 0xbe,
    0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
    0x00, 0x7e, 0x88, 0x3d, 0x00, 0x7e, 0x88, 0x3d, 0xc0, 0x9d, 0xaa, 0xbe,
    0x00, 0x00, 0x00, 0x00, 0xb0, 0xdc, 0x6e, 0x3f, 0x38, 0xbd, 0xcc, 0xbf,
    0x00, 0x7e, 0x08, 0x3e, 0x40, 0xbd, 0xcc, 0xbe, 0x40, 0x7e, 0x08, 0xbe,
    0xa0, 0x64, 0xf7, 0xbf, 0x40, 0xbd, 0xcc, 0xbe, 0xe8, 0x8d, 0x99, 0x3f,
    0x30, 0x3a, 0x04, 0x40, 0xf0, 0xcc, 0x5d, 0x3f, 0x00, 0x7e, 0x08, 0x3e,
    0x80, 0xec, 0x7f, 0x3f, 0x80, 0x7e, 0x88, 0xbd, 0x70, 0xad, 0x3b, 0x3f,
    0x40, 0x7e, 0x08, 0xbe, 0x00, 0x7e, 0x88, 0x3d, 0x40, 0xbd, 0x4c, 0x3e,
    0xc8, 0x15, 0xa2, 0xbf, 0xc0, 0xdc, 0x6e, 0xbf, 0x80, 0x7e, 0x88, 0xbd,
    0x00, 0x00, 0x00, 0x00, 0x40, 0xbd, 0x4c, 0x3e, 0x40, 0xbd, 0x4c, 0x3e,
    0x80, 0x7e, 0x88, 0xbd, 0x40, 0xbd, 0x4c, 0xbe, 0x40, 0x7e, 0x08, 0xbe,
    0xc0, 0x9d, 0xaa, 0xbe, 0x40, 0x7e, 0x08, 0xbe, 0x20, 0x7e, 0x88, 0xbe,
    0x20, 0x7e, 0x88, 0xbe, 0x40, 0x7e, 0x08, 0xbe, 0xa0, 0x9d, 0xaa, 0x3e,
    0x00, 0x7e, 0x08, 0x3e, 0x40, 0xbd, 0x4c, 0xbe, 0x00, 0x7e, 0x88, 0x3d,
    0x40, 0x7e, 0x08, 0xbe, 0x20, 0x7e, 0x88, 0xbe, 0x00, 0x7e, 0x08, 0x3e,
    0xc0, 0xdc, 0x6e, 0xbf, 0x00, 0x00, 0x00, 0x00, 0x00, 0x7e, 0x88, 0x3d,
    0x40, 0xbd, 0x4c, 0x3e, 0xa0, 0x9d, 0xaa, 0x3e, 0x00, 0x7e, 0x88, 0x3d,
    0x20, 0x7e, 0x88, 0xbe, 0x00, 0x7e, 0x08, 0x3e, 0x20, 0x7e, 0x88, 0xbe,
    0x20, 0x7e, 0x88, 0xbe, 0x20, 0x7e, 0x88, 0xbe, 0x40, 0x7e, 0x08, 0xbe,
    0x00, 0x00, 0x00, 0x00, 0x20, 0xbd, 0xcc, 0x3e, 0x00, 0x7e, 0x88, 0x3d,
    0x40, 0xbd, 0x4c, 0xbe, 0x00, 0x7e, 0x88, 0x3d, 0x40, 0x7e, 0x08, 0xbe,
    0x20, 0x7e, 0x88, 0xbe, 0x00, 0x00, 0x00, 0x00, 0x70, 0xad, 0x3b, 0xbf,
    0x40, 0x7e, 0x08, 0xbe, 0x00, 0x7e, 0x88, 0x3d, 0xa8, 0x9d, 0xaa, 0x3f,
    0x00, 0x7e, 0x88, 0x3d, 0x38, 0xbd, 0xcc, 0xbf, 0x20, 0xbd, 0xcc, 0x3e,
    0xc0, 0x9d, 0xaa, 0xbe, 0xc0, 0x9d, 0xaa, 0xbe, 0xa0, 0x9d, 0x2a, 0x3f,
    0x20, 0xbd, 0xcc, 0x3e, 0xc0, 0xdc, 0xee, 0xbe, 0x00, 0x00, 0x00, 0x00,
    0x40, 0x7e, 0x08, 0xbe, 0x70, 0xad, 0x3b, 0xbf, 0x00, 0x00, 0x00, 0x00,
    0xc0, 0xdc, 0xee, 0xbf, 0x40, 0x7e, 0x08, 0xbe, 0x00, 0x7e, 0x88, 0x3d,
    0x00, 0x06, 0x91, 0x3f, 0x00, 0x06, 0x91, 0x3f, 0x40, 0x7e, 0x08, 0xbe,
    0x40, 0xbd, 0x4c, 0xbe, 0x00, 0x00, 0x00, 0x00, 0x00, 0x7e, 0x88, 0x3d,
    0x00, 0x00, 0x00, 0x00, 0x20, 0x7e, 0x88, 0xbe, 0x00, 0x7e, 0x88, 0x3d,
    0xc0, 0x9d, 0xaa, 0xbe, 0x40, 0xbd, 0x4c, 0xbe, 0x00, 0x00, 0x00, 0x00,
    0x80, 0x7e, 0x88, 0xbd, 0x40, 0x7e, 0x08, 0xbe, 0xf0, 0x8d, 0x19, 0xbf,
    0x40, 0xbd, 0x4c, 0xbe, 0x00, 0x7e, 0x88, 0x3d, 0x00, 0x00, 0x00, 0x00,
    0x80, 0x7e, 0x88, 0xbd, 0x00, 0x00, 0x00, 0x00, 0x00, 0x7e, 0x88, 0x3d,
    0xa0, 0x9d, 0xaa, 0x3e, 0x40, 0xbd, 0x4c, 0xbe, 0xf0, 0xcc, 0x5d, 0x3f,
    0x18, 0x45, 0xd5, 0xbf, 0x20, 0x7e, 0x08, 0x3f, 0xc0, 0xdc, 0xee, 0xbe,
    0x40, 0xbd, 0x4c, 0xbe, 0x80, 0xec, 0xff, 0xbf, 0x20, 0x7e, 0x88, 0xbe,
    0x88, 0x25, 0xb3, 0x3f, 0x20, 0x7e, 0x08, 0x40, 0xa0, 0x9d, 0x2a, 0x3f,
    0x40, 0x7e, 0x08, 0xbe, 0x30, 0xbd, 0x4c, 0x3f, 0x00, 0x7e, 0x08, 0x3e,
    0xe8, 0x8d, 0x99, 0x3f, 0x40, 0x7e, 0x08, 0xbe, 0x40, 0x7e, 0x08, 0xbe,
    0x40, 0xbd, 0x4c, 0xbe, 0x28, 0x7e, 0x88, 0xbf, 0x30, 0xbd, 0x4c, 0xbf,
    0x00, 0x00, 0x00, 0x00, 0x40, 0xbd, 0x4c, 0x3e, 0xa0, 0x9d, 0xaa, 0x3e,
    0x00, 0x7e, 0x88, 0x3d, 0x40, 0xbd, 0x4c, 0xbe, 0x40, 0xbd, 0x4c, 0xbe,
    0x00, 0x7e, 0x88, 0x3d, 0x20, 0x7e, 0x88, 0xbe, 0x20, 0x7e, 0x88, 0xbe,
    0x40, 0xbd, 0x4c, 0xbe, 0xc0, 0xdc, 0xee, 0xbe, 0x00, 0x00, 0x00, 0x00,
    0x20, 0x7e, 0x88, 0x3e, 0x20, 0x7e, 0x88, 0x3e, 0x40, 0xbd, 0xcc, 0xbe,
    0x40, 0xbd, 0x4c, 0x3e, 0x40, 0x7e, 0x08, 0xbe, 0x40, 0xbd, 0x4c, 0xbe,
    0x00, 0x7e, 0x08, 0x3e, 0xe8, 0x8d, 0x99, 0xbf, 0x40, 0x7e, 0x08, 0xbe,
    0x00, 0x7e, 0x08, 0x3e, 0x20, 0xbd, 0xcc, 0x3e, 0x00, 0x00, 0x00, 0x00,
    0x40, 0xbd, 0x4c, 0xbe, 0x40, 0x7e, 0x08, 0xbe, 0x00, 0x7e, 0x88, 0x3d,
    0x20, 0x7e, 0x88, 0xbe, 0x40, 0xbd, 0x4c, 0xbe, 0xc0, 0x9d, 0xaa, 0xbe,
    0xf0, 0x8d, 0x19, 0xbf, 0x80, 0x7e, 0x88, 0xbd, 0xa0, 0x9d, 0xaa, 0x3e,
    0x20, 0x7e, 0x88, 0x3e, 0x40, 0xbd, 0x4c, 0xbe, 0x40, 0xbd, 0x4c, 0x3e,
    0x80, 0x7e, 0x88, 0xbd, 0x80, 0x7e, 0x88, 0xbd, 0x40, 0xbd, 0x4c, 0x3e,
    0x28, 0x7e, 0x88, 0xbf, 0x80, 0x7e, 0x88, 0xbd, 0x40, 0x7e, 0x08, 0xbe,
    0xc8, 0x15, 0xa2, 0x3f, 0x20, 0x7e, 0x88, 0x3e, 0xa0, 0x64, 0xf7, 0xbf,
    0xa0, 0x9d, 0xaa, 0x3e, 0xa0, 0x9d, 0x2a, 0x3f, 0x00, 0x00, 0x00, 0x00,
    0xf0, 0x8d, 0x19, 0xbf, 0xc0, 0xdc, 0xee, 0xbe, 0xc0, 0xdc, 0xee, 0xbe,
    0x40, 0x7e, 0x08, 0xbe, 0x40, 0x7e, 0x08, 0xbe, 0xa0, 0x9d, 0xaa, 0x3e,
    0x88, 0x25, 0xb3, 0x3f, 0xe8, 0x8d, 0x19, 0xc0, 0x40, 0x7e, 0x08, 0xbe,
    0xa0, 0x9d, 0xaa, 0x3e, 0xa0, 0x9d, 0xaa, 0x3e, 0x00, 0x7e, 0x08, 0x3e,
    0x80, 0x7e, 0x88, 0xbd, 0x00, 0x7e, 0x88, 0x3d, 0x00, 0x00, 0x00, 0x00,
    0x40, 0x7e, 0x08, 0xbe, 0x00, 0x7e, 0x88, 0x3d, 0xc0, 0x9d, 0xaa, 0xbe,
    0x40, 0x7e, 0x08, 0xbe, 0x20, 0x7e, 0x88, 0xbe, 0x20, 0x7e, 0x88, 0xbe,
    0x00, 0x7e, 0x88, 0x3d, 0x40, 0xbd, 0x4c, 0x3e, 0x00, 0x7e, 0x88, 0x3d,
    0x40, 0xbd, 0xcc, 0xbe, 0x80, 0x7e, 0x88, 0xbd, 0x00, 0x7e, 0x88, 0x3d,
    0x00, 0x00, 0x00, 0x00, 0x80, 0x7e, 0x88, 0xbd, 0x80, 0x7e, 0x88, 0xbd,
    0x00, 0x7e, 0x88, 0x3d, 0xc0, 0x9d, 0xaa, 0xbe, 0x40, 0x7e, 0x08, 0xbe,
    0x80, 0xec, 0x7f, 0x3f, 0xf8, 0xcc, 0xdd, 0xbf, 0x20, 0x7e, 0x08, 0x3f,
    0xc0, 0x9d, 0xaa, 0xbe, 0x40, 0xbd, 0x4c, 0xbe, 0x14, 0xc2, 0x0c, 0xc0,
    0x40, 0xbd, 0x4c, 0xbe, 0x10, 0x45, 0xd5, 0x3f, 0xf4, 0x49, 0x15, 0x40,
    0x20, 0xbd, 0xcc, 0x3e, 0x40, 0x7e, 0x08, 0xbe, 0xe0, 0x8d, 0x19, 0x3f,
    0x20, 0xbd, 0xcc, 0x3e, 0x50, 0x35, 0xc4, 0x3f, 0x00, 0x00, 0x00, 0x00,
    0x40, 0x7e, 0x08, 0xbe, 0x40, 0xbd, 0x4c, 0xbe, 0xe8, 0x8d, 0x99, 0xbf,
    0xc0, 0xdc, 0x6e, 0xbf, 0x00, 0x7e, 0x88, 0x3d, 0x20, 0x7e, 0x88, 0x3e,
    0x00, 0x00, 0x00, 0x00, 0x00, 0x7e, 0x08, 0x3e, 0x20, 0x7e, 0x88, 0xbe,
    0xc0, 0x9d, 0xaa, 0xbe, 0x20, 0x7e, 0x88, 0x3e, 0x00, 0x00, 0x00, 0x00,
    0x40, 0xbd, 0x4c, 0xbe, 0x20, 0x7e, 0x88, 0xbe, 0xc0, 0x9d, 0xaa, 0xbe,
    0x00, 0x7e, 0x88, 0x3d, 0xa0, 0x9d, 0xaa, 0x3e, 0xa0, 0x9d, 0xaa, 0x3e,
    0x00, 0x00, 0x00, 0x00, 0x80, 0x7e, 0x88, 0xbd, 0x80, 0x7e, 0x88, 0xbd,
    0x80, 0x7e, 0x88, 0xbd, 0xa0, 0x9d, 0xaa, 0x3e, 0xc8, 0x15, 0xa2, 0xbf,
    0x00, 0x7e, 0x88, 0x3d, 0x00, 0x7e, 0x88, 0x3d, 0x40, 0xbd, 0x4c, 0x3e,
    0xa0, 0x9d, 0xaa, 0x3e, 0x40, 0x7e, 0x08, 0xbe, 0x40, 0x7e, 0x08, 0xbe,
    0x40, 0xbd, 0x4c, 0x3e, 0x00, 0x00, 0x00, 0x00, 0x40, 0xbd, 0x4c, 0xbe,
    0xc0, 0x9d, 0xaa, 0xbe, 0x40, 0xbd, 0x4c, 0xbe, 0x40, 0x7e, 0x08, 0xbe,
    0x20, 0x7e, 0x88, 0x3e, 0xc0, 0xdc, 0xee, 0x3e, 0x00, 0x7e, 0x88, 0x3d,
    0x00, 0x7e, 0x88, 0x3d, 0x00, 0x7e, 0x88, 0x3d, 0x80, 0x7e, 0x88, 0xbd,
    0xa0, 0x9d, 0xaa, 0x3e, 0x70, 0xad, 0xbb, 0xbf, 0x00, 0x00, 0x00, 0x00,
    0xc0, 0xdc, 0xee, 0x3e, 0x08, 0x06, 0x91, 0xbf, 0x70, 0xad, 0x3b, 0x3f,
    0xc0, 0xdc, 0xee, 0xbf, 0x20, 0x7e, 0x88, 0x3e, 0x40, 0x7e, 0x08, 0xbe,
    0x80, 0x7e, 0x88, 0xbd, 0xc8, 0x15, 0xa2, 0xbf, 0x20, 0x7e, 0x88, 0x3e,
    0x20, 0xbd, 0xcc, 0x3e, 0x00, 0x00, 0x00, 0x00, 0x30, 0xbd, 0x4c, 0xbf,
    0xa8, 0x9d, 0xaa, 0x3f, 0x00, 0x06, 0x91, 0x3f, 0xe8, 0x8d, 0x19, 0xc0,
    0x00, 0x00, 0x00, 0x00, 0x00, 0x7e, 0x88, 0x3d, 0xc0, 0xdc, 0xee, 0x3e,
    0x00, 0x7e, 0x08, 0x3e, 0x40, 0x7e, 0x08, 0xbe, 0x00, 0x7e, 0x88, 0x3d,
    0x80, 0x7e, 0x88, 0xbd, 0x80, 0x7e, 0x88, 0xbd, 0x40, 0xbd, 0x4c, 0xbe,
    0x40, 0x7e, 0x08, 0xbe, 0x00, 0x7e, 0x08, 0x3e, 0x40, 0x7e, 0x08, 0xbe,
    0x00, 0x7e, 0x88, 0x3d, 0x40, 0xbd, 0x4c, 0x3e, 0x00, 0x7e, 0x88, 0x3d,
    0x80, 0x7e, 0x88, 0xbd, 0xc0, 0x9d, 0xaa, 0xbe, 0x20, 0x7e, 0x08, 0xbf,
    0x40, 0x7e, 0x08, 0xbe, 0x80, 0x7e, 0x88, 0xbd, 0x00, 0x00, 0x00, 0x00,
    0x00, 0x7e, 0x88, 0x3d, 0xa0, 0x9d, 0xaa, 0x3e, 0x08, 0x06, 0x91, 0xbf,
    0x00, 0x00, 0x00, 0x00, 0x80, 0xec, 0x7f, 0x3f, 0x34, 0x3a, 0x04, 0xc0,
    0x30, 0xbd, 0x4c, 0x3f, 0xf0, 0x8d, 0x19, 0xbf, 0x20, 0x7e, 0x88, 0xbe,
    0x04, 0x06, 0x11, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x14, 0xc2, 0x0c, 0x40,
    0xb8, 0x59, 0x26, 0x40, 0xf0, 0xcc, 0x5d, 0x3f, 0x00, 0x7e, 0x88, 0x3d,
    0x20, 0xbd, 0xcc, 0x3e, 0x30, 0xbd, 0x4c, 0x3f, 0x04, 0x06, 0x11, 0x40,
    0x20, 0x7e, 0x88, 0xbe, 0x00, 0x7e, 0x08, 0x3e, 0x00, 0x00, 0x00, 0x00,
    0xe8, 0x8d, 0x99, 0xbf, 0xc8, 0x15, 0xa2, 0xbf, 0x00, 0x00, 0x00, 0x00,
    0xa0, 0x9d, 0x2a, 0x3f, 0x08, 0x06, 0x91, 0xbf, 0x20, 0xbd, 0xcc, 0x3e,
    0xc0, 0xdc, 0xee, 0xbe, 0x20, 0x7e, 0x88, 0xbe, 0x18, 0x45, 0xd5, 0xbf,
    0xc0, 0x9d, 0xaa, 0xbe, 0x70, 0xad, 0x3b, 0x3f, 0x98, 0x64, 0xf7, 0x3f,
    0xa0, 0x9d, 0x2a, 0x3f, 0x40, 0x7e, 0x08, 0xbe, 0x80, 0xec, 0x7f, 0x3f,
    0x40, 0xbd, 0x4c, 0x3e, 0xa0, 0x9d, 0xaa, 0x3e, 0x80, 0x7e, 0x88, 0xbd,
    0x80, 0x7e, 0x88, 0xbd, 0x80, 0x7e, 0x88, 0xbd, 0x00, 0xcd, 0x5d, 0xbf,
    0x40, 0x7e, 0x08, 0xbe, 0x40, 0x7e, 0x08, 0xbe, 0xa0, 0x9d, 0xaa, 0x3e,
    0x18, 0x45, 0xd5, 0xbf, 0xa8, 0x9d, 0xaa, 0x3f, 0xa0, 0x9d, 0xaa, 0x3e,
    0xa0, 0x9d, 0xaa, 0x3e, 0x40, 0xbd, 0x4c, 0x3e, 0x40, 0xbd, 0xcc, 0xbe,
    0xe0, 0x8d, 0x19, 0x3f, 0x20, 0x7e, 0x08, 0x3f, 0x20, 0x7e, 0x08, 0x3f,
    0x00, 0x00, 0x00, 0x00, 0x28, 0x7e, 0x88, 0xbf, 0x00, 0x7e, 0x88, 0x3d,
    0xa0, 0x9d, 0xaa, 0x3e, 0x00, 0x7e, 0x88, 0x3d, 0x00, 0x00, 0x00, 0x00,
    0x20, 0x7e, 0x88, 0xbe, 0xe0, 0x8d, 0x19, 0x3f, 0xa0, 0x9d, 0xaa, 0x3e,
    0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x7e, 0x08, 0x3e,
    0x28, 0x7e, 0x88, 0xbf, 0x00, 0xcd, 0x5d, 0xbf, 0x00, 0x00, 0x00, 0x00,
    0x00, 0x00, 0x00, 0x00, 0x80, 0x7e, 0x88, 0xbd, 0x40, 0xbd, 0x4c, 0x3e,
    0x00, 0x00, 0x00, 0x00, 0x00, 0x7e, 0x08, 0x3e, 0x80, 0x7e, 0x88, 0xbd,
    0x40, 0xbd, 0x4c, 0x3e, 0x00, 0x7e, 0x08, 0x3e, 0x50, 0x35, 0xc4, 0xbf,
    0x40, 0x7e, 0x08, 0xbe, 0x80, 0x7e, 0x88, 0xbd, 0x00, 0x7e, 0x88, 0x3d,
    0x40, 0xbd, 0x4c, 0xbe, 0x80, 0xec, 0x7f, 0xbf, 0x40, 0x7e, 0x08, 0xbe,
    0xc0, 0xdc, 0xee, 0x3e, 0x80, 0xec, 0x7f, 0xbf, 0x70, 0xad, 0x3b, 0x3f,
    0xc0, 0xdc, 0xee, 0xbe, 0x40, 0x7e, 0x08, 0xbe, 0x50, 0x35, 0xc4, 0xbf,
    0x00, 0x7e, 0x88, 0x3d, 0xc0, 0xdc, 0xee, 0x3e, 0xd8, 0x54, 0xe6, 0x3f,
    0xe0, 0x8d, 0x19, 0x3f, 0x00, 0x7e, 0x88, 0x3d, 0x20, 0xbd, 0xcc, 0x3e,
    0xc0, 0x9d, 0xaa, 0xbe, 0xa0, 0x9d, 0xaa, 0x3e, 0x20, 0x7e, 0x88, 0xbe,
    0x00, 0x7e, 0x88, 0x3d, 0x20, 0x7e, 0x08, 0x3f, 0xc0, 0xdc, 0xee, 0xbe,
    0xa0, 0x9d, 0xaa, 0x3e, 0x40, 0x7e, 0x08, 0xbe, 0xa0, 0x9d, 0xaa, 0x3e,
    0x00, 0x7e, 0x88, 0x3d, 0x00, 0x7e, 0x88, 0x3d, 0x20, 0x7e, 0x88, 0xbe,
    0x20, 0x7e, 0x88, 0x3e, 0x30, 0xbd, 0x4c, 0xbf, 0x00, 0x00, 0x00, 0x00,
    0x20, 0x7e, 0x88, 0xbe, 0x20, 0x7e, 0x88, 0xbe, 0x20, 0x7e, 0x88, 0x3e,
    0x40, 0x7e, 0x08, 0xbe, 0x00, 0x7e, 0x88, 0x3d, 0x80, 0x7e, 0x88, 0xbd,
    0x00, 0x00, 0x00, 0x00, 0x20, 0x7e, 0x88, 0x3e, 0x00, 0x00, 0x00, 0x00,
    0x00, 0x7e, 0x88, 0x3d, 0x20, 0x7e, 0x08, 0xbf, 0x00, 0x7e, 0x08, 0x3e,
    0x80, 0x7e, 0x88, 0xbd, 0xc0, 0x9d, 0xaa, 0xbe, 0x20, 0x7e, 0x88, 0xbe,
    0x20, 0xbd, 0xcc, 0x3e, 0x40, 0x7e, 0x08, 0xbe, 0x00, 0x7e, 0x88, 0x3d,
    0xe0, 0x8d, 0x19, 0x3f, 0x00, 0x7e, 0x88, 0x3d, 0x20, 0x7e, 0x88, 0x3e,
    0x40, 0xbd, 0x4c, 0xbe, 0x20, 0x7e, 0x88, 0x3e, 0x80, 0x7e, 0x88, 0xbd,
    0x00, 0x7e, 0x08, 0x3e, 0xc0, 0x9d, 0xaa, 0xbe, 0xa0, 0x9d, 0xaa, 0x3e,
    0x40, 0xbd, 0x4c, 0xbe, 0x00, 0x00, 0x00, 0x00, 0xc0, 0x9d, 0xaa, 0xbe,
    0xa0, 0x9d, 0xaa, 0x3e, 0xc0, 0xdc, 0xee, 0x3e, 0x00, 0x7e, 0x88, 0x3d,
    0xc0, 0x9d, 0xaa, 0xbe, 0x80, 0x7e, 0x88, 0xbd, 0x20, 0x7e, 0x88, 0x3e,
    0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xc0, 0xdc, 0xee, 0x3e,
    0x80, 0x7e, 0x88, 0xbd, 0x20, 0xbd, 0xcc, 0x3e, 0x40, 0xbd, 0x4c, 0xbe,
    0x20, 0x7e, 0x88, 0x3e, 0x00, 0x00, 0x00, 0x00, 0x40, 0xbd, 0x4c, 0x3e,
    0x40, 0xbd, 0xcc, 0xbe, 0x20, 0x7e, 0x08, 0x3f, 0x40, 0xbd, 0x4c, 0xbe,
    0x00, 0x00, 0x00, 0x00, 0x40, 0xbd, 0x4c, 0xbe, 0xc0, 0xdc, 0xee, 0x3e,
    0xa0, 0x9d, 0xaa, 0x3e, 0x80, 0x7e, 0x88, 0xbd, 0xf0, 0xcc, 0x5d, 0x3f,
    0xf8, 0x49, 0x15, 0xc0, 0x24, 0x7e, 0x08, 0xc0, 0x40, 0xbd, 0x4c, 0x3e,
    0xc0, 0xdc, 0xee, 0x3e, 0xc0, 0xdc, 0xee, 0x3e, 0x00, 0x7e, 0x88, 0x3d,
    0xc8, 0x15, 0xa2, 0xbf, 0x00, 0x7e, 0x88, 0x3d, 0xb0, 0x9d, 0xaa, 0xbf,
    0x00, 0x00, 0x00, 0x00, 0xe8, 0x8d, 0x99, 0x3f, 0x50, 0x35, 0xc4, 0x3f,
    0xcc, 0x98, 0x6a, 0xc0, 0x40, 0xbd, 0x4c, 0xbe, 0x00, 0x7e, 0x88, 0x3d,
    0x18, 0x45, 0xd5, 0xbf, 0xe0, 0x8d, 0x19, 0x3f, 0xd8, 0x54, 0xe6, 0x3f,
    0x40, 0x7e, 0x08, 0xbe, 0x00, 0x7e, 0x08, 0x3e, 0x00, 0x7e, 0x88, 0x3d,
    0xc0, 0x9d, 0xaa, 0xbe, 0x00, 0x00, 0x00, 0x00, 0x40, 0xbd, 0x4c, 0xbe,
    0x00, 0x7e, 0x88, 0x3d, 0x40, 0x7e, 0x08, 0xbe, 0x80, 0x7e, 0x88, 0xbd,
    0x00, 0x7e, 0x88, 0x3d, 0x80, 0x7e, 0x88, 0xbd, 0x40, 0x7e, 0x08, 0xbe,
    0x20, 0x7e, 0x08, 0xbf, 0x80, 0x7e, 0x88, 0xbd, 0x80, 0x7e, 0x88, 0xbd,
    0x00, 0x7e, 0x88, 0x3d, 0x80, 0x7e, 0x88, 0xbd, 0x00, 0x7e, 0x88, 0x3d,
    0x00, 0x7e, 0x88, 0x3d, 0x00, 0x00, 0x00, 0x00, 0x00, 0x7e, 0x88, 0x3d,
    0x20, 0xbd, 0xcc, 0x3e, 0x80, 0xec, 0x7f, 0xbf, 0x70, 0xad, 0x3b, 0x3f,
    0xf0, 0x8d, 0x19, 0xbf, 0x80, 0x7e, 0x88, 0xbd, 0x18, 0x45, 0xd5, 0xbf,
    0x80, 0x7e, 0x88, 0xbd, 0x20, 0x7e, 0x08, 0x3f, 0xd8, 0x54, 0xe6, 0x3f,
    0xe0, 0x8d, 0x19, 0x3f, 0x80, 0x7e, 0x88, 0xbd, 0x20, 0xbd, 0xcc, 0x3e,
    0x20, 0x7e, 0x88, 0xbe, 0x40, 0xbd, 0x4c, 0x3e, 0xc0, 0x9d, 0xaa, 0xbe,
    0x40, 0x7e, 0x08, 0xbe, 0xc0, 0xdc, 0xee, 0x3e, 0xf0, 0x8d, 0x19, 0xbf,
    0xa0, 0x9d, 0xaa, 0x3e, 0x80, 0x7e, 0x88, 0xbd, 0xf0, 0x8d, 0x19, 0xbf,
    0x40, 0x7e, 0x08, 0xbe, 0x20, 0xbd, 0xcc, 0x3e, 0x00, 0x7e, 0x88, 0x3d,
    0x00, 0x7e, 0x88, 0x3d, 0xa0, 0x9d, 0x2a, 0x3f, 0x40, 0x7e, 0x08, 0xbe,
    0x00, 0x7e, 0x08, 0x3e, 0x40, 0x7e, 0x08, 0xbe, 0x00, 0x00, 0x00, 0x00,
    0x80, 0x7e, 0x88, 0xbd, 0x00, 0x7e, 0x88, 0x3d, 0xc0, 0xdc, 0xee, 0xbe,
    0xa0, 0x9d, 0xaa, 0x3e, 0x40, 0xbd, 0x4c, 0xbe, 0x00, 0x7e, 0x88, 0x3d,
    0x40, 0x7e, 0x08, 0xbe, 0xc0, 0xdc, 0xee, 0x3e, 0x00, 0x7e, 0x88, 0x3d,
    0x80, 0x7e, 0x88, 0xbd, 0xf0, 0x8d, 0x19, 0xbf, 0x40, 0xbd, 0x4c, 0xbe,
    0x20, 0xbd, 0xcc, 0x3e, 0x00, 0x00, 0x00, 0x00, 0x40, 0x7e, 0x08, 0xbe,
    0x20, 0x7e, 0x08, 0x3f, 0x80, 0x7e, 0x88, 0xbd, 0x20, 0x7e, 0x88, 0x3e,
    0x80, 0x7e, 0x88, 0xbd, 0x00, 0x7e, 0x88, 0x3d, 0x00, 0x7e, 0x88, 0x3d,
    0x00, 0x7e, 0x08, 0x3e, 0xc0, 0x9d, 0xaa, 0xbe, 0x40, 0xbd, 0x4c, 0x3e,
    0x80, 0x7e, 0x88, 0xbd, 0x40, 0x7e, 0x08, 0xbe, 0x00, 0x00, 0x00, 0x00,
    0x20, 0x7e, 0x08, 0x3f, 0x00, 0x7e, 0x08, 0x3e, 0x80, 0x7e, 0x88, 0xbd,
    0x20, 0x7e, 0x88, 0x3f, 0xf0, 0xcc, 0x5d, 0x3f, 0xf8, 0xcc, 0xdd, 0xbf,
    0x20, 0x7e, 0x88, 0x3f, 0xa0, 0x9d, 0xaa, 0x3e, 0xc0, 0xdc, 0xee, 0x3e,
    0x00, 0x00, 0x00, 0x00, 0x80, 0x69, 0x37, 0xc0, 0xc0, 0xdc, 0xee, 0x3e,
    0x40, 0xbd, 0x4c, 0x3e, 0x80, 0x7e, 0x88, 0xbd, 0x00, 0x06, 0x91, 0x3f,
    0xf0, 0xcc, 0x5d, 0x3f, 0x13, 0xc2, 0x0c, 0xc1, 0x30, 0x3a, 0x04, 0x40,
    0x00, 0x7e, 0x08, 0x3e, 0x70, 0xad, 0xbb, 0x3f, 0x00, 0x00, 0x00, 0x00,
    0xf6, 0x49, 0x95, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x40, 0xbd, 0x4c, 0x3e,
    0x00, 0x7e, 0x08, 0x3e, 0x20, 0x7e, 0x88, 0xbe, 0x00, 0x00, 0x00, 0x00,
    0x00, 0x7e, 0x88, 0x3d, 0x00, 0x7e, 0x88, 0x3d, 0x80, 0x7e, 0x88, 0xbd,
    0x00, 0x00, 0x00, 0x00, 0x80, 0x7e, 0x88, 0xbd, 0x20, 0x7e, 0x88, 0xbe,
    0x00, 0x00, 0x00, 0x00, 0x40, 0xbd, 0xcc, 0xbe, 0x80, 0x7e, 0x88, 0xbd,
    0x40, 0x7e, 0x08, 0xbe, 0x00, 0x7e, 0x88, 0x3d, 0x00, 0x00, 0x00, 0x00,
    0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x80, 0x7e, 0x88, 0xbd,
    0x00, 0x7e, 0x88, 0x3d, 0xe0, 0x8d, 0x19, 0x3f, 0x00, 0xcd, 0x5d, 0xbf,
    0x20, 0x7e, 0x08, 0x3f, 0xc0, 0xdc, 0xee, 0xbe, 0x80, 0x7e, 0x88, 0xbd,
    0x50, 0x35, 0xc4, 0xbf, 0x80, 0x7e, 0x88, 0xbd, 0xc0, 0xdc, 0xee, 0x3e,
    0xf8, 0xcc, 0xdd, 0x3f, 0xe0, 0x8d, 0x19, 0x3f, 0x00, 0x7e, 0x88, 0x3d,
    0x20, 0xbd, 0xcc, 0x3e, 0xc0, 0x9d, 0xaa, 0xbe, 0x20, 0xbd, 0xcc, 0x3e,
    0x20, 0x7e, 0x88, 0xbe, 0x40, 0x7e, 0x08, 0xbe, 0xc0, 0xdc, 0xee, 0x3e,
    0x20, 0x7e, 0x08, 0xbf, 0xa0, 0x9d, 0xaa, 0x3e, 0x00, 0x7e, 0x88, 0x3d,
    0x40, 0xbd, 0xcc, 0xbe, 0x40, 0x7e, 0x08, 0xbe, 0xa0, 0x9d, 0xaa, 0x3e,
    0x00, 0x7e, 0x88, 0x3d, 0x00, 0x00, 0x00, 0x00, 0xe0, 0x8d, 0x19, 0x3f,
    0x40, 0x7e, 0x08, 0xbe, 0x00, 0x7e, 0x08, 0x3e, 0x80, 0x7e, 0x88, 0xbd,
    0x80, 0x7e, 0x88, 0xbd, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
    0x20, 0x7e, 0x88, 0xbe, 0x00, 0x7e, 0x08, 0x3e, 0x40, 0xbd, 0x4c, 0xbe,
    0x40, 0x7e, 0x08, 0xbe, 0x00, 0x00, 0x00, 0x00, 0x20, 0xbd, 0xcc, 0x3e,
    0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x40, 0xbd, 0xcc, 0xbe,
    0x00, 0x00, 0x00, 0x00, 0xc0, 0xdc, 0xee, 0x3e, 0x00, 0x7e, 0x08, 0x3e,
    0x00, 0x00, 0x00, 0x00, 0xe0, 0x8d, 0x19, 0x3f, 0x00, 0x00, 0x00, 0x00,
    0x40, 0xbd, 0x4c, 0x3e, 0x20, 0x7e, 0x88, 0xbe, 0x80, 0x7e, 0x88, 0xbd,
    0x80, 0x7e, 0x88, 0xbd, 0x00, 0x7e, 0x08, 0x3e, 0xc0, 0xdc, 0xee, 0xbe,
    0x20, 0x7e, 0x88, 0x3e, 0x40, 0xbd, 0x4c, 0xbe, 0x00, 0x00, 0x00, 0x00,
    0x00, 0x00, 0x00, 0x00, 0xa0, 0x9d, 0xaa, 0x3e, 0x80, 0x7e, 0x88, 0xbd,
    0x00, 0x00, 0x00, 0x00, 0xe0, 0x8d, 0x19, 0x3f, 0xf0, 0xcc, 0x5d, 0x3f,
    0x20, 0x7e, 0x08, 0xbf, 0x88, 0x25, 0xb3, 0x3f, 0xc0, 0xdc, 0xee, 0x3e,
    0x40, 0xbd, 0x4c, 0x3e, 0x40, 0x7e, 0x08, 0xbe, 0xe8, 0x8d, 0x19, 0xc0,
    0x00, 0x7e, 0x88, 0x3d, 0xe0, 0x8d, 0x19, 0x3f, 0x40, 0x7e, 0x08, 0xbe,
    0x00, 0x06, 0x91, 0x3f, 0x20, 0x7e, 0x88, 0x3e, 0x8f, 0xa8, 0xfb, 0xc0,
    0xd8, 0x54, 0xe6, 0x3f, 0x00, 0x7e, 0x88, 0x3d, 0xf8, 0xcc, 0xdd, 0x3f,
    0xb0, 0x9d, 0x2a, 0xbf, 0x14, 0xc2, 0x0c, 0xc0, 0x40, 0x7e, 0x08, 0xbe,
    0x00, 0x00, 0x00, 0x00, 0x40, 0x7e, 0x08, 0xbe, 0x40, 0x7e, 0x08, 0xbe,
    0x00, 0x7e, 0x08, 0x3e, 0x40, 0xbd, 0x4c, 0xbe, 0x00, 0x00, 0x00, 0x00,
    0x80, 0x7e, 0x88, 0xbd, 0x00, 0x00, 0x00, 0x00, 0x40, 0x7e, 0x08, 0xbe,
    0x20, 0x7e, 0x88, 0xbe, 0x00, 0x7e, 0x88, 0x3d, 0x40, 0xbd, 0x4c, 0xbe,
    0x80, 0x7e, 0x88, 0xbd, 0x80, 0x7e, 0x88, 0xbd, 0x40, 0x7e, 0x08, 0xbe,
    0x00, 0x7e, 0x88, 0x3d, 0x00, 0x00, 0x00, 0x00, 0x80, 0x7e, 0x88, 0xbd,
    0x80, 0x7e, 0x88, 0xbd, 0x80, 0x7e, 0x88, 0xbd, 0x20, 0xbd, 0xcc, 0x3e,
    0x30, 0xbd, 0x4c, 0xbf, 0x20, 0x7e, 0x08, 0x3f, 0x40, 0xbd, 0xcc, 0xbe,
    0x40, 0x7e, 0x08, 0xbe, 0x38, 0xbd, 0xcc, 0xbf, 0x00, 0x7e, 0x88, 0x3d,
    0x20, 0xbd, 0xcc, 0x3e, 0xb8, 0xdc, 0xee, 0x3f, 0xc0, 0xdc, 0xee, 0x3e,
    0x80, 0x7e, 0x88, 0xbd, 0x40, 0xbd, 0x4c, 0x3e, 0xc0, 0x9d, 0xaa, 0xbe,
    0x20, 0xbd, 0xcc, 0x3e, 0xc0, 0xdc, 0xee, 0xbe, 0x40, 0x7e, 0x08, 0xbe,
    0x20, 0x7e, 0x08, 0x3f, 0xf0, 0x8d, 0x19, 0xbf, 0x20, 0x7e, 0x88, 0x3e,
    0x00, 0x00, 0x00, 0x00, 0x20, 0x7e, 0x08, 0xbf, 0x40, 0xbd, 0x4c, 0x3e,
    0x20, 0xbd, 0xcc, 0x3e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x7e, 0x88, 0x3d,
    0xe0, 0x8d, 0x19, 0x3f, 0x00, 0x7e, 0x88, 0x3d, 0x20, 0x7e, 0x88, 0xbe,
    0x00, 0x00, 0x00, 0x00, 0x40, 0x7e, 0x08, 0xbe, 0x80, 0x7e, 0x88, 0xbd,
    0x00, 0x7e, 0x08, 0x3e, 0xc0, 0x9d, 0xaa, 0xbe, 0x00, 0x7e, 0x88, 0x3d,
    0x80, 0x7e, 0x88, 0xbd, 0x00, 0x00, 0x00, 0x00, 0x40, 0xbd, 0x4c, 0x3e,
    0xa0, 0x9d, 0xaa, 0x3e, 0x40, 0x7e, 0x08, 0xbe, 0x40, 0x7e, 0x08, 0xbe,
    0xf0, 0x8d, 0x19, 0xbf, 0x00, 0x7e, 0x88, 0x3d, 0xc0, 0xdc, 0xee, 0x3e,
    0x40, 0xbd, 0x4c, 0x3e, 0x00, 0x7e, 0x88, 0x3d, 0xe0, 0x8d, 0x19, 0x3f,
    0x80, 0x7e, 0x88, 0xbd, 0x80, 0x7e, 0x88, 0xbd, 0x40, 0xbd, 0x4c, 0xbe,
    0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
    0x20, 0x7e, 0x88, 0xbe, 0x40, 0x7e, 0x08, 0xbe, 0x40, 0x7e, 0x08, 0xbe,
    0x00, 0x00, 0x00, 0x00, 0x00, 0x7e, 0x88, 0x3d, 0x40, 0xbd, 0x4c, 0x3e,
    0x40, 0xbd, 0x4c, 0xbe, 0x00, 0x7e, 0x08, 0x3e, 0x40, 0xbd, 0x4c, 0xbe,
    0x80, 0x7e, 0x88, 0xbd, 0x00, 0x7e, 0x88, 0x3d, 0xa0, 0x9d, 0x2a, 0x3f,
    0xa0, 0x9d, 0xaa, 0x3e, 0x40, 0x7e, 0x08, 0xbe, 0x80, 0x7e, 0x88, 0xbd,
    0x40, 0x7e, 0x08, 0xbe, 0x00, 0x7e, 0x08, 0x3e, 0x40, 0xbd, 0xcc, 0xbe,
    0x00, 0x00, 0x00, 0x00, 0x88, 0x25, 0xb3, 0x3f, 0x20, 0x7e, 0x08, 0x3f,
    0x80, 0x69, 0x37, 0xc0, 0x70, 0xad, 0x3b, 0x3f, 0x00, 0x7e, 0x08, 0x3e,
    0xe0, 0x8d, 0x19, 0x3f, 0x90, 0x25, 0xb3, 0xbf, 0x04, 0x06, 0x11, 0x40,
    0x40, 0x7e, 0x08, 0xbe, 0x80, 0x7e, 0x88, 0xbd, 0x40, 0x7e, 0x08, 0xbe,
    0x20, 0x7e, 0x88, 0xbe, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
    0x00, 0x00, 0x00, 0x00, 0x80, 0x7e, 0x88, 0xbd, 0x00, 0x00, 0x00, 0x00,
    0x80, 0x7e, 0x88, 0xbd, 0x40, 0xbd, 0x4c, 0xbe, 0x00, 0x7e, 0x88, 0x3d,
    0x40, 0x7e, 0x08, 0xbe, 0x20, 0x7e, 0x88, 0xbe, 0x00, 0x00, 0x00, 0x00,
    0x40, 0x7e, 0x08, 0xbe, 0x80, 0x7e, 0x88, 0xbd, 0x00, 0x00, 0x00, 0x00,
    0x00, 0x00, 0x00, 0x00, 0x00, 0x7e, 0x88, 0x3d, 0x80, 0x7e, 0x88, 0xbd,
    0xc0, 0xdc, 0xee, 0x3e, 0x80, 0xec, 0x7f, 0xbf, 0x20, 0x7e, 0x08, 0x3f,
    0x40, 0xbd, 0xcc, 0xbe, 0x00, 0x00, 0x00, 0x00, 0x70, 0xad, 0xbb, 0xbf,
    0x80, 0x7e, 0x88, 0xbd, 0x20, 0x7e, 0x08, 0x3f, 0x98, 0x64, 0xf7, 0x3f,
    0xc0, 0xdc, 0xee, 0x3e, 0x80, 0x7e, 0x88, 0xbd, 0x40, 0xbd, 0x4c, 0x3e,
    0x20, 0x7e, 0x88, 0xbe, 0xa0, 0x9d, 0xaa, 0x3e, 0xc0, 0x9d, 0xaa, 0xbe,
    0x40, 0x7e, 0x08, 0xbe, 0x20, 0xbd, 0xcc, 0x3e, 0xf0, 0x8d, 0x19, 0xbf,
    0x20, 0x7e, 0x88, 0x3e, 0x40, 0x7e, 0x08, 0xbe, 0x20, 0x7e, 0x08, 0xbf,
    0x40, 0xbd, 0x4c, 0x3e, 0x20, 0x7e, 0x88, 0x3e, 0x20, 0x7e, 0x88, 0x3e,
    0x00, 0x00, 0x00, 0x00, 0x30, 0xbd, 0x4c, 0x3f, 0x80, 0x7e, 0x88, 0xbd,
    0x20, 0x7e, 0x88, 0xbe, 0x40, 0x7e, 0x08, 0xbe, 0x40, 0x7e, 0x08, 0xbe,
    0x00, 0x00, 0x00, 0x00, 0x40, 0xbd, 0x4c, 0x3e, 0x20, 0x7e, 0x88, 0xbe,
    0x40, 0x7e, 0x08, 0xbe, 0x00, 0x7e, 0x88, 0x3d, 0x40, 0x7e, 0x08, 0xbe,
    0x20, 0xbd, 0xcc, 0x3e, 0x20, 0x7e, 0x88, 0x3e, 0x20, 0x7e, 0x88, 0xbe,
    0x00, 0x00, 0x00, 0x00, 0xf0, 0x8d, 0x19, 0xbf, 0x20, 0x7e, 0x88, 0x3e,
    0xa0, 0x9d, 0xaa, 0x3e, 0x40, 0xbd, 0x4c, 0x3e, 0x40, 0x7e, 0x08, 0xbe,
    0x70, 0xad, 0x3b, 0x3f, 0x00, 0x7e, 0x88, 0x3d, 0x20, 0x7e, 0x88, 0xbe,
    0x40, 0xbd, 0x4c, 0xbe, 0x80, 0x7e, 0x88, 0xbd, 0x00, 0x7e, 0x88, 0x3d,
    0x20, 0x7e, 0x88, 0x3e, 0x20, 0x7e, 0x88, 0xbe, 0x80, 0x7e, 0x88, 0xbd,
    0x00, 0x00, 0x00, 0x00, 0x00, 0x7e, 0x88, 0x3d, 0xa0, 0x9d, 0xaa, 0x3e,
    0x00, 0x7e, 0x08, 0x3e, 0xc0, 0x9d, 0xaa, 0xbe, 0x00, 0x00, 0x00, 0x00,
    0xe8, 0x8d, 0x99, 0x3f, 0x40, 0xbd, 0x4c, 0xbe, 0x00, 0xcd, 0x5d, 0xbf,
    0x08, 0x06, 0x91, 0xbf, 0xa0, 0x9d, 0xaa, 0x3e, 0xe8, 0x8d, 0x99, 0x3f,
    0x00, 0x00, 0x00, 0x00, 0xc0, 0xdc, 0x6e, 0xbf, 0xc0, 0xdc, 0xee, 0x3e,
    0xe0, 0x8d, 0x19, 0x3f, 0x00, 0x00, 0x00, 0x00, 0x80, 0xec, 0x7f, 0x3f,
    0xa0, 0x9d, 0x2a, 0x3f, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcd, 0x5d, 0xbf,
    0x00, 0x7e, 0x88, 0x3d, 0xdc, 0x54, 0x66, 0xc0, 0xf8, 0xcc, 0xdd, 0xbf,
    0x20, 0x7e, 0x08, 0x3f, 0x40, 0x7e, 0x08, 0xbe, 0x00, 0x7e, 0x88, 0x3d,
    0x00, 0x7e, 0x88, 0x3d, 0x00, 0x00, 0x00, 0x00, 0x80, 0x7e, 0x88, 0xbd,
    0x00, 0x00, 0x00, 0x00, 0x00, 0x7e, 0x88, 0x3d, 0x00, 0x00, 0x00, 0x00,
    0x40, 0xbd, 0x4c, 0x3e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x7e, 0x88, 0x3d,
    0x00, 0x00, 0x00, 0x00, 0x40, 0x7e, 0x08, 0xbe, 0xc0, 0x9d, 0xaa, 0xbe,
    0x80, 0x7e, 0x88, 0xbd, 0x80, 0x7e, 0x88, 0xbd, 0x80, 0x7e, 0x88, 0xbd,
    0x40, 0xbd, 0x4c, 0xbe, 0x80, 0x7e, 0x88, 0xbd, 0x00, 0x7e, 0x08, 0x3e,
    0x00, 0x00, 0x00, 0x00, 0x20, 0x7e, 0x08, 0x3f, 0x30, 0xbd, 0x4c, 0xbf,
    0xa0, 0x9d, 0x2a, 0x3f, 0xf0, 0x8d, 0x19, 0xbf, 0x80, 0x7e, 0x88, 0xbd,
    0x90, 0x25, 0xb3, 0xbf, 0x80, 0x7e, 0x88, 0xbd, 0x20, 0x7e, 0x08, 0x3f,
    0x98, 0x64, 0xf7, 0x3f, 0x20, 0x7e, 0x08, 0x3f, 0x40, 0x7e, 0x08, 0xbe,
    0x40, 0xbd, 0x4c, 0x3e, 0xc0, 0xdc, 0xee, 0xbe, 0x20, 0x7e, 0x88, 0x3e,
    0x40, 0xbd, 0xcc, 0xbe, 0x80, 0x7e, 0x88, 0xbd, 0xa0, 0x9d, 0xaa, 0x3e,
    0xc0, 0xdc, 0xee, 0xbe, 0xa0, 0x9d, 0xaa, 0x3e, 0x00, 0x00, 0x00, 0x00,
    0xb0, 0x9d, 0x2a, 0xbf, 0x00, 0x7e, 0x88, 0x3d, 0x00, 0x7e, 0x08, 0x3e,
    0x40, 0x7e, 0x08, 0xbe, 0x80, 0x7e, 0x88, 0xbd, 0x20, 0xbd, 0xcc, 0x3e,
    0x40, 0x7e, 0x08, 0xbe, 0x20, 0x7e, 0x88, 0xbe, 0x00, 0x00, 0x00, 0x00,
    0x00, 0x00, 0x00, 0x00, 0x80, 0x7e, 0x88, 0xbd, 0x80, 0x7e, 0x88, 0xbd,
    0x40, 0x7e, 0x08, 0xbe, 0x80, 0x7e, 0x88, 0xbd, 0x00, 0x00, 0x00, 0x00,
    0x40, 0x7e, 0x08, 0xbe, 0xa0, 0x9d, 0xaa, 0x3e, 0x80, 0x7e, 0x88, 0xbd,
    0x40, 0x7e, 0x08, 0xbe, 0x00, 0x00, 0x00, 0x00, 0xb0, 0x9d, 0x2a, 0xbf,
    0x40, 0xbd, 0x4c, 0x3e, 0x00, 0x00, 0x00, 0x00, 0x80, 0x7e, 0x88, 0xbd,
    0x00, 0x7e, 0x88, 0x3d, 0xa0, 0x9d, 0xaa, 0x3e, 0x00, 0x00, 0x00, 0x00,
    0x40, 0x7e, 0x08, 0xbe, 0x00, 0x7e, 0x88, 0x3d, 0x80, 0x7e, 0x88, 0xbd,
    0x00, 0x00, 0x00, 0x00, 0x80, 0x7e, 0x88, 0xbd, 0x40, 0xbd, 0x4c, 0xbe,
    0x00, 0x00, 0x00, 0x00, 0x00, 0x7e, 0x88, 0x3d, 0x00, 0x7e, 0x08, 0x3e,
    0x20, 0x7e, 0x88, 0x3e, 0x80, 0x7e, 0x88, 0xbd, 0x40, 0xbd, 0x4c, 0xbe,
    0x80, 0x7e, 0x88, 0xbd, 0xb0, 0x9d, 0x2a, 0xbf, 0x80, 0xec, 0x7f, 0xbf,
    0x20, 0x7e, 0x88, 0x3e, 0x38, 0xbd, 0xcc, 0xbf, 0xa0, 0x9d, 0xaa, 0x3e,
    0xf0, 0xcc, 0x5d, 0x3f, 0x80, 0x7e, 0x88, 0xbd, 0x00, 0x00, 0x00, 0x00,
    0x40, 0xbd, 0x4c, 0xbe, 0x20, 0x7e, 0x08, 0x3f, 0x40, 0x7e, 0x08, 0xbe,
    0x80, 0xec, 0x7f, 0x3f, 0xe0, 0x8d, 0x19, 0x3f, 0x00, 0x7e, 0x88, 0x3d,
    0x90, 0x25, 0xb3, 0xbf, 0x40, 0x7e, 0x08, 0xbe, 0xf8, 0xcc, 0xdd, 0xbf,
    0xc8, 0x15, 0xa2, 0xbf, 0x20, 0x7e, 0x88, 0x3e, 0x80, 0x7e, 0x88, 0xbd,
    0x40, 0xbd, 0x4c, 0xbe, 0x00, 0x7e, 0x88, 0x3d, 0x80, 0x7e, 0x88, 0xbd,
    0x00, 0x00, 0x00, 0x00, 0x40, 0x7e, 0x08, 0xbe, 0x00, 0x00, 0x00, 0x00,
    0x00, 0x7e, 0x88, 0x3d, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
    0x00, 0x7e, 0x88, 0x3d, 0x00, 0x7e, 0x88, 0x3d, 0x40, 0xbd, 0x4c, 0xbe,
    0x40, 0xbd, 0x4c, 0xbe, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
    0x80, 0x7e, 0x88, 0xbd, 0x40, 0x7e, 0x08, 0xbe, 0x00, 0x7e, 0x88, 0x3d,
    0x00, 0x7e, 0x08, 0x3e, 0x00, 0x7e, 0x88, 0x3d, 0xa0, 0x9d, 0xaa, 0x3e,
    0x08, 0x06, 0x91, 0xbf, 0x20, 0x7e, 0x08, 0x3f, 0x70, 0xad, 0x3b, 0xbf,
    0x00, 0x00, 0x00, 0x00, 0x18, 0x45, 0xd5, 0xbf, 0x00, 0x7e, 0x88, 0x3d,
    0xe0, 0x8d, 0x19, 0x3f, 0x20, 0x7e, 0x08, 0x40, 0x30, 0xbd, 0x4c, 0x3f,
    0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x40, 0x7e, 0x08, 0xbe,
    0xc0, 0xdc, 0xee, 0x3e, 0x40, 0xbd, 0x4c, 0xbe, 0x00, 0x7e, 0x88, 0x3d,
    0x20, 0xbd, 0xcc, 0x3e, 0xf0, 0x8d, 0x19, 0xbf, 0xe0, 0x8d, 0x19, 0x3f,
    0x00, 0x7e, 0x88, 0x3d, 0x00, 0x7e, 0x88, 0x3d, 0x00, 0x7e, 0x08, 0x3e,
    0x00, 0x7e, 0x08, 0x3e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
    0x20, 0x7e, 0x88, 0x3e, 0x00, 0x7e, 0x88, 0x3d, 0x80, 0x7e, 0x88, 0xbd,
    0x00, 0x7e, 0x88, 0x3d, 0x00, 0x7e, 0x08, 0x3e, 0x40, 0x7e, 0x08, 0xbe,
    0x40, 0xbd, 0xcc, 0xbe, 0x40, 0x7e, 0x08, 0xbe, 0x80, 0x7e, 0x88, 0xbd,
    0x00, 0x7e, 0x88, 0x3d, 0x80, 0x7e, 0x88, 0xbd, 0x00, 0x00, 0x00, 0x00,
    0x20, 0x7e, 0x88, 0xbe, 0x00, 0x7e, 0x88, 0x3d, 0x00, 0x7e, 0x88, 0x3d,
    0x00, 0x7e, 0x88, 0x3d, 0x00, 0x7e, 0x08, 0x3e, 0x00, 0x00, 0x00, 0x00,
    0x00, 0x00, 0x00, 0x00, 0x80, 0x7e, 0x88, 0xbd, 0x40, 0xbd, 0x4c, 0x3e,
    0x00, 0x00, 0x00, 0x00, 0xc0, 0x9d, 0xaa, 0xbe, 0x40, 0x7e, 0x08, 0xbe,
    0x00, 0x7e, 0x88, 0x3d, 0x80, 0x7e, 0x88, 0xbd, 0xc0, 0x9d, 0xaa, 0xbe,
    0x80, 0x7e, 0x88, 0xbd, 0x80, 0x7e, 0x88, 0xbd, 0x40, 0xbd, 0x4c, 0x3e,
    0x00, 0x7e, 0x88, 0x3d, 0x00, 0x7e, 0x08, 0x3e, 0x40, 0x7e, 0x08, 0xbe,
    0x40, 0x7e, 0x08, 0xbe, 0x40, 0x7e, 0x08, 0xbe, 0xb0, 0x9d, 0xaa, 0xbf,
    0xf8, 0xcc, 0xdd, 0xbf, 0xe0, 0x8d, 0x19, 0x3f, 0x50, 0x35, 0xc4, 0xbf,
    0xa0, 0x9d, 0xaa, 0x3e, 0x70, 0xad, 0x3b, 0x3f, 0x00, 0x00, 0x00, 0x00,
    0x40, 0xbd, 0x4c, 0xbe, 0x40, 0xbd, 0x4c, 0xbe, 0xc0, 0x9d, 0xaa, 0xbe,
    0x40, 0x7e, 0x08, 0xbe, 0x80, 0x7e, 0x88, 0xbd, 0x20, 0xbd, 0xcc, 0x3e,
    0xf0, 0xcc, 0x5d, 0x3f, 0xc8, 0x15, 0x22, 0xc0, 0x80, 0x7e, 0x88, 0xbd,
    0xc0, 0xdc, 0xee, 0xbf, 0xa8, 0x9d, 0xaa, 0x3f, 0x20, 0x7e, 0x88, 0xbe,
    0x00, 0x7e, 0x08, 0x3e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x7e, 0x88, 0x3d,
    0x00, 0x7e, 0x08, 0x3e, 0x00, 0x00, 0x00, 0x00, 0x80, 0x7e, 0x88, 0xbd,
    0x40, 0x7e, 0x08, 0xbe, 0x00, 0x7e, 0x88, 0x3d, 0x00, 0x7e, 0x88, 0x3d,
    0x00, 0x7e, 0x08, 0x3e, 0x20, 0x7e, 0x88, 0xbe, 0x40, 0x7e, 0x08, 0xbe,
    0x80, 0x7e, 0x88, 0xbd, 0x80, 0x7e, 0x88, 0xbd, 0x00, 0x7e, 0x88, 0x3d,
    0x00, 0x7e, 0x88, 0x3d, 0x00, 0x7e, 0x88, 0x3d, 0x00, 0x7e, 0x88, 0x3d,
    0x80, 0x7e, 0x88, 0xbd, 0x80, 0x7e, 0x88, 0xbd, 0x00, 0x00, 0x00, 0x00,
    0x30, 0xbd, 0x4c, 0x3f, 0xe8, 0x8d, 0x99, 0xbf, 0x70, 0xad, 0x3b, 0x3f,
    0x20, 0x7e, 0x08, 0xbf, 0x00, 0x00, 0x00, 0x00, 0xd8, 0x54, 0xe6, 0xbf,
    0x00, 0x7e, 0x88, 0x3d, 0x20, 0xbd, 0xcc, 0x3e, 0x80, 0xec, 0xff, 0x3f,
    0xf0, 0xcc, 0x5d, 0x3f, 0x40, 0x7e, 0x08, 0xbe, 0x20, 0x7e, 0x08, 0xbf,
    0x40, 0x7e, 0x08, 0xbe, 0x20, 0xbd, 0xcc, 0x3e, 0x40, 0x7e, 0x08, 0xbe,
    0x00, 0x7e, 0x88, 0x3d, 0xc0, 0xdc, 0xee, 0x3e, 0x30, 0xbd, 0x4c, 0xbf,
    0xc0, 0xdc, 0xee, 0x3e, 0x00, 0x7e, 0x88, 0x3d, 0x00, 0x7e, 0x88, 0x3d,
    0x00, 0x7e, 0x88, 0x3d, 0x40, 0x7e, 0x08, 0xbe, 0x00, 0x7e, 0x08, 0x3e,
    0x00, 0x00, 0x00, 0x00, 0x00, 0x7e, 0x88, 0x3d, 0x80, 0x7e, 0x88, 0xbd,
    0x80, 0x7e, 0x88, 0xbd, 0x80, 0x7e, 0x88, 0xbd, 0x20, 0x7e, 0x88, 0x3e,
    0x00, 0x7e, 0x88, 0x3d, 0x80, 0x7e, 0x88, 0xbd, 0x80, 0x7e, 0x88, 0xbd,
    0x00, 0x7e, 0x88, 0x3d, 0xa0, 0x9d, 0xaa, 0x3e, 0x40, 0x7e, 0x08, 0xbe,
    0x40, 0xbd, 0x4c, 0xbe, 0x40, 0x7e, 0x08, 0xbe, 0x00, 0x7e, 0x88, 0x3d,
    0x00, 0x00, 0x00, 0x00, 0x40, 0x7e, 0x08, 0xbe, 0x00, 0x00, 0x00, 0x00,
    0x00, 0x7e, 0x88, 0x3d, 0x00, 0x7e, 0x88, 0x3d, 0x00, 0x7e, 0x08, 0x3e,
    0x40, 0xbd, 0x4c, 0x3e, 0x00, 0x7e, 0x08, 0x3e, 0x00, 0x00, 0x00, 0x00,
    0x40, 0xbd, 0x4c, 0xbe, 0x20, 0x7e, 0x88, 0x3e, 0x40, 0x7e, 0x08, 0xbe,
    0x40, 0xbd, 0x4c, 0xbe, 0x80, 0x7e, 0x88, 0xbd, 0x40, 0xbd, 0x4c, 0xbe,
    0x20, 0xbd, 0xcc, 0x3e, 0x00, 0x7e, 0x88, 0x3d, 0x40, 0x7e, 0x08, 0xbe,
    0x40, 0x7e, 0x08, 0xbe, 0x80, 0x7e, 0x88, 0xbd, 0x00, 0x7e, 0x88, 0x3d,
    0x30, 0xbd, 0x4c, 0xbf, 0xc8, 0x15, 0xa2, 0xbf, 0x80, 0x7e, 0x88, 0xbd,
    0xd8, 0x54, 0xe6, 0xbf, 0x20, 0x7e, 0x88, 0x3e, 0x20, 0xbd, 0xcc, 0x3e,
    0x80, 0x7e, 0x88, 0xbd, 0x00, 0x06, 0x91, 0x3f, 0x00, 0x7e, 0x88, 0x3d,
    0x40, 0xbd, 0xcc, 0xbe, 0x40, 0x7e, 0x08, 0xbe, 0xa0, 0x9d, 0xaa, 0x3e,
    0x20, 0xbd, 0xcc, 0x3e, 0x20, 0x7e, 0x08, 0x3f, 0xac, 0x9d, 0x2a, 0xc0,
    0x80, 0x7e, 0x88, 0xbd, 0x08, 0x06, 0x91, 0xbf, 0x00, 0x06, 0x91, 0x3f,
    0xf0, 0xcc, 0x5d, 0x3f, 0x00, 0x00, 0x00, 0x00, 0x40, 0xbd, 0x4c, 0xbe,
    0x00, 0x7e, 0x08, 0x3e, 0x00, 0x00, 0x00, 0x00, 0x40, 0x7e, 0x08, 0xbe,
    0x00, 0x7e, 0x88, 0x3d, 0x00, 0x00, 0x00, 0x00, 0x00, 0x7e, 0x08, 0x3e,
    0x00, 0x00, 0x00, 0x00, 0x00, 0x7e, 0x88, 0x3d, 0x40, 0xbd, 0x4c, 0xbe,
    0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
    0x00, 0x00, 0x00, 0x00, 0x80, 0x7e, 0x88, 0xbd, 0x00, 0x00, 0x00, 0x00,
    0x00, 0x7e, 0x88, 0x3d, 0x80, 0x7e, 0x88, 0xbd, 0x00, 0x7e, 0x88, 0x3d,
    0x00, 0x00, 0x00, 0x00, 0xf0, 0xcc, 0x5d, 0x3f, 0xe8, 0x8d, 0x99, 0xbf,
    0xe0, 0x8d, 0x19, 0x3f, 0x40, 0xbd, 0xcc, 0xbe, 0x00, 0x7e, 0x08, 0x3e,
    0xc0, 0xdc, 0xee, 0xbf, 0x00, 0x7e, 0x88, 0x3d, 0x70, 0xad, 0x3b, 0x3f,
    0x20, 0x7e, 0x08, 0x40, 0x20, 0x7e, 0x88, 0x3f, 0x40, 0x7e, 0x08, 0xbe,
    0xc0, 0x9d, 0xaa, 0xbe, 0x80, 0x7e, 0x88, 0xbd, 0xa0, 0x9d, 0x2a, 0x3f,
    0x80, 0x7e, 0x88, 0xbd, 0x00, 0x00, 0x00, 0x00, 0x20, 0xbd, 0xcc, 0x3e,
    0x70, 0xad, 0x3b, 0xbf, 0x20, 0x7e, 0x88, 0x3e, 0x00, 0x7e, 0x88, 0x3d,
    0x00, 0x00, 0x00, 0x00, 0x20, 0xbd, 0xcc, 0x3e, 0x80, 0x7e, 0x88, 0xbd,
    0x00, 0x00, 0x00, 0x00, 0x40, 0xbd, 0x4c, 0x3e, 0x00, 0x7e, 0x08, 0x3e,
    0x00, 0x7e, 0x08, 0x3e, 0x40, 0xbd, 0x4c, 0xbe, 0x20, 0x7e, 0x88, 0xbe,
    0x40, 0xbd, 0x4c, 0x3e, 0x00, 0x00, 0x00, 0x00, 0xc0, 0x9d, 0xaa, 0xbe,
    0x00, 0x7e, 0x88, 0x3d, 0x40, 0x7e, 0x08, 0xbe, 0x80, 0x7e, 0x88, 0xbd,
    0x80, 0x7e, 0x88, 0xbd, 0xc0, 0xdc, 0xee, 0xbe, 0x00, 0x00, 0x00, 0x00,
    0x40, 0xbd, 0x4c, 0xbe, 0x40, 0x7e, 0x08, 0xbe, 0x00, 0x7e, 0x08, 0x3e,
    0x20, 0xbd, 0xcc, 0x3e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x7e, 0x88, 0x3d,
    0x80, 0x7e, 0x88, 0xbd, 0x00, 0x7e, 0x88, 0x3d, 0x00, 0x00, 0x00, 0x00,
    0x40, 0xbd, 0x4c, 0xbe, 0x80, 0x7e, 0x88, 0xbd, 0xa0, 0x9d, 0xaa, 0x3e,
    0x40, 0x7e, 0x08, 0xbe, 0x20, 0x7e, 0x88, 0xbe, 0x40, 0x7e, 0x08, 0xbe,
    0x40, 0xbd, 0x4c, 0xbe, 0x00, 0x7e, 0x08, 0x3e, 0x00, 0x7e, 0x88, 0x3d,
    0xc0, 0x9d, 0xaa, 0xbe, 0x00, 0x7e, 0x08, 0x3e, 0xc0, 0x9d, 0xaa, 0xbe,
    0x00, 0x7e, 0x88, 0x3d, 0x20, 0x7e, 0x08, 0xbf, 0x00, 0x00, 0x00, 0x00,
    0xa0, 0x9d, 0xaa, 0x3e, 0xa0, 0x64, 0xf7, 0xbf, 0x20, 0x7e, 0x88, 0x3e,
    0xe0, 0x8d, 0x19, 0x3f, 0x00, 0x7e, 0x08, 0x3e, 0x20, 0x7e, 0x88, 0x3f,
    0x20, 0xbd, 0xcc, 0x3e, 0x00, 0x00, 0x00, 0x00, 0x80, 0x7e, 0x88, 0xbd,
    0x30, 0xbd, 0x4c, 0xbf, 0x40, 0xbd, 0x4c, 0x3e, 0x70, 0xad, 0x3b, 0x3f,
    0x24, 0x01, 0x51, 0xc0, 0x40, 0x7e, 0x08, 0xbe, 0xa0, 0x64, 0xf7, 0xbf,
    0x40, 0x7e, 0x08, 0xbe, 0x30, 0xbd, 0xcc, 0x3f, 0x00, 0x7e, 0x88, 0x3d,
    0x80, 0x7e, 0x88, 0xbd, 0x80, 0x7e, 0x88, 0xbd, 0x00, 0x00, 0x00, 0x00,
    0x00, 0x7e, 0x08, 0x3e, 0x00, 0x00, 0x00, 0x00, 0x80, 0x7e, 0x88, 0xbd,
    0x00, 0x00, 0x00, 0x00, 0x40, 0x7e, 0x08, 0xbe, 0x00, 0x7e, 0x88, 0x3d,
    0x40, 0xbd, 0x4c, 0xbe, 0x00, 0x7e, 0x88, 0x3d, 0x00, 0x7e, 0x08, 0x3e,
    0x00, 0x7e, 0x88, 0x3d, 0x00, 0x7e, 0x88, 0x3d, 0x00, 0x00, 0x00, 0x00,
    0x00, 0x7e, 0x88, 0x3d, 0x80, 0x7e, 0x88, 0xbd, 0x80, 0x7e, 0x88, 0xbd,
    0x80, 0x7e, 0x88, 0xbd, 0x00, 0x7e, 0x88, 0x3d, 0x20, 0x7e, 0x88, 0x3f,
    0xc8, 0x15, 0xa2, 0xbf, 0xe0, 0x8d, 0x19, 0x3f, 0x40, 0xbd, 0xcc, 0xbe,
    0x80, 0x7e, 0x88, 0xbd, 0xc0, 0xdc, 0xee, 0xbf, 0x40, 0x7e, 0x08, 0xbe,
    0x20, 0x7e, 0x08, 0x3f, 0x98, 0x64, 0xf7, 0x3f, 0x80, 0xec, 0x7f, 0x3f,
    0x40, 0x7e, 0x08, 0xbe, 0x20, 0x7e, 0x88, 0xbe, 0x40, 0x7e, 0x08, 0xbe,
    0xf0, 0xcc, 0x5d, 0x3f, 0x20, 0x7e, 0x88, 0xbe, 0x00, 0x00, 0x00, 0x00,
    0x00, 0x00, 0x00, 0x00, 0xf0, 0x8d, 0x19, 0xbf, 0x20, 0x7e, 0x88, 0x3e,
    0x00, 0x7e, 0x08, 0x3e, 0x40, 0xbd, 0x4c, 0x3e, 0x20, 0x7e, 0x88, 0x3e,
    0xa0, 0x9d, 0xaa, 0x3e, 0x00, 0x7e, 0x08, 0x3e, 0x80, 0x7e, 0x88, 0xbd,
    0x00, 0x00, 0x00, 0x00, 0x00, 0x7e, 0x88, 0x3d, 0xc0, 0x9d, 0xaa, 0xbe,
    0x00, 0x00, 0x00, 0x00, 0x00, 0x7e, 0x88, 0x3d, 0x80, 0x7e, 0x88, 0xbd,
    0x40, 0xbd, 0x4c, 0xbe, 0x40, 0x7e, 0x08, 0xbe, 0x40, 0xbd, 0xcc, 0xbe,
    0x00, 0x7e, 0x08, 0x3e, 0x00, 0x00, 0x00, 0x00, 0xc0, 0xdc, 0xee, 0xbe,
    0x80, 0x7e, 0x88, 0xbd, 0xb0, 0x9d, 0x2a, 0xbf, 0x80, 0x7e, 0x88, 0xbd,
    0x40, 0xbd, 0x4c, 0x3e, 0x40, 0xbd, 0x4c, 0x3e, 0x00, 0x7e, 0x08, 0x3e,
    0x40, 0xbd, 0x4c, 0x3e, 0x00, 0x7e, 0x08, 0x3e, 0x40, 0xbd, 0x4c, 0x3e,
    0x80, 0x7e, 0x88, 0xbd, 0x40, 0xbd, 0xcc, 0xbe, 0x80, 0x7e, 0x88, 0xbd,
    0x00, 0x7e, 0x08, 0x3e, 0x40, 0x7e, 0x08, 0xbe, 0x40, 0x7e, 0x08, 0xbe,
    0x40, 0x7e, 0x08, 0xbe, 0xc0, 0x9d, 0xaa, 0xbe, 0x00, 0x7e, 0x08, 0x3e,
    0x80, 0x7e, 0x88, 0xbd, 0x20, 0x7e, 0x08, 0xbf, 0x00, 0x7e, 0x88, 0x3d,
    0xb0, 0x9d, 0x2a, 0xbf, 0x80, 0x7e, 0x88, 0xbd, 0x20, 0x7e, 0x08, 0xbf,
    0xa0, 0x9d, 0x2a, 0x3f, 0xb0, 0xdc, 0x6e, 0x3f, 0xf8, 0xcc, 0xdd, 0xbf,
    0xc0, 0xdc, 0xee, 0x3e, 0x20, 0xbd, 0xcc, 0x3e, 0x00, 0x7e, 0x08, 0x3e,
    0x20, 0xbd, 0xcc, 0x3e, 0xa0, 0x9d, 0xaa, 0x3e, 0x40, 0x7e, 0x08, 0xbe,
    0x80, 0x7e, 0x88, 0xbd, 0xa0, 0x9d, 0xaa, 0x3e, 0x20, 0xbd, 0xcc, 0x3e,
    0x80, 0xec, 0x7f, 0x3f, 0x70, 0xad, 0x3b, 0xc0, 0x40, 0x7e, 0x08, 0xbe,
    0x90, 0x25, 0xb3, 0xbf, 0x40, 0x7e, 0x08, 0xbe, 0x00, 0x7e, 0x88, 0x3d,
    0x00, 0x00, 0x00, 0x00, 0x80, 0x7e, 0x88, 0xbd, 0x00, 0x00, 0x00, 0x00,
    0x00, 0x7e, 0x08, 0x3e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
    0x00, 0x7e, 0x88, 0x3d, 0x80, 0x7e, 0x88, 0xbd, 0x40, 0x7e, 0x08, 0xbe,
    0x00, 0x7e, 0x08, 0x3e, 0x80, 0x7e, 0x88, 0xbd, 0x00, 0x00, 0x00, 0x00,
    0x80, 0x7e, 0x88, 0xbd, 0x00, 0x7e, 0x88, 0x3d, 0x00, 0x7e, 0x08, 0x3e,
    0x00, 0x00, 0x00, 0x00, 0x00, 0x7e, 0x88, 0x3d, 0x40, 0xbd, 0x4c, 0xbe,
    0x40, 0x7e, 0x08, 0xbe, 0x80, 0x7e, 0x88, 0xbd, 0x40, 0x7e, 0x08, 0xbe,
    0x00, 0x06, 0x91, 0x3f, 0x70, 0xad, 0xbb, 0xbf, 0xc8, 0x15, 0xa2, 0x3f,
    0xc0, 0xdc, 0xee, 0xbe, 0x00, 0x7e, 0x08, 0x3e, 0x80, 0xec, 0xff, 0xbf,
    0x40, 0x7e, 0x08, 0xbe, 0xa0, 0x9d, 0x2a, 0x3f, 0x30, 0x3a, 0x04, 0x40,
    0xc0, 0xdc, 0xee, 0x3e, 0x40, 0x7e, 0x08, 0xbe, 0x40, 0xbd, 0x4c, 0xbe,
    0x80, 0x7e, 0x88, 0xbd, 0x20, 0x7e, 0x88, 0x3f, 0x80, 0x7e, 0x88, 0xbd,
    0x00, 0x00, 0x00, 0x00, 0x40, 0xbd, 0x4c, 0xbe, 0xb0, 0x9d, 0x2a, 0xbf,
    0x80, 0x7e, 0x88, 0xbd, 0x00, 0x7e, 0x88, 0x3d, 0x20, 0x7e, 0x88, 0x3e,
    0x00, 0x7e, 0x08, 0x3e, 0x00, 0x7e, 0x08, 0x3e, 0x00, 0x00, 0x00, 0x00,
    0x00, 0x7e, 0x88, 0x3d, 0x00, 0x7e, 0x88, 0x3d, 0x00, 0x7e, 0x88, 0x3d,
    0xc0, 0x9d, 0xaa, 0xbe, 0x80, 0x7e, 0x88, 0xbd, 0x40, 0x7e, 0x08, 0xbe,
    0x80, 0x7e, 0x88, 0xbd, 0x40, 0xbd, 0x4c, 0xbe, 0x00, 0x00, 0x00, 0x00,
    0x40, 0xbd, 0xcc, 0xbe, 0x00, 0x7e, 0x08, 0x3e, 0x80, 0x7e, 0x88, 0xbd,
    0x40, 0xbd, 0xcc, 0xbe, 0x00, 0x00, 0x00, 0x00, 0x20, 0x7e, 0x08, 0xbf,
    0x80, 0x7e, 0x88, 0xbd, 0x20, 0xbd, 0xcc, 0x3e, 0x20, 0x7e, 0x88, 0x3e,
    0x00, 0x7e, 0x88, 0x3d, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
    0x00, 0x7e, 0x88, 0x3d, 0x00, 0x7e, 0x08, 0x3e, 0x40, 0xbd, 0xcc, 0xbe,
    0x20, 0x7e, 0x88, 0xbe, 0x40, 0x7e, 0x08, 0xbe, 0x00, 0x00, 0x00, 0x00,
    0x40, 0xbd, 0x4c, 0xbe, 0x00, 0x7e, 0x88, 0x3d, 0xc0, 0xdc, 0xee, 0xbe,
    0x40, 0x7e, 0x08, 0xbe, 0x00, 0x7e, 0x08, 0x3e, 0xc0, 0x9d, 0xaa, 0xbe,
    0x00, 0x00, 0x00, 0x00, 0xf0, 0x8d, 0x19, 0xbf, 0x80, 0x7e, 0x88, 0xbd,
    0xc0, 0x9d, 0xaa, 0xbe, 0x70, 0xad, 0x3b, 0x3f, 0x80, 0x7e, 0x88, 0xbd,
    0x50, 0x35, 0xc4, 0xbf, 0x20, 0x7e, 0x88, 0x3e, 0x20, 0x7e, 0x88, 0x3f,
    0x00, 0x00, 0x00, 0x00, 0x40, 0xbd, 0x4c, 0x3e, 0x20, 0x7e, 0x88, 0x3e,
    0x40, 0xbd, 0x4c, 0xbe, 0x40, 0x7e, 0x08, 0xbe, 0x20, 0xbd, 0xcc, 0x3e,
    0x30, 0xbd, 0x4c, 0x3f, 0xf0, 0xcc, 0x5d, 0x3f, 0x14, 0xc2, 0x0c, 0xc0,
    0x00, 0x00, 0x00, 0x00, 0x40, 0xbd, 0x4c, 0xbe, 0xf0, 0xcc, 0x5d, 0x3f,
    0x20, 0x7e, 0x88, 0x3f, 0x00, 0x7e, 0x88, 0x3d, 0x00, 0x7e, 0x88, 0x3d,
    0x00, 0x00, 0x00, 0x00, 0x80, 0x7e, 0x88, 0xbd, 0x00, 0x7e, 0x08, 0x3e,
    0x80, 0x7e, 0x88, 0xbd, 0x80, 0x7e, 0x88, 0xbd, 0x80, 0x7e, 0x88, 0xbd,
    0x80, 0x7e, 0x88, 0xbd, 0x40, 0x7e, 0x08, 0xbe, 0x00, 0x00, 0x00, 0x00,
    0x80, 0x7e, 0x88, 0xbd, 0x00, 0x7e, 0x88, 0x3d, 0x00, 0x7e, 0x08, 0x3e,
    0x00, 0x7e, 0x08, 0x3e, 0x80, 0x7e, 0x88, 0xbd, 0x80, 0x7e, 0x88, 0xbd,
    0x00, 0x7e, 0x08, 0x3e, 0x80, 0x7e, 0x88, 0xbd, 0x40, 0xbd, 0xcc, 0xbe,
    0x00, 0x00, 0x00, 0x00, 0xe8, 0x8d, 0x99, 0x3f, 0x50, 0x35, 0xc4, 0xbf,
    0xe8, 0x8d, 0x99, 0x3f, 0xc0, 0x9d, 0xaa, 0xbe, 0x00, 0x7e, 0x88, 0x3d,
    0x80, 0xec, 0xff, 0xbf, 0x00, 0x7e, 0x88, 0x3d, 0xf0, 0xcc, 0x5d, 0x3f,
    0x30, 0x3a, 0x04, 0x40, 0x20, 0x7e, 0x08, 0x3f, 0x80, 0x7e, 0x88, 0xbd,
    0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x06, 0x91, 0x3f,
    0x40, 0x7e, 0x08, 0xbe, 0x40, 0x7e, 0x08, 0xbe, 0x80, 0x7e, 0x88, 0xbd,
    0xf0, 0x8d, 0x19, 0xbf, 0x20, 0x7e, 0x88, 0x3e, 0x80, 0x7e, 0x88, 0xbd,
    0x20, 0x7e, 0x08, 0x3f, 0x00, 0x7e, 0x08, 0x3e, 0x40, 0xbd, 0x4c, 0x3e,
    0x00, 0x7e, 0x88, 0x3d, 0x00, 0x00, 0x00, 0x00, 0x00, 0x7e, 0x88, 0x3d,
    0x40, 0x7e, 0x08, 0xbe, 0x80, 0xec, 0x7f, 0xbf, 0xc0, 0x9d, 0xaa, 0xbe,
    0x80, 0x7e, 0x88, 0xbd, 0x00, 0x00, 0x00, 0x00, 0xc0, 0x9d, 0xaa, 0xbe,
    0x00, 0x7e, 0x08, 0x3e, 0x20, 0x7e, 0x88, 0xbe, 0x40, 0x7e, 0x08, 0xbe,
    0x00, 0x7e, 0x88, 0x3d, 0x40, 0xbd, 0xcc, 0xbe, 0x20, 0x7e, 0x88, 0x3e,
    0x80, 0x7e, 0x88, 0xbd, 0x00, 0x00, 0x00, 0x00, 0xc0, 0xdc, 0xee, 0x3e,
    0x00, 0x7e, 0x88, 0x3d, 0x40, 0xbd, 0x4c, 0x3e, 0x00, 0x7e, 0x08, 0x3e,
    0x00, 0x00, 0x00, 0x00, 0x00, 0x7e, 0x88, 0x3d, 0x80, 0x7e, 0x88, 0xbd,
    0x30, 0xbd, 0x4c, 0xbf, 0x20, 0x7e, 0x88, 0xbe, 0x20, 0x7e, 0x88, 0xbe,
    0x80, 0x7e, 0x88, 0xbd, 0x40, 0xbd, 0xcc, 0xbe, 0x00, 0x7e, 0x08, 0x3e,
    0x20, 0x7e, 0x88, 0xbe, 0x40, 0xbd, 0x4c, 0xbe, 0x00, 0x00, 0x00, 0x00,
    0xc0, 0xdc, 0xee, 0xbe, 0x00, 0x7e, 0x88, 0x3d, 0x40, 0xbd, 0x4c, 0xbe,
    0x00, 0x00, 0x00, 0x00, 0x40, 0xbd, 0xcc, 0xbe, 0xa0, 0x64, 0xf7, 0xbf,
    0xa0, 0x9d, 0x2a, 0x3f, 0xa0, 0x64, 0xf7, 0xbf, 0xa0, 0x9d, 0xaa, 0x3e,
    0x00, 0x00, 0x00, 0x00, 0x00, 0x7e, 0x88, 0x3d, 0x70, 0xad, 0x3b, 0x3f,
    0xf0, 0xcc, 0x5d, 0x3f, 0x00, 0xcd, 0x5d, 0xbf, 0x40, 0x7e, 0x08, 0xbe,
    0x00, 0x7e, 0x08, 0x3e, 0x70, 0xad, 0xbb, 0x3f, 0xc8, 0x15, 0xa2, 0x3f,
    0xd8, 0x54, 0xe6, 0xbf, 0x80, 0x7e, 0x88, 0xbd, 0xc0, 0xdc, 0xee, 0x3e,
    0x00, 0x7e, 0x88, 0x3d, 0xb0, 0x9d, 0x2a, 0xbf, 0x80, 0x7e, 0x88, 0xbd,
    0x00, 0x7e, 0x08, 0x3e, 0x00, 0x7e, 0x88, 0x3d, 0x40, 0xbd, 0x4c, 0xbe,
    0x20, 0xbd, 0xcc, 0x3e, 0x00, 0x7e, 0x88, 0x3d, 0x00, 0x7e, 0x88, 0x3d,
    0x00, 0x7e, 0x88, 0x3d, 0x40, 0xbd, 0x4c, 0xbe, 0x00, 0x7e, 0x88, 0x3d,
    0x40, 0x7e, 0x08, 0xbe, 0x00, 0x7e, 0x88, 0x3d, 0x40, 0x7e, 0x08, 0xbe,
    0x00, 0x7e, 0x08, 0x3e, 0x00, 0x7e, 0x08, 0x3e, 0x20, 0x7e, 0x88, 0xbe,
    0x00, 0x7e, 0x88, 0x3d, 0x40, 0x7e, 0x08, 0xbe, 0x40, 0xbd, 0x4c, 0x3e,
    0x00, 0x7e, 0x08, 0x3e, 0x40, 0x7e, 0x08, 0xbe, 0x70, 0xad, 0xbb, 0x3f,
    0xc0, 0xdc, 0xee, 0xbf, 0xc8, 0x15, 0xa2, 0x3f, 0x40, 0xbd, 0x4c, 0xbe,
    0x00, 0x00, 0x00, 0x00, 0xc0, 0xdc, 0xee, 0xbf, 0x00, 0x7e, 0x88, 0x3d,
    0x30, 0xbd, 0x4c, 0x3f, 0x80, 0xec, 0xff, 0x3f, 0x20, 0xbd, 0xcc, 0x3e,
    0x00, 0x7e, 0x88, 0x3d, 0x20, 0x7e, 0x88, 0xbe, 0x20, 0x7e, 0x88, 0x3e,
    0x70, 0xad, 0xbb, 0x3f, 0xc0, 0xdc, 0xee, 0xbe, 0x80, 0x7e, 0x88, 0xbd,
    0x40, 0xbd, 0x4c, 0xbe, 0xc0, 0x9d, 0xaa, 0xbe, 0xf0, 0xcc, 0x5d, 0x3f,
    0x00, 0x00, 0x00, 0x00, 0x30, 0xbd, 0x4c, 0x3f, 0x28, 0x7e, 0x88, 0xbf,
    0xf0, 0xcc, 0x5d, 0x3f, 0xc0, 0xdc, 0xee, 0xbe, 0x40, 0x7e, 0x08, 0xbe,
    0xf8, 0xcc, 0xdd, 0xbf, 0x80, 0x7e, 0x88, 0xbd, 0xc0, 0xdc, 0xee, 0x3e,
    0x30, 0x3a, 0x04, 0x40, 0x70, 0xad, 0x3b, 0x3f, 0x80, 0x7e, 0x88, 0xbd,
    0x00, 0x7e, 0x88, 0x3d, 0x40, 0x7e, 0x08, 0xbe, 0x20, 0xbd, 0xcc, 0x3e,
    0xc0, 0x9d, 0xaa, 0xbe, 0x00, 0x00, 0x00, 0x00, 0xc0, 0xdc, 0xee, 0x3e,
    0xb0, 0x9d, 0x2a, 0xbf, 0xa0, 0x9d, 0xaa, 0x3e, 0x80, 0x7e, 0x88, 0xbd,
    0x00, 0x7e, 0x08, 0x3e, 0x70, 0xad, 0xbb, 0xbf, 0xe0, 0x8d, 0x19, 0x3f,
    0xc0, 0xdc, 0xee, 0xbe, 0xa0, 0x9d, 0xaa, 0x3e, 0x00, 0x7e, 0x88, 0x3d,
    0x00, 0x00, 0x00, 0x00, 0x20, 0x7e, 0x08, 0x3f, 0x70, 0xad, 0x3b, 0x3f,
    0xc0, 0xdc, 0xee, 0x3e, 0x00, 0x7e, 0x88, 0x3d, 0x80, 0xec, 0x7f, 0x3f,
    0x20, 0x7e, 0x88, 0x3e, 0x00, 0x7e, 0x08, 0x3e, 0x00, 0xcd, 0x5d, 0xbf,
    0x80, 0x7e, 0x88, 0xbd, 0x70, 0xad, 0x3b, 0xbf, 0x40, 0xbd, 0x4c, 0xbe,
    0xa0, 0x9d, 0xaa, 0x3e, 0x00, 0x00, 0x00, 0x00, 0xa0, 0x9d, 0xaa, 0x3e,
    0x40, 0xbd, 0x4c, 0xbe, 0x00, 0xcd, 0x5d, 0xbf, 0x00, 0x00, 0x00, 0x00,
    0x20, 0x7e, 0x88, 0x3e, 0x80, 0x7e, 0x88, 0xbd, 0x40, 0x7e, 0x08, 0xbe,
    0xc8, 0x15, 0xa2, 0xbf, 0x80, 0x7e, 0x88, 0xbd, 0x40, 0xbd, 0x4c, 0x3e,
    0x00, 0x7e, 0x88, 0x3d, 0xc0, 0xdc, 0xee, 0x3e, 0xa0, 0x9d, 0xaa, 0x3e,
    0xc0, 0xdc, 0x6e, 0xbf, 0xa0, 0x9d, 0xaa, 0x3e, 0x00, 0x7e, 0x88, 0x3d,
    0x40, 0xbd, 0x4c, 0x3e, 0x40, 0x7e, 0x08, 0xbe, 0x40, 0xbd, 0x4c, 0xbe,
    0x00, 0x00, 0x00, 0x00, 0x00, 0x7e, 0x88, 0x3d, 0x20, 0x7e, 0x88, 0xbe,
    0x00, 0x7e, 0x08, 0x3e, 0x20, 0x7e, 0x88, 0xbe, 0x40, 0x7e, 0x08, 0xbe,
    0x38, 0xbd, 0xcc, 0xbf, 0x00, 0x7e, 0x88, 0x3d, 0x00, 0x00, 0x00, 0x00,
    0x88, 0x25, 0xb3, 0x3f, 0xa0, 0x9d, 0x2a, 0x3f, 0x80, 0x7e, 0x88, 0xbd,
    0x40, 0xbd, 0x4c, 0x3e, 0x80, 0x7e, 0x88, 0xbd, 0x80, 0x7e, 0x88, 0xbd,
    0xc0, 0x9d, 0xaa, 0xbe, 0x00, 0x00, 0x00, 0x00, 0x20, 0xbd, 0xcc, 0x3e,
    0x40, 0xbd, 0xcc, 0xbe, 0x40, 0xbd, 0x4c, 0xbe, 0x00, 0x7e, 0x88, 0x3d,
    0x20, 0x7e, 0x08, 0x3f, 0x40, 0x7e, 0x08, 0xbe, 0x00, 0x7e, 0x88, 0x3d,
    0xc0, 0x9d, 0xaa, 0xbe, 0x20, 0x7e, 0x88, 0x3e, 0x20, 0x7e, 0x08, 0xbf,
    0x80, 0x7e, 0x88, 0xbd, 0x20, 0x7e, 0x88, 0xbe, 0x00, 0x00, 0x00, 0x00,
    0xc0, 0xdc, 0xee, 0xbe, 0x00, 0x7e, 0x88, 0x3d, 0x40, 0xbd, 0x4c, 0xbe,
    0x80, 0x7e, 0x88, 0xbd, 0x00, 0x7e, 0x88, 0x3d, 0x40, 0xbd, 0x4c, 0xbe,
    0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xc0, 0xdc, 0xee, 0xbe,
    0x20, 0x7e, 0x88, 0x3e, 0x80, 0x7e, 0x88, 0xbd, 0x40, 0xbd, 0x4c, 0xbe,
    0xc0, 0xdc, 0xee, 0x3e, 0x00, 0x7e, 0x88, 0x3d, 0x40, 0xbd, 0x4c, 0x3e,
    0x20, 0x7e, 0x88, 0xbe, 0x70, 0xad, 0x3b, 0x3f, 0x00, 0x00, 0x00, 0x00,
    0x20, 0x7e, 0x88, 0x3e, 0x40, 0xbd, 0xcc, 0xbe, 0xa0, 0x9d, 0x2a, 0x3f,
    0x00, 0x7e, 0x88, 0x3d, 0x40, 0xbd, 0x4c, 0x3e, 0x00, 0x00, 0x00, 0x00,
    0x40, 0xbd, 0x4c, 0x3e, 0x20, 0x7e, 0x88, 0x3e, 0x40, 0x7e, 0x08, 0xbe,
    0x20, 0x7e, 0x08, 0xbf, 0x00, 0x7e, 0x88, 0x3d, 0x20, 0x7e, 0x88, 0x3e,
    0x00, 0x00, 0x00, 0x00, 0x40, 0xbd, 0x4c, 0xbe, 0x20, 0x7e, 0x08, 0x3f,
    0x00, 0x00, 0x00, 0x00, 0x40, 0xbd, 0x4c, 0x3e, 0x40, 0xbd, 0x4c, 0xbe,
    0xf0, 0xcc, 0x5d, 0x3f, 0x40, 0x7e, 0x08, 0xbe, 0x40, 0xbd, 0x4c, 0x3e,
    0xc0, 0x9d, 0xaa, 0xbe, 0x20, 0x7e, 0x08, 0x3f, 0x00, 0x7e, 0x88, 0x3d,
    0x40, 0xbd, 0x4c, 0x3e, 0x00, 0x00, 0x00, 0x00, 0x20, 0x7e, 0x88, 0x3e,
    0x40, 0xbd, 0x4c, 0x3e, 0x00, 0x7e, 0x88, 0x3d, 0xf0, 0x8d, 0x19, 0xbf,
    0x00, 0x00, 0x00, 0x00, 0x40, 0xbd, 0x4c, 0x3e, 0x00, 0x00, 0x00, 0x00,
    0xc0, 0xdc, 0xee, 0x3e, 0x80, 0xec, 0xff, 0xbf, 0x20, 0xbd, 0xcc, 0x3e,
    0x00, 0x7e, 0x08, 0x3e, 0x20, 0x7e, 0x08, 0x3f, 0xa0, 0x9d, 0xaa, 0x3e,
    0x80, 0x7e, 0x88, 0xbd, 0x80, 0xec, 0xff, 0x3f, 0x30, 0xbd, 0x4c, 0x3f,
    0x20, 0xbd, 0xcc, 0x3e, 0x80, 0x7e, 0x88, 0xbd, 0x00, 0x7e, 0x88, 0x3d,
    0x00, 0x00, 0x00, 0x00, 0xf0, 0x8d, 0x19, 0xbf, 0x90, 0x25, 0xb3, 0xbf,
    0x00, 0x7e, 0x08, 0x3e, 0x80, 0xec, 0xff, 0xbf, 0xc0, 0xdc, 0x6e, 0xbf,
    0x80, 0xec, 0xff, 0x3f, 0x80, 0x7e, 0x88, 0xbd, 0xc0, 0x9d, 0xaa, 0xbe,
    0x00, 0x7e, 0x88, 0x3d, 0x40, 0x7e, 0x08, 0xbe, 0x00, 0x7e, 0x88, 0x3d,
    0x00, 0x00, 0x00, 0x00, 0x40, 0x7e, 0x08, 0xbe, 0x80, 0x7e, 0x88, 0xbd,
    0x00, 0x7e, 0x08, 0x3e, 0x00, 0x7e, 0x08, 0x3e, 0x80, 0x7e, 0x88, 0xbd,
    0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x40, 0x7e, 0x08, 0xbe,
    0x40, 0x7e, 0x08, 0xbe, 0x00, 0x7e, 0x88, 0x3d, 0x00, 0x7e, 0x88, 0x3d,
    0x00, 0x00, 0x00, 0x00, 0x80, 0x7e, 0x88, 0xbd, 0x00, 0x00, 0x00, 0x00,
    0x00, 0x7e, 0x88, 0x3d, 0x80, 0x7e, 0x88, 0xbd, 0x40, 0xbd, 0x4c, 0xbe,
    0x00, 0x7e, 0x88, 0x3d, 0x20, 0x7e, 0x88, 0xbe, 0x00, 0x00, 0x00, 0x00,
    0xf8, 0xcc, 0xdd, 0xbf, 0x40, 0x7e, 0x08, 0xbe, 0x40, 0xbd, 0x4c, 0x3e,
    0x70, 0xad, 0xbb, 0x3f, 0xe0, 0x8d, 0x19, 0x3f, 0x00, 0x00, 0x00, 0x00,
    0x20, 0x7e, 0x88, 0x3e, 0x00, 0x7e, 0x88, 0x3d, 0x00, 0x00, 0x00, 0x00,
    0x40, 0x7e, 0x08, 0xbe, 0x00, 0x7e, 0x88, 0x3d, 0x20, 0xbd, 0xcc, 0x3e,
    0xc0, 0xdc, 0xee, 0xbe, 0x40, 0xbd, 0x4c, 0xbe, 0x80, 0x7e, 0x88, 0xbd,
    0x40, 0xbd, 0xcc, 0xbe, 0x20, 0xbd, 0xcc, 0x3e, 0x20, 0x7e, 0x88, 0x3e,
    0x00, 0x7e, 0x08, 0x3e, 0x40, 0xbd, 0x4c, 0xbe, 0xa0, 0x9d, 0xaa, 0x3e,
    0x00, 0x7e, 0x88, 0x3d, 0x00, 0x7e, 0x88, 0x3d, 0x20, 0x7e, 0x88, 0xbe,
    0xa0, 0x9d, 0x2a, 0x3f, 0x40, 0x7e, 0x08, 0xbe, 0x20, 0x7e, 0x88, 0x3e,
    0x40, 0x7e, 0x08, 0xbe, 0x20, 0x7e, 0x88, 0x3e, 0x20, 0x7e, 0x88, 0x3e,
    0x00, 0x00, 0x00, 0x00, 0xc0, 0x9d, 0xaa, 0xbe, 0x00, 0x7e, 0x08, 0x3e,
    0x00, 0x7e, 0x08, 0x3e, 0x40, 0x7e, 0x08, 0xbe, 0x20, 0x7e, 0x88, 0xbe,
    0x00, 0x7e, 0x08, 0x3e, 0x20, 0xbd, 0xcc, 0x3e, 0xa0, 0x9d, 0xaa, 0x3e,
    0x40, 0xbd, 0x4c, 0xbe, 0x20, 0x7e, 0x88, 0x3e, 0x80, 0x7e, 0x88, 0xbd,
    0x00, 0x7e, 0x08, 0x3e, 0xc0, 0x9d, 0xaa, 0xbe, 0x20, 0x7e, 0x08, 0x3f,
    0x00, 0x7e, 0x08, 0x3e, 0x40, 0xbd, 0x4c, 0x3e, 0x40, 0x7e, 0x08, 0xbe,
    0x20, 0x7e, 0x88, 0x3e, 0xa0, 0x9d, 0xaa, 0x3e, 0x00, 0x00, 0x00, 0x00,
    0xc0, 0x9d, 0xaa, 0xbe, 0x00, 0x00, 0x00, 0x00, 0x00, 0x7e, 0x08, 0x3e,
    0x00, 0x00, 0x00, 0x00, 0x20, 0x7e, 0x88, 0x3e, 0x40, 0xbd, 0xcc, 0xbe,
    0xa0, 0x9d, 0xaa, 0x3e, 0x20, 0x7e, 0x08, 0x3f, 0x20, 0xbd, 0xcc, 0x3e,
    0xf0, 0xcc, 0x5d, 0x3f, 0x40, 0x7e, 0x08, 0xbe, 0x00, 0x7e, 0x08, 0x3e,
    0x20, 0x7e, 0x08, 0x3f, 0x00, 0x7e, 0x88, 0x3d, 0x00, 0x7e, 0x88, 0x3d,
    0x20, 0x7e, 0x08, 0x3f, 0x80, 0x7e, 0x88, 0xbd, 0xfe, 0x27, 0x93, 0xc0,
    0x00, 0x7e, 0x88, 0x3d, 0x00, 0x7e, 0x08, 0x3e, 0xf0, 0x8d, 0x19, 0xbf,
    0xb0, 0x9d, 0x2a, 0xbf, 0xc0, 0xdc, 0x6e, 0xbf, 0x00, 0x7e, 0x88, 0x3d,
    0xc0, 0xdc, 0xee, 0xbe, 0x80, 0x7e, 0x88, 0xbd, 0x40, 0xbd, 0x4c, 0xbe,
    0x00, 0x7e, 0x08, 0x3e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x7e, 0x88, 0x3d,
    0x00, 0x00, 0x00, 0x00, 0x00, 0x7e, 0x08, 0x3e, 0x00, 0x7e, 0x88, 0x3d,
    0x40, 0x7e, 0x08, 0xbe, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
    0x80, 0x7e, 0x88, 0xbd, 0x40, 0x7e, 0x08, 0xbe, 0x00, 0x00, 0x00, 0x00,
    0x80, 0x7e, 0x88, 0xbd, 0x40, 0x7e, 0x08, 0xbe, 0x40, 0xbd, 0x4c, 0xbe,
    0x40, 0x7e, 0x08, 0xbe, 0x00, 0x7e, 0x88, 0x3d, 0x00, 0x7e, 0x08, 0x3e,
    0x40, 0x7e, 0x08, 0xbe, 0x00, 0x00, 0x00, 0x00, 0x40, 0xbd, 0x4c, 0xbe,
    0x40, 0x7e, 0x08, 0xbe, 0xf8, 0xcc, 0xdd, 0xbf, 0x00, 0x7e, 0x88, 0x3d,
    0x80, 0x7e, 0x88, 0xbd, 0xc8, 0x15, 0xa2, 0x3f, 0xc0, 0xdc, 0xee, 0x3e,
    0x00, 0x7e, 0x88, 0x3d, 0x20, 0xbd, 0xcc, 0x3e, 0x00, 0x7e, 0x88, 0x3d,
    0x80, 0x7e, 0x88, 0xbd, 0x40, 0xbd, 0x4c, 0xbe, 0x00, 0x7e, 0x88, 0x3d,
    0x40, 0xbd, 0x4c, 0x3e, 0x20, 0x7e, 0x08, 0xbf, 0x20, 0x7e, 0x88, 0xbe,
    0x80, 0x7e, 0x88, 0xbd, 0xc0, 0x9d, 0xaa, 0xbe, 0x20, 0x7e, 0x88, 0x3e,
    0x00, 0x7e, 0x08, 0x3e, 0x00, 0x7e, 0x08, 0x3e, 0x40, 0xbd, 0x4c, 0xbe,
    0x20, 0xbd, 0xcc, 0x3e, 0x40, 0x7e, 0x08, 0xbe, 0x00, 0x00, 0x00, 0x00,
    0x40, 0xbd, 0x4c, 0xbe, 0xa0, 0x9d, 0xaa, 0x3e, 0x80, 0x7e, 0x88, 0xbd,
    0xa0, 0x9d, 0xaa, 0x3e, 0x00, 0x7e, 0x88, 0x3d, 0x00, 0x7e, 0x08, 0x3e,
    0x40, 0xbd, 0x4c, 0x3e, 0x40, 0x7e, 0x08, 0xbe, 0xc0, 0x9d, 0xaa, 0xbe,
    0x00, 0x7e, 0x88, 0x3d, 0x80, 0x7e, 0x88, 0xbd, 0x00, 0x7e, 0x88, 0x3d,
    0x40, 0xbd, 0x4c, 0xbe, 0xc0, 0xdc, 0xee, 0x3e, 0x00, 0x7e, 0x08, 0x3e,
    0x00, 0x7e, 0x08, 0x3e, 0x00, 0x00, 0x00, 0x00, 0xc0, 0xdc, 0xee, 0x3e,
    0x80, 0x7e, 0x88, 0xbd, 0x80, 0x7e, 0x88, 0xbd, 0x40, 0xbd, 0xcc, 0xbe,
    0xa0, 0x9d, 0xaa, 0x3e, 0x80, 0x7e, 0x88, 0xbd, 0xc0, 0xdc, 0xee, 0x3e,
    0x80, 0x7e, 0x88, 0xbd, 0x80, 0x7e, 0x88, 0xbd, 0xc0, 0xdc, 0xee, 0x3e,
    0x40, 0x7e, 0x08, 0xbe, 0xc0, 0x9d, 0xaa, 0xbe, 0x00, 0x7e, 0x88, 0x3d,
    0x80, 0x7e, 0x88, 0xbd, 0x80, 0x7e, 0x88, 0xbd, 0x40, 0xbd, 0x4c, 0x3e,
    0x80, 0x7e, 0x88, 0xbd, 0x20, 0x7e, 0x88, 0x3e, 0x80, 0x7e, 0x88, 0xbd,
    0x20, 0x7e, 0x88, 0x3e, 0xa0, 0x9d, 0x2a, 0x3f, 0x80, 0x7e, 0x88, 0xbd,
    0xb0, 0x9d, 0xaa, 0xbf, 0x20, 0x7e, 0x88, 0x3e, 0x40, 0xbd, 0x4c, 0x3e,
    0x00, 0x00, 0x00, 0x00, 0xa0, 0x9d, 0xaa, 0x3e, 0x40, 0xbd, 0x4c, 0xbe,
    0xf6, 0x49, 0x95, 0xc0, 0x40, 0xbd, 0x4c, 0x3e, 0x00, 0x7e, 0x88, 0x3d,
    0x20, 0x7e, 0x88, 0x3f, 0xc0, 0xdc, 0xee, 0xbe, 0xb0, 0x9d, 0x2a, 0xbf,
    0x80, 0x7e, 0x88, 0xbd, 0xc0, 0x9d, 0xaa, 0xbe, 0x00, 0x7e, 0x88, 0x3d,
    0x80, 0x7e, 0x88, 0xbd, 0x00, 0x00, 0x00, 0x00, 0x40, 0x7e, 0x08, 0xbe,
    0x00, 0x00, 0x00, 0x00, 0x40, 0x7e, 0x08, 0xbe, 0x00, 0x7e, 0x08, 0x3e,
    0x00, 0x7e, 0x88, 0x3d, 0x40, 0xbd, 0x4c, 0xbe, 0x00, 0x00, 0x00, 0x00,
    0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
    0x80, 0x7e, 0x88, 0xbd, 0x80, 0x7e, 0x88, 0xbd, 0x00, 0x00, 0x00, 0x00,
    0x00, 0x7e, 0x08, 0x3e, 0x00, 0x7e, 0x88, 0x3d, 0x80, 0x7e, 0x88, 0xbd,
    0x40, 0xbd, 0x4c, 0x3e, 0x40, 0x7e, 0x08, 0xbe, 0x80, 0x7e, 0x88, 0xbd,
    0xc0, 0x9d, 0xaa, 0xbe, 0x80, 0x7e, 0x88, 0xbd, 0xf8, 0xcc, 0xdd, 0xbf,
    0x40, 0x7e, 0x08, 0xbe, 0x80, 0x7e, 0x88, 0xbd, 0xa8, 0x9d, 0xaa, 0x3f,
    0xa0, 0x9d, 0x2a, 0x3f, 0x40, 0x7e, 0x08, 0xbe, 0xa0, 0x9d, 0xaa, 0x3e,
    0x00, 0x7e, 0x88, 0x3d, 0x40, 0x7e, 0x08, 0xbe, 0xc0, 0x9d, 0xaa, 0xbe,
    0x80, 0x7e, 0x88, 0xbd, 0x20, 0x7e, 0x88, 0x3e, 0x20, 0x7e, 0x88, 0xbe,
    0x40, 0xbd, 0x4c, 0xbe, 0x40, 0x7e, 0x08, 0xbe, 0xc0, 0xdc, 0xee, 0xbe,
    0xa0, 0x9d, 0x2a, 0x3f, 0x00, 0x7e, 0x88, 0x3d, 0x20, 0xbd, 0xcc, 0x3e,
    0x00, 0x00, 0x00, 0x00, 0x20, 0x7e, 0x08, 0x3f, 0x00, 0x00, 0x00, 0x00,
    0x40, 0x7e, 0x08, 0xbe, 0x40, 0xbd, 0xcc, 0xbe, 0x20, 0x7e, 0x08, 0x3f,
    0x00, 0x7e, 0x88, 0x3d, 0xc0, 0xdc, 0xee, 0x3e, 0x40, 0x7e, 0x08, 0xbe,
    0x80, 0x7e, 0x88, 0xbd, 0x20, 0xbd, 0xcc, 0x3e, 0x00, 0x7e, 0x88, 0x3d,
    0x40, 0x7e, 0x08, 0xbe, 0x00, 0x00, 0x00, 0x00, 0x40, 0xbd, 0x4c, 0xbe,
    0x80, 0x7e, 0x88, 0xbd, 0x40, 0xbd, 0xcc, 0xbe, 0xa0, 0x9d, 0x2a, 0x3f,
    0x40, 0xbd, 0x4c, 0x3e, 0x40, 0xbd, 0x4c, 0x3e, 0x40, 0x7e, 0x08, 0xbe,
    0xc0, 0xdc, 0xee, 0x3e, 0x00, 0x7e, 0x88, 0x3d, 0x80, 0x7e, 0x88, 0xbd,
    0xc0, 0x9d, 0xaa, 0xbe, 0xa0, 0x9d, 0xaa, 0x3e, 0x00, 0x00, 0x00, 0x00,
    0xa0, 0x9d, 0xaa, 0x3e, 0x40, 0x7e, 0x08, 0xbe, 0x80, 0x7e, 0x88, 0xbd,
    0x20, 0x7e, 0x08, 0x3f, 0x00, 0x00, 0x00, 0x00, 0x40, 0x7e, 0x08, 0xbe,
    0x00, 0x7e, 0x08, 0x3e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x7e, 0x88, 0x3d,
    0x00, 0x7e, 0x88, 0x3d, 0xa0, 0x9d, 0x2a, 0x3f, 0x00, 0x7e, 0x08, 0x3e,
    0x30, 0xbd, 0x4c, 0xbf, 0xa0, 0x9d, 0xaa, 0x3e, 0xb0, 0xdc, 0x6e, 0x3f,
    0x40, 0x7e, 0x08, 0xbe, 0x40, 0xbd, 0xcc, 0xbe, 0x40, 0xbd, 0x4c, 0x3e,
    0xf0, 0x8d, 0x19, 0xbf, 0x40, 0x7e, 0x08, 0xbe, 0xc0, 0xdc, 0xee, 0xbe,
    0x00, 0x7e, 0x88, 0x3d, 0xc0, 0xdc, 0xee, 0xbf, 0xe0, 0x8d, 0x19, 0x3f,
    0x40, 0x7e, 0x08, 0xbe, 0x20, 0xbd, 0xcc, 0x3e, 0xc0, 0xdc, 0x6e, 0xbf,
    0xc0, 0xdc, 0xee, 0x3e, 0x00, 0x7e, 0x88, 0x3d, 0x40, 0xbd, 0xcc, 0xbe,
    0x00, 0x00, 0x00, 0x00, 0x40, 0xbd, 0x4c, 0xbe, 0x40, 0xbd, 0x4c, 0x3e,
    0x80, 0x7e, 0x88, 0xbd, 0x00, 0x7e, 0x88, 0x3d, 0x00, 0x7e, 0x88, 0x3d,
    0x40, 0xbd, 0x4c, 0x3e, 0x40, 0x7e, 0x08, 0xbe, 0x40, 0xbd, 0x4c, 0xbe,
    0x80, 0x7e, 0x88, 0xbd, 0x00, 0x00, 0x00, 0x00, 0x80, 0x7e, 0x88, 0xbd,
    0x40, 0x7e, 0x08, 0xbe, 0x00, 0x7e, 0x88, 0x3d, 0x00, 0x00, 0x00, 0x00,
    0x00, 0x00, 0x00, 0x00, 0x80, 0x7e, 0x88, 0xbd, 0x40, 0x7e, 0x08, 0xbe,
    0x00, 0x00, 0x00, 0x00, 0x00, 0x7e, 0x88, 0x3d, 0x20, 0x7e, 0x88, 0xbe,
    0x00, 0x00, 0x00, 0x00, 0x40, 0xbd, 0xcc, 0xbe, 0x00, 0x00, 0x00, 0x00,
    0x38, 0xbd, 0xcc, 0xbf, 0x80, 0x7e, 0x88, 0xbd, 0x80, 0x7e, 0x88, 0xbd,
    0xa8, 0x9d, 0xaa, 0x3f, 0xc0, 0xdc, 0xee, 0x3e, 0x40, 0x7e, 0x08, 0xbe,
    0x20, 0xbd, 0xcc, 0x3e, 0x00, 0x7e, 0x88, 0x3d, 0x80, 0x7e, 0x88, 0xbd,
    0x40, 0x7e, 0x08, 0xbe, 0x80, 0x7e, 0x88, 0xbd, 0x40, 0xbd, 0x4c, 0x3e,
    0x20, 0x7e, 0x88, 0xbe, 0x40, 0x7e, 0x08, 0xbe, 0x00, 0x7e, 0x88, 0x3d,
    0x40, 0xbd, 0xcc, 0xbe, 0xa0, 0x9d, 0x2a, 0x3f, 0x80, 0x7e, 0x88, 0xbd,
    0xa0, 0x9d, 0xaa, 0x3e, 0x40, 0x7e, 0x08, 0xbe, 0xa0, 0x9d, 0x2a, 0x3f,
    0x00, 0x7e, 0x88, 0x3d, 0xc0, 0x9d, 0xaa, 0xbe, 0xc0, 0x9d, 0xaa, 0xbe,
    0x20, 0xbd, 0xcc, 0x3e, 0x00, 0x7e, 0x88, 0x3d, 0x20, 0x7e, 0x08, 0x3f,
    0x00, 0x00, 0x00, 0x00, 0x20, 0x7e, 0x88, 0xbe, 0x20, 0x7e, 0x08, 0x3f,
    0x00, 0x7e, 0x88, 0x3d, 0x80, 0x7e, 0x88, 0xbd, 0x00, 0x7e, 0x88, 0x3d,
    0x40, 0xbd, 0x4c, 0xbe, 0x00, 0x7e, 0x88, 0x3d, 0x20, 0x7e, 0x88, 0xbe,
    0xe0, 0x8d, 0x19, 0x3f, 0x80, 0x7e, 0x88, 0xbd, 0x20, 0x7e, 0x08, 0x3f,
    0x40, 0xbd, 0x4c, 0xbe, 0x70, 0xad, 0x3b, 0x3f, 0x80, 0x7e, 0x88, 0xbd,
    0x20, 0x7e, 0x88, 0xbe, 0x40, 0xbd, 0xcc, 0xbe, 0x40, 0xbd, 0x4c, 0x3e,
    0x00, 0x00, 0x00, 0x00, 0x20, 0x7e, 0x08, 0x3f, 0x00, 0x7e, 0x88, 0x3d,
    0xc0, 0x9d, 0xaa, 0xbe, 0xe0, 0x8d, 0x19, 0x3f, 0x80, 0x7e, 0x88, 0xbd,
    0x80, 0x7e, 0x88, 0xbd, 0x00, 0x00, 0x00, 0x00, 0x20, 0x7e, 0x88, 0xbe,
    0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa0, 0x9d, 0xaa, 0x3e,
    0xb0, 0x9d, 0x2a, 0xbf, 0x38, 0xbd, 0xcc, 0xbf, 0xa0, 0x9d, 0xaa, 0x3e,
    0xe8, 0x8d, 0x99, 0x3f, 0x00, 0x00, 0x00, 0x00, 0x20, 0x7e, 0x88, 0xbe,
    0x20, 0x7e, 0x88, 0xbe, 0x40, 0x7e, 0x08, 0xbe, 0x40, 0x7e, 0x08, 0xbe,
    0x80, 0xec, 0x7f, 0xbf, 0x80, 0x7e, 0x88, 0xbd, 0x20, 0x7e, 0x88, 0xbe,
    0x00, 0x00, 0x00, 0x00, 0x40, 0x7e, 0x08, 0xbe, 0xd8, 0xd1, 0x1d, 0xc0,
    0xc0, 0xdc, 0x6e, 0xbf, 0x20, 0xbd, 0xcc, 0x3e, 0x00, 0x7e, 0x88, 0x3d,
    0xc0, 0x9d, 0xaa, 0xbe, 0x00, 0x00, 0x00, 0x00, 0x40, 0xbd, 0x4c, 0xbe,
    0x00, 0x7e, 0x88, 0x3d, 0x80, 0x7e, 0x88, 0xbd, 0x40, 0xbd, 0x4c, 0x3e,
    0x80, 0x7e, 0x88, 0xbd, 0x80, 0x7e, 0x88, 0xbd, 0x80, 0x7e, 0x88, 0xbd,
    0x00, 0x00, 0x00, 0x00, 0x80, 0x7e, 0x88, 0xbd, 0x00, 0x7e, 0x88, 0x3d,
    0x00, 0x7e, 0x88, 0x3d, 0x00, 0x00, 0x00, 0x00, 0x80, 0x7e, 0x88, 0xbd,
    0x80, 0x7e, 0x88, 0xbd, 0x00, 0x7e, 0x88, 0x3d, 0x00, 0x7e, 0x88, 0x3d,
    0x00, 0x00, 0x00, 0x00, 0x00, 0x7e, 0x08, 0x3e, 0x00, 0x7e, 0x88, 0x3d,
    0x80, 0x7e, 0x88, 0xbd, 0x00, 0x7e, 0x88, 0x3d, 0xc0, 0x9d, 0xaa, 0xbe,
    0x80, 0x7e, 0x88, 0xbd, 0xf8, 0xcc, 0xdd, 0xbf, 0x80, 0x7e, 0x88, 0xbd,
    0x00, 0x7e, 0x08, 0x3e, 0xa8, 0x9d, 0xaa, 0x3f, 0x20, 0x7e, 0x08, 0x3f,
    0x00, 0x00, 0x00, 0x00, 0x40, 0xbd, 0x4c, 0x3e, 0x00, 0x7e, 0x88, 0x3d,
    0x00, 0x00, 0x00, 0x00, 0x20, 0x7e, 0x88, 0xbe, 0x00, 0x7e, 0x88, 0x3d,
    0xa0, 0x9d, 0xaa, 0x3e, 0xc0, 0xdc, 0xee, 0xbe, 0xc0, 0x9d, 0xaa, 0xbe,
    0x80, 0x7e, 0x88, 0xbd, 0x40, 0xbd, 0x4c, 0x3e, 0xc0, 0xdc, 0xee, 0x3e,
    0xa0, 0x9d, 0xaa, 0x3e, 0xa0, 0x9d, 0xaa, 0x3e, 0x40, 0x7e, 0x08, 0xbe,
    0x40, 0xbd, 0x4c, 0x3e, 0x00, 0x00, 0x00, 0x00, 0x80, 0x7e, 0x88, 0xbd,
    0xc0, 0x9d, 0xaa, 0xbe, 0x00, 0x7e, 0x88, 0x3d, 0x00, 0x7e, 0x88, 0x3d,
    0x20, 0x7e, 0x08, 0x3f, 0x80, 0x7e, 0x88, 0xbd, 0x00, 0x00, 0x00, 0x00,
    0xa0, 0x9d, 0xaa, 0x3e, 0x40, 0xbd, 0x4c, 0xbe, 0x00, 0x00, 0x00, 0x00,
    0x00, 0x7e, 0x88, 0x3d, 0x40, 0xbd, 0x4c, 0xbe, 0x00, 0x7e, 0x88, 0x3d,
    0x00, 0x7e, 0x08, 0x3e, 0x20, 0x7e, 0x08, 0x3f, 0x40, 0xbd, 0x4c, 0x3e,
    0x20, 0xbd, 0xcc, 0x3e, 0x40, 0x7e, 0x08, 0xbe, 0x40, 0xbd, 0x4c, 0x3e,
    0x80, 0x7e, 0x88, 0xbd, 0x40, 0x7e, 0x08, 0xbe, 0x20, 0x7e, 0x88, 0xbe,
    0x00, 0x7e, 0x08, 0x3e, 0x00, 0x00, 0x00, 0x00, 0xc0, 0xdc, 0xee, 0x3e,
    0x80, 0x7e, 0x88, 0xbd, 0x00, 0x7e, 0x88, 0x3d, 0xc0, 0xdc, 0xee, 0x3e,
    0x40, 0x7e, 0x08, 0xbe, 0x00, 0x00, 0x00, 0x00, 0x80, 0x7e, 0x88, 0xbd,
    0x20, 0x7e, 0x88, 0xbe, 0x40, 0x7e, 0x08, 0xbe, 0x20, 0x7e, 0x88, 0xbe,
    0x08, 0x06, 0x91, 0xbf, 0x20, 0x7e, 0x88, 0xbe, 0xe8, 0x8d, 0x99, 0xbf,
    0xa0, 0x9d, 0xaa, 0x3e, 0xb0, 0xdc, 0x6e, 0x3f, 0x80, 0x7e, 0x88, 0xbd,
    0xb0, 0xdc, 0x6e, 0x3f, 0x30, 0xbd, 0x4c, 0xbf, 0x20, 0xbd, 0xcc, 0x3e,
    0x40, 0x7e, 0x08, 0xbe, 0x40, 0xbd, 0x4c, 0x3e, 0x80, 0x7e, 0x88, 0xbd,
    0x80, 0xec, 0x7f, 0x3f, 0x00, 0x7e, 0x08, 0x3e, 0x40, 0xbd, 0x4c, 0xbe,
    0xac, 0x9d, 0x2a, 0xc0, 0xc0, 0xdc, 0x6e, 0xbf, 0xf4, 0xcc, 0x5d, 0x40,
    0x80, 0x7e, 0x88, 0xbd, 0x40, 0xbd, 0x4c, 0xbe, 0x00, 0x00, 0x00, 0x00,
    0x00, 0x7e, 0x08, 0x3e, 0x40, 0x7e, 0x08, 0xbe, 0x40, 0xbd, 0x4c, 0xbe,
    0x40, 0x7e, 0x08, 0xbe, 0x00, 0x00, 0x00, 0x00, 0x00, 0x7e, 0x88, 0x3d,
    0x80, 0x7e, 0x88, 0xbd, 0x00, 0x00, 0x00, 0x00, 0x00, 0x7e, 0x88, 0x3d,
    0x40, 0x7e, 0x08, 0xbe, 0x00, 0x7e, 0x88, 0x3d, 0x00, 0x7e, 0x08, 0x3e,
    0x00, 0x00, 0x00, 0x00, 0x80, 0x7e, 0x88, 0xbd, 0x00, 0x7e, 0x88, 0x3d,
    0x40, 0xbd, 0x4c, 0x3e, 0x00, 0x00, 0x00, 0x00, 0x40, 0x7e, 0x08, 0xbe,
    0xc0, 0xdc, 0xee, 0x3e, 0xc0, 0xdc, 0xee, 0xbe, 0x20, 0xbd, 0xcc, 0x3e,
    0x40, 0xbd, 0xcc, 0xbe, 0x40, 0x7e, 0x08, 0xbe, 0xa0, 0x64, 0xf7, 0xbf,
    0x80, 0x7e, 0x88, 0xbd, 0xa0, 0x9d, 0xaa, 0x3e, 0xa8, 0x9d, 0xaa, 0x3f,
    0xa0, 0x9d, 0x2a, 0x3f, 0x80, 0x7e, 0x88, 0xbd, 0x00, 0x00, 0x00, 0x00,
    0x00, 0x00, 0x00, 0x00, 0xa0, 0x9d, 0xaa, 0x3e, 0x20, 0x7e, 0x08, 0xbf,
    0x00, 0x7e, 0x88, 0x3d, 0x20, 0xbd, 0xcc, 0x3e, 0xf0, 0x8d, 0x19, 0xbf,
    0x00, 0x7e, 0x88, 0x3d, 0x00, 0x7e, 0x88, 0x3d, 0x40, 0xbd, 0x4c, 0x3e,
    0x40, 0xbd, 0x4c, 0x3e, 0xa0, 0x9d, 0xaa, 0x3e, 0xa0, 0x9d, 0xaa, 0x3e,
    0x40, 0x7e, 0x08, 0xbe, 0x00, 0x7e, 0x88, 0x3d, 0x00, 0x00, 0x00, 0x00,
    0x00, 0x7e, 0x08, 0x3e, 0x80, 0x7e, 0x88, 0xbd, 0x00, 0x00, 0x00, 0x00,
    0x00, 0x00, 0x00, 0x00, 0xa0, 0x9d, 0xaa, 0x3e, 0x20, 0x7e, 0x88, 0xbe,
    0x40, 0x7e, 0x08, 0xbe, 0x00, 0x7e, 0x08, 0x3e, 0x40, 0x7e, 0x08, 0xbe,
    0x20, 0x7e, 0x88, 0x3e, 0x80, 0x7e, 0x88, 0xbd, 0x00, 0x7e, 0x88, 0x3d,
    0x40, 0x7e, 0x08, 0xbe, 0x20, 0xbd, 0xcc, 0x3e, 0x00, 0x7e, 0x88, 0x3d,
    0x20, 0x7e, 0x88, 0x3e, 0x20, 0x7e, 0x88, 0x3e, 0x80, 0x7e, 0x88, 0xbd,
    0x00, 0x7e, 0x88, 0x3d, 0x00, 0x7e, 0x88, 0x3d, 0x00, 0x7e, 0x88, 0x3d,
    0x80, 0x7e, 0x88, 0xbd, 0x00, 0x7e, 0x88, 0x3d, 0x00, 0x7e, 0x88, 0x3d,
    0x20, 0x7e, 0x88, 0x3e, 0x40, 0x7e, 0x08, 0xbe, 0x80, 0x7e, 0x88, 0xbd,
    0x00, 0x7e, 0x08, 0x3e, 0x00, 0x7e, 0x88, 0x3d, 0x40, 0xbd, 0x4c, 0x3e,
    0x80, 0x7e, 0x88, 0xbd, 0xa0, 0x9d, 0xaa, 0x3e, 0x40, 0x7e, 0x08, 0xbe,
    0x40, 0xbd, 0x4c, 0xbe, 0x20, 0x7e, 0x08, 0xbf, 0xa0, 0x9d, 0xaa, 0x3e,
    0x80, 0xec, 0x7f, 0xbf, 0x20, 0xbd, 0xcc, 0x3e, 0x30, 0xbd, 0x4c, 0x3f,
    0x40, 0x7e, 0x08, 0xbe, 0x00, 0x7e, 0x88, 0x3d, 0x80, 0x7e, 0x88, 0xbd,
    0x00, 0x7e, 0x08, 0x3e, 0x00, 0x7e, 0x88, 0x3d, 0x70, 0xad, 0x3b, 0x3f,
    0x00, 0x7e, 0x88, 0x3d, 0xe0, 0x8d, 0x19, 0x3f, 0x40, 0xbd, 0x4c, 0x3e,
    0x80, 0x7e, 0x88, 0xbd, 0x80, 0xec, 0xff, 0xbf, 0xc8, 0x15, 0xa2, 0xbf,
    0xc8, 0x15, 0xa2, 0x3f, 0x40, 0x7e, 0x08, 0xbe, 0xa0, 0x9d, 0xaa, 0x3e,
    0x00, 0x00, 0x00, 0x00, 0x80, 0x7e, 0x88, 0xbd, 0x80, 0x7e, 0x88, 0xbd,
    0x80, 0x7e, 0x88, 0xbd, 0x00, 0x00, 0x00, 0x00, 0x00, 0x7e, 0x88, 0x3d,
    0x00, 0x7e, 0x88, 0x3d, 0x00, 0x7e, 0x08, 0x3e, 0x80, 0x7e, 0x88, 0xbd,
    0x00, 0x00, 0x00, 0x00, 0xc0, 0x9d, 0xaa, 0xbe, 0x40, 0x7e, 0x08, 0xbe,
    0x00, 0x7e, 0x88, 0x3d, 0x00, 0x00, 0x00, 0x00, 0x00, 0x7e, 0x88, 0x3d,
    0x00, 0x7e, 0x08, 0x3e, 0x00, 0x00, 0x00, 0x00, 0x80, 0x7e, 0x88, 0xbd,
    0x00, 0x7e, 0x88, 0x3d, 0xc0, 0xdc, 0xee, 0x3e, 0x28, 0x7e, 0x88, 0xbf,
    0xa0, 0x9d, 0xaa, 0x3e, 0xf0, 0x8d, 0x19, 0xbf, 0x80, 0x7e, 0x88, 0xbd,
    0x80, 0xec, 0xff, 0xbf, 0x40, 0x7e, 0x08, 0xbe, 0x20, 0x7e, 0x08, 0x3f,
    0x30, 0xbd, 0xcc, 0x3f, 0x70, 0xad, 0x3b, 0x3f, 0x80, 0x7e, 0x88, 0xbd,
    0x20, 0x7e, 0x88, 0xbe, 0x20, 0x7e, 0x88, 0xbe, 0xe0, 0x8d, 0x19, 0x3f,
    0x00, 0xcd, 0x5d, 0xbf, 0x80, 0x7e, 0x88, 0xbd, 0x20, 0xbd, 0xcc, 0x3e,
    0xb0, 0x9d, 0x2a, 0xbf, 0x70, 0xad, 0x3b, 0x3f, 0x00, 0x7e, 0x88, 0x3d,
    0x00, 0x7e, 0x08, 0x3e, 0x40, 0x7e, 0x08, 0xbe, 0xc0, 0xdc, 0xee, 0x3e,
    0x20, 0x7e, 0x08, 0x3f, 0x20, 0x7e, 0x88, 0xbe, 0x20, 0x7e, 0x88, 0xbe,
    0x40, 0x7e, 0x08, 0xbe, 0x00, 0x00, 0x00, 0x00, 0x40, 0xbd, 0x4c, 0xbe,
    0x80, 0x7e, 0x88, 0xbd, 0x00, 0x00, 0x00, 0x00, 0x20, 0x7e, 0x08, 0x3f,
    0x40, 0xbd, 0x4c, 0xbe, 0x00, 0x7e, 0x88, 0x3d, 0x00, 0x7e, 0x88, 0x3d,
    0x00, 0x7e, 0x88, 0x3d, 0x00, 0x7e, 0x08, 0x3e, 0xc0, 0x9d, 0xaa, 0xbe,
    0xa0, 0x9d, 0xaa, 0x3e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x7e, 0x08, 0x3e,
    0x00, 0x7e, 0x88, 0x3d, 0x20, 0x7e, 0x88, 0x3e, 0x20, 0xbd, 0xcc, 0x3e,
    0x40, 0x7e, 0x08, 0xbe, 0x40, 0xbd, 0xcc, 0xbe, 0x00, 0x00, 0x00, 0x00,
    0x80, 0x7e, 0x88, 0xbd, 0x20, 0x7e, 0x88, 0xbe, 0x00, 0x00, 0x00, 0x00,
    0x80, 0x7e, 0x88, 0xbd, 0x70, 0xad, 0x3b, 0x3f, 0x40, 0x7e, 0x08, 0xbe,
    0x00, 0x00, 0x00, 0x00, 0x00, 0x7e, 0x08, 0x3e, 0x00, 0x00, 0x00, 0x00,
    0x00, 0x7e, 0x88, 0x3d, 0x20, 0x7e, 0x88, 0xbe, 0x40, 0xbd, 0x4c, 0x3e,
    0x40, 0x7e, 0x08, 0xbe, 0x20, 0x7e, 0x88, 0xbe, 0x00, 0x7e, 0x08, 0x3e,
    0x40, 0xbd, 0x4c, 0x3e, 0x00, 0xcd, 0x5d, 0xbf, 0xa0, 0x9d, 0xaa, 0x3e,
    0x20, 0x7e, 0x08, 0x3f, 0x00, 0x7e, 0x88, 0x3d, 0x20, 0x7e, 0x88, 0xbe,
    0xf0, 0xcc, 0x5d, 0x3f, 0x00, 0x7e, 0x08, 0x3e, 0x40, 0x7e, 0x08, 0xbe,
    0x20, 0x7e, 0x88, 0x3e, 0x00, 0x7e, 0x88, 0x3d, 0x30, 0xbd, 0x4c, 0x3f,
    0xc0, 0xdc, 0x6e, 0xbf, 0x00, 0x7e, 0x88, 0x3d, 0x20, 0x7e, 0x08, 0xbf,
    0xc8, 0x15, 0xa2, 0xbf, 0x20, 0x7e, 0x08, 0xbf, 0x00, 0x7e, 0x88, 0x3d,
    0x20, 0x7e, 0x88, 0x3e, 0x00, 0x7e, 0x88, 0x3d, 0x20, 0x7e, 0x88, 0x3e,
    0x80, 0x7e, 0x88, 0xbd, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
    0x80, 0x7e, 0x88, 0xbd, 0x40, 0x7e, 0x08, 0xbe, 0x80, 0x7e, 0x88, 0xbd,
    0x00, 0x7e, 0x08, 0x3e, 0x40, 0x7e, 0x08, 0xbe, 0x80, 0x7e, 0x88, 0xbd,
    0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
    0x40, 0x7e, 0x08, 0xbe, 0x40, 0x7e, 0x08, 0xbe, 0x00, 0x7e, 0x88, 0x3d,
    0x80, 0x7e, 0x88, 0xbd, 0x00, 0x00, 0x00, 0x00, 0xc0, 0xdc, 0xee, 0x3e,
    0x50, 0x35, 0xc4, 0xbf, 0xa0, 0x9d, 0x2a, 0x3f, 0x40, 0xbd, 0xcc, 0xbe,
    0x00, 0x00, 0x00, 0x00, 0xf8, 0x49, 0x15, 0xc0, 0x80, 0x7e, 0x88, 0xbd,
    0xa0, 0x9d, 0x2a, 0x3f, 0x70, 0xad, 0xbb, 0x3f, 0xf0, 0xcc, 0x5d, 0x3f,
    0x00, 0x7e, 0x08, 0x3e, 0x00, 0x7e, 0x08, 0x3e, 0x40, 0xbd, 0x4c, 0xbe,
    0xb0, 0xdc, 0x6e, 0x3f, 0x70, 0xad, 0x3b, 0xbf, 0x00, 0x00, 0x00, 0x00,
    0x20, 0x7e, 0x88, 0x3e, 0xb0, 0x9d, 0x2a, 0xbf, 0x00, 0x06, 0x91, 0x3f,
    0x00, 0x00, 0x00, 0x00, 0x00, 0x7e, 0x08, 0x3e, 0x20, 0x7e, 0x08, 0x3f,
    0x00, 0x7e, 0x88, 0x3d, 0xa0, 0x9d, 0xaa, 0x3e, 0x40, 0xbd, 0x4c, 0xbe,
    0x00, 0x7e, 0x88, 0x3d, 0x00, 0x00, 0x00, 0x00, 0x40, 0x7e, 0x08, 0xbe,
    0x40, 0xbd, 0xcc, 0xbe, 0x40, 0xbd, 0x4c, 0xbe, 0x80, 0x7e, 0x88, 0xbd,
    0x20, 0xbd, 0xcc, 0x3e, 0x80, 0x7e, 0x88, 0xbd, 0x00, 0x7e, 0x08, 0x3e,
    0x20, 0x7e, 0x88, 0x3e, 0x40, 0x7e, 0x08, 0xbe, 0x00, 0x00, 0x00, 0x00,
    0x40, 0xbd, 0x4c, 0xbe, 0x00, 0x00, 0x00, 0x00, 0x00, 0x7e, 0x88, 0x3d,
    0x00, 0x7e, 0x88, 0x3d, 0xe0, 0x8d, 0x19, 0x3f, 0x00, 0x00, 0x00, 0x00,
    0x20, 0x7e, 0x88, 0x3e, 0x40, 0xbd, 0x4c, 0xbe, 0x00, 0x00, 0x00, 0x00,
    0x80, 0x7e, 0x88, 0xbd, 0x20, 0x7e, 0x88, 0xbe, 0x40, 0xbd, 0x4c, 0xbe,
    0x40, 0x7e, 0x08, 0xbe, 0x00, 0x00, 0x00, 0x00, 0xe0, 0x8d, 0x19, 0x3f,
    0x20, 0x7e, 0x88, 0xbe, 0x80, 0x7e, 0x88, 0xbd, 0x40, 0xbd, 0x4c, 0x3e,
    0x40, 0x7e, 0x08, 0xbe, 0x40, 0xbd, 0x4c, 0x3e, 0x80, 0x7e, 0x88, 0xbd,
    0x40, 0xbd, 0x4c, 0xbe, 0x80, 0x7e, 0x88, 0xbd, 0x40, 0xbd, 0x4c, 0xbe,
    0xb0, 0x9d, 0x2a, 0xbf, 0x00, 0x00, 0x00, 0x00, 0x08, 0x06, 0x91, 0xbf,
    0xa0, 0x9d, 0xaa, 0x3e, 0xf0, 0xcc, 0x5d, 0x3f, 0x00, 0x7e, 0x88, 0x3d,
    0x70, 0xad, 0x3b, 0x3f, 0x40, 0xbd, 0x4c, 0x3e, 0x00, 0x7e, 0x88, 0x3d,
    0x00, 0x7e, 0x88, 0x3d, 0xe8, 0x8d, 0x19, 0xc0, 0xa0, 0x9d, 0xaa, 0x3e,
    0x40, 0xbd, 0x4c, 0x3e, 0xf8, 0xcc, 0xdd, 0xbf, 0x00, 0x00, 0x00, 0x00,
    0xb0, 0x9d, 0x2a, 0xbf, 0x70, 0xad, 0xbb, 0xbf, 0xf0, 0x8d, 0x19, 0xbf,
    0x00, 0x00, 0x00, 0x00, 0x40, 0xbd, 0x4c, 0x3e, 0x00, 0x00, 0x00, 0x00,
    0x00, 0x7e, 0x08, 0x3e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
    0x00, 0x7e, 0x88, 0x3d, 0x80, 0x7e, 0x88, 0xbd, 0x00, 0x7e, 0x88, 0x3d,
    0x80, 0x7e, 0x88, 0xbd, 0x00, 0x7e, 0x08, 0x3e, 0x00, 0x00, 0x00, 0x00,
    0x40, 0x7e, 0x08, 0xbe, 0x40, 0xbd, 0x4c, 0xbe, 0x00, 0x00, 0x00, 0x00,
    0x00, 0x7e, 0x88, 0x3d, 0x00, 0x00, 0x00, 0x00, 0x40, 0x7e, 0x08, 0xbe,
    0x00, 0x7e, 0x08, 0x3e, 0x00, 0x7e, 0x88, 0x3d, 0x80, 0x7e, 0x88, 0xbd,
    0x20, 0x7e, 0x88, 0x3e, 0x08, 0x06, 0x91, 0xbf, 0x20, 0xbd, 0xcc, 0x3e,
    0xc0, 0x9d, 0xaa, 0xbe, 0x40, 0xbd, 0x4c, 0xbe, 0x24, 0x7e, 0x08, 0xc0,
    0x40, 0x7e, 0x08, 0xbe, 0x30, 0xbd, 0x4c, 0x3f, 0xc8, 0x15, 0xa2, 0x3f,
    0xf0, 0xcc, 0x5d, 0x3f, 0x80, 0x7e, 0x88, 0xbd, 0x40, 0xbd, 0x4c, 0xbe,
    0x40, 0x7e, 0x08, 0xbe, 0x80, 0xec, 0x7f, 0x3f, 0xf0, 0x8d, 0x19, 0xbf,
    0x80, 0x7e, 0x88, 0xbd, 0x20, 0x7e, 0x88, 0x3e, 0x20, 0x7e, 0x08, 0xbf,
    0xb0, 0xdc, 0x6e, 0x3f, 0x00, 0x7e, 0x88, 0x3d, 0x20, 0x7e, 0x08, 0xbf,
    0xa0, 0x9d, 0xaa, 0x3e, 0x80, 0x7e, 0x88, 0xbd, 0x40, 0xbd, 0x4c, 0x3e,
    0x40, 0x7e, 0x08, 0xbe, 0x40, 0xbd, 0xcc, 0xbe, 0x80, 0x7e, 0x88, 0xbd,
    0x40, 0x7e, 0x08, 0xbe, 0x80, 0x7e, 0x88, 0xbd, 0x40, 0x7e, 0x08, 0xbe,
    0x80, 0x7e, 0x88, 0xbd, 0xa0, 0x9d, 0xaa, 0x3e, 0x20, 0x7e, 0x88, 0xbe,
    0x00, 0x00, 0x00, 0x00, 0xa0, 0x9d, 0xaa, 0x3e, 0x40, 0x7e, 0x08, 0xbe,
    0xe0, 0x8d, 0x19, 0x3f, 0x00, 0x7e, 0x08, 0x3e, 0xc0, 0x9d, 0xaa, 0xbe,
    0x40, 0x7e, 0x08, 0xbe, 0xc0, 0xdc, 0xee, 0xbe, 0x20, 0xbd, 0xcc, 0x3e,
    0x00, 0x00, 0x00, 0x00, 0x00, 0x7e, 0x88, 0x3d, 0x40, 0x7e, 0x08, 0xbe,
    0x40, 0xbd, 0x4c, 0xbe, 0x80, 0x7e, 0x88, 0xbd, 0x40, 0xbd, 0x4c, 0xbe,
    0x20, 0x7e, 0x88, 0xbe, 0x00, 0x00, 0x00, 0x00, 0x00, 0x7e, 0x88, 0x3d,
    0x00, 0x7e, 0x08, 0x3e, 0x20, 0x7e, 0x88, 0xbe, 0x80, 0x7e, 0x88, 0xbd,
    0x20, 0x7e, 0x88, 0x3e, 0x80, 0x7e, 0x88, 0xbd, 0x70, 0xad, 0x3b, 0x3f,
    0x40, 0xbd, 0x4c, 0x3e, 0x40, 0xbd, 0x4c, 0xbe, 0x00, 0x00, 0x00, 0x00,
    0x20, 0x7e, 0x08, 0xbf, 0x40, 0x7e, 0x08, 0xbe, 0x40, 0xbd, 0x4c, 0x3e,
    0xc8, 0x15, 0xa2, 0xbf, 0x20, 0xbd, 0xcc, 0x3e, 0xa0, 0x9d, 0xaa, 0x3e,
    0x00, 0x7e, 0x88, 0x3d, 0xa0, 0x9d, 0xaa, 0x3e, 0x80, 0xec, 0x7f, 0x3f,
    0x00, 0x00, 0x00, 0x00, 0x00, 0x7e, 0x88, 0x3d, 0x90, 0x25, 0xb3, 0xbf,
    0x00, 0x7e, 0x08, 0x3e, 0x40, 0xbd, 0x4c, 0xbe, 0x28, 0x7e, 0x88, 0xbf,
    0x80, 0x7e, 0x88, 0xbd, 0xa0, 0x64, 0xf7, 0xbf, 0xb0, 0x9d, 0x2a, 0xbf,
    0x20, 0x7e, 0x08, 0xbf, 0x80, 0x7e, 0x88, 0xbd, 0xc0, 0x9d, 0xaa, 0xbe,
    0x00, 0x00, 0x00, 0x00, 0x80, 0x7e, 0x88, 0xbd, 0x00, 0x7e, 0x88, 0x3d,
    0x00, 0x00, 0x00, 0x00, 0x80, 0x7e, 0x88, 0xbd, 0x80, 0x7e, 0x88, 0xbd,
    0x00, 0x7e, 0x88, 0x3d, 0x00, 0x7e, 0x88, 0x3d, 0x00, 0x7e, 0x08, 0x3e,
    0x80, 0x7e, 0x88, 0xbd, 0x80, 0x7e, 0x88, 0xbd, 0x00, 0x00, 0x00, 0x00,
    0x00, 0x00, 0x00, 0x00, 0x80, 0x7e, 0x88, 0xbd, 0x00, 0x00, 0x00, 0x00,
    0x00, 0x7e, 0x08, 0x3e, 0x00, 0x7e, 0x88, 0x3d, 0x00, 0x7e, 0x88, 0x3d,
    0x00, 0x00, 0x00, 0x00, 0xf0, 0x8d, 0x19, 0xbf, 0xb0, 0x9d, 0xaa, 0xbf,
    0xa0, 0x9d, 0x2a, 0x3f, 0xc0, 0x9d, 0xaa, 0xbe, 0x00, 0x00, 0x00, 0x00,
    0xf8, 0x49, 0x15, 0xc0, 0x00, 0x00, 0x00, 0x00, 0xa0, 0x9d, 0x2a, 0x3f,
    0x88, 0x25, 0xb3, 0x3f, 0x20, 0x7e, 0x08, 0x3f, 0x80, 0x7e, 0x88, 0xbd,
    0x40, 0xbd, 0xcc, 0xbe, 0x40, 0xbd, 0x4c, 0xbe, 0x80, 0xec, 0x7f, 0x3f,
    0xc0, 0x9d, 0xaa, 0xbe, 0x00, 0x00, 0x00, 0x00, 0x30, 0xbd, 0x4c, 0x3f,
    0x40, 0xbd, 0xcc, 0xbe, 0xa0, 0x9d, 0xaa, 0x3e, 0x80, 0x7e, 0x88, 0xbd,
    0x40, 0xbd, 0xcc, 0xbe, 0x20, 0x7e, 0x08, 0x3f, 0x20, 0x7e, 0x88, 0x3e,
    0x40, 0x7e, 0x08, 0xbe, 0x80, 0x7e, 0x88, 0xbd, 0x80, 0x7e, 0x88, 0xbd,
    0x80, 0x7e, 0x88, 0xbd, 0xc0, 0xdc, 0xee, 0xbe, 0x80, 0x7e, 0x88, 0xbd,
    0x40, 0x7e, 0x08, 0xbe, 0x40, 0x7e, 0x08, 0xbe, 0x40, 0x7e, 0x08, 0xbe,
    0x80, 0x7e, 0x88, 0xbd, 0x80, 0x7e, 0x88, 0xbd, 0xa0, 0x9d, 0x2a, 0x3f,
    0x00, 0x00, 0x00, 0x00, 0xc0, 0xdc, 0xee, 0xbe, 0x40, 0xbd, 0x4c, 0x3e,
    0x20, 0x7e, 0x88, 0xbe, 0x80, 0x7e, 0x88, 0xbd, 0xc0, 0x9d, 0xaa, 0xbe,
    0x20, 0x7e, 0x08, 0x3f, 0x20, 0x7e, 0x88, 0x3e, 0x00, 0x00, 0x00, 0x00,
    0x40, 0xbd, 0x4c, 0xbe, 0x40, 0xbd, 0x4c, 0xbe, 0x40, 0x7e, 0x08, 0xbe,
    0x40, 0xbd, 0xcc, 0xbe, 0x00, 0x00, 0x00, 0x00, 0x40, 0xbd, 0x4c, 0xbe,
    0x00, 0x00, 0x00, 0x00, 0x40, 0x7e, 0x08, 0xbe, 0x80, 0x7e, 0x88, 0xbd,
    0x20, 0x7e, 0x88, 0xbe, 0xe0, 0x8d, 0x19, 0x3f, 0x80, 0x7e, 0x88, 0xbd,
    0xc0, 0xdc, 0xee, 0xbe, 0x20, 0x7e, 0x88, 0x3e, 0x00, 0x00, 0x00, 0x00,
    0x80, 0x7e, 0x88, 0xbd, 0xc0, 0xdc, 0xee, 0xbe, 0x80, 0x7e, 0x88, 0xbd,
    0xa0, 0x9d, 0xaa, 0x3e, 0xa0, 0x64, 0xf7, 0xbf, 0xa0, 0x9d, 0xaa, 0x3e,
    0xf8, 0xcc, 0xdd, 0x3f, 0x00, 0x00, 0x00, 0x00, 0x20, 0xbd, 0xcc, 0x3e,
    0x00, 0x00, 0x00, 0x00, 0x20, 0x7e, 0x08, 0xbf, 0x00, 0x00, 0x00, 0x00,
    0x70, 0xad, 0xbb, 0xbf, 0x00, 0x7e, 0x08, 0x3e, 0x04, 0x06, 0x11, 0x40,
    0xc0, 0xdc, 0xee, 0xbf, 0x40, 0xbd, 0x4c, 0xbe, 0xf0, 0x8d, 0x19, 0xbf,
    0x20, 0x7e, 0x88, 0xbe, 0x8c, 0x25, 0x33, 0x40, 0x00, 0x7e, 0x88, 0x3d,
    0x20, 0x7e, 0x88, 0xbe, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
    0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x7e, 0x88, 0x3d,
    0x00, 0x7e, 0x88, 0x3d, 0x00, 0x00, 0x00, 0x00, 0x40, 0x7e, 0x08, 0xbe,
    0x40, 0xbd, 0x4c, 0xbe, 0x00, 0x7e, 0x88, 0x3d, 0x40, 0xbd, 0x4c, 0xbe,
    0x80, 0x7e, 0x88, 0xbd, 0x00, 0x7e, 0x88, 0x3d, 0x40, 0x7e, 0x08, 0xbe,
    0x00, 0x00, 0x00, 0x00, 0xc0, 0x9d, 0xaa, 0xbe, 0x40, 0xbd, 0x4c, 0x3e,
    0x20, 0x7e, 0x88, 0xbe, 0x40, 0x7e, 0x08, 0xbe, 0x40, 0xbd, 0xcc, 0xbe,
    0xe8, 0x8d, 0x99, 0xbf, 0x70, 0xad, 0x3b, 0x3f, 0x20, 0x7e, 0x08, 0xbf,
    0x00, 0x00, 0x00, 0x00, 0x80, 0xec, 0xff, 0xbf, 0x00, 0x00, 0x00, 0x00,
    0x30, 0xbd, 0x4c, 0x3f, 0x50, 0x35, 0xc4, 0x3f, 0x40, 0xbd, 0x4c, 0x3e,
    0x00, 0x00, 0x00, 0x00, 0xc0, 0xdc, 0xee, 0xbe, 0x80, 0x7e, 0x88, 0xbd,
    0xe8, 0x8d, 0x99, 0x3f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
    0x20, 0x7e, 0x88, 0xbe, 0x20, 0x7e, 0x88, 0xbe, 0x70, 0xad, 0x3b, 0x3f,
    0x00, 0x7e, 0x88, 0x3d, 0xc0, 0x9d, 0xaa, 0xbe, 0x40, 0xbd, 0x4c, 0x3e,
    0x00, 0x7e, 0x88, 0x3d, 0x80, 0x7e, 0x88, 0xbd, 0x40, 0xbd, 0x4c, 0xbe,
    0x40, 0x7e, 0x08, 0xbe, 0x00, 0x7e, 0x88, 0x3d, 0xc0, 0xdc, 0xee, 0xbe,
    0x00, 0x00, 0x00, 0x00, 0x28, 0x7e, 0x88, 0xbf, 0x00, 0x7e, 0x88, 0x3d,
    0x20, 0x7e, 0x88, 0xbe, 0x00, 0x00, 0x00, 0x00, 0x20, 0x7e, 0x88, 0xbe,
    0xa0, 0x9d, 0x2a, 0x3f, 0x80, 0x7e, 0x88, 0xbd, 0xc0, 0x9d, 0xaa, 0xbe,
    0x00, 0x00, 0x00, 0x00, 0xa0, 0x9d, 0xaa, 0x3e, 0x00, 0x7e, 0x88, 0x3d,
    0x20, 0x7e, 0x88, 0xbe, 0x20, 0x7e, 0x88, 0x3e, 0x00, 0x7e, 0x08, 0x3e,
    0x00, 0x7e, 0x88, 0x3d, 0x40, 0xbd, 0x4c, 0xbe, 0x20, 0x7e, 0x88, 0xbe,
    0x80, 0x7e, 0x88, 0xbd, 0xf0, 0x8d, 0x19, 0xbf, 0x00, 0x00, 0x00, 0x00,
    0x00, 0xcd, 0x5d, 0xbf, 0x00, 0x7e, 0x88, 0x3d, 0x40, 0xbd, 0x4c, 0xbe,
    0x80, 0x7e, 0x88, 0xbd, 0x40, 0x7e, 0x08, 0xbe, 0xe0, 0x8d, 0x19, 0x3f,
    0x00, 0x00, 0x00, 0x00, 0xc0, 0xdc, 0xee, 0xbe, 0x00, 0x00, 0x00, 0x00,
    0xa0, 0x9d, 0xaa, 0x3e, 0x00, 0x00, 0x00, 0x00, 0xf0, 0x8d, 0x19, 0xbf,
    0xb0, 0x9d, 0xaa, 0xbf, 0xe0, 0x8d, 0x19, 0x3f, 0x70, 0xad, 0xbb, 0xbf,
    0xa0, 0x9d, 0xaa, 0x3e, 0x20, 0x7e, 0x08, 0xbf, 0x00, 0x7e, 0x88, 0x3d,
    0xc0, 0x9d, 0xaa, 0xbe, 0xf8, 0xcc, 0xdd, 0x3f, 0x40, 0xbd, 0x4c, 0x3e,
    0x40, 0x7e, 0x08, 0xbe, 0x80, 0x69, 0x37, 0xc0, 0x80, 0x7e, 0x88, 0xbd,
    0xd8, 0x54, 0xe6, 0x3f, 0x24, 0x7e, 0x08, 0xc0, 0x00, 0x7e, 0x88, 0x3d,
    0x00, 0x7e, 0x08, 0x3e, 0x00, 0x00, 0x00, 0x00, 0x40, 0xbd, 0xcc, 0xbe,
    0x00, 0x00, 0x00, 0x00, 0x40, 0x7e, 0x08, 0xbe, 0x40, 0xbd, 0x4c, 0xbe,
    0xc0, 0x9d, 0xaa, 0xbe, 0x00, 0x7e, 0x88, 0x3d, 0x40, 0xbd, 0x4c, 0xbe,
    0x40, 0xbd, 0x4c, 0xbe, 0x40, 0x7e, 0x08, 0xbe, 0x40, 0x7e, 0x08, 0xbe,
    0x00, 0x00, 0x00, 0x00, 0xf0, 0x8d, 0x19, 0xbf, 0x00, 0x7e, 0x88, 0x3d,
    0x40, 0x7e, 0x08, 0xbe, 0x40, 0x7e, 0x08, 0xbe, 0x00, 0x00, 0x00, 0x00,
    0x40, 0x7e, 0x08, 0xbe, 0x40, 0x7e, 0x08, 0xbe, 0x40, 0xbd, 0x4c, 0xbe,
    0x00, 0x7e, 0x08, 0x3e, 0x20, 0x7e, 0x88, 0xbe, 0x40, 0xbd, 0x4c, 0xbe,
    0x20, 0x7e, 0x88, 0xbe, 0x50, 0x35, 0xc4, 0xbf, 0x70, 0xad, 0x3b, 0x3f,
    0xf0, 0x8d, 0x19, 0xbf, 0x80, 0x7e, 0x88, 0xbd, 0x34, 0x3a, 0x04, 0xc0,
    0x00, 0x7e, 0x88, 0x3d, 0x70, 0xad, 0x3b, 0x3f, 0x30, 0xbd, 0xcc, 0x3f,
    0x40, 0xbd, 0xcc, 0xbe, 0x80, 0x7e, 0x88, 0xbd, 0x40, 0xbd, 0xcc, 0xbe,
    0x40, 0x7e, 0x08, 0xbe, 0x00, 0x06, 0x91, 0x3f, 0x40, 0xbd, 0x4c, 0x3e,
    0x80, 0x7e, 0x88, 0xbd, 0x20, 0x7e, 0x88, 0xbe, 0xc0, 0x9d, 0xaa, 0xbe,
    0xb0, 0xdc, 0x6e, 0x3f, 0x80, 0x7e, 0x88, 0xbd, 0x80, 0x7e, 0x88, 0xbd,
    0xf0, 0x8d, 0x19, 0xbf, 0xa0, 0x9d, 0xaa, 0x3e, 0x40, 0xbd, 0xcc, 0xbe,
    0x40, 0xbd, 0x4c, 0xbe, 0x80, 0xec, 0xff, 0xbf, 0x00, 0x00, 0x00, 0x00,
    0xa0, 0x9d, 0xaa, 0x3e, 0x70, 0xad, 0xbb, 0x3f, 0xe0, 0x8d, 0x19, 0x3f,
    0x00, 0x7e, 0x88, 0x3d, 0x40, 0xbd, 0x4c, 0x3e, 0x80, 0x7e, 0x88, 0xbd,
    0x20, 0x7e, 0x88, 0x3e, 0x20, 0x7e, 0x88, 0xbe, 0x80, 0x7e, 0x88, 0xbd,
    0xa0, 0x9d, 0xaa, 0x3e, 0x20, 0x7e, 0x08, 0xbf, 0x80, 0x7e, 0x88, 0xbd,
    0x40, 0x7e, 0x08, 0xbe, 0x00, 0x00, 0x00, 0x00, 0x70, 0xad, 0x3b, 0xbf,
    0x80, 0x7e, 0x88, 0xbd, 0xb0, 0x9d, 0x2a, 0xbf, 0xa0, 0x9d, 0xaa, 0x3e,
    0x20, 0xbd, 0xcc, 0x3e, 0x80, 0x7e, 0x88, 0xbd, 0x20, 0xbd, 0xcc, 0x3e,
    0x30, 0xbd, 0x4c, 0x3f, 0x30, 0xbd, 0x4c, 0x3f, 0x00, 0x7e, 0x88, 0x3d,
    0x20, 0x7e, 0x88, 0xbe, 0x80, 0x7e, 0x88, 0xbd, 0x20, 0x7e, 0x88, 0x3e,
    0xc0, 0x9d, 0xaa, 0xbe, 0x40, 0x7e, 0x08, 0xbe, 0x08, 0x06, 0x91, 0xbf,
    0x80, 0xec, 0x7f, 0xbf, 0x00, 0x7e, 0x08, 0x3e, 0x00, 0x7e, 0x88, 0x3d,
    0x80, 0x7e, 0x88, 0xbd, 0x40, 0xbd, 0x4c, 0xbe, 0xd8, 0x54, 0xe6, 0xbf,
    0x40, 0xbd, 0x4c, 0x3e, 0x40, 0xbd, 0x4c, 0x3e, 0x40, 0x7e, 0x08, 0xbe,
    0x80, 0x7e, 0x88, 0xbd, 0xc0, 0xdc, 0x6e, 0xbf, 0x20, 0x7e, 0x88, 0xbe,
    0xc0, 0xdc, 0xee, 0x3e, 0x00, 0x00, 0x00, 0x00, 0x70, 0xad, 0x3b, 0xbf,
    0x40, 0x7e, 0x08, 0xbe, 0xb0, 0x9d, 0x2a, 0xbf, 0x00, 0x7e, 0x08, 0x3e,
    0x40, 0x7e, 0x08, 0xbe, 0x40, 0xbd, 0x4c, 0x3e, 0x40, 0xbd, 0x4c, 0x3e,
    0x20, 0x7e, 0x88, 0xbe,
}};
const int32_t dnn_logits_bias__2__cf__2_shape[1] = {1};
const union {
  uint8_t bytes[4];
  float values[1];
} dnn_logits_bias__2__cf__2 = {{
    0xbf,
    0x29,
    0xe6,
    0xbf,
}};
const int32_t dnn_logits_kernel__3__cf__3_shape[2] = {20, 1};
const union {
  uint8_t bytes[80];
  float values[20];
} dnn_logits_kernel__3__cf__3 = {{
    0xa6, 0xad, 0x95, 0x3e, 0x25, 0xcd, 0x04, 0xbd, 0x56, 0x3e, 0x48, 0x3d,
    0x60, 0xd7, 0x5b, 0xbd, 0xa6, 0x97, 0x5a, 0x3e, 0x20, 0xa1, 0xc1, 0xbe,
    0xeb, 0xad, 0xb4, 0x3d, 0x85, 0x6e, 0x1f, 0xbe, 0x43, 0xf3, 0x35, 0xbd,
    0xfa, 0x8f, 0x73, 0xbd, 0x33, 0xa6, 0x7a, 0xbd, 0x09, 0x89, 0x6b, 0x3f,
    0x6e, 0x80, 0x2a, 0x3e, 0xcc, 0x63, 0xa4, 0xbe, 0xc4, 0x7a, 0xed, 0xbd,
    0xfe, 0xe8, 0x66, 0x3e, 0xfb, 0x67, 0xde, 0x3e, 0xa9, 0x9d, 0xc9, 0x3d,
    0x02, 0x33, 0xdc, 0x3d, 0x31, 0xd8, 0x8f, 0xbd,
}};

}  // anonymous namespace

// -----------------------------------------------------------------------------
// INFERENCE
// -----------------------------------------------------------------------------

int32_t input_from_feature_columns_input_layer_concat_concat0Shape[2] = {1,
                                                                         323};
int32_t logits_MatMul_merged_with_dnn_logits_BiasAdd0Shape[2] = {1, 1};

void Inference(
    const float* __restrict input_from_feature_columns_input_layer_concat_concat0 /* shape: 1,323 */
    ,
    float* __restrict logits_MatMul_merged_with_dnn_logits_BiasAdd0 /* shape:
                                                                       1,1 */
    ,
    FixedAllocations* __restrict fixed) {
  const int32_t input_from_feature_columns_input_layer_concat_concat0_shape[] =
      {1, 323};

#if OP_LIB_BENCHMARK
  Singleton<PerOpTimings>::get()->Reset();
#endif

  // dnn/hiddenlayer_0/MatMul_merged_with_dnn/hiddenlayer_0/BiasAdd
  FullyConnected<float>(
      input_from_feature_columns_input_layer_concat_concat0_shape,
      input_from_feature_columns_input_layer_concat_concat0,
      dnn_hiddenlayer_0_kernel__1__cf__1_shape,
      dnn_hiddenlayer_0_kernel__1__cf__1.values,
      dnn_hiddenlayer_0_bias__0__cf__0_shape,
      dnn_hiddenlayer_0_bias__0__cf__0.values, fixed->alloc0);

  fixed->shape0[0] = 1;
  fixed->shape0[1] = 20;

  // dnn/hiddenlayer_0/Relu
  Relu<float>(2,  // rank
              fixed->shape0, fixed->alloc0, fixed->alloc0);

  // dnn/logits/MatMul_merged_with_dnn/logits/BiasAdd
  FullyConnected<float>(
      fixed->shape0, fixed->alloc0, dnn_logits_kernel__3__cf__3_shape,
      dnn_logits_kernel__3__cf__3.values, dnn_logits_bias__2__cf__2_shape,
      dnn_logits_bias__2__cf__2.values,
      logits_MatMul_merged_with_dnn_logits_BiasAdd0);

#if OP_LIB_BENCHMARK
  Singleton<PerOpTimings>::get()->WriteTimingsToInfoLog();
#endif
}

}  // namespace ui::internal_onedevice::alpha_model