summaryrefslogtreecommitdiff
path: root/src/zx81rom.c
blob: 21468411798055761b72a923d692444b5a007aa0 (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
/* ZX81 ROM Copyright 1981 Nine Tiles Networks LTD
*/
#include "zx81rom.h"

unsigned char ZX81ROM[8192]=
{
	0xd3,0xfd,0x01,0xff,0x7f,0xc3,0xcb,0x03,
	0x2a,0x16,0x40,0x22,0x18,0x40,0x18,0x46,
	0xa7,0xc2,0xf1,0x07,0xc3,0xf5,0x07,0xff,
	0x2a,0x16,0x40,0x7e,0xa7,0xc0,0x00,0x00,
	0xcd,0x49,0x00,0x18,0xf7,0xff,0xff,0xff,
	0xc3,0x9d,0x19,0xf1,0xd9,0xe3,0xd9,0xc9,
	0xc5,0x2a,0x14,0x40,0xe5,0xc3,0x88,0x14,
	0x0d,0xc2,0x45,0x00,0xe1,0x05,0xc8,0xcb,
	0xd9,0xed,0x4f,0xfb,0xe9,0xd1,0xc8,0x18,
	0xf8,0x2a,0x16,0x40,0x23,0x22,0x16,0x40,
	0x7e,0xfe,0x7f,0xc0,0x18,0xf6,0xe1,0x6e,
	0xfd,0x75,0x00,0xed,0x7b,0x02,0x40,0xcd,
	0x07,0x02,0xc3,0xbc,0x14,0xff,0x08,0x3c,
	0xfa,0x6d,0x00,0x28,0x02,0x08,0xc9,0x08,
	0xf5,0xc5,0xd5,0xe5,0x2a,0x0c,0x40,0xcb,
	0xfc,0x76,0xd3,0xfd,0xdd,0xe9,0x3f,0x3d,
	0x28,0x3b,0x26,0x38,0x29,0x2b,0x2c,0x36,
	0x3c,0x2a,0x37,0x39,0x1d,0x1e,0x1f,0x20,
	0x21,0x1c,0x25,0x24,0x23,0x22,0x35,0x34,
	0x2e,0x3a,0x3e,0x76,0x31,0x30,0x2f,0x2d,
	0x00,0x1b,0x32,0x33,0x27,0x0e,0x19,0x0f,
	0x18,0xe3,0xe1,0xe4,0xe5,0xe2,0xc0,0xd9,
	0xe0,0xdb,0xdd,0x75,0xda,0xde,0xdf,0x72,
	0x77,0x74,0x73,0x70,0x71,0x0b,0x11,0x10,
	0x0d,0xdc,0x79,0x14,0x15,0x16,0xd8,0x0c,
	0x1a,0x12,0x13,0x17,0xcd,0xce,0xc1,0x78,
	0xca,0xcb,0xcc,0xd1,0xd2,0xc7,0xc8,0xc9,
	0xcf,0x40,0x78,0x78,0x78,0x78,0x78,0x78,
	0x78,0x78,0x78,0x78,0xc2,0xd3,0xc4,0xd6,
	0xd5,0x78,0xd4,0xc6,0xc5,0xd0,0x78,0x78,
	0x42,0xd7,0x41,0x08,0x0a,0x09,0x8a,0x89,
	0x81,0x82,0x07,0x84,0x06,0x01,0x02,0x87,
	0x04,0x05,0x77,0x78,0x85,0x03,0x83,0x8b,
	0x91,0x90,0x8d,0x86,0x78,0x92,0x95,0x96,
	0x88,0x8f,0x0b,0x8b,0x26,0xb9,0x39,0x26,
	0xa7,0x8f,0x28,0x34,0x29,0xaa,0x3b,0x26,
	0xb1,0x31,0x2a,0xb3,0x38,0x2e,0xb3,0x28,
	0x34,0xb8,0x39,0x26,0xb3,0x26,0x38,0xb3,
	0x26,0x28,0xb8,0x26,0x39,0xb3,0x31,0xb3,
	0x2a,0x3d,0xb5,0x2e,0x33,0xb9,0x38,0x36,
	0xb7,0x38,0x2c,0xb3,0x26,0x27,0xb8,0x35,
	0x2a,0x2a,0xb0,0x3a,0x38,0xb7,0x38,0x39,
	0x37,0x8d,0x28,0x2d,0x37,0x8d,0x33,0x34,
	0xb9,0x17,0x97,0x34,0xb7,0x26,0x33,0xa9,
	0x13,0x94,0x12,0x94,0x13,0x92,0x39,0x2d,
	0x2a,0xb3,0x39,0xb4,0x38,0x39,0x2a,0xb5,
	0x31,0x35,0x37,0x2e,0x33,0xb9,0x31,0x31,
	0x2e,0x38,0xb9,0x38,0x39,0x34,0xb5,0x38,
	0x31,0x34,0xbc,0x2b,0x26,0x38,0xb9,0x33,
	0x2a,0xbc,0x38,0x28,0x37,0x34,0x31,0xb1,
	0x28,0x34,0x33,0xb9,0x29,0x2e,0xb2,0x37,
	0x2a,0xb2,0x2b,0x34,0xb7,0x2c,0x34,0x39,
	0xb4,0x2c,0x34,0x38,0x3a,0xa7,0x2e,0x33,
	0x35,0x3a,0xb9,0x31,0x34,0x26,0xa9,0x31,
	0x2e,0x38,0xb9,0x31,0x2a,0xb9,0x35,0x26,
	0x3a,0x38,0xaa,0x33,0x2a,0x3d,0xb9,0x35,
	0x34,0x30,0xaa,0x35,0x37,0x2e,0x33,0xb9,
	0x35,0x31,0x34,0xb9,0x37,0x3a,0xb3,0x38,
	0x26,0x3b,0xaa,0x37,0x26,0x33,0xa9,0x2e,
	0xab,0x28,0x31,0xb8,0x3a,0x33,0x35,0x31,
	0x34,0xb9,0x28,0x31,0x2a,0x26,0xb7,0x37,
	0x2a,0x39,0x3a,0x37,0xb3,0x28,0x34,0x35,
	0xbe,0x37,0x33,0xa9,0x2e,0x33,0x30,0x2a,
	0x3e,0x8d,0x35,0xae,0x23,0xeb,0x2a,0x14,
	0x40,0x37,0xed,0x52,0xeb,0xd0,0xe1,0x21,
	0x3b,0x40,0x7e,0x17,0xae,0x17,0xd0,0x3e,
	0x7f,0x08,0x06,0x11,0xd3,0xfe,0x10,0xfe,
	0xd3,0xfd,0x08,0x17,0x30,0x08,0xcb,0xfe,
	0xf5,0xc5,0xd5,0xe5,0x18,0x03,0xcb,0xb6,
	0xc9,0x2a,0x34,0x40,0x2b,0x3e,0x7f,0xa4,
	0xb5,0x7c,0x20,0x03,0x17,0x18,0x02,0x46,
	0x37,0x67,0x22,0x34,0x40,0xd0,0xcd,0xbb,
	0x02,0xed,0x4b,0x25,0x40,0x22,0x25,0x40,
	0x78,0xc6,0x02,0xed,0x42,0x3a,0x27,0x40,
	0xb4,0xb5,0x58,0x06,0x0b,0x21,0x3b,0x40,
	0xcb,0x86,0x20,0x08,0xcb,0x7e,0xcb,0xc6,
	0xc8,0x05,0x00,0x37,0x21,0x27,0x40,0x3f,
	0xcb,0x10,0x10,0xfe,0x46,0x7b,0xfe,0xfe,
	0x9f,0x06,0x1f,0xb6,0xa0,0x1f,0x77,0xd3,
	0xff,0x2a,0x0c,0x40,0xcb,0xfc,0xcd,0x92,
	0x02,0xed,0x5f,0x01,0x01,0x19,0x3e,0xf5,
	0xcd,0xb5,0x02,0x2b,0xcd,0x92,0x02,0xc3,
	0x29,0x02,0xdd,0xe1,0xfd,0x4e,0x28,0xfd,
	0xcb,0x3b,0x7e,0x28,0x0c,0x79,0xed,0x44,
	0x3c,0x08,0xd3,0xfe,0xe1,0xd1,0xc1,0xf1,
	0xc9,0x3e,0xfc,0x06,0x01,0xcd,0xb5,0x02,
	0x2b,0xe3,0xe3,0xdd,0xe9,0xed,0x4f,0x3e,
	0xdd,0xfb,0xe9,0x21,0xff,0xff,0x01,0xfe,
	0xfe,0xed,0x78,0xf6,0x01,0xf6,0xe0,0x57,
	0x2f,0xfe,0x01,0x9f,0xb0,0xa5,0x6f,0x7c,
	0xa2,0x67,0xcb,0x00,0xed,0x78,0x38,0xed,
	0x1f,0xcb,0x14,0x17,0x17,0x17,0x9f,0xe6,
	0x18,0xc6,0x1f,0x32,0x28,0x40,0xc9,0xfd,
	0xcb,0x3b,0x7e,0xc8,0x76,0xd3,0xfd,0xfd,
	0xcb,0x3b,0xbe,0xc9,0xcf,0x0e,0xcd,0xa8,
	0x03,0x38,0xf9,0xeb,0x11,0xcb,0x12,0xcd,
	0x46,0x0f,0x30,0x2e,0x10,0xfe,0x1b,0x7a,
	0xb3,0x20,0xf4,0xcd,0x1e,0x03,0xcb,0x7e,
	0x23,0x28,0xf8,0x21,0x09,0x40,0xcd,0x1e,
	0x03,0xcd,0xfc,0x01,0x18,0xf8,0x5e,0x37,
	0xcb,0x13,0xc8,0x9f,0xe6,0x05,0xc6,0x04,
	0x4f,0xd3,0xff,0x06,0x23,0x10,0xfe,0xcd,
	0x46,0x0f,0x30,0x72,0x06,0x1e,0x10,0xfe,
	0x0d,0x20,0xee,0xa7,0x10,0xfd,0x18,0xe0,
	0xcd,0xa8,0x03,0xcb,0x12,0xcb,0x0a,0xcd,
	0x4c,0x03,0x18,0xfb,0x0e,0x01,0x06,0x00,
	0x3e,0x7f,0xdb,0xfe,0xd3,0xff,0x1f,0x30,
	0x49,0x17,0x17,0x38,0x28,0x10,0xf1,0xf1,
	0xba,0xd2,0xe5,0x03,0x62,0x6b,0xcd,0x4c,
	0x03,0xcb,0x7a,0x79,0x20,0x03,0xbe,0x20,
	0xd6,0x23,0x17,0x30,0xf1,0xfd,0x34,0x15,
	0x21,0x09,0x40,0x50,0xcd,0x4c,0x03,0x71,
	0xcd,0xfc,0x01,0x18,0xf6,0xd5,0x1e,0x94,
	0x06,0x1a,0x1d,0xdb,0xfe,0x17,0xcb,0x7b,
	0x7b,0x38,0xf5,0x10,0xf5,0xd1,0x20,0x04,
	0xfe,0x56,0x30,0xb2,0x3f,0xcb,0x11,0x30,
	0xad,0xc9,0x7a,0xa7,0x28,0xbb,0xcf,0x0c,
	0xcd,0x55,0x0f,0x3a,0x01,0x40,0x87,0xfa,
	0x9a,0x0d,0xe1,0xd0,0xe5,0xcd,0xe7,0x02,
	0xcd,0xf8,0x13,0x62,0x6b,0x0d,0xf8,0x09,
	0xcb,0xfe,0xc9,0xcd,0xe7,0x02,0xed,0x4b,
	0x04,0x40,0x0b,0x60,0x69,0x3e,0x3f,0x36,
	0x02,0x2b,0xbc,0x20,0xfa,0xa7,0xed,0x42,
	0x09,0x23,0x30,0x06,0x35,0x28,0x03,0x35,
	0x28,0xf3,0x22,0x04,0x40,0x2a,0x04,0x40,
	0x2b,0x36,0x3e,0x2b,0xf9,0x2b,0x2b,0x22,
	0x02,0x40,0x3e,0x1e,0xed,0x47,0xed,0x56,
	0xfd,0x21,0x00,0x40,0xfd,0x36,0x3b,0x40,
	0x21,0x7d,0x40,0x22,0x0c,0x40,0x06,0x19,
	0x36,0x76,0x23,0x10,0xfb,0x22,0x10,0x40,
	0xcd,0x9a,0x14,0xcd,0xad,0x14,0xcd,0x07,
	0x02,0xcd,0x2a,0x0a,0x2a,0x0a,0x40,0xed,
	0x5b,0x23,0x40,0xa7,0xed,0x52,0xeb,0x30,
	0x04,0x19,0x22,0x23,0x40,0xcd,0xd8,0x09,
	0x28,0x01,0xeb,0xcd,0x3e,0x07,0xfd,0x35,
	0x1e,0x20,0x37,0x2a,0x0a,0x40,0xcd,0xd8,
	0x09,0x2a,0x16,0x40,0x37,0xed,0x52,0x21,
	0x23,0x40,0x30,0x0b,0xeb,0x7e,0x23,0xed,
	0xa0,0x12,0x18,0xc5,0x21,0x0a,0x40,0x5e,
	0x23,0x56,0xe5,0xeb,0x23,0xcd,0xd8,0x09,
	0xcd,0xbb,0x05,0xe1,0xfd,0xcb,0x2d,0x6e,
	0x20,0x08,0x72,0x2b,0x73,0x18,0xaa,0xcd,
	0xad,0x14,0x2a,0x14,0x40,0x7e,0xfe,0x7e,
	0x20,0x08,0x01,0x06,0x00,0xcd,0x60,0x0a,
	0x18,0xf3,0xfe,0x76,0x23,0x20,0xee,0xcd,
	0x37,0x05,0xcd,0x1f,0x0a,0x2a,0x14,0x40,
	0xfd,0x36,0x00,0xff,0xcd,0x66,0x07,0xfd,
	0xcb,0x00,0x7e,0x20,0x24,0x3a,0x22,0x40,
	0xfe,0x18,0x30,0x1d,0x3c,0x32,0x22,0x40,
	0x47,0x0e,0x01,0xcd,0x18,0x09,0x54,0x5d,
	0x7e,0x2b,0xbe,0x20,0xfc,0x23,0xeb,0x3a,
	0x05,0x40,0xfe,0x4d,0xdc,0x5d,0x0a,0x18,
	0xc9,0x21,0x00,0x00,0x22,0x18,0x40,0x21,
	0x3b,0x40,0xcb,0x7e,0xcc,0x29,0x02,0xcb,
	0x46,0x28,0xfc,0xed,0x4b,0x25,0x40,0xcd,
	0x4b,0x0f,0xcd,0xbd,0x07,0x30,0x93,0x3a,
	0x06,0x40,0x3d,0xfa,0x08,0x05,0x20,0x0f,
	0x32,0x06,0x40,0x1d,0x7b,0xd6,0x27,0x38,
	0x01,0x5f,0x21,0xcc,0x00,0x18,0x0e,0x7e,
	0xfe,0x76,0x28,0x2f,0xfe,0x40,0xcb,0xff,
	0x38,0x19,0x21,0xc7,0x00,0x19,0x18,0x0d,
	0x7e,0xfd,0xcb,0x01,0x56,0x20,0x07,0xc6,
	0xc0,0xfe,0xe6,0x30,0x01,0x7e,0xfe,0xf0,
	0xea,0x2d,0x05,0x5f,0xcd,0x37,0x05,0x7b,
	0xcd,0x26,0x05,0xc3,0x72,0x04,0xcd,0x9b,
	0x09,0x12,0xc9,0x3e,0x78,0x5f,0x21,0x82,
	0x04,0x19,0x19,0x4e,0x23,0x46,0xc5,0x2a,
	0x14,0x40,0xfd,0xcb,0x2d,0x6e,0x20,0x16,
	0xfd,0xcb,0x01,0x96,0x7e,0xfe,0x7f,0xc8,
	0x23,0xcd,0xb4,0x07,0x28,0xf6,0xfe,0x26,
	0x38,0xf2,0xfe,0xde,0x28,0xea,0xfd,0xcb,
	0x01,0xd6,0x18,0xe8,0x01,0x01,0x00,0xc3,
	0x60,0x0a,0x9f,0x05,0x54,0x04,0x76,0x05,
	0x7f,0x05,0xaf,0x05,0xc4,0x05,0x0c,0x06,
	0x8b,0x05,0xaf,0x05,0xaf,0x05,0xcd,0x93,
	0x05,0x7e,0x36,0x7f,0x23,0x18,0x09,0x23,
	0x7e,0xfe,0x76,0x28,0x18,0x36,0x7f,0x2b,
	0x77,0x18,0x98,0xcd,0x93,0x05,0xcd,0x5c,
	0x05,0x18,0xf6,0x2b,0xed,0x5b,0x14,0x40,
	0x1a,0xfe,0x7f,0xc0,0xd1,0x18,0xea,0x2a,
	0x0a,0x40,0xcd,0xd8,0x09,0xeb,0xcd,0xbb,
	0x05,0x21,0x0b,0x40,0xc3,0x64,0x04,0x7b,
	0xe6,0x07,0x32,0x06,0x40,0x18,0xe6,0xeb,
	0x11,0xc2,0x04,0x7e,0xe6,0xc0,0x20,0xf7,
	0x56,0x23,0x5e,0xc9,0xcd,0x1f,0x0a,0x21,
	0x6f,0x04,0xe5,0xfd,0xcb,0x2d,0x6e,0xc0,
	0x2a,0x14,0x40,0x22,0x0e,0x40,0x21,0x21,
	0x18,0x22,0x39,0x40,0x2a,0x0a,0x40,0xcd,
	0xd8,0x09,0xcd,0xbb,0x05,0x7a,0xb3,0xc8,
	0x2b,0xcd,0xa5,0x0a,0x23,0x4e,0x23,0x46,
	0x23,0xed,0x5b,0x0e,0x40,0x3e,0x7f,0x12,
	0x13,0xe5,0x21,0x1d,0x00,0x19,0x09,0xed,
	0x72,0xe1,0xd0,0xed,0xb0,0xeb,0xd1,0xcd,
	0xa6,0x14,0x18,0x91,0xcd,0x1f,0x0a,0x21,
	0x72,0x04,0xfd,0xcb,0x2d,0x6e,0x20,0x11,
	0x2a,0x14,0x40,0x7e,0xfe,0xff,0x28,0x06,
	0xcd,0xe2,0x08,0xcd,0x2a,0x0a,0x21,0x19,
	0x04,0xe5,0xcd,0xba,0x0c,0xe1,0xcd,0x37,
	0x05,0xcd,0x5c,0x05,0xcd,0x73,0x0a,0x20,
	0x15,0x78,0xb1,0xc2,0xe0,0x06,0x0b,0x0b,
	0xed,0x43,0x07,0x40,0xfd,0x36,0x22,0x02,
	0xed,0x5b,0x0c,0x40,0x18,0x13,0xfe,0x76,
	0x28,0x12,0xed,0x4b,0x30,0x40,0xcd,0x18,
	0x09,0xed,0x5b,0x29,0x40,0xfd,0x36,0x22,
	0x02,0xdf,0xfe,0x76,0xca,0x13,0x04,0xfd,
	0x36,0x01,0x80,0xeb,0x22,0x29,0x40,0xeb,
	0xcd,0x4d,0x00,0xcd,0xc1,0x0c,0xfd,0xcb,
	0x01,0x8e,0x3e,0xc0,0xfd,0x77,0x19,0xcd,
	0xa3,0x14,0xfd,0xcb,0x2d,0xae,0xfd,0xcb,
	0x00,0x7e,0x28,0x22,0x2a,0x29,0x40,0xa6,
	0x20,0x1c,0x56,0x23,0x5e,0xed,0x53,0x07,
	0x40,0x23,0x5e,0x23,0x56,0x23,0xeb,0x19,
	0xcd,0x46,0x0f,0x38,0xc7,0x21,0x00,0x40,
	0xcb,0x7e,0x28,0x02,0x36,0x0c,0xfd,0xcb,
	0x38,0x7e,0xcc,0x71,0x08,0x01,0x21,0x01,
	0xcd,0x18,0x09,0x3a,0x00,0x40,0xed,0x4b,
	0x07,0x40,0x3c,0x28,0x0c,0xfe,0x09,0x20,
	0x01,0x03,0xed,0x43,0x2b,0x40,0x20,0x01,
	0x0b,0xcd,0xeb,0x07,0x3e,0x18,0xd7,0xcd,
	0x98,0x0a,0xcd,0xad,0x14,0xc3,0xc1,0x04,
	0xed,0x43,0x0a,0x40,0x2a,0x16,0x40,0xeb,
	0x21,0x13,0x04,0xe5,0x2a,0x1a,0x40,0xed,
	0x52,0xe5,0xc5,0xcd,0xe7,0x02,0xcd,0x2a,
	0x0a,0xe1,0xcd,0xd8,0x09,0x20,0x06,0xcd,
	0xf2,0x09,0xcd,0x60,0x0a,0xc1,0x79,0x3d,
	0xb0,0xc8,0xc5,0x03,0x03,0x03,0x03,0x2b,
	0xcd,0x9e,0x09,0xcd,0x07,0x02,0xc1,0xc5,
	0x13,0x2a,0x1a,0x40,0x2b,0xed,0xb8,0x2a,
	0x0a,0x40,0xeb,0xc1,0x70,0x2b,0x71,0x2b,
	0x73,0x2b,0x72,0xc9,0xfd,0xcb,0x01,0xce,
	0xcd,0xa7,0x0e,0x78,0xe6,0x3f,0x67,0x69,
	0x22,0x0a,0x40,0xcd,0xd8,0x09,0x1e,0x00,
	0xcd,0x45,0x07,0x18,0xfb,0xed,0x4b,0x0a,
	0x40,0xcd,0xea,0x09,0x16,0x92,0x28,0x05,
	0x11,0x00,0x00,0xcb,0x13,0xfd,0x73,0x1e,
	0x7e,0xfe,0x40,0xc1,0xd0,0xc5,0xcd,0xa5,
	0x0a,0x23,0x7a,0xd7,0x23,0x23,0x22,0x16,
	0x40,0xfd,0xcb,0x01,0xc6,0xed,0x4b,0x18,
	0x40,0x2a,0x16,0x40,0xa7,0xed,0x42,0x20,
	0x03,0x3e,0xb8,0xd7,0x2a,0x16,0x40,0x7e,
	0x23,0xcd,0xb4,0x07,0x22,0x16,0x40,0x28,
	0xe4,0xfe,0x7f,0x28,0x10,0xfe,0x76,0x28,
	0x5d,0xcb,0x77,0x28,0x05,0xcd,0x4b,0x09,
	0x18,0xd3,0xd7,0x18,0xd0,0x3a,0x06,0x40,
	0x06,0xab,0xa7,0x20,0x05,0x3a,0x01,0x40,
	0x06,0xb0,0x1f,0x1f,0xe6,0x01,0x80,0xcd,
	0xf5,0x07,0x18,0xb9,0xfe,0x7e,0xc0,0x23,
	0x23,0x23,0x23,0x23,0xc9,0x16,0x00,0xcb,
	0x28,0x9f,0xf6,0x26,0x2e,0x05,0x95,0x85,
	0x37,0xcb,0x19,0x38,0xfa,0x0c,0xc0,0x48,
	0x2d,0x2e,0x01,0x20,0xf2,0x21,0x7d,0x00,
	0x5f,0x19,0x37,0xc9,0x7b,0xa7,0xf8,0x18,
	0x10,0xaf,0x09,0x3c,0x38,0xfc,0xed,0x42,
	0x3d,0x28,0xf1,0x1e,0x1c,0x83,0xa7,0x28,
	0x04,0xfd,0xcb,0x01,0x86,0xd9,0xe5,0xfd,
	0xcb,0x01,0x4e,0x20,0x05,0xcd,0x08,0x08,
	0x18,0x03,0xcd,0x51,0x08,0xe1,0xd9,0xc9,
	0x57,0xed,0x4b,0x39,0x40,0x79,0xfe,0x21,
	0x28,0x1a,0x3e,0x76,0xba,0x28,0x30,0x2a,
	0x0e,0x40,0xbe,0x7a,0x20,0x20,0x0d,0x20,
	0x19,0x23,0x22,0x0e,0x40,0x0e,0x21,0x05,
	0xed,0x43,0x39,0x40,0x78,0xfd,0xbe,0x22,
	0x28,0x03,0xa7,0x20,0xdd,0x2e,0x04,0xc3,
	0x58,0x00,0xcd,0x9b,0x09,0xeb,0x77,0x23,
	0x22,0x0e,0x40,0xfd,0x35,0x39,0xc9,0x0e,
	0x21,0x05,0xfd,0xcb,0x01,0xc6,0xc3,0x18,
	0x09,0xfe,0x76,0x28,0x1c,0x4f,0x3a,0x38,
	0x40,0xe6,0x7f,0xfe,0x5c,0x6f,0x26,0x40,
	0xcc,0x71,0x08,0x71,0x2c,0xfd,0x75,0x38,
	0xc9,0x16,0x16,0x2a,0x0c,0x40,0x23,0x18,
	0x05,0x16,0x01,0x21,0x3c,0x40,0xcd,0xe7,
	0x02,0xc5,0xe5,0xaf,0x5f,0xd3,0xfb,0xe1,
	0xcd,0x46,0x0f,0x38,0x05,0x1f,0xd3,0xfb,
	0xcf,0x0c,0xdb,0xfb,0x87,0xfa,0xde,0x08,
	0x30,0xee,0xe5,0xd5,0x7a,0xfe,0x02,0x9f,
	0xa3,0x07,0xa3,0x57,0x4e,0x79,0x23,0xfe,
	0x76,0x28,0x24,0xe5,0xcb,0x27,0x87,0x87,
	0x26,0x0f,0xcb,0x14,0x83,0x6f,0xcb,0x11,
	0x9f,0xae,0x4f,0x06,0x08,0x7a,0xcb,0x01,
	0x1f,0x67,0xdb,0xfb,0x1f,0x30,0xfb,0x7c,
	0xd3,0xfb,0x10,0xf1,0xe1,0x18,0xd5,0xdb,
	0xfb,0x1f,0x30,0xfb,0x7a,0x0f,0xd3,0xfb,
	0xd1,0x1c,0xcb,0x5b,0x28,0xa7,0xc1,0x15,
	0x20,0xa0,0x3e,0x04,0xd3,0xfb,0xcd,0x07,
	0x02,0xc1,0x21,0x5c,0x40,0x36,0x76,0x06,
	0x20,0x2b,0x36,0x00,0x10,0xfb,0x7d,0xcb,
	0xff,0x32,0x38,0x40,0xc9,0x3e,0x17,0x90,
	0x38,0x0b,0xfd,0xbe,0x22,0xda,0x35,0x08,
	0x3c,0x47,0x3e,0x1f,0x91,0xda,0xad,0x0e,
	0xc6,0x02,0x4f,0xfd,0xcb,0x01,0x4e,0x28,
	0x07,0x3e,0x5d,0x91,0x32,0x38,0x40,0xc9,
	0xed,0x43,0x39,0x40,0x2a,0x10,0x40,0x51,
	0x3e,0x22,0x91,0x4f,0x3e,0x76,0x04,0x2b,
	0xbe,0x20,0xfc,0x10,0xfa,0x23,0xed,0xb1,
	0x2b,0x22,0x0e,0x40,0x37,0xe0,0x15,0xc8,
	0xc5,0xcd,0x9e,0x09,0xc1,0x41,0x62,0x6b,
	0x36,0x00,0x2b,0x10,0xfb,0xeb,0x23,0x22,
	0x0e,0x40,0xc9,0xf5,0xcd,0x75,0x09,0x30,
	0x08,0xfd,0xcb,0x01,0x46,0x20,0x02,0xaf,
	0xd7,0x0a,0xe6,0x3f,0xd7,0x0a,0x03,0x87,
	0x30,0xf7,0xc1,0xcb,0x78,0xc8,0xfe,0x1a,
	0x28,0x03,0xfe,0x38,0xd8,0xaf,0xfd,0xcb,
	0x01,0xc6,0xc3,0xf5,0x07,0xe5,0x21,0x11,
	0x01,0xcb,0x7f,0x28,0x02,0xe6,0x3f,0xfe,
	0x43,0x30,0x10,0x47,0x04,0xcb,0x7e,0x23,
	0x28,0xfb,0x10,0xf9,0xcb,0x77,0x20,0x02,
	0xfe,0x18,0x3f,0x44,0x4d,0xe1,0xd0,0x0a,
	0xc6,0xe4,0xc9,0x01,0x01,0x00,0xe5,0xcd,
	0xc5,0x0e,0xe1,0xcd,0xad,0x09,0x2a,0x1c,
	0x40,0xeb,0xed,0xb8,0xc9,0xf5,0xe5,0x21,
	0x0c,0x40,0x3e,0x09,0x5e,0x23,0x56,0xe3,
	0xa7,0xed,0x52,0x19,0xe3,0x30,0x09,0xd5,
	0xeb,0x09,0xeb,0x72,0x2b,0x73,0x23,0xd1,
	0x23,0x3d,0x20,0xe8,0xeb,0xd1,0xf1,0xa7,
	0xed,0x52,0x44,0x4d,0x03,0x19,0xeb,0xc9,
	0xe5,0x21,0x7d,0x40,0x54,0x5d,0xc1,0xcd,
	0xea,0x09,0xd0,0xc5,0xcd,0xf2,0x09,0xeb,
	0x18,0xf4,0x7e,0xb8,0xc0,0x23,0x7e,0x2b,
	0xb9,0xc9,0xe5,0x7e,0xfe,0x40,0x38,0x17,
	0xcb,0x6f,0x28,0x14,0x87,0xfa,0x01,0x0a,
	0x3f,0x01,0x05,0x00,0x30,0x02,0x0e,0x11,
	0x17,0x23,0x7e,0x30,0xfb,0x18,0x06,0x23,
	0x23,0x4e,0x23,0x46,0x23,0x09,0xd1,0xa7,
	0xed,0x52,0x44,0x4d,0x19,0xeb,0xc9,0xfd,
	0x46,0x22,0xc5,0xcd,0x2c,0x0a,0xc1,0x05,
	0x18,0x02,0x06,0x18,0xfd,0xcb,0x01,0x8e,
	0x0e,0x21,0xc5,0xcd,0x18,0x09,0xc1,0x3a,
	0x05,0x40,0xfe,0x4d,0x38,0x14,0xfd,0xcb,
	0x3a,0xfe,0xaf,0xcd,0xf5,0x07,0x2a,0x39,
	0x40,0x7d,0xb4,0xe6,0x7e,0x20,0xf3,0xc3,
	0x18,0x09,0x54,0x5d,0x2b,0x48,0x06,0x00,
	0xed,0xb0,0x2a,0x10,0x40,0xcd,0x17,0x0a,
	0xc5,0x78,0x2f,0x47,0x79,0x2f,0x4f,0x03,
	0xcd,0xad,0x09,0xeb,0xe1,0x19,0xd5,0xed,
	0xb0,0xe1,0xc9,0x2a,0x14,0x40,0xcd,0x4d,
	0x00,0xdf,0xfd,0xcb,0x2d,0x6e,0xc0,0x21,
	0x5d,0x40,0x22,0x1c,0x40,0xcd,0x48,0x15,
	0xcd,0x8a,0x15,0x38,0x04,0x21,0xf0,0xd8,
	0x09,0xda,0x9a,0x0d,0xbf,0xc3,0xbc,0x14,
	0xd5,0xe5,0xaf,0xcb,0x78,0x20,0x20,0x60,
	0x69,0x1e,0xff,0x18,0x08,0xd5,0x56,0x23,
	0x5e,0xe5,0xeb,0x1e,0x00,0x01,0x18,0xfc,
	0xcd,0xe1,0x07,0x01,0x9c,0xff,0xcd,0xe1,
	0x07,0x0e,0xf6,0xcd,0xe1,0x07,0x7d,0xcd,
	0xeb,0x07,0xe1,0xd1,0xc9,0xcd,0xa6,0x0d,
	0xe1,0xc8,0xe9,0xfd,0xcb,0x01,0xce,0x7e,
	0xfe,0x76,0xca,0x84,0x0b,0xd6,0x1a,0xce,
	0x00,0x28,0x69,0xfe,0xa7,0x20,0x1b,0xe7,
	0xcd,0x92,0x0d,0xfe,0x1a,0xc2,0x9a,0x0d,
	0xe7,0xcd,0x92,0x0d,0xcd,0x4e,0x0b,0xef,
	0x01,0x34,0xcd,0xf5,0x0b,0xcd,0xf5,0x08,
	0x18,0x3d,0xfe,0xa8,0x20,0x33,0xe7,0xcd,
	0x92,0x0d,0xcd,0x4e,0x0b,0xcd,0x02,0x0c,
	0xc2,0xad,0x0e,0xe6,0x1f,0x4f,0xfd,0xcb,
	0x01,0x4e,0x28,0x0a,0xfd,0x96,0x38,0xcb,
	0xff,0xc6,0x3c,0xd4,0x71,0x08,0xfd,0x86,
	0x39,0xfe,0x21,0x3a,0x3a,0x40,0xde,0x01,
	0xcd,0xfa,0x08,0xfd,0xcb,0x01,0xc6,0x18,
	0x06,0xcd,0x55,0x0f,0xcd,0x55,0x0b,0xdf,
	0xd6,0x1a,0xce,0x00,0x28,0x06,0xcd,0x1d,
	0x0d,0xc3,0x84,0x0b,0xd4,0x8b,0x0b,0xe7,
	0xfe,0x76,0xc8,0xc3,0xd5,0x0a,0xcd,0xa6,
	0x0d,0xc0,0xe1,0x18,0xe2,0xcd,0xc5,0x0a,
	0xfd,0xcb,0x01,0x76,0xcc,0xf8,0x13,0x28,
	0x0a,0xc3,0xdb,0x15,0x3e,0x0b,0xd7,0xed,
	0x5b,0x18,0x40,0x78,0xb1,0x0b,0xc8,0x1a,
	0x13,0xed,0x53,0x18,0x40,0xcb,0x77,0x28,
	0xed,0xfe,0xc0,0x28,0xe7,0xc5,0xcd,0x4b,
	0x09,0xc1,0x18,0xe3,0xcd,0xc5,0x0a,0x3e,
	0x76,0xd7,0xc9,0xcd,0xc5,0x0a,0xfd,0xcb,
	0x01,0xc6,0xaf,0xd7,0xed,0x4b,0x39,0x40,
	0x79,0xfd,0xcb,0x01,0x4e,0x28,0x05,0x3e,
	0x5d,0xfd,0x96,0x38,0x0e,0x11,0xb9,0x30,
	0x02,0x0e,0x01,0xcd,0x0b,0x09,0xc9,0xcd,
	0xf5,0x0b,0xed,0x43,0x36,0x40,0x3e,0x2b,
	0x90,0xda,0xad,0x0e,0x47,0x3e,0x01,0xcb,
	0x28,0x30,0x02,0x3e,0x04,0xcb,0x29,0x30,
	0x01,0x07,0xf5,0xcd,0xf5,0x08,0x7e,0x07,
	0xfe,0x10,0x30,0x06,0x0f,0x30,0x02,0xee,
	0x8f,0x47,0x11,0x9e,0x0c,0x3a,0x30,0x40,
	0x93,0xfa,0xe9,0x0b,0xf1,0x2f,0xa0,0x18,
	0x02,0xf1,0xb0,0xfe,0x08,0x38,0x02,0xee,
	0x8f,0xd9,0xd7,0xd9,0xc9,0xcd,0x02,0x0c,
	0x47,0xc5,0xcd,0x02,0x0c,0x59,0xc1,0x51,
	0x4f,0xc9,0xcd,0xcd,0x15,0xda,0xad,0x0e,
	0x0e,0x01,0xc8,0x0e,0xff,0xc9,0xfd,0x46,
	0x22,0x0e,0x21,0xcd,0x18,0x09,0xcd,0x9b,
	0x09,0x7e,0x12,0xfd,0x34,0x3a,0x2a,0x0c,
	0x40,0x23,0x54,0x5d,0xed,0xb1,0xc3,0x5d,
	0x0a,0x8b,0x8d,0x2d,0x7f,0x81,0x49,0x75,
	0x5f,0x40,0x42,0x2b,0x17,0x1f,0x37,0x52,
	0x45,0x0f,0x6d,0x2b,0x44,0x2d,0x5a,0x3b,
	0x4c,0x45,0x0d,0x52,0x5a,0x4d,0x15,0x6a,
	0x01,0x14,0x02,0x06,0x00,0x81,0x0e,0x06,
	0xde,0x05,0xab,0x0d,0x06,0x00,0xb5,0x0e,
	0x00,0xdc,0x0c,0x00,0xd8,0x0e,0x04,0x14,
	0x06,0xdf,0x06,0x05,0xb9,0x0d,0x04,0x00,
	0x2e,0x0e,0x05,0xcf,0x0a,0x01,0x00,0xe9,
	0x0e,0x05,0x09,0x14,0x05,0x6a,0x0d,0x00,
	0xc3,0x03,0x03,0xaf,0x0e,0x03,0x30,0x07,
	0x06,0x1a,0x06,0x00,0x92,0x0e,0x03,0x6c,
	0x0e,0x05,0x40,0x03,0x05,0xf6,0x02,0x00,
	0x7c,0x0e,0x00,0x9a,0x14,0x00,0x2a,0x0a,
	0x06,0x1a,0x06,0x00,0xaf,0x0b,0x06,0x1a,
	0x06,0x00,0xaf,0x0b,0x00,0x0e,0x0c,0x06,
	0x00,0x32,0x0f,0x00,0x2b,0x0f,0x00,0x23,
	0x0f,0x00,0x69,0x08,0x05,0xcb,0x0a,0x03,
	0x2c,0x07,0xfd,0x36,0x01,0x01,0xcd,0x73,
	0x0a,0xcd,0xbc,0x14,0x21,0x00,0x40,0x36,
	0xff,0x21,0x2d,0x40,0xcb,0x6e,0x28,0x0e,
	0xfe,0xe3,0x7e,0xc2,0x6f,0x0d,0xcd,0xa6,
	0x0d,0xc8,0xcf,0x0c,0xcf,0x08,0xdf,0x06,
	0x00,0xfe,0x76,0xc8,0x4f,0xe7,0x79,0xd6,
	0xe1,0x38,0x3b,0x4f,0x21,0x29,0x0c,0x09,
	0x4e,0x09,0x18,0x03,0x2a,0x30,0x40,0x7e,
	0x23,0x22,0x30,0x40,0x01,0xf4,0x0c,0xc5,
	0x4f,0xfe,0x0b,0x30,0x0b,0x21,0x16,0x0d,
	0x06,0x00,0x09,0x4e,0x09,0xe5,0xdf,0xc9,
	0xdf,0xb9,0x20,0x12,0xe7,0xc9,0x17,0x25,
	0x53,0x0f,0x6b,0x13,0x76,0xcd,0xa6,0x0d,
	0xc0,0xc1,0x7e,0xfe,0x76,0xc8,0x18,0x72,
	0xfe,0x76,0xcd,0x9c,0x0d,0xbf,0xc1,0xcc,
	0x1d,0x0d,0xeb,0x2a,0x30,0x40,0x4e,0x23,
	0x46,0xeb,0xc5,0xc9,0xcd,0x1c,0x11,0xfd,
	0x36,0x2d,0x00,0x30,0x08,0xfd,0xcb,0x2d,
	0xce,0x20,0x18,0xcf,0x01,0xcc,0xa7,0x11,
	0xfd,0xcb,0x01,0x76,0x20,0x0d,0xaf,0xcd,
	0xa6,0x0d,0xc4,0xf8,0x13,0x21,0x2d,0x40,
	0xb6,0x77,0xeb,0xed,0x43,0x2e,0x40,0x22,
	0x12,0x40,0xc9,0xc1,0x3a,0x01,0x40,0xf5,
	0xcd,0x55,0x0f,0xf1,0x01,0x21,0x13,0xfd,
	0x56,0x01,0xaa,0xe6,0x40,0x20,0x1b,0xcb,
	0x7a,0x20,0xb7,0x18,0x9d,0xcd,0x1c,0x11,
	0xf5,0x79,0xf6,0x9f,0x3c,0x20,0x0b,0xf1,
	0x18,0xad,0xcd,0x55,0x0f,0xfd,0xcb,0x01,
	0x76,0xc0,0xcf,0x0b,0x20,0xf4,0xcd,0xa6,
	0x0d,0xc8,0xef,0xa0,0x34,0xc9,0xfd,0xcb,
	0x01,0x7e,0xc9,0xcd,0xa6,0x0d,0x28,0x06,
	0xef,0x02,0x34,0x1a,0xa7,0xc8,0xc3,0xde,
	0x0c,0xfe,0xe0,0x20,0x09,0xe7,0xcd,0x92,
	0x0d,0xcd,0x1d,0x0d,0x18,0x06,0xcd,0x1d,
	0x0d,0xef,0xa1,0x34,0xef,0xc0,0x02,0x01,
	0xe0,0x01,0x34,0xcd,0x21,0x13,0x22,0x1f,
	0x40,0x2b,0x7e,0xcb,0xfe,0x01,0x06,0x00,
	0x09,0x07,0x38,0x06,0xcb,0x21,0xcd,0x9e,
	0x09,0x23,0xe5,0xef,0x02,0x02,0x34,0xe1,
	0xeb,0x0e,0x0a,0xed,0xb0,0x2a,0x07,0x40,
	0xeb,0x13,0x73,0x23,0x72,0xcd,0x5a,0x0e,
	0xd0,0xfd,0xcb,0x08,0x7e,0xc0,0xfd,0x46,
	0x2e,0xcb,0xb0,0x2a,0x29,0x40,0x7e,0xe6,
	0xc0,0x20,0x17,0xc5,0xcd,0xf2,0x09,0xc1,
	0x23,0x23,0x23,0xcd,0x4c,0x00,0xdf,0xfe,
	0xf3,0xeb,0x20,0xea,0xeb,0xe7,0xeb,0xb8,
	0x20,0xe4,0x22,0x29,0x40,0xc9,0xfd,0xcb,
	0x2d,0x4e,0xc2,0x4b,0x0d,0x2a,0x12,0x40,
	0xcb,0x7e,0x28,0x1c,0x23,0x22,0x1f,0x40,
	0xef,0xe0,0xe2,0x0f,0xc0,0x02,0x34,0xcd,
	0x5a,0x0e,0xd8,0x2a,0x1f,0x40,0x11,0x0f,
	0x00,0x19,0x5e,0x23,0x56,0xeb,0x18,0x2e,
	0xcf,0x00,0xef,0xe1,0xe0,0xe2,0x32,0x00,
	0x02,0x01,0x03,0x33,0x00,0x04,0x34,0xa7,
	0xc9,0x34,0x37,0xc9,0xcd,0xa7,0x0e,0x78,
	0xb1,0x20,0x04,0xed,0x4b,0x34,0x40,0xed,
	0x43,0x32,0x40,0xc9,0x2a,0x2b,0x40,0x18,
	0x05,0xcd,0xa7,0x0e,0x60,0x69,0x7c,0xfe,
	0xf0,0x30,0x22,0xcd,0xd8,0x09,0x22,0x29,
	0x40,0xc9,0xcd,0xcd,0x15,0x38,0x16,0x28,
	0x02,0xed,0x44,0xf5,0xcd,0xa7,0x0e,0xf1,
	0xfd,0xcb,0x00,0x7e,0xc8,0x02,0xc9,0xcd,
	0x8a,0x15,0x38,0x01,0xc8,0xcf,0x0a,0xcd,
	0x81,0x0e,0xc3,0x9a,0x14,0x2a,0x07,0x40,
	0x23,0xe3,0xe5,0xed,0x73,0x02,0x40,0xcd,
	0x81,0x0e,0x01,0x06,0x00,0x2a,0x1c,0x40,
	0x09,0x38,0x08,0xeb,0x21,0x24,0x00,0x19,
	0xed,0x72,0xd8,0x2e,0x03,0xc3,0x58,0x00,
	0xe1,0xe3,0x7c,0xfe,0x3e,0x28,0x06,0xed,
	0x73,0x02,0x40,0x18,0xa1,0xe3,0xe5,0xcf,
	0x06,0xfd,0xcb,0x08,0x7e,0x20,0x32,0xcd,
	0xa3,0x14,0x21,0x2d,0x40,0xcb,0xee,0xcb,
	0xb6,0x3a,0x01,0x40,0xe6,0x40,0x01,0x02,
	0x00,0x20,0x02,0x0e,0x04,0xb6,0x77,0xf7,
	0x36,0x76,0x79,0x0f,0x0f,0x38,0x05,0x3e,
	0x0b,0x12,0x2b,0x77,0x2b,0x36,0x7f,0x2a,
	0x39,0x40,0x22,0x30,0x40,0xe1,0xc3,0x72,
	0x04,0xcf,0x07,0xcd,0xe7,0x02,0xfd,0xcb,
	0x3b,0xb6,0xc9,0xfd,0xcb,0x3b,0xf6,0xc3,
	0x07,0x02,0xcd,0xa7,0x0e,0xcd,0xe7,0x02,
	0x60,0x69,0xcd,0x2d,0x02,0xfd,0x36,0x35,
	0xff,0xcd,0x07,0x02,0x18,0x05,0x3e,0x7f,
	0xdb,0xfe,0x1f,0xfd,0xcb,0x3b,0x86,0x3e,
	0xff,0x32,0x27,0x40,0xc9,0xdf,0x06,0x00,
	0xc5,0xfe,0x40,0x20,0x2f,0xcd,0xa6,0x0d,
	0x28,0x28,0xed,0x4b,0x32,0x40,0xcd,0x20,
	0x15,0xef,0xa1,0x0f,0x30,0x37,0x16,0x04,
	0x30,0x80,0x41,0x00,0x00,0x80,0x2e,0x02,
	0xa1,0x03,0x2d,0x34,0xcd,0x8a,0x15,0xed,
	0x43,0x32,0x40,0x7e,0xa7,0x28,0x03,0xd6,
	0x10,0x77,0x18,0x0d,0xfe,0x42,0x20,0x0d,
	0xcd,0xa6,0x0d,0x28,0x04,0xef,0xa3,0x34,
	0x34,0xe7,0xc3,0x83,0x10,0xfe,0x41,0x20,
	0x11,0xcd,0xbb,0x02,0x44,0x4d,0x51,0x14,
	0xc4,0xbd,0x07,0x7a,0x8a,0x42,0x4f,0xeb,
	0x18,0x3b,0xcd,0xd2,0x14,0x38,0x6e,0xfe,
	0x1b,0xca,0x47,0x10,0x01,0xd8,0x09,0xfe,
	0x16,0x28,0x5d,0xfe,0x10,0x20,0x0f,0xcd,
	0x49,0x00,0xcd,0x55,0x0f,0xfe,0x11,0x20,
	0x2e,0xcd,0x49,0x00,0x18,0x22,0xfe,0x0b,
	0x20,0x28,0xcd,0x49,0x00,0xe5,0x18,0x03,
	0xcd,0x49,0x00,0xfe,0x0b,0x20,0x14,0xd1,
	0xa7,0xed,0x52,0x44,0x4d,0x21,0x01,0x40,
	0xcb,0xb6,0xcb,0x7e,0xc4,0xc3,0x12,0xe7,
	0xc3,0x88,0x10,0xfe,0x76,0x20,0xe1,0xc3,
	0x9a,0x0d,0xd6,0xc4,0x38,0xf9,0x01,0xec,
	0x04,0xfe,0x13,0x28,0x13,0x30,0xf0,0x06,
	0x10,0xc6,0xd9,0x4f,0xfe,0xdc,0x30,0x02,
	0xcb,0xb1,0xfe,0xea,0x38,0x02,0xcb,0xb9,
	0xc5,0xe7,0xc3,0x59,0x0f,0xfe,0x26,0x38,
	0x1e,0xcd,0x1c,0x11,0xda,0x4b,0x0d,0xcc,
	0xa7,0x11,0x3a,0x01,0x40,0xfe,0xc0,0x38,
	0x4e,0x23,0xed,0x5b,0x1c,0x40,0xcd,0xf6,
	0x19,0xeb,0x22,0x1c,0x40,0x18,0x40,0xcd,
	0xa6,0x0d,0x20,0x23,0xcd,0xd9,0x14,0xdf,
	0x01,0x06,0x00,0xcd,0x9e,0x09,0x23,0x36,
	0x7e,0x23,0xeb,0x2a,0x1c,0x40,0x0e,0x05,
	0xa7,0xed,0x42,0x22,0x1c,0x40,0xed,0xb0,
	0xeb,0x2b,0xcd,0x4c,0x00,0x18,0x14,0xe7,
	0xfe,0x7e,0x20,0xfb,0x23,0xed,0x5b,0x1c,
	0x40,0xcd,0xf6,0x19,0xed,0x53,0x1c,0x40,
	0x22,0x16,0x40,0xfd,0xcb,0x01,0xf6,0xdf,
	0xfe,0x10,0x20,0x0c,0xfd,0xcb,0x01,0x76,
	0x20,0x2a,0xcd,0x63,0x12,0xe7,0x18,0xf0,
	0x01,0xc3,0x00,0xfe,0x12,0x38,0x1d,0xd6,
	0x16,0x30,0x04,0xc6,0x0d,0x18,0x0e,0xfe,
	0x03,0x38,0x0a,0xd6,0xc2,0x38,0x0d,0xfe,
	0x06,0x30,0x09,0xc6,0x03,0x81,0x4f,0x21,
	0x4c,0x10,0x09,0x46,0xd1,0x7a,0xb8,0x38,
	0x2c,0xa7,0xca,0x18,0x00,0xc5,0xd5,0xcd,
	0xa6,0x0d,0x28,0x09,0x7b,0xe6,0x3f,0x47,
	0xef,0x37,0x34,0x18,0x09,0x7b,0xfd,0xae,
	0x01,0xe6,0x40,0xc2,0x9a,0x0d,0xd1,0x21,
	0x01,0x40,0xcb,0xf6,0xcb,0x7b,0x20,0x02,
	0xcb,0xb6,0xc1,0x18,0xcf,0xd5,0x79,0xfd,
	0xcb,0x01,0x76,0x20,0x15,0xe6,0x3f,0xc6,
	0x08,0x4f,0xfe,0x10,0x20,0x04,0xcb,0xf1,
	0x18,0x08,0x38,0xd7,0xfe,0x17,0x28,0x02,
	0xcb,0xf9,0xc5,0xe7,0xc3,0x59,0x0f,0x06,
	0x08,0x08,0x0a,0x02,0x03,0x05,0x05,0x05,
	0x05,0x05,0x05,0x06,0xfd,0xcb,0x01,0xf6,
	0xdf,0xcd,0xce,0x14,0xd2,0x9a,0x0d,0xe5,
	0x4f,0xe7,0xe5,0xcb,0xa9,0xfe,0x10,0x28,
	0x17,0xcb,0xf1,0xfe,0x0d,0x28,0x0c,0xcb,
	0xe9,0xcd,0xd2,0x14,0x30,0x0a,0xcb,0xb1,
	0xe7,0x18,0xf6,0xe7,0xfd,0xcb,0x01,0xb6,
	0x41,0xcd,0xa6,0x0d,0x20,0x08,0x79,0xe6,
	0xe0,0xcb,0xff,0x4f,0x18,0x34,0x2a,0x10,
	0x40,0x7e,0xe6,0x7f,0x28,0x2a,0xb9,0x20,
	0x1f,0x17,0x87,0xf2,0x95,0x11,0x38,0x2d,
	0xd1,0xd5,0xe5,0x23,0x1a,0x13,0xa7,0x28,
	0xfb,0xbe,0x28,0xf7,0xf6,0x80,0xbe,0x20,
	0x06,0x1a,0xcd,0xd2,0x14,0x30,0x15,0xe1,
	0xc5,0xcd,0xf2,0x09,0xeb,0xc1,0x18,0xd1,
	0xcb,0xf8,0xd1,0xdf,0xfe,0x10,0x28,0x09,
	0xcb,0xe8,0x18,0x0d,0xd1,0xd1,0xd1,0xe5,
	0xdf,0xcd,0xd2,0x14,0x30,0x03,0xe7,0x18,
	0xf8,0xe1,0xcb,0x10,0xcb,0x70,0xc9,0xaf,
	0x47,0xcb,0x79,0x20,0x4b,0xcb,0x7e,0x20,
	0x0e,0x3c,0x23,0x4e,0x23,0x46,0x23,0xeb,
	0xcd,0xc3,0x12,0xdf,0xc3,0x5a,0x12,0x23,
	0x23,0x23,0x46,0xcb,0x71,0x28,0x0a,0x05,
	0x28,0xe8,0xeb,0xdf,0xfe,0x10,0x20,0x61,
	0xeb,0xeb,0x18,0x24,0xe5,0xdf,0xe1,0xfe,
	0x1a,0x28,0x20,0xcb,0x79,0x28,0x52,0xcb,
	0x71,0x20,0x06,0xfe,0x11,0x20,0x3c,0xe7,
	0xc9,0xfe,0x11,0x28,0x6c,0xfe,0xdf,0x20,
	0x32,0xdf,0x2b,0x22,0x16,0x40,0x18,0x5e,
	0x21,0x00,0x00,0xe5,0xe7,0xe1,0x79,0xfe,
	0xc0,0x20,0x09,0xdf,0xfe,0x11,0x28,0x51,
	0xfe,0xdf,0x28,0xe5,0xc5,0xe5,0xcd,0xff,
	0x12,0xe3,0xeb,0xcd,0xdd,0x12,0x38,0x19,
	0x0b,0xcd,0x05,0x13,0x09,0xd1,0xc1,0x10,
	0xb3,0xcb,0x79,0x20,0x66,0xe5,0xcb,0x71,
	0x20,0x13,0x42,0x4b,0xdf,0xfe,0x11,0x28,
	0x02,0xcf,0x02,0xe7,0xe1,0x11,0x05,0x00,
	0xcd,0x05,0x13,0x09,0xc9,0xcd,0xff,0x12,
	0xe3,0xcd,0x05,0x13,0xc1,0x09,0x23,0x42,
	0x4b,0xeb,0xcd,0xc2,0x12,0xdf,0xfe,0x11,
	0x28,0x07,0xfe,0x1a,0x20,0xdb,0xcd,0x63,
	0x12,0xe7,0xfe,0x10,0x28,0xf8,0xfd,0xcb,
	0x01,0xb6,0xc9,0xcd,0xa6,0x0d,0xc4,0xf8,
	0x13,0xe7,0xfe,0x11,0x28,0x50,0xd5,0xaf,
	0xf5,0xc5,0x11,0x01,0x00,0xdf,0xe1,0xfe,
	0xdf,0x28,0x17,0xf1,0xcd,0xde,0x12,0xf5,
	0x50,0x59,0xe5,0xdf,0xe1,0xfe,0xdf,0x28,
	0x09,0xfe,0x11,0xc2,0x9a,0x0d,0x62,0x6b,
	0x18,0x13,0xe5,0xe7,0xe1,0xfe,0x11,0x28,
	0x0c,0xf1,0xcd,0xde,0x12,0xf5,0xdf,0x60,
	0x69,0xfe,0x11,0x20,0xe6,0xf1,0xe3,0x19,
	0x2b,0xe3,0xa7,0xed,0x52,0x01,0x00,0x00,
	0x38,0x07,0x23,0xa7,0xfa,0x31,0x12,0x44,
	0x4d,0xd1,0xfd,0xcb,0x01,0xb6,0xcd,0xa6,
	0x0d,0xc8,0xaf,0xc5,0xcd,0xeb,0x19,0xc1,
	0x2a,0x1c,0x40,0x77,0x23,0x73,0x23,0x72,
	0x23,0x71,0x23,0x70,0x23,0x22,0x1c,0x40,
	0xfd,0xcb,0x01,0xb6,0xc9,0xaf,0xd5,0xe5,
	0xf5,0xcd,0x92,0x0d,0xf1,0xcd,0xa6,0x0d,
	0x28,0x12,0xf5,0xcd,0xa7,0x0e,0xd1,0x78,
	0xb1,0x37,0x28,0x05,0xe1,0xe5,0xa7,0xed,
	0x42,0x7a,0xde,0x00,0xe1,0xd1,0xc9,0xeb,
	0x23,0x5e,0x23,0x56,0xc9,0xcd,0xa6,0x0d,
	0xc8,0xc5,0x06,0x10,0x7c,0x4d,0x21,0x00,
	0x00,0x29,0x38,0x06,0xcb,0x11,0x17,0x30,
	0x04,0x19,0xda,0xd3,0x0e,0x10,0xf2,0xc1,
	0xc9,0x2a,0x12,0x40,0xfd,0xcb,0x2d,0x4e,
	0x28,0x44,0x01,0x05,0x00,0x03,0x23,0x7e,
	0xa7,0x28,0xfb,0xcd,0xd2,0x14,0x38,0xf5,
	0xfe,0x0d,0xca,0xc8,0x13,0xf7,0xd5,0x2a,
	0x12,0x40,0x1b,0x79,0xd6,0x06,0x47,0x3e,
	0x40,0x28,0x0e,0x23,0x7e,0xa7,0x28,0xfb,
	0x13,0x12,0x10,0xf7,0xf6,0x80,0x12,0x3e,
	0x80,0x2a,0x12,0x40,0xae,0xe1,0xcd,0xe7,
	0x13,0xe5,0xef,0x02,0x34,0xe1,0x01,0x05,
	0x00,0xa7,0xed,0x42,0x18,0x40,0xfd,0xcb,
	0x01,0x76,0x28,0x06,0x11,0x06,0x00,0x19,
	0x18,0xe7,0x2a,0x12,0x40,0xed,0x4b,0x2e,
	0x40,0xfd,0xcb,0x2d,0x46,0x20,0x30,0x78,
	0xb1,0xc8,0xe5,0xf7,0xd5,0xc5,0x54,0x5d,
	0x23,0x36,0x00,0xed,0xb8,0xe5,0xcd,0xf8,
	0x13,0xe1,0xe3,0xa7,0xed,0x42,0x09,0x30,
	0x02,0x44,0x4d,0xe3,0xeb,0x78,0xb1,0x28,
	0x02,0xed,0xb0,0xc1,0xd1,0xe1,0xeb,0x78,
	0xb1,0xc8,0xd5,0xed,0xb0,0xe1,0xc9,0x2b,
	0x2b,0x2b,0x7e,0xe5,0xc5,0xcd,0xce,0x13,
	0xc1,0xe1,0x03,0x03,0x03,0xc3,0x60,0x0a,
	0x3e,0x60,0x2a,0x12,0x40,0xae,0xf5,0xcd,
	0xf8,0x13,0xeb,0x09,0xe5,0x03,0x03,0x03,
	0xf7,0xeb,0xe1,0x0b,0x0b,0xc5,0xed,0xb8,
	0xeb,0xc1,0x0b,0x70,0x2b,0x71,0xf1,0xf5,
	0xcd,0xc7,0x14,0xf1,0x2b,0x77,0x2a,0x1a,
	0x40,0x22,0x14,0x40,0x2b,0x36,0x80,0xc9,
	0x2a,0x1c,0x40,0x2b,0x46,0x2b,0x4e,0x2b,
	0x56,0x2b,0x5e,0x2b,0x7e,0x22,0x1c,0x40,
	0xc9,0xcd,0x1c,0x11,0xc2,0x9a,0x0d,0xcd,
	0xa6,0x0d,0x20,0x08,0xcb,0xb1,0xcd,0xa7,
	0x11,0xcd,0x1d,0x0d,0x38,0x08,0xc5,0xcd,
	0xf2,0x09,0xcd,0x60,0x0a,0xc1,0xcb,0xf9,
	0x06,0x00,0xc5,0x21,0x01,0x00,0xcb,0x71,
	0x20,0x02,0x2e,0x05,0xeb,0xe7,0x26,0x40,
	0xcd,0xdd,0x12,0xda,0x31,0x12,0xe1,0xc5,
	0x24,0xe5,0x60,0x69,0xcd,0x05,0x13,0xeb,
	0xdf,0xfe,0x1a,0x28,0xe8,0xfe,0x11,0x20,
	0xbb,0xe7,0xc1,0x79,0x68,0x26,0x00,0x23,
	0x23,0x29,0x19,0xda,0xd3,0x0e,0xd5,0xc5,
	0xe5,0x44,0x4d,0x2a,0x14,0x40,0x2b,0xcd,
	0x9e,0x09,0x23,0x77,0xc1,0x0b,0x0b,0x0b,
	0x23,0x71,0x23,0x70,0xf1,0x23,0x77,0x62,
	0x6b,0x1b,0x36,0x00,0xc1,0xed,0xb8,0xc1,
	0x70,0x2b,0x71,0x2b,0x3d,0x20,0xf8,0xc9,
	0x2a,0x1a,0x40,0x2b,0xcd,0x9e,0x09,0x23,
	0x23,0xc1,0xed,0x43,0x14,0x40,0xc1,0xeb,
	0x23,0xc9,0x2a,0x10,0x40,0x36,0x80,0x23,
	0x22,0x14,0x40,0x2a,0x14,0x40,0x22,0x1a,
	0x40,0x22,0x1c,0x40,0xc9,0x2a,0x14,0x40,
	0x36,0x7f,0x23,0x36,0x76,0x23,0xfd,0x36,
	0x22,0x02,0x18,0xea,0x21,0x5d,0x40,0x22,
	0x1f,0x40,0x2a,0x1a,0x40,0x18,0xe2,0xed,
	0x5b,0x14,0x40,0xc3,0x5d,0x0a,0xfe,0x26,
	0x18,0x02,0xfe,0x1c,0x3f,0xd0,0xfe,0x40,
	0xc9,0xcd,0x48,0x15,0xfe,0x1b,0x20,0x15,
	0xef,0xa1,0xc0,0x02,0x34,0xe7,0xcd,0x14,
	0x15,0x38,0x0a,0xef,0xe0,0xa4,0x05,0xc0,
	0x04,0x0f,0x34,0x18,0xf0,0xfe,0x2a,0xc0,
	0xfd,0x36,0x5d,0xff,0xe7,0xfe,0x15,0x28,
	0x07,0xfe,0x16,0x20,0x04,0xfd,0x34,0x5d,
	0xe7,0xcd,0x48,0x15,0xef,0xe0,0x00,0x02,
	0x18,0x38,0x34,0xc9,0xfe,0x1c,0xd8,0xfe,
	0x26,0x3f,0xd8,0xd6,0x1c,0x4f,0x06,0x00,
	0xfd,0x21,0x00,0x40,0xc5,0xef,0xa0,0x34,
	0xc1,0x36,0x91,0x78,0xa7,0x20,0x07,0x77,
	0xb1,0xc8,0x41,0x4e,0x36,0x89,0x35,0xcb,
	0x21,0xcb,0x10,0x30,0xf9,0xcb,0x38,0xcb,
	0x19,0x23,0x70,0x23,0x71,0x2b,0x2b,0xc9,
	0xf5,0xef,0xa0,0x34,0xf1,0xcd,0x14,0x15,
	0xd8,0xef,0x01,0xa4,0x04,0x0f,0x34,0xe7,
	0x18,0xf3,0xef,0x2d,0x32,0xc0,0x02,0x27,
	0xa1,0x03,0x2d,0x32,0x00,0x22,0x2d,0x30,
	0x33,0x40,0x03,0x2d,0x32,0x00,0x0c,0x01,
	0x02,0x01,0x30,0x80,0x48,0x18,0x96,0x80,
	0x2f,0x04,0x02,0x01,0xa4,0xe0,0x00,0x04,
	0x04,0x2f,0x02,0x05,0x01,0x2f,0xda,0x02,
	0x34,0xc9,0xcd,0xf8,0x13,0xa7,0x20,0x05,
	0x47,0x4f,0xf5,0x18,0x31,0x43,0x59,0x4a,
	0xd6,0x91,0x3f,0xcb,0x78,0xf5,0xcb,0xf8,
	0x38,0x24,0x3c,0xed,0x44,0xfe,0x08,0x38,
	0x06,0x59,0x48,0x06,0x00,0xd6,0x08,0xa7,
	0x57,0x7b,0x07,0x28,0x07,0xcb,0x38,0xcb,
	0x19,0x15,0x20,0xf9,0x30,0x08,0x03,0x78,
	0xb1,0x20,0x03,0xf1,0x37,0xf5,0xc5,0xef,
	0x34,0xc1,0xf1,0x79,0xc9,0xcd,0x8a,0x15,
	0xd8,0xf5,0x05,0x04,0x28,0x03,0xf1,0x37,
	0xc9,0xf1,0xc9,0xef,0x2d,0x32,0x00,0x0b,
	0x2d,0x33,0x00,0x0d,0x02,0x34,0x3e,0x1c,
	0xd7,0xc9,0x27,0x34,0x3e,0x16,0xd7,0xef,
	0x34,0x7e,0xcd,0x1d,0x15,0xef,0x30,0x78,
	0x00,0x80,0x03,0x30,0xef,0x1a,0x20,0x9a,
	0x85,0x04,0x24,0xc1,0x30,0x34,0x00,0x03,
	0x18,0x38,0xa2,0x0f,0x24,0x34,0x21,0x6b,
	0x40,0x36,0x90,0x06,0x0a,0x23,0xe5,0xc5,
	0xef,0xa4,0x2e,0x01,0x34,0xcd,0xcd,0x15,
	0xf6,0x90,0xc1,0xe1,0x77,0x10,0xee,0x23,
	0x01,0x08,0x00,0xe5,0x2b,0x7e,0xfe,0x90,
	0x28,0xfa,0xed,0x42,0xe5,0x7e,0xc6,0x6b,
	0xf5,0xf1,0x23,0x7e,0xce,0x00,0x27,0xf5,
	0xe6,0x0f,0x77,0xcb,0xfe,0x28,0xf2,0xf1,
	0xe1,0x06,0x06,0x36,0x80,0x2b,0x10,0xfb,
	0xef,0x02,0xe1,0x34,0xcd,0xcd,0x15,0x28,
	0x02,0xed,0x44,0x5f,0x1c,0x1c,0xe1,0x2b,
	0x1d,0x7e,0xe6,0x0f,0x28,0xf9,0x7b,0xd6,
	0x05,0xfe,0x08,0xf2,0x82,0x16,0xfe,0xf6,
	0xfa,0x82,0x16,0xc6,0x06,0x28,0x48,0xfa,
	0xb2,0x16,0x47,0xcd,0xd0,0x16,0x10,0xfb,
	0x18,0x40,0x43,0xcd,0xd0,0x16,0xcd,0xc2,
	0x16,0x3e,0x2a,0xd7,0x78,0xa7,0xf2,0x98,
	0x16,0xed,0x44,0x47,0x3e,0x16,0x18,0x02,
	0x3e,0x15,0xd7,0x78,0x06,0xff,0x04,0xd6,
	0x0a,0x30,0xfb,0xc6,0x0a,0x4f,0x78,0xa7,
	0x28,0x03,0xcd,0xeb,0x07,0x79,0xcd,0xeb,
	0x07,0xc9,0xed,0x44,0x47,0x3e,0x1b,0xd7,
	0x3e,0x1c,0xd7,0x10,0xfd,0x18,0x09,0x3e,
	0x1c,0xd7,0x35,0x34,0xe8,0x3e,0x1b,0xd7,
	0x35,0x34,0xe8,0xcd,0xd0,0x16,0x18,0xf8,
	0x7e,0xe6,0x0f,0xcd,0xeb,0x07,0x2b,0xc9,
	0x7e,0x36,0x00,0xa7,0xc8,0x23,0xcb,0x7e,
	0xcb,0xfe,0x2b,0xc8,0xc5,0x01,0x05,0x00,
	0x09,0x41,0x4f,0x37,0x2b,0x7e,0x2f,0xce,
	0x00,0x77,0x10,0xf8,0x79,0xc1,0xc9,0xe5,
	0xf5,0x4e,0x23,0x46,0x77,0x23,0x79,0x4e,
	0xc5,0x23,0x4e,0x23,0x46,0xeb,0x57,0x5e,
	0xd5,0x23,0x56,0x23,0x5e,0xd5,0xd9,0xd1,
	0xe1,0xc1,0xd9,0x23,0x56,0x23,0x5e,0xf1,
	0xe1,0xc9,0xa7,0xc8,0xfe,0x21,0x30,0x16,
	0xc5,0x47,0xd9,0xcb,0x2d,0xcb,0x1a,0xcb,
	0x1b,0xd9,0xcb,0x1a,0xcb,0x1b,0x10,0xf2,
	0xc1,0xd0,0xcd,0x41,0x17,0xc0,0xd9,0xaf,
	0x2e,0x00,0x57,0x5d,0xd9,0x11,0x00,0x00,
	0xc9,0x1c,0xc0,0x14,0xc0,0xd9,0x1c,0x20,
	0x01,0x14,0xd9,0xc9,0x1a,0xa7,0xc8,0x13,
	0x1a,0xee,0x80,0x12,0x1b,0xd9,0xe5,0xd9,
	0xd5,0xe5,0xcd,0xd8,0x16,0x47,0xeb,0xcd,
	0xd8,0x16,0x4f,0xb8,0x30,0x03,0x78,0x41,
	0xeb,0xf5,0x90,0xcd,0xf7,0x16,0xcd,0x1a,
	0x17,0xf1,0xe1,0x77,0xe5,0x68,0x61,0x19,
	0xd9,0xeb,0xed,0x4a,0xeb,0x7c,0x8d,0x6f,
	0x1f,0xad,0xd9,0xeb,0xe1,0x1f,0x30,0x08,
	0x3e,0x01,0xcd,0x1a,0x17,0x34,0x28,0x23,
	0xd9,0x7d,0xe6,0x80,0xd9,0x23,0x77,0x2b,
	0x28,0x1f,0x7b,0xed,0x44,0x3f,0x5f,0x7a,
	0x2f,0xce,0x00,0x57,0xd9,0x7b,0x2f,0xce,
	0x00,0x5f,0x7a,0x2f,0xce,0x00,0x30,0x07,
	0x1f,0xd9,0x34,0xca,0x80,0x18,0xd9,0x57,
	0xd9,0xaf,0x18,0x6c,0x37,0x35,0x34,0xc8,
	0x23,0xae,0xcb,0xfe,0x2b,0xc9,0xaf,0xcd,
	0xbc,0x17,0xd8,0xd9,0xe5,0xd9,0xd5,0xeb,
	0xcd,0xbc,0x17,0xeb,0x38,0x5a,0xe5,0xcd,
	0xf7,0x16,0x78,0xa7,0xed,0x62,0xd9,0xe5,
	0xed,0x62,0xd9,0x06,0x21,0x18,0x11,0x30,
	0x05,0x19,0xd9,0xed,0x5a,0xd9,0xd9,0xcb,
	0x1c,0xcb,0x1d,0xd9,0xcb,0x1c,0xcb,0x1d,
	0xd9,0xcb,0x18,0xcb,0x19,0xd9,0xcb,0x19,
	0x1f,0x10,0xe4,0xeb,0xd9,0xeb,0xd9,0xc1,
	0xe1,0x78,0x81,0x20,0x01,0xa7,0x3d,0x3f,
	0x17,0x3f,0x1f,0xf2,0x19,0x18,0x30,0x68,
	0xa7,0x3c,0x20,0x08,0x38,0x06,0xd9,0xcb,
	0x7a,0xd9,0x20,0x5c,0x77,0xd9,0x78,0xd9,
	0x30,0x15,0x7e,0xa7,0x3e,0x80,0x28,0x01,
	0xaf,0xd9,0xa2,0xcd,0x38,0x17,0x07,0x77,
	0x38,0x2e,0x23,0x77,0x2b,0x18,0x29,0x06,
	0x20,0xd9,0xcb,0x7a,0xd9,0x20,0x12,0x07,
	0xcb,0x13,0xcb,0x12,0xd9,0xcb,0x13,0xcb,
	0x12,0xd9,0x35,0x28,0xd7,0x10,0xea,0x18,
	0xd7,0x17,0x30,0x0c,0xcd,0x41,0x17,0x20,
	0x07,0xd9,0x16,0x80,0xd9,0x34,0x28,0x18,
	0xe5,0x23,0xd9,0xd5,0xd9,0xc1,0x78,0x17,
	0xcb,0x16,0x1f,0x77,0x23,0x71,0x23,0x72,
	0x23,0x73,0xe1,0xd1,0xd9,0xe1,0xd9,0xc9,
	0xcf,0x05,0xeb,0xaf,0xcd,0xbc,0x17,0x38,
	0xf7,0xeb,0xcd,0xbc,0x17,0xd8,0xd9,0xe5,
	0xd9,0xd5,0xe5,0xcd,0xf7,0x16,0xd9,0xe5,
	0x60,0x69,0xd9,0x61,0x68,0xaf,0x06,0xdf,
	0x18,0x10,0x17,0xcb,0x11,0xd9,0xcb,0x11,
	0xcb,0x10,0xd9,0x29,0xd9,0xed,0x6a,0xd9,
	0x38,0x10,0xed,0x52,0xd9,0xed,0x52,0xd9,
	0x30,0x0f,0x19,0xd9,0xed,0x5a,0xd9,0xa7,
	0x18,0x08,0xa7,0xed,0x52,0xd9,0xed,0x52,
	0xd9,0x37,0x04,0xfa,0xa2,0x18,0xf5,0x28,
	0xe1,0x5f,0x51,0xd9,0x59,0x50,0xf1,0xcb,
	0x18,0xf1,0xcb,0x18,0xd9,0xc1,0xe1,0x78,
	0x91,0xc3,0x10,0x18,0x7e,0xfe,0x81,0x30,
	0x06,0x36,0x00,0x3e,0x20,0x18,0x05,0xd6,
	0xa0,0xf0,0xed,0x44,0xd5,0xeb,0x2b,0x47,
	0xcb,0x38,0xcb,0x38,0xcb,0x38,0x28,0x05,
	0x36,0x00,0x2b,0x10,0xfb,0xe6,0x07,0x28,
	0x09,0x47,0x3e,0xff,0xcb,0x27,0x10,0xfc,
	0xa6,0x77,0xeb,0xd1,0xc9,0x00,0xb0,0x00,
	0x31,0x00,0x30,0x00,0xf1,0x49,0x0f,0xda,
	0xa2,0x34,0x20,0x2f,0x1c,0x72,0x1a,0xe3,
	0x19,0x4c,0x17,0xc6,0x17,0x82,0x18,0xe2,
	0x1d,0xed,0x1a,0xf3,0x1a,0x03,0x1b,0x03,
	0x1b,0x03,0x1b,0x03,0x1b,0x03,0x1b,0x03,
	0x1b,0x55,0x17,0xf8,0x1a,0x03,0x1b,0x03,
	0x1b,0x03,0x1b,0x03,0x1b,0x03,0x1b,0x03,
	0x1b,0x62,0x1b,0xa0,0x1a,0x06,0x1c,0xa4,
	0x1b,0x11,0x1c,0x49,0x1d,0x3e,0x1d,0x6e,
	0x1d,0xc4,0x1d,0xd4,0x1d,0x76,0x1d,0xa9,
	0x1c,0x5b,0x1c,0x46,0x1c,0xdb,0x1d,0xaf,
	0x1a,0xaa,0x1a,0xbe,0x1a,0xc5,0x1a,0xd5,
	0x1b,0x8f,0x1b,0xd5,0x1a,0xf6,0x19,0x37,
	0x1c,0x23,0x1c,0xfc,0x19,0x17,0x1c,0xdb,
	0x1a,0xce,0x1a,0x2b,0x00,0x18,0x1d,0xe4,
	0x18,0xe4,0x19,0x5a,0x15,0x7f,0x1a,0x51,
	0x1a,0x63,0x1a,0x45,0x1a,0xcd,0x85,0x1b,
	0x78,0x32,0x1e,0x40,0xd9,0xe3,0xd9,0xed,
	0x53,0x1c,0x40,0xd9,0x7e,0x23,0xe5,0xa7,
	0xf2,0xc2,0x19,0x57,0xe6,0x60,0x0f,0x0f,
	0x0f,0x0f,0xc6,0x72,0x6f,0x7a,0xe6,0x1f,
	0x18,0x0e,0xfe,0x18,0x30,0x08,0xd9,0x01,
	0xfb,0xff,0x54,0x5d,0x09,0xd9,0x07,0x6f,
	0x11,0x23,0x19,0x26,0x00,0x19,0x5e,0x23,
	0x56,0x21,0xa7,0x19,0xe3,0xd5,0xd9,0xed,
	0x4b,0x1d,0x40,0xc9,0xf1,0x3a,0x1e,0x40,
	0xd9,0x18,0xc3,0xd5,0xe5,0x01,0x05,0x00,
	0xcd,0xc5,0x0e,0xe1,0xd1,0xc9,0xcd,0xeb,
	0x19,0xed,0xb0,0xc9,0x62,0x6b,0xcd,0xeb,
	0x19,0xd9,0xe5,0xd9,0xe3,0xc5,0x7e,0xe6,
	0xc0,0x07,0x07,0x4f,0x0c,0x7e,0xe6,0x3f,
	0x20,0x02,0x23,0x7e,0xc6,0x50,0x12,0x3e,
	0x05,0x91,0x23,0x13,0x06,0x00,0xed,0xb0,
	0xc1,0xe3,0xd9,0xe1,0xd9,0x47,0xaf,0x05,
	0xc8,0x12,0x13,0x18,0xfa,0xa7,0xc8,0xf5,
	0xd5,0x11,0x00,0x00,0xcd,0xfe,0x19,0xd1,
	0xf1,0x3d,0x18,0xf2,0x4f,0x07,0x07,0x81,
	0x4f,0x06,0x00,0x09,0xc9,0xd5,0x2a,0x1f,
	0x40,0xcd,0x3c,0x1a,0xcd,0xf6,0x19,0xe1,
	0xc9,0x62,0x6b,0xd9,0xe5,0x21,0x15,0x19,
	0xd9,0xcd,0x2d,0x1a,0xcd,0xfe,0x19,0xd9,
	0xe1,0xd9,0xc9,0xe5,0xeb,0x2a,0x1f,0x40,
	0xcd,0x3c,0x1a,0xeb,0xcd,0xf6,0x19,0xeb,
	0xe1,0xc9,0x06,0x05,0x1a,0x4e,0xeb,0x12,
	0x71,0x23,0x13,0x10,0xf7,0xeb,0xc9,0x47,
	0xcd,0xa0,0x19,0x2d,0x0f,0xc0,0x02,0xa0,
	0xc2,0x2d,0xe0,0x04,0xe2,0xc1,0x03,0x34,
	0xcd,0xfc,0x19,0xcd,0xa4,0x19,0x0f,0x01,
	0xc2,0x02,0x31,0xee,0xe1,0x03,0x34,0xc9,
	0x7e,0xa7,0xc8,0x23,0x7e,0xee,0x80,0x77,
	0x2b,0xc9,0x23,0xcb,0xbe,0x2b,0xc9,0x23,
	0x7e,0x2b,0x35,0x34,0x37,0xc4,0xe0,0x1a,
	0x23,0x07,0xcb,0x1e,0x2b,0xc9,0xcd,0xa7,
	0x0e,0x0a,0xc3,0x1d,0x15,0xcd,0xa7,0x0e,
	0x21,0x20,0x15,0xe5,0xc5,0xc9,0x7e,0xa7,
	0xc8,0x3e,0xff,0x18,0x07,0x7e,0xed,0x44,
	0x3f,0x18,0x05,0xaf,0x23,0xae,0x2b,0x07,
	0xe5,0x06,0x05,0x36,0x00,0x23,0x10,0xfb,
	0xe1,0xd0,0x36,0x81,0xc9,0x1a,0xa7,0xc8,
	0x37,0x18,0xed,0x1a,0xa7,0xc0,0x18,0xe8,
	0x1a,0xa7,0xc0,0xd5,0x1b,0xaf,0x12,0x1b,
	0x12,0xd1,0xc9,0x78,0xd6,0x08,0xcb,0x57,
	0x20,0x01,0x3d,0x0f,0x30,0x08,0xf5,0xe5,
	0xcd,0x72,0x1a,0xd1,0xeb,0xf1,0xcb,0x57,
	0x20,0x07,0x0f,0xf5,0xcd,0x4c,0x17,0x18,
	0x33,0x0f,0xf5,0xcd,0xf8,0x13,0xd5,0xc5,
	0xcd,0xf8,0x13,0xe1,0x7c,0xb5,0xe3,0x78,
	0x20,0x0b,0xb1,0xc1,0x28,0x04,0xf1,0x3f,
	0x18,0x16,0xf1,0x18,0x13,0xb1,0x28,0x0d,
	0x1a,0x96,0x38,0x09,0x20,0xed,0x0b,0x13,
	0x23,0xe3,0x2b,0x18,0xdf,0xc1,0xf1,0xa7,
	0xf5,0xef,0xa0,0x34,0xf1,0xf5,0xdc,0xd5,
	0x1a,0xcd,0xce,0x1a,0xf1,0x0f,0xd4,0xd5,
	0x1a,0xc9,0xcd,0xf8,0x13,0xd5,0xc5,0xcd,
	0xf8,0x13,0xe1,0xe5,0xd5,0xc5,0x09,0x44,
	0x4d,0xf7,0xcd,0xc3,0x12,0xc1,0xe1,0x78,
	0xb1,0x28,0x02,0xed,0xb0,0xc1,0xe1,0x78,
	0xb1,0x28,0x02,0xed,0xb0,0x2a,0x1c,0x40,
	0x11,0xfb,0xff,0xe5,0x19,0xd1,0xc9,0xcd,
	0xcd,0x15,0x38,0x0e,0x20,0x0c,0xf5,0x01,
	0x01,0x00,0xf7,0xf1,0x12,0xcd,0xc3,0x12,
	0xeb,0xc9,0xcf,0x0a,0x2a,0x16,0x40,0xe5,
	0xcd,0xf8,0x13,0xd5,0x03,0xf7,0xe1,0xed,
	0x53,0x16,0x40,0xd5,0xed,0xb0,0xeb,0x2b,
	0x36,0x76,0xfd,0xcb,0x01,0xbe,0xcd,0x92,
	0x0d,0xcd,0x22,0x0d,0xe1,0x22,0x16,0x40,
	0xfd,0xcb,0x01,0xfe,0xcd,0x55,0x0f,0xe1,
	0x22,0x16,0x40,0x18,0xb0,0x01,0x01,0x00,
	0xf7,0x36,0x76,0x2a,0x39,0x40,0xe5,0x2e,
	0xff,0x22,0x39,0x40,0x2a,0x0e,0x40,0xe5,
	0xed,0x53,0x0e,0x40,0xd5,0xcd,0xdb,0x15,
	0xd1,0x2a,0x0e,0x40,0xa7,0xed,0x52,0x44,
	0x4d,0xe1,0x22,0x0e,0x40,0xe1,0x22,0x39,
	0x40,0xcd,0xc3,0x12,0xeb,0xc9,0xcd,0xf8,
	0x13,0x78,0xb1,0x28,0x01,0x1a,0xc3,0x1d,
	0x15,0xcd,0xf8,0x13,0xc3,0x20,0x15,0xd9,
	0xe5,0x21,0x1e,0x40,0x35,0xe1,0x20,0x04,
	0x23,0xd9,0xc9,0xd9,0x5e,0xaf,0xcb,0x7b,
	0x28,0x01,0x2f,0x57,0x19,0xd9,0xc9,0x1a,
	0xa7,0x20,0xf0,0xd9,0x23,0xd9,0xc9,0xef,
	0xc0,0x02,0x2d,0xe0,0x05,0x24,0xe0,0x01,
	0xc0,0x04,0x03,0xe0,0x34,0xc9,0xef,0x2d,
	0x32,0x00,0x04,0x36,0x34,0xc9,0x2d,0x36,
	0xc0,0x03,0xe0,0x01,0x2c,0x00,0x03,0xa1,
	0x03,0x34,0xc9,0xef,0x30,0xf1,0x38,0xaa,
	0x3b,0x29,0x04,0x2d,0x24,0xc3,0x03,0x2d,
	0x0f,0xa1,0x03,0x88,0x13,0x36,0x58,0x65,
	0x66,0x9d,0x78,0x65,0x40,0xa2,0x60,0x32,
	0xc9,0xe7,0x21,0xf7,0xaf,0x24,0xeb,0x2f,
	0xb0,0xb0,0x14,0xee,0x7e,0xbb,0x94,0x58,
	0xf1,0x3a,0x7e,0xf8,0xcf,0xe3,0x34,0xcd,
	0xcd,0x15,0x20,0x07,0x38,0x03,0x86,0x30,
	0x09,0xcf,0x05,0x38,0x07,0x96,0x30,0x04,
	0xed,0x44,0x77,0xc9,0xef,0x02,0xa0,0x34,
	0xc9,0xef,0x2d,0x33,0x00,0x04,0x34,0xcf,
	0x09,0xa0,0x02,0x34,0x7e,0x36,0x80,0xcd,
	0x1d,0x15,0xef,0x30,0x38,0x00,0x03,0x01,
	0x2d,0x30,0xf0,0x4c,0xcc,0xcc,0xcd,0x03,
	0x33,0x00,0x08,0x01,0xa1,0x03,0x01,0x34,
	0x34,0xef,0x01,0x30,0xf0,0x31,0x72,0x17,
	0xf8,0x04,0x01,0xa2,0x03,0xa2,0x03,0x2d,
	0x30,0x32,0x20,0x04,0xa2,0x03,0x8c,0x11,
	0xac,0x14,0x09,0x56,0xda,0xa5,0x59,0x30,
	0xc5,0x5c,0x90,0xaa,0x9e,0x70,0x6f,0x61,
	0xa1,0xcb,0xda,0x96,0xa4,0x31,0x9f,0xb4,
	0xe7,0xa0,0xfe,0x5c,0xfc,0xea,0x1b,0x43,
	0xca,0x36,0xed,0xa7,0x9c,0x7e,0x5e,0xf0,
	0x6e,0x23,0x80,0x93,0x04,0x0f,0x34,0xc9,
	0xef,0x30,0xee,0x22,0xf9,0x83,0x6e,0x04,
	0x2d,0xa2,0x0f,0x24,0x03,0x2d,0x0f,0x2d,
	0x0f,0x2d,0x27,0xa1,0x03,0x2d,0x33,0xc0,
	0x00,0x04,0x02,0x34,0xc9,0xa1,0x03,0x01,
	0x32,0x00,0x02,0x18,0x34,0xc9,0xef,0x35,
	0x27,0xa1,0x03,0xe0,0x00,0x06,0x18,0x2f,
	0x03,0xef,0x35,0x2d,0x2d,0x04,0x2d,0x0f,
	0xa1,0x03,0x86,0x14,0xe6,0x5c,0x1f,0x0b,
	0xa3,0x8f,0x38,0xee,0xe9,0x15,0x63,0xbb,
	0x23,0xee,0x92,0x0d,0xcd,0xed,0xf1,0x23,
	0x5d,0x1b,0xea,0x04,0x34,0xc9,0xef,0x2d,
	0x1c,0x01,0x1d,0x05,0x34,0xc9,0x7e,0xfe,
	0x81,0x38,0x0e,0xef,0xa1,0x18,0x01,0x05,
	0x2d,0x32,0xa3,0x01,0x00,0x06,0x18,0x2f,
	0x03,0xef,0xa0,0x01,0x2d,0x2d,0x04,0x2d,
	0x0f,0xa1,0x03,0x8c,0x10,0xb2,0x13,0x0e,
	0x55,0xe4,0x8d,0x58,0x39,0xbc,0x5b,0x98,
	0xfd,0x9e,0x00,0x36,0x75,0xa0,0xdb,0xe8,
	0xb4,0x63,0x42,0xc4,0xe6,0xb5,0x09,0x36,
	0xbe,0xe9,0x36,0x73,0x1b,0x5d,0xec,0xd8,
	0xde,0x63,0xbe,0xf0,0x61,0xa1,0xb3,0x0c,
	0x04,0x0f,0x34,0xc9,0xef,0x2d,0x2d,0x04,
	0xa1,0x03,0x18,0x25,0xa1,0x0f,0x05,0x21,
	0x2d,0x0f,0x34,0xc9,0xef,0x1f,0xa3,0x03,
	0x18,0x34,0xc9,0xef,0x2d,0x2c,0x00,0x1e,
	0xa2,0x34,0xef,0x01,0x2d,0x2c,0x00,0x07,
	0x22,0x04,0x34,0xc3,0x5b,0x1c,0x02,0x2d,
	0x2c,0x00,0x09,0xa0,0x01,0x33,0x00,0x06,
	0xa1,0x01,0x05,0x02,0xa1,0x34,0xc9,0xff,
	0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
	0xf0,0xf0,0xf0,0xf0,0x00,0x00,0x00,0x00,
	0x0f,0x0f,0x0f,0x0f,0x00,0x00,0x00,0x00,
	0xff,0xff,0xff,0xff,0x00,0x00,0x00,0x00,
	0x00,0x00,0x00,0x00,0xf0,0xf0,0xf0,0xf0,
	0xf0,0xf0,0xf0,0xf0,0xf0,0xf0,0xf0,0xf0,
	0x0f,0x0f,0x0f,0x0f,0xf0,0xf0,0xf0,0xf0,
	0xff,0xff,0xff,0xff,0xf0,0xf0,0xf0,0xf0,
	0xaa,0x55,0xaa,0x55,0xaa,0x55,0xaa,0x55,
	0x00,0x00,0x00,0x00,0xaa,0x55,0xaa,0x55,
	0xaa,0x55,0xaa,0x55,0x00,0x00,0x00,0x00,
	0x00,0x24,0x24,0x00,0x00,0x00,0x00,0x00,
	0x00,0x1c,0x22,0x78,0x20,0x20,0x7e,0x00,
	0x00,0x08,0x3e,0x28,0x3e,0x0a,0x3e,0x08,
	0x00,0x00,0x00,0x10,0x00,0x00,0x10,0x00,
	0x00,0x3c,0x42,0x04,0x08,0x00,0x08,0x00,
	0x00,0x04,0x08,0x08,0x08,0x08,0x04,0x00,
	0x00,0x20,0x10,0x10,0x10,0x10,0x20,0x00,
	0x00,0x00,0x10,0x08,0x04,0x08,0x10,0x00,
	0x00,0x00,0x04,0x08,0x10,0x08,0x04,0x00,
	0x00,0x00,0x00,0x3e,0x00,0x3e,0x00,0x00,
	0x00,0x00,0x08,0x08,0x3e,0x08,0x08,0x00,
	0x00,0x00,0x00,0x00,0x3e,0x00,0x00,0x00,
	0x00,0x00,0x14,0x08,0x3e,0x08,0x14,0x00,
	0x00,0x00,0x02,0x04,0x08,0x10,0x20,0x00,
	0x00,0x00,0x10,0x00,0x00,0x10,0x10,0x20,
	0x00,0x00,0x00,0x00,0x00,0x08,0x08,0x10,
	0x00,0x00,0x00,0x00,0x00,0x18,0x18,0x00,
	0x00,0x3c,0x46,0x4a,0x52,0x62,0x3c,0x00,
	0x00,0x18,0x28,0x08,0x08,0x08,0x3e,0x00,
	0x00,0x3c,0x42,0x02,0x3c,0x40,0x7e,0x00,
	0x00,0x3c,0x42,0x0c,0x02,0x42,0x3c,0x00,
	0x00,0x08,0x18,0x28,0x48,0x7e,0x08,0x00,
	0x00,0x7e,0x40,0x7c,0x02,0x42,0x3c,0x00,
	0x00,0x3c,0x40,0x7c,0x42,0x42,0x3c,0x00,
	0x00,0x7e,0x02,0x04,0x08,0x10,0x10,0x00,
	0x00,0x3c,0x42,0x3c,0x42,0x42,0x3c,0x00,
	0x00,0x3c,0x42,0x42,0x3e,0x02,0x3c,0x00,
	0x00,0x3c,0x42,0x42,0x7e,0x42,0x42,0x00,
	0x00,0x7c,0x42,0x7c,0x42,0x42,0x7c,0x00,
	0x00,0x3c,0x42,0x40,0x40,0x42,0x3c,0x00,
	0x00,0x78,0x44,0x42,0x42,0x44,0x78,0x00,
	0x00,0x7e,0x40,0x7c,0x40,0x40,0x7e,0x00,
	0x00,0x7e,0x40,0x7c,0x40,0x40,0x40,0x00,
	0x00,0x3c,0x42,0x40,0x4e,0x42,0x3c,0x00,
	0x00,0x42,0x42,0x7e,0x42,0x42,0x42,0x00,
	0x00,0x3e,0x08,0x08,0x08,0x08,0x3e,0x00,
	0x00,0x02,0x02,0x02,0x42,0x42,0x3c,0x00,
	0x00,0x44,0x48,0x70,0x48,0x44,0x42,0x00,
	0x00,0x40,0x40,0x40,0x40,0x40,0x7e,0x00,
	0x00,0x42,0x66,0x5a,0x42,0x42,0x42,0x00,
	0x00,0x42,0x62,0x52,0x4a,0x46,0x42,0x00,
	0x00,0x3c,0x42,0x42,0x42,0x42,0x3c,0x00,
	0x00,0x7c,0x42,0x42,0x7c,0x40,0x40,0x00,
	0x00,0x3c,0x42,0x42,0x52,0x4a,0x3c,0x00,
	0x00,0x7c,0x42,0x42,0x7c,0x44,0x42,0x00,
	0x00,0x3c,0x40,0x3c,0x02,0x42,0x3c,0x00,
	0x00,0xfe,0x10,0x10,0x10,0x10,0x10,0x00,
	0x00,0x42,0x42,0x42,0x42,0x42,0x3c,0x00,
	0x00,0x42,0x42,0x42,0x42,0x24,0x18,0x00,
	0x00,0x42,0x42,0x42,0x42,0x5a,0x24,0x00,
	0x00,0x42,0x24,0x18,0x18,0x24,0x42,0x00,
	0x00,0x82,0x44,0x28,0x10,0x10,0x10,0x00,
	0x00,0x7e,0x04,0x08,0x10,0x20,0x7e,0x00
};