File: kuten212.c

package info (click to toggle)
tcs 1-10
  • links: PTS
  • area: main
  • in suites: etch, etch-m68k, sarge
  • size: 784 kB
  • ctags: 191
  • sloc: ansic: 8,493; makefile: 94; sh: 28
file content (975 lines) | stat: -rw-r--r-- 55,407 bytes parent folder | download | duplicates (7)
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
#include	"kuten212.h"

long tabkuten212[KUTEN212MAX] = {
    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,
    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,
    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,
    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,
    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,
    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,
    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,
    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,
    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,
    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,
    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,
    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,
    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,
    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,
    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,
    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,
    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,
    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,
    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,
    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,
    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,
    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,
    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,
    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,
    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,
    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,
    -1,    -1,    -1,    -1,    -1,    -1,    -1,0x02d8,
0x02c7,0x00b8,0x02d9,0x02dd,0x00af,0x02db,0x02da,0x007e,
0x0384,0x0385,    -1,    -1,    -1,    -1,    -1,    -1,
    -1,    -1,0x00a1,0x00a6,0x00bf,    -1,    -1,    -1,
    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,
    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,
    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,
    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,
    -1,    -1,    -1,0x00ba,0x00aa,0x00a9,0x00ae,0x2122,
0x00a4,0x2116,    -1,    -1,    -1,    -1,    -1,    -1,
    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,
    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,
    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,
    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,
    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,
    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,
    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,
    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,
    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,
    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,
    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,
    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,
    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,
    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,
    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,
    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,
    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,
    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,
    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,
    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,
    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,
    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,
    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,
    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,
    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,
    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,
    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,
    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,
    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,
    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,
    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,
    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,
    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,
    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,
    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,
    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,
    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,
    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,
    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,
    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,
    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,
    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,
    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,
    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,
    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,
    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,
    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,
    -1,0x0386,0x0388,0x0389,0x038a,0x03aa,    -1,0x038c,
    -1,0x038e,0x03ab,    -1,0x038f,    -1,    -1,    -1,
    -1,0x03ac,0x03ad,0x03ae,0x03af,0x03ca,0x0390,0x03cc,
0x03c2,0x03cd,0x03cb,0x03b0,0x03ce,    -1,    -1,    -1,
    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,
    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,
    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,
    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,
    -1,    -1,    -1,    -1,    -1,    -1,0x0402,0x0403,
0x0404,0x0405,0x0406,0x0407,0x0408,0x0409,0x040a,0x040b,
0x040c,0x040e,0x040f,    -1,    -1,    -1,    -1,    -1,
    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,
    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,
    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,
    -1,    -1,    -1,    -1,    -1,    -1,0x0452,0x0453,
0x0454,0x0455,0x0456,0x0457,0x0458,0x0459,0x045a,0x045b,
0x045c,0x045e,0x045f,    -1,    -1,    -1,    -1,    -1,
    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,
    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,
    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,
    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,
    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,
    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,
    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,
    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,
    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,
    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,
    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,
    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,
    -1,    -1,    -1,    -1,    -1,0x00c6,0x0110,    -1,
0x0126,    -1,0x0132,    -1,0x0141,0x013f,    -1,0x014a,
0x00d8,0x0152,    -1,0x0166,0x00de,    -1,    -1,    -1,
    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,
    -1,    -1,    -1,    -1,    -1,0x00e6,0x0111,0x00f0,
0x0127,0x0131,0x0133,0x0138,0x0142,0x0140,0x0149,0x014b,
0x00f8,0x0153,0x00df,0x0167,0x00fe,    -1,    -1,    -1,
    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,
    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,
    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,
    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,
    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,
    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,
    -1,0x00c1,0x00c0,0x00c4,0x00c2,0x0102,0x01cd,0x0100,
0x0104,0x00c5,0x00c3,0x0106,0x0108,0x010c,0x00c7,0x010a,
0x010e,0x00c9,0x00c8,0x00cb,0x00ca,0x011a,0x0116,0x0112,
0x0118,    -1,0x011c,0x011e,0x0122,0x0120,0x0124,0x00cd,
0x00cc,0x00cf,0x00ce,0x01cf,0x0130,0x012a,0x012e,0x0128,
0x0134,0x0136,0x0139,0x013d,0x013b,0x0143,0x0147,0x0145,
0x00d1,0x00d3,0x00d2,0x00d6,0x00d4,0x01d1,0x0150,0x014c,
0x00d5,0x0154,0x0158,0x0156,0x015a,0x015c,0x0160,0x015e,
0x0164,0x0162,0x00da,0x00d9,0x00dc,0x00db,0x016c,0x01d3,
0x0170,0x016a,0x0172,0x016e,0x0168,0x01d7,0x01db,0x01d9,
0x01d5,0x0174,0x00dd,0x0178,0x0176,0x0179,0x017d,0x017b,
    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,
    -1,    -1,    -1,    -1,    -1,0x00e1,0x00e0,0x00e4,
0x00e2,0x0103,0x01ce,0x0101,0x0105,0x00e5,0x00e3,0x0107,
0x0109,0x010d,0x00e7,0x010b,0x010f,0x00e9,0x00e8,0x00eb,
0x00ea,0x011b,0x0117,0x0113,0x0119,0x01f5,0x011d,0x011f,
    -1,0x0121,0x0125,0x00ed,0x00ec,0x00ef,0x00ee,0x01d0,
    -1,0x012b,0x012f,0x0129,0x0135,0x0137,0x013a,0x013e,
0x013c,0x0144,0x0148,0x0146,0x00f1,0x00f3,0x00f2,0x00f6,
0x00f4,0x01d2,0x0151,0x014d,0x00f5,0x0155,0x0159,0x0157,
0x015b,0x015d,0x0161,0x015f,0x0165,0x0163,0x00fa,0x00f9,
0x00fc,0x00fb,0x016d,0x01d4,0x0171,0x016b,0x0173,0x016f,
0x0169,0x01d8,0x01dc,0x01da,0x01d6,0x0175,0x00fd,0x00ff,
0x0177,0x017a,0x017e,0x017c,    -1,    -1,    -1,    -1,
    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,
    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,
    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,
    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,
    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,
    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,
    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,
    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,
    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,
    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,
    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,
    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,
    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,
    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,
    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,
    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,
    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,
    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,
    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,
    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,
    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,
    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,
    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,
    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,
    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,
    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,
    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,
    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,
    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,
    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,
    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,
    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,
    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,
    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,
    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,
    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,
    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,
    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,
    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,
    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,
    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,
    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,
    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,
    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,
    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,
    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,
    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,
    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,
    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,
    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,
    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,
    -1,0x4e02,0x4e04,0x4e05,0x4e0c,0x4e12,0x4e1f,0x4e23,
0x4e24,0x4e28,0x4e2b,0x4e2e,0x4e2f,0x4e30,0x4e35,0x4e40,
0x4e41,0x4e44,0x4e47,0x4e51,0x4e5a,0x4e5c,0x4e63,0x4e68,
0x4e69,0x4e74,0x4e75,0x4e79,0x4e7f,0x4e8d,0x4e96,0x4e97,
0x4e9d,0x4eaf,0x4eb9,0x4ec3,0x4ed0,0x4eda,0x4edb,0x4ee0,
0x4ee1,0x4ee2,0x4ee8,0x4eef,0x4ef1,0x4ef3,0x4ef5,0x4efd,
0x4efe,0x4eff,0x4f00,0x4f02,0x4f03,0x4f08,0x4f0b,0x4f0c,
0x4f12,0x4f15,0x4f16,0x4f17,0x4f19,0x4f2e,0x4f31,0x4f60,
0x4f33,0x4f35,0x4f37,0x4f39,0x4f3b,0x4f3e,0x4f40,0x4f42,
0x4f48,0x4f49,0x4f4b,0x4f4c,0x4f52,0x4f54,0x4f56,0x4f58,
0x4f5f,0x4f63,0x4f6a,0x4f6c,0x4f6e,0x4f71,0x4f77,0x4f78,
0x4f79,0x4f7a,0x4f7d,0x4f7e,0x4f81,0x4f82,0x4f84,    -1,
    -1,    -1,    -1,    -1,    -1,0x4f85,0x4f89,0x4f8a,
0x4f8c,0x4f8e,0x4f90,0x4f92,0x4f93,0x4f94,0x4f97,0x4f99,
0x4f9a,0x4f9e,0x4f9f,0x4fb2,0x4fb7,0x4fb9,0x4fbb,0x4fbc,
0x4fbd,0x4fbe,0x4fc0,0x4fc1,0x4fc5,0x4fc6,0x4fc8,0x4fc9,
0x4fcb,0x4fcc,0x4fcd,0x4fcf,0x4fd2,0x4fdc,0x4fe0,0x4fe2,
0x4ff0,0x4ff2,0x4ffc,0x4ffd,0x4fff,0x5000,0x5001,0x5004,
0x5007,0x500a,0x500c,0x500e,0x5010,0x5013,0x5017,0x5018,
0x501b,0x501c,0x501d,0x501e,0x5022,0x5027,0x502e,0x5030,
0x5032,0x5033,0x5035,0x5040,0x5041,0x5042,0x5045,0x5046,
0x504a,0x504c,0x504e,0x5051,0x5052,0x5053,0x5057,0x5059,
0x505f,0x5060,0x5062,0x5063,0x5066,0x5067,0x506a,0x506d,
0x5070,0x5071,0x503b,0x5081,0x5083,0x5084,0x5086,0x508a,
0x508e,0x508f,0x5090,    -1,    -1,    -1,    -1,    -1,
    -1,0x5092,0x5093,0x5094,0x5096,0x509b,0x509c,0x509e,
0x509f,0x50a0,0x50a1,0x50a2,0x50aa,0x50af,0x50b0,0x50b9,
0x50ba,0x50bd,0x50c0,0x50c3,0x50c4,0x50c7,0x50cc,0x50ce,
0x50d0,0x50d3,0x50d4,0x50d8,0x50dc,0x50dd,0x50df,0x50e2,
0x50e4,0x50e6,0x50e8,0x50e9,0x50ef,0x50f1,0x50f6,0x50fa,
0x50fe,0x5103,0x5106,0x5107,0x5108,0x510b,0x510c,0x510d,
0x510e,0x50f2,0x5110,0x5117,0x5119,0x511b,0x511c,0x511d,
0x511e,0x5123,0x5127,0x5128,0x512c,0x512d,0x512f,0x5131,
0x5133,0x5134,0x5135,0x5138,0x5139,0x5142,0x514a,0x514f,
0x5153,0x5155,0x5157,0x5158,0x515f,0x5164,0x5166,0x517e,
0x5183,0x5184,0x518b,0x518e,0x5198,0x519d,0x51a1,0x51a3,
0x51ad,0x51b8,0x51ba,0x51bc,0x51be,0x51bf,0x51c2,    -1,
    -1,    -1,    -1,    -1,    -1,0x51c8,0x51cf,0x51d1,
0x51d2,0x51d3,0x51d5,0x51d8,0x51de,0x51e2,0x51e5,0x51ee,
0x51f2,0x51f3,0x51f4,0x51f7,0x5201,0x5202,0x5205,0x5212,
0x5213,0x5215,0x5216,0x5218,0x5222,0x5228,0x5231,0x5232,
0x5235,0x523c,0x5245,0x5249,0x5255,0x5257,0x5258,0x525a,
0x525c,0x525f,0x5260,0x5261,0x5266,0x526e,0x5277,0x5278,
0x5279,0x5280,0x5282,0x5285,0x528a,0x528c,0x5293,0x5295,
0x5296,0x5297,0x5298,0x529a,0x529c,0x52a4,0x52a5,0x52a6,
0x52a7,0x52af,0x52b0,0x52b6,0x52b7,0x52b8,0x52ba,0x52bb,
0x52bd,0x52c0,0x52c4,0x52c6,0x52c8,0x52cc,0x52cf,0x52d1,
0x52d4,0x52d6,0x52db,0x52dc,0x52e1,0x52e5,0x52e8,0x52e9,
0x52ea,0x52ec,0x52f0,0x52f1,0x52f4,0x52f6,0x52f7,0x5300,
0x5303,0x530a,0x530b,    -1,    -1,    -1,    -1,    -1,
    -1,0x530c,0x5311,0x5313,0x5318,0x531b,0x531c,0x531e,
0x531f,0x5325,0x5327,0x5328,0x5329,0x532b,0x532c,0x532d,
0x5330,0x5332,0x5335,0x533c,0x533d,0x533e,0x5342,0x534c,
0x534b,0x5359,0x535b,0x5361,0x5363,0x5365,0x536c,0x536d,
0x5372,0x5379,0x537e,0x5383,0x5387,0x5388,0x538e,0x5393,
0x5394,0x5399,0x539d,0x53a1,0x53a4,0x53aa,0x53ab,0x53af,
0x53b2,0x53b4,0x53b5,0x53b7,0x53b8,0x53ba,0x53bd,0x53c0,
0x53c5,0x53cf,0x53d2,0x53d3,0x53d5,0x53da,0x53dd,0x53de,
0x53e0,0x53e6,0x53e7,0x53f5,0x5402,0x5413,0x541a,0x5421,
0x5427,0x5428,0x542a,0x542f,0x5431,0x5434,0x5435,0x5443,
0x5444,0x5447,0x544d,0x544f,0x545e,0x5462,0x5464,0x5466,
0x5467,0x5469,0x546b,0x546d,0x546e,0x5474,0x547f,    -1,
    -1,    -1,    -1,    -1,    -1,0x5481,0x5483,0x5485,
0x5488,0x5489,0x548d,0x5491,0x5495,0x5496,0x549c,0x549f,
0x54a1,0x54a6,0x54a7,0x54a9,0x54aa,0x54ad,0x54ae,0x54b1,
0x54b7,0x54b9,0x54ba,0x54bb,0x54bf,0x54c6,0x54ca,0x54cd,
0x54ce,0x54e0,0x54ea,0x54ec,0x54ef,0x54f6,0x54fc,0x54fe,
0x54ff,0x5500,0x5501,0x5505,0x5508,0x5509,0x550c,0x550d,
0x550e,0x5515,0x552a,0x552b,0x5532,0x5535,0x5536,0x553b,
0x553c,0x553d,0x5541,0x5547,0x5549,0x554a,0x554d,0x5550,
0x5551,0x5558,0x555a,0x555b,0x555e,0x5560,0x5561,0x5564,
0x5566,0x557f,0x5581,0x5582,0x5586,0x5588,0x558e,0x558f,
0x5591,0x5592,0x5593,0x5594,0x5597,0x55a3,0x55a4,0x55ad,
0x55b2,0x55bf,0x55c1,0x55c3,0x55c6,0x55c9,0x55cb,0x55cc,
0x55ce,0x55d1,0x55d2,    -1,    -1,    -1,    -1,    -1,
    -1,0x55d3,0x55d7,0x55d8,0x55db,0x55de,0x55e2,0x55e9,
0x55f6,0x55ff,0x5605,0x5608,0x560a,0x560d,0x560e,0x560f,
0x5610,0x5611,0x5612,0x5619,0x562c,0x5630,0x5633,0x5635,
0x5637,0x5639,0x563b,0x563c,0x563d,0x563f,0x5640,0x5641,
0x5643,0x5644,0x5646,0x5649,0x564b,0x564d,0x564f,0x5654,
0x565e,0x5660,0x5661,0x5662,0x5663,0x5666,0x5669,0x566d,
0x566f,0x5671,0x5672,0x5675,0x5684,0x5685,0x5688,0x568b,
0x568c,0x5695,0x5699,0x569a,0x569d,0x569e,0x569f,0x56a6,
0x56a7,0x56a8,0x56a9,0x56ab,0x56ac,0x56ad,0x56b1,0x56b3,
0x56b7,0x56be,0x56c5,0x56c9,0x56ca,0x56cb,0x56cf,0x56d0,
0x56cc,0x56cd,0x56d9,0x56dc,0x56dd,0x56df,0x56e1,0x56e4,
0x56e5,0x56e6,0x56e7,0x56e8,0x56f1,0x56eb,0x56ed,    -1,
    -1,    -1,    -1,    -1,    -1,0x56f6,0x56f7,0x5701,
0x5702,0x5707,0x570a,0x570c,0x5711,0x5715,0x571a,0x571b,
0x571d,0x5720,0x5722,0x5723,0x5724,0x5725,0x5729,0x572a,
0x572c,0x572e,0x572f,0x5733,0x5734,0x573d,0x573e,0x573f,
0x5745,0x5746,0x574c,0x574d,0x5752,0x5762,0x5765,0x5767,
0x5768,0x576b,0x576d,0x576e,0x576f,0x5770,0x5771,0x5773,
0x5774,0x5775,0x5777,0x5779,0x577a,0x577b,0x577c,0x577e,
0x5781,0x5783,0x578c,0x5794,0x5797,0x5799,0x579a,0x579c,
0x579d,0x579e,0x579f,0x57a1,0x5795,0x57a7,0x57a8,0x57a9,
0x57ac,0x57b8,0x57bd,0x57c7,0x57c8,0x57cc,0x57cf,0x57d5,
0x57dd,0x57de,0x57e4,0x57e6,0x57e7,0x57e9,0x57ed,0x57f0,
0x57f5,0x57f6,0x57f8,0x57fd,0x57fe,0x57ff,0x5803,0x5804,
0x5808,0x5809,0x57e1,    -1,    -1,    -1,    -1,    -1,
    -1,0x580c,0x580d,0x581b,0x581e,0x581f,0x5820,0x5826,
0x5827,0x582d,0x5832,0x5839,0x583f,0x5849,0x584c,0x584d,
0x584f,0x5850,0x5855,0x585f,0x5861,0x5864,0x5867,0x5868,
0x5878,0x587c,0x587f,0x5880,0x5881,0x5887,0x5888,0x5889,
0x588a,0x588c,0x588d,0x588f,0x5890,0x5894,0x5896,0x589d,
0x58a0,0x58a1,0x58a2,0x58a6,0x58a9,0x58b1,0x58b2,0x58c4,
0x58bc,0x58c2,0x58c8,0x58cd,0x58ce,0x58d0,0x58d2,0x58d4,
0x58d6,0x58da,0x58dd,0x58e1,0x58e2,0x58e9,0x58f3,0x5905,
0x5906,0x590b,0x590c,0x5912,0x5913,0x5914,0x8641,0x591d,
0x5921,0x5923,0x5924,0x5928,0x592f,0x5930,0x5933,0x5935,
0x5936,0x593f,0x5943,0x5946,0x5952,0x5953,0x5959,0x595b,
0x595d,0x595e,0x595f,0x5961,0x5963,0x596b,0x596d,    -1,
    -1,    -1,    -1,    -1,    -1,0x596f,0x5972,0x5975,
0x5976,0x5979,0x597b,0x597c,0x598b,0x598c,0x598e,0x5992,
0x5995,0x5997,0x599f,0x59a4,0x59a7,0x59ad,0x59ae,0x59af,
0x59b0,0x59b3,0x59b7,0x59ba,0x59bc,0x59c1,0x59c3,0x59c4,
0x59c8,0x59ca,0x59cd,0x59d2,0x59dd,0x59de,0x59df,0x59e3,
0x59e4,0x59e7,0x59ee,0x59ef,0x59f1,0x59f2,0x59f4,0x59f7,
0x5a00,0x5a04,0x5a0c,0x5a0d,0x5a0e,0x5a12,0x5a13,0x5a1e,
0x5a23,0x5a24,0x5a27,0x5a28,0x5a2a,0x5a2d,0x5a30,0x5a44,
0x5a45,0x5a47,0x5a48,0x5a4c,0x5a50,0x5a55,0x5a5e,0x5a63,
0x5a65,0x5a67,0x5a6d,0x5a77,0x5a7a,0x5a7b,0x5a7e,0x5a8b,
0x5a90,0x5a93,0x5a96,0x5a99,0x5a9c,0x5a9e,0x5a9f,0x5aa0,
0x5aa2,0x5aa7,0x5aac,0x5ab1,0x5ab2,0x5ab3,0x5ab5,0x5ab8,
0x5aba,0x5abb,0x5abf,    -1,    -1,    -1,    -1,    -1,
    -1,0x5ac4,0x5ac6,0x5ac8,0x5acf,0x5ada,0x5adc,0x5ae0,
0x5ae5,0x5aea,0x5aee,0x5af5,0x5af6,0x5afd,0x5b00,0x5b01,
0x5b08,0x5b17,0x5b34,0x5b19,0x5b1b,0x5b1d,0x5b21,0x5b25,
0x5b2d,0x5b38,0x5b41,0x5b4b,0x5b4c,0x5b52,0x5b56,0x5b5e,
0x5b68,0x5b6e,0x5b6f,0x5b7c,0x5b7d,0x5b7e,0x5b7f,0x5b81,
0x5b84,0x5b86,0x5b8a,0x5b8e,0x5b90,0x5b91,0x5b93,0x5b94,
0x5b96,0x5ba8,0x5ba9,0x5bac,0x5bad,0x5baf,0x5bb1,0x5bb2,
0x5bb7,0x5bba,0x5bbc,0x5bc0,0x5bc1,0x5bcd,0x5bcf,0x5bd6,
0x5bd7,0x5bd8,0x5bd9,0x5bda,0x5be0,0x5bef,0x5bf1,0x5bf4,
0x5bfd,0x5c0c,0x5c17,0x5c1e,0x5c1f,0x5c23,0x5c26,0x5c29,
0x5c2b,0x5c2c,0x5c2e,0x5c30,0x5c32,0x5c35,0x5c36,0x5c59,
0x5c5a,0x5c5c,0x5c62,0x5c63,0x5c67,0x5c68,0x5c69,    -1,
    -1,    -1,    -1,    -1,    -1,0x5c6d,0x5c70,0x5c74,
0x5c75,0x5c7a,0x5c7b,0x5c7c,0x5c7d,0x5c87,0x5c88,0x5c8a,
0x5c8f,0x5c92,0x5c9d,0x5c9f,0x5ca0,0x5ca2,0x5ca3,0x5ca6,
0x5caa,0x5cb2,0x5cb4,0x5cb5,0x5cba,0x5cc9,0x5ccb,0x5cd2,
0x5cdd,0x5cd7,0x5cee,0x5cf1,0x5cf2,0x5cf4,0x5d01,0x5d06,
0x5d0d,0x5d12,0x5d2b,0x5d23,0x5d24,0x5d26,0x5d27,0x5d31,
0x5d34,0x5d39,0x5d3d,0x5d3f,0x5d42,0x5d43,0x5d46,0x5d48,
0x5d55,0x5d51,0x5d59,0x5d4a,0x5d5f,0x5d60,0x5d61,0x5d62,
0x5d64,0x5d6a,0x5d6d,0x5d70,0x5d79,0x5d7a,0x5d7e,0x5d7f,
0x5d81,0x5d83,0x5d88,0x5d8a,0x5d92,0x5d93,0x5d94,0x5d95,
0x5d99,0x5d9b,0x5d9f,0x5da0,0x5da7,0x5dab,0x5db0,0x5db4,
0x5db8,0x5db9,0x5dc3,0x5dc7,0x5dcb,0x5dd0,0x5dce,0x5dd8,
0x5dd9,0x5de0,0x5de4,    -1,    -1,    -1,    -1,    -1,
    -1,0x5de9,0x5df8,0x5df9,0x5e00,0x5e07,0x5e0d,0x5e12,
0x5e14,0x5e15,0x5e18,0x5e1f,0x5e20,0x5e2e,0x5e28,0x5e32,
0x5e35,0x5e3e,0x5e4b,0x5e50,0x5e49,0x5e51,0x5e56,0x5e58,
0x5e5b,0x5e5c,0x5e5e,0x5e68,0x5e6a,0x5e6b,0x5e6c,0x5e6d,
0x5e6e,0x5e70,0x5e80,0x5e8b,0x5e8e,0x5ea2,0x5ea4,0x5ea5,
0x5ea8,0x5eaa,0x5eac,0x5eb1,0x5eb3,0x5ebd,0x5ebe,0x5ebf,
0x5ec6,0x5ecc,0x5ecb,0x5ece,0x5ed1,0x5ed2,0x5ed4,0x5ed5,
0x5edc,0x5ede,0x5ee5,0x5eeb,0x5f02,0x5f06,0x5f07,0x5f08,
0x5f0e,0x5f19,0x5f1c,0x5f1d,0x5f21,0x5f22,0x5f23,0x5f24,
0x5f28,0x5f2b,0x5f2c,0x5f2e,0x5f30,0x5f34,0x5f36,0x5f3b,
0x5f3d,0x5f3f,0x5f40,0x5f44,0x5f45,0x5f47,0x5f4d,0x5f50,
0x5f54,0x5f58,0x5f5b,0x5f60,0x5f63,0x5f64,0x5f67,    -1,
    -1,    -1,    -1,    -1,    -1,0x5f6f,0x5f72,0x5f74,
0x5f75,0x5f78,0x5f7a,0x5f7d,0x5f7e,0x5f89,0x5f8d,0x5f8f,
0x5f96,0x5f9c,0x5f9d,0x5fa2,0x5fa7,0x5fab,0x5fa4,0x5fac,
0x5faf,0x5fb0,0x5fb1,0x5fb8,0x5fc4,0x5fc7,0x5fc8,0x5fc9,
0x5fcb,0x5fd0,0x5fd1,0x5fd2,0x5fd3,0x5fd4,0x5fde,0x5fe1,
0x5fe2,0x5fe8,0x5fe9,0x5fea,0x5fec,0x5fed,0x5fee,0x5fef,
0x5ff2,0x5ff3,0x5ff6,0x5ffa,0x5ffc,0x6007,0x600a,0x600d,
0x6013,0x6014,0x6017,0x6018,0x601a,0x601f,0x6024,0x602d,
0x6033,0x6035,0x6040,0x6047,0x6048,0x6049,0x604c,0x6051,
0x6054,0x6056,0x6057,0x605d,0x6061,0x6067,0x6071,0x607e,
0x607f,0x6082,0x6086,0x6088,0x608a,0x608e,0x6091,0x6093,
0x6095,0x6098,0x609d,0x609e,0x60a2,0x60a4,0x60a5,0x60a8,
0x60b0,0x60b1,0x60b7,    -1,    -1,    -1,    -1,    -1,
    -1,0x60bb,0x60be,0x60c2,0x60c4,0x60c8,0x60c9,0x60ca,
0x60cb,0x60ce,0x60cf,0x60d4,0x60d5,0x60d9,0x60db,0x60dd,
0x60de,0x60e2,0x60e5,0x60f2,0x60f5,0x60f8,0x60fc,0x60fd,
0x6102,0x6107,0x610a,0x610c,0x6110,0x6111,0x6112,0x6113,
0x6114,0x6116,0x6117,0x6119,0x611c,0x611e,0x6122,0x612a,
0x612b,0x6130,0x6131,0x6135,0x6136,0x6137,0x6139,0x6141,
0x6145,0x6146,0x6149,0x615e,0x6160,0x616c,0x6172,0x6178,
0x617b,0x617c,0x617f,0x6180,0x6181,0x6183,0x6184,0x618b,
0x618d,0x6192,0x6193,0x6197,0x6198,0x619c,0x619d,0x619f,
0x61a0,0x61a5,0x61a8,0x61aa,0x61ad,0x61b8,0x61b9,0x61bc,
0x61c0,0x61c1,0x61c2,0x61ce,0x61cf,0x61d5,0x61dc,0x61dd,
0x61de,0x61df,0x61e1,0x61e2,0x61e7,0x61e9,0x61e5,    -1,
    -1,    -1,    -1,    -1,    -1,0x61ec,0x61ed,0x61ef,
0x6201,0x6203,0x6204,0x6207,0x6213,0x6215,0x621c,0x6220,
0x6222,0x6223,0x6227,0x6229,0x622b,0x6239,0x623d,0x6242,
0x6243,0x6244,0x6246,0x624c,0x6250,0x6251,0x6252,0x6254,
0x6256,0x625a,0x625c,0x6264,0x626d,0x626f,0x6273,0x627a,
0x627d,0x628d,0x628e,0x628f,0x6290,0x62a6,0x62a8,0x62b3,
0x62b6,0x62b7,0x62ba,0x62be,0x62bf,0x62c4,0x62ce,0x62d5,
0x62d6,0x62da,0x62ea,0x62f2,0x62f4,0x62fc,0x62fd,0x6303,
0x6304,0x630a,0x630b,0x630d,0x6310,0x6313,0x6316,0x6318,
0x6329,0x632a,0x632d,0x6335,0x6336,0x6339,0x633c,0x6341,
0x6342,0x6343,0x6344,0x6346,0x634a,0x634b,0x634e,0x6352,
0x6353,0x6354,0x6358,0x635b,0x6365,0x6366,0x636c,0x636d,
0x6371,0x6374,0x6375,    -1,    -1,    -1,    -1,    -1,
    -1,0x6378,0x637c,0x637d,0x637f,0x6382,0x6384,0x6387,
0x638a,0x6390,0x6394,0x6395,0x6399,0x639a,0x639e,0x63a4,
0x63a6,0x63ad,0x63ae,0x63af,0x63bd,0x63c1,0x63c5,0x63c8,
0x63ce,0x63d1,0x63d3,0x63d4,0x63d5,0x63dc,0x63e0,0x63e5,
0x63ea,0x63ec,0x63f2,0x63f3,0x63f5,0x63f8,0x63f9,0x6409,
0x640a,0x6410,0x6412,0x6414,0x6418,0x641e,0x6420,0x6422,
0x6424,0x6425,0x6429,0x642a,0x642f,0x6430,0x6435,0x643d,
0x643f,0x644b,0x644f,0x6451,0x6452,0x6453,0x6454,0x645a,
0x645b,0x645c,0x645d,0x645f,0x6460,0x6461,0x6463,0x646d,
0x6473,0x6474,0x647b,0x647d,0x6485,0x6487,0x648f,0x6490,
0x6491,0x6498,0x6499,0x649b,0x649d,0x649f,0x64a1,0x64a3,
0x64a6,0x64a8,0x64ac,0x64b3,0x64bd,0x64be,0x64bf,    -1,
    -1,    -1,    -1,    -1,    -1,0x64c4,0x64c9,0x64ca,
0x64cb,0x64cc,0x64ce,0x64d0,0x64d1,0x64d5,0x64d7,0x64e4,
0x64e5,0x64e9,0x64ea,0x64ed,0x64f0,0x64f5,0x64f7,0x64fb,
0x64ff,0x6501,0x6504,0x6508,0x6509,0x650a,0x650f,0x6513,
0x6514,0x6516,0x6519,0x651b,0x651e,0x651f,0x6522,0x6526,
0x6529,0x652e,0x6531,0x653a,0x653c,0x653d,0x6543,0x6547,
0x6549,0x6550,0x6552,0x6554,0x655f,0x6560,0x6567,0x656b,
0x657a,0x657d,0x6581,0x6585,0x658a,0x6592,0x6595,0x6598,
0x659d,0x65a0,0x65a3,0x65a6,0x65ae,0x65b2,0x65b3,0x65b4,
0x65bf,0x65c2,0x65c8,0x65c9,0x65ce,0x65d0,0x65d4,0x65d6,
0x65d8,0x65df,0x65f0,0x65f2,0x65f4,0x65f5,0x65f9,0x65fe,
0x65ff,0x6600,0x6604,0x6608,0x6609,0x660d,0x6611,0x6612,
0x6615,0x6616,0x661d,    -1,    -1,    -1,    -1,    -1,
    -1,0x661e,0x6621,0x6622,0x6623,0x6624,0x6626,0x6629,
0x662a,0x662b,0x662c,0x662e,0x6630,0x6631,0x6633,0x6639,
0x6637,0x6640,0x6645,0x6646,0x664a,0x664c,0x6651,0x664e,
0x6657,0x6658,0x6659,0x665b,0x665c,0x6660,0x6661,0x66fb,
0x666a,0x666b,0x666c,0x667e,0x6673,0x6675,0x667f,0x6677,
0x6678,0x6679,0x667b,0x6680,0x667c,0x668b,0x668c,0x668d,
0x6690,0x6692,0x6699,0x669a,0x669b,0x669c,0x669f,0x66a0,
0x66a4,0x66ad,0x66b1,0x66b2,0x66b5,0x66bb,0x66bf,0x66c0,
0x66c2,0x66c3,0x66c8,0x66cc,0x66ce,0x66cf,0x66d4,0x66db,
0x66df,0x66e8,0x66eb,0x66ec,0x66ee,0x66fa,0x6705,0x6707,
0x670e,0x6713,0x6719,0x671c,0x6720,0x6722,0x6733,0x673e,
0x6745,0x6747,0x6748,0x674c,0x6754,0x6755,0x675d,    -1,
    -1,    -1,    -1,    -1,    -1,0x6766,0x676c,0x676e,
0x6774,0x6776,0x677b,0x6781,0x6784,0x678e,0x678f,0x6791,
0x6793,0x6796,0x6798,0x6799,0x679b,0x67b0,0x67b1,0x67b2,
0x67b5,0x67bb,0x67bc,0x67bd,0x67f9,0x67c0,0x67c2,0x67c3,
0x67c5,0x67c8,0x67c9,0x67d2,0x67d7,0x67d9,0x67dc,0x67e1,
0x67e6,0x67f0,0x67f2,0x67f6,0x67f7,0x6852,0x6814,0x6819,
0x681d,0x681f,0x6828,0x6827,0x682c,0x682d,0x682f,0x6830,
0x6831,0x6833,0x683b,0x683f,0x6844,0x6845,0x684a,0x684c,
0x6855,0x6857,0x6858,0x685b,0x686b,0x686e,0x686f,0x6870,
0x6871,0x6872,0x6875,0x6879,0x687a,0x687b,0x687c,0x6882,
0x6884,0x6886,0x6888,0x6896,0x6898,0x689a,0x689c,0x68a1,
0x68a3,0x68a5,0x68a9,0x68aa,0x68ae,0x68b2,0x68bb,0x68c5,
0x68c8,0x68cc,0x68cf,    -1,    -1,    -1,    -1,    -1,
    -1,0x68d0,0x68d1,0x68d3,0x68d6,0x68d9,0x68dc,0x68dd,
0x68e5,0x68e8,0x68ea,0x68eb,0x68ec,0x68ed,0x68f0,0x68f1,
0x68f5,0x68f6,0x68fb,0x68fc,0x68fd,0x6906,0x6909,0x690a,
0x6910,0x6911,0x6913,0x6916,0x6917,0x6931,0x6933,0x6935,
0x6938,0x693b,0x6942,0x6945,0x6949,0x694e,0x6957,0x695b,
0x6963,0x6964,0x6965,0x6966,0x6968,0x6969,0x696c,0x6970,
0x6971,0x6972,0x697a,0x697b,0x697f,0x6980,0x698d,0x6992,
0x6996,0x6998,0x69a1,0x69a5,0x69a6,0x69a8,0x69ab,0x69ad,
0x69af,0x69b7,0x69b8,0x69ba,0x69bc,0x69c5,0x69c8,0x69d1,
0x69d6,0x69d7,0x69e2,0x69e5,0x69ee,0x69ef,0x69f1,0x69f3,
0x69f5,0x69fe,0x6a00,0x6a01,0x6a03,0x6a0f,0x6a11,0x6a15,
0x6a1a,0x6a1d,0x6a20,0x6a24,0x6a28,0x6a30,0x6a32,    -1,
    -1,    -1,    -1,    -1,    -1,0x6a34,0x6a37,0x6a3b,
0x6a3e,0x6a3f,0x6a45,0x6a46,0x6a49,0x6a4a,0x6a4e,0x6a50,
0x6a51,0x6a52,0x6a55,0x6a56,0x6a5b,0x6a64,0x6a67,0x6a6a,
0x6a71,0x6a73,0x6a7e,0x6a81,0x6a83,0x6a86,0x6a87,0x6a89,
0x6a8b,0x6a91,0x6a9b,0x6a9d,0x6a9e,0x6a9f,0x6aa5,0x6aab,
0x6aaf,0x6ab0,0x6ab1,0x6ab4,0x6abd,0x6abe,0x6abf,0x6ac6,
0x6ac9,0x6ac8,0x6acc,0x6ad0,0x6ad4,0x6ad5,0x6ad6,0x6adc,
0x6add,0x6ae4,0x6ae7,0x6aec,0x6af0,0x6af1,0x6af2,0x6afc,
0x6afd,0x6b02,0x6b03,0x6b06,0x6b07,0x6b09,0x6b0f,0x6b10,
0x6b11,0x6b17,0x6b1b,0x6b1e,0x6b24,0x6b28,0x6b2b,0x6b2c,
0x6b2f,0x6b35,0x6b36,0x6b3b,0x6b3f,0x6b46,0x6b4a,0x6b4d,
0x6b52,0x6b56,0x6b58,0x6b5d,0x6b60,0x6b67,0x6b6b,0x6b6e,
0x6b70,0x6b75,0x6b7d,    -1,    -1,    -1,    -1,    -1,
    -1,0x6b7e,0x6b82,0x6b85,0x6b97,0x6b9b,0x6b9f,0x6ba0,
0x6ba2,0x6ba3,0x6ba8,0x6ba9,0x6bac,0x6bad,0x6bae,0x6bb0,
0x6bb8,0x6bb9,0x6bbd,0x6bbe,0x6bc3,0x6bc4,0x6bc9,0x6bcc,
0x6bd6,0x6bda,0x6be1,0x6be3,0x6be6,0x6be7,0x6bee,0x6bf1,
0x6bf7,0x6bf9,0x6bff,0x6c02,0x6c04,0x6c05,0x6c09,0x6c0d,
0x6c0e,0x6c10,0x6c12,0x6c19,0x6c1f,0x6c26,0x6c27,0x6c28,
0x6c2c,0x6c2e,0x6c33,0x6c35,0x6c36,0x6c3a,0x6c3b,0x6c3f,
0x6c4a,0x6c4b,0x6c4d,0x6c4f,0x6c52,0x6c54,0x6c59,0x6c5b,
0x6c5c,0x6c6b,0x6c6d,0x6c6f,0x6c74,0x6c76,0x6c78,0x6c79,
0x6c7b,0x6c85,0x6c86,0x6c87,0x6c89,0x6c94,0x6c95,0x6c97,
0x6c98,0x6c9c,0x6c9f,0x6cb0,0x6cb2,0x6cb4,0x6cc2,0x6cc6,
0x6ccd,0x6ccf,0x6cd0,0x6cd1,0x6cd2,0x6cd4,0x6cd6,    -1,
    -1,    -1,    -1,    -1,    -1,0x6cda,0x6cdc,0x6ce0,
0x6ce7,0x6ce9,0x6ceb,0x6cec,0x6cee,0x6cf2,0x6cf4,0x6d04,
0x6d07,0x6d0a,0x6d0e,0x6d0f,0x6d11,0x6d13,0x6d1a,0x6d26,
0x6d27,0x6d28,0x6c67,0x6d2e,0x6d2f,0x6d31,0x6d39,0x6d3c,
0x6d3f,0x6d57,0x6d5e,0x6d5f,0x6d61,0x6d65,0x6d67,0x6d6f,
0x6d70,0x6d7c,0x6d82,0x6d87,0x6d91,0x6d92,0x6d94,0x6d96,
0x6d97,0x6d98,0x6daa,0x6dac,0x6db4,0x6db7,0x6db9,0x6dbd,
0x6dbf,0x6dc4,0x6dc8,0x6dca,0x6dce,0x6dcf,0x6dd6,0x6ddb,
0x6ddd,0x6ddf,0x6de0,0x6de2,0x6de5,0x6de9,0x6def,0x6df0,
0x6df4,0x6df6,0x6dfc,0x6e00,0x6e04,0x6e1e,0x6e22,0x6e27,
0x6e32,0x6e36,0x6e39,0x6e3b,0x6e3c,0x6e44,0x6e45,0x6e48,
0x6e49,0x6e4b,0x6e4f,0x6e51,0x6e52,0x6e53,0x6e54,0x6e57,
0x6e5c,0x6e5d,0x6e5e,    -1,    -1,    -1,    -1,    -1,
    -1,0x6e62,0x6e63,0x6e68,0x6e73,0x6e7b,0x6e7d,0x6e8d,
0x6e93,0x6e99,0x6ea0,0x6ea7,0x6ead,0x6eae,0x6eb1,0x6eb3,
0x6ebb,0x6ebf,0x6ec0,0x6ec1,0x6ec3,0x6ec7,0x6ec8,0x6eca,
0x6ecd,0x6ece,0x6ecf,0x6eeb,0x6eed,0x6eee,0x6ef9,0x6efb,
0x6efd,0x6f04,0x6f08,0x6f0a,0x6f0c,0x6f0d,0x6f16,0x6f18,
0x6f1a,0x6f1b,0x6f26,0x6f29,0x6f2a,0x6f2f,0x6f30,0x6f33,
0x6f36,0x6f3b,0x6f3c,0x6f2d,0x6f4f,0x6f51,0x6f52,0x6f53,
0x6f57,0x6f59,0x6f5a,0x6f5d,0x6f5e,0x6f61,0x6f62,0x6f68,
0x6f6c,0x6f7d,0x6f7e,0x6f83,0x6f87,0x6f88,0x6f8b,0x6f8c,
0x6f8d,0x6f90,0x6f92,0x6f93,0x6f94,0x6f96,0x6f9a,0x6f9f,
0x6fa0,0x6fa5,0x6fa6,0x6fa7,0x6fa8,0x6fae,0x6faf,0x6fb0,
0x6fb5,0x6fb6,0x6fbc,0x6fc5,0x6fc7,0x6fc8,0x6fca,    -1,
    -1,    -1,    -1,    -1,    -1,0x6fda,0x6fde,0x6fe8,
0x6fe9,0x6ff0,0x6ff5,0x6ff9,0x6ffc,0x6ffd,0x7000,0x7005,
0x7006,0x7007,0x700d,0x7017,0x7020,0x7023,0x702f,0x7034,
0x7037,0x7039,0x703c,0x7043,0x7044,0x7048,0x7049,0x704a,
0x704b,0x7054,0x7055,0x705d,0x705e,0x704e,0x7064,0x7065,
0x706c,0x706e,0x7075,0x7076,0x707e,0x7081,0x7085,0x7086,
0x7094,0x7095,0x7096,0x7097,0x7098,0x709b,0x70a4,0x70ab,
0x70b0,0x70b1,0x70b4,0x70b7,0x70ca,0x70d1,0x70d3,0x70d4,
0x70d5,0x70d6,0x70d8,0x70dc,0x70e4,0x70fa,0x7103,0x7104,
0x7105,0x7106,0x7107,0x710b,0x710c,0x710f,0x711e,0x7120,
0x712b,0x712d,0x712f,0x7130,0x7131,0x7138,0x7141,0x7145,
0x7146,0x7147,0x714a,0x714b,0x7150,0x7152,0x7157,0x715a,
0x715c,0x715e,0x7160,    -1,    -1,    -1,    -1,    -1,
    -1,0x7168,0x7179,0x7180,0x7185,0x7187,0x718c,0x7192,
0x719a,0x719b,0x71a0,0x71a2,0x71af,0x71b0,0x71b2,0x71b3,
0x71ba,0x71bf,0x71c0,0x71c1,0x71c4,0x71cb,0x71cc,0x71d3,
0x71d6,0x71d9,0x71da,0x71dc,0x71f8,0x71fe,0x7200,0x7207,
0x7208,0x7209,0x7213,0x7217,0x721a,0x721d,0x721f,0x7224,
0x722b,0x722f,0x7234,0x7238,0x7239,0x7241,0x7242,0x7243,
0x7245,0x724e,0x724f,0x7250,0x7253,0x7255,0x7256,0x725a,
0x725c,0x725e,0x7260,0x7263,0x7268,0x726b,0x726e,0x726f,
0x7271,0x7277,0x7278,0x727b,0x727c,0x727f,0x7284,0x7289,
0x728d,0x728e,0x7293,0x729b,0x72a8,0x72ad,0x72ae,0x72b1,
0x72b4,0x72be,0x72c1,0x72c7,0x72c9,0x72cc,0x72d5,0x72d6,
0x72d8,0x72df,0x72e5,0x72f3,0x72f4,0x72fa,0x72fb,    -1,
    -1,    -1,    -1,    -1,    -1,0x72fe,0x7302,0x7304,
0x7305,0x7307,0x730b,0x730d,0x7312,0x7313,0x7318,0x7319,
0x731e,0x7322,0x7324,0x7327,0x7328,0x732c,0x7331,0x7332,
0x7335,0x733a,0x733b,0x733d,0x7343,0x734d,0x7350,0x7352,
0x7356,0x7358,0x735d,0x735e,0x735f,0x7360,0x7366,0x7367,
0x7369,0x736b,0x736c,0x736e,0x736f,0x7371,0x7377,0x7379,
0x737c,0x7380,0x7381,0x7383,0x7385,0x7386,0x738e,0x7390,
0x7393,0x7395,0x7397,0x7398,0x739c,0x739e,0x739f,0x73a0,
0x73a2,0x73a5,0x73a6,0x73aa,0x73ab,0x73ad,0x73b5,0x73b7,
0x73b9,0x73bc,0x73bd,0x73bf,0x73c5,0x73c6,0x73c9,0x73cb,
0x73cc,0x73cf,0x73d2,0x73d3,0x73d6,0x73d9,0x73dd,0x73e1,
0x73e3,0x73e6,0x73e7,0x73e9,0x73f4,0x73f5,0x73f7,0x73f9,
0x73fa,0x73fb,0x73fd,    -1,    -1,    -1,    -1,    -1,
    -1,0x73ff,0x7400,0x7401,0x7404,0x7407,0x740a,0x7411,
0x741a,0x741b,0x7424,0x7426,0x7428,0x7429,0x742a,0x742b,
0x742c,0x742d,0x742e,0x742f,0x7430,0x7431,0x7439,0x7440,
0x7443,0x7444,0x7446,0x7447,0x744b,0x744d,0x7451,0x7452,
0x7457,0x745d,0x7462,0x7466,0x7467,0x7468,0x746b,0x746d,
0x746e,0x7471,0x7472,0x7480,0x7481,0x7485,0x7486,0x7487,
0x7489,0x748f,0x7490,0x7491,0x7492,0x7498,0x7499,0x749a,
0x749c,0x749f,0x74a0,0x74a1,0x74a3,0x74a6,0x74a8,0x74a9,
0x74aa,0x74ab,0x74ae,0x74af,0x74b1,0x74b2,0x74b5,0x74b9,
0x74bb,0x74bf,0x74c8,0x74c9,0x74cc,0x74d0,0x74d3,0x74d8,
0x74da,0x74db,0x74de,0x74df,0x74e4,0x74e8,0x74ea,0x74eb,
0x74ef,0x74f4,0x74fa,0x74fb,0x74fc,0x74ff,0x7506,    -1,
    -1,    -1,    -1,    -1,    -1,0x7512,0x7516,0x7517,
0x7520,0x7521,0x7524,0x7527,0x7529,0x752a,0x752f,0x7536,
0x7539,0x753d,0x753e,0x753f,0x7540,0x7543,0x7547,0x7548,
0x754e,0x7550,0x7552,0x7557,0x755e,0x755f,0x7561,0x756f,
0x7571,0x7579,0x757a,0x757b,0x757c,0x757d,0x757e,0x7581,
0x7585,0x7590,0x7592,0x7593,0x7595,0x7599,0x759c,0x75a2,
0x75a4,0x75b4,0x75ba,0x75bf,0x75c0,0x75c1,0x75c4,0x75c6,
0x75cc,0x75ce,0x75cf,0x75d7,0x75dc,0x75df,0x75e0,0x75e1,
0x75e4,0x75e7,0x75ec,0x75ee,0x75ef,0x75f1,0x75f9,0x7600,
0x7602,0x7603,0x7604,0x7607,0x7608,0x760a,0x760c,0x760f,
0x7612,0x7613,0x7615,0x7616,0x7619,0x761b,0x761c,0x761d,
0x761e,0x7623,0x7625,0x7626,0x7629,0x762d,0x7632,0x7633,
0x7635,0x7638,0x7639,    -1,    -1,    -1,    -1,    -1,
    -1,0x763a,0x763c,0x764a,0x7640,0x7641,0x7643,0x7644,
0x7645,0x7649,0x764b,0x7655,0x7659,0x765f,0x7664,0x7665,
0x766d,0x766e,0x766f,0x7671,0x7674,0x7681,0x7685,0x768c,
0x768d,0x7695,0x769b,0x769c,0x769d,0x769f,0x76a0,0x76a2,
0x76a3,0x76a4,0x76a5,0x76a6,0x76a7,0x76a8,0x76aa,0x76ad,
0x76bd,0x76c1,0x76c5,0x76c9,0x76cb,0x76cc,0x76ce,0x76d4,
0x76d9,0x76e0,0x76e6,0x76e8,0x76ec,0x76f0,0x76f1,0x76f6,
0x76f9,0x76fc,0x7700,0x7706,0x770a,0x770e,0x7712,0x7714,
0x7715,0x7717,0x7719,0x771a,0x771c,0x7722,0x7728,0x772d,
0x772e,0x772f,0x7734,0x7735,0x7736,0x7739,0x773d,0x773e,
0x7742,0x7745,0x7746,0x774a,0x774d,0x774e,0x774f,0x7752,
0x7756,0x7757,0x775c,0x775e,0x775f,0x7760,0x7762,    -1,
    -1,    -1,    -1,    -1,    -1,0x7764,0x7767,0x776a,
0x776c,0x7770,0x7772,0x7773,0x7774,0x777a,0x777d,0x7780,
0x7784,0x778c,0x778d,0x7794,0x7795,0x7796,0x779a,0x779f,
0x77a2,0x77a7,0x77aa,0x77ae,0x77af,0x77b1,0x77b5,0x77be,
0x77c3,0x77c9,0x77d1,0x77d2,0x77d5,0x77d9,0x77de,0x77df,
0x77e0,0x77e4,0x77e6,0x77ea,0x77ec,0x77f0,0x77f1,0x77f4,
0x77f8,0x77fb,0x7805,0x7806,0x7809,0x780d,0x780e,0x7811,
0x781d,0x7821,0x7822,0x7823,0x782d,0x782e,0x7830,0x7835,
0x7837,0x7843,0x7844,0x7847,0x7848,0x784c,0x784e,0x7852,
0x785c,0x785e,0x7860,0x7861,0x7863,0x7864,0x7868,0x786a,
0x786e,0x787a,0x787e,0x788a,0x788f,0x7894,0x7898,0x78a1,
0x789d,0x789e,0x789f,0x78a4,0x78a8,0x78ac,0x78ad,0x78b0,
0x78b1,0x78b2,0x78b3,    -1,    -1,    -1,    -1,    -1,
    -1,0x78bb,0x78bd,0x78bf,0x78c7,0x78c8,0x78c9,0x78cc,
0x78ce,0x78d2,0x78d3,0x78d5,0x78d6,0x78e4,0x78db,0x78df,
0x78e0,0x78e1,0x78e6,0x78ea,0x78f2,0x78f3,0x7900,0x78f6,
0x78f7,0x78fa,0x78fb,0x78ff,0x7906,0x790c,0x7910,0x791a,
0x791c,0x791e,0x791f,0x7920,0x7925,0x7927,0x7929,0x792d,
0x7931,0x7934,0x7935,0x793b,0x793d,0x793f,0x7944,0x7945,
0x7946,0x794a,0x794b,0x794f,0x7951,0x7954,0x7958,0x795b,
0x795c,0x7967,0x7969,0x796b,0x7972,0x7979,0x797b,0x797c,
0x797e,0x798b,0x798c,0x7991,0x7993,0x7994,0x7995,0x7996,
0x7998,0x799b,0x799c,0x79a1,0x79a8,0x79a9,0x79ab,0x79af,
0x79b1,0x79b4,0x79b8,0x79bb,0x79c2,0x79c4,0x79c7,0x79c8,
0x79ca,0x79cf,0x79d4,0x79d6,0x79da,0x79dd,0x79de,    -1,
    -1,    -1,    -1,    -1,    -1,0x79e0,0x79e2,0x79e5,
0x79ea,0x79eb,0x79ed,0x79f1,0x79f8,0x79fc,0x7a02,0x7a03,
0x7a07,0x7a09,0x7a0a,0x7a0c,0x7a11,0x7a15,0x7a1b,0x7a1e,
0x7a21,0x7a27,0x7a2b,0x7a2d,0x7a2f,0x7a30,0x7a34,0x7a35,
0x7a38,0x7a39,0x7a3a,0x7a44,0x7a45,0x7a47,0x7a48,0x7a4c,
0x7a55,0x7a56,0x7a59,0x7a5c,0x7a5d,0x7a5f,0x7a60,0x7a65,
0x7a67,0x7a6a,0x7a6d,0x7a75,0x7a78,0x7a7e,0x7a80,0x7a82,
0x7a85,0x7a86,0x7a8a,0x7a8b,0x7a90,0x7a91,0x7a94,0x7a9e,
0x7aa0,0x7aa3,0x7aac,0x7ab3,0x7ab5,0x7ab9,0x7abb,0x7abc,
0x7ac6,0x7ac9,0x7acc,0x7ace,0x7ad1,0x7adb,0x7ae8,0x7ae9,
0x7aeb,0x7aec,0x7af1,0x7af4,0x7afb,0x7afd,0x7afe,0x7b07,
0x7b14,0x7b1f,0x7b23,0x7b27,0x7b29,0x7b2a,0x7b2b,0x7b2d,
0x7b2e,0x7b2f,0x7b30,    -1,    -1,    -1,    -1,    -1,
    -1,0x7b31,0x7b34,0x7b3d,0x7b3f,0x7b40,0x7b41,0x7b47,
0x7b4e,0x7b55,0x7b60,0x7b64,0x7b66,0x7b69,0x7b6a,0x7b6d,
0x7b6f,0x7b72,0x7b73,0x7b77,0x7b84,0x7b89,0x7b8e,0x7b90,
0x7b91,0x7b96,0x7b9b,0x7b9e,0x7ba0,0x7ba5,0x7bac,0x7baf,
0x7bb0,0x7bb2,0x7bb5,0x7bb6,0x7bba,0x7bbb,0x7bbc,0x7bbd,
0x7bc2,0x7bc5,0x7bc8,0x7bca,0x7bd4,0x7bd6,0x7bd7,0x7bd9,
0x7bda,0x7bdb,0x7be8,0x7bea,0x7bf2,0x7bf4,0x7bf5,0x7bf8,
0x7bf9,0x7bfa,0x7bfc,0x7bfe,0x7c01,0x7c02,0x7c03,0x7c04,
0x7c06,0x7c09,0x7c0b,0x7c0c,0x7c0e,0x7c0f,0x7c19,0x7c1b,
0x7c20,0x7c25,0x7c26,0x7c28,0x7c2c,0x7c31,0x7c33,0x7c34,
0x7c36,0x7c39,0x7c3a,0x7c46,0x7c4a,0x7c55,0x7c51,0x7c52,
0x7c53,0x7c59,0x7c5a,0x7c5b,0x7c5c,0x7c5d,0x7c5e,    -1,
    -1,    -1,    -1,    -1,    -1,0x7c61,0x7c63,0x7c67,
0x7c69,0x7c6d,0x7c6e,0x7c70,0x7c72,0x7c79,0x7c7c,0x7c7d,
0x7c86,0x7c87,0x7c8f,0x7c94,0x7c9e,0x7ca0,0x7ca6,0x7cb0,
0x7cb6,0x7cb7,0x7cba,0x7cbb,0x7cbc,0x7cbf,0x7cc4,0x7cc7,
0x7cc8,0x7cc9,0x7ccd,0x7ccf,0x7cd3,0x7cd4,0x7cd5,0x7cd7,
0x7cd9,0x7cda,0x7cdd,0x7ce6,0x7ce9,0x7ceb,0x7cf5,0x7d03,
0x7d07,0x7d08,0x7d09,0x7d0f,0x7d11,0x7d12,0x7d13,0x7d16,
0x7d1d,0x7d1e,0x7d23,0x7d26,0x7d2a,0x7d2d,0x7d31,0x7d3c,
0x7d3d,0x7d3e,0x7d40,0x7d41,0x7d47,0x7d48,0x7d4d,0x7d51,
0x7d53,0x7d57,0x7d59,0x7d5a,0x7d5c,0x7d5d,0x7d65,0x7d67,
0x7d6a,0x7d70,0x7d78,0x7d7a,0x7d7b,0x7d7f,0x7d81,0x7d82,
0x7d83,0x7d85,0x7d86,0x7d88,0x7d8b,0x7d8c,0x7d8d,0x7d91,
0x7d96,0x7d97,0x7d9d,    -1,    -1,    -1,    -1,    -1,
    -1,0x7d9e,0x7da6,0x7da7,0x7daa,0x7db3,0x7db6,0x7db7,
0x7db9,0x7dc2,0x7dc3,0x7dc4,0x7dc5,0x7dc6,0x7dcc,0x7dcd,
0x7dce,0x7dd7,0x7dd9,0x7e00,0x7de2,0x7de5,0x7de6,0x7dea,
0x7deb,0x7ded,0x7df1,0x7df5,0x7df6,0x7df9,0x7dfa,0x7e08,
0x7e10,0x7e11,0x7e15,0x7e17,0x7e1c,0x7e1d,0x7e20,0x7e27,
0x7e28,0x7e2c,0x7e2d,0x7e2f,0x7e33,0x7e36,0x7e3f,0x7e44,
0x7e45,0x7e47,0x7e4e,0x7e50,0x7e52,0x7e58,0x7e5f,0x7e61,
0x7e62,0x7e65,0x7e6b,0x7e6e,0x7e6f,0x7e73,0x7e78,0x7e7e,
0x7e81,0x7e86,0x7e87,0x7e8a,0x7e8d,0x7e91,0x7e95,0x7e98,
0x7e9a,0x7e9d,0x7e9e,0x7f3c,0x7f3b,0x7f3d,0x7f3e,0x7f3f,
0x7f43,0x7f44,0x7f47,0x7f4f,0x7f52,0x7f53,0x7f5b,0x7f5c,
0x7f5d,0x7f61,0x7f63,0x7f64,0x7f65,0x7f66,0x7f6d,    -1,
    -1,    -1,    -1,    -1,    -1,0x7f71,0x7f7d,0x7f7e,
0x7f7f,0x7f80,0x7f8b,0x7f8d,0x7f8f,0x7f90,0x7f91,0x7f96,
0x7f97,0x7f9c,0x7fa1,0x7fa2,0x7fa6,0x7faa,0x7fad,0x7fb4,
0x7fbc,0x7fbf,0x7fc0,0x7fc3,0x7fc8,0x7fce,0x7fcf,0x7fdb,
0x7fdf,0x7fe3,0x7fe5,0x7fe8,0x7fec,0x7fee,0x7fef,0x7ff2,
0x7ffa,0x7ffd,0x7ffe,0x7fff,0x8007,0x8008,0x800a,0x800d,
0x800e,0x800f,0x8011,0x8013,0x8014,0x8016,0x801d,0x801e,
0x801f,0x8020,0x8024,0x8026,0x802c,0x802e,0x8030,0x8034,
0x8035,0x8037,0x8039,0x803a,0x803c,0x803e,0x8040,0x8044,
0x8060,0x8064,0x8066,0x806d,0x8071,0x8075,0x8081,0x8088,
0x808e,0x809c,0x809e,0x80a6,0x80a7,0x80ab,0x80b8,0x80b9,
0x80c8,0x80cd,0x80cf,0x80d2,0x80d4,0x80d5,0x80d7,0x80d8,
0x80e0,0x80ed,0x80ee,    -1,    -1,    -1,    -1,    -1,
    -1,0x80f0,0x80f2,0x80f3,0x80f6,0x80f9,0x80fa,0x80fe,
0x8103,0x810b,0x8116,0x8117,0x8118,0x811c,0x811e,0x8120,
0x8124,0x8127,0x812c,0x8130,0x8135,0x813a,0x813c,0x8145,
0x8147,0x814a,0x814c,0x8152,0x8157,0x8160,0x8161,0x8167,
0x8168,0x8169,0x816d,0x816f,0x8177,0x8181,0x8190,0x8184,
0x8185,0x8186,0x818b,0x818e,0x8196,0x8198,0x819b,0x819e,
0x81a2,0x81ae,0x81b2,0x81b4,0x81bb,0x81cb,0x81c3,0x81c5,
0x81ca,0x81ce,0x81cf,0x81d5,0x81d7,0x81db,0x81dd,0x81de,
0x81e1,0x81e4,0x81eb,0x81ec,0x81f0,0x81f1,0x81f2,0x81f5,
0x81f6,0x81f8,0x81f9,0x81fd,0x81ff,0x8200,0x8203,0x820f,
0x8213,0x8214,0x8219,0x821a,0x821d,0x8221,0x8222,0x8228,
0x8232,0x8234,0x823a,0x8243,0x8244,0x8245,0x8246,    -1,
    -1,    -1,    -1,    -1,    -1,0x824b,0x824e,0x824f,
0x8251,0x8256,0x825c,0x8260,0x8263,0x8267,0x826d,0x8274,
0x827b,0x827d,0x827f,0x8280,0x8281,0x8283,0x8284,0x8287,
0x8289,0x828a,0x828e,0x8291,0x8294,0x8296,0x8298,0x829a,
0x829b,0x82a0,0x82a1,0x82a3,0x82a4,0x82a7,0x82a8,0x82a9,
0x82aa,0x82ae,0x82b0,0x82b2,0x82b4,0x82b7,0x82ba,0x82bc,
0x82be,0x82bf,0x82c6,0x82d0,0x82d5,0x82da,0x82e0,0x82e2,
0x82e4,0x82e8,0x82ea,0x82ed,0x82ef,0x82f6,0x82f7,0x82fd,
0x82fe,0x8300,0x8301,0x8307,0x8308,0x830a,0x830b,0x8354,
0x831b,0x831d,0x831e,0x831f,0x8321,0x8322,0x832c,0x832d,
0x832e,0x8330,0x8333,0x8337,0x833a,0x833c,0x833d,0x8342,
0x8343,0x8344,0x8347,0x834d,0x834e,0x8351,0x8355,0x8356,
0x8357,0x8370,0x8378,    -1,    -1,    -1,    -1,    -1,
    -1,0x837d,0x837f,0x8380,0x8382,0x8384,0x8386,0x838d,
0x8392,0x8394,0x8395,0x8398,0x8399,0x839b,0x839c,0x839d,
0x83a6,0x83a7,0x83a9,0x83ac,0x83be,0x83bf,0x83c0,0x83c7,
0x83c9,0x83cf,0x83d0,0x83d1,0x83d4,0x83dd,0x8353,0x83e8,
0x83ea,0x83f6,0x83f8,0x83f9,0x83fc,0x8401,0x8406,0x840a,
0x840f,0x8411,0x8415,0x8419,0x83ad,0x842f,0x8439,0x8445,
0x8447,0x8448,0x844a,0x844d,0x844f,0x8451,0x8452,0x8456,
0x8458,0x8459,0x845a,0x845c,0x8460,0x8464,0x8465,0x8467,
0x846a,0x8470,0x8473,0x8474,0x8476,0x8478,0x847c,0x847d,
0x8481,0x8485,0x8492,0x8493,0x8495,0x849e,0x84a6,0x84a8,
0x84a9,0x84aa,0x84af,0x84b1,0x84b4,0x84ba,0x84bd,0x84be,
0x84c0,0x84c2,0x84c7,0x84c8,0x84cc,0x84cf,0x84d3,    -1,
    -1,    -1,    -1,    -1,    -1,0x84dc,0x84e7,0x84ea,
0x84ef,0x84f0,0x84f1,0x84f2,0x84f7,0x8532,0x84fa,0x84fb,
0x84fd,0x8502,0x8503,0x8507,0x850c,0x850e,0x8510,0x851c,
0x851e,0x8522,0x8523,0x8524,0x8525,0x8527,0x852a,0x852b,
0x852f,0x8533,0x8534,0x8536,0x853f,0x8546,0x854f,0x8550,
0x8551,0x8552,0x8553,0x8556,0x8559,0x855c,0x855d,0x855e,
0x855f,0x8560,0x8561,0x8562,0x8564,0x856b,0x856f,0x8579,
0x857a,0x857b,0x857d,0x857f,0x8581,0x8585,0x8586,0x8589,
0x858b,0x858c,0x858f,0x8593,0x8598,0x859d,0x859f,0x85a0,
0x85a2,0x85a5,0x85a7,0x85b4,0x85b6,0x85b7,0x85b8,0x85bc,
0x85bd,0x85be,0x85bf,0x85c2,0x85c7,0x85ca,0x85cb,0x85ce,
0x85ad,0x85d8,0x85da,0x85df,0x85e0,0x85e6,0x85e8,0x85ed,
0x85f3,0x85f6,0x85fc,    -1,    -1,    -1,    -1,    -1,
    -1,0x85ff,0x8600,0x8604,0x8605,0x860d,0x860e,0x8610,
0x8611,0x8612,0x8618,0x8619,0x861b,0x861e,0x8621,0x8627,
0x8629,0x8636,0x8638,0x863a,0x863c,0x863d,0x8640,0x8642,
0x8646,0x8652,0x8653,0x8656,0x8657,0x8658,0x8659,0x865d,
0x8660,0x8661,0x8662,0x8663,0x8664,0x8669,0x866c,0x866f,
0x8675,0x8676,0x8677,0x867a,0x868d,0x8691,0x8696,0x8698,
0x869a,0x869c,0x86a1,0x86a6,0x86a7,0x86a8,0x86ad,0x86b1,
0x86b3,0x86b4,0x86b5,0x86b7,0x86b8,0x86b9,0x86bf,0x86c0,
0x86c1,0x86c3,0x86c5,0x86d1,0x86d2,0x86d5,0x86d7,0x86da,
0x86dc,0x86e0,0x86e3,0x86e5,0x86e7,0x8688,0x86fa,0x86fc,
0x86fd,0x8704,0x8705,0x8707,0x870b,0x870e,0x870f,0x8710,
0x8713,0x8714,0x8719,0x871e,0x871f,0x8721,0x8723,    -1,
    -1,    -1,    -1,    -1,    -1,0x8728,0x872e,0x872f,
0x8731,0x8732,0x8739,0x873a,0x873c,0x873d,0x873e,0x8740,
0x8743,0x8745,0x874d,0x8758,0x875d,0x8761,0x8764,0x8765,
0x876f,0x8771,0x8772,0x877b,0x8783,0x8784,0x8785,0x8786,
0x8787,0x8788,0x8789,0x878b,0x878c,0x8790,0x8793,0x8795,
0x8797,0x8798,0x8799,0x879e,0x87a0,0x87a3,0x87a7,0x87ac,
0x87ad,0x87ae,0x87b1,0x87b5,0x87be,0x87bf,0x87c1,0x87c8,
0x87c9,0x87ca,0x87ce,0x87d5,0x87d6,0x87d9,0x87da,0x87dc,
0x87df,0x87e2,0x87e3,0x87e4,0x87ea,0x87eb,0x87ed,0x87f1,
0x87f3,0x87f8,0x87fa,0x87ff,0x8801,0x8803,0x8806,0x8809,
0x880a,0x880b,0x8810,0x8819,0x8812,0x8813,0x8814,0x8818,
0x881a,0x881b,0x881c,0x881e,0x881f,0x8828,0x882d,0x882e,
0x8830,0x8832,0x8835,    -1,    -1,    -1,    -1,    -1,
    -1,0x883a,0x883c,0x8841,0x8843,0x8845,0x8848,0x8849,
0x884a,0x884b,0x884e,0x8851,0x8855,0x8856,0x8858,0x885a,
0x885c,0x885f,0x8860,0x8864,0x8869,0x8871,0x8879,0x887b,
0x8880,0x8898,0x889a,0x889b,0x889c,0x889f,0x88a0,0x88a8,
0x88aa,0x88ba,0x88bd,0x88be,0x88c0,0x88ca,0x88cb,0x88cc,
0x88cd,0x88ce,0x88d1,0x88d2,0x88d3,0x88db,0x88de,0x88e7,
0x88ef,0x88f0,0x88f1,0x88f5,0x88f7,0x8901,0x8906,0x890d,
0x890e,0x890f,0x8915,0x8916,0x8918,0x8919,0x891a,0x891c,
0x8920,0x8926,0x8927,0x8928,0x8930,0x8931,0x8932,0x8935,
0x8939,0x893a,0x893e,0x8940,0x8942,0x8945,0x8946,0x8949,
0x894f,0x8952,0x8957,0x895a,0x895b,0x895c,0x8961,0x8962,
0x8963,0x896b,0x896e,0x8970,0x8973,0x8975,0x897a,    -1,
    -1,    -1,    -1,    -1,    -1,0x897b,0x897c,0x897d,
0x8989,0x898d,0x8990,0x8994,0x8995,0x899b,0x899c,0x899f,
0x89a0,0x89a5,0x89b0,0x89b4,0x89b5,0x89b6,0x89b7,0x89bc,
0x89d4,0x89d5,0x89d6,0x89d7,0x89d8,0x89e5,0x89e9,0x89eb,
0x89ed,0x89f1,0x89f3,0x89f6,0x89f9,0x89fd,0x89ff,0x8a04,
0x8a05,0x8a07,0x8a0f,0x8a11,0x8a12,0x8a14,0x8a15,0x8a1e,
0x8a20,0x8a22,0x8a24,0x8a26,0x8a2b,0x8a2c,0x8a2f,0x8a35,
0x8a37,0x8a3d,0x8a3e,0x8a40,0x8a43,0x8a45,0x8a47,0x8a49,
0x8a4d,0x8a4e,0x8a53,0x8a56,0x8a57,0x8a58,0x8a5c,0x8a5d,
0x8a61,0x8a65,0x8a67,0x8a75,0x8a76,0x8a77,0x8a79,0x8a7a,
0x8a7b,0x8a7e,0x8a7f,0x8a80,0x8a83,0x8a86,0x8a8b,0x8a8f,
0x8a90,0x8a92,0x8a96,0x8a97,0x8a99,0x8a9f,0x8aa7,0x8aa9,
0x8aae,0x8aaf,0x8ab3,    -1,    -1,    -1,    -1,    -1,
    -1,0x8ab6,0x8ab7,0x8abb,0x8abe,0x8ac3,0x8ac6,0x8ac8,
0x8ac9,0x8aca,0x8ad1,0x8ad3,0x8ad4,0x8ad5,0x8ad7,0x8add,
0x8adf,0x8aec,0x8af0,0x8af4,0x8af5,0x8af6,0x8afc,0x8aff,
0x8b05,0x8b06,0x8b0b,0x8b11,0x8b1c,0x8b1e,0x8b1f,0x8b0a,
0x8b2d,0x8b30,0x8b37,0x8b3c,0x8b42,0x8b43,0x8b44,0x8b45,
0x8b46,0x8b48,0x8b52,0x8b53,0x8b54,0x8b59,0x8b4d,0x8b5e,
0x8b63,0x8b6d,0x8b76,0x8b78,0x8b79,0x8b7c,0x8b7e,0x8b81,
0x8b84,0x8b85,0x8b8b,0x8b8d,0x8b8f,0x8b94,0x8b95,0x8b9c,
0x8b9e,0x8b9f,0x8c38,0x8c39,0x8c3d,0x8c3e,0x8c45,0x8c47,
0x8c49,0x8c4b,0x8c4f,0x8c51,0x8c53,0x8c54,0x8c57,0x8c58,
0x8c5b,0x8c5d,0x8c59,0x8c63,0x8c64,0x8c66,0x8c68,0x8c69,
0x8c6d,0x8c73,0x8c75,0x8c76,0x8c7b,0x8c7e,0x8c86,    -1,
    -1,    -1,    -1,    -1,    -1,0x8c87,0x8c8b,0x8c90,
0x8c92,0x8c93,0x8c99,0x8c9b,0x8c9c,0x8ca4,0x8cb9,0x8cba,
0x8cc5,0x8cc6,0x8cc9,0x8ccb,0x8ccf,0x8cd6,0x8cd5,0x8cd9,
0x8cdd,0x8ce1,0x8ce8,0x8cec,0x8cef,0x8cf0,0x8cf2,0x8cf5,
0x8cf7,0x8cf8,0x8cfe,0x8cff,0x8d01,0x8d03,0x8d09,0x8d12,
0x8d17,0x8d1b,0x8d65,0x8d69,0x8d6c,0x8d6e,0x8d7f,0x8d82,
0x8d84,0x8d88,0x8d8d,0x8d90,0x8d91,0x8d95,0x8d9e,0x8d9f,
0x8da0,0x8da6,0x8dab,0x8dac,0x8daf,0x8db2,0x8db5,0x8db7,
0x8db9,0x8dbb,0x8dc0,0x8dc5,0x8dc6,0x8dc7,0x8dc8,0x8dca,
0x8dce,0x8dd1,0x8dd4,0x8dd5,0x8dd7,0x8dd9,0x8de4,0x8de5,
0x8de7,0x8dec,0x8df0,0x8dbc,0x8df1,0x8df2,0x8df4,0x8dfd,
0x8e01,0x8e04,0x8e05,0x8e06,0x8e0b,0x8e11,0x8e14,0x8e16,
0x8e20,0x8e21,0x8e22,    -1,    -1,    -1,    -1,    -1,
    -1,0x8e23,0x8e26,0x8e27,0x8e31,0x8e33,0x8e36,0x8e37,
0x8e38,0x8e39,0x8e3d,0x8e40,0x8e41,0x8e4b,0x8e4d,0x8e4e,
0x8e4f,0x8e54,0x8e5b,0x8e5c,0x8e5d,0x8e5e,0x8e61,0x8e62,
0x8e69,0x8e6c,0x8e6d,0x8e6f,0x8e70,0x8e71,0x8e79,0x8e7a,
0x8e7b,0x8e82,0x8e83,0x8e89,0x8e90,0x8e92,0x8e95,0x8e9a,
0x8e9b,0x8e9d,0x8e9e,0x8ea2,0x8ea7,0x8ea9,0x8ead,0x8eae,
0x8eb3,0x8eb5,0x8eba,0x8ebb,0x8ec0,0x8ec1,0x8ec3,0x8ec4,
0x8ec7,0x8ecf,0x8ed1,0x8ed4,0x8edc,0x8ee8,0x8eee,0x8ef0,
0x8ef1,0x8ef7,0x8ef9,0x8efa,0x8eed,0x8f00,0x8f02,0x8f07,
0x8f08,0x8f0f,0x8f10,0x8f16,0x8f17,0x8f18,0x8f1e,0x8f20,
0x8f21,0x8f23,0x8f25,0x8f27,0x8f28,0x8f2c,0x8f2d,0x8f2e,
0x8f34,0x8f35,0x8f36,0x8f37,0x8f3a,0x8f40,0x8f41,    -1,
    -1,    -1,    -1,    -1,    -1,0x8f43,0x8f47,0x8f4f,
0x8f51,0x8f52,0x8f53,0x8f54,0x8f55,0x8f58,0x8f5d,0x8f5e,
0x8f65,0x8f9d,0x8fa0,0x8fa1,0x8fa4,0x8fa5,0x8fa6,0x8fb5,
0x8fb6,0x8fb8,0x8fbe,0x8fc0,0x8fc1,0x8fc6,0x8fca,0x8fcb,
0x8fcd,0x8fd0,0x8fd2,0x8fd3,0x8fd5,0x8fe0,0x8fe3,0x8fe4,
0x8fe8,0x8fee,0x8ff1,0x8ff5,0x8ff6,0x8ffb,0x8ffe,0x9002,
0x9004,0x9008,0x900c,0x9018,0x901b,0x9028,0x9029,0x902f,
0x902a,0x902c,0x902d,0x9033,0x9034,0x9037,0x903f,0x9043,
0x9044,0x904c,0x905b,0x905d,0x9062,0x9066,0x9067,0x906c,
0x9070,0x9074,0x9079,0x9085,0x9088,0x908b,0x908c,0x908e,
0x9090,0x9095,0x9097,0x9098,0x9099,0x909b,0x90a0,0x90a1,
0x90a2,0x90a5,0x90b0,0x90b2,0x90b3,0x90b4,0x90b6,0x90bd,
0x90cc,0x90be,0x90c3,    -1,    -1,    -1,    -1,    -1,
    -1,0x90c4,0x90c5,0x90c7,0x90c8,0x90d5,0x90d7,0x90d8,
0x90d9,0x90dc,0x90dd,0x90df,0x90e5,0x90d2,0x90f6,0x90eb,
0x90ef,0x90f0,0x90f4,0x90fe,0x90ff,0x9100,0x9104,0x9105,
0x9106,0x9108,0x910d,0x9110,0x9114,0x9116,0x9117,0x9118,
0x911a,0x911c,0x911e,0x9120,0x9125,0x9122,0x9123,0x9127,
0x9129,0x912e,0x912f,0x9131,0x9134,0x9136,0x9137,0x9139,
0x913a,0x913c,0x913d,0x9143,0x9147,0x9148,0x914f,0x9153,
0x9157,0x9159,0x915a,0x915b,0x9161,0x9164,0x9167,0x916d,
0x9174,0x9179,0x917a,0x917b,0x9181,0x9183,0x9185,0x9186,
0x918a,0x918e,0x9191,0x9193,0x9194,0x9195,0x9198,0x919e,
0x91a1,0x91a6,0x91a8,0x91ac,0x91ad,0x91ae,0x91b0,0x91b1,
0x91b2,0x91b3,0x91b6,0x91bb,0x91bc,0x91bd,0x91bf,    -1,
    -1,    -1,    -1,    -1,    -1,0x91c2,0x91c3,0x91c5,
0x91d3,0x91d4,0x91d7,0x91d9,0x91da,0x91de,0x91e4,0x91e5,
0x91e9,0x91ea,0x91ec,0x91ed,0x91ee,0x91ef,0x91f0,0x91f1,
0x91f7,0x91f9,0x91fb,0x91fd,0x9200,0x9201,0x9204,0x9205,
0x9206,0x9207,0x9209,0x920a,0x920c,0x9210,0x9212,0x9213,
0x9216,0x9218,0x921c,0x921d,0x9223,0x9224,0x9225,0x9226,
0x9228,0x922e,0x922f,0x9230,0x9233,0x9235,0x9236,0x9238,
0x9239,0x923a,0x923c,0x923e,0x9240,0x9242,0x9243,0x9246,
0x9247,0x924a,0x924d,0x924e,0x924f,0x9251,0x9258,0x9259,
0x925c,0x925d,0x9260,0x9261,0x9265,0x9267,0x9268,0x9269,
0x926e,0x926f,0x9270,0x9275,0x9276,0x9277,0x9278,0x9279,
0x927b,0x927c,0x927d,0x927f,0x9288,0x9289,0x928a,0x928d,
0x928e,0x9292,0x9297,    -1,    -1,    -1,    -1,    -1,
    -1,0x9299,0x929f,0x92a0,0x92a4,0x92a5,0x92a7,0x92a8,
0x92ab,0x92af,0x92b2,0x92b6,0x92b8,0x92ba,0x92bb,0x92bc,
0x92bd,0x92bf,0x92c0,0x92c1,0x92c2,0x92c3,0x92c5,0x92c6,
0x92c7,0x92c8,0x92cb,0x92cc,0x92cd,0x92ce,0x92d0,0x92d3,
0x92d5,0x92d7,0x92d8,0x92d9,0x92dc,0x92dd,0x92df,0x92e0,
0x92e1,0x92e3,0x92e5,0x92e7,0x92e8,0x92ec,0x92ee,0x92f0,
0x92f9,0x92fb,0x92ff,0x9300,0x9302,0x9308,0x930d,0x9311,
0x9314,0x9315,0x931c,0x931d,0x931e,0x931f,0x9321,0x9324,
0x9325,0x9327,0x9329,0x932a,0x9333,0x9334,0x9336,0x9337,
0x9347,0x9348,0x9349,0x9350,0x9351,0x9352,0x9355,0x9357,
0x9358,0x935a,0x935e,0x9364,0x9365,0x9367,0x9369,0x936a,
0x936d,0x936f,0x9370,0x9371,0x9373,0x9374,0x9376,    -1,
    -1,    -1,    -1,    -1,    -1,0x937a,0x937d,0x937f,
0x9380,0x9381,0x9382,0x9388,0x938a,0x938b,0x938d,0x938f,
0x9392,0x9395,0x9398,0x939b,0x939e,0x93a1,0x93a3,0x93a4,
0x93a6,0x93a8,0x93ab,0x93b4,0x93b5,0x93b6,0x93ba,0x93a9,
0x93c1,0x93c4,0x93c5,0x93c6,0x93c7,0x93c9,0x93ca,0x93cb,
0x93cc,0x93cd,0x93d3,0x93d9,0x93dc,0x93de,0x93df,0x93e2,
0x93e6,0x93e7,0x93f9,0x93f7,0x93f8,0x93fa,0x93fb,0x93fd,
0x9401,0x9402,0x9404,0x9408,0x9409,0x940d,0x940e,0x940f,
0x9415,0x9416,0x9417,0x941f,0x942e,0x942f,0x9431,0x9432,
0x9433,0x9434,0x943b,0x943f,0x943d,0x9443,0x9445,0x9448,
0x944a,0x944c,0x9455,0x9459,0x945c,0x945f,0x9461,0x9463,
0x9468,0x946b,0x946d,0x946e,0x946f,0x9471,0x9472,0x9484,
0x9483,0x9578,0x9579,    -1,    -1,    -1,    -1,    -1,
    -1,0x957e,0x9584,0x9588,0x958c,0x958d,0x958e,0x959d,
0x959e,0x959f,0x95a1,0x95a6,0x95a9,0x95ab,0x95ac,0x95b4,
0x95b6,0x95ba,0x95bd,0x95bf,0x95c6,0x95c8,0x95c9,0x95cb,
0x95d0,0x95d1,0x95d2,0x95d3,0x95d9,0x95da,0x95dd,0x95de,
0x95df,0x95e0,0x95e4,0x95e6,0x961d,0x961e,0x9622,0x9624,
0x9625,0x9626,0x962c,0x9631,0x9633,0x9637,0x9638,0x9639,
0x963a,0x963c,0x963d,0x9641,0x9652,0x9654,0x9656,0x9657,
0x9658,0x9661,0x966e,0x9674,0x967b,0x967c,0x967e,0x967f,
0x9681,0x9682,0x9683,0x9684,0x9689,0x9691,0x9696,0x969a,
0x969d,0x969f,0x96a4,0x96a5,0x96a6,0x96a9,0x96ae,0x96af,
0x96b3,0x96ba,0x96ca,0x96d2,0x5db2,0x96d8,0x96da,0x96dd,
0x96de,0x96df,0x96e9,0x96ef,0x96f1,0x96fa,0x9702,    -1,
    -1,    -1,    -1,    -1,    -1,0x9703,0x9705,0x9709,
0x971a,0x971b,0x971d,0x9721,0x9722,0x9723,0x9728,0x9731,
0x9733,0x9741,0x9743,0x974a,0x974e,0x974f,0x9755,0x9757,
0x9758,0x975a,0x975b,0x9763,0x9767,0x976a,0x976e,0x9773,
0x9776,0x9777,0x9778,0x977b,0x977d,0x977f,0x9780,0x9789,
0x9795,0x9796,0x9797,0x9799,0x979a,0x979e,0x979f,0x97a2,
0x97ac,0x97ae,0x97b1,0x97b2,0x97b5,0x97b6,0x97b8,0x97b9,
0x97ba,0x97bc,0x97be,0x97bf,0x97c1,0x97c4,0x97c5,0x97c7,
0x97c9,0x97ca,0x97cc,0x97cd,0x97ce,0x97d0,0x97d1,0x97d4,
0x97d7,0x97d8,0x97d9,0x97dd,0x97de,0x97e0,0x97db,0x97e1,
0x97e4,0x97ef,0x97f1,0x97f4,0x97f7,0x97f8,0x97fa,0x9807,
0x980a,0x9819,0x980d,0x980e,0x9814,0x9816,0x981c,0x981e,
0x9820,0x9823,0x9826,    -1,    -1,    -1,    -1,    -1,
    -1,0x982b,0x982e,0x982f,0x9830,0x9832,0x9833,0x9835,
0x9825,0x983e,0x9844,0x9847,0x984a,0x9851,0x9852,0x9853,
0x9856,0x9857,0x9859,0x985a,0x9862,0x9863,0x9865,0x9866,
0x986a,0x986c,0x98ab,0x98ad,0x98ae,0x98b0,0x98b4,0x98b7,
0x98b8,0x98ba,0x98bb,0x98bf,0x98c2,0x98c5,0x98c8,0x98cc,
0x98e1,0x98e3,0x98e5,0x98e6,0x98e7,0x98ea,0x98f3,0x98f6,
0x9902,0x9907,0x9908,0x9911,0x9915,0x9916,0x9917,0x991a,
0x991b,0x991c,0x991f,0x9922,0x9926,0x9927,0x992b,0x9931,
0x9932,0x9933,0x9934,0x9935,0x9939,0x993a,0x993b,0x993c,
0x9940,0x9941,0x9946,0x9947,0x9948,0x994d,0x994e,0x9954,
0x9958,0x9959,0x995b,0x995c,0x995e,0x995f,0x9960,0x999b,
0x999d,0x999f,0x99a6,0x99b0,0x99b1,0x99b2,0x99b5,    -1,
    -1,    -1,    -1,    -1,    -1,0x99b9,0x99ba,0x99bd,
0x99bf,0x99c3,0x99c9,0x99d3,0x99d4,0x99d9,0x99da,0x99dc,
0x99de,0x99e7,0x99ea,0x99eb,0x99ec,0x99f0,0x99f4,0x99f5,
0x99f9,0x99fd,0x99fe,0x9a02,0x9a03,0x9a04,0x9a0b,0x9a0c,
0x9a10,0x9a11,0x9a16,0x9a1e,0x9a20,0x9a22,0x9a23,0x9a24,
0x9a27,0x9a2d,0x9a2e,0x9a33,0x9a35,0x9a36,0x9a38,0x9a47,
0x9a41,0x9a44,0x9a4a,0x9a4b,0x9a4c,0x9a4e,0x9a51,0x9a54,
0x9a56,0x9a5d,0x9aaa,0x9aac,0x9aae,0x9aaf,0x9ab2,0x9ab4,
0x9ab5,0x9ab6,0x9ab9,0x9abb,0x9abe,0x9abf,0x9ac1,0x9ac3,
0x9ac6,0x9ac8,0x9ace,0x9ad0,0x9ad2,0x9ad5,0x9ad6,0x9ad7,
0x9adb,0x9adc,0x9ae0,0x9ae4,0x9ae5,0x9ae7,0x9ae9,0x9aec,
0x9af2,0x9af3,0x9af5,0x9af9,0x9afa,0x9afd,0x9aff,0x9b00,
0x9b01,0x9b02,0x9b03,    -1,    -1,    -1,    -1,    -1,
    -1,0x9b04,0x9b05,0x9b08,0x9b09,0x9b0b,0x9b0c,0x9b0d,
0x9b0e,0x9b10,0x9b12,0x9b16,0x9b19,0x9b1b,0x9b1c,0x9b20,
0x9b26,0x9b2b,0x9b2d,0x9b33,0x9b34,0x9b35,0x9b37,0x9b39,
0x9b3a,0x9b3d,0x9b48,0x9b4b,0x9b4c,0x9b55,0x9b56,0x9b57,
0x9b5b,0x9b5e,0x9b61,0x9b63,0x9b65,0x9b66,0x9b68,0x9b6a,
0x9b6b,0x9b6c,0x9b6d,0x9b6e,0x9b73,0x9b75,0x9b77,0x9b78,
0x9b79,0x9b7f,0x9b80,0x9b84,0x9b85,0x9b86,0x9b87,0x9b89,
0x9b8a,0x9b8b,0x9b8d,0x9b8f,0x9b90,0x9b94,0x9b9a,0x9b9d,
0x9b9e,0x9ba6,0x9ba7,0x9ba9,0x9bac,0x9bb0,0x9bb1,0x9bb2,
0x9bb7,0x9bb8,0x9bbb,0x9bbc,0x9bbe,0x9bbf,0x9bc1,0x9bc7,
0x9bc8,0x9bce,0x9bd0,0x9bd7,0x9bd8,0x9bdd,0x9bdf,0x9be5,
0x9be7,0x9bea,0x9beb,0x9bef,0x9bf3,0x9bf7,0x9bf8,    -1,
    -1,    -1,    -1,    -1,    -1,0x9bf9,0x9bfa,0x9bfd,
0x9bff,0x9c00,0x9c02,0x9c0b,0x9c0f,0x9c11,0x9c16,0x9c18,
0x9c19,0x9c1a,0x9c1c,0x9c1e,0x9c22,0x9c23,0x9c26,0x9c27,
0x9c28,0x9c29,0x9c2a,0x9c31,0x9c35,0x9c36,0x9c37,0x9c3d,
0x9c41,0x9c43,0x9c44,0x9c45,0x9c49,0x9c4a,0x9c4e,0x9c4f,
0x9c50,0x9c53,0x9c54,0x9c56,0x9c58,0x9c5b,0x9c5d,0x9c5e,
0x9c5f,0x9c63,0x9c69,0x9c6a,0x9c5c,0x9c6b,0x9c68,0x9c6e,
0x9c70,0x9c72,0x9c75,0x9c77,0x9c7b,0x9ce6,0x9cf2,0x9cf7,
0x9cf9,0x9d0b,0x9d02,0x9d11,0x9d17,0x9d18,0x9d1c,0x9d1d,
0x9d1e,0x9d2f,0x9d30,0x9d32,0x9d33,0x9d34,0x9d3a,0x9d3c,
0x9d45,0x9d3d,0x9d42,0x9d43,0x9d47,0x9d4a,0x9d53,0x9d54,
0x9d5f,0x9d63,0x9d62,0x9d65,0x9d69,0x9d6a,0x9d6b,0x9d70,
0x9d76,0x9d77,0x9d7b,    -1,    -1,    -1,    -1,    -1,
    -1,0x9d7c,0x9d7e,0x9d83,0x9d84,0x9d86,0x9d8a,0x9d8d,
0x9d8e,0x9d92,0x9d93,0x9d95,0x9d96,0x9d97,0x9d98,0x9da1,
0x9daa,0x9dac,0x9dae,0x9db1,0x9db5,0x9db9,0x9dbc,0x9dbf,
0x9dc3,0x9dc7,0x9dc9,0x9dca,0x9dd4,0x9dd5,0x9dd6,0x9dd7,
0x9dda,0x9dde,0x9ddf,0x9de0,0x9de5,0x9de7,0x9de9,0x9deb,
0x9dee,0x9df0,0x9df3,0x9df4,0x9dfe,0x9e0a,0x9e02,0x9e07,
0x9e0e,0x9e10,0x9e11,0x9e12,0x9e15,0x9e16,0x9e19,0x9e1c,
0x9e1d,0x9e7a,0x9e7b,0x9e7c,0x9e80,0x9e82,0x9e83,0x9e84,
0x9e85,0x9e87,0x9e8e,0x9e8f,0x9e96,0x9e98,0x9e9b,0x9e9e,
0x9ea4,0x9ea8,0x9eac,0x9eae,0x9eaf,0x9eb0,0x9eb3,0x9eb4,
0x9eb5,0x9ec6,0x9ec8,0x9ecb,0x9ed5,0x9edf,0x9ee4,0x9ee7,
0x9eec,0x9eed,0x9eee,0x9ef0,0x9ef1,0x9ef2,0x9ef5,    -1,
    -1,    -1,    -1,    -1,    -1,0x9ef8,0x9eff,0x9f02,
0x9f03,0x9f09,0x9f0f,0x9f10,0x9f11,0x9f12,0x9f14,0x9f16,
0x9f17,0x9f19,0x9f1a,0x9f1b,0x9f1f,0x9f22,0x9f26,0x9f2a,
0x9f2b,0x9f2f,0x9f31,0x9f32,0x9f34,0x9f37,0x9f39,0x9f3a,
0x9f3c,0x9f3d,0x9f3f,0x9f41,0x9f43,0x9f44,0x9f45,0x9f46,
0x9f47,0x9f53,0x9f55,0x9f56,0x9f57,0x9f58,0x9f5a,0x9f5d,
0x9f5e,0x9f68,0x9f69,0x9f6d,0x9f6e,0x9f6f,0x9f70,0x9f71,
0x9f73,0x9f75,0x9f7a,0x9f7d,0x9f8f,0x9f90,0x9f91,0x9f92,
0x9f94,0x9f96,0x9f97,0x9f9e,0x9fa1,0x9fa2,0x9fa3,0x9fa5,
};