forked from Perl/perl5
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathuni_keywords.h
7546 lines (7537 loc) · 542 KB
/
uni_keywords.h
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
/* -*- buffer-read-only: t -*-
* !!!!!!! DO NOT EDIT THIS FILE !!!!!!!
* This file is built by regen/mk_invlists.pl from mph.pl.
* Any changes made here will be lost!
*/
#define MPH_VALt I16
/*
rows: 7264
seed: 1348825708
full length of keys: 101931
blob length: 10351
ref length: 58112
data size: 68463 (%67.17)
*/
STATIC const unsigned char mph_blob[] =
"unifiedcanadianaboriginalsyllabicsextendedcjkcompatibilityideogra"
"phssupplementarabicmathematicalalphabeticsymbolscombiningdiacriti"
"calmarksforsymbolscombiningdiacriticalmarkssupplementmiscellaneou"
"ssymbolsandpictographscombiningdiacriticalmarksextendedmiscellane"
"ousmathematicalsymbolsamiscellaneousmathematicalsymbolsbsupplemen"
"talmathematicaloperatorssupplementalsymbolsandpictographsegyptian"
"hieroglyphformatcontrolsideographicdescriptioncharactersideograph"
"icsymbolsandpunctuationmathematicalalphanumericsymbolscjkunifiedi"
"deographsextensionacjkunifiedideographsextensionbcjkunifiedideogr"
"aphsextensionccjkunifiedideographsextensiondcjkunifiedideographse"
"xtensionecjkunifiedideographsextensionfcjkunifiedideographsextens"
"iongcuneiformnumbersandpunctuationenclosedalphanumericsupplements"
"ymbolsandpictographsextendedaenclosedideographicsupplementmiscell"
"aneoussymbolsandarrowsphoneticextensionssupplementsupplementarypr"
"ivateuseareaasupplementaryprivateuseareabvariationselectorssupple"
"mentalphabeticpresentationformsancientgreekmusicalnotationenclose"
"dcjklettersandmonthsopticalcharacterrecognitionprependedconcatena"
"tionmark=changeswhennfkccasefolded=conditionaljapanesestarterdefa"
"ultignorablecodepoint=halfwidthandfullwidthformskatakanaphonetice"
"xtensionsconsonantinitialpostfixedfullcompositionexclusion=supers"
"criptsandsubscriptssymbolsandpictographsextasymbolsforlegacycompu"
"tingarabicpresentationformsaarabicpresentationformsbcanonicalcomb"
"iningclass=cjksymbolsandpunctuationcombiningmarksforsymbolsconson"
"antsucceedingrephahighprivateusesurrogatesindicpositionalcategory"
"=supsymbolsandpictographsbyzantinemusicalsymbolsconsonantprecedin"
"grephageometricshapesextendedhangulcompatibilityjamolatinextended"
"additionalshorthandformatcontrolssupplementalpunctuationbidipaire"
"dbrackettype=changeswhencasefolded=changeswhencasemapped=changesw"
"henlowercased=changeswhentitlecased=changeswhenuppercased=cjkcomp"
"atideographssupcommonindicnumberformsdiacriticalsforsymbolsearlyd"
"ynasticcuneiformindicsyllabiccategory=logicalorderexception=misce"
"llaneoustechnicalnoncharactercodepoint=spacingmodifierletterstran"
"sportandmapsymbolscjkcompatibilityformscjkradicalssupplementcyril"
"licsupplementaryextendedpictographic=graphemeclusterbreak=hanifir"
"ohingyakinnayainscriptionalparthianmeeteimayekextensionspopdirect"
"ionalisolatesinhalaarchaicnumbersyijinghexagramsymbolsanatolianhi"
"eroglyphsconnectorpunctuationconsonantplaceholderconsonantwithsta"
"ckerglagoliticsupplementinscriptionalpahlavilefttorightembeddingn"
"yiakengpuachuehmongpopdirectionalformatrighttoleftembeddingtermin"
"alpunctuation=topandbottomandrightverticalorientation=ancientgree"
"knumbersbrahmijoiningnumberburushaskiyehbarreeconsonantheadletter"
"countingrodnumeralsegyptianhieroglyphsenclosedalphanumsuphangulja"
"moextendedahanguljamoextendedbhangulsyllabletype=idstrinaryoperat"
"or=lefttorightoverridemeroitichieroglyphsmodifiertonelettersmongo"
"liansupplementottomansiyaqnumbersrighttoleftoverridesundanesesupp"
"lementsupplementalarrowsasupplementalarrowsbsupplementalarrowscto"
"pandbottomandleftattachedaboverightcherokeesupplementcombininghal"
"fmarksconsonantsubjoinedcopticepactnumbersdecompositiontype=devan"
"agariextendedemojimodifierbase=emojipresentation=ethiopicsuppleme"
"nteuropeanterminatorfirststrongisolategeneralpunctuationgeorgians"
"upplementidsbinaryoperator=initialpunctuationlatinextadditionalle"
"fttorightisolateornamentaldingbatsparagraphseparatorpatternwhites"
"pace=regionalindicator=righttoleftisolateruminumeralsymbolssmallk"
"anaextensiontaixuanjingsymbolstopandleftandrighttransformedrotate"
"dtransformeduprightvariationselector=alchemicalsymbolsattachedbel"
"owleftcanadiansyllabicscaucasianalbanianconsonantprefixedcyrillic"
"extendedacyrillicextendedbcyrillicextendedcethiopicextendedaeurop"
"eanseparatoridentifierstatus=indicsiyaqnumberskhitansmallscriptle"
"tterlikesymbolsmanichaeandhamedhmanichaeanhundredmanichaeanthamed"
"hscriptextensions=sentenceterminal=smallformvariantssuttonsignwri"
"tingunifiedideograph=arabicsupplementbopomofoextendedcantillation"
"markcloseparenthesisclosepunctuationcypriotsyllabaryfinalpunctuat"
"iongeneralcategory=georgianextendedhalfandfullformshanifirohingya"
"pahighpusurrogatesinvisiblestackerlatin1supplementlinearbideogram"
"slinearbsyllabarymanichaeandalethmanichaeanlamedhmanichaeansamekh"
"manichaeantwentymiscmathsymbolsamiscmathsymbolsbmyanmarextendedam"
"yanmarextendedbotherpunctuationsegmentseparatorsupmathoperatorssy"
"llablemodifiersyriacsupplementtangutcomponentstangutsupplementvow"
"elindependentarabicextendedabamumsupplementboundaryneutralbraille"
"patternscommonseparatorconsonantkillerconsonantmedialcontingentbr"
"eakcontrolpicturescurrencysymbolsdashpunctuationdiacriticalsextdi"
"acriticalssupeastasianwidth=emojicomponent=graphemeextend=hanguls"
"yllablesidentifiertype=imperialaramaiclowercaselettermanichaeanal"
"ephmanichaeangimelmanichaeansadhemanichaeanzayinmeroiticcursivemi"
"scpictographsmodifyingletternfkcquickcheck=nfkdquickcheck=oldnort"
"harabianoldsoutharabianopenpunctuationregistershiftertamilsupplem"
"enttitlecaseletteruppercaselettervedicextensionsvisualorderleftza"
"nabazarsquareancientsymbolsasciihexdigit=carriagereturncaseignora"
"ble=cjkcompatformscomplexcontextconsonantfinalemojimodifier=europ"
"eannumbergeminationmarkgreekandcoptichamzaonhehgoalhighsurrogates"
"kanasupplementkangxiradicalslatinextendedblatinextendedclatinexte"
"ndeddlatinextendedelisusupplementmandatorybreakmanichaeanayinmani"
"chaeanbethmanichaeanfivemanichaeanhethmanichaeankaphmanichaeanqop"
"hmanichaeanreshmanichaeantethmanichaeanyodhmodifiersymbolnfcquick"
"check=nfdquickcheck=nojoininggroupnonspacingmarkpatternsyntax=pho"
"neticextsuppostfixnumericpsalterpahlaviquotationmark=sentencebrea"
"k=spaceseparatorsuppunctuationtehmarbutagoalvoweldependent1000000"
"000000aegeannumbersbidimirrored=blockelementsconsonantdeaddecimal"
"numberenclosingmarkgraphemebase=greekextendediotasubscriptipaexte"
"nsionsjoininggroup=kanaextendedalineseparatorlowsurrogatesmalayal"
"amlllamalayalamnnnamanichaeanmemmanichaeannunmanichaeanonemanicha"
"eantawmanichaeantenmanichaeanwawmayannumeralsmisctechnicalnotappl"
"icablenumericvalue=prefixnumericverticalformsalphabeticpfarabicle"
"tterarabicnumberbidicontrol=breaksymbolschesssymbolscyrillicextac"
"yrillicextbcyrillicextcethiopicextaextendnumletfinalsemkathglueaf"
"terzwjgunjalagondihebrewletterideographic=infixnumericjoincontrol"
"=joiningtype=khmersymbolsletternumbermahjongtilesmalayalambhamala"
"yalamllamalayalamngamalayalamnnamalayalamnyamalayalamssamalayalam"
"ttamanichaeanpemasaramgondimathalphanummendekikakuinoncanonicalno"
"tcharacternotreorderednumberjoinernumerictype=oldhungarianotherne"
"utralphaistosdiscplayingcardsrightjoiningtrailingjamoxidcontinue="
"africannoonalphabetic=breakbeforecasedletterdeprecated=dominotile"
"sdoubleabovedoublebelowdoublequotedualjoiningexclamationinseparab"
"leinseperablejoincausingkanavoicingkatakanaextleadingjamoleftjoin"
"inglvtsyllablemalayalamjamalayalamramedefaidrinmiscsymbolsmyanmar"
"extamyanmarextbnandinagariotherletterothernumberothersymbolpahawh"
"hmongrecommendedrohingyayehsinglequotesoftdotted=sorasompengstrai"
"ghtwawsuperandsubsylotinagritopandrighttransparentuncommonuseyehw"
"ithtailyisyllablesafricanfehafricanqafarabicextabasiclatinbelowri"
"ghtbidiclass=boxdrawingbreakafterchorasmiancjkstrokescompatjamoda"
"lathrishdiacritic=divesakuruhanreadingkharoshthiknottedhehlimited"
"uselinebreak=lowercase=lvsyllablemiscarrowsnonjoiningnonstarterol"
"dpersianoldsogdianoverstruckphoenicianpresentin=purekillerrestric"
"tedreversedpesaurashtrasmallformssuparrowsasuparrowsbsuparrowscun"
"assigneduppercase=warangcitiwordbreak=wordjoineryiradicals-5.00e-"
"01aboveleftambiguousarabicpfaarabicpfbbhaiksukibreakbothemoticons"
"extender=inclusioninheritedkhudawadilatinextblatinextclatinextdmi"
"dlettermidnumletnabataeannewtailuenonjoinerolditalicoldpermicoldt"
"urkicpalmyrenepaucinhausamaritanscontinuesyriacwawvoweljamowsegsp"
"acexidstart=1.00e-011.11e-011.25e-011.25e-021.43e-011.50e+001.50e"
"-011.56e-021.67e-011.88e-012.00e-012.50e+002.50e-012.50e-02200000"
"003.12e-023.13e-023.13e-033.33e-013.50e+003.75e-013.75e-024.00e-0"
"14.17e-014.50e+004.69e-025.00e-025.50e+005.83e-016.00e-016.25e-01"
"6.25e-026.25e-036.50e+006.67e-017.50e+007.50e-018.00e-018.33e-018"
".33e-028.50e+008.75e-019.17e-01armenianavagrahabalinesebassavahbu"
"gineseduployanebasegazextpict=farsiyehfractiongujaratigurmukhihir"
"aganaisolatedjamoextajamoextbjavanesekanaextalinefeedmahajaninext"
"lineobsoleteradical=specialsswashkaftagbanwatifinaghtonemarkugari"
"ticaletterallowedavestanbengalicjkextacjkextbcjkextccjkextdcjkext"
"ecjkextfcjkextgcompex=deseretelbasanelymaicgranthagrbase=hanunooh"
"yphen=kannadakayahlilinearamakasarmandaicmarchenmultaninewlinenfk"
"cqc=nfkdqc=noblocknobreaknotnfkcolchikioletterosmanyaoverlaypatsy"
"n=phagspascript=sharadashaviansiddhamsoyombosuppuaasuppuabtagalog"
"taithamtaiviettibetantirhutaucasextunknownvisargawspace=zwspace21"
"6000300000400000432000500000600000700000800000900000alpha=bidic=b"
"idim=block=carianccc103ccc107ccc118ccc122ccc129ccc130ccc132ccc133"
"chakmacirclecwkcf=ecomp=emoji=epres=gothicgrext=hatranjoinc=kaith"
"ikanbunkhojkilamadhlepchalower=lycianlydiannarrownchar=nfcqc=nfdq"
"c=notxidpatws=qmark=rejangsterm=teluguthaanauideo=upper=viramawan"
"choyezidiyudhhe1/1601/32011/12adlamahex=alaphatermbatakbindubuhid"
"ccc14ccc15ccc16ccc17ccc18ccc19ccc20ccc21ccc22ccc23ccc24ccc25ccc26"
"ccc27ccc28ccc29ccc30ccc31ccc32ccc33ccc34ccc35ccc36ccc84ccc91cntrl"
"cwcf=cwcm=dash=dograemod=falseidsb=idst=inpc=insc=khaphlimbumath="
"maybenuktanushuoghamoriyaosagerunictailetakrivssupxidc=xids=zhain"
"-1/21/101/201/401/641/8010.011.011/212.113.013/215/217/23/163/203"
"/643/805/127/12adlmage=aghbahomalefarmiarmnataratblavstbatkbhksbl"
"k=bpt=buhdcakmcansccc=chrscprtcwl=cwt=cwu=cyrldep=dia=diakdsrtfon"
"tgcb=gonggonmgrekgujrguruhanohluwhmnghmnphst=kalikhmrkitskndakthi"
"lanalaoolatnlinalinbloe=medfmeemmercmiaomlymmroomteimymrnarbnbatn"
"ewankoonshuogamolckorkhoryaosgepcm=phlpphnxplrdprtiqaacqaaiqaphrj"
"ngrohgrunrsamrsarbscx=seensgnwshawshinshrdsogosyrctagstaletalutam"
"ltavttfngtglgthaitibttruev100v110v120v121v130vaiiwchowidexpeoxsux"
"yiiizainzanbzinhzyyyzzzz1/51/71/92/32/520221421822222422622823023"
"22332342403.23/43/54/55.15.25/65/86.16.37.07/89.09/2bc=behci=di=d"
"t=ea=ebgfsigafgc=jg=jt=lb=lrelrilromimnv=ocrpdfrehri=sd=smlsqrtah"
"v20v21v30v31v32v40v41v50v51v52v60v61v62v63v70v80v90vo=vs=wb=yes38"
"39444546474849b2bkh2h3jljvkvl&l_vrxxzlzpzs_perl_problematic_local"
"e_foldeds_is_in_multi_char_fold_perl_folds_to_perl_charname_begin"
"any_foldsquotemetaisxposixisposixblankprintishorizisxperlisperlis"
"spaceisvertisuni";
/* mph_blob length: 10351 */
struct mph_struct {
U16 seed2;
U16 pfx;
U16 sfx;
U8 pfx_len;
U8 sfx_len;
MPH_VALt value;
};
#define MPH_RSHIFT 8
#define MPH_BUCKETS 7264
STATIC const U32 MPH_SEED1 = 0x5065726c;
STATIC const U32 MPH_FNV_CONST = 0x01000193;
/* The comments give the input key for the row it is in */
STATIC const struct mph_struct mph_table[MPH_BUCKETS] = {
{ 2, 9768, 9632, 4, 4, UNI_LINA } /* scx=lina */,
{ 2, 5791, 6572, 13, 4, UNI_JG__NOON } /* joininggroup=noon */,
{ 1, 7325, 9384, 3, 4, UNI_IN__10 } /* in=10.0 */,
{ 2, 9488, 7188, 4, 10, UNI_INKHAROSHTHI } /* blk=kharoshthi */,
{ 1, 1417, 23, 24, 2, UNI_CCC__AL } /* canonicalcombiningclass=al */,
{ 0, 184, 2666, 3, 10, UNI_COUNTINGROD } /* iscountingrod */,
{ 0, 1654, 0, 23, 0, UNI_COMPATJAMO } /* hangulcompatibilityjamo */,
{ 8, 7158, 9836, 10, 4, UNI_DIA } /* diacritic=true */,
{ 2, 8780, 8373, 7, 6, UNI_CJKEXTD } /* block=cjkextd */,
{ 1, 5986, 9973, 13, 3, UNI_NV__5_SLASH_6 } /* numericvalue=5/6 */,
{ 1, 10027, 6323, 3, 5, UNI_JG__GAMAL } /* jg=gamal */,
{ 0, 8900, 0, 6, 0, UNI_KTHI } /* kaithi */,
{ 6, 1537, 2455, 24, 5, UNI_INPC__RIGHT } /* indicpositionalcategory=right */,
{ 0, 7398, 0, 10, 0, UNI_SUPARROWSC } /* suparrowsc */,
{ 1, 9002, 0, 6, 0, UNI_TELU } /* telugu */,
{ 4, 10024, 9503, 3, 2, UNI_MC } /* gc=mc */,
{ 0, 7218, 18, 10, 2, UNI_RI } /* linebreak=ri */,
{ 0, 1856, 0, 21, 0, UNI_CWU } /* changeswhenuppercased */,
{ 1, 2779, 0, 3, 0, UNI_IDS } /* ids */,
{ 8, 10048, 9061, 3, 4, UNI_NV__1_SLASH_12 } /* nv=1/12 */,
{ 0, 10006, 10135, 3, 3, UNI_DI } /* di=yes */,
{ 0, 8780, 5947, 6, 13, UNI_MAYANNUMERALS } /* block=mayannumerals */,
{ 1, 9444, 10108, 4, 3, UNI_AGE__6_DOT_1 } /* age=v61 */,
{ 0, 5186, 0, 14, 0, UNI_HIGHSURROGATES } /* highsurrogates */,
{ 0, 10333, 1528, 3, 8, UNI__PERL_SURROGATE } /* issurrogate */,
{ 1, 7739, 3, 8, 1, -UNI_IDS } /* idstart=f */,
{ 0, 184, 6840, 2, 11, UNI_NAND } /* isnandinagari */,
{ 0, 446, 0, 32, 0, UNI_IDEOGRAPHICSYMBOLS } /* ideographicsymbolsandpunctuation */,
{ 4, 9448, 0, 4, 0, UNI_AGHB } /* aghb */,
{ 3, 3836, 9712, 17, 4, UNI_OSGE } /* scriptextensions=osge */,
{ 0, 9270, 7685, 3, 8, UNI_INPAUCINHAU } /* inpaucinhau */,
{ 0, 10048, 9055, 3, 3, UNI_NV__1_SLASH_3 } /* nv=1/3 */,
{ 7, 1834, 10135, 22, 3, UNI_CWT } /* changeswhentitlecased=yes */,
{ 1, 9768, 8414, 4, 7, UNI_ELBA } /* scx=elbasan */,
{ 4, 8780, 1673, 6, 4, UNI_JAMO } /* block=jamo */,
{ 0, 8688, 5662, 3, 12, UNI_AEGEANNUMBERS } /* isaegeannumbers */,
{ 0, 1552, 5040, 9, 5, UNI_XPOSIXDIGIT } /* category=digit */,
{ 4, 10296, 25, 3, 1, UNI_PS } /* isps */,
{ 0, 1536, 0, 4, 0, UNI_SIND } /* sind */,
{ 0, 1417, 8807, 24, 3, UNI_CCC__118 } /* canonicalcombiningclass=118 */,
{ 5, 8774, 9836, 6, 4, UNI_BIDIM } /* bidim=true */,
{ 2, 9488, 283, 4, 33, UNI_MISCMATHSYMBOLSB } /* blk=miscellaneousmathematicalsymbolsb */,
{ 0, 1823, 0, 9, 0, UNI_XPOSIXLOWER } /* lowercase */,
{ 1, 184, 8924, 2, 4, UNI_LEPC } /* islepc */,
{ 0, 9277, 8243, 3, 8, UNI_SC__MAHJ } /* sc=mahajani */,
{ 1, 9277, 9315, 3, 5, UNI_SC__ORYA } /* sc=oriya */,
{ 3, 9768, 8936, 4, 6, UNI_LYCI } /* scx=lycian */,
{ 1, 5270, 0, 14, 0, UNI_LATINEXTE } /* latinextendede */,
{ 1, 3836, 4448, 17, 4, UNI_BAMU } /* scriptextensions=bamu */,
{ 0, 8267, 26, 8, 1, UNI_RADICAL } /* radical=y */,
{ 0, 32, 0, 2, 0, UNI__PERL_SURROGATE } /* cs */,
{ 16, 1417, 3564, 24, 13, UNI_CCC__202 } /* canonicalcombiningclass=attachedbelow */,
{ 0, 10024, 4943, 3, 15, UNI_TITLE } /* gc=titlecaseletter */,
{ 0, 2182, 406, 21, 7, UNI_GCB__CN } /* graphemeclusterbreak=control */,
{ 1, 6241, 24, 12, 1, UNI_JT__L } /* joiningtype=l */,
{ 0, 10048, 9973, 3, 3, UNI_NV__5_SLASH_6 } /* nv=5/6 */,
{ 1, 21, 7585, 2, 9, UNI_LATINEXTC } /* inlatinextc */,
{ 0, 3836, 9864, 17, 4, UNI_WCHO } /* scriptextensions=wcho */,
{ 1, 3367, 26, 18, 1, UNI__PERL_PATWS } /* patternwhitespace=y */,
{ 0, 8780, 2469, 6, 20, UNI_INNYIAKENGPUACHUEHMONG } /* block=nyiakengpuachuehmong */,
{ 1, 8780, 749, 6, 21, UNI_ENCLOSEDALPHANUM } /* block=enclosedalphanumerics */,
{ 2, 184, 9576, 2, 4, UNI_GURU } /* isguru */,
{ 0, 10333, 9793, 3, 3, UNI_SOGO } /* issogo */,
{ 0, 10048, 7771, 3, 8, UNI_NV__1_SLASH_80 } /* nv=1.25e-02 */,
{ 1, 9444, 9991, 4, 3, UNI_AGE__9 } /* age=9.0 */,
{ 0, 9488, 567, 4, 2, UNI_NB } /* blk=nb */,
{ 0, 9488, 1922, 4, 12, UNI_DIACRITICALS } /* blk=diacriticals */,
{ 13, 1537, 2555, 24, 6, UNI_INPC__BOTTOM } /* indicpositionalcategory=bottom */,
{ 1, 10024, 5497, 3, 11, UNI_MC } /* gc=spacingmark */,
{ 3, 2784, 80, 4, 8, UNI_ARABICMATH } /* inarabicmath */,
{ 0, 5791, 5620, 13, 14, UNI_JG__HAMZAONHEHGOAL } /* joininggroup=tehmarbutagoal */,
{ 32, 4791, 1595, 3, 13, UNI_MUSIC } /* inmusicalsymbols */,
{ 0, 8589, 2329, 7, 20, UNI_HLUW } /* script=anatolianhieroglyphs */,
{ 0, 7088, 3374, 10, 10, UNI_BC__WS } /* bidiclass=whitespace */,
{ 0, 184, 7168, 2, 10, UNI_DIAK } /* isdivesakuru */,
{ 0, 184, 9636, 2, 4, UNI_LINB } /* islinb */,
{ 0, 9488, 7684, 4, 9, UNI_INPAUCINHAU } /* blk=paucinhau */,
{ 0, 6939, 0, 11, 0, UNI_SORA } /* sorasompeng */,
{ 3, 9768, 8131, 4, 8, UNI_DUPL } /* scx=duployan */,
{ 1, 9488, 629, 4, 30, UNI_CJKEXTE } /* blk=cjkunifiedideographsextensione */,
{ 8, 9488, 2098, 4, 21, UNI_CJKCOMPATFORMS } /* blk=cjkcompatibilityforms */,
{ 1, 10290, 96, 6, 5, UNI_XPOSIXALPHA } /* xposixalpha */,
{ 1, 9732, 0, 4, 0, UNI_PRTI } /* prti */,
{ 0, 8589, 3241, 7, 8, UNI_SC__GEOR } /* script=georgian */,
{ 1, 5032, 0, 14, 0, UNI_ahex_values_index } /* asciihexdigit= */,
{ 1, 3529, 36, 18, 1, UNI_VS } /* variationselector=t */,
{ 0, 2569, 409, 20, 2, UNI_VO__TR } /* verticalorientation=tr */,
{ 3, 2182, 6763, 21, 3, UNI_LB__H3 } /* graphemeclusterbreak=lvt */,
{ 1, 9768, 8299, 4, 8, UNI_TFNG } /* scx=tifinagh */,
{ 0, 6553, 0, 11, 0, UNI_XIDC } /* xidcontinue */,
{ 0, 3836, 4793, 17, 15, UNI_MERC } /* scriptextensions=meroiticcursive */,
{ 10, 341, 0, 2, 0, UNI_PE } /* pe */,
{ 1, 3097, 8846, 18, 6, UNI_DT__ENC } /* decompositiontype=circle */,
{ 2, 4688, 6609, 15, 10, UNI_DEP } /* identifiertype=deprecated */,
{ 0, 184, 9231, 3, 3, UNI_CWCF } /* iscwcf */,
{ 2, 8780, 6829, 6, 11, UNI_MYANMAREXTB } /* block=myanmarextb */,
{ 0, 5986, 7781, 13, 1, UNI_NV__4 } /* numericvalue=4 */,
{ 1, 0, 0, 34, 0, UNI_UCAS } /* unifiedcanadianaboriginalsyllabics */,
{ 1, 1417, 3007, 24, 18, UNI_CCC__216 } /* canonicalcombiningclass=attachedaboveright */,
{ 1, 1966, 9090, 22, 5, UNI_INSC__BINDU } /* indicsyllabiccategory=bindu */,
{ 0, 6229, 1025, 12, 2, -UNI_JOINC } /* joincontrol=no */,
{ 2, 9997, 2893, 3, 19, UNI_BC__RLO } /* bc=righttoleftoverride */,
{ 5, 8780, 149, 7, 34, UNI_DIACRITICALSSUP } /* block=combiningdiacriticalmarkssupplement */,
{ 1, 9528, 0, 4, 0, UNI_cwu_values_index } /* cwu= */,
{ 0, 9277, 9440, 3, 4, UNI_SC__ADLM } /* sc=adlm */,
{ 1, 9488, 9032, 4, 6, UNI_INWANCHO } /* blk=wancho */,
{ 7, 10048, 8756, 3, 2, UNI_NV__90 } /* nv=90 */,
{ 0, 9277, 9812, 3, 4, UNI_SC__TAML } /* sc=taml */,
{ 8, 5986, 8720, 13, 6, UNI_NV__400000 } /* numericvalue=400000 */,
{ 1, 10009, 1253, 3, 4, UNI_DT__INIT } /* dt=init */,
{ 0, 7218, 866, 10, 2, UNI_LB__SP } /* linebreak=sp */,
{ 3, 9997, 2449, 3, 11, UNI_BC__L } /* bc=lefttoright */,
{ 2, 3115, 0, 13, 0, UNI_DEVANAGARIEXT } /* devanagariext */,
{ 1, 5791, 3785, 13, 17, UNI_JG__MANICHAEANDHAMEDH } /* joininggroup=manichaeandhamedh */,
{ 1, 9508, 7178, 4, 10, UNI_CCC__6 } /* ccc=hanreading */,
{ 4, 5986, 8750, 13, 3, UNI_NV__800 } /* numericvalue=800 */,
{ 5, 5060, 9255, 14, 5, -UNI_CI } /* caseignorable=false */,
{ 2, 184, 6818, 2, 11, UNI_MYANMAREXTA } /* ismyanmarexta */,
{ 0, 5037, 1, 9, 1, -UNI_XPOSIXXDIGIT } /* hexdigit=n */,
{ 0, 21, 5662, 3, 12, UNI_AEGEANNUMBERS } /* inaegeannumbers */,
{ 1, 4898, 0, 15, 0, UNI_PS } /* openpunctuation */,
{ 8, 5986, 8714, 13, 4, UNI_NV__3000 } /* numericvalue=3000 */,
{ 0, 8589, 9736, 7, 4, UNI_SC__COPT } /* script=qaac */,
{ 0, 7088, 10036, 10, 3, UNI_BC__LRE } /* bidiclass=lre */,
{ 2, 5564, 9836, 14, 4, UNI_QMARK } /* quotationmark=true */,
{ 1, 9277, 9864, 3, 4, UNI_WCHO } /* sc=wcho */,
{ 3, 9508, 7978, 4, 2, UNI_CCC__16 } /* ccc=16 */,
{ 2, 5564, 26, 14, 1, UNI_QMARK } /* quotationmark=y */,
{ 0, 6231, 2120, 3, 20, UNI_CJKRADICALSSUP } /* incjkradicalssupplement */,
{ 7, 10048, 8732, 3, 6, UNI_NV__500000 } /* nv=500000 */,
{ 1, 3836, 9660, 17, 4, UNI_MLYM } /* scriptextensions=mlym */,
{ 0, 1552, 1899, 9, 2, UNI_PC } /* category=pc */,
{ 0, 9768, 78, 4, 4, UNI_ARAB } /* scx=arab */,
{ 21, 10296, 7676, 3, 8, UNI_PALM } /* ispalmyrene */,
{ 0, 27, 0, 2, 0, UNI_LOWERCASELETTER } /* ll */,
{ 1, 1823, 0, 5, 0, UNI_XPOSIXLOWER } /* lower */,
{ 0, 10027, 6349, 3, 12, UNI_JG__MALAYALAMSSA } /* jg=malayalamssa */,
{ 3, 8780, 2203, 6, 14, UNI_INHANIFIROHINGYA } /* block=hanifirohingya */,
{ 2, 184, 8219, 2, 4, UNI_JAVA } /* isjava */,
{ 0, 9488, 4568, 4, 15, UNI_CURRENCYSYMBOLS } /* blk=currencysymbols */,
{ 1, 6420, 1061, 3, 26, UNI_OCR } /* inopticalcharacterrecognition */,
{ 2, 5791, 3802, 13, 17, UNI_JG__MANICHAEANHUNDRED } /* joininggroup=manichaeanhundred */,
{ 16, 1188, 8646, 3, 6, UNI_INTAITHAM } /* intaitham */,
{ 9, 1018, 0, 5, 0, UNI_MUSIC } /* music */,
{ 0, 9488, 7495, 4, 9, UNI_ARABICPFA } /* blk=arabicpfa */,
{ 1, 9260, 0, 5, 0, UNI_idsb_values_index } /* idsb= */,
{ 0, 8589, 9700, 7, 4, UNI_OLCK } /* script=olck */,
{ 0, 1417, 1756, 24, 2, UNI_CCC__BR } /* canonicalcombiningclass=br */,
{ 4, 9270, 472, 3, 2, UNI_PUA } /* inpua */,
{ 0, 184, 9652, 2, 4, UNI_MERC } /* ismerc */,
{ 4, 1189, 0, 3, 0, UNI_nt_values_index } /* nt= */,
{ 8, 9275, 4353, 5, 16, UNI_INSC__SYLLABLEMODIFIER } /* insc=syllablemodifier */,
{ 3, 10288, 2779, 3, 3, UNI_XIDS } /* isxids */,
{ 1, 184, 0, 4, 0, UNI_CE } /* isce */,
{ 3, 8688, 5019, 3, 13, UNI_ANCIENTSYMBOLS } /* isancientsymbols */,
{ 1, 9508, 8823, 5, 4, UNI_CCC__13 } /* ccc=ccc13 */,
{ 1, 9768, 8219, 4, 8, UNI_JAVA } /* scx=javanese */,
{ 2, 8400, 26, 7, 1, UNI_COMPEX } /* compex=y */,
{ 1, 10027, 7016, 3, 11, UNI_JG__YEHWITHTAIL } /* jg=yehwithtail */,
{ 1, 7155, 34, 3, 2, UNI_XPOSIXXDIGIT } /* ishex */,
{ 0, 5986, 7915, 13, 8, UNI_NV__3_SLASH_80 } /* numericvalue=3.75e-02 */,
{ 17, 9997, 1, 4, 1, UNI_BC__BN } /* bc=bn */,
{ 6, 1188, 2077, 3, 21, UNI_TRANSPORTANDMAP } /* intransportandmapsymbols */,
{ 0, 184, 10176, 2, 2, UNI_ZL } /* iszl */,
{ 2, 6469, 11, 12, 2, UNI_NT__DI } /* numerictype=di */,
{ 8, 10033, 7512, 3, 2, UNI_LB__BB } /* lb=bb */,
{ 0, 7325, 9985, 3, 3, UNI_IN__7 } /* in=7.0 */,
{ 0, 2224, 0, 21, 0, UNI_PRTI } /* inscriptionalparthian */,
{ 7, 9768, 9636, 4, 4, UNI_LINB } /* scx=linb */,
{ 1, 8936, 0, 6, 0, UNI_LYCI } /* lycian */,
{ 0, 9997, 3313, 3, 18, UNI_BC__LRI } /* bc=lefttorightisolate */,
{ 2, 8589, 8421, 7, 4, UNI_ELYM } /* script=elym */,
{ 2, 2182, 4305, 21, 5, UNI_GCB__XX } /* graphemeclusterbreak=other */,
{ 1, 8780, 8394, 7, 6, UNI_CJKEXTG } /* block=cjkextg */,
{ 5, 9864, 0, 4, 0, UNI_WCHO } /* wcho */,
{ 0, 9768, 9335, 4, 4, UNI_TAKR } /* scx=takr */,
{ 0, 1828, 0, 6, 0, UNI_cased_values_index } /* cased= */,
{ 2, 184, 4569, 3, 13, UNI_SC } /* iscurrencysymbol */,
{ 2, 8780, 2061, 6, 4, UNI_INMODI } /* block=modi */,
{ 2, 184, 3241, 2, 4, UNI_GEOR } /* isgeor */,
{ 8, 3836, 7651, 17, 4, UNI_ITAL } /* scriptextensions=ital */,
{ 0, 184, 62, 2, 5, UNI_XPOSIXGRAPH } /* isgraph */,
{ 0, 8589, 1628, 7, 4, UNI_SC__PHAG } /* script=phag */,
{ 0, 9014, 1025, 6, 2, -UNI_UIDEO } /* uideo=no */,
{ 2, 979, 0, 27, 0, UNI_ALPHABETICPF } /* alphabeticpresentationforms */,
{ 0, 8589, 2288, 8, 3, UNI_SC__SINH } /* script=sinh */,
{ 2, 8589, 5003, 7, 15, UNI_ZANB } /* script=zanabazarsquare */,
{ 4, 9277, 9704, 3, 4, UNI_ORKH } /* sc=orkh */,
{ 0, 5986, 7899, 13, 8, UNI_NV__7_SLASH_2 } /* numericvalue=3.50e+00 */,
{ 6, 9488, 8673, 4, 7, UNI_UCASEXT } /* blk=ucasext */,
{ 0, 8477, 0, 4, 0, UNI_MAKA } /* maka */,
{ 5, 1417, 8793, 25, 4, UNI_CCC__10 } /* canonicalcombiningclass=ccc10 */,
{ 0, 2245, 0, 14, 0, UNI_MEETEIMAYEKEXT } /* meeteimayekext */,
{ 0, 9277, 8876, 3, 4, UNI_GOTH } /* sc=goth */,
{ 0, 112, 0, 2, 0, UNI_SC } /* sc */,
{ 2, 3836, 9820, 17, 4, UNI_TFNG } /* scriptextensions=tfng */,
{ 1, 10048, 9361, 3, 3, UNI_NV__1_SLASH_2 } /* nv=1/2 */,
{ 11, 8509, 751, 4, 19, UNI_ENCLOSEDALPHANUM } /* inenclosedalphanumerics */,
{ 0, 8780, 3600, 8, 15, UNI_INCAUCASIANALBANIAN } /* block=caucasianalbanian */,
{ 0, 9488, 8171, 4, 8, UNI_INGUJARATI } /* blk=gujarati */,
{ 1, 8780, 2855, 6, 9, UNI_INMONGOLIAN } /* block=mongolian */,
{ 1, 21, 8203, 2, 8, UNI_JAMOEXTA } /* injamoexta */,
{ 5, 4916, 8653, 3, 6, UNI_TAVT } /* istaiviet */,
{ 0, 9488, 250, 4, 33, UNI_MISCMATHSYMBOLSA } /* blk=miscellaneousmathematicalsymbolsa */,
{ 0, 8688, 2469, 3, 2, UNI_ANY } /* isany */,
{ 0, 6241, 7, 12, 1, UNI_JT__C } /* joiningtype=c */,
{ 9, 8786, 0, 6, 0, UNI_CARI } /* carian */,
{ 8, 5256, 0, 14, 0, UNI_LATINEXTD } /* latinextendedd */,
{ 3, 5791, 5179, 13, 3, UNI_JG__HEH } /* joininggroup=heh */,
{ 0, 7218, 414, 10, 11, UNI_LB__ID } /* linebreak=ideographic */,
{ 0, 9277, 8107, 3, 8, UNI_BALI } /* sc=balinese */,
{ 3, 10048, 7835, 3, 8, UNI_NV__5_SLASH_2 } /* nv=2.50e+00 */,
{ 1, 8780, 4273, 6, 16, UNI_MYANMAREXTA } /* block=myanmarextendeda */,
{ 0, 9277, 8888, 3, 4, UNI_HATR } /* sc=hatr */,
{ 1, 7558, 6195, 4, 4, UNI_INHEBREW } /* inhebrew */,
{ 7, 8589, 8187, 7, 8, UNI_SC__HIRA } /* script=hiragana */,
{ 2, 10027, 5410, 3, 14, UNI_JG__MANICHAEANTETH } /* jg=manichaeanteth */,
{ 0, 1417, 10166, 24, 2, UNI_CCC__8 } /* canonicalcombiningclass=kv */,
{ 2, 184, 9640, 2, 3, UNI_LOE } /* isloe */,
{ 0, 8870, 1, 6, 1, -UNI_EPRES } /* epres=n */,
{ 4, 9524, 0, 4, 0, UNI_cwt_values_index } /* cwt= */,
{ 0, 1166, 9255, 26, 5, -UNI_DI } /* defaultignorablecodepoint=false */,
{ 1, 8780, 1922, 6, 12, UNI_DIACRITICALS } /* block=diacriticals */,
{ 13, 3836, 2684, 17, 19, UNI_EGYP } /* scriptextensions=egyptianhieroglyphs */,
{ 2, 8780, 8673, 6, 7, UNI_UCASEXT } /* block=ucasext */,
{ 0, 8780, 8645, 6, 7, UNI_INTAITHAM } /* block=taitham */,
{ 5, 5986, 7843, 13, 8, UNI_NV__1_SLASH_4 } /* numericvalue=2.50e-01 */,
{ 2, 217, 0, 33, 0, UNI_DIACRITICALSEXT } /* combiningdiacriticalmarksextended */,
{ 5, 10024, 6851, 3, 11, UNI_LO } /* gc=otherletter */,
{ 2, 9997, 23, 3, 2, UNI_BC__AL } /* bc=al */,
{ 6, 8780, 2912, 6, 12, UNI_SUNDANESESUP } /* block=sundanesesup */,
{ 1, 3836, 8659, 17, 7, UNI_TIBT } /* scriptextensions=tibetan */,
{ 0, 8645, 0, 7, 0, UNI_LANA } /* taitham */,
{ 2, 9277, 8786, 3, 6, UNI_CARI } /* sc=carian */,
{ 0, 7418, 26, 10, 1, UNI_XPOSIXUPPER } /* uppercase=y */,
{ 20, 7318, 10114, 10, 3, UNI_IN__6_DOT_3 } /* presentin=v63 */,
{ 5, 1188, 3458, 3, 10, UNI_TAIXUANJING } /* intaixuanjing */,
{ 3, 184, 9632, 2, 4, UNI_LINA } /* islina */,
{ 2, 9997, 2489, 3, 20, UNI_BC__PDF } /* bc=popdirectionalformat */,
{ 4, 8780, 8547, 6, 7, UNI_OLCK } /* block=olchiki */,
{ 0, 8942, 0, 4, 0, UNI_LYDI } /* lydi */,
{ 0, 6035, 0, 2, 0, UNI_PF } /* pf */,
{ 7, 9265, 10135, 5, 3, UNI_IDST } /* idst=yes */,
{ 0, 184, 2061, 2, 14, UNI_LM } /* ismodifierletter */,
{ 1, 184, 2287, 2, 21, UNI_SINHALAARCHAICNUMBERS } /* issinhalaarchaicnumbers */,
{ 3, 2569, 471, 20, 2, UNI_VO__TU } /* verticalorientation=tu */,
{ 2, 184, 1631, 2, 18, UNI_GEOMETRICSHAPESEXT } /* isgeometricshapesext */,
{ 4, 10048, 9924, 3, 2, UNI_NV__42 } /* nv=42 */,
{ 2, 184, 339, 2, 2, UNI_LO } /* islo */,
{ 1, 9768, 9330, 4, 5, UNI_TALE } /* scx=taile */,
{ 0, 9277, 6193, 3, 6, UNI_HEBR } /* sc=hebrew */,
{ 1, 184, 8491, 2, 4, UNI_MARC } /* ismarc */,
{ 0, 8780, 467, 6, 11, UNI_INPUNCTUATION } /* block=punctuation */,
{ 16, 9071, 1, 4, 1, -UNI_XPOSIXXDIGIT } /* hex=n */,
{ 1, 9270, 7309, 3, 9, UNI_INPHOENICIAN } /* inphoenician */,
{ 16, 3836, 8414, 17, 7, UNI_ELBA } /* scriptextensions=elbasan */,
{ 0, 3836, 8463, 17, 7, UNI_KALI } /* scriptextensions=kayahli */,
{ 0, 9768, 7188, 4, 4, UNI_KHAR } /* scx=khar */,
{ 0, 10296, 1629, 3, 3, UNI_PHAG } /* isphag */,
{ 2, 5746, 26, 6, 1, UNI_EBASE } /* ebase=y */,
{ 1, 8780, 8315, 6, 8, UNI_INUGARITIC } /* block=ugaritic */,
{ 0, 9277, 9632, 3, 4, UNI_SC__LINA } /* sc=lina */,
{ 5, 8884, 9255, 4, 5, -UNI_EXT } /* ext=false */,
{ 0, 10129, 3, 3, 1, -UNI_VS } /* vs=f */,
{ 3, 9528, 26, 4, 1, UNI_CWU } /* cwu=y */,
{ 1, 6229, 1, 12, 1, -UNI_JOINC } /* joincontrol=n */,
{ 5, 184, 9544, 2, 4, UNI_DIAK } /* isdiak */,
{ 5, 9704, 0, 4, 0, UNI_ORKH } /* orkh */,
{ 0, 9768, 7657, 4, 9, UNI_PERM } /* scx=oldpermic */,
{ 0, 9277, 8291, 3, 8, UNI_SC__TAGB } /* sc=tagbanwa */,
{ 1, 8780, 7531, 6, 9, UNI_EMOTICONS } /* block=emoticons */,
{ 1, 9488, 7504, 4, 9, UNI_ARABICPFB } /* blk=arabicpfb */,
{ 1, 8870, 9836, 6, 4, UNI_EPRES } /* epres=true */,
{ 1, 9270, 0, 5, 0, UNI_inpc_values_index } /* inpc= */,
{ 1, 8694, 9255, 7, 5, -UNI_XPOSIXSPACE } /* wspace=false */,
{ 16, 4791, 2837, 3, 18, UNI_MODIFIERTONELETTERS } /* inmodifiertoneletters */,
{ 1, 9277, 8414, 3, 4, UNI_ELBA } /* sc=elba */,
{ 1, 9768, 9516, 4, 4, UNI_CPRT } /* scx=cprt */,
{ 6, 7318, 10117, 10, 3, UNI_IN__7 } /* presentin=v70 */,
{ 1, 9640, 1025, 4, 2, -UNI_LOE } /* loe=no */,
{ 0, 184, 1587, 2, 1, UNI_Z } /* isz */,
{ 4, 7218, 9557, 10, 2, UNI_LB__CB } /* linebreak=cb */,
{ 16, 9275, 8307, 5, 8, UNI_INSC__TONEMARK } /* insc=tonemark */,
{ 0, 9277, 8936, 3, 6, UNI_LYCI } /* sc=lycian */,
{ 1, 2722, 0, 19, 0, UNI_JAMOEXTA } /* hanguljamoextendeda */,
{ 0, 8512, 17, 8, 1, UNI_NFKCQC__N } /* nfkcqc=no */,
{ 2, 9270, 909, 3, 13, UNI_PUA } /* inprivateusearea */,
{ 0, 9275, 5700, 5, 13, UNI_INSC__CONSONANTDEAD } /* insc=consonantdead */,
{ 2, 9484, 0, 4, 0, UNI_BHKS } /* bhks */,
{ 7, 9768, 4448, 4, 5, UNI_BAMU } /* scx=bamum */,
{ 1, 8589, 3115, 7, 10, UNI_SC__DEVA } /* script=devanagari */,
{ 0, 8852, 0, 6, 0, UNI_cwkcf_values_index } /* cwkcf= */,
{ 2, 6805, 2014, 6, 18, UNI_MISCTECHNICAL } /* inmiscellaneoustechnical */,
{ 4, 8589, 4001, 7, 7, UNI_SC__CPRT } /* script=cypriot */,
{ 4, 9488, 1192, 4, 26, UNI_HALFANDFULLFORMS } /* blk=halfwidthandfullwidthforms */,
{ 2, 8780, 5550, 6, 14, UNI_INPSALTERPAHLAVI } /* block=psalterpahlavi */,
{ 3, 132, 0, 2, 0, UNI_LM } /* lm */,
{ 16, 5986, 7851, 13, 8, UNI_NV__1_SLASH_40 } /* numericvalue=2.50e-02 */,
{ 2, 8780, 8442, 6, 7, UNI_INHANUNOO } /* block=hanunoo */,
{ 1, 9275, 8687, 5, 7, UNI_INSC__VISARGA } /* insc=visarga */,
{ 4, 10033, 8449, 3, 2, UNI_LB__HY } /* lb=hy */,
{ 0, 6805, 861, 6, 6, UNI_MISCARROWS } /* inmiscarrows */,
{ 0, 9488, 599, 4, 30, UNI_CJKEXTD } /* blk=cjkunifiedideographsextensiond */,
{ 0, 9277, 4478, 3, 7, UNI_BRAI } /* sc=braille */,
{ 0, 10033, 25, 3, 2, UNI_LB__SY } /* lb=sy */,
{ 0, 7325, 0, 3, 0, UNI_in_values_index } /* in= */,
{ 2, 7249, 533, 4, 2, UNI_CANS } /* iscans */,
{ 0, 4542, 1633, 4, 16, UNI_GEOMETRICSHAPESEXT } /* ingeometricshapesext */,
{ 3, 9488, 3598, 4, 17, UNI_INCAUCASIANALBANIAN } /* blk=caucasianalbanian */,
{ 1, 3836, 3241, 17, 4, UNI_GEOR } /* scriptextensions=geor */,
{ 0, 4033, 7408, 16, 10, UNI_CN } /* generalcategory=unassigned */,
{ 1, 2224, 3871, 3, 16, UNI_SMALLFORMS } /* insmallformvariants */,
{ 0, 3836, 4145, 17, 7, UNI_LINB } /* scriptextensions=linearb */,
{ 2, 9768, 2140, 4, 8, UNI_CYRL } /* scx=cyrillic */,
{ 0, 9070, 10135, 5, 3, UNI_POSIXXDIGIT } /* ahex=yes */,
{ 10, 8589, 6409, 7, 4, UNI_MEND } /* script=mend */,
{ 1, 6609, 0, 11, 0, UNI_dep_values_index } /* deprecated= */,
{ 0, 9277, 8491, 3, 7, UNI_MARC } /* sc=marchen */,
{ 2, 9508, 9101, 5, 4, UNI_CCC__14 } /* ccc=ccc14 */,
{ 5, 184, 3887, 2, 17, UNI_SUTTONSIGNWRITING } /* issuttonsignwriting */,
{ 1, 21, 9325, 2, 5, UNI_INRUNIC } /* inrunic */,
{ 2, 10024, 8855, 3, 2, UNI_CF } /* gc=cf */,
{ 8, 1417, 8823, 25, 4, UNI_CCC__13 } /* canonicalcombiningclass=ccc13 */,
{ 5, 4113, 25, 3, 1, UNI_INVS } /* invs */,
{ 2, 5986, 8011, 13, 8, UNI_NV__13_SLASH_2 } /* numericvalue=6.50e+00 */,
{ 2, 4853, 1, 15, 1, UNI_NFKDQC__N } /* nfkdquickcheck=n */,
{ 0, 10027, 4209, 3, 16, UNI_JG__MANICHAEANSAMEKH } /* jg=manichaeansamekh */,
{ 1, 569, 0, 30, 0, UNI_CJKEXTC } /* cjkunifiedideographsextensionc */,
{ 2, 9345, 9255, 5, 5, -UNI_XIDC } /* xidc=false */,
{ 1, 9488, 8936, 4, 6, UNI_INLYCIAN } /* blk=lycian */,
{ 0, 184, 3151, 2, 17, UNI_EPRES } /* isemojipresentation */,
{ 1, 8978, 1025, 6, 2, -UNI__PERL_PATWS } /* patws=no */,
{ 1, 10033, 7522, 3, 9, UNI_LB__B2 } /* lb=breakboth */,
{ 2, 1417, 2809, 24, 2, UNI_CCC__1 } /* canonicalcombiningclass=ov */,
{ 1, 8780, 8387, 7, 6, UNI_CJKEXTF } /* block=cjkextf */,
{ 3, 9015, 26, 5, 1, UNI_IDEO } /* ideo=y */,
{ 0, 1552, 6598, 9, 11, UNI_CASEDLETTER } /* category=casedletter */,
{ 1, 9540, 1025, 4, 2, -UNI_DIA } /* dia=no */,
{ 0, 21, 5830, 2, 13, UNI_LOWSURROGATES } /* inlowsurrogates */,
{ 0, 3259, 26, 18, 1, UNI_IDSB } /* idsbinaryoperator=y */,
{ 0, 57, 0, 2, 0, UNI_YI } /* yi */,
{ 1, 184, 2817, 2, 19, UNI_MERO } /* ismeroitichieroglyphs */,
{ 1, 8589, 9804, 7, 4, UNI_SC__TALE } /* script=tale */,
{ 2, 6609, 1, 11, 1, -UNI_DEP } /* deprecated=n */,
{ 2, 5986, 9055, 13, 4, UNI_NV__1_SLASH_32 } /* numericvalue=1/32 */,
{ 0, 9262, 400, 3, 6, UNI_SB__FO } /* sb=format */,
{ 8, 8780, 8414, 6, 7, UNI_INELBASAN } /* block=elbasan */,
{ 0, 7088, 6049, 10, 12, UNI_BC__AN } /* bidiclass=arabicnumber */,
{ 1, 10048, 9364, 3, 4, UNI_NV__1_SLASH_10 } /* nv=1/10 */,
{ 0, 8780, 6961, 6, 11, UNI_SUPERANDSUB } /* block=superandsub */,
{ 3, 184, 5284, 2, 14, UNI_LISUSUP } /* islisusupplement */,
{ 7, 9492, 7, 4, 1, UNI_BPT__C } /* bpt=c */,
{ 8, 9768, 8414, 4, 4, UNI_ELBA } /* scx=elba */,
{ 5, 10024, 467, 3, 5, UNI_P } /* gc=punct */,
{ 0, 1966, 8099, 22, 8, UNI_INSC__AVAGRAHA } /* indicsyllabiccategory=avagraha */,
{ 3, 9275, 4523, 5, 15, UNI_INSC__CONSONANTMEDIAL } /* insc=consonantmedial */,
{ 1, 8589, 9680, 7, 4, UNI_NBAT } /* script=nbat */,
{ 1, 10048, 7747, 3, 8, UNI_NV__1_SLASH_10 } /* nv=1.00e-01 */,
{ 1, 9488, 4065, 4, 16, UNI_HALFANDFULLFORMS } /* blk=halfandfullforms */,
{ 11, 7438, 8139, 10, 8, UNI_WB__EB } /* wordbreak=ebasegaz */,
{ 0, 2224, 2970, 3, 18, UNI_SUPARROWSC } /* insupplementalarrowsc */,
{ 0, 9524, 26, 4, 1, UNI_CWT } /* cwt=y */,
{ 1, 9277, 9572, 3, 4, UNI_SC__GUJR } /* sc=gujr */,
{ 4, 1552, 107, 10, 5, UNI_S } /* category=symbol */,
{ 0, 10048, 5648, 3, 4, UNI_NV__1000 } /* nv=1000 */,
{ 0, 10009, 8163, 3, 3, UNI_DT__FRA } /* dt=fra */,
{ 0, 7558, 0, 9, 0, UNI_QAAI } /* inherited */,
{ 3, 1768, 26, 22, 1, UNI_CWCF } /* changeswhencasefolded=y */,
{ 0, 3836, 2913, 18, 8, UNI_SUND } /* scriptextensions=sundanese */,
{ 10, 9277, 8547, 3, 7, UNI_OLCK } /* sc=olchiki */,
{ 0, 9488, 42, 4, 16, UNI_CJKCOMPAT } /* blk=cjkcompatibility */,
{ 2, 3836, 8315, 17, 4, UNI_UGAR } /* scriptextensions=ugar */,
{ 0, 8996, 0, 7, 0, UNI_STERM } /* sterm=t */,
{ 0, 9488, 4928, 4, 15, UNI_TAMILSUP } /* blk=tamilsupplement */,
{ 0, 3836, 7558, 17, 9, UNI_QAAI } /* scriptextensions=inherited */,
{ 0, 1552, 17, 10, 1, UNI_SO } /* category=so */,
{ 0, 9277, 7675, 3, 4, UNI_PALM } /* sc=palm */,
{ 0, 8780, 7513, 6, 9, UNI_INBHAIKSUKI } /* block=bhaiksuki */,
{ 1, 9250, 0, 5, 0, UNI_emod_values_index } /* emod= */,
{ 4, 8589, 719, 7, 9, UNI_XSUX } /* script=cuneiform */,
{ 0, 9240, 1025, 5, 2, -UNI_DASH } /* dash=no */,
{ 3, 8780, 6807, 6, 11, UNI_MISCSYMBOLS } /* block=miscsymbols */,
{ 1, 10048, 9055, 3, 5, UNI_NV__1_SLASH_320 } /* nv=1/320 */,
{ 1, 4628, 9, 15, 2, UNI_EA__NA } /* eastasianwidth=na */,
{ 0, 184, 1673, 2, 4, UNI_JAMO } /* isjamo */,
{ 3, 7155, 4098, 3, 15, UNI_HIGHPUSURROGATES } /* ishighpusurrogates */,
{ 3, 2779, 36, 19, 1, UNI_IDST } /* idstrinaryoperator=t */,
{ 2, 10027, 7348, 3, 10, UNI_JG__REVERSEDPE } /* jg=reversedpe */,
{ 6, 9488, 2224, 4, 21, UNI_ININSCRIPTIONALPARTHIAN } /* blk=inscriptionalparthian */,
{ 1, 7088, 0, 10, 0, UNI_bc_values_index } /* bidiclass= */,
{ 0, 8589, 8291, 7, 8, UNI_SC__TAGB } /* script=tagbanwa */,
{ 0, 4033, 10180, 16, 2, UNI_ZS } /* generalcategory=zs */,
{ 0, 8780, 1631, 6, 18, UNI_GEOMETRICSHAPESEXT } /* block=geometricshapesext */,
{ 0, 7318, 10111, 10, 3, UNI_IN__6_DOT_2 } /* presentin=v62 */,
{ 0, 8894, 1025, 6, 2, -UNI_JOINC } /* joinc=no */,
{ 2, 3836, 1115, 17, 4, UNI_HANG } /* scriptextensions=hang */,
{ 2, 9596, 9, 4, 2, UNI_HST__NA } /* hst=na */,
{ 1, 8780, 250, 6, 33, UNI_MISCMATHSYMBOLSA } /* block=miscellaneousmathematicalsymbolsa */,
{ 3, 10009, 2280, 3, 3, UNI_DT__ISO } /* dt=iso */,
{ 4, 9488, 5752, 4, 13, UNI_GREEKEXT } /* blk=greekextended */,
{ 17, 7378, 0, 10, 0, UNI_SUPARROWSA } /* suparrowsa */,
{ 2, 9520, 0, 3, 0, UNI_CWL } /* cwl */,
{ 2, 9556, 10174, 4, 2, UNI_GCB__XX } /* gcb=xx */,
{ 1, 10048, 7781, 3, 2, UNI_NV__43 } /* nv=43 */,
{ 1, 8780, 3115, 6, 13, UNI_DEVANAGARIEXT } /* block=devanagariext */,
{ 4, 3836, 6253, 17, 5, UNI_KHMR } /* scriptextensions=khmer */,
{ 8, 3836, 2288, 18, 6, UNI_SINH } /* scriptextensions=sinhala */,
{ 0, 10048, 10144, 3, 2, UNI_NV__45 } /* nv=45 */,
{ 42, 9488, 569, 4, 30, UNI_CJKEXTC } /* blk=cjkunifiedideographsextensionc */,
{ 9, 9536, 26, 4, 1, UNI_DEP } /* dep=y */,
{ 0, 1790, 26, 22, 1, UNI_CWCM } /* changeswhencasemapped=y */,
{ 2, 10048, 8710, 3, 4, UNI_NV__6000 } /* nv=6000 */,
{ 10, 9262, 1159, 3, 2, UNI_SB__ST } /* sb=st */,
{ 0, 21, 4129, 2, 16, UNI_LATIN1 } /* inlatin1supplement */,
{ 1, 3836, 7288, 17, 10, UNI_SOGO } /* scriptextensions=oldsogdian */,
{ 0, 21, 3295, 2, 9, UNI_LATINEXTA } /* inlatinexta */,
{ 1, 184, 9600, 2, 4, UNI_KALI } /* iskali */,
{ 3, 1552, 3359, 10, 8, UNI_Z } /* category=separator */,
{ 12, 5986, 5648, 13, 13, UNI_NV__1000000000000 } /* numericvalue=1000000000000 */,
{ 2, 3382, 26, 3, 1, UNI_CE } /* ce=y */,
{ 1, 5214, 0, 14, 0, UNI_KANGXI } /* kangxiradicals */,
{ 4, 9716, 9836, 4, 4, UNI_PCM } /* pcm=true */,
{ 0, 10132, 10174, 3, 2, UNI_WB__XX } /* wb=xx */,
{ 3, 8780, 6840, 6, 11, UNI_INNANDINAGARI } /* block=nandinagari */,
{ 0, 8589, 2608, 7, 6, UNI_BRAH } /* script=brahmi */,
{ 2, 9277, 9636, 3, 4, UNI_SC__LINB } /* sc=linb */,
{ 0, 3169, 0, 18, 0, UNI_ETHIOPICSUP } /* ethiopicsupplement */,
{ 2, 2224, 2913, 3, 11, UNI_SUNDANESESUP } /* insundanesesup */,
{ 2, 9275, 5102, 5, 14, UNI_INSC__CONSONANTFINAL } /* insc=consonantfinal */,
{ 0, 8780, 1906, 6, 16, UNI_INDICNUMBERFORMS } /* block=indicnumberforms */,
{ 5, 8780, 3547, 6, 10, UNI_ALCHEMICAL } /* block=alchemical */,
{ 0, 8780, 316, 6, 33, UNI_SUPMATHOPERATORS } /* block=supplementalmathematicaloperators */,
{ 3, 21, 8942, 2, 6, UNI_INLYDIAN } /* inlydian */,
{ 2, 9277, 2140, 3, 8, UNI_SC__CYRL } /* sc=cyrillic */,
{ 0, 1867, 0, 9, 0, UNI_XPOSIXUPPER } /* uppercase */,
{ 6, 7088, 865, 10, 2, UNI_BC__WS } /* bidiclass=ws */,
{ 1, 4033, 1287, 16, 2, UNI_UPPERCASELETTER } /* generalcategory=lu */,
{ 6, 7218, 6675, 10, 11, UNI_LB__EX } /* linebreak=exclamation */,
{ 0, 8589, 1900, 7, 6, UNI_SC__ZYYY } /* script=common */,
{ 1, 9768, 8428, 4, 4, UNI_GRAN } /* scx=gran */,
{ 0, 8596, 0, 7, 0, UNI_SHRD } /* sharada */,
{ 3, 1537, 3475, 24, 18, UNI_INPC__TOPANDLEFTANDRIGHT } /* indicpositionalcategory=topandleftandright */,
{ 1, 9488, 8942, 4, 6, UNI_INLYDIAN } /* blk=lydian */,
{ 0, 1552, 4305, 9, 5, UNI_C } /* category=other */,
{ 0, 9277, 8876, 3, 6, UNI_GOTH } /* sc=gothic */,
{ 0, 184, 7531, 2, 9, UNI_EMOTICONS } /* isemoticons */,
{ 0, 1966, 4508, 22, 15, UNI_INSC__CONSONANTKILLER } /* indicsyllabiccategory=consonantkiller */,
{ 1, 9556, 5746, 4, 5, UNI_WB__EB } /* gcb=ebase */,
{ 3, 9277, 6481, 3, 12, UNI_HUNG } /* sc=oldhungarian */,
{ 0, 4643, 0, 14, 0, UNI_ECOMP } /* emojicomponent */,
{ 3, 2224, 8618, 3, 6, UNI_INSOYOMBO } /* insoyombo */,
{ 5, 8780, 2817, 6, 19, UNI_MERO } /* block=meroitichieroglyphs */,
{ 3, 8435, 1, 7, 1, -UNI_GRBASE } /* grbase=n */,
{ 7, 8512, 0, 8, 0, UNI_NFKCQC__N } /* nfkcqc=n */,
{ 0, 48, 0, 1, 0, UNI_P } /* p */,
{ 1, 1812, 1025, 22, 2, -UNI_CWL } /* changeswhenlowercased=no */,
{ 0, 7155, 2204, 3, 3, UNI_HAN } /* ishani */,
{ 1, 9270, 2994, 5, 13, UNI_INPC__BOTTOMANDLEFT } /* inpc=bottomandleft */,
{ 0, 184, 8456, 2, 7, UNI_KNDA } /* iskannada */,
{ 0, 8762, 36, 6, 1, UNI_XPOSIXALPHA } /* alpha=t */,
{ 2, 3937, 0, 11, 0, UNI_BOPOMOFOEXT } /* bopomofoext */,
{ 7, 10024, 1066, 3, 2, UNI_CASEDLETTER } /* gc=lc */,
{ 2, 8477, 0, 7, 0, UNI_MAKA } /* makasar */,
{ 0, 9488, 2140, 4, 21, UNI_CYRILLICSUP } /* blk=cyrillicsupplementary */,
{ 0, 8780, 446, 6, 18, UNI_IDEOGRAPHICSYMBOLS } /* block=ideographicsymbols */,
{ 0, 9488, 9285, 4, 5, UNI_INLIMBU } /* blk=limbu */,
{ 1, 5986, 7795, 13, 8, UNI_NV__3_SLASH_20 } /* numericvalue=1.50e-01 */,
{ 0, 1417, 7477, 24, 9, UNI_CCC__AL } /* canonicalcombiningclass=aboveleft */,
{ 0, 9997, 3700, 3, 17, UNI_BC__ES } /* bc=europeanseparator */,
{ 2, 184, 6972, 2, 11, UNI_SYLO } /* issylotinagri */,
{ 0, 5032, 9255, 14, 5, -UNI_POSIXXDIGIT } /* asciihexdigit=false */,
{ 3, 8688, 3923, 4, 7, UNI_ARABICSUP } /* isarabicsup */,
{ 0, 8780, 2931, 6, 19, UNI_SUPARROWSA } /* block=supplementalarrowsa */,
{ 2, 9488, 2308, 4, 21, UNI_YIJING } /* blk=yijinghexagramsymbols */,
{ 0, 5661, 0, 13, 0, UNI_AEGEANNUMBERS } /* aegeannumbers */,
{ 5, 7076, 4479, 3, 6, UNI_BRAI } /* inbraille */,
{ 0, 184, 4245, 2, 10, UNI_SM } /* ismathsymbol */,
{ 13, 8780, 1585, 6, 14, UNI_BYZANTINEMUSIC } /* block=byzantinemusic */,
{ 0, 9508, 9106, 5, 4, UNI_CCC__15 } /* ccc=ccc15 */,
{ 2, 9768, 4385, 4, 6, UNI_TANG } /* scx=tangut */,
{ 3, 1537, 3343, 4, 6, UNI_DINGBATS } /* indingbats */,
{ 8, 9488, 2054, 4, 22, UNI_MODIFIERLETTERS } /* blk=spacingmodifierletters */,
{ 4, 539, 0, 30, 0, UNI_CJKEXTB } /* cjkunifiedideographsextensionb */,
{ 1, 184, 3439, 2, 12, UNI_SMALLKANAEXT } /* issmallkanaext */,
{ 0, 1269, 3, 25, 1, -UNI_COMPEX } /* fullcompositionexclusion=f */,
{ 26, 9275, 2646, 5, 19, UNI_INSC__CONSONANTHEADLETTER } /* insc=consonantheadletter */,
{ 1, 5986, 9428, 13, 4, UNI_NV__3_SLASH_80 } /* numericvalue=3/80 */,
{ 0, 8780, 8352, 7, 6, UNI_CJKEXTA } /* block=cjkexta */,
{ 1, 8884, 26, 4, 1, UNI_EXT } /* ext=y */,
{ 0, 9997, 8, 3, 2, UNI_BC__AN } /* bc=an */,
{ 6, 9736, 0, 4, 0, UNI_COPT } /* qaac */,
{ 0, 3097, 5012, 18, 6, UNI_DT__SQR } /* decompositiontype=square */,
{ 1, 2119, 0, 21, 0, UNI_CJKRADICALSSUP } /* cjkradicalssupplement */,
{ 0, 10048, 5648, 3, 6, UNI_NV__100000 } /* nv=100000 */,
{ 9, 9270, 3481, 5, 12, UNI_INPC__LEFTANDRIGHT } /* inpc=leftandright */,
{ 0, 8589, 2469, 7, 20, UNI_HMNP } /* script=nyiakengpuachuehmong */,
{ 4, 9488, 6277, 4, 7, UNI_MAHJONG } /* blk=mahjong */,
{ 6, 1552, 341, 9, 2, UNI_PE } /* category=pe */,
{ 0, 3097, 8533, 18, 7, UNI_DT__NB } /* decompositiontype=nobreak */,
{ 0, 3836, 6940, 18, 10, UNI_SORA } /* scriptextensions=sorasompeng */,
{ 0, 4033, 467, 16, 5, UNI_P } /* generalcategory=punct */,
{ 0, 8780, 3870, 6, 17, UNI_SMALLFORMS } /* block=smallformvariants */,
{ 3, 10333, 2913, 3, 3, UNI_SUND } /* issund */,
{ 2, 10024, 727, 3, 2, UNI_MN } /* gc=mn */,
{ 2, 6231, 43, 3, 8, UNI_CJKCOMPAT } /* incjkcompat */,
{ 17, 8589, 9797, 8, 3, UNI_SC__SYRC } /* script=syrc */,
{ 1, 1417, 8811, 25, 4, UNI_CCC__12 } /* canonicalcombiningclass=ccc12 */,
{ 1, 3379, 36, 6, 1, UNI_XPOSIXSPACE } /* space=t */,
{ 1, 10296, 1867, 7, 5, UNI_POSIXUPPER } /* isposixupper */,
{ 1, 3259, 3, 18, 1, -UNI_IDSB } /* idsbinaryoperator=f */,
{ 3, 1417, 3007, 24, 13, UNI_CCC__214 } /* canonicalcombiningclass=attachedabove */,
{ 1, 7028, 9039, 3, 5, UNI_YEZI } /* isyezidi */,
{ 4, 7218, 4360, 10, 9, UNI_EMOD } /* linebreak=emodifier */,
{ 1, 1417, 2455, 24, 5, UNI_CCC__R } /* canonicalcombiningclass=right */,
{ 0, 1273, 10135, 21, 3, UNI_CE } /* compositionexclusion=yes */,
{ 1, 8780, 8603, 6, 7, UNI_SHAW } /* block=shavian */,
{ 3, 9768, 8876, 4, 4, UNI_GOTH } /* scx=goth */,
{ 4, 2182, 0, 21, 0, UNI_gcb_values_index } /* graphemeclusterbreak= */,
{ 0, 8780, 8652, 6, 7, UNI_INTAIVIET } /* block=taiviet */,
{ 8, 9886, 5006, 5, 12, UNI_INZANABAZARSQUARE } /* inzanabazarsquare */,
{ 0, 8589, 8638, 7, 7, UNI_SC__TGLG } /* script=tagalog */,
{ 16, 1768, 1025, 22, 2, -UNI_CWCF } /* changeswhencasefolded=no */,
{ 1, 2224, 2951, 3, 18, UNI_SUPARROWSB } /* insupplementalarrowsb */,
{ 0, 6553, 36, 12, 1, UNI_XIDC } /* xidcontinue=t */,
{ 1, 9564, 0, 4, 0, UNI_GONM } /* gonm */,
{ 7, 8780, 8131, 6, 8, UNI_INDUPLOYAN } /* block=duployan */,
{ 1, 9768, 8786, 4, 4, UNI_CARI } /* scx=cari */,
{ 3, 9277, 1654, 3, 6, UNI_SC__HANG } /* sc=hangul */,
{ 0, 184, 3421, 2, 4, UNI_RUMI } /* isrumi */,
{ 3, 9768, 2817, 4, 4, UNI_MERO } /* scx=mero */,
{ 0, 184, 3785, 2, 4, UNI_MANI } /* ismani */,
{ 11, 9488, 5606, 4, 14, UNI_SUPPUNCTUATION } /* blk=suppunctuation */,
{ 1, 10250, 6556, 15, 8, UNI__PERL_CHARNAME_CONTINUE } /* _perl_charname_continue */,
{ 0, 8780, 8561, 6, 7, UNI_INOSMANYA } /* block=osmanya */,
{ 1, 10027, 9044, 3, 6, UNI_JG__YUDHHE } /* jg=yudhhe */,
{ 0, 9768, 8652, 4, 7, UNI_TAVT } /* scx=taiviet */,
{ 0, 10012, 1192, 3, 9, UNI_EA__H } /* ea=halfwidth */,
{ 3, 3836, 9704, 17, 4, UNI_ORKH } /* scriptextensions=orkh */,
{ 1, 7318, 10108, 10, 3, UNI_IN__6_DOT_1 } /* presentin=v61 */,
{ 12, 5791, 6349, 13, 12, UNI_JG__MALAYALAMSSA } /* joininggroup=malayalamssa */,
{ 0, 10048, 8744, 3, 4, UNI_NV__7000 } /* nv=7000 */,
{ 0, 3367, 36, 18, 1, UNI__PERL_PATWS } /* patternwhitespace=t */,
{ 0, 4853, 0, 15, 0, UNI_nfkdqc_values_index } /* nfkdquickcheck= */,
{ 2, 9488, 809, 4, 29, UNI_ENCLOSEDIDEOGRAPHICSUP } /* blk=enclosedideographicsupplement */,
{ 4, 184, 749, 2, 30, UNI_ENCLOSEDALPHANUMSUP } /* isenclosedalphanumericsupplement */,
{ 1, 9020, 10135, 6, 3, UNI_XPOSIXUPPER } /* upper=yes */,
{ 1, 5986, 8750, 13, 5, UNI_NV__80000 } /* numericvalue=80000 */,
{ 0, 9768, 8171, 4, 8, UNI_GUJR } /* scx=gujarati */,
{ 0, 3379, 10135, 6, 3, UNI_XPOSIXSPACE } /* space=yes */,
{ 1, 9768, 8582, 4, 7, UNI_PHAG } /* scx=phagspa */,
{ 0, 3836, 3785, 17, 10, UNI_MANI } /* scriptextensions=manichaean */,
{ 5, 9488, 4793, 4, 15, UNI_INMEROITICCURSIVE } /* blk=meroiticcursive */,
{ 0, 184, 6277, 2, 12, UNI_MAHJONG } /* ismahjongtiles */,
{ 0, 9997, 1353, 3, 3, UNI_BC__RLE } /* bc=rle */,
{ 2, 184, 9245, 2, 4, UNI_DOGR } /* isdogr */,
{ 32, 9768, 9644, 4, 4, UNI_MEDF } /* scx=medf */,
{ 0, 9768, 6409, 4, 12, UNI_MEND } /* scx=mendekikakui */,
{ 8, 10132, 5746, 3, 5, UNI_WB__EB } /* wb=ebase */,
{ 0, 10048, 7826, 3, 2, UNI_NV__12 } /* nv=12 */,
{ 6, 10132, 4856, 3, 2, UNI_WB__DQ } /* wb=dq */,
{ 9, 10132, 34, 3, 6, UNI_WB__EXTEND } /* wb=extend */,
{ 6, 10027, 4778, 3, 15, UNI_JG__MANICHAEANZAYIN } /* jg=manichaeanzayin */,
{ 0, 8484, 0, 7, 0, UNI_MAND } /* mandaic */,
{ 2, 184, 9888, 2, 4, UNI_ZANB } /* iszanb */,
{ 1, 3367, 9255, 18, 5, -UNI__PERL_PATWS } /* patternwhitespace=false */,
{ 1, 8589, 1222, 7, 4, UNI_SC__KANA } /* script=kana */,
{ 11, 10024, 2061, 3, 14, UNI_LM } /* gc=modifierletter */,
{ 2, 9488, 8786, 4, 6, UNI_INCARIAN } /* blk=carian */,
{ 3, 9488, 78, 4, 6, UNI_INARABIC } /* blk=arabic */,
{ 2, 5791, 7348, 13, 10, UNI_JG__REVERSEDPE } /* joininggroup=reversedpe */,
{ 4, 10296, 5718, 7, 5, UNI_POSIXALNUM } /* isposixalnum */,
{ 1, 8589, 6193, 7, 4, UNI_HEBR } /* script=hebr */,
{ 2, 10048, 10142, 3, 2, UNI_NV__44 } /* nv=44 */,
{ 1, 9070, 9255, 5, 5, -UNI_POSIXXDIGIT } /* ahex=false */,
{ 5, 9768, 9452, 4, 4, UNI_AHOM } /* scx=ahom */,
{ 6, 1966, 8307, 22, 8, UNI_INSC__TONEMARK } /* indicsyllabiccategory=tonemark */,
{ 8, 2032, 0, 22, 0, UNI_nchar_values_index } /* noncharactercodepoint= */,
{ 0, 184, 4049, 2, 16, UNI_GEORGIANEXT } /* isgeorgianextended */,
{ 0, 9488, 539, 4, 30, UNI_CJKEXTB } /* blk=cjkunifiedideographsextensionb */,
{ 0, 106, 0, 6, 0, UNI_S } /* symbol */,
{ 1, 8780, 6481, 6, 12, UNI_INOLDHUNGARIAN } /* block=oldhungarian */,
{ 2, 9997, 0, 4, 0, UNI_BC__B } /* bc=b */,
{ 1, 8780, 6818, 6, 11, UNI_MYANMAREXTA } /* block=myanmarexta */,
{ 12, 2760, 6763, 19, 3, UNI_LB__H3 } /* hangulsyllabletype=lvt */,
{ 1, 8780, 4129, 6, 6, UNI_LATIN1 } /* block=latin1 */,
{ 2, 5986, 7859, 13, 5, UNI_NV__20000 } /* numericvalue=20000 */,
{ 6, 7218, 10158, 10, 2, UNI_LB__H2 } /* linebreak=h2 */,
{ 0, 10048, 7931, 3, 8, UNI_NV__5_SLASH_12 } /* nv=4.17e-01 */,
{ 10, 4916, 9817, 3, 3, UNI_TAVT } /* istavt */,
{ 0, 4033, 25, 16, 1, UNI_S } /* generalcategory=s */,
{ 1, 8131, 0, 8, 0, UNI_DUPL } /* duployan */,
{ 1, 9716, 26, 4, 1, UNI_PCM } /* pcm=y */,
{ 8, 10180, 0, 2, 0, UNI_ZS } /* zs */,
{ 1, 9488, 3921, 4, 16, UNI_ARABICSUP } /* blk=arabicsupplement */,
{ 2, 10322, 3379, 5, 5, UNI_XPOSIXSPACE } /* xperlspace */,
{ 1, 184, 183, 2, 20, UNI_MISCSYMBOLS } /* ismiscellaneoussymbols */,
{ 0, 7318, 7931, 10, 3, UNI_IN__4_DOT_1 } /* presentin=4.1 */,
{ 3, 8978, 0, 5, 0, UNI__PERL_PATWS } /* patws */,
{ 0, 9556, 34, 4, 2, UNI_GCB__EX } /* gcb=ex */,
{ 4, 9020, 1, 6, 1, -UNI_XPOSIXUPPER } /* upper=n */,
{ 0, 5986, 8710, 13, 2, UNI_NV__60 } /* numericvalue=60 */,
{ 0, 9544, 0, 4, 0, UNI_DIAK } /* diak */,
{ 0, 10308, 0, 5, 0, UNI_XPOSIXPRINT } /* print */,
{ 2, 1966, 5634, 22, 14, UNI_INSC__VOWELDEPENDENT } /* indicsyllabiccategory=voweldependent */,
{ 1, 4033, 1171, 16, 2, UNI_TITLE } /* generalcategory=lt */,
{ 4, 6231, 6098, 3, 11, UNI_CYRILLICEXTA } /* incyrillicexta */,
{ 0, 7325, 9852, 3, 4, UNI_IN__12_DOT_1 } /* in=v121 */,
{ 1, 5564, 36, 14, 1, UNI_QMARK } /* quotationmark=t */,
{ 0, 9091, 8133, 4, 6, UNI_INDUPLOYAN } /* induployan */,
{ 0, 8780, 2308, 6, 21, UNI_YIJING } /* block=yijinghexagramsymbols */,
{ 8, 8930, 10135, 6, 3, UNI_XPOSIXLOWER } /* lower=yes */,
{ 0, 8954, 10135, 6, 3, UNI__PERL_NCHAR } /* nchar=yes */,
{ 2, 184, 3, 3, 1, UNI_CF } /* iscf */,
{ 1, 8589, 3169, 7, 4, UNI_ETHI } /* script=ethi */,
{ 7, 9637, 5690, 5, 10, UNI_BLOCKELEMENTS } /* inblockelements */,
{ 0, 9508, 9111, 5, 4, UNI_CCC__16 } /* ccc=ccc16 */,
{ 5, 8589, 9644, 7, 4, UNI_MEDF } /* script=medf */,
{ 8, 5466, 0, 15, 0, UNI_DT__CAN } /* nfdquickcheck=n */,
{ 1, 8589, 3079, 7, 6, UNI_SC__COPT } /* script=coptic */,
{ 10, 8688, 183, 4, 2, UNI_ARMI } /* isarmi */,
{ 4, 8589, 4703, 7, 15, UNI_ARMI } /* script=imperialaramaic */,
{ 0, 3836, 9285, 17, 4, UNI_LIMB } /* scriptextensions=limb */,
{ 0, 8589, 6884, 7, 11, UNI_HMNG } /* script=pahawhhmong */,
{ 17, 184, 1033, 2, 27, UNI_ENCLOSEDCJK } /* isenclosedcjklettersandmonths */,
{ 1, 8589, 9720, 7, 4, UNI_SC__PHLP } /* script=phlp */,
{ 1, 339, 0, 2, 0, UNI_LO } /* lo */,
{ 3, 9488, 838, 4, 29, UNI_MISCARROWS } /* blk=miscellaneoussymbolsandarrows */,
{ 4, 8966, 26, 6, 1, UNI_NFDQC__Y } /* nfdqc=y */,
{ 1, 8780, 4369, 6, 16, UNI_SYRIACSUP } /* block=syriacsupplement */,
{ 1, 1417, 9151, 25, 4, UNI_CCC__24 } /* canonicalcombiningclass=ccc24 */,
{ 0, 21, 5200, 2, 7, UNI_KANASUP } /* inkanasup */,
{ 5, 1273, 0, 20, 0, UNI_CE } /* compositionexclusion */,
{ 1, 8780, 2950, 6, 19, UNI_SUPARROWSB } /* block=supplementalarrowsb */,
{ 1, 3457, 0, 11, 0, UNI_TAIXUANJING } /* taixuanjing */,
{ 0, 5578, 36, 15, 1, UNI_SB__ST } /* sentencebreak=st */,
{ 2, 184, 43, 3, 35, UNI_CJKCOMPATIDEOGRAPHSSUP } /* iscjkcompatibilityideographssupplement */,
{ 0, 184, 4478, 2, 7, UNI_BRAI } /* isbraille */,
{ 1, 8589, 4385, 7, 6, UNI_TANG } /* script=tangut */,
{ 0, 10033, 9713, 3, 2, UNI_LB__SG } /* lb=sg */,
{ 0, 1192, 0, 26, 0, UNI_HALFANDFULLFORMS } /* halfwidthandfullwidthforms */,
{ 2, 38, 0, 2, 0, UNI_XPOSIXDIGIT } /* nd */,
{ 1, 8589, 9305, 7, 5, UNI_NSHU } /* script=nushu */,
{ 1, 9270, 9, 5, 2, UNI_INPC__NA } /* inpc=na */,
{ 4, 1552, 2268, 9, 2, UNI_PD } /* category=pd */,
{ 0, 629, 0, 30, 0, UNI_CJKEXTE } /* cjkunifiedideographsextensione */,
{ 12, 7249, 5062, 4, 11, UNI_CI } /* iscaseignorable */,
{ 3, 5986, 9412, 13, 4, UNI_NV__17_SLASH_2 } /* numericvalue=17/2 */,
{ 0, 8589, 9588, 7, 4, UNI_HMNG } /* script=hmng */,
{ 1, 7325, 9848, 3, 4, UNI_IN__12 } /* in=v120 */,
{ 0, 8780, 8275, 6, 8, UNI_SPECIALS } /* block=specials */,
{ 6, 9488, 7428, 4, 10, UNI_INWARANGCITI } /* blk=warangciti */,
{ 6, 7228, 1, 10, 1, -UNI_XPOSIXLOWER } /* lowercase=n */,
{ 6, 5986, 8726, 13, 6, UNI_NV__432000 } /* numericvalue=432000 */,
{ 1, 1537, 6621, 3, 10, UNI_DOMINO } /* indominotiles */,
{ 0, 9540, 3, 4, 1, -UNI_DIA } /* dia=f */,
{ 0, 7155, 1514, 3, 23, UNI_HIGHPUSURROGATES } /* ishighprivateusesurrogates */,
{ 0, 5032, 9836, 14, 4, UNI_POSIXXDIGIT } /* asciihexdigit=true */,
{ 0, 10033, 10154, 3, 2, UNI_LB__B2 } /* lb=b2 */,
{ 6, 3904, 0, 17, 0, UNI_uideo_values_index } /* unifiedideograph= */,
{ 1, 3385, 9255, 18, 5, -UNI_RI } /* regionalindicator=false */,
{ 0, 9488, 3734, 4, 17, UNI_INDICSIYAQNUMBERS } /* blk=indicsiyaqnumbers */,
{ 2, 9860, 0, 4, 0, UNI_VAI } /* vaii */,
{ 4, 5791, 4209, 13, 16, UNI_JG__MANICHAEANSAMEKH } /* joininggroup=manichaeansamekh */,
{ 0, 5791, 87, 13, 2, UNI_JG__HE } /* joininggroup=he */,
{ 0, 8589, 9335, 7, 5, UNI_SC__TAKR } /* script=takri */,
{ 13, 9277, 9708, 3, 4, UNI_SC__ORYA } /* sc=orya */,
{ 1, 9277, 2061, 3, 4, UNI_SC__MODI } /* sc=modi */,
{ 2, 10027, 6785, 3, 11, UNI_JG__MALAYALAMRA } /* jg=malayalamra */,
{ 1, 7567, 0, 9, 0, UNI_SIND } /* khudawadi */,
{ 0, 184, 728, 2, 6, UNI_N } /* isnumber */,
{ 0, 9708, 0, 4, 0, UNI_ORYA } /* orya */,
{ 1, 1906, 0, 16, 0, UNI_INDICNUMBERFORMS } /* indicnumberforms */,
{ 0, 8780, 8924, 6, 6, UNI_INLEPCHA } /* block=lepcha */,
{ 0, 10048, 9050, 3, 4, UNI_NV__1_SLASH_16 } /* nv=1/16 */,
{ 0, 10288, 5718, 8, 5, UNI_XPOSIXALNUM } /* isxposixalnum */,
{ 6, 9488, 5661, 4, 13, UNI_AEGEANNUMBERS } /* blk=aegeannumbers */,
{ 8, 3983, 0, 18, 0, UNI_PE } /* isclosepunctuation */,
{ 11, 3097, 4532, 18, 6, UNI_DT__MED } /* decompositiontype=medial */,
{ 0, 10132, 6169, 3, 12, UNI_WB__EB } /* wb=glueafterzwj */,
{ 0, 5791, 5895, 13, 13, UNI_JG__MANICHAEANONE } /* joininggroup=manichaeanone */,
{ 0, 8954, 3, 6, 1, -UNI__PERL_NCHAR } /* nchar=f */,
{ 3, 4658, 36, 15, 1, UNI_GREXT } /* graphemeextend=t */,
{ 2, 7418, 10135, 10, 3, UNI_XPOSIXUPPER } /* uppercase=yes */,
{ 1, 10296, 0, 4, 0, UNI_PO } /* ispo */,
{ 0, 8589, 3785, 7, 4, UNI_SC__MANI } /* script=mani */,
{ 1, 3836, 4703, 17, 15, UNI_ARMI } /* scriptextensions=imperialaramaic */,
{ 1, 2224, 2932, 3, 18, UNI_SUPARROWSA } /* insupplementalarrowsa */,
{ 13, 8780, 4401, 6, 9, UNI_TANGUTSUP } /* block=tangutsup */,
{ 8, 8780, 7129, 7, 9, UNI_CJKSTROKES } /* block=cjkstrokes */,
{ 0, 21, 8211, 2, 8, UNI_JAMOEXTB } /* injamoextb */,
{ 0, 45, 0, 2, 0, UNI_CO } /* co */,
{ 4, 3097, 6421, 18, 8, UNI_DT__NONCANON } /* decompositiontype=noncanon */,
{ 16, 184, 1166, 2, 25, UNI_DI } /* isdefaultignorablecodepoint */,
{ 2, 9277, 9860, 3, 3, UNI_VAI } /* sc=vai */,
{ 1, 8491, 0, 7, 0, UNI_MARC } /* marchen */,
{ 4, 184, 5564, 2, 13, UNI_QMARK } /* isquotationmark */,
{ 2, 10024, 5713, 3, 13, UNI_XPOSIXDIGIT } /* gc=decimalnumber */,
{ 1, 10033, 184, 3, 2, UNI_LB__IS } /* lb=is */,
{ 1, 9315, 0, 5, 0, UNI_ORYA } /* oriya */,
{ 0, 9812, 0, 4, 0, UNI_TAML } /* taml */,
{ 0, 4989, 1868, 3, 4, UNI_XPOSIXUPPER } /* isupper */,
{ 0, 5986, 5648, 13, 5, UNI_NV__10000 } /* numericvalue=10000 */,
{ 16, 8780, 3026, 7, 10, UNI_CHEROKEESUP } /* block=cherokeesup */,
{ 1, 8780, 8610, 6, 7, UNI_INSIDDHAM } /* block=siddham */,
{ 1, 2161, 3, 21, 1, -UNI_EXTPICT } /* extendedpictographic=f */,
{ 1, 9488, 8091, 4, 8, UNI_INARMENIAN } /* blk=armenian */,
{ 1, 9277, 9065, 3, 5, UNI_SC__ADLM } /* sc=adlam */,
{ 12, 3836, 8344, 17, 7, UNI_BENG } /* scriptextensions=bengali */,
{ 0, 2032, 0, 21, 0, UNI__PERL_NCHAR } /* noncharactercodepoint */,
{ 8, 3421, 0, 18, 0, UNI_RUMI } /* ruminumeralsymbols */,
{ 1, 9277, 8115, 3, 4, UNI_BASS } /* sc=bass */,
{ 1, 184, 3169, 2, 8, UNI_ETHI } /* isethiopic */,
{ 0, 3836, 9824, 17, 4, UNI_TGLG } /* scriptextensions=tglg */,
{ 0, 184, 8942, 2, 4, UNI_LYDI } /* islydi */,
{ 0, 1812, 0, 22, 0, UNI_cwl_values_index } /* changeswhenlowercased= */,
{ 3, 7318, 10105, 10, 3, UNI_IN__6 } /* presentin=v60 */,
{ 5, 10296, 9721, 3, 3, UNI_PHLP } /* isphlp */,
{ 3, 10132, 7603, 3, 9, UNI_WB__ML } /* wb=midletter */,
{ 4, 2224, 7694, 3, 8, UNI_INSAMARITAN } /* insamaritan */,
{ 4, 10048, 10148, 3, 2, UNI_NV__47 } /* nv=47 */,
{ 1, 5986, 9409, 13, 3, UNI_NV__5_SLASH_2 } /* numericvalue=5/2 */,
{ 5, 184, 4448, 2, 8, UNI_BAMUMSUP } /* isbamumsup */,
{ 2, 9488, 509, 4, 30, UNI_CJKEXTA } /* blk=cjkunifiedideographsextensiona */,
{ 0, 10027, 4733, 3, 15, UNI_JG__MANICHAEANALEPH } /* jg=manichaeanaleph */,
{ 13, 10033, 10030, 3, 2, UNI_GCB__T } /* lb=jt */,
{ 1, 9277, 6840, 3, 4, UNI_SC__NAND } /* sc=nand */,
{ 2, 9997, 2798, 3, 19, UNI_BC__LRO } /* bc=lefttorightoverride */,
{ 4, 1269, 10135, 25, 3, UNI_COMPEX } /* fullcompositionexclusion=yes */,
{ 1, 8780, 2684, 6, 19, UNI_INEGYPTIANHIEROGLYPHS } /* block=egyptianhieroglyphs */,
{ 0, 8589, 8611, 8, 3, UNI_SIDD } /* script=sidd */,
{ 15, 1591, 2685, 3, 18, UNI_INEGYPTIANHIEROGLYPHS } /* inegyptianhieroglyphs */,
{ 0, 10027, 7198, 3, 10, UNI_JG__KNOTTEDHEH } /* jg=knottedheh */,
{ 1, 8589, 8611, 8, 6, UNI_SIDD } /* script=siddham */,
{ 0, 9065, 0, 5, 0, UNI_ADLM } /* adlam */,
{ 1, 8589, 6973, 8, 3, UNI_SC__SYLO } /* script=sylo */,
{ 0, 1114, 26, 26, 1, UNI_CWKCF } /* changeswhennfkccasefolded=y */,
{ 1, 9768, 2288, 5, 3, UNI_SINH } /* scx=sinh */,
{ 7, 10009, 6421, 3, 8, UNI_DT__NONCANON } /* dt=noncanon */,
{ 0, 9768, 8115, 4, 4, UNI_BASS } /* scx=bass */,
{ 16, 6231, 720, 3, 8, UNI_INCUNEIFORM } /* incuneiform */,
{ 19, 1417, 9211, 25, 4, UNI_CCC__36 } /* canonicalcombiningclass=ccc36 */,
{ 9, 2569, 3511, 20, 18, UNI_VO__TU } /* verticalorientation=transformedupright */,
{ 2, 2529, 1, 20, 1, -UNI_TERM } /* terminalpunctuation=n */,
{ 0, 184, 1911, 2, 11, UNI_NUMBERFORMS } /* isnumberforms */,
{ 0, 3836, 5843, 17, 9, UNI_MLYM } /* scriptextensions=malayalam */,
{ 1, 9508, 9300, 4, 5, UNI_CCC__7 } /* ccc=nukta */,
{ 0, 5674, 1, 13, 1, -UNI_BIDIM } /* bidimirrored=n */,
{ 0, 10132, 1218, 3, 2, UNI_WB__KA } /* wb=ka */,
{ 6, 10182, 25, 29, 1, UNI__PERL_PROBLEMATIC_LOCALE_FOLDS } /* _perl_problematic_locale_folds */,
{ 0, 6554, 36, 11, 1, UNI_IDC } /* idcontinue=t */,
{ 0, 1417, 8813, 24, 3, UNI_CCC__122 } /* canonicalcombiningclass=122 */,
{ 1, 7218, 10160, 10, 2, UNI_LB__H3 } /* linebreak=h3 */,
{ 14, 184, 9496, 2, 4, UNI_BUHD } /* isbuhd */,
{ 21, 6231, 720, 3, 15, UNI_CUNEIFORMNUMBERS } /* incuneiformnumbers */,
{ 1, 9277, 9712, 3, 4, UNI_OSGE } /* sc=osge */,
{ 1, 10178, 0, 2, 0, UNI_ZP } /* zp */,
{ 5, 9488, 8840, 4, 6, UNI_INCHAKMA } /* blk=chakma */,
{ 2, 8589, 2429, 7, 20, UNI_PHLI } /* script=inscriptionalpahlavi */,
{ 1, 5791, 4081, 13, 16, UNI_JG__HANIFIROHINGYAPA } /* joininggroup=hanifirohingyapa */,
{ 2, 6928, 10135, 11, 3, UNI_SD } /* softdotted=yes */,
{ 1, 7088, 3403, 10, 18, UNI_BC__RLI } /* bidiclass=righttoleftisolate */,
{ 1, 8589, 1537, 8, 3, UNI_SC__SIND } /* script=sind */,
{ 0, 5986, 9428, 13, 3, UNI_NV__3_SLASH_8 } /* numericvalue=3/8 */,
{ 4, 3836, 4478, 17, 4, UNI_BRAI } /* scriptextensions=brai */,
{ 0, 8984, 36, 6, 1, UNI_QMARK } /* qmark=t */,
{ 0, 4791, 8499, 3, 6, UNI_INMULTANI } /* inmultani */,
{ 9, 10024, 1899, 3, 2, UNI_PC } /* gc=pc */,
{ 2, 3836, 9624, 17, 4, UNI_LAO } /* scriptextensions=laoo */,
{ 4, 9488, 8526, 4, 7, UNI_NB } /* blk=noblock */,
{ 1, 9277, 9038, 3, 6, UNI_SC__YEZI } /* sc=yezidi */,
{ 2, 9768, 8611, 5, 6, UNI_SIDD } /* scx=siddham */,
{ 0, 2741, 0, 19, 0, UNI_JAMOEXTB } /* hanguljamoextendedb */,
{ 8, 8589, 1013, 7, 5, UNI_SC__GREK } /* script=greek */,
{ 1, 9488, 7378, 4, 10, UNI_SUPARROWSA } /* blk=suparrowsa */,
{ 0, 10290, 10308, 6, 5, UNI_XPOSIXPRINT } /* xposixprint */,
{ 1, 5060, 26, 14, 1, UNI_CI } /* caseignorable=y */,
{ 3, 184, 2245, 2, 11, UNI_MTEI } /* ismeeteimayek */,
{ 1, 10063, 3, 3, 1, -UNI_SD } /* sd=f */,
{ 6, 7318, 7923, 10, 3, UNI_IN__4 } /* presentin=4.0 */,
{ 1, 8589, 4448, 7, 5, UNI_BAMU } /* script=bamum */,
{ 1, 5986, 8750, 13, 2, UNI_NV__80 } /* numericvalue=80 */,
{ 0, 9768, 9544, 4, 4, UNI_DIAK } /* scx=diak */,
{ 0, 7155, 1418, 3, 3, UNI_HANO } /* ishano */,
{ 3, 8780, 1442, 7, 9, UNI_CJKSYMBOLS } /* block=cjksymbols */,
{ 0, 10009, 4017, 3, 3, UNI_DT__FIN } /* dt=fin */,
{ 6, 8589, 7675, 7, 9, UNI_PALM } /* script=palmyrene */,
{ 0, 9488, 7657, 4, 9, UNI_INOLDPERMIC } /* blk=oldpermic */,
{ 4, 1417, 7178, 24, 4, UNI_CCC__6 } /* canonicalcombiningclass=hanr */,
{ 0, 6862, 0, 11, 0, UNI_NO } /* othernumber */,
{ 0, 867, 0, 18, 0, UNI_PHONETICEXT } /* phoneticextensions */,
{ 0, 10009, 3501, 3, 3, UNI_DT__MED } /* dt=med */,
{ 5, 1417, 9156, 25, 4, UNI_CCC__25 } /* canonicalcombiningclass=ccc25 */,
{ 3, 5986, 9055, 13, 5, UNI_NV__1_SLASH_320 } /* numericvalue=1/320 */,
{ 0, 8589, 6792, 8, 3, UNI_SAMR } /* script=samr */,
{ 0, 9488, 8463, 4, 7, UNI_KALI } /* blk=kayahli */,
{ 24, 7076, 3938, 3, 10, UNI_BOPOMOFOEXT } /* inbopomofoext */,
{ 1, 9508, 0, 4, 0, UNI_ccc_values_index } /* ccc= */,
{ 1, 8780, 2969, 6, 19, UNI_SUPARROWSC } /* block=supplementalarrowsc */,
{ 21, 4628, 4471, 15, 7, UNI_EA__N } /* eastasianwidth=neutral */,
{ 2, 9277, 9038, 3, 4, UNI_SC__YEZI } /* sc=yezi */,
{ 1, 8780, 5158, 6, 14, UNI_INGREEK } /* block=greekandcoptic */,
{ 4, 9508, 9116, 5, 4, UNI_CCC__17 } /* ccc=ccc17 */,
{ 5, 8780, 8366, 7, 6, UNI_CJKEXTC } /* block=cjkextc */,