summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPaul "LeoNerd" Evans <leonerd@leonerd.org.uk>2021-12-07 00:17:44 +0000
committerKarl Williamson <khw@cpan.org>2021-12-07 08:26:05 -0700
commit70657aee92d84a1cd5a50bd81dfab71001372aad (patch)
tree56de9f69b3fc6866707b74d391a21bb097eaf7bf
parent702d9849e7acac6cf1fa8e630ffd73a481258704 (diff)
downloadperl-70657aee92d84a1cd5a50bd81dfab71001372aad.tar.gz
Fix unicore/mktables to avoid any @_ accesses in signatured subs
-rw-r--r--charclass_invlists.h2
-rw-r--r--lib/unicore/mktables8
-rw-r--r--lib/unicore/uni_keywords.pl2
-rw-r--r--regcharclass.h2
-rw-r--r--uni_keywords.h14696
5 files changed, 7355 insertions, 7355 deletions
diff --git a/charclass_invlists.h b/charclass_invlists.h
index 43d4e12285..2f2b33b458 100644
--- a/charclass_invlists.h
+++ b/charclass_invlists.h
@@ -430828,7 +430828,7 @@ static const U8 WB_table[23][23] = {
* 43f6df50e4878f501b417e366b0ee097ae5ccb2d4ce942026bed3d62d78e7887 lib/unicore/extracted/DLineBreak.txt
* a04502ebb36a45d83cbe48a7d8132ea8143edb7b3d34d0aa6afe4a9685049741 lib/unicore/extracted/DNumType.txt
* 11075771b112e8e7ccf6ffa637c4c91eadc3ef3db0517b24e605df8fd3624239 lib/unicore/extracted/DNumValues.txt
- * 2b1f989c7326b58b7e66be2dfa016bddaeb877644ac49839301302a0e64b6a4b lib/unicore/mktables
+ * c7f768a3f16596ffe80c9f5bc730d62195856cedf3fa962e8259b1c4cdce6fcd lib/unicore/mktables
* c72bbdeda99714db1c8024d3311da4aef3c0db3b9b9f11455a7cfe10d5e9aba3 lib/unicore/version
* 0a6b5ab33bb1026531f816efe81aea1a8ffcd34a27cbea37dd6a70a63d73c844 regen/charset_translations.pl
* 5f8520d3a17ade6317fc0c423f5091470924b1ef425bca0c41ce8e4a9f8460fe regen/mk_PL_charclass.pl
diff --git a/lib/unicore/mktables b/lib/unicore/mktables
index 0141fa6700..22a02652b3 100644
--- a/lib/unicore/mktables
+++ b/lib/unicore/mktables
@@ -1980,7 +1980,7 @@ package main;
# than just 'readable_'), then create a subroutine that
# assumes the data is an array. Otherwise just a scalar
my $subname = "${package}::${protected}$name";
- if (grep { /^a/i } @_
+ if (grep { /^a/i } (@accessors)
or length($access) > length('readable_'))
{
no strict "refs";
@@ -8908,7 +8908,7 @@ sub trace { return main::trace(@_) if main::DEBUG && $to_trace }
;
sub _operator_stringify($self, $other="", $reversed=0) {
- return "Property '" . shift->full_name . "'";
+ return "Property '" . $self->full_name . "'";
}
sub _minus_and_equal($self, $other, $reversed=0) {
@@ -10824,7 +10824,7 @@ sub output_perl_charnames_line ($a, $b) {
# ordinals, but they are all private use or noncharacters which do not
# have names, so won't be in this table.
- return sprintf "%05X\n%s\n\n", $_[0], $_[1];
+ return sprintf "%05X\n%s\n\n", $a, $b;
}
{ # Closure
@@ -20320,7 +20320,7 @@ sub _test_break($template, $break_type) {
if ($modifier =~ / ^ l (.*) /x) {
my $locale = $1;
$display_locale = "(locale = $locale)";
- POSIX::setlocale(&POSIX::LC_CTYPE, $locale);
+ POSIX::setlocale(POSIX::LC_CTYPE(), $locale);
$modifier = 'l';
}
diff --git a/lib/unicore/uni_keywords.pl b/lib/unicore/uni_keywords.pl
index 03bd556097..ce3507015d 100644
--- a/lib/unicore/uni_keywords.pl
+++ b/lib/unicore/uni_keywords.pl
@@ -1319,7 +1319,7 @@
# 43f6df50e4878f501b417e366b0ee097ae5ccb2d4ce942026bed3d62d78e7887 lib/unicore/extracted/DLineBreak.txt
# a04502ebb36a45d83cbe48a7d8132ea8143edb7b3d34d0aa6afe4a9685049741 lib/unicore/extracted/DNumType.txt
# 11075771b112e8e7ccf6ffa637c4c91eadc3ef3db0517b24e605df8fd3624239 lib/unicore/extracted/DNumValues.txt
-# 2b1f989c7326b58b7e66be2dfa016bddaeb877644ac49839301302a0e64b6a4b lib/unicore/mktables
+# c7f768a3f16596ffe80c9f5bc730d62195856cedf3fa962e8259b1c4cdce6fcd lib/unicore/mktables
# c72bbdeda99714db1c8024d3311da4aef3c0db3b9b9f11455a7cfe10d5e9aba3 lib/unicore/version
# 0a6b5ab33bb1026531f816efe81aea1a8ffcd34a27cbea37dd6a70a63d73c844 regen/charset_translations.pl
# 5f8520d3a17ade6317fc0c423f5091470924b1ef425bca0c41ce8e4a9f8460fe regen/mk_PL_charclass.pl
diff --git a/regcharclass.h b/regcharclass.h
index 778708ccac..0870ff0d89 100644
--- a/regcharclass.h
+++ b/regcharclass.h
@@ -3762,7 +3762,7 @@
* 43f6df50e4878f501b417e366b0ee097ae5ccb2d4ce942026bed3d62d78e7887 lib/unicore/extracted/DLineBreak.txt
* a04502ebb36a45d83cbe48a7d8132ea8143edb7b3d34d0aa6afe4a9685049741 lib/unicore/extracted/DNumType.txt
* 11075771b112e8e7ccf6ffa637c4c91eadc3ef3db0517b24e605df8fd3624239 lib/unicore/extracted/DNumValues.txt
- * 2b1f989c7326b58b7e66be2dfa016bddaeb877644ac49839301302a0e64b6a4b lib/unicore/mktables
+ * c7f768a3f16596ffe80c9f5bc730d62195856cedf3fa962e8259b1c4cdce6fcd lib/unicore/mktables
* c72bbdeda99714db1c8024d3311da4aef3c0db3b9b9f11455a7cfe10d5e9aba3 lib/unicore/version
* 0a6b5ab33bb1026531f816efe81aea1a8ffcd34a27cbea37dd6a70a63d73c844 regen/charset_translations.pl
* 1aa94679c695efd507b7e4491629dba1021b74c21a5324dfd3a582a5d654bd32 regen/regcharclass.pl
diff --git a/uni_keywords.h b/uni_keywords.h
index c88b10fff3..611bd2de51 100644
--- a/uni_keywords.h
+++ b/uni_keywords.h
@@ -11,7 +11,7 @@
/*
rows: 7416
-seed: 1348825710
+seed: 1348825708
full length of keys: 104113
blob length: 10571
ref length: 59328
@@ -196,7427 +196,7427 @@ struct mph_struct {
#define MPH_RSHIFT 8
#define MPH_BUCKETS 7416
-STATIC const U32 MPH_SEED1 = 0x5065726e;
+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, 9474, 729, 5, 6, UNI_INSC__NUMBER } /* insc=number */,
- { 0, 10553, 1177, 3, 3, UNI_SORA } /* issora */,
- { 0, 9731, 0, 3, 0, UNI_CWT } /* cwt */,
- { 3, 7580, 7772, 10, 9, UNI_WB__MB } /* wordbreak=midnumlet */,
- { 0, 9711, 9028, 5, 5, UNI_WB__EB } /* ccc=ccc133 */,
- { 0, 9087, 9454, 6, 5, -UNI_JOINC } /* joinc=false */,
- { 1, 10011, 0, 4, 0, UNI_TAGS } /* tags */,
- { 0, 218, 0, 33, 0, UNI_DIACRITICALSEXT } /* combiningdiacriticalmarksextended */,
- { 0, 9476, 9519, 3, 5, UNI_OSGE } /* sc=osage */,
- { 1, 8973, 5771, 6, 13, UNI_BLOCKELEMENTS } /* block=blockelements */,
- { 1, 3121, 2593, 18, 8, UNI_DT__VERT } /* decompositiontype=vertical */,
- { 0, 9691, 1007, 4, 17, UNI_ANCIENTGREEKMUSIC } /* blk=ancientgreekmusic */,
- { 0, 6083, 8108, 13, 8, UNI_NV__9_SLASH_2 } /* numericvalue=4.50e+00 */,
- { 0, 9979, 9207, 4, 4, UNI_THAA } /* scx=thaa */,
- { 2, 185, 5758, 2, 12, UNI_BIDIM } /* isbidimirrored */,
- { 0, 5116, 1026, 14, 2, -UNI_CI } /* caseignorable=no */,
- { 5, 9214, 10055, 5, 4, UNI_IDEO } /* ideo=true */,
- { 2, 7060, 10355, 11, 3, UNI_SD } /* softdotted=yes */,
- { 2, 8973, 3463, 6, 18, UNI_SMALLKANAEXT } /* block=smallkanaextension */,
- { 1, 6340, 8545, 3, 6, UNI_CJKEXTA } /* incjkexta */,
- { 0, 10247, 7490, 3, 10, UNI_JG__REVERSEDPE } /* jg=reversedpe */,
- { 0, 9979, 6924, 5, 3, UNI_SAMR } /* scx=samr */,
- { 1, 4847, 2880, 3, 18, UNI_MONGOLIANSUP } /* inmongoliansupplement */,
- { 0, 9979, 10027, 4, 4, UNI_TAVT } /* scx=tavt */,
- { 1, 10244, 48, 3, 1, UNI_M } /* gc=m */,
- { 0, 9979, 9529, 4, 5, UNI_TALE } /* scx=taile */,
- { 2, 9476, 9183, 3, 6, UNI_RJNG } /* sc=rejang */,
- { 0, 10268, 8068, 3, 8, UNI_NV__7_SLASH_2 } /* nv=3.50e+00 */,
- { 2, 1836, 0, 22, 0, UNI_cwl_values_index } /* changeswhenlowercased= */,
- { 3, 4909, 26, 15, 1, UNI_DT__NONE } /* nfkdquickcheck=y */,
- { 2, 1537, 0, 4, 0, UNI_SIND } /* sind */,
- { 1, 3391, 1, 18, 1, -UNI__PERL_PATWS } /* patternwhitespace=n */,
- { 0, 6506, 0, 12, 0, UNI_MATHALPHANUM } /* mathalphanum */,
- { 2, 9459, 0, 5, 0, UNI_idsb_values_index } /* idsb= */,
- { 0, 7230, 2473, 10, 20, UNI_BC__LRE } /* bidiclass=lefttorightembedding */,
- { 2, 1990, 3085, 22, 18, UNI_INSC__CONSONANTSUBJOINED } /* indicsyllabiccategory=consonantsubjoined */,
- { 0, 9469, 2573, 5, 12, UNI_INPC__TOPANDBOTTOM } /* inpc=topandbottom */,
- { 5, 10244, 4026, 3, 16, UNI_PE } /* gc=closepunctuation */,
- { 1, 9476, 4314, 3, 7, UNI_SC__MYMR } /* sc=myanmar */,
- { 1, 185, 4610, 3, 14, UNI_CONTROLPICTURES } /* iscontrolpictures */,
- { 7, 8973, 3139, 6, 13, UNI_DEVANAGARIEXT } /* block=devanagariext */,
- { 0, 185, 7500, 2, 10, UNI_SAUR } /* issaurashtra */,
+ { 1, 21, 5888, 2, 13, UNI_KANAEXTA } /* inkanaextendeda */,
+ { 2, 9979, 3935, 5, 10, UNI_SGNW } /* scx=signwriting */,
+ { 1, 9476, 7790, 3, 9, UNI_TALU } /* sc=newtailue */,
+ { 0, 8973, 8649, 6, 7, UNI_INKANNADA } /* block=kannada */,
+ { 0, 185, 8670, 2, 7, UNI_MAKA } /* ismakasar */,
+ { 2, 9803, 6070, 4, 13, UNI_HST__NA } /* hst=notapplicable */,
+ { 1, 10508, 9424, 8, 5, UNI_XPOSIXCNTRL } /* isxposixcntrl */,
+ { 0, 8973, 1295, 6, 25, UNI_SUPERANDSUB } /* block=superscriptsandsubscripts */,
+ { 0, 1553, 75, 9, 2, UNI_ME } /* category=me */,
+ { 0, 7467, 10075, 3, 4, UNI_IN__13 } /* in=v130 */,
+ { 1, 10223, 0, 3, 0, UNI_ci_values_index } /* ci= */,
+ { 2, 6350, 7126, 12, 11, UNI_JT__T } /* joiningtype=transparent */,
+ { 0, 1115, 9454, 26, 5, -UNI_CWKCF } /* changeswhennfkccasefolded=false */,
+ { 0, 6626, 0, 12, 0, UNI_PLAYINGCARDS } /* playingcards */,
+ { 0, 6083, 8901, 13, 6, UNI_NV__216000 } /* numericvalue=216000 */,
+ { 0, 4847, 6951, 3, 10, UNI_MYANMAREXTA } /* inmyanmarexta */,
+ { 1, 8444, 36, 8, 1, UNI_RADICAL } /* radical=t */,
+ { 2, 10268, 8907, 3, 5, UNI_NV__30000 } /* nv=30000 */,
+ { 0, 9795, 0, 4, 0, UNI_HMNG } /* hmng */,
+ { 0, 185, 3265, 2, 4, UNI_GEOR } /* isgeor */,
+ { 1, 9979, 9935, 4, 4, UNI_PHNX } /* scx=phnx */,
+ { 0, 10244, 6374, 3, 12, UNI_NL } /* gc=letternumber */,
+ { 0, 9489, 3, 5, 1, -UNI_MATH } /* math=f */,
+ { 0, 6340, 3105, 4, 16, UNI_COPTICEPACTNUMBERS } /* incopticepactnumbers */,
+ { 7, 3877, 58, 17, 2, UNI_YI } /* scriptextensions=yi */,
+ { 1, 9647, 9583, 4, 4, UNI_AGE__10 } /* age=10.0 */,
+ { 1, 2003, 10391, 10, 1, UNI_CASEDLETTER } /* category=l_ */,
+ { 1, 9691, 1747, 4, 13, UNI_ZNAMENNYMUSIC } /* blk=znamennymusic */,
+ { 1, 1880, 3, 22, 1, -UNI_CWU } /* changeswhenuppercased=f */,
+ { 1, 7016, 0, 11, 0, UNI_HMNG } /* pahawhhmong */,
+ { 1, 5536, 0, 15, 0, UNI_COMPEX } /* nfcquickcheck=n */,
+ { 0, 9979, 720, 4, 9, UNI_XSUX } /* scx=cuneiform */,
+ { 0, 2143, 0, 21, 0, UNI_CJKRADICALSSUP } /* cjkradicalssupplement */,
+ { 3, 8973, 7826, 6, 9, UNI_INOLDTURKIC } /* block=oldturkic */,
+ { 1, 10516, 7451, 3, 9, UNI_PHNX } /* isphoenician */,
+ { 0, 185, 571, 3, 29, UNI_CJKEXTC } /* iscjkunifiedideographsextensionc */,
+ { 1, 8973, 1632, 6, 23, UNI_GEOMETRICSHAPESEXT } /* block=geometricshapesextended */,
+ { 0, 8810, 0, 7, 0, UNI_SOYO } /* soyombo */,
+ { 2, 7600, 0, 10, 0, UNI_YIRADICALS } /* yiradicals */,
+ { 0, 185, 9284, 2, 5, UNI_BATK } /* isbatak */,
+ { 0, 10019, 0, 4, 0, UNI_TALU } /* talu */,
+ { 4, 185, 350, 2, 33, UNI_SUPSYMBOLSANDPICTOGRAPHS } /* issupplementalsymbolsandpictographs */,
+ { 1, 8881, 9644, 3, 3, UNI_ADLM } /* isadlm */,
+ { 1, 10253, 9920, 3, 2, UNI_LB__SG } /* lb=sg */,
+ { 2, 9979, 2937, 5, 3, UNI_SUND } /* scx=sund */,
+ { 1, 118, 5863, 3, 5, UNI_IPAEXT } /* inipaext */,
+ { 3, 9474, 4458, 5, 16, UNI_INSC__VOWELINDEPENDENT } /* insc=vowelindependent */,
+ { 0, 9647, 8092, 4, 3, UNI_AGE__4 } /* age=4.0 */,
+ { 1, 10247, 5494, 3, 14, UNI_JG__MANICHAEANTETH } /* jg=manichaeanteth */,
+ { 2, 3894, 26, 17, 1, UNI_STERM } /* sentenceterminal=y */,
+ { 0, 8973, 7210, 6, 10, UNI_ASCII } /* block=basiclatin */,
+ { 0, 21, 8404, 2, 8, UNI_KANAEXTB } /* inkanaextb */,
+ { 2, 909, 0, 10, 0, UNI_CO } /* privateuse */,
+ { 1, 1902, 0, 22, 0, UNI_CJKCOMPATIDEOGRAPHSSUP } /* cjkcompatideographssup */,
+ { 1, 21, 6362, 2, 5, UNI_INKHMER } /* inkhmer */,
+ { 0, 8973, 6626, 6, 12, UNI_PLAYINGCARDS } /* block=playingcards */,
+ { 2, 7297, 5094, 3, 7, UNI_XPOSIXXDIGIT } /* ishexdigit */,
+ { 4, 10229, 4058, 3, 3, UNI_DT__FIN } /* dt=fin */,
+ { 0, 1189, 8839, 3, 6, UNI_INTAITHAM } /* intaitham */,
+ { 2, 10253, 59, 3, 2, UNI_LB__ID } /* lb=id */,
+ { 6, 7360, 43, 10, 2, UNI_LB__CJ } /* linebreak=cj */,
+ { 3, 2993, 0, 19, 0, UNI_SUPARROWSC } /* supplementalarrowsc */,
+ { 0, 8973, 5368, 6, 4, UNI_INLISU } /* block=lisu */,
+ { 1, 9979, 2312, 5, 3, UNI_SINH } /* scx=sinh */,
+ { 0, 185, 4534, 2, 7, UNI_BRAI } /* isbraille */,
+ { 2, 7218, 2633, 3, 5, UNI_INBRAHMI } /* inbrahmi */,
+ { 2, 8292, 0, 8, 0, UNI_BUGI } /* buginese */,
+ { 1, 10244, 32, 3, 2, UNI__PERL_SURROGATE } /* gc=cs */,
+ { 2, 1990, 7470, 22, 10, UNI_INSC__PUREKILLER } /* indicsyllabiccategory=purekiller */,
+ { 1, 8881, 5089, 3, 4, UNI_ASCII } /* isascii */,
+ { 2, 10247, 9554, 3, 5, UNI_JG__ZHAIN } /* jg=zhain */,
+ { 0, 6752, 0, 6, 0, UNI_DOMINO } /* domino */,
+ { 2, 2509, 0, 4, 0, UNI_MONG } /* mong */,
+ { 0, 5875, 6041, 13, 3, UNI_JG__WAW } /* joininggroup=waw */,
+ { 1, 9715, 0, 4, 0, UNI_CHRS } /* chrs */,
+ { 0, 3690, 0, 17, 0, UNI_CYRILLICEXTC } /* cyrillicextendedc */,
+ { 1, 2248, 2079, 3, 21, UNI_MODIFIERLETTERS } /* inspacingmodifierletters */,
+ { 5, 8768, 10055, 7, 4, UNI_PATSYN } /* patsyn=true */,
+ { 0, 3076, 0, 9, 0, UNI_HALFMARKS } /* halfmarks */,
+ { 0, 4972, 2101, 3, 14, UNI_TRANSPORTANDMAP } /* istransportandmap */,
+ { 0, 3928, 0, 17, 0, UNI_SUTTONSIGNWRITING } /* suttonsignwriting */,
+ { 0, 1538, 7115, 24, 11, UNI_INPC__TOPANDRIGHT } /* indicpositionalcategory=topandright */,
+ { 0, 4972, 8477, 3, 7, UNI_TFNG } /* istifinagh */,
+ { 0, 1418, 8147, 24, 2, UNI_CCC__16 } /* canonicalcombiningclass=16 */,
+ { 0, 185, 5836, 2, 13, UNI_GREEKEXT } /* isgreekextended */,
+ { 0, 8845, 0, 7, 0, UNI_TAVT } /* taiviet */,
+ { 5, 2248, 7863, 3, 8, UNI_INSAMARITAN } /* insamaritan */,
+ { 2, 8973, 2085, 6, 15, UNI_MODIFIERLETTERS } /* block=modifierletters */,
+ { 0, 21, 9099, 2, 6, UNI_KANBUN } /* inkanbun */,
+ { 0, 8782, 7501, 8, 9, UNI_SAUR } /* script=saurashtra */,
+ { 1, 8973, 6302, 6, 6, UNI_INHEBREW } /* block=hebrew */,
+ { 0, 10349, 1, 3, 1, -UNI_VS } /* vs=n */,
+ { 0, 10217, 18, 3, 1, UNI_BC__R } /* bc=r */,
+ { 0, 4714, 3, 15, 1, -UNI_GREXT } /* graphemeextend=f */,
+ { 2, 9691, 4505, 5, 14, UNI_BAMUMSUP } /* blk=bamumsupplement */,
+ { 2, 3398, 10355, 11, 3, UNI_XPOSIXSPACE } /* whitespace=yes */,
+ { 0, 9979, 9117, 4, 4, UNI_LEPC } /* scx=lepc */,
+ { 2, 6674, 0, 12, 0, UNI_xidc_values_index } /* xidcontinue= */,
+ { 2, 9691, 7736, 4, 9, UNI_LATINEXTD } /* blk=latinextd */,
+ { 3, 185, 2085, 2, 15, UNI_MODIFIERLETTERS } /* ismodifierletters */,
+ { 0, 1553, 4346, 9, 5, UNI_C } /* category=other */,
+ { 1, 9979, 6518, 4, 4, UNI_MEND } /* scx=mend */,
+ { 2, 1189, 9202, 3, 5, UNI_INTELUGU } /* intelugu */,
+ { 0, 10244, 1588, 3, 1, UNI_Z } /* gc=z */,
+ { 1, 1902, 0, 19, 0, UNI_CJKCOMPATIDEOGRAPHS } /* cjkcompatideographs */,
+ { 1, 10244, 1045, 3, 6, UNI_L } /* gc=letter */,
+ { 6, 1418, 9004, 25, 5, UNI_CCC__122 } /* canonicalcombiningclass=ccc122 */,
+ { 1, 3877, 9923, 17, 4, UNI_OUGR } /* scriptextensions=ougr */,
+ { 0, 6340, 6219, 3, 11, UNI_CYRILLICEXTC } /* incyrillicextc */,
+ { 3, 9476, 7500, 3, 10, UNI_SAUR } /* sc=saurashtra */,
+ { 1, 9691, 2100, 4, 15, UNI_TRANSPORTANDMAP } /* blk=transportandmap */,
+ { 3, 6697, 10355, 11, 3, UNI_XPOSIXALPHA } /* alphabetic=yes */,
+ { 0, 7430, 0, 10, 0, UNI_SOGO } /* oldsogdian */,
+ { 1, 5662, 70, 14, 2, UNI_SB__UP } /* sentencebreak=up */,
+ { 0, 8973, 7781, 6, 9, UNI_INNABATAEAN } /* block=nabataean */,
+ { 0, 3283, 1, 18, 1, -UNI_IDSB } /* idsbinaryoperator=n */,
+ { 3, 9476, 8754, 3, 4, UNI_OSMA } /* sc=osma */,
+ { 4, 9979, 7105, 5, 10, UNI_SYLO } /* scx=sylotinagri */,
+ { 1, 1418, 8994, 24, 3, UNI_CCC__107 } /* canonicalcombiningclass=107 */,
+ { 2, 185, 4090, 2, 16, UNI_GEORGIANEXT } /* isgeorgianextended */,
+ { 0, 9711, 9016, 5, 4, UNI_CCC__13 } /* ccc=ccc13 */,
+ { 2, 7460, 10331, 10, 3, UNI_IN__6_DOT_2 } /* presentin=v62 */,
+ { 2, 1836, 26, 22, 1, UNI_CWL } /* changeswhenlowercased=y */,
+ { 14, 1770, 6001, 22, 4, UNI_BPT__N } /* bidipairedbrackettype=none */,
+ { 1, 1553, 6983, 9, 11, UNI_LO } /* category=otherletter */,
+ { 0, 185, 24, 2, 1, UNI_L } /* isl */,
+ { 0, 1418, 9355, 25, 4, UNI_CCC__25 } /* canonicalcombiningclass=ccc25 */,
+ { 0, 9063, 3, 6, 1, -UNI_EPRES } /* epres=f */,
+ { 0, 9647, 10328, 4, 3, UNI_AGE__6_DOT_1 } /* age=v61 */,
+ { 0, 3553, 26, 18, 1, UNI_VS } /* variationselector=y */,
+ { 5, 9691, 750, 4, 21, UNI_ENCLOSEDALPHANUM } /* blk=enclosedalphanumerics */,
+ { 0, 8782, 3103, 7, 6, UNI_SC__COPT } /* script=coptic */,
+ { 0, 9691, 10011, 4, 4, UNI_TAGS } /* blk=tags */,
+ { 2, 9979, 3049, 4, 4, UNI_CHER } /* scx=cher */,
+ { 0, 9647, 10063, 4, 4, UNI_AGE__11 } /* age=v110 */,
+ { 4, 9429, 26, 5, 1, UNI_CWCF } /* cwcf=y */,
+ { 0, 6083, 7948, 13, 8, UNI_NV__1_SLASH_7 } /* numericvalue=1.43e-01 */,
+ { 1, 10268, 8140, 3, 8, UNI_NV__7_SLASH_12 } /* nv=5.83e-01 */,
+ { 16, 5408, 8422, 4, 6, UNI_INMAHAJANI } /* inmahajani */,
+ { 0, 1418, 9018, 24, 3, UNI_CCC__130 } /* canonicalcombiningclass=130 */,
+ { 0, 3403, 1026, 6, 2, -UNI_XPOSIXSPACE } /* space=no */,
+ { 0, 10523, 0, 5, 0, UNI_XPOSIXBLANK } /* blank */,
+ { 0, 6083, 8907, 13, 4, UNI_NV__3000 } /* numericvalue=3000 */,
+ { 1, 8782, 9663, 7, 4, UNI_ARMI } /* script=armi */,
+ { 1, 10253, 43, 3, 2, UNI_LB__CJ } /* lb=cj */,
+ { 3, 2784, 7380, 19, 10, UNI_LB__H2 } /* hangulsyllabletype=lvsyllable */,
+ { 0, 9927, 0, 3, 0, UNI_PCM } /* pcm */,
+ { 0, 9647, 10322, 4, 3, UNI_AGE__5_DOT_2 } /* age=v52 */,
+ { 0, 7391, 12, 5, 3, UNI_CARI } /* iscarian */,
+ { 2, 8881, 728, 4, 2, UNI_ARMN } /* isarmn */,
+ { 0, 10253, 909, 3, 2, UNI_LB__PR } /* lb=pr */,
+ { 0, 6083, 8124, 13, 8, UNI_NV__1_SLASH_20 } /* numericvalue=5.00e-02 */,
+ { 0, 9534, 0, 5, 0, UNI_TAKR } /* takri */,
+ { 0, 1564, 0, 2, 0, UNI_PS } /* ps */,
+ { 1, 9476, 8284, 3, 4, UNI_BASS } /* sc=bass */,
+ { 1, 9687, 0, 4, 0, UNI_BHKS } /* bhks */,
+ { 1, 7360, 18, 10, 2, UNI_RI } /* linebreak=ri */,
+ { 5, 10268, 8937, 3, 5, UNI_NV__70000 } /* nv=70000 */,
+ { 0, 8881, 3572, 3, 16, UNI_ALCHEMICAL } /* isalchemicalsymbols */,
+ { 8, 7360, 6287, 10, 2, UNI_LB__ZW } /* linebreak=zw */,
+ { 0, 8973, 5088, 6, 5, UNI_ASCII } /* block=ascii */,
+ { 2, 8544, 0, 7, 0, UNI_CJKEXTA } /* cjkexta */,
+ { 0, 10247, 7177, 3, 2, UNI_JG__FE } /* jg=fe */,
+ { 0, 7580, 7772, 10, 6, UNI_WB__MN } /* wordbreak=midnum */,
+ { 1, 9979, 9771, 4, 4, UNI_GONM } /* scx=gonm */,
+ { 5, 10244, 10396, 3, 2, UNI_ZL } /* gc=zl */,
+ { 0, 9743, 36, 4, 1, UNI_DEP } /* dep=t */,
+ { 1, 9647, 8046, 4, 2, UNI_AGE__13 } /* age=13 */,
+ { 0, 5648, 1026, 14, 2, -UNI_QMARK } /* quotationmark=no */,
+ { 0, 8973, 1019, 6, 5, UNI_MUSIC } /* block=music */,
+ { 1, 9655, 0, 4, 0, UNI_AHOM } /* ahom */,
+ { 5, 185, 284, 2, 33, UNI_MISCMATHSYMBOLSB } /* ismiscellaneousmathematicalsymbolsb */,
+ { 1, 6617, 210, 4, 2, UNI_TOTO } /* istoto */,
+ { 0, 5408, 6508, 4, 10, UNI_MATHALPHANUM } /* inmathalphanum */,
+ { 9, 3121, 750, 18, 3, UNI_DT__ENC } /* decompositiontype=enc */,
+ { 0, 185, 511, 3, 19, UNI_CJK } /* iscjkunifiedideographs */,
+ { 2, 10280, 1, 3, 1, -UNI_RI } /* ri=n */,
+ { 0, 10268, 8059, 3, 2, UNI_NV__33 } /* nv=33 */,
+ { 0, 7230, 25, 10, 1, UNI_BC__S } /* bidiclass=s */,
+ { 3, 185, 3978, 2, 16, UNI_BOPOMOFOEXT } /* isbopomofoextended */,
+ { 2, 185, 38, 2, 2, UNI_XPOSIXDIGIT } /* isnd */,
+ { 1, 3355, 0, 18, 0, UNI_ORNAMENTALDINGBATS } /* ornamentaldingbats */,
+ { 4, 8782, 8340, 7, 8, UNI_SC__GUJR } /* script=gujarati */,
+ { 1, 7280, 0, 10, 0, UNI_COMPATJAMO } /* compatjamo */,
+ { 0, 9476, 8810, 3, 4, UNI_SOYO } /* sc=soyo */,
{ 0, 185, 4669, 2, 15, UNI_DIACRITICALSSUP } /* isdiacriticalssup */,
- { 8, 9691, 5326, 4, 14, UNI_LATINEXTE } /* blk=latinextendede */,
- { 0, 7297, 6430, 3, 3, UNI_HMNG } /* ishmng */,
- { 0, 6697, 10055, 11, 4, UNI_XPOSIXALPHA } /* alphabetic=true */,
- { 0, 10226, 26, 3, 1, UNI_DI } /* di=y */,
- { 1, 9691, 7826, 4, 9, UNI_INOLDTURKIC } /* blk=oldturkic */,
- { 1, 6083, 7948, 13, 8, UNI_NV__1_SLASH_7 } /* numericvalue=1.43e-01 */,
- { 0, 9979, 2453, 4, 20, UNI_PHLI } /* scx=inscriptionalpahlavi */,
- { 12, 9691, 9117, 4, 6, UNI_INLEPCHA } /* blk=lepcha */,
- { 0, 9979, 9033, 4, 6, UNI_CAKM } /* scx=chakma */,
- { 2, 185, 750, 2, 21, UNI_ENCLOSEDALPHANUM } /* isenclosedalphanumerics */,
- { 0, 4074, 4026, 16, 16, UNI_PE } /* generalcategory=closepunctuation */,
- { 3, 6083, 9560, 13, 3, UNI_NV__1_SLASH_2 } /* numericvalue=1/2 */,
- { 0, 7300, 10055, 10, 4, UNI_DIA } /* diacritic=true */,
- { 1, 7467, 10316, 3, 3, UNI_IN__5 } /* in=v50 */,
- { 1, 185, 3894, 2, 16, UNI_STERM } /* issentenceterminal */,
- { 21, 2803, 0, 19, 0, UNI_idst_values_index } /* idstrinaryoperator= */,
- { 0, 9691, 8544, 4, 7, UNI_CJKEXTA } /* blk=cjkexta */,
- { 2, 10247, 4266, 3, 16, UNI_JG__MANICHAEANTWENTY } /* jg=manichaeantwenty */,
- { 0, 7460, 7995, 10, 2, UNI_IN__12 } /* presentin=12 */,
- { 6, 8782, 9524, 7, 5, UNI_RUNR } /* script=runic */,
- { 1, 9075, 36, 6, 1, UNI_GREXT } /* grext=t */,
- { 5, 185, 2012, 2, 21, UNI_LOE } /* islogicalorderexception */,
- { 0, 9979, 9651, 4, 4, UNI_AGHB } /* scx=aghb */,
- { 5, 6340, 2691, 4, 9, UNI_COUNTINGROD } /* incountingrod */,
- { 0, 1538, 2573, 24, 20, UNI_INPC__TOPANDBOTTOMANDRIGHT } /* indicpositionalcategory=topandbottomandright */,
- { 1, 2584, 0, 4, 0, UNI_MAND } /* mand */,
- { 3, 7297, 1194, 3, 25, UNI_HALFANDFULLFORMS } /* ishalfwidthandfullwidthforms */,
- { 1, 9476, 9683, 3, 4, UNI_BATK } /* sc=batk */,
- { 1, 5045, 1892, 3, 8, UNI_XPOSIXUPPER } /* isuppercase */,
- { 1, 3121, 10286, 18, 3, UNI_DT__SML } /* decompositiontype=sml */,
- { 3, 9476, 3826, 3, 4, UNI_SC__MANI } /* sc=mani */,
- { 1, 6350, 7400, 12, 10, UNI_JT__U } /* joiningtype=nonjoining */,
- { 1, 9691, 4106, 4, 16, UNI_HALFANDFULLFORMS } /* blk=halfandfullforms */,
+ { 16, 9691, 2143, 4, 14, UNI_CJKRADICALSSUP } /* blk=cjkradicalssup */,
+ { 1, 9469, 5044, 5, 15, UNI_LOE } /* inpc=visualorderleft */,
+ { 3, 4847, 2861, 3, 18, UNI_MODIFIERTONELETTERS } /* inmodifiertoneletters */,
+ { 1, 10268, 8124, 3, 8, UNI_NV__1_SLASH_20 } /* nv=5.00e-02 */,
+ { 0, 185, 2056, 2, 21, UNI__PERL_NCHAR } /* isnoncharactercodepoint */,
+ { 0, 1990, 2670, 22, 19, UNI_INSC__CONSONANTHEADLETTER } /* indicsyllabiccategory=consonantheadletter */,
+ { 0, 3894, 0, 17, 0, UNI_sterm_values_index } /* sentenceterminal= */,
+ { 2, 2185, 9454, 21, 5, -UNI_EXTPICT } /* extendedpictographic=false */,
+ { 4, 8973, 9871, 6, 3, UNI_INMRO } /* block=mro */,
+ { 0, 5662, 340, 14, 2, UNI_SB__LO } /* sentencebreak=lo */,
+ { 6, 9979, 8340, 4, 8, UNI_GUJR } /* scx=gujarati */,
+ { 3, 10268, 9563, 3, 4, UNI_NV__1_SLASH_10 } /* nv=1/10 */,
+ { 1, 9691, 5256, 4, 7, UNI_KANASUP } /* blk=kanasup */,
+ { 1, 8973, 115, 7, 24, UNI_DIACRITICALS } /* block=combiningdiacriticalmarks */,
+ { 0, 9979, 2937, 5, 8, UNI_SUND } /* scx=sundanese */,
+ { 13, 9979, 9951, 4, 4, UNI_QAAI } /* scx=qaai */,
+ { 2, 9691, 3265, 4, 18, UNI_GEORGIANSUP } /* blk=georgiansupplement */,
+ { 0, 3877, 9504, 17, 5, UNI_NSHU } /* scriptextensions=nushu */,
+ { 1, 9979, 9963, 4, 4, UNI_ROHG } /* scx=rohg */,
+ { 0, 4972, 8867, 3, 6, UNI_TIRH } /* istirhuta */,
+ { 0, 8961, 3, 6, 1, -UNI_BIDIC } /* bidic=f */,
+ { 1, 4074, 1466, 16, 13, UNI_M } /* generalcategory=combiningmark */,
+ { 2, 185, 4504, 2, 4, UNI_BAMU } /* isbamu */,
+ { 1, 8782, 8979, 7, 4, UNI_CARI } /* script=cari */,
+ { 0, 185, 868, 2, 28, UNI_PHONETICEXTSUP } /* isphoneticextensionssupplement */,
+ { 0, 9711, 9345, 5, 4, UNI_CCC__23 } /* ccc=ccc23 */,
+ { 0, 7360, 23, 10, 2, UNI_LB__AL } /* linebreak=al */,
+ { 1, 9691, 2501, 4, 3, UNI_PUA } /* blk=pua */,
+ { 0, 7467, 10328, 3, 3, UNI_IN__6_DOT_1 } /* in=v61 */,
+ { 0, 7460, 8212, 10, 3, UNI_IN__8 } /* presentin=8.0 */,
+ { 4, 9691, 43, 4, 16, UNI_CJKCOMPAT } /* blk=cjkcompatibility */,
+ { 0, 10244, 1528, 3, 9, UNI__PERL_SURROGATE } /* gc=surrogate */,
+ { 17, 4074, 4058, 16, 16, UNI_PF } /* generalcategory=finalpunctuation */,
+ { 0, 4847, 2880, 3, 8, UNI_INMONGOLIAN } /* inmongolian */,
+ { 0, 9979, 9775, 4, 4, UNI_GREK } /* scx=grek */,
+ { 1, 9550, 3, 4, 1, -UNI_IDS } /* ids=f */,
+ { 4, 10247, 6458, 3, 12, UNI_JG__MALAYALAMSSA } /* jg=malayalamssa */,
+ { 0, 10247, 4244, 3, 3, UNI_JG__LAM } /* jg=lam */,
+ { 0, 185, 3050, 3, 7, UNI_CHER } /* ischerokee */,
+ { 0, 10253, 10376, 3, 2, UNI_LB__BK } /* lb=bk */,
+ { 1, 6340, 44, 3, 2, UNI_CJK } /* incjk */,
+ { 3, 8973, 2632, 6, 6, UNI_INBRAHMI } /* block=brahmi */,
+ { 2, 6340, 8559, 3, 6, UNI_CJKEXTC } /* incjkextc */,
+ { 0, 21, 5270, 2, 14, UNI_KANGXI } /* inkangxiradicals */,
+ { 1, 10253, 203, 3, 2, UNI_LB__SA } /* lb=sa */,
+ { 6, 8642, 26, 7, 1, UNI_HYPHEN } /* hyphen=y */,
+ { 4, 9691, 2936, 4, 9, UNI_INSUNDANESE } /* blk=sundanese */,
+ { 2, 8973, 952, 6, 18, UNI_INVS } /* block=variationselectors */,
+ { 0, 185, 6374, 2, 12, UNI_NL } /* isletternumber */,
+ { 0, 185, 10115, 2, 4, UNI_QAAI } /* iszinh */,
{ 0, 3406, 1026, 3, 2, -UNI_CE } /* ce=no */,
- { 0, 10268, 8907, 3, 4, UNI_NV__3000 } /* nv=3000 */,
- { 1, 6083, 8028, 13, 8, UNI_NV__20000000 } /* numericvalue=20000000 */,
- { 8, 9691, 8420, 4, 8, UNI_INMAHAJANI } /* blk=mahajani */,
- { 2, 9691, 8600, 4, 7, UNI_DSRT } /* blk=deseret */,
- { 1, 185, 5326, 2, 14, UNI_LATINEXTE } /* islatinextendede */,
- { 0, 9476, 3265, 3, 8, UNI_SC__GEOR } /* sc=georgian */,
- { 0, 10268, 8028, 3, 2, UNI_NV__20 } /* nv=20 */,
- { 2, 9691, 7330, 4, 10, UNI_INKHAROSHTHI } /* blk=kharoshthi */,
- { 2, 10470, 10485, 15, 5, UNI__PERL_CHARNAME_BEGIN } /* _perl_charname_begin */,
- { 4, 6529, 9515, 3, 4, UNI_INORIYA } /* inoriya */,
- { 0, 10244, 6983, 3, 11, UNI_LO } /* gc=otherletter */,
- { 0, 21, 7754, 2, 9, UNI_LATINEXTG } /* inlatinextg */,
- { 1, 5029, 0, 15, 0, UNI_VEDICEXT } /* vedicextensions */,
- { 2, 10352, 4401, 3, 9, UNI_WB__EB } /* wb=emodifier */,
- { 7, 9476, 8356, 3, 4, UNI_SC__HIRA } /* sc=hira */,
- { 2, 185, 5368, 2, 4, UNI_LISU } /* islisu */,
- { 1, 3175, 0, 18, 0, UNI_epres_values_index } /* emojipresentation= */,
- { 1, 10268, 8119, 3, 1, UNI_NV__9 } /* nv=9 */,
- { 4, 3877, 8348, 17, 8, UNI_GURU } /* scriptextensions=gurmukhi */,
- { 5, 9051, 9454, 6, 5, -UNI_ECOMP } /* ecomp=false */,
- { 1, 8973, 1443, 7, 9, UNI_CJKSYMBOLS } /* block=cjksymbols */,
- { 3, 9979, 58, 4, 2, UNI_YI } /* scx=yi */,
- { 1, 1553, 9706, 9, 2, UNI_MC } /* category=mc */,
- { 1, 7460, 0, 10, 0, UNI_in_values_index } /* presentin= */,
- { 0, 8691, 0, 7, 0, UNI_MULT } /* multani */,
- { 1, 10123, 0, 4, 0, UNI_ZZZZ } /* zzzz */,
- { 3, 9434, 0, 5, 0, UNI_cwcm_values_index } /* cwcm= */,
- { 1, 9711, 9024, 4, 3, UNI_CCC__132 } /* ccc=132 */,
- { 16, 7060, 10055, 11, 4, UNI_SD } /* softdotted=true */,
- { 0, 3877, 79, 17, 6, UNI_ARAB } /* scriptextensions=arabic */,
- { 30, 9476, 10019, 3, 4, UNI_TALU } /* sc=talu */,
- { 0, 10510, 63, 6, 5, UNI_XPOSIXGRAPH } /* xposixgraph */,
- { 6, 10247, 5420, 3, 4, UNI_JG__BETH } /* jg=beth */,
- { 2, 185, 8284, 2, 8, UNI_BASS } /* isbassavah */,
- { 6, 4598, 3267, 4, 9, UNI_GEORGIANSUP } /* ingeorgiansup */,
- { 1, 8782, 9799, 7, 4, UNI_HMNP } /* script=hmnp */,
- { 7, 7510, 0, 10, 0, UNI_SMALLFORMS } /* smallforms */,
- { 0, 8754, 0, 7, 0, UNI_OSMA } /* osmanya */,
- { 0, 7460, 10334, 10, 3, UNI_IN__6_DOT_3 } /* presentin=v63 */,
- { 0, 5408, 6388, 4, 5, UNI_MAHJONG } /* inmahjong */,
- { 1, 9711, 9407, 4, 2, UNI_CCC__35 } /* ccc=35 */,
- { 1, 8973, 2765, 6, 19, UNI_JAMOEXTB } /* block=hanguljamoextendedb */,
- { 0, 5662, 496, 14, 2, UNI_SB__NU } /* sentencebreak=nu */,
- { 13, 9476, 9117, 3, 6, UNI_LEPC } /* sc=lepcha */,
- { 10, 8973, 44, 7, 25, UNI_CJKCOMPATIDEOGRAPHS } /* block=cjkcompatibilityideographs */,
- { 0, 8973, 2879, 6, 19, UNI_MONGOLIANSUP } /* block=mongoliansupplement */,
- { 0, 185, 4534, 2, 7, UNI_BRAI } /* isbraille */,
- { 0, 3877, 1116, 17, 4, UNI_HANG } /* scriptextensions=hang */,
- { 1, 9979, 9859, 4, 4, UNI_MERC } /* scx=merc */,
- { 0, 10268, 8156, 3, 8, UNI_NV__5_SLASH_8 } /* nv=6.25e-01 */,
- { 3, 9647, 7950, 4, 1, UNI_AGE__4 } /* age=4 */,
- { 3, 2808, 1396, 4, 22, UNI_ARABICPFB } /* inarabicpresentationformsb */,
- { 0, 9691, 5227, 4, 4, UNI_INCHAM } /* blk=cham */,
- { 2, 1990, 5784, 22, 13, UNI_INSC__CONSONANTDEAD } /* indicsyllabiccategory=consonantdead */,
- { 9, 7580, 8516, 10, 7, UNI_WB__LE } /* wordbreak=aletter */,
- { 1, 8961, 26, 6, 1, UNI_BIDIC } /* bidic=y */,
- { 2, 10268, 9307, 3, 2, UNI_NV__15 } /* nv=15 */,
- { 2, 2304, 7422, 4, 8, UNI_XPEO } /* isoldpersian */,
- { 5, 9979, 9201, 4, 4, UNI_TELU } /* scx=telu */,
- { 1, 10352, 126, 3, 2, UNI_LB__CR } /* wb=cr */,
- { 1, 6340, 6207, 3, 11, UNI_CYRILLICEXTB } /* incyrillicextb */,
- { 3, 9979, 8537, 4, 4, UNI_BENG } /* scx=beng */,
- { 1, 3877, 9883, 17, 4, UNI_NARB } /* scriptextensions=narb */,
- { 0, 10247, 6455, 3, 3, UNI_JG__NYA } /* jg=nya */,
- { 1, 9691, 8775, 4, 7, UNI_INPHAGSPA } /* blk=phagspa */,
- { 1, 4972, 4427, 3, 15, UNI_TANGUTCOMPONENTS } /* istangutcomponents */,
- { 2, 10533, 3403, 7, 5, UNI_XPOSIXBLANK } /* ishorizspace */,
- { 0, 9691, 8824, 4, 7, UNI_SUPPUAB } /* blk=suppuab */,
- { 2, 8881, 3964, 4, 14, UNI_ARABICSUP } /* isarabicsupplement */,
- { 2, 7655, 0, 9, 0, UNI_BHKS } /* bhaiksuki */,
- { 3, 9927, 0, 3, 0, UNI_PCM } /* pcm */,
- { 2, 6340, 2165, 3, 10, UNI_CYRILLICSUP } /* incyrillicsup */,
- { 1, 9057, 9454, 6, 5, -UNI_EMOJI } /* emoji=false */,
- { 3, 1880, 1026, 22, 2, -UNI_CWU } /* changeswhenuppercased=no */,
- { 0, 9691, 7310, 4, 10, UNI_INDIVESAKURU } /* blk=divesakuru */,
- { 2, 6362, 0, 5, 0, UNI_KHMR } /* khmer */,
- { 5, 6158, 3, 12, 1, -UNI_BIDIC } /* bidicontrol=f */,
- { 3, 4074, 4954, 16, 15, UNI_PS } /* generalcategory=openpunctuation */,
- { 3, 3877, 4504, 17, 4, UNI_BAMU } /* scriptextensions=bamu */,
- { 2, 5408, 6388, 4, 10, UNI_MAHJONG } /* inmahjongtiles */,
- { 4, 185, 9779, 2, 4, UNI_GUJR } /* isgujr */,
- { 0, 8973, 79, 6, 10, UNI_ARABICMATH } /* block=arabicmath */,
- { 3, 10352, 8698, 3, 7, UNI_WB__NL } /* wb=newline */,
- { 0, 1418, 9022, 25, 5, UNI_CCC__132 } /* canonicalcombiningclass=ccc132 */,
- { 8, 5875, 7341, 14, 9, UNI_JG__KNOTTEDHEH } /* joininggroup=knottedheh */,
- { 0, 4894, 0, 16, 0, UNI_NFKCQC__N } /* nfkcquickcheck=n */,
- { 0, 2689, 0, 11, 0, UNI_COUNTINGROD } /* countingrod */,
- { 0, 9979, 3936, 5, 3, UNI_SGNW } /* scx=sgnw */,
- { 0, 10217, 23, 3, 2, UNI_BC__AL } /* bc=al */,
- { 2, 10253, 21, 3, 2, UNI_LB__IN } /* lb=in */,
- { 2, 8973, 2332, 6, 21, UNI_YIJING } /* block=yijinghexagramsymbols */,
- { 0, 3403, 10355, 6, 3, UNI_XPOSIXSPACE } /* space=yes */,
- { 0, 185, 85, 2, 4, UNI_MATH } /* ismath */,
- { 1, 3877, 3936, 18, 3, UNI_SGNW } /* scriptextensions=sgnw */,
- { 3, 9979, 10119, 4, 4, UNI_ZYYY } /* scx=zyyy */,
- { 1, 5256, 0, 7, 0, UNI_KANASUP } /* kanasup */,
- { 0, 9077, 1026, 4, 2, -UNI_EXT } /* ext=no */,
- { 12, 8593, 10355, 7, 3, UNI_COMPEX } /* compex=yes */,
+ { 2, 9691, 4410, 4, 16, UNI_SYRIACSUP } /* blk=syriacsupplement */,
+ { 2, 9979, 0, 4, 0, UNI_scx_values_index } /* scx= */,
+ { 4, 185, 9863, 2, 4, UNI_MIAO } /* ismiao */,
+ { 2, 9711, 9390, 5, 4, UNI_CCC__32 } /* ccc=ccc32 */,
+ { 0, 4410, 0, 16, 0, UNI_SYRIACSUP } /* syriacsupplement */,
+ { 0, 4157, 3302, 3, 17, UNI_PI } /* isinitialpunctuation */,
+ { 0, 3877, 494, 17, 3, UNI_HAN } /* scriptextensions=han */,
+ { 4, 9943, 0, 4, 0, UNI_PRTI } /* prti */,
+ { 3, 5875, 7341, 14, 9, UNI_JG__KNOTTEDHEH } /* joininggroup=knottedheh */,
+ { 1, 4534, 0, 15, 0, UNI_BRAI } /* braillepatterns */,
+ { 0, 4154, 953, 3, 27, UNI_VSSUP } /* invariationselectorssupplement */,
+ { 0, 7360, 6807, 10, 11, UNI_LB__EX } /* linebreak=exclamation */,
+ { 5, 3877, 6924, 18, 3, UNI_SAMR } /* scriptextensions=samr */,
+ { 0, 8782, 8873, 7, 7, UNI_ZZZZ } /* script=unknown */,
+ { 0, 7467, 7990, 3, 1, UNI_IN__8 } /* in=8 */,
+ { 1, 21, 9484, 2, 5, UNI_INLIMBU } /* inlimbu */,
+ { 6, 2206, 34, 21, 6, UNI_GCB__EX } /* graphemeclusterbreak=extend */,
+ { 0, 9691, 2493, 4, 20, UNI_INNYIAKENGPUACHUEHMONG } /* blk=nyiakengpuachuehmong */,
+ { 4, 8782, 8866, 7, 4, UNI_SC__TIRH } /* script=tirh */,
+ { 2, 9691, 9081, 4, 6, UNI_INHATRAN } /* blk=hatran */,
+ { 0, 185, 0, 4, 0, UNI_CE } /* isce */,
+ { 0, 10247, 6434, 3, 12, UNI_JG__MALAYALAMNNA } /* jg=malayalamnna */,
+ { 0, 9691, 7600, 4, 10, UNI_YIRADICALS } /* blk=yiradicals */,
+ { 1, 9979, 8845, 4, 7, UNI_TAVT } /* scx=taiviet */,
+ { 1, 1418, 9310, 25, 4, UNI_CCC__16 } /* canonicalcombiningclass=ccc16 */,
+ { 1, 8782, 8804, 8, 6, UNI_SIDD } /* script=siddham */,
+ { 0, 1553, 9048, 9, 2, UNI_CF } /* category=cf */,
+ { 2, 9711, 7995, 4, 2, UNI_CCC__12 } /* ccc=12 */,
+ { 0, 4504, 0, 4, 0, UNI_BAMU } /* bamu */,
+ { 0, 8782, 9237, 7, 4, UNI_SC__YEZI } /* script=yezi */,
+ { 7, 8782, 9444, 7, 4, UNI_SC__DOGR } /* script=dogr */,
+ { 1, 185, 9129, 2, 6, UNI_LYCI } /* islycian */,
+ { 2, 7580, 5669, 10, 2, UNI_WB__EB } /* wordbreak=eb */,
+ { 1, 5875, 342, 13, 2, UNI_JG__PE } /* joininggroup=pe */,
+ { 3, 9979, 9534, 4, 5, UNI_TAKR } /* scx=takri */,
+ { 3, 1167, 1026, 26, 2, -UNI_DI } /* defaultignorablecodepoint=no */,
+ { 0, 1990, 9499, 22, 5, UNI_INSC__NUKTA } /* indicsyllabiccategory=nukta */,
+ { 0, 3175, 10355, 18, 3, UNI_EPRES } /* emojipresentation=yes */,
+ { 0, 185, 6961, 2, 11, UNI_MYANMAREXTB } /* ismyanmarextb */,
+ { 1, 9691, 7190, 4, 10, UNI_ARABICEXTA } /* blk=arabicexta */,
+ { 2, 4699, 9454, 15, 5, -UNI_ECOMP } /* emojicomponent=false */,
+ { 2, 8782, 8859, 7, 7, UNI_TIBT } /* script=tibetan */,
+ { 0, 3877, 9967, 17, 4, UNI_RUNR } /* scriptextensions=runr */,
+ { 1, 10516, 469, 3, 10, UNI_P } /* ispunctuation */,
+ { 2, 9691, 10271, 4, 3, UNI_OCR } /* blk=ocr */,
+ { 2, 9691, 6614, 4, 8, UNI_PHAISTOS } /* blk=phaistos */,
+ { 4, 9647, 0, 4, 0, UNI_age_values_index } /* age= */,
+ { 0, 5045, 1892, 3, 4, UNI_XPOSIXUPPER } /* isupper */,
+ { 0, 9691, 6194, 4, 12, UNI_CYRILLICEXTA } /* blk=cyrillicexta */,
+ { 1, 9647, 9, 4, 2, UNI_AGE__NA } /* age=na */,
+ { 0, 9459, 10055, 5, 4, UNI_IDSB } /* idsb=true */,
+ { 0, 9476, 2936, 3, 4, UNI_SUND } /* sc=sund */,
+ { 0, 2553, 0, 21, 0, UNI_TERM } /* terminalpunctuation=t */,
+ { 1, 6506, 0, 12, 0, UNI_MATHALPHANUM } /* mathalphanum */,
+ { 6, 8973, 8796, 6, 7, UNI_SHAW } /* block=shavian */,
+ { 0, 9476, 7260, 3, 10, UNI_CHRS } /* sc=chorasmian */,
+ { 0, 4442, 0, 16, 0, UNI_TANGUTSUP } /* tangutsupplement */,
+ { 1, 3877, 9195, 17, 6, UNI_TNSA } /* scriptextensions=tangsa */,
+ { 0, 6338, 10355, 12, 3, UNI_JOINC } /* joincontrol=yes */,
+ { 0, 21, 5256, 2, 14, UNI_KANASUP } /* inkanasupplement */,
+ { 0, 9476, 4426, 3, 4, UNI_TANG } /* sc=tang */,
+ { 2, 185, 383, 2, 32, UNI_EGYPTIANHIEROGLYPHFORMATCONTROLS } /* isegyptianhieroglyphformatcontrols */,
+ { 2, 1553, 3373, 9, 18, UNI_ZP } /* category=paragraphseparator */,
+ { 4, 9434, 0, 4, 0, UNI_CWCM } /* cwcm */,
+ { 1, 8782, 10015, 7, 4, UNI_SC__TALE } /* script=tale */,
+ { 0, 7637, 0, 9, 0, UNI_ARABICPFA } /* arabicpfa */,
+ { 0, 1418, 9345, 25, 4, UNI_CCC__23 } /* canonicalcombiningclass=ccc23 */,
+ { 4, 2242, 16, 3, 1, UNI_NB } /* innb */,
+ { 0, 1418, 5732, 24, 2, UNI_CCC__10 } /* canonicalcombiningclass=10 */,
+ { 1, 6741, 9454, 11, 5, -UNI_DEP } /* deprecated=false */,
+ { 1, 10268, 8188, 3, 8, UNI_NV__2_SLASH_3 } /* nv=6.67e-01 */,
+ { 0, 9711, 24, 4, 1, UNI_CCC__L } /* ccc=l */,
+ { 1, 2808, 7639, 4, 7, UNI_ARABICPFA } /* inarabicpfa */,
+ { 1, 9469, 910, 3, 9, UNI_PUA } /* inprivateuse */,
+ { 0, 9979, 9767, 4, 4, UNI_GONG } /* scx=gong */,
+ { 1, 8973, 8775, 6, 7, UNI_INPHAGSPA } /* block=phagspa */,
+ { 0, 9691, 4505, 5, 7, UNI_BAMUMSUP } /* blk=bamumsup */,
+ { 0, 8973, 2165, 7, 10, UNI_CYRILLICSUP } /* block=cyrillicsup */,
+ { 1, 7467, 10199, 3, 3, UNI_IN__6_DOT_1 } /* in=6.1 */,
+ { 3, 10268, 9571, 3, 3, UNI_NV__1_SLASH_4 } /* nv=1/4 */,
+ { 0, 7160, 5275, 3, 9, UNI_YIRADICALS } /* isyiradicals */,
+ { 2, 8782, 494, 7, 3, UNI_SC__HAN } /* script=han */,
+ { 1, 9691, 3139, 4, 18, UNI_DEVANAGARIEXT } /* blk=devanagariextended */,
+ { 7, 7360, 496, 10, 7, UNI_LB__NU } /* linebreak=numeric */,
+ { 0, 7230, 408, 10, 2, UNI_BC__ON } /* bidiclass=on */,
+ { 4, 9979, 9264, 4, 5, UNI_ADLM } /* scx=adlam */,
+ { 6, 6741, 1026, 11, 2, -UNI_DEP } /* deprecated=no */,
+ { 0, 9979, 8388, 4, 8, UNI_JAVA } /* scx=javanese */,
+ { 0, 185, 9129, 2, 4, UNI_LYCI } /* islyci */,
+ { 9, 8782, 9859, 7, 4, UNI_MERC } /* script=merc */,
+ { 2, 185, 6362, 2, 5, UNI_KHMR } /* iskhmer */,
+ { 1, 9691, 9895, 4, 3, UNI_INNKO } /* blk=nko */,
+ { 6, 7540, 0, 10, 0, UNI_SUPARROWSC } /* suparrowsc */,
+ { 3, 9979, 2227, 4, 14, UNI_ROHG } /* scx=hanifirohingya */,
+ { 0, 9269, 1026, 5, 2, -UNI_POSIXXDIGIT } /* ahex=no */,
+ { 4, 10244, 3301, 3, 18, UNI_PI } /* gc=initialpunctuation */,
+ { 0, 10253, 5620, 3, 14, UNI_LB__PO } /* lb=postfixnumeric */,
+ { 0, 8973, 3962, 6, 9, UNI_ARABICSUP } /* block=arabicsup */,
+ { 3, 10268, 10193, 3, 3, UNI_NV__5_SLASH_6 } /* nv=5/6 */,
+ { 6, 8586, 0, 7, 0, UNI_CJKEXTG } /* cjkextg */,
+ { 1, 9545, 0, 4, 0, UNI_idc_values_index } /* idc= */,
+ { 1, 8961, 1026, 6, 2, -UNI_BIDIC } /* bidic=no */,
+ { 4, 9691, 6626, 4, 12, UNI_PLAYINGCARDS } /* blk=playingcards */,
+ { 0, 1592, 8608, 3, 6, UNI_INELBASAN } /* inelbasan */,
+ { 2, 10253, 496, 3, 2, UNI_LB__NU } /* lb=nu */,
+ { 0, 8973, 3104, 7, 17, UNI_COPTICEPACTNUMBERS } /* block=copticepactnumbers */,
+ { 0, 9189, 3, 6, 1, -UNI_STERM } /* sterm=f */,
+ { 1, 9711, 1780, 4, 2, UNI_CCC__BR } /* ccc=br */,
+ { 0, 3877, 9915, 17, 4, UNI_ORYA } /* scriptextensions=orya */,
+ { 0, 9691, 5354, 4, 14, UNI_LATINEXTG } /* blk=latinextendedg */,
+ { 4, 9867, 0, 4, 0, UNI_MLYM } /* mlym */,
+ { 2, 10268, 10139, 3, 3, UNI_NV__2_SLASH_5 } /* nv=2/5 */,
+ { 1, 6083, 9619, 13, 4, UNI_NV__3_SLASH_16 } /* numericvalue=3/16 */,
+ { 2, 8782, 9129, 7, 6, UNI_LYCI } /* script=lycian */,
+ { 4, 7580, 0, 10, 0, UNI_wb_values_index } /* wordbreak= */,
+ { 1, 1189, 4985, 3, 4, UNI_INTAMIL } /* intamil */,
+ { 0, 10553, 2553, 3, 4, UNI_STERM } /* issterm */,
+ { 1, 5662, 8747, 14, 7, UNI_SB__LE } /* sentencebreak=oletter */,
+ { 0, 9476, 10099, 3, 4, UNI_XSUX } /* sc=xsux */,
+ { 1, 8973, 3978, 6, 8, UNI_INBOPOMOFO } /* block=bopomofo */,
+ { 0, 10217, 32, 3, 2, UNI_BC__CS } /* bc=cs */,
+ { 0, 9691, 1747, 4, 23, UNI_ZNAMENNYMUSIC } /* blk=znamennymusicalnotation */,
+ { 0, 1852, 26, 6, 1, UNI_CASED } /* cased=y */,
+ { 8, 8782, 8831, 7, 7, UNI_SC__TGLG } /* script=tagalog */,
+ { 1, 7391, 534, 4, 2, UNI_CANS } /* iscans */,
+ { 0, 10352, 5948, 3, 2, UNI_WB__ML } /* wb=ml */,
+ { 1, 10268, 8108, 3, 8, UNI_NV__9_SLASH_2 } /* nv=4.50e+00 */,
+ { 0, 4074, 5014, 16, 15, UNI_UPPERCASELETTER } /* generalcategory=uppercaseletter */,
+ { 4, 8372, 0, 8, 0, UNI_JAMOEXTA } /* jamoexta */,
+ { 0, 3877, 5368, 17, 4, UNI_LISU } /* scriptextensions=lisu */,
+ { 13, 4074, 48, 16, 1, UNI_M } /* generalcategory=m */,
+ { 0, 3945, 3, 17, 1, -UNI_UIDEO } /* unifiedideograph=f */,
+ { 5, 5662, 73, 14, 2, UNI_SB__LE } /* sentencebreak=le */,
{ 0, 8684, 0, 7, 0, UNI_MARC } /* marchen */,
- { 0, 9461, 1891, 3, 5, UNI_SB__UP } /* sb=upper */,
- { 0, 10349, 26, 3, 1, UNI_VS } /* vs=y */,
- { 0, 9476, 2936, 3, 9, UNI_SUND } /* sc=sundanese */,
- { 0, 2248, 897, 3, 27, UNI_SUPPUAA } /* insupplementaryprivateuseareaa */,
- { 0, 9190, 1026, 5, 2, -UNI_TERM } /* term=no */,
- { 4, 9476, 8691, 3, 4, UNI_SC__MULT } /* sc=mult */,
- { 3, 7467, 8036, 3, 3, UNI_IN__3_DOT_1 } /* in=3.1 */,
- { 1, 2593, 0, 20, 0, UNI_vo_values_index } /* verticalorientation= */,
- { 0, 2206, 5830, 21, 5, UNI_WB__EB } /* graphemeclusterbreak=ebase */,
- { 1, 8782, 10027, 7, 4, UNI_TAVT } /* script=tavt */,
- { 2, 3391, 0, 17, 0, UNI__PERL_PATWS } /* patternwhitespace */,
- { 3, 10553, 8790, 3, 6, UNI_SHRD } /* issharada */,
- { 0, 3877, 7844, 17, 9, UNI_PALM } /* scriptextensions=palmyrene */,
- { 0, 5823, 0, 12, 0, UNI_GRBASE } /* graphemebase */,
- { 4, 185, 1034, 2, 11, UNI_ENCLOSEDCJK } /* isenclosedcjk */,
- { 0, 7460, 8119, 10, 1, UNI_IN__9 } /* presentin=9 */,
- { 2, 10346, 0, 3, 0, UNI_vo_values_index } /* vo= */,
- { 1, 6593, 0, 4, 0, UNI_HUNG } /* hung */,
- { 0, 10253, 496, 3, 7, UNI_LB__NU } /* lb=numeric */,
+ { 1, 5172, 3, 14, 1, -UNI_EMOD } /* emojimodifier=f */,
+ { 2, 9474, 5784, 5, 13, UNI_INSC__CONSONANTDEAD } /* insc=consonantdead */,
+ { 0, 9476, 7811, 3, 4, UNI_ITAL } /* sc=ital */,
+ { 0, 9979, 10099, 4, 4, UNI_XSUX } /* scx=xsux */,
+ { 0, 9461, 7871, 3, 9, UNI_SB__SC } /* sb=scontinue */,
+ { 0, 9691, 10083, 4, 3, UNI_INVAI } /* blk=vai */,
+ { 0, 6350, 7400, 12, 10, UNI_JT__U } /* joiningtype=nonjoining */,
+ { 2, 1274, 10355, 21, 3, UNI_CE } /* compositionexclusion=yes */,
+ { 4, 9711, 9375, 5, 4, UNI_CCC__29 } /* ccc=ccc29 */,
+ { 4, 8973, 1061, 7, 5, UNI_INCOPTIC } /* block=coptic */,
+ { 0, 10268, 8901, 3, 6, UNI_NV__216000 } /* nv=216000 */,
+ { 0, 2248, 1346, 3, 24, UNI_SYMBOLSFORLEGACYCOMPUTING } /* insymbolsforlegacycomputing */,
+ { 2, 185, 8719, 2, 7, UNI_NB } /* isnoblock */,
+ { 1, 6083, 8913, 13, 6, UNI_NV__400000 } /* numericvalue=400000 */,
+ { 2, 7460, 9595, 10, 4, UNI_IN__12_DOT_1 } /* presentin=12.1 */,
+ { 0, 8973, 2993, 6, 19, UNI_SUPARROWSC } /* block=supplementalarrowsc */,
+ { 3, 7230, 2290, 10, 21, UNI_BC__PDI } /* bidiclass=popdirectionalisolate */,
+ { 4, 5830, 1026, 6, 2, -UNI_EBASE } /* ebase=no */,
+ { 0, 9461, 752, 3, 2, UNI_SB__CL } /* sb=cl */,
+ { 0, 9691, 43, 4, 26, UNI_CJKCOMPATIDEOGRAPHS } /* blk=cjkcompatibilityideographs */,
+ { 4, 6083, 9249, 13, 4, UNI_NV__1_SLASH_16 } /* numericvalue=1/16 */,
+ { 1, 5823, 1, 13, 1, -UNI_GRBASE } /* graphemebase=n */,
+ { 5, 9171, 0, 6, 0, UNI_patws_values_index } /* patws= */,
+ { 1, 10268, 10364, 3, 2, UNI_NV__45 } /* nv=45 */,
+ { 0, 9711, 9006, 4, 3, UNI_CCC__122 } /* ccc=122 */,
+ { 0, 3877, 10099, 17, 4, UNI_XSUX } /* scriptextensions=xsux */,
+ { 2, 185, 810, 2, 22, UNI_ENCLOSEDIDEOGRAPHICSUP } /* isenclosedideographicsup */,
+ { 0, 5662, 401, 14, 6, UNI_SB__FO } /* sentencebreak=format */,
+ { 4, 1418, 9012, 24, 3, UNI_CCC__129 } /* canonicalcombiningclass=129 */,
+ { 0, 7218, 8539, 4, 5, UNI_INBENGALI } /* inbengali */,
+ { 0, 10217, 37, 3, 2, UNI_BC__EN } /* bc=en */,
+ { 1, 10516, 5096, 7, 5, UNI_POSIXDIGIT } /* isposixdigit */,
+ { 0, 9075, 1, 6, 1, -UNI_GREXT } /* grext=n */,
+ { 0, 4714, 9454, 15, 5, -UNI_GREXT } /* graphemeextend=false */,
+ { 1, 7230, 23, 10, 2, UNI_BC__AL } /* bidiclass=al */,
+ { 0, 6340, 8573, 3, 6, UNI_CJKEXTE } /* incjkexte */,
+ { 2, 21, 9183, 2, 6, UNI_INREJANG } /* inrejang */,
+ { 0, 383, 0, 4, 0, UNI_EGYP } /* egyp */,
+ { 5, 9743, 0, 4, 0, UNI_dep_values_index } /* dep= */,
+ { 0, 9476, 8356, 3, 4, UNI_SC__HIRA } /* sc=hira */,
+ { 8, 10268, 8919, 3, 6, UNI_NV__432000 } /* nv=432000 */,
+ { 3, 5662, 7, 15, 1, UNI_SB__SC } /* sentencebreak=sc */,
+ { 4, 185, 1968, 2, 22, UNI_EARLYDYNASTICCUNEIFORM } /* isearlydynasticcuneiform */,
+ { 19, 9979, 1538, 5, 3, UNI_SIND } /* scx=sind */,
+ { 2, 8973, 1747, 6, 13, UNI_ZNAMENNYMUSIC } /* block=znamennymusic */,
+ { 3, 2765, 0, 19, 0, UNI_JAMOEXTB } /* hanguljamoextendedb */,
+ { 2, 1814, 0, 22, 0, UNI_cwcm_values_index } /* changeswhencasemapped= */,
+ { 1, 8973, 2085, 6, 4, UNI_INMODI } /* block=modi */,
+ { 0, 7460, 10313, 10, 3, UNI_IN__4_DOT_1 } /* presentin=v41 */,
+ { 0, 3157, 10355, 18, 3, UNI_EBASE } /* emojimodifierbase=yes */,
+ { 1, 185, 7330, 2, 10, UNI_KHAR } /* iskharoshthi */,
+ { 3, 1167, 10055, 26, 4, UNI_DI } /* defaultignorablecodepoint=true */,
+ { 1, 10253, 415, 3, 11, UNI_LB__ID } /* lb=ideographic */,
+ { 14, 7467, 7934, 3, 1, UNI_IN__2 } /* in=2 */,
+ { 0, 185, 1946, 2, 12, UNI_DIACRITICALS } /* isdiacriticals */,
+ { 1, 8973, 952, 6, 28, UNI_VSSUP } /* block=variationselectorssupplement */,
+ { 2, 9476, 6928, 3, 11, UNI_MEDF } /* sc=medefaidrin */,
+ { 8, 8973, 6109, 6, 13, UNI_VERTICALFORMS } /* block=verticalforms */,
+ { 0, 5592, 36, 14, 1, UNI_PATSYN } /* patternsyntax=t */,
+ { 1, 3877, 1655, 17, 6, UNI_HANG } /* scriptextensions=hangul */,
+ { 1, 9476, 8979, 3, 6, UNI_CARI } /* sc=carian */,
+ { 5, 9476, 9783, 3, 4, UNI_SC__GURU } /* sc=guru */,
+ { 5, 9691, 2879, 4, 19, UNI_MONGOLIANSUP } /* blk=mongoliansupplement */,
+ { 2, 383, 0, 32, 0, UNI_EGYPTIANHIEROGLYPHFORMATCONTROLS } /* egyptianhieroglyphformatcontrols */,
+ { 0, 8803, 0, 4, 0, UNI_SIDD } /* sidd */,
+ { 0, 9971, 0, 4, 0, UNI_SAMR } /* samr */,
+ { 0, 8973, 5606, 6, 14, UNI_PHONETICEXTSUP } /* block=phoneticextsup */,
+ { 0, 9691, 1034, 4, 11, UNI_ENCLOSEDCJK } /* blk=enclosedcjk */,
+ { 0, 1418, 3039, 24, 5, UNI_CCC__A } /* canonicalcombiningclass=above */,
+ { 3, 9691, 5940, 4, 9, UNI_INMALAYALAM } /* blk=malayalam */,
+ { 10, 9979, 9907, 4, 4, UNI_OLCK } /* scx=olck */,
+ { 1, 9691, 2311, 4, 21, UNI_SINHALAARCHAICNUMBERS } /* blk=sinhalaarchaicnumbers */,
+ { 2, 6340, 691, 3, 29, UNI_CJKEXTG } /* incjkunifiedideographsextensiong */,
+ { 2, 9711, 8028, 4, 2, UNI_CCC__20 } /* ccc=20 */,
+ { 3, 3877, 9237, 17, 4, UNI_YEZI } /* scriptextensions=yezi */,
+ { 1, 7580, 7049, 10, 11, UNI_WB__SQ } /* wordbreak=singlequote */,
+ { 2, 10268, 8244, 3, 8, UNI_NV__7_SLASH_8 } /* nv=8.75e-01 */,
+ { 0, 1538, 2573, 24, 12, UNI_INPC__TOPANDBOTTOM } /* indicpositionalcategory=topandbottom */,
+ { 0, 21, 1008, 3, 26, UNI_ANCIENTGREEKMUSIC } /* inancientgreekmusicalnotation */,
+ { 4, 9045, 1, 6, 1, -UNI_CWKCF } /* cwkcf=n */,
+ { 0, 4074, 2292, 16, 2, UNI_PD } /* generalcategory=pd */,
+ { 4, 185, 7, 3, 1, UNI_XPOSIXCNTRL } /* iscc */,
+ { 5, 9979, 3139, 4, 4, UNI_DEVA } /* scx=deva */,
+ { 1, 2003, 24, 10, 1, UNI_LOWERCASELETTER } /* category=ll */,
+ { 0, 9691, 896, 4, 28, UNI_SUPPUAA } /* blk=supplementaryprivateuseareaa */,
+ { 1, 3877, 8979, 17, 6, UNI_CARI } /* scriptextensions=carian */,
+ { 7, 5875, 3826, 13, 17, UNI_JG__MANICHAEANDHAMEDH } /* joininggroup=manichaeandhamedh */,
+ { 1, 7370, 26, 10, 1, UNI_XPOSIXLOWER } /* lowercase=y */,
+ { 1, 2248, 1563, 3, 23, UNI_SUPSYMBOLSANDPICTOGRAPHS } /* insupsymbolsandpictographs */,
+ { 0, 8973, 7240, 6, 10, UNI_BOXDRAWING } /* block=boxdrawing */,
+ { 1, 8782, 8649, 7, 7, UNI_SC__KNDA } /* script=kannada */,
+ { 5, 9439, 26, 5, 1, UNI_DASH } /* dash=y */,
+ { 1, 185, 2374, 3, 19, UNI_PC } /* isconnectorpunctuation */,
+ { 2, 1418, 9016, 25, 5, UNI_CCC__130 } /* canonicalcombiningclass=ccc130 */,
+ { 0, 1418, 9375, 25, 4, UNI_CCC__29 } /* canonicalcombiningclass=ccc29 */,
+ { 2, 6083, 8171, 13, 2, UNI_NV__26 } /* numericvalue=26 */,
+ { 1, 8973, 4381, 6, 13, UNI_MATHOPERATORS } /* block=mathoperators */,
+ { 0, 8973, 9484, 6, 5, UNI_INLIMBU } /* block=limbu */,
+ { 0, 9847, 36, 4, 1, UNI_LOE } /* loe=t */,
+ { 1, 10027, 0, 4, 0, UNI_TAVT } /* tavt */,
+ { 1, 10268, 8925, 3, 4, UNI_NV__5000 } /* nv=5000 */,
+ { 8, 9476, 8754, 3, 7, UNI_OSMA } /* sc=osmanya */,
+ { 1, 7580, 34, 10, 2, UNI_WB__EX } /* wordbreak=ex */,
+ { 0, 7, 0, 18, 0, UNI_CANS } /* canadianaboriginal */,
+ { 3, 185, 3050, 3, 17, UNI_CHEROKEESUP } /* ischerokeesupplement */,
+ { 0, 1945, 0, 2, 0, UNI_SD } /* sd */,
+ { 0, 185, 63, 2, 5, UNI_XPOSIXGRAPH } /* isgraph */,
+ { 0, 10247, 5438, 3, 14, UNI_JG__MANICHAEANHETH } /* jg=manichaeanheth */,
+ { 1, 9979, 6730, 4, 11, UNI_CPMN } /* scx=cyprominoan */,
+ { 9, 10516, 0, 3, 0, UNI_P } /* isp */,
+ { 0, 9979, 9779, 4, 4, UNI_GUJR } /* scx=gujr */,
+ { 0, 4972, 9196, 3, 5, UNI_TNSA } /* istangsa */,
+ { 4, 6083, 8164, 13, 8, UNI_NV__1_SLASH_16 } /* numericvalue=6.25e-02 */,
+ { 1, 9979, 7330, 4, 4, UNI_KHAR } /* scx=khar */,
+ { 1, 8973, 3928, 6, 17, UNI_SUTTONSIGNWRITING } /* block=suttonsignwriting */,
+ { 0, 9711, 9030, 4, 3, UNI_WB__EB } /* ccc=133 */,
+ { 7, 6083, 7990, 13, 1, UNI_NV__8 } /* numericvalue=8 */,
+ { 4, 11, 0, 2, 0, UNI_DI } /* di */,
+ { 2, 9691, 468, 4, 11, UNI_INPUNCTUATION } /* blk=punctuation */,
+ { 0, 3877, 8508, 17, 4, UNI_VITH } /* scriptextensions=vith */,
+ { 1, 7580, 728, 10, 2, UNI_WB__MN } /* wordbreak=mn */,
+ { 0, 9077, 1026, 4, 2, -UNI_EXT } /* ext=no */,
+ { 3, 5648, 0, 14, 0, UNI_qmark_values_index } /* quotationmark= */,
+ { 0, 6741, 36, 11, 1, UNI_DEP } /* deprecated=t */,
+ { 2, 10232, 0, 3, 0, UNI_ea_values_index } /* ea= */,
+ { 1, 10253, 10394, 3, 2, UNI_LB__XX } /* lb=xx */,
+ { 12, 4157, 6, 3, 2, UNI_IDC } /* isidc */,
+ { 0, 1418, 9675, 24, 4, UNI_WB__EB } /* canonicalcombiningclass=atbl */,
+ { 0, 8316, 1, 8, 1, -UNI_EXTPICT } /* extpict=n */,
+ { 1, 185, 1467, 3, 23, UNI_DIACRITICALSFORSYMBOLS } /* iscombiningmarksforsymbols */,
+ { 1, 9711, 9016, 5, 5, UNI_CCC__130 } /* ccc=ccc130 */,
+ { 0, 9189, 10355, 6, 3, UNI_STERM } /* sterm=yes */,
+ { 0, 27, 0, 2, 0, UNI_LOWERCASELETTER } /* ll */,
+ { 0, 9550, 1026, 4, 2, -UNI_IDS } /* ids=no */,
+ { 0, 10253, 534, 3, 2, UNI_LB__NS } /* lb=ns */,
+ { 1, 7467, 7950, 3, 1, UNI_IN__4 } /* in=4 */,
+ { 0, 7467, 7995, 3, 2, UNI_IN__12 } /* in=12 */,
+ { 33, 10553, 6, 3, 1, UNI_SD } /* issd */,
+ { 4, 9815, 0, 4, 0, UNI_KITS } /* kits */,
+ { 2, 185, 1172, 2, 2, UNI_TITLE } /* islt */,
+ { 10, 9979, 2879, 4, 9, UNI_MONG } /* scx=mongolian */,
+ { 0, 185, 9823, 2, 4, UNI_KTHI } /* iskthi */,
+ { 0, 8973, 3707, 6, 16, UNI_ETHIOPICEXT } /* block=ethiopicextended */,
+ { 3, 10244, 1026, 3, 2, UNI_NO } /* gc=no */,
+ { 8, 1990, 3639, 22, 17, UNI_INSC__CONSONANTPREFIXED } /* indicsyllabiccategory=consonantprefixed */,
+ { 0, 10268, 9627, 3, 4, UNI_NV__3_SLASH_64 } /* nv=3/64 */,
+ { 0, 10229, 4588, 3, 6, UNI_DT__MED } /* dt=medial */,
+ { 0, 9927, 26, 4, 1, UNI_PCM } /* pcm=y */,
+ { 0, 9691, 3049, 4, 18, UNI_CHEROKEESUP } /* blk=cherokeesupplement */,
+ { 1, 3448, 8501, 3, 7, UNI_INUGARITIC } /* inugaritic */,
+ { 0, 3877, 8670, 17, 4, UNI_MAKA } /* scriptextensions=maka */,
+ { 4, 8973, 909, 6, 14, UNI_PUA } /* block=privateusearea */,
+ { 1, 6083, 10364, 13, 2, UNI_NV__45 } /* numericvalue=45 */,
+ { 2, 6340, 1468, 4, 22, UNI_DIACRITICALSFORSYMBOLS } /* incombiningmarksforsymbols */,
+ { 15, 6719, 0, 11, 0, UNI_CASEDLETTER } /* casedletter */,
+ { 1, 10229, 0, 3, 0, UNI_dt_values_index } /* dt= */,
+ { 1, 8973, 6731, 7, 10, UNI_INCYPROMINOAN } /* block=cyprominoan */,
+ { 6, 2242, 7783, 4, 7, UNI_INNABATAEAN } /* innabataean */,
+ { 0, 8973, 8276, 6, 8, UNI_INBALINESE } /* block=balinese */,
+ { 1, 2242, 9505, 3, 4, UNI_INNUSHU } /* innushu */,
+ { 1, 7230, 32, 10, 2, UNI_BC__CS } /* bidiclass=cs */,
+ { 0, 9476, 10111, 3, 4, UNI_ZANB } /* sc=zanb */,
+ { 1, 185, 7271, 3, 9, UNI_CJKSTROKES } /* iscjkstrokes */,
+ { 0, 9979, 8754, 4, 7, UNI_OSMA } /* scx=osmanya */,
+ { 2, 5408, 331, 4, 19, UNI_MATHOPERATORS } /* inmathematicaloperators */,
+ { 0, 7360, 4010, 10, 16, UNI_LB__CP } /* linebreak=closeparenthesis */,
+ { 25, 3406, 1, 3, 1, -UNI_CE } /* ce=n */,
+ { 3, 7360, 5620, 10, 14, UNI_LB__PO } /* linebreak=postfixnumeric */,
+ { 0, 1847, 0, 9, 0, UNI_XPOSIXLOWER } /* lowercase */,
+ { 0, 8973, 3355, 6, 18, UNI_ORNAMENTALDINGBATS } /* block=ornamentaldingbats */,
+ { 11, 4074, 9424, 16, 5, UNI_XPOSIXCNTRL } /* generalcategory=cntrl */,
+ { 2, 8642, 0, 7, 0, UNI_hyphen_values_index } /* hyphen= */,
+ { 1, 21, 7718, 2, 9, UNI_LATINEXTB } /* inlatinextb */,
+ { 0, 9691, 1034, 4, 27, UNI_ENCLOSEDCJK } /* blk=enclosedcjklettersandmonths */,
+ { 4, 8782, 3139, 7, 10, UNI_SC__DEVA } /* script=devanagari */,
+ { 4, 9063, 9454, 6, 5, -UNI_EPRES } /* epres=false */,
+ { 6, 9476, 9951, 3, 4, UNI_SC__QAAI } /* sc=qaai */,
+ { 0, 8881, 5075, 3, 13, UNI_ANCIENTSYMBOLS } /* isancientsymbols */,
+ { 0, 4186, 0, 7, 0, UNI_LINB } /* linearb */,
+ { 2, 185, 3157, 2, 5, UNI_EMOJI } /* isemoji */,
+ { 4, 9476, 4186, 3, 7, UNI_SC__LINB } /* sc=linearb */,
+ { 5, 185, 4330, 2, 16, UNI_MYANMAREXTB } /* ismyanmarextendedb */,
+ { 4, 10244, 5578, 3, 14, UNI_MN } /* gc=nonspacingmark */,
+ { 1, 8973, 3837, 7, 3, UNI_INCHAM } /* block=cham */,
+ { 5, 1274, 3, 21, 1, -UNI_CE } /* compositionexclusion=f */,
+ { 0, 1418, 7320, 24, 10, UNI_CCC__6 } /* canonicalcombiningclass=hanreading */,
+ { 0, 2784, 0, 19, 0, UNI_hst_values_index } /* hangulsyllabletype= */,
+ { 0, 185, 924, 2, 28, UNI_SUPPUAB } /* issupplementaryprivateuseareab */,
+ { 0, 5875, 5564, 13, 14, UNI_JG__NOJOININGGROUP } /* joininggroup=nojoininggroup */,
+ { 3, 8656, 0, 7, 0, UNI_KALI } /* kayahli */,
+ { 0, 9979, 9851, 4, 4, UNI_MEDF } /* scx=medf */,
+ { 9, 185, 9895, 2, 4, UNI_NKO } /* isnkoo */,
+ { 0, 9751, 0, 4, 0, UNI_DIAK } /* diak */,
+ { 0, 6083, 9563, 13, 4, UNI_NV__1_SLASH_10 } /* numericvalue=1/10 */,
+ { 0, 5875, 4266, 13, 16, UNI_JG__MANICHAEANTWENTY } /* joininggroup=manichaeantwenty */,
+ { 1, 9476, 8340, 3, 8, UNI_SC__GUJR } /* sc=gujarati */,
+ { 0, 21, 9656, 3, 3, UNI_INAHOM } /* inahom */,
+ { 0, 7297, 9082, 3, 5, UNI_HATR } /* ishatran */,
+ { 2, 3139, 0, 10, 0, UNI_DEVA } /* devanagari */,
+ { 1, 9476, 7844, 3, 9, UNI_PALM } /* sc=palmyrene */,
+ { 4, 185, 9871, 2, 3, UNI_MRO } /* ismro */,
+ { 1, 1418, 7320, 24, 4, UNI_CCC__6 } /* canonicalcombiningclass=hanr */,
+ { 2, 9691, 6590, 4, 12, UNI_INOLDHUNGARIAN } /* blk=oldhungarian */,
+ { 3, 7467, 10205, 3, 3, UNI_IN__7 } /* in=7.0 */,
+ { 3, 10268, 9013, 3, 2, UNI_NV__29 } /* nv=29 */,
+ { 0, 9077, 10055, 4, 4, UNI_EXT } /* ext=true */,
+ { 0, 10247, 5396, 3, 14, UNI_JG__MANICHAEANAYIN } /* jg=manichaeanayin */,
+ { 2, 8782, 8468, 7, 4, UNI_SC__TAGB } /* script=tagb */,
+ { 0, 10217, 103, 3, 2, UNI_BC__ET } /* bc=et */,
+ { 0, 9476, 3978, 3, 8, UNI_SC__BOPO } /* sc=bopomofo */,
+ { 1, 6083, 8188, 13, 8, UNI_NV__2_SLASH_3 } /* numericvalue=6.67e-01 */,
+ { 0, 9476, 8691, 3, 4, UNI_SC__MULT } /* sc=mult */,
+ { 2, 9979, 8276, 4, 8, UNI_BALI } /* scx=balinese */,
+ { 4, 4909, 1, 15, 1, UNI_NFKDQC__N } /* nfkdquickcheck=n */,
+ { 3, 185, 5771, 2, 13, UNI_BLOCKELEMENTS } /* isblockelements */,
+ { 1, 9979, 9683, 4, 4, UNI_BATK } /* scx=batk */,
+ { 0, 4847, 4315, 3, 15, UNI_MYANMAREXTA } /* inmyanmarextendeda */,
+ { 0, 2304, 4926, 4, 13, UNI_NARB } /* isoldnortharabian */,
+ { 1, 2803, 9454, 19, 5, -UNI_IDST } /* idstrinaryoperator=false */,
+ { 0, 8782, 9105, 7, 6, UNI_SC__KHOJ } /* script=khojki */,
+ { 0, 8973, 7862, 6, 9, UNI_INSAMARITAN } /* block=samaritan */,
+ { 1, 2304, 9912, 3, 3, UNI_ORKH } /* isorkh */,
+ { 7, 9647, 10071, 4, 4, UNI_AGE__12_DOT_1 } /* age=v121 */,
+ { 2, 1418, 41, 24, 2, UNI_CCC__DA } /* canonicalcombiningclass=da */,
+ { 8, 7360, 8894, 10, 7, UNI_LB__ZW } /* linebreak=zwspace */,
+ { 0, 8955, 0, 6, 0, UNI_alpha_values_index } /* alpha= */,
+ { 1, 9691, 9871, 4, 3, UNI_INMRO } /* blk=mro */,
+ { 2, 9979, 3193, 4, 4, UNI_ETHI } /* scx=ethi */,
+ { 1, 2304, 9520, 3, 4, UNI_OSGE } /* isosage */,
+ { 3, 9476, 9264, 3, 5, UNI_SC__ADLM } /* sc=adlam */,
+ { 2, 3403, 10355, 6, 3, UNI_XPOSIXSPACE } /* space=yes */,
+ { 2, 7467, 10301, 3, 3, UNI_IN__3 } /* in=v30 */,
+ { 2, 6083, 7934, 13, 1, UNI_NV__2 } /* numericvalue=2 */,
+ { 14, 5045, 8493, 3, 6, UNI_UCASEXT } /* isucasext */,
+ { 2, 9476, 7700, 3, 9, UNI_SC__QAAI } /* sc=inherited */,
+ { 0, 3877, 8476, 17, 8, UNI_TFNG } /* scriptextensions=tifinagh */,
+ { 1, 8973, 7071, 6, 11, UNI_INSORASOMPENG } /* block=sorasompeng */,
+ { 2, 9691, 3247, 4, 18, UNI_INPUNCTUATION } /* blk=generalpunctuation */,
+ { 0, 185, 2, 3, 1, UNI_CI } /* isci */,
+ { 0, 10402, 7908, 6, 7, UNI__PERL_IDSTART } /* _perl_idstart */,
+ { 3, 9979, 9871, 4, 3, UNI_MRO } /* scx=mro */,
+ { 2, 10268, 8046, 3, 2, UNI_NV__13 } /* nv=13 */,
+ { 0, 8705, 10355, 7, 3, UNI_NFKCQC__Y } /* nfkcqc=yes */,
+ { 0, 9476, 2269, 3, 11, UNI_MTEI } /* sc=meeteimayek */,
+ { 0, 185, 34, 2, 3, UNI_EXT } /* isext */,
+ { 2, 185, 9835, 2, 4, UNI_LATN } /* islatn */,
+ { 0, 3877, 10019, 17, 4, UNI_TALU } /* scriptextensions=talu */,
+ { 11, 9691, 4535, 5, 14, UNI_BRAI } /* blk=braillepatterns */,
+ { 0, 10268, 8903, 3, 4, UNI_NV__6000 } /* nv=6000 */,
+ { 0, 9691, 8530, 4, 7, UNI_INAVESTAN } /* blk=avestan */,
+ { 3, 9691, 5368, 4, 4, UNI_INLISU } /* blk=lisu */,
+ { 3, 9711, 8171, 4, 2, UNI_CCC__26 } /* ccc=26 */,
+ { 6, 9691, 9655, 4, 4, UNI_INAHOM } /* blk=ahom */,
+ { 0, 10217, 2513, 3, 20, UNI_BC__PDF } /* bc=popdirectionalformat */,
+ { 19, 7467, 10063, 3, 4, UNI_IN__11 } /* in=v110 */,
+ { 0, 5875, 9955, 13, 4, UNI_JG__QAPH } /* joininggroup=qaph */,
+ { 0, 9476, 3193, 3, 8, UNI_ETHI } /* sc=ethiopic */,
+ { 1, 8973, 4170, 6, 6, UNI_LATIN1 } /* block=latin1 */,
+ { 5, 9691, 6506, 4, 12, UNI_MATHALPHANUM } /* blk=mathalphanum */,
+ { 1, 9763, 34, 4, 2, UNI_GCB__EX } /* gcb=ex */,
+ { 1, 9045, 36, 6, 1, UNI_CWKCF } /* cwkcf=t */,
+ { 0, 185, 4504, 2, 8, UNI_BAMUMSUP } /* isbamumsup */,
+ { 0, 10244, 6983, 3, 11, UNI_LO } /* gc=otherletter */,
+ { 8, 8967, 0, 6, 0, UNI_bidim_values_index } /* bidim= */,
+ { 0, 10244, 24, 3, 1, UNI_L } /* gc=l */,
+ { 0, 9711, 9004, 5, 5, UNI_CCC__122 } /* ccc=ccc122 */,
+ { 1, 6083, 10181, 13, 3, UNI_NV__3_SLASH_5 } /* numericvalue=3/5 */,
+ { 2, 2206, 4401, 21, 9, UNI_WB__EB } /* graphemeclusterbreak=emodifier */,
+ { 0, 5578, 0, 14, 0, UNI_MN } /* nonspacingmark */,
+ { 0, 3391, 3, 18, 1, -UNI__PERL_PATWS } /* patternwhitespace=f */,
+ { 1, 21, 5326, 2, 14, UNI_LATINEXTE } /* inlatinextendede */,
+ { 7, 3877, 8621, 17, 4, UNI_GRAN } /* scriptextensions=gran */,
+ { 3, 2164, 0, 11, 0, UNI_CYRILLICSUP } /* cyrillicsup */,
+ { 0, 1990, 5784, 22, 13, UNI_INSC__CONSONANTDEAD } /* indicsyllabiccategory=consonantdead */,
+ { 3, 10247, 5228, 3, 14, UNI_JG__HAMZAONHEHGOAL } /* jg=hamzaonhehgoal */,
+ { 0, 9077, 9454, 4, 5, -UNI_EXT } /* ext=false */,
+ { 0, 9979, 6593, 4, 4, UNI_HUNG } /* scx=hung */,
+ { 1, 3707, 0, 11, 0, UNI_ETHIOPICEXT } /* ethiopicext */,
+ { 7, 3877, 2433, 17, 4, UNI_GLAG } /* scriptextensions=glag */,
+ { 5, 9476, 9679, 3, 4, UNI_AVST } /* sc=avst */,
+ { 3, 4972, 9535, 3, 4, UNI_TAKR } /* istakri */,
+ { 3, 10247, 7290, 3, 10, UNI_JG__DALATHRISH } /* jg=dalathrish */,
+ { 1, 8702, 752, 4, 19, UNI_ENCLOSEDALPHANUM } /* inenclosedalphanumerics */,
+ { 1, 1418, 10163, 24, 3, UNI_CCC__AR } /* canonicalcombiningclass=232 */,
+ { 0, 6697, 1026, 11, 2, -UNI_XPOSIXALPHA } /* alphabetic=no */,
+ { 0, 185, 8663, 2, 7, UNI_LINA } /* islineara */,
+ { 0, 8973, 7104, 6, 11, UNI_INSYLOTINAGRI } /* block=sylotinagri */,
+ { 0, 9839, 0, 4, 0, UNI_LINA } /* lina */,
+ { 4, 10268, 7996, 3, 8, UNI_NV__1_SLASH_5 } /* nv=2.00e-01 */,
+ { 6, 4074, 3382, 16, 9, UNI_Z } /* generalcategory=separator */,
+ { 3, 8973, 8587, 7, 6, UNI_CJKEXTG } /* block=cjkextg */,
+ { 8, 185, 4378, 2, 16, UNI_SUPMATHOPERATORS } /* issupmathoperators */,
+ { 6, 8593, 0, 6, 0, UNI_COMPEX } /* compex */,
+ { 5, 7467, 10316, 3, 3, UNI_IN__5 } /* in=v50 */,
+ { 1, 9476, 2085, 3, 4, UNI_SC__MODI } /* sc=modi */,
+ { 0, 118, 448, 3, 31, UNI_IDEOGRAPHICSYMBOLS } /* inideographicsymbolsandpunctuation */,
+ { 0, 2304, 3356, 3, 17, UNI_ORNAMENTALDINGBATS } /* isornamentaldingbats */,
+ { 1, 3877, 8831, 17, 7, UNI_TGLG } /* scriptextensions=tagalog */,
+ { 1, 8973, 4489, 6, 15, UNI_ARABICEXTB } /* block=arabicextendedb */,
+ { 1, 10253, 2664, 3, 2, UNI_LB__BA } /* lb=ba */,
+ { 9, 3962, 0, 16, 0, UNI_ARABICSUP } /* arabicsupplement */,
+ { 0, 3877, 9807, 17, 4, UNI_KALI } /* scriptextensions=kali */,
+ { 0, 1592, 3708, 3, 15, UNI_ETHIOPICEXT } /* inethiopicextended */,
+ { 1, 185, 5284, 2, 14, UNI_LATINEXTB } /* islatinextendedb */,
+ { 0, 185, 2165, 3, 10, UNI_CYRILLICSUP } /* iscyrillicsup */,
+ { 0, 4847, 8692, 3, 6, UNI_INMULTANI } /* inmultani */,
+ { 9, 10253, 6096, 3, 13, UNI_LB__PR } /* lb=prefixnumeric */,
+ { 0, 185, 6518, 2, 4, UNI_MEND } /* ismend */,
+ { 1, 2206, 6278, 21, 12, UNI_WB__EB } /* graphemeclusterbreak=glueafterzwj */,
+ { 3, 10247, 6662, 3, 12, UNI_JG__VERTICALTAIL } /* jg=verticaltail */,
+ { 3, 7230, 5926, 10, 3, UNI_BC__RLO } /* bidiclass=rlo */,
+ { 0, 10268, 8228, 3, 8, UNI_NV__1_SLASH_12 } /* nv=8.33e-02 */,
+ { 2, 9691, 10039, 4, 4, UNI_INTHAI } /* blk=thai */,
+ { 1, 9476, 3159, 5, 2, UNI_SC__KHOJ } /* sc=khoj */,
+ { 0, 5875, 5420, 13, 4, UNI_JG__BETH } /* joininggroup=beth */,
+ { 0, 8782, 2841, 7, 4, UNI_MERO } /* script=mero */,
+ { 0, 9699, 0, 4, 0, UNI_BUHD } /* buhd */,
+ { 1, 9177, 0, 6, 0, UNI_qmark_values_index } /* qmark= */,
+ { 0, 10268, 9579, 3, 3, UNI_NV__1_SLASH_8 } /* nv=1/8 */,
+ { 0, 9743, 3, 4, 1, -UNI_DEP } /* dep=f */,
+ { 0, 185, 4864, 2, 15, UNI_MISCPICTOGRAPHS } /* ismiscpictographs */,
+ { 3, 1553, 0, 10, 0, UNI_S } /* category=s */,
+ { 10, 7460, 8156, 10, 3, UNI_IN__6_DOT_2 } /* presentin=6.2 */,
+ { 1, 8973, 79, 6, 10, UNI_ARABICMATH } /* block=arabicmath */,
+ { 1, 5093, 1, 9, 1, -UNI_XPOSIXXDIGIT } /* hexdigit=n */,
+ { 2, 1418, 7220, 24, 10, UNI_CCC__BR } /* canonicalcombiningclass=belowright */,
+ { 1, 10511, 63, 5, 5, UNI_POSIXGRAPH } /* posixgraph */,
+ { 2, 9439, 9454, 5, 5, -UNI_DASH } /* dash=false */,
+ { 1, 10268, 8028, 3, 5, UNI_NV__20000 } /* nv=20000 */,
{ 1, 185, 7261, 3, 9, UNI_CHRS } /* ischorasmian */,
- { 0, 9831, 0, 4, 0, UNI_LAO } /* laoo */,
- { 0, 1538, 4671, 4, 13, UNI_DIACRITICALSSUP } /* indiacriticalssup */,
- { 0, 185, 5901, 2, 13, UNI_KANAEXTB } /* iskanaextendedb */,
- { 0, 3103, 0, 18, 0, UNI_COPTICEPACTNUMBERS } /* copticepactnumbers */,
- { 1, 8670, 0, 7, 0, UNI_MAKA } /* makasar */,
- { 0, 8973, 2453, 6, 20, UNI_ININSCRIPTIONALPAHLAVI } /* block=inscriptionalpahlavi */,
- { 0, 1553, 5014, 9, 15, UNI_UPPERCASELETTER } /* category=uppercaseletter */,
- { 0, 8782, 4314, 7, 7, UNI_SC__MYMR } /* script=myanmar */,
- { 3, 8973, 468, 6, 11, UNI_INPUNCTUATION } /* block=punctuation */,
- { 9, 10268, 9612, 3, 3, UNI_NV__5_SLASH_2 } /* nv=5/2 */,
- { 2, 8316, 0, 7, 0, UNI_EXTPICT } /* extpict */,
- { 1, 8973, 2165, 7, 17, UNI_CYRILLICSUP } /* block=cyrillicsupplement */,
- { 5, 5875, 6446, 13, 12, UNI_JG__MALAYALAMNYA } /* joininggroup=malayalamnya */,
- { 0, 8973, 7330, 6, 10, UNI_INKHAROSHTHI } /* block=kharoshthi */,
- { 3, 6182, 0, 12, 0, UNI_CHESSSYMBOLS } /* chesssymbols */,
- { 2, 185, 9875, 2, 4, UNI_MTEI } /* ismtei */,
+ { 0, 8973, 3050, 7, 10, UNI_CHEROKEESUP } /* block=cherokeesup */,
+ { 2, 7391, 5118, 4, 11, UNI_CI } /* iscaseignorable */,
+ { 2, 6083, 7950, 13, 2, UNI_NV__43 } /* numericvalue=43 */,
+ { 3, 9476, 7333, 6, 7, UNI_KHAR } /* sc=kharoshthi */,
+ { 0, 3049, 0, 18, 0, UNI_CHEROKEESUP } /* cherokeesupplement */,
+ { 2, 9691, 1587, 5, 13, UNI_BYZANTINEMUSIC } /* blk=byzantinemusic */,
+ { 0, 8973, 1655, 6, 23, UNI_COMPATJAMO } /* block=hangulcompatibilityjamo */,
+ { 1, 4972, 4985, 3, 14, UNI_TAMILSUP } /* istamilsupplement */,
+ { 0, 9979, 5059, 4, 15, UNI_ZANB } /* scx=zanabazarsquare */,
+ { 1, 2613, 0, 19, 0, UNI_ANCIENTGREEKNUMBERS } /* ancientgreeknumbers */,
+ { 0, 8782, 9643, 7, 4, UNI_SC__ADLM } /* script=adlm */,
+ { 0, 185, 1674, 2, 4, UNI_JAMO } /* isjamo */,
+ { 2, 9951, 0, 4, 0, UNI_QAAI } /* qaai */,
+ { 1, 3894, 3, 17, 1, -UNI_STERM } /* sentenceterminal=f */,
+ { 4, 3877, 10031, 17, 4, UNI_TFNG } /* scriptextensions=tfng */,
+ { 2, 9461, 50, 3, 2, UNI_SB__AT } /* sb=at */,
+ { 2, 2012, 36, 22, 1, UNI_LOE } /* logicalorderexception=t */,
+ { 4, 8593, 10055, 7, 4, UNI_COMPEX } /* compex=true */,
+ { 3, 1553, 10398, 9, 2, UNI_ZP } /* category=zp */,
+ { 13, 9691, 79, 4, 35, UNI_ARABICMATH } /* blk=arabicmathematicalalphabeticsymbols */,
+ { 0, 9469, 869, 3, 17, UNI_PHONETICEXT } /* inphoneticextensions */,
+ { 0, 1852, 10355, 6, 3, UNI_CASED } /* cased=yes */,
+ { 2, 3877, 9939, 17, 4, UNI_MIAO } /* scriptextensions=plrd */,
+ { 2, 9474, 2632, 5, 19, UNI_INSC__BRAHMIJOININGNUMBER } /* insc=brahmijoiningnumber */,
+ { 1, 8973, 79, 6, 35, UNI_ARABICMATH } /* block=arabicmathematicalalphabeticsymbols */,
+ { 2, 1418, 7947, 24, 2, UNI_CCC__21 } /* canonicalcombiningclass=21 */,
+ { 0, 10553, 10004, 3, 3, UNI_SOGO } /* issogo */,
+ { 0, 1418, 9420, 25, 4, UNI_CCC__91 } /* canonicalcombiningclass=ccc91 */,
+ { 9, 8973, 7381, 6, 2, UNI_INVS } /* block=vs */,
+ { 0, 1990, 4458, 22, 16, UNI_INSC__VOWELINDEPENDENT } /* indicsyllabiccategory=vowelindependent */,
+ { 13, 9476, 8260, 3, 8, UNI_ARMN } /* sc=armenian */,
+ { 1, 8881, 9652, 3, 3, UNI_AGHB } /* isaghb */,
+ { 3, 123, 0, 9, 0, UNI_DIA } /* diacritic */,
+ { 1, 7230, 3337, 10, 18, UNI_BC__LRI } /* bidiclass=lefttorightisolate */,
+ { 1, 185, 7682, 2, 8, UNI_EXT } /* isextender */,
+ { 0, 1418, 8992, 25, 5, UNI_CCC__107 } /* canonicalcombiningclass=ccc107 */,
+ { 0, 8973, 6752, 6, 6, UNI_DOMINO } /* block=domino */,
+ { 0, 8961, 36, 6, 1, UNI_BIDIC } /* bidic=t */,
+ { 0, 6083, 8236, 13, 8, UNI_NV__17_SLASH_2 } /* numericvalue=8.50e+00 */,
+ { 0, 8642, 1026, 7, 2, -UNI_HYPHEN } /* hyphen=no */,
+ { 1, 8973, 8492, 6, 8, UNI_UCASEXTA } /* block=ucasexta */,
+ { 0, 9711, 10166, 4, 3, UNI_CCC__DB } /* ccc=233 */,
+ { 5, 8782, 8691, 7, 7, UNI_SC__MULT } /* script=multani */,
+ { 0, 9449, 10355, 5, 3, UNI_EMOD } /* emod=yes */,
+ { 0, 1270, 1026, 25, 2, -UNI_COMPEX } /* fullcompositionexclusion=no */,
+ { 0, 9979, 2453, 4, 20, UNI_PHLI } /* scx=inscriptionalpahlavi */,
+ { 1, 10516, 9940, 3, 3, UNI_MIAO } /* isplrd */,
+ { 6, 9045, 10055, 6, 4, UNI_CWKCF } /* cwkcf=true */,
+ { 2, 6340, 116, 4, 33, UNI_DIACRITICALSFORSYMBOLS } /* incombiningdiacriticalmarksforsymbols */,
{ 0, 10268, 5732, 3, 7, UNI_NV__1000000 } /* nv=1000000 */,
- { 6, 6083, 9635, 13, 4, UNI_NV__5_SLASH_12 } /* numericvalue=5/12 */,
- { 1, 9476, 9851, 3, 4, UNI_MEDF } /* sc=medf */,
- { 2, 10247, 5564, 3, 14, UNI_JG__NOJOININGGROUP } /* jg=nojoininggroup */,
- { 0, 185, 1793, 3, 20, UNI_CWCF } /* ischangeswhencasefolded */,
- { 5, 10247, 6410, 3, 12, UNI_JG__MALAYALAMLLA } /* jg=malayalamlla */,
- { 3, 9476, 9899, 3, 4, UNI_NSHU } /* sc=nshu */,
- { 16, 9075, 1026, 6, 2, -UNI_GREXT } /* grext=no */,
- { 4, 9691, 2227, 4, 14, UNI_INHANIFIROHINGYA } /* blk=hanifirohingya */,
- { 0, 540, 0, 30, 0, UNI_CJKEXTB } /* cjkunifiedideographsextensionb */,
- { 1, 9647, 7923, 4, 2, UNI_AGE__11 } /* age=11 */,
- { 0, 10247, 6917, 3, 11, UNI_JG__MALAYALAMRA } /* jg=malayalamra */,
- { 10, 9269, 1, 5, 1, -UNI_POSIXXDIGIT } /* ahex=n */,
+ { 9, 9189, 10056, 7, 3, UNI_STERM } /* sterm=true */,
+ { 1, 10247, 9274, 3, 5, UNI_JG__ALAPH } /* jg=alaph */,
+ { 5, 4972, 8469, 3, 3, UNI_TAGB } /* istagb */,
+ { 2, 2248, 351, 3, 32, UNI_SUPSYMBOLSANDPICTOGRAPHS } /* insupplementalsymbolsandpictographs */,
+ { 0, 5875, 7148, 13, 11, UNI_JG__YEHWITHTAIL } /* joininggroup=yehwithtail */,
+ { 0, 185, 4186, 2, 16, UNI_LINEARBIDEOGRAMS } /* islinearbideograms */,
+ { 0, 8967, 1026, 6, 2, -UNI_BIDIM } /* bidim=no */,
+ { 1, 9075, 1026, 6, 2, -UNI_GREXT } /* grext=no */,
+ { 1, 10268, 8043, 3, 2, UNI_NV__23 } /* nv=23 */,
+ { 1, 7580, 6785, 10, 11, UNI_WB__DQ } /* wordbreak=doublequote */,
+ { 0, 10268, 8949, 3, 3, UNI_NV__900 } /* nv=900 */,
+ { 32, 185, 6752, 2, 11, UNI_DOMINO } /* isdominotiles */,
+ { 1, 8782, 9911, 7, 4, UNI_ORKH } /* script=orkh */,
+ { 0, 5875, 5494, 13, 14, UNI_JG__MANICHAEANTETH } /* joininggroup=manichaeanteth */,
+ { 2, 9979, 4534, 4, 7, UNI_BRAI } /* scx=braille */,
+ { 0, 185, 9435, 3, 3, UNI_CWCM } /* iscwcm */,
+ { 1, 9747, 1, 4, 1, -UNI_DIA } /* dia=n */,
+ { 2, 9476, 10035, 3, 4, UNI_SC__TGLG } /* sc=tglg */,
+ { 3, 3758, 7480, 17, 10, UNI_IDENTIFIERSTATUS__RESTRICTED } /* identifierstatus=restricted */,
+ { 1, 9711, 10392, 4, 2, UNI_CCC__9 } /* ccc=vr */,
+ { 0, 185, 2632, 2, 6, UNI_BRAH } /* isbrahmi */,
+ { 3, 8973, 7655, 6, 9, UNI_INBHAIKSUKI } /* block=bhaiksuki */,
+ { 3, 1014, 0, 5, 0, UNI_GREK } /* greek */,
+ { 1, 10250, 0, 4, 0, UNI_JT__L } /* jt=l */,
+ { 0, 10403, 7580, 4, 4, UNI_POSIXWORD } /* perlword */,
+ { 8, 9476, 9911, 3, 4, UNI_ORKH } /* sc=orkh */,
+ { 16, 10268, 8937, 3, 3, UNI_NV__700 } /* nv=700 */,
+ { 0, 4074, 1172, 16, 2, UNI_TITLE } /* generalcategory=lt */,
+ { 3, 6083, 7950, 13, 1, UNI_NV__4 } /* numericvalue=4 */,
+ { 2, 9979, 2227, 4, 4, UNI_HAN } /* scx=hani */,
+ { 0, 8973, 1968, 6, 22, UNI_EARLYDYNASTICCUNEIFORM } /* block=earlydynasticcuneiform */,
+ { 10, 9691, 2085, 4, 15, UNI_MODIFIERLETTERS } /* blk=modifierletters */,
+ { 1, 436, 0, 5, 0, UNI__PERL_NCHAR } /* nchar */,
+ { 5, 9979, 3103, 4, 4, UNI_COPT } /* scx=copt */,
+ { 0, 9087, 10355, 6, 3, UNI_JOINC } /* joinc=yes */,
+ { 1, 9711, 9320, 5, 4, UNI_CCC__18 } /* ccc=ccc18 */,
+ { 5, 185, 6386, 2, 12, UNI_MAHJONG } /* ismahjongtiles */,
+ { 9, 9979, 7434, 5, 3, UNI_SOGD } /* scx=sogd */,
+ { 2, 185, 1903, 3, 21, UNI_CJKCOMPATIDEOGRAPHSSUP } /* iscjkcompatideographssup */,
+ { 0, 8881, 5746, 3, 12, UNI_AEGEANNUMBERS } /* isaegeannumbers */,
+ { 1, 3382, 0, 9, 0, UNI_Z } /* separator */,
+ { 3, 4714, 0, 14, 0, UNI_GREXT } /* graphemeextend */,
+ { 1, 9469, 7854, 3, 8, UNI_INPAUCINHAU } /* inpaucinhau */,
+ { 6, 10244, 599, 3, 2, UNI_XPOSIXCNTRL } /* gc=cc */,
+ { 0, 10268, 9307, 3, 2, UNI_NV__15 } /* nv=15 */,
+ { 0, 7673, 0, 9, 0, UNI_EMOTICONS } /* emoticons */,
+ { 6, 3877, 8468, 17, 4, UNI_TAGB } /* scriptextensions=tagb */,
+ { 0, 9476, 2264, 4, 3, UNI_SC__KTHI } /* sc=kthi */,
+ { 3, 1189, 8777, 3, 3, UNI_TAGS } /* intags */,
+ { 9, 9544, 10055, 5, 4, UNI_XIDC } /* xidc=true */,
+ { 1, 8973, 3365, 6, 8, UNI_DINGBATS } /* block=dingbats */,
+ { 1, 9691, 4330, 4, 16, UNI_MYANMAREXTB } /* blk=myanmarextendedb */,
+ { 3, 3175, 0, 17, 0, UNI_EPRES } /* emojipresentation */,
+ { 3, 3175, 1026, 18, 2, -UNI_EPRES } /* emojipresentation=no */,
+ { 0, 6083, 8949, 13, 5, UNI_NV__90000 } /* numericvalue=90000 */,
+ { 3, 9476, 9771, 3, 4, UNI_SC__GONM } /* sc=gonm */,
+ { 2, 9476, 8657, 4, 6, UNI_SC__KALI } /* sc=kayahli */,
+ { 0, 7360, 7590, 10, 10, UNI_LB__WJ } /* linebreak=wordjoiner */,
+ { 5, 4074, 5581, 16, 11, UNI_MC } /* generalcategory=spacingmark */,
+ { 0, 7218, 8285, 3, 7, UNI_INBASSAVAH } /* inbassavah */,
+ { 0, 5875, 9243, 13, 4, UNI_JG__YUDH } /* joininggroup=yudh */,
+ { 2, 4074, 909, 16, 10, UNI_CO } /* generalcategory=privateuse */,
+ { 1, 9691, 3707, 4, 11, UNI_ETHIOPICEXT } /* blk=ethiopicext */,
+ { 0, 8782, 3935, 8, 10, UNI_SGNW } /* script=signwriting */,
+ { 1, 7908, 26, 8, 1, UNI_IDS } /* idstart=y */,
+ { 9, 2338, 0, 3, 0, UNI_XPOSIXXDIGIT } /* hex */,
+ { 2, 185, 4170, 2, 9, UNI_LATIN1 } /* islatin1sup */,
+ { 4, 1418, 6763, 24, 11, UNI_CCC__DA } /* canonicalcombiningclass=doubleabove */,
+ { 2, 9033, 0, 6, 0, UNI_CAKM } /* chakma */,
+ { 0, 185, 9683, 2, 4, UNI_BATK } /* isbatk */,
+ { 1, 7360, 2664, 10, 2, UNI_LB__BA } /* linebreak=ba */,
+ { 16, 6083, 7924, 13, 8, UNI_NV__1_SLASH_9 } /* numericvalue=1.11e-01 */,
+ { 0, 9695, 7, 4, 1, UNI_BPT__C } /* bpt=c */,
+ { 7, 7467, 10310, 3, 3, UNI_IN__4 } /* in=v40 */,
+ { 1, 5116, 10055, 14, 4, UNI_CI } /* caseignorable=true */,
+ { 1, 8973, 5340, 6, 14, UNI_LATINEXTF } /* block=latinextendedf */,
+ { 1, 3403, 10055, 6, 4, UNI_XPOSIXSPACE } /* space=true */,
+ { 0, 6340, 721, 3, 8, UNI_INCUNEIFORM } /* incuneiform */,
+ { 0, 8961, 9454, 6, 5, -UNI_BIDIC } /* bidic=false */,
+ { 0, 9476, 8, 4, 3, UNI_SC__KANA } /* sc=kana */,
+ { 2, 185, 5676, 2, 14, UNI_ZS } /* isspaceseparator */,
+ { 0, 9979, 9959, 4, 4, UNI_RJNG } /* scx=rjng */,
+ { 0, 9691, 8544, 4, 7, UNI_CJKEXTA } /* blk=cjkexta */,
+ { 5, 185, 3409, 2, 17, UNI_RI } /* isregionalindicator */,
+ { 4, 10516, 0, 12, 0, UNI_POSIXBLANK } /* isposixblank */,
+ { 0, 3978, 0, 8, 0, UNI_BOPO } /* bopomofo */,
+ { 11, 10253, 6807, 3, 11, UNI_LB__EX } /* lb=exclamation */,
+ { 16, 9474, 1245, 5, 9, UNI_INSC__CONSONANT } /* insc=consonant */,
+ { 512, 8973, 2078, 6, 22, UNI_MODIFIERLETTERS } /* block=spacingmodifierletters */,
+ { 4, 8782, 3193, 7, 8, UNI_ETHI } /* script=ethiopic */,
+ { 1, 3758, 0, 17, 0, UNI_identifierstatus_values_index } /* identifierstatus= */,
+ { 0, 6529, 4940, 3, 14, UNI_SARB } /* inoldsoutharabian */,
+ { 3, 9476, 9195, 3, 6, UNI_TNSA } /* sc=tangsa */,
+ { 3, 9979, 8979, 4, 4, UNI_CARI } /* scx=cari */,
+ { 1, 3877, 10035, 17, 4, UNI_TGLG } /* scriptextensions=tglg */,
+ { 0, 8768, 9454, 7, 5, -UNI_PATSYN } /* patsyn=false */,
+ { 6, 185, 4639, 2, 15, UNI_PD } /* isdashpunctuation */,
+ { 0, 185, 750, 2, 16, UNI_ENCLOSEDALPHANUM } /* isenclosedalphanum */,
+ { 4, 9979, 7709, 4, 9, UNI_SIND } /* scx=khudawadi */,
+ { 1, 10244, 6132, 3, 2, UNI_PF } /* gc=pf */,
+ { 1, 10229, 8364, 3, 8, UNI_DT__ISO } /* dt=isolated */,
+ { 0, 8973, 8740, 6, 7, UNI_OLCK } /* block=olchiki */,
+ { 1, 2312, 5243, 3, 13, UNI_HIGHSURROGATES } /* inhighsurrogates */,
+ { 2, 185, 7104, 2, 11, UNI_SYLO } /* issylotinagri */,
+ { 2, 8276, 0, 4, 0, UNI_BALI } /* bali */,
+ { 2, 9077, 26, 4, 1, UNI_EXT } /* ext=y */,
+ { 1, 185, 5312, 2, 14, UNI_LATINEXTD } /* islatinextendedd */,
+ { 3, 8782, 9207, 7, 6, UNI_SC__THAA } /* script=thaana */,
+ { 2, 185, 4534, 2, 4, UNI_BRAI } /* isbrai */,
+ { 1, 8444, 26, 8, 1, UNI_RADICAL } /* radical=y */,
+ { 3, 8754, 0, 4, 0, UNI_OSMA } /* osma */,
+ { 1, 5093, 36, 9, 1, UNI_XPOSIXXDIGIT } /* hexdigit=t */,
{ 1, 3877, 10004, 18, 3, UNI_SOGO } /* scriptextensions=sogo */,
- { 0, 9476, 9959, 3, 4, UNI_RJNG } /* sc=rjng */,
- { 1, 7360, 7410, 10, 10, UNI_LB__NS } /* linebreak=nonstarter */,
- { 0, 3877, 7330, 17, 4, UNI_KHAR } /* scriptextensions=khar */,
- { 3, 4847, 6962, 3, 10, UNI_MYANMAREXTB } /* inmyanmarextb */,
- { 0, 6083, 8925, 13, 3, UNI_NV__500 } /* numericvalue=500 */,
- { 0, 6083, 9579, 13, 3, UNI_NV__1_SLASH_8 } /* numericvalue=1/8 */,
- { 0, 10229, 7, 3, 3, UNI_DT__CAN } /* dt=can */,
- { 0, 185, 6290, 2, 12, UNI_GONG } /* isgunjalagondi */,
- { 0, 3877, 7817, 17, 9, UNI_PERM } /* scriptextensions=oldpermic */,
+ { 0, 10402, 1528, 6, 9, UNI__PERL_SURROGATE } /* _perl_surrogate */,
+ { 0, 4346, 0, 16, 0, UNI_PO } /* otherpunctuation */,
+ { 4, 3121, 4058, 18, 5, UNI_DT__FIN } /* decompositiontype=final */,
+ { 0, 10268, 8913, 3, 3, UNI_NV__400 } /* nv=400 */,
+ { 1, 185, 1935, 2, 11, UNI_NUMBERFORMS } /* isnumberforms */,
+ { 0, 185, 3157, 2, 17, UNI_EBASE } /* isemojimodifierbase */,
+ { 4, 4074, 407, 16, 7, UNI_XPOSIXCNTRL } /* generalcategory=control */,
+ { 6, 185, 5758, 2, 5, UNI_BIDIM } /* isbidim */,
+ { 1, 10229, 6530, 3, 12, UNI_DT__NONCANON } /* dt=noncanonical */,
+ { 0, 9449, 0, 6, 0, -UNI_EMOD } /* emod=f */,
+ { 0, 3877, 3139, 17, 10, UNI_DEVA } /* scriptextensions=devanagari */,
+ { 1, 9979, 9504, 4, 5, UNI_NSHU } /* scx=nushu */,
+ { 2, 8705, 9494, 7, 5, UNI_NFCQC__M } /* nfkcqc=maybe */,
+ { 0, 2304, 9510, 3, 4, UNI_OGAM } /* isogham */,
+ { 7, 7460, 10322, 10, 3, UNI_IN__5_DOT_2 } /* presentin=v52 */,
+ { 0, 6340, 3691, 3, 16, UNI_CYRILLICEXTC } /* incyrillicextendedc */,
+ { 5, 9691, 8492, 4, 8, UNI_UCASEXTA } /* blk=ucasexta */,
+ { 3, 9476, 9663, 3, 4, UNI_ARMI } /* sc=armi */,
+ { 0, 8881, 7192, 4, 8, UNI_ARABICEXTA } /* isarabicexta */,
+ { 0, 9691, 909, 4, 14, UNI_PUA } /* blk=privateusearea */,
+ { 0, 8782, 8754, 7, 7, UNI_OSMA } /* script=osmanya */,
+ { 1, 9647, 10059, 4, 4, UNI_AGE__10 } /* age=v100 */,
+ { 2, 9979, 10095, 4, 4, UNI_XPEO } /* scx=xpeo */,
+ { 2, 2936, 0, 19, 0, UNI_SUNDANESESUP } /* sundanesesupplement */,
+ { 3, 185, 4058, 2, 16, UNI_PF } /* isfinalpunctuation */,
+ { 3, 10283, 3, 3, 1, -UNI_SD } /* sd=f */,
+ { 0, 9691, 5130, 4, 14, UNI_CJKCOMPATFORMS } /* blk=cjkcompatforms */,
+ { 2, 9476, 7104, 3, 11, UNI_SC__SYLO } /* sc=sylotinagri */,
+ { 1, 9219, 9454, 6, 5, -UNI_XPOSIXUPPER } /* upper=false */,
+ { 0, 7360, 6818, 10, 11, UNI_LB__IN } /* linebreak=inseparable */,
+ { 0, 3877, 8537, 17, 4, UNI_BENG } /* scriptextensions=beng */,
+ { 0, 3877, 3265, 17, 4, UNI_GEOR } /* scriptextensions=geor */,
+ { 14, 185, 5581, 2, 11, UNI_MC } /* isspacingmark */,
+ { 9, 9476, 1014, 3, 5, UNI_SC__GREK } /* sc=greek */,
+ { 8, 2593, 410, 20, 2, UNI_VO__TR } /* verticalorientation=tr */,
+ { 0, 9476, 9703, 3, 4, UNI_SC__CAKM } /* sc=cakm */,
+ { 2, 8260, 0, 8, 0, UNI_ARMN } /* armenian */,
+ { 0, 9711, 2473, 4, 4, UNI_CCC__L } /* ccc=left */,
+ { 0, 10540, 3403, 7, 5, UNI_XPOSIXSPACE } /* isxperlspace */,
+ { 1, 9979, 4190, 5, 3, UNI_SARB } /* scx=sarb */,
+ { 4, 9979, 2248, 4, 21, UNI_PRTI } /* scx=inscriptionalparthian */,
+ { 1, 6350, 6840, 12, 11, UNI_JT__C } /* joiningtype=joincausing */,
+ { 1, 1528, 0, 9, 0, UNI__PERL_SURROGATE } /* surrogate */,
+ { 4, 9461, 139, 3, 2, UNI_SB__FO } /* sb=fo */,
+ { 2, 9476, 2708, 3, 19, UNI_EGYP } /* sc=egyptianhieroglyphs */,
+ { 0, 6083, 9559, 13, 4, UNI_NV___MINUS_1_SLASH_2 } /* numericvalue=-1/2 */,
+ { 40, 10553, 6924, 3, 3, UNI_SAMR } /* issamr */,
+ { 1, 9927, 10355, 4, 3, UNI_PCM } /* pcm=yes */,
+ { 0, 4074, 1218, 16, 2, UNI_SK } /* generalcategory=sk */,
+ { 8, 7360, 7250, 10, 10, UNI_LB__BA } /* linebreak=breakafter */,
+ { 0, 185, 5927, 2, 13, UNI_LOWSURROGATES } /* islowsurrogates */,
+ { 0, 9063, 1026, 6, 2, -UNI_EPRES } /* epres=no */,
+ { 2, 4157, 416, 3, 31, UNI_INIDC } /* isideographicdescriptioncharacters */,
+ { 3, 10244, 9424, 3, 5, UNI_XPOSIXCNTRL } /* gc=cntrl */,
+ { 0, 9919, 0, 4, 0, UNI_OSGE } /* osge */,
+ { 7, 6083, 9387, 13, 2, UNI_NV__31 } /* numericvalue=31 */,
+ { 1, 8782, 2353, 7, 20, UNI_HLUW } /* script=anatolianhieroglyphs */,
+ { 9, 8782, 8607, 7, 4, UNI_ELBA } /* script=elba */,
+ { 0, 134, 0, 4, 0, UNI_M } /* mark */,
+ { 0, 2808, 29, 4, 4, UNI_INARABIC } /* inarabic */,
+ { 0, 10268, 8044, 3, 8, UNI_NV__1_SLASH_32 } /* nv=3.13e-02 */,
+ { 2, 9979, 1223, 4, 4, UNI_KANA } /* scx=kana */,
+ { 1, 9847, 10355, 4, 3, UNI_LOE } /* loe=yes */,
+ { 0, 185, 9524, 2, 5, UNI_RUNR } /* isrunic */,
+ { 7, 8973, 3319, 6, 9, UNI_LATINEXTA } /* block=latinexta */,
+ { 0, 185, 2433, 2, 4, UNI_GLAG } /* isglag */,
+ { 0, 8782, 2227, 7, 4, UNI_SC__HAN } /* script=hani */,
+ { 0, 9476, 6972, 3, 4, UNI_SC__NAND } /* sc=nand */,
+ { 0, 9979, 1629, 4, 4, UNI_PHAG } /* scx=phag */,
+ { 0, 7230, 2473, 10, 20, UNI_BC__LRE } /* bidiclass=lefttorightembedding */,
+ { 6, 8973, 1747, 6, 23, UNI_ZNAMENNYMUSIC } /* block=znamennymusicalnotation */,
+ { 0, 7907, 3, 9, 1, -UNI_XIDS } /* xidstart=f */,
+ { 0, 1592, 6243, 3, 11, UNI_ETHIOPICEXTB } /* inethiopicextb */,
+ { 0, 8973, 511, 7, 19, UNI_CJK } /* block=cjkunifiedideographs */,
+ { 1, 9469, 3012, 5, 19, UNI_INPC__TOPANDBOTTOMANDLEFT } /* inpc=topandbottomandleft */,
+ { 0, 4074, 4639, 16, 15, UNI_PD } /* generalcategory=dashpunctuation */,
+ { 0, 9747, 36, 4, 1, UNI_DIA } /* dia=t */,
+ { 3, 2003, 0, 10, 1, UNI_UPPERCASELETTER } /* category=lu */,
+ { 0, 6083, 8140, 13, 8, UNI_NV__7_SLASH_12 } /* numericvalue=5.83e-01 */,
+ { 0, 9691, 600, 4, 30, UNI_CJKEXTD } /* blk=cjkunifiedideographsextensiond */,
+ { 0, 3121, 568, 18, 2, UNI_DT__NB } /* decompositiontype=nb */,
+ { 0, 185, 3391, 2, 17, UNI__PERL_PATWS } /* ispatternwhitespace */,
+ { 0, 8973, 3978, 6, 11, UNI_BOPOMOFOEXT } /* block=bopomofoext */,
+ { 4, 1418, 8761, 24, 7, UNI_CCC__1 } /* canonicalcombiningclass=overlay */,
+ { 8, 9691, 8260, 4, 8, UNI_INARMENIAN } /* blk=armenian */,
+ { 0, 9691, 7104, 4, 11, UNI_INSYLOTINAGRI } /* blk=sylotinagri */,
+ { 0, 8973, 7835, 6, 9, UNI_INOLDUYGHUR } /* block=olduyghur */,
+ { 9, 3877, 2632, 17, 4, UNI_BRAH } /* scriptextensions=brah */,
+ { 0, 10247, 10265, 3, 3, UNI_JG__MIM } /* jg=mim */,
+ { 5, 10508, 10523, 8, 5, UNI_XPOSIXBLANK } /* isxposixblank */,
+ { 0, 3877, 9509, 17, 5, UNI_OGAM } /* scriptextensions=ogham */,
+ { 0, 7230, 24, 10, 1, UNI_BC__L } /* bidiclass=l */,
+ { 8, 9847, 9454, 4, 5, -UNI_LOE } /* loe=false */,
+ { 0, 1990, 4154, 22, 16, UNI_INSC__INVISIBLESTACKER } /* indicsyllabiccategory=invisiblestacker */,
+ { 1, 9979, 7844, 4, 9, UNI_PALM } /* scx=palmyrene */,
+ { 1, 9077, 0, 4, 0, UNI_ext_values_index } /* ext= */,
+ { 10, 1990, 4564, 22, 15, UNI_INSC__CONSONANTKILLER } /* indicsyllabiccategory=consonantkiller */,
+ { 1, 10244, 3382, 3, 9, UNI_Z } /* gc=separator */,
+ { 0, 9476, 9931, 3, 4, UNI_SC__PHLP } /* sc=phlp */,
+ { 17, 5592, 3, 14, 1, -UNI_PATSYN } /* patternsyntax=f */,
+ { 10, 9469, 6615, 3, 7, UNI_PHAISTOS } /* inphaistos */,
+ { 2, 9269, 9454, 5, 5, -UNI_POSIXXDIGIT } /* ahex=false */,
+ { 0, 9051, 9454, 6, 5, -UNI_ECOMP } /* ecomp=false */,
+ { 0, 2248, 8804, 3, 6, UNI_INSIDDHAM } /* insiddham */,
+ { 0, 9979, 9787, 4, 4, UNI_HANO } /* scx=hano */,
+ { 0, 2248, 7105, 3, 10, UNI_INSYLOTINAGRI } /* insylotinagri */,
+ { 0, 9691, 3193, 4, 8, UNI_INETHIOPIC } /* blk=ethiopic */,
+ { 1, 9476, 5940, 3, 9, UNI_SC__MLYM } /* sc=malayalam */,
+ { 0, 10268, 9623, 3, 4, UNI_NV__3_SLASH_20 } /* nv=3/20 */,
+ { 0, 10253, 341, 3, 2, UNI_LB__OP } /* lb=op */,
+ { 4, 4157, 60, 3, 3, UNI_IDEO } /* isideo */,
+ { 19, 10253, 5830, 3, 5, UNI_EBASE } /* lb=ebase */,
+ { 2, 7580, 7899, 11, 8, UNI_WB__WSEGSPACE } /* wordbreak=wsegspace */,
+ { 0, 79, 0, 4, 0, UNI_ARAB } /* arab */,
+ { 0, 9476, 9767, 3, 4, UNI_SC__GONG } /* sc=gong */,
+ { 2, 4744, 9165, 15, 6, UNI_IDENTIFIERTYPE__NOTXID } /* identifiertype=notxid */,
+ { 0, 3877, 7655, 17, 9, UNI_BHKS } /* scriptextensions=bhaiksuki */,
+ { 1, 1792, 0, 22, 0, UNI_cwcf_values_index } /* changeswhencasefolded= */,
+ { 0, 7460, 7550, 10, 10, UNI_AGE__NA } /* presentin=unassigned */,
+ { 0, 5758, 10055, 13, 4, UNI_BIDIM } /* bidimirrored=true */,
+ { 1, 4598, 3267, 4, 16, UNI_GEORGIANSUP } /* ingeorgiansupplement */,
+ { 0, 184, 0, 34, 0, UNI_MISCPICTOGRAPHS } /* miscellaneoussymbolsandpictographs */,
+ { 0, 9691, 5242, 4, 14, UNI_HIGHSURROGATES } /* blk=highsurrogates */,
+ { 1, 10253, 1187, 3, 2, UNI_LB__PO } /* lb=po */,
+ { 0, 8973, 9524, 6, 5, UNI_INRUNIC } /* block=runic */,
+ { 2, 1891, 0, 9, 0, UNI_XPOSIXUPPER } /* uppercase */,
+ { 0, 9691, 9539, 4, 5, UNI_VSSUP } /* blk=vssup */,
+ { 0, 9461, 9279, 3, 5, UNI_SB__AT } /* sb=aterm */,
+ { 4, 9979, 9827, 4, 4, UNI_LANA } /* scx=lana */,
+ { 0, 6314, 1, 12, 1, -UNI_IDEO } /* ideographic=n */,
+ { 0, 9474, 4154, 5, 16, UNI_INSC__INVISIBLESTACKER } /* insc=invisiblestacker */,
+ { 0, 185, 1595, 2, 14, UNI_MUSIC } /* ismusicalsymbols */,
+ { 2, 9691, 2034, 4, 22, UNI_MISCTECHNICAL } /* blk=miscellaneoustechnical */,
+ { 0, 10244, 1172, 3, 2, UNI_TITLE } /* gc=lt */,
+ { 2, 5256, 0, 14, 0, UNI_KANASUP } /* kanasupplement */,
+ { 5, 9469, 2579, 5, 14, UNI_INPC__BOTTOMANDRIGHT } /* inpc=bottomandright */,
+ { 3, 6937, 4286, 6, 12, UNI_MISCMATHSYMBOLSA } /* inmiscmathsymbolsa */,
+ { 0, 8973, 3775, 6, 17, UNI_INDICSIYAQNUMBERS } /* block=indicsiyaqnumbers */,
+ { 4, 1190, 496, 3, 7, UNI_NT__NU } /* nt=numeric */,
+ { 0, 5901, 0, 13, 0, UNI_KANAEXTB } /* kanaextendedb */,
+ { 7, 8973, 3624, 6, 4, UNI_UCAS } /* block=ucas */,
+ { 0, 185, 3319, 2, 9, UNI_LATINEXTA } /* islatinexta */,
+ { 2, 4074, 6374, 16, 12, UNI_NL } /* generalcategory=letternumber */,
+ { 0, 3877, 10111, 17, 4, UNI_ZANB } /* scriptextensions=zanb */,
+ { 0, 4090, 0, 11, 0, UNI_GEORGIANEXT } /* georgianext */,
+ { 0, 5354, 0, 14, 0, UNI_LATINEXTG } /* latinextendedg */,
+ { 18, 9979, 8873, 4, 7, UNI_ZZZZ } /* scx=unknown */,
+ { 1, 8782, 9931, 7, 4, UNI_SC__PHLP } /* script=phlp */,
+ { 1, 1466, 0, 13, 0, UNI_M } /* combiningmark */,
+ { 1, 7460, 10298, 10, 3, UNI_IN__2_DOT_1 } /* presentin=v21 */,
+ { 1, 9979, 9911, 4, 4, UNI_ORKH } /* scx=orkh */,
+ { 1, 9647, 7975, 4, 1, UNI_AGE__6 } /* age=6 */,
+ { 0, 3877, 2227, 17, 4, UNI_HAN } /* scriptextensions=hani */,
+ { 7, 8973, 8340, 6, 8, UNI_INGUJARATI } /* block=gujarati */,
+ { 1, 9691, 5862, 4, 6, UNI_IPAEXT } /* blk=ipaext */,
+ { 0, 9529, 0, 5, 0, UNI_TALE } /* taile */,
+ { 2, 5648, 3, 14, 1, -UNI_QMARK } /* quotationmark=f */,
+ { 2, 2304, 7422, 4, 8, UNI_XPEO } /* isoldpersian */,
+ { 4, 10280, 26, 3, 1, UNI_RI } /* ri=y */,
+ { 1, 4074, 468, 16, 11, UNI_P } /* generalcategory=punctuation */,
+ { 0, 5408, 6496, 4, 10, UNI_INMASARAMGONDI } /* inmasaramgondi */,
+ { 2, 3398, 0, 11, 0, UNI_wspace_values_index } /* whitespace= */,
+ { 10, 9476, 6494, 3, 12, UNI_SC__GONM } /* sc=masaramgondi */,
+ { 0, 5875, 5438, 13, 14, UNI_JG__MANICHAEANHETH } /* joininggroup=manichaeanheth */,
+ { 1, 6122, 0, 12, 0, UNI_ALPHABETICPF } /* alphabeticpf */,
+ { 0, 8967, 3, 6, 1, -UNI_BIDIM } /* bidim=f */,
+ { 1, 7360, 8642, 10, 2, UNI_LB__HY } /* linebreak=hy */,
+ { 5, 1394, 0, 24, 0, UNI_ARABICPFB } /* arabicpresentationformsb */,
+ { 1, 7360, 34, 10, 2, UNI_LB__EX } /* linebreak=ex */,
+ { 0, 3707, 0, 16, 0, UNI_ETHIOPICEXT } /* ethiopicextended */,
+ { 3, 1418, 9390, 25, 4, UNI_CCC__32 } /* canonicalcombiningclass=ccc32 */,
+ { 4, 10268, 10214, 3, 3, UNI_NV__9_SLASH_2 } /* nv=9/2 */,
+ { 18, 3877, 9231, 17, 6, UNI_WCHO } /* scriptextensions=wancho */,
+ { 0, 8881, 98, 3, 4, UNI_XPOSIXALPHA } /* isalpha */,
+ { 6, 185, 2584, 2, 4, UNI_MAND } /* ismand */,
+ { 0, 9979, 1678, 4, 5, UNI_LATN } /* scx=latin */,
+ { 4, 6083, 8099, 13, 2, UNI_NV__14 } /* numericvalue=14 */,
+ { 0, 6218, 0, 12, 0, UNI_CYRILLICEXTC } /* cyrillicextc */,
+ { 0, 8782, 4504, 7, 5, UNI_BAMU } /* script=bamum */,
+ { 0, 10268, 7951, 3, 1, UNI_NV__3 } /* nv=3 */,
+ { 0, 21, 9105, 2, 6, UNI_INKHOJKI } /* inkhojki */,
+ { 1, 10253, 23, 3, 2, UNI_LB__AL } /* lb=al */,
+ { 2, 9489, 26, 5, 1, UNI_MATH } /* math=y */,
+ { 0, 8356, 0, 8, 0, UNI_HIRA } /* hiragana */,
+ { 1, 1553, 6719, 9, 11, UNI_CASEDLETTER } /* category=casedletter */,
+ { 3, 21, 9524, 2, 5, UNI_INRUNIC } /* inrunic */,
+ { 0, 9691, 6242, 4, 12, UNI_ETHIOPICEXTB } /* blk=ethiopicextb */,
+ { 4, 9476, 9707, 3, 4, UNI_CANS } /* sc=cans */,
+ { 0, 9711, 3596, 4, 9, UNI_CCC__BL } /* ccc=belowleft */,
+ { 0, 3121, 7, 18, 3, UNI_DT__CAN } /* decompositiontype=can */,
+ { 8, 6674, 3, 12, 1, -UNI_XIDC } /* xidcontinue=f */,
+ { 0, 1586, 0, 23, 0, UNI_BYZANTINEMUSIC } /* byzantinemusicalsymbols */,
+ { 3, 3403, 36, 6, 1, UNI_XPOSIXSPACE } /* space=t */,
+ { 2, 7467, 10071, 3, 4, UNI_IN__12_DOT_1 } /* in=v121 */,
+ { 2, 8973, 5927, 6, 13, UNI_LOWSURROGATES } /* block=lowsurrogates */,
+ { 1, 3877, 7105, 18, 3, UNI_SYLO } /* scriptextensions=sylo */,
+ { 4, 9691, 4426, 4, 6, UNI_INTANGUT } /* blk=tangut */,
+ { 1, 4972, 4985, 3, 7, UNI_TAMILSUP } /* istamilsup */,
+ { 0, 1418, 9407, 24, 2, UNI_CCC__35 } /* canonicalcombiningclass=35 */,
+ { 0, 9979, 8508, 4, 4, UNI_VITH } /* scx=vith */,
+ { 4, 9123, 1, 6, 1, -UNI_XPOSIXLOWER } /* lower=n */,
+ { 9, 9476, 4984, 3, 5, UNI_SC__TAML } /* sc=tamil */,
+ { 0, 9123, 0, 6, 0, UNI_lower_values_index } /* lower= */,
+ { 0, 9461, 1891, 3, 5, UNI_SB__UP } /* sb=upper */,
+ { 22, 8973, 601, 7, 29, UNI_CJKEXTD } /* block=cjkunifiedideographsextensiond */,
+ { 2, 9476, 9237, 3, 6, UNI_SC__YEZI } /* sc=yezidi */,
+ { 9, 3877, 7820, 17, 4, UNI_PERM } /* scriptextensions=perm */,
+ { 6, 3942, 8350, 4, 6, UNI_INGURMUKHI } /* ingurmukhi */,
+ { 0, 8973, 8476, 6, 8, UNI_INTIFINAGH } /* block=tifinagh */,
+ { 5, 8973, 5256, 6, 14, UNI_KANASUP } /* block=kanasupplement */,
+ { 3, 9474, 9499, 5, 5, UNI_INSC__NUKTA } /* insc=nukta */,
+ { 6, 4744, 7027, 15, 11, UNI_IDENTIFIERTYPE__RECOMMENDED } /* identifiertype=recommended */,
+ { 0, 9647, 10325, 4, 3, UNI_AGE__6 } /* age=v60 */,
+ { 1, 8782, 5059, 7, 15, UNI_ZANB } /* script=zanabazarsquare */,
+ { 8, 9691, 9207, 4, 6, UNI_INTHAANA } /* blk=thaana */,
+ { 0, 1852, 0, 5, 0, UNI_CASED } /* cased */,
+ { 16, 1724, 0, 23, 0, UNI_SUPPUNCTUATION } /* supplementalpunctuation */,
+ { 1, 8300, 0, 4, 0, UNI_DUPL } /* dupl */,
+ { 2, 21, 5368, 2, 4, UNI_INLISU } /* inlisu */,
+ { 21, 10247, 4218, 3, 16, UNI_JG__MANICHAEANDALETH } /* jg=manichaeandaleth */,
+ { 1, 5662, 0, 16, 0, UNI_SB__SP } /* sentencebreak=sp */,
+ { 1, 10352, 4346, 3, 5, UNI_WB__XX } /* wb=other */,
+ { 3, 10268, 8012, 3, 8, UNI_NV__1_SLASH_4 } /* nv=2.50e-01 */,
+ { 0, 4074, 340, 16, 2, UNI_LO } /* generalcategory=lo */,
+ { 3, 8881, 81, 4, 8, UNI_ARABICMATH } /* isarabicmath */,
+ { 0, 8973, 8866, 6, 7, UNI_INTIRHUTA } /* block=tirhuta */,
+ { 4, 7460, 9607, 10, 4, UNI_IN__14 } /* presentin=14.0 */,
+ { 0, 10247, 7490, 3, 10, UNI_JG__REVERSEDPE } /* jg=reversedpe */,
+ { 1, 5045, 1, 3, 41, UNI_UCASEXT } /* isunifiedcanadianaboriginalsyllabicsextended */,
+ { 0, 8973, 8348, 6, 8, UNI_INGURMUKHI } /* block=gurmukhi */,
+ { 1, 8973, 750, 6, 30, UNI_ENCLOSEDALPHANUMSUP } /* block=enclosedalphanumericsupplement */,
+ { 0, 7360, 5669, 10, 2, UNI_EBASE } /* linebreak=eb */,
+ { 0, 4074, 1564, 16, 2, UNI_PS } /* generalcategory=ps */,
+ { 27, 9979, 7655, 4, 9, UNI_BHKS } /* scx=bhaiksuki */,
+ { 2, 6083, 10204, 13, 2, UNI_NV__37 } /* numericvalue=37 */,
+ { 1, 3448, 8493, 3, 7, UNI_UCASEXTA } /* inucasexta */,
+ { 3, 185, 721, 3, 8, UNI_XSUX } /* iscuneiform */,
+ { 4, 10217, 4362, 3, 16, UNI_BC__S } /* bc=segmentseparator */,
+ { 5, 7682, 9454, 9, 5, -UNI_EXT } /* extender=false */,
+ { 9, 6083, 8907, 13, 3, UNI_NV__300 } /* numericvalue=300 */,
+ { 0, 2803, 0, 3, 0, UNI_IDS } /* ids */,
+ { 3, 8782, 6386, 7, 4, UNI_SC__MAHJ } /* script=mahj */,
+ { 0, 4074, 1846, 16, 2, UNI_NL } /* generalcategory=nl */,
+ { 3, 3877, 10039, 17, 4, UNI_THAI } /* scriptextensions=thai */,
+ { 3, 8881, 9680, 3, 3, UNI_AVST } /* isavst */,
+ { 6, 8973, 7754, 6, 9, UNI_LATINEXTG } /* block=latinextg */,
+ { 1, 4744, 7137, 15, 11, UNI_IDENTIFIERTYPE__UNCOMMONUSE } /* identifiertype=uncommonuse */,
+ { 3, 9691, 5227, 4, 4, UNI_INCHAM } /* blk=cham */,
+ { 0, 9691, 720, 4, 16, UNI_CUNEIFORMNUMBERS } /* blk=cuneiformnumbers */,
+ { 2, 5408, 8680, 5, 4, UNI_INMANDAIC } /* inmandaic */,
+ { 5, 9691, 5888, 4, 13, UNI_KANAEXTA } /* blk=kanaextendeda */,
+ { 0, 8973, 2165, 7, 20, UNI_CYRILLICSUP } /* block=cyrillicsupplementary */,
+ { 2, 7390, 0, 10, 0, UNI_MISCARROWS } /* miscarrows */,
+ { 11, 8973, 5836, 6, 8, UNI_GREEKEXT } /* block=greekext */,
+ { 2, 7552, 0, 8, 0, UNI_ASSIGNED } /* assigned */,
+ { 0, 9735, 10355, 4, 3, UNI_CWU } /* cwu=yes */,
+ { 0, 9159, 0, 6, 0, UNI_nfdqc_values_index } /* nfdqc= */,
+ { 0, 9979, 2433, 4, 4, UNI_GLAG } /* scx=glag */,
+ { 0, 10232, 3, 3, 1, UNI_EA__F } /* ea=f */,
+ { 0, 9979, 6302, 4, 6, UNI_HEBR } /* scx=hebrew */,
+ { 1, 8782, 8684, 7, 7, UNI_MARC } /* script=marchen */,
+ { 0, 6158, 0, 5, 0, UNI_BIDIC } /* bidic */,
+ { 4, 8973, 2936, 6, 19, UNI_SUNDANESESUP } /* block=sundanesesupplement */,
+ { 1, 8782, 9795, 7, 4, UNI_HMNG } /* script=hmng */,
+ { 8, 9979, 8621, 4, 4, UNI_GRAN } /* scx=gran */,
+ { 0, 8782, 79, 7, 6, UNI_SC__ARAB } /* script=arabic */,
+ { 0, 9691, 184, 4, 34, UNI_MISCPICTOGRAPHS } /* blk=miscellaneoussymbolsandpictographs */,
+ { 4, 4847, 2086, 3, 14, UNI_MODIFIERLETTERS } /* inmodifierletters */,
+ { 0, 8973, 6122, 6, 12, UNI_ALPHABETICPF } /* block=alphabeticpf */,
+ { 0, 9979, 10043, 4, 4, UNI_TIBT } /* scx=tibt */,
+ { 9, 3877, 8537, 17, 7, UNI_BENG } /* scriptextensions=bengali */,
+ { 5, 8649, 0, 7, 0, UNI_KNDA } /* kannada */,
+ { 0, 9219, 36, 6, 1, UNI_XPOSIXUPPER } /* upper=t */,
+ { 1, 9691, 1946, 4, 12, UNI_DIACRITICALS } /* blk=diacriticals */,
+ { 0, 185, 9740, 3, 3, UNI_CYRL } /* iscyrl */,
+ { 0, 1189, 10052, 3, 3, UNI_INTOTO } /* intoto */,
+ { 1, 9464, 26, 5, 1, UNI_IDST } /* idst=y */,
+ { 6, 10119, 0, 4, 0, UNI_ZYYY } /* zyyy */,
+ { 0, 185, 6506, 2, 12, UNI_MATHALPHANUM } /* ismathalphanum */,
+ { 4, 185, 10400, 2, 2, UNI_ZS } /* iszs */,
+ { 0, 6083, 7958, 13, 2, UNI_NV__50 } /* numericvalue=50 */,
+ { 2, 5875, 5235, 13, 7, UNI_JG__HEHGOAL } /* joininggroup=hehgoal */,
+ { 4, 9476, 4504, 3, 4, UNI_BAMU } /* sc=bamu */,
+ { 0, 9779, 0, 4, 0, UNI_GUJR } /* gujr */,
+ { 5, 10247, 9995, 3, 4, UNI_JG__SHIN } /* jg=shin */,
+ { 2, 9476, 4426, 3, 6, UNI_TANG } /* sc=tangut */,
+ { 0, 10247, 5504, 3, 4, UNI_JG__TETH } /* jg=teth */,
+ { 0, 3877, 9911, 17, 4, UNI_ORKH } /* scriptextensions=orkh */,
+ { 1, 810, 0, 29, 0, UNI_ENCLOSEDIDEOGRAPHICSUP } /* enclosedideographicsupplement */,
+ { 18, 10253, 7590, 3, 10, UNI_LB__WJ } /* lb=wordjoiner */,
+ { 0, 8973, 3724, 6, 17, UNI_ETHIOPICEXTB } /* block=ethiopicextendedb */,
+ { 1, 3877, 8754, 17, 4, UNI_OSMA } /* scriptextensions=osma */,
+ { 1, 10511, 7580, 5, 4, UNI_POSIXWORD } /* posixword */,
+ { 4, 6937, 288, 6, 29, UNI_MISCMATHSYMBOLSB } /* inmiscellaneousmathematicalsymbolsb */,
+ { 1, 7060, 10355, 11, 3, UNI_SD } /* softdotted=yes */,
+ { 7, 2304, 1783, 4, 2, UNI_OLCK } /* isolck */,
+ { 5, 9683, 0, 4, 0, UNI_BATK } /* batk */,
+ { 0, 1852, 1, 6, 1, -UNI_CASED } /* cased=n */,
+ { 4, 9691, 149, 4, 35, UNI_DIACRITICALSSUP } /* blk=combiningdiacriticalmarkssupplement */,
+ { 3, 8955, 10055, 6, 4, UNI_XPOSIXALPHA } /* alpha=true */,
+ { 3, 9429, 3, 5, 1, -UNI_CWCF } /* cwcf=f */,
+ { 0, 21, 4170, 2, 9, UNI_LATIN1 } /* inlatin1sup */,
+ { 15, 4157, 7909, 3, 6, UNI_IDS } /* isidstart */,
+ { 16, 3877, 9783, 17, 4, UNI_GURU } /* scriptextensions=guru */,
+ { 1, 9476, 10039, 3, 4, UNI_THAI } /* sc=thai */,
+ { 2, 9213, 0, 6, 0, UNI_uideo_values_index } /* uideo= */,
+ { 0, 1553, 38, 9, 2, UNI_XPOSIXDIGIT } /* category=nd */,
+ { 0, 10109, 1748, 3, 12, UNI_ZNAMENNYMUSIC } /* inznamennymusic */,
+ { 0, 4972, 4427, 3, 15, UNI_TANGUTCOMPONENTS } /* istangutcomponents */,
+ { 1, 3391, 36, 18, 1, UNI__PERL_PATWS } /* patternwhitespace=t */,
+ { 0, 9214, 9454, 5, 5, -UNI_IDEO } /* ideo=false */,
+ { 2, 21, 5368, 2, 14, UNI_LISUSUP } /* inlisusupplement */,
{ 0, 9691, 9891, 4, 4, UNI_INNEWA } /* blk=newa */,
- { 2, 7230, 103, 10, 2, UNI_BC__ET } /* bidiclass=et */,
- { 3, 9691, 8586, 4, 7, UNI_CJKEXTG } /* blk=cjkextg */,
- { 1, 9763, 407, 4, 7, UNI_GCB__CN } /* gcb=control */,
- { 1, 10268, 8028, 3, 6, UNI_NV__200000 } /* nv=200000 */,
- { 4, 6350, 6796, 12, 11, UNI_JT__D } /* joiningtype=dualjoining */,
- { 0, 10283, 26, 3, 1, UNI_SD } /* sd=y */,
- { 9, 3121, 1418, 18, 9, UNI_DT__CAN } /* decompositiontype=canonical */,
- { 2, 9979, 8607, 4, 7, UNI_ELBA } /* scx=elbasan */,
- { 1, 7360, 84, 10, 2, UNI_LB__CM } /* linebreak=cm */,
- { 0, 5368, 0, 4, 0, UNI_LISU } /* lisu */,
- { 0, 8444, 1, 8, 1, -UNI_RADICAL } /* radical=n */,
- { 0, 6338, 9454, 12, 5, -UNI_JOINC } /* joincontrol=false */,
+ { 1, 9469, 5607, 3, 13, UNI_PHONETICEXTSUP } /* inphoneticextsup */,
+ { 4, 8973, 2227, 6, 14, UNI_INHANIFIROHINGYA } /* block=hanifirohingya */,
+ { 1, 8973, 541, 7, 29, UNI_CJKEXTB } /* block=cjkunifiedideographsextensionb */,
+ { 0, 9476, 7853, 3, 4, UNI_PAUC } /* sc=pauc */,
+ { 9, 185, 2974, 2, 19, UNI_SUPARROWSB } /* issupplementalarrowsb */,
+ { 0, 185, 8276, 2, 8, UNI_BALI } /* isbalinese */,
+ { 9, 4972, 8469, 3, 7, UNI_TAGB } /* istagbanwa */,
+ { 0, 2248, 1296, 3, 24, UNI_SUPERANDSUB } /* insuperscriptsandsubscripts */,
+ { 9, 4170, 0, 16, 0, UNI_LATIN1 } /* latin1supplement */,
+ { 1, 1088, 1, 27, 1, -UNI_PCM } /* prependedconcatenationmark=n */,
+ { 0, 21, 4202, 2, 16, UNI_LINEARBSYLLABARY } /* inlinearbsyllabary */,
+ { 2, 8782, 9951, 7, 4, UNI_SC__QAAI } /* script=qaai */,
+ { 0, 8628, 10055, 7, 4, UNI_GRBASE } /* grbase=true */,
+ { 1, 8276, 0, 8, 0, UNI_BALI } /* balinese */,
+ { 1, 185, 4170, 2, 16, UNI_LATIN1 } /* islatin1supplement */,
+ { 8, 1990, 8484, 22, 8, UNI_INSC__TONEMARK } /* indicsyllabiccategory=tonemark */,
+ { 0, 5875, 10292, 13, 3, UNI_JG__TAH } /* joininggroup=tah */,
+ { 1, 9691, 5368, 4, 14, UNI_LISUSUP } /* blk=lisusupplement */,
+ { 2, 4972, 9208, 3, 5, UNI_THAA } /* isthaana */,
+ { 1, 9476, 6593, 3, 4, UNI_HUNG } /* sc=hung */,
+ { 0, 8782, 4314, 7, 7, UNI_SC__MYMR } /* script=myanmar */,
+ { 0, 9711, 8907, 4, 2, UNI_CCC__30 } /* ccc=30 */,
+ { 1, 1792, 9454, 22, 5, -UNI_CWCF } /* changeswhencasefolded=false */,
+ { 8, 8973, 284, 6, 33, UNI_MISCMATHSYMBOLSB } /* block=miscellaneousmathematicalsymbolsb */,
+ { 2, 10229, 8332, 3, 3, UNI_DT__FRA } /* dt=fra */,
+ { 1, 9647, 10187, 4, 3, UNI_AGE__5_DOT_1 } /* age=5.1 */,
+ { 1, 6842, 3922, 4, 4, UNI_INCARIAN } /* incarian */,
+ { 4, 1115, 26, 26, 1, UNI_CWKCF } /* changeswhennfkccasefolded=y */,
+ { 0, 7360, 7664, 10, 9, UNI_LB__B2 } /* linebreak=breakboth */,
+ { 1, 10268, 9402, 3, 2, UNI_NV__34 } /* nv=34 */,
+ { 10, 401, 0, 6, 0, UNI_CF } /* format */,
+ { 0, 10247, 4789, 3, 15, UNI_JG__MANICHAEANALEPH } /* jg=manichaeanaleph */,
+ { 1, 3175, 0, 18, 0, UNI_epres_values_index } /* emojipresentation= */,
+ { 3, 185, 4401, 2, 4, UNI_EMOD } /* isemod */,
+ { 7, 21, 5901, 2, 13, UNI_KANAEXTB } /* inkanaextendedb */,
+ { 0, 8782, 6590, 7, 12, UNI_HUNG } /* script=oldhungarian */,
+ { 3, 2553, 10355, 20, 3, UNI_TERM } /* terminalpunctuation=yes */,
+ { 2, 10510, 9424, 6, 5, UNI_XPOSIXCNTRL } /* xposixcntrl */,
+ { 2, 8782, 1678, 7, 5, UNI_SC__LATN } /* script=latin */,
+ { 0, 3398, 36, 11, 1, UNI_XPOSIXSPACE } /* whitespace=t */,
+ { 0, 8782, 9683, 7, 4, UNI_BATK } /* script=batk */,
+ { 0, 9979, 8670, 4, 4, UNI_MAKA } /* scx=maka */,
+ { 1, 9691, 1935, 4, 11, UNI_NUMBERFORMS } /* blk=numberforms */,
+ { 1, 4972, 9535, 3, 3, UNI_TAKR } /* istakr */,
+ { 0, 9476, 3978, 3, 4, UNI_SC__BOPO } /* sc=bopo */,
+ { 0, 780, 0, 30, 0, UNI_SYMBOLSANDPICTOGRAPHSEXTA } /* symbolsandpictographsextendeda */,
+ { 1, 10217, 3398, 3, 10, UNI_BC__WS } /* bc=whitespace */,
+ { 0, 9214, 36, 5, 1, UNI_IDEO } /* ideo=t */,
+ { 1, 9691, 8285, 5, 7, UNI_INBASSAVAH } /* blk=bassavah */,
+ { 2, 9691, 447, 4, 18, UNI_IDEOGRAPHICSYMBOLS } /* blk=ideographicsymbols */,
+ { 0, 9691, 1219, 4, 8, UNI_INKATAKANA } /* blk=katakana */,
+ { 1, 3877, 9264, 17, 5, UNI_ADLM } /* scriptextensions=adlam */,
+ { 1, 8316, 0, 8, 0, UNI_extpict_values_index } /* extpict= */,
+ { 0, 9727, 36, 4, 1, UNI_CWL } /* cwl=t */,
+ { 6, 9927, 9454, 4, 5, -UNI_PCM } /* pcm=false */,
+ { 8, 6083, 5732, 13, 8, UNI_NV__10000000 } /* numericvalue=10000000 */,
+ { 0, 5045, 5015, 3, 14, UNI_UPPERCASELETTER } /* isuppercaseletter */,
+ { 0, 9093, 0, 6, 0, UNI_KTHI } /* kaithi */,
+ { 13, 8973, 3691, 7, 16, UNI_CYRILLICEXTC } /* block=cyrillicextendedc */,
+ { 1, 9647, 10307, 4, 3, UNI_AGE__3_DOT_2 } /* age=v32 */,
+ { 0, 3877, 9795, 17, 4, UNI_HMNG } /* scriptextensions=hmng */,
+ { 3, 8782, 9919, 7, 4, UNI_OSGE } /* script=osge */,
+ { 0, 3877, 5059, 17, 15, UNI_ZANB } /* scriptextensions=zanabazarsquare */,
+ { 0, 8973, 4170, 6, 16, UNI_LATIN1 } /* block=latin1supplement */,
+ { 5, 7510, 0, 10, 0, UNI_SMALLFORMS } /* smallforms */,
+ { 2, 9711, 2833, 4, 2, UNI_CCC__1 } /* ccc=ov */,
+ { 2, 185, 9504, 2, 5, UNI_NSHU } /* isnushu */,
+ { 2, 9469, 7845, 3, 8, UNI_PALM } /* inpalmyrene */,
+ { 1, 9691, 79, 4, 10, UNI_ARABICMATH } /* blk=arabicmath */,
+ { 0, 9803, 36, 4, 1, UNI_GCB__T } /* hst=t */,
+ { 0, 6083, 7972, 13, 8, UNI_NV__1_SLASH_64 } /* numericvalue=1.56e-02 */,
+ { 6, 10268, 8949, 3, 2, UNI_NV__90 } /* nv=90 */,
+ { 1, 3877, 9895, 17, 4, UNI_NKO } /* scriptextensions=nkoo */,
+ { 0, 8973, 1345, 6, 25, UNI_SYMBOLSFORLEGACYCOMPUTING } /* block=symbolsforlegacycomputing */,
+ { 2, 10516, 473, 3, 2, UNI_PUA } /* ispua */,
+ { 9, 9474, 7470, 5, 10, UNI_INSC__PUREKILLER } /* insc=purekiller */,
+ { 5, 9711, 1779, 4, 2, UNI_CCC__DB } /* ccc=db */,
+ { 6, 8782, 7655, 7, 9, UNI_BHKS } /* script=bhaiksuki */,
+ { 0, 8705, 0, 8, 0, UNI_NFKCQC__N } /* nfkcqc=n */,
+ { 0, 185, 8566, 3, 6, UNI_CJKEXTD } /* iscjkextd */,
+ { 8, 3103, 0, 4, 0, UNI_COPT } /* copt */,
+ { 1, 7005, 0, 11, 0, UNI_SO } /* othersymbol */,
+ { 0, 7460, 7924, 10, 3, UNI_IN__1_DOT_1 } /* presentin=1.1 */,
+ { 14, 4314, 0, 16, 0, UNI_MYANMAREXTA } /* myanmarextendeda */,
+ { 0, 8973, 6950, 6, 11, UNI_MYANMAREXTA } /* block=myanmarexta */,
+ { 1, 2100, 0, 22, 0, UNI_TRANSPORTANDMAP } /* transportandmapsymbols */,
+ { 0, 9691, 3775, 4, 17, UNI_INDICSIYAQNUMBERS } /* blk=indicsiyaqnumbers */,
+ { 2, 6741, 10055, 11, 4, UNI_DEP } /* deprecated=true */,
+ { 1, 5914, 0, 13, 0, UNI_ZL } /* lineseparator */,
+ { 0, 3553, 10355, 18, 3, UNI_VS } /* variationselector=yes */,
+ { 6, 2974, 0, 19, 0, UNI_SUPARROWSB } /* supplementalarrowsb */,
+ { 2, 9476, 6302, 3, 4, UNI_HEBR } /* sc=hebr */,
+ { 16, 1814, 10355, 22, 3, UNI_CWCM } /* changeswhencasemapped=yes */,
+ { 1, 6386, 0, 7, 0, UNI_MAHJONG } /* mahjong */,
+ { 4, 10253, 5648, 3, 9, UNI_LB__QU } /* lb=quotation */,
+ { 16, 8973, 9099, 6, 6, UNI_KANBUN } /* block=kanbun */,
+ { 14, 350, 0, 33, 0, UNI_SUPSYMBOLSANDPICTOGRAPHS } /* supplementalsymbolsandpictographs */,
+ { 1, 2803, 3, 19, 1, -UNI_IDST } /* idstrinaryoperator=f */,
+ { 4, 9476, 8420, 3, 8, UNI_SC__MAHJ } /* sc=mahajani */,
+ { 2, 3673, 0, 17, 0, UNI_CYRILLICEXTB } /* cyrillicextendedb */,
+ { 8, 2784, 6650, 19, 12, UNI_GCB__T } /* hangulsyllabletype=trailingjamo */,
+ { 1, 10268, 9254, 3, 5, UNI_NV__1_SLASH_320 } /* nv=1/320 */,
+ { 1, 10346, 3546, 3, 7, UNI_VO__U } /* vo=upright */,
+ { 2, 10253, 10250, 3, 2, UNI_GCB__T } /* lb=jt */,
+ { 0, 8782, 5227, 7, 4, UNI_CHAM } /* script=cham */,
+ { 0, 185, 4699, 2, 14, UNI_ECOMP } /* isemojicomponent */,
+ { 1, 3571, 0, 17, 0, UNI_ALCHEMICAL } /* alchemicalsymbols */,
+ { 5, 185, 8380, 2, 8, UNI_JAMOEXTB } /* isjamoextb */,
+ { 1, 8782, 7863, 8, 8, UNI_SAMR } /* script=samaritan */,
+ { 1, 9476, 1537, 3, 4, UNI_SC__SIND } /* sc=sind */,
+ { 2, 9469, 2473, 5, 4, UNI_INPC__LEFT } /* inpc=left */,
+ { 1, 185, 2879, 2, 12, UNI_MONGOLIANSUP } /* ismongoliansup */,
+ { 1, 8973, 1562, 6, 24, UNI_SUPSYMBOLSANDPICTOGRAPHS } /* block=supsymbolsandpictographs */,
+ { 1, 7218, 1587, 3, 22, UNI_BYZANTINEMUSIC } /* inbyzantinemusicalsymbols */,
+ { 6, 8973, 7540, 6, 10, UNI_SUPARROWSC } /* block=suparrowsc */,
+ { 2, 9057, 10355, 6, 3, UNI_EMOJI } /* emoji=yes */,
+ { 4, 7391, 3624, 4, 15, UNI_AGHB } /* iscaucasianalbanian */,
+ { 0, 10346, 0, 3, 0, UNI_vo_values_index } /* vo= */,
+ { 6, 6083, 10214, 13, 3, UNI_NV__9_SLASH_2 } /* numericvalue=9/2 */,
+ { 5, 8782, 8811, 8, 3, UNI_SOYO } /* script=soyo */,
+ { 0, 9476, 9975, 3, 4, UNI_SARB } /* sc=sarb */,
+ { 0, 8782, 9719, 7, 4, UNI_SC__CPMN } /* script=cpmn */,
+ { 3, 3481, 0, 18, 0, UNI_TAIXUANJING } /* taixuanjingsymbols */,
+ { 1, 8973, 3139, 6, 18, UNI_DEVANAGARIEXT } /* block=devanagariextended */,
+ { 0, 4714, 0, 15, 0, UNI_grext_values_index } /* graphemeextend= */,
+ { 0, 3877, 7310, 17, 10, UNI_DIAK } /* scriptextensions=divesakuru */,
+ { 1, 4074, 207, 16, 2, UNI_PI } /* generalcategory=pi */,
+ { 6, 9691, 9831, 4, 3, UNI_INLAO } /* blk=lao */,
{ 0, 10516, 5802, 7, 5, UNI_POSIXALNUM } /* isposixalnum */,
- { 0, 8973, 1925, 7, 21, UNI_INDICNUMBERFORMS } /* block=commonindicnumberforms */,
- { 0, 185, 5298, 2, 14, UNI_LATINEXTC } /* islatinextendedc */,
- { 7, 79, 0, 10, 0, UNI_ARABICMATH } /* arabicmath */,
- { 0, 3877, 2353, 17, 20, UNI_HLUW } /* scriptextensions=anatolianhieroglyphs */,
- { 0, 9979, 7835, 4, 9, UNI_OUGR } /* scx=olduyghur */,
- { 1, 9691, 1219, 4, 8, UNI_INKATAKANA } /* blk=katakana */,
- { 1, 8492, 0, 7, 0, UNI_UCASEXT } /* ucasext */,
- { 0, 7754, 0, 9, 0, UNI_LATINEXTG } /* latinextg */,
- { 0, 3877, 9715, 17, 4, UNI_CHRS } /* scriptextensions=chrs */,
- { 1, 9691, 8293, 5, 7, UNI_INBUGINESE } /* blk=buginese */,
- { 0, 10229, 568, 3, 2, UNI_DT__NB } /* dt=nb */,
- { 0, 7230, 23, 10, 2, UNI_BC__AL } /* bidiclass=al */,
- { 1, 6158, 0, 11, 0, UNI_BIDIC } /* bidicontrol */,
- { 1, 8782, 3049, 7, 8, UNI_CHER } /* script=cherokee */,
- { 1, 4138, 0, 16, 0, UNI_HIGHPUSURROGATES } /* highpusurrogates */,
- { 10, 5662, 5, 15, 1, UNI_SB__SE } /* sentencebreak=se */,
- { 1, 9979, 383, 4, 4, UNI_EGYP } /* scx=egyp */,
- { 0, 6083, 7990, 13, 1, UNI_NV__8 } /* numericvalue=8 */,
- { 2, 6083, 10370, 13, 2, UNI_NV__48 } /* numericvalue=48 */,
- { 1, 8973, 1034, 6, 11, UNI_ENCLOSEDCJK } /* block=enclosedcjk */,
- { 0, 9711, 1780, 4, 2, UNI_CCC__BR } /* ccc=br */,
- { 0, 3553, 0, 18, 0, UNI_vs_values_index } /* variationselector= */,
- { 0, 9691, 2311, 4, 7, UNI_INSINHALA } /* blk=sinhala */,
- { 1, 9691, 1014, 4, 5, UNI_INGREEK } /* blk=greek */,
- { 4, 8973, 2936, 6, 12, UNI_SUNDANESESUP } /* block=sundanesesup */,
- { 4, 9476, 8476, 3, 8, UNI_TFNG } /* sc=tifinagh */,
- { 3, 7467, 10334, 3, 3, UNI_IN__6_DOT_3 } /* in=v63 */,
- { 0, 4847, 2861, 3, 18, UNI_MODIFIERTONELETTERS } /* inmodifiertoneletters */,
- { 0, 3877, 8300, 17, 8, UNI_DUPL } /* scriptextensions=duployan */,
- { 0, 7230, 18, 10, 1, UNI_BC__R } /* bidiclass=r */,
- { 0, 8973, 9129, 6, 6, UNI_INLYCIAN } /* block=lycian */,
- { 0, 1418, 8179, 24, 2, UNI_CCC__36 } /* canonicalcombiningclass=36 */,
- { 1, 1190, 11, 3, 2, UNI_NT__DI } /* nt=di */,
- { 5, 10268, 7983, 3, 1, UNI_NV__7 } /* nv=7 */,
- { 1, 9647, 10328, 4, 3, UNI_AGE__6_DOT_1 } /* age=v61 */,
- { 12, 21, 9831, 2, 3, UNI_INLAO } /* inlao */,
- { 1, 10247, 4218, 3, 16, UNI_JG__MANICHAEANDALETH } /* jg=manichaeandaleth */,
- { 0, 7297, 1117, 3, 3, UNI_HANG } /* ishang */,
- { 1, 9691, 1193, 4, 26, UNI_HALFANDFULLFORMS } /* blk=halfwidthandfullwidthforms */,
- { 2, 10247, 5989, 3, 3, UNI_JG__NUN } /* jg=nun */,
- { 0, 11, 0, 3, 0, UNI_DIA } /* dia */,
- { 1, 8782, 2584, 7, 4, UNI_SC__MAND } /* script=mand */,
- { 0, 9691, 2936, 4, 12, UNI_SUNDANESESUP } /* blk=sundanesesup */,
- { 2, 1990, 2393, 22, 20, UNI_INSC__CONSONANTPLACEHOLDER } /* indicsyllabiccategory=consonantplaceholder */,
- { 0, 9647, 7934, 4, 1, UNI_AGE__2 } /* age=2 */,
- { 0, 2248, 2937, 3, 11, UNI_SUNDANESESUP } /* insundanesesup */,
- { 0, 2206, 3409, 21, 17, UNI_RI } /* graphemeclusterbreak=regionalindicator */,
- { 0, 10253, 4010, 3, 16, UNI_LB__CP } /* lb=closeparenthesis */,
- { 0, 3877, 7700, 17, 9, UNI_QAAI } /* scriptextensions=inherited */,
- { 0, 9747, 10355, 4, 3, UNI_DIA } /* dia=yes */,
- { 1, 2312, 1657, 4, 4, UNI_INHANGUL } /* inhangul */,
- { 2, 185, 479, 2, 31, UNI_MATHALPHANUM } /* ismathematicalalphanumericsymbols */,
- { 11, 7104, 0, 11, 0, UNI_SYLO } /* sylotinagri */,
- { 0, 9979, 7781, 4, 9, UNI_NBAT } /* scx=nabataean */,
- { 0, 3121, 5068, 18, 6, UNI_DT__SQR } /* decompositiontype=square */,
- { 0, 10253, 18, 3, 2, UNI_RI } /* lb=ri */,
- { 8, 4157, 7701, 3, 8, UNI_QAAI } /* isinherited */,
- { 1, 9691, 7381, 4, 2, UNI_INVS } /* blk=vs */,
- { 0, 10250, 7, 3, 1, UNI_JT__C } /* jt=c */,
- { 1, 10268, 8046, 3, 2, UNI_NV__13 } /* nv=13 */,
- { 3, 2248, 8825, 3, 6, UNI_SUPPUAB } /* insuppuab */,
- { 0, 8973, 7673, 6, 9, UNI_EMOTICONS } /* block=emoticons */,
- { 3, 9504, 0, 5, 0, UNI_NSHU } /* nushu */,
- { 3, 3448, 1, 3, 42, UNI_UCASEXTA } /* inunifiedcanadianaboriginalsyllabicsextendeda */,
- { 0, 10268, 7958, 3, 2, UNI_NV__50 } /* nv=50 */,
- { 0, 8973, 9534, 6, 5, UNI_INTAKRI } /* block=takri */,
- { 1, 7230, 4362, 10, 16, UNI_BC__S } /* bidiclass=segmentseparator */,
- { 3, 2003, 10391, 10, 1, UNI_CASEDLETTER } /* category=l_ */,
- { 3, 9476, 6518, 3, 4, UNI_MEND } /* sc=mend */,
- { 4, 9476, 2302, 4, 3, UNI_SC__KALI } /* sc=kali */,
- { 0, 43, 0, 16, 0, UNI_CJKCOMPAT } /* cjkcompatibility */,
- { 2, 8782, 2433, 7, 10, UNI_SC__GLAG } /* script=glagolitic */,
- { 2, 3403, 0, 5, 0, UNI_XPOSIXSPACE } /* space */,
- { 0, 4847, 394, 3, 2, UNI_INMRO } /* inmro */,
- { 6, 8500, 0, 4, 0, UNI_UGAR } /* ugar */,
- { 7, 7360, 4594, 10, 15, UNI_LB__CB } /* linebreak=contingentbreak */,
- { 1, 9476, 79, 3, 4, UNI_SC__ARAB } /* sc=arab */,
- { 3, 3121, 0, 18, 0, UNI_dt_values_index } /* decompositiontype= */,
- { 1, 9979, 9687, 4, 4, UNI_BHKS } /* scx=bhks */,
- { 6, 4410, 0, 6, 0, UNI_SYRC } /* syriac */,
- { 2, 6083, 8943, 13, 3, UNI_NV__800 } /* numericvalue=800 */,
- { 0, 185, 1288, 2, 2, UNI_UPPERCASELETTER } /* islu */,
- { 9, 1270, 1026, 25, 2, -UNI_COMPEX } /* fullcompositionexclusion=no */,
- { 1, 185, 1295, 2, 25, UNI_SUPERANDSUB } /* issuperscriptsandsubscripts */,
- { 4, 8782, 8670, 7, 4, UNI_MAKA } /* script=maka */,
- { 0, 2206, 4401, 21, 9, UNI_WB__EB } /* graphemeclusterbreak=emodifier */,
- { 1, 1538, 4656, 4, 13, UNI_DIACRITICALSEXT } /* indiacriticalsext */,
- { 4, 9691, 350, 4, 33, UNI_SUPSYMBOLSANDPICTOGRAPHS } /* blk=supplementalsymbolsandpictographs */,
- { 4, 8284, 0, 4, 0, UNI_BASS } /* bass */,
- { 0, 6083, 8076, 13, 8, UNI_NV__3_SLASH_8 } /* numericvalue=3.75e-01 */,
- { 0, 5758, 0, 5, 0, UNI_BIDIM } /* bidim */,
- { 4, 9763, 5717, 4, 2, UNI_LB__H2 } /* gcb=lv */,
- { 3, 5550, 0, 16, 0, UNI_DT__CAN } /* nfdquickcheck=no */,
- { 1, 4074, 9048, 16, 2, UNI_CF } /* generalcategory=cf */,
- { 2, 600, 0, 30, 0, UNI_CJKEXTD } /* cjkunifiedideographsextensiond */,
- { 1, 10268, 10358, 3, 2, UNI_NV__38 } /* nv=38 */,
- { 0, 4534, 0, 7, 0, UNI_BRAI } /* braille */,
- { 0, 7360, 0, 10, 0, UNI_lb_values_index } /* linebreak= */,
- { 1, 3403, 10403, 5, 4, UNI_XPOSIXSPACE } /* spaceperl */,
- { 6, 9691, 4939, 4, 15, UNI_SARB } /* blk=oldsoutharabian */,
- { 0, 8530, 0, 7, 0, UNI_AVST } /* avestan */,
- { 0, 9979, 9807, 4, 4, UNI_KALI } /* scx=kali */,
- { 1, 9979, 9935, 4, 4, UNI_PHNX } /* scx=phnx */,
- { 1, 3894, 0, 16, 0, UNI_STERM } /* sentenceterminal */,
- { 4, 5368, 0, 14, 0, UNI_LISUSUP } /* lisusupplement */,
- { 0, 9711, 8091, 4, 2, UNI_CCC__24 } /* ccc=24 */,
- { 0, 3877, 3103, 17, 4, UNI_COPT } /* scriptextensions=copt */,
- { 4, 8881, 9644, 3, 3, UNI_ADLM } /* isadlm */,
- { 0, 5662, 496, 14, 7, UNI_SB__NU } /* sentencebreak=numeric */,
- { 1, 7682, 26, 9, 1, UNI_EXT } /* extender=y */,
- { 0, 6083, 8907, 13, 4, UNI_NV__3000 } /* numericvalue=3000 */,
- { 4, 9476, 9939, 3, 4, UNI_MIAO } /* sc=plrd */,
- { 0, 7460, 7983, 10, 1, UNI_IN__7 } /* presentin=7 */,
- { 0, 1115, 0, 25, 0, UNI_CWKCF } /* changeswhennfkccasefolded */,
- { 1, 10253, 3403, 3, 5, UNI_LB__SP } /* lb=space */,
- { 2, 8973, 9895, 6, 3, UNI_INNKO } /* block=nko */,
- { 1, 9711, 6763, 4, 11, UNI_CCC__DA } /* ccc=doubleabove */,
- { 0, 9979, 7817, 4, 9, UNI_PERM } /* scx=oldpermic */,
- { 0, 10253, 43, 3, 2, UNI_LB__CJ } /* lb=cj */,
- { 4, 7218, 2633, 3, 5, UNI_INBRAHMI } /* inbrahmi */,
- { 0, 10244, 133, 3, 2, UNI_LM } /* gc=lm */,
- { 4, 1060, 0, 2, 0, UNI_SO } /* so */,
- { 1, 8973, 184, 6, 34, UNI_MISCPICTOGRAPHS } /* block=miscellaneoussymbolsandpictographs */,
- { 3, 9979, 7853, 4, 4, UNI_PAUC } /* scx=pauc */,
- { 0, 2248, 2956, 3, 18, UNI_SUPARROWSA } /* insupplementalarrowsa */,
- { 7, 9123, 26, 6, 1, UNI_XPOSIXLOWER } /* lower=y */,
- { 0, 9444, 0, 4, 0, UNI_DOGR } /* dogr */,
- { 1, 2164, 0, 18, 0, UNI_CYRILLICSUP } /* cyrillicsupplement */,
- { 1, 1770, 753, 23, 4, UNI_BPT__C } /* bidipairedbrackettype=close */,
- { 0, 6083, 8907, 13, 6, UNI_NV__300000 } /* numericvalue=300000 */,
- { 0, 9691, 6386, 4, 7, UNI_MAHJONG } /* blk=mahjong */,
- { 5, 185, 3600, 3, 2, UNI_CWL } /* iscwl */,
- { 8, 1592, 3725, 3, 16, UNI_ETHIOPICEXTB } /* inethiopicextendedb */,
- { 6, 9979, 7260, 4, 10, UNI_CHRS } /* scx=chorasmian */,
- { 3, 9979, 9943, 4, 4, UNI_PRTI } /* scx=prti */,
- { 0, 2493, 0, 20, 0, UNI_HMNP } /* nyiakengpuachuehmong */,
- { 2, 6109, 0, 13, 0, UNI_VERTICALFORMS } /* verticalforms */,
- { 12, 10402, 9172, 7, 4, UNI__PERL_PATWS } /* _perl_patws */,
- { 16, 8973, 5862, 6, 13, UNI_IPAEXT } /* block=ipaextensions */,
- { 0, 6674, 0, 11, 0, UNI_XIDC } /* xidcontinue */,
- { 5, 185, 9063, 2, 5, UNI_EPRES } /* isepres */,
- { 8, 2304, 6984, 3, 10, UNI_LO } /* isotherletter */,
- { 0, 185, 7530, 2, 10, UNI_SUPARROWSB } /* issuparrowsb */,
- { 0, 9459, 9454, 5, 5, -UNI_IDSB } /* idsb=false */,
- { 1, 185, 5270, 2, 14, UNI_KANGXI } /* iskangxiradicals */,
- { 0, 9691, 5690, 4, 14, UNI_SUPPUNCTUATION } /* blk=suppunctuation */,
- { 2, 10268, 7940, 3, 8, UNI_NV__1_SLASH_80 } /* nv=1.25e-02 */,
- { 4, 8782, 383, 7, 4, UNI_EGYP } /* script=egyp */,
- { 1, 7580, 7049, 10, 11, UNI_WB__SQ } /* wordbreak=singlequote */,
- { 5, 9763, 24, 4, 1, UNI_GCB__L } /* gcb=l */,
- { 3, 9979, 9715, 4, 4, UNI_CHRS } /* scx=chrs */,
- { 1, 185, 9951, 2, 4, UNI_QAAI } /* isqaai */,
- { 0, 21, 5270, 2, 14, UNI_KANGXI } /* inkangxiradicals */,
- { 1, 8973, 2100, 6, 22, UNI_TRANSPORTANDMAP } /* block=transportandmapsymbols */,
- { 6, 10253, 6807, 3, 11, UNI_LB__EX } /* lb=exclamation */,
- { 0, 9691, 8356, 4, 8, UNI_INHIRAGANA } /* blk=hiragana */,
- { 4, 185, 9831, 2, 3, UNI_LAO } /* islao */,
- { 1, 8973, 4282, 6, 16, UNI_MISCMATHSYMBOLSA } /* block=miscmathsymbolsa */,
- { 6, 6674, 1026, 12, 2, -UNI_XIDC } /* xidcontinue=no */,
- { 0, 7218, 3979, 3, 15, UNI_BOPOMOFOEXT } /* inbopomofoextended */,
- { 2, 8973, 10271, 6, 3, UNI_OCR } /* block=ocr */,
- { 1, 8973, 2632, 6, 6, UNI_INBRAHMI } /* block=brahmi */,
- { 2, 9979, 8468, 4, 8, UNI_TAGB } /* scx=tagbanwa */,
- { 0, 9691, 43, 4, 16, UNI_CJKCOMPAT } /* blk=cjkcompatibility */,
- { 10, 9476, 3139, 3, 10, UNI_SC__DEVA } /* sc=devanagari */,
- { 1, 9469, 3499, 5, 10, UNI_INPC__TOPANDLEFT } /* inpc=topandleft */,
- { 4, 1553, 4346, 9, 16, UNI_PO } /* category=otherpunctuation */,
- { 0, 5662, 752, 14, 2, UNI_SB__CL } /* sentencebreak=cl */,
- { 0, 8768, 9454, 7, 5, -UNI_PATSYN } /* patsyn=false */,
- { 1, 185, 2146, 2, 7, UNI_RADICAL } /* isradical */,
- { 1, 9997, 1703, 4, 21, UNI_SHORTHANDFORMATCONTROLS } /* inshorthandformatcontrols */,
- { 0, 10352, 6785, 3, 11, UNI_WB__DQ } /* wb=doublequote */,
- { 2, 8782, 9105, 7, 4, UNI_SC__KHOJ } /* script=khoj */,
- { 2, 8789, 0, 7, 0, UNI_SHRD } /* sharada */,
- { 4, 9647, 10322, 4, 3, UNI_AGE__5_DOT_2 } /* age=v52 */,
- { 0, 9691, 8621, 4, 7, UNI_INGRANTHA } /* blk=grantha */,
- { 0, 2085, 0, 15, 0, UNI_MODIFIERLETTERS } /* modifierletters */,
- { 0, 5875, 10107, 13, 4, UNI_JG__ZAIN } /* joininggroup=zain */,
- { 2, 9979, 3193, 4, 8, UNI_ETHI } /* scx=ethiopic */,
- { 16, 8607, 0, 7, 0, UNI_ELBA } /* elbasan */,
- { 1, 10247, 9243, 3, 4, UNI_JG__YUDH } /* jg=yudh */,
- { 0, 8973, 631, 7, 29, UNI_CJKEXTE } /* block=cjkunifiedideographsextensione */,
- { 0, 10268, 8920, 3, 2, UNI_NV__32 } /* nv=32 */,
- { 0, 7908, 1, 8, 1, -UNI_IDS } /* idstart=n */,
- { 0, 9691, 7754, 4, 9, UNI_LATINEXTG } /* blk=latinextg */,
- { 26, 7297, 1515, 3, 23, UNI_HIGHPUSURROGATES } /* ishighprivateusesurrogates */,
- { 1, 1115, 3, 26, 1, -UNI_CWKCF } /* changeswhennfkccasefolded=f */,
- { 1, 6675, 0, 11, 0, UNI_idc_values_index } /* idcontinue= */,
- { 1, 8973, 6386, 6, 12, UNI_MAHJONG } /* block=mahjongtiles */,
- { 0, 5875, 6434, 13, 12, UNI_JG__MALAYALAMNNA } /* joininggroup=malayalamnna */,
- { 0, 3877, 6972, 17, 4, UNI_NAND } /* scriptextensions=nand */,
- { 1, 10280, 26, 3, 1, UNI_RI } /* ri=y */,
- { 1, 6340, 1468, 4, 22, UNI_DIACRITICALSFORSYMBOLS } /* incombiningmarksforsymbols */,
- { 8, 9476, 9871, 3, 4, UNI_MRO } /* sc=mroo */,
- { 1, 3877, 9843, 17, 4, UNI_LINB } /* scriptextensions=linb */,
- { 0, 4282, 0, 16, 0, UNI_MISCMATHSYMBOLSA } /* miscmathsymbolsa */,
- { 0, 8782, 7820, 7, 4, UNI_SC__PERM } /* script=perm */,
- { 1, 7230, 24, 10, 1, UNI_BC__L } /* bidiclass=l */,
- { 7, 9803, 7889, 4, 9, UNI_GCB__V } /* hst=voweljamo */,
- { 1, 8817, 0, 7, 0, UNI_SUPPUAA } /* suppuaa */,
- { 2, 4684, 3, 15, 1, UNI_EA__F } /* eastasianwidth=f */,
- { 4, 8642, 1, 7, 1, -UNI_HYPHEN } /* hyphen=n */,
- { 1, 10553, 7501, 3, 3, UNI_SAUR } /* issaur */,
- { 1, 9795, 0, 4, 0, UNI_HMNG } /* hmng */,
- { 1, 8782, 8811, 8, 6, UNI_SOYO } /* script=soyombo */,
- { 6, 5116, 10355, 14, 3, UNI_CI } /* caseignorable=yes */,
- { 0, 9476, 8775, 3, 7, UNI_SC__PHAG } /* sc=phagspa */,
- { 0, 1858, 1026, 22, 2, -UNI_CWT } /* changeswhentitlecased=no */,
- { 0, 9979, 5059, 4, 15, UNI_ZANB } /* scx=zanabazarsquare */,
- { 1, 6340, 511, 3, 29, UNI_CJKEXTA } /* incjkunifiedideographsextensiona */,
- { 6, 1538, 6753, 3, 10, UNI_DOMINO } /* indominotiles */,
- { 4, 9459, 10055, 5, 4, UNI_IDSB } /* idsb=true */,
- { 1, 9979, 79, 4, 4, UNI_ARAB } /* scx=arab */,
- { 0, 1836, 3, 22, 1, -UNI_CWL } /* changeswhenlowercased=f */,
- { 1, 5875, 5235, 13, 7, UNI_JG__HEHGOAL } /* joininggroup=hehgoal */,
- { 1, 6314, 1, 12, 1, -UNI_IDEO } /* ideographic=n */,
- { 0, 2012, 9454, 22, 5, -UNI_LOE } /* logicalorderexception=false */,
- { 1, 9214, 26, 5, 1, UNI_IDEO } /* ideo=y */,
- { 1, 8973, 8754, 6, 7, UNI_INOSMANYA } /* block=osmanya */,
- { 3, 1553, 4999, 9, 15, UNI_TITLE } /* category=titlecaseletter */,
- { 16, 1270, 10355, 25, 3, UNI_COMPEX } /* fullcompositionexclusion=yes */,
- { 1, 2808, 3964, 4, 14, UNI_ARABICSUP } /* inarabicsupplement */,
- { 0, 4909, 0, 15, 0, UNI_nfkdqc_values_index } /* nfkdquickcheck= */,
- { 0, 3877, 10087, 17, 4, UNI_WCHO } /* scriptextensions=wcho */,
- { 0, 7360, 6278, 10, 4, UNI_LB__GL } /* linebreak=glue */,
- { 0, 9691, 5901, 4, 13, UNI_KANAEXTB } /* blk=kanaextendedb */,
- { 2, 9979, 9117, 4, 6, UNI_LEPC } /* scx=lepcha */,
- { 11, 9476, 9835, 3, 4, UNI_SC__LATN } /* sc=latn */,
- { 8, 5648, 0, 14, 0, UNI_qmark_values_index } /* quotationmark= */,
- { 0, 9153, 0, 7, 0, UNI_COMPEX } /* nfcqc=n */,
- { 5, 10253, 0, 3, 0, UNI_lb_values_index } /* lb= */,
- { 0, 3877, 2708, 17, 19, UNI_EGYP } /* scriptextensions=egyptianhieroglyphs */,
- { 5, 9647, 7990, 4, 1, UNI_AGE__8 } /* age=8 */,
- { 3, 1274, 1, 21, 1, -UNI_CE } /* compositionexclusion=n */,
- { 0, 3877, 10095, 17, 4, UNI_XPEO } /* scriptextensions=xpeo */,
- { 1, 10508, 6675, 3, 10, UNI_XIDC } /* isxidcontinue */,
- { 2, 9691, 447, 4, 32, UNI_IDEOGRAPHICSYMBOLS } /* blk=ideographicsymbolsandpunctuation */,
- { 0, 10268, 8251, 3, 2, UNI_NV__19 } /* nv=19 */,
- { 0, 8955, 10355, 6, 3, UNI_XPOSIXALPHA } /* alpha=yes */,
- { 3, 10268, 9559, 3, 4, UNI_NV___MINUS_1_SLASH_2 } /* nv=-1/2 */,
- { 6, 2632, 0, 6, 0, UNI_BRAH } /* brahmi */,
- { 1, 10250, 6796, 3, 11, UNI_JT__D } /* jt=dualjoining */,
- { 4, 10244, 2292, 3, 2, UNI_PD } /* gc=pd */,
- { 3, 3877, 6924, 18, 3, UNI_SAMR } /* scriptextensions=samr */,
- { 3, 9474, 7799, 5, 9, UNI_INSC__NONJOINER } /* insc=nonjoiner */,
- { 0, 6674, 26, 12, 1, UNI_XIDC } /* xidcontinue=y */,
- { 0, 21, 5298, 2, 14, UNI_LATINEXTC } /* inlatinextendedc */,
- { 1, 7360, 1141, 10, 26, UNI_LB__CJ } /* linebreak=conditionaljapanesestarter */,
- { 1, 1418, 9606, 24, 3, UNI_CCC__214 } /* canonicalcombiningclass=214 */,
- { 0, 5875, 5452, 13, 14, UNI_JG__MANICHAEANKAPH } /* joininggroup=manichaeankaph */,
+ { 26, 185, 1219, 2, 26, UNI_KATAKANAEXT } /* iskatakanaphoneticextensions */,
+ { 2, 9691, 1678, 4, 9, UNI_LATINEXTE } /* blk=latinexte */,
+ { 33, 8973, 1930, 6, 16, UNI_INDICNUMBERFORMS } /* block=indicnumberforms */,
+ { 0, 9691, 6494, 4, 12, UNI_INMASARAMGONDI } /* blk=masaramgondi */,
+ { 1, 9711, 6851, 4, 11, UNI_CCC__8 } /* ccc=kanavoicing */,
+ { 0, 9691, 7310, 4, 10, UNI_INDIVESAKURU } /* blk=divesakuru */,
+ { 5, 8973, 2690, 7, 18, UNI_COUNTINGROD } /* block=countingrodnumerals */,
+ { 0, 10268, 8236, 3, 8, UNI_NV__17_SLASH_2 } /* nv=8.50e+00 */,
+ { 1, 2206, 24, 21, 1, UNI_GCB__L } /* graphemeclusterbreak=l */,
+ { 0, 9763, 6895, 4, 3, UNI_LB__H3 } /* gcb=lvt */,
+ { 7, 7682, 36, 9, 1, UNI_EXT } /* extender=t */,
+ { 9, 6083, 8028, 13, 6, UNI_NV__200000 } /* numericvalue=200000 */,
+ { 0, 8887, 1, 7, 1, -UNI_XPOSIXSPACE } /* wspace=n */,
+ { 2, 9711, 6774, 4, 11, UNI_CCC__DB } /* ccc=doublebelow */,
+ { 0, 185, 5914, 2, 13, UNI_ZL } /* islineseparator */,
+ { 12, 2553, 0, 4, 0, UNI_TERM } /* term */,
+ { 4, 9123, 10355, 6, 3, UNI_XPOSIXLOWER } /* lower=yes */,
+ { 18, 8782, 7844, 7, 4, UNI_PALM } /* script=palm */,
+ { 27, 9979, 4984, 4, 5, UNI_TAML } /* scx=tamil */,
+ { 9, 21, 9831, 2, 3, UNI_INLAO } /* inlao */,
+ { 1, 1418, 9350, 25, 4, UNI_CCC__24 } /* canonicalcombiningclass=ccc24 */,
+ { 0, 8973, 7016, 6, 11, UNI_INPAHAWHHMONG } /* block=pahawhhmong */,
+ { 1, 1553, 3383, 10, 8, UNI_Z } /* category=separator */,
+ { 7, 9711, 9004, 5, 4, UNI_CCC__12 } /* ccc=ccc12 */,
+ { 1, 8973, 4202, 6, 16, UNI_LINEARBSYLLABARY } /* block=linearbsyllabary */,
+ { 0, 1418, 9415, 25, 4, UNI_CCC__84 } /* canonicalcombiningclass=ccc84 */,
{ 1, 6340, 7271, 3, 9, UNI_CJKSTROKES } /* incjkstrokes */,
- { 1, 9763, 71, 4, 2, UNI_GCB__PP } /* gcb=pp */,
- { 4, 9476, 494, 3, 3, UNI_SC__HAN } /* sc=han */,
- { 3, 8973, 4426, 6, 16, UNI_TANGUTCOMPONENTS } /* block=tangutcomponents */,
- { 10, 2879, 0, 19, 0, UNI_MONGOLIANSUP } /* mongoliansupplement */,
- { 2, 5536, 0, 15, 0, UNI_COMPEX } /* nfcquickcheck=n */,
- { 1, 10217, 32, 3, 2, UNI_BC__CS } /* bc=cs */,
- { 0, 1418, 8119, 24, 1, UNI_CCC__9 } /* canonicalcombiningclass=9 */,
- { 3, 8782, 6924, 8, 3, UNI_SAMR } /* script=samr */,
- { 0, 7460, 9595, 10, 4, UNI_IN__12_DOT_1 } /* presentin=12.1 */,
- { 5, 185, 5676, 2, 14, UNI_ZS } /* isspaceseparator */,
- { 1, 9979, 8284, 4, 8, UNI_BASS } /* scx=bassavah */,
- { 10, 10268, 7916, 3, 8, UNI_NV__1_SLASH_10 } /* nv=1.00e-01 */,
- { 0, 8973, 7646, 6, 9, UNI_ARABICPFB } /* block=arabicpfb */,
- { 0, 185, 2690, 3, 18, UNI_COUNTINGROD } /* iscountingrodnumerals */,
- { 4, 114, 0, 25, 0, UNI_DIACRITICALS } /* combiningdiacriticalmarks */,
- { 0, 3877, 6590, 17, 12, UNI_HUNG } /* scriptextensions=oldhungarian */,
- { 2, 3826, 0, 10, 0, UNI_MANI } /* manichaean */,
- { 5, 3877, 8775, 17, 7, UNI_PHAG } /* scriptextensions=phagspa */,
- { 3, 1880, 26, 22, 1, UNI_CWU } /* changeswhenuppercased=y */,
- { 1, 9474, 6566, 5, 12, UNI_INSC__NUMBERJOINER } /* insc=numberjoiner */,
- { 1, 8973, 9529, 6, 5, UNI_INTAILE } /* block=taile */,
- { 3, 4157, 2804, 3, 17, UNI_IDST } /* isidstrinaryoperator */,
- { 7, 8973, 868, 6, 28, UNI_PHONETICEXTSUP } /* block=phoneticextensionssupplement */,
- { 1, 9691, 3979, 5, 15, UNI_BOPOMOFOEXT } /* blk=bopomofoextended */,
- { 0, 1553, 2373, 9, 20, UNI_PC } /* category=connectorpunctuation */,
- { 1, 5875, 4122, 13, 16, UNI_JG__HANIFIROHINGYAPA } /* joininggroup=hanifirohingyapa */,
- { 0, 185, 5256, 2, 7, UNI_KANASUP } /* iskanasup */,
- { 0, 2304, 6995, 3, 10, UNI_NO } /* isothernumber */,
- { 19, 10470, 6677, 15, 8, UNI__PERL_CHARNAME_CONTINUE } /* _perl_charname_continue */,
- { 8, 185, 9831, 2, 4, UNI_LAO } /* islaoo */,
- { 0, 479, 0, 31, 0, UNI_MATHALPHANUM } /* mathematicalalphanumericsymbols */,
- { 0, 5875, 5410, 13, 14, UNI_JG__MANICHAEANBETH } /* joininggroup=manichaeanbeth */,
- { 3, 10244, 1067, 3, 2, UNI_CASEDLETTER } /* gc=lc */,
- { 0, 6083, 8028, 13, 5, UNI_NV__20000 } /* numericvalue=20000 */,
- { 0, 10244, 4346, 3, 16, UNI_PO } /* gc=otherpunctuation */,
- { 2, 9691, 7200, 4, 10, UNI_ARABICEXTB } /* blk=arabicextb */,
- { 0, 6350, 36, 12, 1, UNI_JT__T } /* joiningtype=t */,
- { 5, 185, 2165, 3, 7, UNI_CYRL } /* iscyrillic */,
- { 0, 10346, 410, 3, 2, UNI_VO__TR } /* vo=tr */,
- { 4, 5312, 0, 14, 0, UNI_LATINEXTD } /* latinextendedd */,
- { 2, 10244, 5096, 3, 5, UNI_XPOSIXDIGIT } /* gc=digit */,
- { 0, 6083, 9627, 13, 4, UNI_NV__3_SLASH_64 } /* numericvalue=3/64 */,
+ { 2, 9549, 26, 5, 1, UNI_XIDS } /* xids=y */,
+ { 3, 9075, 0, 5, 0, UNI_GREXT } /* grext */,
+ { 7, 185, 0, 3, 0, UNI_C } /* isc */,
+ { 0, 9735, 26, 4, 1, UNI_CWU } /* cwu=y */,
+ { 5, 10247, 6482, 3, 12, UNI_JG__MANICHAEANPE } /* jg=manichaeanpe */,
+ { 0, 9691, 7500, 4, 10, UNI_INSAURASHTRA } /* blk=saurashtra */,
+ { 3, 1553, 46, 9, 2, UNI_CO } /* category=co */,
+ { 5, 185, 7520, 2, 10, UNI_SUPARROWSA } /* issuparrowsa */,
+ { 0, 10087, 0, 4, 0, UNI_WCHO } /* wcho */,
+ { 3, 9979, 9529, 4, 5, UNI_TALE } /* scx=taile */,
+ { 0, 3877, 9484, 17, 5, UNI_LIMB } /* scriptextensions=limbu */,
+ { 27, 8782, 9524, 7, 5, UNI_RUNR } /* script=runic */,
+ { 4, 185, 9967, 2, 4, UNI_RUNR } /* isrunr */,
+ { 3, 9476, 7450, 3, 10, UNI_PHNX } /* sc=phoenician */,
+ { 10, 7230, 2533, 10, 20, UNI_BC__RLE } /* bidiclass=righttoleftembedding */,
+ { 4, 8973, 7500, 6, 10, UNI_INSAURASHTRA } /* block=saurashtra */,
+ { 11, 185, 1793, 3, 20, UNI_CWCF } /* ischangeswhencasefolded */,
+ { 2, 9476, 4410, 3, 6, UNI_SC__SYRC } /* sc=syriac */,
+ { 1, 185, 9831, 2, 3, UNI_LAO } /* islao */,
+ { 11, 7467, 10059, 3, 4, UNI_IN__10 } /* in=v100 */,
+ { 9, 9979, 9524, 4, 5, UNI_RUNR } /* scx=runic */,
+ { 2, 10253, 8873, 3, 7, UNI_LB__XX } /* lb=unknown */,
+ { 2, 6578, 496, 12, 7, UNI_NT__NU } /* numerictype=numeric */,
+ { 5, 4847, 6930, 4, 9, UNI_INMEDEFAIDRIN } /* inmedefaidrin */,
+ { 1, 4074, 10398, 16, 2, UNI_ZP } /* generalcategory=zp */,
+ { 0, 6083, 8180, 13, 8, UNI_NV__13_SLASH_2 } /* numericvalue=6.50e+00 */,
+ { 10, 4598, 1634, 4, 16, UNI_GEOMETRICSHAPESEXT } /* ingeometricshapesext */,
+ { 0, 3877, 8300, 17, 4, UNI_DUPL } /* scriptextensions=dupl */,
+ { 6, 185, 6338, 2, 5, UNI_JOINC } /* isjoinc */,
+ { 1, 9647, 5732, 4, 2, UNI_AGE__10 } /* age=10 */,
+ { 2, 9711, 9415, 5, 4, UNI_CCC__84 } /* ccc=ccc84 */,
+ { 1, 7297, 8357, 3, 7, UNI_HIRA } /* ishiragana */,
+ { 1, 9057, 0, 6, 0, UNI_emoji_values_index } /* emoji= */,
+ { 8, 9979, 8670, 4, 7, UNI_MAKA } /* scx=makasar */,
+ { 4, 185, 1815, 3, 20, UNI_CWCM } /* ischangeswhencasemapped */,
+ { 3, 1858, 0, 22, 0, UNI_cwt_values_index } /* changeswhentitlecased= */,
+ { 1, 9927, 3, 4, 1, -UNI_PCM } /* pcm=f */,
+ { 0, 3877, 8754, 17, 7, UNI_OSMA } /* scriptextensions=osmanya */,
+ { 0, 8782, 9947, 7, 4, UNI_SC__COPT } /* script=qaac */,
+ { 2, 7560, 10055, 10, 4, UNI_XPOSIXUPPER } /* uppercase=true */,
+ { 1, 9476, 9504, 3, 5, UNI_NSHU } /* sc=nushu */,
+ { 0, 4074, 4624, 16, 14, UNI_SC } /* generalcategory=currencysymbol */,
+ { 0, 3877, 10083, 17, 4, UNI_VAI } /* scriptextensions=vaii */,
+ { 1, 9979, 7853, 4, 9, UNI_PAUC } /* scx=paucinhau */,
+ { 2, 1553, 468, 9, 5, UNI_P } /* category=punct */,
+ { 6, 3403, 9454, 6, 5, -UNI_XPOSIXSPACE } /* space=false */,
+ { 1, 9979, 9915, 4, 4, UNI_ORYA } /* scx=orya */,
+ { 8, 9979, 9687, 4, 4, UNI_BHKS } /* scx=bhks */,
+ { 0, 9476, 10007, 3, 4, UNI_SC__SYRC } /* sc=syrc */,
+ { 0, 9691, 8356, 4, 8, UNI_INHIRAGANA } /* blk=hiragana */,
+ { 3, 9476, 6290, 3, 12, UNI_SC__GONG } /* sc=gunjalagondi */,
+ { 0, 185, 317, 2, 33, UNI_SUPMATHOPERATORS } /* issupplementalmathematicaloperators */,
+ { 0, 8973, 8404, 6, 8, UNI_KANAEXTB } /* block=kanaextb */,
+ { 1, 185, 1946, 2, 22, UNI_DIACRITICALSFORSYMBOLS } /* isdiacriticalsforsymbols */,
+ { 0, 9048, 0, 2, 0, UNI_CF } /* cf */,
+ { 1, 9979, 3826, 4, 10, UNI_MANI } /* scx=manichaean */,
+ { 6, 5550, 0, 14, 0, UNI_nfdqc_values_index } /* nfdquickcheck= */,
+ { 18, 185, 9425, 3, 4, UNI_XPOSIXCNTRL } /* iscntrl */,
+ { 1, 2206, 34, 21, 2, UNI_GCB__EX } /* graphemeclusterbreak=ex */,
+ { 0, 185, 1847, 2, 9, UNI_XPOSIXLOWER } /* islowercase */,
+ { 4, 8782, 8508, 7, 8, UNI_VITH } /* script=vithkuqi */,
+ { 0, 1553, 728, 9, 2, UNI_MN } /* category=mn */,
+ { 0, 1990, 2868, 22, 10, UNI_INSC__TONELETTER } /* indicsyllabiccategory=toneletter */,
+ { 0, 3877, 9237, 17, 6, UNI_YEZI } /* scriptextensions=yezidi */,
+ { 1, 3406, 0, 3, 0, UNI_ce_values_index } /* ce= */,
+ { 0, 10390, 0, 2, 0, UNI_CASEDLETTER } /* l_ */,
+ { 0, 8973, 5745, 6, 13, UNI_AEGEANNUMBERS } /* block=aegeannumbers */,
{ 0, 9727, 0, 4, 0, UNI_cwl_values_index } /* cwl= */,
- { 0, 9763, 74, 4, 2, UNI_WB__EB } /* gcb=em */,
- { 24, 9691, 1902, 4, 22, UNI_CJKCOMPATIDEOGRAPHSSUP } /* blk=cjkcompatideographssup */,
- { 1, 10253, 989, 3, 2, UNI_LB__CP } /* lb=cp */,
- { 0, 8973, 4984, 6, 15, UNI_TAMILSUP } /* block=tamilsupplement */,
- { 2, 2242, 7791, 3, 8, UNI_INNEWTAILUE } /* innewtailue */,
- { 10, 3335, 0, 3, 0, UNI_ALL } /* all */,
- { 3, 1846, 0, 2, 0, UNI_NL } /* nl */,
- { 5, 3877, 9875, 17, 4, UNI_MTEI } /* scriptextensions=mtei */,
- { 2, 9979, 7018, 5, 3, UNI_SHAW } /* scx=shaw */,
- { 0, 8973, 284, 6, 33, UNI_MISCMATHSYMBOLSB } /* block=miscellaneousmathematicalsymbolsb */,
- { 4, 1223, 0, 4, 0, UNI_KANA } /* kana */,
- { 1, 7907, 1, 9, 1, -UNI_XIDS } /* xidstart=n */,
- { 0, 3877, 1924, 17, 6, UNI_ZYYY } /* scriptextensions=common */,
- { 0, 2206, 34, 21, 6, UNI_GCB__EX } /* graphemeclusterbreak=extend */,
- { 4, 185, 1632, 2, 23, UNI_GEOMETRICSHAPESEXT } /* isgeometricshapesextended */,
- { 0, 8973, 8580, 7, 6, UNI_CJKEXTF } /* block=cjkextf */,
- { 0, 1553, 207, 9, 2, UNI_PI } /* category=pi */,
- { 2, 185, 3391, 2, 17, UNI__PERL_PATWS } /* ispatternwhitespace */,
- { 10, 6937, 188, 6, 16, UNI_MISCSYMBOLS } /* inmiscellaneoussymbols */,
- { 6, 1115, 0, 26, 0, UNI_cwkcf_values_index } /* changeswhennfkccasefolded= */,
- { 2, 6083, 5732, 13, 3, UNI_NV__100 } /* numericvalue=100 */,
- { 0, 1418, 7983, 24, 1, UNI_CCC__7 } /* canonicalcombiningclass=7 */,
- { 2, 4885, 2435, 4, 18, UNI_GLAGOLITICSUP } /* inglagoliticsupplement */,
- { 10, 10217, 103, 3, 2, UNI_BC__ET } /* bc=et */,
- { 0, 8782, 7072, 8, 10, UNI_SORA } /* script=sorasompeng */,
- { 4, 9476, 6302, 3, 4, UNI_HEBR } /* sc=hebr */,
- { 1, 5875, 6662, 13, 12, UNI_JG__VERTICALTAIL } /* joininggroup=verticaltail */,
- { 11, 9476, 10035, 3, 4, UNI_SC__TGLG } /* sc=tglg */,
- { 0, 185, 10115, 2, 4, UNI_QAAI } /* iszinh */,
- { 0, 9489, 3, 5, 1, -UNI_MATH } /* math=f */,
- { 0, 10511, 5096, 5, 5, UNI_POSIXDIGIT } /* posixdigit */,
- { 1, 185, 952, 2, 18, UNI_INVS } /* isvariationselectors */,
- { 9, 1007, 0, 17, 0, UNI_ANCIENTGREEKMUSIC } /* ancientgreekmusic */,
- { 1, 9979, 10111, 4, 4, UNI_ZANB } /* scx=zanb */,
- { 0, 9979, 7700, 4, 9, UNI_QAAI } /* scx=inherited */,
- { 0, 3877, 10119, 17, 4, UNI_ZYYY } /* scriptextensions=zyyy */,
- { 0, 9201, 0, 4, 0, UNI_TELU } /* telu */,
- { 0, 6578, 496, 12, 2, UNI_NT__NU } /* numerictype=nu */,
- { 0, 185, 9947, 2, 4, UNI_COPT } /* isqaac */,
- { 0, 8973, 1193, 6, 26, UNI_HALFANDFULLFORMS } /* block=halfwidthandfullwidthforms */,
- { 0, 9979, 8276, 4, 8, UNI_BALI } /* scx=balinese */,
- { 0, 185, 9117, 2, 4, UNI_LEPC } /* islepc */,
- { 2, 4074, 4624, 16, 14, UNI_SC } /* generalcategory=currencysymbol */,
- { 3, 10244, 5522, 3, 14, UNI_SK } /* gc=modifiersymbol */,
- { 0, 185, 7310, 2, 10, UNI_DIAK } /* isdivesakuru */,
- { 1, 10280, 0, 3, 0, UNI_ri_values_index } /* ri= */,
- { 20, 5093, 0, 9, 0, UNI_hex_values_index } /* hexdigit= */,
- { 1, 9489, 1026, 5, 2, -UNI_MATH } /* math=no */,
- { 1, 1553, 0, 9, 0, UNI_gc_values_index } /* category= */,
- { 1, 185, 2993, 2, 19, UNI_SUPARROWSC } /* issupplementalarrowsc */,
- { 5, 9691, 8277, 5, 7, UNI_INBALINESE } /* blk=balinese */,
- { 0, 10247, 4804, 3, 15, UNI_JG__MANICHAEANGIMEL } /* jg=manichaeangimel */,
- { 1, 9075, 3, 6, 1, -UNI_GREXT } /* grext=f */,
- { 1, 6083, 8236, 13, 8, UNI_NV__17_SLASH_2 } /* numericvalue=8.50e+00 */,
- { 16, 9099, 0, 6, 0, UNI_KANBUN } /* kanbun */,
- { 3, 9979, 3978, 4, 8, UNI_BOPO } /* scx=bopomofo */,
- { 0, 9045, 3, 6, 1, -UNI_CWKCF } /* cwkcf=f */,
- { 0, 7230, 3814, 10, 3, UNI_BC__RLI } /* bidiclass=rli */,
- { 1, 185, 1061, 3, 3, UNI_COPT } /* iscopt */,
- { 2, 7360, 8873, 10, 7, UNI_LB__XX } /* linebreak=unknown */,
- { 0, 21, 2354, 3, 19, UNI_INANATOLIANHIEROGLYPHS } /* inanatolianhieroglyphs */,
- { 1, 185, 3463, 2, 12, UNI_SMALLKANAEXT } /* issmallkanaext */,
- { 3, 7420, 0, 10, 0, UNI_XPEO } /* oldpersian */,
- { 1, 10268, 9402, 3, 2, UNI_NV__34 } /* nv=34 */,
- { 1, 4972, 8832, 3, 6, UNI_TGLG } /* istagalog */,
- { 3, 10244, 1846, 3, 2, UNI_NL } /* gc=nl */,
- { 5, 9476, 4042, 3, 7, UNI_SC__CPRT } /* sc=cypriot */,
- { 1, 185, 9887, 2, 4, UNI_NBAT } /* isnbat */,
- { 0, 6083, 8046, 13, 2, UNI_NV__13 } /* numericvalue=13 */,
- { 1, 7460, 10071, 10, 4, UNI_IN__12_DOT_1 } /* presentin=v121 */,
- { 6, 185, 9105, 2, 4, UNI_KHOJ } /* iskhoj */,
+ { 1, 10268, 9559, 3, 4, UNI_NV___MINUS_1_SLASH_2 } /* nv=-1/2 */,
+ { 3, 6083, 8913, 13, 3, UNI_NV__400 } /* numericvalue=400 */,
+ { 0, 185, 3792, 2, 17, UNI_KITS } /* iskhitansmallscript */,
+ { 0, 9691, 3979, 5, 10, UNI_BOPOMOFOEXT } /* blk=bopomofoext */,
+ { 8, 9476, 2453, 3, 20, UNI_PHLI } /* sc=inscriptionalpahlavi */,
+ { 1, 1418, 10154, 24, 3, UNI_CCC__R } /* canonicalcombiningclass=226 */,
+ { 5, 6083, 8148, 13, 8, UNI_NV__3_SLASH_5 } /* numericvalue=6.00e-01 */,
+ { 2, 3877, 9284, 17, 5, UNI_BATK } /* scriptextensions=batak */,
+ { 3, 7467, 7996, 3, 3, UNI_IN__2 } /* in=2.0 */,
+ { 21, 9691, 4984, 4, 15, UNI_TAMILSUP } /* blk=tamilsupplement */,
+ { 0, 8973, 568, 6, 2, UNI_NB } /* block=nb */,
+ { 1, 9476, 2227, 3, 4, UNI_SC__HAN } /* sc=hani */,
+ { 1, 21, 3573, 4, 8, UNI_ALCHEMICAL } /* inalchemical */,
+ { 0, 5875, 6434, 13, 12, UNI_JG__MALAYALAMNNA } /* joininggroup=malayalamnna */,
+ { 1, 1592, 3708, 3, 10, UNI_ETHIOPICEXT } /* inethiopicext */,
+ { 0, 185, 2165, 3, 17, UNI_CYRILLICSUP } /* iscyrillicsupplement */,
+ { 1, 185, 661, 3, 29, UNI_CJKEXTF } /* iscjkunifiedideographsextensionf */,
+ { 0, 468, 0, 5, 0, UNI_P } /* punct */,
+ { 2, 7467, 10325, 3, 3, UNI_IN__6 } /* in=v60 */,
+ { 15, 7360, 185, 10, 2, UNI_LB__IS } /* linebreak=is */,
+ { 0, 9711, 9330, 5, 4, UNI_CCC__20 } /* ccc=ccc20 */,
+ { 4, 3409, 0, 17, 0, UNI_RI } /* regionalindicator */,
+ { 3, 10283, 36, 3, 1, UNI_SD } /* sd=t */,
+ { 1, 8628, 10355, 7, 3, UNI_GRBASE } /* grbase=yes */,
+ { 0, 9476, 9899, 3, 4, UNI_NSHU } /* sc=nshu */,
+ { 0, 3877, 7700, 17, 9, UNI_QAAI } /* scriptextensions=inherited */,
{ 1, 7580, 10235, 10, 3, UNI_WB__EB } /* wordbreak=ebg */,
- { 12, 2784, 6070, 19, 13, UNI_HST__NA } /* hangulsyllabletype=notapplicable */,
- { 0, 4074, 207, 16, 2, UNI_PI } /* generalcategory=pi */,
- { 1, 3877, 9767, 17, 4, UNI_GONG } /* scriptextensions=gong */,
- { 9, 2206, 912, 21, 1, UNI_GCB__V } /* graphemeclusterbreak=v */,
- { 0, 8973, 4759, 6, 15, UNI_INIMPERIALARAMAIC } /* block=imperialaramaic */,
- { 9, 185, 896, 2, 28, UNI_SUPPUAA } /* issupplementaryprivateuseareaa */,
- { 1, 10516, 7, 3, 1, UNI_PC } /* ispc */,
- { 0, 8887, 36, 7, 1, UNI_XPOSIXSPACE } /* wspace=t */,
- { 1, 1418, 9420, 25, 4, UNI_CCC__91 } /* canonicalcombiningclass=ccc91 */,
- { 0, 5116, 0, 14, 0, UNI_ci_values_index } /* caseignorable= */,
- { 0, 10217, 5578, 3, 14, UNI_BC__NSM } /* bc=nonspacingmark */,
- { 5, 10253, 396, 3, 2, UNI_LB__GL } /* lb=gl */,
- { 1, 8642, 36, 7, 1, UNI_HYPHEN } /* hyphen=t */,
- { 0, 7160, 9238, 3, 5, UNI_YEZI } /* isyezidi */,
- { 0, 9051, 1, 6, 1, -UNI_ECOMP } /* ecomp=n */,
- { 1, 185, 1632, 2, 15, UNI_GEOMETRICSHAPES } /* isgeometricshapes */,
- { 7, 9691, 3265, 4, 8, UNI_INGEORGIAN } /* blk=georgian */,
- { 0, 6083, 8132, 13, 8, UNI_NV__11_SLASH_2 } /* numericvalue=5.50e+00 */,
- { 0, 3758, 0, 17, 0, UNI_identifierstatus_values_index } /* identifierstatus= */,
- { 0, 185, 9871, 2, 4, UNI_MRO } /* ismroo */,
- { 2, 9691, 2433, 4, 13, UNI_GLAGOLITICSUP } /* blk=glagoliticsup */,
- { 6, 9711, 9004, 5, 5, UNI_CCC__122 } /* ccc=ccc122 */,
- { 0, 185, 3193, 2, 4, UNI_ETHI } /* isethi */,
- { 0, 8973, 2955, 6, 19, UNI_SUPARROWSA } /* block=supplementalarrowsa */,
- { 1, 9476, 6518, 3, 12, UNI_MEND } /* sc=mendekikakui */,
- { 0, 185, 10111, 2, 4, UNI_ZANB } /* iszanb */,
- { 11, 185, 6195, 3, 11, UNI_CYRILLICEXTA } /* iscyrillicexta */,
- { 0, 9691, 750, 4, 21, UNI_ENCLOSEDALPHANUM } /* blk=enclosedalphanumerics */,
- { 4, 8782, 9915, 7, 4, UNI_SC__ORYA } /* script=orya */,
- { 0, 3283, 10055, 18, 4, UNI_IDSB } /* idsbinaryoperator=true */,
- { 2, 9647, 10190, 4, 3, UNI_AGE__5_DOT_2 } /* age=5.2 */,
- { 2, 3877, 9783, 17, 4, UNI_GURU } /* scriptextensions=guru */,
- { 0, 5875, 5989, 13, 3, UNI_JG__NUN } /* joininggroup=nun */,
- { 0, 7300, 1, 10, 1, -UNI_DIA } /* diacritic=n */,
- { 1, 10217, 2917, 3, 19, UNI_BC__RLO } /* bc=righttoleftoverride */,
- { 2, 7467, 7611, 3, 3, UNI_IN__5 } /* in=5.0 */,
- { 1, 7360, 1187, 10, 2, UNI_LB__PO } /* linebreak=po */,
- { 0, 9476, 2453, 3, 20, UNI_PHLI } /* sc=inscriptionalpahlavi */,
- { 1, 8973, 3928, 6, 17, UNI_SUTTONSIGNWRITING } /* block=suttonsignwriting */,
- { 0, 10247, 88, 3, 2, UNI_JG__HE } /* jg=he */,
- { 1, 10217, 18, 3, 1, UNI_BC__R } /* bc=r */,
- { 1, 10253, 10374, 3, 2, UNI_LB__B2 } /* lb=b2 */,
- { 0, 7817, 0, 9, 0, UNI_PERM } /* oldpermic */,
- { 0, 10217, 3337, 3, 18, UNI_BC__LRI } /* bc=lefttorightisolate */,
- { 2, 10540, 3403, 7, 5, UNI_XPOSIXSPACE } /* isxperlspace */,
- { 0, 8973, 7853, 6, 9, UNI_INPAUCINHAU } /* block=paucinhau */,
- { 3, 6083, 10360, 13, 2, UNI_NV__39 } /* numericvalue=39 */,
- { 4, 10268, 8244, 3, 8, UNI_NV__7_SLASH_8 } /* nv=8.75e-01 */,
- { 0, 1270, 0, 25, 0, UNI_compex_values_index } /* fullcompositionexclusion= */,
- { 8, 7460, 10313, 10, 3, UNI_IN__4_DOT_1 } /* presentin=v41 */,
- { 1, 9476, 1014, 3, 5, UNI_SC__GREK } /* sc=greek */,
- { 1, 1270, 3, 25, 1, -UNI_COMPEX } /* fullcompositionexclusion=f */,
- { 3, 8782, 10087, 7, 4, UNI_WCHO } /* script=wcho */,
- { 0, 2185, 10355, 21, 3, UNI_EXTPICT } /* extendedpictographic=yes */,
- { 0, 2784, 7380, 19, 10, UNI_LB__H2 } /* hangulsyllabletype=lvsyllable */,
- { 0, 9691, 8396, 4, 8, UNI_KANAEXTA } /* blk=kanaexta */,
- { 0, 9153, 17, 7, 1, UNI_COMPEX } /* nfcqc=no */,
- { 7, 2242, 8720, 3, 6, UNI_NB } /* innoblock */,
- { 1, 10250, 7400, 3, 10, UNI_JT__U } /* jt=nonjoining */,
- { 3, 7460, 7611, 10, 3, UNI_IN__5 } /* presentin=5.0 */,
- { 0, 6083, 8204, 13, 8, UNI_NV__3_SLASH_4 } /* numericvalue=7.50e-01 */,
- { 0, 6338, 0, 11, 0, UNI_JOINC } /* joincontrol */,
- { 2, 10553, 3936, 3, 3, UNI_SGNW } /* issgnw */,
- { 1, 9476, 5940, 3, 9, UNI_SC__MLYM } /* sc=malayalam */,
- { 0, 2808, 7202, 4, 8, UNI_ARABICEXTB } /* inarabicextb */,
- { 0, 10253, 6096, 3, 13, UNI_LB__PR } /* lb=prefixnumeric */,
- { 0, 599, 0, 2, 0, UNI_XPOSIXCNTRL } /* cc */,
- { 12, 9219, 3, 6, 1, -UNI_XPOSIXUPPER } /* upper=f */,
- { 3, 10027, 0, 4, 0, UNI_TAVT } /* tavt */,
- { 8, 8782, 7570, 7, 4, UNI_WARA } /* script=wara */,
- { 1, 10516, 468, 7, 5, UNI_POSIXPUNCT } /* isposixpunct */,
- { 0, 9476, 9751, 3, 4, UNI_DIAK } /* sc=diak */,
- { 1, 6158, 10055, 12, 4, UNI_BIDIC } /* bidicontrol=true */,
- { 3, 9711, 8027, 4, 3, UNI_CCC__B } /* ccc=220 */,
- { 5, 185, 1443, 3, 9, UNI_CJKSYMBOLS } /* iscjksymbols */,
- { 2, 185, 5059, 2, 15, UNI_ZANB } /* iszanabazarsquare */,
- { 4, 1792, 0, 22, 0, UNI_cwcf_values_index } /* changeswhencasefolded= */,
- { 0, 10553, 7434, 3, 3, UNI_SOGD } /* issogd */,
- { 0, 9476, 10031, 3, 4, UNI_TFNG } /* sc=tfng */,
- { 1, 1770, 6001, 22, 4, UNI_BPT__N } /* bidipairedbrackettype=none */,
- { 0, 9476, 7835, 3, 9, UNI_SC__OUGR } /* sc=olduyghur */,
- { 1, 185, 2085, 2, 14, UNI_LM } /* ismodifierletter */,
- { 3, 3877, 9444, 17, 5, UNI_DOGR } /* scriptextensions=dogra */,
- { 4, 8782, 8500, 7, 4, UNI_UGAR } /* script=ugar */,
- { 8, 9691, 2269, 4, 14, UNI_MEETEIMAYEKEXT } /* blk=meeteimayekext */,
- { 3, 21, 2614, 3, 18, UNI_ANCIENTGREEKNUMBERS } /* inancientgreeknumbers */,
- { 4, 10352, 1846, 3, 2, UNI_WB__NL } /* wb=nl */,
- { 1, 8887, 0, 7, 0, UNI_wspace_values_index } /* wspace= */,
- { 0, 6083, 8043, 13, 2, UNI_NV__23 } /* numericvalue=23 */,
- { 0, 10553, 108, 3, 5, UNI_S } /* issymbol */,
- { 1, 10253, 10378, 3, 2, UNI_LB__H2 } /* lb=h2 */,
- { 1, 185, 1223, 2, 4, UNI_KANA } /* iskana */,
- { 5, 4534, 0, 15, 0, UNI_BRAI } /* braillepatterns */,
- { 1, 7580, 401, 10, 6, UNI_WB__FO } /* wordbreak=format */,
- { 0, 10244, 468, 3, 5, UNI_P } /* gc=punct */,
- { 3, 9691, 2164, 4, 8, UNI_INCYRILLIC } /* blk=cyrillic */,
- { 1, 9476, 9951, 3, 4, UNI_SC__QAAI } /* sc=qaai */,
- { 4, 9691, 3265, 4, 18, UNI_GEORGIANSUP } /* blk=georgiansupplement */,
- { 26, 10217, 3211, 3, 18, UNI_BC__ET } /* bc=europeanterminator */,
- { 6, 8316, 26, 8, 1, UNI_EXTPICT } /* extpict=y */,
- { 0, 10402, 10499, 6, 9, UNI__PERL_QUOTEMETA } /* _perl_quotemeta */,
- { 0, 185, 7682, 2, 8, UNI_EXT } /* isextender */,
- { 1, 185, 3, 3, 1, UNI_CF } /* iscf */,
- { 0, 10244, 9706, 3, 2, UNI_MC } /* gc=mc */,
- { 1, 9735, 26, 4, 1, UNI_CWU } /* cwu=y */,
- { 0, 9434, 3, 5, 1, -UNI_CWCM } /* cwcm=f */,
- { 0, 1418, 79, 24, 2, UNI_CCC__AR } /* canonicalcombiningclass=ar */,
- { 2, 9147, 36, 6, 1, UNI__PERL_NCHAR } /* nchar=t */,
- { 16, 2056, 1026, 22, 2, -UNI__PERL_NCHAR } /* noncharactercodepoint=no */,
- { 0, 1189, 4443, 3, 15, UNI_TANGUTSUP } /* intangutsupplement */,
- { 0, 10516, 9172, 3, 4, UNI__PERL_PATWS } /* ispatws */,
- { 0, 4157, 1309, 3, 2, UNI_IDS } /* isids */,
- { 3, 9747, 9454, 4, 5, -UNI_DIA } /* dia=false */,
- { 2, 9461, 34, 3, 6, UNI_SB__EX } /* sb=extend */,
- { 1, 8782, 9903, 7, 4, UNI_OGAM } /* script=ogam */,
- { 2, 2433, 0, 13, 0, UNI_GLAGOLITICSUP } /* glagoliticsup */,
- { 0, 8705, 48, 7, 1, UNI_NFCQC__M } /* nfkcqc=m */,
- { 1, 7270, 0, 10, 0, UNI_CJKSTROKES } /* cjkstrokes */,
- { 0, 10553, 8804, 3, 6, UNI_SIDD } /* issiddham */,
- { 0, 185, 3934, 2, 11, UNI_SGNW } /* issignwriting */,
- { 1, 4972, 9208, 3, 3, UNI_THAA } /* isthaa */,
- { 1, 2708, 0, 19, 0, UNI_EGYP } /* egyptianhieroglyphs */,
- { 1, 4684, 9141, 15, 6, UNI_EA__NA } /* eastasianwidth=narrow */,
- { 1, 7360, 10382, 10, 2, UNI_GCB__L } /* linebreak=jl */,
- { 0, 1553, 1564, 9, 2, UNI_PS } /* category=ps */,
- { 1, 9711, 8235, 4, 2, UNI_CCC__28 } /* ccc=28 */,
- { 5, 3877, 9831, 17, 4, UNI_LAO } /* scriptextensions=laoo */,
- { 3, 9851, 0, 4, 0, UNI_MEDF } /* medf */,
- { 3, 9691, 9183, 4, 6, UNI_INREJANG } /* blk=rejang */,
- { 5, 8973, 7844, 6, 9, UNI_PALM } /* block=palmyrene */,
- { 0, 8973, 8260, 6, 8, UNI_INARMENIAN } /* block=armenian */,
- { 2, 8973, 2690, 7, 18, UNI_COUNTINGROD } /* block=countingrodnumerals */,
- { 1, 9476, 8670, 3, 7, UNI_MAKA } /* sc=makasar */,
- { 0, 7060, 0, 10, 0, UNI_SD } /* softdotted */,
- { 1, 9476, 6386, 3, 4, UNI_SC__MAHJ } /* sc=mahj */,
- { 0, 8881, 81, 4, 8, UNI_ARABICMATH } /* isarabicmath */,
- { 8, 9691, 3605, 4, 17, UNI_UCAS } /* blk=canadiansyllabics */,
- { 2, 4154, 8510, 4, 6, UNI_INVITHKUQI } /* invithkuqi */,
- { 9, 4744, 2047, 15, 9, UNI_IDENTIFIERTYPE__TECHNICAL } /* identifiertype=technical */,
- { 0, 8782, 9069, 7, 6, UNI_GOTH } /* script=gothic */,
- { 2, 5172, 26, 14, 1, UNI_EMOD } /* emojimodifier=y */,
- { 2, 1858, 1, 22, 1, -UNI_CWT } /* changeswhentitlecased=n */,
- { 3, 9979, 9775, 4, 4, UNI_GREK } /* scx=grek */,
- { 0, 6578, 5797, 12, 7, UNI_XPOSIXDIGIT } /* numerictype=decimal */,
- { 0, 5592, 3, 14, 1, -UNI_PATSYN } /* patternsyntax=f */,
- { 2, 7781, 0, 9, 0, UNI_NBAT } /* nabataean */,
- { 0, 9691, 5354, 4, 14, UNI_LATINEXTG } /* blk=latinextendedg */,
- { 0, 6340, 7282, 4, 8, UNI_COMPATJAMO } /* incompatjamo */,
- { 0, 9476, 9135, 3, 4, UNI_LYDI } /* sc=lydi */,
- { 0, 2311, 0, 21, 0, UNI_SINHALAARCHAICNUMBERS } /* sinhalaarchaicnumbers */,
- { 8, 9429, 3, 5, 1, -UNI_CWCF } /* cwcf=f */,
- { 8, 10268, 8116, 3, 8, UNI_NV__3_SLASH_64 } /* nv=4.69e-02 */,
- { 9, 9177, 0, 5, 0, UNI_QMARK } /* qmark */,
- { 0, 2311, 0, 7, 0, UNI_SINH } /* sinhala */,
- { 4, 4885, 2435, 4, 11, UNI_GLAGOLITICSUP } /* inglagoliticsup */,
- { 0, 4504, 0, 15, 0, UNI_BAMUMSUP } /* bamumsupplement */,
- { 2, 8782, 5634, 7, 14, UNI_SC__PHLP } /* script=psalterpahlavi */,
- { 2, 185, 2841, 2, 19, UNI_MERO } /* ismeroitichieroglyphs */,
- { 10, 9476, 8803, 3, 4, UNI_SIDD } /* sc=sidd */,
- { 2, 10247, 6686, 3, 11, UNI_JG__AFRICANNOON } /* jg=africannoon */,
- { 6, 8973, 9509, 6, 5, UNI_INOGHAM } /* block=ogham */,
- { 3, 8782, 10035, 7, 4, UNI_SC__TGLG } /* script=tglg */,
- { 0, 9691, 9264, 4, 5, UNI_INADLAM } /* blk=adlam */,
- { 0, 9159, 0, 7, 0, UNI_DT__CAN } /* nfdqc=n */,
- { 8, 10511, 9424, 5, 5, UNI_POSIXCNTRL } /* posixcntrl */,
- { 0, 7230, 5926, 10, 3, UNI_BC__RLO } /* bidiclass=rlo */,
- { 3, 9469, 5635, 3, 13, UNI_INPSALTERPAHLAVI } /* inpsalterpahlavi */,
- { 1, 9979, 9069, 4, 6, UNI_GOTH } /* scx=gothic */,
- { 0, 185, 6518, 2, 12, UNI_MEND } /* ismendekikakui */,
- { 26, 8782, 8300, 7, 4, UNI_SC__DUPL } /* script=dupl */,
- { 1, 9476, 2632, 3, 4, UNI_BRAH } /* sc=brah */,
- { 10, 8782, 8356, 7, 8, UNI_SC__HIRA } /* script=hiragana */,
- { 0, 2248, 7521, 3, 9, UNI_SUPARROWSA } /* insuparrowsa */,
- { 0, 185, 6939, 2, 11, UNI_MISCSYMBOLS } /* ismiscsymbols */,
- { 8, 1592, 8608, 3, 6, UNI_INELBASAN } /* inelbasan */,
- { 2, 10247, 5424, 3, 14, UNI_JG__MANICHAEANFIVE } /* jg=manichaeanfive */,
- { 2, 7700, 0, 9, 0, UNI_QAAI } /* inherited */,
- { 2, 4074, 1923, 16, 2, UNI_PC } /* generalcategory=pc */,
- { 8, 8887, 1, 7, 1, -UNI_XPOSIXSPACE } /* wspace=n */,
- { 1, 9476, 9033, 3, 6, UNI_SC__CAKM } /* sc=chakma */,
- { 0, 10253, 8428, 3, 8, UNI_LB__NL } /* lb=nextline */,
- { 0, 2304, 9912, 3, 3, UNI_ORKH } /* isorkh */,
- { 1, 5408, 8672, 4, 5, UNI_INMAKASAR } /* inmakasar */,
- { 0, 10244, 4058, 3, 16, UNI_PF } /* gc=finalpunctuation */,
- { 1, 9476, 2269, 3, 11, UNI_MTEI } /* sc=meeteimayek */,
- { 2, 7360, 7590, 10, 10, UNI_LB__WJ } /* linebreak=wordjoiner */,
- { 14, 9647, 8100, 4, 3, UNI_AGE__4_DOT_1 } /* age=4.1 */,
- { 3, 185, 219, 3, 32, UNI_DIACRITICALSEXT } /* iscombiningdiacriticalmarksextended */,
- { 0, 6083, 7934, 13, 1, UNI_NV__2 } /* numericvalue=2 */,
- { 5, 7450, 0, 10, 0, UNI_PHNX } /* phoenician */,
- { 2, 63, 0, 5, 0, UNI_XPOSIXGRAPH } /* graph */,
- { 7, 8961, 1, 6, 1, -UNI_BIDIC } /* bidic=n */,
- { 0, 9691, 6386, 4, 12, UNI_MAHJONG } /* blk=mahjongtiles */,
- { 5, 9763, 6895, 4, 3, UNI_LB__H3 } /* gcb=lvt */,
- { 5, 9476, 9887, 3, 4, UNI_NBAT } /* sc=nbat */,
- { 0, 185, 1345, 2, 25, UNI_SYMBOLSFORLEGACYCOMPUTING } /* issymbolsforlegacycomputing */,
- { 0, 9979, 9811, 4, 4, UNI_KHMR } /* scx=khmr */,
- { 0, 7467, 10202, 3, 3, UNI_IN__6_DOT_3 } /* in=6.3 */,
- { 10, 7467, 10295, 3, 3, UNI_IN__2 } /* in=v20 */,
+ { 6, 10402, 10490, 6, 9, UNI__PERL_ANY_FOLDS } /* _perl_any_folds */,
+ { 0, 9459, 36, 5, 1, UNI_IDSB } /* idsb=t */,
+ { 1, 10352, 496, 3, 2, UNI_WB__NU } /* wb=nu */,
+ { 5, 9763, 126, 4, 2, UNI_LB__CR } /* gcb=cr */,
+ { 6, 9691, 7808, 4, 9, UNI_INOLDITALIC } /* blk=olditalic */,
+ { 8, 7360, 5830, 10, 5, UNI_EBASE } /* linebreak=ebase */,
+ { 5, 9979, 9943, 4, 4, UNI_PRTI } /* scx=prti */,
+ { 22, 10244, 5014, 3, 15, UNI_UPPERCASELETTER } /* gc=uppercaseletter */,
+ { 4, 10402, 9172, 7, 4, UNI__PERL_PATWS } /* _perl_patws */,
+ { 0, 1553, 5096, 9, 5, UNI_XPOSIXDIGIT } /* category=digit */,
+ { 8, 5830, 0, 5, 0, UNI_EBASE } /* ebase */,
+ { 8, 6340, 8552, 3, 6, UNI_CJKEXTB } /* incjkextb */,
+ { 11, 7297, 8636, 3, 6, UNI_HANO } /* ishanunoo */,
+ { 0, 3877, 9823, 17, 4, UNI_KTHI } /* scriptextensions=kthi */,
+ { 0, 9979, 6386, 4, 4, UNI_MAHJ } /* scx=mahj */,
+ { 0, 3877, 8621, 17, 7, UNI_GRAN } /* scriptextensions=grantha */,
+ { 1, 10268, 8920, 3, 2, UNI_NV__32 } /* nv=32 */,
+ { 0, 7907, 26, 9, 1, UNI_XIDS } /* xidstart=y */,
+ { 1, 1418, 3031, 24, 13, UNI_CCC__214 } /* canonicalcombiningclass=attachedabove */,
+ { 0, 1538, 3505, 24, 12, UNI_INPC__LEFTANDRIGHT } /* indicpositionalcategory=leftandright */,
+ { 2, 7360, 1466, 10, 13, UNI_LB__CM } /* linebreak=combiningmark */,
+ { 0, 9963, 0, 4, 0, UNI_ROHG } /* rohg */,
+ { 0, 9711, 9405, 5, 4, UNI_CCC__35 } /* ccc=ccc35 */,
+ { 0, 185, 4625, 3, 13, UNI_SC } /* iscurrencysymbol */,
+ { 8, 9979, 9739, 4, 4, UNI_CYRL } /* scx=cyrl */,
+ { 0, 1990, 4879, 22, 15, UNI_INSC__MODIFYINGLETTER } /* indicsyllabiccategory=modifyingletter */,
+ { 1, 7159, 0, 11, 0, UNI_YISYLLABLES } /* yisyllables */,
+ { 0, 9691, 3690, 4, 17, UNI_CYRILLICEXTC } /* blk=cyrillicextendedc */,
+ { 2, 9476, 9987, 3, 4, UNI_SGNW } /* sc=sgnw */,
+ { 0, 4894, 48, 15, 1, UNI_NFCQC__M } /* nfkcquickcheck=m */,
+ { 8, 1270, 1, 25, 1, -UNI_COMPEX } /* fullcompositionexclusion=n */,
+ { 5, 8782, 5634, 7, 14, UNI_SC__PHLP } /* script=psalterpahlavi */,
{ 0, 8782, 9883, 7, 4, UNI_NARB } /* script=narb */,
- { 7, 1418, 9375, 25, 4, UNI_CCC__29 } /* canonicalcombiningclass=ccc29 */,
- { 2, 6578, 6001, 12, 4, UNI_NV__NAN } /* numerictype=none */,
- { 2, 10247, 10241, 3, 3, UNI_JG__GAF } /* jg=gaf */,
- { 2, 9979, 9823, 4, 4, UNI_KTHI } /* scx=kthi */,
- { 1, 8705, 9494, 7, 5, UNI_NFCQC__M } /* nfkcqc=maybe */,
- { 0, 2056, 26, 22, 1, UNI__PERL_NCHAR } /* noncharactercodepoint=y */,
- { 5, 3406, 26, 3, 1, UNI_CE } /* ce=y */,
- { 1, 8973, 8649, 6, 7, UNI_INKANNADA } /* block=kannada */,
- { 10, 9691, 8649, 4, 7, UNI_INKANNADA } /* blk=kannada */,
- { 3, 185, 27, 2, 2, UNI_LOWERCASELETTER } /* isll */,
- { 4, 2056, 10055, 22, 4, UNI__PERL_NCHAR } /* noncharactercodepoint=true */,
- { 1, 980, 0, 27, 0, UNI_ALPHABETICPF } /* alphabeticpresentationforms */,
- { 2, 1592, 3194, 3, 7, UNI_INETHIOPIC } /* inethiopic */,
- { 3, 3877, 10031, 17, 4, UNI_TFNG } /* scriptextensions=tfng */,
- { 0, 3877, 8649, 17, 7, UNI_KNDA } /* scriptextensions=kannada */,
- { 2, 3877, 9943, 17, 4, UNI_PRTI } /* scriptextensions=prti */,
- { 0, 9711, 10386, 4, 2, UNI_CCC__8 } /* ccc=kv */,
- { 1, 9691, 3067, 4, 18, UNI_HALFMARKS } /* blk=combininghalfmarks */,
- { 3, 6083, 8059, 13, 2, UNI_NV__33 } /* numericvalue=33 */,
- { 1, 9691, 8754, 4, 7, UNI_INOSMANYA } /* blk=osmanya */,
- { 17, 4847, 4315, 3, 15, UNI_MYANMAREXTA } /* inmyanmarextendeda */,
- { 3, 8973, 5368, 6, 14, UNI_LISUSUP } /* block=lisusupplement */,
- { 1, 8782, 9843, 7, 4, UNI_SC__LINB } /* script=linb */,
- { 0, 8768, 0, 7, 0, UNI_patsyn_values_index } /* patsyn= */,
- { 8, 1792, 10055, 22, 4, UNI_CWCF } /* changeswhencasefolded=true */,
- { 0, 9190, 0, 6, 0, UNI_TERM } /* term=t */,
- { 4, 9691, 8468, 4, 8, UNI_INTAGBANWA } /* blk=tagbanwa */,
- { 9, 9461, 1160, 3, 2, UNI_SB__ST } /* sb=st */,
- { 0, 10268, 7924, 3, 8, UNI_NV__1_SLASH_9 } /* nv=1.11e-01 */,
- { 1, 1288, 0, 2, 0, UNI_UPPERCASELETTER } /* lu */,
- { 0, 9691, 2993, 4, 19, UNI_SUPARROWSC } /* blk=supplementalarrowsc */,
- { 3, 7297, 4139, 3, 15, UNI_HIGHPUSURROGATES } /* ishighpusurrogates */,
- { 0, 6083, 9254, 13, 5, UNI_NV__1_SLASH_320 } /* numericvalue=1/320 */,
- { 0, 8973, 9195, 6, 6, UNI_INTANGSA } /* block=tangsa */,
- { 3, 2312, 5243, 3, 13, UNI_HIGHSURROGATES } /* inhighsurrogates */,
- { 9, 21, 8372, 2, 8, UNI_JAMOEXTA } /* injamoexta */,
- { 1, 6529, 8741, 3, 6, UNI_OLCK } /* inolchiki */,
- { 4, 185, 7673, 2, 9, UNI_EMOTICONS } /* isemoticons */,
- { 12, 185, 9425, 3, 4, UNI_XPOSIXCNTRL } /* iscntrl */,
- { 3, 9979, 8348, 4, 8, UNI_GURU } /* scx=gurmukhi */,
- { 0, 1418, 9395, 25, 4, UNI_CCC__33 } /* canonicalcombiningclass=ccc33 */,
- { 0, 9476, 9201, 3, 4, UNI_SC__TELU } /* sc=telu */,
- { 0, 1418, 8091, 24, 2, UNI_CCC__24 } /* canonicalcombiningclass=24 */,
- { 1, 1592, 7675, 4, 7, UNI_EMOTICONS } /* inemoticons */,
- { 10, 8973, 44, 7, 8, UNI_CJKCOMPAT } /* block=cjkcompat */,
- { 16, 5875, 7290, 13, 10, UNI_JG__DALATHRISH } /* joininggroup=dalathrish */,
- { 2, 8973, 8607, 6, 7, UNI_INELBASAN } /* block=elbasan */,
- { 1, 9979, 10043, 4, 4, UNI_TIBT } /* scx=tibt */,
- { 1, 185, 8614, 2, 4, UNI_ELYM } /* iselym */,
- { 1, 185, 401, 2, 6, UNI_CF } /* isformat */,
- { 0, 9550, 9454, 4, 5, -UNI_IDS } /* ids=false */,
- { 8, 8768, 10055, 7, 4, UNI_PATSYN } /* patsyn=true */,
- { 0, 9482, 0, 4, 0, UNI_PHLI } /* phli */,
- { 2, 185, 8545, 3, 6, UNI_CJKEXTA } /* iscjkexta */,
- { 3, 9691, 7673, 4, 9, UNI_EMOTICONS } /* blk=emoticons */,
- { 1, 1506, 2278, 5, 5, UNI_GREEKEXT } /* ingreekext */,
- { 9, 10560, 1775, 3, 2, UNI_VAI } /* isvai */,
- { 1, 8973, 6939, 6, 11, UNI_MISCSYMBOLS } /* block=miscsymbols */,
- { 6, 3448, 1130, 3, 3, UNI_UCAS } /* inucas */,
- { 0, 10268, 9563, 3, 4, UNI_NV__1_SLASH_10 } /* nv=1/10 */,
- { 0, 9117, 0, 4, 0, UNI_LEPC } /* lepc */,
- { 5, 6083, 9013, 13, 2, UNI_NV__29 } /* numericvalue=29 */,
- { 1, 9647, 10313, 4, 3, UNI_AGE__4_DOT_1 } /* age=v41 */,
- { 1, 3877, 8356, 17, 4, UNI_HIRA } /* scriptextensions=hira */,
- { 0, 9691, 0, 4, 0, UNI_blk_values_index } /* blk= */,
- { 0, 1189, 3482, 3, 17, UNI_TAIXUANJING } /* intaixuanjingsymbols */,
- { 1, 6937, 5232, 4, 2, UNI_INMIAO } /* inmiao */,
- { 0, 3391, 26, 18, 1, UNI__PERL_PATWS } /* patternwhitespace=y */,
- { 2, 10244, 1588, 3, 1, UNI_Z } /* gc=z */,
- { 1, 9711, 5732, 4, 2, UNI_CCC__10 } /* ccc=10 */,
- { 10, 8973, 6494, 6, 12, UNI_INMASARAMGONDI } /* block=masaramgondi */,
- { 1, 185, 1026, 2, 2, UNI_NO } /* isno */,
- { 0, 9476, 2085, 3, 4, UNI_SC__MODI } /* sc=modi */,
- { 0, 9979, 9779, 4, 4, UNI_GUJR } /* scx=gujr */,
- { 0, 1792, 1, 22, 1, -UNI_CWCF } /* changeswhencasefolded=n */,
- { 0, 9711, 9315, 5, 4, UNI_CCC__17 } /* ccc=ccc17 */,
- { 2, 185, 3724, 2, 17, UNI_ETHIOPICEXTB } /* isethiopicextendedb */,
- { 5, 6340, 44, 3, 25, UNI_CJKCOMPATIDEOGRAPHS } /* incjkcompatibilityideographs */,
- { 0, 4972, 8777, 3, 3, UNI_TAGS } /* istags */,
- { 0, 10553, 10403, 7, 4, UNI_XPOSIXSPACE } /* isspaceperl */,
- { 1, 10217, 4549, 3, 15, UNI_BC__CS } /* bc=commonseparator */,
- { 4, 7280, 0, 10, 0, UNI_COMPATJAMO } /* compatjamo */,
- { 11, 6158, 1026, 12, 2, -UNI_BIDIC } /* bidicontrol=no */,
- { 5, 750, 0, 16, 0, UNI_ENCLOSEDALPHANUM } /* enclosedalphanum */,
- { 8, 9691, 4505, 5, 7, UNI_BAMUMSUP } /* blk=bamumsup */,
- { 1, 185, 4090, 2, 11, UNI_GEORGIANEXT } /* isgeorgianext */,
- { 0, 185, 8621, 2, 4, UNI_GRAN } /* isgran */,
- { 0, 3877, 10123, 17, 4, UNI_ZZZZ } /* scriptextensions=zzzz */,
- { 0, 1418, 9012, 24, 3, UNI_CCC__129 } /* canonicalcombiningclass=129 */,
+ { 3, 8973, 4410, 6, 6, UNI_INSYRIAC } /* block=syriac */,
+ { 0, 5662, 139, 14, 2, UNI_SB__FO } /* sentencebreak=fo */,
+ { 0, 2085, 0, 4, 0, UNI_MODI } /* modi */,
+ { 1, 8961, 10055, 6, 4, UNI_BIDIC } /* bidic=true */,
+ { 0, 7908, 9454, 8, 5, -UNI_IDS } /* idstart=false */,
+ { 0, 3894, 9454, 17, 5, -UNI_STERM } /* sentenceterminal=false */,
+ { 2, 1418, 9315, 25, 4, UNI_CCC__17 } /* canonicalcombiningclass=ccc17 */,
+ { 1, 9087, 0, 6, 0, UNI_joinc_values_index } /* joinc= */,
+ { 0, 0, 0, 42, 0, UNI_UCASEXT } /* unifiedcanadianaboriginalsyllabicsextended */,
+ { 0, 8782, 7835, 7, 9, UNI_SC__OUGR } /* script=olduyghur */,
+ { 0, 6182, 0, 12, 0, UNI_CHESSSYMBOLS } /* chesssymbols */,
+ { 0, 4138, 0, 16, 0, UNI_HIGHPUSURROGATES } /* highpusurrogates */,
+ { 1, 1418, 8046, 24, 2, UNI_CCC__13 } /* canonicalcombiningclass=13 */,
+ { 0, 1274, 0, 20, 0, UNI_CE } /* compositionexclusion */,
+ { 2, 4639, 0, 4, 0, UNI_DASH } /* dash */,
+ { 2, 8782, 2584, 7, 4, UNI_SC__MAND } /* script=mand */,
+ { 0, 10247, 5410, 3, 14, UNI_JG__MANICHAEANBETH } /* jg=manichaeanbeth */,
+ { 8, 4074, 1187, 16, 2, UNI_PO } /* generalcategory=po */,
+ { 6, 9550, 10055, 4, 4, UNI_IDS } /* ids=true */,
+ { 0, 1990, 0, 22, 0, UNI_insc_values_index } /* indicsyllabiccategory= */,
+ { 3, 2312, 8357, 3, 7, UNI_INHIRAGANA } /* inhiragana */,
+ { 3, 1538, 6734, 3, 5, UNI_DOMINO } /* indomino */,
+ { 2, 3877, 9679, 17, 4, UNI_AVST } /* scriptextensions=avst */,
+ { 9, 3877, 9899, 17, 4, UNI_NSHU } /* scriptextensions=nshu */,
+ { 3, 9979, 8537, 4, 4, UNI_BENG } /* scx=beng */,
+ { 1, 185, 3265, 2, 11, UNI_GEORGIANSUP } /* isgeorgiansup */,
+ { 0, 9979, 9883, 4, 4, UNI_NARB } /* scx=narb */,
+ { 2, 9979, 8508, 4, 8, UNI_VITH } /* scx=vithkuqi */,
+ { 1, 7682, 1, 9, 1, -UNI_EXT } /* extender=n */,
+ { 0, 8973, 0, 6, 42, UNI_UCASEXT } /* block=unifiedcanadianaboriginalsyllabicsextended */,
+ { 0, 2206, 912, 21, 1, UNI_GCB__V } /* graphemeclusterbreak=v */,
+ { 4, 1538, 2473, 24, 4, UNI_INPC__LEFT } /* indicpositionalcategory=left */,
+ { 3, 9544, 36, 5, 1, UNI_XIDC } /* xidc=t */,
+ { 8, 9979, 10083, 4, 4, UNI_VAI } /* scx=vaii */,
+ { 3, 4972, 4443, 3, 8, UNI_TANGUTSUP } /* istangutsup */,
+ { 10, 9476, 4939, 3, 15, UNI_SARB } /* sc=oldsoutharabian */,
+ { 5, 9476, 7071, 3, 4, UNI_SORA } /* sc=sora */,
+ { 0, 10229, 69, 3, 3, UNI_DT__SUP } /* dt=sup */,
+ { 9, 5830, 26, 6, 1, UNI_EBASE } /* ebase=y */,
+ { 1, 1990, 5200, 22, 14, UNI_INSC__GEMINATIONMARK } /* indicsyllabiccategory=geminationmark */,
+ { 18, 7467, 8148, 3, 3, UNI_IN__6 } /* in=6.0 */,
+ { 1, 9711, 8046, 4, 2, UNI_CCC__13 } /* ccc=13 */,
+ { 0, 9213, 1026, 6, 2, -UNI_UIDEO } /* uideo=no */,
+ { 0, 9691, 1632, 4, 15, UNI_GEOMETRICSHAPES } /* blk=geometricshapes */,
+ { 0, 1418, 9340, 25, 4, UNI_CCC__22 } /* canonicalcombiningclass=ccc22 */,
+ { 6, 8973, 6219, 7, 11, UNI_CYRILLICEXTC } /* block=cyrillicextc */,
+ { 0, 7391, 9, 4, 16, UNI_CANS } /* iscanadianaboriginal */,
+ { 1, 1592, 384, 3, 31, UNI_EGYPTIANHIEROGLYPHFORMATCONTROLS } /* inegyptianhieroglyphformatcontrols */,
+ { 0, 1538, 1948, 4, 20, UNI_DIACRITICALSFORSYMBOLS } /* indiacriticalsforsymbols */,
+ { 0, 185, 9871, 2, 4, UNI_MRO } /* ismroo */,
+ { 0, 1836, 36, 22, 1, UNI_CWL } /* changeswhenlowercased=t */,
+ { 7, 7580, 7763, 10, 9, UNI_WB__ML } /* wordbreak=midletter */,
+ { 1, 9691, 218, 4, 33, UNI_DIACRITICALSEXT } /* blk=combiningdiacriticalmarksextended */,
+ { 3, 185, 9484, 2, 5, UNI_LIMB } /* islimbu */,
+ { 1, 10510, 10523, 6, 5, UNI_XPOSIXBLANK } /* xposixblank */,
+ { 2, 9979, 9819, 4, 4, UNI_KNDA } /* scx=knda */,
+ { 14, 3553, 36, 18, 1, UNI_VS } /* variationselector=t */,
+ { 0, 6340, 44, 3, 25, UNI_CJKCOMPATIDEOGRAPHS } /* incjkcompatibilityideographs */,
+ { 2, 630, 0, 30, 0, UNI_CJKEXTE } /* cjkunifiedideographsextensione */,
+ { 0, 1770, 753, 23, 4, UNI_BPT__C } /* bidipairedbrackettype=close */,
+ { 0, 9476, 9094, 4, 5, UNI_SC__KTHI } /* sc=kaithi */,
+ { 8, 5045, 8493, 3, 7, UNI_UCASEXTA } /* isucasexta */,
+ { 0, 1060, 0, 2, 0, UNI_SO } /* so */,
+ { 0, 9476, 8866, 3, 4, UNI_SC__TIRH } /* sc=tirh */,
+ { 0, 4847, 1596, 3, 13, UNI_MUSIC } /* inmusicalsymbols */,
+ { 4, 7360, 7410, 10, 10, UNI_LB__NS } /* linebreak=nonstarter */,
+ { 0, 10553, 2312, 3, 3, UNI_SINH } /* issinh */,
+ { 0, 8973, 8838, 6, 7, UNI_INTAITHAM } /* block=taitham */,
+ { 8, 9691, 3962, 4, 9, UNI_ARABICSUP } /* blk=arabicsup */,
+ { 4, 9979, 8866, 4, 7, UNI_TIRH } /* scx=tirhuta */,
+ { 0, 9476, 6925, 5, 2, UNI_KHMR } /* sc=khmr */,
+ { 4, 8973, 350, 6, 33, UNI_SUPSYMBOLSANDPICTOGRAPHS } /* block=supplementalsymbolsandpictographs */,
+ { 9, 8973, 4170, 6, 9, UNI_LATIN1 } /* block=latin1sup */,
+ { 3, 8782, 9667, 7, 4, UNI_ARMN } /* script=armn */,
+ { 1, 8782, 8276, 7, 4, UNI_BALI } /* script=bali */,
+ { 0, 10268, 10127, 3, 3, UNI_NV__1_SLASH_5 } /* nv=1/5 */,
+ { 0, 8782, 9967, 7, 4, UNI_RUNR } /* script=runr */,
+ { 4, 7530, 0, 10, 0, UNI_SUPARROWSB } /* suparrowsb */,
+ { 29, 9476, 8500, 3, 8, UNI_UGAR } /* sc=ugaritic */,
+ { 5, 185, 7093, 2, 11, UNI_SUPERANDSUB } /* issuperandsub */,
+ { 0, 7460, 10175, 10, 3, UNI_IN__3_DOT_2 } /* presentin=3.2 */,
+ { 8, 8500, 0, 4, 0, UNI_UGAR } /* ugar */,
+ { 9, 185, 408, 3, 6, UNI_XPOSIXCNTRL } /* iscontrol */,
+ { 0, 7381, 0, 2, 0, UNI_VS } /* vs */,
+ { 8, 3301, 0, 18, 0, UNI_PI } /* initialpunctuation */,
+ { 2, 10247, 7038, 3, 11, UNI_JG__ROHINGYAYEH } /* jg=rohingyayeh */,
+ { 21, 1553, 4286, 9, 10, UNI_SM } /* category=mathsymbol */,
+ { 7, 7460, 10071, 10, 4, UNI_IN__12_DOT_1 } /* presentin=v121 */,
+ { 0, 10268, 10153, 3, 2, UNI_NV__42 } /* nv=42 */,
+ { 0, 8782, 3193, 7, 4, UNI_ETHI } /* script=ethi */,
+ { 5, 8565, 0, 7, 0, UNI_CJKEXTD } /* cjkextd */,
+ { 1, 4699, 26, 15, 1, UNI_ECOMP } /* emojicomponent=y */,
+ { 14, 2206, 5669, 21, 2, UNI_WB__EB } /* graphemeclusterbreak=eb */,
+ { 1, 4972, 4259, 3, 3, UNI_TNSA } /* istnsa */,
+ { 8, 9691, 5312, 4, 14, UNI_LATINEXTD } /* blk=latinextendedd */,
+ { 1, 4157, 5863, 3, 12, UNI_IPAEXT } /* isipaextensions */,
+ { 0, 10352, 7772, 3, 6, UNI_WB__MN } /* wb=midnum */,
+ { 1, 9189, 26, 6, 1, UNI_STERM } /* sterm=y */,
+ { 0, 9979, 6290, 4, 12, UNI_GONG } /* scx=gunjalagondi */,
+ { 8, 9979, 10027, 4, 4, UNI_TAVT } /* scx=tavt */,
+ { 2, 2304, 4347, 3, 4, UNI_C } /* isother */,
+ { 5, 8782, 10095, 7, 4, UNI_XPEO } /* script=xpeo */,
+ { 1, 4972, 9530, 3, 4, UNI_TALE } /* istaile */,
+ { 1, 9461, 34, 3, 6, UNI_SB__EX } /* sb=extend */,
{ 0, 9691, 2453, 4, 20, UNI_ININSCRIPTIONALPAHLAVI } /* blk=inscriptionalpahlavi */,
- { 3, 9469, 3499, 5, 18, UNI_INPC__TOPANDLEFTANDRIGHT } /* inpc=topandleftandright */,
- { 2, 9691, 9105, 4, 6, UNI_INKHOJKI } /* blk=khojki */,
- { 0, 2593, 410, 20, 2, UNI_VO__TR } /* verticalorientation=tr */,
- { 0, 3877, 9201, 17, 6, UNI_TELU } /* scriptextensions=telugu */,
- { 0, 3877, 9201, 17, 4, UNI_TELU } /* scriptextensions=telu */,
- { 1, 9691, 4849, 4, 15, UNI_INMEROITICCURSIVE } /* blk=meroiticcursive */,
- { 1, 8782, 9871, 7, 4, UNI_MRO } /* script=mroo */,
- { 2, 9691, 1219, 4, 26, UNI_KATAKANAEXT } /* blk=katakanaphoneticextensions */,
- { 8, 3445, 0, 18, 0, UNI_RUMI } /* ruminumeralsymbols */,
- { 0, 3448, 8501, 3, 7, UNI_INUGARITIC } /* inugaritic */,
- { 2, 10019, 0, 4, 0, UNI_TALU } /* talu */,
- { 0, 2248, 8804, 3, 6, UNI_INSIDDHAM } /* insiddham */,
- { 0, 8973, 2165, 7, 10, UNI_CYRILLICSUP } /* block=cyrillicsup */,
- { 0, 10283, 1, 3, 1, -UNI_SD } /* sd=n */,
- { 3, 3877, 9643, 17, 4, UNI_ADLM } /* scriptextensions=adlm */,
- { 6, 8782, 10008, 8, 3, UNI_SC__SYRC } /* script=syrc */,
- { 0, 952, 0, 17, 0, UNI_VS } /* variationselector */,
- { 8, 3877, 9799, 17, 4, UNI_HMNP } /* scriptextensions=hmnp */,
- { 0, 9476, 2433, 3, 4, UNI_SC__GLAG } /* sc=glag */,
- { 2, 3877, 5227, 17, 4, UNI_CHAM } /* scriptextensions=cham */,
- { 0, 251, 0, 33, 0, UNI_MISCMATHSYMBOLSA } /* miscellaneousmathematicalsymbolsa */,
- { 4, 185, 4043, 3, 15, UNI_CYPRIOTSYLLABARY } /* iscypriotsyllabary */,
- { 3, 3877, 1219, 17, 8, UNI_KANA } /* scriptextensions=katakana */,
- { 2, 9213, 9454, 6, 5, -UNI_UIDEO } /* uideo=false */,
- { 0, 9979, 7863, 5, 8, UNI_SAMR } /* scx=samaritan */,
- { 1, 9999, 0, 4, 0, UNI_SHRD } /* shrd */,
- { 4, 9476, 8600, 3, 7, UNI_DSRT } /* sc=deseret */,
- { 4, 8782, 9231, 7, 6, UNI_WCHO } /* script=wancho */,
- { 10, 8973, 3050, 7, 7, UNI_INCHEROKEE } /* block=cherokee */,
- { 2, 9476, 8754, 3, 7, UNI_OSMA } /* sc=osmanya */,
- { 0, 10268, 10184, 3, 3, UNI_NV__4_SLASH_5 } /* nv=4/5 */,
- { 3, 9711, 16, 4, 1, UNI_CCC__B } /* ccc=b */,
- { 3, 1553, 5797, 9, 13, UNI_XPOSIXDIGIT } /* category=decimalnumber */,
- { 11, 5875, 4804, 13, 15, UNI_JG__MANICHAEANGIMEL } /* joininggroup=manichaeangimel */,
- { 1, 3283, 0, 4, 0, UNI_IDSB } /* idsb */,
- { 16, 6752, 0, 6, 0, UNI_DOMINO } /* domino */,
- { 1, 3877, 4984, 17, 5, UNI_TAML } /* scriptextensions=tamil */,
- { 8, 185, 4639, 2, 4, UNI_DASH } /* isdash */,
- { 3, 9847, 10355, 4, 3, UNI_LOE } /* loe=yes */,
- { 7, 10217, 1354, 3, 3, UNI_BC__RLE } /* bc=rle */,
- { 0, 10244, 1060, 3, 2, UNI_SO } /* gc=so */,
- { 1, 10268, 9616, 3, 3, UNI_NV__7_SLASH_2 } /* nv=7/2 */,
- { 0, 1116, 0, 4, 0, UNI_HANG } /* hang */,
- { 0, 9691, 5940, 4, 9, UNI_INMALAYALAM } /* blk=malayalam */,
- { 1, 9691, 6752, 4, 11, UNI_DOMINO } /* blk=dominotiles */,
- { 0, 185, 9839, 2, 4, UNI_LINA } /* islina */,
- { 9, 8803, 0, 7, 0, UNI_SIDD } /* siddham */,
- { 1, 185, 3978, 2, 11, UNI_BOPOMOFOEXT } /* isbopomofoext */,
- { 5, 10530, 8868, 4, 5, UNI_INTIRHUTA } /* intirhuta */,
- { 0, 9691, 1345, 4, 25, UNI_SYMBOLSFORLEGACYCOMPUTING } /* blk=symbolsforlegacycomputing */,
- { 0, 8973, 7433, 6, 7, UNI_INSOGDIAN } /* block=sogdian */,
- { 1, 8316, 10055, 8, 4, UNI_EXTPICT } /* extpict=true */,
- { 4, 9979, 1629, 4, 4, UNI_PHAG } /* scx=phag */,
- { 0, 1814, 3, 22, 1, -UNI_CWCM } /* changeswhencasemapped=f */,
- { 0, 1553, 599, 9, 2, UNI_XPOSIXCNTRL } /* category=cc */,
- { 0, 185, 9484, 2, 4, UNI_LIMB } /* islimb */,
- { 0, 10247, 6266, 3, 12, UNI_JG__FINALSEMKATH } /* jg=finalsemkath */,
- { 2, 10244, 5676, 3, 14, UNI_ZS } /* gc=spaceseparator */,
- { 1, 5662, 4346, 14, 5, UNI_SB__XX } /* sentencebreak=other */,
- { 1, 2803, 1026, 19, 2, -UNI_IDST } /* idstrinaryoperator=no */,
- { 8, 9979, 9787, 4, 4, UNI_HANO } /* scx=hano */,
- { 1, 3877, 6494, 17, 12, UNI_GONM } /* scriptextensions=masaramgondi */,
- { 9, 1115, 36, 26, 1, UNI_CWKCF } /* changeswhennfkccasefolded=t */,
- { 0, 9979, 9831, 4, 3, UNI_LAO } /* scx=lao */,
- { 2, 6083, 8140, 13, 8, UNI_NV__7_SLASH_12 } /* numericvalue=5.83e-01 */,
- { 1, 9979, 8811, 5, 6, UNI_SOYO } /* scx=soyombo */,
- { 0, 8593, 1, 7, 1, -UNI_COMPEX } /* compex=n */,
- { 5, 1678, 0, 5, 0, UNI_LATN } /* latin */,
+ { 0, 7560, 1, 10, 1, -UNI_XPOSIXUPPER } /* uppercase=n */,
+ { 1, 9476, 2311, 3, 7, UNI_SC__SINH } /* sc=sinhala */,
+ { 0, 9117, 0, 4, 0, UNI_LEPC } /* lepc */,
+ { 0, 10244, 6994, 3, 11, UNI_NO } /* gc=othernumber */,
+ { 0, 1418, 3588, 24, 13, UNI_CCC__202 } /* canonicalcombiningclass=attachedbelow */,
+ { 2, 2143, 0, 14, 0, UNI_CJKRADICALSSUP } /* cjkradicalssup */,
+ { 8, 185, 4654, 2, 15, UNI_DIACRITICALSEXT } /* isdiacriticalsext */,
+ { 1, 185, 3911, 2, 17, UNI_SMALLFORMS } /* issmallformvariants */,
+ { 3, 4026, 0, 16, 0, UNI_PE } /* closepunctuation */,
+ { 8, 10244, 5810, 3, 13, UNI_ME } /* gc=enclosingmark */,
+ { 1, 9469, 3499, 5, 18, UNI_INPC__TOPANDLEFTANDRIGHT } /* inpc=topandleftandright */,
+ { 0, 9474, 1609, 5, 23, UNI_INSC__CONSONANTPRECEDINGREPHA } /* insc=consonantprecedingrepha */,
+ { 4, 9190, 9454, 5, 5, -UNI_TERM } /* term=false */,
+ { 1, 4074, 1, 16, 1, UNI_N } /* generalcategory=n */,
+ { 14, 10553, 8811, 3, 6, UNI_SOYO } /* issoyombo */,
+ { 0, 9691, 8614, 4, 7, UNI_INELYMAIC } /* blk=elymaic */,
+ { 0, 9189, 0, 5, 0, UNI_STERM } /* sterm */,
+ { 4, 5771, 0, 13, 0, UNI_BLOCKELEMENTS } /* blockelements */,
+ { 0, 10244, 75, 3, 2, UNI_ME } /* gc=me */,
+ { 5, 4074, 3373, 16, 18, UNI_ZP } /* generalcategory=paragraphseparator */,
+ { 15, 1538, 2573, 24, 3, UNI_INPC__TOP } /* indicpositionalcategory=top */,
+ { 0, 185, 7862, 2, 9, UNI_SAMR } /* issamaritan */,
+ { 0, 3403, 3, 6, 1, -UNI_XPOSIXSPACE } /* space=f */,
+ { 0, 8973, 1935, 6, 11, UNI_NUMBERFORMS } /* block=numberforms */,
+ { 4, 9895, 0, 3, 0, UNI_NKO } /* nko */,
+ { 0, 5059, 0, 15, 0, UNI_ZANB } /* zanabazarsquare */,
+ { 0, 479, 0, 31, 0, UNI_MATHALPHANUM } /* mathematicalalphanumericsymbols */,
+ { 0, 8973, 2974, 6, 19, UNI_SUPARROWSB } /* block=supplementalarrowsb */,
+ { 1, 185, 6242, 2, 12, UNI_ETHIOPICEXTB } /* isethiopicextb */,
+ { 0, 6518, 0, 12, 0, UNI_MEND } /* mendekikakui */,
+ { 0, 1274, 1026, 21, 2, -UNI_CE } /* compositionexclusion=no */,
+ { 0, 7460, 7995, 10, 4, UNI_IN__12 } /* presentin=12.0 */,
+ { 4, 185, 1116, 3, 24, UNI_CWKCF } /* ischangeswhennfkccasefolded */,
+ { 0, 9711, 9360, 5, 4, UNI_CCC__26 } /* ccc=ccc26 */,
+ { 0, 9979, 6972, 4, 11, UNI_NAND } /* scx=nandinagari */,
+ { 0, 9476, 3103, 3, 4, UNI_SC__COPT } /* sc=copt */,
+ { 8, 9763, 34, 4, 6, UNI_GCB__EX } /* gcb=extend */,
+ { 1, 7580, 126, 10, 2, UNI_LB__CR } /* wordbreak=cr */,
+ { 0, 185, 9093, 2, 6, UNI_KTHI } /* iskaithi */,
+ { 8, 7580, 10394, 10, 2, UNI_WB__XX } /* wordbreak=xx */,
+ { 1, 4885, 2435, 4, 18, UNI_GLAGOLITICSUP } /* inglagoliticsupplement */,
+ { 1, 9270, 10055, 4, 4, UNI_XPOSIXXDIGIT } /* hex=true */,
+ { 3, 10226, 3, 3, 1, -UNI_DI } /* di=f */,
+ { 1, 8973, 1678, 6, 23, UNI_LATINEXTADDITIONAL } /* block=latinextendedadditional */,
+ { 1, 8973, 6057, 6, 13, UNI_MISCTECHNICAL } /* block=misctechnical */,
+ { 1, 10217, 10238, 3, 3, UNI_BC__FSI } /* bc=fsi */,
+ { 0, 9476, 9529, 3, 5, UNI_SC__TALE } /* sc=taile */,
+ { 2, 5093, 0, 8, 0, UNI_XPOSIXXDIGIT } /* hexdigit */,
+ { 0, 9979, 9201, 4, 6, UNI_TELU } /* scx=telugu */,
+ { 1, 6961, 0, 11, 0, UNI_MYANMAREXTB } /* myanmarextb */,
+ { 1, 10352, 126, 3, 2, UNI_LB__CR } /* wb=cr */,
+ { 2, 8782, 9033, 7, 6, UNI_SC__CAKM } /* script=chakma */,
+ { 0, 1019, 0, 5, 0, UNI_MUSIC } /* music */,
+ { 2, 107, 0, 6, 0, UNI_S } /* symbol */,
+ { 0, 8973, 2144, 7, 20, UNI_CJKRADICALSSUP } /* block=cjkradicalssupplement */,
+ { 0, 7230, 3741, 10, 17, UNI_BC__ES } /* bidiclass=europeanseparator */,
+ { 0, 10253, 4594, 3, 15, UNI_LB__CB } /* lb=contingentbreak */,
+ { 19, 6340, 8566, 3, 6, UNI_CJKEXTD } /* incjkextd */,
+ { 11, 9979, 8500, 4, 8, UNI_UGAR } /* scx=ugaritic */,
+ { 3, 9979, 9207, 4, 6, UNI_THAA } /* scx=thaana */,
+ { 1, 9711, 9024, 4, 3, UNI_CCC__132 } /* ccc=132 */,
+ { 3, 4972, 1870, 3, 8, UNI_TITLE } /* istitlecase */,
+ { 10, 6083, 8119, 13, 1, UNI_NV__9 } /* numericvalue=9 */,
+ { 0, 3978, 0, 11, 0, UNI_BOPOMOFOEXT } /* bopomofoext */,
+ { 5, 9711, 10386, 4, 2, UNI_CCC__8 } /* ccc=kv */,
+ { 0, 7060, 1, 11, 1, -UNI_SD } /* softdotted=n */,
+ { 1, 8782, 4411, 8, 5, UNI_SC__SYRC } /* script=syriac */,
+ { 0, 2034, 0, 22, 0, UNI_MISCTECHNICAL } /* miscellaneoustechnical */,
+ { 0, 10229, 4058, 3, 5, UNI_DT__FIN } /* dt=final */,
+ { 8, 118, 2455, 4, 18, UNI_ININSCRIPTIONALPAHLAVI } /* ininscriptionalpahlavi */,
+ { 6, 9931, 0, 4, 0, UNI_PHLP } /* phlp */,
+ { 0, 8388, 0, 4, 0, UNI_JAVA } /* java */,
+ { 5, 10244, 2085, 3, 14, UNI_LM } /* gc=modifierletter */,
+ { 3, 9476, 9069, 3, 4, UNI_GOTH } /* sc=goth */,
+ { 12, 8973, 7450, 6, 10, UNI_INPHOENICIAN } /* block=phoenician */,
+ { 4, 9691, 952, 4, 18, UNI_INVS } /* blk=variationselectors */,
+ { 6, 9476, 9816, 4, 3, UNI_KITS } /* sc=kits */,
+ { 2, 9691, 1193, 4, 26, UNI_HALFANDFULLFORMS } /* blk=halfwidthandfullwidthforms */,
+ { 1, 10229, 6001, 3, 4, UNI_DT__NONE } /* dt=none */,
+ { 9, 10268, 10208, 3, 3, UNI_NV__7_SLASH_8 } /* nv=7/8 */,
+ { 0, 9476, 9207, 3, 6, UNI_SC__THAA } /* sc=thaana */,
+ { 3, 6340, 661, 3, 29, UNI_CJKEXTF } /* incjkunifiedideographsextensionf */,
+ { 0, 9691, 3355, 4, 18, UNI_ORNAMENTALDINGBATS } /* blk=ornamentaldingbats */,
+ { 1, 1418, 10157, 24, 3, UNI_CCC__AL } /* canonicalcombiningclass=228 */,
+ { 10, 9979, 2085, 4, 4, UNI_MODI } /* scx=modi */,
+ { 9, 1190, 11, 3, 2, UNI_NT__DI } /* nt=di */,
+ { 1, 6340, 6731, 3, 10, UNI_INCYPROMINOAN } /* incyprominoan */,
+ { 15, 3121, 10091, 18, 4, UNI_EA__F } /* decompositiontype=wide */,
+ { 1, 10217, 10274, 3, 3, UNI_BC__PDF } /* bc=pdf */,
+ { 0, 8973, 5771, 6, 13, UNI_BLOCKELEMENTS } /* block=blockelements */,
+ { 1, 7570, 0, 4, 0, UNI_WARA } /* wara */,
+ { 2, 6937, 5232, 4, 2, UNI_INMIAO } /* inmiao */,
{ 4, 4074, 342, 16, 2, UNI_PE } /* generalcategory=pe */,
- { 0, 10403, 3403, 4, 5, UNI_POSIXSPACE } /* perlspace */,
- { 0, 7360, 4401, 10, 9, UNI_EMOD } /* linebreak=emodifier */,
- { 16, 8973, 6675, 6, 3, UNI_INIDC } /* block=idc */,
- { 5, 10553, 0, 7, 0, UNI_XPOSIXSPACE } /* isspace */,
- { 0, 10268, 9575, 3, 3, UNI_NV__1_SLASH_6 } /* nv=1/6 */,
- { 10, 9711, 9606, 4, 3, UNI_CCC__214 } /* ccc=214 */,
- { 7, 7218, 3979, 3, 7, UNI_INBOPOMOFO } /* inbopomofo */,
- { 0, 9691, 4609, 4, 15, UNI_CONTROLPICTURES } /* blk=controlpictures */,
- { 11, 8973, 4090, 6, 11, UNI_GEORGIANEXT } /* block=georgianext */,
- { 6, 8973, 7540, 6, 10, UNI_SUPARROWSC } /* block=suparrowsc */,
- { 2, 10223, 1026, 3, 2, -UNI_CI } /* ci=no */,
- { 1, 9691, 5242, 4, 14, UNI_HIGHSURROGATES } /* blk=highsurrogates */,
- { 0, 1418, 9345, 25, 4, UNI_CCC__23 } /* canonicalcombiningclass=ccc23 */,
- { 10, 9213, 0, 5, 0, UNI_UIDEO } /* uideo */,
- { 1, 10226, 10355, 3, 3, UNI_DI } /* di=yes */,
- { 2, 185, 1320, 2, 25, UNI_SYMBOLSANDPICTOGRAPHSEXTA } /* issymbolsandpictographsexta */,
- { 10, 8973, 9294, 6, 5, UNI_INBUHID } /* block=buhid */,
- { 3, 9476, 8650, 4, 6, UNI_SC__KNDA } /* sc=kannada */,
- { 1, 468, 0, 11, 0, UNI_P } /* punctuation */,
- { 1, 10352, 73, 3, 2, UNI_WB__LE } /* wb=le */,
- { 4, 3877, 8468, 17, 8, UNI_TAGB } /* scriptextensions=tagbanwa */,
- { 3, 9979, 8340, 4, 8, UNI_GUJR } /* scx=gujarati */,
- { 10, 4847, 6930, 4, 9, UNI_INMEDEFAIDRIN } /* inmedefaidrin */,
- { 1, 9731, 1, 4, 1, -UNI_CWT } /* cwt=n */,
- { 0, 9213, 3, 6, 1, -UNI_UIDEO } /* uideo=f */,
- { 0, 3121, 8332, 18, 3, UNI_DT__FRA } /* decompositiontype=fra */,
- { 0, 7580, 109, 10, 2, UNI_WB__MB } /* wordbreak=mb */,
- { 1, 4744, 7350, 15, 10, UNI_IDENTIFIERTYPE__LIMITEDUSE } /* identifiertype=limiteduse */,
- { 0, 9979, 9135, 4, 4, UNI_LYDI } /* scx=lydi */,
- { 0, 8973, 2841, 6, 19, UNI_MERO } /* block=meroitichieroglyphs */,
- { 0, 6083, 5732, 13, 5, UNI_NV__10000 } /* numericvalue=10000 */,
- { 8, 10247, 0, 3, 0, UNI_jg_values_index } /* jg= */,
- { 0, 5648, 3, 14, 1, -UNI_QMARK } /* quotationmark=f */,
- { 1, 8973, 1674, 6, 4, UNI_JAMO } /* block=jamo */,
- { 0, 3877, 7844, 17, 4, UNI_PALM } /* scriptextensions=palm */,
- { 0, 6083, 9623, 13, 4, UNI_NV__3_SLASH_20 } /* numericvalue=3/20 */,
- { 0, 6083, 8004, 13, 8, UNI_NV__5_SLASH_2 } /* numericvalue=2.50e+00 */,
- { 1, 185, 7727, 2, 9, UNI_LATINEXTC } /* islatinextc */,
- { 0, 9476, 9987, 3, 4, UNI_SGNW } /* sc=sgnw */,
- { 1, 9691, 6730, 4, 11, UNI_INCYPROMINOAN } /* blk=cyprominoan */,
+ { 32, 8782, 9534, 7, 4, UNI_SC__TAKR } /* script=takr */,
+ { 0, 10553, 4190, 3, 3, UNI_SARB } /* issarb */,
+ { 1, 9484, 0, 5, 0, UNI_LIMB } /* limbu */,
+ { 1, 2784, 36, 19, 1, UNI_GCB__T } /* hangulsyllabletype=t */,
+ { 3, 3877, 7853, 17, 4, UNI_PAUC } /* scriptextensions=pauc */,
+ { 3, 8782, 3936, 8, 3, UNI_SGNW } /* script=sgnw */,
+ { 1, 9469, 7440, 5, 10, UNI_INPC__OVERSTRUCK } /* inpc=overstruck */,
+ { 1, 10229, 9039, 3, 6, UNI_DT__ENC } /* dt=circle */,
+ { 10, 185, 18, 2, 2, UNI_RI } /* isri */,
+ { 0, 9727, 10355, 4, 3, UNI_CWL } /* cwl=yes */,
+ { 1, 1418, 9028, 25, 5, UNI_WB__EB } /* canonicalcombiningclass=ccc133 */,
+ { 3, 1678, 0, 23, 0, UNI_LATINEXTADDITIONAL } /* latinextendedadditional */,
+ { 0, 9147, 36, 6, 1, UNI__PERL_NCHAR } /* nchar=t */,
+ { 1, 9545, 1026, 4, 2, -UNI_IDC } /* idc=no */,
+ { 0, 6083, 9367, 13, 2, UNI_NV__27 } /* numericvalue=27 */,
+ { 3, 9476, 9775, 3, 4, UNI_SC__GREK } /* sc=grek */,
+ { 0, 185, 5368, 2, 7, UNI_LISUSUP } /* islisusup */,
+ { 1, 8782, 9903, 7, 4, UNI_OGAM } /* script=ogam */,
+ { 2, 3553, 1, 18, 1, -UNI_VS } /* variationselector=n */,
+ { 0, 9069, 0, 6, 0, UNI_GOTH } /* gothic */,
+ { 2, 9979, 10019, 4, 4, UNI_TALU } /* scx=talu */,
+ { 4, 5536, 17, 15, 1, UNI_COMPEX } /* nfcquickcheck=no */,
+ { 6, 5875, 5452, 13, 14, UNI_JG__MANICHAEANKAPH } /* joininggroup=manichaeankaph */,
+ { 2, 118, 1932, 4, 14, UNI_INDICNUMBERFORMS } /* inindicnumberforms */,
+ { 7, 1418, 9370, 25, 4, UNI_CCC__28 } /* canonicalcombiningclass=ccc28 */,
+ { 2, 8824, 0, 7, 0, UNI_SUPPUAB } /* suppuab */,
+ { 3, 185, 9117, 2, 6, UNI_LEPC } /* islepcha */,
+ { 3, 185, 3382, 2, 9, UNI_Z } /* isseparator */,
+ { 0, 3398, 1026, 11, 2, -UNI_XPOSIXSPACE } /* whitespace=no */,
+ { 1, 9135, 0, 6, 0, UNI_LYDI } /* lydian */,
+ { 7, 8973, 0, 6, 34, UNI_UCAS } /* block=unifiedcanadianaboriginalsyllabics */,
+ { 0, 10244, 1923, 3, 2, UNI_PC } /* gc=pc */,
+ { 3, 10352, 3409, 3, 17, UNI_RI } /* wb=regionalindicator */,
+ { 1, 3877, 3826, 17, 4, UNI_MANI } /* scriptextensions=mani */,
+ { 9, 10511, 5802, 5, 5, UNI_POSIXALNUM } /* posixalnum */,
+ { 5, 9747, 10355, 4, 3, UNI_DIA } /* dia=yes */,
+ { 0, 10268, 5732, 3, 11, UNI_NV__10000000000 } /* nv=10000000000 */,
+ { 5, 1418, 6554, 24, 12, UNI_CCC__0 } /* canonicalcombiningclass=notreordered */,
+ { 8, 9429, 36, 5, 1, UNI_CWCF } /* cwcf=t */,
+ { 7, 3792, 0, 17, 0, UNI_KITS } /* khitansmallscript */,
+ { 0, 8973, 79, 6, 6, UNI_INARABIC } /* block=arabic */,
+ { 3, 6083, 8156, 13, 8, UNI_NV__5_SLASH_8 } /* numericvalue=6.25e-01 */,
+ { 1, 9727, 1026, 4, 2, -UNI_CWL } /* cwl=no */,
+ { 2, 10268, 8937, 3, 2, UNI_NV__70 } /* nv=70 */,
+ { 0, 4924, 0, 15, 0, UNI_NARB } /* oldnortharabian */,
+ { 0, 1553, 5578, 9, 14, UNI_MN } /* category=nonspacingmark */,
+ { 2, 9979, 3936, 5, 3, UNI_SGNW } /* scx=sgnw */,
+ { 10, 10516, 3, 3, 1, UNI_PF } /* ispf */,
+ { 2, 8782, 4042, 7, 7, UNI_SC__CPRT } /* script=cypriot */,
+ { 1, 7460, 8046, 10, 2, UNI_IN__13 } /* presentin=13 */,
+ { 16, 4074, 10388, 16, 2, UNI_CASEDLETTER } /* generalcategory=l& */,
+ { 2, 1553, 407, 9, 7, UNI_XPOSIXCNTRL } /* category=control */,
+ { 2, 9647, 7995, 4, 4, UNI_AGE__12 } /* age=12.0 */,
+ { 2, 8881, 7648, 4, 7, UNI_ARABICPFB } /* isarabicpfb */,
+ { 0, 7467, 8046, 3, 2, UNI_IN__13 } /* in=13 */,
+ { 4, 8782, 9135, 7, 6, UNI_LYDI } /* script=lydian */,
+ { 0, 3877, 8468, 17, 8, UNI_TAGB } /* scriptextensions=tagbanwa */,
+ { 9, 6132, 0, 2, 0, UNI_PF } /* pf */,
+ { 6, 1553, 1588, 9, 1, UNI_Z } /* category=z */,
+ { 0, 9711, 9606, 4, 3, UNI_CCC__214 } /* ccc=214 */,
+ { 1, 6083, 8196, 13, 8, UNI_NV__15_SLASH_2 } /* numericvalue=7.50e+00 */,
+ { 3, 185, 2269, 2, 14, UNI_MEETEIMAYEKEXT } /* ismeeteimayekext */,
+ { 7, 5093, 1026, 9, 2, -UNI_XPOSIXXDIGIT } /* hexdigit=no */,
+ { 4, 185, 1586, 2, 14, UNI_BYZANTINEMUSIC } /* isbyzantinemusic */,
+ { 0, 3877, 2937, 18, 3, UNI_SUND } /* scriptextensions=sund */,
+ { 1, 9723, 0, 4, 0, UNI_CPRT } /* cprt */,
+ { 11, 185, 2078, 2, 22, UNI_MODIFIERLETTERS } /* isspacingmodifierletters */,
+ { 0, 8973, 9201, 6, 6, UNI_INTELUGU } /* block=telugu */,
+ { 0, 9476, 2353, 3, 20, UNI_HLUW } /* sc=anatolianhieroglyphs */,
+ { 0, 9476, 10123, 3, 4, UNI_ZZZZ } /* sc=zzzz */,
+ { 0, 8396, 0, 8, 0, UNI_KANAEXTA } /* kanaexta */,
+ { 5, 9691, 5284, 4, 14, UNI_LATINEXTB } /* blk=latinextendedb */,
+ { 11, 1858, 0, 21, 0, UNI_CWT } /* changeswhentitlecased */,
+ { 2, 4639, 0, 15, 0, UNI_PD } /* dashpunctuation */,
+ { 3, 5875, 4834, 13, 15, UNI_JG__MANICHAEANZAYIN } /* joininggroup=manichaeanzayin */,
+ { 0, 1189, 9535, 3, 4, UNI_INTAKRI } /* intakri */,
+ { 4, 8973, 2269, 6, 21, UNI_MEETEIMAYEKEXT } /* block=meeteimayekextensions */,
+ { 0, 9476, 3622, 3, 17, UNI_AGHB } /* sc=caucasianalbanian */,
+ { 0, 8973, 468, 6, 11, UNI_INPUNCTUATION } /* block=punctuation */,
+ { 1, 8782, 9935, 7, 4, UNI_PHNX } /* script=phnx */,
+ { 2, 9875, 0, 4, 0, UNI_MTEI } /* mtei */,
+ { 1, 9476, 8348, 3, 8, UNI_SC__GURU } /* sc=gurmukhi */,
+ { 3, 9891, 0, 4, 0, UNI_NEWA } /* newa */,
+ { 0, 9190, 10355, 5, 3, UNI_TERM } /* term=yes */,
+ { 5, 8782, 8775, 7, 7, UNI_SC__PHAG } /* script=phagspa */,
+ { 1, 8973, 3962, 6, 16, UNI_ARABICSUP } /* block=arabicsupplement */,
+ { 2, 9476, 2164, 3, 8, UNI_SC__CYRL } /* sc=cyrillic */,
+ { 2, 185, 9444, 2, 4, UNI_DOGR } /* isdogr */,
+ { 1, 9979, 3978, 4, 8, UNI_BOPO } /* scx=bopomofo */,
+ { 15, 9449, 1026, 5, 2, -UNI_EMOD } /* emod=no */,
+ { 0, 3877, 9069, 17, 6, UNI_GOTH } /* scriptextensions=gothic */,
+ { 0, 185, 896, 2, 28, UNI_SUPPUAA } /* issupplementaryprivateuseareaa */,
+ { 8, 10217, 6602, 3, 12, UNI_BC__ON } /* bc=otherneutral */,
+ { 8, 9691, 9519, 4, 5, UNI_INOSAGE } /* blk=osage */,
+ { 8, 9691, 1632, 4, 18, UNI_GEOMETRICSHAPESEXT } /* blk=geometricshapesext */,
+ { 16, 5875, 4218, 13, 16, UNI_JG__MANICHAEANDALETH } /* joininggroup=manichaeandaleth */,
+ { 2, 6083, 7988, 13, 8, UNI_NV__3_SLASH_16 } /* numericvalue=1.88e-01 */,
+ { 9, 8782, 8508, 7, 4, UNI_VITH } /* script=vith */,
+ { 0, 10229, 2593, 3, 4, UNI_DT__VERT } /* dt=vert */,
+ { 1, 1968, 0, 22, 0, UNI_EARLYDYNASTICCUNEIFORM } /* earlydynasticcuneiform */,
+ { 1, 2304, 7837, 4, 7, UNI_OUGR } /* isolduyghur */,
+ { 6, 8468, 0, 4, 0, UNI_TAGB } /* tagb */,
+ { 1, 6083, 8943, 13, 6, UNI_NV__800000 } /* numericvalue=800000 */,
+ { 4, 9727, 3, 4, 1, -UNI_CWL } /* cwl=f */,
+ { 1, 9691, 43, 4, 9, UNI_CJKCOMPAT } /* blk=cjkcompat */,
+ { 1, 7360, 989, 10, 2, UNI_LB__CP } /* linebreak=cp */,
+ { 1, 8782, 58, 7, 2, UNI_SC__YI } /* script=yi */,
+ { 10, 8782, 7501, 8, 3, UNI_SAUR } /* script=saur */,
+ { 8, 8973, 5029, 6, 15, UNI_VEDICEXT } /* block=vedicextensions */,
+ { 29, 9887, 0, 4, 0, UNI_NBAT } /* nbat */,
+ { 10, 1538, 1948, 4, 10, UNI_DIACRITICALS } /* indiacriticals */,
+ { 0, 9979, 8811, 5, 6, UNI_SOYO } /* scx=soyombo */,
+ { 1, 10346, 0, 3, 1, UNI_VO__U } /* vo=u */,
+ { 2, 3877, 3622, 17, 17, UNI_AGHB } /* scriptextensions=caucasianalbanian */,
+ { 0, 10535, 3403, 5, 5, UNI_XPOSIXBLANK } /* horizspace */,
+ { 5, 10244, 1846, 3, 2, UNI_NL } /* gc=nl */,
+ { 0, 9979, 9069, 4, 4, UNI_GOTH } /* scx=goth */,
+ { 5, 9711, 9012, 4, 3, UNI_CCC__129 } /* ccc=129 */,
+ { 3, 2746, 0, 10, 0, UNI_JAMO } /* hanguljamo */,
+ { 3, 9476, 8663, 3, 7, UNI_SC__LINA } /* sc=lineara */,
+ { 7, 10253, 6326, 3, 12, UNI_LB__IS } /* lb=infixnumeric */,
+ { 12, 10560, 8509, 3, 7, UNI_VITH } /* isvithkuqi */,
+ { 0, 2304, 7828, 4, 7, UNI_ORKH } /* isoldturkic */,
+ { 4, 185, 9034, 3, 5, UNI_CAKM } /* ischakma */,
+ { 0, 9474, 8880, 5, 7, UNI_INSC__VISARGA } /* insc=visarga */,
+ { 0, 9691, 5088, 4, 5, UNI_ASCII } /* blk=ascii */,
+ { 0, 8782, 8838, 7, 7, UNI_LANA } /* script=taitham */,
+ { 1, 1088, 10355, 27, 3, UNI_PCM } /* prependedconcatenationmark=yes */,
+ { 8, 10247, 5448, 3, 4, UNI_JG__HETH } /* jg=heth */,
+ { 3, 6340, 2691, 4, 9, UNI_COUNTINGROD } /* incountingrod */,
+ { 0, 9735, 0, 4, 0, UNI_cwu_values_index } /* cwu= */,
+ { 0, 10268, 8943, 3, 4, UNI_NV__8000 } /* nv=8000 */,
+ { 0, 4847, 4331, 3, 15, UNI_MYANMAREXTB } /* inmyanmarextendedb */,
+ { 2, 9474, 5200, 5, 14, UNI_INSC__GEMINATIONMARK } /* insc=geminationmark */,
+ { 1, 7460, 10079, 10, 4, UNI_IN__14 } /* presentin=v140 */,
+ { 0, 6083, 8907, 13, 6, UNI_NV__300000 } /* numericvalue=300000 */,
+ { 4, 10253, 6170, 3, 12, UNI_LB__SY } /* lb=breaksymbols */,
+ { 0, 7467, 9587, 3, 4, UNI_IN__11 } /* in=11.0 */,
+ { 9, 6083, 8020, 13, 8, UNI_NV__1_SLASH_40 } /* numericvalue=2.50e-02 */,
+ { 9, 9171, 10355, 6, 3, UNI__PERL_PATWS } /* patws=yes */,
+ { 2, 9711, 8992, 5, 5, UNI_CCC__107 } /* ccc=ccc107 */,
+ { 0, 8973, 8566, 7, 6, UNI_CJKEXTD } /* block=cjkextd */,
+ { 0, 1792, 0, 21, 0, UNI_CWCF } /* changeswhencasefolded */,
+ { 4, 8973, 7853, 6, 9, UNI_INPAUCINHAU } /* block=paucinhau */,
+ { 3, 5758, 1026, 13, 2, -UNI_BIDIM } /* bidimirrored=no */,
+ { 1, 3877, 9739, 17, 4, UNI_CYRL } /* scriptextensions=cyrl */,
+ { 11, 43, 0, 3, 0, UNI_CJK } /* cjk */,
+ { 5, 6083, 7951, 13, 1, UNI_NV__3 } /* numericvalue=3 */,
+ { 0, 10508, 7908, 3, 7, UNI_XIDS } /* isxidstart */,
+ { 10, 3877, 8635, 17, 7, UNI_HANO } /* scriptextensions=hanunoo */,
+ { 0, 7467, 10304, 3, 3, UNI_IN__3_DOT_1 } /* in=v31 */,
+ { 2, 4894, 26, 15, 1, UNI_NFKCQC__Y } /* nfkcquickcheck=y */,
+ { 1, 7467, 7983, 3, 1, UNI_IN__7 } /* in=7 */,
+ { 1, 5797, 0, 13, 0, UNI_XPOSIXDIGIT } /* decimalnumber */,
+ { 3, 9476, 9887, 3, 4, UNI_NBAT } /* sc=nbat */,
+ { 11, 7297, 2531, 3, 3, UNI_HATR } /* ishatr */,
+ { 1, 8973, 4984, 6, 8, UNI_TAMILSUP } /* block=tamilsup */,
+ { 8, 185, 1, 3, 1, UNI_CN } /* iscn */,
+ { 1, 10268, 7995, 3, 2, UNI_NV__12 } /* nv=12 */,
+ { 5, 9476, 0, 3, 0, UNI_sc_values_index } /* sc= */,
+ { 0, 9476, 9915, 3, 4, UNI_SC__ORYA } /* sc=orya */,
+ { 10, 9979, 3193, 4, 8, UNI_ETHI } /* scx=ethiopic */,
+ { 1, 8973, 4849, 6, 15, UNI_INMEROITICCURSIVE } /* block=meroiticcursive */,
+ { 0, 10352, 8313, 3, 3, UNI_WB__EB } /* wb=gaz */,
{ 5, 8782, 9237, 7, 6, UNI_SC__YEZI } /* script=yezidi */,
- { 2, 4699, 0, 15, 0, UNI_ecomp_values_index } /* emojicomponent= */,
- { 2, 7360, 10376, 10, 2, UNI_LB__BK } /* linebreak=bk */,
- { 1, 9691, 909, 4, 14, UNI_PUA } /* blk=privateusearea */,
- { 34, 134, 0, 4, 0, UNI_M } /* mark */,
- { 0, 3265, 0, 11, 0, UNI_GEORGIANSUP } /* georgiansup */,
- { 4, 10223, 9454, 3, 5, -UNI_CI } /* ci=false */,
- { 0, 6083, 8937, 13, 6, UNI_NV__700000 } /* numericvalue=700000 */,
- { 2, 6083, 9559, 13, 4, UNI_NV___MINUS_1_SLASH_2 } /* numericvalue=-1/2 */,
- { 6, 7580, 7899, 11, 8, UNI_WB__WSEGSPACE } /* wordbreak=wsegspace */,
- { 0, 8628, 10055, 7, 4, UNI_GRBASE } /* grbase=true */,
- { 4, 9847, 26, 4, 1, UNI_LOE } /* loe=y */,
- { 2, 9474, 8880, 5, 7, UNI_INSC__VISARGA } /* insc=visarga */,
- { 0, 1418, 3039, 24, 10, UNI_CCC__AR } /* canonicalcombiningclass=aboveright */,
- { 5, 10250, 6885, 4, 10, UNI_JT__L } /* jt=leftjoining */,
- { 1, 5875, 10277, 13, 3, UNI_JG__REH } /* joininggroup=reh */,
- { 1, 10553, 8797, 3, 6, UNI_SHAW } /* isshavian */,
- { 2, 1990, 4458, 22, 5, UNI_INSC__VOWEL } /* indicsyllabiccategory=vowel */,
- { 4, 1418, 8027, 24, 2, UNI_CCC__22 } /* canonicalcombiningclass=22 */,
- { 0, 3877, 9484, 17, 5, UNI_LIMB } /* scriptextensions=limbu */,
- { 5, 10268, 8931, 3, 5, UNI_NV__60000 } /* nv=60000 */,
- { 8, 10349, 36, 3, 1, UNI_VS } /* vs=t */,
- { 0, 10229, 5068, 3, 6, UNI_DT__SQR } /* dt=square */,
- { 0, 9476, 9484, 3, 5, UNI_SC__LIMB } /* sc=limbu */,
- { 3, 6340, 9034, 3, 5, UNI_INCHAKMA } /* inchakma */,
- { 0, 185, 115, 3, 34, UNI_DIACRITICALSFORSYMBOLS } /* iscombiningdiacriticalmarksforsymbols */,
- { 1, 9691, 4410, 4, 6, UNI_INSYRIAC } /* blk=syriac */,
- { 1, 185, 1925, 3, 21, UNI_INDICNUMBERFORMS } /* iscommonindicnumberforms */,
- { 3, 9979, 2584, 4, 4, UNI_MAND } /* scx=mand */,
- { 0, 9476, 8, 4, 3, UNI_SC__KANA } /* sc=kana */,
- { 1, 6340, 7261, 3, 9, UNI_INCHORASMIAN } /* inchorasmian */,
- { 1, 10229, 9141, 3, 6, UNI_DT__NAR } /* dt=narrow */,
- { 0, 9647, 10340, 4, 3, UNI_AGE__8 } /* age=v80 */,
- { 0, 8782, 9643, 7, 4, UNI_SC__ADLM } /* script=adlm */,
- { 0, 3877, 9683, 17, 4, UNI_BATK } /* scriptextensions=batk */,
- { 1, 10528, 0, 5, 0, UNI_XPOSIXPRINT } /* print */,
- { 2, 10268, 9249, 3, 4, UNI_NV__1_SLASH_16 } /* nv=1/16 */,
- { 6, 9476, 1629, 3, 4, UNI_SC__PHAG } /* sc=phag */,
- { 3, 4074, 7550, 16, 10, UNI_CN } /* generalcategory=unassigned */,
- { 1, 5408, 481, 4, 29, UNI_MATHALPHANUM } /* inmathematicalalphanumericsymbols */,
- { 4, 9711, 9325, 5, 4, UNI_CCC__19 } /* ccc=ccc19 */,
- { 1, 185, 5578, 2, 14, UNI_MN } /* isnonspacingmark */,
- { 8, 10268, 8913, 3, 2, UNI_NV__40 } /* nv=40 */,
- { 3, 2304, 9924, 3, 3, UNI_OUGR } /* isougr */,
- { 13, 9461, 10394, 3, 2, UNI_SB__XX } /* sb=xx */,
- { 18, 9077, 10355, 4, 3, UNI_EXT } /* ext=yes */,
- { 4, 1190, 496, 3, 7, UNI_NT__NU } /* nt=numeric */,
- { 1, 3877, 9183, 17, 6, UNI_RJNG } /* scriptextensions=rejang */,
- { 0, 9476, 7071, 3, 4, UNI_SORA } /* sc=sora */,
- { 0, 9711, 41, 4, 2, UNI_CCC__DA } /* ccc=da */,
- { 0, 10268, 8236, 3, 8, UNI_NV__17_SLASH_2 } /* nv=8.50e+00 */,
- { 12, 1185, 0, 3, 0, UNI_DEP } /* dep */,
- { 0, 185, 3826, 2, 4, UNI_MANI } /* ismani */,
- { 1, 8276, 0, 8, 0, UNI_BALI } /* balinese */,
- { 0, 5830, 0, 5, 0, UNI_EBASE } /* ebase */,
- { 0, 6083, 10127, 13, 3, UNI_NV__1_SLASH_5 } /* numericvalue=1/5 */,
- { 0, 9691, 2433, 4, 10, UNI_INGLAGOLITIC } /* blk=glagolitic */,
- { 12, 3877, 8284, 17, 4, UNI_BASS } /* scriptextensions=bass */,
+ { 25, 9476, 9643, 3, 4, UNI_SC__ADLM } /* sc=adlm */,
+ { 1, 8628, 0, 6, 0, UNI_GRBASE } /* grbase */,
+ { 2, 2122, 0, 21, 0, UNI_CJKCOMPATFORMS } /* cjkcompatibilityforms */,
+ { 3, 7270, 0, 10, 0, UNI_CJKSTROKES } /* cjkstrokes */,
+ { 1, 9711, 7934, 4, 2, UNI_CCC__25 } /* ccc=25 */,
+ { 16, 9469, 910, 3, 13, UNI_PUA } /* inprivateusearea */,
+ { 5, 5810, 0, 13, 0, UNI_ME } /* enclosingmark */,
+ { 0, 9476, 8300, 3, 8, UNI_SC__DUPL } /* sc=duployan */,
+ { 1, 18, 0, 2, 0, UNI_RI } /* ri */,
+ { 12, 9476, 2936, 3, 9, UNI_SUND } /* sc=sundanese */,
+ { 0, 9979, 8866, 4, 4, UNI_TIRH } /* scx=tirh */,
+ { 26, 9476, 9183, 3, 6, UNI_RJNG } /* sc=rejang */,
+ { 2, 1852, 10055, 6, 4, UNI_CASED } /* cased=true */,
+ { 1, 10560, 68, 3, 4, UNI_VSSUP } /* isvssup */,
+ { 7, 185, 8316, 2, 7, UNI_EXTPICT } /* isextpict */,
+ { 0, 9691, 8348, 4, 8, UNI_INGURMUKHI } /* blk=gurmukhi */,
+ { 0, 6083, 8252, 13, 8, UNI_NV__11_SLASH_12 } /* numericvalue=9.17e-01 */,
+ { 0, 10244, 48, 3, 1, UNI_M } /* gc=m */,
+ { 8, 8642, 10055, 7, 4, UNI_HYPHEN } /* hyphen=true */,
+ { 0, 8973, 9509, 6, 5, UNI_INOGHAM } /* block=ogham */,
+ { 4, 10244, 5914, 3, 13, UNI_ZL } /* gc=lineseparator */,
+ { 9, 3877, 6302, 17, 6, UNI_HEBR } /* scriptextensions=hebrew */,
+ { 1, 7908, 3, 8, 1, -UNI_IDS } /* idstart=f */,
+ { 0, 21, 5312, 2, 14, UNI_LATINEXTD } /* inlatinextendedd */,
+ { 8, 8973, 9237, 6, 6, UNI_INYEZIDI } /* block=yezidi */,
+ { 0, 8782, 9811, 7, 4, UNI_KHMR } /* script=khmr */,
+ { 2, 1990, 6572, 22, 6, UNI_LB__ZWJ } /* indicsyllabiccategory=joiner */,
+ { 0, 4157, 4760, 3, 14, UNI_ARMI } /* isimperialaramaic */,
+ { 0, 3877, 8284, 17, 4, UNI_BASS } /* scriptextensions=bass */,
+ { 0, 10268, 8913, 3, 6, UNI_NV__400000 } /* nv=400000 */,
+ { 0, 3398, 0, 10, 0, UNI_XPOSIXSPACE } /* whitespace */,
+ { 2, 10253, 5144, 3, 14, UNI_LB__SA } /* lb=complexcontext */,
+ { 0, 2312, 4731, 4, 13, UNI_INHANGUL } /* inhangulsyllables */,
+ { 1, 3877, 4849, 17, 15, UNI_MERC } /* scriptextensions=meroiticcursive */,
+ { 14, 10247, 6455, 3, 3, UNI_JG__NYA } /* jg=nya */,
+ { 0, 9843, 0, 4, 0, UNI_LINB } /* linb */,
+ { 5, 9219, 0, 6, 0, UNI_upper_values_index } /* upper= */,
+ { 1, 2206, 263, 21, 2, UNI_GCB__SM } /* graphemeclusterbreak=sm */,
+ { 0, 9691, 720, 4, 30, UNI_CUNEIFORMNUMBERS } /* blk=cuneiformnumbersandpunctuation */,
+ { 1, 9691, 3979, 5, 7, UNI_INBOPOMOFO } /* blk=bopomofo */,
+ { 2, 2808, 81, 4, 33, UNI_ARABICMATH } /* inarabicmathematicalalphabeticsymbols */,
+ { 2, 185, 7330, 2, 4, UNI_KHAR } /* iskhar */,
+ { 22, 3448, 1130, 3, 3, UNI_UCAS } /* inucas */,
+ { 12, 3406, 10055, 3, 4, UNI_CE } /* ce=true */,
+ { 0, 9979, 4504, 4, 4, UNI_BAMU } /* scx=bamu */,
+ { 1, 8866, 0, 4, 0, UNI_TIRH } /* tirh */,
+ { 0, 6937, 2047, 6, 9, UNI_MISCTECHNICAL } /* inmisctechnical */,
+ { 1, 9269, 3, 5, 1, -UNI_POSIXXDIGIT } /* ahex=f */,
+ { 0, 2206, 8313, 21, 3, UNI_WB__EB } /* graphemeclusterbreak=gaz */,
+ { 4, 7467, 10319, 3, 3, UNI_IN__5_DOT_1 } /* in=v51 */,
+ { 4, 113, 0, 2, 0, UNI_SC } /* sc */,
+ { 8, 185, 2936, 2, 12, UNI_SUNDANESESUP } /* issundanesesup */,
+ { 2, 9691, 8340, 4, 8, UNI_INGUJARATI } /* blk=gujarati */,
+ { 2, 3877, 79, 17, 4, UNI_ARAB } /* scriptextensions=arab */,
+ { 1, 5550, 0, 16, 0, UNI_DT__CAN } /* nfdquickcheck=no */,
+ { 1, 7360, 2468, 10, 2, UNI_LB__HL } /* linebreak=hl */,
+ { 4, 8973, 8380, 6, 8, UNI_JAMOEXTB } /* block=jamoextb */,
+ { 1, 4972, 8846, 3, 6, UNI_TAVT } /* istaiviet */,
+ { 4, 185, 5368, 2, 14, UNI_LISUSUP } /* islisusupplement */,
{ 0, 9159, 26, 6, 1, UNI_NFDQC__Y } /* nfdqc=y */,
- { 0, 5901, 0, 13, 0, UNI_KANAEXTB } /* kanaextendedb */,
- { 15, 3877, 3103, 17, 6, UNI_COPT } /* scriptextensions=coptic */,
- { 10, 8782, 8859, 7, 7, UNI_TIBT } /* script=tibetan */,
- { 1, 9476, 3193, 3, 4, UNI_ETHI } /* sc=ethi */,
- { 0, 1553, 10398, 9, 2, UNI_ZP } /* category=zp */,
- { 0, 8973, 6242, 6, 12, UNI_ETHIOPICEXTB } /* block=ethiopicextb */,
- { 1, 10244, 1288, 3, 2, UNI_UPPERCASELETTER } /* gc=lu */,
- { 42, 9476, 9967, 3, 4, UNI_RUNR } /* sc=runr */,
- { 1, 9979, 8530, 4, 7, UNI_AVST } /* scx=avestan */,
- { 1, 9763, 126, 4, 2, UNI_LB__CR } /* gcb=cr */,
- { 8, 9476, 9791, 3, 4, UNI_HLUW } /* sc=hluw */,
- { 0, 9476, 8530, 3, 7, UNI_AVST } /* sc=avestan */,
- { 1, 9647, 9595, 4, 4, UNI_AGE__12_DOT_1 } /* age=12.1 */,
- { 11, 9476, 10115, 3, 4, UNI_SC__QAAI } /* sc=zinh */,
- { 2, 8973, 5606, 6, 14, UNI_PHONETICEXTSUP } /* block=phoneticextsup */,
- { 1, 6083, 7980, 13, 8, UNI_NV__1_SLASH_6 } /* numericvalue=1.67e-01 */,
- { 0, 9691, 4410, 4, 9, UNI_SYRIACSUP } /* blk=syriacsup */,
- { 3, 185, 7792, 3, 2, UNI_CWT } /* iscwt */,
- { 0, 8782, 9723, 7, 4, UNI_SC__CPRT } /* script=cprt */,
- { 6, 9979, 9891, 4, 4, UNI_NEWA } /* scx=newa */,
- { 0, 8551, 0, 7, 0, UNI_CJKEXTB } /* cjkextb */,
- { 0, 8444, 9454, 8, 5, -UNI_RADICAL } /* radical=false */,
- { 4, 8782, 8663, 7, 7, UNI_SC__LINA } /* script=lineara */,
- { 2, 9691, 6590, 4, 12, UNI_INOLDHUNGARIAN } /* blk=oldhungarian */,
- { 6, 8973, 2144, 7, 13, UNI_CJKRADICALSSUP } /* block=cjkradicalssup */,
- { 2, 4074, 10398, 16, 2, UNI_ZP } /* generalcategory=zp */,
- { 1, 6083, 9615, 13, 4, UNI_NV__17_SLASH_2 } /* numericvalue=17/2 */,
- { 0, 7360, 126, 10, 2, UNI_LB__CR } /* linebreak=cr */,
- { 0, 8973, 8635, 6, 7, UNI_INHANUNOO } /* block=hanunoo */,
- { 3, 6083, 9249, 13, 4, UNI_NV__1_SLASH_16 } /* numericvalue=1/16 */,
- { 0, 9691, 1701, 4, 23, UNI_SHORTHANDFORMATCONTROLS } /* blk=shorthandformatcontrols */,
- { 1, 9489, 36, 5, 1, UNI_MATH } /* math=t */,
- { 0, 4534, 0, 4, 0, UNI_BRAI } /* brai */,
- { 11, 25, 0, 1, 0, UNI_S } /* s */,
- { 2, 9464, 9454, 5, 5, -UNI_IDST } /* idst=false */,
- { 2, 185, 8276, 2, 8, UNI_BALI } /* isbalinese */,
- { 8, 7160, 7160, 3, 10, UNI_YISYLLABLES } /* isyisyllables */,
- { 5, 8973, 1219, 6, 8, UNI_INKATAKANA } /* block=katakana */,
- { 2, 2593, 3517, 20, 18, UNI_VO__TR } /* verticalorientation=transformedrotated */,
- { 0, 6083, 7932, 13, 8, UNI_NV__1_SLASH_8 } /* numericvalue=1.25e-01 */,
- { 3, 6083, 10364, 13, 2, UNI_NV__45 } /* numericvalue=45 */,
- { 1, 9979, 8691, 4, 7, UNI_MULT } /* scx=multani */,
- { 8, 2312, 3079, 5, 6, UNI_HALFMARKS } /* inhalfmarks */,
- { 0, 8973, 2100, 6, 15, UNI_TRANSPORTANDMAP } /* block=transportandmap */,
- { 0, 5662, 73, 14, 2, UNI_SB__LE } /* sentencebreak=le */,
- { 1, 9476, 10039, 3, 4, UNI_THAI } /* sc=thai */,
- { 2, 10553, 8454, 4, 6, UNI_SPECIALS } /* isspecials */,
- { 0, 10217, 5926, 3, 3, UNI_BC__RLO } /* bc=rlo */,
- { 1, 2206, 0, 21, 0, UNI_gcb_values_index } /* graphemeclusterbreak= */,
- { 2, 1190, 6001, 3, 4, UNI_NV__NAN } /* nt=none */,
- { 1, 9979, 9947, 4, 4, UNI_COPT } /* scx=qaac */,
- { 0, 9979, 9643, 4, 4, UNI_ADLM } /* scx=adlm */,
- { 0, 9763, 36, 4, 1, UNI_GCB__T } /* gcb=t */,
- { 0, 3283, 0, 18, 0, UNI_idsb_values_index } /* idsbinaryoperator= */,
- { 0, 3398, 26, 11, 1, UNI_XPOSIXSPACE } /* whitespace=y */,
- { 0, 7230, 6146, 10, 12, UNI_BC__AN } /* bidiclass=arabicnumber */,
- { 3, 185, 9093, 2, 6, UNI_KTHI } /* iskaithi */,
- { 8, 9476, 7104, 3, 11, UNI_SC__SYLO } /* sc=sylotinagri */,
- { 0, 10516, 9936, 3, 3, UNI_PHNX } /* isphnx */,
- { 0, 6338, 1, 12, 1, -UNI_JOINC } /* joincontrol=n */,
- { 0, 5662, 0, 16, 0, UNI_SB__SP } /* sentencebreak=sp */,
- { 0, 6083, 0, 13, 0, UNI_nv_values_index } /* numericvalue= */,
- { 5, 3877, 9117, 17, 4, UNI_LEPC } /* scriptextensions=lepc */,
- { 1, 9979, 9799, 4, 4, UNI_HMNP } /* scx=hmnp */,
- { 1, 10268, 8925, 3, 5, UNI_NV__50000 } /* nv=50000 */,
- { 1, 185, 8684, 2, 4, UNI_MARC } /* ismarc */,
- { 0, 9979, 9875, 4, 4, UNI_MTEI } /* scx=mtei */,
- { 1, 10253, 2468, 3, 2, UNI_LB__HL } /* lb=hl */,
- { 0, 9979, 3622, 4, 17, UNI_AGHB } /* scx=caucasianalbanian */,
- { 1, 9691, 1442, 4, 10, UNI_CJKSYMBOLS } /* blk=cjksymbols */,
- { 6, 8967, 10355, 6, 3, UNI_BIDIM } /* bidim=yes */,
- { 3, 9474, 2632, 5, 19, UNI_INSC__BRAHMIJOININGNUMBER } /* insc=brahmijoiningnumber */,
- { 0, 3877, 9699, 17, 4, UNI_BUHD } /* scriptextensions=buhd */,
- { 1, 6083, 8052, 13, 8, UNI_NV__1_SLASH_320 } /* numericvalue=3.13e-03 */,
- { 1, 9464, 10055, 5, 4, UNI_IDST } /* idst=true */,
- { 5, 10244, 5578, 3, 14, UNI_MN } /* gc=nonspacingmark */,
- { 0, 1418, 8998, 25, 4, UNI_CCC__11 } /* canonicalcombiningclass=ccc11 */,
- { 3, 9464, 1, 5, 1, -UNI_IDST } /* idst=n */,
- { 0, 1538, 3499, 24, 10, UNI_INPC__TOPANDLEFT } /* indicpositionalcategory=topandleft */,
- { 9, 5830, 1026, 6, 2, -UNI_EBASE } /* ebase=no */,
- { 16, 185, 2493, 2, 20, UNI_HMNP } /* isnyiakengpuachuehmong */,
- { 0, 185, 3265, 2, 4, UNI_GEOR } /* isgeor */,
- { 2, 5408, 6508, 4, 10, UNI_MATHALPHANUM } /* inmathalphanum */,
- { 1, 2353, 0, 20, 0, UNI_HLUW } /* anatolianhieroglyphs */,
- { 2, 9051, 1026, 6, 2, -UNI_ECOMP } /* ecomp=no */,
- { 0, 7560, 3, 10, 1, -UNI_XPOSIXUPPER } /* uppercase=f */,
- { 2, 8973, 8530, 6, 7, UNI_INAVESTAN } /* block=avestan */,
- { 1, 9509, 0, 5, 0, UNI_OGAM } /* ogham */,
- { 0, 2248, 2937, 3, 8, UNI_INSUNDANESE } /* insundanese */,
- { 3, 1990, 729, 22, 6, UNI_INSC__NUMBER } /* indicsyllabiccategory=number */,
- { 9, 7360, 6302, 10, 12, UNI_LB__HL } /* linebreak=hebrewletter */,
- { 0, 8973, 115, 7, 34, UNI_DIACRITICALSFORSYMBOLS } /* block=combiningdiacriticalmarksforsymbols */,
- { 0, 185, 952, 2, 28, UNI_VSSUP } /* isvariationselectorssupplement */,
- { 1, 8881, 1008, 3, 16, UNI_ANCIENTGREEKMUSIC } /* isancientgreekmusic */,
- { 1, 3553, 10355, 18, 3, UNI_VS } /* variationselector=yes */,
- { 6, 10232, 9, 3, 2, UNI_EA__NA } /* ea=na */,
- { 1, 9459, 1, 5, 1, -UNI_IDSB } /* idsb=n */,
- { 6, 7467, 5732, 3, 2, UNI_IN__10 } /* in=10 */,
- { 0, 415, 0, 32, 0, UNI_INIDC } /* ideographicdescriptioncharacters */,
- { 2, 21, 7330, 2, 10, UNI_INKHAROSHTHI } /* inkharoshthi */,
- { 5, 1770, 0, 22, 0, UNI_bpt_values_index } /* bidipairedbrackettype= */,
- { 1, 4157, 3776, 3, 16, UNI_INDICSIYAQNUMBERS } /* isindicsiyaqnumbers */,
- { 0, 8973, 5074, 6, 14, UNI_ANCIENTSYMBOLS } /* block=ancientsymbols */,
- { 1, 9476, 9699, 3, 4, UNI_SC__BUHD } /* sc=buhd */,
- { 7, 9979, 2708, 4, 19, UNI_EGYP } /* scx=egyptianhieroglyphs */,
- { 0, 10253, 5830, 3, 5, UNI_EBASE } /* lb=ebase */,
- { 1, 9476, 9117, 3, 4, UNI_LEPC } /* sc=lepc */,
- { 0, 7826, 0, 9, 0, UNI_ORKH } /* oldturkic */,
- { 17, 9711, 9385, 5, 4, UNI_CCC__31 } /* ccc=ccc31 */,
- { 4, 7467, 10071, 3, 4, UNI_IN__12_DOT_1 } /* in=v121 */,
- { 1, 9087, 36, 6, 1, UNI_JOINC } /* joinc=t */,
- { 0, 9691, 7260, 4, 10, UNI_INCHORASMIAN } /* blk=chorasmian */,
- { 1, 1274, 0, 20, 0, UNI_CE } /* compositionexclusion */,
- { 1, 8782, 9207, 7, 4, UNI_SC__THAA } /* script=thaa */,
- { 0, 10516, 7854, 3, 8, UNI_PAUC } /* ispaucinhau */,
- { 0, 3448, 1, 3, 33, UNI_UCAS } /* inunifiedcanadianaboriginalsyllabics */,
- { 0, 9461, 34, 3, 2, UNI_SB__EX } /* sb=ex */,
- { 1, 4154, 5030, 3, 14, UNI_VEDICEXT } /* invedicextensions */,
- { 4, 1418, 5732, 24, 2, UNI_CCC__10 } /* canonicalcombiningclass=10 */,
- { 2, 185, 631, 3, 29, UNI_CJKEXTE } /* iscjkunifiedideographsextensione */,
- { 4, 9474, 4346, 5, 5, UNI_INSC__OTHER } /* insc=other */,
- { 0, 9476, 4186, 3, 7, UNI_SC__LINB } /* sc=linearb */,
- { 0, 1189, 10052, 3, 3, UNI_INTOTO } /* intoto */,
- { 10, 8973, 3826, 6, 10, UNI_INMANICHAEAN } /* block=manichaean */,
- { 5, 4972, 2101, 3, 21, UNI_TRANSPORTANDMAP } /* istransportandmapsymbols */,
- { 2, 9429, 0, 4, 0, UNI_CWCF } /* cwcf */,
- { 3, 7360, 2664, 10, 2, UNI_LB__BA } /* linebreak=ba */,
- { 1, 7360, 6287, 10, 2, UNI_LB__ZW } /* linebreak=zw */,
- { 0, 7560, 10355, 10, 3, UNI_XPOSIXUPPER } /* uppercase=yes */,
- { 1, 3877, 6730, 17, 11, UNI_CPMN } /* scriptextensions=cyprominoan */,
- { 0, 8973, 1903, 7, 21, UNI_CJKCOMPATIDEOGRAPHSSUP } /* block=cjkcompatideographssup */,
- { 2, 7360, 6829, 10, 11, UNI_LB__IN } /* linebreak=inseperable */,
- { 1, 21, 8663, 2, 7, UNI_INLINEARA } /* inlineara */,
- { 0, 9214, 10355, 5, 3, UNI_IDEO } /* ideo=yes */,
- { 2, 2248, 8811, 3, 6, UNI_INSOYOMBO } /* insoyombo */,
- { 7, 2248, 4411, 3, 8, UNI_SYRIACSUP } /* insyriacsup */,
- { 10, 185, 4639, 2, 15, UNI_PD } /* isdashpunctuation */,
- { 1, 3877, 8468, 17, 4, UNI_TAGB } /* scriptextensions=tagb */,
- { 3, 4074, 4639, 16, 15, UNI_PD } /* generalcategory=dashpunctuation */,
- { 1, 10244, 1528, 3, 9, UNI__PERL_SURROGATE } /* gc=surrogate */,
- { 8, 1088, 10355, 27, 3, UNI_PCM } /* prependedconcatenationmark=yes */,
- { 1, 10253, 5102, 3, 14, UNI_LB__CR } /* lb=carriagereturn */,
- { 0, 4972, 8477, 3, 7, UNI_TFNG } /* istifinagh */,
- { 12, 10217, 3741, 3, 17, UNI_BC__ES } /* bc=europeanseparator */,
- { 0, 185, 8621, 2, 7, UNI_GRAN } /* isgrantha */,
- { 0, 8854, 5275, 3, 9, UNI_YIRADICALS } /* inyiradicals */,
- { 1, 9979, 3265, 4, 4, UNI_GEOR } /* scx=geor */,
- { 0, 8973, 7381, 6, 2, UNI_INVS } /* block=vs */,
- { 0, 7330, 0, 10, 0, UNI_KHAR } /* kharoshthi */,
- { 0, 3877, 3826, 17, 10, UNI_MANI } /* scriptextensions=manichaean */,
- { 10, 9731, 10055, 4, 4, UNI_CWT } /* cwt=true */,
- { 1, 185, 436, 2, 5, UNI__PERL_NCHAR } /* isnchar */,
- { 4, 3962, 0, 9, 0, UNI_ARABICSUP } /* arabicsup */,
- { 2, 10217, 10238, 3, 3, UNI_BC__FSI } /* bc=fsi */,
- { 4, 21, 9231, 2, 6, UNI_INWANCHO } /* inwancho */,
- { 0, 5516, 0, 3, 0, UNI_ANY } /* any */,
- { 0, 7460, 10059, 10, 4, UNI_IN__10 } /* presentin=v100 */,
- { 3, 1990, 4154, 22, 16, UNI_INSC__INVISIBLESTACKER } /* indicsyllabiccategory=invisiblestacker */,
- { 14, 185, 1, 2, 1, UNI_N } /* isn */,
- { 4, 8973, 2085, 6, 4, UNI_INMODI } /* block=modi */,
- { 8, 10253, 4898, 3, 2, UNI_LB__QU } /* lb=qu */,
- { 1, 10244, 1, 3, 1, UNI_N } /* gc=n */,
- { 2, 9469, 9, 5, 2, UNI_INPC__NA } /* inpc=na */,
- { 6, 10268, 8925, 3, 6, UNI_NV__500000 } /* nv=500000 */,
- { 0, 9727, 36, 4, 1, UNI_CWL } /* cwl=t */,
- { 1, 8628, 3, 7, 1, -UNI_GRBASE } /* grbase=f */,
- { 7, 7460, 7923, 10, 2, UNI_IN__11 } /* presentin=11 */,
- { 0, 10217, 3797, 3, 3, UNI_BC__NSM } /* bc=nsm */,
- { 9, 6338, 10355, 12, 3, UNI_JOINC } /* joincontrol=yes */,
- { 3, 9691, 7540, 4, 10, UNI_SUPARROWSC } /* blk=suparrowsc */,
- { 4, 7673, 0, 9, 0, UNI_EMOTICONS } /* emoticons */,
- { 0, 6350, 24, 12, 1, UNI_JT__L } /* joiningtype=l */,
- { 1, 10253, 5144, 3, 14, UNI_LB__SA } /* lb=complexcontext */,
- { 8, 4042, 0, 16, 0, UNI_CYPRIOTSYLLABARY } /* cypriotsyllabary */,
- { 1, 9711, 185, 4, 2, UNI_CCC__IS } /* ccc=is */,
- { 3, 4699, 36, 15, 1, UNI_ECOMP } /* emojicomponent=t */,
- { 9, 1418, 9415, 25, 4, UNI_CCC__84 } /* canonicalcombiningclass=ccc84 */,
- { 0, 7230, 1, 11, 1, UNI_BC__BN } /* bidiclass=bn */,
- { 2, 9691, 8492, 4, 8, UNI_UCASEXTA } /* blk=ucasexta */,
- { 9, 3877, 2085, 17, 4, UNI_MODI } /* scriptextensions=modi */,
- { 0, 1418, 23, 24, 2, UNI_CCC__AL } /* canonicalcombiningclass=al */,
- { 0, 8973, 8404, 6, 8, UNI_KANAEXTB } /* block=kanaextb */,
- { 8, 9529, 0, 5, 0, UNI_TALE } /* taile */,
- { 0, 7500, 0, 10, 0, UNI_SAUR } /* saurashtra */,
- { 0, 6083, 9254, 13, 3, UNI_NV__1_SLASH_3 } /* numericvalue=1/3 */,
- { 10, 4759, 0, 15, 0, UNI_ARMI } /* imperialaramaic */,
- { 1, 10247, 5448, 3, 4, UNI_JG__HETH } /* jg=heth */,
- { 0, 185, 75, 2, 2, UNI_ME } /* isme */,
- { 0, 8782, 7808, 7, 9, UNI_ITAL } /* script=olditalic */,
- { 2, 8973, 810, 6, 29, UNI_ENCLOSEDIDEOGRAPHICSUP } /* block=enclosedideographicsupplement */,
- { 0, 3877, 7790, 17, 9, UNI_TALU } /* scriptextensions=newtailue */,
- { 3, 8782, 7430, 7, 10, UNI_SOGO } /* script=oldsogdian */,
- { 10, 8782, 9201, 7, 4, UNI_SC__TELU } /* script=telu */,
- { 0, 9476, 3103, 3, 4, UNI_SC__COPT } /* sc=copt */,
- { 10, 7467, 10319, 3, 3, UNI_IN__5_DOT_1 } /* in=v51 */,
- { 0, 6057, 0, 13, 0, UNI_MISCTECHNICAL } /* misctechnical */,
- { 1, 3690, 0, 17, 0, UNI_CYRILLICEXTC } /* cyrillicextendedc */,
- { 0, 9763, 5830, 4, 5, UNI_WB__EB } /* gcb=ebase */,
- { 5, 9979, 3826, 4, 10, UNI_MANI } /* scx=manichaean */,
- { 1, 9979, 9284, 4, 5, UNI_BATK } /* scx=batak */,
- { 0, 10352, 7898, 3, 9, UNI_WB__WSEGSPACE } /* wb=wsegspace */,
- { 0, 3877, 8831, 17, 7, UNI_TGLG } /* scriptextensions=tagalog */,
- { 1, 7682, 9454, 9, 5, -UNI_EXT } /* extender=false */,
- { 1, 7230, 408, 10, 2, UNI_BC__ON } /* bidiclass=on */,
- { 0, 8973, 6362, 6, 12, UNI_KHMERSYMBOLS } /* block=khmersymbols */,
- { 0, 185, 1701, 2, 23, UNI_SHORTHANDFORMATCONTROLS } /* isshorthandformatcontrols */,
- { 4, 6529, 7818, 3, 8, UNI_INOLDPERMIC } /* inoldpermic */,
- { 3, 10247, 6398, 3, 12, UNI_JG__MALAYALAMBHA } /* jg=malayalambha */,
- { 0, 5875, 3860, 13, 17, UNI_JG__MANICHAEANTHAMEDH } /* joininggroup=manichaeanthamedh */,
- { 1, 8593, 0, 6, 0, UNI_COMPEX } /* compex */,
- { 10, 4286, 0, 10, 0, UNI_SM } /* mathsymbol */,
- { 1, 3157, 1, 18, 1, -UNI_EBASE } /* emojimodifierbase=n */,
- { 0, 7908, 26, 8, 1, UNI_IDS } /* idstart=y */,
- { 13, 9711, 8920, 4, 2, UNI_CCC__32 } /* ccc=32 */,
- { 0, 8973, 8372, 6, 8, UNI_JAMOEXTA } /* block=jamoexta */,
+ { 2, 9691, 7510, 4, 10, UNI_SMALLFORMS } /* blk=smallforms */,
+ { 5, 5550, 0, 15, 0, UNI_DT__CAN } /* nfdquickcheck=n */,
+ { 5, 9979, 1177, 5, 3, UNI_SORA } /* scx=sora */,
+ { 2, 185, 5298, 2, 14, UNI_LATINEXTC } /* islatinextendedc */,
+ { 1, 3877, 8677, 17, 7, UNI_MAND } /* scriptextensions=mandaic */,
+ { 0, 8356, 0, 4, 0, UNI_HIRA } /* hira */,
+ { 0, 1538, 7312, 4, 8, UNI_INDIVESAKURU } /* indivesakuru */,
+ { 1, 2248, 2956, 3, 18, UNI_SUPARROWSA } /* insupplementalarrowsa */,
+ { 0, 10508, 3403, 8, 5, UNI_XPOSIXSPACE } /* isxposixspace */,
+ { 3, 10268, 10133, 3, 3, UNI_NV__1_SLASH_9 } /* nv=1/9 */,
+ { 4, 4909, 0, 15, 0, UNI_nfkdqc_values_index } /* nfkdquickcheck= */,
+ { 3, 10553, 7, 3, 1, UNI_SC } /* issc */,
+ { 0, 7297, 6303, 3, 5, UNI_HEBR } /* ishebrew */,
+ { 2, 7460, 10202, 10, 3, UNI_IN__6_DOT_3 } /* presentin=6.3 */,
+ { 3, 8782, 10087, 7, 4, UNI_WCHO } /* script=wcho */,
+ { 0, 185, 44, 3, 2, UNI_CJK } /* iscjk */,
+ { 9, 7297, 34, 3, 2, UNI_XPOSIXXDIGIT } /* ishex */,
+ { 3, 9476, 720, 3, 9, UNI_XSUX } /* sc=cuneiform */,
+ { 0, 9927, 36, 4, 1, UNI_PCM } /* pcm=t */,
+ { 0, 9691, 4410, 4, 6, UNI_INSYRIAC } /* blk=syriac */,
+ { 9, 9763, 5581, 4, 11, UNI_GCB__SM } /* gcb=spacingmark */,
+ { 17, 3283, 0, 17, 0, UNI_IDSB } /* idsbinaryoperator */,
+ { 0, 6083, 8913, 13, 2, UNI_NV__40 } /* numericvalue=40 */,
+ { 0, 185, 7071, 2, 11, UNI_SORA } /* issorasompeng */,
+ { 0, 3877, 9883, 17, 4, UNI_NARB } /* scriptextensions=narb */,
+ { 0, 9844, 5774, 5, 10, UNI_BLOCKELEMENTS } /* inblockelements */,
+ { 6, 8782, 8292, 7, 4, UNI_SC__BUGI } /* script=bugi */,
+ { 0, 7360, 5382, 10, 14, UNI_LB__BK } /* linebreak=mandatorybreak */,
+ { 1, 8670, 0, 4, 0, UNI_MAKA } /* maka */,
+ { 7, 8782, 9823, 7, 4, UNI_SC__KTHI } /* script=kthi */,
+ { 0, 9123, 26, 6, 1, UNI_XPOSIXLOWER } /* lower=y */,
+ { 3, 4157, 2804, 3, 3, UNI_IDST } /* isidst */,
+ { 2, 9691, 5862, 4, 13, UNI_IPAEXT } /* blk=ipaextensions */,
+ { 0, 8881, 1008, 3, 16, UNI_ANCIENTGREEKMUSIC } /* isancientgreekmusic */,
+ { 2, 185, 9099, 2, 6, UNI_KANBUN } /* iskanbun */,
+ { 0, 9434, 36, 5, 1, UNI_CWCM } /* cwcm=t */,
+ { 2, 10516, 1891, 7, 5, UNI_POSIXUPPER } /* isposixupper */,
+ { 4, 7060, 10055, 11, 4, UNI_SD } /* softdotted=true */,
+ { 0, 8642, 0, 6, 0, UNI_HYPHEN } /* hyphen */,
+ { 10, 9979, 2708, 4, 19, UNI_EGYP } /* scx=egyptianhieroglyphs */,
+ { 0, 6842, 3607, 4, 15, UNI_UCAS } /* incanadiansyllabics */,
+ { 0, 10511, 3403, 5, 5, UNI_POSIXSPACE } /* posixspace */,
+ { 1, 9476, 9923, 3, 4, UNI_SC__OUGR } /* sc=ougr */,
+ { 3, 9190, 26, 5, 1, UNI_TERM } /* term=y */,
+ { 10, 10402, 6675, 6, 6, UNI__PERL_IDCONT } /* _perl_idcont */,
+ { 9, 9264, 0, 5, 0, UNI_ADLM } /* adlam */,
+ { 3, 9979, 8677, 4, 7, UNI_MAND } /* scx=mandaic */,
+ { 7, 1418, 8027, 24, 2, UNI_CCC__22 } /* canonicalcombiningclass=22 */,
+ { 3, 8973, 5862, 6, 13, UNI_IPAEXT } /* block=ipaextensions */,
+ { 2, 8973, 9444, 6, 5, UNI_INDOGRA } /* block=dogra */,
+ { 5, 5875, 5504, 13, 4, UNI_JG__TETH } /* joininggroup=teth */,
+ { 0, 8492, 0, 8, 0, UNI_UCASEXTA } /* ucasexta */,
+ { 0, 8782, 9534, 7, 5, UNI_SC__TAKR } /* script=takri */,
+ { 1, 3877, 9831, 17, 4, UNI_LAO } /* scriptextensions=laoo */,
+ { 9, 1553, 468, 9, 11, UNI_P } /* category=punctuation */,
+ { 0, 8973, 8663, 6, 7, UNI_INLINEARA } /* block=lineara */,
+ { 0, 7360, 4026, 10, 16, UNI_LB__CL } /* linebreak=closepunctuation */,
+ { 11, 2227, 0, 4, 0, UNI_HAN } /* hani */,
+ { 5, 8881, 9265, 3, 4, UNI_ADLM } /* isadlam */,
+ { 5, 1167, 0, 25, 0, UNI_DI } /* defaultignorablecodepoint */,
+ { 0, 9482, 0, 4, 0, UNI_PHLI } /* phli */,
+ { 0, 8782, 8656, 7, 7, UNI_SC__KALI } /* script=kayahli */,
+ { 0, 9711, 10160, 4, 3, UNI_CCC__A } /* ccc=230 */,
+ { 0, 7297, 2747, 3, 18, UNI_JAMOEXTA } /* ishanguljamoextendeda */,
+ { 0, 9979, 7, 4, 18, UNI_CANS } /* scx=canadianaboriginal */,
+ { 2, 9979, 7420, 4, 10, UNI_XPEO } /* scx=oldpersian */,
+ { 0, 9979, 3103, 4, 6, UNI_COPT } /* scx=coptic */,
+ { 4, 8955, 3, 6, 1, -UNI_XPOSIXALPHA } /* alpha=f */,
+ { 0, 2003, 5915, 10, 12, UNI_ZL } /* category=lineseparator */,
+ { 3, 8593, 9454, 7, 5, -UNI_COMPEX } /* compex=false */,
+ { 3, 21, 7754, 2, 9, UNI_LATINEXTG } /* inlatinextg */,
+ { 2, 10268, 8937, 3, 4, UNI_NV__7000 } /* nv=7000 */,
+ { 0, 5408, 481, 4, 29, UNI_MATHALPHANUM } /* inmathematicalalphanumericsymbols */,
+ { 0, 10244, 4624, 3, 14, UNI_SC } /* gc=currencysymbol */,
+ { 1, 10253, 18, 3, 2, UNI_RI } /* lb=ri */,
+ { 1, 9803, 24, 4, 1, UNI_GCB__L } /* hst=l */,
+ { 3, 10217, 2533, 3, 20, UNI_BC__RLE } /* bc=righttoleftembedding */,
+ { 2, 5662, 34, 14, 6, UNI_SB__EX } /* sentencebreak=extend */,
+ { 1, 1506, 5217, 5, 11, UNI_INGREEK } /* ingreekandcoptic */,
+ { 0, 10217, 427, 3, 2, UNI_BC__ES } /* bc=es */,
+ { 15, 9476, 7420, 3, 10, UNI_XPEO } /* sc=oldpersian */,
+ { 0, 10268, 8091, 3, 2, UNI_NV__24 } /* nv=24 */,
+ { 0, 10244, 113, 3, 2, UNI_SC } /* gc=sc */,
+ { 0, 10566, 1183, 5, 4, UNI_ANY } /* isunicode */,
+ { 1, 9147, 3, 6, 1, -UNI__PERL_NCHAR } /* nchar=f */,
+ { 3, 2312, 1657, 4, 4, UNI_INHANGUL } /* inhangul */,
+ { 0, 3877, 383, 17, 4, UNI_EGYP } /* scriptextensions=egyp */,
+ { 0, 9087, 1026, 6, 2, -UNI_JOINC } /* joinc=no */,
+ { 0, 9691, 4090, 4, 16, UNI_GEORGIANEXT } /* blk=georgianextended */,
+ { 14, 6350, 18, 12, 1, UNI_JT__R } /* joiningtype=r */,
+ { 0, 4426, 0, 4, 0, UNI_TANG } /* tang */,
+ { 4, 9691, 6928, 4, 11, UNI_INMEDEFAIDRIN } /* blk=medefaidrin */,
+ { 0, 6083, 10184, 13, 3, UNI_NV__4_SLASH_5 } /* numericvalue=4/5 */,
+ { 5, 9691, 4669, 4, 15, UNI_DIACRITICALSSUP } /* blk=diacriticalssup */,
+ { 2, 9691, 8831, 4, 7, UNI_INTAGALOG } /* blk=tagalog */,
+ { 3, 9476, 10019, 3, 4, UNI_TALU } /* sc=talu */,
+ { 1, 9691, 4106, 4, 16, UNI_HALFANDFULLFORMS } /* blk=halfandfullforms */,
+ { 7, 4074, 1288, 16, 2, UNI_UPPERCASELETTER } /* generalcategory=lu */,
+ { 8, 4074, 599, 16, 2, UNI_XPOSIXCNTRL } /* generalcategory=cc */,
+ { 0, 1418, 9606, 24, 3, UNI_CCC__214 } /* canonicalcombiningclass=214 */,
+ { 3, 2879, 0, 12, 0, UNI_MONGOLIANSUP } /* mongoliansup */,
+ { 7, 6083, 7611, 13, 1, UNI_NV__5 } /* numericvalue=5 */,
+ { 2, 3877, 7330, 17, 4, UNI_KHAR } /* scriptextensions=khar */,
+ { 7, 9923, 0, 4, 0, UNI_OUGR } /* ougr */,
+ { 6, 8973, 8552, 7, 6, UNI_CJKEXTB } /* block=cjkextb */,
+ { 1, 7160, 9238, 3, 3, UNI_YEZI } /* isyezi */,
+ { 4, 9476, 8607, 3, 4, UNI_ELBA } /* sc=elba */,
+ { 19, 9979, 1655, 4, 6, UNI_HANG } /* scx=hangul */,
+ { 0, 8973, 1320, 6, 25, UNI_SYMBOLSANDPICTOGRAPHSEXTA } /* block=symbolsandpictographsexta */,
+ { 8, 5648, 0, 13, 0, UNI_QMARK } /* quotationmark */,
+ { 17, 8782, 7434, 8, 6, UNI_SC__SOGD } /* script=sogdian */,
+ { 3, 8768, 36, 7, 1, UNI_PATSYN } /* patsyn=t */,
+ { 1, 7460, 0, 10, 0, UNI_in_values_index } /* presentin= */,
+ { 0, 185, 780, 2, 30, UNI_SYMBOLSANDPICTOGRAPHSEXTA } /* issymbolsandpictographsextendeda */,
+ { 4, 10349, 26, 3, 1, UNI_VS } /* vs=y */,
+ { 1, 9979, 9891, 4, 4, UNI_NEWA } /* scx=newa */,
+ { 24, 3877, 2269, 17, 11, UNI_MTEI } /* scriptextensions=meeteimayek */,
+ { 1, 3463, 0, 18, 0, UNI_SMALLKANAEXT } /* smallkanaextension */,
+ { 0, 10268, 8943, 3, 2, UNI_NV__80 } /* nv=80 */,
+ { 17, 1115, 1026, 26, 2, -UNI_CWKCF } /* changeswhennfkccasefolded=no */,
+ { 0, 8782, 7781, 7, 9, UNI_NBAT } /* script=nabataean */,
+ { 1, 9439, 1, 5, 1, -UNI_DASH } /* dash=n */,
+ { 1, 1418, 10142, 24, 3, UNI_CCC__202 } /* canonicalcombiningclass=202 */,
+ { 5, 3945, 1026, 17, 2, -UNI_UIDEO } /* unifiedideograph=no */,
+ { 0, 9691, 4314, 4, 16, UNI_MYANMAREXTA } /* blk=myanmarextendeda */,
+ { 1, 7790, 0, 9, 0, UNI_TALU } /* newtailue */,
+ { 0, 8973, 6494, 6, 12, UNI_INMASARAMGONDI } /* block=masaramgondi */,
+ { 0, 9474, 729, 5, 6, UNI_INSC__NUMBER } /* insc=number */,
+ { 5, 10253, 10382, 3, 2, UNI_GCB__L } /* lb=jl */,
+ { 8, 4699, 1026, 15, 2, -UNI_ECOMP } /* emojicomponent=no */,
+ { 0, 10268, 8099, 3, 2, UNI_NV__14 } /* nv=14 */,
+ { 8, 3409, 26, 18, 1, UNI_RI } /* regionalindicator=y */,
+ { 45, 4684, 67, 15, 1, UNI_EA__H } /* eastasianwidth=h */,
+ { 18, 9045, 10355, 6, 3, UNI_CWKCF } /* cwkcf=yes */,
+ { 1, 10247, 9855, 3, 4, UNI_JG__MEEM } /* jg=meem */,
+ { 2, 9207, 0, 4, 0, UNI_THAA } /* thaa */,
+ { 8, 185, 8614, 2, 7, UNI_ELYM } /* iselymaic */,
+ { 0, 9691, 9099, 4, 6, UNI_KANBUN } /* blk=kanbun */,
+ { 0, 1592, 3194, 3, 7, UNI_INETHIOPIC } /* inethiopic */,
+ { 1, 7682, 10055, 9, 4, UNI_EXT } /* extender=true */,
+ { 8, 3877, 5940, 17, 9, UNI_MLYM } /* scriptextensions=malayalam */,
+ { 1, 9544, 3, 5, 1, -UNI_XIDC } /* xidc=f */,
+ { 8, 9979, 3622, 4, 17, UNI_AGHB } /* scx=caucasianalbanian */,
+ { 0, 6697, 1, 11, 1, -UNI_XPOSIXALPHA } /* alphabetic=n */,
+ { 0, 9434, 10355, 5, 3, UNI_CWCM } /* cwcm=yes */,
+ { 1, 5875, 6410, 13, 12, UNI_JG__MALAYALAMLLA } /* joininggroup=malayalamlla */,
+ { 13, 8973, 9231, 6, 6, UNI_INWANCHO } /* block=wancho */,
+ { 0, 185, 1562, 2, 24, UNI_SUPSYMBOLSANDPICTOGRAPHS } /* issupsymbolsandpictographs */,
+ { 4, 2206, 5581, 21, 11, UNI_GCB__SM } /* graphemeclusterbreak=spacingmark */,
+ { 0, 6340, 151, 4, 33, UNI_DIACRITICALSSUP } /* incombiningdiacriticalmarkssupplement */,
+ { 0, 8973, 6506, 6, 12, UNI_MATHALPHANUM } /* block=mathalphanum */,
+ { 20, 8973, 5354, 6, 14, UNI_LATINEXTG } /* block=latinextendedg */,
+ { 1, 3877, 8500, 17, 4, UNI_UGAR } /* scriptextensions=ugar */,
+ { 1, 9691, 3049, 4, 11, UNI_CHEROKEESUP } /* blk=cherokeesup */,
+ { 1, 8973, 1014, 6, 5, UNI_INGREEK } /* block=greek */,
+ { 0, 2304, 6432, 3, 3, UNI_OGAM } /* isogam */,
+ { 0, 9476, 7104, 3, 4, UNI_SC__SYLO } /* sc=sylo */,
+ { 0, 185, 8649, 2, 7, UNI_KNDA } /* iskannada */,
+ { 0, 3877, 9903, 17, 4, UNI_OGAM } /* scriptextensions=ogam */,
+ { 0, 9735, 1, 4, 1, -UNI_CWU } /* cwu=n */,
+ { 12, 9691, 1295, 4, 25, UNI_SUPERANDSUB } /* blk=superscriptsandsubscripts */,
+ { 0, 9476, 8684, 3, 7, UNI_MARC } /* sc=marchen */,
+ { 0, 1814, 26, 22, 1, UNI_CWCM } /* changeswhencasemapped=y */,
+ { 1, 10247, 5235, 3, 7, UNI_JG__HEHGOAL } /* jg=hehgoal */,
+ { 0, 8973, 6183, 7, 11, UNI_CHESSSYMBOLS } /* block=chesssymbols */,
+ { 2, 4972, 3482, 3, 17, UNI_TAIXUANJING } /* istaixuanjingsymbols */,
+ { 1, 9691, 2936, 4, 12, UNI_SUNDANESESUP } /* blk=sundanesesup */,
+ { 8, 3877, 2708, 17, 19, UNI_EGYP } /* scriptextensions=egyptianhieroglyphs */,
+ { 8, 2803, 10355, 19, 3, UNI_IDST } /* idstrinaryoperator=yes */,
+ { 3, 1553, 45, 10, 1, UNI_SK } /* category=sk */,
+ { 1, 9691, 8551, 4, 7, UNI_CJKEXTB } /* blk=cjkextb */,
+ { 3, 9476, 6518, 3, 4, UNI_MEND } /* sc=mend */,
+ { 3, 185, 5326, 2, 14, UNI_LATINEXTE } /* islatinextendede */,
+ { 3, 3877, 7450, 17, 10, UNI_PHNX } /* scriptextensions=phoenician */,
+ { 1, 3877, 10047, 17, 4, UNI_TNSA } /* scriptextensions=tnsa */,
+ { 11, 6083, 8052, 13, 8, UNI_NV__1_SLASH_320 } /* numericvalue=3.13e-03 */,
+ { 1, 1088, 1026, 27, 2, -UNI_PCM } /* prependedconcatenationmark=no */,
+ { 1, 9063, 0, 5, 0, UNI_EPRES } /* epres */,
+ { 0, 9851, 0, 4, 0, UNI_MEDF } /* medf */,
+ { 0, 5875, 10220, 13, 3, UNI_JG__BEH } /* joininggroup=beh */,
+ { 8, 9051, 3, 6, 1, -UNI_ECOMP } /* ecomp=f */,
+ { 0, 10229, 2593, 3, 8, UNI_DT__VERT } /* dt=vertical */,
+ { 4, 8881, 29, 4, 4, UNI_ARAB } /* isarabic */,
+ { 1, 185, 4849, 2, 15, UNI_MERC } /* ismeroiticcursive */,
+ { 6, 10253, 8413, 4, 7, UNI_LB__LF } /* lb=linefeed */,
+ { 1, 9691, 8649, 4, 7, UNI_INKANNADA } /* blk=kannada */,
+ { 1, 8444, 3, 8, 1, -UNI_RADICAL } /* radical=f */,
+ { 5, 6083, 9631, 13, 4, UNI_NV__3_SLASH_80 } /* numericvalue=3/80 */,
+ { 6, 185, 340, 2, 2, UNI_LO } /* islo */,
+ { 9, 8782, 6302, 7, 4, UNI_HEBR } /* script=hebr */,
+ { 0, 8782, 8811, 8, 6, UNI_SOYO } /* script=soyombo */,
+ { 1, 9691, 7211, 5, 9, UNI_ASCII } /* blk=basiclatin */,
{ 0, 3365, 0, 8, 0, UNI_DINGBATS } /* dingbats */,
- { 0, 10268, 7947, 3, 2, UNI_NV__21 } /* nv=21 */,
- { 1, 3391, 0, 18, 0, UNI_patws_values_index } /* patternwhitespace= */,
- { 11, 9735, 0, 4, 0, UNI_cwu_values_index } /* cwu= */,
- { 1, 10268, 9579, 3, 4, UNI_NV__1_SLASH_80 } /* nv=1/80 */,
- { 1, 21, 7745, 2, 9, UNI_LATINEXTF } /* inlatinextf */,
- { 1, 9461, 50, 3, 2, UNI_SB__AT } /* sb=at */,
- { 0, 185, 3068, 3, 17, UNI_HALFMARKS } /* iscombininghalfmarks */,
- { 0, 8845, 0, 7, 0, UNI_TAVT } /* taiviet */,
- { 0, 3553, 9454, 18, 5, -UNI_VS } /* variationselector=false */,
- { 0, 10402, 436, 6, 5, UNI__PERL_NCHAR } /* _perl_nchar */,
- { 1, 10244, 5810, 3, 13, UNI_ME } /* gc=enclosingmark */,
- { 1, 3877, 9534, 17, 4, UNI_TAKR } /* scriptextensions=takr */,
- { 0, 10268, 8108, 3, 8, UNI_NV__9_SLASH_2 } /* nv=4.50e+00 */,
- { 24, 10217, 3814, 3, 3, UNI_BC__RLI } /* bc=rli */,
- { 0, 7560, 0, 10, 0, UNI_upper_values_index } /* uppercase= */,
- { 0, 21, 4170, 2, 16, UNI_LATIN1 } /* inlatin1supplement */,
- { 0, 185, 6731, 3, 10, UNI_CPMN } /* iscyprominoan */,
- { 0, 909, 0, 14, 0, UNI_PUA } /* privateusearea */,
- { 1, 185, 1815, 3, 20, UNI_CWCM } /* ischangeswhencasemapped */,
- { 0, 7160, 2333, 3, 20, UNI_YIJING } /* isyijinghexagramsymbols */,
- { 9, 10516, 7845, 3, 8, UNI_PALM } /* ispalmyrene */,
- { 9, 10109, 5062, 5, 12, UNI_INZANABAZARSQUARE } /* inzanabazarsquare */,
- { 1, 9476, 8468, 3, 8, UNI_SC__TAGB } /* sc=tagbanwa */,
- { 0, 9691, 2708, 4, 19, UNI_INEGYPTIANHIEROGLYPHS } /* blk=egyptianhieroglyphs */,
- { 1, 9476, 6290, 3, 12, UNI_SC__GONG } /* sc=gunjalagondi */,
- { 0, 952, 0, 28, 0, UNI_VSSUP } /* variationselectorssupplement */,
- { 1, 21, 9093, 2, 6, UNI_INKAITHI } /* inkaithi */,
- { 0, 7570, 0, 10, 0, UNI_WARA } /* warangciti */,
- { 12, 1678, 0, 23, 0, UNI_LATINEXTADDITIONAL } /* latinextendedadditional */,
- { 2, 10398, 0, 2, 0, UNI_ZP } /* zp */,
- { 1, 9927, 3, 4, 1, -UNI_PCM } /* pcm=f */,
- { 0, 9711, 8119, 4, 1, UNI_CCC__9 } /* ccc=9 */,
- { 0, 5093, 26, 9, 1, UNI_XPOSIXXDIGIT } /* hexdigit=y */,
- { 13, 6338, 1026, 12, 2, -UNI_JOINC } /* joincontrol=no */,
- { 1, 9476, 7104, 3, 4, UNI_SC__SYLO } /* sc=sylo */,
- { 0, 9647, 8119, 4, 1, UNI_AGE__9 } /* age=9 */,
- { 3, 9979, 8656, 4, 7, UNI_KALI } /* scx=kayahli */,
- { 2, 8702, 812, 4, 20, UNI_ENCLOSEDIDEOGRAPHICSUP } /* inenclosedideographicsup */,
- { 0, 9711, 10145, 4, 3, UNI_CCC__BL } /* ccc=218 */,
- { 0, 9979, 6972, 4, 11, UNI_NAND } /* scx=nandinagari */,
- { 6, 9691, 6218, 4, 12, UNI_CYRILLICEXTC } /* blk=cyrillicextc */,
- { 3, 9691, 2311, 4, 21, UNI_SINHALAARCHAICNUMBERS } /* blk=sinhalaarchaicnumbers */,
- { 1, 10247, 7340, 3, 10, UNI_JG__KNOTTEDHEH } /* jg=knottedheh */,
- { 1, 8782, 9679, 7, 4, UNI_AVST } /* script=avst */,
+ { 32, 3877, 9081, 17, 4, UNI_HATR } /* scriptextensions=hatr */,
+ { 3, 3877, 9519, 17, 5, UNI_OSGE } /* scriptextensions=osage */,
+ { 0, 2206, 0, 21, 0, UNI_gcb_values_index } /* graphemeclusterbreak= */,
+ { 8, 9711, 8988, 4, 3, UNI_CCC__103 } /* ccc=103 */,
+ { 3, 2784, 5717, 19, 2, UNI_LB__H2 } /* hangulsyllabletype=lv */,
+ { 9, 9647, 10337, 4, 3, UNI_AGE__7 } /* age=v70 */,
+ { 3, 10253, 10378, 3, 2, UNI_LB__H2 } /* lb=h2 */,
+ { 0, 118, 2250, 4, 19, UNI_ININSCRIPTIONALPARTHIAN } /* ininscriptionalparthian */,
+ { 11, 3121, 0, 18, 0, UNI_dt_values_index } /* decompositiontype= */,
+ { 0, 6083, 5732, 13, 6, UNI_NV__100000 } /* numericvalue=100000 */,
+ { 35, 6083, 8925, 13, 3, UNI_NV__500 } /* numericvalue=500 */,
+ { 1, 9647, 10211, 4, 3, UNI_AGE__9 } /* age=9.0 */,
+ { 4, 9476, 9667, 3, 4, UNI_ARMN } /* sc=armn */,
+ { 9, 6675, 1, 11, 1, -UNI_IDC } /* idcontinue=n */,
+ { 0, 8881, 7202, 4, 8, UNI_ARABICEXTB } /* isarabicextb */,
+ { 0, 2185, 1, 21, 1, -UNI_EXTPICT } /* extendedpictographic=n */,
+ { 2, 6083, 7932, 13, 8, UNI_NV__1_SLASH_8 } /* numericvalue=1.25e-01 */,
+ { 0, 9476, 8796, 3, 7, UNI_SHAW } /* sc=shavian */,
+ { 0, 9979, 8300, 4, 4, UNI_DUPL } /* scx=dupl */,
+ { 7, 9045, 0, 6, 0, UNI_cwkcf_values_index } /* cwkcf= */,
+ { 0, 10247, 757, 3, 3, UNI_JG__DAL } /* jg=dal */,
+ { 7, 8973, 9831, 6, 3, UNI_INLAO } /* block=lao */,
+ { 9, 1553, 5677, 10, 13, UNI_ZS } /* category=spaceseparator */,
+ { 0, 2312, 1196, 5, 23, UNI_HALFANDFULLFORMS } /* inhalfwidthandfullwidthforms */,
+ { 0, 1418, 8091, 24, 2, UNI_CCC__24 } /* canonicalcombiningclass=24 */,
+ { 0, 3877, 8691, 17, 4, UNI_MULT } /* scriptextensions=mult */,
+ { 2, 9979, 3049, 4, 8, UNI_CHER } /* scx=cherokee */,
+ { 0, 2304, 9924, 3, 3, UNI_OUGR } /* isougr */,
+ { 17, 8973, 10011, 6, 4, UNI_TAGS } /* block=tags */,
+ { 9, 8973, 8621, 6, 7, UNI_INGRANTHA } /* block=grantha */,
+ { 1, 251, 0, 33, 0, UNI_MISCMATHSYMBOLSA } /* miscellaneousmathematicalsymbolsa */,
+ { 0, 10268, 7940, 3, 8, UNI_NV__1_SLASH_80 } /* nv=1.25e-02 */,
+ { 0, 185, 2690, 3, 10, UNI_COUNTINGROD } /* iscountingrod */,
+ { 5, 185, 4282, 2, 16, UNI_MISCMATHSYMBOLSA } /* ismiscmathsymbolsa */,
+ { 0, 10553, 7434, 3, 3, UNI_SOGD } /* issogd */,
+ { 2, 5875, 7177, 13, 3, UNI_JG__FEH } /* joininggroup=feh */,
+ { 1, 5875, 7490, 13, 10, UNI_JG__REVERSEDPE } /* joininggroup=reversedpe */,
+ { 13, 2012, 0, 21, 0, UNI_LOE } /* logicalorderexception */,
+ { 2, 10226, 26, 3, 1, UNI_DI } /* di=y */,
+ { 7, 3335, 0, 3, 0, UNI_ALL } /* all */,
+ { 11, 10268, 8172, 3, 8, UNI_NV__1_SLASH_160 } /* nv=6.25e-03 */,
+ { 1, 8468, 0, 8, 0, UNI_TAGB } /* tagbanwa */,
+ { 0, 185, 479, 2, 31, UNI_MATHALPHANUM } /* ismathematicalalphanumericsymbols */,
+ { 0, 10247, 6271, 3, 7, UNI_JG__SEMKATH } /* jg=semkath */,
+ { 0, 3319, 0, 9, 0, UNI_LATINEXTA } /* latinexta */,
+ { 1, 8961, 26, 6, 1, UNI_BIDIC } /* bidic=y */,
+ { 9, 10229, 3463, 3, 5, UNI_DT__SML } /* dt=small */,
+ { 16, 9731, 1026, 4, 2, -UNI_CWT } /* cwt=no */,
+ { 0, 8887, 26, 7, 1, UNI_XPOSIXSPACE } /* wspace=y */,
+ { 15, 10268, 10184, 3, 3, UNI_NV__4_SLASH_5 } /* nv=4/5 */,
+ { 0, 9213, 1, 6, 1, -UNI_UIDEO } /* uideo=n */,
+ { 1, 8782, 0, 14, 0, UNI_SC__SHRD } /* script=sharada */,
+ { 1, 6083, 8907, 13, 2, UNI_NV__30 } /* numericvalue=30 */,
+ { 1, 5088, 0, 13, 0, UNI_POSIXXDIGIT } /* asciihexdigit */,
+ { 4, 9691, 9135, 4, 6, UNI_INLYDIAN } /* blk=lydian */,
{ 0, 3877, 8838, 17, 7, UNI_LANA } /* scriptextensions=taitham */,
- { 13, 4699, 10355, 15, 3, UNI_ECOMP } /* emojicomponent=yes */,
- { 1, 8859, 0, 7, 0, UNI_TIBT } /* tibetan */,
- { 8, 5116, 3, 14, 1, -UNI_CI } /* caseignorable=f */,
- { 9, 6340, 3657, 3, 16, UNI_CYRILLICEXTA } /* incyrillicextendeda */,
- { 0, 8803, 0, 4, 0, UNI_SIDD } /* sidd */,
- { 0, 10268, 8099, 3, 2, UNI_NV__14 } /* nv=14 */,
- { 0, 8782, 9294, 7, 5, UNI_SC__BUHD } /* script=buhid */,
- { 2, 1418, 2473, 24, 4, UNI_CCC__L } /* canonicalcombiningclass=left */,
- { 0, 6340, 6219, 3, 11, UNI_CYRILLICEXTC } /* incyrillicextc */,
- { 9, 2808, 1372, 4, 22, UNI_ARABICPFA } /* inarabicpresentationformsa */,
- { 0, 5875, 6398, 13, 12, UNI_JG__MALAYALAMBHA } /* joininggroup=malayalambha */,
- { 0, 8973, 479, 6, 31, UNI_MATHALPHANUM } /* block=mathematicalalphanumericsymbols */,
- { 2, 3355, 0, 18, 0, UNI_ORNAMENTALDINGBATS } /* ornamentaldingbats */,
- { 1, 7218, 1220, 3, 4, UNI_INBATAK } /* inbatak */,
- { 0, 7460, 9600, 10, 3, UNI_IN__3 } /* presentin=3.0 */,
- { 0, 3265, 0, 18, 0, UNI_GEORGIANSUP } /* georgiansupplement */,
- { 6, 9459, 36, 5, 1, UNI_IDSB } /* idsb=t */,
- { 11, 9979, 8508, 4, 8, UNI_VITH } /* scx=vithkuqi */,
- { 4, 8782, 8979, 7, 4, UNI_CARI } /* script=cari */,
- { 0, 8973, 4170, 6, 6, UNI_LATIN1 } /* block=latin1 */,
+ { 0, 3877, 3139, 17, 4, UNI_DEVA } /* scriptextensions=deva */,
+ { 9, 10508, 5096, 3, 5, UNI_XPOSIXXDIGIT } /* isxdigit */,
+ { 0, 185, 1724, 2, 23, UNI_SUPPUNCTUATION } /* issupplementalpunctuation */,
+ { 0, 10352, 139, 3, 2, UNI_WB__FO } /* wb=fo */,
+ { 0, 1588, 0, 1, 0, UNI_Z } /* z */,
+ { 0, 10244, 263, 3, 2, UNI_SM } /* gc=sm */,
+ { 13, 7370, 0, 10, 0, UNI_lower_values_index } /* lowercase= */,
+ { 14, 9803, 6650, 4, 12, UNI_GCB__T } /* hst=trailingjamo */,
+ { 2, 9691, 8859, 4, 7, UNI_INTIBETAN } /* blk=tibetan */,
+ { 1, 9476, 8845, 3, 7, UNI_TAVT } /* sc=taiviet */,
+ { 0, 9819, 0, 4, 0, UNI_KNDA } /* knda */,
+ { 0, 7230, 4549, 10, 15, UNI_BC__CS } /* bidiclass=commonseparator */,
+ { 0, 9190, 0, 5, 0, UNI_term_values_index } /* term= */,
+ { 3, 9691, 7280, 4, 10, UNI_COMPATJAMO } /* blk=compatjamo */,
+ { 2, 6842, 3625, 5, 14, UNI_INCAUCASIANALBANIAN } /* incaucasianalbanian */,
+ { 0, 8782, 6518, 7, 12, UNI_MEND } /* script=mendekikakui */,
+ { 1, 6350, 36, 12, 1, UNI_JT__T } /* joiningtype=t */,
+ { 21, 6083, 10196, 13, 3, UNI_NV__5_SLASH_8 } /* numericvalue=5/8 */,
+ { 27, 9476, 9851, 3, 4, UNI_MEDF } /* sc=medf */,
+ { 12, 10268, 7988, 3, 8, UNI_NV__3_SLASH_16 } /* nv=1.88e-01 */,
+ { 2, 8782, 8663, 7, 7, UNI_SC__LINA } /* script=lineara */,
+ { 1, 1189, 4985, 3, 7, UNI_TAMILSUP } /* intamilsup */,
+ { 1, 3157, 10055, 18, 4, UNI_EBASE } /* emojimodifierbase=true */,
+ { 1, 3877, 4534, 17, 4, UNI_BRAI } /* scriptextensions=brai */,
+ { 1, 10396, 0, 2, 0, UNI_ZL } /* zl */,
+ { 0, 79, 0, 6, 0, UNI_ARAB } /* arabic */,
+ { 4, 7460, 7990, 10, 1, UNI_IN__8 } /* presentin=8 */,
+ { 5, 2304, 1062, 3, 26, UNI_OCR } /* isopticalcharacterrecognition */,
+ { 0, 9691, 4984, 4, 8, UNI_TAMILSUP } /* blk=tamilsup */,
+ { 1, 10232, 8, 3, 1, UNI_EA__A } /* ea=a */,
+ { 0, 1538, 2579, 24, 6, UNI_INPC__BOTTOM } /* indicpositionalcategory=bottom */,
+ { 4, 9504, 0, 5, 0, UNI_NSHU } /* nushu */,
+ { 16, 909, 0, 14, 0, UNI_PUA } /* privateusearea */,
+ { 32, 7300, 10055, 10, 4, UNI_DIA } /* diacritic=true */,
+ { 1, 9691, 630, 4, 30, UNI_CJKEXTE } /* blk=cjkunifiedideographsextensione */,
+ { 0, 9476, 9935, 3, 4, UNI_PHNX } /* sc=phnx */,
+ { 7, 1538, 5044, 24, 15, UNI_LOE } /* indicpositionalcategory=visualorderleft */,
+ { 3, 728, 0, 2, 0, UNI_MN } /* mn */,
+ { 9, 7467, 10337, 3, 3, UNI_IN__7 } /* in=v70 */,
+ { 9, 3877, 9699, 17, 4, UNI_BUHD } /* scriptextensions=buhd */,
+ { 1, 9979, 9207, 4, 4, UNI_THAA } /* scx=thaa */,
+ { 0, 8973, 8260, 6, 8, UNI_INARMENIAN } /* block=armenian */,
+ { 2, 9847, 1, 4, 1, -UNI_LOE } /* loe=n */,
+ { 49, 2593, 3528, 20, 7, UNI_VO__R } /* verticalorientation=rotated */,
+ { 8, 8973, 721, 7, 15, UNI_CUNEIFORMNUMBERS } /* block=cuneiformnumbers */,
+ { 1, 43, 0, 36, 0, UNI_CJKCOMPATIDEOGRAPHSSUP } /* cjkcompatibilityideographssupplement */,
+ { 5, 185, 9963, 2, 4, UNI_ROHG } /* isrohg */,
+ { 8, 8782, 7072, 8, 10, UNI_SORA } /* script=sorasompeng */,
+ { 0, 9434, 10055, 5, 4, UNI_CWCM } /* cwcm=true */,
+ { 0, 9476, 2632, 3, 6, UNI_BRAH } /* sc=brahmi */,
+ { 1, 9979, 5940, 4, 9, UNI_MLYM } /* scx=malayalam */,
+ { 0, 10247, 5452, 3, 14, UNI_JG__MANICHAEANKAPH } /* jg=manichaeankaph */,
+ { 3, 6083, 8943, 13, 3, UNI_NV__800 } /* numericvalue=800 */,
+ { 7, 185, 7790, 2, 9, UNI_TALU } /* isnewtailue */,
+ { 8, 1418, 9395, 25, 4, UNI_CCC__33 } /* canonicalcombiningclass=ccc33 */,
+ { 1, 9735, 36, 4, 1, UNI_CWU } /* cwu=t */,
+ { 11, 9979, 4534, 4, 4, UNI_BRAI } /* scx=brai */,
+ { 1, 2206, 126, 21, 2, UNI_LB__CR } /* graphemeclusterbreak=cr */,
+ { 0, 185, 2269, 2, 21, UNI_MEETEIMAYEKEXT } /* ismeeteimayekextensions */,
+ { 2, 7297, 1656, 3, 22, UNI_COMPATJAMO } /* ishangulcompatibilityjamo */,
+ { 0, 10553, 3936, 3, 3, UNI_SGNW } /* issgnw */,
+ { 1, 8973, 810, 6, 29, UNI_ENCLOSEDIDEOGRAPHICSUP } /* block=enclosedideographicsupplement */,
+ { 0, 10244, 1288, 3, 2, UNI_UPPERCASELETTER } /* gc=lu */,
+ { 12, 10247, 5424, 3, 14, UNI_JG__MANICHAEANFIVE } /* jg=manichaeanfive */,
+ { 5, 9691, 9534, 4, 5, UNI_INTAKRI } /* blk=takri */,
+ { 5, 185, 5214, 2, 14, UNI_INGREEK } /* isgreekandcoptic */,
+ { 0, 185, 7745, 2, 9, UNI_LATINEXTF } /* islatinextf */,
+ { 1, 8973, 8845, 6, 7, UNI_INTAIVIET } /* block=taiviet */,
+ { 0, 3877, 2164, 17, 8, UNI_CYRL } /* scriptextensions=cyrillic */,
+ { 3, 9177, 0, 5, 0, UNI_QMARK } /* qmark */,
+ { 1, 185, 8607, 2, 4, UNI_ELBA } /* iselba */,
+ { 6, 5550, 10355, 14, 3, UNI_NFDQC__Y } /* nfdquickcheck=yes */,
+ { 9, 21, 9093, 2, 6, UNI_INKAITHI } /* inkaithi */,
+ { 1, 9476, 7, 3, 18, UNI_CANS } /* sc=canadianaboriginal */,
+ { 6, 7908, 10055, 8, 4, UNI_IDS } /* idstart=true */,
+ { 8, 9979, 8537, 4, 7, UNI_BENG } /* scx=bengali */,
+ { 1, 8973, 631, 7, 29, UNI_CJKEXTE } /* block=cjkunifiedideographsextensione */,
+ { 0, 8782, 0, 7, 0, UNI_sc_values_index } /* script= */,
+ { 1, 9476, 7071, 3, 11, UNI_SORA } /* sc=sorasompeng */,
+ { 0, 10223, 36, 3, 1, UNI_CI } /* ci=t */,
+ { 0, 8973, 1678, 6, 14, UNI_LATINEXTA } /* block=latinextendeda */,
+ { 1, 7500, 0, 10, 0, UNI_SAUR } /* saurashtra */,
+ { 0, 5888, 0, 13, 0, UNI_KANAEXTA } /* kanaextendeda */,
+ { 0, 8782, 9871, 7, 3, UNI_MRO } /* script=mro */,
+ { 6, 9691, 1595, 4, 14, UNI_MUSIC } /* blk=musicalsymbols */,
+ { 0, 8973, 8684, 6, 7, UNI_INMARCHEN } /* block=marchen */,
+ { 0, 8973, 2353, 6, 20, UNI_INANATOLIANHIEROGLYPHS } /* block=anatolianhieroglyphs */,
+ { 0, 9691, 9129, 4, 6, UNI_INLYCIAN } /* blk=lycian */,
+ { 0, 1418, 3596, 24, 9, UNI_CCC__BL } /* canonicalcombiningclass=belowleft */,
+ { 2, 9474, 3994, 5, 16, UNI_INSC__CANTILLATIONMARK } /* insc=cantillationmark */,
+ { 0, 6340, 4043, 3, 15, UNI_CYPRIOTSYLLABARY } /* incypriotsyllabary */,
+ { 0, 114, 0, 35, 0, UNI_DIACRITICALSFORSYMBOLS } /* combiningdiacriticalmarksforsymbols */,
+ { 0, 10510, 5095, 6, 6, UNI_XPOSIXXDIGIT } /* xposixxdigit */,
+ { 1, 2206, 10394, 21, 2, UNI_GCB__XX } /* graphemeclusterbreak=xx */,
+ { 12, 9979, 9105, 4, 6, UNI_KHOJ } /* scx=khojki */,
+ { 2, 9691, 9504, 4, 5, UNI_INNUSHU } /* blk=nushu */,
+ { 0, 6083, 5732, 13, 5, UNI_NV__10000 } /* numericvalue=10000 */,
+ { 0, 3121, 2304, 18, 3, UNI_DT__ISO } /* decompositiontype=iso */,
+ { 2, 2304, 7432, 4, 8, UNI_SOGO } /* isoldsogdian */,
+ { 0, 9691, 5836, 4, 8, UNI_GREEKEXT } /* blk=greekext */,
+ { 0, 9979, 9667, 4, 4, UNI_ARMN } /* scx=armn */,
+ { 0, 4699, 1, 15, 1, -UNI_ECOMP } /* emojicomponent=n */,
+ { 2, 10244, 207, 3, 2, UNI_PI } /* gc=pi */,
+ { 1, 10511, 97, 5, 5, UNI_POSIXALPHA } /* posixalpha */,
+ { 0, 5875, 9554, 13, 5, UNI_JG__ZHAIN } /* joininggroup=zhain */,
+ { 2, 185, 8684, 2, 7, UNI_MARC } /* ismarchen */,
+ { 0, 32, 0, 2, 0, UNI__PERL_SURROGATE } /* cs */,
+ { 0, 7560, 26, 10, 1, UNI_XPOSIXUPPER } /* uppercase=y */,
+ { 0, 3448, 1, 3, 42, UNI_UCASEXTA } /* inunifiedcanadianaboriginalsyllabicsextendeda */,
+ { 0, 8782, 9767, 7, 4, UNI_SC__GONG } /* script=gong */,
+ { 1, 9476, 4504, 3, 5, UNI_BAMU } /* sc=bamum */,
+ { 3, 21, 8388, 2, 8, UNI_INJAVANESE } /* injavanese */,
+ { 4, 1418, 9000, 24, 3, UNI_CCC__118 } /* canonicalcombiningclass=118 */,
+ { 3, 10244, 7550, 3, 10, UNI_CN } /* gc=unassigned */,
+ { 14, 8782, 5940, 7, 9, UNI_SC__MLYM } /* script=malayalam */,
+ { 0, 9691, 8565, 4, 7, UNI_CJKEXTD } /* blk=cjkextd */,
+ { 1, 185, 868, 2, 11, UNI_PHONETICEXT } /* isphoneticext */,
+ { 1, 8973, 3571, 6, 17, UNI_ALCHEMICAL } /* block=alchemicalsymbols */,
+ { 1, 6206, 0, 12, 0, UNI_CYRILLICEXTB } /* cyrillicextb */,
+ { 2, 8740, 0, 7, 0, UNI_OLCK } /* olchiki */,
+ { 3, 10268, 7950, 3, 1, UNI_NV__4 } /* nv=4 */,
+ { 0, 6083, 8102, 13, 2, UNI_NV__17 } /* numericvalue=17 */,
+ { 0, 8881, 1753, 3, 2, UNI_ANY } /* isany */,
+ { 3, 9476, 8614, 3, 4, UNI_ELYM } /* sc=elym */,
+ { 1, 9691, 8600, 4, 7, UNI_DSRT } /* blk=deseret */,
+ { 0, 5875, 4819, 13, 15, UNI_JG__MANICHAEANSADHE } /* joininggroup=manichaeansadhe */,
+ { 0, 8973, 8817, 6, 7, UNI_SUPPUAA } /* block=suppuaa */,
+ { 0, 7360, 6708, 10, 11, UNI_LB__BB } /* linebreak=breakbefore */,
+ { 0, 185, 5256, 2, 14, UNI_KANASUP } /* iskanasupplement */,
+ { 0, 1538, 62, 3, 4, UNI_INDOGRA } /* indogra */,
+ { 3, 21, 5746, 3, 12, UNI_AEGEANNUMBERS } /* inaegeannumbers */,
+ { 0, 1418, 9402, 24, 2, UNI_CCC__34 } /* canonicalcombiningclass=34 */,
+ { 0, 2248, 8825, 3, 6, UNI_SUPPUAB } /* insuppuab */,
+ { 0, 1880, 1, 22, 1, -UNI_CWU } /* changeswhenuppercased=n */,
+ { 0, 10268, 8036, 3, 8, UNI_NV__1_SLASH_32 } /* nv=3.12e-02 */,
+ { 1, 9476, 9779, 3, 4, UNI_SC__GUJR } /* sc=gujr */,
+ { 2, 9691, 8775, 4, 7, UNI_INPHAGSPA } /* blk=phagspa */,
+ { 4, 3877, 10000, 18, 3, UNI_SHRD } /* scriptextensions=shrd */,
+ { 8, 8782, 1219, 7, 8, UNI_SC__KANA } /* script=katakana */,
+ { 0, 9213, 10055, 6, 4, UNI_UIDEO } /* uideo=true */,
+ { 1, 9979, 7570, 4, 4, UNI_WARA } /* scx=wara */,
+ { 0, 8973, 9294, 6, 5, UNI_INBUHID } /* block=buhid */,
+ { 0, 8593, 1026, 7, 2, -UNI_COMPEX } /* compex=no */,
+ { 11, 7460, 7995, 10, 2, UNI_IN__12 } /* presentin=12 */,
+ { 2, 3877, 7808, 17, 9, UNI_ITAL } /* scriptextensions=olditalic */,
+ { 0, 9476, 9879, 3, 4, UNI_SC__MYMR } /* sc=mymr */,
+ { 4, 9691, 9105, 4, 6, UNI_INKHOJKI } /* blk=khojki */,
+ { 1, 9691, 7330, 4, 10, UNI_INKHAROSHTHI } /* blk=kharoshthi */,
+ { 0, 1814, 9454, 22, 5, -UNI_CWCM } /* changeswhencasemapped=false */,
+ { 0, 8973, 2879, 6, 19, UNI_MONGOLIANSUP } /* block=mongoliansupplement */,
+ { 1, 185, 10523, 2, 5, UNI_XPOSIXBLANK } /* isblank */,
+ { 2, 9057, 9454, 6, 5, -UNI_EMOJI } /* emoji=false */,
+ { 0, 10553, 8818, 3, 6, UNI_SUPPUAA } /* issuppuaa */,
+ { 1, 9474, 6572, 5, 6, UNI_LB__ZWJ } /* insc=joiner */,
+ { 1, 5536, 10355, 14, 3, UNI_NFCQC__Y } /* nfcquickcheck=yes */,
+ { 4, 9476, 8508, 3, 8, UNI_VITH } /* sc=vithkuqi */,
+ { 0, 5875, 8852, 13, 7, UNI_JG__THINYEH } /* joininggroup=thinyeh */,
+ { 0, 8973, 3809, 6, 17, UNI_LETTERLIKESYMBOLS } /* block=letterlikesymbols */,
+ { 2, 1274, 26, 21, 1, UNI_CE } /* compositionexclusion=y */,
+ { 0, 4972, 10044, 3, 3, UNI_TIBT } /* istibt */,
+ { 3, 9711, 10148, 4, 3, UNI_CCC__BR } /* ccc=222 */,
{ 0, 9735, 1026, 4, 2, -UNI_CWU } /* cwu=no */,
- { 0, 8782, 9529, 7, 5, UNI_SC__TALE } /* script=taile */,
- { 0, 4972, 9196, 3, 5, UNI_TNSA } /* istangsa */,
- { 1, 9691, 4170, 4, 9, UNI_LATIN1 } /* blk=latin1sup */,
- { 0, 21, 7570, 2, 10, UNI_INWARANGCITI } /* inwarangciti */,
- { 1, 6340, 3050, 3, 7, UNI_INCHEROKEE } /* incherokee */,
- { 0, 6083, 8196, 13, 8, UNI_NV__15_SLASH_2 } /* numericvalue=7.50e+00 */,
+ { 0, 4074, 27, 16, 2, UNI_LOWERCASELETTER } /* generalcategory=ll */,
+ { 2, 8973, 9105, 6, 6, UNI_INKHOJKI } /* block=khojki */,
+ { 2, 9691, 1902, 4, 19, UNI_CJKCOMPATIDEOGRAPHS } /* blk=cjkcompatideographs */,
+ { 0, 7060, 26, 11, 1, UNI_SD } /* softdotted=y */,
+ { 1, 7360, 9764, 10, 2, UNI_LB__CB } /* linebreak=cb */,
+ { 3, 7580, 4401, 10, 9, UNI_WB__EB } /* wordbreak=emodifier */,
+ { 9, 185, 3104, 3, 17, UNI_COPTICEPACTNUMBERS } /* iscopticepactnumbers */,
+ { 21, 8973, 10083, 6, 3, UNI_INVAI } /* block=vai */,
+ { 0, 3121, 46, 18, 6, UNI_DT__COM } /* decompositiontype=compat */,
+ { 2, 7300, 36, 10, 1, UNI_DIA } /* diacritic=t */,
+ { 0, 8782, 9069, 7, 4, UNI_GOTH } /* script=goth */,
+ { 0, 185, 1747, 2, 23, UNI_ZNAMENNYMUSIC } /* isznamennymusicalnotation */,
+ { 0, 1418, 9320, 25, 4, UNI_CCC__18 } /* canonicalcombiningclass=ccc18 */,
+ { 0, 6083, 9611, 13, 4, UNI_NV__15_SLASH_2 } /* numericvalue=15/2 */,
+ { 0, 10560, 1775, 3, 2, UNI_VAI } /* isvai */,
+ { 8, 9711, 7220, 4, 10, UNI_CCC__BR } /* ccc=belowright */,
+ { 4, 4714, 1026, 15, 2, -UNI_GREXT } /* graphemeextend=no */,
+ { 1, 6083, 8179, 13, 2, UNI_NV__36 } /* numericvalue=36 */,
+ { 5, 8973, 7736, 6, 9, UNI_LATINEXTD } /* block=latinextd */,
+ { 0, 9474, 4564, 5, 15, UNI_INSC__CONSONANTKILLER } /* insc=consonantkiller */,
+ { 0, 49, 0, 1, 0, UNI_P } /* p */,
+ { 5, 3877, 9947, 17, 4, UNI_COPT } /* scriptextensions=qaac */,
+ { 1, 9461, 1195, 3, 2, UNI_LB__LF } /* sb=lf */,
+ { 0, 9476, 9484, 3, 4, UNI_SC__LIMB } /* sc=limb */,
+ { 7, 3193, 0, 4, 0, UNI_ETHI } /* ethi */,
+ { 36, 9476, 9129, 3, 6, UNI_LYCI } /* sc=lycian */,
+ { 2, 185, 9959, 2, 4, UNI_RJNG } /* isrjng */,
+ { 3, 8973, 3707, 6, 17, UNI_ETHIOPICEXTA } /* block=ethiopicextendeda */,
+ { 4, 6674, 0, 11, 0, UNI_XIDC } /* xidcontinue */,
+ { 6, 10516, 0, 4, 0, UNI_PO } /* ispo */,
+ { 16, 6083, 8949, 13, 6, UNI_NV__900000 } /* numericvalue=900000 */,
+ { 28, 2248, 8453, 3, 7, UNI_SPECIALS } /* inspecials */,
+ { 23, 4714, 1, 15, 1, -UNI_GREXT } /* graphemeextend=n */,
+ { 10, 5093, 9454, 9, 5, -UNI_XPOSIXXDIGIT } /* hexdigit=false */,
+ { 5, 8782, 9839, 7, 4, UNI_SC__LINA } /* script=lina */,
+ { 40, 9763, 5669, 4, 2, UNI_WB__EB } /* gcb=eb */,
+ { 0, 9476, 9201, 3, 4, UNI_SC__TELU } /* sc=telu */,
+ { 1, 7460, 7934, 10, 1, UNI_IN__2 } /* presentin=2 */,
+ { 8, 6083, 9612, 13, 3, UNI_NV__5_SLASH_2 } /* numericvalue=5/2 */,
+ { 0, 9476, 9831, 3, 3, UNI_LAO } /* sc=lao */,
+ { 0, 8444, 0, 8, 0, UNI_radical_values_index } /* radical= */,
{ 0, 4074, 46, 16, 2, UNI_CO } /* generalcategory=co */,
- { 6, 2553, 26, 20, 1, UNI_TERM } /* terminalpunctuation=y */,
- { 2, 9691, 2879, 4, 19, UNI_MONGOLIANSUP } /* blk=mongoliansupplement */,
- { 6, 185, 9863, 2, 4, UNI_MIAO } /* ismiao */,
- { 13, 1770, 0, 23, 0, UNI_BPT__C } /* bidipairedbrackettype=c */,
- { 0, 10352, 7763, 3, 9, UNI_WB__ML } /* wb=midletter */,
- { 11, 9469, 2579, 5, 14, UNI_INPC__BOTTOMANDRIGHT } /* inpc=bottomandright */,
- { 0, 9550, 1, 4, 1, -UNI_IDS } /* ids=n */,
- { 2, 6340, 721, 3, 29, UNI_CUNEIFORMNUMBERS } /* incuneiformnumbersandpunctuation */,
- { 14, 8973, 7781, 6, 9, UNI_INNABATAEAN } /* block=nabataean */,
- { 0, 9691, 952, 4, 28, UNI_VSSUP } /* blk=variationselectorssupplement */,
- { 0, 185, 8292, 2, 8, UNI_BUGI } /* isbuginese */,
- { 11, 9476, 9723, 3, 4, UNI_SC__CPRT } /* sc=cprt */,
- { 0, 10247, 9554, 3, 5, UNI_JG__ZHAIN } /* jg=zhain */,
- { 0, 8973, 9831, 6, 3, UNI_INLAO } /* block=lao */,
- { 0, 1418, 9010, 25, 5, UNI_CCC__129 } /* canonicalcombiningclass=ccc129 */,
- { 0, 3945, 1, 17, 1, -UNI_UIDEO } /* unifiedideograph=n */,
- { 2, 185, 3157, 2, 5, UNI_EMOJI } /* isemoji */,
- { 8, 7467, 9599, 3, 4, UNI_IN__13 } /* in=13.0 */,
- { 0, 8782, 3193, 7, 4, UNI_ETHI } /* script=ethi */,
- { 0, 7360, 7250, 10, 10, UNI_LB__BA } /* linebreak=breakafter */,
- { 0, 185, 2727, 2, 19, UNI_ENCLOSEDALPHANUMSUP } /* isenclosedalphanumsup */,
- { 1, 9476, 9655, 3, 4, UNI_AHOM } /* sc=ahom */,
- { 0, 3877, 9911, 17, 4, UNI_ORKH } /* scriptextensions=orkh */,
+ { 0, 9763, 36, 4, 1, UNI_GCB__T } /* gcb=t */,
+ { 1, 3877, 10083, 17, 3, UNI_VAI } /* scriptextensions=vai */,
+ { 2, 1418, 10145, 24, 3, UNI_CCC__BL } /* canonicalcombiningclass=218 */,
+ { 0, 3121, 1295, 18, 5, UNI_DT__SUP } /* decompositiontype=super */,
+ { 2, 9691, 9524, 4, 5, UNI_INRUNIC } /* blk=runic */,
+ { 0, 3877, 7018, 18, 3, UNI_SHAW } /* scriptextensions=shaw */,
+ { 0, 9691, 9444, 4, 5, UNI_INDOGRA } /* blk=dogra */,
+ { 1, 9691, 2433, 4, 20, UNI_GLAGOLITICSUP } /* blk=glagoliticsupplement */,
+ { 5, 1538, 2579, 24, 14, UNI_INPC__BOTTOMANDRIGHT } /* indicpositionalcategory=bottomandright */,
+ { 4, 8782, 8260, 7, 8, UNI_ARMN } /* script=armenian */,
+ { 0, 8782, 7, 7, 18, UNI_CANS } /* script=canadianaboriginal */,
+ { 5, 8973, 2332, 6, 6, UNI_YIJING } /* block=yijing */,
+ { 1, 7310, 0, 10, 0, UNI_DIAK } /* divesakuru */,
+ { 1, 3283, 3, 18, 1, -UNI_IDSB } /* idsbinaryoperator=f */,
+ { 0, 3398, 10055, 11, 4, UNI_XPOSIXSPACE } /* whitespace=true */,
+ { 0, 6083, 5732, 13, 7, UNI_NV__1000000 } /* numericvalue=1000000 */,
+ { 2, 9691, 3707, 4, 17, UNI_ETHIOPICEXTA } /* blk=ethiopicextendeda */,
+ { 4, 8782, 2493, 7, 20, UNI_HMNP } /* script=nyiakengpuachuehmong */,
{ 1, 3121, 3525, 18, 3, UNI_DT__MED } /* decompositiontype=med */,
- { 0, 9691, 6752, 4, 6, UNI_DOMINO } /* blk=domino */,
- { 10, 10402, 7908, 6, 7, UNI__PERL_IDSTART } /* _perl_idstart */,
- { 2, 3448, 8493, 3, 6, UNI_UCASEXT } /* inucasext */,
- { 3, 9691, 5059, 4, 15, UNI_INZANABAZARSQUARE } /* blk=zanabazarsquare */,
- { 1, 2248, 925, 3, 27, UNI_SUPPUAB } /* insupplementaryprivateuseareab */,
- { 4, 1528, 0, 9, 0, UNI__PERL_SURROGATE } /* surrogate */,
- { 1, 9727, 9454, 4, 5, -UNI_CWL } /* cwl=false */,
- { 5, 9691, 1935, 4, 11, UNI_NUMBERFORMS } /* blk=numberforms */,
- { 2, 9647, 9587, 4, 4, UNI_AGE__11 } /* age=11.0 */,
- { 0, 4699, 1, 15, 1, -UNI_ECOMP } /* emojicomponent=n */,
- { 0, 10560, 8509, 3, 7, UNI_VITH } /* isvithkuqi */,
- { 0, 8782, 8537, 7, 7, UNI_SC__BENG } /* script=bengali */,
- { 0, 9691, 8663, 4, 7, UNI_INLINEARA } /* blk=lineara */,
- { 1, 2242, 2494, 3, 19, UNI_INNYIAKENGPUACHUEHMONG } /* innyiakengpuachuehmong */,
- { 0, 1990, 7470, 22, 10, UNI_INSC__PUREKILLER } /* indicsyllabiccategory=purekiller */,
- { 2, 185, 6230, 2, 12, UNI_ETHIOPICEXTA } /* isethiopicexta */,
- { 0, 9691, 8260, 4, 8, UNI_INARMENIAN } /* blk=armenian */,
- { 0, 9691, 3571, 4, 17, UNI_ALCHEMICAL } /* blk=alchemicalsymbols */,
- { 3, 1014, 0, 5, 0, UNI_GREK } /* greek */,
- { 1, 10516, 0, 3, 0, UNI_P } /* isp */,
- { 8, 10268, 5732, 3, 13, UNI_NV__1000000000000 } /* nv=1000000000000 */,
- { 3, 8973, 8775, 6, 7, UNI_INPHAGSPA } /* block=phagspa */,
- { 0, 1990, 2670, 22, 19, UNI_INSC__CONSONANTHEADLETTER } /* indicsyllabiccategory=consonantheadletter */,
- { 8, 9474, 4458, 5, 16, UNI_INSC__VOWELINDEPENDENT } /* insc=vowelindependent */,
- { 2, 9803, 6070, 4, 13, UNI_HST__NA } /* hst=notapplicable */,
- { 1, 185, 4410, 2, 16, UNI_SYRIACSUP } /* issyriacsupplement */,
- { 2, 1418, 7220, 24, 10, UNI_CCC__BR } /* canonicalcombiningclass=belowright */,
- { 1, 185, 44, 3, 8, UNI_CJKCOMPAT } /* iscjkcompat */,
- { 0, 7460, 7550, 10, 10, UNI_AGE__NA } /* presentin=unassigned */,
- { 8, 7580, 3409, 10, 17, UNI_RI } /* wordbreak=regionalindicator */,
- { 0, 9476, 7817, 3, 9, UNI_SC__PERM } /* sc=oldpermic */,
- { 10, 9691, 4314, 4, 7, UNI_INMYANMAR } /* blk=myanmar */,
- { 1, 5758, 3, 13, 1, -UNI_BIDIM } /* bidimirrored=f */,
- { 3, 9476, 6593, 3, 4, UNI_HUNG } /* sc=hung */,
- { 2, 8973, 8845, 6, 7, UNI_INTAIVIET } /* block=taiviet */,
- { 0, 9979, 7072, 5, 10, UNI_SORA } /* scx=sorasompeng */,
- { 9, 9647, 7995, 4, 2, UNI_AGE__12 } /* age=12 */,
- { 0, 3826, 0, 4, 0, UNI_MANI } /* mani */,
- { 2, 10217, 408, 3, 2, UNI_BC__ON } /* bc=on */,
- { 1, 8955, 0, 6, 0, UNI_alpha_values_index } /* alpha= */,
- { 0, 570, 0, 30, 0, UNI_CJKEXTC } /* cjkunifiedideographsextensionc */,
- { 8, 3877, 4759, 17, 15, UNI_ARMI } /* scriptextensions=imperialaramaic */,
- { 6, 9727, 1, 4, 1, -UNI_CWL } /* cwl=n */,
- { 6, 7297, 5669, 3, 3, UNI_HEBR } /* ishebr */,
- { 0, 6937, 4302, 6, 12, UNI_MISCMATHSYMBOLSB } /* inmiscmathsymbolsb */,
- { 0, 9075, 9454, 6, 5, -UNI_GREXT } /* grext=false */,
- { 6, 6083, 10133, 13, 3, UNI_NV__1_SLASH_9 } /* numericvalue=1/9 */,
- { 0, 2312, 2767, 4, 17, UNI_JAMOEXTB } /* inhanguljamoextendedb */,
- { 1, 3877, 8276, 17, 4, UNI_BALI } /* scriptextensions=bali */,
- { 8, 5172, 1, 14, 1, -UNI_EMOD } /* emojimodifier=n */,
- { 0, 3877, 9129, 17, 4, UNI_LYCI } /* scriptextensions=lyci */,
- { 6, 9727, 10055, 4, 4, UNI_CWL } /* cwl=true */,
- { 17, 9711, 8998, 5, 5, UNI_CCC__118 } /* ccc=ccc118 */,
- { 4, 6083, 9575, 13, 4, UNI_NV__1_SLASH_64 } /* numericvalue=1/64 */,
- { 0, 8782, 7826, 7, 9, UNI_ORKH } /* script=oldturkic */,
- { 1, 1990, 6566, 22, 12, UNI_INSC__NUMBERJOINER } /* indicsyllabiccategory=numberjoiner */,
- { 2, 1990, 2868, 22, 10, UNI_INSC__TONELETTER } /* indicsyllabiccategory=toneletter */,
- { 0, 9711, 10160, 4, 3, UNI_CCC__A } /* ccc=230 */,
- { 0, 185, 9706, 2, 2, UNI_MC } /* ismc */,
- { 3, 8444, 10055, 8, 4, UNI_RADICAL } /* radical=true */,
- { 12, 9476, 5227, 3, 4, UNI_CHAM } /* sc=cham */,
- { 4, 9691, 8565, 4, 7, UNI_CJKEXTD } /* blk=cjkextd */,
- { 0, 3481, 0, 18, 0, UNI_TAIXUANJING } /* taixuanjingsymbols */,
- { 7, 9979, 7808, 4, 9, UNI_ITAL } /* scx=olditalic */,
- { 0, 4074, 10396, 16, 2, UNI_ZL } /* generalcategory=zl */,
- { 2, 10268, 8052, 3, 8, UNI_NV__1_SLASH_320 } /* nv=3.13e-03 */,
- { 2, 7580, 8698, 10, 7, UNI_WB__NL } /* wordbreak=newline */,
- { 2, 9987, 0, 4, 0, UNI_SGNW } /* sgnw */,
- { 17, 3877, 7434, 18, 6, UNI_SOGD } /* scriptextensions=sogdian */,
- { 0, 4157, 416, 3, 10, UNI_IDEO } /* isideographic */,
- { 0, 3265, 0, 4, 0, UNI_GEOR } /* geor */,
- { 24, 9476, 2493, 3, 20, UNI_HMNP } /* sc=nyiakengpuachuehmong */,
- { 1, 9647, 7924, 4, 3, UNI_IN__1_DOT_1 } /* age=1.1 */,
- { 0, 9525, 1184, 4, 3, UNI_ANY } /* unicode */,
- { 1, 10087, 0, 4, 0, UNI_WCHO } /* wcho */,
- { 1, 10229, 2593, 3, 8, UNI_DT__VERT } /* dt=vertical */,
- { 4, 4154, 953, 3, 17, UNI_INVS } /* invariationselectors */,
- { 6, 9476, 2584, 3, 4, UNI_SC__MAND } /* sc=mand */,
- { 2, 9647, 10075, 4, 4, UNI_AGE__13 } /* age=v130 */,
- { 0, 2803, 0, 4, 0, UNI_IDST } /* idst */,
- { 0, 8973, 2433, 6, 10, UNI_INGLAGOLITIC } /* block=glagolitic */,
- { 0, 10352, 1219, 3, 8, UNI_WB__KA } /* wb=katakana */,
- { 1, 7218, 9295, 3, 4, UNI_INBUHID } /* inbuhid */,
- { 10, 4699, 9454, 15, 5, -UNI_ECOMP } /* emojicomponent=false */,
- { 3, 9545, 36, 4, 1, UNI_IDC } /* idc=t */,
- { 16, 6083, 8119, 13, 1, UNI_NV__9 } /* numericvalue=9 */,
- { 1, 6083, 10372, 13, 2, UNI_NV__49 } /* numericvalue=49 */,
- { 0, 3877, 4426, 17, 4, UNI_TANG } /* scriptextensions=tang */,
- { 1, 9474, 1245, 5, 9, UNI_INSC__CONSONANT } /* insc=consonant */,
- { 0, 10268, 7950, 3, 1, UNI_NV__4 } /* nv=4 */,
- { 0, 10250, 6, 3, 1, UNI_JT__D } /* jt=d */,
- { 1, 7230, 25, 10, 1, UNI_BC__S } /* bidiclass=s */,
- { 1, 9691, 8691, 4, 7, UNI_INMULTANI } /* blk=multani */,
- { 0, 868, 0, 18, 0, UNI_PHONETICEXT } /* phoneticextensions */,
- { 2, 8782, 7105, 8, 3, UNI_SC__SYLO } /* script=sylo */,
- { 6, 9077, 9454, 4, 5, -UNI_EXT } /* ext=false */,
- { 24, 10247, 8852, 3, 7, UNI_JG__THINYEH } /* jg=thinyeh */,
- { 4, 8973, 6290, 6, 12, UNI_INGUNJALAGONDI } /* block=gunjalagondi */,
- { 0, 185, 8677, 2, 7, UNI_MAND } /* ismandaic */,
- { 4, 8340, 0, 8, 0, UNI_GUJR } /* gujarati */,
- { 1, 9647, 9596, 4, 3, UNI_AGE__2_DOT_1 } /* age=2.1 */,
- { 0, 185, 9444, 2, 5, UNI_DOGR } /* isdogra */,
- { 0, 1553, 6994, 9, 11, UNI_NO } /* category=othernumber */,
- { 0, 1418, 9387, 24, 2, UNI_CCC__31 } /* canonicalcombiningclass=31 */,
- { 3, 9647, 10325, 4, 3, UNI_AGE__6 } /* age=v60 */,
- { 10, 9461, 1195, 3, 2, UNI_LB__LF } /* sb=lf */,
- { 4, 7467, 10331, 3, 3, UNI_IN__6_DOT_2 } /* in=v62 */,
- { 4, 10510, 468, 6, 5, UNI_XPOSIXPUNCT } /* xposixpunct */,
- { 8, 3877, 7105, 18, 10, UNI_SYLO } /* scriptextensions=sylotinagri */,
- { 1, 3877, 8811, 18, 6, UNI_SOYO } /* scriptextensions=soyombo */,
- { 0, 3877, 9779, 17, 4, UNI_GUJR } /* scriptextensions=gujr */,
- { 9, 6083, 9579, 13, 4, UNI_NV__1_SLASH_80 } /* numericvalue=1/80 */,
- { 36, 8973, 4378, 6, 16, UNI_SUPMATHOPERATORS } /* block=supmathoperators */,
- { 4, 750, 0, 30, 0, UNI_ENCLOSEDALPHANUMSUP } /* enclosedalphanumericsupplement */,
- { 3, 8396, 0, 8, 0, UNI_KANAEXTA } /* kanaexta */,
- { 0, 185, 4298, 2, 16, UNI_MISCMATHSYMBOLSB } /* ismiscmathsymbolsb */,
- { 5, 1189, 8839, 3, 6, UNI_INTAITHAM } /* intaitham */,
- { 9, 6937, 862, 6, 6, UNI_MISCARROWS } /* inmiscarrows */,
- { 1, 9476, 9943, 3, 4, UNI_PRTI } /* sc=prti */,
- { 3, 3877, 8420, 17, 8, UNI_MAHJ } /* scriptextensions=mahajani */,
- { 1, 9476, 8420, 3, 8, UNI_SC__MAHJ } /* sc=mahajani */,
- { 1, 9979, 4534, 4, 7, UNI_BRAI } /* scx=braille */,
- { 4, 9691, 4505, 5, 14, UNI_BAMUMSUP } /* blk=bamumsupplement */,
- { 3, 185, 44, 3, 35, UNI_CJKCOMPATIDEOGRAPHSSUP } /* iscjkcompatibilityideographssupplement */,
- { 2, 10229, 46, 3, 6, UNI_DT__COM } /* dt=compat */,
- { 0, 185, 6518, 2, 4, UNI_MEND } /* ismend */,
- { 0, 10253, 6170, 3, 12, UNI_LB__SY } /* lb=breaksymbols */,
- { 0, 21, 9484, 2, 5, UNI_INLIMBU } /* inlimbu */,
- { 32, 4170, 0, 16, 0, UNI_LATIN1 } /* latin1supplement */,
- { 12, 10352, 5830, 3, 5, UNI_WB__EB } /* wb=ebase */,
- { 0, 8854, 9239, 4, 4, UNI_INYEZIDI } /* inyezidi */,
- { 1, 10268, 7995, 3, 2, UNI_NV__12 } /* nv=12 */,
- { 5, 10508, 3403, 8, 5, UNI_XPOSIXSPACE } /* isxposixspace */,
- { 0, 1538, 7312, 4, 8, UNI_INDIVESAKURU } /* indivesakuru */,
- { 1, 9979, 2164, 4, 8, UNI_CYRL } /* scx=cyrillic */,
- { 2, 8782, 6590, 7, 12, UNI_HUNG } /* script=oldhungarian */,
- { 3, 7844, 0, 9, 0, UNI_PALM } /* palmyrene */,
- { 0, 5823, 1, 13, 1, -UNI_GRBASE } /* graphemebase=n */,
- { 1, 1592, 8615, 3, 6, UNI_INELYMAIC } /* inelymaic */,
- { 10, 9269, 10355, 5, 3, UNI_POSIXXDIGIT } /* ahex=yes */,
- { 0, 9691, 4138, 4, 16, UNI_HIGHPUSURROGATES } /* blk=highpusurrogates */,
- { 3, 9979, 9819, 4, 4, UNI_KNDA } /* scx=knda */,
- { 1, 7460, 8156, 10, 3, UNI_IN__6_DOT_2 } /* presentin=6.2 */,
- { 0, 10217, 37, 3, 2, UNI_BC__EN } /* bc=en */,
- { 0, 6518, 0, 4, 0, UNI_MEND } /* mend */,
- { 1, 9476, 6928, 3, 11, UNI_MEDF } /* sc=medefaidrin */,
- { 3, 185, 1172, 2, 2, UNI_TITLE } /* islt */,
- { 0, 8838, 0, 7, 0, UNI_LANA } /* taitham */,
- { 0, 10244, 401, 3, 6, UNI_CF } /* gc=format */,
- { 0, 1553, 4286, 9, 10, UNI_SM } /* category=mathsymbol */,
- { 0, 10553, 7105, 3, 3, UNI_SYLO } /* issylo */,
- { 0, 5088, 0, 14, 0, UNI_ahex_values_index } /* asciihexdigit= */,
- { 3, 10352, 5948, 3, 2, UNI_WB__ML } /* wb=ml */,
- { 0, 4401, 0, 4, 0, UNI_EMOD } /* emod */,
- { 0, 3877, 8670, 17, 4, UNI_MAKA } /* scriptextensions=maka */,
- { 1, 9057, 26, 6, 1, UNI_EMOJI } /* emoji=y */,
- { 1, 3877, 8866, 17, 7, UNI_TIRH } /* scriptextensions=tirhuta */,
- { 7, 4074, 407, 16, 7, UNI_XPOSIXCNTRL } /* generalcategory=control */,
- { 0, 9691, 8530, 4, 7, UNI_INAVESTAN } /* blk=avestan */,
- { 0, 185, 2860, 2, 19, UNI_MODIFIERTONELETTERS } /* ismodifiertoneletters */,
- { 8, 10244, 1187, 3, 2, UNI_PO } /* gc=po */,
- { 1, 9919, 0, 4, 0, UNI_OSGE } /* osge */,
- { 1, 10268, 8907, 3, 6, UNI_NV__300000 } /* nv=300000 */,
- { 1, 8782, 4411, 8, 5, UNI_SC__SYRC } /* script=syriac */,
- { 2, 9691, 5888, 4, 13, UNI_KANAEXTA } /* blk=kanaextendeda */,
- { 0, 10268, 8937, 3, 4, UNI_NV__7000 } /* nv=7000 */,
- { 1, 9979, 3103, 4, 6, UNI_COPT } /* scx=coptic */,
- { 3, 9147, 0, 6, 0, UNI_nchar_values_index } /* nchar= */,
- { 2, 4074, 38, 16, 2, UNI_XPOSIXDIGIT } /* generalcategory=nd */,
- { 0, 3403, 1026, 6, 2, -UNI_XPOSIXSPACE } /* space=no */,
- { 1, 9270, 1026, 4, 2, -UNI_XPOSIXXDIGIT } /* hex=no */,
- { 4, 1553, 5096, 9, 5, UNI_XPOSIXDIGIT } /* category=digit */,
- { 1, 5830, 0, 6, 0, UNI_ebase_values_index } /* ebase= */,
- { 9, 5875, 7170, 13, 10, UNI_JG__AFRICANFEH } /* joininggroup=africanfeh */,
- { 3, 7467, 8212, 3, 3, UNI_IN__8 } /* in=8.0 */,
- { 0, 7159, 0, 11, 0, UNI_YISYLLABLES } /* yisyllables */,
- { 4, 8881, 6123, 3, 11, UNI_ALPHABETICPF } /* isalphabeticpf */,
- { 19, 9711, 9367, 4, 2, UNI_CCC__27 } /* ccc=27 */,
- { 5, 10349, 3, 3, 1, -UNI_VS } /* vs=f */,
- { 0, 1880, 3, 22, 1, -UNI_CWU } /* changeswhenuppercased=f */,
- { 2, 7360, 341, 10, 2, UNI_LB__OP } /* linebreak=op */,
- { 0, 7467, 10301, 3, 3, UNI_IN__3 } /* in=v30 */,
- { 1, 79, 0, 35, 0, UNI_ARABICMATH } /* arabicmathematicalalphabeticsymbols */,
- { 1, 10553, 45, 3, 1, UNI_SK } /* issk */,
- { 0, 5875, 5480, 13, 14, UNI_JG__MANICHAEANRESH } /* joininggroup=manichaeanresh */,
- { 2, 7460, 7950, 10, 1, UNI_IN__4 } /* presentin=4 */,
- { 6, 9979, 2632, 4, 6, UNI_BRAH } /* scx=brahmi */,
- { 6, 8973, 511, 7, 19, UNI_CJK } /* block=cjkunifiedideographs */,
- { 0, 7300, 10355, 10, 3, UNI_DIA } /* diacritic=yes */,
- { 1, 1586, 0, 23, 0, UNI_BYZANTINEMUSIC } /* byzantinemusicalsymbols */,
- { 0, 7460, 10325, 10, 3, UNI_IN__6 } /* presentin=v60 */,
- { 0, 9735, 36, 4, 1, UNI_CWU } /* cwu=t */,
- { 1, 4684, 1205, 15, 9, UNI_EA__F } /* eastasianwidth=fullwidth */,
- { 2, 9691, 9895, 4, 3, UNI_INNKO } /* blk=nko */,
- { 1, 185, 1588, 2, 1, UNI_Z } /* isz */,
- { 5, 9979, 4190, 5, 3, UNI_SARB } /* scx=sarb */,
- { 1, 10253, 6287, 3, 3, UNI_LB__ZWJ } /* lb=zwj */,
- { 1, 9476, 7655, 3, 9, UNI_BHKS } /* sc=bhaiksuki */,
- { 2, 9476, 8292, 3, 4, UNI_SC__BUGI } /* sc=bugi */,
- { 4, 9476, 10043, 3, 4, UNI_TIBT } /* sc=tibt */,
- { 0, 10349, 9454, 3, 5, -UNI_VS } /* vs=false */,
- { 2, 8782, 7434, 8, 6, UNI_SC__SOGD } /* script=sogdian */,
- { 12, 630, 0, 30, 0, UNI_CJKEXTE } /* cjkunifiedideographsextensione */,
- { 0, 185, 7520, 2, 10, UNI_SUPARROWSA } /* issuparrowsa */,
- { 0, 4157, 2804, 3, 3, UNI_IDST } /* isidst */,
- { 2, 8973, 868, 6, 18, UNI_PHONETICEXT } /* block=phoneticextensions */,
- { 0, 8782, 7817, 7, 9, UNI_SC__PERM } /* script=oldpermic */,
- { 0, 7460, 10067, 10, 4, UNI_IN__12 } /* presentin=v120 */,
- { 2, 3877, 9795, 17, 4, UNI_HMNG } /* scriptextensions=hmng */,
- { 3, 6529, 7431, 3, 9, UNI_INOLDSOGDIAN } /* inoldsogdian */,
- { 1, 9691, 3962, 4, 16, UNI_ARABICSUP } /* blk=arabicsupplement */,
- { 2, 6083, 9619, 13, 4, UNI_NV__3_SLASH_16 } /* numericvalue=3/16 */,
- { 2, 9691, 3724, 4, 17, UNI_ETHIOPICEXTB } /* blk=ethiopicextendedb */,
- { 0, 9429, 26, 5, 1, UNI_CWCF } /* cwcf=y */,
- { 0, 1553, 5677, 10, 13, UNI_ZS } /* category=spaceseparator */,
- { 8, 8973, 7200, 6, 10, UNI_ARABICEXTB } /* block=arabicextb */,
- { 3, 9819, 0, 4, 0, UNI_KNDA } /* knda */,
- { 2, 10352, 34, 3, 6, UNI_WB__EXTEND } /* wb=extend */,
- { 6, 185, 9683, 2, 4, UNI_BATK } /* isbatk */,
- { 1, 10244, 5797, 3, 13, UNI_XPOSIXDIGIT } /* gc=decimalnumber */,
- { 0, 5014, 0, 15, 0, UNI_UPPERCASELETTER } /* uppercaseletter */,
- { 5, 9489, 10055, 5, 4, UNI_MATH } /* math=true */,
+ { 1, 5875, 2661, 13, 3, UNI_JG__YEH } /* joininggroup=yeh */,
+ { 3, 8973, 3674, 7, 16, UNI_CYRILLICEXTB } /* block=cyrillicextendedb */,
+ { 4, 4187, 1971, 5, 19, UNI_EARLYDYNASTICCUNEIFORM } /* inearlydynasticcuneiform */,
+ { 1, 2269, 0, 14, 0, UNI_MEETEIMAYEKEXT } /* meeteimayekext */,
+ { 19, 4972, 1288, 4, 2, UNI_TELU } /* istelu */,
+ { 0, 8973, 3445, 6, 4, UNI_RUMI } /* block=rumi */,
+ { 10, 9691, 43, 4, 3, UNI_CJK } /* blk=cjk */,
+ { 1, 9063, 1, 6, 1, -UNI_EPRES } /* epres=n */,
+ { 36, 185, 2311, 2, 21, UNI_SINHALAARCHAICNUMBERS } /* issinhalaarchaicnumbers */,
+ { 9, 9476, 2493, 3, 20, UNI_HMNP } /* sc=nyiakengpuachuehmong */,
+ { 9, 5758, 9454, 13, 5, -UNI_BIDIM } /* bidimirrored=false */,
+ { 16, 3049, 0, 8, 0, UNI_CHER } /* cherokee */,
+ { 0, 2784, 24, 19, 1, UNI_GCB__L } /* hangulsyllabletype=l */,
+ { 0, 10247, 6693, 3, 4, UNI_JG__NOON } /* jg=noon */,
+ { 0, 9979, 10004, 5, 3, UNI_SOGO } /* scx=sogo */,
+ { 0, 4984, 0, 15, 0, UNI_TAMILSUP } /* tamilsupplement */,
+ { 0, 8768, 0, 7, 0, UNI_patsyn_values_index } /* patsyn= */,
+ { 9, 9469, 2479, 5, 5, UNI_INPC__RIGHT } /* inpc=right */,
+ { 1, 7908, 36, 8, 1, UNI_IDS } /* idstart=t */,
+ { 7, 7071, 0, 11, 0, UNI_SORA } /* sorasompeng */,
+ { 0, 6083, 9254, 13, 5, UNI_NV__1_SLASH_320 } /* numericvalue=1/320 */,
+ { 0, 7580, 73, 10, 2, UNI_WB__LE } /* wordbreak=le */,
+ { 0, 4074, 7550, 16, 10, UNI_CN } /* generalcategory=unassigned */,
+ { 5, 10352, 496, 3, 7, UNI_WB__NU } /* wb=numeric */,
+ { 9, 6578, 6001, 12, 4, UNI_NV__NAN } /* numerictype=none */,
+ { 0, 185, 2955, 2, 19, UNI_SUPARROWSA } /* issupplementalarrowsa */,
+ { 0, 9476, 8300, 3, 4, UNI_SC__DUPL } /* sc=dupl */,
+ { 3, 9979, 9751, 4, 4, UNI_DIAK } /* scx=diak */,
+ { 6, 8881, 6123, 3, 11, UNI_ALPHABETICPF } /* isalphabeticpf */,
+ { 16, 10268, 8925, 3, 6, UNI_NV__500000 } /* nv=500000 */,
+ { 5, 3877, 5634, 17, 14, UNI_PHLP } /* scriptextensions=psalterpahlavi */,
+ { 4, 6529, 9510, 3, 4, UNI_INOGHAM } /* inogham */,
+ { 1, 21, 9231, 2, 6, UNI_INWANCHO } /* inwancho */,
+ { 10, 1538, 3499, 24, 18, UNI_INPC__TOPANDLEFTANDRIGHT } /* indicpositionalcategory=topandleftandright */,
+ { 0, 8973, 571, 7, 29, UNI_CJKEXTC } /* block=cjkunifiedideographsextensionc */,
+ { 16, 4058, 0, 16, 0, UNI_PF } /* finalpunctuation */,
+ { 2, 1553, 2292, 9, 2, UNI_PD } /* category=pd */,
+ { 0, 2206, 10235, 21, 3, UNI_WB__EB } /* graphemeclusterbreak=ebg */,
+ { 2, 9691, 4426, 4, 16, UNI_TANGUTCOMPONENTS } /* blk=tangutcomponents */,
+ { 3, 6340, 4616, 9, 8, UNI_CONTROLPICTURES } /* incontrolpictures */,
+ { 4, 4074, 5676, 16, 14, UNI_ZS } /* generalcategory=spaceseparator */,
+ { 2, 185, 750, 2, 21, UNI_ENCLOSEDALPHANUM } /* isenclosedalphanumerics */,
+ { 23, 9691, 7790, 4, 9, UNI_INNEWTAILUE } /* blk=newtailue */,
+ { 8, 7230, 5186, 10, 14, UNI_BC__EN } /* bidiclass=europeannumber */,
+ { 0, 9979, 2632, 4, 6, UNI_BRAH } /* scx=brahmi */,
+ { 0, 8955, 10355, 6, 3, UNI_XPOSIXALPHA } /* alpha=yes */,
+ { 0, 9269, 36, 5, 1, UNI_POSIXXDIGIT } /* ahex=t */,
+ { 5, 1990, 3994, 22, 16, UNI_INSC__CANTILLATIONMARK } /* indicsyllabiccategory=cantillationmark */,
+ { 0, 9189, 0, 7, 0, UNI_STERM } /* sterm=t */,
+ { 0, 9711, 9387, 4, 2, UNI_CCC__31 } /* ccc=31 */,
+ { 0, 9979, 3826, 4, 4, UNI_MANI } /* scx=mani */,
+ { 4, 2373, 0, 20, 0, UNI_PC } /* connectorpunctuation */,
+ { 0, 8782, 4984, 7, 5, UNI_SC__TAML } /* script=tamil */,
+ { 0, 9691, 2269, 4, 21, UNI_MEETEIMAYEKEXT } /* blk=meeteimayekextensions */,
+ { 1, 9549, 0, 5, 0, UNI_xids_values_index } /* xids= */,
+ { 0, 10217, 6134, 3, 12, UNI_BC__AL } /* bc=arabicletter */,
+ { 2, 10031, 0, 4, 0, UNI_TFNG } /* tfng */,
+ { 0, 2803, 0, 19, 0, UNI_idst_values_index } /* idstrinaryoperator= */,
+ { 0, 1009, 0, 2, 0, UNI_CI } /* ci */,
+ { 4, 10530, 8868, 4, 5, UNI_INTIRHUTA } /* intirhuta */,
+ { 9, 10352, 18, 3, 2, UNI_RI } /* wb=ri */,
+ { 8, 7218, 3979, 3, 10, UNI_BOPOMOFOEXT } /* inbopomofoext */,
+ { 6, 9691, 2689, 4, 11, UNI_COUNTINGROD } /* blk=countingrod */,
+ { 5, 10352, 109, 3, 2, UNI_WB__MB } /* wb=mb */,
+ { 0, 9057, 1026, 6, 2, -UNI_EMOJI } /* emoji=no */,
+ { 8, 9449, 26, 5, 1, UNI_EMOD } /* emod=y */,
+ { 9, 10217, 2290, 3, 21, UNI_BC__PDI } /* bc=popdirectionalisolate */,
+ { 9, 185, 1846, 2, 2, UNI_NL } /* isnl */,
+ { 19, 9711, 16, 4, 1, UNI_CCC__B } /* ccc=b */,
+ { 4, 5093, 26, 9, 1, UNI_XPOSIXXDIGIT } /* hexdigit=y */,
{ 0, 5172, 36, 14, 1, UNI_EMOD } /* emojimodifier=t */,
- { 1, 10268, 5732, 3, 4, UNI_NV__1000 } /* nv=1000 */,
- { 0, 4894, 48, 15, 1, UNI_NFCQC__M } /* nfkcquickcheck=m */,
- { 13, 10226, 36, 3, 1, UNI_DI } /* di=t */,
- { 0, 8973, 2727, 6, 19, UNI_ENCLOSEDALPHANUMSUP } /* block=enclosedalphanumsup */,
- { 2, 3877, 9751, 17, 4, UNI_DIAK } /* scriptextensions=diak */,
- { 0, 1189, 4427, 3, 15, UNI_TANGUTCOMPONENTS } /* intangutcomponents */,
- { 7, 1418, 8761, 24, 7, UNI_CCC__1 } /* canonicalcombiningclass=overlay */,
- { 0, 1418, 8992, 25, 5, UNI_CCC__107 } /* canonicalcombiningclass=ccc107 */,
- { 0, 8973, 3724, 6, 17, UNI_ETHIOPICEXTB } /* block=ethiopicextendedb */,
- { 0, 1891, 0, 5, 0, UNI_XPOSIXUPPER } /* upper */,
- { 0, 6350, 6884, 12, 11, UNI_JT__L } /* joiningtype=leftjoining */,
- { 1, 7218, 7241, 3, 9, UNI_BOXDRAWING } /* inboxdrawing */,
- { 2, 9476, 2311, 3, 4, UNI_SC__SINH } /* sc=sinh */,
- { 0, 1814, 26, 22, 1, UNI_CWCM } /* changeswhencasemapped=y */,
- { 1, 3877, 10051, 17, 4, UNI_TOTO } /* scriptextensions=toto */,
- { 0, 10247, 5508, 3, 14, UNI_JG__MANICHAEANYODH } /* jg=manichaeanyodh */,
- { 0, 10244, 4999, 3, 15, UNI_TITLE } /* gc=titlecaseletter */,
- { 0, 1674, 0, 4, 0, UNI_JAMO } /* jamo */,
- { 24, 9147, 10355, 6, 3, UNI__PERL_NCHAR } /* nchar=yes */,
- { 0, 9767, 0, 4, 0, UNI_GONG } /* gong */,
- { 0, 10031, 0, 4, 0, UNI_TFNG } /* tfng */,
- { 2, 4157, 448, 3, 31, UNI_IDEOGRAPHICSYMBOLS } /* isideographicsymbolsandpunctuation */,
- { 7, 10217, 2290, 3, 21, UNI_BC__PDI } /* bc=popdirectionalisolate */,
- { 1, 10232, 1205, 3, 9, UNI_EA__F } /* ea=fullwidth */,
- { 1, 7600, 0, 10, 0, UNI_YIRADICALS } /* yiradicals */,
- { 0, 8973, 661, 7, 29, UNI_CJKEXTF } /* block=cjkunifiedideographsextensionf */,
- { 0, 7580, 496, 10, 7, UNI_WB__NU } /* wordbreak=numeric */,
- { 17, 6741, 9454, 11, 5, -UNI_DEP } /* deprecated=false */,
- { 0, 9691, 7736, 4, 9, UNI_LATINEXTD } /* blk=latinextd */,
- { 1, 9474, 5200, 5, 14, UNI_INSC__GEMINATIONMARK } /* insc=geminationmark */,
- { 1, 9979, 8508, 4, 4, UNI_VITH } /* scx=vith */,
- { 8, 8782, 2509, 7, 4, UNI_SC__MONG } /* script=mong */,
- { 17, 2304, 7819, 4, 7, UNI_PERM } /* isoldpermic */,
- { 0, 4157, 2454, 3, 19, UNI_PHLI } /* isinscriptionalpahlavi */,
- { 12, 7218, 8539, 4, 5, UNI_INBENGALI } /* inbengali */,
- { 2, 1990, 4969, 22, 15, UNI_INSC__REGISTERSHIFTER } /* indicsyllabiccategory=registershifter */,
- { 1, 8754, 0, 4, 0, UNI_OSMA } /* osma */,
- { 0, 10247, 5979, 3, 13, UNI_JG__MANICHAEANNUN } /* jg=manichaeannun */,
- { 5, 4972, 4443, 3, 8, UNI_TANGUTSUP } /* istangutsup */,
- { 4, 468, 0, 5, 0, UNI_P } /* punct */,
- { 23, 10268, 7934, 3, 1, UNI_NV__2 } /* nv=2 */,
- { 5, 2248, 7072, 3, 10, UNI_INSORASOMPENG } /* insorasompeng */,
- { 6, 3877, 10019, 17, 4, UNI_TALU } /* scriptextensions=talu */,
- { 6, 10247, 5235, 3, 3, UNI_JG__HEH } /* jg=heh */,
- { 1, 4154, 953, 3, 27, UNI_VSSUP } /* invariationselectorssupplement */,
- { 0, 4684, 8, 15, 1, UNI_EA__A } /* eastasianwidth=a */,
- { 2, 1189, 9196, 3, 5, UNI_INTANGSA } /* intangsa */,
- { 3, 9691, 9207, 4, 6, UNI_INTHAANA } /* blk=thaana */,
- { 9, 3445, 0, 4, 0, UNI_RUMI } /* rumi */,
- { 0, 8973, 5368, 6, 7, UNI_LISUSUP } /* block=lisusup */,
- { 2, 6083, 7964, 13, 8, UNI_NV__3_SLASH_20 } /* numericvalue=1.50e-01 */,
- { 14, 10253, 74, 3, 2, UNI_EMOD } /* lb=em */,
- { 3, 8782, 9963, 7, 4, UNI_SC__ROHG } /* script=rohg */,
- { 0, 1418, 7320, 24, 4, UNI_CCC__6 } /* canonicalcombiningclass=hanr */,
- { 0, 9731, 26, 4, 1, UNI_CWT } /* cwt=y */,
- { 0, 5875, 0, 13, 0, UNI_jg_values_index } /* joininggroup= */,
- { 0, 9691, 9509, 4, 5, UNI_INOGHAM } /* blk=ogham */,
- { 0, 10268, 10139, 3, 3, UNI_NV__2_SLASH_5 } /* nv=2/5 */,
- { 9, 8973, 5901, 6, 13, UNI_KANAEXTB } /* block=kanaextendedb */,
- { 0, 8973, 7736, 6, 9, UNI_LATINEXTD } /* block=latinextd */,
- { 2, 185, 5368, 2, 14, UNI_LISUSUP } /* islisusupplement */,
- { 17, 1418, 8028, 24, 3, UNI_WB__EB } /* canonicalcombiningclass=200 */,
- { 0, 9691, 8670, 4, 7, UNI_INMAKASAR } /* blk=makasar */,
- { 3, 2206, 10394, 21, 2, UNI_GCB__XX } /* graphemeclusterbreak=xx */,
- { 8, 185, 1837, 3, 20, UNI_CWL } /* ischangeswhenlowercased */,
- { 0, 5045, 7551, 3, 9, UNI_CN } /* isunassigned */,
- { 2, 8881, 9656, 3, 3, UNI_AHOM } /* isahom */,
- { 0, 8782, 3826, 7, 10, UNI_SC__MANI } /* script=manichaean */,
- { 1, 9979, 8621, 4, 4, UNI_GRAN } /* scx=gran */,
- { 5, 4847, 2362, 10, 11, UNI_MERO } /* inmeroitichieroglyphs */,
- { 8, 1115, 1026, 26, 2, -UNI_CWKCF } /* changeswhennfkccasefolded=no */,
- { 11, 0, 0, 34, 0, UNI_UCAS } /* unifiedcanadianaboriginalsyllabics */,
- { 10, 9439, 1, 5, 1, -UNI_DASH } /* dash=n */,
- { 3, 1189, 4985, 3, 7, UNI_TAMILSUP } /* intamilsup */,
- { 8, 2227, 0, 14, 0, UNI_ROHG } /* hanifirohingya */,
- { 6, 8782, 6302, 7, 6, UNI_HEBR } /* script=hebrew */,
- { 5, 9803, 0, 4, 0, UNI_hst_values_index } /* hst= */,
- { 2, 415, 0, 11, 0, UNI_IDEO } /* ideographic */,
- { 3, 9691, 4442, 4, 9, UNI_TANGUTSUP } /* blk=tangutsup */,
- { 1, 21, 5284, 2, 14, UNI_LATINEXTB } /* inlatinextendedb */,
- { 1, 9476, 4534, 3, 7, UNI_BRAI } /* sc=braille */,
- { 4, 8973, 44, 7, 2, UNI_CJK } /* block=cjk */,
- { 2, 9464, 26, 5, 1, UNI_IDST } /* idst=y */,
- { 0, 10253, 23, 3, 2, UNI_LB__AL } /* lb=al */,
- { 0, 1418, 10386, 24, 2, UNI_CCC__8 } /* canonicalcombiningclass=kv */,
- { 0, 10268, 8211, 3, 2, UNI_NV__18 } /* nv=18 */,
- { 0, 4157, 4760, 3, 14, UNI_ARMI } /* isimperialaramaic */,
- { 11, 185, 5810, 2, 13, UNI_ME } /* isenclosingmark */,
- { 2, 3877, 6518, 17, 12, UNI_MEND } /* scriptextensions=mendekikakui */,
- { 2, 7360, 1466, 10, 13, UNI_LB__CM } /* linebreak=combiningmark */,
- { 2, 9847, 1026, 4, 2, -UNI_LOE } /* loe=no */,
- { 1, 9979, 8866, 4, 7, UNI_TIRH } /* scx=tirhuta */,
- { 0, 3175, 1026, 18, 2, -UNI_EPRES } /* emojipresentation=no */,
- { 3, 185, 3792, 2, 17, UNI_KITS } /* iskhitansmallscript */,
- { 0, 8782, 2493, 7, 20, UNI_HMNP } /* script=nyiakengpuachuehmong */,
- { 6, 9691, 184, 4, 20, UNI_MISCSYMBOLS } /* blk=miscellaneoussymbols */,
- { 0, 9803, 6650, 4, 12, UNI_GCB__T } /* hst=trailingjamo */,
- { 3, 10244, 342, 3, 2, UNI_PE } /* gc=pe */,
- { 3, 8782, 8754, 7, 4, UNI_OSMA } /* script=osma */,
- { 3, 9476, 9783, 3, 4, UNI_SC__GURU } /* sc=guru */,
- { 3, 1538, 3367, 4, 6, UNI_DINGBATS } /* indingbats */,
- { 0, 5116, 10055, 14, 4, UNI_CI } /* caseignorable=true */,
- { 4, 8973, 4654, 6, 15, UNI_DIACRITICALSEXT } /* block=diacriticalsext */,
- { 2, 6083, 8228, 13, 8, UNI_NV__1_SLASH_12 } /* numericvalue=8.33e-02 */,
- { 1, 9979, 4984, 4, 5, UNI_TAML } /* scx=tamil */,
- { 1, 7460, 7995, 10, 4, UNI_IN__12 } /* presentin=12.0 */,
- { 6, 1770, 17, 22, 1, UNI_BPT__O } /* bidipairedbrackettype=o */,
- { 1, 3157, 0, 5, 0, UNI_EMOJI } /* emoji */,
- { 0, 185, 3193, 2, 8, UNI_ETHI } /* isethiopic */,
- { 0, 4074, 599, 16, 2, UNI_XPOSIXCNTRL } /* generalcategory=cc */,
- { 0, 9691, 6182, 4, 12, UNI_CHESSSYMBOLS } /* blk=chesssymbols */,
- { 3, 10247, 8324, 3, 8, UNI_JG__FARSIYEH } /* jg=farsiyeh */,
- { 0, 1394, 0, 24, 0, UNI_ARABICPFB } /* arabicpresentationformsb */,
- { 27, 10516, 8769, 3, 5, UNI_PATSYN } /* ispatsyn */,
- { 0, 8973, 7637, 6, 9, UNI_ARABICPFA } /* block=arabicpfa */,
- { 1, 3877, 10035, 17, 4, UNI_TGLG } /* scriptextensions=tglg */,
- { 1, 8973, 1595, 6, 14, UNI_MUSIC } /* block=musicalsymbols */,
- { 0, 7297, 1656, 3, 22, UNI_COMPATJAMO } /* ishangulcompatibilityjamo */,
- { 1, 3398, 10055, 11, 4, UNI_XPOSIXSPACE } /* whitespace=true */,
- { 2, 11, 0, 2, 0, UNI_DI } /* di */,
- { 0, 10247, 6041, 3, 3, UNI_JG__WAW } /* jg=waw */,
- { 0, 5875, 5438, 13, 14, UNI_JG__MANICHAEANHETH } /* joininggroup=manichaeanheth */,
- { 6, 1792, 26, 22, 1, UNI_CWCF } /* changeswhencasefolded=y */,
- { 2, 6314, 10055, 12, 4, UNI_IDEO } /* ideographic=true */,
- { 0, 9476, 9767, 3, 4, UNI_SC__GONG } /* sc=gong */,
- { 6, 10247, 1512, 3, 3, UNI_JG__HAH } /* jg=hah */,
- { 13, 10508, 97, 8, 5, UNI_XPOSIXALPHA } /* isxposixalpha */,
- { 0, 2003, 0, 11, 0, UNI_LO } /* category=lo */,
- { 8, 4074, 4346, 16, 5, UNI_C } /* generalcategory=other */,
- { 0, 9711, 7947, 4, 2, UNI_CCC__21 } /* ccc=21 */,
- { 1, 9476, 8621, 3, 7, UNI_SC__GRAN } /* sc=grantha */,
- { 4, 6675, 10055, 11, 4, UNI_IDC } /* idcontinue=true */,
- { 4, 6350, 0, 12, 1, UNI_JT__U } /* joiningtype=u */,
- { 10, 3877, 10043, 17, 4, UNI_TIBT } /* scriptextensions=tibt */,
- { 5, 4154, 5030, 3, 7, UNI_VEDICEXT } /* invedicext */,
- { 1, 185, 350, 2, 33, UNI_SUPSYMBOLSANDPICTOGRAPHS } /* issupplementalsymbolsandpictographs */,
- { 2, 10268, 8901, 3, 6, UNI_NV__216000 } /* nv=216000 */,
- { 1, 7460, 7934, 10, 1, UNI_IN__2 } /* presentin=2 */,
- { 0, 3877, 3139, 17, 10, UNI_DEVA } /* scriptextensions=devanagari */,
- { 1, 5326, 0, 14, 0, UNI_LATINEXTE } /* latinextendede */,
- { 0, 6083, 7958, 13, 2, UNI_NV__50 } /* numericvalue=50 */,
- { 0, 10553, 48, 3, 1, UNI_SM } /* issm */,
- { 1, 5875, 10241, 13, 3, UNI_JG__GAF } /* joininggroup=gaf */,
- { 0, 9691, 4624, 4, 15, UNI_CURRENCYSYMBOLS } /* blk=currencysymbols */,
- { 3, 6083, 8012, 13, 8, UNI_NV__1_SLASH_4 } /* numericvalue=2.50e-01 */,
- { 2, 10247, 6458, 3, 12, UNI_JG__MALAYALAMSSA } /* jg=malayalamssa */,
- { 4, 9711, 9355, 5, 4, UNI_CCC__25 } /* ccc=ccc25 */,
- { 0, 9647, 9600, 4, 3, UNI_AGE__3 } /* age=3.0 */,
- { 3, 8973, 1701, 6, 23, UNI_SHORTHANDFORMATCONTROLS } /* block=shorthandformatcontrols */,
- { 7, 8782, 2164, 7, 8, UNI_SC__CYRL } /* script=cyrillic */,
- { 8, 3139, 0, 13, 0, UNI_DEVANAGARIEXT } /* devanagariext */,
- { 1, 1990, 5718, 22, 14, UNI_INSC__VOWELDEPENDENT } /* indicsyllabiccategory=voweldependent */,
- { 0, 9899, 0, 4, 0, UNI_NSHU } /* nshu */,
- { 15, 8973, 8587, 7, 6, UNI_CJKEXTG } /* block=cjkextg */,
- { 1, 8973, 7420, 6, 10, UNI_INOLDPERSIAN } /* block=oldpersian */,
- { 0, 2248, 1346, 3, 24, UNI_SYMBOLSFORLEGACYCOMPUTING } /* insymbolsforlegacycomputing */,
- { 1, 1506, 1017, 5, 2, UNI_INGREEK } /* ingreek */,
- { 1, 6122, 0, 12, 0, UNI_ALPHABETICPF } /* alphabeticpf */,
- { 0, 9743, 10055, 4, 4, UNI_DEP } /* dep=true */,
- { 0, 9979, 6518, 4, 4, UNI_MEND } /* scx=mend */,
- { 0, 10247, 4829, 3, 3, UNI_JG__SAD } /* jg=sad */,
- { 16, 6862, 0, 11, 0, UNI_KATAKANAEXT } /* katakanaext */,
- { 0, 9979, 10123, 4, 4, UNI_ZZZZ } /* scx=zzzz */,
- { 4, 10244, 729, 3, 6, UNI_N } /* gc=number */,
- { 0, 21, 6862, 2, 11, UNI_KATAKANAEXT } /* inkatakanaext */,
- { 1, 10553, 1529, 3, 8, UNI__PERL_SURROGATE } /* issurrogate */,
+ { 7, 3877, 6290, 17, 12, UNI_GONG } /* scriptextensions=gunjalagondi */,
+ { 0, 185, 3826, 2, 4, UNI_MANI } /* ismani */,
+ { 18, 2206, 71, 21, 2, UNI_GCB__PP } /* graphemeclusterbreak=pp */,
+ { 0, 6529, 1062, 3, 26, UNI_OCR } /* inopticalcharacterrecognition */,
+ { 1, 4074, 7, 16, 1, UNI_C } /* generalcategory=c */,
+ { 0, 6518, 0, 4, 0, UNI_MEND } /* mend */,
+ { 1, 8973, 3571, 6, 10, UNI_ALCHEMICAL } /* block=alchemical */,
+ { 3, 185, 511, 3, 29, UNI_CJKEXTA } /* iscjkunifiedideographsextensiona */,
+ { 4, 185, 2144, 3, 20, UNI_CJKRADICALSSUP } /* iscjkradicalssupplement */,
+ { 12, 8316, 1026, 8, 2, -UNI_EXTPICT } /* extpict=no */,
+ { 18, 5014, 0, 15, 0, UNI_UPPERCASELETTER } /* uppercaseletter */,
+ { 2, 9474, 7799, 5, 9, UNI_INSC__NONJOINER } /* insc=nonjoiner */,
+ { 2, 1990, 4394, 22, 16, UNI_INSC__SYLLABLEMODIFIER } /* indicsyllabiccategory=syllablemodifier */,
+ { 10, 9691, 8621, 4, 7, UNI_INGRANTHA } /* blk=grantha */,
+ { 0, 1858, 1026, 22, 2, -UNI_CWT } /* changeswhentitlecased=no */,
+ { 0, 5408, 6388, 4, 10, UNI_MAHJONG } /* inmahjongtiles */,
+ { 0, 7370, 1, 10, 1, -UNI_XPOSIXLOWER } /* lowercase=n */,
+ { 2, 1990, 4579, 22, 15, UNI_INSC__CONSONANTMEDIAL } /* indicsyllabiccategory=consonantmedial */,
+ { 1, 3265, 0, 4, 0, UNI_GEOR } /* geor */,
+ { 0, 185, 1837, 3, 20, UNI_CWL } /* ischangeswhenlowercased */,
+ { 17, 6083, 8036, 13, 8, UNI_NV__1_SLASH_32 } /* numericvalue=3.12e-02 */,
+ { 30, 4624, 0, 15, 0, UNI_CURRENCYSYMBOLS } /* currencysymbols */,
+ { 2, 8973, 6928, 6, 11, UNI_INMEDEFAIDRIN } /* block=medefaidrin */,
+ { 3, 21, 5089, 3, 4, UNI_ASCII } /* inascii */,
+ { 0, 9691, 3979, 5, 15, UNI_BOPOMOFOEXT } /* blk=bopomofoextended */,
+ { 0, 5270, 0, 6, 0, UNI_KANGXI } /* kangxi */,
+ { 0, 9476, 9999, 3, 4, UNI_SC__SHRD } /* sc=shrd */,
+ { 0, 9691, 810, 4, 22, UNI_ENCLOSEDIDEOGRAPHICSUP } /* blk=enclosedideographicsup */,
+ { 0, 10268, 8903, 3, 2, UNI_NV__60 } /* nv=60 */,
+ { 0, 9979, 9484, 4, 4, UNI_LIMB } /* scx=limb */,
+ { 6, 2803, 0, 18, 0, UNI_IDST } /* idstrinaryoperator */,
+ { 1, 8973, 6675, 6, 3, UNI_INIDC } /* block=idc */,
+ { 2, 6083, 7923, 13, 2, UNI_NV__11 } /* numericvalue=11 */,
+ { 1, 10217, 10259, 3, 3, UNI_BC__LRI } /* bc=lri */,
+ { 1, 2242, 2494, 3, 19, UNI_INNYIAKENGPUACHUEHMONG } /* innyiakengpuachuehmong */,
+ { 1, 9434, 3, 5, 1, -UNI_CWCM } /* cwcm=f */,
+ { 3, 6083, 9579, 13, 4, UNI_NV__1_SLASH_80 } /* numericvalue=1/80 */,
+ { 0, 21, 1008, 3, 16, UNI_ANCIENTGREEKMUSIC } /* inancientgreekmusic */,
{ 2, 7907, 10355, 9, 3, UNI_XIDS } /* xidstart=yes */,
- { 2, 185, 1185, 2, 3, UNI_DEP } /* isdep */,
- { 1, 3877, 8845, 17, 7, UNI_TAVT } /* scriptextensions=taiviet */,
- { 16, 43, 0, 9, 0, UNI_CJKCOMPAT } /* cjkcompat */,
- { 23, 8973, 2860, 6, 19, UNI_MODIFIERTONELETTERS } /* block=modifiertoneletters */,
- { 4, 8973, 5270, 6, 14, UNI_KANGXI } /* block=kangxiradicals */,
- { 0, 10268, 8140, 3, 8, UNI_NV__7_SLASH_12 } /* nv=5.83e-01 */,
- { 17, 7360, 203, 10, 2, UNI_LB__SA } /* linebreak=sa */,
- { 0, 9476, 383, 3, 4, UNI_EGYP } /* sc=egyp */,
- { 0, 9691, 510, 4, 20, UNI_CJK } /* blk=cjkunifiedideographs */,
- { 0, 2304, 6592, 4, 10, UNI_HUNG } /* isoldhungarian */,
- { 2, 9476, 4426, 3, 4, UNI_TANG } /* sc=tang */,
- { 0, 7330, 0, 4, 0, UNI_KHAR } /* khar */,
- { 1, 9979, 8804, 5, 6, UNI_SIDD } /* scx=siddham */,
- { 3, 9711, 9000, 4, 3, UNI_CCC__118 } /* ccc=118 */,
- { 0, 9691, 6961, 4, 11, UNI_MYANMAREXTB } /* blk=myanmarextb */,
- { 0, 5875, 4234, 13, 16, UNI_JG__MANICHAEANLAMEDH } /* joininggroup=manichaeanlamedh */,
+ { 12, 2553, 1026, 20, 2, -UNI_TERM } /* terminalpunctuation=no */,
+ { 0, 185, 8573, 3, 6, UNI_CJKEXTE } /* iscjkexte */,
+ { 23, 1655, 0, 23, 0, UNI_COMPATJAMO } /* hangulcompatibilityjamo */,
+ { 0, 3877, 4426, 17, 6, UNI_TANG } /* scriptextensions=tangut */,
+ { 13, 63, 0, 5, 0, UNI_XPOSIXGRAPH } /* graph */,
+ { 3, 1701, 0, 23, 0, UNI_SHORTHANDFORMATCONTROLS } /* shorthandformatcontrols */,
+ { 0, 2955, 0, 19, 0, UNI_SUPARROWSA } /* supplementalarrowsa */,
+ { 0, 9476, 6730, 3, 11, UNI_SC__CPMN } /* sc=cyprominoan */,
+ { 1, 9979, 4042, 4, 7, UNI_CPRT } /* scx=cypriot */,
+ { 0, 9077, 10355, 4, 3, UNI_EXT } /* ext=yes */,
+ { 2, 8973, 383, 6, 32, UNI_EGYPTIANHIEROGLYPHFORMATCONTROLS } /* block=egyptianhieroglyphformatcontrols */,
+ { 9, 10253, 6288, 3, 2, UNI_LB__WJ } /* lb=wj */,
+ { 5, 10253, 25, 3, 2, UNI_LB__SY } /* lb=sy */,
+ { 1, 6578, 5096, 12, 5, UNI_NT__DI } /* numerictype=digit */,
+ { 0, 9691, 2248, 4, 21, UNI_ININSCRIPTIONALPARTHIAN } /* blk=inscriptionalparthian */,
+ { 8, 2784, 6873, 19, 11, UNI_GCB__L } /* hangulsyllabletype=leadingjamo */,
+ { 27, 1792, 1, 22, 1, -UNI_CWCF } /* changeswhencasefolded=n */,
+ { 10, 7260, 0, 10, 0, UNI_CHRS } /* chorasmian */,
+ { 0, 3656, 0, 17, 0, UNI_CYRILLICEXTA } /* cyrillicextendeda */,
+ { 1, 10510, 1847, 6, 5, UNI_XPOSIXLOWER } /* xposixlower */,
+ { 1, 5029, 0, 15, 0, UNI_VEDICEXT } /* vedicextensions */,
+ { 0, 7467, 7550, 3, 10, UNI_AGE__NA } /* in=unassigned */,
+ { 0, 6083, 5732, 13, 3, UNI_NV__100 } /* numericvalue=100 */,
+ { 0, 2803, 26, 19, 1, UNI_IDST } /* idstrinaryoperator=y */,
+ { 0, 3942, 8342, 4, 6, UNI_INGUJARATI } /* ingujarati */,
+ { 13, 3877, 8292, 17, 8, UNI_BUGI } /* scriptextensions=buginese */,
+ { 11, 2304, 6984, 3, 10, UNI_LO } /* isotherletter */,
+ { 2, 4972, 8777, 3, 3, UNI_TAGS } /* istags */,
+ { 3, 185, 8372, 2, 8, UNI_JAMOEXTA } /* isjamoexta */,
+ { 0, 185, 4090, 2, 11, UNI_GEORGIANEXT } /* isgeorgianext */,
+ { 0, 1924, 0, 6, 0, UNI_ZYYY } /* common */,
+ { 8, 9979, 9519, 4, 5, UNI_OSGE } /* scx=osage */,
+ { 0, 185, 9177, 2, 5, UNI_QMARK } /* isqmark */,
+ { 2, 8973, 7530, 6, 10, UNI_SUPARROWSB } /* block=suparrowsb */,
+ { 1, 10217, 24, 3, 1, UNI_BC__L } /* bc=l */,
+ { 1, 9476, 9895, 3, 4, UNI_SC__NKO } /* sc=nkoo */,
+ { 0, 9691, 1587, 5, 22, UNI_BYZANTINEMUSIC } /* blk=byzantinemusicalsymbols */,
+ { 1, 185, 9135, 2, 4, UNI_LYDI } /* islydi */,
+ { 6, 185, 4202, 2, 16, UNI_LINEARBSYLLABARY } /* islinearbsyllabary */,
+ { 8, 10516, 468, 7, 5, UNI_POSIXPUNCT } /* isposixpunct */,
+ { 21, 7460, 7950, 10, 1, UNI_IN__4 } /* presentin=4 */,
+ { 1, 3877, 8684, 17, 4, UNI_MARC } /* scriptextensions=marc */,
+ { 1, 4684, 866, 15, 1, UNI_EA__W } /* eastasianwidth=w */,
+ { 0, 5758, 0, 12, 0, UNI_BIDIM } /* bidimirrored */,
+ { 0, 9476, 79, 3, 4, UNI_SC__ARAB } /* sc=arab */,
{ 1, 5875, 5953, 13, 13, UNI_JG__MALAYALAMNNNA } /* joininggroup=malayalamnnna */,
- { 1, 9647, 10343, 4, 3, UNI_AGE__9 } /* age=v90 */,
- { 0, 9549, 3, 5, 1, -UNI_XIDS } /* xids=f */,
- { 0, 9691, 8492, 4, 7, UNI_UCASEXT } /* blk=ucasext */,
- { 0, 185, 2085, 2, 15, UNI_MODIFIERLETTERS } /* ismodifierletters */,
- { 1, 8854, 7160, 3, 10, UNI_YISYLLABLES } /* inyisyllables */,
- { 7, 1418, 24, 24, 1, UNI_CCC__L } /* canonicalcombiningclass=l */,
- { 0, 6939, 0, 11, 0, UNI_MISCSYMBOLS } /* miscsymbols */,
- { 1, 9270, 26, 4, 1, UNI_XPOSIXXDIGIT } /* hex=y */,
- { 0, 1115, 9454, 26, 5, -UNI_CWKCF } /* changeswhennfkccasefolded=false */,
- { 3, 185, 2974, 2, 19, UNI_SUPARROWSB } /* issupplementalarrowsb */,
- { 4, 3877, 8677, 17, 7, UNI_MAND } /* scriptextensions=mandaic */,
- { 0, 9691, 8684, 4, 7, UNI_INMARCHEN } /* blk=marchen */,
- { 0, 9171, 1026, 6, 2, -UNI__PERL_PATWS } /* patws=no */,
- { 1, 2164, 0, 11, 0, UNI_CYRILLICSUP } /* cyrillicsup */,
- { 8, 10247, 2227, 3, 21, UNI_JG__HANIFIROHINGYAKINNAYA } /* jg=hanifirohingyakinnaya */,
- { 0, 10268, 8937, 3, 2, UNI_NV__70 } /* nv=70 */,
- { 2, 5771, 0, 13, 0, UNI_BLOCKELEMENTS } /* blockelements */,
- { 1, 3877, 4190, 18, 3, UNI_SARB } /* scriptextensions=sarb */,
- { 0, 8782, 3265, 7, 4, UNI_SC__GEOR } /* script=geor */,
- { 3, 8973, 5059, 6, 15, UNI_INZANABAZARSQUARE } /* block=zanabazarsquare */,
- { 0, 10508, 63, 8, 5, UNI_XPOSIXGRAPH } /* isxposixgraph */,
- { 3, 10268, 10204, 3, 2, UNI_NV__37 } /* nv=37 */,
- { 14, 10217, 1, 4, 1, UNI_BC__BN } /* bc=bn */,
- { 17, 3121, 8364, 18, 8, UNI_DT__ISO } /* decompositiontype=isolated */,
- { 0, 6083, 7995, 13, 2, UNI_NV__12 } /* numericvalue=12 */,
- { 0, 9691, 7718, 4, 9, UNI_LATINEXTB } /* blk=latinextb */,
- { 20, 6083, 8903, 13, 3, UNI_NV__600 } /* numericvalue=600 */,
- { 5, 6529, 9510, 3, 4, UNI_INOGHAM } /* inogham */,
- { 1, 2304, 4955, 3, 14, UNI_PS } /* isopenpunctuation */,
- { 0, 3877, 9871, 17, 4, UNI_MRO } /* scriptextensions=mroo */,
- { 0, 8973, 2879, 6, 9, UNI_INMONGOLIAN } /* block=mongolian */,
- { 2, 1553, 108, 10, 5, UNI_S } /* category=symbol */,
- { 1, 4774, 0, 15, 0, UNI_LOWERCASELETTER } /* lowercaseletter */,
- { 0, 10247, 4250, 3, 16, UNI_JG__MANICHAEANSAMEKH } /* jg=manichaeansamekh */,
- { 1, 2784, 912, 19, 1, UNI_GCB__V } /* hangulsyllabletype=v */,
- { 78, 185, 7281, 3, 9, UNI_COMPATJAMO } /* iscompatjamo */,
- { 0, 5172, 1026, 14, 2, -UNI_EMOD } /* emojimodifier=no */,
- { 1, 8500, 0, 8, 0, UNI_UGAR } /* ugaritic */,
- { 0, 7391, 3624, 4, 15, UNI_AGHB } /* iscaucasianalbanian */,
- { 10, 8782, 4924, 7, 15, UNI_NARB } /* script=oldnortharabian */,
- { 3, 9743, 1, 4, 1, -UNI_DEP } /* dep=n */,
- { 9, 185, 3139, 2, 4, UNI_DEVA } /* isdeva */,
- { 8, 8782, 9835, 7, 4, UNI_SC__LATN } /* script=latn */,
- { 19, 9069, 0, 6, 0, UNI_GOTH } /* gothic */,
- { 0, 4847, 2880, 3, 11, UNI_MONGOLIANSUP } /* inmongoliansup */,
- { 2, 207, 0, 2, 0, UNI_PI } /* pi */,
- { 0, 4074, 909, 16, 10, UNI_CO } /* generalcategory=privateuse */,
- { 4, 9711, 2479, 4, 5, UNI_CCC__R } /* ccc=right */,
- { 8, 8782, 4042, 7, 7, UNI_SC__CPRT } /* script=cypriot */,
- { 2, 10566, 1183, 5, 4, UNI_ANY } /* isunicode */,
- { 4, 9231, 0, 6, 0, UNI_WCHO } /* wancho */,
- { 6, 8973, 3463, 6, 12, UNI_SMALLKANAEXT } /* block=smallkanaext */,
- { 0, 1418, 10151, 24, 3, UNI_CCC__L } /* canonicalcombiningclass=224 */,
- { 0, 3877, 2433, 17, 10, UNI_GLAG } /* scriptextensions=glagolitic */,
- { 0, 9691, 3979, 5, 7, UNI_INBOPOMOFO } /* blk=bopomofo */,
+ { 2, 5648, 10355, 14, 3, UNI_QMARK } /* quotationmark=yes */,
+ { 1, 8973, 2100, 6, 22, UNI_TRANSPORTANDMAP } /* block=transportandmapsymbols */,
+ { 0, 1946, 0, 22, 0, UNI_DIACRITICALSFORSYMBOLS } /* diacriticalsforsymbols */,
+ { 2, 9691, 7745, 4, 9, UNI_LATINEXTF } /* blk=latinextf */,
+ { 1, 8782, 8530, 7, 7, UNI_AVST } /* script=avestan */,
+ { 0, 7500, 0, 4, 0, UNI_SAUR } /* saur */,
+ { 1, 9464, 10355, 5, 3, UNI_IDST } /* idst=yes */,
+ { 8, 6340, 6195, 3, 11, UNI_CYRILLICEXTA } /* incyrillicexta */,
+ { 0, 5875, 6446, 13, 12, UNI_JG__MALAYALAMNYA } /* joininggroup=malayalamnya */,
+ { 0, 2248, 3912, 3, 16, UNI_SMALLFORMS } /* insmallformvariants */,
+ { 0, 7060, 9454, 11, 5, -UNI_SD } /* softdotted=false */,
+ { 2, 3877, 1219, 17, 8, UNI_KANA } /* scriptextensions=katakana */,
+ { 4, 2632, 0, 4, 0, UNI_BRAH } /* brah */,
+ { 7, 9691, 8396, 4, 8, UNI_KANAEXTA } /* blk=kanaexta */,
+ { 0, 6083, 7996, 13, 8, UNI_NV__1_SLASH_5 } /* numericvalue=2.00e-01 */,
+ { 0, 9269, 0, 4, 0, UNI_POSIXXDIGIT } /* ahex */,
+ { 0, 9691, 3673, 4, 17, UNI_CYRILLICEXTB } /* blk=cyrillicextendedb */,
+ { 9, 4157, 6676, 3, 9, UNI_IDC } /* isidcontinue */,
+ { 1, 8768, 3, 7, 1, -UNI_PATSYN } /* patsyn=f */,
+ { 0, 9647, 10334, 4, 3, UNI_AGE__6_DOT_3 } /* age=v63 */,
+ { 2, 1190, 0, 3, 0, UNI_nt_values_index } /* nt= */,
+ { 1, 10547, 0, 4, 0, UNI_PE } /* ispe */,
+ { 1, 8961, 10355, 6, 3, UNI_BIDIC } /* bidic=yes */,
+ { 9, 4154, 6110, 3, 12, UNI_VERTICALFORMS } /* inverticalforms */,
+ { 0, 185, 810, 2, 29, UNI_ENCLOSEDIDEOGRAPHICSUP } /* isenclosedideographicsupplement */,
+ { 9, 5875, 1512, 13, 3, UNI_JG__HAH } /* joininggroup=hah */,
+ { 13, 10253, 74, 3, 2, UNI_EMOD } /* lb=em */,
+ { 3, 4154, 1775, 3, 2, UNI_INVAI } /* invai */,
+ { 1, 10223, 9454, 3, 5, -UNI_CI } /* ci=false */,
+ { 0, 10253, 6708, 3, 11, UNI_LB__BB } /* lb=breakbefore */,
+ { 13, 9831, 0, 4, 0, UNI_LAO } /* laoo */,
+ { 5, 9711, 8998, 5, 4, UNI_CCC__11 } /* ccc=ccc11 */,
+ { 8, 1418, 18, 24, 1, UNI_CCC__R } /* canonicalcombiningclass=r */,
+ { 52, 1553, 1934, 9, 2, UNI_CN } /* category=cn */,
+ { 1, 185, 4625, 3, 14, UNI_CURRENCYSYMBOLS } /* iscurrencysymbols */,
+ { 0, 9979, 8530, 4, 7, UNI_AVST } /* scx=avestan */,
+ { 0, 9711, 3031, 4, 13, UNI_CCC__214 } /* ccc=attachedabove */,
+ { 2, 9476, 8607, 3, 7, UNI_ELBA } /* sc=elbasan */,
+ { 4, 1418, 9024, 24, 3, UNI_CCC__132 } /* canonicalcombiningclass=132 */,
+ { 8, 8887, 9454, 7, 5, -UNI_XPOSIXSPACE } /* wspace=false */,
+ { 16, 10268, 7924, 3, 8, UNI_NV__1_SLASH_9 } /* nv=1.11e-01 */,
+ { 0, 3877, 9117, 17, 6, UNI_LEPC } /* scriptextensions=lepcha */,
+ { 1, 9691, 4849, 4, 15, UNI_INMEROITICCURSIVE } /* blk=meroiticcursive */,
+ { 0, 3877, 720, 17, 9, UNI_XSUX } /* scriptextensions=cuneiform */,
+ { 0, 10244, 5581, 3, 11, UNI_MC } /* gc=spacingmark */,
+ { 0, 6741, 3, 11, 1, -UNI_DEP } /* deprecated=f */,
+ { 1, 8973, 5270, 6, 6, UNI_KANGXI } /* block=kangxi */,
+ { 1, 2784, 6895, 19, 3, UNI_LB__H3 } /* hangulsyllabletype=lvt */,
+ { 1, 8782, 2433, 7, 4, UNI_SC__GLAG } /* script=glag */,
+ { 0, 2593, 3403, 4, 5, UNI_VERTSPACE } /* vertspace */,
+ { 10, 7360, 415, 10, 11, UNI_LB__ID } /* linebreak=ideographic */,
+ { 2, 7360, 5102, 10, 14, UNI_LB__CR } /* linebreak=carriagereturn */,
+ { 9, 4972, 8832, 3, 6, UNI_TGLG } /* istagalog */,
+ { 9, 9461, 752, 3, 5, UNI_SB__CL } /* sb=close */,
+ { 1, 9270, 10355, 4, 3, UNI_XPOSIXXDIGIT } /* hex=yes */,
+ { 2, 1858, 26, 22, 1, UNI_CWT } /* changeswhentitlecased=y */,
+ { 9, 9469, 869, 3, 27, UNI_PHONETICEXTSUP } /* inphoneticextensionssupplement */,
+ { 1, 6083, 9616, 13, 3, UNI_NV__7_SLASH_2 } /* numericvalue=7/2 */,
+ { 8, 9647, 10298, 4, 3, UNI_AGE__2_DOT_1 } /* age=v21 */,
+ { 1, 9711, 79, 4, 2, UNI_CCC__AR } /* ccc=ar */,
+ { 11, 10268, 8949, 3, 5, UNI_NV__90000 } /* nv=90000 */,
+ { 0, 21, 9117, 2, 6, UNI_INLEPCHA } /* inlepcha */,
+ { 0, 10217, 10262, 3, 3, UNI_BC__LRO } /* bc=lro */,
+ { 1, 8292, 0, 4, 0, UNI_BUGI } /* bugi */,
+ { 1, 2056, 3, 22, 1, -UNI__PERL_NCHAR } /* noncharactercodepoint=f */,
+ { 0, 9979, 9919, 4, 4, UNI_OSGE } /* scx=osge */,
+ { 12, 9647, 7923, 4, 2, UNI_AGE__11 } /* age=11 */,
+ { 3, 8887, 0, 7, 0, UNI_wspace_values_index } /* wspace= */,
+ { 10, 6083, 9560, 13, 3, UNI_NV__1_SLASH_2 } /* numericvalue=1/2 */,
+ { 2, 10268, 5732, 3, 5, UNI_NV__10000 } /* nv=10000 */,
+ { 6, 9691, 2898, 4, 19, UNI_OTTOMANSIYAQNUMBERS } /* blk=ottomansiyaqnumbers */,
+ { 2, 5093, 10355, 9, 3, UNI_XPOSIXXDIGIT } /* hexdigit=yes */,
+ { 0, 9691, 1674, 4, 4, UNI_JAMO } /* blk=jamo */,
+ { 21, 8768, 1026, 7, 2, -UNI_PATSYN } /* patsyn=no */,
+ { 0, 3553, 1026, 18, 2, -UNI_VS } /* variationselector=no */,
+ { 0, 9476, 9895, 3, 3, UNI_SC__NKO } /* sc=nko */,
+ { 7, 8973, 8396, 6, 8, UNI_KANAEXTA } /* block=kanaexta */,
+ { 0, 9979, 8635, 4, 7, UNI_HANO } /* scx=hanunoo */,
+ { 6, 6340, 116, 4, 23, UNI_DIACRITICALS } /* incombiningdiacriticalmarks */,
+ { 2, 10268, 9387, 3, 2, UNI_NV__31 } /* nv=31 */,
+ { 1, 1418, 9499, 24, 5, UNI_CCC__7 } /* canonicalcombiningclass=nukta */,
+ { 3, 185, 9105, 2, 6, UNI_KHOJ } /* iskhojki */,
+ { 5, 7360, 74, 10, 2, UNI_EMOD } /* linebreak=em */,
+ { 0, 9476, 9755, 3, 4, UNI_DSRT } /* sc=dsrt */,
+ { 0, 4074, 4026, 16, 16, UNI_PE } /* generalcategory=closepunctuation */,
+ { 0, 2689, 0, 11, 0, UNI_COUNTINGROD } /* countingrod */,
+ { 1, 5875, 5448, 13, 4, UNI_JG__HETH } /* joininggroup=heth */,
+ { 1, 9476, 3049, 3, 8, UNI_CHER } /* sc=cherokee */,
+ { 0, 3391, 0, 17, 0, UNI__PERL_PATWS } /* patternwhitespace */,
+ { 0, 10247, 6446, 3, 12, UNI_JG__MALAYALAMNYA } /* jg=malayalamnya */,
+ { 68, 10403, 3403, 4, 5, UNI_POSIXSPACE } /* perlspace */,
+ { 0, 1189, 8832, 3, 6, UNI_INTAGALOG } /* intagalog */,
+ { 0, 5172, 1, 14, 1, -UNI_EMOD } /* emojimodifier=n */,
+ { 1, 9979, 9871, 4, 4, UNI_MRO } /* scx=mroo */,
+ { 5, 9476, 9739, 3, 4, UNI_SC__CYRL } /* sc=cyrl */,
+ { 1, 9691, 8607, 4, 7, UNI_INELBASAN } /* blk=elbasan */,
+ { 1, 10268, 9603, 3, 4, UNI_NV__13_SLASH_2 } /* nv=13/2 */,
+ { 0, 8782, 10047, 7, 4, UNI_TNSA } /* script=tnsa */,
+ { 0, 3877, 9851, 17, 4, UNI_MEDF } /* scriptextensions=medf */,
+ { 13, 185, 9883, 2, 4, UNI_NARB } /* isnarb */,
+ { 8, 5875, 5228, 13, 14, UNI_JG__HAMZAONHEHGOAL } /* joininggroup=hamzaonhehgoal */,
+ { 0, 2248, 925, 3, 27, UNI_SUPPUAB } /* insupplementaryprivateuseareab */,
+ { 4, 7460, 10343, 10, 3, UNI_IN__9 } /* presentin=v90 */,
+ { 0, 7467, 9600, 3, 3, UNI_IN__3 } /* in=3.0 */,
+ { 0, 9461, 867, 3, 2, UNI_SB__SP } /* sb=sp */,
+ { 5, 5368, 0, 7, 0, UNI_LISUSUP } /* lisusup */,
+ { 0, 952, 0, 17, 0, UNI_VS } /* variationselector */,
+ { 1, 7360, 203, 10, 2, UNI_LB__SA } /* linebreak=sa */,
+ { 9, 6340, 2144, 3, 20, UNI_CJKRADICALSSUP } /* incjkradicalssupplement */,
+ { 1, 7160, 2, 3, 1, UNI_YI } /* isyi */,
+ { 1, 1115, 0, 25, 0, UNI_CWKCF } /* changeswhennfkccasefolded */,
+ { 16, 9691, 4474, 4, 15, UNI_ARABICEXTA } /* blk=arabicextendeda */,
+ { 4, 9171, 0, 5, 0, UNI__PERL_PATWS } /* patws */,
+ { 0, 10268, 9260, 3, 4, UNI_NV__1_SLASH_12 } /* nv=1/12 */,
+ { 0, 9711, 9335, 5, 4, UNI_CCC__21 } /* ccc=ccc21 */,
+ { 4, 185, 691, 3, 29, UNI_CJKEXTG } /* iscjkunifiedideographsextensiong */,
+ { 0, 3877, 4924, 17, 15, UNI_NARB } /* scriptextensions=oldnortharabian */,
+ { 2, 9476, 7808, 3, 9, UNI_ITAL } /* sc=olditalic */,
+ { 6, 6083, 8919, 13, 6, UNI_NV__432000 } /* numericvalue=432000 */,
{ 0, 10083, 0, 3, 0, UNI_VAI } /* vai */,
- { 64, 8782, 8356, 7, 4, UNI_SC__HIRA } /* script=hira */,
- { 1, 10268, 8124, 3, 8, UNI_NV__1_SLASH_20 } /* nv=5.00e-02 */,
- { 0, 10250, 6638, 3, 12, UNI_JT__R } /* jt=rightjoining */,
- { 5, 9979, 9751, 4, 4, UNI_DIAK } /* scx=diak */,
- { 16, 8782, 6730, 7, 11, UNI_SC__CPMN } /* script=cyprominoan */,
- { 0, 9691, 3355, 4, 18, UNI_ORNAMENTALDINGBATS } /* blk=ornamentaldingbats */,
- { 33, 10244, 6719, 3, 11, UNI_CASEDLETTER } /* gc=casedletter */,
- { 9, 9476, 7711, 5, 7, UNI_SC__SIND } /* sc=khudawadi */,
- { 0, 5862, 0, 13, 0, UNI_IPAEXT } /* ipaextensions */,
- { 1, 10244, 3301, 3, 18, UNI_PI } /* gc=initialpunctuation */,
- { 0, 2553, 3, 20, 1, -UNI_TERM } /* terminalpunctuation=f */,
- { 0, 1553, 38, 9, 2, UNI_XPOSIXDIGIT } /* category=nd */,
- { 2, 9979, 9967, 4, 4, UNI_RUNR } /* scx=runr */,
- { 4, 6937, 2047, 6, 9, UNI_MISCTECHNICAL } /* inmisctechnical */,
- { 0, 6674, 9454, 12, 5, -UNI_XIDC } /* xidcontinue=false */,
- { 7, 9647, 10211, 4, 3, UNI_AGE__9 } /* age=9.0 */,
- { 1, 7467, 10187, 3, 3, UNI_IN__5_DOT_1 } /* in=5.1 */,
- { 0, 10268, 7972, 3, 8, UNI_NV__1_SLASH_64 } /* nv=1.56e-02 */,
- { 11, 6083, 10358, 13, 2, UNI_NV__38 } /* numericvalue=38 */,
- { 9, 9687, 0, 4, 0, UNI_BHKS } /* bhks */,
- { 1, 8973, 0, 6, 34, UNI_UCAS } /* block=unifiedcanadianaboriginalsyllabics */,
- { 0, 8782, 8804, 8, 6, UNI_SIDD } /* script=siddham */,
- { 4, 4074, 134, 16, 4, UNI_M } /* generalcategory=mark */,
- { 1, 3877, 8388, 17, 4, UNI_JAVA } /* scriptextensions=java */,
- { 2, 9045, 1026, 6, 2, -UNI_CWKCF } /* cwkcf=no */,
- { 0, 9476, 8614, 3, 4, UNI_ELYM } /* sc=elym */,
- { 0, 8782, 9831, 7, 3, UNI_LAO } /* script=lao */,
- { 2, 8782, 6928, 7, 11, UNI_MEDF } /* script=medefaidrin */,
- { 0, 185, 8380, 2, 8, UNI_JAMOEXTB } /* isjamoextb */,
- { 1, 3121, 7, 18, 3, UNI_DT__CAN } /* decompositiontype=can */,
- { 8, 9691, 184, 4, 34, UNI_MISCPICTOGRAPHS } /* blk=miscellaneoussymbolsandpictographs */,
- { 0, 2808, 7192, 4, 8, UNI_ARABICEXTA } /* inarabicexta */,
- { 8, 9979, 8614, 4, 4, UNI_ELYM } /* scx=elym */,
- { 1, 185, 18, 2, 2, UNI_RI } /* isri */,
- { 4, 1553, 5810, 9, 13, UNI_ME } /* category=enclosingmark */,
- { 12, 10402, 10435, 6, 21, UNI__PERL_IS_IN_MULTI_CHAR_FOLD } /* _perl_is_in_multi_char_fold */,
- { 0, 9691, 3445, 4, 18, UNI_RUMI } /* blk=ruminumeralsymbols */,
- { 2, 9891, 0, 4, 0, UNI_NEWA } /* newa */,
- { 1, 9057, 10355, 6, 3, UNI_EMOJI } /* emoji=yes */,
- { 0, 9476, 9135, 3, 6, UNI_LYDI } /* sc=lydian */,
- { 1, 10253, 6288, 3, 2, UNI_LB__WJ } /* lb=wj */,
- { 0, 9219, 9454, 6, 5, -UNI_XPOSIXUPPER } /* upper=false */,
- { 0, 2784, 0, 19, 0, UNI_hst_values_index } /* hangulsyllabletype= */,
- { 2, 10250, 0, 3, 0, UNI_jt_values_index } /* jt= */,
- { 8, 9647, 0, 4, 0, UNI_age_values_index } /* age= */,
- { 0, 10510, 5802, 6, 5, UNI_XPOSIXALNUM } /* xposixalnum */,
- { 0, 2784, 6895, 19, 3, UNI_LB__H3 } /* hangulsyllabletype=lvt */,
- { 3, 8782, 9795, 7, 4, UNI_HMNG } /* script=hmng */,
- { 0, 9545, 9454, 4, 5, -UNI_IDC } /* idc=false */,
- { 3, 6578, 496, 12, 7, UNI_NT__NU } /* numerictype=numeric */,
- { 0, 8782, 9129, 7, 4, UNI_LYCI } /* script=lyci */,
- { 16, 9123, 36, 6, 1, UNI_XPOSIXLOWER } /* lower=t */,
- { 0, 6083, 8943, 13, 5, UNI_NV__80000 } /* numericvalue=80000 */,
- { 0, 3877, 494, 17, 3, UNI_HAN } /* scriptextensions=han */,
- { 16, 10244, 1923, 3, 2, UNI_PC } /* gc=pc */,
- { 16, 9979, 9081, 4, 4, UNI_HATR } /* scx=hatr */,
- { 1, 3157, 9454, 18, 5, -UNI_EBASE } /* emojimodifierbase=false */,
- { 12, 10244, 4639, 3, 15, UNI_PD } /* gc=dashpunctuation */,
- { 17, 9691, 2143, 4, 14, UNI_CJKRADICALSSUP } /* blk=cjkradicalssup */,
- { 13, 9715, 0, 4, 0, UNI_CHRS } /* chrs */,
- { 1, 6083, 8028, 13, 2, UNI_NV__20 } /* numericvalue=20 */,
- { 7, 9979, 9723, 4, 4, UNI_CPRT } /* scx=cprt */,
- { 12, 10253, 10380, 3, 2, UNI_LB__H3 } /* lb=h3 */,
- { 2, 9476, 3794, 5, 15, UNI_KITS } /* sc=khitansmallscript */,
- { 0, 729, 0, 6, 0, UNI_N } /* number */,
- { 2, 1858, 0, 22, 0, UNI_cwt_values_index } /* changeswhentitlecased= */,
- { 2, 8782, 2937, 8, 8, UNI_SUND } /* script=sundanese */,
- { 0, 9711, 23, 4, 2, UNI_CCC__AL } /* ccc=al */,
- { 0, 7360, 6170, 10, 12, UNI_LB__SY } /* linebreak=breaksymbols */,
- { 1, 1189, 8846, 3, 6, UNI_INTAIVIET } /* intaiviet */,
- { 0, 8670, 0, 4, 0, UNI_MAKA } /* maka */,
- { 1, 10217, 2473, 3, 11, UNI_BC__L } /* bc=lefttoright */,
- { 0, 9691, 1724, 4, 23, UNI_SUPPUNCTUATION } /* blk=supplementalpunctuation */,
- { 1, 7682, 36, 9, 1, UNI_EXT } /* extender=t */,
- { 8, 7230, 10256, 10, 3, UNI_BC__LRE } /* bidiclass=lre */,
- { 3, 185, 5606, 2, 14, UNI_PHONETICEXTSUP } /* isphoneticextsup */,
- { 1, 3877, 8537, 17, 7, UNI_BENG } /* scriptextensions=bengali */,
- { 1, 350, 0, 33, 0, UNI_SUPSYMBOLSANDPICTOGRAPHS } /* supplementalsymbolsandpictographs */,
- { 20, 1274, 10055, 21, 4, UNI_CE } /* compositionexclusion=true */,
- { 1, 3877, 10023, 17, 4, UNI_TAML } /* scriptextensions=taml */,
- { 1, 185, 8552, 3, 6, UNI_CJKEXTB } /* iscjkextb */,
- { 0, 9461, 70, 3, 2, UNI_SB__UP } /* sb=up */,
- { 1, 8705, 0, 8, 0, UNI_NFKCQC__N } /* nfkcqc=n */,
- { 9, 4894, 9494, 15, 5, UNI_NFCQC__M } /* nfkcquickcheck=maybe */,
- { 1, 1538, 3018, 24, 13, UNI_INPC__BOTTOMANDLEFT } /* indicpositionalcategory=bottomandleft */,
- { 2, 3877, 2433, 17, 4, UNI_GLAG } /* scriptextensions=glag */,
- { 0, 2100, 0, 22, 0, UNI_TRANSPORTANDMAP } /* transportandmapsymbols */,
- { 0, 185, 2632, 2, 4, UNI_BRAH } /* isbrah */,
- { 0, 185, 2144, 3, 13, UNI_CJKRADICALSSUP } /* iscjkradicalssup */,
- { 6, 10250, 7126, 3, 11, UNI_JT__T } /* jt=transparent */,
- { 3, 2433, 0, 4, 0, UNI_GLAG } /* glag */,
- { 0, 9979, 6494, 4, 12, UNI_GONM } /* scx=masaramgondi */,
- { 3, 3409, 1026, 18, 2, -UNI_RI } /* regionalindicator=no */,
- { 0, 10103, 0, 4, 0, UNI_YI } /* yiii */,
- { 13, 9895, 0, 4, 0, UNI_NKO } /* nkoo */,
- { 8, 7060, 9454, 11, 5, -UNI_SD } /* softdotted=false */,
- { 2, 8881, 2338, 3, 3, UNI_POSIXXDIGIT } /* isahex */,
- { 0, 9190, 10355, 5, 3, UNI_TERM } /* term=yes */,
- { 0, 9711, 9675, 4, 4, UNI_WB__EB } /* ccc=atbl */,
- { 9, 9534, 0, 5, 0, UNI_TAKR } /* takri */,
- { 0, 8973, 4849, 6, 15, UNI_INMEROITICCURSIVE } /* block=meroiticcursive */,
- { 1, 8782, 8508, 7, 8, UNI_VITH } /* script=vithkuqi */,
- { 0, 9476, 9231, 3, 6, UNI_WCHO } /* sc=wancho */,
- { 1, 10268, 10130, 3, 3, UNI_NV__1_SLASH_7 } /* nv=1/7 */,
- { 1, 9476, 6925, 5, 2, UNI_KHMR } /* sc=khmr */,
- { 1, 185, 9959, 2, 4, UNI_RJNG } /* isrjng */,
- { 0, 10402, 1160, 33, 5, UNI__PERL_PROBLEMATIC_LOCALE_FOLDEDS_START } /* _perl_problematic_locale_foldeds_start */,
- { 0, 185, 4330, 2, 16, UNI_MYANMAREXTB } /* ismyanmarextendedb */,
- { 14, 9691, 924, 4, 28, UNI_SUPPUAB } /* blk=supplementaryprivateuseareab */,
- { 2, 3157, 26, 18, 1, UNI_EBASE } /* emojimodifierbase=y */,
- { 16, 9489, 26, 5, 1, UNI_MATH } /* math=y */,
- { 1, 5830, 1, 6, 1, -UNI_EBASE } /* ebase=n */,
- { 0, 9476, 8838, 3, 7, UNI_LANA } /* sc=taitham */,
- { 0, 9476, 9935, 3, 4, UNI_PHNX } /* sc=phnx */,
- { 0, 8973, 6195, 7, 11, UNI_CYRILLICEXTA } /* block=cyrillicexta */,
- { 0, 9691, 4505, 5, 4, UNI_INBAMUM } /* blk=bamum */,
- { 16, 185, 10087, 2, 4, UNI_WCHO } /* iswcho */,
- { 1, 9691, 7071, 4, 11, UNI_INSORASOMPENG } /* blk=sorasompeng */,
- { 0, 6961, 0, 11, 0, UNI_MYANMAREXTB } /* myanmarextb */,
- { 0, 4849, 0, 15, 0, UNI_MERC } /* meroiticcursive */,
- { 3, 10508, 1891, 8, 5, UNI_XPOSIXUPPER } /* isxposixupper */,
- { 18, 9691, 7709, 4, 9, UNI_INKHUDAWADI } /* blk=khudawadi */,
- { 0, 185, 7060, 2, 10, UNI_SD } /* issoftdotted */,
- { 1, 7580, 4401, 10, 9, UNI_WB__EB } /* wordbreak=emodifier */,
- { 6, 8973, 6614, 6, 8, UNI_PHAISTOS } /* block=phaistos */,
- { 2, 7360, 3403, 10, 5, UNI_LB__SP } /* linebreak=space */,
- { 0, 7808, 0, 9, 0, UNI_ITAL } /* olditalic */,
- { 0, 7467, 8156, 3, 3, UNI_IN__6_DOT_2 } /* in=6.2 */,
- { 0, 9979, 1538, 5, 3, UNI_SIND } /* scx=sind */,
- { 3, 1553, 909, 9, 10, UNI_CO } /* category=privateuse */,
- { 1, 10039, 0, 4, 0, UNI_THAI } /* thai */,
- { 7, 3877, 9663, 17, 4, UNI_ARMI } /* scriptextensions=armi */,
- { 13, 2803, 26, 19, 1, UNI_IDST } /* idstrinaryoperator=y */,
- { 3, 185, 3657, 3, 16, UNI_CYRILLICEXTA } /* iscyrillicextendeda */,
- { 1, 9979, 9707, 4, 4, UNI_CANS } /* scx=cans */,
- { 0, 8973, 2501, 6, 3, UNI_PUA } /* block=pua */,
- { 1, 185, 3978, 2, 16, UNI_BOPOMOFOEXT } /* isbopomofoextended */,
- { 3, 5648, 9454, 14, 5, -UNI_QMARK } /* quotationmark=false */,
- { 1, 3758, 7480, 17, 10, UNI_IDENTIFIERSTATUS__RESTRICTED } /* identifierstatus=restricted */,
- { 10, 7460, 10063, 10, 4, UNI_IN__11 } /* presentin=v110 */,
- { 8, 6314, 10355, 12, 3, UNI_IDEO } /* ideographic=yes */,
- { 0, 9476, 4939, 3, 15, UNI_SARB } /* sc=oldsoutharabian */,
- { 1, 10352, 3409, 3, 17, UNI_RI } /* wb=regionalindicator */,
- { 0, 2808, 7639, 4, 7, UNI_ARABICPFA } /* inarabicpfa */,
- { 7, 8782, 9887, 7, 4, UNI_NBAT } /* script=nbat */,
- { 0, 862, 0, 6, 0, UNI_ARROWS } /* arrows */,
- { 9, 8642, 10355, 7, 3, UNI_HYPHEN } /* hyphen=yes */,
- { 3, 3622, 0, 17, 0, UNI_AGHB } /* caucasianalbanian */,
- { 1, 3877, 8388, 17, 8, UNI_JAVA } /* scriptextensions=javanese */,
- { 0, 4074, 1466, 16, 13, UNI_M } /* generalcategory=combiningmark */,
- { 2, 9691, 4042, 4, 16, UNI_CYPRIOTSYLLABARY } /* blk=cypriotsyllabary */,
- { 0, 1923, 0, 2, 0, UNI_PC } /* pc */,
- { 0, 6741, 26, 11, 1, UNI_DEP } /* deprecated=y */,
- { 3, 1418, 9370, 25, 4, UNI_CCC__28 } /* canonicalcombiningclass=ccc28 */,
- { 1, 8973, 2269, 6, 21, UNI_MEETEIMAYEKEXT } /* block=meeteimayekextensions */,
- { 6, 5875, 5235, 13, 3, UNI_JG__HEH } /* joininggroup=heh */,
- { 1, 9691, 4864, 4, 15, UNI_MISCPICTOGRAPHS } /* blk=miscpictographs */,
- { 8, 9691, 1562, 4, 24, UNI_SUPSYMBOLSANDPICTOGRAPHS } /* blk=supsymbolsandpictographs */,
- { 1, 6741, 10355, 11, 3, UNI_DEP } /* deprecated=yes */,
- { 13, 8973, 3962, 6, 9, UNI_ARABICSUP } /* block=arabicsup */,
- { 3, 9647, 8092, 4, 3, UNI_AGE__4 } /* age=4.0 */,
- { 1, 8973, 8500, 6, 8, UNI_INUGARITIC } /* block=ugaritic */,
- { 1, 6083, 7951, 13, 1, UNI_NV__3 } /* numericvalue=3 */,
- { 1, 2248, 351, 3, 32, UNI_SUPSYMBOLSANDPICTOGRAPHS } /* insupplementalsymbolsandpictographs */,
- { 3, 8593, 10055, 7, 4, UNI_COMPEX } /* compex=true */,
- { 32, 9979, 8649, 4, 7, UNI_KNDA } /* scx=kannada */,
- { 0, 3391, 10055, 18, 4, UNI__PERL_PATWS } /* patternwhitespace=true */,
- { 5, 9875, 0, 4, 0, UNI_MTEI } /* mtei */,
- { 2, 9691, 2765, 4, 19, UNI_JAMOEXTB } /* blk=hanguljamoextendedb */,
- { 0, 7218, 4505, 3, 4, UNI_INBAMUM } /* inbamum */,
- { 0, 8782, 8691, 7, 7, UNI_SC__MULT } /* script=multani */,
- { 2, 8782, 9135, 7, 4, UNI_LYDI } /* script=lydi */,
- { 2, 8973, 7530, 6, 10, UNI_SUPARROWSB } /* block=suparrowsb */,
- { 2, 9979, 9923, 4, 4, UNI_OUGR } /* scx=ougr */,
- { 12, 10250, 18, 3, 1, UNI_JT__R } /* jt=r */,
- { 2, 8712, 0, 9, 0, UNI_NFKDQC__N } /* nfkdqc=no */,
- { 2, 2312, 8637, 4, 5, UNI_INHANUNOO } /* inhanunoo */,
- { 0, 1418, 10148, 24, 3, UNI_CCC__BR } /* canonicalcombiningclass=222 */,
- { 0, 7016, 0, 11, 0, UNI_HMNG } /* pahawhhmong */,
- { 21, 4894, 17, 16, 1, UNI_NFKCQC__N } /* nfkcquickcheck=no */,
- { 8, 10268, 10178, 3, 3, UNI_NV__3_SLASH_4 } /* nv=3/4 */,
- { 0, 8973, 6518, 6, 12, UNI_INMENDEKIKAKUI } /* block=mendekikakui */,
- { 4, 6314, 26, 12, 1, UNI_IDEO } /* ideographic=y */,
- { 1, 8973, 8537, 6, 7, UNI_INBENGALI } /* block=bengali */,
- { 0, 185, 340, 2, 2, UNI_LO } /* islo */,
- { 8, 7908, 1026, 8, 2, -UNI_IDS } /* idstart=no */,
- { 9, 9691, 2100, 4, 15, UNI_TRANSPORTANDMAP } /* blk=transportandmap */,
- { 9, 8973, 3624, 6, 4, UNI_UCAS } /* block=ucas */,
- { 0, 9476, 7790, 3, 9, UNI_TALU } /* sc=newtailue */,
- { 11, 9979, 9839, 4, 4, UNI_LINA } /* scx=lina */,
- { 0, 8782, 3103, 7, 6, UNI_SC__COPT } /* script=coptic */,
- { 0, 2248, 4379, 3, 15, UNI_SUPMATHOPERATORS } /* insupmathoperators */,
- { 35, 4598, 4092, 4, 9, UNI_GEORGIANEXT } /* ingeorgianext */,
- { 0, 9979, 7310, 4, 10, UNI_DIAK } /* scx=divesakuru */,
- { 3, 3877, 8614, 17, 7, UNI_ELYM } /* scriptextensions=elymaic */,
- { 4, 1990, 2632, 22, 19, UNI_INSC__BRAHMIJOININGNUMBER } /* indicsyllabiccategory=brahmijoiningnumber */,
- { 1, 6083, 8920, 13, 2, UNI_NV__32 } /* numericvalue=32 */,
- { 22, 9979, 6302, 4, 4, UNI_HEBR } /* scx=hebr */,
- { 0, 5875, 9955, 13, 4, UNI_JG__QAPH } /* joininggroup=qaph */,
- { 1, 3877, 9231, 17, 6, UNI_WCHO } /* scriptextensions=wancho */,
- { 1, 1172, 0, 2, 0, UNI_TITLE } /* lt */,
- { 0, 9476, 9831, 3, 4, UNI_LAO } /* sc=laoo */,
- { 0, 9979, 10023, 4, 4, UNI_TAML } /* scx=taml */,
- { 2, 9979, 1014, 4, 5, UNI_GREK } /* scx=greek */,
- { 3, 1418, 9380, 25, 4, UNI_CCC__30 } /* canonicalcombiningclass=ccc30 */,
- { 0, 9691, 2974, 4, 19, UNI_SUPARROWSB } /* blk=supplementalarrowsb */,
- { 3, 5875, 6015, 13, 3, UNI_JG__TAW } /* joininggroup=taw */,
+ { 3, 7467, 10334, 3, 3, UNI_IN__6_DOT_3 } /* in=v63 */,
+ { 0, 9075, 3, 6, 1, -UNI_GREXT } /* grext=f */,
+ { 0, 9051, 36, 6, 1, UNI_ECOMP } /* ecomp=t */,
+ { 2, 3406, 26, 3, 1, UNI_CE } /* ce=y */,
+ { 1, 9711, 9400, 5, 4, UNI_CCC__34 } /* ccc=ccc34 */,
+ { 8, 5875, 2227, 13, 21, UNI_JG__HANIFIROHINGYAKINNAYA } /* joininggroup=hanifirohingyakinnaya */,
+ { 0, 5875, 66, 15, 2, UNI_JG__KAPH } /* joininggroup=kaph */,
+ { 0, 4074, 6994, 16, 11, UNI_NO } /* generalcategory=othernumber */,
+ { 9, 9290, 8302, 4, 6, UNI_INDUPLOYAN } /* induployan */,
+ { 0, 7580, 0, 4, 0, UNI_XPOSIXWORD } /* word */,
+ { 0, 9524, 0, 5, 0, UNI_RUNR } /* runic */,
+ { 1, 8782, 2632, 7, 4, UNI_BRAH } /* script=brah */,
+ { 9, 9219, 10355, 6, 3, UNI_XPOSIXUPPER } /* upper=yes */,
+ { 1, 7360, 4954, 10, 15, UNI_LB__OP } /* linebreak=openpunctuation */,
+ { 5, 5029, 0, 8, 0, UNI_VEDICEXT } /* vedicext */,
+ { 10, 9979, 8621, 4, 7, UNI_GRAN } /* scx=grantha */,
+ { 0, 10244, 5676, 3, 14, UNI_ZS } /* gc=spaceseparator */,
+ { 0, 9691, 8656, 4, 7, UNI_KALI } /* blk=kayahli */,
+ { 0, 9476, 8276, 3, 8, UNI_BALI } /* sc=balinese */,
+ { 0, 6340, 2165, 3, 7, UNI_INCYRILLIC } /* incyrillic */,
+ { 0, 2493, 0, 20, 0, UNI_HMNP } /* nyiakengpuachuehmong */,
+ { 4, 7808, 0, 9, 0, UNI_ITAL } /* olditalic */,
+ { 15, 3409, 9454, 18, 5, -UNI_RI } /* regionalindicator=false */,
+ { 0, 10247, 6398, 3, 12, UNI_JG__MALAYALAMBHA } /* jg=malayalambha */,
+ { 0, 1270, 10355, 25, 3, UNI_COMPEX } /* fullcompositionexclusion=yes */,
+ { 1, 2100, 0, 15, 0, UNI_TRANSPORTANDMAP } /* transportandmap */,
+ { 1, 10244, 0, 3, 0, UNI_gc_values_index } /* gc= */,
+ { 6, 8973, 9135, 6, 6, UNI_INLYDIAN } /* block=lydian */,
+ { 0, 3877, 7570, 17, 10, UNI_WARA } /* scriptextensions=warangciti */,
+ { 7, 2433, 0, 20, 0, UNI_GLAGOLITICSUP } /* glagoliticsupplement */,
+ { 1, 9691, 3139, 4, 10, UNI_INDEVANAGARI } /* blk=devanagari */,
+ { 4, 1514, 0, 24, 0, UNI_HIGHPUSURROGATES } /* highprivateusesurrogates */,
+ { 17, 8782, 7430, 7, 10, UNI_SOGO } /* script=oldsogdian */,
+ { 1, 10253, 7250, 3, 10, UNI_LB__BA } /* lb=breakafter */,
+ { 0, 1990, 3085, 22, 18, UNI_INSC__CONSONANTSUBJOINED } /* indicsyllabiccategory=consonantsubjoined */,
+ { 1, 9691, 7646, 4, 9, UNI_ARABICPFB } /* blk=arabicpfb */,
+ { 0, 10352, 5830, 3, 5, UNI_WB__EB } /* wb=ebase */,
+ { 7, 2689, 0, 19, 0, UNI_COUNTINGROD } /* countingrodnumerals */,
+ { 0, 9476, 1678, 3, 5, UNI_SC__LATN } /* sc=latin */,
+ { 17, 9691, 8789, 4, 7, UNI_SC__SHRD } /* blk=sharada */,
+ { 2, 9979, 2353, 4, 20, UNI_HLUW } /* scx=anatolianhieroglyphs */,
+ { 13, 3157, 0, 13, 0, UNI_EMOD } /* emojimodifier */,
+ { 0, 10253, 6287, 3, 2, UNI_LB__ZW } /* lb=zw */,
+ { 1, 1418, 9300, 25, 4, UNI_CCC__14 } /* canonicalcombiningclass=ccc14 */,
+ { 40, 8782, 9799, 7, 4, UNI_HMNP } /* script=hmnp */,
+ { 2, 9476, 9831, 3, 4, UNI_LAO } /* sc=laoo */,
+ { 0, 5045, 1130, 3, 3, UNI_UCAS } /* isucas */,
+ { 0, 6083, 8903, 13, 4, UNI_NV__6000 } /* numericvalue=6000 */,
+ { 0, 9691, 4609, 4, 15, UNI_CONTROLPICTURES } /* blk=controlpictures */,
+ { 0, 9803, 6895, 4, 3, UNI_LB__H3 } /* hst=lvt */,
+ { 0, 1814, 10055, 22, 4, UNI_CWCM } /* changeswhencasemapped=true */,
+ { 3, 10553, 8804, 3, 6, UNI_SIDD } /* issiddham */,
+ { 0, 9711, 5732, 4, 2, UNI_CCC__10 } /* ccc=10 */,
+ { 1, 8628, 9454, 7, 5, -UNI_GRBASE } /* grbase=false */,
+ { 0, 5045, 1892, 3, 8, UNI_XPOSIXUPPER } /* isuppercase */,
+ { 0, 1418, 7995, 24, 2, UNI_CCC__12 } /* canonicalcombiningclass=12 */,
+ { 12, 10268, 8913, 3, 5, UNI_NV__40000 } /* nv=40000 */,
+ { 2, 9879, 0, 4, 0, UNI_MYMR } /* mymr */,
+ { 16, 9045, 3, 6, 1, -UNI_CWKCF } /* cwkcf=f */,
+ { 3, 6340, 1903, 3, 18, UNI_CJKCOMPATIDEOGRAPHS } /* incjkcompatideographs */,
+ { 1, 3877, 9871, 17, 4, UNI_MRO } /* scriptextensions=mroo */,
+ { 0, 7230, 3229, 10, 18, UNI_BC__FSI } /* bidiclass=firststrongisolate */,
+ { 1, 8973, 7709, 6, 9, UNI_INKHUDAWADI } /* block=khudawadi */,
+ { 0, 1418, 9335, 25, 4, UNI_CCC__21 } /* canonicalcombiningclass=ccc21 */,
+ { 1, 21, 3319, 2, 18, UNI_LATINEXTADDITIONAL } /* inlatinextadditional */,
+ { 3, 8782, 10027, 7, 4, UNI_TAVT } /* script=tavt */,
+ { 1, 8838, 0, 7, 0, UNI_LANA } /* taitham */,
+ { 1, 9711, 10172, 4, 3, UNI_CCC__IS } /* ccc=240 */,
+ { 0, 10542, 3403, 5, 5, UNI_XPOSIXSPACE } /* xperlspace */,
+ { 0, 9219, 26, 6, 1, UNI_XPOSIXUPPER } /* upper=y */,
+ { 4, 9691, 8677, 4, 7, UNI_INMANDAIC } /* blk=mandaic */,
+ { 0, 9979, 7450, 4, 10, UNI_PHNX } /* scx=phoenician */,
+ { 0, 6697, 0, 11, 0, UNI_alpha_values_index } /* alphabetic= */,
+ { 8, 8702, 812, 4, 20, UNI_ENCLOSEDIDEOGRAPHICSUP } /* inenclosedideographicsup */,
+ { 0, 7360, 8873, 10, 7, UNI_LB__XX } /* linebreak=unknown */,
+ { 7, 9691, 6290, 4, 12, UNI_INGUNJALAGONDI } /* blk=gunjalagondi */,
+ { 3, 8973, 317, 6, 33, UNI_SUPMATHOPERATORS } /* block=supplementalmathematicaloperators */,
+ { 0, 8642, 10355, 7, 3, UNI_HYPHEN } /* hyphen=yes */,
+ { 0, 1538, 3012, 24, 19, UNI_INPC__TOPANDBOTTOMANDLEFT } /* indicpositionalcategory=topandbottomandleft */,
+ { 1, 10250, 0, 3, 0, UNI_jt_values_index } /* jt= */,
+ { 1, 8973, 6207, 7, 11, UNI_CYRILLICEXTB } /* block=cyrillicextb */,
+ { 4, 1990, 8268, 22, 8, UNI_INSC__AVAGRAHA } /* indicsyllabiccategory=avagraha */,
+ { 1, 4157, 3284, 3, 16, UNI_IDSB } /* isidsbinaryoperator */,
+ { 0, 5875, 9659, 13, 4, UNI_JG__ALEF } /* joininggroup=alef */,
+ { 0, 9979, 9033, 4, 6, UNI_CAKM } /* scx=chakma */,
+ { 1, 4157, 326, 3, 3, UNI_ITAL } /* isital */,
+ { 10, 9476, 9081, 3, 4, UNI_HATR } /* sc=hatr */,
+ { 16, 5662, 34, 14, 2, UNI_SB__EX } /* sentencebreak=ex */,
+ { 0, 9476, 9863, 3, 4, UNI_MIAO } /* sc=miao */,
+ { 8, 9711, 9315, 5, 4, UNI_CCC__17 } /* ccc=ccc17 */,
+ { 0, 7433, 0, 7, 0, UNI_SOGD } /* sogdian */,
+ { 3, 5074, 0, 14, 0, UNI_ANCIENTSYMBOLS } /* ancientsymbols */,
+ { 2, 8973, 3247, 6, 18, UNI_INPUNCTUATION } /* block=generalpunctuation */,
+ { 56, 8973, 1946, 6, 22, UNI_DIACRITICALSFORSYMBOLS } /* block=diacriticalsforsymbols */,
+ { 0, 8782, 7330, 7, 10, UNI_KHAR } /* script=kharoshthi */,
+ { 2, 10217, 408, 3, 2, UNI_BC__ON } /* bc=on */,
+ { 8, 9691, 3265, 4, 11, UNI_GEORGIANSUP } /* blk=georgiansup */,
+ { 32, 1553, 4954, 9, 15, UNI_PS } /* category=openpunctuation */,
+ { 3, 9214, 1026, 5, 2, -UNI_IDEO } /* ideo=no */,
+ { 0, 10516, 7, 3, 1, UNI_PC } /* ispc */,
+ { 11, 7467, 10202, 3, 3, UNI_IN__6_DOT_3 } /* in=6.3 */,
+ { 11, 2784, 7889, 19, 9, UNI_GCB__V } /* hangulsyllabletype=voweljamo */,
+ { 2, 9691, 868, 4, 18, UNI_PHONETICEXT } /* blk=phoneticextensions */,
+ { 0, 9159, 0, 7, 0, UNI_DT__CAN } /* nfdqc=n */,
+ { 1, 7230, 3211, 10, 18, UNI_BC__ET } /* bidiclass=europeanterminator */,
+ { 1, 9711, 1220, 4, 3, UNI_CCC__214 } /* ccc=ata */,
+ { 0, 447, 0, 18, 0, UNI_IDEOGRAPHICSYMBOLS } /* ideographicsymbols */,
+ { 19, 6083, 8084, 13, 8, UNI_NV__3_SLASH_80 } /* numericvalue=3.75e-02 */,
+ { 1, 8973, 8530, 6, 7, UNI_INAVESTAN } /* block=avestan */,
+ { 0, 9979, 4426, 4, 6, UNI_TANG } /* scx=tangut */,
+ { 10, 2012, 3, 22, 1, -UNI_LOE } /* logicalorderexception=f */,
+ { 4, 5408, 6046, 4, 11, UNI_MAYANNUMERALS } /* inmayannumerals */,
+ { 0, 6083, 10208, 13, 3, UNI_NV__7_SLASH_8 } /* numericvalue=7/8 */,
+ { 0, 3265, 0, 8, 0, UNI_GEOR } /* georgian */,
+ { 0, 9489, 10355, 5, 3, UNI_MATH } /* math=yes */,
+ { 9, 185, 839, 2, 29, UNI_MISCARROWS } /* ismiscellaneoussymbolsandarrows */,
+ { 6, 7460, 7996, 10, 3, UNI_IN__2 } /* presentin=2.0 */,
+ { 1, 10268, 7950, 3, 2, UNI_NV__43 } /* nv=43 */,
+ { 0, 9434, 26, 5, 1, UNI_CWCM } /* cwcm=y */,
+ { 7, 3877, 1177, 18, 3, UNI_SORA } /* scriptextensions=sora */,
+ { 10, 6741, 0, 11, 0, UNI_dep_values_index } /* deprecated= */,
+ { 0, 10217, 10256, 3, 3, UNI_BC__LRE } /* bc=lre */,
+ { 17, 6674, 1026, 12, 2, -UNI_XIDC } /* xidcontinue=no */,
+ { 18, 5823, 10055, 13, 4, UNI_GRBASE } /* graphemebase=true */,
+ { 0, 10229, 2304, 3, 3, UNI_DT__ISO } /* dt=iso */,
+ { 0, 4684, 7628, 15, 9, UNI_EA__A } /* eastasianwidth=ambiguous */,
+ { 5, 10268, 9631, 3, 3, UNI_NV__3_SLASH_8 } /* nv=3/8 */,
+ { 1, 185, 8292, 2, 4, UNI_BUGI } /* isbugi */,
+ { 3, 3121, 2593, 18, 8, UNI_DT__VERT } /* decompositiontype=vertical */,
+ { 0, 9691, 5326, 4, 14, UNI_LATINEXTE } /* blk=latinextendede */,
+ { 1, 4378, 0, 16, 0, UNI_SUPMATHOPERATORS } /* supmathoperators */,
+ { 13, 185, 5592, 2, 13, UNI_PATSYN } /* ispatternsyntax */,
+ { 1, 6083, 9571, 13, 3, UNI_NV__1_SLASH_4 } /* numericvalue=1/4 */,
+ { 6, 185, 436, 2, 5, UNI__PERL_NCHAR } /* isnchar */,
+ { 16, 2206, 407, 21, 7, UNI_GCB__CN } /* graphemeclusterbreak=control */,
+ { 2, 2248, 318, 3, 32, UNI_SUPMATHOPERATORS } /* insupplementalmathematicaloperators */,
+ { 15, 10268, 10136, 3, 3, UNI_NV__2_SLASH_3 } /* nv=2/3 */,
+ { 10, 9691, 8796, 4, 7, UNI_SHAW } /* blk=shavian */,
+ { 0, 5227, 0, 4, 0, UNI_CHAM } /* cham */,
+ { 1, 7460, 10067, 10, 4, UNI_IN__12 } /* presentin=v120 */,
+ { 0, 10352, 728, 3, 2, UNI_WB__MN } /* wb=mn */,
+ { 1, 8973, 6752, 6, 11, UNI_DOMINO } /* block=dominotiles */,
+ { 6, 185, 5690, 2, 14, UNI_SUPPUNCTUATION } /* issuppunctuation */,
+ { 3, 21, 4170, 2, 6, UNI_LATIN1 } /* inlatin1 */,
+ { 0, 3877, 9867, 17, 4, UNI_MLYM } /* scriptextensions=mlym */,
+ { 9, 1880, 0, 22, 0, UNI_cwu_values_index } /* changeswhenuppercased= */,
+ { 0, 1115, 36, 26, 1, UNI_CWKCF } /* changeswhennfkccasefolded=t */,
+ { 1, 9691, 810, 4, 29, UNI_ENCLOSEDIDEOGRAPHICSUP } /* blk=enclosedideographicsupplement */,
+ { 7, 185, 2085, 2, 4, UNI_MODI } /* ismodi */,
+ { 1, 8782, 8420, 7, 8, UNI_SC__MAHJ } /* script=mahajani */,
+ { 0, 10268, 8028, 3, 3, UNI_NV__200 } /* nv=200 */,
+ { 2, 7218, 4535, 3, 14, UNI_BRAI } /* inbraillepatterns */,
+ { 1, 540, 0, 30, 0, UNI_CJKEXTB } /* cjkunifiedideographsextensionb */,
+ { 0, 7360, 9920, 10, 2, UNI_LB__SG } /* linebreak=sg */,
+ { 6, 8670, 0, 7, 0, UNI_MAKA } /* makasar */,
+ { 2, 10560, 10084, 3, 3, UNI_VAI } /* isvaii */,
+ { 2, 9791, 0, 4, 0, UNI_HLUW } /* hluw */,
+ { 0, 9691, 0, 4, 42, UNI_UCASEXT } /* blk=unifiedcanadianaboriginalsyllabicsextended */,
+ { 1, 10247, 4829, 3, 5, UNI_JG__SADHE } /* jg=sadhe */,
+ { 0, 4744, 7692, 16, 8, UNI_IDENTIFIERTYPE__INCLUSION } /* identifiertype=inclusion */,
+ { 3, 9979, 8292, 4, 4, UNI_BUGI } /* scx=bugi */,
+ { 0, 185, 1223, 2, 4, UNI_KANA } /* iskana */,
+ { 0, 6083, 7956, 13, 8, UNI_NV__3_SLASH_2 } /* numericvalue=1.50e+00 */,
+ { 39, 3121, 9141, 18, 6, UNI_DT__NAR } /* decompositiontype=narrow */,
+ { 2, 9476, 9524, 3, 5, UNI_RUNR } /* sc=runic */,
+ { 1, 9979, 6972, 4, 4, UNI_NAND } /* scx=nand */,
+ { 0, 185, 6230, 2, 12, UNI_ETHIOPICEXTA } /* isethiopicexta */,
+ { 0, 9075, 10355, 6, 3, UNI_GREXT } /* grext=yes */,
+ { 0, 185, 1167, 2, 25, UNI_DI } /* isdefaultignorablecodepoint */,
+ { 0, 8973, 7271, 7, 9, UNI_CJKSTROKES } /* block=cjkstrokes */,
+ { 5, 9979, 10000, 5, 3, UNI_SHRD } /* scx=shrd */,
+ { 0, 10346, 18, 3, 1, UNI_VO__R } /* vo=r */,
+ { 1, 8973, 2955, 6, 19, UNI_SUPARROWSA } /* block=supplementalarrowsa */,
+ { 1, 10247, 5704, 3, 10, UNI_JG__TEHMARBUTA } /* jg=tehmarbuta */,
+ { 4, 9979, 9967, 4, 4, UNI_RUNR } /* scx=runr */,
+ { 1, 9476, 2841, 3, 4, UNI_MERO } /* sc=mero */,
+ { 0, 7230, 2292, 10, 3, UNI_BC__PDI } /* bidiclass=pdi */,
+ { 2, 7580, 5948, 10, 2, UNI_WB__ML } /* wordbreak=ml */,
+ { 0, 9476, 5227, 3, 4, UNI_CHAM } /* sc=cham */,
+ { 2, 10268, 9579, 3, 4, UNI_NV__1_SLASH_80 } /* nv=1/80 */,
+ { 0, 4154, 68, 3, 4, UNI_VSSUP } /* invssup */,
+ { 1, 9711, 9365, 5, 4, UNI_CCC__27 } /* ccc=ccc27 */,
+ { 1, 43, 0, 26, 0, UNI_CJKCOMPATIDEOGRAPHS } /* cjkcompatibilityideographs */,
+ { 0, 10283, 26, 3, 1, UNI_SD } /* sd=y */,
+ { 1, 9207, 0, 6, 0, UNI_THAA } /* thaana */,
+ { 1, 3157, 0, 17, 0, UNI_EBASE } /* emojimodifierbase */,
+ { 0, 2304, 4955, 3, 14, UNI_PS } /* isopenpunctuation */,
+ { 4, 5875, 2661, 13, 9, UNI_JG__YEHBARREE } /* joininggroup=yehbarree */,
+ { 2, 10109, 1748, 3, 22, UNI_ZNAMENNYMUSIC } /* inznamennymusicalnotation */,
+ { 16, 10217, 2533, 3, 11, UNI_BC__R } /* bc=righttoleft */,
+ { 8, 6340, 8587, 3, 6, UNI_CJKEXTG } /* incjkextg */,
+ { 0, 3121, 1418, 18, 9, UNI_DT__CAN } /* decompositiontype=canonical */,
+ { 46, 3877, 7835, 17, 9, UNI_OUGR } /* scriptextensions=olduyghur */,
+ { 7, 185, 7580, 2, 4, UNI_XPOSIXWORD } /* isword */,
+ { 1, 9979, 3265, 4, 4, UNI_GEOR } /* scx=geor */,
+ { 4, 4074, 1045, 16, 6, UNI_L } /* generalcategory=letter */,
+ { 0, 8973, 0, 6, 0, UNI_blk_values_index } /* block= */,
+ { 3, 8782, 10083, 7, 4, UNI_VAI } /* script=vaii */,
+ { 0, 7230, 6602, 10, 12, UNI_BC__ON } /* bidiclass=otherneutral */,
+ { 2, 9711, 9499, 4, 5, UNI_CCC__7 } /* ccc=nukta */,
+ { 5, 2185, 0, 21, 0, UNI_extpict_values_index } /* extendedpictographic= */,
+ { 3, 8973, 6362, 6, 5, UNI_INKHMER } /* block=khmer */,
+ { 7, 3121, 6530, 18, 8, UNI_DT__NONCANON } /* decompositiontype=noncanon */,
+ { 0, 7467, 9607, 3, 4, UNI_IN__14 } /* in=14.0 */,
+ { 0, 9691, 4282, 4, 16, UNI_MISCMATHSYMBOLSA } /* blk=miscmathsymbolsa */,
+ { 5, 9647, 10340, 4, 3, UNI_AGE__8 } /* age=v80 */,
+ { 0, 8782, 2841, 7, 19, UNI_MERO } /* script=meroitichieroglyphs */,
+ { 0, 9469, 6615, 3, 11, UNI_PHAISTOS } /* inphaistosdisc */,
+ { 0, 7160, 9238, 3, 5, UNI_YEZI } /* isyezidi */,
+ { 0, 6674, 10355, 12, 3, UNI_XIDC } /* xidcontinue=yes */,
+ { 2, 9691, 5606, 4, 14, UNI_PHONETICEXTSUP } /* blk=phoneticextsup */,
+ { 2, 8782, 9715, 7, 4, UNI_CHRS } /* script=chrs */,
+ { 3, 8782, 6518, 7, 4, UNI_MEND } /* script=mend */,
+ { 2, 9711, 7320, 4, 10, UNI_CCC__6 } /* ccc=hanreading */,
+ { 0, 9434, 1026, 5, 2, -UNI_CWCM } /* cwcm=no */,
+ { 2, 1418, 10172, 24, 3, UNI_CCC__IS } /* canonicalcombiningclass=240 */,
+ { 0, 8973, 9534, 6, 5, UNI_INTAKRI } /* block=takri */,
+ { 1, 2206, 1195, 21, 2, UNI_LB__LF } /* graphemeclusterbreak=lf */,
+ { 36, 3445, 0, 18, 0, UNI_RUMI } /* ruminumeralsymbols */,
+ { 0, 4972, 9203, 4, 4, UNI_TELU } /* istelugu */,
+ { 0, 2312, 1657, 4, 21, UNI_COMPATJAMO } /* inhangulcompatibilityjamo */,
+ { 3, 8628, 3, 7, 1, -UNI_GRBASE } /* grbase=f */,
+ { 0, 9270, 9454, 4, 5, -UNI_XPOSIXXDIGIT } /* hex=false */,
+ { 2, 1418, 9004, 25, 4, UNI_CCC__12 } /* canonicalcombiningclass=ccc12 */,
+ { 0, 3877, 10027, 17, 4, UNI_TAVT } /* scriptextensions=tavt */,
+ { 0, 5875, 6271, 13, 7, UNI_JG__SEMKATH } /* joininggroup=semkath */,
+ { 0, 9691, 1930, 4, 16, UNI_INDICNUMBERFORMS } /* blk=indicnumberforms */,
+ { 1, 21, 3445, 2, 18, UNI_RUMI } /* inruminumeralsymbols */,
+ { 0, 9476, 8508, 3, 4, UNI_VITH } /* sc=vith */,
+ { 1, 3319, 0, 18, 0, UNI_LATINEXTADDITIONAL } /* latinextadditional */,
+ { 4, 8782, 3826, 7, 4, UNI_SC__MANI } /* script=mani */,
+ { 2, 9177, 26, 6, 1, UNI_QMARK } /* qmark=y */,
+ { 3, 9691, 8372, 4, 8, UNI_JAMOEXTA } /* blk=jamoexta */,
+ { 5, 6340, 631, 3, 29, UNI_CJKEXTE } /* incjkunifiedideographsextensione */,
+ { 0, 10268, 9575, 3, 3, UNI_NV__1_SLASH_6 } /* nv=1/6 */,
+ { 0, 6083, 9615, 13, 4, UNI_NV__17_SLASH_2 } /* numericvalue=17/2 */,
+ { 1, 9979, 6362, 4, 5, UNI_KHMR } /* scx=khmer */,
+ { 0, 9711, 2479, 4, 5, UNI_CCC__R } /* ccc=right */,
+ { 1, 185, 2509, 2, 4, UNI_MONG } /* ismong */,
+ { 8, 3877, 8614, 17, 4, UNI_ELYM } /* scriptextensions=elym */,
+ { 7, 9449, 10055, 5, 4, UNI_EMOD } /* emod=true */,
+ { 0, 4972, 4443, 3, 15, UNI_TANGUTSUP } /* istangutsupplement */,
{ 1, 21, 8380, 2, 8, UNI_JAMOEXTB } /* injamoextb */,
- { 0, 10247, 9983, 3, 4, UNI_JG__SEEN } /* jg=seen */,
- { 6, 185, 2433, 2, 10, UNI_GLAG } /* isglagolitic */,
- { 8, 5875, 4250, 13, 16, UNI_JG__MANICHAEANSAMEKH } /* joininggroup=manichaeansamekh */,
- { 9, 185, 2, 3, 1, UNI_CI } /* isci */,
- { 10, 9763, 3409, 4, 17, UNI_RI } /* gcb=regionalindicator */,
- { 0, 1538, 7440, 24, 10, UNI_INPC__OVERSTRUCK } /* indicpositionalcategory=overstruck */,
- { 0, 1418, 7934, 24, 2, UNI_CCC__25 } /* canonicalcombiningclass=25 */,
- { 0, 8642, 0, 7, 0, UNI_hyphen_values_index } /* hyphen= */,
- { 1, 3448, 1, 3, 41, UNI_UCASEXT } /* inunifiedcanadianaboriginalsyllabicsextended */,
- { 1, 9691, 6928, 4, 11, UNI_INMEDEFAIDRIN } /* blk=medefaidrin */,
- { 10, 9691, 1632, 4, 18, UNI_GEOMETRICSHAPESEXT } /* blk=geometricshapesext */,
- { 0, 1934, 0, 2, 0, UNI_CN } /* cn */,
- { 0, 185, 8614, 2, 7, UNI_ELYM } /* iselymaic */,
- { 2, 8782, 8845, 7, 7, UNI_TAVT } /* script=taiviet */,
- { 1, 10542, 3403, 5, 5, UNI_XPOSIXSPACE } /* xperlspace */,
- { 2, 3553, 1026, 18, 2, -UNI_VS } /* variationselector=no */,
- { 0, 10352, 34, 3, 2, UNI_WB__EX } /* wb=ex */,
- { 2, 8973, 7835, 6, 9, UNI_INOLDUYGHUR } /* block=olduyghur */,
- { 3, 2242, 16, 3, 1, UNI_NB } /* innb */,
- { 2, 8973, 8740, 6, 7, UNI_OLCK } /* block=olchiki */,
- { 1, 8973, 8838, 6, 7, UNI_INTAITHAM } /* block=taitham */,
- { 0, 5242, 0, 14, 0, UNI_HIGHSURROGATES } /* highsurrogates */,
- { 0, 9691, 4170, 4, 16, UNI_LATIN1 } /* blk=latin1supplement */,
- { 1, 9691, 3103, 4, 6, UNI_INCOPTIC } /* blk=coptic */,
- { 0, 1506, 3868, 4, 5, UNI_INGRANTHA } /* ingrantha */,
- { 1, 9147, 9454, 6, 5, -UNI__PERL_NCHAR } /* nchar=false */,
- { 0, 9647, 10310, 4, 3, UNI_AGE__4 } /* age=v40 */,
- { 4, 6083, 8171, 13, 2, UNI_NV__26 } /* numericvalue=26 */,
- { 5, 9550, 10055, 4, 4, UNI_IDS } /* ids=true */,
- { 24, 9711, 7923, 4, 2, UNI_CCC__11 } /* ccc=11 */,
- { 0, 4026, 0, 16, 0, UNI_PE } /* closepunctuation */,
- { 2, 1418, 1180, 24, 2, UNI_CCC__BL } /* canonicalcombiningclass=bl */,
- { 2, 9727, 26, 4, 1, UNI_CWL } /* cwl=y */,
- { 4, 1880, 36, 22, 1, UNI_CWU } /* changeswhenuppercased=t */,
- { 0, 9476, 8500, 3, 4, UNI_UGAR } /* sc=ugar */,
- { 0, 8628, 10355, 7, 3, UNI_GRBASE } /* grbase=yes */,
- { 4, 10229, 4588, 3, 6, UNI_DT__MED } /* dt=medial */,
- { 0, 4972, 10032, 3, 3, UNI_TFNG } /* istfng */,
- { 0, 5875, 9554, 13, 5, UNI_JG__ZHAIN } /* joininggroup=zhain */,
- { 0, 7460, 10304, 10, 3, UNI_IN__3_DOT_1 } /* presentin=v31 */,
- { 4, 9711, 9310, 5, 4, UNI_CCC__16 } /* ccc=ccc16 */,
- { 2, 9476, 8866, 3, 7, UNI_SC__TIRH } /* sc=tirhuta */,
- { 1, 8705, 10355, 7, 3, UNI_NFKCQC__Y } /* nfkcqc=yes */,
- { 0, 5088, 1026, 14, 2, -UNI_POSIXXDIGIT } /* asciihexdigit=no */,
+ { 4, 8973, 6386, 6, 12, UNI_MAHJONG } /* block=mahjongtiles */,
+ { 32, 9476, 9484, 3, 5, UNI_SC__LIMB } /* sc=limbu */,
+ { 1, 4074, 1528, 16, 9, UNI__PERL_SURROGATE } /* generalcategory=surrogate */,
+ { 3, 9711, 8147, 4, 2, UNI_CCC__16 } /* ccc=16 */,
+ { 8, 1418, 9022, 25, 5, UNI_CCC__132 } /* canonicalcombiningclass=ccc132 */,
+ { 3, 3877, 10123, 17, 4, UNI_ZZZZ } /* scriptextensions=zzzz */,
+ { 3, 9476, 1220, 4, 7, UNI_SC__KANA } /* sc=katakana */,
+ { 1, 4847, 2271, 4, 19, UNI_MEETEIMAYEKEXT } /* inmeeteimayekextensions */,
+ { 0, 6083, 8028, 13, 2, UNI_NV__20 } /* numericvalue=20 */,
+ { 0, 1538, 6753, 3, 10, UNI_DOMINO } /* indominotiles */,
+ { 0, 1167, 36, 26, 1, UNI_DI } /* defaultignorablecodepoint=t */,
+ { 0, 8973, 8754, 6, 7, UNI_INOSMANYA } /* block=osmanya */,
+ { 3, 4847, 2271, 4, 9, UNI_INMEETEIMAYEK } /* inmeeteimayek */,
+ { 1, 8642, 9454, 7, 5, -UNI_HYPHEN } /* hyphen=false */,
+ { 10, 3894, 0, 16, 0, UNI_STERM } /* sentenceterminal */,
+ { 13, 10244, 5522, 3, 14, UNI_SK } /* gc=modifiersymbol */,
+ { 4, 8789, 0, 7, 0, UNI_SHRD } /* sharada */,
+ { 1, 3157, 1, 18, 1, -UNI_EBASE } /* emojimodifierbase=n */,
+ { 0, 9691, 7781, 4, 9, UNI_INNABATAEAN } /* blk=nabataean */,
+ { 0, 3945, 10055, 17, 4, UNI_UIDEO } /* unifiedideograph=true */,
+ { 0, 6937, 0, 13, 0, UNI_MISCSYMBOLS } /* inmiscsymbols */,
+ { 3, 1538, 0, 24, 0, UNI_inpc_values_index } /* indicpositionalcategory= */,
+ { 0, 10268, 9254, 3, 4, UNI_NV__1_SLASH_32 } /* nv=1/32 */,
+ { 1, 8973, 9284, 6, 5, UNI_INBATAK } /* block=batak */,
+ { 1, 7060, 1026, 11, 2, -UNI_SD } /* softdotted=no */,
+ { 3, 6529, 4925, 3, 14, UNI_NARB } /* inoldnortharabian */,
+ { 0, 10352, 74, 3, 2, UNI_WB__EB } /* wb=em */,
+ { 3, 9691, 9529, 4, 5, UNI_INTAILE } /* blk=taile */,
+ { 9, 3193, 0, 8, 0, UNI_ETHI } /* ethiopic */,
+ { 17, 9219, 10055, 6, 4, UNI_XPOSIXUPPER } /* upper=true */,
+ { 0, 9979, 9791, 4, 4, UNI_HLUW } /* scx=hluw */,
+ { 1, 9474, 6566, 5, 12, UNI_INSC__NUMBERJOINER } /* insc=numberjoiner */,
+ { 0, 1923, 0, 2, 0, UNI_PC } /* pc */,
+ { 3, 7360, 6302, 10, 12, UNI_LB__HL } /* linebreak=hebrewletter */,
+ { 5, 2304, 126, 3, 2, UNI_OCR } /* isocr */,
+ { 18, 9979, 9723, 4, 4, UNI_CPRT } /* scx=cprt */,
+ { 0, 9476, 9687, 3, 4, UNI_BHKS } /* sc=bhks */,
+ { 1, 8782, 8388, 7, 8, UNI_SC__JAVA } /* script=javanese */,
+ { 0, 9476, 9444, 3, 4, UNI_SC__DOGR } /* sc=dogr */,
+ { 0, 9647, 10199, 4, 3, UNI_AGE__6_DOT_1 } /* age=6.1 */,
+ { 0, 9461, 496, 3, 7, UNI_SB__NU } /* sb=numeric */,
+ { 0, 185, 1443, 3, 23, UNI_CJKSYMBOLS } /* iscjksymbolsandpunctuation */,
+ { 3, 9743, 1, 4, 1, -UNI_DEP } /* dep=n */,
+ { 0, 9979, 9231, 4, 6, UNI_WCHO } /* scx=wancho */,
+ { 40, 10253, 989, 3, 2, UNI_LB__CP } /* lb=cp */,
+ { 0, 5093, 3, 9, 1, -UNI_XPOSIXXDIGIT } /* hexdigit=f */,
+ { 0, 3877, 4411, 18, 5, UNI_SYRC } /* scriptextensions=syriac */,
+ { 0, 185, 8348, 2, 8, UNI_GURU } /* isgurmukhi */,
+ { 15, 3945, 1, 17, 1, -UNI_UIDEO } /* unifiedideograph=n */,
+ { 0, 8973, 868, 6, 18, UNI_PHONETICEXT } /* block=phoneticextensions */,
+ { 0, 342, 0, 2, 0, UNI_PE } /* pe */,
+ { 1, 7467, 5732, 3, 2, UNI_IN__10 } /* in=10 */,
+ { 2, 8782, 9723, 7, 4, UNI_SC__CPRT } /* script=cprt */,
+ { 2, 8782, 9915, 7, 4, UNI_SC__ORYA } /* script=orya */,
+ { 0, 9476, 8789, 3, 7, UNI_SC__SHRD } /* sc=sharada */,
+ { 0, 9979, 9129, 4, 6, UNI_LYCI } /* scx=lycian */,
+ { 0, 10402, 10499, 6, 9, UNI__PERL_QUOTEMETA } /* _perl_quotemeta */,
+ { 6, 8782, 2312, 8, 3, UNI_SC__SINH } /* script=sinh */,
+ { 1, 8973, 4090, 6, 11, UNI_GEORGIANEXT } /* block=georgianext */,
+ { 2, 8979, 0, 4, 0, UNI_CARI } /* cari */,
+ { 1, 3121, 1310, 18, 3, UNI_DT__SUB } /* decompositiontype=sub */,
+ { 0, 9979, 5634, 4, 14, UNI_PHLP } /* scx=psalterpahlavi */,
+ { 5, 185, 6158, 2, 5, UNI_BIDIC } /* isbidic */,
+ { 1, 9476, 3265, 3, 4, UNI_SC__GEOR } /* sc=geor */,
+ { 0, 9691, 5298, 4, 14, UNI_LATINEXTC } /* blk=latinextendedc */,
+ { 0, 4598, 3267, 4, 9, UNI_GEORGIANSUP } /* ingeorgiansup */,
+ { 0, 9476, 2433, 3, 10, UNI_SC__GLAG } /* sc=glagolitic */,
+ { 5, 8881, 4491, 4, 13, UNI_ARABICEXTB } /* isarabicextendedb */,
+ { 0, 10268, 8204, 3, 8, UNI_NV__3_SLASH_4 } /* nv=7.50e-01 */,
+ { 0, 185, 1320, 2, 25, UNI_SYMBOLSANDPICTOGRAPHSEXTA } /* issymbolsandpictographsexta */,
+ { 7, 185, 6044, 2, 13, UNI_MAYANNUMERALS } /* ismayannumerals */,
+ { 3, 4157, 2804, 3, 17, UNI_IDST } /* isidstrinaryoperator */,
+ { 0, 1553, 5810, 9, 13, UNI_ME } /* category=enclosingmark */,
+ { 0, 58, 0, 2, 0, UNI_YI } /* yi */,
+ { 9, 1747, 0, 13, 0, UNI_ZNAMENNYMUSIC } /* znamennymusic */,
+ { 2, 6675, 0, 11, 0, UNI_idc_values_index } /* idcontinue= */,
+ { 0, 10247, 5, 3, 1, UNI_JG__E } /* jg=e */,
+ { 2, 8973, 3076, 6, 9, UNI_HALFMARKS } /* block=halfmarks */,
+ { 0, 4684, 1193, 15, 9, UNI_EA__H } /* eastasianwidth=halfwidth */,
+ { 37, 7745, 0, 9, 0, UNI_LATINEXTF } /* latinextf */,
+ { 0, 6083, 9260, 13, 4, UNI_NV__1_SLASH_12 } /* numericvalue=1/12 */,
+ { 1, 8782, 7105, 8, 3, UNI_SC__SYLO } /* script=sylo */,
+ { 0, 1189, 2101, 3, 14, UNI_TRANSPORTANDMAP } /* intransportandmap */,
+ { 6, 9979, 9655, 4, 4, UNI_AHOM } /* scx=ahom */,
+ { 0, 185, 9839, 2, 4, UNI_LINA } /* islina */,
+ { 0, 6158, 9454, 12, 5, -UNI_BIDIC } /* bidicontrol=false */,
+ { 1, 9691, 3463, 4, 12, UNI_SMALLKANAEXT } /* blk=smallkanaext */,
+ { 15, 9647, 9600, 4, 3, UNI_AGE__3 } /* age=3.0 */,
+ { 1, 8782, 3049, 7, 8, UNI_CHER } /* script=cherokee */,
+ { 1, 185, 3463, 2, 18, UNI_SMALLKANAEXT } /* issmallkanaextension */,
+ { 19, 7460, 10205, 10, 3, UNI_IN__7 } /* presentin=7.0 */,
+ { 1, 9545, 1, 4, 1, -UNI_IDC } /* idc=n */,
+ { 0, 5093, 0, 9, 0, UNI_hex_values_index } /* hexdigit= */,
+ { 2, 8782, 6972, 7, 11, UNI_SC__NAND } /* script=nandinagari */,
+ { 1, 8476, 0, 8, 0, UNI_TFNG } /* tifinagh */,
+ { 51, 8973, 750, 6, 16, UNI_ENCLOSEDALPHANUM } /* block=enclosedalphanum */,
+ { 0, 9979, 9514, 4, 5, UNI_ORYA } /* scx=oriya */,
{ 2, 8782, 4426, 7, 6, UNI_TANG } /* script=tangut */,
- { 0, 9647, 9607, 4, 4, UNI_AGE__14 } /* age=14.0 */,
- { 0, 185, 8566, 3, 6, UNI_CJKEXTD } /* iscjkextd */,
- { 0, 9476, 10111, 3, 4, UNI_ZANB } /* sc=zanb */,
- { 3, 185, 9231, 2, 6, UNI_WCHO } /* iswancho */,
- { 8, 185, 2841, 2, 4, UNI_MERO } /* ismero */,
+ { 1, 10109, 5062, 5, 12, UNI_INZANABAZARSQUARE } /* inzanabazarsquare */,
+ { 15, 6529, 7827, 3, 8, UNI_INOLDTURKIC } /* inoldturkic */,
+ { 0, 4504, 0, 5, 0, UNI_BAMU } /* bamum */,
+ { 5, 9476, 2433, 3, 4, UNI_SC__GLAG } /* sc=glag */,
+ { 0, 8887, 36, 7, 1, UNI_XPOSIXSPACE } /* wspace=t */,
+ { 1, 3877, 4984, 17, 5, UNI_TAML } /* scriptextensions=tamil */,
{ 0, 9691, 5029, 4, 15, UNI_VEDICEXT } /* blk=vedicextensions */,
- { 1, 9691, 868, 4, 28, UNI_PHONETICEXTSUP } /* blk=phoneticextensionssupplement */,
- { 0, 3193, 0, 4, 0, UNI_ETHI } /* ethi */,
- { 8, 4157, 3302, 3, 17, UNI_PI } /* isinitialpunctuation */,
- { 2, 9731, 10355, 4, 3, UNI_CWT } /* cwt=yes */,
- { 3, 9474, 5718, 5, 14, UNI_INSC__VOWELDEPENDENT } /* insc=voweldependent */,
- { 3, 10229, 8726, 3, 7, UNI_DT__NB } /* dt=nobreak */,
- { 1, 9991, 0, 4, 0, UNI_SHAW } /* shaw */,
- { 3, 9123, 1, 6, 1, -UNI_XPOSIXLOWER } /* lower=n */,
- { 1, 9691, 8476, 4, 8, UNI_INTIFINAGH } /* blk=tifinagh */,
- { 6, 7907, 26, 9, 1, UNI_XIDS } /* xidstart=y */,
- { 11, 1538, 2473, 24, 4, UNI_INPC__LEFT } /* indicpositionalcategory=left */,
- { 3, 1553, 7, 10, 1, UNI_SC } /* category=sc */,
- { 0, 4609, 0, 15, 0, UNI_CONTROLPICTURES } /* controlpictures */,
- { 0, 4885, 2435, 4, 8, UNI_INGLAGOLITIC } /* inglagolitic */,
- { 0, 185, 1903, 3, 21, UNI_CJKCOMPATIDEOGRAPHSSUP } /* iscjkcompatideographssup */,
- { 7, 9691, 1632, 4, 23, UNI_GEOMETRICSHAPESEXT } /* blk=geometricshapesextended */,
- { 2, 3877, 9207, 17, 4, UNI_THAA } /* scriptextensions=thaa */,
- { 0, 9979, 8797, 5, 6, UNI_SHAW } /* scx=shavian */,
- { 48, 9461, 3382, 3, 3, UNI_SB__SE } /* sb=sep */,
- { 0, 9063, 9454, 6, 5, -UNI_EPRES } /* epres=false */,
- { 0, 8973, 1061, 7, 5, UNI_INCOPTIC } /* block=coptic */,
- { 3, 9691, 9484, 4, 5, UNI_INLIMBU } /* blk=limbu */,
- { 3, 185, 5096, 2, 5, UNI_XPOSIXDIGIT } /* isdigit */,
- { 0, 185, 8719, 2, 7, UNI_NB } /* isnoblock */,
- { 12, 7230, 866, 10, 2, UNI_BC__WS } /* bidiclass=ws */,
- { 0, 8887, 1026, 7, 2, -UNI_XPOSIXSPACE } /* wspace=no */,
- { 1, 7230, 6602, 10, 12, UNI_BC__ON } /* bidiclass=otherneutral */,
- { 1, 7360, 10394, 10, 2, UNI_LB__XX } /* linebreak=xx */,
- { 1, 8782, 6518, 7, 4, UNI_MEND } /* script=mend */,
- { 4, 284, 0, 33, 0, UNI_MISCMATHSYMBOLSB } /* miscellaneousmathematicalsymbolsb */,
- { 5, 7908, 36, 8, 1, UNI_IDS } /* idstart=t */,
- { 1, 9979, 9444, 4, 5, UNI_DOGR } /* scx=dogra */,
- { 9, 10226, 3, 3, 1, -UNI_DI } /* di=f */,
- { 0, 10516, 469, 3, 4, UNI_P } /* ispunct */,
- { 1, 9927, 10055, 4, 4, UNI_PCM } /* pcm=true */,
- { 0, 9476, 9883, 3, 4, UNI_NARB } /* sc=narb */,
- { 11, 8782, 1924, 7, 6, UNI_SC__ZYYY } /* script=common */,
- { 2, 185, 1562, 2, 24, UNI_SUPSYMBOLSANDPICTOGRAPHS } /* issupsymbolsandpictographs */,
- { 0, 9711, 8, 4, 1, UNI_CCC__A } /* ccc=a */,
- { 0, 1946, 0, 12, 0, UNI_DIACRITICALS } /* diacriticals */,
- { 1, 9691, 4282, 4, 16, UNI_MISCMATHSYMBOLSA } /* blk=miscmathsymbolsa */,
- { 0, 1836, 9454, 22, 5, -UNI_CWL } /* changeswhenlowercased=false */,
- { 3, 8881, 5075, 3, 13, UNI_ANCIENTSYMBOLS } /* isancientsymbols */,
- { 21, 10253, 7664, 3, 9, UNI_LB__B2 } /* lb=breakboth */,
- { 4, 9747, 36, 4, 1, UNI_DIA } /* dia=t */,
- { 0, 185, 8300, 2, 8, UNI_DUPL } /* isduployan */,
- { 0, 10516, 9940, 3, 3, UNI_MIAO } /* isplrd */,
- { 8, 8782, 9823, 7, 4, UNI_SC__KTHI } /* script=kthi */,
- { 8, 10508, 1847, 8, 5, UNI_XPOSIXLOWER } /* isxposixlower */,
- { 2, 7230, 37, 10, 2, UNI_BC__EN } /* bidiclass=en */,
- { 2, 9476, 9771, 3, 4, UNI_SC__GONM } /* sc=gonm */,
- { 1, 3391, 10355, 18, 3, UNI__PERL_PATWS } /* patternwhitespace=yes */,
- { 0, 1418, 7619, 24, 9, UNI_CCC__AL } /* canonicalcombiningclass=aboveleft */,
- { 9, 4074, 4286, 16, 10, UNI_SM } /* generalcategory=mathsymbol */,
- { 14, 9691, 630, 4, 30, UNI_CJKEXTE } /* blk=cjkunifiedideographsextensione */,
- { 0, 4463, 3141, 4, 11, UNI_DEVANAGARIEXT } /* indevanagariext */,
- { 1, 7297, 6594, 3, 3, UNI_HUNG } /* ishung */,
- { 8, 3121, 9039, 18, 6, UNI_DT__ENC } /* decompositiontype=circle */,
- { 17, 5116, 0, 13, 0, UNI_CI } /* caseignorable */,
- { 3, 3928, 0, 17, 0, UNI_SUTTONSIGNWRITING } /* suttonsignwriting */,
- { 0, 8782, 7863, 8, 8, UNI_SAMR } /* script=samaritan */,
- { 0, 9691, 4474, 4, 15, UNI_ARABICEXTA } /* blk=arabicextendeda */,
- { 0, 8782, 3265, 7, 8, UNI_SC__GEOR } /* script=georgian */,
- { 2, 4074, 6132, 16, 2, UNI_PF } /* generalcategory=pf */,
- { 1, 185, 9771, 2, 4, UNI_GONM } /* isgonm */,
- { 13, 342, 0, 2, 0, UNI_PE } /* pe */,
- { 0, 9979, 9683, 4, 4, UNI_BATK } /* scx=batk */,
- { 3, 9979, 8276, 4, 4, UNI_BALI } /* scx=bali */,
- { 1, 1418, 9320, 25, 4, UNI_CCC__18 } /* canonicalcombiningclass=ccc18 */,
- { 0, 6529, 7836, 3, 8, UNI_INOLDUYGHUR } /* inolduyghur */,
- { 0, 4972, 3482, 3, 17, UNI_TAIXUANJING } /* istaixuanjingsymbols */,
- { 1, 9711, 9675, 4, 3, UNI_CCC__202 } /* ccc=atb */,
- { 1, 9476, 8284, 3, 8, UNI_BASS } /* sc=bassavah */,
- { 26, 3724, 0, 17, 0, UNI_ETHIOPICEXTB } /* ethiopicextendedb */,
- { 0, 8973, 8824, 6, 7, UNI_SUPPUAB } /* block=suppuab */,
- { 1, 8973, 3068, 7, 17, UNI_HALFMARKS } /* block=combininghalfmarks */,
- { 4, 4684, 866, 15, 1, UNI_EA__W } /* eastasianwidth=w */,
- { 42, 7811, 0, 4, 0, UNI_ITAL } /* ital */,
- { 8, 4972, 2101, 3, 14, UNI_TRANSPORTANDMAP } /* istransportandmap */,
- { 0, 4744, 9165, 15, 6, UNI_IDENTIFIERTYPE__NOTXID } /* identifiertype=notxid */,
- { 25, 1553, 1, 9, 1, UNI_N } /* category=n */,
- { 4, 9691, 9444, 4, 5, UNI_INDOGRA } /* blk=dogra */,
- { 4, 4714, 0, 15, 0, UNI_grext_values_index } /* graphemeextend= */,
- { 0, 10217, 6146, 3, 12, UNI_BC__AN } /* bc=arabicnumber */,
- { 0, 9476, 7420, 3, 10, UNI_XPEO } /* sc=oldpersian */,
- { 4, 10402, 25, 29, 1, UNI__PERL_PROBLEMATIC_LOCALE_FOLDS } /* _perl_problematic_locale_folds */,
- { 9, 8973, 9871, 6, 3, UNI_INMRO } /* block=mro */,
- { 0, 10253, 6829, 3, 11, UNI_LB__IN } /* lb=inseperable */,
- { 16, 185, 3265, 2, 8, UNI_GEOR } /* isgeorgian */,
- { 0, 10268, 8028, 3, 4, UNI_NV__2000 } /* nv=2000 */,
- { 8, 1418, 9340, 25, 4, UNI_CCC__22 } /* canonicalcombiningclass=ccc22 */,
- { 6, 1553, 48, 10, 1, UNI_SM } /* category=sm */,
- { 3, 8881, 9680, 3, 3, UNI_AVST } /* isavst */,
- { 0, 9264, 0, 5, 0, UNI_ADLM } /* adlam */,
- { 0, 9691, 7450, 4, 10, UNI_INPHOENICIAN } /* blk=phoenician */,
- { 0, 1852, 26, 6, 1, UNI_CASED } /* cased=y */,
- { 7, 9214, 3, 5, 1, -UNI_IDEO } /* ideo=f */,
- { 10, 4074, 468, 16, 5, UNI_P } /* generalcategory=punct */,
- { 1, 9711, 10392, 4, 2, UNI_CCC__9 } /* ccc=vr */,
- { 1, 9747, 10055, 4, 4, UNI_DIA } /* dia=true */,
- { 1, 21, 3319, 2, 18, UNI_LATINEXTADDITIONAL } /* inlatinextadditional */,
- { 7, 185, 7736, 2, 9, UNI_LATINEXTD } /* islatinextd */,
- { 18, 9476, 4410, 3, 6, UNI_SC__SYRC } /* sc=syriac */,
- { 3, 185, 8628, 2, 6, UNI_GRBASE } /* isgrbase */,
- { 2, 9207, 0, 6, 0, UNI_THAA } /* thaana */,
- { 2, 8973, 1655, 6, 23, UNI_COMPATJAMO } /* block=hangulcompatibilityjamo */,
- { 2, 2248, 7511, 3, 9, UNI_SMALLFORMS } /* insmallforms */,
- { 1, 185, 6183, 3, 11, UNI_CHESSSYMBOLS } /* ischesssymbols */,
- { 0, 3406, 9454, 3, 5, -UNI_CE } /* ce=false */,
- { 0, 9647, 10067, 4, 4, UNI_AGE__12 } /* age=v120 */,
- { 0, 10268, 9567, 3, 4, UNI_NV__1_SLASH_20 } /* nv=1/20 */,
- { 1, 6842, 3607, 4, 15, UNI_UCAS } /* incanadiansyllabics */,
- { 8, 9153, 9494, 6, 5, UNI_NFCQC__M } /* nfcqc=maybe */,
- { 23, 5093, 10055, 9, 4, UNI_XPOSIXXDIGIT } /* hexdigit=true */,
- { 8, 9979, 9294, 4, 5, UNI_BUHD } /* scx=buhid */,
- { 0, 8973, 7790, 6, 9, UNI_INNEWTAILUE } /* block=newtailue */,
- { 11, 9691, 4759, 4, 15, UNI_INIMPERIALARAMAIC } /* blk=imperialaramaic */,
- { 0, 10268, 9627, 3, 4, UNI_NV__3_SLASH_64 } /* nv=3/64 */,
- { 4, 1880, 10055, 22, 4, UNI_CWU } /* changeswhenuppercased=true */,
- { 14, 9459, 10355, 5, 3, UNI_IDSB } /* idsb=yes */,
- { 1, 8967, 26, 6, 1, UNI_BIDIM } /* bidim=y */,
- { 24, 185, 1747, 2, 23, UNI_ZNAMENNYMUSIC } /* isznamennymusicalnotation */,
- { 0, 3877, 2269, 17, 11, UNI_MTEI } /* scriptextensions=meeteimayek */,
- { 0, 10253, 4401, 3, 9, UNI_EMOD } /* lb=emodifier */,
- { 0, 1858, 10055, 22, 4, UNI_CWT } /* changeswhentitlecased=true */,
- { 1, 8593, 0, 7, 0, UNI_compex_values_index } /* compex= */,
- { 0, 3121, 4058, 18, 3, UNI_DT__FIN } /* decompositiontype=fin */,
- { 7, 185, 6928, 2, 11, UNI_MEDF } /* ismedefaidrin */,
- { 6, 7230, 32, 10, 2, UNI_BC__CS } /* bidiclass=cs */,
- { 0, 1418, 9410, 25, 4, UNI_CCC__36 } /* canonicalcombiningclass=ccc36 */,
- { 43, 9727, 0, 3, 0, UNI_CWL } /* cwl */,
- { 3, 8782, 8614, 7, 4, UNI_ELYM } /* script=elym */,
- { 4, 10217, 4520, 4, 14, UNI_BC__BN } /* bc=boundaryneutral */,
- { 4, 1418, 8043, 24, 2, UNI_CCC__23 } /* canonicalcombiningclass=23 */,
- { 3, 9979, 8356, 4, 4, UNI_HIRA } /* scx=hira */,
- { 0, 9647, 10337, 4, 3, UNI_AGE__7 } /* age=v70 */,
- { 1, 9711, 9012, 4, 3, UNI_CCC__129 } /* ccc=129 */,
- { 36, 8782, 9117, 7, 4, UNI_LEPC } /* script=lepc */,
- { 5, 9474, 0, 5, 0, UNI_insc_values_index } /* insc= */,
- { 1, 1189, 2321, 3, 3, UNI_INTHAI } /* inthai */,
- { 0, 7230, 2533, 10, 11, UNI_BC__R } /* bidiclass=righttoleft */,
- { 0, 9476, 7808, 3, 9, UNI_ITAL } /* sc=olditalic */,
- { 0, 3877, 3265, 17, 8, UNI_GEOR } /* scriptextensions=georgian */,
- { 0, 6675, 1026, 11, 2, -UNI_IDC } /* idcontinue=no */,
- { 0, 9691, 5927, 4, 13, UNI_LOWSURROGATES } /* blk=lowsurrogates */,
- { 2, 2056, 10355, 22, 3, UNI__PERL_NCHAR } /* noncharactercodepoint=yes */,
- { 1, 6083, 8060, 13, 8, UNI_NV__1_SLASH_3 } /* numericvalue=3.33e-01 */,
- { 3, 6083, 8931, 13, 5, UNI_NV__60000 } /* numericvalue=60000 */,
- { 1, 8782, 9947, 7, 4, UNI_SC__COPT } /* script=qaac */,
- { 0, 8973, 8796, 6, 7, UNI_SHAW } /* block=shavian */,
- { 0, 7467, 10079, 3, 4, UNI_IN__14 } /* in=v140 */,
- { 9, 4074, 263, 16, 2, UNI_SM } /* generalcategory=sm */,
- { 5, 3877, 9264, 17, 5, UNI_ADLM } /* scriptextensions=adlam */,
- { 0, 6674, 0, 4, 0, UNI_XIDC } /* xidc */,
- { 6, 8782, 8831, 7, 7, UNI_SC__TGLG } /* script=tagalog */,
- { 0, 9979, 6362, 4, 5, UNI_KHMR } /* scx=khmer */,
- { 2, 5550, 0, 15, 0, UNI_DT__CAN } /* nfdquickcheck=n */,
- { 1, 10268, 9578, 3, 2, UNI_NV__41 } /* nv=41 */,
- { 3, 9711, 9320, 5, 4, UNI_CCC__18 } /* ccc=ccc18 */,
- { 4, 3121, 1254, 18, 4, UNI_DT__INIT } /* decompositiontype=init */,
- { 0, 9691, 3193, 4, 8, UNI_INETHIOPIC } /* blk=ethiopic */,
- { 0, 8782, 2248, 7, 21, UNI_PRTI } /* script=inscriptionalparthian */,
- { 0, 10115, 0, 4, 0, UNI_QAAI } /* zinh */,
- { 0, 2841, 0, 19, 0, UNI_MERO } /* meroitichieroglyphs */,
- { 0, 9177, 26, 6, 1, UNI_QMARK } /* qmark=y */,
- { 3, 7360, 10380, 10, 2, UNI_LB__H3 } /* linebreak=h3 */,
- { 5, 8782, 4939, 7, 15, UNI_SARB } /* script=oldsoutharabian */,
- { 0, 5875, 4819, 13, 15, UNI_JG__MANICHAEANSADHE } /* joininggroup=manichaeansadhe */,
- { 0, 9449, 10055, 5, 4, UNI_EMOD } /* emod=true */,
- { 1, 8782, 7811, 7, 4, UNI_ITAL } /* script=ital */,
- { 0, 9691, 9195, 4, 6, UNI_INTANGSA } /* blk=tangsa */,
- { 8, 4972, 10028, 3, 3, UNI_TAVT } /* istavt */,
- { 1, 3398, 10355, 11, 3, UNI_XPOSIXSPACE } /* whitespace=yes */,
- { 1, 3571, 0, 17, 0, UNI_ALCHEMICAL } /* alchemicalsymbols */,
- { 0, 5875, 5966, 13, 13, UNI_JG__MANICHAEANMEM } /* joininggroup=manichaeanmem */,
- { 2, 9711, 5461, 4, 2, UNI_CCC__7 } /* ccc=nk */,
- { 6, 4074, 27, 16, 2, UNI_LOWERCASELETTER } /* generalcategory=ll */,
- { 1, 8782, 3935, 8, 10, UNI_SGNW } /* script=signwriting */,
- { 1, 10247, 7038, 3, 11, UNI_JG__ROHINGYAYEH } /* jg=rohingyayeh */,
- { 1, 1553, 468, 9, 11, UNI_P } /* category=punctuation */,
- { 3, 9476, 8508, 3, 8, UNI_VITH } /* sc=vithkuqi */,
- { 0, 1655, 0, 23, 0, UNI_COMPATJAMO } /* hangulcompatibilityjamo */,
- { 3, 4157, 6676, 3, 9, UNI_IDC } /* isidcontinue */,
- { 1, 5875, 342, 13, 2, UNI_JG__PE } /* joininggroup=pe */,
- { 0, 5875, 4789, 13, 15, UNI_JG__MANICHAEANALEPH } /* joininggroup=manichaeanaleph */,
+ { 0, 9691, 868, 4, 28, UNI_PHONETICEXTSUP } /* blk=phoneticextensionssupplement */,
+ { 1, 10253, 3, 4, 1, UNI_LB__LF } /* lb=lf */,
+ { 10, 9863, 0, 4, 0, UNI_MIAO } /* miao */,
+ { 15, 9711, 7983, 4, 1, UNI_CCC__7 } /* ccc=7 */,
+ { 5, 8782, 6928, 7, 11, UNI_MEDF } /* script=medefaidrin */,
+ { 4, 9476, 9859, 3, 4, UNI_MERC } /* sc=merc */,
+ { 0, 9691, 9183, 4, 6, UNI_INREJANG } /* blk=rejang */,
+ { 0, 1869, 0, 9, 0, UNI_TITLE } /* titlecase */,
+ { 21, 9489, 0, 5, 0, UNI_math_values_index } /* math= */,
+ { 0, 185, 3837, 3, 3, UNI_CHAM } /* ischam */,
+ { 9, 185, 9687, 2, 4, UNI_BHKS } /* isbhks */,
+ { 0, 185, 3365, 2, 8, UNI_DINGBATS } /* isdingbats */,
+ { 8, 6529, 7421, 3, 9, UNI_INOLDPERSIAN } /* inoldpersian */,
+ { 3, 7907, 36, 9, 1, UNI_XIDS } /* xidstart=t */,
+ { 4, 10508, 6675, 3, 10, UNI_XIDC } /* isxidcontinue */,
+ { 1, 8973, 4534, 6, 15, UNI_BRAI } /* block=braillepatterns */,
+ { 1, 4865, 1163, 4, 2, UNI_CPRT } /* iscprt */,
+ { 2, 2808, 7202, 4, 8, UNI_ARABICEXTB } /* inarabicextb */,
+ { 6, 9747, 3, 4, 1, -UNI_DIA } /* dia=f */,
+ { 4, 5823, 10355, 13, 3, UNI_GRBASE } /* graphemebase=yes */,
+ { 0, 5045, 7551, 3, 9, UNI_CN } /* isunassigned */,
+ { 0, 5875, 5235, 13, 3, UNI_JG__HEH } /* joininggroup=heh */,
+ { 14, 6314, 10355, 12, 3, UNI_IDEO } /* ideographic=yes */,
+ { 4, 1418, 7975, 24, 1, UNI_CCC__6 } /* canonicalcombiningclass=6 */,
+ { 0, 9183, 0, 6, 0, UNI_RJNG } /* rejang */,
+ { 1, 8782, 3978, 7, 8, UNI_SC__BOPO } /* script=bopomofo */,
+ { 3, 185, 9891, 2, 4, UNI_NEWA } /* isnewa */,
+ { 0, 2248, 2312, 3, 20, UNI_SINHALAARCHAICNUMBERS } /* insinhalaarchaicnumbers */,
+ { 0, 8973, 8573, 7, 6, UNI_CJKEXTE } /* block=cjkexte */,
+ { 0, 8973, 3445, 6, 18, UNI_RUMI } /* block=ruminumeralsymbols */,
+ { 0, 4489, 0, 15, 0, UNI_ARABICEXTB } /* arabicextendedb */,
+ { 2, 8973, 2311, 6, 21, UNI_SINHALAARCHAICNUMBERS } /* block=sinhalaarchaicnumbers */,
+ { 0, 7391, 3607, 4, 15, UNI_UCAS } /* iscanadiansyllabics */,
+ { 2, 6083, 9623, 13, 4, UNI_NV__3_SLASH_20 } /* numericvalue=3/20 */,
{ 0, 9979, 9093, 4, 6, UNI_KTHI } /* scx=kaithi */,
- { 5, 3894, 10055, 17, 4, UNI_STERM } /* sentenceterminal=true */,
- { 16, 8973, 1394, 6, 24, UNI_ARABICPFB } /* block=arabicpresentationformsb */,
- { 0, 185, 4058, 2, 16, UNI_PF } /* isfinalpunctuation */,
- { 3, 2248, 7863, 3, 8, UNI_INSAMARITAN } /* insamaritan */,
- { 1, 9476, 7433, 3, 4, UNI_SC__SOGD } /* sc=sogd */,
- { 3, 8782, 8811, 8, 3, UNI_SOYO } /* script=soyo */,
- { 0, 9476, 8537, 3, 7, UNI_SC__BENG } /* sc=bengali */,
- { 17, 2955, 0, 19, 0, UNI_SUPARROWSA } /* supplementalarrowsa */,
- { 2, 8782, 9195, 7, 6, UNI_TNSA } /* script=tangsa */,
- { 0, 10229, 69, 3, 3, UNI_DT__SUP } /* dt=sup */,
- { 1, 10280, 10355, 3, 3, UNI_RI } /* ri=yes */,
- { 0, 9691, 5862, 4, 13, UNI_IPAEXT } /* blk=ipaextensions */,
- { 4, 9763, 34, 4, 6, UNI_GCB__EX } /* gcb=extend */,
- { 2, 8973, 1443, 7, 23, UNI_CJKSYMBOLS } /* block=cjksymbolsandpunctuation */,
- { 2, 5875, 4218, 13, 16, UNI_JG__MANICHAEANDALETH } /* joininggroup=manichaeandaleth */,
- { 12, 6340, 151, 4, 33, UNI_DIACRITICALSSUP } /* incombiningdiacriticalmarkssupplement */,
- { 8, 9887, 0, 4, 0, UNI_NBAT } /* nbat */,
- { 12, 9743, 26, 4, 1, UNI_DEP } /* dep=y */,
- { 25, 9474, 2868, 5, 10, UNI_INSC__TONELETTER } /* insc=toneletter */,
- { 3, 3877, 6302, 17, 6, UNI_HEBR } /* scriptextensions=hebrew */,
- { 0, 8558, 0, 7, 0, UNI_CJKEXTC } /* cjkextc */,
- { 0, 10268, 8235, 3, 2, UNI_NV__28 } /* nv=28 */,
- { 1, 4074, 3301, 16, 18, UNI_PI } /* generalcategory=initialpunctuation */,
- { 9, 6083, 7940, 13, 8, UNI_NV__1_SLASH_80 } /* numericvalue=1.25e-02 */,
- { 0, 6083, 5732, 13, 11, UNI_NV__10000000000 } /* numericvalue=10000000000 */,
- { 14, 3139, 0, 4, 0, UNI_DEVA } /* deva */,
- { 15, 118, 5863, 3, 5, UNI_IPAEXT } /* inipaext */,
- { 5, 5662, 1195, 14, 2, UNI_LB__LF } /* sentencebreak=lf */,
- { 23, 1836, 1026, 22, 2, -UNI_CWL } /* changeswhenlowercased=no */,
- { 1, 9751, 0, 4, 0, UNI_DIAK } /* diak */,
- { 34, 9691, 2936, 4, 9, UNI_INSUNDANESE } /* blk=sundanese */,
- { 7, 185, 3445, 2, 4, UNI_RUMI } /* isrumi */,
- { 0, 10516, 9932, 3, 3, UNI_PHLP } /* isphlp */,
- { 5, 3877, 8691, 17, 4, UNI_MULT } /* scriptextensions=mult */,
- { 2, 21, 3445, 2, 18, UNI_RUMI } /* inruminumeralsymbols */,
- { 2, 6340, 44, 3, 15, UNI_CJKCOMPAT } /* incjkcompatibility */,
- { 0, 8782, 1655, 7, 6, UNI_SC__HANG } /* script=hangul */,
- { 0, 1274, 1026, 21, 2, -UNI_CE } /* compositionexclusion=no */,
- { 26, 8973, 3193, 6, 18, UNI_ETHIOPICSUP } /* block=ethiopicsupplement */,
- { 0, 9691, 3193, 4, 18, UNI_ETHIOPICSUP } /* blk=ethiopicsupplement */,
- { 80, 7460, 10343, 10, 3, UNI_IN__9 } /* presentin=v90 */,
- { 1, 9051, 36, 6, 1, UNI_ECOMP } /* ecomp=t */,
- { 18, 6529, 7809, 3, 8, UNI_INOLDITALIC } /* inolditalic */,
- { 3, 1858, 26, 22, 1, UNI_CWT } /* changeswhentitlecased=y */,
- { 1, 8973, 6928, 6, 11, UNI_INMEDEFAIDRIN } /* block=medefaidrin */,
- { 6, 9237, 0, 4, 0, UNI_YEZI } /* yezi */,
- { 6, 9979, 7501, 5, 9, UNI_SAUR } /* scx=saurashtra */,
- { 4, 6083, 10366, 13, 2, UNI_NV__46 } /* numericvalue=46 */,
- { 0, 8973, 3978, 6, 8, UNI_INBOPOMOFO } /* block=bopomofo */,
- { 0, 9695, 752, 4, 5, UNI_BPT__C } /* bpt=close */,
- { 0, 2312, 4139, 3, 15, UNI_HIGHPUSURROGATES } /* inhighpusurrogates */,
- { 0, 6937, 0, 13, 0, UNI_MISCSYMBOLS } /* inmiscsymbols */,
- { 0, 185, 9767, 2, 4, UNI_GONG } /* isgong */,
- { 0, 7297, 2228, 3, 3, UNI_HAN } /* ishani */,
- { 1, 10247, 5953, 3, 13, UNI_JG__MALAYALAMNNNA } /* jg=malayalamnnna */,
- { 1, 10511, 1847, 5, 5, UNI_POSIXLOWER } /* posixlower */,
- { 1, 10516, 469, 3, 10, UNI_P } /* ispunctuation */,
- { 3, 6083, 8044, 13, 8, UNI_NV__1_SLASH_32 } /* numericvalue=3.13e-02 */,
- { 4, 5875, 4829, 13, 5, UNI_JG__SADHE } /* joininggroup=sadhe */,
- { 0, 9474, 9225, 5, 6, UNI_INSC__VIRAMA } /* insc=virama */,
- { 14, 8973, 0, 6, 43, UNI_UCASEXTA } /* block=unifiedcanadianaboriginalsyllabicsextendeda */,
- { 1, 1418, 9004, 25, 4, UNI_CCC__12 } /* canonicalcombiningclass=ccc12 */,
- { 2, 10352, 4912, 3, 2, UNI_WB__DQ } /* wb=dq */,
- { 2, 1553, 401, 9, 6, UNI_CF } /* category=format */,
- { 17, 9691, 5772, 5, 12, UNI_BLOCKELEMENTS } /* blk=blockelements */,
- { 18, 10247, 6693, 3, 4, UNI_JG__NOON } /* jg=noon */,
- { 8, 4157, 60, 3, 3, UNI_IDEO } /* isideo */,
- { 16, 185, 1167, 2, 25, UNI_DI } /* isdefaultignorablecodepoint */,
- { 1, 185, 7570, 2, 4, UNI_WARA } /* iswara */,
- { 5, 1088, 3, 27, 1, -UNI_PCM } /* prependedconcatenationmark=f */,
- { 2, 9476, 6302, 3, 6, UNI_HEBR } /* sc=hebrew */,
- { 0, 8768, 26, 7, 1, UNI_PATSYN } /* patsyn=y */,
- { 1, 5662, 1090, 15, 2, UNI_SB__SE } /* sentencebreak=sep */,
- { 0, 1295, 0, 25, 0, UNI_SUPERANDSUB } /* superscriptsandsubscripts */,
- { 2, 8782, 2085, 7, 4, UNI_SC__MODI } /* script=modi */,
- { 7, 8782, 10019, 7, 4, UNI_TALU } /* script=talu */,
- { 1, 868, 0, 28, 0, UNI_PHONETICEXTSUP } /* phoneticextensionssupplement */,
- { 14, 7467, 7923, 3, 2, UNI_IN__11 } /* in=11 */,
- { 10, 9474, 8268, 5, 8, UNI_INSC__AVAGRAHA } /* insc=avagraha */,
- { 3, 10229, 8364, 3, 8, UNI_DT__ISO } /* dt=isolated */,
- { 7, 4972, 9208, 3, 5, UNI_THAA } /* isthaana */,
- { 1, 9549, 36, 5, 1, UNI_XIDS } /* xids=t */,
- { 1, 9476, 9779, 3, 4, UNI_SC__GUJR } /* sc=gujr */,
- { 0, 6529, 7827, 3, 8, UNI_INOLDTURKIC } /* inoldturkic */,
- { 9, 8593, 9454, 7, 5, -UNI_COMPEX } /* compex=false */,
- { 3, 9711, 9380, 5, 4, UNI_CCC__30 } /* ccc=ccc30 */,
- { 0, 8712, 26, 7, 1, UNI_DT__NONE } /* nfkdqc=y */,
+ { 14, 10250, 36, 3, 1, UNI_JT__T } /* jt=t */,
+ { 3, 9691, 9231, 4, 6, UNI_INWANCHO } /* blk=wancho */,
+ { 16, 9691, 862, 4, 6, UNI_ARROWS } /* blk=arrows */,
+ { 1, 9691, 2689, 4, 19, UNI_COUNTINGROD } /* blk=countingrodnumerals */,
+ { 0, 7467, 7975, 3, 1, UNI_IN__6 } /* in=6 */,
+ { 0, 21, 8656, 2, 7, UNI_KALI } /* inkayahli */,
+ { 1, 1418, 2833, 24, 2, UNI_CCC__1 } /* canonicalcombiningclass=ov */,
+ { 41, 4972, 2556, 5, 16, UNI_TERM } /* isterminalpunctuation */,
+ { 1, 6340, 571, 3, 29, UNI_CJKEXTC } /* incjkunifiedideographsextensionc */,
+ { 1, 4972, 3482, 3, 10, UNI_TAIXUANJING } /* istaixuanjing */,
+ { 34, 185, 1586, 2, 23, UNI_BYZANTINEMUSIC } /* isbyzantinemusicalsymbols */,
+ { 0, 9159, 0, 8, 0, UNI_DT__CAN } /* nfdqc=no */,
+ { 0, 1418, 3596, 24, 5, UNI_CCC__B } /* canonicalcombiningclass=below */,
+ { 3, 7682, 10355, 9, 3, UNI_EXT } /* extender=yes */,
+ { 5, 185, 17, 3, 1, UNI_CO } /* isco */,
+ { 0, 185, 1014, 2, 5, UNI_GREK } /* isgreek */,
+ { 2, 10226, 1026, 3, 2, -UNI_DI } /* di=no */,
+ { 2, 7300, 0, 10, 0, UNI_dia_values_index } /* diacritic= */,
+ { 0, 10280, 10055, 3, 4, UNI_RI } /* ri=true */,
+ { 0, 3157, 36, 18, 1, UNI_EBASE } /* emojimodifierbase=t */,
+ { 7, 9979, 8684, 4, 7, UNI_MARC } /* scx=marchen */,
+ { 0, 9706, 0, 2, 0, UNI_MC } /* mc */,
+ { 4, 10553, 2937, 3, 8, UNI_SUND } /* issundanese */,
+ { 5, 9711, 8091, 4, 2, UNI_CCC__24 } /* ccc=24 */,
+ { 0, 9747, 1026, 4, 2, -UNI_DIA } /* dia=no */,
+ { 0, 5592, 9454, 14, 5, -UNI_PATSYN } /* patternsyntax=false */,
+ { 1, 185, 3139, 2, 13, UNI_DEVANAGARIEXT } /* isdevanagariext */,
+ { 0, 6083, 8012, 13, 8, UNI_NV__1_SLASH_4 } /* numericvalue=2.50e-01 */,
+ { 1, 10268, 5732, 3, 3, UNI_NV__100 } /* nv=100 */,
+ { 0, 4684, 8, 15, 1, UNI_EA__A } /* eastasianwidth=a */,
+ { 1, 10352, 4912, 3, 2, UNI_WB__DQ } /* wb=dq */,
+ { 0, 185, 2860, 2, 19, UNI_MODIFIERTONELETTERS } /* ismodifiertoneletters */,
+ { 1, 3139, 0, 13, 0, UNI_DEVANAGARIEXT } /* devanagariext */,
+ { 4, 9476, 9135, 3, 4, UNI_LYDI } /* sc=lydi */,
+ { 0, 8973, 5256, 6, 7, UNI_KANASUP } /* block=kanasup */,
+ { 0, 9711, 9675, 4, 4, UNI_WB__EB } /* ccc=atbl */,
+ { 0, 185, 2936, 2, 19, UNI_SUNDANESESUP } /* issundanesesupplement */,
+ { 0, 21, 5354, 2, 14, UNI_LATINEXTG } /* inlatinextendedg */,
{ 0, 6158, 1, 12, 1, -UNI_BIDIC } /* bidicontrol=n */,
- { 4, 9647, 10298, 4, 3, UNI_AGE__2_DOT_1 } /* age=v21 */,
- { 0, 9476, 8388, 3, 4, UNI_SC__JAVA } /* sc=java */,
- { 2, 9691, 4426, 4, 16, UNI_TANGUTCOMPONENTS } /* blk=tangutcomponents */,
- { 10, 2056, 36, 22, 1, UNI__PERL_NCHAR } /* noncharactercodepoint=t */,
- { 0, 3877, 3049, 17, 4, UNI_CHER } /* scriptextensions=cher */,
- { 0, 9057, 3, 6, 1, -UNI_EMOJI } /* emoji=f */,
- { 0, 1538, 7115, 24, 11, UNI_INPC__TOPANDRIGHT } /* indicpositionalcategory=topandright */,
- { 0, 1418, 8102, 24, 2, UNI_CCC__17 } /* canonicalcombiningclass=17 */,
- { 0, 185, 251, 2, 33, UNI_MISCMATHSYMBOLSA } /* ismiscellaneousmathematicalsymbolsa */,
- { 16, 10119, 0, 4, 0, UNI_ZYYY } /* zyyy */,
- { 1, 8782, 9895, 7, 3, UNI_SC__NKO } /* script=nko */,
- { 2, 185, 661, 3, 29, UNI_CJKEXTF } /* iscjkunifiedideographsextensionf */,
- { 0, 7682, 10355, 9, 3, UNI_EXT } /* extender=yes */,
- { 0, 9550, 0, 4, 0, UNI_ids_values_index } /* ids= */,
- { 0, 6674, 0, 12, 0, UNI_xidc_values_index } /* xidcontinue= */,
- { 0, 9979, 8300, 4, 8, UNI_DUPL } /* scx=duployan */,
- { 1, 9476, 7853, 3, 4, UNI_PAUC } /* sc=pauc */,
- { 8, 107, 0, 6, 0, UNI_S } /* symbol */,
- { 1, 1115, 10055, 26, 4, UNI_CWKCF } /* changeswhennfkccasefolded=true */,
- { 2, 5823, 10355, 13, 3, UNI_GRBASE } /* graphemebase=yes */,
- { 1, 9476, 9839, 3, 4, UNI_SC__LINA } /* sc=lina */,
- { 0, 7297, 8, 3, 2, UNI_HAN } /* ishan */,
- { 0, 10244, 46, 3, 2, UNI_CO } /* gc=co */,
- { 8, 9469, 473, 3, 2, UNI_PUA } /* inpua */,
- { 4, 9469, 2473, 5, 4, UNI_INPC__LEFT } /* inpc=left */,
- { 3, 9469, 910, 3, 13, UNI_PUA } /* inprivateusearea */,
- { 7, 8881, 98, 3, 9, UNI_XPOSIXALPHA } /* isalphabetic */,
- { 5, 185, 2879, 2, 9, UNI_MONG } /* ismongolian */,
- { 2, 7467, 9583, 3, 4, UNI_IN__10 } /* in=10.0 */,
- { 8, 9979, 3103, 4, 4, UNI_COPT } /* scx=copt */,
- { 1, 9213, 0, 6, 0, UNI_uideo_values_index } /* uideo= */,
- { 1, 9057, 36, 6, 1, UNI_EMOJI } /* emoji=t */,
- { 1, 10268, 8913, 3, 6, UNI_NV__400000 } /* nv=400000 */,
- { 11, 9979, 79, 4, 6, UNI_ARAB } /* scx=arabic */,
- { 0, 8508, 0, 4, 0, UNI_VITH } /* vith */,
- { 0, 3894, 1, 17, 1, -UNI_STERM } /* sentenceterminal=n */,
- { 8, 9979, 4849, 4, 15, UNI_MERC } /* scx=meroiticcursive */,
- { 0, 9711, 9335, 5, 4, UNI_CCC__21 } /* ccc=ccc21 */,
- { 2, 7071, 0, 4, 0, UNI_SORA } /* sora */,
- { 1, 8782, 9891, 7, 4, UNI_NEWA } /* script=newa */,
- { 0, 5408, 8686, 4, 5, UNI_INMARCHEN } /* inmarchen */,
- { 4, 7218, 4535, 3, 6, UNI_BRAI } /* inbraille */,
- { 2, 9476, 2227, 3, 14, UNI_SC__ROHG } /* sc=hanifirohingya */,
- { 0, 10508, 7908, 3, 7, UNI_XIDS } /* isxidstart */,
- { 0, 8973, 9069, 6, 6, UNI_INGOTHIC } /* block=gothic */,
- { 11, 21, 5746, 3, 12, UNI_AEGEANNUMBERS } /* inaegeannumbers */,
- { 0, 185, 3409, 2, 17, UNI_RI } /* isregionalindicator */,
- { 1, 10560, 2423, 3, 3, UNI_VITH } /* isvith */,
- { 2, 9979, 8500, 4, 4, UNI_UGAR } /* scx=ugar */,
- { 8, 6626, 0, 12, 0, UNI_PLAYINGCARDS } /* playingcards */,
- { 0, 8782, 9951, 7, 4, UNI_SC__QAAI } /* script=qaai */,
- { 3, 8973, 5862, 6, 6, UNI_IPAEXT } /* block=ipaext */,
- { 2, 1990, 7799, 22, 9, UNI_INSC__NONJOINER } /* indicsyllabiccategory=nonjoiner */,
- { 2, 5648, 0, 13, 0, UNI_QMARK } /* quotationmark */,
- { 13, 10268, 5732, 3, 8, UNI_NV__10000000 } /* nv=10000000 */,
- { 3, 6340, 8587, 3, 6, UNI_CJKEXTG } /* incjkextg */,
- { 0, 9691, 8538, 5, 6, UNI_INBENGALI } /* blk=bengali */,
- { 6, 9219, 10355, 6, 3, UNI_XPOSIXUPPER } /* upper=yes */,
- { 5, 8973, 6614, 6, 12, UNI_PHAISTOS } /* block=phaistosdisc */,
- { 1, 8973, 3792, 6, 17, UNI_INKHITANSMALLSCRIPT } /* block=khitansmallscript */,
- { 0, 10553, 8804, 3, 3, UNI_SIDD } /* issidd */,
- { 1, 9476, 9129, 3, 6, UNI_LYCI } /* sc=lycian */,
- { 0, 9691, 7530, 4, 10, UNI_SUPARROWSB } /* blk=suparrowsb */,
- { 1, 10217, 4362, 3, 16, UNI_BC__S } /* bc=segmentseparator */,
- { 1, 9979, 9524, 4, 5, UNI_RUNR } /* scx=runic */,
- { 12, 8973, 4330, 6, 16, UNI_MYANMAREXTB } /* block=myanmarextendedb */,
- { 0, 9979, 10004, 5, 3, UNI_SOGO } /* scx=sogo */,
- { 0, 6083, 5732, 13, 6, UNI_NV__100000 } /* numericvalue=100000 */,
- { 7, 5088, 0, 5, 0, UNI_ASCII } /* ascii */,
- { 0, 185, 5836, 2, 8, UNI_GREEKEXT } /* isgreekext */,
- { 4, 10508, 10528, 8, 5, UNI_XPOSIXPRINT } /* isxposixprint */,
- { 1, 5875, 5992, 13, 13, UNI_JG__MANICHAEANONE } /* joininggroup=manichaeanone */,
- { 1, 1219, 0, 26, 0, UNI_KATAKANAEXT } /* katakanaphoneticextensions */,
- { 1, 1836, 36, 22, 1, UNI_CWL } /* changeswhenlowercased=t */,
- { 4, 5029, 0, 8, 0, UNI_VEDICEXT } /* vedicext */,
- { 4, 5214, 0, 14, 0, UNI_INGREEK } /* greekandcoptic */,
- { 4, 9544, 10355, 5, 3, UNI_XIDC } /* xidc=yes */,
- { 0, 3877, 4924, 17, 15, UNI_NARB } /* scriptextensions=oldnortharabian */,
- { 32, 8782, 8979, 7, 6, UNI_CARI } /* script=carian */,
- { 17, 7790, 0, 9, 0, UNI_TALU } /* newtailue */,
- { 0, 9844, 5774, 5, 10, UNI_BLOCKELEMENTS } /* inblockelements */,
- { 0, 9474, 3994, 5, 16, UNI_INSC__CANTILLATIONMARK } /* insc=cantillationmark */,
- { 1, 1167, 0, 26, 0, UNI_di_values_index } /* defaultignorablecodepoint= */,
- { 0, 185, 7330, 2, 4, UNI_KHAR } /* iskhar */,
- { 9, 447, 0, 32, 0, UNI_IDEOGRAPHICSYMBOLS } /* ideographicsymbolsandpunctuation */,
- { 2, 8973, 2311, 6, 7, UNI_INSINHALA } /* block=sinhala */,
- { 7, 8782, 7330, 7, 10, UNI_KHAR } /* script=kharoshthi */,
- { 0, 7433, 0, 7, 0, UNI_SOGD } /* sogdian */,
- { 2, 8782, 9703, 7, 4, UNI_SC__CAKM } /* script=cakm */,
- { 7, 7460, 5732, 10, 2, UNI_IN__10 } /* presentin=10 */,
- { 4, 3121, 2809, 18, 3, UNI_DT__NAR } /* decompositiontype=nar */,
- { 0, 3877, 3792, 17, 17, UNI_KITS } /* scriptextensions=khitansmallscript */,
- { 1, 9647, 10063, 4, 3, UNI_IN__1_DOT_1 } /* age=v11 */,
- { 5, 9711, 7320, 4, 4, UNI_CCC__6 } /* ccc=hanr */,
- { 3, 8782, 7844, 7, 9, UNI_PALM } /* script=palmyrene */,
- { 1, 3673, 0, 17, 0, UNI_CYRILLICEXTB } /* cyrillicextendedb */,
- { 6, 10247, 5396, 3, 14, UNI_JG__MANICHAEANAYIN } /* jg=manichaeanayin */,
- { 0, 8973, 3837, 7, 3, UNI_INCHAM } /* block=cham */,
- { 3, 9691, 6614, 4, 8, UNI_PHAISTOS } /* blk=phaistos */,
- { 9, 9691, 2727, 4, 19, UNI_ENCLOSEDALPHANUMSUP } /* blk=enclosedalphanumsup */,
- { 1, 9476, 9875, 3, 4, UNI_MTEI } /* sc=mtei */,
- { 1, 10247, 9243, 3, 6, UNI_JG__YUDHHE } /* jg=yudhhe */,
- { 1, 9711, 10157, 4, 3, UNI_CCC__AL } /* ccc=228 */,
- { 2, 10247, 3843, 3, 17, UNI_JG__MANICHAEANHUNDRED } /* jg=manichaeanhundred */,
- { 2, 3877, 7781, 17, 9, UNI_NBAT } /* scriptextensions=nabataean */,
- { 1, 10247, 5940, 3, 13, UNI_JG__MALAYALAMLLLA } /* jg=malayalamllla */,
- { 23, 9923, 0, 4, 0, UNI_OUGR } /* ougr */,
- { 1, 185, 5836, 2, 13, UNI_GREEKEXT } /* isgreekextended */,
- { 35, 9711, 8059, 4, 2, UNI_CCC__33 } /* ccc=33 */,
- { 0, 10109, 1748, 3, 22, UNI_ZNAMENNYMUSIC } /* inznamennymusicalnotation */,
- { 1, 8782, 8649, 7, 7, UNI_SC__KNDA } /* script=kannada */,
- { 2, 185, 2374, 3, 19, UNI_PC } /* isconnectorpunctuation */,
- { 0, 10268, 8171, 3, 2, UNI_NV__26 } /* nv=26 */,
- { 1, 8973, 7862, 6, 9, UNI_INSAMARITAN } /* block=samaritan */,
- { 8, 10244, 7005, 3, 11, UNI_SO } /* gc=othersymbol */,
- { 5, 9545, 1026, 4, 2, -UNI_IDC } /* idc=no */,
- { 2, 6340, 3050, 3, 17, UNI_CHEROKEESUP } /* incherokeesupplement */,
- { 6, 8955, 26, 6, 1, UNI_XPOSIXALPHA } /* alpha=y */,
- { 36, 6083, 8913, 13, 2, UNI_NV__40 } /* numericvalue=40 */,
- { 1, 9135, 0, 4, 0, UNI_LYDI } /* lydi */,
- { 1, 10268, 8196, 3, 8, UNI_NV__15_SLASH_2 } /* nv=7.50e+00 */,
- { 41, 21, 1678, 2, 9, UNI_LATINEXTE } /* inlatinexte */,
- { 0, 9979, 6518, 4, 12, UNI_MEND } /* scx=mendekikakui */,
- { 12, 185, 184, 2, 34, UNI_MISCPICTOGRAPHS } /* ismiscellaneoussymbolsandpictographs */,
+ { 2, 7580, 4346, 10, 5, UNI_WB__XX } /* wordbreak=other */,
+ { 1, 6083, 9603, 13, 4, UNI_NV__13_SLASH_2 } /* numericvalue=13/2 */,
+ { 26, 10232, 67, 3, 1, UNI_EA__H } /* ea=h */,
+ { 0, 10244, 909, 3, 10, UNI_CO } /* gc=privateuse */,
+ { 2, 7460, 10337, 10, 3, UNI_IN__7 } /* presentin=v70 */,
+ { 2, 9763, 24, 4, 1, UNI_GCB__L } /* gcb=l */,
+ { 0, 9476, 10043, 3, 4, UNI_TIBT } /* sc=tibt */,
+ { 2, 5214, 0, 14, 0, UNI_INGREEK } /* greekandcoptic */,
+ { 7, 10247, 2227, 3, 21, UNI_JG__HANIFIROHINGYAKINNAYA } /* jg=hanifirohingyakinnaya */,
+ { 0, 10560, 3403, 6, 5, UNI_VERTSPACE } /* isvertspace */,
+ { 4, 9476, 9135, 3, 6, UNI_LYDI } /* sc=lydian */,
+ { 10, 4972, 4427, 3, 5, UNI_TANG } /* istangut */,
+ { 0, 9464, 9454, 5, 5, -UNI_IDST } /* idst=false */,
+ { 9, 1418, 10160, 24, 3, UNI_CCC__A } /* canonicalcombiningclass=230 */,
+ { 8, 3877, 9514, 17, 5, UNI_ORYA } /* scriptextensions=oriya */,
+ { 0, 1553, 1564, 9, 2, UNI_PS } /* category=ps */,
+ { 0, 9147, 26, 6, 1, UNI__PERL_NCHAR } /* nchar=y */,
+ { 2, 1538, 9, 24, 2, UNI_INPC__NA } /* indicpositionalcategory=na */,
+ { 1, 4170, 0, 6, 0, UNI_LATIN1 } /* latin1 */,
+ { 0, 8881, 2614, 3, 18, UNI_ANCIENTGREEKNUMBERS } /* isancientgreeknumbers */,
+ { 5, 9691, 3265, 4, 8, UNI_INGEORGIAN } /* blk=georgian */,
+ { 0, 10511, 5096, 5, 5, UNI_POSIXDIGIT } /* posixdigit */,
+ { 1, 10268, 8925, 3, 3, UNI_NV__500 } /* nv=500 */,
+ { 26, 185, 7570, 2, 4, UNI_WARA } /* iswara */,
+ { 0, 6083, 8244, 13, 8, UNI_NV__7_SLASH_8 } /* numericvalue=8.75e-01 */,
+ { 0, 2056, 26, 22, 1, UNI__PERL_NCHAR } /* noncharactercodepoint=y */,
+ { 16, 10217, 2473, 3, 20, UNI_BC__LRE } /* bc=lefttorightembedding */,
+ { 0, 9691, 4042, 4, 16, UNI_CYPRIOTSYLLABARY } /* blk=cypriotsyllabary */,
+ { 0, 10229, 5068, 3, 6, UNI_DT__SQR } /* dt=square */,
+ { 0, 7467, 10322, 3, 3, UNI_IN__5_DOT_2 } /* in=v52 */,
+ { 0, 7360, 6326, 10, 12, UNI_LB__IS } /* linebreak=infixnumeric */,
+ { 0, 5648, 36, 14, 1, UNI_QMARK } /* quotationmark=t */,
+ { 0, 9691, 2879, 4, 12, UNI_MONGOLIANSUP } /* blk=mongoliansup */,
+ { 2, 21, 8663, 2, 7, UNI_INLINEARA } /* inlineara */,
{ 1, 10560, 25, 3, 1, UNI_VS } /* isvs */,
- { 0, 10510, 10528, 6, 5, UNI_XPOSIXPRINT } /* xposixprint */,
- { 25, 1655, 0, 6, 0, UNI_HANG } /* hangul */,
- { 0, 4972, 6091, 3, 3, UNI_TALU } /* istalu */,
- { 3, 4847, 6520, 4, 10, UNI_INMENDEKIKAKUI } /* inmendekikakui */,
- { 2, 3877, 8621, 17, 4, UNI_GRAN } /* scriptextensions=gran */,
- { 0, 8614, 0, 4, 0, UNI_ELYM } /* elym */,
+ { 2, 8973, 8372, 6, 8, UNI_JAMOEXTA } /* block=jamoexta */,
+ { 9, 9979, 10008, 5, 3, UNI_SYRC } /* scx=syrc */,
+ { 2, 8782, 3622, 7, 17, UNI_AGHB } /* script=caucasianalbanian */,
+ { 0, 8973, 8831, 6, 7, UNI_INTAGALOG } /* block=tagalog */,
+ { 4, 2206, 6895, 21, 3, UNI_LB__H3 } /* graphemeclusterbreak=lvt */,
+ { 24, 7230, 3814, 10, 3, UNI_BC__RLI } /* bidiclass=rli */,
+ { 1, 8973, 5690, 6, 14, UNI_SUPPUNCTUATION } /* block=suppunctuation */,
+ { 3, 7230, 10238, 10, 3, UNI_BC__FSI } /* bidiclass=fsi */,
+ { 0, 7580, 6254, 10, 12, UNI_WB__EX } /* wordbreak=extendnumlet */,
+ { 0, 9476, 3139, 3, 10, UNI_SC__DEVA } /* sc=devanagari */,
+ { 5, 8782, 7844, 7, 9, UNI_PALM } /* script=palmyrene */,
+ { 2, 8973, 447, 6, 18, UNI_IDEOGRAPHICSYMBOLS } /* block=ideographicsymbols */,
+ { 0, 6083, 8949, 13, 2, UNI_NV__90 } /* numericvalue=90 */,
+ { 0, 2312, 2767, 4, 17, UNI_JAMOEXTB } /* inhanguljamoextendedb */,
+ { 1, 10247, 4250, 3, 16, UNI_JG__MANICHAEANSAMEKH } /* jg=manichaeansamekh */,
+ { 0, 3877, 7260, 17, 10, UNI_CHRS } /* scriptextensions=chorasmian */,
+ { 18, 5408, 8686, 4, 5, UNI_INMARCHEN } /* inmarchen */,
+ { 16, 2248, 2975, 3, 18, UNI_SUPARROWSB } /* insupplementalarrowsb */,
+ { 7, 8300, 0, 8, 0, UNI_DUPL } /* duployan */,
+ { 18, 6674, 36, 12, 1, UNI_XIDC } /* xidcontinue=t */,
+ { 1, 9099, 0, 6, 0, UNI_KANBUN } /* kanbun */,
+ { 6, 10268, 10178, 3, 3, UNI_NV__3_SLASH_4 } /* nv=3/4 */,
+ { 0, 2248, 4411, 3, 8, UNI_SYRIACSUP } /* insyriacsup */,
+ { 11, 7230, 37, 10, 2, UNI_BC__EN } /* bidiclass=en */,
+ { 3, 6083, 9578, 13, 2, UNI_NV__41 } /* numericvalue=41 */,
+ { 32, 9691, 3139, 4, 13, UNI_DEVANAGARIEXT } /* blk=devanagariext */,
+ { 0, 9476, 8276, 3, 4, UNI_BALI } /* sc=bali */,
+ { 2, 9449, 1, 5, 1, -UNI_EMOD } /* emod=n */,
+ { 1, 9476, 9683, 3, 4, UNI_BATK } /* sc=batk */,
+ { 0, 1880, 26, 22, 1, UNI_CWU } /* changeswhenuppercased=y */,
+ { 0, 185, 3978, 2, 8, UNI_BOPO } /* isbopomofo */,
+ { 9, 10247, 4122, 3, 16, UNI_JG__HANIFIROHINGYAPA } /* jg=hanifirohingyapa */,
+ { 1, 185, 3707, 2, 16, UNI_ETHIOPICEXT } /* isethiopicextended */,
+ { 4, 3877, 7330, 17, 10, UNI_KHAR } /* scriptextensions=kharoshthi */,
+ { 0, 5592, 0, 13, 0, UNI_PATSYN } /* patternsyntax */,
+ { 1, 9429, 10355, 5, 3, UNI_CWCF } /* cwcf=yes */,
+ { 6, 8973, 2123, 7, 20, UNI_CJKCOMPATFORMS } /* block=cjkcompatibilityforms */,
+ { 0, 9461, 10394, 3, 2, UNI_SB__XX } /* sb=xx */,
+ { 10, 9045, 1026, 6, 2, -UNI_CWKCF } /* cwkcf=no */,
+ { 4, 8973, 4410, 6, 16, UNI_SYRIACSUP } /* block=syriacsupplement */,
+ { 1, 3877, 9863, 17, 4, UNI_MIAO } /* scriptextensions=miao */,
+ { 8, 839, 0, 29, 0, UNI_MISCARROWS } /* miscellaneoussymbolsandarrows */,
+ { 2, 8887, 10355, 7, 3, UNI_XPOSIXSPACE } /* wspace=yes */,
+ { 1, 185, 9807, 2, 4, UNI_KALI } /* iskali */,
+ { 1, 10511, 468, 5, 5, UNI_POSIXPUNCT } /* posixpunct */,
+ { 2, 4157, 7701, 3, 8, UNI_QAAI } /* isinherited */,
+ { 0, 9691, 6614, 4, 12, UNI_PHAISTOS } /* blk=phaistosdisc */,
+ { 0, 1553, 6994, 9, 11, UNI_NO } /* category=othernumber */,
+ { 2, 8973, 4864, 6, 15, UNI_MISCPICTOGRAPHS } /* block=miscpictographs */,
+ { 3, 3877, 4186, 17, 7, UNI_LINB } /* scriptextensions=linearb */,
+ { 1, 9691, 10051, 4, 4, UNI_INTOTO } /* blk=toto */,
+ { 2, 9691, 6752, 4, 6, UNI_DOMINO } /* blk=domino */,
+ { 0, 9979, 9899, 4, 4, UNI_NSHU } /* scx=nshu */,
+ { 0, 9545, 36, 4, 1, UNI_IDC } /* idc=t */,
+ { 0, 4074, 113, 16, 2, UNI_SC } /* generalcategory=sc */,
+ { 2, 3121, 2809, 18, 3, UNI_DT__NAR } /* decompositiontype=nar */,
+ { 0, 9979, 6924, 5, 3, UNI_SAMR } /* scx=samr */,
+ { 0, 2056, 0, 22, 0, UNI_nchar_values_index } /* noncharactercodepoint= */,
+ { 0, 7907, 9454, 9, 5, -UNI_XIDS } /* xidstart=false */,
+ { 1, 8973, 2269, 6, 14, UNI_MEETEIMAYEKEXT } /* block=meeteimayekext */,
+ { 2, 1418, 8043, 24, 2, UNI_CCC__23 } /* canonicalcombiningclass=23 */,
+ { 26, 10553, 2937, 3, 3, UNI_SUND } /* issund */,
+ { 1, 8973, 3068, 7, 17, UNI_HALFMARKS } /* block=combininghalfmarks */,
+ { 11, 9691, 6386, 4, 7, UNI_MAHJONG } /* blk=mahjong */,
+ { 0, 8782, 7709, 7, 9, UNI_SC__SIND } /* script=khudawadi */,
+ { 0, 7300, 26, 10, 1, UNI_DIA } /* diacritic=y */,
+ { 4, 3877, 7781, 17, 9, UNI_NBAT } /* scriptextensions=nabataean */,
+ { 2, 6083, 10360, 13, 2, UNI_NV__39 } /* numericvalue=39 */,
+ { 5, 185, 9775, 2, 4, UNI_GREK } /* isgrek */,
+ { 3, 185, 3398, 2, 10, UNI_XPOSIXSPACE } /* iswhitespace */,
+ { 5, 3553, 10055, 18, 4, UNI_VS } /* variationselector=true */,
+ { 0, 10268, 7964, 3, 8, UNI_NV__3_SLASH_20 } /* nv=1.50e-01 */,
+ { 22, 9647, 10205, 4, 3, UNI_AGE__7 } /* age=7.0 */,
+ { 0, 10268, 7934, 3, 2, UNI_NV__25 } /* nv=25 */,
+ { 1, 9979, 4939, 4, 15, UNI_SARB } /* scx=oldsoutharabian */,
+ { 1, 21, 7745, 2, 9, UNI_LATINEXTF } /* inlatinextf */,
+ { 0, 6338, 0, 5, 0, UNI_JOINC } /* joinc */,
+ { 4, 7, 0, 1, 0, UNI_C } /* c */,
+ { 0, 8973, 7390, 6, 10, UNI_MISCARROWS } /* block=miscarrows */,
+ { 2, 1418, 5849, 24, 13, UNI_CCC__IS } /* canonicalcombiningclass=iotasubscript */,
+ { 6, 185, 4286, 2, 10, UNI_SM } /* ismathsymbol */,
+ { 0, 185, 952, 2, 18, UNI_INVS } /* isvariationselectors */,
+ { 0, 7907, 1, 9, 1, -UNI_XIDS } /* xidstart=n */,
+ { 9, 3121, 9039, 18, 6, UNI_DT__ENC } /* decompositiontype=circle */,
+ { 1, 9711, 8119, 4, 1, UNI_CCC__9 } /* ccc=9 */,
+ { 16, 9691, 2860, 4, 19, UNI_MODIFIERTONELETTERS } /* blk=modifiertoneletters */,
+ { 3, 2312, 2229, 4, 12, UNI_INHANIFIROHINGYA } /* inhanifirohingya */,
+ { 2, 1418, 7990, 24, 1, UNI_CCC__8 } /* canonicalcombiningclass=8 */,
+ { 1, 3877, 9201, 17, 4, UNI_TELU } /* scriptextensions=telu */,
+ { 14, 10352, 1195, 3, 2, UNI_LB__LF } /* wb=lf */,
+ { 2, 10346, 3517, 3, 18, UNI_VO__TR } /* vo=transformedrotated */,
+ { 0, 10540, 17, 5, 1, UNI_XPEO } /* isxpeo */,
+ { 0, 185, 5096, 2, 5, UNI_XPOSIXDIGIT } /* isdigit */,
+ { 3, 8973, 4426, 6, 6, UNI_INTANGUT } /* block=tangut */,
+ { 1, 3877, 9135, 17, 6, UNI_LYDI } /* scriptextensions=lydian */,
+ { 0, 8973, 5242, 6, 14, UNI_HIGHSURROGATES } /* block=highsurrogates */,
+ { 1, 5592, 1, 14, 1, -UNI_PATSYN } /* patternsyntax=n */,
+ { 5, 3463, 0, 12, 0, UNI_SMALLKANAEXT } /* smallkanaext */,
+ { 0, 8973, 8559, 7, 6, UNI_CJKEXTC } /* block=cjkextc */,
+ { 0, 185, 9063, 2, 5, UNI_EPRES } /* isepres */,
+ { 1, 6340, 2691, 4, 17, UNI_COUNTINGROD } /* incountingrodnumerals */,
+ { 1, 6083, 7975, 13, 1, UNI_NV__6 } /* numericvalue=6 */,
+ { 8, 10250, 18, 3, 1, UNI_JT__R } /* jt=r */,
+ { 2, 9691, 1632, 4, 23, UNI_GEOMETRICSHAPESEXT } /* blk=geometricshapesextended */,
+ { 0, 8973, 7637, 6, 9, UNI_ARABICPFA } /* block=arabicpfa */,
+ { 0, 8782, 10123, 7, 4, UNI_ZZZZ } /* script=zzzz */,
+ { 0, 6340, 721, 3, 29, UNI_CUNEIFORMNUMBERS } /* incuneiformnumbersandpunctuation */,
+ { 28, 9284, 0, 5, 0, UNI_BATK } /* batak */,
+ { 2, 8973, 8810, 6, 7, UNI_INSOYOMBO } /* block=soyombo */,
+ { 0, 9979, 1116, 4, 4, UNI_HANG } /* scx=hang */,
+ { 0, 9647, 10313, 4, 3, UNI_AGE__4_DOT_1 } /* age=v41 */,
+ { 4, 75, 0, 2, 0, UNI_ME } /* me */,
+ { 2, 6314, 3, 12, 1, -UNI_IDEO } /* ideographic=f */,
+ { 11, 9476, 9655, 3, 4, UNI_AHOM } /* sc=ahom */,
+ { 8, 10268, 7958, 3, 2, UNI_NV__50 } /* nv=50 */,
+ { 3, 9979, 9201, 4, 4, UNI_TELU } /* scx=telu */,
+ { 0, 10268, 8084, 3, 8, UNI_NV__3_SLASH_80 } /* nv=3.75e-02 */,
+ { 1, 9469, 2579, 5, 6, UNI_INPC__BOTTOM } /* inpc=bottom */,
+ { 1, 10268, 8102, 3, 2, UNI_NV__17 } /* nv=17 */,
{ 0, 9476, 5368, 3, 4, UNI_LISU } /* sc=lisu */,
- { 5, 9691, 2936, 4, 19, UNI_SUNDANESESUP } /* blk=sundanesesupplement */,
- { 2, 8782, 9444, 7, 5, UNI_SC__DOGR } /* script=dogra */,
- { 0, 9434, 10055, 5, 4, UNI_CWCM } /* cwcm=true */,
- { 0, 9711, 9018, 4, 3, UNI_CCC__130 } /* ccc=130 */,
- { 0, 9461, 340, 3, 2, UNI_SB__LO } /* sb=lo */,
- { 5, 8782, 8340, 7, 8, UNI_SC__GUJR } /* script=gujarati */,
- { 4, 10253, 1528, 3, 9, UNI_LB__SG } /* lb=surrogate */,
- { 2, 8973, 6862, 6, 11, UNI_KATAKANAEXT } /* block=katakanaext */,
- { 0, 10268, 7956, 3, 8, UNI_NV__3_SLASH_2 } /* nv=1.50e+00 */,
- { 1, 7297, 1419, 3, 3, UNI_HANO } /* ishano */,
- { 8, 6083, 8937, 13, 3, UNI_NV__700 } /* numericvalue=700 */,
- { 0, 9691, 2613, 4, 19, UNI_ANCIENTGREEKNUMBERS } /* blk=ancientgreeknumbers */,
- { 16, 3877, 7072, 18, 10, UNI_SORA } /* scriptextensions=sorasompeng */,
- { 3, 21, 9183, 2, 6, UNI_INREJANG } /* inrejang */,
- { 1, 10047, 0, 4, 0, UNI_TNSA } /* tnsa */,
- { 0, 9979, 9739, 4, 4, UNI_CYRL } /* scx=cyrl */,
- { 0, 8973, 4924, 6, 15, UNI_NARB } /* block=oldnortharabian */,
- { 1, 185, 4314, 2, 7, UNI_MYMR } /* ismyanmar */,
- { 2, 8348, 0, 8, 0, UNI_GURU } /* gurmukhi */,
- { 0, 9711, 7990, 4, 1, UNI_CCC__8 } /* ccc=8 */,
- { 1, 1418, 9300, 25, 4, UNI_CCC__14 } /* canonicalcombiningclass=ccc14 */,
- { 0, 2879, 0, 12, 0, UNI_MONGOLIANSUP } /* mongoliansup */,
- { 2, 10253, 7410, 3, 10, UNI_LB__NS } /* lb=nonstarter */,
- { 0, 9691, 6206, 4, 12, UNI_CYRILLICEXTB } /* blk=cyrillicextb */,
- { 13, 5408, 331, 4, 19, UNI_MATHOPERATORS } /* inmathematicaloperators */,
- { 12, 4972, 1870, 3, 8, UNI_TITLE } /* istitlecase */,
- { 10, 1553, 1588, 9, 1, UNI_Z } /* category=z */,
- { 0, 4074, 1934, 16, 2, UNI_CN } /* generalcategory=cn */,
- { 1, 5648, 26, 14, 1, UNI_QMARK } /* quotationmark=y */,
- { 2, 8782, 0, 14, 0, UNI_SC__SHRD } /* script=sharada */,
- { 2, 10268, 8172, 3, 8, UNI_NV__1_SLASH_160 } /* nv=6.25e-03 */,
- { 0, 5875, 10292, 13, 3, UNI_JG__TAH } /* joininggroup=tah */,
- { 0, 8973, 383, 6, 32, UNI_EGYPTIANHIEROGLYPHFORMATCONTROLS } /* block=egyptianhieroglyphformatcontrols */,
- { 0, 10352, 1219, 3, 2, UNI_WB__KA } /* wb=ka */,
- { 3, 720, 0, 30, 0, UNI_CUNEIFORMNUMBERS } /* cuneiformnumbersandpunctuation */,
- { 2, 6083, 8907, 13, 3, UNI_NV__300 } /* numericvalue=300 */,
- { 0, 8881, 864, 4, 4, UNI_ARROWS } /* isarrows */,
- { 3, 4463, 3141, 4, 8, UNI_INDEVANAGARI } /* indevanagari */,
- { 16, 185, 6961, 2, 11, UNI_MYANMAREXTB } /* ismyanmarextb */,
- { 0, 9979, 10095, 4, 4, UNI_XPEO } /* scx=xpeo */,
- { 0, 8782, 10004, 8, 3, UNI_SOGO } /* script=sogo */,
- { 2, 9171, 10355, 6, 3, UNI__PERL_PATWS } /* patws=yes */,
- { 0, 8973, 5029, 6, 8, UNI_VEDICEXT } /* block=vedicext */,
- { 0, 896, 0, 28, 0, UNI_SUPPUAA } /* supplementaryprivateuseareaa */,
- { 2, 1418, 9016, 25, 5, UNI_CCC__130 } /* canonicalcombiningclass=ccc130 */,
- { 16, 6741, 0, 11, 0, UNI_dep_values_index } /* deprecated= */,
- { 1, 2453, 0, 20, 0, UNI_PHLI } /* inscriptionalpahlavi */,
- { 0, 3978, 0, 16, 0, UNI_BOPOMOFOEXT } /* bopomofoextended */,
- { 8, 185, 1595, 2, 14, UNI_MUSIC } /* ismusicalsymbols */,
- { 0, 9087, 26, 6, 1, UNI_JOINC } /* joinc=y */,
- { 3, 9476, 2353, 3, 20, UNI_HLUW } /* sc=anatolianhieroglyphs */,
- { 2, 7230, 10238, 10, 3, UNI_BC__FSI } /* bidiclass=fsi */,
- { 4, 149, 0, 35, 0, UNI_DIACRITICALSSUP } /* combiningdiacriticalmarkssupplement */,
- { 0, 9691, 5270, 4, 6, UNI_KANGXI } /* blk=kangxi */,
- { 0, 9879, 0, 4, 0, UNI_MYMR } /* mymr */,
- { 0, 185, 4186, 2, 16, UNI_LINEARBIDEOGRAMS } /* islinearbideograms */,
- { 1, 7460, 10075, 10, 4, UNI_IN__13 } /* presentin=v130 */,
- { 1, 7391, 534, 4, 2, UNI_CANS } /* iscans */,
- { 2, 8881, 15, 4, 2, UNI_ARAB } /* isarab */,
- { 0, 9201, 0, 6, 0, UNI_TELU } /* telugu */,
- { 0, 1189, 9535, 3, 4, UNI_INTAKRI } /* intakri */,
- { 0, 8973, 3624, 8, 15, UNI_INCAUCASIANALBANIAN } /* block=caucasianalbanian */,
- { 0, 185, 9484, 2, 5, UNI_LIMB } /* islimbu */,
- { 48, 6614, 0, 12, 0, UNI_PHAISTOS } /* phaistosdisc */,
- { 0, 185, 9504, 2, 5, UNI_NSHU } /* isnushu */,
- { 0, 10217, 8, 3, 2, UNI_BC__AN } /* bc=an */,
- { 5, 9476, 9915, 3, 4, UNI_SC__ORYA } /* sc=orya */,
- { 0, 8973, 7510, 6, 10, UNI_SMALLFORMS } /* block=smallforms */,
- { 0, 2304, 3356, 3, 17, UNI_ORNAMENTALDINGBATS } /* isornamentaldingbats */,
- { 1, 9476, 8691, 3, 7, UNI_SC__MULT } /* sc=multani */,
- { 14, 8881, 3964, 4, 7, UNI_ARABICSUP } /* isarabicsup */,
- { 0, 3945, 10355, 17, 3, UNI_UIDEO } /* unifiedideograph=yes */,
- { 1, 9979, 4426, 4, 4, UNI_TANG } /* scx=tang */,
- { 6, 5592, 10355, 14, 3, UNI_PATSYN } /* patternsyntax=yes */,
- { 1, 9743, 10355, 4, 3, UNI_DEP } /* dep=yes */,
- { 8, 3877, 8476, 17, 8, UNI_TFNG } /* scriptextensions=tifinagh */,
- { 8, 1538, 62, 3, 4, UNI_INDOGRA } /* indogra */,
- { 0, 9691, 1019, 4, 5, UNI_MUSIC } /* blk=music */,
- { 1, 2185, 26, 21, 1, UNI_EXTPICT } /* extendedpictographic=y */,
- { 8, 8973, 9444, 6, 5, UNI_INDOGRA } /* block=dogra */,
- { 0, 3877, 5940, 17, 9, UNI_MLYM } /* scriptextensions=malayalam */,
- { 0, 7230, 3797, 10, 3, UNI_BC__NSM } /* bidiclass=nsm */,
- { 1, 4972, 8469, 3, 7, UNI_TAGB } /* istagbanwa */,
- { 2, 8973, 6752, 6, 6, UNI_DOMINO } /* block=domino */,
- { 18, 3877, 7826, 17, 9, UNI_ORKH } /* scriptextensions=oldturkic */,
- { 1, 8973, 7093, 6, 11, UNI_SUPERANDSUB } /* block=superandsub */,
- { 3, 4157, 448, 3, 17, UNI_IDEOGRAPHICSYMBOLS } /* isideographicsymbols */,
- { 0, 9979, 9201, 4, 6, UNI_TELU } /* scx=telugu */,
- { 1, 9691, 6122, 4, 12, UNI_ALPHABETICPF } /* blk=alphabeticpf */,
- { 19, 10268, 8228, 3, 8, UNI_NV__1_SLASH_12 } /* nv=8.33e-02 */,
- { 0, 9979, 7570, 4, 10, UNI_WARA } /* scx=warangciti */,
- { 1, 3877, 10047, 17, 4, UNI_TNSA } /* scriptextensions=tnsa */,
- { 2, 185, 9129, 2, 4, UNI_LYCI } /* islyci */,
- { 2, 8782, 1116, 7, 4, UNI_SC__HANG } /* script=hang */,
- { 0, 10553, 0, 3, 0, UNI_S } /* iss */,
- { 0, 7580, 139, 10, 2, UNI_WB__FO } /* wordbreak=fo */,
- { 8, 5875, 5420, 13, 4, UNI_JG__BETH } /* joininggroup=beth */,
- { 0, 6340, 6183, 3, 11, UNI_CHESSSYMBOLS } /* inchesssymbols */,
- { 0, 9476, 9891, 3, 4, UNI_NEWA } /* sc=newa */,
- { 0, 9691, 251, 4, 33, UNI_MISCMATHSYMBOLSA } /* blk=miscellaneousmathematicalsymbolsa */,
- { 1, 9691, 3792, 4, 17, UNI_INKHITANSMALLSCRIPT } /* blk=khitansmallscript */,
- { 1, 8782, 9519, 7, 5, UNI_OSGE } /* script=osage */,
- { 0, 4972, 1870, 3, 4, UNI_TITLE } /* istitle */,
- { 0, 9803, 912, 4, 1, UNI_GCB__V } /* hst=v */,
- { 9, 7467, 0, 3, 0, UNI_in_values_index } /* in= */,
- { 0, 8292, 0, 4, 0, UNI_BUGI } /* bugi */,
- { 7, 9691, 3445, 4, 4, UNI_RUMI } /* blk=rumi */,
- { 0, 3877, 1223, 17, 4, UNI_KANA } /* scriptextensions=kana */,
- { 12, 8973, 9034, 7, 5, UNI_INCHAKMA } /* block=chakma */,
- { 1, 2034, 0, 22, 0, UNI_MISCTECHNICAL } /* miscellaneoustechnical */,
- { 6, 9476, 9667, 3, 4, UNI_ARMN } /* sc=armn */,
- { 0, 9647, 8046, 4, 2, UNI_AGE__13 } /* age=13 */,
- { 3, 3877, 8607, 17, 4, UNI_ELBA } /* scriptextensions=elba */,
- { 16, 10268, 8943, 3, 2, UNI_NV__80 } /* nv=80 */,
- { 0, 8973, 8810, 6, 7, UNI_INSOYOMBO } /* block=soyombo */,
- { 5, 21, 5075, 3, 13, UNI_ANCIENTSYMBOLS } /* inancientsymbols */,
- { 3, 185, 3265, 2, 11, UNI_GEORGIANSUP } /* isgeorgiansup */,
- { 0, 9691, 1747, 4, 23, UNI_ZNAMENNYMUSIC } /* blk=znamennymusicalnotation */,
- { 4, 8782, 9667, 7, 4, UNI_ARMN } /* script=armn */,
- { 1, 6937, 4286, 6, 12, UNI_MISCMATHSYMBOLSA } /* inmiscmathsymbolsa */,
- { 10, 7381, 0, 2, 0, UNI_VS } /* vs */,
- { 0, 9691, 5606, 4, 14, UNI_PHONETICEXTSUP } /* blk=phoneticextsup */,
- { 7, 2312, 2748, 4, 17, UNI_JAMOEXTA } /* inhanguljamoextendeda */,
- { 0, 1990, 9499, 22, 5, UNI_INSC__NUKTA } /* indicsyllabiccategory=nukta */,
- { 0, 6083, 9612, 13, 3, UNI_NV__5_SLASH_2 } /* numericvalue=5/2 */,
- { 0, 1990, 1609, 22, 23, UNI_INSC__CONSONANTPRECEDINGREPHA } /* indicsyllabiccategory=consonantprecedingrepha */,
- { 0, 9979, 9879, 4, 4, UNI_MYMR } /* scx=mymr */,
- { 28, 5830, 26, 6, 1, UNI_EBASE } /* ebase=y */,
- { 8, 185, 9105, 2, 6, UNI_KHOJ } /* iskhojki */,
- { 0, 8973, 6961, 6, 11, UNI_MYANMAREXTB } /* block=myanmarextb */,
- { 3, 8973, 896, 6, 28, UNI_SUPPUAA } /* block=supplementaryprivateuseareaa */,
- { 0, 1219, 0, 8, 0, UNI_KANA } /* katakana */,
- { 4, 8973, 5836, 6, 13, UNI_GREEKEXT } /* block=greekextended */,
- { 1, 5875, 5396, 13, 14, UNI_JG__MANICHAEANAYIN } /* joininggroup=manichaeanayin */,
- { 0, 3877, 2509, 17, 4, UNI_MONG } /* scriptextensions=mong */,
- { 8, 2803, 1, 19, 1, -UNI_IDST } /* idstrinaryoperator=n */,
- { 0, 6083, 8212, 13, 8, UNI_NV__4_SLASH_5 } /* numericvalue=8.00e-01 */,
- { 0, 6083, 9604, 13, 3, UNI_NV__3_SLASH_2 } /* numericvalue=3/2 */,
- { 18, 1274, 3, 21, 1, -UNI_CE } /* compositionexclusion=f */,
- { 0, 9979, 9129, 4, 6, UNI_LYCI } /* scx=lycian */,
- { 0, 9691, 8572, 4, 7, UNI_CJKEXTE } /* blk=cjkexte */,
- { 0, 21, 1674, 2, 4, UNI_JAMO } /* injamo */,
- { 0, 10268, 8044, 3, 8, UNI_NV__1_SLASH_32 } /* nv=3.13e-02 */,
- { 3, 4894, 10355, 15, 3, UNI_NFKCQC__Y } /* nfkcquickcheck=yes */,
- { 0, 9691, 8979, 4, 6, UNI_INCARIAN } /* blk=carian */,
- { 0, 3157, 0, 13, 0, UNI_EMOD } /* emojimodifier */,
- { 2, 8782, 8684, 7, 4, UNI_MARC } /* script=marc */,
- { 0, 3319, 0, 9, 0, UNI_LATINEXTA } /* latinexta */,
- { 0, 9979, 7016, 4, 11, UNI_HMNG } /* scx=pahawhhmong */,
- { 2, 3978, 0, 4, 0, UNI_BOPO } /* bopo */,
- { 16, 185, 6044, 2, 13, UNI_MAYANNUMERALS } /* ismayannumerals */,
- { 0, 10217, 3229, 3, 18, UNI_BC__FSI } /* bc=firststrongisolate */,
- { 0, 7370, 1, 10, 1, -UNI_XPOSIXLOWER } /* lowercase=n */,
- { 2, 185, 1678, 2, 14, UNI_LATINEXTA } /* islatinextendeda */,
- { 0, 3894, 26, 17, 1, UNI_STERM } /* sentenceterminal=y */,
- { 49, 7908, 3, 8, 1, -UNI_IDS } /* idstart=f */,
- { 0, 1115, 1, 26, 1, -UNI_CWKCF } /* changeswhennfkccasefolded=n */,
- { 0, 10516, 0, 12, 0, UNI_POSIXBLANK } /* isposixblank */,
- { 0, 3877, 4042, 17, 7, UNI_CPRT } /* scriptextensions=cypriot */,
- { 2, 2248, 3464, 3, 11, UNI_SMALLKANAEXT } /* insmallkanaext */,
- { 40, 185, 3050, 3, 3, UNI_CHER } /* ischer */,
- { 1, 10511, 5095, 5, 6, UNI_POSIXXDIGIT } /* posixxdigit */,
- { 0, 9691, 43, 4, 36, UNI_CJKCOMPATIDEOGRAPHSSUP } /* blk=cjkcompatibilityideographssupplement */,
- { 8, 9691, 10039, 4, 4, UNI_INTHAI } /* blk=thai */,
- { 12, 21, 7727, 2, 9, UNI_LATINEXTC } /* inlatinextc */,
- { 20, 4744, 7137, 15, 11, UNI_IDENTIFIERTYPE__UNCOMMONUSE } /* identifiertype=uncommonuse */,
- { 8, 1418, 0, 24, 0, UNI_ccc_values_index } /* canonicalcombiningclass= */,
- { 2, 1418, 9024, 24, 3, UNI_CCC__132 } /* canonicalcombiningclass=132 */,
- { 0, 9489, 1, 5, 1, -UNI_MATH } /* math=n */,
- { 3, 10268, 7611, 3, 1, UNI_NV__5 } /* nv=5 */,
- { 5, 9839, 0, 4, 0, UNI_LINA } /* lina */,
- { 0, 4684, 1, 15, 1, UNI_EA__N } /* eastasianwidth=n */,
- { 4, 1990, 2413, 22, 20, UNI_INSC__CONSONANTWITHSTACKER } /* indicsyllabiccategory=consonantwithstacker */,
- { 0, 8642, 3, 7, 1, -UNI_HYPHEN } /* hyphen=f */,
- { 6, 7467, 10328, 3, 3, UNI_IN__6_DOT_1 } /* in=v61 */,
- { 1, 3877, 9195, 17, 6, UNI_TNSA } /* scriptextensions=tangsa */,
- { 0, 8782, 9687, 7, 4, UNI_BHKS } /* script=bhks */,
- { 8, 8782, 9201, 7, 6, UNI_SC__TELU } /* script=telugu */,
- { 18, 9474, 9499, 5, 5, UNI_INSC__NUKTA } /* insc=nukta */,
- { 0, 1418, 8907, 24, 2, UNI_CCC__30 } /* canonicalcombiningclass=30 */,
- { 1, 9691, 6614, 4, 12, UNI_PHAISTOS } /* blk=phaistosdisc */,
- { 0, 3122, 0, 5, 0, UNI_ECOMP } /* ecomp */,
- { 0, 6937, 288, 6, 29, UNI_MISCMATHSYMBOLSB } /* inmiscellaneousmathematicalsymbolsb */,
- { 0, 4074, 4999, 16, 15, UNI_TITLE } /* generalcategory=titlecaseletter */,
- { 0, 9979, 9795, 4, 4, UNI_HMNG } /* scx=hmng */,
- { 11, 9691, 8508, 4, 8, UNI_INVITHKUQI } /* blk=vithkuqi */,
- { 1, 4714, 0, 14, 0, UNI_GREXT } /* graphemeextend */,
- { 1, 9695, 0, 4, 0, UNI_bpt_values_index } /* bpt= */,
- { 0, 10244, 468, 3, 11, UNI_P } /* gc=punctuation */,
- { 1, 1852, 0, 6, 0, UNI_cased_values_index } /* cased= */,
- { 26, 8973, 1747, 6, 23, UNI_ZNAMENNYMUSIC } /* block=znamennymusicalnotation */,
- { 1, 8967, 10055, 6, 4, UNI_BIDIM } /* bidim=true */,
- { 0, 9474, 5158, 5, 14, UNI_INSC__CONSONANTFINAL } /* insc=consonantfinal */,
- { 3, 3877, 4504, 17, 5, UNI_BAMU } /* scriptextensions=bamum */,
- { 3, 10508, 2803, 3, 3, UNI_XIDS } /* isxids */,
- { 13, 7460, 10202, 10, 3, UNI_IN__6_DOT_3 } /* presentin=6.3 */,
- { 0, 9159, 0, 8, 0, UNI_DT__CAN } /* nfdqc=no */,
- { 0, 8973, 3265, 6, 11, UNI_GEORGIANSUP } /* block=georgiansup */,
- { 0, 9683, 0, 4, 0, UNI_BATK } /* batk */,
- { 2, 9214, 9454, 5, 5, -UNI_IDEO } /* ideo=false */,
- { 0, 9045, 36, 6, 1, UNI_CWKCF } /* cwkcf=t */,
- { 6, 7230, 8, 10, 2, UNI_BC__AN } /* bidiclass=an */,
- { 1, 9269, 10055, 5, 4, UNI_POSIXXDIGIT } /* ahex=true */,
- { 0, 9647, 7996, 4, 3, UNI_AGE__2 } /* age=2.0 */,
- { 8, 5823, 10055, 13, 4, UNI_GRBASE } /* graphemebase=true */,
- { 0, 4684, 9, 15, 2, UNI_EA__NA } /* eastasianwidth=na */,
- { 0, 7160, 2, 3, 1, UNI_YI } /* isyi */,
- { 2, 10280, 10055, 3, 4, UNI_RI } /* ri=true */,
- { 0, 8973, 3657, 7, 16, UNI_CYRILLICEXTA } /* block=cyrillicextendeda */,
- { 0, 10268, 7923, 3, 2, UNI_NV__11 } /* nv=11 */,
- { 10, 185, 9435, 3, 3, UNI_CWCM } /* iscwcm */,
- { 3, 9476, 5634, 3, 14, UNI_SC__PHLP } /* sc=psalterpahlavi */,
- { 0, 8782, 6972, 7, 11, UNI_SC__NAND } /* script=nandinagari */,
- { 1, 9979, 8838, 4, 7, UNI_LANA } /* scx=taitham */,
- { 0, 10247, 7082, 3, 11, UNI_JG__STRAIGHTWAW } /* jg=straightwaw */,
- { 8, 10247, 757, 3, 3, UNI_JG__DAL } /* jg=dal */,
- { 2, 9979, 9667, 4, 4, UNI_ARMN } /* scx=armn */,
- { 1, 5408, 6496, 4, 10, UNI_INMASARAMGONDI } /* inmasaramgondi */,
- { 1, 8973, 6302, 6, 6, UNI_INHEBREW } /* block=hebrew */,
- { 2, 10511, 63, 5, 5, UNI_POSIXGRAPH } /* posixgraph */,
- { 8, 9979, 4534, 4, 4, UNI_BRAI } /* scx=brai */,
- { 4, 2003, 4776, 11, 13, UNI_LOWERCASELETTER } /* category=lowercaseletter */,
- { 2, 7230, 5578, 10, 14, UNI_BC__NSM } /* bidiclass=nonspacingmark */,
- { 1, 9711, 8171, 4, 2, UNI_CCC__26 } /* ccc=26 */,
- { 5, 6386, 0, 4, 0, UNI_MAHJ } /* mahj */,
- { 6, 2012, 1, 22, 1, -UNI_LOE } /* logicalorderexception=n */,
- { 2, 185, 2269, 2, 11, UNI_MTEI } /* ismeeteimayek */,
- { 2, 2689, 0, 19, 0, UNI_COUNTINGROD } /* countingrodnumerals */,
- { 19, 9514, 0, 5, 0, UNI_ORYA } /* oriya */,
- { 2, 2808, 81, 4, 33, UNI_ARABICMATH } /* inarabicmathematicalalphabeticsymbols */,
- { 9, 3877, 6302, 17, 4, UNI_HEBR } /* scriptextensions=hebr */,
- { 3, 9691, 7270, 4, 10, UNI_CJKSTROKES } /* blk=cjkstrokes */,
- { 1, 8973, 1946, 6, 22, UNI_DIACRITICALSFORSYMBOLS } /* block=diacriticalsforsymbols */,
- { 5, 10253, 6278, 3, 4, UNI_LB__GL } /* lb=glue */,
- { 0, 9979, 9867, 4, 4, UNI_MLYM } /* scx=mlym */,
- { 0, 6083, 7956, 13, 8, UNI_NV__3_SLASH_2 } /* numericvalue=1.50e+00 */,
- { 61, 3403, 3, 6, 1, -UNI_XPOSIXSPACE } /* space=f */,
- { 0, 3283, 1026, 18, 2, -UNI_IDSB } /* idsbinaryoperator=no */,
- { 2, 8782, 8500, 7, 8, UNI_UGAR } /* script=ugaritic */,
- { 11, 9979, 9534, 4, 4, UNI_TAKR } /* scx=takr */,
- { 0, 9691, 5836, 4, 8, UNI_GREEKEXT } /* blk=greekext */,
- { 17, 8973, 7271, 7, 9, UNI_CJKSTROKES } /* block=cjkstrokes */,
- { 0, 5875, 6410, 13, 12, UNI_JG__MALAYALAMLLA } /* joininggroup=malayalamlla */,
- { 0, 8973, 1586, 6, 14, UNI_BYZANTINEMUSIC } /* block=byzantinemusic */,
- { 0, 7467, 7983, 3, 1, UNI_IN__7 } /* in=7 */,
- { 11, 3406, 1, 3, 1, -UNI_CE } /* ce=n */,
- { 3, 1466, 0, 13, 0, UNI_M } /* combiningmark */,
- { 0, 10523, 0, 5, 0, UNI_XPOSIXBLANK } /* blank */,
- { 1, 9189, 9454, 6, 5, -UNI_STERM } /* sterm=false */,
- { 0, 9189, 10355, 6, 3, UNI_STERM } /* sterm=yes */,
- { 2, 184, 0, 20, 0, UNI_MISCSYMBOLS } /* miscellaneoussymbols */,
- { 1, 9545, 10355, 4, 3, UNI_IDC } /* idc=yes */,
- { 4, 6083, 8937, 13, 4, UNI_NV__7000 } /* numericvalue=7000 */,
- { 0, 9979, 494, 4, 3, UNI_HAN } /* scx=han */,
- { 0, 1553, 7550, 9, 10, UNI_CN } /* category=unassigned */,
- { 3, 10553, 6, 3, 1, UNI_SD } /* issd */,
- { 0, 10247, 5704, 3, 14, UNI_JG__HAMZAONHEHGOAL } /* jg=tehmarbutagoal */,
- { 3, 7467, 10304, 3, 3, UNI_IN__3_DOT_1 } /* in=v31 */,
- { 3, 10051, 0, 4, 0, UNI_TOTO } /* toto */,
- { 0, 2248, 3464, 3, 17, UNI_SMALLKANAEXT } /* insmallkanaextension */,
- { 3, 38, 0, 2, 0, UNI_XPOSIXDIGIT } /* nd */,
- { 1, 9931, 0, 4, 0, UNI_PHLP } /* phlp */,
- { 0, 9434, 36, 5, 1, UNI_CWCM } /* cwcm=t */,
- { 1, 7460, 7611, 10, 1, UNI_IN__5 } /* presentin=5 */,
- { 4, 10095, 0, 4, 0, UNI_XPEO } /* xpeo */,
- { 1, 3877, 8684, 17, 4, UNI_MARC } /* scriptextensions=marc */,
- { 1, 10268, 5732, 3, 6, UNI_NV__100000 } /* nv=100000 */,
- { 13, 6242, 0, 12, 0, UNI_ETHIOPICEXTB } /* ethiopicextb */,
- { 1, 2248, 4411, 3, 5, UNI_INSYRIAC } /* insyriac */,
- { 3, 9779, 0, 4, 0, UNI_GUJR } /* gujr */,
- { 0, 8702, 752, 4, 14, UNI_ENCLOSEDALPHANUM } /* inenclosedalphanum */,
- { 5, 9691, 5836, 4, 13, UNI_GREEKEXT } /* blk=greekextended */,
+ { 4, 185, 1088, 2, 26, UNI_PCM } /* isprependedconcatenationmark */,
+ { 3, 1538, 4671, 4, 13, UNI_DIACRITICALSSUP } /* indiacriticalssup */,
{ 0, 3605, 0, 17, 0, UNI_UCAS } /* canadiansyllabics */,
- { 0, 9476, 8684, 3, 7, UNI_MARC } /* sc=marchen */,
- { 0, 8973, 6122, 6, 12, UNI_ALPHABETICPF } /* block=alphabeticpf */,
- { 0, 7460, 10328, 10, 3, UNI_IN__6_DOT_1 } /* presentin=v61 */,
- { 7, 4024, 0, 18, 0, UNI_PE } /* isclosepunctuation */,
- { 4, 3877, 7570, 17, 4, UNI_WARA } /* scriptextensions=wara */,
- { 10, 9691, 9504, 4, 5, UNI_INNUSHU } /* blk=nushu */,
- { 9, 185, 780, 2, 30, UNI_SYMBOLSANDPICTOGRAPHSEXTA } /* issymbolsandpictographsextendeda */,
- { 0, 10268, 8949, 3, 2, UNI_NV__90 } /* nv=90 */,
- { 19, 9476, 860, 4, 3, UNI_SC__KNDA } /* sc=knda */,
- { 7, 9979, 8831, 4, 7, UNI_TGLG } /* scx=tagalog */,
- { 0, 9476, 9237, 3, 4, UNI_SC__YEZI } /* sc=yezi */,
- { 1, 10244, 7, 3, 1, UNI_C } /* gc=c */,
- { 1, 9461, 9279, 3, 5, UNI_SB__AT } /* sb=aterm */,
- { 0, 21, 8396, 2, 8, UNI_KANAEXTA } /* inkanaexta */,
- { 0, 7391, 6721, 4, 9, UNI_CASEDLETTER } /* iscasedletter */,
- { 2, 9979, 3049, 4, 4, UNI_CHER } /* scx=cher */,
- { 1, 7853, 0, 4, 0, UNI_PAUC } /* pauc */,
- { 16, 6083, 10196, 13, 3, UNI_NV__5_SLASH_8 } /* numericvalue=5/8 */,
- { 4, 185, 721, 3, 29, UNI_CUNEIFORMNUMBERS } /* iscuneiformnumbersandpunctuation */,
- { 4, 10268, 10214, 3, 3, UNI_NV__9_SLASH_2 } /* nv=9/2 */,
- { 2, 9691, 3707, 4, 17, UNI_ETHIOPICEXTA } /* blk=ethiopicextendeda */,
- { 0, 6083, 8028, 13, 3, UNI_NV__200 } /* numericvalue=200 */,
- { 0, 5536, 9494, 14, 5, UNI_NFCQC__M } /* nfcquickcheck=maybe */,
- { 9, 660, 0, 30, 0, UNI_CJKEXTF } /* cjkunifiedideographsextensionf */,
- { 8, 48, 0, 1, 0, UNI_M } /* m */,
- { 7, 5592, 36, 14, 1, UNI_PATSYN } /* patternsyntax=t */,
- { 0, 185, 3139, 2, 18, UNI_DEVANAGARIEXT } /* isdevanagariextended */,
- { 4, 10268, 8020, 3, 8, UNI_NV__1_SLASH_40 } /* nv=2.50e-02 */,
- { 33, 1345, 0, 25, 0, UNI_SYMBOLSFORLEGACYCOMPUTING } /* symbolsforlegacycomputing */,
- { 4, 9484, 0, 4, 0, UNI_LIMB } /* limb */,
- { 0, 9711, 8028, 4, 3, UNI_WB__EB } /* ccc=200 */,
- { 2, 4624, 0, 15, 0, UNI_CURRENCYSYMBOLS } /* currencysymbols */,
- { 6, 6730, 0, 11, 0, UNI_CPMN } /* cyprominoan */,
- { 0, 185, 4654, 2, 15, UNI_DIACRITICALSEXT } /* isdiacriticalsext */,
- { 3, 3877, 9823, 17, 4, UNI_KTHI } /* scriptextensions=kthi */,
- { 41, 8973, 2269, 6, 11, UNI_INMEETEIMAYEK } /* block=meeteimayek */,
- { 2, 9979, 9183, 4, 6, UNI_RJNG } /* scx=rejang */,
- { 1, 1538, 3499, 24, 18, UNI_INPC__TOPANDLEFTANDRIGHT } /* indicpositionalcategory=topandleftandright */,
- { 1, 3877, 8790, 18, 6, UNI_SHRD } /* scriptextensions=sharada */,
- { 1, 2803, 36, 19, 1, UNI_IDST } /* idstrinaryoperator=t */,
- { 0, 10268, 8937, 3, 5, UNI_NV__70000 } /* nv=70000 */,
- { 1, 9691, 9655, 4, 4, UNI_INAHOM } /* blk=ahom */,
- { 0, 6083, 10178, 13, 3, UNI_NV__3_SLASH_4 } /* numericvalue=3/4 */,
- { 0, 4504, 0, 5, 0, UNI_BAMU } /* bamum */,
- { 0, 9827, 0, 4, 0, UNI_LANA } /* lana */,
- { 11, 9647, 10316, 4, 3, UNI_AGE__5 } /* age=v50 */,
- { 0, 10229, 1310, 3, 3, UNI_DT__SUB } /* dt=sub */,
- { 0, 7580, 7772, 10, 6, UNI_WB__MN } /* wordbreak=midnum */,
- { 0, 9476, 8292, 3, 8, UNI_SC__BUGI } /* sc=buginese */,
- { 1, 8782, 7260, 7, 10, UNI_CHRS } /* script=chorasmian */,
- { 2, 10232, 4527, 3, 7, UNI_EA__N } /* ea=neutral */,
- { 0, 9550, 1026, 4, 2, -UNI_IDS } /* ids=no */,
- { 0, 10244, 38, 3, 2, UNI_XPOSIXDIGIT } /* gc=nd */,
- { 0, 9979, 8468, 4, 4, UNI_TAGB } /* scx=tagb */,
- { 0, 8782, 3139, 7, 10, UNI_SC__DEVA } /* script=devanagari */,
- { 0, 4972, 8860, 3, 6, UNI_TIBT } /* istibetan */,
- { 4, 2936, 0, 19, 0, UNI_SUNDANESESUP } /* sundanesesupplement */,
- { 0, 2553, 10056, 21, 3, UNI_TERM } /* terminalpunctuation=true */,
- { 0, 185, 4202, 2, 16, UNI_LINEARBSYLLABARY } /* islinearbsyllabary */,
- { 3, 9691, 1678, 4, 9, UNI_LATINEXTE } /* blk=latinexte */,
- { 0, 3945, 1026, 17, 2, -UNI_UIDEO } /* unifiedideograph=no */,
- { 0, 185, 1586, 2, 23, UNI_BYZANTINEMUSIC } /* isbyzantinemusicalsymbols */,
- { 1, 3877, 9135, 17, 6, UNI_LYDI } /* scriptextensions=lydian */,
- { 0, 185, 9867, 2, 4, UNI_MLYM } /* ismlym */,
- { 6, 5830, 10355, 6, 3, UNI_EBASE } /* ebase=yes */,
- { 0, 4598, 1634, 4, 21, UNI_GEOMETRICSHAPESEXT } /* ingeometricshapesextended */,
- { 0, 3877, 9915, 17, 4, UNI_ORYA } /* scriptextensions=orya */,
- { 1, 9476, 9895, 3, 3, UNI_SC__NKO } /* sc=nko */,
- { 10, 6194, 0, 12, 0, UNI_CYRILLICEXTA } /* cyrillicexta */,
- { 10, 10268, 7951, 3, 1, UNI_NV__3 } /* nv=3 */,
- { 0, 9461, 126, 3, 2, UNI_LB__CR } /* sb=cr */,
- { 18, 2746, 0, 19, 0, UNI_JAMOEXTA } /* hanguljamoextendeda */,
- { 35, 8973, 3962, 6, 16, UNI_ARABICSUP } /* block=arabicsupplement */,
- { 0, 21, 6362, 2, 12, UNI_KHMERSYMBOLS } /* inkhmersymbols */,
- { 0, 4972, 1288, 4, 2, UNI_TELU } /* istelu */,
- { 1, 3877, 9719, 17, 4, UNI_CPMN } /* scriptextensions=cpmn */,
- { 7, 2304, 1783, 4, 2, UNI_OLCK } /* isolck */,
- { 0, 7218, 1587, 3, 13, UNI_BYZANTINEMUSIC } /* inbyzantinemusic */,
- { 0, 10268, 8943, 3, 3, UNI_NV__800 } /* nv=800 */,
- { 0, 6340, 571, 3, 29, UNI_CJKEXTC } /* incjkunifiedideographsextensionc */,
- { 8, 9476, 8803, 3, 7, UNI_SIDD } /* sc=siddham */,
- { 59, 8973, 7450, 6, 10, UNI_INPHOENICIAN } /* block=phoenician */,
- { 0, 3877, 8754, 17, 7, UNI_OSMA } /* scriptextensions=osmanya */,
- { 2, 10283, 10355, 3, 3, UNI_SD } /* sd=yes */,
- { 1, 10402, 6675, 6, 6, UNI__PERL_IDCONT } /* _perl_idcont */,
- { 1, 3398, 3, 11, 1, -UNI_XPOSIXSPACE } /* whitespace=f */,
- { 1, 3877, 10083, 17, 3, UNI_VAI } /* scriptextensions=vai */,
- { 0, 7230, 3211, 10, 18, UNI_BC__ET } /* bidiclass=europeanterminator */,
- { 1, 7218, 1587, 3, 22, UNI_BYZANTINEMUSIC } /* inbyzantinemusicalsymbols */,
- { 0, 6697, 1, 11, 1, -UNI_XPOSIXALPHA } /* alphabetic=n */,
- { 2, 7297, 34, 3, 2, UNI_XPOSIXXDIGIT } /* ishex */,
- { 1, 10268, 9254, 3, 5, UNI_NV__1_SLASH_320 } /* nv=1/320 */,
- { 0, 8973, 1678, 6, 9, UNI_LATINEXTE } /* block=latinexte */,
- { 4, 9823, 0, 4, 0, UNI_KTHI } /* kthi */,
- { 3, 5093, 1, 9, 1, -UNI_XPOSIXXDIGIT } /* hexdigit=n */,
- { 0, 8973, 115, 7, 24, UNI_DIACRITICALS } /* block=combiningdiacriticalmarks */,
- { 1, 7360, 8642, 10, 2, UNI_LB__HY } /* linebreak=hy */,
- { 3, 9057, 1026, 6, 2, -UNI_EMOJI } /* emoji=no */,
- { 14, 8782, 10051, 7, 4, UNI_TOTO } /* script=toto */,
- { 6, 1553, 1026, 9, 2, UNI_NO } /* category=no */,
- { 0, 9979, 7, 4, 18, UNI_CANS } /* scx=canadianaboriginal */,
- { 0, 7580, 18, 10, 2, UNI_RI } /* wordbreak=ri */,
- { 0, 21, 4186, 2, 16, UNI_LINEARBIDEOGRAMS } /* inlinearbideograms */,
- { 1, 9476, 7820, 3, 4, UNI_SC__PERM } /* sc=perm */,
- { 0, 1930, 0, 16, 0, UNI_INDICNUMBERFORMS } /* indicnumberforms */,
- { 1, 8973, 1655, 6, 6, UNI_INHANGUL } /* block=hangul */,
- { 0, 21, 3573, 4, 15, UNI_ALCHEMICAL } /* inalchemicalsymbols */,
- { 9, 185, 6158, 2, 5, UNI_BIDIC } /* isbidic */,
- { 3, 1088, 36, 27, 1, UNI_PCM } /* prependedconcatenationmark=t */,
- { 0, 7300, 3, 10, 1, -UNI_DIA } /* diacritic=f */,
- { 1, 21, 1678, 2, 14, UNI_LATINEXTA } /* inlatinextendeda */,
- { 17, 5116, 26, 14, 1, UNI_CI } /* caseignorable=y */,
- { 0, 10229, 10289, 3, 3, UNI_DT__SQR } /* dt=sqr */,
- { 9, 10229, 2304, 3, 3, UNI_DT__ISO } /* dt=iso */,
- { 2, 9979, 7790, 4, 9, UNI_TALU } /* scx=newtailue */,
- { 1, 1067, 0, 2, 0, UNI_CASEDLETTER } /* lc */,
- { 2, 2593, 3403, 4, 5, UNI_VERTSPACE } /* vertspace */,
- { 0, 185, 10398, 2, 2, UNI_ZP } /* iszp */,
- { 0, 1274, 0, 21, 0, UNI_ce_values_index } /* compositionexclusion= */,
- { 0, 185, 5927, 2, 13, UNI_LOWSURROGATES } /* islowsurrogates */,
- { 12, 9476, 8284, 3, 4, UNI_BASS } /* sc=bass */,
- { 0, 10268, 9619, 3, 4, UNI_NV__3_SLASH_16 } /* nv=3/16 */,
- { 3, 185, 2433, 2, 13, UNI_GLAGOLITICSUP } /* isglagoliticsup */,
- { 0, 3481, 0, 11, 0, UNI_TAIXUANJING } /* taixuanjing */,
- { 5, 3139, 0, 18, 0, UNI_DEVANAGARIEXT } /* devanagariextended */,
- { 6, 2433, 0, 10, 0, UNI_GLAG } /* glagolitic */,
- { 3, 8782, 2841, 7, 4, UNI_MERO } /* script=mero */,
- { 22, 7230, 4521, 12, 13, UNI_BC__BN } /* bidiclass=boundaryneutral */,
- { 4, 8782, 9135, 7, 6, UNI_LYDI } /* script=lydian */,
- { 0, 2338, 0, 3, 0, UNI_XPOSIXXDIGIT } /* hex */,
- { 0, 3175, 0, 17, 0, UNI_EPRES } /* emojipresentation */,
- { 14, 2056, 3, 22, 1, -UNI__PERL_NCHAR } /* noncharactercodepoint=f */,
- { 1, 10511, 1891, 5, 5, UNI_POSIXUPPER } /* posixupper */,
- { 0, 4074, 1, 16, 1, UNI_N } /* generalcategory=n */,
- { 6, 185, 44, 3, 15, UNI_CJKCOMPAT } /* iscjkcompatibility */,
- { 0, 185, 9069, 2, 6, UNI_GOTH } /* isgothic */,
- { 8, 7297, 8357, 3, 7, UNI_HIRA } /* ishiragana */,
- { 64, 9691, 1655, 4, 23, UNI_COMPATJAMO } /* blk=hangulcompatibilityjamo */,
- { 0, 5875, 9111, 13, 6, UNI_JG__LAMADH } /* joininggroup=lamadh */,
- { 2, 5875, 9274, 13, 5, UNI_JG__ALAPH } /* joininggroup=alaph */,
- { 12, 185, 9891, 2, 4, UNI_NEWA } /* isnewa */,
- { 0, 8782, 9819, 7, 4, UNI_SC__KNDA } /* script=knda */,
- { 2, 7360, 4898, 10, 2, UNI_LB__QU } /* linebreak=qu */,
- { 0, 10253, 59, 3, 2, UNI_LB__ID } /* lb=id */,
- { 3, 8782, 1678, 7, 5, UNI_SC__LATN } /* script=latin */,
- { 4, 1592, 3708, 3, 15, UNI_ETHIOPICEXT } /* inethiopicextended */,
- { 3, 8372, 0, 8, 0, UNI_JAMOEXTA } /* jamoexta */,
- { 9, 9474, 3639, 5, 17, UNI_INSC__CONSONANTPREFIXED } /* insc=consonantprefixed */,
- { 0, 1770, 1, 22, 1, UNI_BPT__N } /* bidipairedbrackettype=n */,
- { 3, 9476, 3103, 3, 6, UNI_SC__COPT } /* sc=coptic */,
- { 1, 5875, 9983, 13, 4, UNI_JG__SEEN } /* joininggroup=seen */,
- { 13, 9219, 1, 6, 1, -UNI_XPOSIXUPPER } /* upper=n */,
- { 1, 9691, 383, 4, 32, UNI_EGYPTIANHIEROGLYPHFORMATCONTROLS } /* blk=egyptianhieroglyphformatcontrols */,
- { 9, 383, 0, 32, 0, UNI_EGYPTIANHIEROGLYPHFORMATCONTROLS } /* egyptianhieroglyphformatcontrols */,
- { 0, 1990, 4879, 22, 15, UNI_INSC__MODIFYINGLETTER } /* indicsyllabiccategory=modifyingletter */,
- { 4, 5875, 10220, 13, 3, UNI_JG__BEH } /* joininggroup=beh */,
- { 2, 6083, 7924, 13, 8, UNI_NV__1_SLASH_9 } /* numericvalue=1.11e-01 */,
- { 1, 9691, 7510, 4, 10, UNI_SMALLFORMS } /* blk=smallforms */,
- { 0, 8782, 9482, 7, 4, UNI_PHLI } /* script=phli */,
- { 7, 7460, 7951, 10, 1, UNI_IN__3 } /* presentin=3 */,
- { 5, 7060, 1026, 11, 2, -UNI_SD } /* softdotted=no */,
- { 0, 6350, 18, 12, 1, UNI_JT__R } /* joiningtype=r */,
- { 0, 6083, 8913, 13, 6, UNI_NV__400000 } /* numericvalue=400000 */,
- { 1, 9711, 8028, 4, 2, UNI_CCC__20 } /* ccc=20 */,
- { 0, 8973, 3571, 6, 10, UNI_ALCHEMICAL } /* block=alchemical */,
- { 2, 2143, 0, 14, 0, UNI_CJKRADICALSSUP } /* cjkradicalssup */,
- { 0, 3121, 10289, 18, 3, UNI_DT__SQR } /* decompositiontype=sqr */,
+ { 9, 1880, 10355, 22, 3, UNI_CWU } /* changeswhenuppercased=yes */,
+ { 2, 21, 1678, 2, 14, UNI_LATINEXTA } /* inlatinextendeda */,
+ { 32, 6340, 3050, 3, 7, UNI_INCHEROKEE } /* incherokee */,
+ { 0, 9063, 10055, 6, 4, UNI_EPRES } /* epres=true */,
+ { 0, 8973, 8691, 6, 7, UNI_INMULTANI } /* block=multani */,
+ { 0, 8782, 8621, 7, 4, UNI_SC__GRAN } /* script=gran */,
+ { 15, 8973, 6518, 6, 12, UNI_INMENDEKIKAKUI } /* block=mendekikakui */,
+ { 11, 7360, 8428, 10, 8, UNI_LB__NL } /* linebreak=nextline */,
+ { 64, 10217, 3741, 3, 17, UNI_BC__ES } /* bc=europeanseparator */,
+ { 8, 10244, 27, 3, 2, UNI_LOWERCASELETTER } /* gc=ll */,
+ { 8, 3877, 9643, 17, 4, UNI_ADLM } /* scriptextensions=adlm */,
+ { 0, 7781, 0, 9, 0, UNI_NBAT } /* nabataean */,
+ { 4, 407, 0, 7, 0, UNI_XPOSIXCNTRL } /* control */,
+ { 0, 9213, 9454, 6, 5, -UNI_UIDEO } /* uideo=false */,
+ { 1, 185, 9294, 2, 5, UNI_BUHD } /* isbuhid */,
+ { 2, 7370, 10055, 10, 4, UNI_XPOSIXLOWER } /* lowercase=true */,
+ { 10, 10352, 6785, 3, 11, UNI_WB__DQ } /* wb=doublequote */,
+ { 0, 6741, 10355, 11, 3, UNI_DEP } /* deprecated=yes */,
+ { 17, 185, 952, 2, 17, UNI_VS } /* isvariationselector */,
+ { 10, 9783, 0, 4, 0, UNI_GURU } /* guru */,
+ { 3, 3121, 46, 18, 3, UNI_DT__COM } /* decompositiontype=com */,
+ { 1, 1418, 10386, 24, 2, UNI_CCC__8 } /* canonicalcombiningclass=kv */,
+ { 0, 8782, 4186, 7, 7, UNI_SC__LINB } /* script=linearb */,
+ { 4, 3193, 0, 11, 0, UNI_ETHIOPICSUP } /* ethiopicsup */,
+ { 0, 6083, 8028, 13, 8, UNI_NV__20000000 } /* numericvalue=20000000 */,
+ { 2, 4074, 10396, 16, 2, UNI_ZL } /* generalcategory=zl */,
+ { 0, 9177, 10055, 6, 4, UNI_QMARK } /* qmark=true */,
+ { 25, 8967, 1, 6, 1, -UNI_BIDIM } /* bidim=n */,
+ { 0, 2808, 1372, 4, 22, UNI_ARABICPFA } /* inarabicpresentationformsa */,
+ { 8, 10253, 10380, 3, 2, UNI_LB__H3 } /* lb=h3 */,
+ { 0, 8340, 0, 8, 0, UNI_GUJR } /* gujarati */,
+ { 12, 10229, 3525, 3, 3, UNI_DT__MED } /* dt=med */,
+ { 2, 4954, 0, 15, 0, UNI_PS } /* openpunctuation */,
+ { 2, 185, 7673, 2, 9, UNI_EMOTICONS } /* isemoticons */,
{ 0, 9476, 9129, 3, 4, UNI_LYCI } /* sc=lyci */,
- { 19, 8973, 2085, 6, 15, UNI_MODIFIERLETTERS } /* block=modifierletters */,
- { 11, 185, 8340, 2, 8, UNI_GUJR } /* isgujarati */,
- { 0, 8973, 5270, 6, 6, UNI_KANGXI } /* block=kangxi */,
- { 8, 9647, 8036, 4, 3, UNI_AGE__3_DOT_1 } /* age=3.1 */,
- { 2, 10553, 10000, 3, 3, UNI_SHRD } /* isshrd */,
- { 6, 1218, 0, 2, 0, UNI_SK } /* sk */,
- { 2, 4074, 10390, 16, 2, UNI_CASEDLETTER } /* generalcategory=l_ */,
- { 16, 10253, 534, 3, 2, UNI_LB__NS } /* lb=ns */,
- { 7, 9711, 9360, 5, 4, UNI_CCC__26 } /* ccc=ccc26 */,
- { 0, 2312, 1657, 4, 21, UNI_COMPATJAMO } /* inhangulcompatibilityjamo */,
- { 9, 10268, 0, 3, 0, UNI_nv_values_index } /* nv= */,
- { 1, 185, 1847, 2, 9, UNI_XPOSIXLOWER } /* islowercase */,
- { 5, 4972, 2321, 3, 3, UNI_THAI } /* isthai */,
- { 9, 8782, 6386, 7, 4, UNI_SC__MAHJ } /* script=mahj */,
- { 8, 4346, 0, 16, 0, UNI_PO } /* otherpunctuation */,
- { 0, 9979, 8677, 4, 7, UNI_MAND } /* scx=mandaic */,
- { 7, 8628, 26, 7, 1, UNI_GRBASE } /* grbase=y */,
- { 0, 5093, 10355, 9, 3, UNI_XPOSIXXDIGIT } /* hexdigit=yes */,
- { 0, 3877, 9859, 17, 4, UNI_MERC } /* scriptextensions=merc */,
- { 0, 10268, 7610, 3, 9, UNI_NV___MINUS_1_SLASH_2 } /* nv=-5.00e-01 */,
- { 0, 8881, 81, 4, 33, UNI_ARABICMATH } /* isarabicmathematicalalphabeticsymbols */,
- { 8, 9979, 7811, 4, 4, UNI_ITAL } /* scx=ital */,
- { 0, 1418, 1780, 24, 2, UNI_CCC__BR } /* canonicalcombiningclass=br */,
- { 18, 10352, 18, 3, 2, UNI_RI } /* wb=ri */,
- { 3, 185, 5522, 2, 14, UNI_SK } /* ismodifiersymbol */,
- { 0, 8782, 8292, 7, 4, UNI_SC__BUGI } /* script=bugi */,
- { 1, 5606, 0, 14, 0, UNI_PHONETICEXTSUP } /* phoneticextsup */,
- { 9, 1792, 0, 21, 0, UNI_CWCF } /* changeswhencasefolded */,
- { 0, 5284, 0, 14, 0, UNI_LATINEXTB } /* latinextendedb */,
- { 2, 5648, 10355, 14, 3, UNI_QMARK } /* quotationmark=yes */,
- { 4, 9474, 1490, 5, 24, UNI_INSC__CONSONANTSUCCEEDINGREPHA } /* insc=consonantsucceedingrepha */,
- { 0, 185, 6386, 2, 7, UNI_MAHJONG } /* ismahjong */,
- { 5, 8663, 0, 7, 0, UNI_LINA } /* lineara */,
- { 0, 9979, 9534, 4, 5, UNI_TAKR } /* scx=takri */,
- { 0, 10217, 2473, 3, 20, UNI_BC__LRE } /* bc=lefttorightembedding */,
- { 0, 7310, 0, 10, 0, UNI_DIAK } /* divesakuru */,
- { 32, 5592, 1, 14, 1, -UNI_PATSYN } /* patternsyntax=n */,
- { 0, 6083, 9639, 13, 4, UNI_NV__7_SLASH_12 } /* numericvalue=7/12 */,
- { 3, 6719, 0, 11, 0, UNI_CASEDLETTER } /* casedletter */,
- { 0, 7360, 74, 10, 2, UNI_EMOD } /* linebreak=em */,
- { 2, 1270, 9454, 25, 5, -UNI_COMPEX } /* fullcompositionexclusion=false */,
- { 0, 9464, 0, 5, 0, UNI_idst_values_index } /* idst= */,
- { 20, 9476, 10027, 3, 4, UNI_TAVT } /* sc=tavt */,
- { 1, 4074, 1172, 16, 2, UNI_TITLE } /* generalcategory=lt */,
- { 3, 185, 9129, 2, 6, UNI_LYCI } /* islycian */,
- { 3, 8782, 6593, 7, 4, UNI_HUNG } /* script=hung */,
- { 4, 10268, 8919, 3, 6, UNI_NV__432000 } /* nv=432000 */,
- { 2, 185, 9699, 2, 4, UNI_BUHD } /* isbuhd */,
- { 1, 10223, 10055, 3, 4, UNI_CI } /* ci=true */,
- { 0, 9691, 79, 4, 6, UNI_INARABIC } /* blk=arabic */,
- { 1, 185, 1467, 3, 12, UNI_M } /* iscombiningmark */,
- { 3, 7360, 1846, 10, 2, UNI_LB__NL } /* linebreak=nl */,
- { 9, 10268, 9249, 3, 5, UNI_NV__1_SLASH_160 } /* nv=1/160 */,
- { 0, 10516, 1891, 7, 5, UNI_POSIXUPPER } /* isposixupper */,
- { 0, 185, 511, 3, 19, UNI_CJK } /* iscjkunifiedideographs */,
- { 4, 1814, 36, 22, 1, UNI_CWCM } /* changeswhencasemapped=t */,
- { 0, 9469, 2479, 5, 5, UNI_INPC__RIGHT } /* inpc=right */,
- { 1, 7580, 6278, 10, 12, UNI_WB__EB } /* wordbreak=glueafterzwj */,
- { 1, 8656, 0, 7, 0, UNI_KALI } /* kayahli */,
- { 2, 8782, 9783, 7, 4, UNI_SC__GURU } /* script=guru */,
- { 0, 9691, 2898, 4, 19, UNI_OTTOMANSIYAQNUMBERS } /* blk=ottomansiyaqnumbers */,
- { 0, 9476, 8677, 3, 7, UNI_SC__MAND } /* sc=mandaic */,
- { 12, 8973, 511, 7, 29, UNI_CJKEXTA } /* block=cjkunifiedideographsextensiona */,
- { 1, 5875, 5, 13, 1, UNI_JG__E } /* joininggroup=e */,
- { 0, 5875, 2661, 13, 9, UNI_JG__YEHBARREE } /* joininggroup=yehbarree */,
- { 2, 10352, 7772, 3, 9, UNI_WB__MB } /* wb=midnumlet */,
- { 0, 6083, 7923, 13, 2, UNI_NV__11 } /* numericvalue=11 */,
- { 0, 10268, 8179, 3, 2, UNI_NV__36 } /* nv=36 */,
- { 1, 9691, 7727, 4, 9, UNI_LATINEXTC } /* blk=latinextc */,
- { 2, 21, 3792, 2, 17, UNI_INKHITANSMALLSCRIPT } /* inkhitansmallscript */,
- { 0, 9691, 114, 4, 35, UNI_DIACRITICALSFORSYMBOLS } /* blk=combiningdiacriticalmarksforsymbols */,
- { 4, 9476, 9799, 3, 4, UNI_HMNP } /* sc=hmnp */,
- { 13, 8702, 812, 4, 27, UNI_ENCLOSEDIDEOGRAPHICSUP } /* inenclosedideographicsupplement */,
- { 0, 2206, 36, 21, 1, UNI_GCB__T } /* graphemeclusterbreak=t */,
- { 2, 10547, 0, 4, 0, UNI_PE } /* ispe */,
- { 0, 185, 8656, 2, 7, UNI_KALI } /* iskayahli */,
- { 7, 8782, 1166, 9, 2, UNI_SC__SHRD } /* script=shrd */,
- { 0, 9691, 1034, 4, 11, UNI_ENCLOSEDCJK } /* blk=enclosedcjk */,
- { 0, 8973, 5340, 6, 14, UNI_LATINEXTF } /* block=latinextendedf */,
- { 1, 1880, 0, 21, 0, UNI_CWU } /* changeswhenuppercased */,
- { 0, 1553, 7, 9, 1, UNI_C } /* category=c */,
- { 2, 4714, 3, 15, 1, -UNI_GREXT } /* graphemeextend=f */,
- { 5, 7844, 0, 4, 0, UNI_PALM } /* palm */,
- { 4, 3877, 9284, 17, 5, UNI_BATK } /* scriptextensions=batak */,
- { 0, 9545, 26, 4, 1, UNI_IDC } /* idc=y */,
- { 0, 9691, 2633, 5, 5, UNI_INBRAHMI } /* blk=brahmi */,
- { 20, 6340, 631, 3, 29, UNI_CJKEXTE } /* incjkunifiedideographsextensione */,
- { 2, 2593, 0, 20, 1, UNI_VO__U } /* verticalorientation=u */,
- { 0, 9469, 6615, 3, 7, UNI_PHAISTOS } /* inphaistos */,
- { 6, 8973, 4186, 6, 16, UNI_LINEARBIDEOGRAMS } /* block=linearbideograms */,
- { 11, 185, 7862, 2, 9, UNI_SAMR } /* issamaritan */,
- { 4, 2746, 0, 10, 0, UNI_JAMO } /* hanguljamo */,
- { 16, 6338, 26, 12, 1, UNI_JOINC } /* joincontrol=y */,
- { 5, 5875, 6432, 13, 5, UNI_JG__GAMAL } /* joininggroup=gamal */,
- { 0, 4972, 4259, 3, 3, UNI_TNSA } /* istnsa */,
- { 1, 9213, 36, 6, 1, UNI_UIDEO } /* uideo=t */,
- { 2, 8973, 2993, 6, 19, UNI_SUPARROWSC } /* block=supplementalarrowsc */,
- { 1, 9691, 9295, 5, 4, UNI_INBUHID } /* blk=buhid */,
- { 0, 9979, 6290, 4, 12, UNI_GONG } /* scx=gunjalagondi */,
- { 2, 3894, 9454, 17, 5, -UNI_STERM } /* sentenceterminal=false */,
- { 0, 9476, 10015, 3, 4, UNI_SC__TALE } /* sc=tale */,
- { 1, 9691, 7211, 5, 9, UNI_ASCII } /* blk=basiclatin */,
- { 0, 7460, 10337, 10, 3, UNI_IN__7 } /* presentin=v70 */,
- { 0, 21, 9135, 2, 6, UNI_INLYDIAN } /* inlydian */,
- { 21, 4909, 10355, 15, 3, UNI_DT__NONE } /* nfkdquickcheck=yes */,
- { 9, 10268, 7611, 3, 8, UNI_NV__1_SLASH_2 } /* nv=5.00e-01 */,
- { 0, 9695, 6001, 4, 4, UNI_BPT__N } /* bpt=none */,
- { 6, 185, 6752, 2, 6, UNI_DOMINO } /* isdomino */,
- { 2, 9476, 9444, 3, 5, UNI_SC__DOGR } /* sc=dogra */,
- { 3, 21, 9117, 2, 6, UNI_INLEPCHA } /* inlepcha */,
- { 8, 9979, 9105, 4, 4, UNI_KHOJ } /* scx=khoj */,
- { 0, 9907, 0, 4, 0, UNI_OLCK } /* olck */,
- { 0, 9691, 1061, 4, 27, UNI_OCR } /* blk=opticalcharacterrecognition */,
- { 3, 185, 4849, 2, 15, UNI_MERC } /* ismeroiticcursive */,
- { 0, 9476, 498, 5, 3, UNI_KHMR } /* sc=khmer */,
- { 1, 185, 2690, 3, 10, UNI_COUNTINGROD } /* iscountingrod */,
- { 1, 9979, 9482, 4, 4, UNI_PHLI } /* scx=phli */,
- { 0, 21, 5354, 2, 14, UNI_LATINEXTG } /* inlatinextendedg */,
- { 2, 9979, 2433, 4, 10, UNI_GLAG } /* scx=glagolitic */,
- { 1, 9063, 1026, 6, 2, -UNI_EPRES } /* epres=no */,
- { 1, 10247, 2661, 3, 3, UNI_JG__YEH } /* jg=yeh */,
- { 2, 10253, 1775, 3, 2, UNI_LB__AI } /* lb=ai */,
- { 0, 8782, 9081, 7, 4, UNI_HATR } /* script=hatr */,
- { 6, 9979, 2879, 4, 9, UNI_MONG } /* scx=mongolian */,
- { 1, 6578, 0, 12, 0, UNI_nt_values_index } /* numerictype= */,
- { 0, 9691, 1946, 4, 22, UNI_DIACRITICALSFORSYMBOLS } /* blk=diacriticalsforsymbols */,
- { 0, 7460, 10340, 10, 3, UNI_IN__8 } /* presentin=v80 */,
- { 1, 133, 0, 2, 0, UNI_LM } /* lm */,
- { 8, 5875, 6031, 13, 13, UNI_JG__MANICHAEANWAW } /* joininggroup=manichaeanwaw */,
- { 21, 1990, 0, 22, 0, UNI_insc_values_index } /* indicsyllabiccategory= */,
- { 1, 10244, 3382, 3, 9, UNI_Z } /* gc=separator */,
- { 0, 2784, 5717, 19, 2, UNI_LB__H2 } /* hangulsyllabletype=lv */,
- { 65, 9979, 7655, 4, 9, UNI_BHKS } /* scx=bhaiksuki */,
- { 1, 10247, 4789, 3, 15, UNI_JG__MANICHAEANALEPH } /* jg=manichaeanaleph */,
- { 13, 9691, 6626, 4, 12, UNI_PLAYINGCARDS } /* blk=playingcards */,
- { 0, 9476, 9863, 3, 4, UNI_MIAO } /* sc=miao */,
- { 16, 9979, 8866, 4, 4, UNI_TIRH } /* scx=tirh */,
- { 3, 9123, 10055, 6, 4, UNI_XPOSIXLOWER } /* lower=true */,
- { 1, 1167, 9454, 26, 5, -UNI_DI } /* defaultignorablecodepoint=false */,
- { 1, 7460, 10190, 10, 3, UNI_IN__5_DOT_2 } /* presentin=5.2 */,
- { 1, 3877, 9887, 17, 4, UNI_NBAT } /* scriptextensions=nbat */,
- { 10, 1990, 4579, 22, 15, UNI_INSC__CONSONANTMEDIAL } /* indicsyllabiccategory=consonantmedial */,
- { 10, 9979, 2085, 4, 4, UNI_MODI } /* scx=modi */,
- { 0, 1418, 41, 24, 2, UNI_CCC__DA } /* canonicalcombiningclass=da */,
- { 1, 187, 0, 2, 0, UNI_CE } /* ce */,
- { 34, 8973, 79, 6, 35, UNI_ARABICMATH } /* block=arabicmathematicalalphabeticsymbols */,
- { 1, 9935, 0, 4, 0, UNI_PHNX } /* phnx */,
- { 1, 9711, 10154, 4, 3, UNI_CCC__R } /* ccc=226 */,
- { 0, 9691, 2164, 4, 21, UNI_CYRILLICSUP } /* blk=cyrillicsupplementary */,
- { 1, 185, 9755, 2, 4, UNI_DSRT } /* isdsrt */,
- { 1, 9979, 10115, 4, 4, UNI_QAAI } /* scx=zinh */,
- { 8, 6340, 2144, 3, 20, UNI_CJKRADICALSSUP } /* incjkradicalssupplement */,
- { 81, 9763, 1088, 4, 7, UNI_GCB__PP } /* gcb=prepend */,
- { 18, 4154, 25, 3, 1, UNI_INVS } /* invs */,
- { 5, 21, 3809, 2, 17, UNI_LETTERLIKESYMBOLS } /* inletterlikesymbols */,
- { 16, 9476, 6494, 3, 12, UNI_SC__GONM } /* sc=masaramgondi */,
- { 0, 7360, 6096, 10, 13, UNI_LB__PR } /* linebreak=prefixnumeric */,
- { 0, 5592, 9454, 14, 5, -UNI_PATSYN } /* patternsyntax=false */,
- { 32, 185, 9034, 3, 5, UNI_CAKM } /* ischakma */,
- { 37, 4330, 0, 16, 0, UNI_MYANMAREXTB } /* myanmarextendedb */,
- { 1, 8782, 9484, 7, 4, UNI_SC__LIMB } /* script=limb */,
- { 6, 9476, 9069, 3, 6, UNI_GOTH } /* sc=gothic */,
- { 0, 6083, 7947, 13, 2, UNI_NV__21 } /* numericvalue=21 */,
- { 3, 9979, 9679, 4, 4, UNI_AVST } /* scx=avst */,
- { 12, 4074, 107, 16, 6, UNI_S } /* generalcategory=symbol */,
- { 0, 3319, 0, 18, 0, UNI_LATINEXTADDITIONAL } /* latinextadditional */,
- { 0, 8973, 4474, 6, 15, UNI_ARABICEXTA } /* block=arabicextendeda */,
- { 2, 7467, 10190, 3, 3, UNI_IN__5_DOT_2 } /* in=5.2 */,
- { 0, 10244, 75, 3, 2, UNI_ME } /* gc=me */,
- { 10, 185, 2165, 3, 10, UNI_CYRILLICSUP } /* iscyrillicsup */,
- { 0, 3553, 3, 18, 1, -UNI_VS } /* variationselector=f */,
- { 0, 9474, 3085, 5, 18, UNI_INSC__CONSONANTSUBJOINED } /* insc=consonantsubjoined */,
- { 2, 10223, 1, 3, 1, -UNI_CI } /* ci=n */,
- { 9, 185, 8559, 3, 6, UNI_CJKEXTC } /* iscjkextc */,
- { 4, 5797, 0, 13, 0, UNI_XPOSIXDIGIT } /* decimalnumber */,
- { 17, 9979, 9835, 4, 4, UNI_LATN } /* scx=latn */,
- { 4, 185, 3050, 3, 17, UNI_CHEROKEESUP } /* ischerokeesupplement */,
- { 3, 9469, 869, 3, 10, UNI_PHONETICEXT } /* inphoneticext */,
- { 2, 8973, 8284, 6, 8, UNI_INBASSAVAH } /* block=bassavah */,
- { 1, 185, 2632, 2, 6, UNI_BRAH } /* isbrahmi */,
- { 8, 185, 4534, 2, 4, UNI_BRAI } /* isbrai */,
- { 32, 9469, 5607, 3, 13, UNI_PHONETICEXTSUP } /* inphoneticextsup */,
- { 0, 9469, 869, 3, 27, UNI_PHONETICEXTSUP } /* inphoneticextensionssupplement */,
- { 4, 3121, 46, 18, 6, UNI_DT__COM } /* decompositiontype=compat */,
- { 11, 9711, 9330, 5, 4, UNI_CCC__20 } /* ccc=ccc20 */,
- { 4, 10253, 203, 3, 2, UNI_LB__SA } /* lb=sa */,
- { 1, 9177, 3, 6, 1, -UNI_QMARK } /* qmark=f */,
- { 1, 9051, 3, 6, 1, -UNI_ECOMP } /* ecomp=f */,
- { 98, 10253, 867, 3, 2, UNI_LB__SP } /* lb=sp */,
- { 0, 8782, 3978, 7, 4, UNI_SC__BOPO } /* script=bopo */,
- { 0, 8782, 720, 7, 9, UNI_XSUX } /* script=cuneiform */,
- { 5, 6675, 10355, 11, 3, UNI_IDC } /* idcontinue=yes */,
- { 0, 9461, 752, 3, 2, UNI_SB__CL } /* sb=cl */,
- { 34, 185, 7510, 2, 10, UNI_SMALLFORMS } /* issmallforms */,
- { 23, 8973, 2690, 7, 10, UNI_COUNTINGROD } /* block=countingrod */,
- { 1, 6083, 8949, 13, 6, UNI_NV__900000 } /* numericvalue=900000 */,
- { 0, 10511, 97, 5, 5, UNI_POSIXALPHA } /* posixalpha */,
- { 8, 4639, 0, 15, 0, UNI_PD } /* dashpunctuation */,
- { 8, 9544, 0, 5, 0, UNI_xidc_values_index } /* xidc= */,
- { 8, 1538, 6734, 3, 5, UNI_DOMINO } /* indomino */,
- { 1, 9476, 9509, 3, 5, UNI_OGAM } /* sc=ogham */,
+ { 0, 6940, 0, 4, 0, UNI__PERL_SURROGATE } /* iscs */,
+ { 4, 3877, 2584, 17, 4, UNI_MAND } /* scriptextensions=mand */,
+ { 0, 3877, 9069, 17, 4, UNI_GOTH } /* scriptextensions=goth */,
{ 0, 185, 6219, 3, 11, UNI_CYRILLICEXTC } /* iscyrillicextc */,
- { 19, 9979, 7330, 4, 4, UNI_KHAR } /* scx=khar */,
- { 0, 10247, 6446, 3, 12, UNI_JG__MALAYALAMNYA } /* jg=malayalamnya */,
- { 3, 9711, 3596, 4, 9, UNI_CCC__BL } /* ccc=belowleft */,
- { 0, 7160, 10104, 3, 3, UNI_YI } /* isyiii */,
- { 3, 5875, 6005, 13, 13, UNI_JG__MANICHAEANTAW } /* joininggroup=manichaeantaw */,
- { 8, 185, 1219, 2, 26, UNI_KATAKANAEXT } /* iskatakanaphoneticextensions */,
- { 0, 9691, 896, 4, 28, UNI_SUPPUAA } /* blk=supplementaryprivateuseareaa */,
- { 0, 1190, 496, 3, 2, UNI_NT__NU } /* nt=nu */,
- { 3, 185, 4314, 2, 16, UNI_MYANMAREXTA } /* ismyanmarextendeda */,
- { 4, 9763, 1195, 4, 2, UNI_LB__LF } /* gcb=lf */,
- { 17, 10268, 9571, 3, 3, UNI_NV__1_SLASH_4 } /* nv=1/4 */,
- { 2, 8740, 0, 7, 0, UNI_OLCK } /* olchiki */,
- { 0, 9711, 8992, 5, 5, UNI_CCC__107 } /* ccc=ccc107 */,
- { 2, 185, 2936, 2, 19, UNI_SUNDANESESUP } /* issundanesesupplement */,
- { 0, 185, 2269, 2, 21, UNI_MEETEIMAYEKEXT } /* ismeeteimayekextensions */,
- { 4, 9691, 1678, 4, 14, UNI_LATINEXTA } /* blk=latinextendeda */,
- { 3, 3877, 5634, 17, 14, UNI_PHLP } /* scriptextensions=psalterpahlavi */,
- { 1, 6950, 0, 11, 0, UNI_MYANMAREXTA } /* myanmarexta */,
- { 1, 8881, 1396, 4, 22, UNI_ARABICPFB } /* isarabicpresentationformsb */,
- { 19, 185, 8684, 2, 7, UNI_MARC } /* ismarchen */,
- { 11, 10253, 6302, 3, 12, UNI_LB__HL } /* lb=hebrewletter */,
- { 2, 9691, 9524, 4, 5, UNI_INRUNIC } /* blk=runic */,
- { 0, 9691, 8348, 4, 8, UNI_INGURMUKHI } /* blk=gurmukhi */,
- { 2, 10268, 8903, 3, 2, UNI_NV__60 } /* nv=60 */,
- { 3, 1814, 1, 22, 1, -UNI_CWCM } /* changeswhencasemapped=n */,
- { 0, 9847, 0, 3, 0, UNI_LOE } /* loe */,
+ { 0, 8782, 4849, 7, 15, UNI_MERC } /* script=meroiticcursive */,
+ { 1, 5875, 4250, 13, 16, UNI_JG__MANICHAEANSAMEKH } /* joininggroup=manichaeansamekh */,
+ { 0, 9691, 8558, 4, 7, UNI_CJKEXTC } /* blk=cjkextc */,
+ { 0, 9691, 3076, 4, 9, UNI_HALFMARKS } /* blk=halfmarks */,
+ { 1, 185, 1588, 2, 1, UNI_Z } /* isz */,
+ { 7, 6083, 8044, 13, 8, UNI_NV__1_SLASH_32 } /* numericvalue=3.13e-02 */,
+ { 8, 8444, 9454, 8, 5, -UNI_RADICAL } /* radical=false */,
+ { 5, 8782, 10051, 7, 4, UNI_TOTO } /* script=toto */,
+ { 0, 5088, 1026, 14, 2, -UNI_POSIXXDIGIT } /* asciihexdigit=no */,
+ { 5, 8782, 9775, 7, 4, UNI_SC__GREK } /* script=grek */,
+ { 0, 10253, 97, 3, 10, UNI_LB__AL } /* lb=alphabetic */,
+ { 0, 9979, 9663, 4, 4, UNI_ARMI } /* scx=armi */,
+ { 2, 9647, 9595, 4, 4, UNI_AGE__12_DOT_1 } /* age=12.1 */,
+ { 6, 6302, 0, 4, 0, UNI_HEBR } /* hebr */,
+ { 0, 9691, 6730, 4, 11, UNI_INCYPROMINOAN } /* blk=cyprominoan */,
+ { 3, 8973, 1034, 6, 27, UNI_ENCLOSEDCJK } /* block=enclosedcjklettersandmonths */,
+ { 0, 5648, 1, 14, 1, -UNI_QMARK } /* quotationmark=n */,
+ { 1, 5875, 6470, 13, 12, UNI_JG__MALAYALAMTTA } /* joininggroup=malayalamtta */,
+ { 10, 3877, 8979, 17, 4, UNI_CARI } /* scriptextensions=cari */,
+ { 0, 4202, 0, 16, 0, UNI_LINEARBSYLLABARY } /* linearbsyllabary */,
+ { 1, 185, 5340, 2, 14, UNI_LATINEXTF } /* islatinextendedf */,
+ { 9, 3877, 7844, 17, 4, UNI_PALM } /* scriptextensions=palm */,
+ { 0, 207, 0, 2, 0, UNI_PI } /* pi */,
+ { 2, 7230, 103, 10, 2, UNI_BC__ET } /* bidiclass=et */,
+ { 2, 9476, 3826, 3, 4, UNI_SC__MANI } /* sc=mani */,
+ { 8, 3398, 3, 11, 1, -UNI_XPOSIXSPACE } /* whitespace=f */,
+ { 2, 9476, 9284, 3, 5, UNI_BATK } /* sc=batak */,
+ { 0, 4157, 448, 3, 17, UNI_IDEOGRAPHICSYMBOLS } /* isideographicsymbols */,
+ { 10, 7580, 4912, 10, 2, UNI_WB__DQ } /* wordbreak=dq */,
+ { 12, 9075, 10055, 6, 4, UNI_GREXT } /* grext=true */,
+ { 13, 185, 1295, 2, 25, UNI_SUPERANDSUB } /* issuperscriptsandsubscripts */,
+ { 1, 9214, 3, 5, 1, -UNI_IDEO } /* ideo=f */,
+ { 0, 3121, 4058, 18, 3, UNI_DT__FIN } /* decompositiontype=fin */,
+ { 3, 8782, 9875, 7, 4, UNI_MTEI } /* script=mtei */,
+ { 0, 10253, 7410, 3, 10, UNI_LB__NS } /* lb=nonstarter */,
+ { 0, 185, 44, 3, 35, UNI_CJKCOMPATIDEOGRAPHSSUP } /* iscjkcompatibilityideographssupplement */,
+ { 19, 8782, 9183, 7, 6, UNI_RJNG } /* script=rejang */,
+ { 4, 10247, 4829, 3, 3, UNI_JG__SAD } /* jg=sad */,
+ { 3, 4074, 49, 16, 1, UNI_P } /* generalcategory=p */,
+ { 32, 9469, 469, 3, 10, UNI_INPUNCTUATION } /* inpunctuation */,
+ { 2, 5875, 10107, 13, 4, UNI_JG__ZAIN } /* joininggroup=zain */,
+ { 29, 10516, 1847, 7, 5, UNI_POSIXLOWER } /* isposixlower */,
+ { 0, 5940, 0, 9, 0, UNI_MLYM } /* malayalam */,
{ 0, 21, 3445, 2, 4, UNI_RUMI } /* inrumi */,
- { 9, 6937, 207, 6, 11, UNI_MISCPICTOGRAPHS } /* inmiscpictographs */,
- { 4, 9171, 10055, 6, 4, UNI__PERL_PATWS } /* patws=true */,
- { 3, 7467, 10199, 3, 3, UNI_IN__6_DOT_1 } /* in=6.1 */,
- { 13, 2808, 7648, 4, 7, UNI_ARABICPFB } /* inarabicpfb */,
- { 24, 9691, 9201, 4, 6, UNI_INTELUGU } /* blk=telugu */,
- { 0, 9979, 8845, 4, 7, UNI_TAVT } /* scx=taiviet */,
- { 0, 9979, 9129, 4, 4, UNI_LYCI } /* scx=lyci */,
- { 1, 185, 1443, 3, 23, UNI_CJKSYMBOLS } /* iscjksymbolsandpunctuation */,
- { 0, 4442, 0, 9, 0, UNI_TANGUTSUP } /* tangutsup */,
- { 0, 9691, 3707, 4, 11, UNI_ETHIOPICEXT } /* blk=ethiopicext */,
- { 1, 8444, 3, 8, 1, -UNI_RADICAL } /* radical=f */,
- { 8, 2593, 472, 20, 2, UNI_VO__TU } /* verticalorientation=tu */,
- { 2, 8782, 6972, 7, 4, UNI_SC__NAND } /* script=nand */,
- { 50, 9711, 9415, 5, 4, UNI_CCC__84 } /* ccc=ccc84 */,
- { 1, 185, 3319, 2, 18, UNI_LATINEXTADDITIONAL } /* islatinextadditional */,
- { 8, 8973, 10083, 6, 3, UNI_INVAI } /* block=vai */,
- { 0, 185, 5029, 2, 15, UNI_VEDICEXT } /* isvedicextensions */,
- { 2, 9691, 5130, 4, 14, UNI_CJKCOMPATFORMS } /* blk=cjkcompatforms */,
- { 2, 6083, 8102, 13, 2, UNI_NV__17 } /* numericvalue=17 */,
- { 1, 34, 0, 3, 0, UNI_EXT } /* ext */,
- { 1, 8593, 3, 7, 1, -UNI_COMPEX } /* compex=f */,
- { 0, 8881, 728, 4, 2, UNI_ARMN } /* isarmn */,
- { 0, 10456, 10440, 14, 11, UNI__PERL_FOLDS_TO_MULTI_CHAR } /* _perl_folds_to_multi_char */,
- { 17, 7230, 0, 11, 0, UNI_BC__B } /* bidiclass=b */,
- { 4, 9469, 7017, 3, 10, UNI_INPAHAWHHMONG } /* inpahawhhmong */,
- { 2, 9691, 329, 4, 21, UNI_MATHOPERATORS } /* blk=mathematicaloperators */,
- { 0, 2312, 8357, 3, 7, UNI_INHIRAGANA } /* inhiragana */,
- { 0, 9691, 862, 4, 6, UNI_ARROWS } /* blk=arrows */,
- { 1, 10229, 4058, 3, 3, UNI_DT__FIN } /* dt=fin */,
- { 2, 6340, 721, 3, 8, UNI_INCUNEIFORM } /* incuneiform */,
- { 3, 7218, 8285, 3, 7, UNI_INBASSAVAH } /* inbassavah */,
- { 1, 9474, 4458, 5, 5, UNI_INSC__VOWEL } /* insc=vowel */,
- { 1, 5875, 4834, 13, 15, UNI_JG__MANICHAEANZAYIN } /* joininggroup=manichaeanzayin */,
- { 0, 9691, 4314, 4, 16, UNI_MYANMAREXTA } /* blk=myanmarextendeda */,
- { 1, 7552, 0, 8, 0, UNI_ASSIGNED } /* assigned */,
- { 1, 8973, 7520, 6, 10, UNI_SUPARROWSA } /* block=suparrowsa */,
- { 1, 1418, 7320, 24, 10, UNI_CCC__6 } /* canonicalcombiningclass=hanreading */,
- { 4, 6083, 5733, 13, 1, UNI_NV__0 } /* numericvalue=0 */,
- { 0, 6340, 4625, 3, 14, UNI_CURRENCYSYMBOLS } /* incurrencysymbols */,
- { 0, 10247, 6470, 3, 12, UNI_JG__MALAYALAMTTA } /* jg=malayalamtta */,
- { 0, 5823, 36, 13, 1, UNI_GRBASE } /* graphemebase=t */,
- { 1, 9731, 3, 4, 1, -UNI_CWT } /* cwt=f */,
- { 1, 10516, 0, 4, 0, UNI_PO } /* ispo */,
- { 0, 9549, 26, 5, 1, UNI_XIDS } /* xids=y */,
- { 0, 8973, 691, 7, 29, UNI_CJKEXTG } /* block=cjkunifiedideographsextensiong */,
- { 2, 185, 7580, 2, 4, UNI_XPOSIXWORD } /* isword */,
- { 0, 9213, 1, 6, 1, -UNI_UIDEO } /* uideo=n */,
- { 8, 5875, 5424, 13, 14, UNI_JG__MANICHAEANFIVE } /* joininggroup=manichaeanfive */,
- { 1, 3571, 0, 10, 0, UNI_ALCHEMICAL } /* alchemical */,
- { 10, 8973, 1678, 6, 14, UNI_LATINEXTA } /* block=latinextendeda */,
- { 1, 4624, 0, 14, 0, UNI_SC } /* currencysymbol */,
- { 0, 9979, 8607, 4, 4, UNI_ELBA } /* scx=elba */,
- { 0, 9979, 9444, 4, 4, UNI_DOGR } /* scx=dogr */,
- { 4, 720, 0, 16, 0, UNI_CUNEIFORMNUMBERS } /* cuneiformnumbers */,
- { 2, 9747, 1026, 4, 2, -UNI_DIA } /* dia=no */,
- { 0, 10268, 10181, 3, 3, UNI_NV__3_SLASH_5 } /* nv=3/5 */,
- { 1, 185, 9967, 2, 4, UNI_RUNR } /* isrunr */,
- { 1, 8973, 7727, 6, 9, UNI_LATINEXTC } /* block=latinextc */,
- { 7, 317, 0, 33, 0, UNI_SUPMATHOPERATORS } /* supplementalmathematicaloperators */,
- { 0, 8782, 9859, 7, 4, UNI_MERC } /* script=merc */,
- { 5, 4744, 0, 15, 0, UNI_identifiertype_values_index } /* identifiertype= */,
- { 3, 9711, 9417, 4, 2, UNI_CCC__84 } /* ccc=84 */,
- { 0, 8782, 1223, 7, 4, UNI_SC__KANA } /* script=kana */,
- { 10, 4847, 2271, 4, 9, UNI_INMEETEIMAYEK } /* inmeeteimayek */,
- { 17, 6083, 9407, 13, 2, UNI_NV__35 } /* numericvalue=35 */,
- { 1, 10247, 10107, 3, 4, UNI_JG__ZAIN } /* jg=zain */,
- { 48, 185, 5823, 2, 12, UNI_GRBASE } /* isgraphemebase */,
- { 10, 3283, 1, 18, 1, -UNI_IDSB } /* idsbinaryoperator=n */,
- { 11, 8973, 2746, 6, 19, UNI_JAMOEXTA } /* block=hanguljamoextendeda */,
- { 1, 6529, 3356, 3, 17, UNI_ORNAMENTALDINGBATS } /* inornamentaldingbats */,
- { 2, 8979, 0, 6, 0, UNI_CARI } /* carian */,
- { 41, 6083, 8937, 13, 2, UNI_NV__70 } /* numericvalue=70 */,
- { 0, 6972, 0, 4, 0, UNI_NAND } /* nand */,
- { 1, 8782, 2227, 7, 14, UNI_SC__ROHG } /* script=hanifirohingya */,
- { 1, 9476, 8740, 3, 7, UNI_OLCK } /* sc=olchiki */,
- { 8, 3175, 26, 18, 1, UNI_EPRES } /* emojipresentation=y */,
- { 2, 4474, 0, 15, 0, UNI_ARABICEXTA } /* arabicextendeda */,
- { 0, 4074, 7005, 16, 11, UNI_SO } /* generalcategory=othersymbol */,
- { 1, 8973, 1632, 6, 23, UNI_GEOMETRICSHAPESEXT } /* block=geometricshapesextended */,
- { 0, 3877, 8607, 17, 7, UNI_ELBA } /* scriptextensions=elbasan */,
- { 1, 1418, 3596, 24, 9, UNI_CCC__BL } /* canonicalcombiningclass=belowleft */,
- { 4, 7360, 396, 10, 2, UNI_LB__GL } /* linebreak=gl */,
- { 1, 1418, 9385, 25, 4, UNI_CCC__31 } /* canonicalcombiningclass=ccc31 */,
- { 5, 6083, 8925, 13, 5, UNI_NV__50000 } /* numericvalue=50000 */,
- { 0, 10352, 2468, 3, 2, UNI_LB__HL } /* wb=hl */,
- { 0, 7580, 6287, 10, 3, UNI_LB__ZWJ } /* wordbreak=zwj */,
- { 3, 9691, 2955, 4, 19, UNI_SUPARROWSA } /* blk=supplementalarrowsa */,
- { 1, 5045, 8493, 3, 7, UNI_UCASEXTA } /* isucasexta */,
- { 0, 9691, 1295, 4, 25, UNI_SUPERANDSUB } /* blk=superscriptsandsubscripts */,
- { 2, 4972, 4443, 3, 15, UNI_TANGUTSUP } /* istangutsupplement */,
- { 0, 46, 0, 2, 0, UNI_CO } /* co */,
- { 0, 18, 0, 2, 0, UNI_RI } /* ri */,
- { 0, 3877, 9835, 17, 4, UNI_LATN } /* scriptextensions=latn */,
- { 13, 5662, 0, 14, 0, UNI_sb_values_index } /* sentencebreak= */,
- { 26, 8973, 868, 6, 11, UNI_PHONETICEXT } /* block=phoneticext */,
- { 0, 6842, 3922, 4, 4, UNI_INCARIAN } /* incarian */,
- { 0, 5875, 8324, 13, 8, UNI_JG__FARSIYEH } /* joininggroup=farsiyeh */,
- { 0, 7460, 10211, 10, 3, UNI_IN__9 } /* presentin=9.0 */,
- { 4, 2808, 864, 4, 4, UNI_ARROWS } /* inarrows */,
- { 0, 8973, 9117, 6, 6, UNI_INLEPCHA } /* block=lepcha */,
- { 2, 9971, 0, 4, 0, UNI_SAMR } /* samr */,
- { 0, 185, 2123, 3, 20, UNI_CJKCOMPATFORMS } /* iscjkcompatibilityforms */,
- { 2, 3877, 2312, 18, 3, UNI_SINH } /* scriptextensions=sinh */,
- { 1, 2248, 2079, 3, 21, UNI_MODIFIERLETTERS } /* inspacingmodifierletters */,
- { 1, 6340, 3837, 3, 3, UNI_INCHAM } /* incham */,
- { 2, 9711, 7995, 4, 2, UNI_CCC__12 } /* ccc=12 */,
- { 0, 9461, 401, 3, 6, UNI_SB__FO } /* sb=format */,
- { 0, 8881, 7648, 4, 7, UNI_ARABICPFB } /* isarabicpfb */,
- { 8, 10268, 10370, 3, 2, UNI_NV__48 } /* nv=48 */,
- { 2, 6083, 9367, 13, 2, UNI_NV__27 } /* numericvalue=27 */,
- { 2, 8973, 0, 6, 0, UNI_blk_values_index } /* block= */,
- { 12, 8973, 7709, 6, 9, UNI_INKHUDAWADI } /* block=khudawadi */,
- { 0, 9691, 1946, 4, 12, UNI_DIACRITICALS } /* blk=diacriticals */,
- { 7, 32, 0, 2, 0, UNI__PERL_SURROGATE } /* cs */,
- { 3, 9476, 7433, 3, 7, UNI_SC__SOGD } /* sc=sogdian */,
- { 0, 2206, 1934, 21, 2, UNI_GCB__CN } /* graphemeclusterbreak=cn */,
- { 20, 9711, 8998, 5, 4, UNI_CCC__11 } /* ccc=ccc11 */,
- { 1, 9979, 4504, 4, 5, UNI_BAMU } /* scx=bamum */,
- { 3, 10223, 36, 3, 1, UNI_CI } /* ci=t */,
- { 0, 8782, 9867, 7, 4, UNI_SC__MLYM } /* script=mlym */,
- { 2, 7460, 10301, 10, 3, UNI_IN__3 } /* presentin=v30 */,
- { 0, 2100, 0, 15, 0, UNI_TRANSPORTANDMAP } /* transportandmap */,
- { 1, 9476, 9207, 3, 4, UNI_SC__THAA } /* sc=thaa */,
- { 0, 185, 5592, 2, 13, UNI_PATSYN } /* ispatternsyntax */,
- { 16, 3877, 9931, 17, 4, UNI_PHLP } /* scriptextensions=phlp */,
- { 0, 2185, 3, 21, 1, -UNI_EXTPICT } /* extendedpictographic=f */,
- { 1, 7460, 7924, 10, 3, UNI_IN__1_DOT_1 } /* presentin=1.1 */,
- { 12, 185, 8573, 3, 6, UNI_CJKEXTE } /* iscjkexte */,
+ { 0, 118, 6, 3, 2, UNI_INIDC } /* inidc */,
+ { 4, 10253, 6278, 3, 4, UNI_LB__GL } /* lb=glue */,
+ { 3, 185, 115, 3, 34, UNI_DIACRITICALSFORSYMBOLS } /* iscombiningdiacriticalmarksforsymbols */,
+ { 3, 9979, 9831, 4, 4, UNI_LAO } /* scx=laoo */,
+ { 0, 21, 1219, 2, 8, UNI_INKATAKANA } /* inkatakana */,
+ { 2, 8973, 9504, 6, 5, UNI_INNUSHU } /* block=nushu */,
+ { 0, 4074, 133, 16, 2, UNI_LM } /* generalcategory=lm */,
+ { 32, 9979, 9835, 4, 4, UNI_LATN } /* scx=latn */,
+ { 1, 185, 5634, 2, 14, UNI_PHLP } /* ispsalterpahlavi */,
+ { 0, 9647, 8212, 4, 3, UNI_AGE__8 } /* age=8.0 */,
+ { 0, 8316, 10355, 8, 3, UNI_EXTPICT } /* extpict=yes */,
+ { 4, 4598, 3250, 5, 15, UNI_INPUNCTUATION } /* ingeneralpunctuation */,
+ { 2, 1219, 0, 26, 0, UNI_KATAKANAEXT } /* katakanaphoneticextensions */,
+ { 0, 10244, 728, 3, 2, UNI_MN } /* gc=mn */,
+ { 0, 10516, 910, 3, 9, UNI_CO } /* isprivateuse */,
+ { 3, 8973, 4504, 6, 15, UNI_BAMUMSUP } /* block=bamumsupplement */,
+ { 2, 2803, 0, 4, 0, UNI_IDST } /* idst */,
+ { 1, 185, 4298, 2, 16, UNI_MISCMATHSYMBOLSB } /* ismiscmathsymbolsb */,
+ { 21, 1115, 3, 26, 1, -UNI_CWKCF } /* changeswhennfkccasefolded=f */,
+ { 0, 4074, 3301, 16, 18, UNI_PI } /* generalcategory=initialpunctuation */,
+ { 0, 9763, 10394, 4, 2, UNI_GCB__XX } /* gcb=xx */,
+ { 0, 8642, 1, 7, 1, -UNI_HYPHEN } /* hyphen=n */,
+ { 0, 1418, 7934, 24, 2, UNI_CCC__25 } /* canonicalcombiningclass=25 */,
+ { 0, 9476, 3193, 3, 4, UNI_ETHI } /* sc=ethi */,
+ { 0, 4157, 1309, 3, 2, UNI_IDS } /* isids */,
+ { 1, 3877, 3978, 17, 8, UNI_BOPO } /* scriptextensions=bopomofo */,
+ { 0, 7360, 25, 10, 2, UNI_LB__SY } /* linebreak=sy */,
+ { 5, 3877, 9891, 17, 4, UNI_NEWA } /* scriptextensions=newa */,
+ { 3, 185, 2185, 2, 20, UNI_EXTPICT } /* isextendedpictographic */,
+ { 0, 8973, 5901, 6, 13, UNI_KANAEXTB } /* block=kanaextendedb */,
+ { 4, 1189, 2101, 3, 21, UNI_TRANSPORTANDMAP } /* intransportandmapsymbols */,
+ { 2, 6083, 8925, 13, 4, UNI_NV__5000 } /* numericvalue=5000 */,
+ { 0, 4074, 468, 16, 5, UNI_P } /* generalcategory=punct */,
+ { 11, 9691, 114, 4, 25, UNI_DIACRITICALS } /* blk=combiningdiacriticalmarks */,
{ 0, 9691, 6362, 4, 5, UNI_INKHMER } /* blk=khmer */,
- { 5, 185, 3707, 2, 11, UNI_ETHIOPICEXT } /* isethiopicext */,
- { 11, 7190, 0, 10, 0, UNI_ARABICEXTA } /* arabicexta */,
- { 5, 4074, 401, 16, 6, UNI_CF } /* generalcategory=format */,
- { 0, 1418, 9499, 24, 5, UNI_CCC__7 } /* canonicalcombiningclass=nukta */,
- { 0, 9476, 7310, 3, 10, UNI_DIAK } /* sc=divesakuru */,
- { 2, 4847, 8692, 3, 6, UNI_INMULTANI } /* inmultani */,
- { 3, 1990, 1245, 22, 9, UNI_INSC__CONSONANT } /* indicsyllabiccategory=consonant */,
- { 8, 1418, 8, 24, 1, UNI_CCC__A } /* canonicalcombiningclass=a */,
- { 2, 9189, 1, 6, 1, -UNI_STERM } /* sterm=n */,
- { 0, 9979, 9264, 4, 5, UNI_ADLM } /* scx=adlam */,
- { 0, 21, 9099, 2, 6, UNI_KANBUN } /* inkanbun */,
- { 6, 5093, 0, 8, 0, UNI_XPOSIXXDIGIT } /* hexdigit */,
- { 2, 5830, 10055, 6, 4, UNI_EBASE } /* ebase=true */,
- { 33, 9476, 0, 3, 0, UNI_sc_values_index } /* sc= */,
- { 4, 7460, 10079, 10, 4, UNI_IN__14 } /* presentin=v140 */,
- { 8, 3403, 10055, 6, 4, UNI_XPOSIXSPACE } /* space=true */,
- { 0, 9269, 1026, 5, 2, -UNI_POSIXXDIGIT } /* ahex=no */,
- { 0, 9691, 1632, 4, 15, UNI_GEOMETRICSHAPES } /* blk=geometricshapes */,
- { 2, 5172, 0, 14, 0, UNI_emod_values_index } /* emojimodifier= */,
- { 0, 4598, 3250, 5, 15, UNI_INPUNCTUATION } /* ingeneralpunctuation */,
- { 2, 1792, 36, 22, 1, UNI_CWCF } /* changeswhencasefolded=t */,
- { 1, 21, 5368, 2, 14, UNI_LISUSUP } /* inlisusupplement */,
- { 9, 8973, 4202, 6, 16, UNI_LINEARBSYLLABARY } /* block=linearbsyllabary */,
- { 16, 9691, 5088, 4, 5, UNI_ASCII } /* blk=ascii */,
- { 3, 728, 0, 2, 0, UNI_MN } /* mn */,
- { 2, 7580, 34, 10, 6, UNI_WB__EXTEND } /* wordbreak=extend */,
- { 0, 8973, 2269, 6, 14, UNI_MEETEIMAYEKEXT } /* block=meeteimayekext */,
- { 1, 10516, 10529, 3, 4, UNI_XPOSIXPRINT } /* isprint */,
- { 1, 6083, 10184, 13, 3, UNI_NV__4_SLASH_5 } /* numericvalue=4/5 */,
- { 1, 3877, 7820, 17, 4, UNI_PERM } /* scriptextensions=perm */,
- { 1, 9691, 4298, 4, 16, UNI_MISCMATHSYMBOLSB } /* blk=miscmathsymbolsb */,
- { 0, 8973, 1586, 6, 23, UNI_BYZANTINEMUSIC } /* block=byzantinemusicalsymbols */,
- { 2, 185, 7271, 3, 9, UNI_CJKSTROKES } /* iscjkstrokes */,
- { 3, 2312, 2748, 4, 8, UNI_JAMO } /* inhanguljamo */,
- { 1, 10247, 6015, 3, 3, UNI_JG__TAW } /* jg=taw */,
- { 3, 4410, 0, 16, 0, UNI_SYRIACSUP } /* syriacsupplement */,
- { 3, 9189, 0, 6, 0, UNI_sterm_values_index } /* sterm= */,
- { 0, 9691, 2689, 4, 19, UNI_COUNTINGROD } /* blk=countingrodnumerals */,
- { 0, 4074, 1045, 16, 6, UNI_L } /* generalcategory=letter */,
- { 0, 10516, 7349, 3, 3, UNI_PHLI } /* isphli */,
- { 3, 10253, 909, 3, 2, UNI_LB__PR } /* lb=pr */,
- { 4, 185, 1116, 3, 24, UNI_CWKCF } /* ischangeswhennfkccasefolded */,
- { 1, 2185, 9454, 21, 5, -UNI_EXTPICT } /* extendedpictographic=false */,
- { 17, 9476, 4984, 3, 5, UNI_SC__TAML } /* sc=tamil */,
- { 0, 9979, 6928, 4, 11, UNI_MEDF } /* scx=medefaidrin */,
- { 0, 10244, 263, 3, 2, UNI_SM } /* gc=sm */,
- { 0, 2808, 29, 4, 4, UNI_INARABIC } /* inarabic */,
- { 6, 9979, 2248, 4, 21, UNI_PRTI } /* scx=inscriptionalparthian */,
- { 1, 6338, 3, 12, 1, -UNI_JOINC } /* joincontrol=f */,
- { 0, 10268, 7988, 3, 8, UNI_NV__3_SLASH_16 } /* nv=1.88e-01 */,
- { 4, 8782, 8420, 7, 8, UNI_SC__MAHJ } /* script=mahajani */,
- { 2, 6697, 0, 11, 0, UNI_alpha_values_index } /* alphabetic= */,
- { 2, 5088, 10055, 14, 4, UNI_POSIXXDIGIT } /* asciihexdigit=true */,
- { 0, 9691, 7646, 4, 9, UNI_ARABICPFB } /* blk=arabicpfb */,
- { 1, 9544, 3, 5, 1, -UNI_XIDC } /* xidc=f */,
- { 0, 2553, 9454, 20, 5, -UNI_TERM } /* terminalpunctuation=false */,
- { 0, 9691, 540, 4, 30, UNI_CJKEXTB } /* blk=cjkunifiedideographsextensionb */,
- { 1, 5875, 5704, 13, 10, UNI_JG__TEHMARBUTA } /* joininggroup=tehmarbuta */,
- { 2, 7370, 10055, 10, 4, UNI_XPOSIXLOWER } /* lowercase=true */,
- { 1, 5045, 1892, 3, 4, UNI_XPOSIXUPPER } /* isupper */,
- { 1, 3877, 720, 17, 9, UNI_XSUX } /* scriptextensions=cuneiform */,
- { 0, 8973, 810, 6, 22, UNI_ENCLOSEDIDEOGRAPHICSUP } /* block=enclosedideographicsup */,
- { 0, 5634, 0, 14, 0, UNI_PHLP } /* psalterpahlavi */,
- { 3, 9979, 2227, 4, 4, UNI_HAN } /* scx=hani */,
- { 8, 3049, 0, 18, 0, UNI_CHEROKEESUP } /* cherokeesupplement */,
- { 0, 9711, 1180, 4, 2, UNI_CCC__BL } /* ccc=bl */,
- { 1, 9464, 3, 5, 1, -UNI_IDST } /* idst=f */,
- { 1, 21, 5901, 2, 13, UNI_KANAEXTB } /* inkanaextendedb */,
- { 0, 9979, 9484, 4, 4, UNI_LIMB } /* scx=limb */,
- { 1, 9439, 36, 5, 1, UNI_DASH } /* dash=t */,
- { 0, 9476, 3193, 3, 8, UNI_ETHI } /* sc=ethiopic */,
- { 0, 3877, 9771, 17, 4, UNI_GONM } /* scriptextensions=gonm */,
- { 0, 8712, 0, 7, 0, UNI_nfkdqc_values_index } /* nfkdqc= */,
- { 8, 8973, 8817, 6, 7, UNI_SUPPUAA } /* block=suppuaa */,
- { 3, 10516, 2, 3, 1, UNI_PI } /* ispi */,
+ { 0, 8782, 9484, 7, 5, UNI_SC__LIMB } /* script=limbu */,
+ { 0, 5662, 752, 14, 2, UNI_SB__CL } /* sentencebreak=cl */,
+ { 0, 6083, 8937, 13, 6, UNI_NV__700000 } /* numericvalue=700000 */,
+ { 0, 1418, 8986, 25, 5, UNI_CCC__103 } /* canonicalcombiningclass=ccc103 */,
+ { 4, 3175, 10055, 18, 4, UNI_EPRES } /* emojipresentation=true */,
+ { 42, 3877, 9081, 17, 6, UNI_HATR } /* scriptextensions=hatran */,
+ { 3, 5662, 496, 14, 2, UNI_SB__NU } /* sentencebreak=nu */,
+ { 1, 7360, 59, 10, 2, UNI_LB__ID } /* linebreak=id */,
+ { 1, 10553, 1529, 3, 8, UNI__PERL_SURROGATE } /* issurrogate */,
+ { 0, 2803, 36, 19, 1, UNI_IDST } /* idstrinaryoperator=t */,
+ { 0, 9691, 3624, 4, 4, UNI_UCAS } /* blk=ucas */,
+ { 0, 9434, 9454, 5, 5, -UNI_CWCM } /* cwcm=false */,
+ { 1, 7467, 10190, 3, 3, UNI_IN__5_DOT_2 } /* in=5.2 */,
+ { 2, 10247, 6917, 3, 11, UNI_JG__MALAYALAMRA } /* jg=malayalamra */,
+ { 1, 8782, 7105, 8, 10, UNI_SC__SYLO } /* script=sylotinagri */,
+ { 0, 8973, 8537, 6, 7, UNI_INBENGALI } /* block=bengali */,
+ { 2, 3877, 9207, 17, 4, UNI_THAA } /* scriptextensions=thaa */,
+ { 0, 8782, 9787, 7, 4, UNI_SC__HANO } /* script=hano */,
+ { 9, 7297, 3077, 3, 8, UNI_HALFMARKS } /* ishalfmarks */,
+ { 0, 10268, 8164, 3, 8, UNI_NV__1_SLASH_16 } /* nv=6.25e-02 */,
+ { 1, 9147, 0, 6, 0, UNI_nchar_values_index } /* nchar= */,
+ { 0, 8782, 7853, 7, 4, UNI_PAUC } /* script=pauc */,
+ { 0, 7460, 8119, 10, 1, UNI_IN__9 } /* presentin=9 */,
+ { 1, 3121, 3463, 18, 5, UNI_DT__SML } /* decompositiontype=small */,
+ { 7, 9691, 660, 4, 30, UNI_CJKEXTF } /* blk=cjkunifiedideographsextensionf */,
+ { 4, 10247, 7082, 3, 11, UNI_JG__STRAIGHTWAW } /* jg=straightwaw */,
+ { 8, 9997, 8791, 4, 5, UNI_SC__SHRD } /* insharada */,
+ { 16, 9476, 2879, 3, 9, UNI_SC__MONG } /* sc=mongolian */,
+ { 2, 2808, 4476, 4, 13, UNI_ARABICEXTA } /* inarabicextendeda */,
+ { 0, 6350, 0, 12, 1, UNI_JT__U } /* joiningtype=u */,
+ { 2, 1270, 0, 24, 0, UNI_COMPEX } /* fullcompositionexclusion */,
+ { 48, 10268, 7610, 3, 9, UNI_NV___MINUS_1_SLASH_2 } /* nv=-5.00e-01 */,
+ { 1, 10268, 9591, 3, 4, UNI_NV__11_SLASH_2 } /* nv=11/2 */,
+ { 1, 7467, 0, 3, 0, UNI_in_values_index } /* in= */,
+ { 2, 2860, 0, 19, 0, UNI_MODIFIERTONELETTERS } /* modifiertoneletters */,
+ { 16, 9476, 9715, 3, 4, UNI_CHRS } /* sc=chrs */,
+ { 1, 7230, 0, 11, 0, UNI_BC__B } /* bidiclass=b */,
+ { 0, 2248, 3464, 3, 11, UNI_SMALLKANAEXT } /* insmallkanaext */,
+ { 0, 4074, 2373, 16, 20, UNI_PC } /* generalcategory=connectorpunctuation */,
+ { 5, 9691, 0, 4, 0, UNI_blk_values_index } /* blk= */,
+ { 0, 185, 728, 2, 2, UNI_MN } /* ismn */,
+ { 1, 9476, 8859, 3, 7, UNI_TIBT } /* sc=tibetan */,
+ { 0, 2501, 0, 3, 0, UNI_PUA } /* pua */,
+ { 0, 2593, 0, 20, 0, UNI_vo_values_index } /* verticalorientation= */,
+ { 0, 7300, 10355, 10, 3, UNI_DIA } /* diacritic=yes */,
+ { 16, 10244, 468, 3, 11, UNI_P } /* gc=punctuation */,
+ { 0, 9691, 2100, 4, 22, UNI_TRANSPORTANDMAP } /* blk=transportandmapsymbols */,
+ { 0, 9711, 10142, 4, 3, UNI_CCC__202 } /* ccc=202 */,
+ { 3, 10268, 8251, 3, 2, UNI_NV__19 } /* nv=19 */,
+ { 9, 9707, 0, 4, 0, UNI_CANS } /* cans */,
+ { 0, 9979, 7781, 4, 9, UNI_NBAT } /* scx=nabataean */,
+ { 0, 1990, 2393, 22, 20, UNI_INSC__CONSONANTPLACEHOLDER } /* indicsyllabiccategory=consonantplaceholder */,
+ { 17, 10244, 46, 3, 2, UNI_CO } /* gc=co */,
+ { 0, 8782, 2708, 7, 19, UNI_EGYP } /* script=egyptianhieroglyphs */,
+ { 9, 9069, 0, 4, 0, UNI_GOTH } /* goth */,
+ { 1, 8316, 10055, 8, 4, UNI_EXTPICT } /* extpict=true */,
+ { 9, 1045, 0, 6, 0, UNI_L } /* letter */,
+ { 17, 8973, 9195, 6, 6, UNI_INTANGSA } /* block=tangsa */,
+ { 0, 5662, 2553, 15, 4, UNI_SB__ST } /* sentencebreak=sterm */,
+ { 0, 6340, 7282, 4, 8, UNI_COMPATJAMO } /* incompatjamo */,
+ { 2, 8973, 9069, 6, 6, UNI_INGOTHIC } /* block=gothic */,
+ { 3, 9727, 10055, 4, 4, UNI_CWL } /* cwl=true */,
+ { 1, 9189, 1026, 6, 2, -UNI_STERM } /* sterm=no */,
+ { 9, 4972, 4985, 3, 4, UNI_TAML } /* istamil */,
+ { 0, 4042, 0, 16, 0, UNI_CYPRIOTSYLLABARY } /* cypriotsyllabary */,
+ { 5, 1418, 9400, 25, 4, UNI_CCC__34 } /* canonicalcombiningclass=ccc34 */,
+ { 0, 9476, 9799, 3, 4, UNI_HMNP } /* sc=hmnp */,
+ { 6, 2206, 1088, 21, 7, UNI_GCB__PP } /* graphemeclusterbreak=prepend */,
+ { 16, 9979, 2632, 4, 4, UNI_BRAH } /* scx=brah */,
+ { 3, 7297, 9800, 3, 3, UNI_HMNP } /* ishmnp */,
+ { 0, 185, 3691, 3, 16, UNI_CYRILLICEXTC } /* iscyrillicextendedc */,
+ { 0, 8973, 9034, 7, 5, UNI_INCHAKMA } /* block=chakma */,
+ { 0, 7467, 10211, 3, 3, UNI_IN__9 } /* in=9.0 */,
+ { 0, 2185, 1026, 21, 2, -UNI_EXTPICT } /* extendedpictographic=no */,
+ { 2, 3877, 3265, 17, 8, UNI_GEOR } /* scriptextensions=georgian */,
+ { 0, 8628, 0, 7, 0, UNI_grbase_values_index } /* grbase= */,
+ { 0, 9429, 1, 5, 1, -UNI_CWCF } /* cwcf=n */,
+ { 2, 9474, 1490, 5, 24, UNI_INSC__CONSONANTSUCCEEDINGREPHA } /* insc=consonantsucceedingrepha */,
+ { 0, 10244, 4346, 3, 16, UNI_PO } /* gc=otherpunctuation */,
+ { 0, 9476, 9207, 3, 4, UNI_SC__THAA } /* sc=thaa */,
+ { 0, 185, 8607, 2, 7, UNI_ELBA } /* iselbasan */,
+ { 8, 1553, 1846, 9, 2, UNI_NL } /* category=nl */,
+ { 3, 8782, 9294, 7, 5, UNI_SC__BUHD } /* script=buhid */,
+ { 4, 10388, 0, 2, 0, UNI_CASEDLETTER } /* l& */,
+ { 0, 5830, 1, 6, 1, -UNI_EBASE } /* ebase=n */,
+ { 34, 185, 7754, 2, 9, UNI_LATINEXTG } /* islatinextg */,
+ { 2, 8973, 5284, 6, 14, UNI_LATINEXTB } /* block=latinextendedb */,
+ { 1, 1167, 3, 26, 1, -UNI_DI } /* defaultignorablecodepoint=f */,
+ { 0, 8782, 10035, 7, 4, UNI_SC__TGLG } /* script=tglg */,
+ { 13, 8782, 7420, 7, 10, UNI_XPEO } /* script=oldpersian */,
+ { 2, 5662, 1891, 14, 5, UNI_SB__UP } /* sentencebreak=upper */,
+ { 7, 10402, 436, 6, 5, UNI__PERL_NCHAR } /* _perl_nchar */,
+ { 18, 1678, 0, 14, 0, UNI_LATINEXTA } /* latinextendeda */,
+ { 1, 9979, 9237, 4, 6, UNI_YEZI } /* scx=yezidi */,
+ { 1, 9691, 4654, 4, 15, UNI_DIACRITICALSEXT } /* blk=diacriticalsext */,
+ { 0, 9439, 0, 5, 0, UNI_dash_values_index } /* dash= */,
+ { 8, 9711, 3031, 4, 18, UNI_CCC__216 } /* ccc=attachedaboveright */,
+ { 0, 9476, 383, 3, 4, UNI_EGYP } /* sc=egyp */,
+ { 1, 185, 1925, 3, 5, UNI_ZYYY } /* iscommon */,
+ { 0, 7700, 0, 9, 0, UNI_QAAI } /* inherited */,
+ { 1, 8973, 4314, 6, 16, UNI_MYANMAREXTA } /* block=myanmarextendeda */,
+ { 23, 9691, 7381, 4, 2, UNI_INVS } /* blk=vs */,
+ { 0, 9153, 0, 7, 0, UNI_COMPEX } /* nfcqc=n */,
+ { 8, 9695, 6001, 4, 4, UNI_BPT__N } /* bpt=none */,
+ { 8, 185, 5131, 3, 13, UNI_CJKCOMPATFORMS } /* iscjkcompatforms */,
+ { 0, 8973, 7093, 6, 11, UNI_SUPERANDSUB } /* block=superandsub */,
+ { 2, 10244, 407, 3, 7, UNI_XPOSIXCNTRL } /* gc=control */,
+ { 1, 5875, 10277, 13, 3, UNI_JG__REH } /* joininggroup=reh */,
+ { 13, 8973, 9117, 6, 6, UNI_INLEPCHA } /* block=lepcha */,
+ { 4, 2803, 10055, 19, 4, UNI_IDST } /* idstrinaryoperator=true */,
+ { 0, 8973, 2765, 6, 19, UNI_JAMOEXTB } /* block=hanguljamoextendedb */,
+ { 2, 5875, 3, 15, 1, UNI_JG__KAF } /* joininggroup=kaf */,
+ { 2, 3877, 8775, 17, 7, UNI_PHAG } /* scriptextensions=phagspa */,
+ { 16, 1852, 3, 6, 1, -UNI_CASED } /* cased=f */,
+ { 2, 9691, 8572, 4, 7, UNI_CJKEXTE } /* blk=cjkexte */,
+ { 8, 8782, 1014, 7, 5, UNI_SC__GREK } /* script=greek */,
+ { 0, 1814, 36, 22, 1, UNI_CWCM } /* changeswhencasemapped=t */,
+ { 0, 6083, 8147, 13, 2, UNI_NV__16 } /* numericvalue=16 */,
+ { 1, 6340, 9034, 3, 5, UNI_INCHAKMA } /* inchakma */,
+ { 1, 1418, 9675, 24, 3, UNI_CCC__202 } /* canonicalcombiningclass=atb */,
+ { 0, 9691, 8866, 4, 7, UNI_INTIRHUTA } /* blk=tirhuta */,
+ { 9, 7230, 1354, 10, 3, UNI_BC__RLE } /* bidiclass=rle */,
+ { 0, 8973, 868, 6, 11, UNI_PHONETICEXT } /* block=phoneticext */,
+ { 0, 9474, 4969, 5, 15, UNI_INSC__REGISTERSHIFTER } /* insc=registershifter */,
+ { 0, 9476, 9875, 3, 4, UNI_MTEI } /* sc=mtei */,
+ { 0, 10280, 0, 3, 0, UNI_ri_values_index } /* ri= */,
+ { 0, 7467, 8212, 3, 3, UNI_IN__8 } /* in=8.0 */,
+ { 1, 9691, 9069, 4, 6, UNI_INGOTHIC } /* blk=gothic */,
+ { 1, 5875, 5979, 13, 13, UNI_JG__MANICHAEANNUN } /* joininggroup=manichaeannun */,
+ { 21, 6194, 0, 12, 0, UNI_CYRILLICEXTA } /* cyrillicexta */,
+ { 8, 4074, 1588, 16, 1, UNI_Z } /* generalcategory=z */,
+ { 0, 185, 8420, 2, 8, UNI_MAHJ } /* ismahajani */,
+ { 17, 3877, 9839, 17, 4, UNI_LINA } /* scriptextensions=lina */,
+ { 0, 8593, 36, 7, 1, UNI_COMPEX } /* compex=t */,
+ { 5, 5172, 9454, 14, 5, -UNI_EMOD } /* emojimodifier=false */,
+ { 0, 185, 5606, 2, 14, UNI_PHONETICEXTSUP } /* isphoneticextsup */,
+ { 1, 9691, 8979, 4, 6, UNI_INCARIAN } /* blk=carian */,
+ { 0, 8712, 26, 7, 1, UNI_DT__NONE } /* nfkdqc=y */,
+ { 0, 1506, 5839, 5, 10, UNI_GREEKEXT } /* ingreekextended */,
+ { 3, 9979, 7501, 5, 9, UNI_SAUR } /* scx=saurashtra */,
+ { 0, 9237, 0, 4, 0, UNI_YEZI } /* yezi */,
+ { 8, 2242, 7791, 3, 8, UNI_INNEWTAILUE } /* innewtailue */,
+ { 0, 10268, 7611, 3, 1, UNI_NV__5 } /* nv=5 */,
+ { 0, 6362, 0, 5, 0, UNI_KHMR } /* khmer */,
+ { 0, 3406, 10355, 3, 3, UNI_CE } /* ce=yes */,
+ { 6, 4534, 0, 7, 0, UNI_BRAI } /* braille */,
+ { 4, 1990, 4346, 22, 5, UNI_INSC__OTHER } /* indicsyllabiccategory=other */,
+ { 3, 10268, 9619, 3, 4, UNI_NV__3_SLASH_16 } /* nv=3/16 */,
+ { 10, 1418, 8059, 24, 2, UNI_CCC__33 } /* canonicalcombiningclass=33 */,
+ { 25, 3877, 2085, 17, 4, UNI_MODI } /* scriptextensions=modi */,
+ { 0, 3877, 3103, 17, 6, UNI_COPT } /* scriptextensions=coptic */,
+ { 0, 9979, 2493, 4, 20, UNI_HMNP } /* scx=nyiakengpuachuehmong */,
+ { 9, 9979, 10035, 4, 4, UNI_TGLG } /* scx=tglg */,
+ { 21, 9947, 0, 4, 0, UNI_COPT } /* qaac */,
+ { 0, 2012, 9454, 22, 5, -UNI_LOE } /* logicalorderexception=false */,
+ { 0, 3877, 9827, 17, 4, UNI_LANA } /* scriptextensions=lana */,
+ { 21, 34, 0, 3, 0, UNI_EXT } /* ext */,
+ { 1, 9691, 8508, 4, 8, UNI_INVITHKUQI } /* blk=vithkuqi */,
+ { 2, 9439, 10055, 5, 4, UNI_DASH } /* dash=true */,
+ { 4, 10051, 0, 4, 0, UNI_TOTO } /* toto */,
+ { 2, 3877, 9935, 17, 4, UNI_PHNX } /* scriptextensions=phnx */,
+ { 1, 2242, 1936, 3, 10, UNI_NUMBERFORMS } /* innumberforms */,
+ { 8, 5242, 0, 14, 0, UNI_HIGHSURROGATES } /* highsurrogates */,
+ { 0, 7391, 755, 4, 3, UNI_CASED } /* iscased */,
+ { 2, 8782, 9529, 7, 5, UNI_SC__TALE } /* script=taile */,
+ { 0, 9129, 0, 4, 0, UNI_LYCI } /* lyci */,
+ { 0, 8754, 0, 7, 0, UNI_OSMA } /* osmanya */,
+ { 0, 9461, 33, 3, 2, UNI_SB__SE } /* sb=se */,
+ { 2, 3877, 1538, 18, 3, UNI_SIND } /* scriptextensions=sind */,
+ { 0, 185, 6626, 2, 12, UNI_PLAYINGCARDS } /* isplayingcards */,
+ { 17, 10516, 7580, 7, 4, UNI_POSIXWORD } /* isposixword */,
+ { 0, 6730, 0, 11, 0, UNI_CPMN } /* cyprominoan */,
+ { 0, 9550, 26, 4, 1, UNI_IDS } /* ids=y */,
+ { 4, 10011, 0, 4, 0, UNI_TAGS } /* tags */,
+ { 9, 7297, 4107, 3, 15, UNI_HALFANDFULLFORMS } /* ishalfandfullforms */,
+ { 0, 5662, 126, 14, 2, UNI_LB__CR } /* sentencebreak=cr */,
+ { 1, 8973, 1724, 6, 23, UNI_SUPPUNCTUATION } /* block=supplementalpunctuation */,
+ { 0, 2632, 0, 6, 0, UNI_BRAH } /* brahmi */,
+ { 1, 3877, 2312, 18, 6, UNI_SINH } /* scriptextensions=sinhala */,
+ { 2, 8887, 3, 7, 1, -UNI_XPOSIXSPACE } /* wspace=f */,
+ { 0, 10511, 1847, 5, 5, UNI_POSIXLOWER } /* posixlower */,
+ { 1, 10244, 10388, 3, 2, UNI_CASEDLETTER } /* gc=l& */,
+ { 0, 7218, 8277, 3, 7, UNI_INBALINESE } /* inbalinese */,
+ { 16, 9763, 71, 4, 2, UNI_GCB__PP } /* gcb=pp */,
+ { 17, 6083, 9407, 13, 2, UNI_NV__35 } /* numericvalue=35 */,
+ { 1, 9461, 73, 3, 2, UNI_SB__LE } /* sb=le */,
+ { 0, 7360, 21, 10, 2, UNI_LB__IN } /* linebreak=in */,
+ { 0, 2353, 0, 20, 0, UNI_HLUW } /* anatolianhieroglyphs */,
{ 0, 1418, 9325, 25, 4, UNI_CCC__19 } /* canonicalcombiningclass=ccc19 */,
- { 4, 7230, 6134, 10, 12, UNI_BC__AL } /* bidiclass=arabicletter */,
- { 0, 7297, 1656, 3, 5, UNI_HANG } /* ishangul */,
- { 8, 8973, 8492, 6, 7, UNI_UCASEXT } /* block=ucasext */,
- { 0, 2292, 0, 2, 0, UNI_PD } /* pd */,
- { 29, 8782, 8292, 7, 8, UNI_SC__BUGI } /* script=buginese */,
- { 0, 8973, 3707, 6, 11, UNI_ETHIOPICEXT } /* block=ethiopicext */,
- { 9, 6083, 8156, 13, 8, UNI_NV__5_SLASH_8 } /* numericvalue=6.25e-01 */,
- { 2, 1061, 0, 27, 0, UNI_OCR } /* opticalcharacterrecognition */,
- { 2, 9979, 9895, 4, 4, UNI_NKO } /* scx=nkoo */,
- { 11, 7560, 1, 10, 1, -UNI_XPOSIXUPPER } /* uppercase=n */,
- { 10, 6083, 7975, 13, 1, UNI_NV__6 } /* numericvalue=6 */,
- { 4, 1418, 9355, 25, 4, UNI_CCC__25 } /* canonicalcombiningclass=ccc25 */,
- { 2, 1553, 5578, 9, 14, UNI_MN } /* category=nonspacingmark */,
- { 0, 3877, 9237, 17, 6, UNI_YEZI } /* scriptextensions=yezidi */,
- { 1, 1538, 2579, 24, 14, UNI_INPC__BOTTOMANDRIGHT } /* indicpositionalcategory=bottomandright */,
- { 4, 8973, 2936, 6, 19, UNI_SUNDANESESUP } /* block=sundanesesupplement */,
- { 4, 9691, 1595, 4, 14, UNI_MUSIC } /* blk=musicalsymbols */,
- { 2, 3877, 9081, 17, 6, UNI_HATR } /* scriptextensions=hatran */,
- { 42, 9847, 10055, 4, 4, UNI_LOE } /* loe=true */,
- { 0, 9691, 4202, 4, 16, UNI_LINEARBSYLLABARY } /* blk=linearbsyllabary */,
- { 22, 2312, 4731, 4, 13, UNI_INHANGUL } /* inhangulsyllables */,
- { 7, 9469, 469, 3, 10, UNI_INPUNCTUATION } /* inpunctuation */,
- { 1, 5690, 0, 14, 0, UNI_SUPPUNCTUATION } /* suppunctuation */,
- { 3, 1553, 4954, 9, 15, UNI_PS } /* category=openpunctuation */,
- { 1, 1990, 3639, 22, 17, UNI_INSC__CONSONANTPREFIXED } /* indicsyllabiccategory=consonantprefixed */,
- { 16, 9691, 6242, 4, 12, UNI_ETHIOPICEXTB } /* blk=ethiopicextb */,
- { 0, 7580, 5948, 10, 2, UNI_WB__ML } /* wordbreak=ml */,
- { 0, 2012, 26, 22, 1, UNI_LOE } /* logicalorderexception=y */,
- { 16, 9691, 6494, 4, 12, UNI_INMASARAMGONDI } /* blk=masaramgondi */,
- { 0, 7433, 0, 4, 0, UNI_SOGD } /* sogd */,
- { 0, 7370, 9454, 10, 5, -UNI_XPOSIXLOWER } /* lowercase=false */,
- { 1, 9459, 3, 5, 1, -UNI_IDSB } /* idsb=f */,
- { 0, 9979, 8811, 5, 3, UNI_SOYO } /* scx=soyo */,
- { 3, 9476, 2841, 3, 19, UNI_MERO } /* sc=meroitichieroglyphs */,
- { 0, 21, 5927, 2, 13, UNI_LOWSURROGATES } /* inlowsurrogates */,
- { 1, 1418, 8994, 24, 3, UNI_CCC__107 } /* canonicalcombiningclass=107 */,
- { 20, 9647, 10071, 4, 4, UNI_AGE__12_DOT_1 } /* age=v121 */,
- { 1, 9691, 2332, 4, 6, UNI_YIJING } /* blk=yijing */,
- { 3, 8973, 721, 7, 8, UNI_INCUNEIFORM } /* block=cuneiform */,
- { 0, 2242, 1936, 3, 10, UNI_NUMBERFORMS } /* innumberforms */,
- { 0, 3877, 9703, 17, 4, UNI_CAKM } /* scriptextensions=cakm */,
- { 1, 185, 1678, 2, 9, UNI_LATINEXTE } /* islatinexte */,
- { 7, 10247, 4819, 3, 15, UNI_JG__MANICHAEANSADHE } /* jg=manichaeansadhe */,
- { 1, 1088, 10055, 27, 4, UNI_PCM } /* prependedconcatenationmark=true */,
- { 1, 5270, 0, 14, 0, UNI_KANGXI } /* kangxiradicals */,
- { 0, 3283, 36, 18, 1, UNI_IDSB } /* idsbinaryoperator=t */,
- { 16, 9979, 9827, 4, 4, UNI_LANA } /* scx=lana */,
- { 44, 3403, 26, 6, 1, UNI_XPOSIXSPACE } /* space=y */,
- { 3, 4714, 9454, 15, 5, -UNI_GREXT } /* graphemeextend=false */,
- { 8, 8973, 5690, 6, 14, UNI_SUPPUNCTUATION } /* block=suppunctuation */,
- { 0, 185, 8691, 2, 7, UNI_MULT } /* ismultani */,
- { 2, 10217, 2822, 3, 19, UNI_BC__LRO } /* bc=lefttorightoverride */,
- { 3, 8973, 150, 7, 34, UNI_DIACRITICALSSUP } /* block=combiningdiacriticalmarkssupplement */,
- { 3, 6338, 0, 5, 0, UNI_JOINC } /* joinc */,
- { 9, 5536, 17, 15, 1, UNI_COMPEX } /* nfcquickcheck=no */,
- { 3, 4984, 0, 8, 0, UNI_TAMILSUP } /* tamilsup */,
- { 0, 8973, 44, 7, 35, UNI_CJKCOMPATIDEOGRAPHSSUP } /* block=cjkcompatibilityideographssupplement */,
- { 1, 8881, 1008, 3, 26, UNI_ANCIENTGREEKMUSIC } /* isancientgreekmusicalnotation */,
- { 5, 1418, 8028, 24, 2, UNI_CCC__20 } /* canonicalcombiningclass=20 */,
- { 1, 2185, 1026, 21, 2, -UNI_EXTPICT } /* extendedpictographic=no */,
- { 1, 9763, 4401, 4, 9, UNI_WB__EB } /* gcb=emodifier */,
- { 6, 9979, 8500, 4, 8, UNI_UGAR } /* scx=ugaritic */,
- { 0, 1858, 10355, 22, 3, UNI_CWT } /* changeswhentitlecased=yes */,
- { 0, 185, 5270, 2, 6, UNI_KANGXI } /* iskangxi */,
- { 9, 8782, 9895, 7, 4, UNI_SC__NKO } /* script=nkoo */,
- { 1, 1009, 0, 2, 0, UNI_CI } /* ci */,
- { 0, 185, 10390, 2, 2, UNI_CASEDLETTER } /* isl_ */,
- { 12, 7360, 10378, 10, 2, UNI_LB__H2 } /* linebreak=h2 */,
- { 1, 8973, 2248, 6, 21, UNI_ININSCRIPTIONALPARTHIAN } /* block=inscriptionalparthian */,
- { 9, 9711, 8099, 4, 2, UNI_CCC__14 } /* ccc=14 */,
- { 0, 6083, 8943, 13, 6, UNI_NV__800000 } /* numericvalue=800000 */,
- { 2, 9979, 4186, 4, 7, UNI_LINB } /* scx=linearb */,
- { 8, 8973, 6183, 7, 11, UNI_CHESSSYMBOLS } /* block=chesssymbols */,
- { 0, 10516, 7451, 3, 9, UNI_PHNX } /* isphoenician */,
- { 0, 7467, 10340, 3, 3, UNI_IN__8 } /* in=v80 */,
- { 0, 7360, 3409, 10, 17, UNI_RI } /* linebreak=regionalindicator */,
- { 10, 9691, 1587, 5, 13, UNI_BYZANTINEMUSIC } /* blk=byzantinemusic */,
- { 1, 9476, 9947, 3, 4, UNI_SC__COPT } /* sc=qaac */,
- { 10, 9461, 4346, 3, 5, UNI_SB__XX } /* sb=other */,
- { 2, 9979, 8684, 4, 7, UNI_MARC } /* scx=marchen */,
- { 0, 10268, 10153, 3, 2, UNI_NV__42 } /* nv=42 */,
- { 3, 5875, 5704, 13, 14, UNI_JG__HAMZAONHEHGOAL } /* joininggroup=tehmarbutagoal */,
- { 8, 3121, 2593, 18, 4, UNI_DT__VERT } /* decompositiontype=vert */,
- { 56, 780, 0, 30, 0, UNI_SYMBOLSANDPICTOGRAPHSEXTA } /* symbolsandpictographsextendeda */,
- { 3, 10253, 6708, 3, 11, UNI_LB__BB } /* lb=breakbefore */,
- { 5, 8973, 7281, 7, 9, UNI_COMPATJAMO } /* block=compatjamo */,
- { 8, 9461, 867, 3, 2, UNI_SB__SP } /* sb=sp */,
- { 1, 3877, 7835, 17, 9, UNI_OUGR } /* scriptextensions=olduyghur */,
- { 6, 8881, 3572, 3, 9, UNI_ALCHEMICAL } /* isalchemical */,
- { 9, 3877, 7655, 17, 9, UNI_BHKS } /* scriptextensions=bhaiksuki */,
- { 1, 7560, 1026, 10, 2, -UNI_XPOSIXUPPER } /* uppercase=no */,
- { 0, 6617, 210, 4, 2, UNI_TOTO } /* istoto */,
- { 10, 10268, 8084, 3, 8, UNI_NV__3_SLASH_80 } /* nv=3.75e-02 */,
- { 3, 185, 6057, 2, 13, UNI_MISCTECHNICAL } /* ismisctechnical */,
- { 0, 9476, 9931, 3, 4, UNI_SC__PHLP } /* sc=phlp */,
- { 3, 1514, 0, 24, 0, UNI_HIGHPUSURROGATES } /* highprivateusesurrogates */,
- { 0, 6350, 6, 12, 1, UNI_JT__D } /* joiningtype=d */,
- { 6, 8973, 3355, 6, 18, UNI_ORNAMENTALDINGBATS } /* block=ornamentaldingbats */,
- { 16, 1538, 2573, 24, 12, UNI_INPC__TOPANDBOTTOM } /* indicpositionalcategory=topandbottom */,
- { 0, 9691, 9081, 4, 6, UNI_INHATRAN } /* blk=hatran */,
- { 0, 10247, 9274, 3, 5, UNI_JG__ALAPH } /* jg=alaph */,
- { 14, 4598, 4092, 4, 14, UNI_GEORGIANEXT } /* ingeorgianextended */,
- { 1, 9476, 7071, 3, 11, UNI_SORA } /* sc=sorasompeng */,
- { 3, 9269, 26, 5, 1, UNI_POSIXXDIGIT } /* ahex=y */,
- { 39, 8973, 4864, 6, 15, UNI_MISCPICTOGRAPHS } /* block=miscpictographs */,
- { 1, 4074, 133, 16, 2, UNI_LM } /* generalcategory=lm */,
- { 24, 10510, 1891, 6, 5, UNI_XPOSIXUPPER } /* xposixupper */,
- { 0, 2248, 318, 3, 32, UNI_SUPMATHOPERATORS } /* insupplementalmathematicaloperators */,
- { 7, 9711, 7619, 4, 9, UNI_CCC__AL } /* ccc=aboveleft */,
- { 1, 8854, 2333, 3, 5, UNI_YIJING } /* inyijing */,
- { 0, 1792, 1026, 22, 2, -UNI_CWCF } /* changeswhencasefolded=no */,
- { 0, 7580, 1195, 10, 2, UNI_LB__LF } /* wordbreak=lf */,
- { 1, 8782, 9811, 7, 4, UNI_KHMR } /* script=khmr */,
- { 0, 9691, 2122, 4, 21, UNI_CJKCOMPATFORMS } /* blk=cjkcompatibilityforms */,
- { 1, 6083, 9249, 13, 5, UNI_NV__1_SLASH_160 } /* numericvalue=1/160 */,
- { 0, 4074, 4058, 16, 16, UNI_PF } /* generalcategory=finalpunctuation */,
- { 0, 185, 1045, 2, 6, UNI_L } /* isletter */,
- { 3, 3877, 9919, 17, 4, UNI_OSGE } /* scriptextensions=osge */,
- { 9, 9979, 7420, 4, 10, UNI_XPEO } /* scx=oldpersian */,
- { 2, 9189, 0, 7, 0, UNI_STERM } /* sterm=t */,
- { 0, 8782, 2841, 7, 19, UNI_MERO } /* script=meroitichieroglyphs */,
- { 1, 10271, 0, 3, 0, UNI_OCR } /* ocr */,
- { 0, 9476, 9534, 3, 4, UNI_SC__TAKR } /* sc=takr */,
- { 0, 10232, 1, 3, 1, UNI_EA__N } /* ea=n */,
- { 0, 6340, 4616, 9, 8, UNI_CONTROLPICTURES } /* incontrolpictures */,
- { 0, 8961, 0, 6, 0, UNI_bidic_values_index } /* bidic= */,
- { 1, 5045, 1369, 3, 3, UNI_UGAR } /* isugar */,
- { 1, 185, 9963, 2, 4, UNI_ROHG } /* isrohg */,
- { 0, 10560, 3403, 6, 5, UNI_VERTSPACE } /* isvertspace */,
- { 0, 8782, 7844, 7, 4, UNI_PALM } /* script=palm */,
- { 0, 7360, 867, 10, 2, UNI_LB__SP } /* linebreak=sp */,
- { 0, 8565, 0, 7, 0, UNI_CJKEXTD } /* cjkextd */,
- { 0, 4744, 1285, 15, 9, UNI_IDENTIFIERTYPE__EXCLUSION } /* identifiertype=exclusion */,
- { 32, 6314, 3, 12, 1, -UNI_IDEO } /* ideographic=f */,
- { 6, 4972, 8867, 3, 6, UNI_TIRH } /* istirhuta */,
- { 0, 3157, 3, 18, 1, -UNI_EBASE } /* emojimodifierbase=f */,
- { 2, 8973, 9201, 6, 6, UNI_INTELUGU } /* block=telugu */,
- { 6, 10268, 9013, 3, 2, UNI_NV__29 } /* nv=29 */,
- { 0, 8973, 4410, 6, 6, UNI_INSYRIAC } /* block=syriac */,
- { 0, 3877, 9509, 17, 5, UNI_OGAM } /* scriptextensions=ogham */,
- { 8, 9799, 0, 4, 0, UNI_HMNP } /* hmnp */,
- { 0, 6083, 10368, 13, 2, UNI_NV__47 } /* numericvalue=47 */,
- { 0, 8782, 8677, 7, 7, UNI_SC__MAND } /* script=mandaic */,
- { 3, 6675, 1, 11, 1, -UNI_IDC } /* idcontinue=n */,
- { 4, 9476, 9504, 3, 5, UNI_NSHU } /* sc=nushu */,
- { 34, 9270, 3, 4, 1, -UNI_XPOSIXXDIGIT } /* hex=f */,
- { 4, 4714, 26, 15, 1, UNI_GREXT } /* graphemeextend=y */,
- { 1, 185, 1946, 2, 22, UNI_DIACRITICALSFORSYMBOLS } /* isdiacriticalsforsymbols */,
- { 0, 10244, 1218, 3, 2, UNI_SK } /* gc=sk */,
- { 6, 3945, 10055, 17, 4, UNI_UIDEO } /* unifiedideograph=true */,
- { 0, 7560, 10055, 10, 4, UNI_XPOSIXUPPER } /* uppercase=true */,
- { 0, 9979, 9509, 4, 5, UNI_OGAM } /* scx=ogham */,
- { 0, 10111, 0, 4, 0, UNI_ZANB } /* zanb */,
- { 0, 9469, 6615, 3, 11, UNI_PHAISTOS } /* inphaistosdisc */,
- { 0, 9691, 2689, 4, 11, UNI_COUNTINGROD } /* blk=countingrod */,
- { 0, 9979, 1924, 4, 6, UNI_ZYYY } /* scx=common */,
- { 0, 10346, 18, 3, 1, UNI_VO__R } /* vo=r */,
- { 0, 10280, 3, 3, 1, -UNI_RI } /* ri=f */,
- { 1, 1418, 9016, 25, 4, UNI_CCC__13 } /* canonicalcombiningclass=ccc13 */,
- { 1, 3877, 4849, 17, 15, UNI_MERC } /* scriptextensions=meroiticcursive */,
- { 3, 9077, 1, 4, 1, -UNI_EXT } /* ext=n */,
- { 0, 9647, 10202, 4, 3, UNI_AGE__6_DOT_3 } /* age=6.3 */,
- { 0, 7907, 36, 9, 1, UNI_XIDS } /* xidstart=t */,
- { 0, 1553, 46, 9, 2, UNI_CO } /* category=co */,
- { 2, 8973, 4534, 6, 7, UNI_BRAI } /* block=braille */,
+ { 1, 5823, 1026, 13, 2, -UNI_GRBASE } /* graphemebase=no */,
+ { 1, 10217, 1354, 3, 3, UNI_BC__RLE } /* bc=rle */,
+ { 1, 9691, 909, 4, 10, UNI_PUA } /* blk=privateuse */,
+ { 0, 8973, 1678, 6, 9, UNI_LATINEXTE } /* block=latinexte */,
+ { 43, 8705, 0, 7, 0, UNI_nfkcqc_values_index } /* nfkcqc= */,
+ { 26, 9476, 4042, 3, 7, UNI_SC__CPRT } /* sc=cypriot */,
+ { 7, 5116, 1, 14, 1, -UNI_CI } /* caseignorable=n */,
+ { 13, 9691, 7390, 4, 10, UNI_MISCARROWS } /* blk=miscarrows */,
+ { 24, 21, 2354, 3, 19, UNI_INANATOLIANHIEROGLYPHS } /* inanatolianhieroglyphs */,
+ { 0, 7460, 7951, 10, 1, UNI_IN__3 } /* presentin=3 */,
+ { 4, 3826, 0, 4, 0, UNI_MANI } /* mani */,
+ { 9, 7580, 1846, 10, 2, UNI_WB__NL } /* wordbreak=nl */,
+ { 16, 7682, 0, 9, 0, UNI_ext_values_index } /* extender= */,
+ { 0, 8782, 8670, 7, 4, UNI_MAKA } /* script=maka */,
+ { 17, 7580, 74, 10, 2, UNI_WB__EB } /* wordbreak=em */,
+ { 6, 9474, 2393, 5, 20, UNI_INSC__CONSONANTPLACEHOLDER } /* insc=consonantplaceholder */,
+ { 0, 3157, 0, 5, 0, UNI_EMOJI } /* emoji */,
+ { 9, 8782, 8537, 7, 4, UNI_SC__BENG } /* script=beng */,
+ { 1, 1418, 6851, 24, 11, UNI_CCC__8 } /* canonicalcombiningclass=kanavoicing */,
+ { 5, 9651, 0, 4, 0, UNI_AGHB } /* aghb */,
+ { 0, 5758, 0, 5, 0, UNI_BIDIM } /* bidim */,
+ { 33, 9691, 415, 4, 32, UNI_INIDC } /* blk=ideographicdescriptioncharacters */,
+ { 0, 9691, 2955, 4, 19, UNI_SUPARROWSA } /* blk=supplementalarrowsa */,
+ { 13, 6158, 0, 11, 0, UNI_BIDIC } /* bidicontrol */,
+ { 1, 2312, 1515, 3, 23, UNI_HIGHPUSURROGATES } /* inhighprivateusesurrogates */,
+ { 0, 4074, 1934, 16, 2, UNI_CN } /* generalcategory=cn */,
+ { 5, 10244, 25, 3, 1, UNI_S } /* gc=s */,
+ { 3, 3877, 9755, 17, 4, UNI_DSRT } /* scriptextensions=dsrt */,
+ { 1, 8973, 8670, 6, 7, UNI_INMAKASAR } /* block=makasar */,
+ { 0, 9807, 0, 4, 0, UNI_KALI } /* kali */,
+ { 0, 9469, 5635, 3, 13, UNI_INPSALTERPAHLAVI } /* inpsalterpahlavi */,
+ { 0, 7218, 1220, 3, 4, UNI_INBATAK } /* inbatak */,
+ { 2, 868, 0, 18, 0, UNI_PHONETICEXT } /* phoneticextensions */,
+ { 1, 9871, 0, 3, 0, UNI_MRO } /* mro */,
+ { 1, 3877, 1924, 17, 6, UNI_ZYYY } /* scriptextensions=common */,
+ { 0, 9691, 5256, 4, 14, UNI_KANASUP } /* blk=kanasupplement */,
+ { 56, 3877, 10015, 17, 4, UNI_TALE } /* scriptextensions=tale */,
+ { 0, 185, 6939, 2, 11, UNI_MISCSYMBOLS } /* ismiscsymbols */,
+ { 0, 3283, 26, 18, 1, UNI_IDSB } /* idsbinaryoperator=y */,
+ { 1, 9476, 8684, 3, 4, UNI_MARC } /* sc=marc */,
+ { 4, 9476, 7433, 3, 4, UNI_SC__SOGD } /* sc=sogd */,
+ { 18, 8973, 10051, 6, 4, UNI_INTOTO } /* block=toto */,
+ { 5, 5662, 10394, 14, 2, UNI_SB__XX } /* sentencebreak=xx */,
+ { 0, 4744, 0, 15, 0, UNI_identifiertype_values_index } /* identifiertype= */,
+ { 0, 10247, 6018, 3, 13, UNI_JG__MANICHAEANTEN } /* jg=manichaeanten */,
+ { 24, 5088, 10055, 14, 4, UNI_POSIXXDIGIT } /* asciihexdigit=true */,
+ { 3, 8973, 7844, 6, 9, UNI_PALM } /* block=palmyrene */,
+ { 0, 1836, 3, 22, 1, -UNI_CWL } /* changeswhenlowercased=f */,
+ { 2, 8973, 3657, 7, 16, UNI_CYRILLICEXTA } /* block=cyrillicextendeda */,
+ { 2, 9147, 10355, 6, 3, UNI__PERL_NCHAR } /* nchar=yes */,
+ { 2, 8782, 10039, 7, 4, UNI_THAI } /* script=thai */,
+ { 2, 9691, 6057, 4, 13, UNI_MISCTECHNICAL } /* blk=misctechnical */,
+ { 1, 9691, 3792, 4, 17, UNI_INKHITANSMALLSCRIPT } /* blk=khitansmallscript */,
+ { 0, 10516, 97, 7, 5, UNI_POSIXALPHA } /* isposixalpha */,
+ { 0, 9171, 1026, 6, 2, -UNI__PERL_PATWS } /* patws=no */,
+ { 0, 4401, 0, 4, 0, UNI_EMOD } /* emod */,
+ { 2, 10253, 496, 3, 7, UNI_LB__NU } /* lb=numeric */,
+ { 0, 10244, 7005, 3, 11, UNI_SO } /* gc=othersymbol */,
+ { 11, 6083, 8220, 13, 8, UNI_NV__5_SLASH_6 } /* numericvalue=8.33e-01 */,
+ { 0, 6529, 8741, 3, 6, UNI_OLCK } /* inolchiki */,
+ { 1, 7560, 0, 10, 0, UNI_upper_values_index } /* uppercase= */,
+ { 5, 9691, 1370, 4, 24, UNI_ARABICPFA } /* blk=arabicpresentationformsa */,
+ { 4, 10253, 84, 3, 2, UNI_LB__CM } /* lb=cm */,
+ { 2, 10553, 10000, 3, 3, UNI_SHRD } /* isshrd */,
+ { 4, 10217, 2292, 3, 3, UNI_BC__PDI } /* bc=pdi */,
+ { 1, 9474, 3085, 5, 18, UNI_INSC__CONSONANTSUBJOINED } /* insc=consonantsubjoined */,
+ { 2, 1990, 9225, 22, 6, UNI_INSC__VIRAMA } /* indicsyllabiccategory=virama */,
+ { 0, 7297, 2228, 3, 13, UNI_ROHG } /* ishanifirohingya */,
+ { 0, 9647, 10343, 4, 3, UNI_AGE__9 } /* age=v90 */,
+ { 6, 10547, 7580, 6, 4, UNI_POSIXWORD } /* isperlword */,
+ { 0, 9476, 9723, 3, 4, UNI_SC__CPRT } /* sc=cprt */,
+ { 2, 185, 729, 2, 6, UNI_N } /* isnumber */,
+ { 5, 1792, 10055, 22, 4, UNI_CWCF } /* changeswhencasefolded=true */,
+ { 1, 10244, 468, 3, 5, UNI_P } /* gc=punct */,
+ { 1, 10229, 46, 3, 6, UNI_DT__COM } /* dt=compat */,
+ { 3, 185, 6494, 2, 12, UNI_GONM } /* ismasaramgondi */,
+ { 1, 9476, 3794, 5, 15, UNI_KITS } /* sc=khitansmallscript */,
+ { 0, 10244, 4774, 3, 15, UNI_LOWERCASELETTER } /* gc=lowercaseletter */,
+ { 1, 1190, 5797, 3, 7, UNI_XPOSIXDIGIT } /* nt=decimal */,
+ { 0, 9691, 8277, 5, 7, UNI_INBALINESE } /* blk=balinese */,
+ { 0, 10547, 3403, 6, 5, UNI_POSIXSPACE } /* isperlspace */,
+ { 2, 8782, 3265, 7, 4, UNI_SC__GEOR } /* script=geor */,
+ { 6, 1553, 342, 9, 2, UNI_PE } /* category=pe */,
+ { 3, 7907, 10055, 9, 4, UNI_XIDS } /* xidstart=true */,
+ { 0, 9171, 10055, 6, 4, UNI__PERL_PATWS } /* patws=true */,
{ 0, 9927, 1, 4, 1, -UNI_PCM } /* pcm=n */,
- { 0, 2242, 9896, 3, 2, UNI_INNKO } /* innko */,
- { 0, 4074, 75, 16, 2, UNI_ME } /* generalcategory=me */,
- { 0, 8973, 4138, 6, 16, UNI_HIGHPUSURROGATES } /* block=highpusurrogates */,
- { 0, 7467, 7995, 3, 2, UNI_IN__12 } /* in=12 */,
- { 0, 8476, 0, 8, 0, UNI_TFNG } /* tifinagh */,
- { 0, 10268, 8907, 3, 5, UNI_NV__30000 } /* nv=30000 */,
- { 1, 8768, 0, 6, 0, UNI_PATSYN } /* patsyn */,
- { 1, 3877, 2937, 18, 8, UNI_SUND } /* scriptextensions=sundanese */,
- { 0, 8973, 5940, 6, 9, UNI_INMALAYALAM } /* block=malayalam */,
- { 6, 5758, 10055, 13, 4, UNI_BIDIM } /* bidimirrored=true */,
- { 0, 9747, 0, 4, 0, UNI_dia_values_index } /* dia= */,
- { 4, 9711, 4175, 4, 1, UNI_CCC__1 } /* ccc=1 */,
- { 0, 8782, 3622, 7, 17, UNI_AGHB } /* script=caucasianalbanian */,
- { 0, 9711, 8988, 4, 3, UNI_CCC__103 } /* ccc=103 */,
- { 15, 9476, 9919, 3, 4, UNI_OSGE } /* sc=osge */,
- { 0, 8973, 2165, 7, 7, UNI_INCYRILLIC } /* block=cyrillic */,
- { 8, 4074, 6719, 16, 11, UNI_CASEDLETTER } /* generalcategory=casedletter */,
- { 0, 3877, 9504, 17, 5, UNI_NSHU } /* scriptextensions=nushu */,
- { 2, 9476, 9903, 3, 4, UNI_OGAM } /* sc=ogam */,
- { 1, 2808, 4491, 4, 13, UNI_ARABICEXTB } /* inarabicextendedb */,
- { 35, 9474, 9289, 5, 5, UNI_INSC__BINDU } /* insc=bindu */,
- { 0, 9691, 3049, 4, 8, UNI_INCHEROKEE } /* blk=cherokee */,
- { 0, 5116, 1, 14, 1, -UNI_CI } /* caseignorable=n */,
- { 37, 5875, 5508, 13, 14, UNI_JG__MANICHAEANYODH } /* joininggroup=manichaeanyodh */,
- { 0, 9691, 3319, 4, 18, UNI_LATINEXTADDITIONAL } /* blk=latinextadditional */,
- { 16, 1088, 0, 26, 0, UNI_PCM } /* prependedconcatenationmark */,
- { 1, 10352, 8516, 3, 7, UNI_WB__LE } /* wb=aletter */,
- { 0, 3792, 0, 17, 0, UNI_KITS } /* khitansmallscript */,
- { 3, 185, 3247, 2, 18, UNI_INPUNCTUATION } /* isgeneralpunctuation */,
- { 0, 6314, 36, 12, 1, UNI_IDEO } /* ideographic=t */,
- { 2, 3877, 6518, 17, 4, UNI_MEND } /* scriptextensions=mend */,
- { 0, 185, 1275, 3, 19, UNI_CE } /* iscompositionexclusion */,
- { 1, 9647, 10295, 4, 3, UNI_AGE__2 } /* age=v20 */,
- { 16, 8782, 9715, 7, 4, UNI_CHRS } /* script=chrs */,
- { 0, 9979, 7330, 4, 10, UNI_KHAR } /* scx=kharoshthi */,
- { 8, 8881, 7192, 4, 8, UNI_ARABICEXTA } /* isarabicexta */,
- { 0, 9476, 8508, 3, 4, UNI_VITH } /* sc=vith */,
- { 3, 3877, 9069, 17, 4, UNI_GOTH } /* scriptextensions=goth */,
- { 7, 185, 284, 2, 33, UNI_MISCMATHSYMBOLSB } /* ismiscellaneousmathematicalsymbolsb */,
- { 1, 6083, 9259, 13, 5, UNI_NV__11_SLASH_12 } /* numericvalue=11/12 */,
- { 16, 1792, 9454, 22, 5, -UNI_CWCF } /* changeswhencasefolded=false */,
- { 0, 5408, 8680, 5, 4, UNI_INMANDAIC } /* inmandaic */,
- { 2, 9691, 9871, 4, 3, UNI_INMRO } /* blk=mro */,
- { 10, 185, 691, 3, 29, UNI_CJKEXTG } /* iscjkunifiedideographsextensiong */,
- { 26, 1632, 0, 15, 0, UNI_GEOMETRICSHAPES } /* geometricshapes */,
- { 0, 1852, 1026, 6, 2, -UNI_CASED } /* cased=no */,
- { 48, 8782, 7655, 7, 9, UNI_BHKS } /* script=bhaiksuki */,
- { 1, 1418, 8147, 24, 2, UNI_CCC__16 } /* canonicalcombiningclass=16 */,
- { 75, 9691, 8607, 4, 7, UNI_INELBASAN } /* blk=elbasan */,
- { 5, 8388, 0, 4, 0, UNI_JAVA } /* java */,
- { 10, 9449, 10355, 5, 3, UNI_EMOD } /* emod=yes */,
- { 3, 185, 6338, 2, 5, UNI_JOINC } /* isjoinc */,
- { 3, 10217, 2513, 3, 20, UNI_BC__PDF } /* bc=popdirectionalformat */,
- { 0, 9691, 1034, 4, 27, UNI_ENCLOSEDCJK } /* blk=enclosedcjklettersandmonths */,
- { 1, 9550, 3, 4, 1, -UNI_IDS } /* ids=f */,
- { 0, 8973, 2332, 6, 6, UNI_YIJING } /* block=yijing */,
- { 60, 9474, 7470, 5, 10, UNI_INSC__PUREKILLER } /* insc=purekiller */,
- { 0, 9691, 8719, 4, 7, UNI_NB } /* blk=noblock */,
- { 0, 3877, 7420, 17, 10, UNI_XPEO } /* scriptextensions=oldpersian */,
- { 0, 9691, 1747, 4, 13, UNI_ZNAMENNYMUSIC } /* blk=znamennymusic */,
- { 1, 3945, 3, 17, 1, -UNI_UIDEO } /* unifiedideograph=f */,
- { 4, 9647, 9599, 4, 4, UNI_AGE__13 } /* age=13.0 */,
- { 5, 10253, 6287, 3, 2, UNI_LB__ZW } /* lb=zw */,
- { 7, 185, 1586, 2, 14, UNI_BYZANTINEMUSIC } /* isbyzantinemusic */,
- { 1, 10244, 10398, 3, 2, UNI_ZP } /* gc=zp */,
- { 0, 10244, 1934, 3, 2, UNI_CN } /* gc=cn */,
- { 12, 9711, 6554, 4, 12, UNI_CCC__0 } /* ccc=notreordered */,
- { 4, 9474, 1609, 5, 23, UNI_INSC__CONSONANTPRECEDINGREPHA } /* insc=consonantprecedingrepha */,
- { 0, 5862, 0, 6, 0, UNI_IPAEXT } /* ipaext */,
- { 0, 9979, 8356, 4, 8, UNI_HIRA } /* scx=hiragana */,
- { 1, 8782, 9919, 7, 4, UNI_OSGE } /* script=osge */,
- { 1, 8973, 8789, 6, 7, UNI_SC__SHRD } /* block=sharada */,
- { 8, 10268, 9259, 3, 5, UNI_NV__11_SLASH_12 } /* nv=11/12 */,
- { 0, 1088, 9454, 27, 5, -UNI_PCM } /* prependedconcatenationmark=false */,
- { 0, 8621, 0, 7, 0, UNI_GRAN } /* grantha */,
- { 16, 10349, 10055, 3, 4, UNI_VS } /* vs=true */,
- { 2, 6083, 8943, 13, 4, UNI_NV__8000 } /* numericvalue=8000 */,
- { 0, 10268, 10362, 3, 2, UNI_NV__44 } /* nv=44 */,
- { 10, 1852, 36, 6, 1, UNI_CASED } /* cased=t */,
- { 0, 9691, 8500, 4, 8, UNI_INUGARITIC } /* blk=ugaritic */,
- { 0, 9691, 4442, 4, 16, UNI_TANGUTSUP } /* blk=tangutsupplement */,
- { 1, 5875, 8460, 13, 8, UNI_JG__SWASHKAF } /* joininggroup=swashkaf */,
- { 18, 3877, 1538, 18, 3, UNI_SIND } /* scriptextensions=sind */,
- { 2, 3877, 9871, 17, 3, UNI_MRO } /* scriptextensions=mro */,
- { 0, 10352, 74, 3, 2, UNI_WB__EB } /* wb=em */,
- { 0, 2269, 0, 11, 0, UNI_MTEI } /* meeteimayek */,
- { 4, 9979, 7430, 4, 10, UNI_SOGO } /* scx=oldsogdian */,
- { 10, 10268, 8903, 3, 4, UNI_NV__6000 } /* nv=6000 */,
- { 34, 2304, 4926, 4, 13, UNI_NARB } /* isoldnortharabian */,
- { 4, 7682, 0, 9, 0, UNI_ext_values_index } /* extender= */,
- { 2, 6340, 3050, 3, 10, UNI_CHEROKEESUP } /* incherokeesup */,
- { 0, 6340, 8580, 3, 6, UNI_CJKEXTF } /* incjkextf */,
- { 0, 6083, 5732, 13, 13, UNI_NV__1000000000000 } /* numericvalue=1000000000000 */,
- { 0, 9691, 7390, 4, 10, UNI_MISCARROWS } /* blk=miscarrows */,
- { 8, 1592, 6231, 3, 11, UNI_ETHIOPICEXTA } /* inethiopicexta */,
- { 9, 7230, 2473, 10, 11, UNI_BC__L } /* bidiclass=lefttoright */,
- { 0, 1189, 9530, 3, 4, UNI_INTAILE } /* intaile */,
- { 33, 185, 63, 2, 5, UNI_XPOSIXGRAPH } /* isgraph */,
- { 40, 8973, 4314, 6, 16, UNI_MYANMAREXTA } /* block=myanmarextendeda */,
- { 1, 8973, 9135, 6, 6, UNI_INLYDIAN } /* block=lydian */,
- { 29, 10217, 2533, 3, 11, UNI_BC__R } /* bc=righttoleft */,
- { 4, 9177, 36, 6, 1, UNI_QMARK } /* qmark=t */,
- { 0, 8782, 1014, 7, 5, UNI_SC__GREK } /* script=greek */,
- { 0, 8782, 9875, 7, 4, UNI_MTEI } /* script=mtei */,
- { 8, 9711, 3039, 4, 5, UNI_CCC__A } /* ccc=above */,
- { 4, 9979, 9237, 4, 6, UNI_YEZI } /* scx=yezidi */,
- { 1, 3877, 9867, 17, 4, UNI_MLYM } /* scriptextensions=mlym */,
- { 0, 10268, 7980, 3, 8, UNI_NV__1_SLASH_6 } /* nv=1.67e-01 */,
- { 3, 3877, 4939, 17, 15, UNI_SARB } /* scriptextensions=oldsoutharabian */,
- { 58, 10244, 2085, 3, 14, UNI_LM } /* gc=modifierletter */,
- { 43, 5227, 0, 4, 0, UNI_CHAM } /* cham */,
- { 10, 8973, 317, 6, 33, UNI_SUPMATHOPERATORS } /* block=supplementalmathematicaloperators */,
- { 27, 10253, 10382, 3, 2, UNI_GCB__L } /* lb=jl */,
- { 1, 10283, 0, 3, 0, UNI_sd_values_index } /* sd= */,
+ { 0, 952, 0, 18, 0, UNI_INVS } /* variationselectors */,
+ { 1, 7460, 8092, 10, 3, UNI_IN__4 } /* presentin=4.0 */,
+ { 0, 10247, 7187, 3, 3, UNI_JG__QAF } /* jg=qaf */,
+ { 6, 9711, 8920, 4, 2, UNI_CCC__32 } /* ccc=32 */,
+ { 0, 9691, 1019, 4, 5, UNI_MUSIC } /* blk=music */,
+ { 0, 7297, 2747, 3, 9, UNI_JAMO } /* ishanguljamo */,
+ { 8, 9647, 7934, 4, 1, UNI_AGE__2 } /* age=2 */,
+ { 75, 8973, 2493, 6, 20, UNI_INNYIAKENGPUACHUEHMONG } /* block=nyiakengpuachuehmong */,
+ { 0, 9763, 1195, 4, 2, UNI_LB__LF } /* gcb=lf */,
+ { 8, 10268, 8937, 3, 6, UNI_NV__700000 } /* nv=700000 */,
+ { 0, 5592, 10055, 14, 4, UNI_PATSYN } /* patternsyntax=true */,
+ { 4, 10253, 5382, 3, 14, UNI_LB__BK } /* lb=mandatorybreak */,
+ { 1, 4909, 1026, 15, 2, UNI_NFKDQC__N } /* nfkdquickcheck=no */,
+ { 1, 3877, 9819, 17, 4, UNI_KNDA } /* scriptextensions=knda */,
+ { 1, 4847, 2271, 4, 12, UNI_MEETEIMAYEKEXT } /* inmeeteimayekext */,
+ { 4, 1934, 0, 2, 0, UNI_CN } /* cn */,
+ { 0, 8782, 9707, 7, 4, UNI_CANS } /* script=cans */,
+ { 1, 5606, 0, 14, 0, UNI_PHONETICEXTSUP } /* phoneticextsup */,
+ { 2, 2248, 7434, 3, 6, UNI_INSOGDIAN } /* insogdian */,
+ { 0, 185, 1026, 2, 2, UNI_NO } /* isno */,
+ { 4, 4744, 8436, 15, 8, UNI_IDENTIFIERTYPE__OBSOLETE } /* identifiertype=obsolete */,
+ { 3, 8782, 9117, 7, 6, UNI_LEPC } /* script=lepcha */,
+ { 1, 5745, 0, 13, 0, UNI_AEGEANNUMBERS } /* aegeannumbers */,
+ { 0, 1553, 7, 9, 1, UNI_C } /* category=c */,
+ { 10, 10516, 3403, 7, 5, UNI_POSIXSPACE } /* isposixspace */,
+ { 14, 3877, 10051, 17, 4, UNI_TOTO } /* scriptextensions=toto */,
+ { 0, 4847, 2880, 3, 18, UNI_MONGOLIANSUP } /* inmongoliansupplement */,
+ { 0, 5875, 9855, 13, 4, UNI_JG__MEEM } /* joininggroup=meem */,
+ { 52, 4847, 1020, 3, 4, UNI_MUSIC } /* inmusic */,
+ { 0, 5875, 5704, 13, 10, UNI_JG__TEHMARBUTA } /* joininggroup=tehmarbuta */,
+ { 1, 9979, 8831, 4, 7, UNI_TGLG } /* scx=tagalog */,
+ { 1, 6083, 5732, 13, 2, UNI_NV__10 } /* numericvalue=10 */,
+ { 22, 9270, 36, 4, 1, UNI_XPOSIXXDIGIT } /* hex=t */,
+ { 36, 7360, 10250, 10, 2, UNI_GCB__T } /* linebreak=jt */,
+ { 0, 3877, 3193, 17, 8, UNI_ETHI } /* scriptextensions=ethiopic */,
+ { 0, 10035, 0, 4, 0, UNI_TGLG } /* tglg */,
+ { 3, 3877, 3978, 17, 4, UNI_BOPO } /* scriptextensions=bopo */,
+ { 2, 8973, 8292, 6, 8, UNI_INBUGINESE } /* block=buginese */,
+ { 0, 9927, 10055, 4, 4, UNI_PCM } /* pcm=true */,
+ { 2, 8973, 1925, 7, 21, UNI_INDICNUMBERFORMS } /* block=commonindicnumberforms */,
+ { 2, 10268, 8180, 3, 8, UNI_NV__13_SLASH_2 } /* nv=6.50e+00 */,
+ { 0, 3121, 9759, 18, 4, UNI_DT__FONT } /* decompositiontype=font */,
+ { 0, 6057, 0, 13, 0, UNI_MISCTECHNICAL } /* misctechnical */,
+ { 13, 494, 0, 3, 0, UNI_HAN } /* han */,
+ { 22, 8973, 4442, 6, 16, UNI_TANGUTSUP } /* block=tangutsupplement */,
+ { 0, 3877, 7434, 18, 6, UNI_SOGD } /* scriptextensions=sogdian */,
+ { 15, 8881, 2354, 3, 19, UNI_HLUW } /* isanatolianhieroglyphs */,
+ { 3, 6083, 10370, 13, 2, UNI_NV__48 } /* numericvalue=48 */,
+ { 2, 8782, 3978, 7, 4, UNI_SC__BOPO } /* script=bopo */,
+ { 6, 9691, 7540, 4, 10, UNI_SUPARROWSC } /* blk=suparrowsc */,
+ { 5, 8572, 0, 7, 0, UNI_CJKEXTE } /* cjkexte */,
+ { 0, 6578, 11, 12, 2, UNI_NT__DI } /* numerictype=di */,
+ { 0, 10047, 0, 4, 0, UNI_TNSA } /* tnsa */,
+ { 2, 8973, 1701, 6, 23, UNI_SHORTHANDFORMATCONTROLS } /* block=shorthandformatcontrols */,
+ { 2, 9803, 912, 4, 1, UNI_GCB__V } /* hst=v */,
+ { 3, 3175, 36, 18, 1, UNI_EPRES } /* emojipresentation=t */,
+ { 1, 185, 1632, 2, 18, UNI_GEOMETRICSHAPESEXT } /* isgeometricshapesext */,
+ { 0, 9691, 7260, 4, 10, UNI_INCHORASMIAN } /* blk=chorasmian */,
+ { 1, 7908, 0, 7, 0, UNI_IDS } /* idstart */,
+ { 0, 10244, 133, 3, 2, UNI_LM } /* gc=lm */,
+ { 11, 6340, 2165, 3, 17, UNI_CYRILLICSUP } /* incyrillicsupplement */,
+ { 0, 3894, 10355, 17, 3, UNI_STERM } /* sentenceterminal=yes */,
+ { 0, 9476, 10103, 3, 4, UNI_SC__YI } /* sc=yiii */,
+ { 1, 2304, 7006, 3, 10, UNI_SO } /* isothersymbol */,
+ { 8, 10268, 8196, 3, 8, UNI_NV__15_SLASH_2 } /* nv=7.50e+00 */,
+ { 8, 185, 8552, 3, 6, UNI_CJKEXTB } /* iscjkextb */,
+ { 8, 185, 3319, 2, 18, UNI_LATINEXTADDITIONAL } /* islatinextadditional */,
+ { 16, 10226, 36, 3, 1, UNI_DI } /* di=t */,
+ { 3, 9691, 3445, 4, 18, UNI_RUMI } /* blk=ruminumeralsymbols */,
+ { 0, 9691, 1514, 4, 24, UNI_HIGHPUSURROGATES } /* blk=highprivateusesurrogates */,
+ { 3, 21, 8396, 2, 8, UNI_KANAEXTA } /* inkanaexta */,
+ { 0, 5662, 36, 15, 1, UNI_SB__ST } /* sentencebreak=st */,
+ { 0, 5875, 6398, 13, 12, UNI_JG__MALAYALAMBHA } /* joininggroup=malayalambha */,
+ { 12, 10247, 5953, 3, 13, UNI_JG__MALAYALAMNNNA } /* jg=malayalamnnna */,
+ { 0, 7826, 0, 9, 0, UNI_ORKH } /* oldturkic */,
+ { 1, 185, 1061, 3, 3, UNI_COPT } /* iscopt */,
+ { 0, 10247, 5966, 3, 13, UNI_JG__MANICHAEANMEM } /* jg=manichaeanmem */,
+ { 0, 5875, 5466, 13, 14, UNI_JG__MANICHAEANQOPH } /* joininggroup=manichaeanqoph */,
+ { 2, 9691, 750, 4, 16, UNI_ENCLOSEDALPHANUM } /* blk=enclosedalphanum */,
+ { 0, 8973, 2248, 6, 21, UNI_ININSCRIPTIONALPARTHIAN } /* block=inscriptionalparthian */,
+ { 9, 8973, 5029, 6, 8, UNI_VEDICEXT } /* block=vedicext */,
+ { 1, 7330, 0, 4, 0, UNI_KHAR } /* khar */,
+ { 0, 5758, 3, 13, 1, -UNI_BIDIM } /* bidimirrored=f */,
+ { 0, 10268, 8925, 3, 5, UNI_NV__50000 } /* nv=50000 */,
+ { 0, 9691, 317, 4, 33, UNI_SUPMATHOPERATORS } /* blk=supplementalmathematicaloperators */,
+ { 9, 10508, 10528, 8, 5, UNI_XPOSIXPRINT } /* isxposixprint */,
+ { 1, 8782, 9444, 7, 5, UNI_SC__DOGR } /* script=dogra */,
+ { 0, 9979, 4849, 4, 15, UNI_MERC } /* scx=meroiticcursive */,
+ { 23, 10247, 2661, 3, 3, UNI_JG__YEH } /* jg=yeh */,
+ { 7, 4699, 0, 14, 0, UNI_ECOMP } /* emojicomponent */,
+ { 2, 3877, 10115, 17, 4, UNI_QAAI } /* scriptextensions=zinh */,
+ { 0, 9691, 6362, 4, 12, UNI_KHMERSYMBOLS } /* blk=khmersymbols */,
+ { 0, 1418, 23, 24, 2, UNI_CCC__AL } /* canonicalcombiningclass=al */,
+ { 1, 8973, 721, 7, 8, UNI_INCUNEIFORM } /* block=cuneiform */,
+ { 4, 2085, 0, 14, 0, UNI_LM } /* modifierletter */,
+ { 18, 9476, 9943, 3, 4, UNI_PRTI } /* sc=prti */,
+ { 0, 9979, 9931, 4, 4, UNI_PHLP } /* scx=phlp */,
+ { 1, 8782, 3139, 7, 4, UNI_SC__DEVA } /* script=deva */,
+ { 6, 6937, 188, 6, 30, UNI_MISCPICTOGRAPHS } /* inmiscellaneoussymbolsandpictographs */,
+ { 3, 5662, 752, 14, 5, UNI_SB__CL } /* sentencebreak=close */,
+ { 32, 8782, 9201, 7, 4, UNI_SC__TELU } /* script=telu */,
+ { 4, 9979, 7853, 4, 4, UNI_PAUC } /* scx=pauc */,
+ { 16, 10247, 5989, 3, 3, UNI_JG__NUN } /* jg=nun */,
+ { 63, 9691, 6218, 4, 12, UNI_CYRILLICEXTC } /* blk=cyrillicextc */,
+ { 0, 8973, 5368, 6, 7, UNI_LISUSUP } /* block=lisusup */,
+ { 3, 9691, 9237, 4, 6, UNI_INYEZIDI } /* blk=yezidi */,
+ { 15, 10232, 1, 3, 1, UNI_EA__N } /* ea=n */,
+ { 0, 8973, 9514, 6, 5, UNI_INORIYA } /* block=oriya */,
+ { 17, 5875, 8324, 13, 8, UNI_JG__FARSIYEH } /* joininggroup=farsiyeh */,
+ { 0, 7460, 7611, 10, 1, UNI_IN__5 } /* presentin=5 */,
+ { 19, 9476, 8650, 4, 6, UNI_SC__KNDA } /* sc=kannada */,
+ { 0, 218, 0, 33, 0, UNI_DIACRITICALSEXT } /* combiningdiacriticalmarksextended */,
+ { 3, 6340, 1903, 3, 21, UNI_CJKCOMPATIDEOGRAPHSSUP } /* incjkcompatideographssup */,
+ { 4, 9979, 9707, 4, 4, UNI_CANS } /* scx=cans */,
+ { 23, 9691, 7754, 4, 9, UNI_LATINEXTG } /* blk=latinextg */,
+ { 4, 7370, 9454, 10, 5, -UNI_XPOSIXLOWER } /* lowercase=false */,
+ { 0, 3877, 9482, 17, 4, UNI_PHLI } /* scriptextensions=phli */,
+ { 5, 185, 909, 2, 14, UNI_PUA } /* isprivateusearea */,
+ { 3, 2593, 18, 20, 1, UNI_VO__R } /* verticalorientation=r */,
+ { 1, 8614, 0, 7, 0, UNI_ELYM } /* elymaic */,
+ { 12, 185, 4186, 2, 7, UNI_LINB } /* islinearb */,
+ { 5, 1189, 4427, 3, 15, UNI_TANGUTCOMPONENTS } /* intangutcomponents */,
+ { 17, 10268, 9615, 3, 4, UNI_NV__17_SLASH_2 } /* nv=17/2 */,
+ { 0, 8782, 1166, 9, 2, UNI_SC__SHRD } /* script=shrd */,
+ { 0, 10553, 1177, 3, 3, UNI_SORA } /* issora */,
+ { 0, 185, 8276, 2, 4, UNI_BALI } /* isbali */,
+ { 2, 4157, 2249, 3, 20, UNI_PRTI } /* isinscriptionalparthian */,
+ { 2, 1190, 496, 3, 2, UNI_NT__NU } /* nt=nu */,
+ { 46, 5875, 4234, 13, 16, UNI_JG__MANICHAEANLAMEDH } /* joininggroup=manichaeanlamedh */,
+ { 4, 10253, 396, 3, 2, UNI_LB__GL } /* lb=gl */,
+ { 1, 4534, 0, 4, 0, UNI_BRAI } /* brai */,
+ { 1, 9647, 10331, 4, 3, UNI_AGE__6_DOT_2 } /* age=v62 */,
+ { 2, 9476, 10047, 3, 4, UNI_TNSA } /* sc=tnsa */,
+ { 74, 4504, 0, 15, 0, UNI_BAMUMSUP } /* bamumsupplement */,
+ { 1, 9469, 3499, 5, 10, UNI_INPC__TOPANDLEFT } /* inpc=topandleft */,
+ { 2, 9711, 8986, 5, 4, UNI_CCC__10 } /* ccc=ccc10 */,
+ { 2, 5875, 9111, 13, 6, UNI_JG__LAMADH } /* joininggroup=lamadh */,
+ { 22, 9691, 4984, 4, 5, UNI_INTAMIL } /* blk=tamil */,
+ { 49, 10516, 6, 3, 1, UNI_PD } /* ispd */,
+ { 2, 9429, 10055, 5, 4, UNI_CWCF } /* cwcf=true */,
+ { 14, 9469, 869, 3, 10, UNI_PHONETICEXT } /* inphoneticext */,
+ { 1, 9691, 1220, 5, 4, UNI_INBATAK } /* blk=batak */,
+ { 20, 1034, 0, 27, 0, UNI_ENCLOSEDCJK } /* enclosedcjklettersandmonths */,
+ { 33, 5875, 4122, 13, 16, UNI_JG__HANIFIROHINGYAPA } /* joininggroup=hanifirohingyapa */,
+ { 1, 9691, 2164, 4, 11, UNI_CYRILLICSUP } /* blk=cyrillicsup */,
+ { 2, 9979, 3978, 4, 4, UNI_BOPO } /* scx=bopo */,
+ { 1, 10083, 0, 4, 0, UNI_VAI } /* vaii */,
+ { 1, 10015, 0, 4, 0, UNI_TALE } /* tale */,
+ { 2, 9979, 9129, 4, 4, UNI_LYCI } /* scx=lyci */,
+ { 10, 185, 5901, 2, 13, UNI_KANAEXTB } /* iskanaextendedb */,
+ { 16, 1418, 9030, 24, 3, UNI_WB__EB } /* canonicalcombiningclass=133 */,
+ { 1, 9474, 1245, 5, 25, UNI_INSC__CONSONANTINITIALPOSTFIXED } /* insc=consonantinitialpostfixed */,
+ { 0, 9979, 6928, 4, 11, UNI_MEDF } /* scx=medefaidrin */,
+ { 3, 9747, 0, 4, 0, UNI_dia_values_index } /* dia= */,
+ { 1, 185, 1678, 2, 23, UNI_LATINEXTADDITIONAL } /* islatinextendedadditional */,
+ { 1, 7391, 2, 5, 1, UNI_CARI } /* iscari */,
+ { 3, 3877, 9129, 17, 6, UNI_LYCI } /* scriptextensions=lycian */,
+ { 72, 9691, 5690, 4, 14, UNI_SUPPUNCTUATION } /* blk=suppunctuation */,
+ { 0, 7093, 0, 11, 0, UNI_SUPERANDSUB } /* superandsub */,
+ { 1, 8782, 9514, 7, 5, UNI_SC__ORYA } /* script=oriya */,
+ { 0, 185, 7540, 2, 10, UNI_SUPARROWSC } /* issuparrowsc */,
+ { 3, 7297, 1419, 3, 3, UNI_HANO } /* ishano */,
+ { 0, 9476, 10027, 3, 4, UNI_TAVT } /* sc=tavt */,
+ { 2, 8782, 4924, 7, 15, UNI_NARB } /* script=oldnortharabian */,
+ { 0, 7907, 0, 4, 0, UNI_XIDS } /* xids */,
+ { 9, 10244, 2373, 3, 20, UNI_PC } /* gc=connectorpunctuation */,
+ { 0, 8803, 0, 7, 0, UNI_SIDD } /* siddham */,
+ { 15, 2936, 0, 12, 0, UNI_SUNDANESESUP } /* sundanesesup */,
+ { 0, 10508, 1847, 8, 5, UNI_XPOSIXLOWER } /* isxposixlower */,
+ { 5, 1418, 4968, 24, 2, UNI_CCC__0 } /* canonicalcombiningclass=nr */,
+ { 24, 9461, 34, 3, 2, UNI_SB__EX } /* sb=ex */,
+ { 12, 2206, 3409, 21, 17, UNI_RI } /* graphemeclusterbreak=regionalindicator */,
+ { 0, 9147, 17, 7, 1, -UNI__PERL_NCHAR } /* nchar=no */,
+ { 0, 4729, 0, 15, 0, UNI_INHANGUL } /* hangulsyllables */,
+ { 8, 3877, 3049, 17, 4, UNI_CHER } /* scriptextensions=cher */,
+ { 3, 10217, 5578, 3, 14, UNI_BC__NSM } /* bc=nonspacingmark */,
+ { 0, 1466, 0, 24, 0, UNI_DIACRITICALSFORSYMBOLS } /* combiningmarksforsymbols */,
+ { 16, 10516, 1630, 3, 3, UNI_PHAG } /* isphag */,
+ { 0, 8782, 9755, 7, 4, UNI_DSRT } /* script=dsrt */,
+ { 4, 3877, 9129, 17, 4, UNI_LYCI } /* scriptextensions=lyci */,
+ { 20, 9647, 7924, 4, 3, UNI_IN__1_DOT_1 } /* age=1.1 */,
+ { 2, 2708, 0, 19, 0, UNI_EGYP } /* egyptianhieroglyphs */,
+ { 17, 3877, 1116, 17, 4, UNI_HANG } /* scriptextensions=hang */,
+ { 20, 8635, 0, 7, 0, UNI_HANO } /* hanunoo */,
+ { 1, 9711, 9402, 4, 2, UNI_CCC__34 } /* ccc=34 */,
+ { 3, 8782, 9879, 7, 4, UNI_SC__MYMR } /* script=mymr */,
+ { 8, 185, 251, 2, 33, UNI_MISCMATHSYMBOLSA } /* ismiscellaneousmathematicalsymbolsa */,
+ { 16, 8782, 10008, 8, 3, UNI_SC__SYRC } /* script=syrc */,
+ { 0, 3877, 9887, 17, 4, UNI_NBAT } /* scriptextensions=nbat */,
+ { 2, 10268, 8907, 3, 2, UNI_NV__30 } /* nv=30 */,
+ { 8, 5045, 1, 3, 42, UNI_UCASEXTA } /* isunifiedcanadianaboriginalsyllabicsextendeda */,
+ { 0, 6083, 9254, 13, 3, UNI_NV__1_SLASH_3 } /* numericvalue=1/3 */,
+ { 0, 1553, 1466, 9, 13, UNI_M } /* category=combiningmark */,
+ { 0, 2185, 36, 21, 1, UNI_EXTPICT } /* extendedpictographic=t */,
+ { 0, 2248, 2937, 3, 8, UNI_INSUNDANESE } /* insundanese */,
+ { 0, 10232, 1193, 3, 9, UNI_EA__H } /* ea=halfwidth */,
+ { 0, 10268, 8119, 3, 1, UNI_NV__9 } /* nv=9 */,
+ { 0, 6083, 8132, 13, 8, UNI_NV__11_SLASH_2 } /* numericvalue=5.50e+00 */,
+ { 2, 7560, 3, 10, 1, -UNI_XPOSIXUPPER } /* uppercase=f */,
+ { 3, 9476, 58, 3, 2, UNI_SC__YI } /* sc=yi */,
+ { 1, 9476, 8670, 3, 4, UNI_MAKA } /* sc=maka */,
+ { 1, 9731, 0, 4, 0, UNI_cwt_values_index } /* cwt= */,
+ { 34, 4847, 6962, 3, 10, UNI_MYANMAREXTB } /* inmyanmarextb */,
+ { 0, 79, 0, 10, 0, UNI_ARABICMATH } /* arabicmath */,
+ { 4, 9647, 10295, 4, 3, UNI_AGE__2 } /* age=v20 */,
+ { 0, 9979, 7820, 4, 4, UNI_PERM } /* scx=perm */,
+ { 3, 185, 9811, 2, 4, UNI_KHMR } /* iskhmr */,
+ { 4, 9691, 2122, 4, 21, UNI_CJKCOMPATFORMS } /* blk=cjkcompatibilityforms */,
+ { 0, 9476, 8500, 3, 4, UNI_UGAR } /* sc=ugar */,
+ { 0, 9691, 7270, 4, 10, UNI_CJKSTROKES } /* blk=cjkstrokes */,
+ { 1, 8702, 2729, 4, 17, UNI_ENCLOSEDALPHANUMSUP } /* inenclosedalphanumsup */,
+ { 2, 185, 3445, 2, 18, UNI_RUMI } /* isruminumeralsymbols */,
+ { 0, 9691, 4170, 4, 9, UNI_LATIN1 } /* blk=latin1sup */,
+ { 1, 6937, 188, 6, 16, UNI_MISCSYMBOLS } /* inmiscellaneoussymbols */,
+ { 17, 9691, 4489, 4, 15, UNI_ARABICEXTB } /* blk=arabicextendedb */,
+ { 10, 4972, 8867, 3, 3, UNI_TIRH } /* istirh */,
+ { 0, 7218, 4505, 3, 4, UNI_INBAMUM } /* inbamum */,
+ { 1, 8973, 150, 7, 34, UNI_DIACRITICALSSUP } /* block=combiningdiacriticalmarkssupplement */,
+ { 0, 3877, 2312, 18, 3, UNI_SINH } /* scriptextensions=sinh */,
+ { 1, 185, 5270, 2, 6, UNI_KANGXI } /* iskangxi */,
+ { 27, 9476, 9787, 3, 4, UNI_SC__HANO } /* sc=hano */,
+ { 27, 3403, 1, 6, 1, -UNI_XPOSIXSPACE } /* space=n */,
+ { 18, 185, 601, 3, 29, UNI_CJKEXTD } /* iscjkunifiedideographsextensiond */,
+ { 1, 7467, 10331, 3, 3, UNI_IN__6_DOT_2 } /* in=v62 */,
+ { 8, 9691, 7420, 4, 10, UNI_INOLDPERSIAN } /* blk=oldpersian */,
+ { 0, 10268, 7956, 3, 8, UNI_NV__3_SLASH_2 } /* nv=1.50e+00 */,
+ { 0, 7467, 8036, 3, 3, UNI_IN__3_DOT_1 } /* in=3.1 */,
+ { 0, 1990, 1245, 22, 9, UNI_INSC__CONSONANT } /* indicsyllabiccategory=consonant */,
+ { 0, 9476, 8292, 3, 8, UNI_SC__BUGI } /* sc=buginese */,
+ { 0, 1418, 8027, 24, 3, UNI_CCC__B } /* canonicalcombiningclass=220 */,
+ { 2, 10247, 10107, 3, 4, UNI_JG__ZAIN } /* jg=zain */,
+ { 4, 9899, 0, 4, 0, UNI_NSHU } /* nshu */,
+ { 3, 185, 3139, 2, 4, UNI_DEVA } /* isdeva */,
+ { 0, 5095, 0, 6, 0, UNI_XPOSIXXDIGIT } /* xdigit */,
+ { 3, 8973, 3193, 6, 11, UNI_ETHIOPICSUP } /* block=ethiopicsup */,
+ { 18, 185, 2012, 2, 21, UNI_LOE } /* islogicalorderexception */,
+ { 0, 9190, 1, 5, 1, -UNI_TERM } /* term=n */,
+ { 0, 9711, 3588, 4, 17, UNI_WB__EB } /* ccc=attachedbelowleft */,
+ { 0, 3283, 0, 4, 0, UNI_IDSB } /* idsb */,
+ { 8, 10244, 4999, 3, 15, UNI_TITLE } /* gc=titlecaseletter */,
+ { 1, 2164, 0, 18, 0, UNI_CYRILLICSUP } /* cyrillicsupplement */,
+ { 4, 1088, 0, 27, 0, UNI_pcm_values_index } /* prependedconcatenationmark= */,
+ { 0, 10352, 8308, 3, 8, UNI_WB__EB } /* wb=ebasegaz */,
+ { 18, 10253, 4010, 3, 16, UNI_LB__CP } /* lb=closeparenthesis */,
+ { 1, 10226, 1, 3, 1, -UNI_DI } /* di=n */,
+ { 3, 6083, 8943, 13, 2, UNI_NV__80 } /* numericvalue=80 */,
+ { 1, 3877, 7863, 18, 8, UNI_SAMR } /* scriptextensions=samaritan */,
+ { 0, 8782, 4534, 7, 4, UNI_BRAI } /* script=brai */,
{ 0, 10253, 6818, 3, 11, UNI_LB__IN } /* lb=inseparable */,
- { 0, 4639, 0, 4, 0, UNI_DASH } /* dash */,
- { 0, 5172, 3, 14, 1, -UNI_EMOD } /* emojimodifier=f */,
- { 1, 8973, 1219, 6, 26, UNI_KATAKANAEXT } /* block=katakanaphoneticextensions */,
- { 0, 9763, 1934, 4, 2, UNI_GCB__CN } /* gcb=cn */,
- { 4, 9691, 43, 4, 3, UNI_CJK } /* blk=cjk */,
- { 1, 10244, 49, 3, 1, UNI_P } /* gc=p */,
- { 1, 9476, 8388, 3, 8, UNI_SC__JAVA } /* sc=javanese */,
- { 30, 5875, 66, 15, 2, UNI_JG__KAPH } /* joininggroup=kaph */,
- { 4, 4847, 2880, 3, 8, UNI_INMONGOLIAN } /* inmongolian */,
- { 2, 3877, 7434, 18, 3, UNI_SOGD } /* scriptextensions=sogd */,
- { 3, 9979, 8684, 4, 4, UNI_MARC } /* scx=marc */,
- { 1, 1418, 10160, 24, 3, UNI_CCC__A } /* canonicalcombiningclass=230 */,
- { 4, 8973, 952, 6, 18, UNI_INVS } /* block=variationselectors */,
- { 1, 8973, 9504, 6, 5, UNI_INNUSHU } /* block=nushu */,
- { 0, 8973, 4043, 7, 15, UNI_CYPRIOTSYLLABARY } /* block=cypriotsyllabary */,
- { 0, 9691, 3463, 4, 12, UNI_SMALLKANAEXT } /* blk=smallkanaext */,
- { 1, 8782, 9767, 7, 4, UNI_SC__GONG } /* script=gong */,
- { 0, 8973, 9484, 6, 5, UNI_INLIMBU } /* block=limbu */,
- { 0, 8705, 17, 8, 1, UNI_NFKCQC__N } /* nfkcqc=no */,
- { 5, 3877, 8754, 17, 4, UNI_OSMA } /* scriptextensions=osma */,
- { 0, 2248, 8453, 3, 7, UNI_SPECIALS } /* inspecials */,
- { 34, 10229, 10091, 3, 4, UNI_EA__F } /* dt=wide */,
- { 1, 8782, 10119, 7, 4, UNI_SC__ZYYY } /* script=zyyy */,
- { 6, 43, 0, 36, 0, UNI_CJKCOMPATIDEOGRAPHSSUP } /* cjkcompatibilityideographssupplement */,
- { 0, 10232, 67, 3, 1, UNI_EA__H } /* ea=h */,
- { 0, 8782, 8348, 7, 8, UNI_SC__GURU } /* script=gurmukhi */,
- { 0, 3877, 8500, 17, 8, UNI_UGAR } /* scriptextensions=ugaritic */,
- { 0, 4074, 5676, 16, 14, UNI_ZS } /* generalcategory=spaceseparator */,
- { 0, 3911, 0, 17, 0, UNI_SMALLFORMS } /* smallformvariants */,
- { 1, 9979, 3265, 4, 8, UNI_GEOR } /* scx=georgian */,
- { 0, 8782, 9899, 7, 4, UNI_NSHU } /* script=nshu */,
- { 0, 2304, 9520, 3, 4, UNI_OSGE } /* isosage */,
- { 1, 8782, 10031, 7, 4, UNI_TFNG } /* script=tfng */,
- { 1, 6083, 9260, 13, 4, UNI_NV__1_SLASH_12 } /* numericvalue=1/12 */,
- { 1, 6083, 8949, 13, 2, UNI_NV__90 } /* numericvalue=90 */,
- { 18, 10268, 9367, 3, 2, UNI_NV__27 } /* nv=27 */,
- { 0, 9711, 8907, 4, 2, UNI_CCC__30 } /* ccc=30 */,
- { 0, 9189, 10056, 7, 3, UNI_STERM } /* sterm=true */,
- { 94, 7460, 10322, 10, 3, UNI_IN__5_DOT_2 } /* presentin=v52 */,
- { 1, 2509, 0, 4, 0, UNI_MONG } /* mong */,
- { 1, 21, 7736, 2, 9, UNI_LATINEXTD } /* inlatinextd */,
- { 0, 6083, 9578, 13, 2, UNI_NV__41 } /* numericvalue=41 */,
- { 0, 9476, 9444, 3, 4, UNI_SC__DOGR } /* sc=dogr */,
- { 12, 10250, 0, 4, 0, UNI_JT__L } /* jt=l */,
- { 2, 9469, 6627, 3, 11, UNI_PLAYINGCARDS } /* inplayingcards */,
- { 0, 2227, 0, 4, 0, UNI_HAN } /* hani */,
- { 0, 10268, 10208, 3, 3, UNI_NV__7_SLASH_8 } /* nv=7/8 */,
- { 0, 7230, 2533, 10, 20, UNI_BC__RLE } /* bidiclass=righttoleftembedding */,
- { 1, 9707, 0, 4, 0, UNI_CANS } /* cans */,
- { 1, 185, 8663, 2, 7, UNI_LINA } /* islineara */,
- { 24, 1418, 9675, 24, 3, UNI_CCC__202 } /* canonicalcombiningclass=atb */,
- { 4, 185, 3445, 2, 18, UNI_RUMI } /* isruminumeralsymbols */,
- { 17, 8444, 36, 8, 1, UNI_RADICAL } /* radical=t */,
- { 64, 10352, 0, 3, 0, UNI_wb_values_index } /* wb= */,
- { 7, 9691, 6194, 4, 12, UNI_CYRILLICEXTA } /* blk=cyrillicexta */,
- { 7, 10349, 10355, 3, 3, UNI_VS } /* vs=yes */,
- { 1, 10244, 4286, 3, 10, UNI_SM } /* gc=mathsymbol */,
- { 2, 2012, 0, 21, 0, UNI_LOE } /* logicalorderexception */,
- { 3, 6741, 3, 11, 1, -UNI_DEP } /* deprecated=f */,
- { 2, 8973, 3193, 6, 11, UNI_ETHIOPICSUP } /* block=ethiopicsup */,
- { 0, 7230, 2290, 10, 21, UNI_BC__PDI } /* bidiclass=popdirectionalisolate */,
- { 0, 6290, 0, 12, 0, UNI_GONG } /* gunjalagondi */,
- { 12, 6340, 116, 4, 33, UNI_DIACRITICALSFORSYMBOLS } /* incombiningdiacriticalmarksforsymbols */,
- { 1, 9647, 9, 4, 2, UNI_AGE__NA } /* age=na */,
- { 9, 185, 5888, 2, 13, UNI_KANAEXTA } /* iskanaextendeda */,
- { 1, 1902, 0, 19, 0, UNI_CJKCOMPATIDEOGRAPHS } /* cjkcompatideographs */,
- { 0, 9711, 7983, 4, 1, UNI_CCC__7 } /* ccc=7 */,
- { 0, 4074, 25, 16, 1, UNI_S } /* generalcategory=s */,
- { 16, 2206, 24, 21, 1, UNI_GCB__L } /* graphemeclusterbreak=l */,
- { 1, 1418, 9305, 25, 4, UNI_CCC__15 } /* canonicalcombiningclass=ccc15 */,
- { 0, 1990, 3994, 22, 16, UNI_INSC__CANTILLATIONMARK } /* indicsyllabiccategory=cantillationmark */,
- { 3, 1088, 26, 27, 1, UNI_PCM } /* prependedconcatenationmark=y */,
- { 1, 4074, 1564, 16, 2, UNI_PS } /* generalcategory=ps */,
- { 7, 9719, 0, 4, 0, UNI_CPMN } /* cpmn */,
- { 1, 9476, 2227, 3, 4, UNI_SC__HAN } /* sc=hani */,
- { 0, 7260, 0, 10, 0, UNI_CHRS } /* chorasmian */,
- { 0, 8973, 0, 12, 0, UNI_INCARIAN } /* block=carian */,
- { 1, 185, 8600, 2, 7, UNI_DSRT } /* isdeseret */,
- { 5, 9270, 10055, 4, 4, UNI_XPOSIXXDIGIT } /* hex=true */,
- { 8, 9177, 10055, 6, 4, UNI_QMARK } /* qmark=true */,
- { 2, 9691, 810, 4, 22, UNI_ENCLOSEDIDEOGRAPHICSUP } /* blk=enclosedideographicsup */,
- { 38, 10516, 2595, 3, 3, UNI_PRTI } /* isprti */,
- { 0, 2248, 0, 21, 0, UNI_PRTI } /* inscriptionalparthian */,
- { 1, 6340, 2165, 3, 7, UNI_INCYRILLIC } /* incyrillic */,
- { 5, 4074, 9706, 16, 2, UNI_MC } /* generalcategory=mc */,
- { 0, 7360, 6288, 10, 2, UNI_LB__WJ } /* linebreak=wj */,
- { 0, 10268, 8164, 3, 8, UNI_NV__1_SLASH_16 } /* nv=6.25e-02 */,
- { 0, 185, 9815, 2, 4, UNI_KITS } /* iskits */,
- { 0, 5823, 3, 13, 1, -UNI_GRBASE } /* graphemebase=f */,
- { 8, 7853, 0, 9, 0, UNI_PAUC } /* paucinhau */,
- { 1, 8782, 9207, 7, 6, UNI_SC__THAA } /* script=thaana */,
- { 0, 185, 6950, 2, 11, UNI_MYANMAREXTA } /* ismyanmarexta */,
- { 1, 9474, 6572, 5, 6, UNI_LB__ZWJ } /* insc=joiner */,
- { 1, 3403, 0, 6, 0, UNI_wspace_values_index } /* space= */,
- { 4, 9434, 10355, 5, 3, UNI_CWCM } /* cwcm=yes */,
- { 0, 9691, 6057, 4, 13, UNI_MISCTECHNICAL } /* blk=misctechnical */,
- { 0, 9643, 0, 4, 0, UNI_ADLM } /* adlm */,
- { 1, 6674, 10055, 12, 4, UNI_XIDC } /* xidcontinue=true */,
- { 14, 9979, 9484, 4, 5, UNI_LIMB } /* scx=limbu */,
- { 1, 7360, 7628, 10, 9, UNI_LB__AI } /* linebreak=ambiguous */,
- { 0, 9476, 9775, 3, 4, UNI_SC__GREK } /* sc=grek */,
- { 3, 10346, 3546, 3, 7, UNI_VO__U } /* vo=upright */,
- { 0, 9711, 24, 4, 1, UNI_CCC__L } /* ccc=l */,
- { 1, 9123, 10355, 6, 3, UNI_XPOSIXLOWER } /* lower=yes */,
- { 0, 3877, 3265, 17, 4, UNI_GEOR } /* scriptextensions=geor */,
- { 0, 6940, 0, 4, 0, UNI__PERL_SURROGATE } /* iscs */,
- { 1, 2269, 0, 21, 0, UNI_MEETEIMAYEKEXT } /* meeteimayekextensions */,
- { 0, 5662, 50, 14, 2, UNI_SB__AT } /* sentencebreak=at */,
- { 2, 9476, 10099, 3, 4, UNI_XSUX } /* sc=xsux */,
- { 1, 185, 9117, 2, 6, UNI_LEPC } /* islepcha */,
- { 8, 9979, 2312, 5, 6, UNI_SINH } /* scx=sinhala */,
- { 16, 9691, 5634, 4, 14, UNI_INPSALTERPAHLAVI } /* blk=psalterpahlavi */,
- { 0, 10253, 185, 3, 2, UNI_LB__IS } /* lb=is */,
- { 9, 1167, 0, 25, 0, UNI_DI } /* defaultignorablecodepoint */,
- { 0, 6083, 9567, 13, 4, UNI_NV__1_SLASH_20 } /* numericvalue=1/20 */,
- { 4, 9691, 4984, 4, 15, UNI_TAMILSUP } /* blk=tamilsupplement */,
- { 0, 9474, 4579, 5, 15, UNI_INSC__CONSONANTMEDIAL } /* insc=consonantmedial */,
- { 5, 185, 511, 3, 29, UNI_CJKEXTA } /* iscjkunifiedideographsextensiona */,
- { 0, 10511, 3403, 5, 5, UNI_POSIXSPACE } /* posixspace */,
- { 8, 3877, 7570, 17, 10, UNI_WARA } /* scriptextensions=warangciti */,
- { 0, 3877, 6386, 17, 4, UNI_MAHJ } /* scriptextensions=mahj */,
- { 0, 7230, 2292, 10, 3, UNI_BC__PDI } /* bidiclass=pdi */,
- { 5, 5662, 401, 14, 6, UNI_SB__FO } /* sentencebreak=format */,
- { 1, 10352, 5068, 3, 2, UNI_WB__SQ } /* wb=sq */,
- { 1, 3553, 10055, 18, 4, UNI_VS } /* variationselector=true */,
- { 7, 8782, 8468, 7, 4, UNI_SC__TAGB } /* script=tagb */,
- { 9, 9979, 2841, 4, 19, UNI_MERO } /* scx=meroitichieroglyphs */,
- { 64, 9647, 10205, 4, 3, UNI_AGE__7 } /* age=7.0 */,
- { 0, 1880, 1, 22, 1, -UNI_CWU } /* changeswhenuppercased=n */,
- { 22, 5875, 6271, 13, 7, UNI_JG__SEMKATH } /* joininggroup=semkath */,
- { 0, 7467, 7924, 3, 3, UNI_IN__1_DOT_1 } /* in=1.1 */,
- { 5, 9979, 10083, 4, 4, UNI_VAI } /* scx=vaii */,
- { 0, 185, 3365, 2, 8, UNI_DINGBATS } /* isdingbats */,
- { 0, 9711, 9016, 5, 5, UNI_CCC__130 } /* ccc=ccc130 */,
- { 2, 3877, 3193, 17, 4, UNI_ETHI } /* scriptextensions=ethi */,
- { 1, 10553, 7, 3, 1, UNI_SC } /* issc */,
- { 12, 3877, 7811, 17, 4, UNI_ITAL } /* scriptextensions=ital */,
- { 0, 3877, 3978, 17, 4, UNI_BOPO } /* scriptextensions=bopo */,
- { 4, 185, 3139, 2, 13, UNI_DEVANAGARIEXT } /* isdevanagariext */,
- { 6, 9979, 1655, 4, 6, UNI_HANG } /* scx=hangul */,
- { 8, 10283, 10055, 3, 4, UNI_SD } /* sd=true */,
- { 5, 10511, 10528, 5, 5, UNI_POSIXPRINT } /* posixprint */,
- { 0, 3391, 1026, 18, 2, -UNI__PERL_PATWS } /* patternwhitespace=no */,
- { 2, 185, 7071, 2, 11, UNI_SORA } /* issorasompeng */,
- { 1, 8973, 2433, 6, 20, UNI_GLAGOLITICSUP } /* block=glagoliticsupplement */,
- { 0, 4972, 4985, 3, 7, UNI_TAMILSUP } /* istamilsup */,
- { 1, 7580, 5068, 10, 2, UNI_WB__SQ } /* wordbreak=sq */,
- { 11, 9691, 8452, 4, 8, UNI_SPECIALS } /* blk=specials */,
- { 8, 9979, 8979, 4, 6, UNI_CARI } /* scx=carian */,
- { 4, 9691, 7790, 4, 9, UNI_INNEWTAILUE } /* blk=newtailue */,
- { 0, 8782, 3792, 7, 17, UNI_KITS } /* script=khitansmallscript */,
- { 0, 3877, 8508, 17, 8, UNI_VITH } /* scriptextensions=vithkuqi */,
- { 0, 9691, 2841, 4, 19, UNI_MERO } /* blk=meroitichieroglyphs */,
- { 0, 4378, 0, 16, 0, UNI_SUPMATHOPERATORS } /* supmathoperators */,
- { 2, 6158, 0, 12, 0, UNI_bidic_values_index } /* bidicontrol= */,
- { 8, 3877, 9923, 17, 4, UNI_OUGR } /* scriptextensions=ougr */,
- { 1, 9171, 0, 6, 0, UNI_patws_values_index } /* patws= */,
- { 1, 6529, 1062, 3, 26, UNI_OCR } /* inopticalcharacterrecognition */,
- { 0, 9270, 10355, 4, 3, UNI_XPOSIXXDIGIT } /* hex=yes */,
- { 8, 9711, 9420, 5, 4, UNI_CCC__91 } /* ccc=ccc91 */,
- { 5, 8873, 0, 7, 0, UNI_ZZZZ } /* unknown */,
- { 2, 4847, 2271, 4, 12, UNI_MEETEIMAYEKEXT } /* inmeeteimayekext */,
- { 0, 2206, 407, 21, 7, UNI_GCB__CN } /* graphemeclusterbreak=control */,
- { 0, 9647, 8099, 4, 2, UNI_AGE__14 } /* age=14 */,
- { 0, 9711, 3031, 4, 18, UNI_CCC__216 } /* ccc=attachedaboveright */,
- { 0, 8973, 8276, 6, 8, UNI_INBALINESE } /* block=balinese */,
- { 1, 3877, 7808, 17, 9, UNI_ITAL } /* scriptextensions=olditalic */,
- { 2, 10217, 10262, 3, 3, UNI_BC__LRO } /* bc=lro */,
- { 1, 9691, 3690, 4, 17, UNI_CYRILLICEXTC } /* blk=cyrillicextendedc */,
- { 3, 10518, 0, 10, 0, UNI_POSIXBLANK } /* posixblank */,
- { 0, 3406, 10355, 3, 3, UNI_CE } /* ce=yes */,
- { 0, 8973, 6950, 6, 11, UNI_MYANMAREXTA } /* block=myanmarexta */,
- { 8, 8782, 9663, 7, 4, UNI_ARMI } /* script=armi */,
- { 1, 9691, 1370, 4, 24, UNI_ARABICPFA } /* blk=arabicpresentationformsa */,
- { 0, 3103, 0, 4, 0, UNI_COPT } /* copt */,
- { 9, 9647, 7550, 4, 10, UNI_AGE__NA } /* age=unassigned */,
- { 13, 9171, 9454, 6, 5, -UNI__PERL_PATWS } /* patws=false */,
- { 17, 2185, 36, 21, 1, UNI_EXTPICT } /* extendedpictographic=t */,
- { 0, 9147, 0, 7, 0, -UNI__PERL_NCHAR } /* nchar=n */,
- { 0, 5045, 59, 3, 4, UNI_UIDEO } /* isuideo */,
- { 33, 8768, 1, 7, 1, -UNI_PATSYN } /* patsyn=n */,
- { 0, 9691, 9514, 4, 5, UNI_INORIYA } /* blk=oriya */,
- { 1, 8782, 9771, 7, 4, UNI_SC__GONM } /* script=gonm */,
- { 4, 1553, 1530, 11, 7, UNI__PERL_SURROGATE } /* category=surrogate */,
- { 17, 9711, 10163, 4, 3, UNI_CCC__AR } /* ccc=232 */,
- { 0, 9979, 10015, 4, 4, UNI_TALE } /* scx=tale */,
- { 0, 9691, 8551, 4, 7, UNI_CJKEXTB } /* blk=cjkextb */,
- { 0, 9711, 5849, 4, 13, UNI_CCC__IS } /* ccc=iotasubscript */,
- { 2, 9075, 26, 6, 1, UNI_GREXT } /* grext=y */,
- { 3, 9979, 9767, 4, 4, UNI_GONG } /* scx=gong */,
- { 9, 9979, 9237, 4, 4, UNI_YEZI } /* scx=yezi */,
- { 33, 9489, 10355, 5, 3, UNI_MATH } /* math=yes */,
- { 0, 10247, 7880, 3, 9, UNI_JG__SYRIACWAW } /* jg=syriacwaw */,
- { 0, 4744, 6741, 15, 10, UNI_DEP } /* identifiertype=deprecated */,
- { 2, 3398, 9454, 11, 5, -UNI_XPOSIXSPACE } /* whitespace=false */,
- { 0, 9691, 9529, 4, 5, UNI_INTAILE } /* blk=taile */,
- { 1, 5172, 9454, 14, 5, -UNI_EMOD } /* emojimodifier=false */,
- { 1, 6314, 1026, 12, 2, -UNI_IDEO } /* ideographic=no */,
- { 10, 9213, 10055, 6, 4, UNI_UIDEO } /* uideo=true */,
- { 9, 185, 5340, 2, 14, UNI_LATINEXTF } /* islatinextendedf */,
- { 8, 9847, 0, 4, 0, UNI_loe_values_index } /* loe= */,
- { 2, 7718, 0, 9, 0, UNI_LATINEXTB } /* latinextb */,
- { 4, 9550, 36, 4, 1, UNI_IDS } /* ids=t */,
- { 5, 9803, 5717, 4, 2, UNI_LB__H2 } /* hst=lv */,
- { 1, 9711, 8179, 4, 2, UNI_CCC__36 } /* ccc=36 */,
- { 0, 8973, 2034, 6, 22, UNI_MISCTECHNICAL } /* block=miscellaneoustechnical */,
- { 3, 2304, 6432, 3, 3, UNI_OGAM } /* isogam */,
- { 1, 8316, 10355, 8, 3, UNI_EXTPICT } /* extpict=yes */,
- { 3, 9743, 36, 4, 1, UNI_DEP } /* dep=t */,
- { 0, 10268, 9254, 3, 4, UNI_NV__1_SLASH_32 } /* nv=1/32 */,
- { 3, 2332, 0, 6, 0, UNI_YIJING } /* yijing */,
- { 5, 1167, 1, 26, 1, -UNI_DI } /* defaultignorablecodepoint=n */,
- { 1, 10244, 4624, 3, 14, UNI_SC } /* gc=currencysymbol */,
- { 1, 1858, 36, 22, 1, UNI_CWT } /* changeswhentitlecased=t */,
- { 2, 5093, 9454, 9, 5, -UNI_XPOSIXXDIGIT } /* hexdigit=false */,
- { 9, 6083, 8903, 13, 4, UNI_NV__6000 } /* numericvalue=6000 */,
- { 0, 10268, 8028, 3, 8, UNI_NV__20000000 } /* nv=20000000 */,
- { 24, 21, 7718, 2, 9, UNI_LATINEXTB } /* inlatinextb */,
- { 0, 2593, 3528, 20, 7, UNI_VO__R } /* verticalorientation=rotated */,
- { 1, 7360, 1528, 10, 9, UNI_LB__SG } /* linebreak=surrogate */,
- { 0, 1418, 9030, 24, 3, UNI_WB__EB } /* canonicalcombiningclass=133 */,
- { 25, 5088, 1, 14, 1, -UNI_POSIXXDIGIT } /* asciihexdigit=n */,
- { 1, 1553, 728, 9, 2, UNI_MN } /* category=mn */,
- { 0, 8973, 7071, 6, 11, UNI_INSORASOMPENG } /* block=sorasompeng */,
- { 2, 9476, 7862, 3, 9, UNI_SAMR } /* sc=samaritan */,
- { 0, 9691, 7853, 4, 9, UNI_INPAUCINHAU } /* blk=paucinhau */,
- { 10, 10508, 5096, 8, 5, UNI_XPOSIXDIGIT } /* isxposixdigit */,
- { 4, 1418, 8059, 24, 2, UNI_CCC__33 } /* canonicalcombiningclass=33 */,
- { 129, 3877, 9105, 17, 4, UNI_KHOJ } /* scriptextensions=khoj */,
- { 8, 6937, 255, 6, 29, UNI_MISCMATHSYMBOLSA } /* inmiscellaneousmathematicalsymbolsa */,
+ { 1, 9691, 1724, 4, 23, UNI_SUPPUNCTUATION } /* blk=supplementalpunctuation */,
+ { 0, 6083, 8913, 13, 5, UNI_NV__40000 } /* numericvalue=40000 */,
+ { 0, 1770, 0, 23, 0, UNI_BPT__C } /* bidipairedbrackettype=c */,
+ { 0, 1418, 9305, 25, 4, UNI_CCC__15 } /* canonicalcombiningclass=ccc15 */,
+ { 3, 10508, 2803, 3, 3, UNI_XIDS } /* isxids */,
+ { 18, 9476, 9201, 3, 6, UNI_SC__TELU } /* sc=telugu */,
+ { 2, 1553, 4624, 9, 14, UNI_SC } /* category=currencysymbol */,
+ { 2, 3121, 2593, 18, 4, UNI_DT__VERT } /* decompositiontype=vert */,
+ { 17, 10247, 342, 3, 2, UNI_JG__PE } /* jg=pe */,
+ { 9, 7060, 3, 11, 1, -UNI_SD } /* softdotted=f */,
+ { 0, 2312, 3079, 5, 6, UNI_HALFMARKS } /* inhalfmarks */,
+ { 0, 10217, 2917, 3, 19, UNI_BC__RLO } /* bc=righttoleftoverride */,
+ { 0, 9979, 8684, 4, 4, UNI_MARC } /* scx=marc */,
+ { 1, 8702, 812, 4, 27, UNI_ENCLOSEDIDEOGRAPHICSUP } /* inenclosedideographicsupplement */,
+ { 5, 3877, 9707, 17, 4, UNI_CANS } /* scriptextensions=cans */,
+ { 0, 8782, 9831, 7, 4, UNI_LAO } /* script=laoo */,
+ { 0, 10217, 3814, 3, 3, UNI_BC__RLI } /* bc=rli */,
+ { 8, 1418, 2479, 24, 5, UNI_CCC__R } /* canonicalcombiningclass=right */,
+ { 12, 9691, 9093, 4, 6, UNI_INKAITHI } /* blk=kaithi */,
+ { 1, 9847, 10055, 4, 4, UNI_LOE } /* loe=true */,
+ { 24, 5875, 6693, 13, 4, UNI_JG__NOON } /* joininggroup=noon */,
+ { 1, 4282, 0, 16, 0, UNI_MISCMATHSYMBOLSA } /* miscmathsymbolsa */,
+ { 1, 10553, 7434, 3, 6, UNI_SOGD } /* issogdian */,
+ { 1, 5662, 6677, 15, 8, UNI_SB__SC } /* sentencebreak=scontinue */,
+ { 6, 9464, 1026, 5, 2, -UNI_IDST } /* idst=no */,
+ { 0, 8782, 8866, 7, 7, UNI_SC__TIRH } /* script=tirhuta */,
+ { 1, 7160, 10104, 3, 3, UNI_YI } /* isyiii */,
+ { 0, 9691, 7637, 4, 9, UNI_ARABICPFA } /* blk=arabicpfa */,
+ { 0, 1880, 0, 21, 0, UNI_CWU } /* changeswhenuppercased */,
+ { 0, 9439, 1026, 5, 2, -UNI_DASH } /* dash=no */,
+ { 1, 4714, 26, 15, 1, UNI_GREXT } /* graphemeextend=y */,
+ { 1, 10553, 8790, 3, 6, UNI_SHRD } /* issharada */,
+ { 1, 185, 2123, 3, 20, UNI_CJKCOMPATFORMS } /* iscjkcompatibilityforms */,
+ { 3, 9979, 8691, 4, 7, UNI_MULT } /* scx=multani */,
+ { 0, 9979, 9081, 4, 6, UNI_HATR } /* scx=hatran */,
+ { 0, 4598, 3267, 4, 6, UNI_INGEORGIAN } /* ingeorgian */,
+ { 0, 10247, 5480, 3, 14, UNI_JG__MANICHAEANRESH } /* jg=manichaeanresh */,
+ { 1, 1418, 9307, 24, 2, UNI_CCC__15 } /* canonicalcombiningclass=15 */,
+ { 0, 2248, 5691, 3, 13, UNI_SUPPUNCTUATION } /* insuppunctuation */,
+ { 19, 10352, 7898, 3, 9, UNI_WB__WSEGSPACE } /* wb=wsegspace */,
+ { 4, 1553, 599, 9, 2, UNI_XPOSIXCNTRL } /* category=cc */,
+ { 0, 9691, 6182, 4, 12, UNI_CHESSSYMBOLS } /* blk=chesssymbols */,
+ { 0, 10111, 0, 4, 0, UNI_ZANB } /* zanb */,
+ { 0, 3121, 8332, 18, 3, UNI_DT__FRA } /* decompositiontype=fra */,
+ { 2, 9691, 3319, 4, 9, UNI_LATINEXTA } /* blk=latinexta */,
+ { 0, 9691, 8300, 4, 8, UNI_INDUPLOYAN } /* blk=duployan */,
+ { 2, 10244, 10390, 3, 2, UNI_CASEDLETTER } /* gc=l_ */,
+ { 2, 8973, 8284, 6, 8, UNI_INBASSAVAH } /* block=bassavah */,
+ { 0, 6338, 26, 12, 1, UNI_JOINC } /* joincontrol=y */,
+ { 2, 9691, 6206, 4, 12, UNI_CYRILLICEXTB } /* blk=cyrillicextb */,
+ { 31, 9469, 6627, 3, 11, UNI_PLAYINGCARDS } /* inplayingcards */,
+ { 3, 9747, 10055, 4, 4, UNI_DIA } /* dia=true */,
+ { 41, 8973, 5059, 6, 15, UNI_INZANABAZARSQUARE } /* block=zanabazarsquare */,
+ { 0, 7646, 0, 9, 0, UNI_ARABICPFB } /* arabicpfb */,
+ { 2, 185, 5823, 2, 12, UNI_GRBASE } /* isgraphemebase */,
+ { 19, 9711, 7923, 4, 2, UNI_CCC__11 } /* ccc=11 */,
+ { 3, 5875, 7290, 13, 10, UNI_JG__DALATHRISH } /* joininggroup=dalathrish */,
+ { 0, 9711, 9310, 5, 4, UNI_CCC__16 } /* ccc=ccc16 */,
+ { 6, 9691, 8810, 4, 7, UNI_INSOYOMBO } /* blk=soyombo */,
+ { 1, 3877, 9723, 17, 4, UNI_CPRT } /* scriptextensions=cprt */,
+ { 0, 6972, 0, 11, 0, UNI_NAND } /* nandinagari */,
+ { 0, 10244, 1466, 3, 13, UNI_M } /* gc=combiningmark */,
+ { 2, 10095, 0, 4, 0, UNI_XPEO } /* xpeo */,
+ { 51, 10253, 1528, 3, 9, UNI_LB__SG } /* lb=surrogate */,
+ { 0, 6862, 0, 11, 0, UNI_KATAKANAEXT } /* katakanaext */,
+ { 2, 1418, 9330, 25, 4, UNI_CCC__20 } /* canonicalcombiningclass=ccc20 */,
+ { 0, 8973, 7570, 6, 10, UNI_INWARANGCITI } /* block=warangciti */,
+ { 0, 10268, 5732, 3, 6, UNI_NV__100000 } /* nv=100000 */,
+ { 5, 3265, 0, 11, 0, UNI_GEORGIANSUP } /* georgiansup */,
+ { 2, 8973, 862, 6, 6, UNI_ARROWS } /* block=arrows */,
+ { 11, 3877, 7570, 17, 4, UNI_WARA } /* scriptextensions=wara */,
+ { 1, 9763, 18, 4, 2, UNI_RI } /* gcb=ri */,
+ { 1, 6083, 9635, 13, 4, UNI_NV__5_SLASH_12 } /* numericvalue=5/12 */,
+ { 1, 3409, 1, 18, 1, -UNI_RI } /* regionalindicator=n */,
+ { 1, 9691, 8845, 4, 7, UNI_INTAIVIET } /* blk=taiviet */,
+ { 9, 8973, 6195, 7, 11, UNI_CYRILLICEXTA } /* block=cyrillicexta */,
+ { 0, 9476, 1924, 3, 6, UNI_SC__ZYYY } /* sc=common */,
+ { 4, 1538, 2573, 24, 20, UNI_INPC__TOPANDBOTTOMANDRIGHT } /* indicpositionalcategory=topandbottomandright */,
+ { 0, 10553, 4411, 3, 8, UNI_SYRIACSUP } /* issyriacsup */,
+ { 3, 7190, 0, 10, 0, UNI_ARABICEXTA } /* arabicexta */,
+ { 1, 263, 0, 2, 0, UNI_SM } /* sm */,
+ { 0, 3877, 10095, 17, 4, UNI_XPEO } /* scriptextensions=xpeo */,
+ { 8, 9979, 8388, 4, 4, UNI_JAVA } /* scx=java */,
+ { 0, 1858, 10355, 22, 3, UNI_CWT } /* changeswhentitlecased=yes */,
+ { 6, 6083, 8076, 13, 8, UNI_NV__3_SLASH_8 } /* numericvalue=3.75e-01 */,
+ { 6, 3157, 1026, 18, 2, -UNI_EBASE } /* emojimodifierbase=no */,
+ { 2, 8973, 5836, 6, 13, UNI_GREEKEXT } /* block=greekextended */,
+ { 3, 9691, 868, 4, 11, UNI_PHONETICEXT } /* blk=phoneticext */,
+ { 10, 7467, 8156, 3, 3, UNI_IN__6_DOT_2 } /* in=6.2 */,
+ { 10, 9711, 9675, 4, 3, UNI_CCC__202 } /* ccc=atb */,
+ { 0, 185, 1925, 3, 21, UNI_INDICNUMBERFORMS } /* iscommonindicnumberforms */,
+ { 9, 5875, 9480, 14, 4, UNI_JG__KHAPH } /* joininggroup=khaph */,
+ { 1, 7360, 3409, 10, 17, UNI_RI } /* linebreak=regionalindicator */,
+ { 5, 3877, 9207, 17, 6, UNI_THAA } /* scriptextensions=thaana */,
+ { 0, 10566, 8875, 4, 5, UNI_ZZZZ } /* isunknown */,
+ { 6, 10510, 7580, 6, 4, UNI_XPOSIXWORD } /* xposixword */,
+ { 2, 7460, 9596, 10, 3, UNI_IN__2_DOT_1 } /* presentin=2.1 */,
+ { 0, 9979, 8284, 4, 8, UNI_BASS } /* scx=bassavah */,
+ { 0, 6340, 721, 3, 15, UNI_CUNEIFORMNUMBERS } /* incuneiformnumbers */,
+ { 0, 8831, 0, 7, 0, UNI_TGLG } /* tagalog */,
+ { 0, 8973, 2311, 6, 7, UNI_INSINHALA } /* block=sinhala */,
+ { 2, 10268, 8913, 3, 2, UNI_NV__40 } /* nv=40 */,
+ { 0, 10268, 10130, 3, 3, UNI_NV__1_SLASH_7 } /* nv=1/7 */,
+ { 0, 6083, 7611, 13, 8, UNI_NV__1_SLASH_2 } /* numericvalue=5.00e-01 */,
+ { 0, 10229, 1295, 3, 5, UNI_DT__SUP } /* dt=super */,
+ { 8, 8551, 0, 7, 0, UNI_CJKEXTB } /* cjkextb */,
+ { 12, 9476, 9509, 3, 5, UNI_OGAM } /* sc=ogham */,
+ { 1, 6083, 10127, 13, 3, UNI_NV__1_SLASH_5 } /* numericvalue=1/5 */,
+ { 3, 10229, 6530, 3, 8, UNI_DT__NONCANON } /* dt=noncanon */,
+ { 10, 2206, 18, 21, 2, UNI_RI } /* graphemeclusterbreak=ri */,
+ { 10, 8859, 0, 7, 0, UNI_TIBT } /* tibetan */,
+ { 1, 9269, 26, 5, 1, UNI_POSIXXDIGIT } /* ahex=y */,
+ { 2, 8973, 4984, 6, 15, UNI_TAMILSUP } /* block=tamilsupplement */,
+ { 1, 1852, 36, 6, 1, UNI_CASED } /* cased=t */,
+ { 1, 4157, 3284, 3, 3, UNI_IDSB } /* isidsb */,
+ { 0, 9979, 9651, 4, 4, UNI_AGHB } /* scx=aghb */,
+ { 12, 9189, 0, 6, 0, UNI_sterm_values_index } /* sterm= */,
+ { 0, 4972, 1870, 3, 4, UNI_TITLE } /* istitle */,
+ { 11, 8973, 3481, 6, 11, UNI_TAIXUANJING } /* block=taixuanjing */,
+ { 5, 185, 3193, 2, 4, UNI_ETHI } /* isethi */,
+ { 0, 7218, 3979, 3, 7, UNI_INBOPOMOFO } /* inbopomofo */,
+ { 1, 10510, 97, 6, 5, UNI_XPOSIXALPHA } /* xposixalpha */,
+ { 0, 9679, 0, 4, 0, UNI_AVST } /* avst */,
+ { 56, 8973, 1903, 7, 18, UNI_CJKCOMPATIDEOGRAPHS } /* block=cjkcompatideographs */,
+ { 0, 9979, 8356, 4, 8, UNI_HIRA } /* scx=hiragana */,
+ { 25, 9755, 0, 4, 0, UNI_DSRT } /* dsrt */,
+ { 5, 10268, 7611, 3, 8, UNI_NV__1_SLASH_2 } /* nv=5.00e-01 */,
+ { 39, 4744, 6542, 15, 12, UNI_IDENTIFIERTYPE__NOTCHARACTER } /* identifiertype=notcharacter */,
+ { 8, 9979, 9715, 4, 4, UNI_CHRS } /* scx=chrs */,
+ { 2, 10023, 0, 4, 0, UNI_TAML } /* taml */,
+ { 0, 4598, 1634, 4, 21, UNI_GEOMETRICSHAPESEXT } /* ingeometricshapesextended */,
+ { 4, 8782, 9887, 7, 4, UNI_NBAT } /* script=nbat */,
+ { 1, 9549, 9454, 5, 5, -UNI_XIDS } /* xids=false */,
+ { 49, 10352, 1219, 3, 2, UNI_WB__KA } /* wb=ka */,
+ { 2, 7300, 1026, 10, 2, -UNI_DIA } /* diacritic=no */,
+ { 4, 9476, 8635, 3, 7, UNI_SC__HANO } /* sc=hanunoo */,
+ { 0, 9691, 8838, 4, 7, UNI_INTAITHAM } /* blk=taitham */,
+ { 22, 8973, 3624, 8, 15, UNI_INCAUCASIANALBANIAN } /* block=caucasianalbanian */,
+ { 1, 3283, 1026, 18, 2, -UNI_IDSB } /* idsbinaryoperator=no */,
+ { 0, 570, 0, 30, 0, UNI_CJKEXTC } /* cjkunifiedideographsextensionc */,
+ { 0, 3103, 0, 6, 0, UNI_COPT } /* coptic */,
+ { 1, 8593, 3, 7, 1, -UNI_COMPEX } /* compex=f */,
+ { 0, 9469, 473, 3, 2, UNI_PUA } /* inpua */,
+ { 16, 1674, 0, 4, 0, UNI_JAMO } /* jamo */,
+ { 4, 8973, 721, 7, 29, UNI_CUNEIFORMNUMBERS } /* block=cuneiformnumbersandpunctuation */,
+ { 1, 1538, 3018, 24, 13, UNI_INPC__BOTTOMANDLEFT } /* indicpositionalcategory=bottomandleft */,
+ { 0, 21, 7330, 2, 10, UNI_INKHAROSHTHI } /* inkharoshthi */,
+ { 1, 3877, 7016, 17, 11, UNI_HMNG } /* scriptextensions=pahawhhmong */,
+ { 1, 7560, 10355, 10, 3, UNI_XPOSIXUPPER } /* uppercase=yes */,
+ { 3, 10247, 6422, 3, 12, UNI_JG__MALAYALAMNGA } /* jg=malayalamnga */,
+ { 14, 9219, 1026, 6, 2, -UNI_XPOSIXUPPER } /* upper=no */,
+ { 0, 185, 3826, 2, 10, UNI_MANI } /* ismanichaean */,
{ 0, 9476, 18, 6, 1, UNI_KHAR } /* sc=khar */,
- { 0, 9213, 26, 6, 1, UNI_UIDEO } /* uideo=y */,
- { 1, 3877, 9294, 17, 5, UNI_BUHD } /* scriptextensions=buhid */,
- { 93, 6338, 36, 12, 1, UNI_JOINC } /* joincontrol=t */,
- { 8, 9979, 6590, 4, 12, UNI_HUNG } /* scx=oldhungarian */,
- { 0, 7460, 8148, 10, 3, UNI_IN__6 } /* presentin=6.0 */,
- { 19, 1553, 32, 9, 2, UNI__PERL_SURROGATE } /* category=cs */,
- { 2, 6083, 10208, 13, 3, UNI_NV__7_SLASH_8 } /* numericvalue=7/8 */,
- { 0, 8782, 8804, 8, 3, UNI_SIDD } /* script=sidd */,
- { 0, 185, 4504, 2, 5, UNI_BAMU } /* isbamum */,
- { 0, 185, 8594, 3, 5, UNI_COMPEX } /* iscompex */,
- { 0, 6083, 7916, 13, 8, UNI_NV__1_SLASH_10 } /* numericvalue=1.00e-01 */,
- { 0, 10217, 6602, 3, 12, UNI_BC__ON } /* bc=otherneutral */,
+ { 0, 3877, 8804, 18, 3, UNI_SIDD } /* scriptextensions=sidd */,
+ { 3, 9711, 9350, 5, 4, UNI_CCC__24 } /* ccc=ccc24 */,
+ { 5, 8955, 36, 6, 1, UNI_XPOSIXALPHA } /* alpha=t */,
+ { 1, 3877, 2433, 17, 10, UNI_GLAG } /* scriptextensions=glagolitic */,
+ { 32, 8973, 5368, 6, 14, UNI_LISUSUP } /* block=lisusupplement */,
+ { 4, 1, 0, 1, 0, UNI_N } /* n */,
+ { 1, 10553, 0, 7, 0, UNI_XPOSIXSPACE } /* isspace */,
+ { 0, 9979, 9939, 4, 4, UNI_MIAO } /* scx=plrd */,
+ { 7, 4410, 0, 6, 0, UNI_SYRC } /* syriac */,
+ { 1, 4744, 8733, 15, 7, UNI_IDENTIFIERTYPE__NOTNFKC } /* identifiertype=notnfkc */,
+ { 1, 8782, 9687, 7, 4, UNI_BHKS } /* script=bhks */,
+ { 3, 1553, 10396, 9, 2, UNI_ZL } /* category=zl */,
+ { 0, 3406, 36, 3, 1, UNI_CE } /* ce=t */,
+ { 6, 185, 134, 2, 4, UNI_M } /* ismark */,
+ { 3, 7230, 10274, 10, 3, UNI_BC__PDF } /* bidiclass=pdf */,
+ { 12, 5758, 10355, 13, 3, UNI_BIDIM } /* bidimirrored=yes */,
{ 0, 2012, 10355, 22, 3, UNI_LOE } /* logicalorderexception=yes */,
- { 2, 7467, 10325, 3, 3, UNI_IN__6 } /* in=v60 */,
- { 4, 3049, 0, 11, 0, UNI_CHEROKEESUP } /* cherokeesup */,
- { 1, 2557, 983, 5, 24, UNI_ALPHABETICPF } /* inalphabeticpresentationforms */,
- { 5, 9439, 3, 5, 1, -UNI_DASH } /* dash=f */,
- { 6, 9476, 7430, 3, 10, UNI_SOGO } /* sc=oldsogdian */,
- { 13, 10510, 9424, 6, 5, UNI_XPOSIXCNTRL } /* xposixcntrl */,
- { 0, 9647, 7983, 4, 1, UNI_AGE__7 } /* age=7 */,
- { 0, 10253, 4594, 3, 15, UNI_LB__CB } /* lb=contingentbreak */,
- { 0, 10396, 0, 2, 0, UNI_ZL } /* zl */,
- { 0, 1990, 9225, 22, 6, UNI_INSC__VIRAMA } /* indicsyllabiccategory=virama */,
- { 0, 6340, 511, 3, 19, UNI_CJK } /* incjkunifiedideographs */,
+ { 0, 9691, 2746, 4, 19, UNI_JAMOEXTA } /* blk=hanguljamoextendeda */,
+ { 0, 9803, 7889, 4, 9, UNI_GCB__V } /* hst=voweljamo */,
+ { 84, 1880, 1026, 22, 2, -UNI_CWU } /* changeswhenuppercased=no */,
+ { 8, 1345, 0, 25, 0, UNI_SYMBOLSFORLEGACYCOMPUTING } /* symbolsforlegacycomputing */,
+ { 1, 6083, 7916, 13, 8, UNI_NV__1_SLASH_10 } /* numericvalue=1.00e-01 */,
+ { 1, 3877, 1014, 17, 5, UNI_GREK } /* scriptextensions=greek */,
+ { 0, 6340, 6183, 3, 11, UNI_CHESSSYMBOLS } /* inchesssymbols */,
+ { 4, 9647, 9596, 4, 3, UNI_AGE__2_DOT_1 } /* age=2.1 */,
+ { 0, 9474, 9225, 5, 6, UNI_INSC__VIRAMA } /* insc=virama */,
+ { 2, 9545, 10355, 4, 3, UNI_IDC } /* idc=yes */,
+ { 24, 10247, 10241, 3, 3, UNI_JG__GAF } /* jg=gaf */,
+ { 12, 2746, 0, 19, 0, UNI_JAMOEXTA } /* hanguljamoextendeda */,
+ { 0, 185, 9231, 2, 6, UNI_WCHO } /* iswancho */,
+ { 25, 2248, 7521, 3, 9, UNI_SUPARROWSA } /* insuparrowsa */,
+ { 5, 9711, 9385, 5, 4, UNI_CCC__31 } /* ccc=ccc31 */,
+ { 0, 185, 3894, 2, 16, UNI_STERM } /* issentenceterminal */,
+ { 1, 9691, 8824, 4, 7, UNI_SUPPUAB } /* blk=suppuab */,
+ { 8, 8973, 1586, 6, 23, UNI_BYZANTINEMUSIC } /* block=byzantinemusicalsymbols */,
+ { 0, 8973, 868, 6, 28, UNI_PHONETICEXTSUP } /* block=phoneticextensionssupplement */,
+ { 0, 9691, 780, 4, 30, UNI_SYMBOLSANDPICTOGRAPHSEXTA } /* blk=symbolsandpictographsextendeda */,
+ { 0, 9476, 9107, 5, 4, UNI_SC__KHOJ } /* sc=khojki */,
+ { 0, 7230, 10262, 10, 3, UNI_BC__LRO } /* bidiclass=lro */,
+ { 0, 5592, 26, 14, 1, UNI_PATSYN } /* patternsyntax=y */,
+ { 16, 6937, 207, 6, 11, UNI_MISCPICTOGRAPHS } /* inmiscpictographs */,
+ { 18, 9691, 8452, 4, 8, UNI_SPECIALS } /* blk=specials */,
+ { 1, 10268, 8252, 3, 8, UNI_NV__11_SLASH_12 } /* nv=9.17e-01 */,
+ { 3, 8973, 2433, 6, 13, UNI_GLAGOLITICSUP } /* block=glagoliticsup */,
+ { 0, 9691, 4864, 4, 15, UNI_MISCPICTOGRAPHS } /* blk=miscpictographs */,
+ { 0, 185, 3, 3, 1, UNI_CF } /* iscf */,
+ { 0, 8702, 1036, 4, 9, UNI_ENCLOSEDCJK } /* inenclosedcjk */,
+ { 8, 6083, 5732, 13, 11, UNI_NV__10000000000 } /* numericvalue=10000000000 */,
+ { 2, 8973, 1586, 6, 14, UNI_BYZANTINEMUSIC } /* block=byzantinemusic */,
+ { 0, 6340, 601, 3, 29, UNI_CJKEXTD } /* incjkunifiedideographsextensiond */,
+ { 2, 9691, 924, 4, 28, UNI_SUPPUAB } /* blk=supplementaryprivateuseareab */,
+ { 1, 1418, 9016, 25, 4, UNI_CCC__13 } /* canonicalcombiningclass=ccc13 */,
+ { 0, 1553, 108, 10, 5, UNI_S } /* category=symbol */,
+ { 17, 2248, 1725, 3, 22, UNI_SUPPUNCTUATION } /* insupplementalpunctuation */,
+ { 1, 8973, 7673, 6, 9, UNI_EMOTICONS } /* block=emoticons */,
+ { 0, 2003, 7, 10, 1, UNI_CASEDLETTER } /* category=lc */,
+ { 2, 43, 0, 16, 0, UNI_CJKCOMPAT } /* cjkcompatibility */,
+ { 0, 6083, 9254, 13, 4, UNI_NV__1_SLASH_32 } /* numericvalue=1/32 */,
+ { 11, 8973, 2332, 6, 21, UNI_YIJING } /* block=yijinghexagramsymbols */,
+ { 1, 8444, 10355, 8, 3, UNI_RADICAL } /* radical=yes */,
+ { 3, 4074, 1923, 16, 2, UNI_PC } /* generalcategory=pc */,
+ { 0, 9476, 9117, 3, 6, UNI_LEPC } /* sc=lepcha */,
+ { 1, 1592, 3708, 3, 16, UNI_ETHIOPICEXTA } /* inethiopicextendeda */,
+ { 0, 185, 3193, 2, 18, UNI_ETHIOPICSUP } /* isethiopicsupplement */,
+ { 17, 6083, 0, 13, 0, UNI_nv_values_index } /* numericvalue= */,
+ { 1, 9439, 10355, 5, 3, UNI_DASH } /* dash=yes */,
+ { 24, 3877, 2493, 17, 20, UNI_HMNP } /* scriptextensions=nyiakengpuachuehmong */,
+ { 0, 185, 6972, 2, 11, UNI_NAND } /* isnandinagari */,
+ { 0, 9691, 7200, 4, 10, UNI_ARABICEXTB } /* blk=arabicextb */,
+ { 1, 7908, 1, 8, 1, -UNI_IDS } /* idstart=n */,
+ { 0, 185, 6950, 2, 11, UNI_MYANMAREXTA } /* ismyanmarexta */,
+ { 20, 10268, 8116, 3, 8, UNI_NV__3_SLASH_64 } /* nv=4.69e-02 */,
+ { 40, 6083, 7947, 13, 2, UNI_NV__21 } /* numericvalue=21 */,
+ { 0, 185, 4043, 3, 15, UNI_CYPRIOTSYLLABARY } /* iscypriotsyllabary */,
+ { 0, 1632, 0, 15, 0, UNI_GEOMETRICSHAPES } /* geometricshapes */,
+ { 0, 5875, 7038, 13, 11, UNI_JG__ROHINGYAYEH } /* joininggroup=rohingyayeh */,
+ { 1, 185, 2433, 2, 13, UNI_GLAGOLITICSUP } /* isglagoliticsup */,
+ { 0, 9711, 8102, 4, 2, UNI_CCC__17 } /* ccc=17 */,
+ { 0, 2248, 2937, 3, 11, UNI_SUNDANESESUP } /* insundanesesup */,
+ { 0, 9959, 0, 4, 0, UNI_RJNG } /* rjng */,
+ { 7, 9087, 10055, 6, 4, UNI_JOINC } /* joinc=true */,
+ { 0, 9476, 8468, 3, 4, UNI_SC__TAGB } /* sc=tagb */,
+ { 1, 5875, 6906, 13, 11, UNI_JG__MALAYALAMJA } /* joininggroup=malayalamja */,
+ { 2, 10217, 8, 3, 2, UNI_BC__AN } /* bc=an */,
+ { 0, 8782, 10031, 7, 4, UNI_TFNG } /* script=tfng */,
+ { 7, 8782, 8607, 7, 7, UNI_ELBA } /* script=elbasan */,
+ { 8, 185, 3139, 2, 10, UNI_DEVA } /* isdevanagari */,
+ { 1, 9123, 10055, 6, 4, UNI_XPOSIXLOWER } /* lower=true */,
+ { 5, 2553, 26, 20, 1, UNI_TERM } /* terminalpunctuation=y */,
+ { 0, 185, 6290, 2, 12, UNI_GONG } /* isgunjalagondi */,
+ { 3, 6083, 8100, 13, 8, UNI_NV__5_SLASH_12 } /* numericvalue=4.17e-01 */,
+ { 17, 2808, 7648, 4, 7, UNI_ARABICPFB } /* inarabicpfb */,
+ { 20, 9691, 1219, 4, 26, UNI_KATAKANAEXT } /* blk=katakanaphoneticextensions */,
+ { 7, 9907, 0, 4, 0, UNI_OLCK } /* olck */,
+ { 7, 2248, 0, 21, 0, UNI_PRTI } /* inscriptionalparthian */,
+ { 0, 568, 0, 2, 0, UNI_NB } /* nb */,
+ { 1, 6158, 1026, 12, 2, -UNI_BIDIC } /* bidicontrol=no */,
+ { 0, 1067, 0, 2, 0, UNI_CASEDLETTER } /* lc */,
+ { 3, 185, 4410, 2, 16, UNI_SYRIACSUP } /* issyriacsupplement */,
+ { 2, 3877, 8292, 17, 4, UNI_BUGI } /* scriptextensions=bugi */,
+ { 0, 5875, 6015, 13, 3, UNI_JG__TAW } /* joininggroup=taw */,
+ { 0, 9691, 2311, 4, 7, UNI_INSINHALA } /* blk=sinhala */,
+ { 0, 6937, 843, 6, 25, UNI_MISCARROWS } /* inmiscellaneoussymbolsandarrows */,
+ { 0, 8782, 7570, 7, 10, UNI_WARA } /* script=warangciti */,
+ { 3, 4894, 10355, 15, 3, UNI_NFKCQC__Y } /* nfkcquickcheck=yes */,
+ { 0, 9461, 4346, 3, 5, UNI_SB__XX } /* sb=other */,
+ { 1, 10268, 8028, 3, 6, UNI_NV__200000 } /* nv=200000 */,
+ { 0, 2206, 4346, 21, 5, UNI_GCB__XX } /* graphemeclusterbreak=other */,
+ { 1, 10553, 1538, 3, 3, UNI_SIND } /* issind */,
+ { 0, 9647, 8148, 4, 3, UNI_AGE__6 } /* age=6.0 */,
+ { 4, 9476, 8740, 3, 7, UNI_OLCK } /* sc=olchiki */,
+ { 0, 9476, 8537, 3, 4, UNI_SC__BENG } /* sc=beng */,
+ { 16, 8973, 6590, 6, 12, UNI_INOLDHUNGARIAN } /* block=oldhungarian */,
+ { 5, 2292, 0, 2, 0, UNI_PD } /* pd */,
+ { 1, 1193, 0, 26, 0, UNI_HALFANDFULLFORMS } /* halfwidthandfullwidthforms */,
+ { 0, 10253, 1141, 3, 26, UNI_LB__CJ } /* lb=conditionaljapanesestarter */,
+ { 1, 10516, 3623, 3, 3, UNI_PAUC } /* ispauc */,
+ { 0, 7467, 7923, 3, 2, UNI_IN__11 } /* in=11 */,
+ { 27, 9077, 3, 4, 1, -UNI_EXT } /* ext=f */,
+ { 0, 9461, 70, 3, 2, UNI_SB__UP } /* sb=up */,
+ { 0, 7218, 3979, 3, 15, UNI_BOPOMOFOEXT } /* inbopomofoextended */,
+ { 0, 3877, 3936, 18, 3, UNI_SGNW } /* scriptextensions=sgnw */,
+ { 4, 5088, 10355, 14, 3, UNI_POSIXXDIGIT } /* asciihexdigit=yes */,
+ { 0, 1990, 9289, 22, 5, UNI_INSC__BINDU } /* indicsyllabiccategory=bindu */,
+ { 8, 10244, 401, 3, 6, UNI_CF } /* gc=format */,
+ { 0, 9803, 0, 4, 0, UNI_hst_values_index } /* hst= */,
+ { 0, 10247, 4834, 3, 15, UNI_JG__MANICHAEANZAYIN } /* jg=manichaeanzayin */,
+ { 2, 8973, 6614, 6, 12, UNI_PHAISTOS } /* block=phaistosdisc */,
+ { 3, 10268, 10366, 3, 2, UNI_NV__46 } /* nv=46 */,
+ { 0, 9549, 10355, 5, 3, UNI_XIDS } /* xids=yes */,
+ { 6, 6340, 220, 4, 31, UNI_DIACRITICALSEXT } /* incombiningdiacriticalmarksextended */,
+ { 0, 9711, 8901, 4, 3, UNI_CCC__216 } /* ccc=216 */,
+ { 1, 185, 6752, 2, 6, UNI_DOMINO } /* isdomino */,
+ { 5, 9484, 0, 4, 0, UNI_LIMB } /* limb */,
+ { 1, 8973, 3826, 6, 10, UNI_INMANICHAEAN } /* block=manichaean */,
+ { 2, 7297, 5669, 3, 3, UNI_HEBR } /* ishebr */,
+ { 1, 9691, 4410, 4, 9, UNI_SYRIACSUP } /* blk=syriacsup */,
+ { 0, 1990, 5158, 22, 14, UNI_INSC__CONSONANTFINAL } /* indicsyllabiccategory=consonantfinal */,
+ { 3, 6083, 8949, 13, 4, UNI_NV__9000 } /* numericvalue=9000 */,
+ { 2, 1115, 10355, 26, 3, UNI_CWKCF } /* changeswhennfkccasefolded=yes */,
+ { 3, 6083, 9249, 13, 5, UNI_NV__1_SLASH_160 } /* numericvalue=1/160 */,
+ { 0, 185, 44, 3, 8, UNI_CJKCOMPAT } /* iscjkcompat */,
+ { 6, 10352, 10394, 3, 2, UNI_WB__XX } /* wb=xx */,
+ { 27, 9691, 4090, 4, 11, UNI_GEORGIANEXT } /* blk=georgianext */,
+ { 0, 9691, 447, 4, 32, UNI_IDEOGRAPHICSYMBOLS } /* blk=ideographicsymbolsandpunctuation */,
+ { 6, 6314, 10055, 12, 4, UNI_IDEO } /* ideographic=true */,
+ { 0, 3139, 0, 18, 0, UNI_DEVANAGARIEXT } /* devanagariextended */,
+ { 0, 9979, 9643, 4, 4, UNI_ADLM } /* scx=adlm */,
+ { 0, 185, 9843, 2, 4, UNI_LINB } /* islinb */,
+ { 68, 185, 3157, 2, 13, UNI_EMOD } /* isemojimodifier */,
+ { 0, 185, 1467, 3, 12, UNI_M } /* iscombiningmark */,
+ { 0, 9691, 79, 4, 6, UNI_INARABIC } /* blk=arabic */,
+ { 2, 185, 4504, 2, 15, UNI_BAMUMSUP } /* isbamumsupplement */,
+ { 0, 2304, 8755, 3, 6, UNI_OSMA } /* isosmanya */,
+ { 3, 21, 9265, 3, 4, UNI_INADLAM } /* inadlam */,
+ { 5, 10349, 0, 3, 0, UNI_vs_values_index } /* vs= */,
+ { 4, 5875, 5704, 13, 14, UNI_JG__HAMZAONHEHGOAL } /* joininggroup=tehmarbutagoal */,
+ { 14, 4598, 4092, 4, 14, UNI_GEORGIANEXT } /* ingeorgianextended */,
+ { 1, 9691, 1902, 4, 22, UNI_CJKCOMPATIDEOGRAPHSSUP } /* blk=cjkcompatideographssup */,
+ { 0, 5662, 1195, 14, 2, UNI_LB__LF } /* sentencebreak=lf */,
+ { 3, 3945, 26, 17, 1, UNI_UIDEO } /* unifiedideograph=y */,
+ { 1, 9476, 9514, 3, 5, UNI_SC__ORYA } /* sc=oriya */,
+ { 25, 8663, 0, 7, 0, UNI_LINA } /* lineara */,
+ { 2, 1218, 0, 2, 0, UNI_SK } /* sk */,
+ { 7, 9647, 8036, 4, 3, UNI_AGE__3_DOT_1 } /* age=3.1 */,
+ { 16, 9476, 9883, 3, 4, UNI_NARB } /* sc=narb */,
+ { 18, 8782, 8600, 7, 7, UNI_DSRT } /* script=deseret */,
+ { 1, 9979, 10047, 4, 4, UNI_TNSA } /* scx=tnsa */,
+ { 26, 9270, 3, 4, 1, -UNI_XPOSIXXDIGIT } /* hex=f */,
+ { 1, 3121, 1254, 18, 7, UNI_DT__INIT } /* decompositiontype=initial */,
+ { 1, 3877, 7501, 18, 3, UNI_SAUR } /* scriptextensions=saur */,
+ { 1, 8973, 4474, 6, 15, UNI_ARABICEXTA } /* block=arabicextendeda */,
+ { 1, 6083, 8943, 13, 4, UNI_NV__8000 } /* numericvalue=8000 */,
{ 3, 9153, 26, 6, 1, UNI_NFCQC__Y } /* nfcqc=y */,
- { 2, 118, 2250, 4, 19, UNI_ININSCRIPTIONALPARTHIAN } /* ininscriptionalparthian */,
- { 0, 3877, 9879, 17, 4, UNI_MYMR } /* scriptextensions=mymr */,
- { 1, 185, 6362, 2, 5, UNI_KHMR } /* iskhmer */,
- { 0, 8961, 36, 6, 1, UNI_BIDIC } /* bidic=t */,
- { 11, 10268, 5732, 3, 2, UNI_NV__10 } /* nv=10 */,
- { 32, 9711, 9422, 4, 2, UNI_CCC__91 } /* ccc=91 */,
- { 0, 9171, 0, 5, 0, UNI__PERL_PATWS } /* patws */,
- { 0, 3877, 7863, 18, 8, UNI_SAMR } /* scriptextensions=samaritan */,
- { 0, 1189, 2101, 3, 14, UNI_TRANSPORTANDMAP } /* intransportandmap */,
- { 38, 5875, 4829, 13, 3, UNI_JG__SAD } /* joininggroup=sad */,
- { 0, 7862, 0, 9, 0, UNI_SAMR } /* samaritan */,
- { 0, 10553, 4411, 3, 5, UNI_SYRC } /* issyriac */,
- { 25, 21, 8531, 3, 6, UNI_INAVESTAN } /* inavestan */,
- { 1, 2803, 0, 3, 0, UNI_IDS } /* ids */,
- { 2, 6158, 26, 12, 1, UNI_BIDIC } /* bidicontrol=y */,
- { 39, 1418, 3588, 24, 17, UNI_WB__EB } /* canonicalcombiningclass=attachedbelowleft */,
- { 32, 5758, 1, 13, 1, -UNI_BIDIM } /* bidimirrored=n */,
- { 34, 9691, 8817, 4, 7, UNI_SUPPUAA } /* blk=suppuaa */,
- { 3, 9691, 8677, 4, 7, UNI_INMANDAIC } /* blk=mandaic */,
- { 0, 10553, 10004, 3, 3, UNI_SOGO } /* issogo */,
- { 0, 1418, 9407, 24, 2, UNI_CCC__35 } /* canonicalcombiningclass=35 */,
- { 0, 2312, 1515, 3, 23, UNI_HIGHPUSURROGATES } /* inhighprivateusesurrogates */,
- { 1, 8782, 7105, 8, 10, UNI_SC__SYLO } /* script=sylotinagri */,
- { 17, 10229, 3463, 3, 5, UNI_DT__SML } /* dt=small */,
- { 1, 8973, 7826, 6, 9, UNI_INOLDTURKIC } /* block=oldturkic */,
- { 9, 9284, 0, 5, 0, UNI_BATK } /* batak */,
- { 8, 9699, 0, 4, 0, UNI_BUHD } /* buhd */,
- { 26, 6083, 8084, 13, 8, UNI_NV__3_SLASH_80 } /* numericvalue=3.75e-02 */,
- { 1, 2012, 0, 22, 0, UNI_loe_values_index } /* logicalorderexception= */,
- { 0, 9711, 9365, 5, 4, UNI_CCC__27 } /* ccc=ccc27 */,
- { 0, 2185, 10055, 21, 4, UNI_EXTPICT } /* extendedpictographic=true */,
- { 1, 2206, 1195, 21, 2, UNI_LB__LF } /* graphemeclusterbreak=lf */,
- { 17, 120, 9070, 3, 5, UNI_INGOTHIC } /* ingothic */,
- { 4, 9439, 0, 5, 0, UNI_dash_values_index } /* dash= */,
- { 0, 10217, 0, 4, 0, UNI_BC__B } /* bc=b */,
- { 1, 9476, 1678, 3, 5, UNI_SC__LATN } /* sc=latin */,
- { 1, 9691, 3624, 4, 4, UNI_UCAS } /* blk=ucas */,
- { 10, 7467, 10211, 3, 3, UNI_IN__9 } /* in=9.0 */,
- { 0, 7467, 7975, 3, 1, UNI_IN__6 } /* in=6 */,
- { 1, 8979, 0, 4, 0, UNI_CARI } /* cari */,
- { 0, 6674, 1, 12, 1, -UNI_XIDC } /* xidcontinue=n */,
- { 0, 9190, 1, 5, 1, -UNI_TERM } /* term=n */,
- { 17, 8782, 7420, 7, 10, UNI_XPEO } /* script=oldpersian */,
- { 32, 7218, 8293, 3, 7, UNI_INBUGINESE } /* inbuginese */,
- { 12, 8967, 3, 6, 1, -UNI_BIDIM } /* bidim=f */,
- { 27, 8782, 2269, 7, 11, UNI_MTEI } /* script=meeteimayek */,
- { 0, 9979, 2632, 4, 4, UNI_BRAH } /* scx=brah */,
- { 0, 5662, 70, 14, 2, UNI_SB__UP } /* sentencebreak=up */,
- { 5, 1553, 3373, 9, 18, UNI_ZP } /* category=paragraphseparator */,
- { 0, 10247, 7177, 3, 3, UNI_JG__FEH } /* jg=feh */,
- { 1, 8973, 5256, 6, 7, UNI_KANASUP } /* block=kanasup */,
- { 9, 1880, 10355, 22, 3, UNI_CWU } /* changeswhenuppercased=yes */,
- { 169, 7467, 10307, 3, 3, UNI_IN__3_DOT_2 } /* in=v32 */,
- { 4, 9476, 9524, 3, 5, UNI_RUNR } /* sc=runic */,
- { 0, 185, 10119, 2, 4, UNI_ZYYY } /* iszyyy */,
- { 1, 7467, 10175, 3, 3, UNI_IN__3_DOT_2 } /* in=3.2 */,
- { 9, 6302, 0, 6, 0, UNI_HEBR } /* hebrew */,
- { 34, 9979, 1177, 5, 3, UNI_SORA } /* scx=sora */,
- { 0, 9763, 0, 4, 0, UNI_gcb_values_index } /* gcb= */,
- { 0, 8973, 3481, 6, 11, UNI_TAIXUANJING } /* block=taixuanjing */,
- { 0, 7682, 3, 9, 1, -UNI_EXT } /* extender=f */,
- { 1, 185, 4170, 2, 6, UNI_LATIN1 } /* islatin1 */,
- { 2, 10253, 5382, 3, 14, UNI_LB__BK } /* lb=mandatorybreak */,
- { 0, 8782, 5227, 7, 4, UNI_CHAM } /* script=cham */,
- { 14, 1553, 4026, 9, 16, UNI_PE } /* category=closepunctuation */,
- { 0, 7391, 3607, 4, 15, UNI_UCAS } /* iscanadiansyllabics */,
- { 6, 2206, 6895, 21, 3, UNI_LB__H3 } /* graphemeclusterbreak=lvt */,
- { 0, 24, 0, 1, 0, UNI_L } /* l */,
- { 34, 9691, 2879, 4, 9, UNI_INMONGOLIAN } /* blk=mongolian */,
- { 1, 10232, 866, 3, 1, UNI_EA__W } /* ea=w */,
- { 0, 185, 3382, 2, 9, UNI_Z } /* isseparator */,
- { 1, 118, 416, 3, 31, UNI_INIDC } /* inideographicdescriptioncharacters */,
- { 21, 1592, 3708, 3, 16, UNI_ETHIOPICEXTA } /* inethiopicextendeda */,
- { 0, 3877, 58, 17, 2, UNI_YI } /* scriptextensions=yi */,
- { 8, 7230, 427, 10, 2, UNI_BC__ES } /* bidiclass=es */,
- { 49, 5045, 1, 3, 33, UNI_UCAS } /* isunifiedcanadianaboriginalsyllabics */,
- { 31, 8973, 3050, 7, 17, UNI_CHEROKEESUP } /* block=cherokeesupplement */,
- { 0, 2808, 81, 4, 8, UNI_ARABICMATH } /* inarabicmath */,
- { 2, 1747, 0, 23, 0, UNI_ZNAMENNYMUSIC } /* znamennymusicalnotation */,
- { 0, 3193, 0, 8, 0, UNI_ETHI } /* ethiopic */,
- { 5, 3877, 8508, 17, 4, UNI_VITH } /* scriptextensions=vith */,
- { 1, 6083, 8903, 13, 2, UNI_NV__60 } /* numericvalue=60 */,
- { 1, 9476, 8300, 3, 8, UNI_SC__DUPL } /* sc=duployan */,
- { 24, 9691, 5745, 4, 13, UNI_AEGEANNUMBERS } /* blk=aegeannumbers */,
- { 14, 6083, 8901, 13, 6, UNI_NV__216000 } /* numericvalue=216000 */,
- { 0, 21, 8404, 2, 8, UNI_KANAEXTB } /* inkanaextb */,
- { 8, 7297, 9792, 3, 3, UNI_HLUW } /* ishluw */,
- { 5, 3877, 10027, 17, 4, UNI_TAVT } /* scriptextensions=tavt */,
- { 0, 7360, 6807, 10, 11, UNI_LB__EX } /* linebreak=exclamation */,
- { 0, 8782, 8799, 10, 4, UNI_SHAW } /* script=shavian */,
- { 4, 690, 0, 30, 0, UNI_CJKEXTG } /* cjkunifiedideographsextensiong */,
- { 0, 10566, 8875, 4, 5, UNI_ZZZZ } /* isunknown */,
- { 2, 9691, 7808, 4, 9, UNI_INOLDITALIC } /* blk=olditalic */,
- { 0, 3103, 0, 6, 0, UNI_COPT } /* coptic */,
- { 0, 10352, 6254, 3, 12, UNI_WB__EX } /* wb=extendnumlet */,
- { 9, 7460, 10205, 10, 3, UNI_IN__7 } /* presentin=7.0 */,
- { 1, 2808, 3964, 4, 7, UNI_ARABICSUP } /* inarabicsup */,
- { 0, 9979, 9771, 4, 4, UNI_GONM } /* scx=gonm */,
- { 0, 10217, 3427, 3, 18, UNI_BC__RLI } /* bc=righttoleftisolate */,
- { 0, 9476, 2879, 3, 9, UNI_SC__MONG } /* sc=mongolian */,
- { 0, 1418, 10142, 24, 3, UNI_CCC__202 } /* canonicalcombiningclass=202 */,
- { 28, 5875, 6686, 13, 11, UNI_JG__AFRICANNOON } /* joininggroup=africannoon */,
- { 14, 5875, 7490, 13, 10, UNI_JG__REVERSEDPE } /* joininggroup=reversedpe */,
- { 0, 10247, 4122, 3, 16, UNI_JG__HANIFIROHINGYAPA } /* jg=hanifirohingyapa */,
- { 0, 1553, 468, 9, 5, UNI_P } /* category=punct */,
- { 0, 21, 7709, 2, 9, UNI_INKHUDAWADI } /* inkhudawadi */,
- { 22, 6083, 10181, 13, 3, UNI_NV__3_SLASH_5 } /* numericvalue=3/5 */,
- { 0, 8973, 8831, 6, 7, UNI_INTAGALOG } /* block=tagalog */,
- { 0, 1167, 10355, 26, 3, UNI_DI } /* defaultignorablecodepoint=yes */,
- { 0, 185, 3139, 2, 10, UNI_DEVA } /* isdevanagari */,
- { 25, 8782, 9183, 7, 6, UNI_RJNG } /* script=rejang */,
- { 0, 7360, 496, 10, 2, UNI_LB__NU } /* linebreak=nu */,
- { 15, 3406, 10055, 3, 4, UNI_CE } /* ce=true */,
- { 0, 10283, 36, 3, 1, UNI_SD } /* sd=t */,
- { 0, 7360, 9764, 10, 2, UNI_LB__CB } /* linebreak=cb */,
- { 4, 8782, 2353, 7, 20, UNI_HLUW } /* script=anatolianhieroglyphs */,
- { 68, 10516, 5095, 7, 6, UNI_POSIXXDIGIT } /* isposixxdigit */,
- { 0, 9979, 8614, 4, 7, UNI_ELYM } /* scx=elymaic */,
- { 1, 10352, 6287, 3, 3, UNI_LB__ZWJ } /* wb=zwj */,
- { 1, 8782, 6290, 7, 12, UNI_SC__GONG } /* script=gunjalagondi */,
- { 1, 10253, 6326, 3, 12, UNI_LB__IS } /* lb=infixnumeric */,
- { 1, 7736, 0, 9, 0, UNI_LATINEXTD } /* latinextd */,
- { 0, 9691, 4924, 4, 15, UNI_NARB } /* blk=oldnortharabian */,
- { 21, 2593, 3535, 20, 18, UNI_VO__TU } /* verticalorientation=transformedupright */,
- { 32, 4972, 9535, 3, 3, UNI_TAKR } /* istakr */,
- { 1, 8705, 0, 7, 0, UNI_nfkcqc_values_index } /* nfkcqc= */,
- { 8, 3877, 9815, 17, 4, UNI_KITS } /* scriptextensions=kits */,
- { 0, 9691, 4186, 4, 16, UNI_LINEARBIDEOGRAMS } /* blk=linearbideograms */,
- { 1, 185, 8420, 2, 8, UNI_MAHJ } /* ismahajani */,
- { 49, 8782, 9237, 7, 4, UNI_SC__YEZI } /* script=yezi */,
- { 48, 1847, 0, 9, 0, UNI_XPOSIXLOWER } /* lowercase */,
- { 0, 10232, 10091, 3, 4, UNI_EA__W } /* ea=wide */,
- { 2, 3877, 9839, 17, 4, UNI_LINA } /* scriptextensions=lina */,
- { 0, 10553, 1538, 3, 3, UNI_SIND } /* issind */,
- { 9, 9476, 4924, 3, 15, UNI_NARB } /* sc=oldnortharabian */,
- { 0, 9979, 4939, 4, 15, UNI_SARB } /* scx=oldsoutharabian */,
- { 47, 10247, 5452, 3, 14, UNI_JG__MANICHAEANKAPH } /* jg=manichaeankaph */,
- { 0, 10229, 6530, 3, 8, UNI_DT__NONCANON } /* dt=noncanon */,
- { 2, 10247, 7180, 3, 10, UNI_JG__AFRICANQAF } /* jg=africanqaf */,
- { 6, 10268, 5733, 3, 1, UNI_NV__0 } /* nv=0 */,
- { 10, 5662, 34, 14, 6, UNI_SB__EX } /* sentencebreak=extend */,
- { 0, 10253, 3409, 3, 17, UNI_RI } /* lb=regionalindicator */,
- { 0, 2765, 0, 19, 0, UNI_JAMOEXTB } /* hanguljamoextendedb */,
- { 17, 7540, 0, 10, 0, UNI_SUPARROWSC } /* suparrowsc */,
- { 0, 10268, 8949, 3, 5, UNI_NV__90000 } /* nv=90000 */,
- { 16, 5875, 7177, 13, 2, UNI_JG__FE } /* joininggroup=fe */,
- { 0, 9549, 1026, 5, 2, -UNI_XIDS } /* xids=no */,
- { 1, 4170, 0, 9, 0, UNI_LATIN1 } /* latin1sup */,
- { 0, 9476, 8979, 3, 4, UNI_CARI } /* sc=cari */,
- { 0, 5676, 0, 14, 0, UNI_ZS } /* spaceseparator */,
- { 9, 1836, 10055, 22, 4, UNI_CWL } /* changeswhenlowercased=true */,
- { 0, 8705, 26, 7, 1, UNI_NFKCQC__Y } /* nfkcqc=y */,
- { 1, 6340, 541, 3, 29, UNI_CJKEXTB } /* incjkunifiedideographsextensionb */,
- { 1, 9979, 7434, 5, 6, UNI_SOGD } /* scx=sogdian */,
- { 2, 6338, 10055, 12, 4, UNI_JOINC } /* joincontrol=true */,
- { 0, 1115, 10355, 26, 3, UNI_CWKCF } /* changeswhennfkccasefolded=yes */,
- { 1, 9647, 10319, 4, 3, UNI_AGE__5_DOT_1 } /* age=v51 */,
- { 0, 8973, 7745, 6, 9, UNI_LATINEXTF } /* block=latinextf */,
- { 5, 9476, 5059, 3, 15, UNI_ZANB } /* sc=zanabazarsquare */,
- { 13, 6340, 721, 3, 15, UNI_CUNEIFORMNUMBERS } /* incuneiformnumbers */,
- { 0, 6083, 9616, 13, 3, UNI_NV__7_SLASH_2 } /* numericvalue=7/2 */,
- { 6, 4972, 9203, 4, 4, UNI_TELU } /* istelugu */,
- { 8, 9691, 3049, 4, 18, UNI_CHEROKEESUP } /* blk=cherokeesupplement */,
- { 0, 9711, 8761, 4, 7, UNI_CCC__1 } /* ccc=overlay */,
- { 2, 8973, 9099, 6, 6, UNI_KANBUN } /* block=kanbun */,
- { 3, 3934, 0, 11, 0, UNI_SGNW } /* signwriting */,
- { 2, 3193, 0, 11, 0, UNI_ETHIOPICSUP } /* ethiopicsup */,
- { 1, 9979, 9815, 4, 4, UNI_KITS } /* scx=kits */,
- { 0, 9979, 9931, 4, 4, UNI_PHLP } /* scx=phlp */,
- { 9, 1553, 1846, 9, 2, UNI_NL } /* category=nl */,
- { 1, 10510, 3403, 6, 5, UNI_XPOSIXSPACE } /* xposixspace */,
- { 0, 1814, 1026, 22, 2, -UNI_CWCM } /* changeswhencasemapped=no */,
- { 0, 4864, 0, 15, 0, UNI_MISCPICTOGRAPHS } /* miscpictographs */,
- { 6, 4157, 416, 3, 31, UNI_INIDC } /* isideographicdescriptioncharacters */,
- { 18, 9461, 113, 3, 2, UNI_SB__SC } /* sb=sc */,
- { 2, 4972, 10036, 3, 3, UNI_TGLG } /* istglg */,
- { 2, 9691, 8388, 4, 8, UNI_INJAVANESE } /* blk=javanese */,
- { 0, 9763, 4346, 4, 5, UNI_GCB__XX } /* gcb=other */,
- { 2, 185, 9851, 2, 4, UNI_MEDF } /* ismedf */,
- { 1, 9691, 720, 4, 9, UNI_INCUNEIFORM } /* blk=cuneiform */,
- { 2, 7160, 2333, 3, 5, UNI_YIJING } /* isyijing */,
- { 1, 10516, 132, 3, 3, UNI_PALM } /* ispalm */,
- { 0, 8782, 8838, 7, 7, UNI_LANA } /* script=taitham */,
- { 0, 8973, 6044, 6, 13, UNI_MAYANNUMERALS } /* block=mayannumerals */,
- { 9, 3175, 3, 18, 1, -UNI_EPRES } /* emojipresentation=f */,
- { 0, 9691, 8845, 4, 7, UNI_INTAIVIET } /* blk=taiviet */,
- { 1, 9123, 1026, 6, 2, -UNI_XPOSIXLOWER } /* lower=no */,
- { 0, 6674, 36, 12, 1, UNI_XIDC } /* xidcontinue=t */,
- { 0, 7360, 6287, 10, 3, UNI_LB__ZWJ } /* linebreak=zwj */,
- { 0, 10508, 9424, 8, 5, UNI_XPOSIXCNTRL } /* isxposixcntrl */,
- { 2, 9476, 8500, 3, 8, UNI_UGAR } /* sc=ugaritic */,
- { 2, 2784, 6895, 19, 11, UNI_LB__H3 } /* hangulsyllabletype=lvtsyllable */,
- { 0, 9476, 4426, 3, 6, UNI_TANG } /* sc=tangut */,
- { 1, 185, 9895, 2, 4, UNI_NKO } /* isnkoo */,
- { 10, 8866, 0, 4, 0, UNI_TIRH } /* tirh */,
- { 0, 9444, 0, 5, 0, UNI_DOGR } /* dogra */,
- { 1, 8782, 7434, 8, 3, UNI_SC__SOGD } /* script=sogd */,
- { 2, 8973, 3775, 6, 17, UNI_INDICSIYAQNUMBERS } /* block=indicsiyaqnumbers */,
- { 0, 9647, 9583, 4, 4, UNI_AGE__10 } /* age=10.0 */,
- { 8, 8782, 7835, 7, 9, UNI_SC__OUGR } /* script=olduyghur */,
- { 0, 8973, 4410, 6, 16, UNI_SYRIACSUP } /* block=syriacsupplement */,
- { 1, 7360, 4026, 10, 16, UNI_LB__CL } /* linebreak=closepunctuation */,
- { 96, 3877, 9947, 17, 4, UNI_COPT } /* scriptextensions=qaac */,
- { 2, 10247, 4834, 3, 15, UNI_JG__MANICHAEANZAYIN } /* jg=manichaeanzayin */,
- { 0, 5875, 7082, 13, 11, UNI_JG__STRAIGHTWAW } /* joininggroup=straightwaw */,
- { 4, 10244, 3373, 3, 18, UNI_ZP } /* gc=paragraphseparator */,
- { 11, 5536, 48, 14, 1, UNI_NFCQC__M } /* nfcquickcheck=m */,
- { 64, 6083, 9254, 13, 4, UNI_NV__1_SLASH_32 } /* numericvalue=1/32 */,
- { 2, 9691, 4410, 4, 16, UNI_SYRIACSUP } /* blk=syriacsupplement */,
- { 3, 10553, 7018, 3, 3, UNI_SHAW } /* isshaw */,
- { 0, 185, 5797, 2, 13, UNI_XPOSIXDIGIT } /* isdecimalnumber */,
- { 0, 9469, 7845, 3, 8, UNI_PALM } /* inpalmyrene */,
- { 10, 8628, 9454, 7, 5, -UNI_GRBASE } /* grbase=false */,
- { 1, 9461, 8747, 3, 7, UNI_SB__LE } /* sb=oletter */,
- { 0, 9691, 1320, 4, 25, UNI_SYMBOLSANDPICTOGRAPHSEXTA } /* blk=symbolsandpictographsexta */,
- { 0, 3391, 9454, 18, 5, -UNI__PERL_PATWS } /* patternwhitespace=false */,
- { 1, 185, 4504, 2, 8, UNI_BAMUMSUP } /* isbamumsup */,
- { 0, 9979, 9899, 4, 4, UNI_NSHU } /* scx=nshu */,
- { 1, 7907, 10055, 9, 4, UNI_XIDS } /* xidstart=true */,
- { 4, 8973, 2078, 6, 22, UNI_MODIFIERLETTERS } /* block=spacingmodifierletters */,
- { 0, 10553, 4190, 3, 3, UNI_SARB } /* issarb */,
- { 19, 2784, 6650, 19, 12, UNI_GCB__T } /* hangulsyllabletype=trailingjamo */,
- { 1, 8973, 1007, 6, 17, UNI_ANCIENTGREEKMUSIC } /* block=ancientgreekmusic */,
- { 4, 10247, 3860, 3, 17, UNI_JG__MANICHAEANTHAMEDH } /* jg=manichaeanthamedh */,
- { 0, 185, 9135, 2, 6, UNI_LYDI } /* islydian */,
- { 0, 185, 7781, 2, 9, UNI_NBAT } /* isnabataean */,
- { 0, 5256, 0, 14, 0, UNI_KANASUP } /* kanasupplement */,
+ { 0, 3877, 8614, 17, 7, UNI_ELYM } /* scriptextensions=elymaic */,
+ { 2, 6083, 7610, 13, 9, UNI_NV___MINUS_1_SLASH_2 } /* numericvalue=-5.00e-01 */,
+ { 0, 21, 3319, 2, 9, UNI_LATINEXTA } /* inlatinexta */,
+ { 0, 8768, 10355, 7, 3, UNI_PATSYN } /* patsyn=yes */,
+ { 9, 1586, 0, 14, 0, UNI_BYZANTINEMUSIC } /* byzantinemusic */,
+ { 2, 6083, 8931, 13, 6, UNI_NV__600000 } /* numericvalue=600000 */,
+ { 5, 8782, 8684, 7, 4, UNI_MARC } /* script=marc */,
+ { 0, 9474, 2670, 5, 19, UNI_INSC__CONSONANTHEADLETTER } /* insc=consonantheadletter */,
+ { 2, 1553, 7550, 9, 10, UNI_CN } /* category=unassigned */,
+ { 8, 5592, 0, 14, 0, UNI_patsyn_values_index } /* patternsyntax= */,
+ { 0, 9691, 1442, 4, 24, UNI_CJKSYMBOLS } /* blk=cjksymbolsandpunctuation */,
+ { 9, 1770, 17, 22, 1, UNI_BPT__O } /* bidipairedbrackettype=o */,
+ { 0, 185, 9444, 2, 5, UNI_DOGR } /* isdogra */,
+ { 4, 10253, 4503, 3, 2, UNI_LB__BB } /* lb=bb */,
+ { 0, 3175, 3, 18, 1, -UNI_EPRES } /* emojipresentation=f */,
+ { 0, 9051, 0, 6, 0, UNI_ecomp_values_index } /* ecomp= */,
+ { 1, 2841, 0, 19, 0, UNI_MERO } /* meroitichieroglyphs */,
+ { 0, 8973, 0, 12, 0, UNI_INCARIAN } /* block=carian */,
+ { 1, 10553, 4411, 3, 5, UNI_SYRC } /* issyriac */,
+ { 4, 2248, 4411, 3, 15, UNI_SYRIACSUP } /* insyriacsupplement */,
+ { 0, 8973, 3463, 6, 18, UNI_SMALLKANAEXT } /* block=smallkanaextension */,
+ { 17, 9979, 9807, 4, 4, UNI_KALI } /* scx=kali */,
+ { 0, 1418, 7983, 24, 1, UNI_CCC__7 } /* canonicalcombiningclass=7 */,
+ { 8, 9743, 10355, 4, 3, UNI_DEP } /* dep=yes */,
+ { 1, 9711, 7975, 4, 1, UNI_CCC__6 } /* ccc=6 */,
+ { 0, 8881, 1372, 4, 22, UNI_ARABICPFA } /* isarabicpresentationformsa */,
+ { 12, 9979, 9875, 4, 4, UNI_MTEI } /* scx=mtei */,
+ { 7, 8973, 8803, 6, 7, UNI_INSIDDHAM } /* block=siddham */,
+ { 0, 9979, 10111, 4, 4, UNI_ZANB } /* scx=zanb */,
+ { 5, 185, 9767, 2, 4, UNI_GONG } /* isgong */,
+ { 11, 10516, 63, 7, 5, UNI_POSIXGRAPH } /* isposixgraph */,
+ { 0, 9691, 1345, 4, 25, UNI_SYMBOLSFORLEGACYCOMPUTING } /* blk=symbolsforlegacycomputing */,
+ { 9, 10244, 4058, 3, 16, UNI_PF } /* gc=finalpunctuation */,
+ { 22, 1553, 729, 9, 6, UNI_N } /* category=number */,
+ { 22, 9979, 9183, 4, 6, UNI_RJNG } /* scx=rejang */,
+ { 5, 4609, 0, 15, 0, UNI_CONTROLPICTURES } /* controlpictures */,
+ { 3, 10250, 0, 3, 1, UNI_JT__U } /* jt=u */,
+ { 2, 3877, 8649, 17, 7, UNI_KNDA } /* scriptextensions=kannada */,
+ { 1, 9979, 6518, 4, 12, UNI_MEND } /* scx=mendekikakui */,
+ { 0, 5758, 36, 13, 1, UNI_BIDIM } /* bidimirrored=t */,
+ { 1, 9903, 0, 4, 0, UNI_OGAM } /* ogam */,
+ { 1, 6972, 0, 4, 0, UNI_NAND } /* nand */,
+ { 0, 8782, 7570, 7, 4, UNI_WARA } /* script=wara */,
+ { 1, 8444, 10055, 8, 4, UNI_RADICAL } /* radical=true */,
+ { 1, 6338, 0, 12, 0, UNI_joinc_values_index } /* joincontrol= */,
+ { 20, 10508, 5095, 8, 6, UNI_XPOSIXXDIGIT } /* isxposixxdigit */,
+ { 1, 10247, 6470, 3, 12, UNI_JG__MALAYALAMTTA } /* jg=malayalamtta */,
+ { 0, 7240, 0, 10, 0, UNI_BOXDRAWING } /* boxdrawing */,
+ { 0, 9711, 9420, 5, 4, UNI_CCC__91 } /* ccc=ccc91 */,
+ { 3, 9691, 8476, 4, 8, UNI_INTIFINAGH } /* blk=tifinagh */,
+ { 0, 9979, 9284, 4, 5, UNI_BATK } /* scx=batak */,
+ { 1, 3877, 9105, 17, 4, UNI_KHOJ } /* scriptextensions=khoj */,
+ { 8, 9177, 36, 6, 1, UNI_QMARK } /* qmark=t */,
+ { 0, 9979, 9815, 4, 4, UNI_KITS } /* scx=kits */,
+ { 4, 9550, 0, 4, 0, UNI_ids_values_index } /* ids= */,
+ { 0, 10229, 568, 3, 2, UNI_DT__NB } /* dt=nb */,
+ { 4, 6340, 541, 3, 29, UNI_CJKEXTB } /* incjkunifiedideographsextensionb */,
+ { 11, 3877, 9779, 17, 4, UNI_GUJR } /* scriptextensions=gujr */,
+ { 2, 924, 0, 28, 0, UNI_SUPPUAB } /* supplementaryprivateuseareab */,
+ { 0, 8782, 6290, 7, 12, UNI_SC__GONG } /* script=gunjalagondi */,
+ { 0, 1190, 39, 3, 2, UNI_XPOSIXDIGIT } /* nt=de */,
+ { 0, 9439, 3, 5, 1, -UNI_DASH } /* dash=f */,
{ 0, 9711, 8043, 4, 2, UNI_CCC__23 } /* ccc=23 */,
- { 0, 4154, 6110, 3, 12, UNI_VERTICALFORMS } /* inverticalforms */,
- { 0, 6614, 0, 8, 0, UNI_PHAISTOS } /* phaistos */,
- { 2, 5298, 0, 14, 0, UNI_LATINEXTC } /* latinextendedc */,
- { 0, 9691, 4535, 5, 14, UNI_BRAI } /* blk=braillepatterns */,
- { 2, 6529, 4940, 3, 14, UNI_SARB } /* inoldsoutharabian */,
- { 6, 8973, 6972, 6, 11, UNI_INNANDINAGARI } /* block=nandinagari */,
- { 0, 9763, 5669, 4, 2, UNI_WB__EB } /* gcb=eb */,
- { 64, 9549, 1, 5, 1, -UNI_XIDS } /* xids=n */,
- { 0, 10253, 84, 3, 2, UNI_LB__CM } /* lb=cm */,
- { 27, 185, 810, 2, 22, UNI_ENCLOSEDIDEOGRAPHICSUP } /* isenclosedideographicsup */,
- { 0, 8973, 4170, 6, 9, UNI_LATIN1 } /* block=latin1sup */,
- { 0, 9895, 0, 3, 0, UNI_NKO } /* nko */,
- { 0, 10244, 0, 3, 0, UNI_gc_values_index } /* gc= */,
- { 1, 3877, 8537, 17, 4, UNI_BENG } /* scriptextensions=beng */,
- { 7, 6340, 2165, 3, 20, UNI_CYRILLICSUP } /* incyrillicsupplementary */,
- { 2, 7391, 2, 5, 1, UNI_CARI } /* iscari */,
- { 0, 4654, 0, 15, 0, UNI_DIACRITICALSEXT } /* diacriticalsext */,
- { 0, 7297, 5275, 3, 3, UNI_HIRA } /* ishira */,
- { 29, 8973, 8545, 7, 6, UNI_CJKEXTA } /* block=cjkexta */,
- { 33, 10553, 17, 3, 1, UNI_SO } /* isso */,
- { 2, 3121, 6530, 18, 12, UNI_DT__NONCANON } /* decompositiontype=noncanonical */,
- { 3, 5875, 5466, 13, 14, UNI_JG__MANICHAEANQOPH } /* joininggroup=manichaeanqoph */,
- { 0, 1553, 2292, 9, 2, UNI_PD } /* category=pd */,
- { 0, 9075, 10355, 6, 3, UNI_GREXT } /* grext=yes */,
- { 0, 5270, 0, 6, 0, UNI_KANGXI } /* kangxi */,
- { 1, 9214, 1026, 5, 2, -UNI_IDEO } /* ideo=no */,
- { 0, 185, 2269, 2, 14, UNI_MEETEIMAYEKEXT } /* ismeeteimayekext */,
- { 0, 3409, 10355, 18, 3, UNI_RI } /* regionalindicator=yes */,
- { 4, 9691, 3571, 4, 10, UNI_ALCHEMICAL } /* blk=alchemical */,
- { 3, 5550, 26, 14, 1, UNI_NFDQC__Y } /* nfdquickcheck=y */,
- { 5, 4074, 2373, 16, 20, UNI_PC } /* generalcategory=connectorpunctuation */,
- { 7, 8782, 9699, 7, 4, UNI_SC__BUHD } /* script=buhd */,
- { 0, 9476, 9895, 3, 4, UNI_SC__NKO } /* sc=nkoo */,
- { 1, 10083, 0, 4, 0, UNI_VAI } /* vaii */,
- { 43, 8973, 8803, 6, 7, UNI_INSIDDHAM } /* block=siddham */,
- { 2, 10247, 6432, 3, 5, UNI_JG__GAMAL } /* jg=gamal */,
- { 1, 185, 8276, 2, 4, UNI_BALI } /* isbali */,
- { 10, 3877, 8804, 18, 6, UNI_SIDD } /* scriptextensions=siddham */,
- { 0, 9691, 1902, 4, 19, UNI_CJKCOMPATIDEOGRAPHS } /* blk=cjkcompatideographs */,
- { 23, 185, 8670, 2, 7, UNI_MAKA } /* ismakasar */,
- { 2, 9691, 4729, 4, 15, UNI_INHANGUL } /* blk=hangulsyllables */,
- { 0, 1891, 0, 9, 0, UNI_XPOSIXUPPER } /* uppercase */,
- { 0, 5830, 3, 6, 1, -UNI_EBASE } /* ebase=f */,
- { 2, 185, 8348, 2, 8, UNI_GURU } /* isgurmukhi */,
- { 6, 9476, 1537, 3, 4, UNI_SC__SIND } /* sc=sind */,
- { 0, 4186, 0, 7, 0, UNI_LINB } /* linearb */,
- { 1, 6083, 7996, 13, 8, UNI_NV__1_SLASH_5 } /* numericvalue=2.00e-01 */,
- { 0, 10510, 1847, 6, 5, UNI_XPOSIXLOWER } /* xposixlower */,
- { 0, 2784, 6873, 19, 11, UNI_GCB__L } /* hangulsyllabletype=leadingjamo */,
- { 0, 7682, 1026, 9, 2, -UNI_EXT } /* extender=no */,
- { 7, 9979, 7709, 4, 9, UNI_SIND } /* scx=khudawadi */,
- { 0, 8973, 4298, 6, 16, UNI_MISCMATHSYMBOLSB } /* block=miscmathsymbolsb */,
- { 1, 1442, 0, 10, 0, UNI_CJKSYMBOLS } /* cjksymbols */,
- { 19, 4074, 1288, 16, 2, UNI_UPPERCASELETTER } /* generalcategory=lu */,
- { 11, 6083, 5732, 13, 8, UNI_NV__10000000 } /* numericvalue=10000000 */,
- { 8, 9691, 149, 4, 35, UNI_DIACRITICALSSUP } /* blk=combiningdiacriticalmarkssupplement */,
- { 0, 1418, 18, 24, 1, UNI_CCC__R } /* canonicalcombiningclass=r */,
- { 1, 7360, 534, 10, 2, UNI_LB__NS } /* linebreak=ns */,
- { 4, 6578, 5096, 12, 5, UNI_NT__DI } /* numerictype=digit */,
- { 7, 8831, 0, 7, 0, UNI_TGLG } /* tagalog */,
- { 0, 10547, 7580, 6, 4, UNI_POSIXWORD } /* isperlword */,
- { 1, 9979, 1219, 4, 8, UNI_KANA } /* scx=katakana */,
- { 3, 5802, 0, 5, 0, UNI_XPOSIXALNUM } /* alnum */,
- { 13, 2003, 1046, 10, 5, UNI_L } /* category=letter */,
- { 2, 8973, 4534, 6, 15, UNI_BRAI } /* block=braillepatterns */,
- { 4, 9691, 0, 4, 43, UNI_UCASEXTA } /* blk=unifiedcanadianaboriginalsyllabicsextendeda */,
- { 0, 185, 1674, 2, 4, UNI_JAMO } /* isjamo */,
- { 0, 7467, 10343, 3, 3, UNI_IN__9 } /* in=v90 */,
- { 41, 8973, 4939, 6, 15, UNI_SARB } /* block=oldsoutharabian */,
- { 3, 3877, 8859, 17, 7, UNI_TIBT } /* scriptextensions=tibetan */,
- { 22, 10268, 9387, 3, 2, UNI_NV__31 } /* nv=31 */,
- { 4, 6338, 0, 12, 0, UNI_joinc_values_index } /* joincontrol= */,
- { 0, 6083, 5732, 13, 2, UNI_NV__10 } /* numericvalue=10 */,
- { 0, 185, 924, 2, 28, UNI_SUPPUAB } /* issupplementaryprivateuseareab */,
- { 0, 185, 4381, 2, 13, UNI_MATHOPERATORS } /* ismathoperators */,
- { 69, 8973, 5354, 6, 14, UNI_LATINEXTG } /* block=latinextendedg */,
- { 0, 10253, 8642, 3, 2, UNI_LB__HY } /* lb=hy */,
- { 8, 9476, 9195, 3, 6, UNI_TNSA } /* sc=tangsa */,
- { 0, 8881, 4476, 4, 13, UNI_ARABICEXTA } /* isarabicextendeda */,
- { 12, 10244, 2373, 3, 20, UNI_PC } /* gc=connectorpunctuation */,
- { 79, 8276, 0, 4, 0, UNI_BALI } /* bali */,
- { 0, 8973, 8476, 6, 8, UNI_INTIFINAGH } /* block=tifinagh */,
- { 12, 10247, 9659, 3, 4, UNI_JG__ALEF } /* jg=alef */,
- { 1, 8887, 26, 7, 1, UNI_XPOSIXSPACE } /* wspace=y */,
- { 0, 5550, 10355, 14, 3, UNI_NFDQC__Y } /* nfdquickcheck=yes */,
- { 4, 10516, 6, 3, 1, UNI_PD } /* ispd */,
- { 5, 2593, 18, 20, 1, UNI_VO__R } /* verticalorientation=r */,
- { 1, 5045, 1, 3, 42, UNI_UCASEXTA } /* isunifiedcanadianaboriginalsyllabicsextendeda */,
- { 3, 2248, 2975, 3, 18, UNI_SUPARROWSB } /* insupplementalarrowsb */,
- { 3, 9691, 4090, 4, 11, UNI_GEORGIANEXT } /* blk=georgianext */,
- { 1, 10253, 4026, 3, 16, UNI_LB__CL } /* lb=closepunctuation */,
- { 41, 5875, 6917, 13, 11, UNI_JG__MALAYALAMRA } /* joininggroup=malayalamra */,
- { 30, 8782, 8614, 7, 7, UNI_ELYM } /* script=elymaic */,
- { 1, 185, 4170, 2, 16, UNI_LATIN1 } /* islatin1supplement */,
- { 27, 10247, 5466, 3, 14, UNI_JG__MANICHAEANQOPH } /* jg=manichaeanqoph */,
- { 1, 4298, 0, 16, 0, UNI_MISCMATHSYMBOLSB } /* miscmathsymbolsb */,
- { 0, 10268, 8931, 3, 6, UNI_NV__600000 } /* nv=600000 */,
- { 11, 8973, 780, 6, 30, UNI_SYMBOLSANDPICTOGRAPHSEXTA } /* block=symbolsandpictographsextendeda */,
- { 18, 10247, 4244, 3, 3, UNI_JG__LAM } /* jg=lam */,
- { 10, 9269, 0, 5, 0, UNI_ahex_values_index } /* ahex= */,
- { 0, 3409, 3, 18, 1, -UNI_RI } /* regionalindicator=f */,
- { 16, 9474, 8484, 5, 8, UNI_INSC__TONEMARK } /* insc=tonemark */,
- { 0, 9476, 8635, 3, 7, UNI_SC__HANO } /* sc=hanunoo */,
- { 16, 85, 0, 4, 0, UNI_MATH } /* math */,
- { 1, 8973, 2974, 6, 19, UNI_SUPARROWSB } /* block=supplementalarrowsb */,
- { 7, 6340, 601, 3, 29, UNI_CJKEXTD } /* incjkunifiedideographsextensiond */,
- { 0, 1858, 9454, 22, 5, -UNI_CWT } /* changeswhentitlecased=false */,
- { 131, 185, 8887, 2, 6, UNI_XPOSIXSPACE } /* iswspace */,
- { 0, 6340, 1443, 3, 9, UNI_CJKSYMBOLS } /* incjksymbols */,
- { 0, 1990, 8268, 22, 8, UNI_INSC__AVAGRAHA } /* indicsyllabiccategory=avagraha */,
- { 0, 8444, 10355, 8, 3, UNI_RADICAL } /* radical=yes */,
- { 0, 8973, 721, 7, 29, UNI_CUNEIFORMNUMBERS } /* block=cuneiformnumbersandpunctuation */,
- { 0, 8973, 7104, 6, 11, UNI_INSYLOTINAGRI } /* block=sylotinagri */,
- { 2, 7580, 1219, 10, 8, UNI_WB__KA } /* wordbreak=katakana */,
- { 36, 185, 1946, 2, 12, UNI_DIACRITICALS } /* isdiacriticals */,
- { 0, 3877, 3139, 17, 4, UNI_DEVA } /* scriptextensions=deva */,
- { 0, 21, 3573, 4, 8, UNI_ALCHEMICAL } /* inalchemical */,
- { 0, 185, 5690, 2, 14, UNI_SUPPUNCTUATION } /* issuppunctuation */,
- { 37, 9214, 36, 5, 1, UNI_IDEO } /* ideo=t */,
- { 0, 185, 6109, 2, 13, UNI_VERTICALFORMS } /* isverticalforms */,
- { 0, 4684, 4527, 15, 7, UNI_EA__N } /* eastasianwidth=neutral */,
- { 0, 4157, 326, 3, 3, UNI_ITAL } /* isital */,
- { 1, 10226, 9454, 3, 5, -UNI_DI } /* di=false */,
- { 1, 9153, 48, 6, 1, UNI_NFCQC__M } /* nfcqc=m */,
- { 1, 5093, 1026, 9, 2, -UNI_XPOSIXXDIGIT } /* hexdigit=no */,
- { 6, 8854, 2333, 3, 20, UNI_YIJING } /* inyijinghexagramsymbols */,
- { 96, 2248, 7434, 3, 6, UNI_INSOGDIAN } /* insogdian */,
- { 4, 9045, 26, 6, 1, UNI_CWKCF } /* cwkcf=y */,
- { 1, 21, 5340, 2, 14, UNI_LATINEXTF } /* inlatinextendedf */,
- { 0, 7218, 7656, 3, 8, UNI_INBHAIKSUKI } /* inbhaiksuki */,
- { 2, 10244, 32, 3, 2, UNI__PERL_SURROGATE } /* gc=cs */,
- { 42, 27, 0, 2, 0, UNI_LOWERCASELETTER } /* ll */,
- { 4, 9474, 4394, 5, 16, UNI_INSC__SYLLABLEMODIFIER } /* insc=syllablemodifier */,
- { 29, 10109, 1748, 3, 12, UNI_ZNAMENNYMUSIC } /* inznamennymusic */,
- { 0, 9081, 0, 4, 0, UNI_HATR } /* hatr */,
- { 2, 9476, 10103, 3, 4, UNI_SC__YI } /* sc=yiii */,
- { 8, 3894, 1026, 17, 2, -UNI_STERM } /* sentenceterminal=no */,
- { 4, 7460, 8092, 10, 3, UNI_IN__4 } /* presentin=4.0 */,
- { 0, 8782, 3103, 7, 4, UNI_SC__COPT } /* script=copt */,
- { 0, 10226, 0, 3, 0, UNI_di_values_index } /* di= */,
- { 5, 8881, 9652, 3, 3, UNI_AGHB } /* isaghb */,
- { 0, 9434, 1026, 5, 2, -UNI_CWCM } /* cwcm=no */,
- { 33, 185, 9430, 3, 3, UNI_CWCF } /* iscwcf */,
- { 18, 8973, 9183, 6, 6, UNI_INREJANG } /* block=rejang */,
- { 33, 9476, 10023, 3, 4, UNI_SC__TAML } /* sc=taml */,
- { 2, 8973, 5368, 6, 4, UNI_INLISU } /* block=lisu */,
- { 0, 7390, 0, 10, 0, UNI_MISCARROWS } /* miscarrows */,
- { 42, 2146, 0, 7, 0, UNI_RADICAL } /* radical */,
- { 1, 9190, 9454, 5, 5, -UNI_TERM } /* term=false */,
- { 51, 185, 6207, 3, 11, UNI_CYRILLICEXTB } /* iscyrillicextb */,
- { 0, 7391, 12, 5, 3, UNI_CARI } /* iscarian */,
- { 0, 7580, 1219, 10, 2, UNI_WB__KA } /* wordbreak=ka */,
- { 1, 9048, 0, 2, 0, UNI_CF } /* cf */,
- { 73, 1418, 1779, 24, 2, UNI_CCC__DB } /* canonicalcombiningclass=db */,
- { 0, 1538, 1948, 4, 10, UNI_DIACRITICALS } /* indiacriticals */,
- { 4, 8973, 3445, 6, 4, UNI_RUMI } /* block=rumi */,
- { 0, 10217, 866, 3, 2, UNI_BC__WS } /* bc=ws */,
- { 1, 9691, 952, 4, 18, UNI_INVS } /* blk=variationselectors */,
- { 1, 9979, 7844, 4, 4, UNI_PALM } /* scx=palm */,
- { 0, 5758, 1026, 13, 2, -UNI_BIDIM } /* bidimirrored=no */,
- { 2, 9087, 1, 6, 1, -UNI_JOINC } /* joinc=n */,
- { 1, 185, 6386, 2, 4, UNI_MAHJ } /* ismahj */,
- { 1, 4314, 0, 16, 0, UNI_MYANMAREXTA } /* myanmarextendeda */,
- { 7, 8973, 541, 7, 29, UNI_CJKEXTB } /* block=cjkunifiedideographsextensionb */,
- { 1, 10280, 36, 3, 1, UNI_RI } /* ri=t */,
- { 1, 118, 6, 3, 2, UNI_INIDC } /* inidc */,
- { 0, 9979, 7501, 5, 3, UNI_SAUR } /* scx=saur */,
- { 0, 185, 3463, 2, 18, UNI_SMALLKANAEXT } /* issmallkanaextension */,
- { 0, 10516, 7580, 7, 4, UNI_POSIXWORD } /* isposixword */,
- { 3, 9803, 24, 4, 1, UNI_GCB__L } /* hst=l */,
- { 0, 6755, 2900, 4, 17, UNI_OTTOMANSIYAQNUMBERS } /* inottomansiyaqnumbers */,
- { 16, 21, 5368, 2, 4, UNI_INLISU } /* inlisu */,
- { 1, 8782, 9534, 7, 4, UNI_SC__TAKR } /* script=takr */,
- { 1, 9476, 7811, 3, 4, UNI_ITAL } /* sc=ital */,
- { 3, 9153, 0, 6, 0, UNI_nfcqc_values_index } /* nfcqc= */,
- { 0, 6083, 8244, 13, 8, UNI_NV__7_SLASH_8 } /* numericvalue=8.75e-01 */,
- { 7, 185, 9135, 2, 4, UNI_LYDI } /* islydi */,
- { 0, 9075, 0, 6, 0, UNI_grext_values_index } /* grext= */,
- { 3, 8973, 4489, 6, 15, UNI_ARABICEXTB } /* block=arabicextendedb */,
- { 0, 185, 4504, 2, 4, UNI_BAMU } /* isbamu */,
- { 8, 9979, 4504, 4, 4, UNI_BAMU } /* scx=bamu */,
- { 2, 10247, 5992, 3, 13, UNI_JG__MANICHAEANONE } /* jg=manichaeanone */,
- { 0, 9647, 10301, 4, 3, UNI_AGE__3 } /* age=v30 */,
- { 0, 9691, 3962, 4, 9, UNI_ARABICSUP } /* blk=arabicsup */,
- { 8, 1836, 10355, 22, 3, UNI_CWL } /* changeswhenlowercased=yes */,
- { 5, 8973, 6219, 7, 11, UNI_CYRILLICEXTC } /* block=cyrillicextc */,
- { 0, 8973, 2123, 7, 20, UNI_CJKCOMPATFORMS } /* block=cjkcompatibilityforms */,
- { 0, 8973, 5029, 6, 15, UNI_VEDICEXT } /* block=vedicextensions */,
- { 4, 9476, 7781, 3, 9, UNI_NBAT } /* sc=nabataean */,
- { 20, 9979, 8790, 5, 6, UNI_SHRD } /* scx=sharada */,
- { 1, 9679, 0, 4, 0, UNI_AVST } /* avst */,
- { 0, 3877, 8873, 17, 7, UNI_ZZZZ } /* scriptextensions=unknown */,
- { 0, 9691, 2501, 4, 3, UNI_PUA } /* blk=pua */,
- { 20, 9775, 0, 4, 0, UNI_GREK } /* grek */,
- { 30, 9459, 1026, 5, 2, -UNI_IDSB } /* idsb=no */,
- { 0, 8973, 1007, 6, 27, UNI_ANCIENTGREEKMUSIC } /* block=ancientgreekmusicalnotation */,
- { 12, 10508, 7580, 8, 4, UNI_XPOSIXWORD } /* isxposixword */,
- { 2, 7060, 36, 11, 1, UNI_SD } /* softdotted=t */,
- { 111, 8973, 5927, 6, 13, UNI_LOWSURROGATES } /* block=lowsurrogates */,
- { 0, 8973, 2433, 6, 13, UNI_GLAGOLITICSUP } /* block=glagoliticsup */,
- { 4, 3877, 9033, 17, 6, UNI_CAKM } /* scriptextensions=chakma */,
- { 1, 10268, 8913, 3, 3, UNI_NV__400 } /* nv=400 */,
- { 2, 4074, 5096, 16, 5, UNI_XPOSIXDIGIT } /* generalcategory=digit */,
- { 1, 9979, 3935, 5, 10, UNI_SGNW } /* scx=signwriting */,
- { 3, 9476, 3978, 3, 4, UNI_SC__BOPO } /* sc=bopo */,
- { 0, 8537, 0, 7, 0, UNI_BENG } /* bengali */,
- { 4, 4699, 26, 15, 1, UNI_ECOMP } /* emojicomponent=y */,
- { 0, 7467, 10059, 3, 4, UNI_IN__10 } /* in=v100 */,
- { 26, 9476, 9207, 3, 6, UNI_SC__THAA } /* sc=thaana */,
- { 19, 3877, 8866, 17, 4, UNI_TIRH } /* scriptextensions=tirh */,
- { 1, 185, 9284, 2, 5, UNI_BATK } /* isbatak */,
- { 2, 2304, 4941, 4, 13, UNI_SARB } /* isoldsoutharabian */,
- { 1, 4598, 1634, 4, 16, UNI_GEOMETRICSHAPESEXT } /* ingeometricshapesext */,
- { 1, 8973, 5836, 6, 8, UNI_GREEKEXT } /* block=greekext */,
- { 47, 185, 1724, 2, 23, UNI_SUPPUNCTUATION } /* issupplementalpunctuation */,
- { 3, 185, 10123, 2, 4, UNI_ZZZZ } /* iszzzz */,
- { 3, 4699, 10055, 15, 4, UNI_ECOMP } /* emojicomponent=true */,
- { 10, 3877, 7016, 17, 11, UNI_HMNG } /* scriptextensions=pahawhhmong */,
- { 2, 4074, 5014, 16, 15, UNI_UPPERCASELETTER } /* generalcategory=uppercaseletter */,
- { 3, 4314, 0, 7, 0, UNI_MYMR } /* myanmar */,
- { 1, 3877, 8621, 17, 7, UNI_GRAN } /* scriptextensions=grantha */,
- { 0, 10268, 10127, 3, 3, UNI_NV__1_SLASH_5 } /* nv=1/5 */,
- { 0, 8973, 7240, 6, 10, UNI_BOXDRAWING } /* block=boxdrawing */,
- { 20, 10283, 1026, 3, 2, -UNI_SD } /* sd=no */,
- { 2, 9691, 5284, 4, 14, UNI_LATINEXTB } /* blk=latinextendedb */,
- { 0, 9691, 5862, 4, 6, UNI_IPAEXT } /* blk=ipaext */,
- { 0, 6083, 8949, 13, 5, UNI_NV__90000 } /* numericvalue=90000 */,
- { 0, 10226, 1, 3, 1, -UNI_DI } /* di=n */,
- { 21, 5836, 0, 8, 0, UNI_GREEKEXT } /* greekext */,
- { 0, 9476, 9999, 3, 4, UNI_SC__SHRD } /* sc=shrd */,
- { 32, 2012, 1026, 22, 2, -UNI_LOE } /* logicalorderexception=no */,
- { 2, 1442, 0, 24, 0, UNI_CJKSYMBOLS } /* cjksymbolsandpunctuation */,
- { 1, 9691, 9099, 4, 6, UNI_KANBUN } /* blk=kanbun */,
- { 0, 9763, 10394, 4, 2, UNI_GCB__XX } /* gcb=xx */,
- { 0, 10560, 10084, 3, 3, UNI_VAI } /* isvaii */,
- { 17, 1553, 729, 9, 6, UNI_N } /* category=number */,
- { 8, 8973, 44, 7, 15, UNI_CJKCOMPAT } /* block=cjkcompatibility */,
- { 2, 21, 5368, 2, 7, UNI_LISUSUP } /* inlisusup */,
- { 1, 9763, 6279, 5, 11, UNI_WB__EB } /* gcb=glueafterzwj */,
- { 1, 185, 3691, 3, 16, UNI_CYRILLICEXTC } /* iscyrillicextendedc */,
- { 2, 9771, 0, 4, 0, UNI_GONM } /* gonm */,
- { 1, 7467, 8148, 3, 3, UNI_IN__6 } /* in=6.0 */,
- { 0, 8782, 9284, 7, 5, UNI_BATK } /* script=batak */,
- { 11, 8782, 8388, 7, 8, UNI_SC__JAVA } /* script=javanese */,
- { 0, 10268, 8925, 3, 4, UNI_NV__5000 } /* nv=5000 */,
- { 0, 1418, 10392, 24, 2, UNI_CCC__9 } /* canonicalcombiningclass=vr */,
- { 78, 2553, 0, 4, 0, UNI_TERM } /* term */,
- { 24, 9763, 6287, 4, 3, UNI_LB__ZWJ } /* gcb=zwj */,
- { 0, 9476, 7844, 3, 4, UNI_PALM } /* sc=palm */,
- { 24, 4074, 4346, 16, 16, UNI_PO } /* generalcategory=otherpunctuation */,
- { 99, 8782, 9863, 7, 4, UNI_MIAO } /* script=miao */,
- { 0, 3877, 10008, 18, 3, UNI_SYRC } /* scriptextensions=syrc */,
- { 1, 6083, 8147, 13, 2, UNI_NV__16 } /* numericvalue=16 */,
- { 2, 9171, 1, 6, 1, -UNI__PERL_PATWS } /* patws=n */,
- { 8, 9691, 8789, 4, 7, UNI_SC__SHRD } /* blk=sharada */,
- { 1, 7580, 7763, 10, 9, UNI_WB__ML } /* wordbreak=midletter */,
- { 22, 5536, 0, 14, 0, UNI_nfcqc_values_index } /* nfcquickcheck= */,
- { 10, 8973, 8621, 6, 7, UNI_INGRANTHA } /* block=grantha */,
- { 0, 10247, 6482, 3, 12, UNI_JG__MANICHAEANPE } /* jg=manichaeanpe */,
- { 1, 3877, 8500, 17, 4, UNI_UGAR } /* scriptextensions=ugar */,
- { 3, 10253, 10250, 3, 2, UNI_GCB__T } /* lb=jt */,
- { 1, 3877, 1655, 17, 6, UNI_HANG } /* scriptextensions=hangul */,
- { 0, 10217, 2533, 3, 20, UNI_BC__RLE } /* bc=righttoleftembedding */,
- { 65, 8955, 1, 6, 1, -UNI_XPOSIXALPHA } /* alpha=n */,
- { 4, 1418, 9422, 24, 2, UNI_CCC__91 } /* canonicalcombiningclass=91 */,
- { 4, 2304, 4347, 3, 4, UNI_C } /* isother */,
- { 0, 8973, 8508, 6, 8, UNI_INVITHKUQI } /* block=vithkuqi */,
- { 1, 8782, 3978, 7, 8, UNI_SC__BOPO } /* script=bopomofo */,
- { 0, 6340, 44, 3, 2, UNI_CJK } /* incjk */,
- { 0, 3283, 0, 17, 0, UNI_IDSB } /* idsbinaryoperator */,
- { 0, 2003, 6375, 10, 11, UNI_NL } /* category=letternumber */,
- { 41, 10250, 36, 3, 1, UNI_JT__T } /* jt=t */,
- { 3, 2304, 8755, 3, 6, UNI_OSMA } /* isosmanya */,
- { 42, 8881, 98, 3, 4, UNI_XPOSIXALPHA } /* isalpha */,
- { 2, 8782, 6518, 7, 12, UNI_MEND } /* script=mendekikakui */,
- { 6, 8642, 26, 7, 1, UNI_HYPHEN } /* hyphen=y */,
- { 4, 4972, 4985, 3, 4, UNI_TAML } /* istamil */,
- { 0, 9979, 8873, 4, 7, UNI_ZZZZ } /* scx=unknown */,
- { 0, 10516, 84, 3, 2, UNI_PCM } /* ispcm */,
- { 40, 2808, 8262, 4, 6, UNI_INARMENIAN } /* inarmenian */,
- { 0, 9691, 7570, 4, 10, UNI_INWARANGCITI } /* blk=warangciti */,
- { 3, 7370, 10355, 10, 3, UNI_XPOSIXLOWER } /* lowercase=yes */,
- { 69, 6741, 10055, 11, 4, UNI_DEP } /* deprecated=true */,
- { 25, 7297, 4730, 3, 14, UNI_INHANGUL } /* ishangulsyllables */,
- { 4, 185, 4401, 2, 4, UNI_EMOD } /* isemod */,
- { 1, 2433, 0, 20, 0, UNI_GLAGOLITICSUP } /* glagoliticsupplement */,
- { 1, 1418, 8027, 24, 3, UNI_CCC__B } /* canonicalcombiningclass=220 */,
- { 0, 9975, 0, 4, 0, UNI_SARB } /* sarb */,
- { 0, 7360, 2468, 10, 2, UNI_LB__HL } /* linebreak=hl */,
- { 1, 9214, 1, 5, 1, -UNI_IDEO } /* ideo=n */,
- { 2, 9691, 3049, 4, 11, UNI_CHEROKEESUP } /* blk=cherokeesup */,
- { 2, 10516, 97, 7, 5, UNI_POSIXALPHA } /* isposixalpha */,
- { 1, 8973, 184, 6, 20, UNI_MISCSYMBOLS } /* block=miscellaneoussymbols */,
- { 0, 3877, 1678, 17, 5, UNI_LATN } /* scriptextensions=latin */,
- { 11, 185, 2085, 2, 4, UNI_MODI } /* ismodi */,
- { 0, 10003, 0, 4, 0, UNI_SOGO } /* sogo */,
- { 4, 3406, 36, 3, 1, UNI_CE } /* ce=t */,
- { 2, 10560, 68, 3, 4, UNI_VSSUP } /* isvssup */,
- { 0, 3877, 1629, 17, 4, UNI_PHAG } /* scriptextensions=phag */,
- { 0, 3121, 4588, 18, 6, UNI_DT__MED } /* decompositiontype=medial */,
- { 0, 9691, 6044, 4, 13, UNI_MAYANNUMERALS } /* blk=mayannumerals */,
- { 2, 8973, 3050, 7, 10, UNI_CHEROKEESUP } /* block=cherokeesup */,
- { 1, 9979, 7105, 5, 3, UNI_SYLO } /* scx=sylo */,
- { 2, 6083, 9402, 13, 2, UNI_NV__34 } /* numericvalue=34 */,
- { 33, 4489, 0, 15, 0, UNI_ARABICEXTB } /* arabicextendedb */,
- { 19, 6083, 8943, 13, 2, UNI_NV__80 } /* numericvalue=80 */,
- { 8, 3877, 9651, 17, 4, UNI_AGHB } /* scriptextensions=aghb */,
- { 8, 9476, 6972, 3, 11, UNI_SC__NAND } /* sc=nandinagari */,
- { 1, 4074, 5578, 16, 14, UNI_MN } /* generalcategory=nonspacingmark */,
- { 2, 9476, 9879, 3, 4, UNI_SC__MYMR } /* sc=mymr */,
- { 0, 9711, 2473, 4, 4, UNI_CCC__L } /* ccc=left */,
- { 0, 9476, 9816, 4, 3, UNI_KITS } /* sc=kits */,
- { 3, 8973, 3247, 6, 18, UNI_INPUNCTUATION } /* block=generalpunctuation */,
- { 0, 1418, 9675, 24, 4, UNI_WB__EB } /* canonicalcombiningclass=atbl */,
- { 0, 8782, 8276, 7, 8, UNI_BALI } /* script=balinese */,
- { 4, 10217, 6134, 3, 12, UNI_BC__AL } /* bc=arabicletter */,
- { 0, 9449, 0, 5, 0, UNI_emod_values_index } /* emod= */,
- { 29, 10283, 9454, 3, 5, -UNI_SD } /* sd=false */,
- { 8, 6741, 0, 10, 0, UNI_DEP } /* deprecated */,
- { 1, 7297, 8643, 3, 5, UNI_HYPHEN } /* ishyphen */,
- { 0, 9476, 8810, 3, 4, UNI_SOYO } /* sc=soyo */,
- { 0, 9691, 3481, 4, 18, UNI_TAIXUANJING } /* blk=taixuanjingsymbols */,
- { 16, 10253, 5620, 3, 14, UNI_LB__PO } /* lb=postfixnumeric */,
- { 6, 4074, 5522, 16, 14, UNI_SK } /* generalcategory=modifiersymbol */,
- { 0, 10244, 728, 3, 2, UNI_MN } /* gc=mn */,
- { 19, 6083, 8919, 13, 6, UNI_NV__432000 } /* numericvalue=432000 */,
- { 0, 6158, 10355, 12, 3, UNI_BIDIC } /* bidicontrol=yes */,
- { 11, 5536, 26, 14, 1, UNI_NFCQC__Y } /* nfcquickcheck=y */,
- { 8, 9691, 79, 4, 10, UNI_ARABICMATH } /* blk=arabicmath */,
- { 0, 1418, 5733, 24, 1, UNI_CCC__0 } /* canonicalcombiningclass=0 */,
- { 1, 75, 0, 2, 0, UNI_ME } /* me */,
- { 38, 6083, 7983, 13, 1, UNI_NV__7 } /* numericvalue=7 */,
- { 3, 2056, 9454, 22, 5, -UNI__PERL_NCHAR } /* noncharactercodepoint=false */,
- { 1, 9691, 43, 4, 9, UNI_CJKCOMPAT } /* blk=cjkcompat */,
- { 6, 10229, 6001, 3, 4, UNI_DT__NONE } /* dt=none */,
- { 1, 7, 0, 18, 0, UNI_CANS } /* canadianaboriginal */,
- { 2, 9647, 10079, 4, 4, UNI_AGE__14 } /* age=v140 */,
- { 130, 3877, 4314, 17, 7, UNI_MYMR } /* scriptextensions=myanmar */,
- { 3, 10244, 1026, 3, 2, UNI_NO } /* gc=no */,
- { 1, 185, 8404, 2, 8, UNI_KANAEXTB } /* iskanaextb */,
- { 0, 185, 1846, 2, 2, UNI_NL } /* isnl */,
- { 17, 8782, 7790, 7, 9, UNI_TALU } /* script=newtailue */,
- { 54, 9711, 8046, 4, 2, UNI_CCC__13 } /* ccc=13 */,
- { 6, 5875, 6455, 13, 3, UNI_JG__NYA } /* joininggroup=nya */,
- { 0, 10268, 10372, 3, 2, UNI_NV__49 } /* nv=49 */,
- { 8, 2304, 7828, 4, 7, UNI_ORKH } /* isoldturkic */,
- { 5, 9434, 9454, 5, 5, -UNI_CWCM } /* cwcm=false */,
- { 0, 9177, 1026, 6, 2, -UNI_QMARK } /* qmark=no */,
- { 4, 8881, 7639, 4, 7, UNI_ARABICPFA } /* isarabicpfa */,
- { 24, 4939, 0, 15, 0, UNI_SARB } /* oldsoutharabian */,
- { 1, 9711, 8986, 5, 4, UNI_CCC__10 } /* ccc=ccc10 */,
- { 9, 3049, 0, 8, 0, UNI_CHER } /* cherokee */,
- { 0, 9476, 9237, 3, 6, UNI_SC__YEZI } /* sc=yezidi */,
- { 24, 7230, 10259, 10, 3, UNI_BC__LRI } /* bidiclass=lri */,
- { 6, 185, 2165, 3, 17, UNI_CYRILLICSUP } /* iscyrillicsupplement */,
- { 0, 9449, 1, 5, 1, -UNI_EMOD } /* emod=n */,
- { 1, 185, 4699, 2, 14, UNI_ECOMP } /* isemojicomponent */,
- { 12, 9105, 0, 6, 0, UNI_KHOJ } /* khojki */,
- { 0, 6314, 0, 12, 0, UNI_ideo_values_index } /* ideographic= */,
- { 11, 8782, 8300, 7, 8, UNI_SC__DUPL } /* script=duployan */,
- { 9, 5662, 34, 14, 2, UNI_SB__EX } /* sentencebreak=ex */,
- { 6, 6083, 8091, 13, 2, UNI_NV__24 } /* numericvalue=24 */,
- { 0, 5662, 6677, 15, 8, UNI_SB__SC } /* sentencebreak=scontinue */,
- { 0, 185, 9847, 2, 3, UNI_LOE } /* isloe */,
- { 2, 7467, 10063, 3, 4, UNI_IN__11 } /* in=v110 */,
- { 3, 185, 8580, 3, 6, UNI_CJKEXTF } /* iscjkextf */,
- { 0, 10247, 7177, 3, 2, UNI_JG__FE } /* jg=fe */,
- { 0, 9147, 26, 6, 1, UNI__PERL_NCHAR } /* nchar=y */,
- { 3, 9691, 1514, 4, 24, UNI_HIGHPUSURROGATES } /* blk=highprivateusesurrogates */,
- { 0, 3463, 0, 12, 0, UNI_SMALLKANAEXT } /* smallkanaext */,
- { 0, 9476, 8831, 3, 7, UNI_SC__TGLG } /* sc=tagalog */,
- { 19, 9783, 0, 4, 0, UNI_GURU } /* guru */,
- { 0, 2803, 10355, 19, 3, UNI_IDST } /* idstrinaryoperator=yes */,
- { 1, 9476, 7260, 3, 10, UNI_CHRS } /* sc=chorasmian */,
- { 6, 3877, 8663, 17, 7, UNI_LINA } /* scriptextensions=lineara */,
- { 0, 7230, 2917, 10, 19, UNI_BC__RLO } /* bidiclass=righttoleftoverride */,
- { 0, 185, 4864, 2, 15, UNI_MISCPICTOGRAPHS } /* ismiscpictographs */,
- { 0, 9979, 2937, 5, 3, UNI_SUND } /* scx=sund */,
- { 34, 8881, 1753, 3, 2, UNI_ANY } /* isany */,
- { 0, 1586, 0, 14, 0, UNI_BYZANTINEMUSIC } /* byzantinemusic */,
- { 7, 7360, 1775, 10, 2, UNI_LB__AI } /* linebreak=ai */,
- { 1, 118, 1932, 4, 14, UNI_INDICNUMBERFORMS } /* inindicnumberforms */,
- { 1, 9647, 10063, 4, 4, UNI_AGE__11 } /* age=v110 */,
- { 0, 9476, 8866, 3, 4, UNI_SC__TIRH } /* sc=tirh */,
- { 0, 2164, 0, 21, 0, UNI_CYRILLICSUP } /* cyrillicsupplementary */,
- { 0, 9045, 10355, 6, 3, UNI_CWKCF } /* cwkcf=yes */,
- { 4, 9147, 10055, 6, 4, UNI__PERL_NCHAR } /* nchar=true */,
- { 47, 8782, 2708, 7, 19, UNI_EGYP } /* script=egyptianhieroglyphs */,
- { 0, 9691, 7016, 4, 11, UNI_INPAHAWHHMONG } /* blk=pahawhhmong */,
- { 58, 1869, 0, 9, 0, UNI_TITLE } /* titlecase */,
- { 0, 7230, 2513, 10, 20, UNI_BC__PDF } /* bidiclass=popdirectionalformat */,
- { 7, 1588, 0, 1, 0, UNI_Z } /* z */,
- { 3, 9711, 7220, 4, 10, UNI_CCC__BR } /* ccc=belowright */,
- { 6, 10268, 8188, 3, 8, UNI_NV__2_SLASH_3 } /* nv=6.67e-01 */,
- { 0, 10007, 0, 4, 0, UNI_SYRC } /* syrc */,
- { 8, 9469, 7854, 3, 8, UNI_INPAUCINHAU } /* inpaucinhau */,
- { 1, 5875, 5494, 13, 14, UNI_JG__MANICHAEANTETH } /* joininggroup=manichaeanteth */,
- { 14, 3877, 9129, 17, 6, UNI_LYCI } /* scriptextensions=lycian */,
- { 8, 9979, 8670, 4, 4, UNI_MAKA } /* scx=maka */,
- { 0, 9045, 0, 6, 0, UNI_cwkcf_values_index } /* cwkcf= */,
- { 1, 9691, 5368, 4, 14, UNI_LISUSUP } /* blk=lisusupplement */,
- { 33, 3877, 8740, 17, 7, UNI_OLCK } /* scriptextensions=olchiki */,
- { 9, 1592, 384, 3, 31, UNI_EGYPTIANHIEROGLYPHFORMATCONTROLS } /* inegyptianhieroglyphformatcontrols */,
- { 168, 9691, 8285, 5, 7, UNI_INBASSAVAH } /* blk=bassavah */,
- { 8, 9691, 5312, 4, 14, UNI_LATINEXTD } /* blk=latinextendedd */,
- { 51, 8782, 9815, 7, 4, UNI_KITS } /* script=kits */,
- { 29, 9439, 9454, 5, 5, -UNI_DASH } /* dash=false */,
- { 0, 9763, 263, 4, 2, UNI_GCB__SM } /* gcb=sm */,
- { 0, 9691, 5256, 4, 14, UNI_KANASUP } /* blk=kanasupplement */,
- { 33, 6083, 8925, 13, 6, UNI_NV__500000 } /* numericvalue=500000 */,
- { 0, 7908, 9454, 8, 5, -UNI_IDS } /* idstart=false */,
- { 2, 9691, 3193, 4, 11, UNI_ETHIOPICSUP } /* blk=ethiopicsup */,
- { 5, 6937, 2038, 6, 18, UNI_MISCTECHNICAL } /* inmiscellaneoustechnical */,
- { 0, 1990, 4394, 22, 16, UNI_INSC__SYLLABLEMODIFIER } /* indicsyllabiccategory=syllablemodifier */,
- { 0, 6340, 3069, 4, 16, UNI_HALFMARKS } /* incombininghalfmarks */,
- { 13, 1034, 0, 11, 0, UNI_ENCLOSEDCJK } /* enclosedcjk */,
- { 0, 10388, 0, 2, 0, UNI_CASEDLETTER } /* l& */,
- { 1, 10268, 9623, 3, 4, UNI_NV__3_SLASH_20 } /* nv=3/20 */,
- { 16, 9691, 570, 4, 30, UNI_CJKEXTC } /* blk=cjkunifiedideographsextensionc */,
- { 71, 9476, 8348, 3, 8, UNI_SC__GURU } /* sc=gurmukhi */,
- { 0, 9476, 8670, 3, 4, UNI_MAKA } /* sc=maka */,
- { 0, 9545, 1, 4, 1, -UNI_IDC } /* idc=n */,
- { 22, 8444, 26, 8, 1, UNI_RADICAL } /* radical=y */,
- { 1, 7005, 0, 11, 0, UNI_SO } /* othersymbol */,
- { 96, 5875, 6041, 13, 3, UNI_JG__WAW } /* joininggroup=waw */,
- { 120, 9476, 2509, 3, 4, UNI_SC__MONG } /* sc=mong */,
- { 35, 10229, 8332, 3, 8, UNI_DT__FRA } /* dt=fraction */,
- { 64, 9476, 3049, 3, 8, UNI_CHER } /* sc=cherokee */,
- { 4, 6697, 36, 11, 1, UNI_XPOSIXALPHA } /* alphabetic=t */,
- { 5, 185, 11, 2, 3, UNI_DIA } /* isdia */,
- { 0, 9979, 3049, 4, 8, UNI_CHER } /* scx=cherokee */,
- { 3, 9691, 7656, 5, 8, UNI_INBHAIKSUKI } /* blk=bhaiksuki */,
- { 10, 1115, 26, 26, 1, UNI_CWKCF } /* changeswhennfkccasefolded=y */,
- { 0, 7370, 26, 10, 1, UNI_XPOSIXLOWER } /* lowercase=y */,
- { 2, 2248, 7531, 3, 9, UNI_SUPARROWSB } /* insuparrowsb */,
- { 0, 2003, 0, 10, 0, UNI_L } /* category=l */,
- { 18, 3877, 8670, 17, 7, UNI_MAKA } /* scriptextensions=makasar */,
- { 2, 5662, 1847, 14, 5, UNI_SB__LO } /* sentencebreak=lower */,
- { 1, 185, 9099, 2, 6, UNI_KANBUN } /* iskanbun */,
- { 0, 8782, 6302, 7, 4, UNI_HEBR } /* script=hebr */,
- { 0, 9057, 1, 6, 1, -UNI_EMOJI } /* emoji=n */,
- { 0, 1088, 1, 27, 1, -UNI_PCM } /* prependedconcatenationmark=n */,
- { 0, 7560, 9454, 10, 5, -UNI_XPOSIXUPPER } /* uppercase=false */,
- { 0, 185, 8284, 2, 4, UNI_BASS } /* isbass */,
- { 8, 1880, 9454, 22, 5, -UNI_CWU } /* changeswhenuppercased=false */,
- { 16, 9476, 7853, 3, 9, UNI_PAUC } /* sc=paucinhau */,
- { 24, 1189, 9202, 3, 5, UNI_INTELUGU } /* intelugu */,
- { 19, 2248, 7094, 3, 10, UNI_SUPERANDSUB } /* insuperandsub */,
- { 6, 185, 3265, 2, 18, UNI_GEORGIANSUP } /* isgeorgiansupplement */,
- { 0, 4106, 0, 16, 0, UNI_HALFANDFULLFORMS } /* halfandfullforms */,
- { 1, 3877, 10015, 17, 4, UNI_TALE } /* scriptextensions=tale */,
- { 5, 9476, 4504, 3, 5, UNI_BAMU } /* sc=bamum */,
- { 0, 4847, 4331, 3, 15, UNI_MYANMAREXTB } /* inmyanmarextendedb */,
- { 0, 9979, 9959, 4, 4, UNI_RJNG } /* scx=rjng */,
- { 0, 1553, 17, 10, 1, UNI_SO } /* category=so */,
- { 2, 8973, 3445, 6, 18, UNI_RUMI } /* block=ruminumeralsymbols */,
- { 4, 4074, 728, 16, 2, UNI_MN } /* generalcategory=mn */,
- { 2, 1418, 9350, 25, 4, UNI_CCC__24 } /* canonicalcombiningclass=ccc24 */,
- { 3, 10346, 3528, 3, 7, UNI_VO__R } /* vo=rotated */,
- { 2, 3877, 9093, 17, 6, UNI_KTHI } /* scriptextensions=kaithi */,
- { 0, 4157, 2249, 3, 20, UNI_PRTI } /* isinscriptionalparthian */,
- { 7, 7580, 126, 10, 2, UNI_LB__CR } /* wordbreak=cr */,
- { 0, 10352, 1195, 3, 2, UNI_LB__LF } /* wb=lf */,
- { 0, 185, 1067, 2, 2, UNI_CASEDLETTER } /* islc */,
- { 0, 10217, 427, 3, 2, UNI_BC__ES } /* bc=es */,
- { 0, 185, 9895, 2, 3, UNI_NKO } /* isnko */,
- { 1, 5875, 2247, 13, 3, UNI_JG__AIN } /* joininggroup=ain */,
- { 9, 9691, 4654, 4, 15, UNI_DIACRITICALSEXT } /* blk=diacriticalsext */,
- { 6, 9979, 4426, 4, 6, UNI_TANG } /* scx=tangut */,
- { 2, 9691, 6230, 4, 12, UNI_ETHIOPICEXTA } /* blk=ethiopicexta */,
- { 1, 6752, 0, 11, 0, UNI_DOMINO } /* dominotiles */,
- { 39, 185, 6338, 2, 11, UNI_JOINC } /* isjoincontrol */,
- { 0, 3409, 0, 18, 0, UNI_ri_values_index } /* regionalindicator= */,
- { 9, 5662, 10394, 14, 2, UNI_SB__XX } /* sentencebreak=xx */,
- { 2, 4744, 1167, 15, 16, UNI_IDENTIFIERTYPE__DEFAULTIGNORABLE } /* identifiertype=defaultignorable */,
- { 0, 4847, 2086, 3, 3, UNI_INMODI } /* inmodi */,
- { 1, 9474, 4969, 5, 15, UNI_INSC__REGISTERSHIFTER } /* insc=registershifter */,
- { 0, 10508, 5096, 3, 5, UNI_XPOSIXXDIGIT } /* isxdigit */,
- { 0, 1418, 9225, 24, 6, UNI_CCC__9 } /* canonicalcombiningclass=virama */,
- { 0, 2304, 126, 3, 2, UNI_OCR } /* isocr */,
- { 9, 9476, 9081, 3, 6, UNI_HATR } /* sc=hatran */,
- { 2, 185, 7745, 2, 9, UNI_LATINEXTF } /* islatinextf */,
- { 0, 9190, 26, 5, 1, UNI_TERM } /* term=y */,
- { 10, 8712, 10355, 7, 3, UNI_DT__NONE } /* nfkdqc=yes */,
- { 1, 9476, 720, 3, 9, UNI_XSUX } /* sc=cuneiform */,
- { 1, 8782, 9655, 7, 4, UNI_AHOM } /* script=ahom */,
- { 0, 6083, 7972, 13, 8, UNI_NV__1_SLASH_64 } /* numericvalue=1.56e-02 */,
- { 34, 185, 4170, 2, 9, UNI_LATIN1 } /* islatin1sup */,
- { 6, 9213, 1026, 6, 2, -UNI_UIDEO } /* uideo=no */,
- { 2, 3175, 36, 18, 1, UNI_EPRES } /* emojipresentation=t */,
- { 2, 9711, 9671, 4, 4, UNI_CCC__216 } /* ccc=atar */,
- { 25, 7700, 6304, 4, 4, UNI_INHEBREW } /* inhebrew */,
- { 4, 3157, 0, 18, 0, UNI_ebase_values_index } /* emojimodifierbase= */,
- { 16, 9449, 1026, 5, 2, -UNI_EMOD } /* emod=no */,
- { 0, 1418, 9400, 25, 4, UNI_CCC__34 } /* canonicalcombiningclass=ccc34 */,
- { 3, 43, 0, 3, 0, UNI_CJK } /* cjk */,
- { 3, 6362, 0, 12, 0, UNI_KHMERSYMBOLS } /* khmersymbols */,
- { 3, 8881, 2354, 3, 19, UNI_HLUW } /* isanatolianhieroglyphs */,
- { 0, 3877, 9081, 17, 4, UNI_HATR } /* scriptextensions=hatr */,
- { 1, 407, 0, 7, 0, UNI_XPOSIXCNTRL } /* control */,
- { 0, 21, 1219, 2, 26, UNI_KATAKANAEXT } /* inkatakanaphoneticextensions */,
- { 1, 1418, 7947, 24, 2, UNI_CCC__21 } /* canonicalcombiningclass=21 */,
- { 8, 7467, 10337, 3, 3, UNI_IN__7 } /* in=v70 */,
- { 16, 10268, 9611, 3, 4, UNI_NV__15_SLASH_2 } /* nv=15/2 */,
- { 0, 1088, 0, 27, 0, UNI_pcm_values_index } /* prependedconcatenationmark= */,
- { 1, 8782, 8537, 7, 4, UNI_SC__BENG } /* script=beng */,
- { 0, 3877, 9679, 17, 4, UNI_AVST } /* scriptextensions=avst */,
- { 0, 4074, 32, 16, 2, UNI__PERL_SURROGATE } /* generalcategory=cs */,
- { 0, 9219, 10055, 6, 4, UNI_XPOSIXUPPER } /* upper=true */,
- { 0, 21, 5256, 2, 7, UNI_KANASUP } /* inkanasup */,
- { 0, 5875, 3843, 13, 17, UNI_JG__MANICHAEANHUNDRED } /* joininggroup=manichaeanhundred */,
- { 1, 9476, 1220, 4, 7, UNI_SC__KANA } /* sc=katakana */,
- { 4, 10535, 3403, 5, 5, UNI_XPOSIXBLANK } /* horizspace */,
- { 0, 6083, 8931, 13, 6, UNI_NV__600000 } /* numericvalue=600000 */,
- { 1, 185, 2034, 2, 22, UNI_MISCTECHNICAL } /* ismiscellaneoustechnical */,
- { 2, 1553, 4346, 9, 5, UNI_C } /* category=other */,
- { 2, 8782, 7016, 7, 11, UNI_HMNG } /* script=pahawhhmong */,
- { 8, 4074, 1060, 16, 2, UNI_SO } /* generalcategory=so */,
- { 69, 2248, 1296, 3, 24, UNI_SUPERANDSUB } /* insuperscriptsandsubscripts */,
- { 1, 8973, 7655, 6, 9, UNI_INBHAIKSUKI } /* block=bhaiksuki */,
- { 0, 9691, 9069, 4, 6, UNI_INGOTHIC } /* blk=gothic */,
- { 0, 9711, 9307, 4, 2, UNI_CCC__15 } /* ccc=15 */,
- { 33, 3391, 36, 18, 1, UNI__PERL_PATWS } /* patternwhitespace=t */,
- { 0, 9219, 26, 6, 1, UNI_XPOSIXUPPER } /* upper=y */,
- { 0, 1190, 5797, 3, 7, UNI_XPOSIXDIGIT } /* nt=decimal */,
- { 6, 3877, 9135, 17, 4, UNI_LYDI } /* scriptextensions=lydi */,
- { 9, 8782, 7310, 7, 10, UNI_DIAK } /* script=divesakuru */,
- { 0, 3877, 7501, 18, 9, UNI_SAUR } /* scriptextensions=saurashtra */,
- { 1, 8782, 7709, 7, 9, UNI_SC__SIND } /* script=khudawadi */,
- { 6, 185, 6862, 2, 11, UNI_KATAKANAEXT } /* iskatakanaext */,
- { 0, 10268, 7950, 3, 2, UNI_NV__43 } /* nv=43 */,
- { 0, 6674, 10355, 12, 3, UNI_XIDC } /* xidcontinue=yes */,
- { 81, 185, 3707, 2, 17, UNI_ETHIOPICEXTA } /* isethiopicextendeda */,
- { 27, 2164, 0, 8, 0, UNI_CYRL } /* cyrillic */,
- { 2, 185, 3175, 2, 17, UNI_EPRES } /* isemojipresentation */,
- { 3, 7230, 10262, 10, 3, UNI_BC__LRO } /* bidiclass=lro */,
- { 0, 3624, 0, 4, 0, UNI_UCAS } /* ucas */,
- { 0, 9979, 9231, 4, 6, UNI_WCHO } /* scx=wancho */,
- { 18, 3877, 2248, 17, 21, UNI_PRTI } /* scriptextensions=inscriptionalparthian */,
- { 0, 9476, 7570, 3, 4, UNI_WARA } /* sc=wara */,
- { 0, 9735, 1, 4, 1, -UNI_CWU } /* cwu=n */,
- { 2, 4847, 0, 17, 0, UNI_INMEROITICCURSIVE } /* inmeroiticcursive */,
- { 29, 4598, 3267, 4, 16, UNI_GEORGIANSUP } /* ingeorgiansupplement */,
- { 64, 8973, 3978, 6, 16, UNI_BOPOMOFOEXT } /* block=bopomofoextended */,
- { 0, 5875, 9995, 13, 4, UNI_JG__SHIN } /* joininggroup=shin */,
- { 0, 10247, 5504, 3, 4, UNI_JG__TETH } /* jg=teth */,
- { 10, 1088, 1026, 27, 2, -UNI_PCM } /* prependedconcatenationmark=no */,
- { 1, 8782, 10095, 7, 4, UNI_XPEO } /* script=xpeo */,
- { 1, 9691, 2860, 4, 19, UNI_MODIFIERTONELETTERS } /* blk=modifiertoneletters */,
- { 0, 3157, 1026, 18, 2, -UNI_EBASE } /* emojimodifierbase=no */,
- { 3, 7230, 5186, 10, 14, UNI_BC__EN } /* bidiclass=europeannumber */,
- { 3, 9476, 8621, 3, 4, UNI_SC__GRAN } /* sc=gran */,
- { 0, 7580, 73, 10, 2, UNI_WB__LE } /* wordbreak=le */,
- { 0, 4157, 3284, 3, 3, UNI_IDSB } /* isidsb */,
- { 7, 185, 8372, 2, 8, UNI_JAMOEXTA } /* isjamoexta */,
- { 0, 10346, 3517, 3, 18, UNI_VO__TR } /* vo=transformedrotated */,
- { 17, 10229, 10286, 3, 3, UNI_DT__SML } /* dt=sml */,
- { 2, 3707, 0, 11, 0, UNI_ETHIOPICEXT } /* ethiopicext */,
- { 6, 9051, 0, 6, 0, UNI_ecomp_values_index } /* ecomp= */,
- { 2, 9691, 3103, 4, 18, UNI_COPTICEPACTNUMBERS } /* blk=copticepactnumbers */,
- { 1, 3121, 1254, 18, 7, UNI_DT__INIT } /* decompositiontype=initial */,
- { 0, 10560, 5031, 4, 6, UNI_VEDICEXT } /* isvedicext */,
- { 32, 2993, 0, 19, 0, UNI_SUPARROWSC } /* supplementalarrowsc */,
- { 26, 9979, 7570, 4, 4, UNI_WARA } /* scx=wara */,
- { 0, 3877, 6362, 17, 5, UNI_KHMR } /* scriptextensions=khmer */,
- { 4, 720, 0, 9, 0, UNI_XSUX } /* cuneiform */,
- { 1, 3121, 2304, 18, 3, UNI_DT__ISO } /* decompositiontype=iso */,
- { 0, 2803, 0, 18, 0, UNI_IDST } /* idstrinaryoperator */,
- { 0, 185, 3373, 2, 18, UNI_ZP } /* isparagraphseparator */,
- { 0, 185, 839, 2, 29, UNI_MISCARROWS } /* ismiscellaneoussymbolsandarrows */,
- { 29, 8973, 4170, 6, 16, UNI_LATIN1 } /* block=latin1supplement */,
- { 21, 185, 7093, 2, 11, UNI_SUPERANDSUB } /* issuperandsub */,
- { 1, 9711, 9225, 4, 6, UNI_CCC__9 } /* ccc=virama */,
- { 3, 8782, 8388, 7, 4, UNI_SC__JAVA } /* script=java */,
- { 0, 8572, 0, 7, 0, UNI_CJKEXTE } /* cjkexte */,
- { 0, 9476, 3265, 3, 4, UNI_SC__GEOR } /* sc=geor */,
- { 5, 3877, 7501, 18, 3, UNI_SAUR } /* scriptextensions=saur */,
- { 19, 8782, 9907, 7, 4, UNI_OLCK } /* script=olck */,
- { 10, 7370, 1026, 10, 2, -UNI_XPOSIXLOWER } /* lowercase=no */,
- { 8, 9979, 9851, 4, 4, UNI_MEDF } /* scx=medf */,
- { 0, 1506, 5217, 5, 11, UNI_INGREEK } /* ingreekandcoptic */,
- { 0, 4984, 0, 15, 0, UNI_TAMILSUP } /* tamilsupplement */,
- { 1, 10268, 8937, 3, 6, UNI_NV__700000 } /* nv=700000 */,
- { 30, 185, 3809, 2, 17, UNI_LETTERLIKESYMBOLS } /* isletterlikesymbols */,
- { 1, 2206, 5669, 21, 2, UNI_WB__EB } /* graphemeclusterbreak=eb */,
- { 0, 9691, 8380, 4, 8, UNI_JAMOEXTB } /* blk=jamoextb */,
- { 0, 8973, 3193, 6, 8, UNI_INETHIOPIC } /* block=ethiopic */,
- { 0, 3877, 9831, 17, 3, UNI_LAO } /* scriptextensions=lao */,
- { 0, 185, 1925, 3, 5, UNI_ZYYY } /* iscommon */,
- { 50, 7908, 0, 7, 0, UNI_IDS } /* idstart */,
- { 1, 3121, 3463, 18, 5, UNI_DT__SML } /* decompositiontype=small */,
- { 1, 7230, 3337, 10, 18, UNI_BC__LRI } /* bidiclass=lefttorightisolate */,
- { 0, 2248, 7105, 3, 10, UNI_INSYLOTINAGRI } /* insylotinagri */,
- { 0, 185, 9843, 2, 4, UNI_LINB } /* islinb */,
- { 0, 1274, 36, 21, 1, UNI_CE } /* compositionexclusion=t */,
- { 0, 4847, 1596, 3, 13, UNI_MUSIC } /* inmusicalsymbols */,
- { 5, 9791, 0, 4, 0, UNI_HLUW } /* hluw */,
- { 0, 10253, 34, 3, 2, UNI_LB__EX } /* lb=ex */,
- { 1, 9647, 8156, 4, 3, UNI_AGE__6_DOT_2 } /* age=6.2 */,
- { 27, 6083, 8907, 13, 5, UNI_NV__30000 } /* numericvalue=30000 */,
- { 2, 9691, 1678, 4, 23, UNI_LATINEXTADDITIONAL } /* blk=latinextendedadditional */,
- { 1, 6083, 10214, 13, 3, UNI_NV__9_SLASH_2 } /* numericvalue=9/2 */,
- { 0, 1553, 1934, 9, 2, UNI_CN } /* category=cn */,
- { 0, 8973, 5131, 7, 13, UNI_CJKCOMPATFORMS } /* block=cjkcompatforms */,
- { 2, 3877, 7310, 17, 10, UNI_DIAK } /* scriptextensions=divesakuru */,
- { 16, 9979, 9791, 4, 4, UNI_HLUW } /* scx=hluw */,
- { 6, 3877, 9237, 17, 4, UNI_YEZI } /* scriptextensions=yezi */,
- { 2, 6083, 9571, 13, 4, UNI_NV__1_SLASH_40 } /* numericvalue=1/40 */,
- { 16, 9979, 5634, 4, 14, UNI_PHLP } /* scx=psalterpahlavi */,
- { 0, 9476, 2632, 3, 6, UNI_BRAH } /* sc=brahmi */,
- { 105, 6083, 8949, 13, 3, UNI_NV__900 } /* numericvalue=900 */,
- { 22, 185, 1088, 2, 26, UNI_PCM } /* isprependedconcatenationmark */,
- { 0, 7160, 5275, 3, 9, UNI_YIRADICALS } /* isyiradicals */,
- { 1, 9476, 8873, 3, 7, UNI_ZZZZ } /* sc=unknown */,
- { 1, 10244, 1466, 3, 13, UNI_M } /* gc=combiningmark */,
- { 0, 4865, 728, 4, 2, UNI_CPMN } /* iscpmn */,
- { 87, 9691, 7420, 4, 10, UNI_INOLDPERSIAN } /* blk=oldpersian */,
- { 1, 9711, 5733, 4, 1, UNI_CCC__0 } /* ccc=0 */,
- { 0, 9743, 1026, 4, 2, -UNI_DEP } /* dep=no */,
- { 8, 4074, 1588, 16, 1, UNI_Z } /* generalcategory=z */,
- { 0, 3121, 8726, 18, 7, UNI_DT__NB } /* decompositiontype=nobreak */,
- { 3, 8973, 9519, 6, 5, UNI_INOSAGE } /* block=osage */,
- { 1, 8973, 6057, 6, 13, UNI_MISCTECHNICAL } /* block=misctechnical */,
- { 1, 8316, 1, 8, 1, -UNI_EXTPICT } /* extpict=n */,
- { 4, 10035, 0, 4, 0, UNI_TGLG } /* tglg */,
- { 0, 2808, 4476, 4, 13, UNI_ARABICEXTA } /* inarabicextendeda */,
- { 1, 7467, 8119, 3, 1, UNI_IN__9 } /* in=9 */,
- { 0, 185, 8649, 2, 7, UNI_KNDA } /* iskannada */,
- { 4, 3409, 36, 18, 1, UNI_RI } /* regionalindicator=t */,
- { 4, 7467, 8046, 3, 2, UNI_IN__13 } /* in=13 */,
- { 8, 1007, 0, 27, 0, UNI_ANCIENTGREEKMUSIC } /* ancientgreekmusicalnotation */,
- { 2, 9476, 9679, 3, 4, UNI_AVST } /* sc=avst */,
- { 4, 185, 10396, 2, 2, UNI_ZL } /* iszl */,
- { 0, 5875, 7880, 13, 9, UNI_JG__SYRIACWAW } /* joininggroup=syriacwaw */,
- { 34, 8973, 2165, 7, 20, UNI_CYRILLICSUP } /* block=cyrillicsupplementary */,
- { 15, 9911, 0, 4, 0, UNI_ORKH } /* orkh */,
- { 1, 9549, 9454, 5, 5, -UNI_XIDS } /* xids=false */,
- { 2, 8967, 9454, 6, 5, -UNI_BIDIM } /* bidim=false */,
- { 5, 8973, 8388, 6, 8, UNI_INJAVANESE } /* block=javanese */,
- { 0, 9476, 10051, 3, 4, UNI_TOTO } /* sc=toto */,
- { 16, 185, 9183, 2, 6, UNI_RJNG } /* isrejang */,
- { 0, 9484, 0, 5, 0, UNI_LIMB } /* limbu */,
- { 2, 9979, 10047, 4, 4, UNI_TNSA } /* scx=tnsa */,
- { 0, 9711, 9410, 5, 4, UNI_CCC__36 } /* ccc=ccc36 */,
- { 0, 9691, 8838, 4, 7, UNI_INTAITHAM } /* blk=taitham */,
- { 1, 8782, 9755, 7, 4, UNI_DSRT } /* script=dsrt */,
- { 48, 5408, 0, 12, 0, UNI_INMANICHAEAN } /* inmanichaean */,
- { 7, 8768, 1026, 7, 2, -UNI_PATSYN } /* patsyn=no */,
- { 0, 8782, 9939, 7, 4, UNI_MIAO } /* script=plrd */,
- { 0, 3877, 8635, 17, 7, UNI_HANO } /* scriptextensions=hanunoo */,
- { 0, 185, 9075, 2, 5, UNI_GREXT } /* isgrext */,
- { 1, 4972, 2556, 5, 16, UNI_TERM } /* isterminalpunctuation */,
- { 2, 9424, 0, 5, 0, UNI_XPOSIXCNTRL } /* cntrl */,
- { 34, 10268, 5732, 3, 11, UNI_NV__10000000000 } /* nv=10000000000 */,
- { 2, 3553, 36, 18, 1, UNI_VS } /* variationselector=t */,
- { 0, 9691, 7835, 4, 9, UNI_INOLDUYGHUR } /* blk=olduyghur */,
- { 0, 1418, 9307, 24, 2, UNI_CCC__15 } /* canonicalcombiningclass=15 */,
- { 21, 8782, 8754, 7, 7, UNI_OSMA } /* script=osmanya */,
- { 14, 3283, 26, 18, 1, UNI_IDSB } /* idsbinaryoperator=y */,
- { 4, 9763, 5581, 4, 11, UNI_GCB__SM } /* gcb=spacingmark */,
- { 0, 8782, 2453, 7, 20, UNI_PHLI } /* script=inscriptionalpahlavi */,
- { 0, 1538, 9, 24, 2, UNI_INPC__NA } /* indicpositionalcategory=na */,
- { 0, 3553, 1, 18, 1, -UNI_VS } /* variationselector=n */,
- { 39, 9476, 8276, 3, 8, UNI_BALI } /* sc=balinese */,
- { 8, 185, 1678, 2, 23, UNI_LATINEXTADDITIONAL } /* islatinextendedadditional */,
- { 20, 8782, 7700, 7, 9, UNI_SC__QAAI } /* script=inherited */,
- { 132, 3403, 36, 6, 1, UNI_XPOSIXSPACE } /* space=t */,
- { 2, 2003, 5915, 10, 12, UNI_ZL } /* category=lineseparator */,
- { 137, 9691, 9534, 4, 5, UNI_INTAKRI } /* blk=takri */,
- { 0, 185, 8607, 2, 7, UNI_ELBA } /* iselbasan */,
- { 0, 185, 6626, 2, 12, UNI_PLAYINGCARDS } /* isplayingcards */,
- { 0, 2003, 36, 10, 1, UNI_TITLE } /* category=lt */,
- { 0, 9691, 3622, 4, 17, UNI_INCAUCASIANALBANIAN } /* blk=caucasianalbanian */,
- { 1, 10253, 9764, 3, 2, UNI_LB__CB } /* lb=cb */,
- { 0, 8782, 2632, 7, 4, UNI_BRAH } /* script=brah */,
- { 0, 185, 6494, 2, 12, UNI_GONM } /* ismasaramgondi */,
- { 0, 3398, 0, 11, 0, UNI_wspace_values_index } /* whitespace= */,
- { 0, 7218, 4505, 3, 7, UNI_BAMUMSUP } /* inbamumsup */,
- { 9, 185, 4090, 2, 16, UNI_GEORGIANEXT } /* isgeorgianextended */,
- { 0, 10268, 8212, 3, 8, UNI_NV__4_SLASH_5 } /* nv=8.00e-01 */,
- { 0, 1724, 0, 23, 0, UNI_SUPPUNCTUATION } /* supplementalpunctuation */,
- { 1, 9979, 8600, 4, 7, UNI_DSRT } /* scx=deseret */,
- { 3, 10244, 6994, 3, 11, UNI_NO } /* gc=othernumber */,
- { 1, 9476, 9971, 3, 4, UNI_SAMR } /* sc=samr */,
- { 0, 5875, 6018, 13, 13, UNI_JG__MANICHAEANTEN } /* joininggroup=manichaeanten */,
- { 0, 8866, 0, 7, 0, UNI_TIRH } /* tirhuta */,
- { 4, 9461, 1847, 3, 5, UNI_SB__LO } /* sb=lower */,
- { 0, 10352, 5669, 3, 2, UNI_WB__EB } /* wb=eb */,
- { 88, 1592, 6243, 3, 11, UNI_ETHIOPICEXTB } /* inethiopicextb */,
- { 2, 8782, 9787, 7, 4, UNI_SC__HANO } /* script=hano */,
- { 1, 7682, 10055, 9, 4, UNI_EXT } /* extender=true */,
- { 112, 8973, 3607, 8, 15, UNI_UCAS } /* block=canadiansyllabics */,
- { 1, 21, 9265, 3, 4, UNI_INADLAM } /* inadlam */,
- { 2, 8973, 79, 6, 6, UNI_INARABIC } /* block=arabic */,
- { 0, 4074, 6983, 16, 11, UNI_LO } /* generalcategory=otherletter */,
- { 0, 9979, 9887, 4, 4, UNI_NBAT } /* scx=nbat */,
- { 77, 185, 1061, 3, 5, UNI_COPT } /* iscoptic */,
- { 1, 2304, 7837, 4, 7, UNI_OUGR } /* isolduyghur */,
- { 20, 8782, 9931, 7, 4, UNI_SC__PHLP } /* script=phlp */,
- { 1, 9476, 9201, 3, 6, UNI_SC__TELU } /* sc=telugu */,
- { 0, 8973, 1724, 6, 23, UNI_SUPPUNCTUATION } /* block=supplementalpunctuation */,
- { 0, 10268, 10364, 3, 2, UNI_NV__45 } /* nv=45 */,
- { 2, 6340, 8573, 3, 6, UNI_CJKEXTE } /* incjkexte */,
- { 1, 6083, 8124, 13, 8, UNI_NV__1_SLASH_20 } /* numericvalue=5.00e-02 */,
- { 0, 8782, 4504, 7, 5, UNI_BAMU } /* script=bamum */,
- { 1, 2311, 0, 4, 0, UNI_SINH } /* sinh */,
- { 0, 10247, 342, 3, 2, UNI_JG__PE } /* jg=pe */,
- { 20, 8782, 9484, 7, 5, UNI_SC__LIMB } /* script=limbu */,
- { 1, 185, 2584, 2, 4, UNI_MAND } /* ismand */,
- { 33, 1418, 2479, 24, 5, UNI_CCC__R } /* canonicalcombiningclass=right */,
- { 9, 8782, 2312, 8, 3, UNI_SC__SINH } /* script=sinh */,
- { 1, 9947, 0, 4, 0, UNI_COPT } /* qaac */,
- { 0, 9979, 4042, 4, 7, UNI_CPRT } /* scx=cypriot */,
- { 0, 750, 0, 21, 0, UNI_ENCLOSEDALPHANUM } /* enclosedalphanumerics */,
- { 0, 9691, 4426, 4, 6, UNI_INTANGUT } /* blk=tangut */,
- { 1, 8775, 0, 7, 0, UNI_PHAG } /* phagspa */,
- { 0, 2206, 5581, 21, 11, UNI_GCB__SM } /* graphemeclusterbreak=spacingmark */,
- { 98, 3877, 9117, 17, 6, UNI_LEPC } /* scriptextensions=lepcha */,
- { 3, 6083, 9575, 13, 3, UNI_NV__1_SLASH_6 } /* numericvalue=1/6 */,
- { 0, 8973, 6230, 6, 12, UNI_ETHIOPICEXTA } /* block=ethiopicexta */,
- { 1, 4074, 9424, 16, 5, UNI_XPOSIXCNTRL } /* generalcategory=cntrl */,
- { 2, 10250, 6840, 3, 11, UNI_JT__C } /* jt=joincausing */,
- { 7, 9469, 2579, 5, 6, UNI_INPC__BOTTOM } /* inpc=bottom */,
- { 0, 4426, 0, 4, 0, UNI_TANG } /* tang */,
- { 0, 9739, 0, 4, 0, UNI_CYRL } /* cyrl */,
- { 0, 6340, 1903, 3, 21, UNI_CJKCOMPATIDEOGRAPHSSUP } /* incjkcompatideographssup */,
- { 13, 8782, 4186, 7, 7, UNI_SC__LINB } /* script=linearb */,
- { 51, 9269, 36, 5, 1, UNI_POSIXXDIGIT } /* ahex=t */,
- { 8, 10223, 26, 3, 1, UNI_CI } /* ci=y */,
- { 23, 7230, 3229, 10, 18, UNI_BC__FSI } /* bidiclass=firststrongisolate */,
- { 4, 9213, 10355, 6, 3, UNI_UIDEO } /* uideo=yes */,
- { 4, 5888, 0, 13, 0, UNI_KANAEXTA } /* kanaextendeda */,
- { 1, 1418, 185, 24, 2, UNI_CCC__IS } /* canonicalcombiningclass=is */,
- { 131, 1418, 10166, 24, 3, UNI_CCC__DB } /* canonicalcombiningclass=233 */,
+ { 31, 8881, 81, 4, 33, UNI_ARABICMATH } /* isarabicmathematicalalphabeticsymbols */,
+ { 0, 7360, 341, 10, 2, UNI_LB__OP } /* linebreak=op */,
+ { 1, 9735, 3, 4, 1, -UNI_CWU } /* cwu=f */,
+ { 2, 9469, 0, 5, 0, UNI_inpc_values_index } /* inpc= */,
+ { 2, 9476, 8621, 3, 4, UNI_SC__GRAN } /* sc=gran */,
+ { 5, 8973, 4504, 6, 5, UNI_INBAMUM } /* block=bamum */,
+ { 3, 9476, 9791, 3, 4, UNI_HLUW } /* sc=hluw */,
+ { 32, 9474, 4879, 5, 15, UNI_INSC__MODIFYINGLETTER } /* insc=modifyingletter */,
+ { 64, 9691, 2879, 4, 9, UNI_INMONGOLIAN } /* blk=mongolian */,
+ { 3, 10244, 1067, 3, 2, UNI_CASEDLETTER } /* gc=lc */,
+ { 0, 2593, 3546, 20, 7, UNI_VO__U } /* verticalorientation=upright */,
+ { 2, 1418, 8251, 24, 2, UNI_CCC__19 } /* canonicalcombiningclass=19 */,
+ { 0, 9219, 1, 6, 1, -UNI_XPOSIXUPPER } /* upper=n */,
+ { 1, 7297, 4139, 3, 15, UNI_HIGHPUSURROGATES } /* ishighpusurrogates */,
+ { 1, 9476, 3934, 3, 11, UNI_SGNW } /* sc=signwriting */,
+ { 8, 185, 184, 2, 20, UNI_MISCSYMBOLS } /* ismiscellaneoussymbols */,
+ { 53, 185, 3050, 3, 3, UNI_CHER } /* ischer */,
+ { 0, 21, 5340, 2, 14, UNI_LATINEXTF } /* inlatinextendedf */,
+ { 0, 3122, 0, 5, 0, UNI_ECOMP } /* ecomp */,
+ { 64, 6697, 3, 11, 1, -UNI_XPOSIXALPHA } /* alphabetic=f */,
+ { 3, 9691, 9264, 4, 5, UNI_INADLAM } /* blk=adlam */,
+ { 2, 2784, 6070, 19, 13, UNI_HST__NA } /* hangulsyllabletype=notapplicable */,
+ { 0, 10247, 5420, 3, 4, UNI_JG__BETH } /* jg=beth */,
+ { 14, 185, 6362, 2, 12, UNI_KHMERSYMBOLS } /* iskhmersymbols */,
{ 0, 9691, 9033, 4, 6, UNI_INCHAKMA } /* blk=chakma */,
- { 0, 9691, 468, 4, 11, UNI_INPUNCTUATION } /* blk=punctuation */,
- { 0, 7580, 1846, 10, 2, UNI_WB__NL } /* wordbreak=nl */,
- { 0, 3775, 0, 17, 0, UNI_INDICSIYAQNUMBERS } /* indicsiyaqnumbers */,
- { 7, 9189, 26, 6, 1, UNI_STERM } /* sterm=y */,
+ { 1, 9695, 752, 4, 5, UNI_BPT__C } /* bpt=close */,
+ { 7, 4074, 401, 16, 6, UNI_CF } /* generalcategory=format */,
+ { 1, 9647, 10063, 4, 3, UNI_IN__1_DOT_1 } /* age=v11 */,
+ { 0, 9691, 7016, 4, 11, UNI_INPAHAWHHMONG } /* blk=pahawhhmong */,
+ { 0, 8973, 750, 6, 21, UNI_ENCLOSEDALPHANUM } /* block=enclosedalphanumerics */,
+ { 1, 9691, 8754, 4, 7, UNI_INOSMANYA } /* blk=osmanya */,
+ { 1, 4744, 7350, 15, 10, UNI_IDENTIFIERTYPE__LIMITEDUSE } /* identifiertype=limiteduse */,
+ { 5, 8973, 9129, 6, 6, UNI_INLYCIAN } /* block=lycian */,
+ { 11, 7297, 1656, 3, 5, UNI_HANG } /* ishangul */,
+ { 1, 10553, 0, 3, 0, UNI_S } /* iss */,
+ { 2, 9691, 3928, 4, 17, UNI_SUTTONSIGNWRITING } /* blk=suttonsignwriting */,
+ { 3, 185, 10087, 2, 4, UNI_WCHO } /* iswcho */,
+ { 5, 3283, 10055, 18, 4, UNI_IDSB } /* idsbinaryoperator=true */,
+ { 69, 7370, 10355, 10, 3, UNI_XPOSIXLOWER } /* lowercase=yes */,
+ { 4, 10244, 729, 3, 6, UNI_N } /* gc=number */,
+ { 1, 185, 5368, 2, 4, UNI_LISU } /* islisu */,
+ { 3, 9476, 3826, 3, 10, UNI_SC__MANI } /* sc=manichaean */,
+ { 0, 1846, 0, 2, 0, UNI_NL } /* nl */,
+ { 1, 3877, 9919, 17, 4, UNI_OSGE } /* scriptextensions=osge */,
+ { 2, 9489, 1026, 5, 2, -UNI_MATH } /* math=no */,
+ { 4, 4074, 4954, 16, 15, UNI_PS } /* generalcategory=openpunctuation */,
+ { 3, 1088, 0, 26, 0, UNI_PCM } /* prependedconcatenationmark */,
+ { 4, 3877, 8276, 17, 4, UNI_BALI } /* scriptextensions=bali */,
+ { 0, 5116, 1026, 14, 2, -UNI_CI } /* caseignorable=no */,
+ { 8, 21, 4170, 2, 16, UNI_LATIN1 } /* inlatin1supplement */,
+ { 3, 5408, 5942, 4, 7, UNI_INMALAYALAM } /* inmalayalam */,
+ { 7, 7460, 9599, 10, 4, UNI_IN__13 } /* presentin=13.0 */,
+ { 0, 7300, 3, 10, 1, -UNI_DIA } /* diacritic=f */,
+ { 0, 1858, 3, 22, 1, -UNI_CWT } /* changeswhentitlecased=f */,
+ { 3, 6614, 0, 12, 0, UNI_PHAISTOS } /* phaistosdisc */,
+ { 0, 185, 1847, 2, 5, UNI_XPOSIXLOWER } /* islower */,
+ { 6, 9051, 1, 6, 1, -UNI_ECOMP } /* ecomp=n */,
+ { 1, 9474, 5718, 5, 14, UNI_INSC__VOWELDEPENDENT } /* insc=voweldependent */,
+ { 0, 8444, 1, 8, 1, -UNI_RADICAL } /* radical=n */,
+ { 0, 1418, 10392, 24, 2, UNI_CCC__9 } /* canonicalcombiningclass=vr */,
+ { 3, 185, 6338, 2, 11, UNI_JOINC } /* isjoincontrol */,
+ { 5, 2248, 1321, 3, 24, UNI_SYMBOLSANDPICTOGRAPHSEXTA } /* insymbolsandpictographsexta */,
+ { 35, 8593, 26, 7, 1, UNI_COMPEX } /* compex=y */,
{ 0, 10253, 1846, 3, 2, UNI_LB__NL } /* lb=nl */,
- { 5, 9979, 5940, 4, 9, UNI_MLYM } /* scx=malayalam */,
- { 2, 9087, 10055, 6, 4, UNI_JOINC } /* joinc=true */,
- { 0, 7071, 0, 11, 0, UNI_SORA } /* sorasompeng */,
- { 3, 9927, 0, 4, 0, UNI_pcm_values_index } /* pcm= */,
- { 17, 8973, 9891, 6, 4, UNI_INNEWA } /* block=newa */,
- { 1, 9979, 6593, 4, 4, UNI_HUNG } /* scx=hung */,
- { 2, 8973, 8380, 6, 8, UNI_JAMOEXTB } /* block=jamoextb */,
- { 32, 8961, 10055, 6, 4, UNI_BIDIC } /* bidic=true */,
- { 4, 5662, 139, 14, 2, UNI_SB__FO } /* sentencebreak=fo */,
- { 1, 3877, 2841, 17, 19, UNI_MERO } /* scriptextensions=meroitichieroglyphs */,
- { 1, 10553, 7434, 3, 6, UNI_SOGD } /* issogdian */,
- { 10, 9711, 9387, 4, 2, UNI_CCC__31 } /* ccc=31 */,
- { 10, 3877, 9819, 17, 4, UNI_KNDA } /* scriptextensions=knda */,
- { 49, 7460, 10319, 10, 3, UNI_IN__5_DOT_1 } /* presentin=v51 */,
- { 1, 7370, 3, 10, 1, -UNI_XPOSIXLOWER } /* lowercase=f */,
- { 1, 10268, 8091, 3, 2, UNI_NV__24 } /* nv=24 */,
- { 1, 3877, 9827, 17, 4, UNI_LANA } /* scriptextensions=lana */,
- { 1, 2727, 0, 19, 0, UNI_ENCLOSEDALPHANUMSUP } /* enclosedalphanumsup */,
- { 1, 6083, 10153, 13, 2, UNI_NV__42 } /* numericvalue=42 */,
- { 6, 2304, 2899, 3, 18, UNI_OTTOMANSIYAQNUMBERS } /* isottomansiyaqnumbers */,
- { 0, 7060, 3, 11, 1, -UNI_SD } /* softdotted=f */,
- { 33, 10247, 2661, 3, 9, UNI_JG__YEHBARREE } /* jg=yehbarree */,
- { 4, 5875, 4266, 13, 16, UNI_JG__MANICHAEANTWENTY } /* joininggroup=manichaeantwenty */,
+ { 0, 8973, 5862, 6, 6, UNI_IPAEXT } /* block=ipaext */,
+ { 3, 9711, 10145, 4, 3, UNI_CCC__BL } /* ccc=218 */,
+ { 0, 10268, 10181, 3, 3, UNI_NV__3_SLASH_5 } /* nv=3/5 */,
+ { 1, 2242, 6974, 4, 9, UNI_INNANDINAGARI } /* innandinagari */,
+ { 3, 8810, 0, 4, 0, UNI_SOYO } /* soyo */,
+ { 7, 7230, 5578, 10, 14, UNI_BC__NSM } /* bidiclass=nonspacingmark */,
+ { 38, 2248, 2994, 3, 18, UNI_SUPARROWSC } /* insupplementalarrowsc */,
+ { 5, 8316, 0, 7, 0, UNI_EXTPICT } /* extpict */,
+ { 2, 510, 0, 20, 0, UNI_CJK } /* cjkunifiedideographs */,
+ { 8, 5172, 10355, 14, 3, UNI_EMOD } /* emojimodifier=yes */,
+ { 0, 5045, 1, 3, 33, UNI_UCAS } /* isunifiedcanadianaboriginalsyllabics */,
+ { 0, 1836, 1026, 22, 2, -UNI_CWL } /* changeswhenlowercased=no */,
+ { 25, 3121, 8726, 18, 7, UNI_DT__NB } /* decompositiontype=nobreak */,
+ { 0, 6529, 7836, 3, 8, UNI_INOLDUYGHUR } /* inolduyghur */,
+ { 0, 6340, 4625, 3, 14, UNI_CURRENCYSYMBOLS } /* incurrencysymbols */,
+ { 26, 9691, 1678, 4, 23, UNI_LATINEXTADDITIONAL } /* blk=latinextendedadditional */,
+ { 8, 8973, 9207, 6, 6, UNI_INTHAANA } /* block=thaana */,
+ { 1, 9549, 10055, 5, 4, UNI_XIDS } /* xids=true */,
+ { 0, 3877, 9201, 17, 6, UNI_TELU } /* scriptextensions=telugu */,
+ { 0, 6083, 10366, 13, 2, UNI_NV__46 } /* numericvalue=46 */,
+ { 15, 21, 6862, 2, 11, UNI_KATAKANAEXT } /* inkatakanaext */,
+ { 116, 9691, 8468, 4, 8, UNI_INTAGBANWA } /* blk=tagbanwa */,
+ { 0, 2185, 3, 21, 1, -UNI_EXTPICT } /* extendedpictographic=f */,
+ { 8, 3877, 9703, 17, 4, UNI_CAKM } /* scriptextensions=cakm */,
+ { 11, 9647, 9599, 4, 4, UNI_AGE__13 } /* age=13.0 */,
+ { 0, 7580, 1219, 10, 2, UNI_WB__KA } /* wordbreak=ka */,
+ { 65, 8782, 8388, 7, 4, UNI_SC__JAVA } /* script=java */,
+ { 0, 6083, 9591, 13, 4, UNI_NV__11_SLASH_2 } /* numericvalue=11/2 */,
+ { 0, 185, 6109, 2, 13, UNI_VERTICALFORMS } /* isverticalforms */,
+ { 0, 10553, 8797, 3, 6, UNI_SHAW } /* isshavian */,
+ { 10, 6675, 3, 11, 1, -UNI_IDC } /* idcontinue=f */,
+ { 16, 3877, 79, 17, 6, UNI_ARAB } /* scriptextensions=arabic */,
+ { 8, 3809, 0, 17, 0, UNI_LETTERLIKESYMBOLS } /* letterlikesymbols */,
+ { 0, 1320, 0, 25, 0, UNI_SYMBOLSANDPICTOGRAPHSEXTA } /* symbolsandpictographsexta */,
+ { 0, 9051, 10055, 6, 4, UNI_ECOMP } /* ecomp=true */,
+ { 0, 10247, 9955, 3, 4, UNI_JG__QAPH } /* jg=qaph */,
+ { 0, 9979, 9294, 4, 5, UNI_BUHD } /* scx=buhid */,
+ { 0, 4157, 3776, 3, 16, UNI_INDICSIYAQNUMBERS } /* isindicsiyaqnumbers */,
+ { 8, 79, 0, 35, 0, UNI_ARABICMATH } /* arabicmathematicalalphabeticsymbols */,
+ { 8, 340, 0, 2, 0, UNI_LO } /* lo */,
+ { 28, 9691, 114, 4, 35, UNI_DIACRITICALSFORSYMBOLS } /* blk=combiningdiacriticalmarksforsymbols */,
+ { 8, 5875, 4244, 13, 3, UNI_JG__LAM } /* joininggroup=lam */,
+ { 25, 4847, 2880, 3, 11, UNI_MONGOLIANSUP } /* inmongoliansup */,
+ { 0, 7360, 867, 10, 2, UNI_LB__SP } /* linebreak=sp */,
+ { 0, 10217, 3427, 3, 18, UNI_BC__RLI } /* bc=righttoleftisolate */,
+ { 1, 7391, 6721, 4, 9, UNI_CASEDLETTER } /* iscasedletter */,
+ { 49, 6158, 0, 12, 0, UNI_bidic_values_index } /* bidicontrol= */,
+ { 0, 9476, 7844, 3, 4, UNI_PALM } /* sc=palm */,
+ { 0, 3409, 10355, 18, 3, UNI_RI } /* regionalindicator=yes */,
+ { 0, 8973, 6044, 6, 13, UNI_MAYANNUMERALS } /* block=mayannumerals */,
+ { 0, 4381, 0, 13, 0, UNI_MATHOPERATORS } /* mathoperators */,
+ { 16, 9979, 9795, 4, 4, UNI_HMNG } /* scx=hmng */,
+ { 6, 7655, 0, 9, 0, UNI_BHKS } /* bhaiksuki */,
+ { 2, 868, 0, 28, 0, UNI_PHONETICEXTSUP } /* phoneticextensionssupplement */,
+ { 9, 5536, 26, 14, 1, UNI_NFCQC__Y } /* nfcquickcheck=y */,
+ { 0, 9927, 0, 4, 0, UNI_pcm_values_index } /* pcm= */,
+ { 0, 10244, 3373, 3, 18, UNI_ZP } /* gc=paragraphseparator */,
+ { 0, 3877, 8300, 17, 8, UNI_DUPL } /* scriptextensions=duployan */,
+ { 0, 6083, 8931, 13, 5, UNI_NV__60000 } /* numericvalue=60000 */,
+ { 5, 6083, 10358, 13, 2, UNI_NV__38 } /* numericvalue=38 */,
+ { 0, 7297, 6594, 3, 3, UNI_HUNG } /* ishung */,
+ { 0, 8961, 0, 6, 0, UNI_bidic_values_index } /* bidic= */,
+ { 0, 185, 4314, 2, 16, UNI_MYANMAREXTA } /* ismyanmarextendeda */,
{ 0, 7104, 0, 4, 0, UNI_SYLO } /* sylo */,
- { 0, 8702, 1036, 4, 25, UNI_ENCLOSEDCJK } /* inenclosedcjklettersandmonths */,
- { 0, 185, 1034, 2, 27, UNI_ENCLOSEDCJK } /* isenclosedcjklettersandmonths */,
- { 1, 6158, 9454, 12, 5, -UNI_BIDIC } /* bidicontrol=false */,
- { 0, 2553, 1026, 20, 2, -UNI_TERM } /* terminalpunctuation=no */,
- { 1, 1418, 1220, 24, 3, UNI_CCC__214 } /* canonicalcombiningclass=ata */,
- { 0, 5408, 8422, 4, 6, UNI_INMAHAJANI } /* inmahajani */,
- { 0, 2085, 0, 14, 0, UNI_LM } /* modifierletter */,
- { 1, 9476, 8657, 4, 6, UNI_SC__KALI } /* sc=kayahli */,
- { 2, 3877, 2453, 17, 20, UNI_PHLI } /* scriptextensions=inscriptionalpahlavi */,
- { 70, 10253, 5669, 3, 2, UNI_EBASE } /* lb=eb */,
- { 2, 9979, 9207, 4, 6, UNI_THAA } /* scx=thaana */,
- { 74, 9476, 2841, 3, 4, UNI_MERO } /* sc=mero */,
- { 1, 3398, 36, 11, 1, UNI_XPOSIXSPACE } /* whitespace=t */,
- { 8, 9691, 1220, 5, 4, UNI_INBATAK } /* blk=batak */,
- { 0, 9207, 0, 4, 0, UNI_THAA } /* thaa */,
- { 0, 3877, 6290, 17, 12, UNI_GONG } /* scriptextensions=gunjalagondi */,
- { 0, 4684, 7628, 15, 9, UNI_EA__A } /* eastasianwidth=ambiguous */,
- { 0, 185, 4186, 2, 7, UNI_LINB } /* islinearb */,
- { 1, 10247, 5228, 3, 14, UNI_JG__HAMZAONHEHGOAL } /* jg=hamzaonhehgoal */,
+ { 0, 7907, 0, 9, 0, UNI_xids_values_index } /* xidstart= */,
+ { 32, 1189, 3482, 3, 10, UNI_TAIXUANJING } /* intaixuanjing */,
+ { 0, 10268, 8171, 3, 2, UNI_NV__26 } /* nv=26 */,
+ { 17, 3121, 6001, 18, 4, UNI_DT__NONE } /* decompositiontype=none */,
+ { 0, 9711, 7990, 4, 1, UNI_CCC__8 } /* ccc=8 */,
+ { 4, 185, 6731, 3, 10, UNI_CPMN } /* iscyprominoan */,
+ { 0, 8677, 0, 7, 0, UNI_MAND } /* mandaic */,
+ { 2, 10508, 7580, 8, 4, UNI_XPOSIXWORD } /* isxposixword */,
+ { 0, 8782, 7260, 7, 10, UNI_CHRS } /* script=chorasmian */,
+ { 2, 8782, 8754, 7, 4, UNI_OSMA } /* script=osma */,
+ { 0, 6529, 126, 3, 2, UNI_OCR } /* inocr */,
+ { 6, 8973, 2501, 6, 3, UNI_PUA } /* block=pua */,
+ { 0, 185, 9771, 2, 4, UNI_GONM } /* isgonm */,
+ { 5, 4894, 9494, 15, 5, UNI_NFCQC__M } /* nfkcquickcheck=maybe */,
+ { 4, 1418, 8119, 24, 1, UNI_CCC__9 } /* canonicalcombiningclass=9 */,
+ { 10, 10352, 73, 3, 2, UNI_WB__LE } /* wb=le */,
+ { 16, 5648, 9454, 14, 5, -UNI_QMARK } /* quotationmark=false */,
+ { 48, 185, 1678, 2, 5, UNI_LATN } /* islatin */,
+ { 11, 1418, 9006, 24, 3, UNI_CCC__122 } /* canonicalcombiningclass=122 */,
+ { 0, 10247, 10292, 3, 3, UNI_JG__TAH } /* jg=tah */,
+ { 9, 1418, 8901, 24, 3, UNI_CCC__216 } /* canonicalcombiningclass=216 */,
+ { 1, 8782, 2085, 7, 4, UNI_SC__MODI } /* script=modi */,
+ { 48, 8348, 0, 8, 0, UNI_GURU } /* gurmukhi */,
+ { 1, 1418, 1779, 24, 2, UNI_CCC__DB } /* canonicalcombiningclass=db */,
+ { 1, 10268, 8028, 3, 8, UNI_NV__20000000 } /* nv=20000000 */,
+ { 2, 2003, 6375, 10, 11, UNI_NL } /* category=letternumber */,
+ { 2, 10268, 8076, 3, 8, UNI_NV__3_SLASH_8 } /* nv=3.75e-01 */,
+ { 0, 6083, 7983, 13, 1, UNI_NV__7 } /* numericvalue=7 */,
+ { 2, 9979, 10039, 4, 4, UNI_THAI } /* scx=thai */,
+ { 9, 9763, 5064, 5, 2, UNI_WB__EB } /* gcb=gaz */,
+ { 14, 8955, 1026, 6, 2, -UNI_XPOSIXALPHA } /* alpha=no */,
+ { 1, 9647, 10310, 4, 3, UNI_AGE__4 } /* age=v40 */,
+ { 18, 6314, 26, 12, 1, UNI_IDEO } /* ideographic=y */,
+ { 0, 8973, 4504, 6, 8, UNI_BAMUMSUP } /* block=bamumsup */,
+ { 1, 3283, 36, 18, 1, UNI_IDSB } /* idsbinaryoperator=t */,
+ { 4, 10516, 9172, 3, 4, UNI__PERL_PATWS } /* ispatws */,
+ { 0, 10244, 4346, 3, 5, UNI_C } /* gc=other */,
+ { 0, 1792, 10355, 22, 3, UNI_CWCF } /* changeswhencasefolded=yes */,
+ { 6, 9979, 6494, 4, 12, UNI_GONM } /* scx=masaramgondi */,
+ { 0, 7908, 1026, 8, 2, -UNI_IDS } /* idstart=no */,
+ { 4, 1418, 8028, 24, 3, UNI_WB__EB } /* canonicalcombiningclass=200 */,
+ { 10, 8782, 9081, 7, 6, UNI_HATR } /* script=hatran */,
+ { 0, 3247, 0, 18, 0, UNI_INPUNCTUATION } /* generalpunctuation */,
+ { 8, 8782, 9135, 7, 4, UNI_LYDI } /* script=lydi */,
+ { 17, 185, 9851, 2, 4, UNI_MEDF } /* ismedf */,
+ { 0, 9979, 7072, 5, 10, UNI_SORA } /* scx=sorasompeng */,
{ 0, 9835, 0, 4, 0, UNI_LATN } /* latn */,
- { 2, 4909, 1026, 15, 2, UNI_NFKDQC__N } /* nfkdquickcheck=no */,
- { 4, 8782, 8873, 7, 7, UNI_ZZZZ } /* script=unknown */,
- { 0, 8973, 8677, 6, 7, UNI_INMANDAIC } /* block=mandaic */,
- { 0, 7300, 36, 10, 1, UNI_DIA } /* diacritic=t */,
- { 1, 185, 2078, 2, 22, UNI_MODIFIERLETTERS } /* isspacingmodifierletters */,
- { 9, 9711, 3588, 4, 17, UNI_WB__EB } /* ccc=attachedbelowleft */,
- { 1, 1595, 0, 14, 0, UNI_MUSIC } /* musicalsymbols */,
- { 3, 1418, 9310, 25, 4, UNI_CCC__16 } /* canonicalcombiningclass=ccc16 */,
- { 17, 10217, 24, 3, 1, UNI_BC__L } /* bc=l */,
- { 0, 7467, 10322, 3, 3, UNI_IN__5_DOT_2 } /* in=v52 */,
- { 132, 8642, 0, 6, 0, UNI_HYPHEN } /* hyphen */,
- { 137, 185, 5758, 2, 5, UNI_BIDIM } /* isbidim */,
- { 4, 9711, 7975, 4, 1, UNI_CCC__6 } /* ccc=6 */,
- { 0, 185, 9811, 2, 4, UNI_KHMR } /* iskhmr */,
- { 2, 4699, 1026, 15, 2, -UNI_ECOMP } /* emojicomponent=no */,
- { 200, 4074, 49, 16, 1, UNI_P } /* generalcategory=p */,
- { 0, 6697, 10355, 11, 3, UNI_XPOSIXALPHA } /* alphabetic=yes */,
- { 0, 3877, 2632, 17, 4, UNI_BRAH } /* scriptextensions=brah */,
- { 6, 8782, 10115, 7, 4, UNI_SC__QAAI } /* script=zinh */,
+ { 7, 3877, 3935, 18, 10, UNI_SGNW } /* scriptextensions=signwriting */,
+ { 2, 10268, 9616, 3, 3, UNI_NV__7_SLASH_2 } /* nv=7/2 */,
+ { 1, 10268, 8147, 3, 2, UNI_NV__16 } /* nv=16 */,
+ { 0, 8782, 9231, 7, 6, UNI_WCHO } /* script=wancho */,
+ { 0, 9711, 9013, 4, 2, UNI_CCC__29 } /* ccc=29 */,
+ { 8, 10244, 134, 3, 4, UNI_M } /* gc=mark */,
+ { 22, 4074, 5914, 16, 13, UNI_ZL } /* generalcategory=lineseparator */,
+ { 2, 9476, 9919, 3, 4, UNI_OSGE } /* sc=osge */,
+ { 4, 9045, 26, 6, 1, UNI_CWKCF } /* cwkcf=y */,
+ { 2, 9691, 7093, 4, 11, UNI_SUPERANDSUB } /* blk=superandsub */,
+ { 0, 6578, 5797, 12, 7, UNI_XPOSIXDIGIT } /* numerictype=decimal */,
+ { 1, 6529, 9520, 3, 4, UNI_INOSAGE } /* inosage */,
+ { 1, 4684, 1, 15, 1, UNI_EA__N } /* eastasianwidth=n */,
+ { 1, 10115, 0, 4, 0, UNI_QAAI } /* zinh */,
+ { 18, 9979, 9534, 4, 4, UNI_TAKR } /* scx=takr */,
+ { 20, 6340, 3050, 3, 10, UNI_CHEROKEESUP } /* incherokeesup */,
+ { 6, 8973, 2165, 7, 17, UNI_CYRILLICSUP } /* block=cyrillicsupplement */,
+ { 0, 9476, 8670, 3, 7, UNI_MAKA } /* sc=makasar */,
+ { 8, 9979, 8356, 4, 4, UNI_HIRA } /* scx=hira */,
+ { 2, 5875, 6686, 13, 11, UNI_JG__AFRICANNOON } /* joininggroup=africannoon */,
+ { 0, 4624, 0, 14, 0, UNI_SC } /* currencysymbol */,
+ { 0, 9695, 1, 4, 1, UNI_BPT__N } /* bpt=n */,
+ { 9, 9691, 2269, 4, 14, UNI_MEETEIMAYEKEXT } /* blk=meeteimayekext */,
+ { 9, 9915, 0, 4, 0, UNI_ORYA } /* orya */,
+ { 15, 9691, 2433, 4, 13, UNI_GLAGOLITICSUP } /* blk=glagoliticsup */,
+ { 2, 7360, 4503, 10, 2, UNI_LB__BB } /* linebreak=bb */,
+ { 3, 8782, 3049, 7, 4, UNI_CHER } /* script=cher */,
+ { 1, 8973, 2269, 6, 11, UNI_INMEETEIMAYEK } /* block=meeteimayek */,
+ { 6, 9476, 8356, 3, 8, UNI_SC__HIRA } /* sc=hiragana */,
+ { 0, 8973, 1632, 6, 18, UNI_GEOMETRICSHAPESEXT } /* block=geometricshapesext */,
+ { 0, 8782, 10115, 7, 4, UNI_SC__QAAI } /* script=zinh */,
+ { 0, 3877, 7817, 17, 9, UNI_PERM } /* scriptextensions=oldpermic */,
+ { 138, 8967, 10355, 6, 3, UNI_BIDIM } /* bidim=yes */,
+ { 2, 9691, 3826, 4, 10, UNI_INMANICHAEAN } /* blk=manichaean */,
+ { 1, 185, 6207, 3, 11, UNI_CYRILLICEXTB } /* iscyrillicextb */,
+ { 0, 6675, 10055, 11, 4, UNI_IDC } /* idcontinue=true */,
+ { 0, 8782, 8292, 7, 8, UNI_SC__BUGI } /* script=buginese */,
+ { 0, 10508, 5802, 8, 5, UNI_XPOSIXALNUM } /* isxposixalnum */,
+ { 3, 9979, 9484, 4, 5, UNI_LIMB } /* scx=limbu */,
+ { 0, 9691, 3605, 4, 17, UNI_UCAS } /* blk=canadiansyllabics */,
+ { 5, 9731, 10355, 4, 3, UNI_CWT } /* cwt=yes */,
+ { 0, 9201, 0, 4, 0, UNI_TELU } /* telu */,
+ { 10, 1553, 10400, 9, 2, UNI_ZS } /* category=zs */,
+ { 36, 3877, 4426, 17, 4, UNI_TANG } /* scriptextensions=tang */,
+ { 1, 10247, 4234, 3, 16, UNI_JG__MANICHAEANLAMEDH } /* jg=manichaeanlamedh */,
+ { 0, 9691, 7430, 4, 10, UNI_INOLDSOGDIAN } /* blk=oldsogdian */,
+ { 11, 185, 1859, 3, 20, UNI_CWT } /* ischangeswhentitlecased */,
+ { 4, 6593, 0, 4, 0, UNI_HUNG } /* hung */,
+ { 0, 5875, 0, 13, 0, UNI_jg_values_index } /* joininggroup= */,
+ { 0, 5408, 4383, 4, 11, UNI_MATHOPERATORS } /* inmathoperators */,
+ { 0, 7460, 8099, 10, 2, UNI_IN__14 } /* presentin=14 */,
+ { 1, 7360, 5648, 10, 9, UNI_LB__QU } /* linebreak=quotation */,
+ { 57, 7230, 2822, 10, 19, UNI_BC__LRO } /* bidiclass=lefttorightoverride */,
+ { 0, 9476, 10083, 3, 4, UNI_VAI } /* sc=vaii */,
+ { 6, 10247, 8852, 3, 7, UNI_JG__THINYEH } /* jg=thinyeh */,
+ { 1, 9691, 4535, 5, 6, UNI_BRAI } /* blk=braille */,
+ { 10, 8873, 0, 7, 0, UNI_ZZZZ } /* unknown */,
+ { 0, 10352, 5669, 3, 2, UNI_WB__EB } /* wb=eb */,
+ { 0, 8973, 2100, 6, 15, UNI_TRANSPORTANDMAP } /* block=transportandmap */,
+ { 1, 185, 5354, 2, 14, UNI_LATINEXTG } /* islatinextendedg */,
+ { 0, 7580, 5830, 10, 5, UNI_WB__EB } /* wordbreak=ebase */,
+ { 1, 9927, 1026, 4, 2, -UNI_PCM } /* pcm=no */,
+ { 1, 8782, 10083, 7, 3, UNI_VAI } /* script=vai */,
+ { 40, 185, 8677, 2, 7, UNI_MAND } /* ismandaic */,
+ { 4, 1553, 49, 9, 1, UNI_P } /* category=p */,
+ { 1, 10553, 17, 3, 1, UNI_SO } /* isso */,
+ { 24, 185, 133, 2, 2, UNI_LM } /* islm */,
+ { 7, 185, 2879, 2, 19, UNI_MONGOLIANSUP } /* ismongoliansupplement */,
+ { 4, 5875, 9983, 13, 4, UNI_JG__SEEN } /* joininggroup=seen */,
+ { 2, 3877, 9771, 17, 4, UNI_GONM } /* scriptextensions=gonm */,
+ { 46, 9763, 3409, 4, 17, UNI_RI } /* gcb=regionalindicator */,
+ { 2, 9979, 2164, 4, 8, UNI_CYRL } /* scx=cyrillic */,
+ { 5, 9663, 0, 4, 0, UNI_ARMI } /* armi */,
+ { 0, 5875, 6458, 13, 12, UNI_JG__MALAYALAMSSA } /* joininggroup=malayalamssa */,
+ { 4, 8973, 8635, 6, 7, UNI_INHANUNOO } /* block=hanunoo */,
+ { 16, 10402, 10435, 6, 21, UNI__PERL_IS_IN_MULTI_CHAR_FOLD } /* _perl_is_in_multi_char_fold */,
+ { 32, 5690, 0, 14, 0, UNI_SUPPUNCTUATION } /* suppunctuation */,
+ { 13, 7230, 427, 10, 2, UNI_BC__ES } /* bidiclass=es */,
+ { 13, 10253, 7628, 3, 9, UNI_LB__AI } /* lb=ambiguous */,
+ { 152, 185, 6928, 2, 11, UNI_MEDF } /* ismedefaidrin */,
+ { 0, 1167, 0, 26, 0, UNI_di_values_index } /* defaultignorablecodepoint= */,
+ { 66, 10229, 7, 3, 3, UNI_DT__CAN } /* dt=can */,
+ { 0, 3121, 1254, 18, 4, UNI_DT__INIT } /* decompositiontype=init */,
+ { 10, 9771, 0, 4, 0, UNI_GONM } /* gonm */,
+ { 0, 8973, 44, 7, 2, UNI_CJK } /* block=cjk */,
+ { 0, 8881, 15, 4, 2, UNI_ARAB } /* isarab */,
+ { 0, 9476, 2302, 4, 3, UNI_SC__KALI } /* sc=kali */,
+ { 42, 2248, 3929, 3, 16, UNI_SUTTONSIGNWRITING } /* insuttonsignwriting */,
+ { 0, 3265, 0, 18, 0, UNI_GEORGIANSUP } /* georgiansupplement */,
+ { 0, 4909, 10355, 15, 3, UNI_DT__NONE } /* nfkdquickcheck=yes */,
+ { 1, 5662, 496, 14, 7, UNI_SB__NU } /* sentencebreak=numeric */,
+ { 3, 185, 44, 3, 15, UNI_CJKCOMPAT } /* iscjkcompatibility */,
+ { 2, 9647, 10079, 4, 4, UNI_AGE__14 } /* age=v140 */,
+ { 11, 2012, 1026, 22, 2, -UNI_LOE } /* logicalorderexception=no */,
+ { 2, 8782, 8300, 7, 4, UNI_SC__DUPL } /* script=dupl */,
+ { 10, 8973, 4984, 6, 5, UNI_INTAMIL } /* block=tamil */,
+ { 0, 3175, 26, 18, 1, UNI_EPRES } /* emojipresentation=y */,
+ { 0, 4847, 2362, 10, 11, UNI_MERO } /* inmeroitichieroglyphs */,
+ { 3, 9871, 0, 4, 0, UNI_MRO } /* mroo */,
+ { 58, 9476, 9967, 3, 4, UNI_RUNR } /* sc=runr */,
+ { 0, 8854, 5275, 3, 9, UNI_YIRADICALS } /* inyiradicals */,
+ { 77, 185, 9135, 2, 6, UNI_LYDI } /* islydian */,
+ { 2, 8782, 9655, 7, 4, UNI_AHOM } /* script=ahom */,
+ { 1, 3877, 9524, 17, 5, UNI_RUNR } /* scriptextensions=runic */,
+ { 11, 1288, 0, 2, 0, UNI_UPPERCASELETTER } /* lu */,
+ { 0, 6578, 496, 12, 2, UNI_NT__NU } /* numerictype=nu */,
+ { 1, 2248, 2312, 3, 6, UNI_INSINHALA } /* insinhala */,
+ { 0, 10253, 6302, 3, 12, UNI_LB__HL } /* lb=hebrewletter */,
+ { 0, 1418, 8171, 24, 2, UNI_CCC__26 } /* canonicalcombiningclass=26 */,
+ { 3, 7754, 0, 9, 0, UNI_LATINEXTG } /* latinextg */,
+ { 0, 7580, 496, 10, 2, UNI_WB__NU } /* wordbreak=nu */,
+ { 128, 4286, 0, 10, 0, UNI_SM } /* mathsymbol */,
+ { 0, 3067, 0, 18, 0, UNI_HALFMARKS } /* combininghalfmarks */,
+ { 1, 9691, 1968, 4, 22, UNI_EARLYDYNASTICCUNEIFORM } /* blk=earlydynasticcuneiform */,
+ { 5, 8973, 8356, 6, 8, UNI_INHIRAGANA } /* block=hiragana */,
+ { 1, 9711, 10169, 4, 3, UNI_CCC__DA } /* ccc=234 */,
{ 1, 6529, 6591, 3, 11, UNI_INOLDHUNGARIAN } /* inoldhungarian */,
- { 0, 9189, 1026, 6, 2, -UNI_STERM } /* sterm=no */,
- { 0, 3877, 9907, 17, 4, UNI_OLCK } /* scriptextensions=olck */,
- { 50, 10253, 8642, 3, 6, UNI_LB__HY } /* lb=hyphen */,
- { 107, 7580, 2468, 10, 2, UNI_LB__HL } /* wordbreak=hl */,
- { 1, 6340, 8559, 3, 6, UNI_CJKEXTC } /* incjkextc */,
- { 0, 10516, 25, 3, 1, UNI_PS } /* isps */,
- { 2, 8973, 9081, 6, 6, UNI_INHATRAN } /* block=hatran */,
- { 0, 9474, 2670, 5, 19, UNI_INSC__CONSONANTHEADLETTER } /* insc=consonantheadletter */,
- { 26, 3877, 9687, 17, 4, UNI_BHKS } /* scriptextensions=bhks */,
- { 0, 1990, 8880, 22, 7, UNI_INSC__VISARGA } /* indicsyllabiccategory=visarga */,
- { 32, 7580, 8308, 10, 8, UNI_WB__EB } /* wordbreak=ebasegaz */,
- { 0, 6083, 8028, 13, 4, UNI_NV__2000 } /* numericvalue=2000 */,
- { 8, 185, 7240, 2, 10, UNI_BOXDRAWING } /* isboxdrawing */,
- { 15, 8973, 1935, 6, 11, UNI_NUMBERFORMS } /* block=numberforms */,
- { 0, 9979, 7105, 5, 10, UNI_SYLO } /* scx=sylotinagri */,
- { 5, 5581, 0, 11, 0, UNI_MC } /* spacingmark */,
- { 1, 2248, 5691, 3, 13, UNI_SUPPUNCTUATION } /* insuppunctuation */,
- { 0, 4074, 6374, 16, 12, UNI_NL } /* generalcategory=letternumber */,
- { 67, 9545, 0, 4, 0, UNI_idc_values_index } /* idc= */,
- { 1, 3121, 750, 18, 3, UNI_DT__ENC } /* decompositiontype=enc */,
- { 0, 185, 541, 3, 29, UNI_CJKEXTB } /* iscjkunifiedideographsextensionb */,
- { 1, 2012, 3, 22, 1, -UNI_LOE } /* logicalorderexception=f */,
- { 0, 10268, 8100, 3, 8, UNI_NV__5_SLASH_12 } /* nv=4.17e-01 */,
- { 2, 7360, 7664, 10, 9, UNI_LB__B2 } /* linebreak=breakboth */,
- { 24, 10268, 7996, 3, 8, UNI_NV__1_SLASH_5 } /* nv=2.00e-01 */,
- { 1, 3406, 3, 3, 1, -UNI_CE } /* ce=f */,
- { 11, 10268, 9639, 3, 4, UNI_NV__7_SLASH_12 } /* nv=7/12 */,
- { 1, 9469, 910, 3, 9, UNI_PUA } /* inprivateuse */,
- { 177, 1418, 8046, 24, 2, UNI_CCC__13 } /* canonicalcombiningclass=13 */,
- { 0, 3877, 2493, 17, 20, UNI_HMNP } /* scriptextensions=nyiakengpuachuehmong */,
- { 36, 9476, 8663, 3, 7, UNI_SC__LINA } /* sc=lineara */,
- { 0, 6158, 0, 5, 0, UNI_BIDIC } /* bidic */,
- { 0, 9979, 9514, 4, 5, UNI_ORYA } /* scx=oriya */,
- { 1, 9214, 0, 5, 0, UNI_ideo_values_index } /* ideo= */,
- { 3, 5875, 6266, 13, 12, UNI_JG__FINALSEMKATH } /* joininggroup=finalsemkath */,
- { 7, 185, 7790, 2, 9, UNI_TALU } /* isnewtailue */,
- { 32, 79, 0, 4, 0, UNI_ARAB } /* arab */,
- { 0, 3403, 1, 6, 1, -UNI_XPOSIXSPACE } /* space=n */,
- { 10, 3877, 79, 17, 4, UNI_ARAB } /* scriptextensions=arab */,
- { 2, 7060, 0, 11, 0, UNI_sd_values_index } /* softdotted= */,
- { 169, 1747, 0, 13, 0, UNI_ZNAMENNYMUSIC } /* znamennymusic */,
- { 3, 7360, 10384, 10, 2, UNI_GCB__V } /* linebreak=jv */,
- { 3, 6083, 8148, 13, 8, UNI_NV__3_SLASH_5 } /* numericvalue=6.00e-01 */,
- { 3, 7709, 0, 9, 0, UNI_SIND } /* khudawadi */,
- { 0, 4074, 113, 16, 2, UNI_SC } /* generalcategory=sc */,
- { 1, 10268, 8132, 3, 8, UNI_NV__11_SLASH_2 } /* nv=5.50e+00 */,
- { 0, 10346, 3535, 3, 18, UNI_VO__TU } /* vo=transformedupright */,
- { 5, 10268, 10193, 3, 3, UNI_NV__5_SLASH_6 } /* nv=5/6 */,
- { 14, 9153, 10355, 6, 3, UNI_NFCQC__Y } /* nfcqc=yes */,
- { 4, 5875, 5564, 13, 14, UNI_JG__NOJOININGGROUP } /* joininggroup=nojoininggroup */,
- { 0, 10268, 5732, 3, 3, UNI_NV__100 } /* nv=100 */,
- { 16, 9476, 3622, 3, 17, UNI_AGHB } /* sc=caucasianalbanian */,
- { 0, 9691, 8300, 4, 8, UNI_INDUPLOYAN } /* blk=duployan */,
- { 32, 9476, 9911, 3, 4, UNI_ORKH } /* sc=orkh */,
- { 3, 3076, 0, 9, 0, UNI_HALFMARKS } /* halfmarks */,
- { 1, 9476, 10087, 3, 4, UNI_WCHO } /* sc=wcho */,
- { 88, 6083, 8028, 13, 6, UNI_NV__200000 } /* numericvalue=200000 */,
- { 66, 8782, 5059, 7, 15, UNI_ZANB } /* script=zanabazarsquare */,
- { 0, 9461, 752, 3, 5, UNI_SB__CL } /* sb=close */,
- { 6, 8973, 4504, 6, 5, UNI_INBAMUM } /* block=bamum */,
- { 2, 9747, 1, 4, 1, -UNI_DIA } /* dia=n */,
- { 42, 4684, 0, 15, 0, UNI_ea_values_index } /* eastasianwidth= */,
- { 52, 185, 6242, 2, 12, UNI_ETHIOPICEXTB } /* isethiopicextb */,
- { 1, 7460, 7996, 10, 3, UNI_IN__2 } /* presentin=2.0 */,
- { 33, 10229, 46, 3, 3, UNI_DT__COM } /* dt=com */,
- { 58, 3406, 0, 3, 0, UNI_ce_values_index } /* ce= */,
- { 42, 8292, 0, 8, 0, UNI_BUGI } /* buginese */,
- { 1, 9545, 10055, 4, 4, UNI_IDC } /* idc=true */,
- { 35, 9979, 9903, 4, 4, UNI_OGAM } /* scx=ogam */,
- { 0, 8782, 2227, 7, 4, UNI_SC__HAN } /* script=hani */,
- { 0, 185, 48, 2, 1, UNI_M } /* ism */,
- { 6, 7580, 6302, 10, 12, UNI_LB__HL } /* wordbreak=hebrewletter */,
- { 0, 2312, 4109, 5, 13, UNI_HALFANDFULLFORMS } /* inhalfandfullforms */,
- { 6, 8782, 8600, 7, 7, UNI_DSRT } /* script=deseret */,
- { 0, 8973, 909, 6, 10, UNI_PUA } /* block=privateuse */,
- { 0, 5758, 0, 13, 0, UNI_bidim_values_index } /* bidimirrored= */,
- { 0, 10268, 9615, 3, 4, UNI_NV__17_SLASH_2 } /* nv=17/2 */,
- { 5, 9711, 3031, 4, 13, UNI_CCC__214 } /* ccc=attachedabove */,
- { 0, 3877, 7, 17, 18, UNI_CANS } /* scriptextensions=canadianaboriginal */,
- { 0, 185, 7390, 2, 10, UNI_MISCARROWS } /* ismiscarrows */,
- { 0, 9711, 10166, 4, 3, UNI_CCC__DB } /* ccc=233 */,
- { 26, 10268, 9571, 3, 4, UNI_NV__1_SLASH_40 } /* nv=1/40 */,
- { 1, 9691, 3673, 4, 17, UNI_CYRILLICEXTB } /* blk=cyrillicextendedb */,
- { 3, 10253, 9920, 3, 2, UNI_LB__SG } /* lb=sg */,
- { 7, 7300, 9454, 10, 5, -UNI_DIA } /* diacritic=false */,
- { 64, 10268, 8925, 3, 3, UNI_NV__500 } /* nv=500 */,
- { 2, 9979, 9871, 4, 4, UNI_MRO } /* scx=mroo */,
- { 8, 8973, 5256, 6, 14, UNI_KANASUP } /* block=kanasupplement */,
- { 4, 4972, 8469, 3, 3, UNI_TAGB } /* istagb */,
- { 0, 9476, 7844, 3, 9, UNI_PALM } /* sc=palmyrene */,
- { 4, 9691, 3911, 4, 17, UNI_SMALLFORMS } /* blk=smallformvariants */,
- { 0, 8973, 8396, 6, 8, UNI_KANAEXTA } /* block=kanaexta */,
- { 0, 6083, 7988, 13, 8, UNI_NV__3_SLASH_16 } /* numericvalue=1.88e-01 */,
- { 1, 9691, 1394, 4, 24, UNI_ARABICPFB } /* blk=arabicpresentationformsb */,
- { 20, 9927, 10355, 4, 3, UNI_PCM } /* pcm=yes */,
- { 1, 9723, 0, 4, 0, UNI_CPRT } /* cprt */,
- { 4, 8782, 10123, 7, 4, UNI_ZZZZ } /* script=zzzz */,
- { 0, 9979, 1223, 4, 4, UNI_KANA } /* scx=kana */,
- { 1, 10247, 6018, 3, 13, UNI_JG__MANICHAEANTEN } /* jg=manichaeanten */,
- { 17, 8973, 6362, 6, 5, UNI_INKHMER } /* block=khmer */,
- { 2, 9695, 1, 4, 1, UNI_BPT__N } /* bpt=n */,
- { 0, 7467, 7995, 3, 4, UNI_IN__12 } /* in=12.0 */,
- { 2, 1924, 0, 6, 0, UNI_ZYYY } /* common */,
- { 0, 9691, 8558, 4, 7, UNI_CJKEXTC } /* blk=cjkextc */,
- { 2, 8782, 8284, 7, 8, UNI_BASS } /* script=bassavah */,
- { 3, 4074, 4774, 16, 15, UNI_LOWERCASELETTER } /* generalcategory=lowercaseletter */,
- { 2, 8782, 3049, 7, 4, UNI_CHER } /* script=cher */,
- { 0, 21, 8656, 2, 7, UNI_KALI } /* inkayahli */,
- { 5, 10268, 8148, 3, 8, UNI_NV__3_SLASH_5 } /* nv=6.00e-01 */,
- { 0, 7727, 0, 9, 0, UNI_LATINEXTC } /* latinextc */,
- { 0, 8887, 9454, 7, 5, -UNI_XPOSIXSPACE } /* wspace=false */,
- { 0, 10547, 48, 5, 1, UNI_PERM } /* isperm */,
- { 2, 4744, 8436, 15, 8, UNI_IDENTIFIERTYPE__OBSOLETE } /* identifiertype=obsolete */,
- { 0, 10247, 8460, 3, 8, UNI_JG__SWASHKAF } /* jg=swashkaf */,
- { 1, 8973, 2144, 7, 20, UNI_CJKRADICALSSUP } /* block=cjkradicalssupplement */,
- { 8, 185, 4043, 3, 6, UNI_CPRT } /* iscypriot */,
- { 88, 4954, 0, 15, 0, UNI_PS } /* openpunctuation */,
- { 0, 8973, 2227, 6, 14, UNI_INHANIFIROHINGYA } /* block=hanifirohingya */,
- { 106, 7360, 10374, 10, 2, UNI_LB__B2 } /* linebreak=b2 */,
- { 1, 9476, 8356, 3, 8, UNI_SC__HIRA } /* sc=hiragana */,
- { 0, 1990, 4564, 22, 15, UNI_INSC__CONSONANTKILLER } /* indicsyllabiccategory=consonantkiller */,
- { 206, 3877, 8260, 17, 8, UNI_ARMN } /* scriptextensions=armenian */,
- { 0, 3877, 9899, 17, 4, UNI_NSHU } /* scriptextensions=nshu */,
- { 0, 9159, 0, 6, 0, UNI_nfdqc_values_index } /* nfdqc= */,
- { 0, 1418, 8920, 24, 2, UNI_CCC__32 } /* canonicalcombiningclass=32 */,
- { 1, 6340, 2144, 3, 13, UNI_CJKRADICALSSUP } /* incjkradicalssup */,
- { 0, 4714, 36, 15, 1, UNI_GREXT } /* graphemeextend=t */,
- { 0, 185, 5354, 2, 14, UNI_LATINEXTG } /* islatinextendedg */,
- { 0, 7460, 9607, 10, 4, UNI_IN__14 } /* presentin=14.0 */,
- { 0, 3398, 1, 11, 1, -UNI_XPOSIXSPACE } /* whitespace=n */,
- { 0, 3877, 8276, 17, 8, UNI_BALI } /* scriptextensions=balinese */,
- { 0, 9476, 2708, 3, 19, UNI_EGYP } /* sc=egyptianhieroglyphs */,
- { 32, 3945, 9454, 17, 5, -UNI_UIDEO } /* unifiedideograph=false */,
- { 3, 1418, 9018, 24, 3, UNI_CCC__130 } /* canonicalcombiningclass=130 */,
- { 4, 9476, 10047, 3, 4, UNI_TNSA } /* sc=tnsa */,
- { 1, 21, 3319, 2, 9, UNI_LATINEXTA } /* inlatinexta */,
- { 7, 10280, 1026, 3, 2, -UNI_RI } /* ri=no */,
- { 0, 8973, 10011, 6, 4, UNI_TAGS } /* block=tags */,
- { 0, 4684, 67, 15, 1, UNI_EA__H } /* eastasianwidth=h */,
- { 0, 9063, 3, 6, 1, -UNI_EPRES } /* epres=f */,
- { 16, 9117, 0, 6, 0, UNI_LEPC } /* lepcha */,
- { 64, 9087, 1026, 6, 2, -UNI_JOINC } /* joinc=no */,
- { 4, 2784, 7889, 19, 9, UNI_GCB__V } /* hangulsyllabletype=voweljamo */,
- { 0, 8782, 9093, 7, 6, UNI_SC__KTHI } /* script=kaithi */,
- { 11, 8782, 10083, 7, 4, UNI_VAI } /* script=vaii */,
- { 2, 9979, 720, 4, 9, UNI_XSUX } /* scx=cuneiform */,
- { 3, 2078, 0, 22, 0, UNI_MODIFIERLETTERS } /* spacingmodifierletters */,
- { 0, 9476, 10119, 3, 4, UNI_SC__ZYYY } /* sc=zyyy */,
- { 2, 9807, 0, 4, 0, UNI_KALI } /* kali */,
- { 8, 9691, 6362, 4, 12, UNI_KHMERSYMBOLS } /* blk=khmersymbols */,
- { 24, 185, 5581, 2, 11, UNI_MC } /* isspacingmark */,
- { 1, 8649, 0, 7, 0, UNI_KNDA } /* kannada */,
- { 4, 185, 4282, 2, 16, UNI_MISCMATHSYMBOLSA } /* ismiscmathsymbolsa */,
- { 0, 10400, 0, 2, 0, UNI_ZS } /* zs */,
- { 2, 9979, 9895, 4, 3, UNI_NKO } /* scx=nko */,
- { 0, 7580, 6785, 10, 11, UNI_WB__DQ } /* wordbreak=doublequote */,
- { 3, 8782, 58, 7, 2, UNI_SC__YI } /* script=yi */,
- { 2, 6697, 3, 11, 1, -UNI_XPOSIXALPHA } /* alphabetic=f */,
- { 0, 8881, 5746, 3, 12, UNI_AEGEANNUMBERS } /* isaegeannumbers */,
- { 8, 8300, 0, 4, 0, UNI_DUPL } /* dupl */,
- { 0, 4154, 68, 3, 4, UNI_VSSUP } /* invssup */,
- { 9, 7460, 10199, 10, 3, UNI_IN__6_DOT_1 } /* presentin=6.1 */,
- { 0, 8404, 0, 8, 0, UNI_KANAEXTB } /* kanaextb */,
- { 0, 5093, 3, 9, 1, -UNI_XPOSIXXDIGIT } /* hexdigit=f */,
- { 0, 9979, 9504, 4, 5, UNI_NSHU } /* scx=nushu */,
- { 0, 9476, 10083, 3, 3, UNI_VAI } /* sc=vai */,
- { 1, 4426, 0, 6, 0, UNI_TANG } /* tangut */,
- { 0, 6340, 6731, 3, 10, UNI_INCYPROMINOAN } /* incyprominoan */,
- { 4, 1852, 9454, 6, 5, -UNI_CASED } /* cased=false */,
- { 1, 6340, 1443, 3, 23, UNI_CJKSYMBOLS } /* incjksymbolsandpunctuation */,
- { 0, 185, 3122, 2, 5, UNI_ECOMP } /* isecomp */,
- { 2, 9647, 7975, 4, 1, UNI_AGE__6 } /* age=6 */,
- { 8, 9815, 0, 4, 0, UNI_KITS } /* kits */,
- { 1, 9979, 8621, 4, 7, UNI_GRAN } /* scx=grantha */,
- { 24, 3877, 2227, 17, 4, UNI_HAN } /* scriptextensions=hani */,
- { 17, 10268, 8102, 3, 2, UNI_NV__17 } /* nv=17 */,
- { 3, 8782, 10043, 7, 4, UNI_TIBT } /* script=tibt */,
- { 12, 9691, 2034, 4, 22, UNI_MISCTECHNICAL } /* blk=miscellaneoustechnical */,
- { 0, 21, 5270, 2, 6, UNI_KANGXI } /* inkangxi */,
- { 0, 8973, 3691, 7, 16, UNI_CYRILLICEXTC } /* block=cyrillicextendedc */,
- { 0, 185, 9177, 2, 5, UNI_QMARK } /* isqmark */,
- { 0, 8881, 8262, 4, 6, UNI_ARMN } /* isarmenian */,
- { 0, 10244, 6374, 3, 12, UNI_NL } /* gc=letternumber */,
- { 2, 5550, 0, 14, 0, UNI_nfdqc_values_index } /* nfdquickcheck= */,
- { 4, 10510, 7580, 6, 4, UNI_XPOSIXWORD } /* xposixword */,
- { 0, 7580, 74, 10, 2, UNI_WB__EB } /* wordbreak=em */,
- { 1, 185, 9751, 2, 4, UNI_DIAK } /* isdiak */,
- { 179, 6083, 8180, 13, 8, UNI_NV__13_SLASH_2 } /* numericvalue=6.50e+00 */,
- { 1, 185, 4774, 2, 15, UNI_LOWERCASELETTER } /* islowercaseletter */,
- { 4, 9459, 26, 5, 1, UNI_IDSB } /* idsb=y */,
- { 3, 6928, 0, 11, 0, UNI_MEDF } /* medefaidrin */,
- { 7, 10268, 8027, 3, 2, UNI_NV__22 } /* nv=22 */,
- { 0, 9803, 6873, 4, 11, UNI_GCB__L } /* hst=leadingjamo */,
- { 0, 6340, 3674, 3, 16, UNI_CYRILLICEXTB } /* incyrillicextendedb */,
- { 1, 2936, 0, 9, 0, UNI_SUND } /* sundanese */,
- { 33, 4157, 5863, 3, 5, UNI_IPAEXT } /* isipaext */,
- { 0, 7297, 8636, 3, 6, UNI_HANO } /* ishanunoo */,
- { 18, 3409, 0, 17, 0, UNI_RI } /* regionalindicator */,
- { 82, 7297, 5094, 3, 7, UNI_XPOSIXXDIGIT } /* ishexdigit */,
- { 8, 3877, 2937, 18, 3, UNI_SUND } /* scriptextensions=sund */,
- { 117, 8881, 3572, 3, 16, UNI_ALCHEMICAL } /* isalchemicalsymbols */,
- { 240, 185, 383, 2, 32, UNI_EGYPTIANHIEROGLYPHFORMATCONTROLS } /* isegyptianhieroglyphformatcontrols */,
- { 25, 9803, 36, 4, 1, UNI_GCB__T } /* hst=t */,
- { 0, 7460, 8100, 10, 3, UNI_IN__4_DOT_1 } /* presentin=4.1 */,
- { 68, 7430, 0, 10, 0, UNI_SOGO } /* oldsogdian */,
- { 1, 8782, 9779, 7, 4, UNI_SC__GUJR } /* script=gujr */,
- { 58, 8628, 0, 6, 0, UNI_GRBASE } /* grbase */,
- { 1, 1418, 8251, 24, 2, UNI_CCC__19 } /* canonicalcombiningclass=19 */,
- { 0, 21, 1008, 3, 16, UNI_ANCIENTGREEKMUSIC } /* inancientgreekmusic */,
- { 104, 9691, 7500, 4, 10, UNI_INSAURASHTRA } /* blk=saurashtra */,
- { 4, 6972, 0, 11, 0, UNI_NAND } /* nandinagari */,
- { 1, 9847, 1, 4, 1, -UNI_LOE } /* loe=n */,
- { 1, 1946, 0, 22, 0, UNI_DIACRITICALSFORSYMBOLS } /* diacriticalsforsymbols */,
- { 0, 10247, 2247, 3, 3, UNI_JG__AIN } /* jg=ain */,
- { 0, 2613, 0, 19, 0, UNI_ANCIENTGREEKNUMBERS } /* ancientgreeknumbers */,
- { 2, 7467, 7611, 3, 1, UNI_IN__5 } /* in=5 */,
- { 0, 9129, 0, 6, 0, UNI_LYCI } /* lycian */,
- { 4, 3877, 4426, 17, 6, UNI_TANG } /* scriptextensions=tangut */,
- { 16, 2206, 126, 21, 2, UNI_LB__CR } /* graphemeclusterbreak=cr */,
- { 1, 8973, 8300, 6, 8, UNI_INDUPLOYAN } /* block=duployan */,
- { 1, 5875, 757, 13, 3, UNI_JG__DAL } /* joininggroup=dal */,
- { 2, 952, 0, 18, 0, UNI_INVS } /* variationselectors */,
- { 0, 185, 3911, 2, 17, UNI_SMALLFORMS } /* issmallformvariants */,
- { 0, 21, 6362, 2, 5, UNI_INKHMER } /* inkhmer */,
- { 7, 8973, 2898, 6, 19, UNI_OTTOMANSIYAQNUMBERS } /* block=ottomansiyaqnumbers */,
- { 0, 5875, 7148, 13, 11, UNI_JG__YEHWITHTAIL } /* joininggroup=yehwithtail */,
- { 36, 1190, 5096, 3, 5, UNI_NT__DI } /* nt=digit */,
- { 12, 185, 115, 3, 24, UNI_DIACRITICALS } /* iscombiningdiacriticalmarks */,
- { 0, 2304, 9920, 3, 3, UNI_OSGE } /* isosge */,
- { 0, 8973, 219, 7, 32, UNI_DIACRITICALSEXT } /* block=combiningdiacriticalmarksextended */,
- { 1, 9691, 114, 4, 25, UNI_DIACRITICALS } /* blk=combiningdiacriticalmarks */,
- { 0, 8881, 5089, 3, 4, UNI_ASCII } /* isascii */,
- { 1, 1270, 26, 25, 1, UNI_COMPEX } /* fullcompositionexclusion=y */,
- { 1, 513, 0, 16, 0, UNI_UIDEO } /* unifiedideograph */,
- { 0, 9476, 9703, 3, 4, UNI_SC__CAKM } /* sc=cakm */,
- { 1, 10510, 10523, 6, 5, UNI_XPOSIXBLANK } /* xposixblank */,
- { 4, 8782, 9514, 7, 5, UNI_SC__ORYA } /* script=oriya */,
- { 3, 9691, 10051, 4, 4, UNI_INTOTO } /* blk=toto */,
- { 0, 9429, 1026, 5, 2, -UNI_CWCF } /* cwcf=no */,
- { 1, 568, 0, 2, 0, UNI_NB } /* nb */,
- { 2, 9979, 10039, 4, 4, UNI_THAI } /* scx=thai */,
- { 0, 4157, 6, 3, 2, UNI_IDC } /* isidc */,
- { 0, 9979, 8300, 4, 4, UNI_DUPL } /* scx=dupl */,
- { 0, 9691, 2143, 4, 21, UNI_CJKRADICALSSUP } /* blk=cjkradicalssupplement */,
- { 5, 10229, 3525, 3, 3, UNI_DT__MED } /* dt=med */,
- { 0, 7060, 26, 11, 1, UNI_SD } /* softdotted=y */,
- { 4, 9691, 4984, 4, 8, UNI_TAMILSUP } /* blk=tamilsup */,
- { 0, 7907, 0, 4, 0, UNI_XIDS } /* xids */,
- { 1, 1553, 1923, 9, 2, UNI_PC } /* category=pc */,
- { 7, 1418, 9000, 24, 3, UNI_CCC__118 } /* canonicalcombiningclass=118 */,
- { 0, 3877, 9655, 17, 4, UNI_AHOM } /* scriptextensions=ahom */,
- { 1, 9859, 0, 4, 0, UNI_MERC } /* merc */,
- { 0, 7370, 0, 10, 0, UNI_lower_values_index } /* lowercase= */,
- { 0, 10229, 1295, 3, 5, UNI_DT__SUP } /* dt=super */,
- { 1, 3391, 3, 18, 1, -UNI__PERL_PATWS } /* patternwhitespace=f */,
- { 0, 8973, 4426, 6, 6, UNI_INTANGUT } /* block=tangut */,
- { 65, 9057, 0, 6, 0, UNI_emoji_values_index } /* emoji= */,
- { 0, 113, 0, 2, 0, UNI_SC } /* sc */,
- { 16, 5875, 6422, 13, 12, UNI_JG__MALAYALAMNGA } /* joininggroup=malayalamnga */,
- { 0, 8955, 10055, 6, 4, UNI_XPOSIXALPHA } /* alpha=true */,
- { 0, 9534, 0, 4, 0, UNI_TAKR } /* takr */,
- { 1, 185, 6362, 2, 12, UNI_KHMERSYMBOLS } /* iskhmersymbols */,
- { 1, 2304, 9916, 3, 3, UNI_ORYA } /* isorya */,
- { 9, 10253, 7590, 3, 10, UNI_LB__WJ } /* lb=wordjoiner */,
- { 0, 8973, 7190, 6, 10, UNI_ARABICEXTA } /* block=arabicexta */,
- { 11, 9711, 10142, 4, 3, UNI_CCC__202 } /* ccc=202 */,
- { 8, 810, 0, 29, 0, UNI_ENCLOSEDIDEOGRAPHICSUP } /* enclosedideographicsupplement */,
- { 0, 7580, 4346, 10, 5, UNI_WB__XX } /* wordbreak=other */,
- { 4, 185, 7655, 2, 9, UNI_BHKS } /* isbhaiksuki */,
- { 8, 9691, 10011, 4, 4, UNI_TAGS } /* blk=tags */,
- { 1, 185, 2879, 2, 12, UNI_MONGOLIANSUP } /* ismongoliansup */,
- { 2, 9461, 496, 3, 7, UNI_SB__NU } /* sb=numeric */,
- { 131, 9691, 0, 4, 42, UNI_UCASEXT } /* blk=unifiedcanadianaboriginalsyllabicsextended */,
- { 3, 6083, 10193, 13, 3, UNI_NV__5_SLASH_6 } /* numericvalue=5/6 */,
- { 8, 8973, 3265, 6, 8, UNI_INGEORGIAN } /* block=georgian */,
- { 0, 8600, 0, 7, 0, UNI_DSRT } /* deseret */,
- { 50, 8973, 2746, 6, 10, UNI_JAMO } /* block=hanguljamo */,
- { 0, 185, 1632, 2, 18, UNI_GEOMETRICSHAPESEXT } /* isgeometricshapesext */,
- { 0, 6675, 36, 11, 1, UNI_IDC } /* idcontinue=t */,
- { 3, 8782, 1538, 8, 3, UNI_SC__SIND } /* script=sind */,
- { 91, 9927, 26, 4, 1, UNI_PCM } /* pcm=y */,
- { 0, 9691, 2078, 4, 22, UNI_MODIFIERLETTERS } /* blk=spacingmodifierletters */,
- { 0, 8782, 8866, 7, 7, UNI_SC__TIRH } /* script=tirhuta */,
- { 4, 4187, 1971, 5, 19, UNI_EARLYDYNASTICCUNEIFORM } /* inearlydynasticcuneiform */,
- { 1, 185, 10523, 2, 5, UNI_XPOSIXBLANK } /* isblank */,
- { 0, 7360, 5144, 10, 14, UNI_LB__SA } /* linebreak=complexcontext */,
- { 7, 3877, 4411, 18, 5, UNI_SYRC } /* scriptextensions=syriac */,
- { 16, 1538, 1948, 4, 20, UNI_DIACRITICALSFORSYMBOLS } /* indiacriticalsforsymbols */,
- { 0, 8973, 1968, 6, 22, UNI_EARLYDYNASTICCUNEIFORM } /* block=earlydynasticcuneiform */,
- { 1, 8356, 0, 4, 0, UNI_HIRA } /* hira */,
- { 26, 9691, 3979, 5, 10, UNI_BOPOMOFOEXT } /* blk=bopomofoext */,
- { 15, 5045, 1130, 3, 3, UNI_UCAS } /* isucas */,
- { 1, 9077, 36, 4, 1, UNI_EXT } /* ext=t */,
- { 0, 1190, 0, 3, 0, UNI_nt_values_index } /* nt= */,
- { 0, 1678, 0, 9, 0, UNI_LATINEXTE } /* latinexte */,
- { 2, 1189, 4985, 3, 14, UNI_TAMILSUP } /* intamilsupplement */,
- { 126, 8691, 0, 4, 0, UNI_MULT } /* mult */,
- { 0, 9691, 415, 4, 32, UNI_INIDC } /* blk=ideographicdescriptioncharacters */,
- { 16, 114, 0, 35, 0, UNI_DIACRITICALSFORSYMBOLS } /* combiningdiacriticalmarksforsymbols */,
- { 4, 9171, 26, 6, 1, UNI__PERL_PATWS } /* patws=y */,
- { 0, 8973, 6590, 6, 12, UNI_INOLDHUNGARIAN } /* block=oldhungarian */,
- { 0, 8782, 494, 7, 3, UNI_SC__HAN } /* script=han */,
- { 0, 3121, 6530, 18, 8, UNI_DT__NONCANON } /* decompositiontype=noncanon */,
- { 1, 8782, 4984, 7, 5, UNI_SC__TAML } /* script=tamil */,
- { 3, 185, 2433, 2, 20, UNI_GLAGOLITICSUP } /* isglagoliticsupplement */,
- { 0, 10352, 6302, 3, 12, UNI_LB__HL } /* wb=hebrewletter */,
- { 2, 6218, 0, 12, 0, UNI_CYRILLICEXTC } /* cyrillicextc */,
+ { 1, 185, 1034, 2, 27, UNI_ENCLOSEDCJK } /* isenclosedcjklettersandmonths */,
+ { 2, 8782, 8537, 7, 7, UNI_SC__BENG } /* script=bengali */,
+ { 65, 9979, 3792, 4, 17, UNI_KITS } /* scx=khitansmallscript */,
+ { 1, 4972, 5947, 3, 3, UNI_TAML } /* istaml */,
+ { 4, 3121, 10289, 18, 3, UNI_DT__SQR } /* decompositiontype=sqr */,
+ { 1, 1418, 3039, 24, 10, UNI_CCC__AR } /* canonicalcombiningclass=aboveright */,
+ { 3, 2312, 4139, 3, 15, UNI_HIGHPUSURROGATES } /* inhighpusurrogates */,
+ { 2, 8973, 5888, 6, 13, UNI_KANAEXTA } /* block=kanaextendeda */,
+ { 0, 1189, 4427, 3, 5, UNI_INTANGUT } /* intangut */,
+ { 3, 8973, 511, 7, 29, UNI_CJKEXTA } /* block=cjkunifiedideographsextensiona */,
+ { 5, 21, 9135, 2, 6, UNI_INLYDIAN } /* inlydian */,
+ { 3, 8621, 0, 4, 0, UNI_GRAN } /* gran */,
+ { 6, 10244, 1060, 3, 2, UNI_SO } /* gc=so */,
+ { 4, 185, 5648, 2, 13, UNI_QMARK } /* isquotationmark */,
+ { 5, 1538, 3499, 24, 10, UNI_INPC__TOPANDLEFT } /* indicpositionalcategory=topandleft */,
+ { 3, 8782, 7790, 7, 9, UNI_TALU } /* script=newtailue */,
+ { 0, 9691, 4138, 4, 16, UNI_HIGHPUSURROGATES } /* blk=highpusurrogates */,
+ { 0, 10268, 8156, 3, 8, UNI_NV__5_SLASH_8 } /* nv=6.25e-01 */,
+ { 0, 5875, 2651, 13, 19, UNI_JG__BURUSHASKIYEHBARREE } /* joininggroup=burushaskiyehbarree */,
+ { 0, 9459, 1, 5, 1, -UNI_IDSB } /* idsb=n */,
+ { 0, 10217, 0, 4, 0, UNI_BC__B } /* bc=b */,
+ { 0, 9691, 8691, 4, 7, UNI_INMULTANI } /* blk=multani */,
+ { 19, 1592, 6231, 3, 11, UNI_ETHIOPICEXTA } /* inethiopicexta */,
+ { 8, 185, 3122, 2, 5, UNI_ECOMP } /* isecomp */,
+ { 0, 9691, 690, 4, 30, UNI_CJKEXTG } /* blk=cjkunifiedideographsextensiong */,
+ { 2, 6937, 2038, 6, 18, UNI_MISCTECHNICAL } /* inmiscellaneoustechnical */,
+ { 2, 8782, 7853, 7, 9, UNI_PAUC } /* script=paucinhau */,
+ { 0, 8973, 8492, 6, 7, UNI_UCASEXT } /* block=ucasext */,
+ { 2, 9476, 9069, 3, 6, UNI_GOTH } /* sc=gothic */,
+ { 0, 9743, 1026, 4, 2, -UNI_DEP } /* dep=no */,
+ { 7, 1990, 4458, 22, 5, UNI_INSC__VOWEL } /* indicsyllabiccategory=vowel */,
+ { 0, 9727, 0, 3, 0, UNI_CWL } /* cwl */,
+ { 0, 10253, 6287, 3, 3, UNI_LB__ZWJ } /* lb=zwj */,
+ { 1, 10268, 8148, 3, 8, UNI_NV__3_SLASH_5 } /* nv=6.00e-01 */,
+ { 128, 6338, 1, 12, 1, -UNI_JOINC } /* joincontrol=n */,
+ { 0, 4759, 0, 15, 0, UNI_ARMI } /* imperialaramaic */,
+ { 0, 8973, 5131, 7, 13, UNI_CJKCOMPATFORMS } /* block=cjkcompatforms */,
+ { 0, 10253, 2468, 3, 2, UNI_LB__HL } /* lb=hl */,
+ { 20, 2304, 4347, 3, 15, UNI_PO } /* isotherpunctuation */,
+ { 6, 6340, 3069, 4, 16, UNI_HALFMARKS } /* incombininghalfmarks */,
+ { 4, 10508, 10100, 3, 3, UNI_XSUX } /* isxsux */,
+ { 8, 185, 8600, 2, 7, UNI_DSRT } /* isdeseret */,
+ { 2, 2312, 8637, 4, 5, UNI_INHANUNOO } /* inhanunoo */,
+ { 0, 185, 2841, 2, 4, UNI_MERO } /* ismero */,
+ { 7, 9691, 4729, 4, 15, UNI_INHANGUL } /* blk=hangulsyllables */,
+ { 0, 9464, 1, 5, 1, -UNI_IDST } /* idst=n */,
+ { 2, 9763, 4346, 4, 5, UNI_GCB__XX } /* gcb=other */,
+ { 9, 8973, 7790, 6, 9, UNI_INNEWTAILUE } /* block=newtailue */,
{ 0, 9519, 0, 5, 0, UNI_OSGE } /* osage */,
- { 0, 6083, 8251, 13, 2, UNI_NV__19 } /* numericvalue=19 */,
- { 0, 8782, 8468, 7, 8, UNI_SC__TAGB } /* script=tagbanwa */,
- { 1, 10268, 4175, 3, 1, UNI_NV__1 } /* nv=1 */,
- { 0, 9979, 8476, 4, 8, UNI_TFNG } /* scx=tifinagh */,
- { 0, 10247, 5, 3, 1, UNI_JG__E } /* jg=e */,
- { 32, 4186, 0, 16, 0, UNI_LINEARBIDEOGRAMS } /* linearbideograms */,
- { 4, 5045, 514, 3, 15, UNI_UIDEO } /* isunifiedideograph */,
- { 96, 4714, 1, 15, 1, -UNI_GREXT } /* graphemeextend=n */,
- { 2, 9735, 10055, 4, 4, UNI_CWU } /* cwu=true */,
- { 0, 9476, 8789, 3, 7, UNI_SC__SHRD } /* sc=sharada */,
- { 1, 3175, 10355, 18, 3, UNI_EPRES } /* emojipresentation=yes */,
- { 3, 3877, 8979, 17, 4, UNI_CARI } /* scriptextensions=cari */,
- { 0, 9476, 9651, 3, 4, UNI_AGHB } /* sc=aghb */,
- { 15, 7530, 0, 10, 0, UNI_SUPARROWSB } /* suparrowsb */,
- { 4, 9731, 36, 4, 1, UNI_CWT } /* cwt=t */,
- { 0, 185, 1747, 2, 13, UNI_ZNAMENNYMUSIC } /* isznamennymusic */,
- { 0, 9476, 9859, 3, 4, UNI_MERC } /* sc=merc */,
- { 0, 1418, 9402, 24, 2, UNI_CCC__34 } /* canonicalcombiningclass=34 */,
- { 0, 9461, 73, 3, 2, UNI_SB__LE } /* sb=le */,
- { 33, 3978, 0, 11, 0, UNI_BOPOMOFOEXT } /* bopomofoext */,
- { 100, 2206, 8308, 21, 8, UNI_WB__EB } /* graphemeclusterbreak=ebasegaz */,
- { 2, 5662, 7, 15, 1, UNI_SB__SC } /* sentencebreak=sc */,
- { 0, 8973, 7754, 6, 9, UNI_LATINEXTG } /* block=latinextg */,
- { 0, 8973, 3481, 6, 18, UNI_TAIXUANJING } /* block=taixuanjingsymbols */,
- { 272, 9711, 10172, 4, 3, UNI_CCC__IS } /* ccc=240 */,
- { 2, 1189, 8832, 3, 6, UNI_INTAGALOG } /* intagalog */,
- { 1, 4847, 4315, 3, 6, UNI_INMYANMAR } /* inmyanmar */,
- { 0, 9219, 1026, 6, 2, -UNI_XPOSIXUPPER } /* upper=no */,
- { 1, 8593, 36, 7, 1, UNI_COMPEX } /* compex=t */,
- { 0, 9979, 9863, 4, 4, UNI_MIAO } /* scx=miao */,
- { 57, 4074, 24, 16, 1, UNI_L } /* generalcategory=l */,
- { 0, 8973, 7210, 6, 10, UNI_ASCII } /* block=basiclatin */,
- { 34, 9691, 8803, 4, 7, UNI_INSIDDHAM } /* blk=siddham */,
- { 5, 6741, 1026, 11, 2, -UNI_DEP } /* deprecated=no */,
- { 1, 3049, 0, 4, 0, UNI_CHER } /* cher */,
- { 0, 9647, 10334, 4, 3, UNI_AGE__6_DOT_3 } /* age=v63 */,
- { 1, 8973, 1678, 6, 23, UNI_LATINEXTADDITIONAL } /* block=latinextendedadditional */,
- { 9, 8782, 3193, 7, 8, UNI_ETHI } /* script=ethiopic */,
- { 0, 1592, 3194, 3, 10, UNI_ETHIOPICSUP } /* inethiopicsup */,
- { 0, 10268, 8913, 3, 5, UNI_NV__40000 } /* nv=40000 */,
- { 32, 1553, 7005, 9, 11, UNI_SO } /* category=othersymbol */,
- { 0, 9979, 4411, 5, 5, UNI_SYRC } /* scx=syriac */,
- { 3, 1562, 0, 24, 0, UNI_SUPSYMBOLSANDPICTOGRAPHS } /* supsymbolsandpictographs */,
- { 12, 9429, 10055, 5, 4, UNI_CWCF } /* cwcf=true */,
- { 28, 8635, 0, 7, 0, UNI_HANO } /* hanunoo */,
- { 5, 3877, 9787, 17, 4, UNI_HANO } /* scriptextensions=hano */,
- { 0, 8782, 10015, 7, 4, UNI_SC__TALE } /* script=tale */,
- { 0, 10530, 8861, 4, 5, UNI_INTIBETAN } /* intibetan */,
- { 5, 9461, 139, 3, 2, UNI_SB__FO } /* sb=fo */,
- { 0, 10268, 8252, 3, 8, UNI_NV__11_SLASH_12 } /* nv=9.17e-01 */,
- { 0, 185, 6506, 2, 12, UNI_MATHALPHANUM } /* ismathalphanum */,
- { 1, 8973, 9237, 6, 6, UNI_INYEZIDI } /* block=yezidi */,
- { 1, 9476, 8796, 3, 7, UNI_SHAW } /* sc=shavian */,
- { 0, 8881, 7553, 3, 7, UNI_ASSIGNED } /* isassigned */,
- { 1, 5875, 3, 15, 1, UNI_JG__KAF } /* joininggroup=kaf */,
- { 22, 3877, 7105, 18, 3, UNI_SYLO } /* scriptextensions=sylo */,
- { 0, 3877, 8804, 18, 3, UNI_SIDD } /* scriptextensions=sidd */,
- { 6, 7391, 1018, 4, 2, UNI_CAKM } /* iscakm */,
- { 1, 10510, 97, 6, 5, UNI_XPOSIXALPHA } /* xposixalpha */,
- { 141, 3877, 9105, 17, 6, UNI_KHOJ } /* scriptextensions=khojki */,
- { 0, 6083, 8220, 13, 8, UNI_NV__5_SLASH_6 } /* numericvalue=8.33e-01 */,
- { 1, 6083, 1250, 13, 3, UNI_NV__NAN } /* numericvalue=nan */,
- { 1, 1418, 4968, 24, 2, UNI_CCC__0 } /* canonicalcombiningclass=nr */,
- { 4, 8973, 7430, 6, 10, UNI_INOLDSOGDIAN } /* block=oldsogdian */,
- { 3, 7240, 0, 10, 0, UNI_BOXDRAWING } /* boxdrawing */,
- { 0, 5875, 6458, 13, 12, UNI_JG__MALAYALAMSSA } /* joininggroup=malayalamssa */,
- { 1, 8973, 4090, 6, 16, UNI_GEORGIANEXT } /* block=georgianextended */,
- { 7, 10540, 17, 5, 1, UNI_XPEO } /* isxpeo */,
- { 170, 185, 11, 2, 2, UNI_DI } /* isdi */,
- { 4, 10247, 6662, 3, 12, UNI_JG__VERTICALTAIL } /* jg=verticaltail */,
- { 4, 3877, 9755, 17, 4, UNI_DSRT } /* scriptextensions=dsrt */,
- { 1, 185, 4534, 2, 15, UNI_BRAI } /* isbraillepatterns */,
- { 5, 9159, 10355, 6, 3, UNI_NFDQC__Y } /* nfdqc=yes */,
- { 1, 9476, 3159, 5, 2, UNI_SC__KHOJ } /* sc=khoj */,
- { 128, 10268, 8028, 3, 3, UNI_NV__200 } /* nv=200 */,
- { 45, 6340, 2165, 3, 17, UNI_CYRILLICSUP } /* incyrillicsupplement */,
- { 64, 9474, 4564, 5, 15, UNI_INSC__CONSONANTKILLER } /* insc=consonantkiller */,
- { 0, 8881, 29, 4, 4, UNI_ARAB } /* isarabic */,
- { 74, 9691, 3707, 4, 16, UNI_ETHIOPICEXT } /* blk=ethiopicextended */,
- { 1, 1370, 0, 24, 0, UNI_ARABICPFA } /* arabicpresentationformsa */,
- { 0, 9691, 3319, 4, 9, UNI_LATINEXTA } /* blk=latinexta */,
- { 7, 9474, 5784, 5, 13, UNI_INSC__CONSONANTDEAD } /* insc=consonantdead */,
- { 0, 2242, 9505, 3, 4, UNI_INNUSHU } /* innushu */,
- { 27, 3463, 0, 18, 0, UNI_SMALLKANAEXT } /* smallkanaextension */,
- { 2, 7230, 10274, 10, 3, UNI_BC__PDF } /* bidiclass=pdf */,
- { 0, 7467, 7951, 3, 1, UNI_IN__3 } /* in=3 */,
- { 2, 3877, 9775, 17, 4, UNI_GREK } /* scriptextensions=grek */,
- { 0, 8782, 9879, 7, 4, UNI_SC__MYMR } /* script=mymr */,
- { 0, 10244, 340, 3, 2, UNI_LO } /* gc=lo */,
- { 0, 9691, 839, 4, 29, UNI_MISCARROWS } /* blk=miscellaneoussymbolsandarrows */,
- { 9, 9469, 2573, 5, 20, UNI_INPC__TOPANDBOTTOMANDRIGHT } /* inpc=topandbottomandright */,
- { 1, 6529, 7421, 3, 9, UNI_INOLDPERSIAN } /* inoldpersian */,
- { 1, 9476, 9991, 3, 4, UNI_SHAW } /* sc=shaw */,
- { 2, 9476, 3978, 3, 8, UNI_SC__BOPO } /* sc=bopomofo */,
- { 0, 10223, 3, 3, 1, -UNI_CI } /* ci=f */,
- { 132, 9177, 1, 6, 1, -UNI_QMARK } /* qmark=n */,
- { 0, 9711, 8027, 4, 2, UNI_CCC__22 } /* ccc=22 */,
- { 0, 4999, 0, 15, 0, UNI_TITLE } /* titlecaseletter */,
- { 1, 8967, 1026, 6, 2, -UNI_BIDIM } /* bidim=no */,
- { 34, 10516, 8776, 3, 6, UNI_PHAG } /* isphagspa */,
- { 0, 1553, 342, 9, 2, UNI_PE } /* category=pe */,
- { 0, 1880, 0, 22, 0, UNI_cwu_values_index } /* changeswhenuppercased= */,
- { 1, 10253, 752, 3, 2, UNI_LB__CL } /* lb=cl */,
- { 0, 10511, 7580, 5, 4, UNI_POSIXWORD } /* posixword */,
- { 0, 9691, 750, 4, 16, UNI_ENCLOSEDALPHANUM } /* blk=enclosedalphanum */,
- { 106, 5408, 5942, 4, 7, UNI_INMALAYALAM } /* inmalayalam */,
- { 0, 9711, 9370, 5, 4, UNI_CCC__28 } /* ccc=ccc28 */,
- { 19, 3877, 7260, 17, 10, UNI_CHRS } /* scriptextensions=chorasmian */,
- { 24, 185, 10388, 2, 2, UNI_CASEDLETTER } /* isl& */,
- { 1, 7460, 10295, 10, 3, UNI_IN__2 } /* presentin=v20 */,
- { 17, 3877, 7709, 17, 9, UNI_SIND } /* scriptextensions=khudawadi */,
- { 0, 263, 0, 2, 0, UNI_SM } /* sm */,
- { 33, 9550, 10355, 4, 3, UNI_IDS } /* ids=yes */,
- { 0, 3121, 10091, 18, 4, UNI_EA__F } /* decompositiontype=wide */,
- { 27, 4972, 8846, 3, 6, UNI_TAVT } /* istaiviet */,
- { 0, 10253, 496, 3, 2, UNI_LB__NU } /* lb=nu */,
- { 7, 4984, 0, 5, 0, UNI_TAML } /* tamil */,
- { 0, 8973, 8552, 7, 6, UNI_CJKEXTB } /* block=cjkextb */,
- { 0, 4074, 5581, 16, 11, UNI_MC } /* generalcategory=spacingmark */,
- { 2, 10015, 0, 4, 0, UNI_TALE } /* tale */,
- { 0, 4598, 3267, 4, 6, UNI_INGEORGIAN } /* ingeorgian */,
- { 1, 9691, 7844, 4, 9, UNI_PALM } /* blk=palmyrene */,
- { 3, 4699, 0, 14, 0, UNI_ECOMP } /* emojicomponent */,
- { 4, 7391, 5118, 4, 11, UNI_CI } /* iscaseignorable */,
- { 5, 9269, 3, 5, 1, -UNI_POSIXXDIGIT } /* ahex=f */,
- { 56, 8881, 9265, 3, 4, UNI_ADLM } /* isadlam */,
- { 1, 1847, 0, 5, 0, UNI_XPOSIXLOWER } /* lower */,
- { 106, 3157, 10355, 18, 3, UNI_EBASE } /* emojimodifierbase=yes */,
- { 1, 1418, 6851, 24, 11, UNI_CCC__8 } /* canonicalcombiningclass=kanavoicing */,
- { 0, 8887, 10055, 7, 4, UNI_XPOSIXSPACE } /* wspace=true */,
- { 42, 10530, 8478, 4, 6, UNI_INTIFINAGH } /* intifinagh */,
- { 0, 185, 9827, 2, 4, UNI_LANA } /* islana */,
- { 1, 8782, 8656, 7, 7, UNI_SC__KALI } /* script=kayahli */,
- { 12, 3877, 4534, 17, 7, UNI_BRAI } /* scriptextensions=braille */,
- { 20, 185, 1019, 2, 5, UNI_MUSIC } /* ismusic */,
- { 2, 9803, 7380, 4, 10, UNI_LB__H2 } /* hst=lvsyllable */,
- { 0, 10268, 8949, 3, 4, UNI_NV__9000 } /* nv=9000 */,
- { 0, 8782, 6362, 7, 5, UNI_KHMR } /* script=khmer */,
- { 1, 8973, 952, 6, 28, UNI_VSSUP } /* block=variationselectorssupplement */,
- { 2, 185, 3978, 2, 4, UNI_BOPO } /* isbopo */,
- { 2, 1466, 0, 24, 0, UNI_DIACRITICALSFORSYMBOLS } /* combiningmarksforsymbols */,
- { 1, 10508, 5802, 8, 5, UNI_XPOSIXALNUM } /* isxposixalnum */,
- { 1, 6083, 10136, 13, 3, UNI_NV__2_SLASH_3 } /* numericvalue=2/3 */,
- { 0, 7230, 1354, 10, 3, UNI_BC__RLE } /* bidiclass=rle */,
- { 1, 185, 9819, 2, 4, UNI_KNDA } /* isknda */,
- { 0, 3301, 0, 18, 0, UNI_PI } /* initialpunctuation */,
- { 0, 185, 9069, 2, 4, UNI_GOTH } /* isgoth */,
- { 12, 9979, 2937, 5, 8, UNI_SUND } /* scx=sundanese */,
- { 243, 5875, 9243, 13, 6, UNI_JG__YUDHHE } /* joininggroup=yudhhe */,
- { 16, 6340, 3105, 4, 16, UNI_COPTICEPACTNUMBERS } /* incopticepactnumbers */,
- { 2, 8782, 8621, 7, 7, UNI_SC__GRAN } /* script=grantha */,
- { 4, 185, 868, 2, 11, UNI_PHONETICEXT } /* isphoneticext */,
- { 84, 4074, 468, 16, 11, UNI_P } /* generalcategory=punctuation */,
- { 3, 1418, 6554, 24, 12, UNI_CCC__0 } /* canonicalcombiningclass=notreordered */,
- { 9, 6083, 9631, 13, 3, UNI_NV__3_SLASH_8 } /* numericvalue=3/8 */,
- { 26, 9691, 9093, 4, 6, UNI_INKAITHI } /* blk=kaithi */,
- { 0, 5927, 0, 13, 0, UNI_LOWSURROGATES } /* lowsurrogates */,
- { 5, 9544, 36, 5, 1, UNI_XIDC } /* xidc=t */,
- { 1, 185, 4625, 3, 14, UNI_CURRENCYSYMBOLS } /* iscurrencysymbols */,
- { 7, 8973, 8670, 6, 7, UNI_INMAKASAR } /* block=makasar */,
- { 0, 9476, 7700, 3, 9, UNI_SC__QAAI } /* sc=inherited */,
- { 0, 8973, 3707, 6, 17, UNI_ETHIOPICEXTA } /* block=ethiopicextendeda */,
- { 1, 2248, 2994, 3, 18, UNI_SUPARROWSC } /* insupplementalarrowsc */,
- { 3, 9979, 7826, 4, 9, UNI_ORKH } /* scx=oldturkic */,
- { 20, 8973, 571, 7, 29, UNI_CJKEXTC } /* block=cjkunifiedideographsextensionc */,
- { 0, 8782, 7450, 7, 10, UNI_PHNX } /* script=phoenician */,
- { 2, 7300, 0, 10, 0, UNI_dia_values_index } /* diacritic= */,
- { 347, 10268, 8907, 3, 2, UNI_NV__30 } /* nv=30 */,
- { 0, 9476, 7333, 6, 7, UNI_KHAR } /* sc=kharoshthi */,
- { 0, 8973, 5888, 6, 13, UNI_KANAEXTA } /* block=kanaextendeda */,
- { 2, 9691, 9831, 4, 3, UNI_INLAO } /* blk=lao */,
- { 56, 7370, 36, 10, 1, UNI_XPOSIXLOWER } /* lowercase=t */,
- { 0, 8782, 9923, 7, 4, UNI_SC__OUGR } /* script=ougr */,
- { 21, 9195, 0, 6, 0, UNI_TNSA } /* tangsa */,
- { 101, 8973, 2353, 6, 20, UNI_INANATOLIANHIEROGLYPHS } /* block=anatolianhieroglyphs */,
- { 22, 9691, 2164, 4, 18, UNI_CYRILLICSUP } /* blk=cyrillicsupplement */,
- { 45, 9691, 1007, 4, 27, UNI_ANCIENTGREEKMUSIC } /* blk=ancientgreekmusicalnotation */,
- { 21, 3175, 9454, 18, 5, -UNI_EPRES } /* emojipresentation=false */,
- { 0, 3193, 0, 18, 0, UNI_ETHIOPICSUP } /* ethiopicsupplement */,
- { 2, 8973, 5312, 6, 14, UNI_LATINEXTD } /* block=latinextendedd */,
- { 82, 10253, 2664, 3, 2, UNI_LB__BA } /* lb=ba */,
- { 0, 3877, 9524, 17, 5, UNI_RUNR } /* scriptextensions=runic */,
- { 0, 8973, 10051, 6, 4, UNI_INTOTO } /* block=toto */,
- { 129, 3157, 36, 18, 1, UNI_EBASE } /* emojimodifierbase=t */,
- { 1, 10229, 4058, 3, 5, UNI_DT__FIN } /* dt=final */,
- { 33, 8719, 0, 7, 0, UNI_NB } /* noblock */,
- { 2, 1418, 10172, 24, 3, UNI_CCC__IS } /* canonicalcombiningclass=240 */,
+ { 64, 6386, 0, 4, 0, UNI_MAHJ } /* mahj */,
+ { 15, 184, 0, 20, 0, UNI_MISCSYMBOLS } /* miscellaneoussymbols */,
+ { 0, 9731, 36, 4, 1, UNI_CWT } /* cwt=t */,
+ { 1, 9691, 2332, 4, 6, UNI_YIJING } /* blk=yijing */,
+ { 0, 10553, 10008, 3, 3, UNI_SYRC } /* issyrc */,
+ { 0, 10268, 8211, 3, 2, UNI_NV__18 } /* nv=18 */,
+ { 1, 10244, 1934, 3, 2, UNI_CN } /* gc=cn */,
+ { 8, 9691, 4624, 4, 15, UNI_CURRENCYSYMBOLS } /* blk=currencysymbols */,
+ { 9, 7450, 0, 10, 0, UNI_PHNX } /* phoenician */,
+ { 5, 1295, 0, 25, 0, UNI_SUPERANDSUB } /* superscriptsandsubscripts */,
+ { 35, 447, 0, 32, 0, UNI_IDEOGRAPHICSYMBOLS } /* ideographicsymbolsandpunctuation */,
+ { 1, 1418, 9405, 25, 4, UNI_CCC__35 } /* canonicalcombiningclass=ccc35 */,
+ { 4, 9469, 2573, 5, 3, UNI_INPC__TOP } /* inpc=top */,
+ { 0, 21, 1674, 2, 4, UNI_JAMO } /* injamo */,
+ { 0, 9691, 6518, 4, 12, UNI_INMENDEKIKAKUI } /* blk=mendekikakui */,
+ { 6, 6338, 10055, 12, 4, UNI_JOINC } /* joincontrol=true */,
+ { 3, 9051, 1026, 6, 2, -UNI_ECOMP } /* ecomp=no */,
+ { 0, 3157, 26, 18, 1, UNI_EBASE } /* emojimodifierbase=y */,
+ { 1, 3877, 2227, 17, 14, UNI_ROHG } /* scriptextensions=hanifirohingya */,
+ { 1, 10253, 9764, 3, 2, UNI_LB__CB } /* lb=cb */,
+ { 0, 9057, 1, 6, 1, -UNI_EMOJI } /* emoji=n */,
+ { 1, 185, 3674, 3, 16, UNI_CYRILLICEXTB } /* iscyrillicextendedb */,
+ { 0, 185, 9779, 2, 4, UNI_GUJR } /* isgujr */,
+ { 0, 8628, 1026, 7, 2, -UNI_GRBASE } /* grbase=no */,
+ { 0, 10217, 2822, 3, 19, UNI_BC__LRO } /* bc=lefttorightoverride */,
+ { 24, 8782, 2164, 7, 8, UNI_SC__CYRL } /* script=cyrillic */,
+ { 36, 3877, 7826, 17, 9, UNI_ORKH } /* scriptextensions=oldturkic */,
+ { 2, 9075, 0, 6, 0, UNI_grext_values_index } /* grext= */,
+ { 5, 3877, 7811, 17, 4, UNI_ITAL } /* scriptextensions=ital */,
+ { 1, 8782, 9703, 7, 4, UNI_SC__CAKM } /* script=cakm */,
+ { 1, 7160, 2333, 3, 20, UNI_YIJING } /* isyijinghexagramsymbols */,
+ { 8, 8973, 5298, 6, 14, UNI_LATINEXTC } /* block=latinextendedc */,
+ { 36, 9979, 7105, 5, 3, UNI_SYLO } /* scx=sylo */,
+ { 0, 185, 7736, 2, 9, UNI_LATINEXTD } /* islatinextd */,
+ { 38, 8973, 44, 7, 8, UNI_CJKCOMPAT } /* block=cjkcompat */,
+ { 2, 10352, 1219, 3, 8, UNI_WB__KA } /* wb=katakana */,
+ { 4, 6937, 4302, 6, 12, UNI_MISCMATHSYMBOLSB } /* inmiscmathsymbolsb */,
+ { 51, 9979, 8754, 4, 4, UNI_OSMA } /* scx=osma */,
+ { 0, 5172, 1026, 14, 2, -UNI_EMOD } /* emojimodifier=no */,
+ { 0, 9077, 36, 4, 1, UNI_EXT } /* ext=t */,
+ { 0, 9691, 6302, 4, 6, UNI_INHEBREW } /* blk=hebrew */,
+ { 1, 5284, 0, 14, 0, UNI_LATINEXTB } /* latinextendedb */,
+ { 0, 4847, 394, 3, 2, UNI_INMRO } /* inmro */,
+ { 0, 7360, 6288, 10, 2, UNI_LB__WJ } /* linebreak=wj */,
+ { 9, 9711, 3596, 4, 5, UNI_CCC__B } /* ccc=below */,
+ { 9, 2003, 10389, 10, 1, UNI_CASEDLETTER } /* category=l& */,
+ { 8, 8881, 8531, 3, 6, UNI_AVST } /* isavestan */,
+ { 3, 6697, 10055, 11, 4, UNI_XPOSIXALPHA } /* alphabetic=true */,
+ { 50, 1924, 0, 22, 0, UNI_INDICNUMBERFORMS } /* commonindicnumberforms */,
+ { 4, 9691, 8579, 4, 7, UNI_CJKEXTF } /* blk=cjkextf */,
+ { 0, 10247, 6410, 3, 12, UNI_JG__MALAYALAMLLA } /* jg=malayalamlla */,
+ { 96, 2056, 36, 22, 1, UNI__PERL_NCHAR } /* noncharactercodepoint=t */,
+ { 47, 8973, 3978, 6, 16, UNI_BOPOMOFOEXT } /* block=bopomofoextended */,
+ { 5, 8866, 0, 7, 0, UNI_TIRH } /* tirhuta */,
+ { 0, 10217, 3337, 3, 18, UNI_BC__LRI } /* bc=lefttorightisolate */,
+ { 1, 1538, 3367, 4, 6, UNI_DINGBATS } /* indingbats */,
+ { 0, 3877, 2248, 17, 21, UNI_PRTI } /* scriptextensions=inscriptionalparthian */,
+ { 0, 9153, 48, 6, 1, UNI_NFCQC__M } /* nfcqc=m */,
+ { 0, 6083, 8925, 13, 6, UNI_NV__500000 } /* numericvalue=500000 */,
+ { 26, 8973, 8719, 6, 7, UNI_NB } /* block=noblock */,
+ { 4, 9474, 2413, 5, 20, UNI_INSC__CONSONANTWITHSTACKER } /* insc=consonantwithstacker */,
+ { 7, 1553, 17, 10, 1, UNI_SO } /* category=so */,
+ { 32, 9081, 0, 6, 0, UNI_HATR } /* hatran */,
+ { 0, 8316, 26, 8, 1, UNI_EXTPICT } /* extpict=y */,
+ { 0, 3826, 0, 10, 0, UNI_MANI } /* manichaean */,
+ { 2, 5045, 59, 3, 4, UNI_UIDEO } /* isuideo */,
+ { 0, 9979, 1014, 4, 5, UNI_GREK } /* scx=greek */,
+ { 0, 1553, 2085, 9, 14, UNI_LM } /* category=modifierletter */,
+ { 1, 6083, 8251, 13, 2, UNI_NV__19 } /* numericvalue=19 */,
+ { 2, 9476, 2841, 3, 19, UNI_MERO } /* sc=meroitichieroglyphs */,
+ { 34, 9691, 1320, 4, 25, UNI_SYMBOLSANDPICTOGRAPHSEXTA } /* blk=symbolsandpictographsexta */,
+ { 2, 5368, 0, 4, 0, UNI_LISU } /* lisu */,
+ { 2, 185, 6614, 2, 12, UNI_PHAISTOS } /* isphaistosdisc */,
+ { 0, 5536, 0, 14, 0, UNI_nfcqc_values_index } /* nfcquickcheck= */,
+ { 0, 9476, 2584, 3, 4, UNI_SC__MAND } /* sc=mand */,
+ { 4, 7460, 8100, 10, 3, UNI_IN__4_DOT_1 } /* presentin=4.1 */,
+ { 6, 8973, 447, 6, 32, UNI_IDEOGRAPHICSYMBOLS } /* block=ideographicsymbolsandpunctuation */,
+ { 1, 185, 1067, 2, 2, UNI_CASEDLETTER } /* islc */,
+ { 5, 185, 4714, 2, 14, UNI_GREXT } /* isgraphemeextend */,
+ { 8, 1990, 2632, 22, 19, UNI_INSC__BRAHMIJOININGNUMBER } /* indicsyllabiccategory=brahmijoiningnumber */,
+ { 0, 6083, 8903, 13, 3, UNI_NV__600 } /* numericvalue=600 */,
+ { 0, 4972, 9208, 3, 3, UNI_THAA } /* isthaa */,
+ { 0, 3877, 9843, 17, 4, UNI_LINB } /* scriptextensions=linb */,
+ { 16, 185, 123, 2, 9, UNI_DIA } /* isdiacritic */,
+ { 1, 10268, 7975, 3, 1, UNI_NV__6 } /* nv=6 */,
+ { 2, 9691, 6961, 4, 11, UNI_MYANMAREXTB } /* blk=myanmarextb */,
+ { 0, 1189, 9196, 3, 5, UNI_INTANGSA } /* intangsa */,
+ { 12, 7460, 10319, 10, 3, UNI_IN__5_DOT_1 } /* presentin=v51 */,
+ { 4, 6674, 26, 12, 1, UNI_XIDC } /* xidcontinue=y */,
+ { 0, 9883, 0, 4, 0, UNI_NARB } /* narb */,
+ { 1, 185, 7570, 2, 10, UNI_WARA } /* iswarangciti */,
+ { 0, 6083, 8068, 13, 8, UNI_NV__7_SLASH_2 } /* numericvalue=3.50e+00 */,
+ { 2, 9711, 8994, 4, 3, UNI_CCC__107 } /* ccc=107 */,
+ { 0, 3877, 9799, 17, 4, UNI_HMNP } /* scriptextensions=hmnp */,
+ { 2, 10253, 1775, 3, 2, UNI_LB__AI } /* lb=ai */,
+ { 0, 7460, 10340, 10, 3, UNI_IN__8 } /* presentin=v80 */,
+ { 4, 9434, 1, 5, 1, -UNI_CWCM } /* cwcm=n */,
+ { 1, 8973, 3193, 6, 18, UNI_ETHIOPICSUP } /* block=ethiopicsupplement */,
+ { 16, 9539, 0, 5, 0, UNI_VSSUP } /* vssup */,
+ { 32, 8973, 5634, 6, 14, UNI_INPSALTERPAHLAVI } /* block=psalterpahlavi */,
+ { 24, 1418, 8920, 24, 2, UNI_CCC__32 } /* canonicalcombiningclass=32 */,
+ { 0, 9691, 1466, 4, 24, UNI_DIACRITICALSFORSYMBOLS } /* blk=combiningmarksforsymbols */,
+ { 18, 9476, 8838, 3, 7, UNI_LANA } /* sc=taitham */,
+ { 104, 9075, 36, 6, 1, UNI_GREXT } /* grext=t */,
+ { 0, 9691, 6109, 4, 13, UNI_VERTICALFORMS } /* blk=verticalforms */,
+ { 0, 8973, 2879, 6, 9, UNI_INMONGOLIAN } /* block=mongolian */,
+ { 6, 185, 44, 3, 25, UNI_CJKCOMPATIDEOGRAPHS } /* iscjkcompatibilityideographs */,
+ { 15, 3877, 2879, 17, 9, UNI_MONG } /* scriptextensions=mongolian */,
+ { 0, 185, 8284, 2, 8, UNI_BASS } /* isbassavah */,
+ { 1, 9691, 6386, 4, 12, UNI_MAHJONG } /* blk=mahjongtiles */,
+ { 0, 9691, 6122, 4, 12, UNI_ALPHABETICPF } /* blk=alphabeticpf */,
+ { 1, 8782, 2433, 7, 10, UNI_SC__GLAG } /* script=glagolitic */,
+ { 1, 9979, 8811, 5, 3, UNI_SOYO } /* scx=soyo */,
+ { 2, 2553, 9454, 20, 5, -UNI_TERM } /* terminalpunctuation=false */,
+ { 0, 9691, 3911, 4, 17, UNI_SMALLFORMS } /* blk=smallformvariants */,
+ { 5, 1418, 8235, 24, 2, UNI_CCC__28 } /* canonicalcombiningclass=28 */,
+ { 0, 10516, 132, 3, 3, UNI_PALM } /* ispalm */,
+ { 3, 10268, 8949, 3, 6, UNI_NV__900000 } /* nv=900000 */,
+ { 0, 185, 8656, 2, 7, UNI_KALI } /* iskayahli */,
+ { 0, 9711, 10151, 4, 3, UNI_CCC__L } /* ccc=224 */,
+ { 0, 9979, 9509, 4, 5, UNI_OGAM } /* scx=ogham */,
+ { 0, 9979, 8292, 4, 8, UNI_BUGI } /* scx=buginese */,
+ { 1, 7360, 534, 10, 2, UNI_LB__NS } /* linebreak=ns */,
+ { 42, 9476, 8284, 3, 8, UNI_BASS } /* sc=bassavah */,
+ { 9, 10268, 8931, 3, 5, UNI_NV__60000 } /* nv=60000 */,
+ { 3, 9979, 9135, 4, 6, UNI_LYDI } /* scx=lydian */,
+ { 3, 1116, 0, 4, 0, UNI_HANG } /* hang */,
+ { 0, 1792, 3, 22, 1, -UNI_CWCF } /* changeswhencasefolded=f */,
+ { 0, 8973, 7718, 6, 9, UNI_LATINEXTB } /* block=latinextb */,
+ { 1, 6083, 9402, 13, 2, UNI_NV__34 } /* numericvalue=34 */,
+ { 2, 3373, 0, 18, 0, UNI_ZP } /* paragraphseparator */,
+ { 1, 1632, 0, 18, 0, UNI_GEOMETRICSHAPESEXT } /* geometricshapesext */,
+ { 0, 5516, 0, 3, 0, UNI_ANY } /* any */,
+ { 0, 6529, 7431, 3, 9, UNI_INOLDSOGDIAN } /* inoldsogdian */,
+ { 0, 3121, 6530, 18, 12, UNI_DT__NONCANON } /* decompositiontype=noncanonical */,
+ { 0, 5875, 5480, 13, 14, UNI_JG__MANICHAEANRESH } /* joininggroup=manichaeanresh */,
+ { 1, 8973, 9655, 6, 4, UNI_INAHOM } /* block=ahom */,
+ { 6, 9087, 1, 6, 1, -UNI_JOINC } /* joinc=n */,
+ { 39, 8973, 9081, 6, 6, UNI_INHATRAN } /* block=hatran */,
+ { 8, 185, 4774, 2, 15, UNI_LOWERCASELETTER } /* islowercaseletter */,
+ { 0, 10247, 9243, 3, 6, UNI_JG__YUDHHE } /* jg=yudhhe */,
+ { 1, 10346, 3535, 3, 18, UNI_VO__TU } /* vo=transformedupright */,
+ { 0, 9763, 1934, 4, 2, UNI_GCB__CN } /* gcb=cn */,
+ { 1, 185, 1747, 2, 13, UNI_ZNAMENNYMUSIC } /* isznamennymusic */,
+ { 0, 9691, 5901, 4, 13, UNI_KANAEXTB } /* blk=kanaextendedb */,
+ { 2, 185, 9069, 2, 4, UNI_GOTH } /* isgoth */,
+ { 2, 9647, 10075, 4, 4, UNI_AGE__13 } /* age=v130 */,
+ { 1, 9525, 1184, 4, 3, UNI_ANY } /* unicode */,
+ { 0, 10516, 84, 3, 2, UNI_PCM } /* ispcm */,
+ { 0, 10244, 49, 3, 1, UNI_P } /* gc=p */,
+ { 0, 8973, 4186, 6, 16, UNI_LINEARBIDEOGRAMS } /* block=linearbideograms */,
+ { 74, 9691, 8293, 5, 7, UNI_INBUGINESE } /* blk=buginese */,
+ { 0, 1553, 7005, 9, 11, UNI_SO } /* category=othersymbol */,
+ { 11, 8782, 8284, 7, 4, UNI_BASS } /* script=bass */,
+ { 89, 9747, 26, 4, 1, UNI_DIA } /* dia=y */,
+ { 1, 8887, 1026, 7, 2, -UNI_XPOSIXSPACE } /* wspace=no */,
+ { 0, 6340, 44, 3, 35, UNI_CJKCOMPATIDEOGRAPHSSUP } /* incjkcompatibilityideographssupplement */,
+ { 0, 5648, 10055, 14, 4, UNI_QMARK } /* quotationmark=true */,
+ { 3, 2185, 10055, 21, 4, UNI_EXTPICT } /* extendedpictographic=true */,
+ { 2, 9711, 3039, 4, 10, UNI_CCC__AR } /* ccc=aboveright */,
+ { 6, 5634, 0, 14, 0, UNI_PHLP } /* psalterpahlavi */,
+ { 21, 7817, 0, 9, 0, UNI_PERM } /* oldpermic */,
+ { 43, 9476, 8803, 3, 4, UNI_SIDD } /* sc=sidd */,
+ { 0, 10398, 0, 2, 0, UNI_ZP } /* zp */,
+ { 0, 7297, 4730, 3, 14, UNI_INHANGUL } /* ishangulsyllables */,
+ { 137, 43, 0, 9, 0, UNI_CJKCOMPAT } /* cjkcompat */,
+ { 0, 7360, 6096, 10, 13, UNI_LB__PR } /* linebreak=prefixnumeric */,
+ { 4, 7330, 0, 10, 0, UNI_KHAR } /* kharoshthi */,
+ { 14, 9231, 0, 6, 0, UNI_WCHO } /* wancho */,
+ { 14, 3877, 8530, 17, 7, UNI_AVST } /* scriptextensions=avestan */,
+ { 2, 21, 3573, 4, 15, UNI_ALCHEMICAL } /* inalchemicalsymbols */,
+ { 1, 9691, 1007, 4, 27, UNI_ANCIENTGREEKMUSIC } /* blk=ancientgreekmusicalnotation */,
+ { 2, 10268, 9571, 3, 4, UNI_NV__1_SLASH_40 } /* nv=1/40 */,
+ { 0, 8973, 2690, 7, 10, UNI_COUNTINGROD } /* block=countingrod */,
+ { 5, 9476, 79, 3, 6, UNI_SC__ARAB } /* sc=arabic */,
{ 1, 9464, 36, 5, 1, UNI_IDST } /* idst=t */,
- { 14, 10268, 8028, 3, 5, UNI_NV__20000 } /* nv=20000 */,
- { 43, 8300, 0, 8, 0, UNI_DUPL } /* duployan */,
- { 4, 9461, 7871, 3, 9, UNI_SB__SC } /* sb=scontinue */,
- { 0, 8973, 7808, 6, 9, UNI_INOLDITALIC } /* block=olditalic */,
- { 0, 2056, 0, 21, 0, UNI__PERL_NCHAR } /* noncharactercodepoint */,
- { 3, 8973, 2936, 6, 9, UNI_INSUNDANESE } /* block=sundanese */,
- { 0, 9691, 7781, 4, 9, UNI_INNABATAEAN } /* blk=nabataean */,
- { 1, 6340, 691, 3, 29, UNI_CJKEXTG } /* incjkunifiedideographsextensiong */,
- { 65, 185, 750, 2, 16, UNI_ENCLOSEDALPHANUM } /* isenclosedalphanum */,
- { 0, 7908, 0, 8, 0, UNI_ids_values_index } /* idstart= */,
- { 14, 6340, 1062, 4, 4, UNI_INCOPTIC } /* incoptic */,
- { 4, 5940, 0, 9, 0, UNI_MLYM } /* malayalam */,
- { 10, 1968, 0, 22, 0, UNI_EARLYDYNASTICCUNEIFORM } /* earlydynasticcuneiform */,
- { 138, 8973, 3319, 6, 9, UNI_LATINEXTA } /* block=latinexta */,
- { 0, 2056, 0, 22, 0, UNI_nchar_values_index } /* noncharactercodepoint= */,
- { 0, 7297, 9082, 3, 5, UNI_HATR } /* ishatran */,
- { 0, 2593, 3546, 20, 7, UNI_VO__U } /* verticalorientation=upright */,
- { 1, 5648, 1, 14, 1, -UNI_QMARK } /* quotationmark=n */,
- { 1, 10268, 9575, 3, 4, UNI_NV__1_SLASH_64 } /* nv=1/64 */,
- { 1, 6083, 8020, 13, 8, UNI_NV__1_SLASH_40 } /* numericvalue=2.50e-02 */,
- { 0, 9691, 0, 4, 34, UNI_UCAS } /* blk=unifiedcanadianaboriginalsyllabics */,
- { 1, 10516, 9424, 7, 5, UNI_POSIXCNTRL } /* isposixcntrl */,
- { 0, 8973, 9284, 6, 5, UNI_INBATAK } /* block=batak */,
- { 0, 9476, 8684, 3, 4, UNI_MARC } /* sc=marc */,
- { 0, 10349, 0, 3, 0, UNI_vs_values_index } /* vs= */,
- { 22, 3139, 0, 10, 0, UNI_DEVA } /* devanagari */,
- { 36, 3283, 3, 18, 1, -UNI_IDSB } /* idsbinaryoperator=f */,
- { 0, 185, 7016, 2, 11, UNI_HMNG } /* ispahawhhmong */,
- { 6, 8973, 1295, 6, 25, UNI_SUPERANDSUB } /* block=superscriptsandsubscripts */,
- { 5, 8973, 6207, 7, 11, UNI_CYRILLICEXTB } /* block=cyrillicextb */,
- { 133, 7360, 4010, 10, 16, UNI_LB__CP } /* linebreak=closeparenthesis */,
- { 4, 9063, 0, 5, 0, UNI_EPRES } /* epres */,
- { 9, 7297, 6303, 3, 5, UNI_HEBR } /* ishebrew */,
- { 76, 21, 5326, 2, 14, UNI_LATINEXTE } /* inlatinextendede */,
- { 2, 7300, 1026, 10, 2, -UNI_DIA } /* diacritic=no */,
- { 0, 7580, 5830, 10, 5, UNI_WB__EB } /* wordbreak=ebase */,
- { 4, 8973, 3265, 6, 18, UNI_GEORGIANSUP } /* block=georgiansupplement */,
- { 3, 9691, 3809, 4, 17, UNI_LETTERLIKESYMBOLS } /* blk=letterlikesymbols */,
- { 0, 9476, 8468, 3, 4, UNI_SC__TAGB } /* sc=tagb */,
- { 0, 2553, 10355, 20, 3, UNI_TERM } /* terminalpunctuation=yes */,
- { 4, 7218, 3979, 3, 10, UNI_BOPOMOFOEXT } /* inbopomofoext */,
- { 168, 10508, 10100, 3, 3, UNI_XSUX } /* isxsux */,
- { 2, 7230, 4549, 10, 15, UNI_BC__CS } /* bidiclass=commonseparator */,
- { 1, 9476, 8859, 3, 7, UNI_TIBT } /* sc=tibetan */,
- { 3, 1418, 8901, 24, 3, UNI_CCC__216 } /* canonicalcombiningclass=216 */,
- { 0, 9711, 18, 4, 1, UNI_CCC__R } /* ccc=r */,
- { 0, 10244, 5581, 3, 11, UNI_MC } /* gc=spacingmark */,
- { 1, 9087, 10355, 6, 3, UNI_JOINC } /* joinc=yes */,
- { 0, 2248, 4411, 3, 15, UNI_SYRIACSUP } /* insyriacsupplement */,
- { 0, 8420, 0, 8, 0, UNI_MAHJ } /* mahajani */,
- { 0, 8973, 4410, 6, 9, UNI_SYRIACSUP } /* block=syriacsup */,
- { 1, 340, 0, 2, 0, UNI_LO } /* lo */,
- { 13, 184, 0, 34, 0, UNI_MISCPICTOGRAPHS } /* miscellaneoussymbolsandpictographs */,
- { 0, 9469, 0, 5, 0, UNI_inpc_values_index } /* inpc= */,
- { 0, 6158, 36, 12, 1, UNI_BIDIC } /* bidicontrol=t */,
- { 1, 1418, 6774, 24, 11, UNI_CCC__DB } /* canonicalcombiningclass=doublebelow */,
- { 0, 9691, 2269, 4, 21, UNI_MEETEIMAYEKEXT } /* blk=meeteimayekextensions */,
- { 0, 3067, 0, 18, 0, UNI_HALFMARKS } /* combininghalfmarks */,
- { 2, 10553, 2937, 3, 3, UNI_SUND } /* issund */,
- { 264, 3877, 10099, 17, 4, UNI_XSUX } /* scriptextensions=xsux */,
- { 7, 4074, 10388, 16, 2, UNI_CASEDLETTER } /* generalcategory=l& */,
- { 18, 9979, 7853, 4, 9, UNI_PAUC } /* scx=paucinhau */,
- { 0, 8887, 10355, 7, 3, UNI_XPOSIXSPACE } /* wspace=yes */,
- { 4, 4744, 7692, 16, 8, UNI_IDENTIFIERTYPE__INCLUSION } /* identifiertype=inclusion */,
- { 256, 9711, 10151, 4, 3, UNI_CCC__L } /* ccc=224 */,
- { 0, 8260, 0, 8, 0, UNI_ARMN } /* armenian */,
+ { 0, 9979, 10031, 4, 4, UNI_TFNG } /* scx=tfng */,
+ { 1, 185, 2165, 3, 7, UNI_CYRL } /* iscyrillic */,
+ { 0, 1418, 2473, 24, 4, UNI_CCC__L } /* canonicalcombiningclass=left */,
+ { 1, 8973, 7433, 6, 7, UNI_INSOGDIAN } /* block=sogdian */,
+ { 3, 9549, 1, 5, 1, -UNI_XIDS } /* xids=n */,
+ { 0, 9691, 1655, 4, 6, UNI_INHANGUL } /* blk=hangul */,
+ { 3, 3445, 0, 4, 0, UNI_RUMI } /* rumi */,
+ { 29, 6083, 8937, 13, 4, UNI_NV__7000 } /* numericvalue=7000 */,
+ { 3, 8881, 7553, 3, 7, UNI_ASSIGNED } /* isassigned */,
+ { 12, 3283, 10355, 18, 3, UNI_IDSB } /* idsbinaryoperator=yes */,
+ { 0, 7230, 2473, 10, 11, UNI_BC__L } /* bidiclass=lefttoright */,
+ { 128, 10352, 10235, 3, 3, UNI_WB__EB } /* wb=ebg */,
+ { 7, 9763, 912, 4, 1, UNI_GCB__V } /* gcb=v */,
+ { 1, 8768, 1, 7, 1, -UNI_PATSYN } /* patsyn=n */,
+ { 1, 4442, 0, 9, 0, UNI_TANGUTSUP } /* tangutsup */,
+ { 0, 8782, 10019, 7, 4, UNI_TALU } /* script=talu */,
+ { 5, 9476, 494, 3, 3, UNI_SC__HAN } /* sc=han */,
+ { 2, 9177, 3, 6, 1, -UNI_QMARK } /* qmark=f */,
+ { 64, 9691, 510, 4, 30, UNI_CJKEXTA } /* blk=cjkunifiedideographsextensiona */,
+ { 45, 2248, 2937, 3, 18, UNI_SUNDANESESUP } /* insundanesesupplement */,
+ { 11, 10253, 752, 3, 2, UNI_LB__CL } /* lb=cl */,
+ { 0, 10232, 1205, 3, 9, UNI_EA__F } /* ea=fullwidth */,
+ { 2, 952, 0, 28, 0, UNI_VSSUP } /* variationselectorssupplement */,
+ { 0, 9464, 10055, 5, 4, UNI_IDST } /* idst=true */,
+ { 0, 6083, 8228, 13, 8, UNI_NV__1_SLASH_12 } /* numericvalue=8.33e-02 */,
+ { 0, 6340, 2165, 3, 10, UNI_CYRILLICSUP } /* incyrillicsup */,
+ { 1, 6697, 36, 11, 1, UNI_XPOSIXALPHA } /* alphabetic=t */,
+ { 33, 9117, 0, 6, 0, UNI_LEPC } /* lepcha */,
+ { 5, 9979, 7790, 4, 9, UNI_TALU } /* scx=newtailue */,
+ { 2, 10247, 5564, 3, 14, UNI_JG__NOJOININGGROUP } /* jg=nojoininggroup */,
+ { 17, 6741, 1, 11, 1, -UNI_DEP } /* deprecated=n */,
+ { 0, 3391, 26, 18, 1, UNI__PERL_PATWS } /* patternwhitespace=y */,
+ { 0, 185, 3978, 2, 4, UNI_BOPO } /* isbopo */,
+ { 3, 9544, 1026, 5, 2, -UNI_XIDC } /* xidc=no */,
+ { 0, 1553, 3301, 9, 18, UNI_PI } /* category=initialpunctuation */,
+ { 0, 1595, 0, 14, 0, UNI_MUSIC } /* musicalsymbols */,
+ { 1, 9731, 9454, 4, 5, -UNI_CWT } /* cwt=false */,
+ { 0, 185, 7718, 2, 9, UNI_LATINEXTB } /* islatinextb */,
+ { 11, 10247, 2247, 3, 3, UNI_JG__AIN } /* jg=ain */,
+ { 1, 1935, 0, 11, 0, UNI_NUMBERFORMS } /* numberforms */,
+ { 32, 9691, 568, 4, 2, UNI_NB } /* blk=nb */,
+ { 140, 7433, 0, 4, 0, UNI_SOGD } /* sogd */,
+ { 127, 9474, 4579, 5, 15, UNI_INSC__CONSONANTMEDIAL } /* insc=consonantmedial */,
+ { 3, 9057, 36, 6, 1, UNI_EMOJI } /* emoji=t */,
+ { 0, 4074, 4999, 16, 15, UNI_TITLE } /* generalcategory=titlecaseletter */,
+ { 9, 185, 1219, 2, 8, UNI_KANA } /* iskatakana */,
+ { 2, 7460, 10190, 10, 3, UNI_IN__5_DOT_2 } /* presentin=5.2 */,
+ { 0, 9859, 0, 4, 0, UNI_MERC } /* merc */,
+ { 1, 9177, 1026, 6, 2, -UNI_QMARK } /* qmark=no */,
+ { 4, 7580, 8698, 10, 7, UNI_WB__NL } /* wordbreak=newline */,
+ { 64, 9190, 1026, 5, 2, -UNI_TERM } /* term=no */,
+ { 0, 10280, 36, 3, 1, UNI_RI } /* ri=t */,
+ { 68, 3877, 4534, 17, 7, UNI_BRAI } /* scriptextensions=braille */,
+ { 0, 2056, 1, 22, 1, -UNI__PERL_NCHAR } /* noncharactercodepoint=n */,
+ { 0, 1442, 0, 24, 0, UNI_CJKSYMBOLS } /* cjksymbolsandpunctuation */,
+ { 3, 9711, 8059, 4, 2, UNI_CCC__33 } /* ccc=33 */,
+ { 1, 9476, 7433, 3, 7, UNI_SC__SOGD } /* sc=sogdian */,
+ { 2, 7360, 10394, 10, 2, UNI_LB__XX } /* linebreak=xx */,
+ { 1, 7580, 5068, 10, 2, UNI_WB__SQ } /* wordbreak=sq */,
+ { 0, 9647, 7611, 4, 1, UNI_AGE__5 } /* age=5 */,
+ { 7, 9691, 5634, 4, 14, UNI_INPSALTERPAHLAVI } /* blk=psalterpahlavi */,
+ { 8, 3877, 1223, 17, 4, UNI_KANA } /* scriptextensions=kana */,
+ { 2, 8973, 1655, 6, 6, UNI_INHANGUL } /* block=hangul */,
+ { 0, 6083, 8204, 13, 8, UNI_NV__3_SLASH_4 } /* numericvalue=7.50e-01 */,
+ { 0, 8782, 6972, 7, 4, UNI_SC__NAND } /* script=nand */,
+ { 4, 10268, 10360, 3, 2, UNI_NV__39 } /* nv=39 */,
+ { 0, 8782, 7808, 7, 9, UNI_ITAL } /* script=olditalic */,
+ { 2, 8782, 9117, 7, 4, UNI_LEPC } /* script=lepc */,
+ { 2, 2553, 10056, 21, 3, UNI_TERM } /* terminalpunctuation=true */,
+ { 0, 8973, 251, 6, 33, UNI_MISCMATHSYMBOLSA } /* block=miscellaneousmathematicalsymbolsa */,
+ { 0, 7230, 6134, 10, 12, UNI_BC__AL } /* bidiclass=arabicletter */,
+ { 7, 5662, 50, 14, 2, UNI_SB__AT } /* sentencebreak=at */,
+ { 2, 5662, 4346, 14, 5, UNI_SB__XX } /* sentencebreak=other */,
+ { 53, 8967, 26, 6, 1, UNI_BIDIM } /* bidim=y */,
+ { 1, 8782, 3103, 7, 4, UNI_SC__COPT } /* script=copt */,
+ { 0, 2003, 0, 10, 0, UNI_L } /* category=l */,
+ { 0, 3398, 26, 11, 1, UNI_XPOSIXSPACE } /* whitespace=y */,
+ { 2, 7460, 10075, 10, 4, UNI_IN__13 } /* presentin=v130 */,
+ { 176, 10247, 5466, 3, 14, UNI_JG__MANICHAEANQOPH } /* jg=manichaeanqoph */,
+ { 0, 1034, 0, 11, 0, UNI_ENCLOSEDCJK } /* enclosedcjk */,
+ { 6, 10268, 5733, 3, 1, UNI_NV__0 } /* nv=0 */,
+ { 0, 6083, 8046, 13, 2, UNI_NV__13 } /* numericvalue=13 */,
+ { 1, 7230, 3373, 10, 18, UNI_BC__B } /* bidiclass=paragraphseparator */,
+ { 1, 10268, 9635, 3, 4, UNI_NV__5_SLASH_12 } /* nv=5/12 */,
+ { 0, 5875, 7880, 13, 9, UNI_JG__SYRIACWAW } /* joininggroup=syriacwaw */,
+ { 2, 9214, 26, 5, 1, UNI_IDEO } /* ideo=y */,
+ { 1, 9979, 7434, 5, 6, UNI_SOGD } /* scx=sogdian */,
+ { 33, 9691, 2433, 4, 10, UNI_INGLAGOLITIC } /* blk=glagolitic */,
+ { 4, 185, 3707, 2, 11, UNI_ETHIOPICEXT } /* isethiopicext */,
+ { 0, 3877, 9183, 17, 6, UNI_RJNG } /* scriptextensions=rejang */,
+ { 0, 9691, 2164, 4, 8, UNI_INCYRILLIC } /* blk=cyrillic */,
+ { 1, 3409, 0, 18, 0, UNI_ri_values_index } /* regionalindicator= */,
+ { 1, 5581, 0, 11, 0, UNI_MC } /* spacingmark */,
+ { 1, 4504, 0, 8, 0, UNI_BAMUMSUP } /* bamumsup */,
+ { 0, 9691, 8492, 4, 7, UNI_UCASEXT } /* blk=ucasext */,
+ { 0, 0, 0, 43, 0, UNI_UCASEXTA } /* unifiedcanadianaboriginalsyllabicsextendeda */,
+ { 0, 9979, 7811, 4, 4, UNI_ITAL } /* scx=ital */,
+ { 55, 7230, 3398, 10, 10, UNI_BC__WS } /* bidiclass=whitespace */,
+ { 24, 8973, 8500, 6, 8, UNI_INUGARITIC } /* block=ugaritic */,
+ { 1, 6675, 36, 11, 1, UNI_IDC } /* idcontinue=t */,
+ { 0, 8782, 9069, 7, 6, UNI_GOTH } /* script=gothic */,
+ { 0, 9691, 6230, 4, 12, UNI_ETHIOPICEXTA } /* blk=ethiopicexta */,
+ { 0, 9691, 7530, 4, 10, UNI_SUPARROWSB } /* blk=suparrowsb */,
+ { 0, 9979, 8614, 4, 4, UNI_ELYM } /* scx=elym */,
+ { 0, 8973, 4924, 6, 15, UNI_NARB } /* block=oldnortharabian */,
+ { 1, 185, 6741, 2, 10, UNI_DEP } /* isdeprecated */,
+ { 170, 185, 5758, 2, 12, UNI_BIDIM } /* isbidimirrored */,
+ { 0, 4939, 0, 15, 0, UNI_SARB } /* oldsoutharabian */,
+ { 0, 7360, 496, 10, 2, UNI_LB__NU } /* linebreak=nu */,
+ { 0, 8973, 7190, 6, 10, UNI_ARABICEXTA } /* block=arabicexta */,
+ { 32, 8973, 6961, 6, 11, UNI_MYANMAREXTB } /* block=myanmarextb */,
+ { 0, 4330, 0, 16, 0, UNI_MYANMAREXTB } /* myanmarextendedb */,
+ { 0, 2248, 4411, 3, 5, UNI_INSYRIAC } /* insyriac */,
+ { 3, 9763, 263, 4, 2, UNI_GCB__SM } /* gcb=sm */,
+ { 0, 185, 9117, 2, 4, UNI_LEPC } /* islepc */,
+ { 4, 8973, 4625, 7, 14, UNI_CURRENCYSYMBOLS } /* block=currencysymbols */,
+ { 0, 3877, 7430, 17, 10, UNI_SOGO } /* scriptextensions=oldsogdian */,
+ { 5, 185, 8559, 3, 6, UNI_CJKEXTC } /* iscjkextc */,
+ { 1, 3403, 0, 6, 0, UNI_wspace_values_index } /* space= */,
+ { 7, 3877, 8656, 17, 7, UNI_KALI } /* scriptextensions=kayahli */,
+ { 0, 9171, 9454, 6, 5, -UNI__PERL_PATWS } /* patws=false */,
+ { 0, 9979, 9237, 4, 4, UNI_YEZI } /* scx=yezi */,
+ { 64, 8705, 48, 7, 1, UNI_NFCQC__M } /* nfkcqc=m */,
+ { 9, 7580, 139, 10, 2, UNI_WB__FO } /* wordbreak=fo */,
+ { 18, 9647, 10304, 4, 3, UNI_AGE__3_DOT_1 } /* age=v31 */,
+ { 19, 2003, 4776, 11, 13, UNI_LOWERCASELETTER } /* category=lowercaseletter */,
+ { 0, 1189, 8846, 3, 6, UNI_INTAIVIET } /* intaiviet */,
+ { 11, 9691, 8719, 4, 7, UNI_NB } /* blk=noblock */,
+ { 1, 10247, 6686, 3, 11, UNI_JG__AFRICANNOON } /* jg=africannoon */,
+ { 0, 7360, 5144, 10, 14, UNI_LB__SA } /* linebreak=complexcontext */,
+ { 0, 9719, 0, 4, 0, UNI_CPMN } /* cpmn */,
+ { 1, 8621, 0, 7, 0, UNI_GRAN } /* grantha */,
+ { 1, 8782, 8614, 7, 7, UNI_ELYM } /* script=elymaic */,
+ { 0, 10352, 8698, 3, 7, UNI_WB__NL } /* wb=newline */,
+ { 2, 9691, 2164, 4, 21, UNI_CYRILLICSUP } /* blk=cyrillicsupplementary */,
+ { 0, 10247, 4266, 3, 16, UNI_JG__MANICHAEANTWENTY } /* jg=manichaeantwenty */,
+ { 1, 9087, 36, 6, 1, UNI_JOINC } /* joinc=t */,
+ { 2, 3877, 9963, 17, 4, UNI_ROHG } /* scriptextensions=rohg */,
+ { 23, 10217, 3229, 3, 18, UNI_BC__FSI } /* bc=firststrongisolate */,
+ { 3, 10247, 5992, 3, 13, UNI_JG__MANICHAEANONE } /* jg=manichaeanone */,
+ { 0, 1747, 0, 23, 0, UNI_ZNAMENNYMUSIC } /* znamennymusicalnotation */,
+ { 162, 185, 8300, 2, 4, UNI_DUPL } /* isdupl */,
+ { 4, 8782, 8621, 7, 7, UNI_SC__GRAN } /* script=grantha */,
+ { 208, 1007, 0, 27, 0, UNI_ANCIENTGREEKMUSIC } /* ancientgreekmusicalnotation */,
+ { 1, 0, 0, 34, 0, UNI_UCAS } /* unifiedcanadianaboriginalsyllabics */,
+ { 0, 8628, 36, 7, 1, UNI_GRBASE } /* grbase=t */,
+ { 1, 8782, 8276, 7, 8, UNI_BALI } /* script=balinese */,
+ { 73, 185, 8691, 2, 7, UNI_MULT } /* ismultani */,
+ { 0, 8973, 1443, 7, 9, UNI_CJKSYMBOLS } /* block=cjksymbols */,
+ { 6, 3391, 10055, 18, 4, UNI__PERL_PATWS } /* patternwhitespace=true */,
+ { 1, 6242, 0, 12, 0, UNI_ETHIOPICEXTB } /* ethiopicextb */,
+ { 1, 7460, 7975, 10, 1, UNI_IN__6 } /* presentin=6 */,
+ { 1, 9476, 10083, 3, 3, UNI_VAI } /* sc=vai */,
+ { 2, 6590, 0, 12, 0, UNI_HUNG } /* oldhungarian */,
+ { 3, 9979, 9947, 4, 4, UNI_COPT } /* scx=qaac */,
+ { 0, 9803, 6895, 4, 11, UNI_LB__H3 } /* hst=lvtsyllable */,
+ { 0, 8854, 2333, 3, 20, UNI_YIJING } /* inyijinghexagramsymbols */,
+ { 7, 10349, 10355, 3, 3, UNI_VS } /* vs=yes */,
+ { 0, 8973, 8300, 6, 8, UNI_INDUPLOYAN } /* block=duployan */,
+ { 0, 7467, 7995, 3, 4, UNI_IN__12 } /* in=12.0 */,
+ { 1, 46, 0, 2, 0, UNI_CO } /* co */,
+ { 7, 750, 0, 21, 0, UNI_ENCLOSEDALPHANUM } /* enclosedalphanumerics */,
+ { 1, 8973, 5270, 6, 14, UNI_KANGXI } /* block=kangxiradicals */,
+ { 7, 5522, 0, 14, 0, UNI_SK } /* modifiersymbol */,
+ { 81, 185, 5059, 2, 15, UNI_ZANB } /* iszanabazarsquare */,
+ { 112, 185, 9430, 3, 3, UNI_CWCF } /* iscwcf */,
+ { 47, 9979, 7700, 4, 9, UNI_QAAI } /* scx=inherited */,
+ { 3, 5130, 0, 14, 0, UNI_CJKCOMPATFORMS } /* cjkcompatforms */,
+ { 27, 8782, 9807, 7, 4, UNI_SC__KALI } /* script=kali */,
+ { 0, 9691, 184, 4, 20, UNI_MISCSYMBOLS } /* blk=miscellaneoussymbols */,
+ { 1, 3877, 7790, 17, 9, UNI_TALU } /* scriptextensions=newtailue */,
+ { 30, 5830, 10355, 6, 3, UNI_EBASE } /* ebase=yes */,
+ { 0, 7580, 2468, 10, 2, UNI_LB__HL } /* wordbreak=hl */,
+ { 12, 8782, 4190, 8, 3, UNI_SARB } /* script=sarb */,
+ { 2, 9469, 2573, 5, 12, UNI_INPC__TOPANDBOTTOM } /* inpc=topandbottom */,
+ { 0, 8973, 3193, 6, 8, UNI_INETHIOPIC } /* block=ethiopic */,
+ { 11, 6109, 0, 13, 0, UNI_VERTICALFORMS } /* verticalforms */,
+ { 0, 1418, 8988, 24, 3, UNI_CCC__103 } /* canonicalcombiningclass=103 */,
+ { 0, 3877, 2841, 17, 4, UNI_MERO } /* scriptextensions=mero */,
+ { 0, 8702, 752, 4, 14, UNI_ENCLOSEDALPHANUM } /* inenclosedalphanum */,
+ { 4, 9711, 8211, 4, 2, UNI_CCC__18 } /* ccc=18 */,
+ { 9, 9549, 36, 5, 1, UNI_XIDS } /* xids=t */,
+ { 17, 2553, 1, 20, 1, -UNI_TERM } /* terminalpunctuation=n */,
{ 0, 8973, 8614, 6, 7, UNI_INELYMAIC } /* block=elymaic */,
- { 3, 8782, 8866, 7, 4, UNI_SC__TIRH } /* script=tirh */,
- { 6, 8782, 9534, 7, 5, UNI_SC__TAKR } /* script=takri */,
- { 256, 185, 750, 2, 30, UNI_ENCLOSEDALPHANUMSUP } /* isenclosedalphanumericsupplement */,
- { 7, 8782, 3139, 7, 4, UNI_SC__DEVA } /* script=deva */,
- { 0, 7467, 10313, 3, 3, UNI_IN__4_DOT_1 } /* in=v41 */,
- { 0, 8973, 1946, 6, 12, UNI_DIACRITICALS } /* block=diacriticals */,
- { 1, 10244, 6132, 3, 2, UNI_PF } /* gc=pf */,
- { 1, 4074, 1026, 16, 2, UNI_NO } /* generalcategory=no */,
- { 8, 2557, 6125, 5, 9, UNI_ALPHABETICPF } /* inalphabeticpf */,
- { 1, 3877, 7018, 18, 3, UNI_SHAW } /* scriptextensions=shaw */,
- { 0, 10253, 126, 3, 2, UNI_LB__CR } /* lb=cr */,
- { 0, 2003, 24, 10, 1, UNI_LOWERCASELETTER } /* category=ll */,
- { 8, 9731, 0, 4, 0, UNI_cwt_values_index } /* cwt= */,
+ { 0, 10226, 0, 3, 0, UNI_di_values_index } /* di= */,
+ { 0, 8782, 2248, 7, 21, UNI_PRTI } /* script=inscriptionalparthian */,
+ { 17, 5088, 0, 14, 0, UNI_ahex_values_index } /* asciihexdigit= */,
+ { 0, 9691, 3067, 4, 18, UNI_HALFMARKS } /* blk=combininghalfmarks */,
+ { 4, 5116, 9454, 14, 5, -UNI_CI } /* caseignorable=false */,
+ { 0, 21, 5075, 3, 13, UNI_ANCIENTSYMBOLS } /* inancientsymbols */,
+ { 8, 9476, 8614, 3, 7, UNI_ELYM } /* sc=elymaic */,
+ { 1, 185, 5888, 2, 13, UNI_KANAEXTA } /* iskanaextendeda */,
+ { 1, 6937, 255, 6, 29, UNI_MISCMATHSYMBOLSA } /* inmiscellaneousmathematicalsymbolsa */,
+ { 50, 4074, 5522, 16, 14, UNI_SK } /* generalcategory=modifiersymbol */,
+ { 0, 9545, 9454, 4, 5, -UNI_IDC } /* idc=false */,
+ { 1, 3877, 3193, 17, 4, UNI_ETHI } /* scriptextensions=ethi */,
+ { 3, 2164, 0, 8, 0, UNI_CYRL } /* cyrillic */,
+ { 8, 9476, 9534, 3, 4, UNI_SC__TAKR } /* sc=takr */,
+ { 0, 9476, 4759, 3, 15, UNI_ARMI } /* sc=imperialaramaic */,
+ { 1, 9476, 7570, 3, 4, UNI_WARA } /* sc=wara */,
+ { 0, 3877, 8356, 17, 8, UNI_HIRA } /* scriptextensions=hiragana */,
+ { 0, 1418, 24, 24, 1, UNI_CCC__L } /* canonicalcombiningclass=l */,
+ { 0, 9979, 8979, 4, 6, UNI_CARI } /* scx=carian */,
+ { 173, 5550, 26, 14, 1, UNI_NFDQC__Y } /* nfdquickcheck=y */,
+ { 4, 8881, 5803, 3, 4, UNI_XPOSIXALNUM } /* isalnum */,
+ { 5, 6340, 1443, 3, 9, UNI_CJKSYMBOLS } /* incjksymbols */,
+ { 10, 8973, 4314, 6, 7, UNI_INMYANMAR } /* block=myanmar */,
+ { 130, 185, 7530, 2, 10, UNI_SUPARROWSB } /* issuparrowsb */,
+ { 10, 1836, 10355, 22, 3, UNI_CWL } /* changeswhenlowercased=yes */,
+ { 5, 10268, 10204, 3, 2, UNI_NV__37 } /* nv=37 */,
+ { 35, 8973, 3265, 6, 8, UNI_INGEORGIAN } /* block=georgian */,
+ { 1, 9979, 10119, 4, 4, UNI_ZYYY } /* scx=zyyy */,
+ { 37, 185, 8621, 2, 7, UNI_GRAN } /* isgrantha */,
+ { 34, 7460, 10307, 10, 3, UNI_IN__3_DOT_2 } /* presentin=v32 */,
+ { 1, 4972, 4229, 3, 3, UNI_TALE } /* istale */,
+ { 4, 9159, 10355, 6, 3, UNI_NFDQC__Y } /* nfdqc=yes */,
+ { 2, 8782, 4759, 7, 15, UNI_ARMI } /* script=imperialaramaic */,
+ { 56, 4074, 728, 16, 2, UNI_MN } /* generalcategory=mn */,
+ { 0, 2206, 5830, 21, 5, UNI_WB__EB } /* graphemeclusterbreak=ebase */,
+ { 0, 2311, 0, 7, 0, UNI_SINH } /* sinhala */,
+ { 0, 185, 8670, 2, 4, UNI_MAKA } /* ismaka */,
+ { 13, 4074, 10400, 16, 2, UNI_ZS } /* generalcategory=zs */,
+ { 0, 3877, 6518, 17, 4, UNI_MEND } /* scriptextensions=mend */,
+ { 1, 6338, 36, 12, 1, UNI_JOINC } /* joincontrol=t */,
+ { 3, 8782, 9482, 7, 4, UNI_PHLI } /* script=phli */,
+ { 0, 1592, 7675, 4, 7, UNI_EMOTICONS } /* inemoticons */,
+ { 1, 9476, 8537, 3, 7, UNI_SC__BENG } /* sc=bengali */,
+ { 0, 118, 416, 3, 31, UNI_INIDC } /* inideographicdescriptioncharacters */,
+ { 0, 7230, 3427, 10, 18, UNI_BC__RLI } /* bidiclass=righttoleftisolate */,
+ { 9, 5312, 0, 14, 0, UNI_LATINEXTD } /* latinextendedd */,
+ { 0, 3877, 10103, 17, 4, UNI_YI } /* scriptextensions=yiii */,
+ { 93, 9711, 9407, 4, 2, UNI_CCC__35 } /* ccc=35 */,
+ { 32, 185, 1034, 2, 11, UNI_ENCLOSEDCJK } /* isenclosedcjk */,
+ { 0, 8782, 7434, 8, 3, UNI_SC__SOGD } /* script=sogd */,
+ { 0, 9550, 10355, 4, 3, UNI_IDS } /* ids=yes */,
+ { 0, 9647, 10190, 4, 3, UNI_AGE__5_DOT_2 } /* age=5.2 */,
+ { 4, 4684, 9141, 15, 6, UNI_EA__NA } /* eastasianwidth=narrow */,
+ { 3, 10268, 7916, 3, 8, UNI_NV__1_SLASH_10 } /* nv=1.00e-01 */,
+ { 0, 1869, 0, 5, 0, UNI_TITLE } /* title */,
+ { 64, 9476, 8873, 3, 7, UNI_ZZZZ } /* sc=unknown */,
+ { 0, 187, 0, 2, 0, UNI_CE } /* ce */,
+ { 2, 9545, 10055, 4, 4, UNI_IDC } /* idc=true */,
+ { 0, 185, 9815, 2, 4, UNI_KITS } /* iskits */,
+ { 0, 5662, 1847, 14, 5, UNI_SB__LO } /* sentencebreak=lower */,
+ { 5, 9735, 9454, 4, 5, -UNI_CWU } /* cwu=false */,
+ { 144, 2012, 1, 22, 1, -UNI_LOE } /* logicalorderexception=n */,
+ { 1, 8782, 7811, 7, 4, UNI_ITAL } /* script=ital */,
+ { 6, 3934, 0, 11, 0, UNI_SGNW } /* signwriting */,
+ { 0, 3877, 10043, 17, 4, UNI_TIBT } /* scriptextensions=tibt */,
+ { 3, 4984, 0, 8, 0, UNI_TAMILSUP } /* tamilsup */,
+ { 33, 8973, 909, 6, 10, UNI_PUA } /* block=privateuse */,
+ { 0, 9476, 9294, 3, 5, UNI_SC__BUHD } /* sc=buhid */,
+ { 0, 7700, 6304, 4, 4, UNI_INHEBREW } /* inhebrew */,
+ { 3, 4463, 3141, 4, 11, UNI_DEVANAGARIEXT } /* indevanagariext */,
+ { 28, 9476, 3103, 3, 6, UNI_SC__COPT } /* sc=coptic */,
+ { 1, 3877, 4759, 17, 15, UNI_ARMI } /* scriptextensions=imperialaramaic */,
+ { 0, 185, 10390, 2, 2, UNI_CASEDLETTER } /* isl_ */,
+ { 34, 3877, 9767, 17, 4, UNI_GONG } /* scriptextensions=gong */,
+ { 0, 3448, 1, 3, 33, UNI_UCAS } /* inunifiedcanadianaboriginalsyllabics */,
+ { 5, 10253, 0, 3, 0, UNI_lb_values_index } /* lb= */,
+ { 0, 9691, 8670, 4, 7, UNI_INMAKASAR } /* blk=makasar */,
+ { 1, 9045, 9454, 6, 5, -UNI_CWKCF } /* cwkcf=false */,
+ { 1, 9476, 7500, 3, 4, UNI_SAUR } /* sc=saur */,
+ { 15, 9727, 26, 4, 1, UNI_CWL } /* cwl=y */,
+ { 0, 7467, 10175, 3, 3, UNI_IN__3_DOT_2 } /* in=3.2 */,
+ { 3, 8593, 10355, 7, 3, UNI_COMPEX } /* compex=yes */,
+ { 0, 185, 2269, 2, 11, UNI_MTEI } /* ismeeteimayek */,
+ { 0, 9979, 4924, 4, 15, UNI_NARB } /* scx=oldnortharabian */,
+ { 0, 9691, 7862, 4, 9, UNI_INSAMARITAN } /* blk=samaritan */,
+ { 0, 2269, 0, 11, 0, UNI_MTEI } /* meeteimayek */,
+ { 0, 2584, 0, 4, 0, UNI_MAND } /* mand */,
+ { 64, 6529, 7818, 3, 8, UNI_INOLDPERMIC } /* inoldpermic */,
+ { 8, 2185, 10355, 21, 3, UNI_EXTPICT } /* extendedpictographic=yes */,
+ { 2, 185, 5578, 2, 14, UNI_MN } /* isnonspacingmark */,
+ { 31, 9979, 9887, 4, 4, UNI_NBAT } /* scx=nbat */,
+ { 4, 3403, 10403, 5, 4, UNI_XPOSIXSPACE } /* spaceperl */,
+ { 0, 9461, 126, 3, 2, UNI_LB__CR } /* sb=cr */,
+ { 9, 8973, 4282, 6, 16, UNI_MISCMATHSYMBOLSA } /* block=miscmathsymbolsa */,
+ { 80, 10247, 7177, 3, 3, UNI_JG__FEH } /* jg=feh */,
+ { 4, 5875, 4804, 13, 15, UNI_JG__MANICHAEANGIMEL } /* joininggroup=manichaeangimel */,
+ { 48, 10247, 2651, 3, 19, UNI_JG__BURUSHASKIYEHBARREE } /* jg=burushaskiyehbarree */,
+ { 0, 6675, 9454, 11, 5, -UNI_IDC } /* idcontinue=false */,
+ { 19, 185, 3175, 2, 17, UNI_EPRES } /* isemojipresentation */,
+ { 2, 10511, 9424, 5, 5, UNI_POSIXCNTRL } /* posixcntrl */,
+ { 153, 185, 631, 3, 29, UNI_CJKEXTE } /* iscjkunifiedideographsextensione */,
+ { 2, 21, 5256, 2, 7, UNI_KANASUP } /* inkanasup */,
{ 0, 9691, 2746, 4, 10, UNI_JAMO } /* blk=hanguljamo */,
- { 92, 2206, 8313, 21, 3, UNI_WB__EB } /* graphemeclusterbreak=gaz */,
- { 5, 9476, 9923, 3, 4, UNI_SC__OUGR } /* sc=ougr */,
- { 67, 10099, 0, 4, 0, UNI_XSUX } /* xsux */,
- { 8, 9177, 9454, 6, 5, -UNI_QMARK } /* qmark=false */,
- { 0, 9979, 8804, 5, 3, UNI_SIDD } /* scx=sidd */,
- { 8, 10247, 5966, 3, 13, UNI_JG__MANICHAEANMEM } /* jg=manichaeanmem */,
- { 0, 9691, 9539, 4, 5, UNI_VSSUP } /* blk=vssup */,
- { 0, 8973, 4729, 6, 15, UNI_INHANGUL } /* block=hangulsyllables */,
- { 1, 185, 150, 3, 34, UNI_DIACRITICALSSUP } /* iscombiningdiacriticalmarkssupplement */,
- { 28, 9647, 10304, 4, 3, UNI_AGE__3_DOT_1 } /* age=v31 */,
- { 1, 2185, 1, 21, 1, -UNI_EXTPICT } /* extendedpictographic=n */,
- { 1, 10268, 9631, 3, 4, UNI_NV__3_SLASH_80 } /* nv=3/80 */,
- { 0, 21, 1219, 2, 8, UNI_INKATAKANA } /* inkatakana */,
- { 0, 8973, 4984, 6, 5, UNI_INTAMIL } /* block=tamil */,
- { 0, 8782, 8476, 7, 8, UNI_TFNG } /* script=tifinagh */,
- { 32, 9711, 9340, 5, 4, UNI_CCC__22 } /* ccc=ccc22 */,
- { 4, 5340, 0, 14, 0, UNI_LATINEXTF } /* latinextendedf */,
- { 5, 1990, 4458, 22, 16, UNI_INSC__VOWELINDEPENDENT } /* indicsyllabiccategory=vowelindependent */,
- { 0, 7391, 9, 4, 16, UNI_CANS } /* iscanadianaboriginal */,
- { 3, 8782, 7570, 7, 10, UNI_WARA } /* script=warangciti */,
- { 0, 5875, 9855, 13, 4, UNI_JG__MEEM } /* joininggroup=meem */,
- { 2, 8973, 8566, 7, 6, UNI_CJKEXTD } /* block=cjkextd */,
- { 5, 7360, 496, 10, 7, UNI_LB__NU } /* linebreak=numeric */,
- { 2, 10229, 436, 4, 2, UNI_DT__ENC } /* dt=enc */,
- { 99, 9189, 3, 6, 1, -UNI_STERM } /* sterm=f */,
- { 87, 10244, 5914, 3, 13, UNI_ZL } /* gc=lineseparator */,
- { 0, 2185, 0, 20, 0, UNI_EXTPICT } /* extendedpictographic */,
- { 6, 8973, 7016, 6, 11, UNI_INPAHAWHHMONG } /* block=pahawhhmong */,
- { 2, 8782, 9683, 7, 4, UNI_BATK } /* script=batk */,
- { 256, 5836, 0, 13, 0, UNI_GREEKEXT } /* greekextended */,
- { 0, 3877, 2841, 17, 4, UNI_MERO } /* scriptextensions=mero */,
+ { 0, 10283, 0, 3, 0, UNI_sd_values_index } /* sd= */,
+ { 1, 9464, 0, 5, 0, UNI_idst_values_index } /* idst= */,
+ { 1, 9711, 41, 4, 2, UNI_CCC__DA } /* ccc=da */,
+ { 0, 10268, 5732, 3, 4, UNI_NV__1000 } /* nv=1000 */,
+ { 0, 9979, 7260, 4, 10, UNI_CHRS } /* scx=chorasmian */,
+ { 0, 9711, 9422, 4, 2, UNI_CCC__91 } /* ccc=91 */,
+ { 0, 3877, 5227, 17, 4, UNI_CHAM } /* scriptextensions=cham */,
+ { 0, 10268, 9249, 3, 5, UNI_NV__1_SLASH_160 } /* nv=1/160 */,
+ { 0, 5875, 757, 13, 3, UNI_JG__DAL } /* joininggroup=dal */,
+ { 3, 9691, 7570, 4, 10, UNI_INWARANGCITI } /* blk=warangciti */,
+ { 1, 9711, 9410, 5, 4, UNI_CCC__36 } /* ccc=ccc36 */,
+ { 0, 8782, 10023, 7, 4, UNI_SC__TAML } /* script=taml */,
+ { 1, 1553, 0, 9, 0, UNI_gc_values_index } /* category= */,
+ { 1, 9711, 10157, 4, 3, UNI_CCC__AL } /* ccc=228 */,
+ { 2, 10553, 10403, 7, 4, UNI_XPOSIXSPACE } /* isspaceperl */,
+ { 82, 5758, 26, 13, 1, UNI_BIDIM } /* bidimirrored=y */,
+ { 1, 7218, 4505, 3, 7, UNI_BAMUMSUP } /* inbamumsup */,
+ { 9, 9171, 3, 6, 1, -UNI__PERL_PATWS } /* patws=f */,
+ { 2, 9691, 8388, 4, 8, UNI_INJAVANESE } /* blk=javanese */,
+ { 1, 8782, 2632, 7, 6, UNI_BRAH } /* script=brahmi */,
+ { 2, 185, 2493, 2, 20, UNI_HMNP } /* isnyiakengpuachuehmong */,
+ { 0, 8973, 2746, 6, 10, UNI_JAMO } /* block=hanguljamo */,
+ { 1, 9476, 10119, 3, 4, UNI_SC__ZYYY } /* sc=zyyy */,
+ { 1, 2312, 2100, 4, 4, UNI_INHATRAN } /* inhatran */,
+ { 3, 9803, 5717, 4, 2, UNI_LB__H2 } /* hst=lv */,
+ { 48, 7360, 752, 10, 2, UNI_LB__CL } /* linebreak=cl */,
+ { 10, 10250, 6796, 3, 11, UNI_JT__D } /* jt=dualjoining */,
+ { 0, 4298, 0, 16, 0, UNI_MISCMATHSYMBOLSB } /* miscmathsymbolsb */,
+ { 24, 2453, 0, 20, 0, UNI_PHLI } /* inscriptionalpahlavi */,
+ { 0, 4894, 0, 16, 0, UNI_NFKCQC__N } /* nfkcquickcheck=n */,
+ { 0, 8881, 98, 3, 9, UNI_XPOSIXALPHA } /* isalphabetic */,
+ { 12, 185, 750, 2, 30, UNI_ENCLOSEDALPHANUMSUP } /* isenclosedalphanumericsupplement */,
+ { 52, 185, 10123, 2, 4, UNI_ZZZZ } /* iszzzz */,
+ { 0, 7580, 401, 10, 6, UNI_WB__FO } /* wordbreak=format */,
+ { 1, 9476, 4849, 3, 15, UNI_MERC } /* sc=meroiticcursive */,
+ { 0, 3877, 9751, 17, 4, UNI_DIAK } /* scriptextensions=diak */,
+ { 0, 8628, 1, 7, 1, -UNI_GRBASE } /* grbase=n */,
+ { 24, 8973, 7261, 7, 9, UNI_INCHORASMIAN } /* block=chorasmian */,
+ { 64, 7360, 7628, 10, 9, UNI_LB__AI } /* linebreak=ambiguous */,
+ { 0, 185, 8300, 2, 8, UNI_DUPL } /* isduployan */,
+ { 0, 6340, 511, 3, 19, UNI_CJK } /* incjkunifiedideographs */,
+ { 3, 9979, 58, 4, 2, UNI_YI } /* scx=yi */,
+ { 2, 185, 1632, 2, 15, UNI_GEOMETRICSHAPES } /* isgeometricshapes */,
+ { 10, 10253, 6829, 3, 11, UNI_LB__IN } /* lb=inseperable */,
+ { 64, 185, 2144, 3, 13, UNI_CJKRADICALSSUP } /* iscjkradicalssup */,
+ { 19, 10508, 468, 8, 5, UNI_XPOSIXPUNCT } /* isxposixpunct */,
+ { 2, 3877, 6494, 17, 12, UNI_GONM } /* scriptextensions=masaramgondi */,
+ { 1, 2332, 0, 6, 0, UNI_YIJING } /* yijing */,
+ { 0, 3157, 3, 18, 1, -UNI_EBASE } /* emojimodifierbase=f */,
+ { 1, 9544, 10355, 5, 3, UNI_XIDC } /* xidc=yes */,
+ { 33, 1418, 8099, 24, 2, UNI_CCC__14 } /* canonicalcombiningclass=14 */,
+ { 3, 10268, 8068, 3, 8, UNI_NV__7_SLASH_2 } /* nv=3.50e+00 */,
+ { 1, 9429, 1026, 5, 2, -UNI_CWCF } /* cwcf=no */,
+ { 0, 9967, 0, 4, 0, UNI_RUNR } /* runr */,
+ { 4, 3391, 1, 18, 1, -UNI__PERL_PATWS } /* patternwhitespace=n */,
+ { 13, 9691, 7718, 4, 9, UNI_LATINEXTB } /* blk=latinextb */,
+ { 1, 7907, 0, 8, 0, UNI_XIDS } /* xidstart */,
+ { 2, 185, 9831, 2, 4, UNI_LAO } /* islaoo */,
+ { 0, 5408, 6388, 4, 5, UNI_MAHJONG } /* inmahjong */,
+ { 0, 9711, 9305, 5, 4, UNI_CCC__15 } /* ccc=ccc15 */,
+ { 5, 9476, 10003, 3, 4, UNI_SOGO } /* sc=sogo */,
+ { 0, 8782, 9851, 7, 4, UNI_MEDF } /* script=medf */,
+ { 5, 21, 9129, 2, 6, UNI_INLYCIAN } /* inlycian */,
+ { 0, 185, 9819, 2, 4, UNI_KNDA } /* isknda */,
+ { 64, 8973, 2453, 6, 20, UNI_ININSCRIPTIONALPAHLAVI } /* block=inscriptionalpahlavi */,
+ { 0, 8782, 2937, 8, 3, UNI_SUND } /* script=sund */,
+ { 0, 8973, 7817, 6, 9, UNI_INOLDPERMIC } /* block=oldpermic */,
+ { 5, 8973, 8452, 6, 8, UNI_SPECIALS } /* block=specials */,
+ { 156, 8782, 9867, 7, 4, UNI_SC__MLYM } /* script=mlym */,
+ { 0, 7360, 4898, 10, 2, UNI_LB__QU } /* linebreak=qu */,
+ { 22, 6083, 8235, 13, 2, UNI_NV__28 } /* numericvalue=28 */,
+ { 38, 5830, 36, 6, 1, UNI_EBASE } /* ebase=t */,
+ { 0, 729, 0, 6, 0, UNI_N } /* number */,
+ { 0, 10268, 8132, 3, 8, UNI_NV__11_SLASH_2 } /* nv=5.50e+00 */,
+ { 0, 1418, 9365, 25, 4, UNI_CCC__27 } /* canonicalcombiningclass=ccc27 */,
+ { 0, 185, 8537, 2, 4, UNI_BENG } /* isbeng */,
+ { 0, 7862, 0, 9, 0, UNI_SAMR } /* samaritan */,
+ { 3, 7460, 10325, 10, 3, UNI_IN__6 } /* presentin=v60 */,
+ { 0, 9469, 2573, 5, 20, UNI_INPC__TOPANDBOTTOMANDRIGHT } /* inpc=topandbottomandright */,
+ { 0, 3121, 69, 18, 3, UNI_DT__SUP } /* decompositiontype=sup */,
+ { 2, 7297, 8, 3, 2, UNI_HAN } /* ishan */,
+ { 0, 185, 1, 2, 1, UNI_N } /* isn */,
+ { 0, 3877, 7709, 17, 9, UNI_SIND } /* scriptextensions=khudawadi */,
+ { 4, 9691, 6044, 4, 13, UNI_MAYANNUMERALS } /* blk=mayannumerals */,
+ { 1, 8782, 9504, 7, 5, UNI_NSHU } /* script=nushu */,
+ { 42, 9731, 3, 4, 1, -UNI_CWT } /* cwt=f */,
+ { 49, 1553, 5797, 9, 13, UNI_XPOSIXDIGIT } /* category=decimalnumber */,
+ { 1, 5875, 6422, 13, 12, UNI_JG__MALAYALAMNGA } /* joininggroup=malayalamnga */,
+ { 0, 1538, 4656, 4, 13, UNI_DIACRITICALSEXT } /* indiacriticalsext */,
+ { 4, 3877, 4939, 17, 15, UNI_SARB } /* scriptextensions=oldsoutharabian */,
+ { 0, 185, 8614, 2, 4, UNI_ELYM } /* iselym */,
+ { 2, 7560, 9454, 10, 5, -UNI_XPOSIXUPPER } /* uppercase=false */,
+ { 1, 7360, 4401, 10, 9, UNI_EMOD } /* linebreak=emodifier */,
+ { 0, 10268, 9259, 3, 5, UNI_NV__11_SLASH_12 } /* nv=11/12 */,
+ { 0, 3877, 6730, 17, 11, UNI_CPMN } /* scriptextensions=cyprominoan */,
+ { 0, 1167, 10355, 26, 3, UNI_DI } /* defaultignorablecodepoint=yes */,
+ { 34, 185, 9827, 2, 4, UNI_LANA } /* islana */,
+ { 3, 9711, 9671, 4, 4, UNI_CCC__216 } /* ccc=atar */,
+ { 0, 8702, 752, 4, 28, UNI_ENCLOSEDALPHANUMSUP } /* inenclosedalphanumericsupplement */,
+ { 0, 9691, 8803, 4, 7, UNI_INSIDDHAM } /* blk=siddham */,
+ { 0, 185, 9716, 3, 3, UNI_CHRS } /* ischrs */,
+ { 0, 9434, 0, 5, 0, UNI_cwcm_values_index } /* cwcm= */,
+ { 0, 3624, 0, 4, 0, UNI_UCAS } /* ucas */,
+ { 0, 8973, 1219, 6, 8, UNI_INKATAKANA } /* block=katakana */,
+ { 26, 9979, 8260, 4, 8, UNI_ARMN } /* scx=armenian */,
+ { 80, 2304, 9920, 3, 3, UNI_OSGE } /* isosge */,
+ { 0, 185, 4043, 3, 6, UNI_CPRT } /* iscypriot */,
+ { 2, 9647, 10316, 4, 3, UNI_AGE__5 } /* age=v50 */,
+ { 8, 8782, 9943, 7, 4, UNI_PRTI } /* script=prti */,
+ { 0, 5875, 6266, 13, 12, UNI_JG__FINALSEMKATH } /* joininggroup=finalsemkath */,
+ { 4, 10268, 9612, 3, 3, UNI_NV__5_SLASH_2 } /* nv=5/2 */,
+ { 0, 10268, 8060, 3, 8, UNI_NV__1_SLASH_3 } /* nv=3.33e-01 */,
+ { 38, 980, 0, 27, 0, UNI_ALPHABETICPF } /* alphabeticpresentationforms */,
+ { 1, 2248, 7511, 3, 9, UNI_SMALLFORMS } /* insmallforms */,
+ { 1, 1274, 10055, 21, 4, UNI_CE } /* compositionexclusion=true */,
+ { 8, 10268, 7972, 3, 8, UNI_NV__1_SLASH_64 } /* nv=1.56e-02 */,
+ { 22, 10268, 9578, 3, 2, UNI_NV__41 } /* nv=41 */,
+ { 2, 8558, 0, 7, 0, UNI_CJKEXTC } /* cjkextc */,
+ { 0, 5088, 1, 14, 1, -UNI_POSIXXDIGIT } /* asciihexdigit=n */,
+ { 1, 8782, 6593, 7, 4, UNI_HUNG } /* script=hung */,
+ { 1, 10553, 108, 3, 5, UNI_S } /* issymbol */,
+ { 6, 5875, 5966, 13, 13, UNI_JG__MANICHAEANMEM } /* joininggroup=manichaeanmem */,
+ { 1, 6083, 9575, 13, 3, UNI_NV__1_SLASH_6 } /* numericvalue=1/6 */,
+ { 0, 6350, 6884, 12, 11, UNI_JT__L } /* joiningtype=leftjoining */,
+ { 0, 1537, 0, 4, 0, UNI_SIND } /* sind */,
+ { 4, 9647, 8119, 4, 1, UNI_AGE__9 } /* age=9 */,
+ { 73, 2841, 0, 4, 0, UNI_MERO } /* mero */,
+ { 0, 4984, 0, 5, 0, UNI_TAML } /* tamil */,
+ { 3, 10280, 10355, 3, 3, UNI_RI } /* ri=yes */,
+ { 4, 9979, 7330, 4, 10, UNI_KHAR } /* scx=kharoshthi */,
+ { 129, 1629, 0, 4, 0, UNI_PHAG } /* phag */,
+ { 0, 4972, 10032, 3, 3, UNI_TFNG } /* istfng */,
+ { 0, 9063, 10355, 6, 3, UNI_EPRES } /* epres=yes */,
+ { 0, 9051, 10355, 6, 3, UNI_ECOMP } /* ecomp=yes */,
+ { 1, 2185, 26, 21, 1, UNI_EXTPICT } /* extendedpictographic=y */,
+ { 2, 415, 0, 11, 0, UNI_IDEO } /* ideographic */,
+ { 0, 8316, 1966, 10, 3, -UNI_EXTPICT } /* extpict=false */,
+ { 72, 8881, 981, 3, 26, UNI_ALPHABETICPF } /* isalphabeticpresentationforms */,
+ { 29, 10247, 1512, 3, 3, UNI_JG__HAH } /* jg=hah */,
+ { 1, 4847, 0, 17, 0, UNI_INMEROITICCURSIVE } /* inmeroiticcursive */,
+ { 12, 599, 0, 2, 0, UNI_XPOSIXCNTRL } /* cc */,
+ { 2, 9461, 1160, 3, 2, UNI_SB__ST } /* sb=st */,
+ { 2, 185, 568, 2, 2, UNI_NB } /* isnb */,
+ { 20, 5875, 2247, 13, 3, UNI_JG__AIN } /* joininggroup=ain */,
+ { 4, 5116, 26, 14, 1, UNI_CI } /* caseignorable=y */,
+ { 0, 10553, 7018, 3, 3, UNI_SHAW } /* isshaw */,
+ { 8, 9545, 3, 4, 1, -UNI_IDC } /* idc=f */,
+ { 6, 6674, 9454, 12, 5, -UNI_XIDC } /* xidcontinue=false */,
+ { 0, 7218, 7656, 3, 8, UNI_INBHAIKSUKI } /* inbhaiksuki */,
+ { 0, 10247, 9659, 3, 4, UNI_JG__ALEF } /* jg=alef */,
+ { 30, 8973, 1595, 6, 14, UNI_MUSIC } /* block=musicalsymbols */,
+ { 77, 9489, 1, 5, 1, -UNI_MATH } /* math=n */,
+ { 6, 6314, 1026, 12, 2, -UNI_IDEO } /* ideographic=no */,
+ { 1, 3391, 9454, 18, 5, -UNI__PERL_PATWS } /* patternwhitespace=false */,
+ { 1, 9459, 1026, 5, 2, -UNI_IDSB } /* idsb=no */,
+ { 1, 7682, 1026, 9, 2, -UNI_EXT } /* extender=no */,
+ { 0, 185, 7655, 2, 9, UNI_BHKS } /* isbhaiksuki */,
+ { 0, 8712, 0, 8, 0, UNI_NFKDQC__N } /* nfkdqc=n */,
+ { 1, 9691, 350, 4, 33, UNI_SUPSYMBOLSANDPICTOGRAPHS } /* blk=supplementalsymbolsandpictographs */,
+ { 0, 6340, 3837, 3, 3, UNI_INCHAM } /* incham */,
+ { 0, 3877, 9875, 17, 4, UNI_MTEI } /* scriptextensions=mtei */,
+ { 0, 9476, 8530, 3, 7, UNI_AVST } /* sc=avestan */,
+ { 10, 7230, 1, 11, 1, UNI_BC__BN } /* bidiclass=bn */,
+ { 0, 9691, 5836, 4, 13, UNI_GREEKEXT } /* blk=greekextended */,
+ { 1, 2248, 7531, 3, 9, UNI_SUPARROWSB } /* insuparrowsb */,
+ { 0, 7580, 109, 10, 2, UNI_WB__MB } /* wordbreak=mb */,
+ { 4, 8775, 0, 7, 0, UNI_PHAG } /* phagspa */,
{ 0, 8973, 9539, 6, 5, UNI_VSSUP } /* block=vssup */,
- { 22, 8973, 9863, 6, 4, UNI_INMIAO } /* block=miao */,
- { 0, 3877, 10000, 18, 3, UNI_SHRD } /* scriptextensions=shrd */,
- { 25, 1538, 2479, 24, 5, UNI_INPC__RIGHT } /* indicpositionalcategory=right */,
- { 1, 9691, 2493, 4, 20, UNI_INNYIAKENGPUACHUEHMONG } /* blk=nyiakengpuachuehmong */,
- { 1, 3877, 8292, 17, 8, UNI_BUGI } /* scriptextensions=buginese */,
- { 11, 1553, 1187, 9, 2, UNI_PO } /* category=po */,
- { 2, 3877, 9707, 17, 4, UNI_CANS } /* scriptextensions=cans */,
- { 0, 8782, 8276, 7, 4, UNI_BALI } /* script=bali */,
- { 0, 8782, 2312, 8, 6, UNI_SC__SINH } /* script=sinhala */,
- { 0, 6083, 10139, 13, 3, UNI_NV__2_SLASH_5 } /* numericvalue=2/5 */,
- { 1, 9691, 2248, 4, 21, UNI_ININSCRIPTIONALPARTHIAN } /* blk=inscriptionalparthian */,
- { 0, 8973, 9514, 6, 5, UNI_INORIYA } /* block=oriya */,
- { 1, 7, 0, 1, 0, UNI_C } /* c */,
- { 306, 10253, 4954, 3, 15, UNI_LB__OP } /* lb=openpunctuation */,
- { 0, 10268, 9560, 3, 3, UNI_NV__1_SLASH_2 } /* nv=1/2 */,
- { 20, 2248, 1563, 3, 23, UNI_SUPSYMBOLSANDPICTOGRAPHS } /* insupsymbolsandpictographs */,
- { 15, 1836, 0, 21, 0, UNI_CWL } /* changeswhenlowercased */,
- { 7, 9691, 5298, 4, 14, UNI_LATINEXTC } /* blk=latinextendedc */,
- { 0, 1836, 1, 22, 1, -UNI_CWL } /* changeswhenlowercased=n */,
- { 0, 2841, 0, 4, 0, UNI_MERO } /* mero */,
- { 6, 3877, 9667, 17, 4, UNI_ARMN } /* scriptextensions=armn */,
- { 0, 9711, 10148, 4, 3, UNI_CCC__BR } /* ccc=222 */,
- { 73, 10268, 10196, 3, 3, UNI_NV__5_SLASH_8 } /* nv=5/8 */,
- { 0, 9711, 0, 4, 0, UNI_ccc_values_index } /* ccc= */,
- { 0, 9270, 36, 4, 1, UNI_XPOSIXXDIGIT } /* hex=t */,
- { 0, 5059, 0, 15, 0, UNI_ZANB } /* zanabazarsquare */,
- { 1, 6350, 0, 12, 0, UNI_jt_values_index } /* joiningtype= */,
- { 33, 4669, 0, 15, 0, UNI_DIACRITICALSSUP } /* diacriticalssup */,
- { 2, 185, 2955, 2, 19, UNI_SUPARROWSA } /* issupplementalarrowsa */,
- { 1, 1418, 6763, 24, 11, UNI_CCC__DA } /* canonicalcombiningclass=doubleabove */,
- { 462, 9544, 1, 5, 1, -UNI_XIDC } /* xidc=n */,
- { 65, 185, 5131, 3, 13, UNI_CJKCOMPATFORMS } /* iscjkcompatforms */,
- { 1, 9063, 26, 6, 1, UNI_EPRES } /* epres=y */,
- { 0, 185, 34, 2, 3, UNI_EXT } /* isext */,
- { 130, 2312, 2229, 4, 12, UNI_INHANIFIROHINGYA } /* inhanifirohingya */,
- { 1, 7580, 6254, 10, 12, UNI_WB__EX } /* wordbreak=extendnumlet */,
- { 1, 185, 9835, 2, 4, UNI_LATN } /* islatn */,
- { 0, 10253, 10394, 3, 2, UNI_LB__XX } /* lb=xx */,
- { 6, 97, 0, 10, 0, UNI_XPOSIXALPHA } /* alphabetic */,
- { 3, 185, 3674, 3, 16, UNI_CYRILLICEXTB } /* iscyrillicextendedb */,
- { 0, 9476, 3934, 3, 11, UNI_SGNW } /* sc=signwriting */,
- { 16, 5875, 7177, 13, 3, UNI_JG__FEH } /* joininggroup=feh */,
- { 71, 4074, 1187, 16, 2, UNI_PO } /* generalcategory=po */,
- { 2, 9469, 8776, 3, 6, UNI_INPHAGSPA } /* inphagspa */,
- { 27, 8468, 0, 4, 0, UNI_TAGB } /* tagb */,
- { 3, 6083, 9307, 13, 2, UNI_NV__15 } /* numericvalue=15 */,
- { 9, 5875, 6906, 13, 11, UNI_JG__MALAYALAMJA } /* joininggroup=malayalamja */,
- { 0, 6083, 8925, 13, 4, UNI_NV__5000 } /* numericvalue=5000 */,
- { 37, 10516, 5096, 7, 5, UNI_POSIXDIGIT } /* isposixdigit */,
- { 1, 9691, 8859, 4, 7, UNI_INTIBETAN } /* blk=tibetan */,
- { 1, 1553, 3383, 10, 8, UNI_Z } /* category=separator */,
- { 30, 9979, 10103, 4, 4, UNI_YI } /* scx=yiii */,
- { 0, 10229, 1418, 3, 9, UNI_DT__CAN } /* dt=canonical */,
- { 0, 8973, 8468, 6, 8, UNI_INTAGBANWA } /* block=tagbanwa */,
- { 48, 9997, 8791, 4, 5, UNI_SC__SHRD } /* insharada */,
- { 0, 185, 5368, 2, 7, UNI_LISUSUP } /* islisusup */,
- { 100, 8955, 1026, 6, 2, -UNI_XPOSIXALPHA } /* alpha=no */,
- { 39, 8782, 9911, 7, 4, UNI_ORKH } /* script=orkh */,
- { 4, 1418, 9417, 24, 2, UNI_CCC__84 } /* canonicalcombiningclass=84 */,
- { 33, 7297, 4107, 3, 15, UNI_HALFANDFULLFORMS } /* ishalfandfullforms */,
- { 0, 9803, 6895, 4, 11, UNI_LB__H3 } /* hst=lvtsyllable */,
- { 0, 10250, 0, 3, 1, UNI_JT__U } /* jt=u */,
+ { 2, 9691, 7709, 4, 9, UNI_INKHUDAWADI } /* blk=khudawadi */,
+ { 1, 2879, 0, 9, 0, UNI_MONG } /* mongolian */,
+ { 34, 8782, 1177, 8, 3, UNI_SORA } /* script=sora */,
+ { 0, 9711, 9355, 5, 4, UNI_CCC__25 } /* ccc=ccc25 */,
+ { 9, 9895, 0, 4, 0, UNI_NKO } /* nkoo */,
+ { 39, 9476, 4534, 3, 7, UNI_BRAI } /* sc=braille */,
+ { 109, 48, 0, 1, 0, UNI_M } /* m */,
+ { 9, 2012, 0, 22, 0, UNI_loe_values_index } /* logicalorderexception= */,
+ { 2, 3877, 9529, 17, 5, UNI_TALE } /* scriptextensions=taile */,
+ { 0, 9476, 9237, 3, 4, UNI_SC__YEZI } /* sc=yezi */,
+ { 3, 5830, 9454, 6, 5, -UNI_EBASE } /* ebase=false */,
+ { 0, 9691, 5745, 4, 13, UNI_AEGEANNUMBERS } /* blk=aegeannumbers */,
+ { 3, 10516, 10529, 3, 4, UNI_XPOSIXPRINT } /* isprint */,
+ { 2, 6755, 2900, 4, 17, UNI_OTTOMANSIYAQNUMBERS } /* inottomansiyaqnumbers */,
+ { 7, 10268, 9249, 3, 4, UNI_NV__1_SLASH_16 } /* nv=1/16 */,
+ { 185, 5875, 88, 13, 2, UNI_JG__HE } /* joininggroup=he */,
+ { 7, 4074, 6719, 16, 11, UNI_CASEDLETTER } /* generalcategory=casedletter */,
+ { 1, 10352, 8516, 3, 7, UNI_WB__LE } /* wb=aletter */,
+ { 0, 8614, 0, 4, 0, UNI_ELYM } /* elym */,
+ { 2, 9550, 9454, 4, 5, -UNI_IDS } /* ids=false */,
+ { 1, 9459, 26, 5, 1, UNI_IDSB } /* idsb=y */,
+ { 2, 7218, 7241, 3, 9, UNI_BOXDRAWING } /* inboxdrawing */,
+ { 2, 6340, 8545, 3, 6, UNI_CJKEXTA } /* incjkexta */,
+ { 0, 6340, 2123, 3, 20, UNI_CJKCOMPATFORMS } /* incjkcompatibilityforms */,
+ { 8, 9474, 8268, 5, 8, UNI_INSC__AVAGRAHA } /* insc=avagraha */,
+ { 0, 750, 0, 16, 0, UNI_ENCLOSEDALPHANUM } /* enclosedalphanum */,
+ { 7, 6083, 8060, 13, 8, UNI_NV__1_SLASH_3 } /* numericvalue=3.33e-01 */,
+ { 3, 21, 3809, 2, 17, UNI_LETTERLIKESYMBOLS } /* inletterlikesymbols */,
+ { 1, 9691, 5074, 4, 14, UNI_ANCIENTSYMBOLS } /* blk=ancientsymbols */,
+ { 1, 8782, 8476, 7, 8, UNI_TFNG } /* script=tifinagh */,
+ { 2, 8973, 8600, 6, 7, UNI_DSRT } /* block=deseret */,
+ { 0, 3877, 4504, 17, 4, UNI_BAMU } /* scriptextensions=bamu */,
+ { 1, 9979, 8797, 5, 6, UNI_SHAW } /* scx=shavian */,
+ { 26, 9476, 9939, 3, 4, UNI_MIAO } /* sc=plrd */,
+ { 78, 1792, 36, 22, 1, UNI_CWCF } /* changeswhencasefolded=t */,
+ { 11, 10247, 5235, 3, 3, UNI_JG__HEH } /* jg=heh */,
+ { 1, 9711, 9380, 5, 4, UNI_CCC__30 } /* ccc=ccc30 */,
+ { 0, 9691, 2765, 4, 19, UNI_JAMOEXTB } /* blk=hanguljamoextendedb */,
+ { 2, 5862, 0, 6, 0, UNI_IPAEXT } /* ipaext */,
+ { 32, 3877, 9651, 17, 4, UNI_AGHB } /* scriptextensions=aghb */,
+ { 0, 9711, 7619, 4, 9, UNI_CCC__AL } /* ccc=aboveleft */,
+ { 65, 9979, 9863, 4, 4, UNI_MIAO } /* scx=miao */,
+ { 0, 3121, 10286, 18, 3, UNI_DT__SML } /* decompositiontype=sml */,
+ { 24, 6314, 36, 12, 1, UNI_IDEO } /* ideographic=t */,
+ { 73, 9975, 0, 4, 0, UNI_SARB } /* sarb */,
+ { 14, 2304, 9515, 3, 4, UNI_ORYA } /* isoriya */,
+ { 33, 1418, 8986, 25, 4, UNI_CCC__10 } /* canonicalcombiningclass=ccc10 */,
+ { 39, 9691, 8817, 4, 7, UNI_SUPPUAA } /* blk=suppuaa */,
+ { 0, 9691, 8635, 4, 7, UNI_INHANUNOO } /* blk=hanunoo */,
+ { 17, 7218, 9295, 3, 4, UNI_INBUHID } /* inbuhid */,
+ { 67, 8973, 6242, 6, 12, UNI_ETHIOPICEXTB } /* block=ethiopicextb */,
+ { 0, 3877, 9093, 17, 6, UNI_KTHI } /* scriptextensions=kaithi */,
+ { 33, 185, 9755, 2, 4, UNI_DSRT } /* isdsrt */,
+ { 3, 9647, 7996, 4, 3, UNI_AGE__2 } /* age=2.0 */,
+ { 0, 2206, 8308, 21, 8, UNI_WB__EB } /* graphemeclusterbreak=ebasegaz */,
+ { 5, 1592, 3725, 3, 16, UNI_ETHIOPICEXTB } /* inethiopicextendedb */,
+ { 0, 9979, 10103, 4, 4, UNI_YI } /* scx=yiii */,
+ { 2, 185, 1270, 2, 24, UNI_COMPEX } /* isfullcompositionexclusion */,
+ { 0, 10247, 6432, 3, 5, UNI_JG__GAMAL } /* jg=gamal */,
+ { 0, 6340, 7261, 3, 9, UNI_INCHORASMIAN } /* inchorasmian */,
+ { 1, 185, 868, 2, 18, UNI_PHONETICEXT } /* isphoneticextensions */,
+ { 4, 185, 9183, 2, 6, UNI_RJNG } /* isrejang */,
+ { 2, 9476, 9947, 3, 4, UNI_SC__COPT } /* sc=qaac */,
+ { 14, 8702, 1036, 4, 25, UNI_ENCLOSEDCJK } /* inenclosedcjklettersandmonths */,
+ { 1, 8973, 4534, 6, 7, UNI_BRAI } /* block=braille */,
+ { 7, 10518, 0, 10, 0, UNI_POSIXBLANK } /* posixblank */,
+ { 10, 9459, 0, 5, 0, UNI_idsb_values_index } /* idsb= */,
+ { 0, 9476, 4314, 3, 7, UNI_SC__MYMR } /* sc=myanmar */,
+ { 0, 7844, 0, 9, 0, UNI_PALM } /* palmyrene */,
+ { 0, 8782, 7700, 7, 9, UNI_SC__QAAI } /* script=inherited */,
+ { 1, 3877, 6302, 17, 4, UNI_HEBR } /* scriptextensions=hebr */,
+ { 9, 8782, 9081, 7, 4, UNI_HATR } /* script=hatr */,
+ { 3, 6083, 8027, 13, 2, UNI_NV__22 } /* numericvalue=22 */,
+ { 1, 9544, 26, 5, 1, UNI_XIDC } /* xidc=y */,
+ { 1, 6158, 3, 12, 1, -UNI_BIDIC } /* bidicontrol=f */,
+ { 3, 5875, 9243, 13, 6, UNI_JG__YUDHHE } /* joininggroup=yudhhe */,
+ { 26, 185, 4314, 2, 7, UNI_MYMR } /* ismyanmar */,
+ { 1, 9711, 8099, 4, 2, UNI_CCC__14 } /* ccc=14 */,
+ { 63, 9469, 7451, 3, 9, UNI_INPHOENICIAN } /* inphoenician */,
+ { 25, 7391, 1018, 4, 2, UNI_CAKM } /* iscakm */,
+ { 0, 9476, 7820, 3, 4, UNI_SC__PERM } /* sc=perm */,
+ { 1, 185, 1881, 3, 20, UNI_CWU } /* ischangeswhenuppercased */,
+ { 0, 10268, 1250, 3, 3, UNI_NV__NAN } /* nv=nan */,
+ { 0, 10244, 10400, 3, 2, UNI_ZS } /* gc=zs */,
+ { 2, 10268, 8943, 3, 3, UNI_NV__800 } /* nv=800 */,
+ { 3, 9691, 2164, 4, 18, UNI_CYRILLICSUP } /* blk=cyrillicsupplement */,
+ { 3, 7210, 0, 10, 0, UNI_ASCII } /* basiclatin */,
+ { 3, 9214, 10055, 5, 4, UNI_IDEO } /* ideo=true */,
+ { 0, 4314, 0, 7, 0, UNI_MYMR } /* myanmar */,
+ { 13, 8508, 0, 8, 0, UNI_VITH } /* vithkuqi */,
+ { 0, 9727, 9454, 4, 5, -UNI_CWL } /* cwl=false */,
+ { 1, 185, 2727, 2, 19, UNI_ENCLOSEDALPHANUMSUP } /* isenclosedalphanumsup */,
+ { 1, 9979, 2509, 4, 4, UNI_MONG } /* scx=mong */,
+ { 3, 118, 4760, 3, 14, UNI_INIMPERIALARAMAIC } /* inimperialaramaic */,
+ { 27, 9476, 9795, 3, 4, UNI_HMNG } /* sc=hmng */,
+ { 104, 9691, 3707, 4, 16, UNI_ETHIOPICEXT } /* blk=ethiopicextended */,
+ { 1, 9979, 9719, 4, 4, UNI_CPMN } /* scx=cpmn */,
+ { 0, 10223, 1, 3, 1, -UNI_CI } /* ci=n */,
+ { 0, 9711, 5461, 4, 2, UNI_CCC__7 } /* ccc=nk */,
+ { 0, 59, 0, 4, 0, UNI_IDEO } /* ideo */,
+ { 0, 10244, 107, 3, 6, UNI_S } /* gc=symbol */,
+ { 38, 5875, 5396, 13, 14, UNI_JG__MANICHAEANAYIN } /* joininggroup=manichaeanayin */,
+ { 0, 3877, 8845, 17, 7, UNI_TAVT } /* scriptextensions=taiviet */,
+ { 0, 9201, 0, 6, 0, UNI_TELU } /* telugu */,
+ { 6, 10516, 6615, 3, 7, UNI_PHAISTOS } /* isphaistos */,
+ { 4, 9476, 6518, 3, 12, UNI_MEND } /* sc=mendekikakui */,
+ { 1, 2433, 0, 13, 0, UNI_GLAGOLITICSUP } /* glagoliticsup */,
+ { 1, 10268, 10368, 3, 2, UNI_NV__47 } /* nv=47 */,
+ { 2, 9979, 9867, 4, 4, UNI_MLYM } /* scx=mlym */,
+ { 0, 185, 9736, 3, 2, UNI_CWU } /* iscwu */,
+ { 2, 10253, 126, 3, 2, UNI_LB__CR } /* lb=cr */,
+ { 8, 9476, 9991, 3, 4, UNI_SHAW } /* sc=shaw */,
+ { 0, 5802, 0, 5, 0, UNI_XPOSIXALNUM } /* alnum */,
+ { 0, 185, 9895, 2, 3, UNI_NKO } /* isnko */,
+ { 0, 8782, 8348, 7, 8, UNI_SC__GURU } /* script=gurmukhi */,
+ { 5, 9647, 10202, 4, 3, UNI_AGE__6_DOT_3 } /* age=6.3 */,
+ { 1, 8973, 9891, 6, 4, UNI_INNEWA } /* block=newa */,
+ { 0, 7460, 8036, 10, 3, UNI_IN__3_DOT_1 } /* presentin=3.1 */,
+ { 1, 10553, 8804, 3, 3, UNI_SIDD } /* issidd */,
+ { 1, 9979, 8804, 5, 3, UNI_SIDD } /* scx=sidd */,
+ { 0, 9979, 9859, 4, 4, UNI_MERC } /* scx=merc */,
+ { 24, 7580, 8516, 10, 7, UNI_WB__LE } /* wordbreak=aletter */,
+ { 2, 5088, 36, 14, 1, UNI_POSIXXDIGIT } /* asciihexdigit=t */,
+ { 3, 7520, 0, 10, 0, UNI_SUPARROWSA } /* suparrowsa */,
+ { 2, 6083, 10139, 13, 3, UNI_NV__2_SLASH_5 } /* numericvalue=2/5 */,
+ { 4, 10268, 9560, 3, 3, UNI_NV__1_SLASH_2 } /* nv=1/2 */,
+ { 0, 1189, 9530, 3, 4, UNI_INTAILE } /* intaile */,
+ { 5, 9691, 1678, 4, 14, UNI_LATINEXTA } /* blk=latinextendeda */,
+ { 220, 185, 7510, 2, 10, UNI_SMALLFORMS } /* issmallforms */,
+ { 1, 10280, 3, 3, 1, -UNI_RI } /* ri=f */,
+ { 2, 6083, 10372, 13, 2, UNI_NV__49 } /* numericvalue=49 */,
+ { 2, 10283, 10055, 3, 4, UNI_SD } /* sd=true */,
+ { 257, 6083, 9579, 13, 3, UNI_NV__1_SLASH_8 } /* numericvalue=1/8 */,
+ { 0, 8782, 720, 7, 9, UNI_XSUX } /* script=cuneiform */,
+ { 1, 10268, 9567, 3, 4, UNI_NV__1_SLASH_20 } /* nv=1/20 */,
+ { 8, 1189, 3482, 3, 17, UNI_TAIXUANJING } /* intaixuanjingsymbols */,
+ { 10, 9195, 0, 6, 0, UNI_TNSA } /* tangsa */,
+ { 34, 6083, 7980, 13, 8, UNI_NV__1_SLASH_6 } /* numericvalue=1.67e-01 */,
+ { 1, 8973, 115, 7, 34, UNI_DIACRITICALSFORSYMBOLS } /* block=combiningdiacriticalmarksforsymbols */,
+ { 65, 6083, 8913, 13, 4, UNI_NV__4000 } /* numericvalue=4000 */,
+ { 1, 4699, 36, 15, 1, UNI_ECOMP } /* emojicomponent=t */,
+ { 0, 4106, 0, 16, 0, UNI_HALFANDFULLFORMS } /* halfandfullforms */,
+ { 32, 9979, 7570, 4, 10, UNI_WARA } /* scx=warangciti */,
+ { 0, 8973, 1219, 6, 26, UNI_KATAKANAEXT } /* block=katakanaphoneticextensions */,
+ { 8, 6675, 0, 10, 0, UNI_IDC } /* idcontinue */,
+ { 64, 185, 5810, 2, 13, UNI_ME } /* isenclosingmark */,
+ { 7, 3157, 0, 18, 0, UNI_ebase_values_index } /* emojimodifierbase= */,
+ { 0, 185, 7240, 2, 10, UNI_BOXDRAWING } /* isboxdrawing */,
+ { 0, 4849, 0, 15, 0, UNI_MERC } /* meroiticcursive */,
+ { 8, 8973, 5074, 6, 14, UNI_ANCIENTSYMBOLS } /* block=ancientsymbols */,
+ { 32, 8973, 415, 6, 32, UNI_INIDC } /* block=ideographicdescriptioncharacters */,
+ { 0, 185, 9875, 2, 4, UNI_MTEI } /* ismtei */,
+ { 3, 8782, 7330, 7, 4, UNI_KHAR } /* script=khar */,
+ { 1, 10244, 4954, 3, 15, UNI_PS } /* gc=openpunctuation */,
+ { 14, 9476, 10095, 3, 4, UNI_XPEO } /* sc=xpeo */,
+ { 0, 9691, 7433, 4, 7, UNI_INSOGDIAN } /* blk=sogdian */,
{ 0, 8782, 6494, 7, 12, UNI_SC__GONM } /* script=masaramgondi */,
- { 33, 10516, 910, 3, 9, UNI_CO } /* isprivateuse */,
- { 0, 8973, 5284, 6, 14, UNI_LATINEXTB } /* block=latinextendedb */,
- { 16, 8782, 10099, 7, 4, UNI_XSUX } /* script=xsux */,
- { 1, 10253, 10376, 3, 2, UNI_LB__BK } /* lb=bk */,
- { 98, 10268, 8204, 3, 8, UNI_NV__3_SLASH_4 } /* nv=7.50e-01 */,
- { 0, 9691, 2746, 4, 19, UNI_JAMOEXTA } /* blk=hanguljamoextendeda */,
- { 1, 2206, 263, 21, 2, UNI_GCB__SM } /* graphemeclusterbreak=sm */,
- { 0, 7460, 8212, 10, 3, UNI_IN__8 } /* presentin=8.0 */,
- { 13, 3409, 26, 18, 1, UNI_RI } /* regionalindicator=y */,
- { 10, 10268, 7964, 3, 8, UNI_NV__3_SLASH_20 } /* nv=1.50e-01 */,
- { 4, 9763, 5064, 5, 2, UNI_WB__EB } /* gcb=gaz */,
- { 1, 1592, 3194, 3, 17, UNI_ETHIOPICSUP } /* inethiopicsupplement */,
- { 1, 3877, 8614, 17, 4, UNI_ELYM } /* scriptextensions=elym */,
- { 0, 1852, 10055, 6, 4, UNI_CASED } /* cased=true */,
- { 0, 10043, 0, 4, 0, UNI_TIBT } /* tibt */,
- { 1, 9476, 9081, 3, 4, UNI_HATR } /* sc=hatr */,
- { 0, 2206, 74, 21, 2, UNI_WB__EB } /* graphemeclusterbreak=em */,
- { 99, 10508, 6675, 3, 3, UNI_XIDC } /* isxidc */,
- { 0, 3877, 10083, 17, 4, UNI_VAI } /* scriptextensions=vaii */,
- { 0, 43, 0, 26, 0, UNI_CJKCOMPATIDEOGRAPHS } /* cjkcompatibilityideographs */,
- { 2, 8782, 9935, 7, 4, UNI_PHNX } /* script=phnx */,
- { 4, 8973, 8719, 6, 7, UNI_NB } /* block=noblock */,
- { 0, 5045, 5015, 3, 14, UNI_UPPERCASELETTER } /* isuppercaseletter */,
- { 34, 8782, 9827, 7, 4, UNI_LANA } /* script=lana */,
- { 3, 5088, 10355, 14, 3, UNI_POSIXXDIGIT } /* asciihexdigit=yes */,
- { 0, 8973, 3139, 6, 10, UNI_INDEVANAGARI } /* block=devanagari */,
- { 0, 8782, 5368, 7, 4, UNI_LISU } /* script=lisu */,
- { 12, 185, 9783, 2, 4, UNI_GURU } /* isguru */,
- { 8, 9647, 7611, 4, 3, UNI_AGE__5 } /* age=5.0 */,
- { 0, 9979, 9915, 4, 4, UNI_ORYA } /* scx=orya */,
- { 3, 10244, 4774, 3, 15, UNI_LOWERCASELETTER } /* gc=lowercaseletter */,
- { 3, 9476, 1924, 3, 6, UNI_SC__ZYYY } /* sc=common */,
- { 0, 6083, 10204, 13, 2, UNI_NV__37 } /* numericvalue=37 */,
- { 0, 3553, 26, 18, 1, UNI_VS } /* variationselector=y */,
- { 0, 3978, 0, 8, 0, UNI_BOPO } /* bopomofo */,
- { 0, 10244, 7550, 3, 10, UNI_CN } /* gc=unassigned */,
- { 432, 9867, 0, 4, 0, UNI_MLYM } /* mlym */,
- { 32, 8973, 329, 6, 21, UNI_MATHOPERATORS } /* block=mathematicaloperators */,
- { 20, 2269, 0, 14, 0, UNI_MEETEIMAYEKEXT } /* meeteimayekext */,
- { 32, 97, 0, 5, 0, UNI_XPOSIXALPHA } /* alpha */,
- { 32, 9979, 9843, 4, 4, UNI_LINB } /* scx=linb */,
- { 5, 3945, 36, 17, 1, UNI_UIDEO } /* unifiedideograph=t */,
- { 4, 9747, 26, 4, 1, UNI_DIA } /* dia=y */,
- { 0, 8782, 8775, 7, 7, UNI_SC__PHAG } /* script=phagspa */,
- { 2, 10352, 401, 3, 6, UNI_WB__FO } /* wb=format */,
- { 0, 185, 1678, 2, 5, UNI_LATN } /* islatin */,
- { 0, 9711, 9006, 4, 3, UNI_CCC__122 } /* ccc=122 */,
- { 118, 8388, 0, 8, 0, UNI_JAVA } /* javanese */,
- { 3, 9691, 447, 4, 18, UNI_IDEOGRAPHICSYMBOLS } /* blk=ideographicsymbols */,
- { 1, 9651, 0, 4, 0, UNI_AGHB } /* aghb */,
- { 1, 1418, 8235, 24, 2, UNI_CCC__28 } /* canonicalcombiningclass=28 */,
- { 0, 8973, 447, 6, 18, UNI_IDEOGRAPHICSYMBOLS } /* block=ideographicsymbols */,
- { 9, 185, 3837, 3, 3, UNI_CHAM } /* ischam */,
- { 9, 7646, 0, 9, 0, UNI_ARABICPFB } /* arabicpfb */,
- { 1, 8973, 4381, 6, 13, UNI_MATHOPERATORS } /* block=mathoperators */,
- { 35, 1553, 134, 9, 4, UNI_M } /* category=mark */,
- { 0, 10253, 8894, 3, 7, UNI_LB__ZW } /* lb=zwspace */,
- { 11, 5758, 26, 13, 1, UNI_BIDIM } /* bidimirrored=y */,
- { 41, 10516, 3403, 7, 5, UNI_POSIXSPACE } /* isposixspace */,
- { 9, 9539, 0, 5, 0, UNI_VSSUP } /* vssup */,
- { 128, 1418, 4175, 24, 1, UNI_CCC__1 } /* canonicalcombiningclass=1 */,
- { 1, 9979, 3139, 4, 10, UNI_DEVA } /* scx=devanagari */,
- { 0, 9476, 79, 3, 6, UNI_SC__ARAB } /* sc=arabic */,
- { 1, 9474, 1245, 5, 25, UNI_INSC__CONSONANTINITIALPOSTFIXED } /* insc=consonantinitialpostfixed */,
- { 0, 1990, 9289, 22, 5, UNI_INSC__BINDU } /* indicsyllabiccategory=bindu */,
- { 1, 10253, 5648, 3, 9, UNI_LB__QU } /* lb=quotation */,
- { 4, 3877, 6972, 17, 11, UNI_NAND } /* scriptextensions=nandinagari */,
- { 24, 7580, 10394, 10, 2, UNI_WB__XX } /* wordbreak=xx */,
- { 0, 2248, 3912, 3, 16, UNI_SMALLFORMS } /* insmallformvariants */,
- { 0, 8782, 5940, 7, 9, UNI_SC__MLYM } /* script=malayalam */,
- { 4, 10244, 134, 3, 4, UNI_M } /* gc=mark */,
- { 2, 3877, 10111, 17, 4, UNI_ZANB } /* scriptextensions=zanb */,
- { 1, 5810, 0, 13, 0, UNI_ME } /* enclosingmark */,
- { 0, 6842, 3625, 5, 14, UNI_INCAUCASIANALBANIAN } /* incaucasianalbanian */,
- { 0, 1852, 10355, 6, 3, UNI_CASED } /* cased=yes */,
- { 0, 8782, 4504, 7, 4, UNI_BAMU } /* script=bamu */,
- { 0, 7360, 5830, 10, 5, UNI_EBASE } /* linebreak=ebase */,
- { 0, 9476, 7, 3, 18, UNI_CANS } /* sc=canadianaboriginal */,
- { 3, 2122, 0, 21, 0, UNI_CJKCOMPATFORMS } /* cjkcompatibilityforms */,
- { 2, 4972, 4427, 3, 5, UNI_TANG } /* istangut */,
- { 0, 1538, 2579, 24, 6, UNI_INPC__BOTTOM } /* indicpositionalcategory=bottom */,
- { 32, 6083, 7934, 13, 2, UNI_NV__25 } /* numericvalue=25 */,
- { 0, 9691, 4381, 4, 13, UNI_MATHOPERATORS } /* blk=mathoperators */,
- { 0, 8316, 0, 8, 0, UNI_extpict_values_index } /* extpict= */,
- { 1, 9691, 1442, 4, 24, UNI_CJKSYMBOLS } /* blk=cjksymbolsandpunctuation */,
- { 0, 9711, 9016, 5, 4, UNI_CCC__13 } /* ccc=ccc13 */,
- { 193, 10232, 1193, 3, 9, UNI_EA__H } /* ea=halfwidth */,
- { 364, 5875, 6693, 13, 4, UNI_JG__NOON } /* joininggroup=noon */,
- { 170, 9550, 26, 4, 1, UNI_IDS } /* ids=y */,
- { 0, 1418, 9004, 25, 5, UNI_CCC__122 } /* canonicalcombiningclass=ccc122 */,
- { 3, 9711, 4968, 4, 2, UNI_CCC__0 } /* ccc=nr */,
- { 0, 8973, 6109, 6, 13, UNI_VERTICALFORMS } /* block=verticalforms */,
- { 3, 9691, 8340, 4, 8, UNI_INGUJARATI } /* blk=gujarati */,
- { 0, 10232, 7628, 3, 9, UNI_EA__A } /* ea=ambiguous */,
- { 0, 8887, 0, 6, 0, UNI_XPOSIXSPACE } /* wspace */,
- { 2, 7907, 3, 9, 1, -UNI_XIDS } /* xidstart=f */,
- { 0, 9476, 9739, 3, 4, UNI_SC__CYRL } /* sc=cyrl */,
- { 0, 10352, 4346, 3, 5, UNI_WB__XX } /* wb=other */,
- { 18, 3877, 9534, 17, 5, UNI_TAKR } /* scriptextensions=takri */,
- { 2, 118, 5863, 3, 12, UNI_IPAEXT } /* inipaextensions */,
- { 0, 4972, 5947, 3, 3, UNI_TAML } /* istaml */,
- { 0, 2860, 0, 19, 0, UNI_MODIFIERTONELETTERS } /* modifiertoneletters */,
- { 9, 1274, 10355, 21, 3, UNI_CE } /* compositionexclusion=yes */,
- { 258, 6340, 44, 3, 35, UNI_CJKCOMPATIDEOGRAPHSSUP } /* incjkcompatibilityideographssupplement */,
- { 256, 3877, 4186, 17, 7, UNI_LINB } /* scriptextensions=linearb */,
- { 0, 9691, 3247, 4, 18, UNI_INPUNCTUATION } /* blk=generalpunctuation */,
- { 42, 9045, 0, 5, 0, UNI_CWKCF } /* cwkcf */,
- { 257, 1701, 0, 23, 0, UNI_SHORTHANDFORMATCONTROLS } /* shorthandformatcontrols */,
- { 0, 9691, 7093, 4, 11, UNI_SUPERANDSUB } /* blk=superandsub */,
- { 147, 9691, 3826, 4, 10, UNI_INMANICHAEAN } /* blk=manichaean */,
- { 7, 9489, 0, 5, 0, UNI_math_values_index } /* math= */,
- { 0, 8782, 8607, 7, 7, UNI_ELBA } /* script=elbasan */,
- { 3, 1924, 0, 22, 0, UNI_INDICNUMBERFORMS } /* commonindicnumberforms */,
- { 0, 9979, 10035, 4, 4, UNI_TGLG } /* scx=tglg */,
- { 168, 9691, 10083, 4, 3, UNI_INVAI } /* blk=vai */,
- { 2, 2185, 0, 21, 0, UNI_extpict_values_index } /* extendedpictographic= */,
- { 67, 7360, 6326, 10, 12, UNI_LB__IS } /* linebreak=infixnumeric */,
- { 0, 8782, 7853, 7, 9, UNI_PAUC } /* script=paucinhau */,
- { 0, 10232, 3, 3, 1, UNI_EA__F } /* ea=f */,
- { 33, 9691, 8866, 4, 7, UNI_INTIRHUTA } /* blk=tirhuta */,
- { 0, 9476, 10003, 3, 4, UNI_SOGO } /* sc=sogo */,
- { 0, 4714, 10355, 15, 3, UNI_GREXT } /* graphemeextend=yes */,
- { 136, 185, 8587, 3, 6, UNI_CJKEXTG } /* iscjkextg */,
- { 0, 10229, 9039, 3, 6, UNI_DT__ENC } /* dt=circle */,
- { 17, 9691, 5214, 4, 14, UNI_INGREEK } /* blk=greekandcoptic */,
- { 0, 3877, 8284, 17, 8, UNI_BASS } /* scriptextensions=bassavah */,
- { 20, 185, 1219, 2, 8, UNI_KANA } /* iskatakana */,
- { 0, 7460, 10307, 10, 3, UNI_IN__3_DOT_2 } /* presentin=v32 */,
- { 13, 9691, 3481, 4, 11, UNI_TAIXUANJING } /* blk=taixuanjing */,
- { 1, 8782, 10083, 7, 3, UNI_VAI } /* script=vai */,
- { 0, 6675, 3, 11, 1, -UNI_IDC } /* idcontinue=f */,
- { 2, 5522, 0, 14, 0, UNI_SK } /* modifiersymbol */,
- { 0, 7360, 8642, 10, 6, UNI_LB__HY } /* linebreak=hyphen */,
- { 0, 9711, 8986, 5, 5, UNI_CCC__103 } /* ccc=ccc103 */,
- { 0, 5662, 340, 14, 2, UNI_SB__LO } /* sentencebreak=lo */,
- { 79, 9915, 0, 4, 0, UNI_ORYA } /* orya */,
- { 0, 3877, 9723, 17, 4, UNI_CPRT } /* scriptextensions=cprt */,
- { 0, 3877, 9939, 17, 4, UNI_MIAO } /* scriptextensions=plrd */,
- { 57, 9129, 0, 4, 0, UNI_LYCI } /* lyci */,
- { 31, 2248, 7541, 3, 9, UNI_SUPARROWSC } /* insuparrowsc */,
- { 0, 9979, 9951, 4, 4, UNI_QAAI } /* scx=qaai */,
- { 7, 9270, 1, 4, 1, -UNI_XPOSIXXDIGIT } /* hex=n */,
- { 1, 9075, 1, 6, 1, -UNI_GREXT } /* grext=n */,
- { 0, 10247, 4234, 3, 16, UNI_JG__MANICHAEANLAMEDH } /* jg=manichaeanlamedh */,
- { 2, 4410, 0, 9, 0, UNI_SYRIACSUP } /* syriacsup */,
- { 11, 9691, 1655, 4, 6, UNI_INHANGUL } /* blk=hangul */,
- { 0, 7907, 0, 8, 0, UNI_XIDS } /* xidstart */,
- { 2, 4074, 5914, 16, 13, UNI_ZL } /* generalcategory=lineseparator */,
- { 0, 1553, 5522, 9, 14, UNI_SK } /* category=modifiersymbol */,
- { 0, 185, 721, 3, 15, UNI_CUNEIFORMNUMBERS } /* iscuneiformnumbers */,
- { 0, 9979, 8754, 4, 7, UNI_OSMA } /* scx=osmanya */,
- { 536, 9691, 6950, 4, 11, UNI_MYANMAREXTA } /* blk=myanmarexta */,
- { 4, 4463, 3141, 4, 16, UNI_DEVANAGARIEXT } /* indevanagariextended */,
- { 0, 7580, 34, 10, 2, UNI_WB__EX } /* wordbreak=ex */,
- { 1, 9077, 3, 4, 1, -UNI_EXT } /* ext=f */,
- { 2, 1792, 10355, 22, 3, UNI_CWCF } /* changeswhencasefolded=yes */,
- { 14, 9979, 8388, 4, 4, UNI_JAVA } /* scx=java */,
- { 4, 9979, 9655, 4, 4, UNI_AHOM } /* scx=ahom */,
- { 8, 10244, 113, 3, 2, UNI_SC } /* gc=sc */,
- { 0, 6340, 1926, 4, 20, UNI_INDICNUMBERFORMS } /* incommonindicnumberforms */,
- { 0, 9464, 1026, 5, 2, -UNI_IDST } /* idst=no */,
- { 1, 3877, 9811, 17, 4, UNI_KHMR } /* scriptextensions=khmr */,
- { 1, 6350, 6638, 12, 12, UNI_JT__R } /* joiningtype=rightjoining */,
- { 148, 9691, 8810, 4, 7, UNI_INSOYOMBO } /* blk=soyombo */,
- { 2, 9051, 10055, 6, 4, UNI_ECOMP } /* ecomp=true */,
- { 1, 9979, 9755, 4, 4, UNI_DSRT } /* scx=dsrt */,
- { 9, 8492, 0, 8, 0, UNI_UCASEXTA } /* ucasexta */,
- { 0, 10244, 9424, 3, 5, UNI_XPOSIXCNTRL } /* gc=cntrl */,
- { 7, 9476, 8276, 3, 4, UNI_BALI } /* sc=bali */,
- { 4, 185, 9740, 3, 3, UNI_CYRL } /* iscyrl */,
- { 21, 9871, 0, 4, 0, UNI_MRO } /* mroo */,
- { 0, 9476, 9107, 5, 4, UNI_SC__KHOJ } /* sc=khojki */,
- { 0, 6132, 0, 2, 0, UNI_PF } /* pf */,
- { 132, 6741, 36, 11, 1, UNI_DEP } /* deprecated=t */,
- { 10, 1553, 48, 9, 1, UNI_M } /* category=m */,
- { 0, 5088, 26, 14, 1, UNI_POSIXXDIGIT } /* asciihexdigit=y */,
- { 1, 8782, 8635, 7, 7, UNI_SC__HANO } /* script=hanunoo */,
- { 0, 6083, 8172, 13, 8, UNI_NV__1_SLASH_160 } /* numericvalue=6.25e-03 */,
- { 0, 185, 123, 2, 9, UNI_DIA } /* isdiacritic */,
- { 86, 9476, 2248, 3, 21, UNI_PRTI } /* sc=inscriptionalparthian */,
- { 5, 6083, 7950, 13, 1, UNI_NV__4 } /* numericvalue=4 */,
- { 48, 3894, 0, 17, 0, UNI_sterm_values_index } /* sentenceterminal= */,
- { 0, 9691, 7104, 4, 11, UNI_INSYLOTINAGRI } /* blk=sylotinagri */,
- { 0, 1418, 9365, 25, 4, UNI_CCC__27 } /* canonicalcombiningclass=ccc27 */,
- { 153, 10268, 9579, 3, 3, UNI_NV__1_SLASH_8 } /* nv=1/8 */,
- { 0, 9476, 9755, 3, 4, UNI_DSRT } /* sc=dsrt */,
- { 12, 5130, 0, 14, 0, UNI_CJKCOMPATFORMS } /* cjkcompatforms */,
- { 65, 7160, 9238, 3, 3, UNI_YEZI } /* isyezi */,
- { 0, 2553, 0, 20, 0, UNI_term_values_index } /* terminalpunctuation= */,
- { 0, 2003, 10389, 10, 1, UNI_CASEDLETTER } /* category=l& */,
- { 2, 6083, 8100, 13, 8, UNI_NV__5_SLASH_12 } /* numericvalue=4.17e-01 */,
- { 1, 9691, 5368, 4, 4, UNI_INLISU } /* blk=lisu */,
- { 35, 185, 2433, 2, 4, UNI_GLAG } /* isglag */,
- { 0, 4744, 7027, 15, 11, UNI_IDENTIFIERTYPE__RECOMMENDED } /* identifiertype=recommended */,
- { 257, 5875, 5979, 13, 13, UNI_JG__MANICHAEANNUN } /* joininggroup=manichaeannun */,
- { 0, 8973, 9093, 6, 6, UNI_INKAITHI } /* block=kaithi */,
- { 1, 3809, 0, 17, 0, UNI_LETTERLIKESYMBOLS } /* letterlikesymbols */,
- { 0, 1418, 5461, 24, 2, UNI_CCC__7 } /* canonicalcombiningclass=nk */,
- { 1, 3877, 9514, 17, 5, UNI_ORYA } /* scriptextensions=oriya */,
- { 65, 9183, 0, 6, 0, UNI_RJNG } /* rejang */,
- { 12, 7580, 728, 10, 2, UNI_WB__MN } /* wordbreak=mn */,
- { 0, 9763, 10235, 4, 3, UNI_WB__EB } /* gcb=ebg */,
- { 0, 8973, 4504, 6, 15, UNI_BAMUMSUP } /* block=bamumsupplement */,
- { 129, 7467, 7550, 3, 10, UNI_AGE__NA } /* in=unassigned */,
- { 0, 8973, 1034, 6, 27, UNI_ENCLOSEDCJK } /* block=enclosedcjklettersandmonths */,
- { 0, 9045, 1, 6, 1, -UNI_CWKCF } /* cwkcf=n */,
- { 1, 9476, 9534, 3, 5, UNI_SC__TAKR } /* sc=takri */,
- { 0, 9691, 6506, 4, 12, UNI_MATHALPHANUM } /* blk=mathalphanum */,
- { 0, 7297, 2747, 3, 9, UNI_JAMO } /* ishanguljamo */,
- { 3, 6494, 0, 12, 0, UNI_GONM } /* masaramgondi */,
- { 66, 185, 7754, 2, 9, UNI_LATINEXTG } /* islatinextg */,
- { 0, 8702, 2729, 4, 17, UNI_ENCLOSEDALPHANUMSUP } /* inenclosedalphanumsup */,
- { 1, 6083, 9387, 13, 2, UNI_NV__31 } /* numericvalue=31 */,
- { 1, 9476, 2264, 4, 3, UNI_SC__KTHI } /* sc=kthi */,
- { 3, 5875, 5228, 13, 14, UNI_JG__HAMZAONHEHGOAL } /* joininggroup=hamzaonhehgoal */,
- { 1, 9711, 1220, 4, 3, UNI_CCC__214 } /* ccc=ata */,
- { 0, 3877, 383, 17, 4, UNI_EGYP } /* scriptextensions=egyp */,
- { 0, 4504, 0, 8, 0, UNI_BAMUMSUP } /* bamumsup */,
- { 2, 2248, 1321, 3, 24, UNI_SYMBOLSANDPICTOGRAPHSEXTA } /* insymbolsandpictographsexta */,
- { 1, 1270, 1, 25, 1, -UNI_COMPEX } /* fullcompositionexclusion=n */,
- { 35, 1189, 4985, 3, 4, UNI_INTAMIL } /* intamil */,
- { 32, 10244, 9048, 3, 2, UNI_CF } /* gc=cf */,
- { 1, 185, 8292, 2, 4, UNI_BUGI } /* isbugi */,
- { 0, 9476, 2936, 3, 4, UNI_SUND } /* sc=sund */,
- { 0, 3398, 1026, 11, 2, -UNI_XPOSIXSPACE } /* whitespace=no */,
+ { 3, 8973, 3481, 6, 18, UNI_TAIXUANJING } /* block=taixuanjingsymbols */,
+ { 53, 9647, 10175, 4, 3, UNI_AGE__3_DOT_2 } /* age=3.2 */,
+ { 1, 3945, 10355, 17, 3, UNI_UIDEO } /* unifiedideograph=yes */,
+ { 0, 10253, 4898, 3, 2, UNI_LB__QU } /* lb=qu */,
+ { 27, 9935, 0, 4, 0, UNI_PHNX } /* phnx */,
+ { 0, 21, 5927, 2, 13, UNI_LOWSURROGATES } /* inlowsurrogates */,
+ { 0, 2557, 983, 5, 24, UNI_ALPHABETICPF } /* inalphabeticpresentationforms */,
+ { 0, 8782, 3265, 7, 8, UNI_SC__GEOR } /* script=georgian */,
+ { 0, 2808, 3964, 4, 14, UNI_ARABICSUP } /* inarabicsupplement */,
+ { 34, 660, 0, 30, 0, UNI_CJKEXTF } /* cjkunifiedideographsextensionf */,
+ { 0, 8881, 3572, 3, 9, UNI_ALCHEMICAL } /* isalchemical */,
+ { 1, 185, 6057, 2, 13, UNI_MISCTECHNICAL } /* ismisctechnical */,
+ { 72, 185, 721, 3, 15, UNI_CUNEIFORMNUMBERS } /* iscuneiformnumbers */,
+ { 1, 8961, 1, 6, 1, -UNI_BIDIC } /* bidic=n */,
+ { 1, 9550, 1, 4, 1, -UNI_IDS } /* ids=n */,
+ { 0, 3877, 4190, 18, 3, UNI_SARB } /* scriptextensions=sarb */,
+ { 57, 10508, 63, 8, 5, UNI_XPOSIXGRAPH } /* isxposixgraph */,
+ { 0, 185, 1019, 2, 5, UNI_MUSIC } /* ismusic */,
+ { 241, 3877, 9811, 17, 4, UNI_KHMR } /* scriptextensions=khmr */,
+ { 0, 1270, 10055, 25, 4, UNI_COMPEX } /* fullcompositionexclusion=true */,
+ { 0, 3103, 0, 18, 0, UNI_COPTICEPACTNUMBERS } /* copticepactnumbers */,
+ { 0, 3409, 1026, 18, 2, -UNI_RI } /* regionalindicator=no */,
+ { 0, 8782, 9484, 7, 4, UNI_SC__LIMB } /* script=limb */,
+ { 6, 1836, 0, 21, 0, UNI_CWL } /* changeswhenlowercased */,
+ { 0, 2808, 81, 4, 8, UNI_ARABICMATH } /* inarabicmath */,
+ { 4, 9213, 26, 6, 1, UNI_UIDEO } /* uideo=y */,
+ { 1, 8782, 7016, 7, 11, UNI_HMNG } /* script=pahawhhmong */,
+ { 6, 9691, 4381, 4, 13, UNI_MATHOPERATORS } /* blk=mathoperators */,
+ { 0, 8973, 9183, 6, 6, UNI_INREJANG } /* block=rejang */,
+ { 0, 10247, 5979, 3, 13, UNI_JG__MANICHAEANNUN } /* jg=manichaeannun */,
+ { 3, 9987, 0, 4, 0, UNI_SGNW } /* sgnw */,
+ { 128, 2304, 4941, 4, 13, UNI_SARB } /* isoldsoutharabian */,
+ { 88, 8973, 9863, 6, 4, UNI_INMIAO } /* block=miao */,
+ { 7, 9691, 329, 4, 21, UNI_MATHOPERATORS } /* blk=mathematicaloperators */,
+ { 0, 1770, 1, 22, 1, UNI_BPT__N } /* bidipairedbrackettype=n */,
+ { 8, 6950, 0, 11, 0, UNI_MYANMAREXTA } /* myanmarexta */,
+ { 141, 185, 10388, 2, 2, UNI_CASEDLETTER } /* isl& */,
+ { 2, 7230, 8, 10, 2, UNI_BC__AN } /* bidiclass=an */,
+ { 0, 3403, 0, 5, 0, UNI_XPOSIXSPACE } /* space */,
+ { 1, 8881, 1396, 4, 22, UNI_ARABICPFB } /* isarabicpresentationformsb */,
+ { 26, 3724, 0, 17, 0, UNI_ETHIOPICEXTB } /* ethiopicextendedb */,
+ { 11, 1418, 5733, 24, 1, UNI_CCC__0 } /* canonicalcombiningclass=0 */,
+ { 0, 10229, 2809, 3, 3, UNI_DT__NAR } /* dt=nar */,
+ { 0, 6340, 44, 3, 15, UNI_CJKCOMPAT } /* incjkcompatibility */,
+ { 1, 5662, 5, 15, 1, UNI_SB__SE } /* sentencebreak=se */,
+ { 0, 9087, 9454, 6, 5, -UNI_JOINC } /* joinc=false */,
+ { 0, 3139, 0, 4, 0, UNI_DEVA } /* deva */,
+ { 5, 2056, 10355, 22, 3, UNI__PERL_NCHAR } /* noncharactercodepoint=yes */,
+ { 0, 8782, 10043, 7, 4, UNI_TIBT } /* script=tibt */,
+ { 0, 1852, 9454, 6, 5, -UNI_CASED } /* cased=false */,
+ { 15, 9731, 10055, 4, 4, UNI_CWT } /* cwt=true */,
+ { 1, 9294, 0, 5, 0, UNI_BUHD } /* buhid */,
+ { 0, 6614, 0, 8, 0, UNI_PHAISTOS } /* phaistos */,
+ { 1, 8973, 7281, 7, 9, UNI_COMPATJAMO } /* block=compatjamo */,
+ { 16, 7460, 10334, 10, 3, UNI_IN__6_DOT_3 } /* presentin=v63 */,
+ { 0, 1678, 0, 5, 0, UNI_LATN } /* latin */,
+ { 5, 10510, 63, 6, 5, UNI_XPOSIXGRAPH } /* xposixgraph */,
+ { 0, 3877, 4504, 17, 5, UNI_BAMU } /* scriptextensions=bamum */,
+ { 4, 8782, 4504, 7, 4, UNI_BAMU } /* script=bamu */,
+ { 2, 9691, 4442, 4, 16, UNI_TANGUTSUP } /* blk=tangutsupplement */,
+ { 3, 3877, 7, 17, 18, UNI_CANS } /* scriptextensions=canadianaboriginal */,
+ { 1, 9476, 3139, 3, 4, UNI_SC__DEVA } /* sc=deva */,
+ { 1, 9979, 10123, 4, 4, UNI_ZZZZ } /* scx=zzzz */,
+ { 0, 3877, 8388, 17, 8, UNI_JAVA } /* scriptextensions=javanese */,
+ { 1, 9743, 9454, 4, 5, -UNI_DEP } /* dep=false */,
+ { 8, 9979, 4759, 4, 15, UNI_ARMI } /* scx=imperialaramaic */,
+ { 1, 9711, 3588, 4, 13, UNI_CCC__202 } /* ccc=attachedbelow */,
{ 0, 185, 6972, 2, 4, UNI_NAND } /* isnand */,
- { 1, 1418, 9405, 25, 4, UNI_CCC__35 } /* canonicalcombiningclass=ccc35 */,
- { 144, 1418, 8171, 24, 2, UNI_CCC__26 } /* canonicalcombiningclass=26 */,
- { 4, 7360, 5382, 10, 14, UNI_LB__BK } /* linebreak=mandatorybreak */,
- { 0, 8642, 1026, 7, 2, -UNI_HYPHEN } /* hyphen=no */,
- { 3, 5875, 8852, 13, 7, UNI_JG__THINYEH } /* joininggroup=thinyeh */,
- { 1, 185, 1, 3, 1, UNI_CN } /* iscn */,
- { 8, 9045, 10055, 6, 4, UNI_CWKCF } /* cwkcf=true */,
- { 0, 9691, 3365, 4, 8, UNI_DINGBATS } /* blk=dingbats */,
- { 1, 185, 184, 2, 20, UNI_MISCSYMBOLS } /* ismiscellaneoussymbols */,
- { 19, 6083, 8937, 13, 5, UNI_NV__70000 } /* numericvalue=70000 */,
- { 2, 1019, 0, 5, 0, UNI_MUSIC } /* music */,
- { 294, 9691, 4090, 4, 16, UNI_GEORGIANEXT } /* blk=georgianextended */,
- { 423, 3877, 2227, 17, 14, UNI_ROHG } /* scriptextensions=hanifirohingya */,
- { 132, 8973, 3809, 6, 17, UNI_LETTERLIKESYMBOLS } /* block=letterlikesymbols */,
- { 49, 10268, 9635, 3, 4, UNI_NV__5_SLASH_12 } /* nv=5/12 */,
- { 1, 7360, 185, 10, 2, UNI_LB__IS } /* linebreak=is */,
- { 1, 10268, 9260, 3, 4, UNI_NV__1_SLASH_12 } /* nv=1/12 */,
- { 16, 9711, 8147, 4, 2, UNI_CCC__16 } /* ccc=16 */,
- { 3, 185, 9775, 2, 4, UNI_GREK } /* isgrek */,
- { 1, 9691, 3928, 4, 17, UNI_SUTTONSIGNWRITING } /* blk=suttonsignwriting */,
- { 2, 9549, 10055, 5, 4, UNI_XIDS } /* xids=true */,
- { 0, 8973, 9655, 6, 4, UNI_INAHOM } /* block=ahom */,
- { 0, 185, 868, 2, 18, UNI_PHONETICEXT } /* isphoneticextensions */,
- { 0, 185, 3193, 2, 11, UNI_ETHIOPICSUP } /* isethiopicsup */,
- { 0, 9434, 1, 5, 1, -UNI_CWCM } /* cwcm=n */,
- { 0, 185, 5256, 2, 14, UNI_KANASUP } /* iskanasupplement */,
- { 262, 7218, 4505, 3, 14, UNI_BAMUMSUP } /* inbamumsupplement */,
- { 2, 1990, 8484, 22, 8, UNI_INSC__TONEMARK } /* indicsyllabiccategory=tonemark */,
- { 3, 9691, 8635, 4, 7, UNI_INHANUNOO } /* blk=hanunoo */,
- { 313, 1770, 4954, 22, 4, UNI_BPT__O } /* bidipairedbrackettype=open */,
- { 0, 9743, 9454, 4, 5, -UNI_DEP } /* dep=false */,
- { 3, 3121, 6001, 18, 4, UNI_DT__NONE } /* decompositiontype=none */,
- { 0, 9711, 9305, 5, 4, UNI_CCC__15 } /* ccc=ccc15 */,
- { 1, 9691, 7600, 4, 10, UNI_YIRADICALS } /* blk=yiradicals */,
- { 0, 9979, 10051, 4, 4, UNI_TOTO } /* scx=toto */,
- { 9, 8642, 9454, 7, 5, -UNI_HYPHEN } /* hyphen=false */,
- { 0, 3877, 10115, 17, 4, UNI_QAAI } /* scriptextensions=zinh */,
- { 0, 7360, 8413, 11, 7, UNI_LB__LF } /* linebreak=linefeed */,
- { 0, 7570, 0, 4, 0, UNI_WARA } /* wara */,
- { 58, 185, 7210, 2, 10, UNI_ASCII } /* isbasiclatin */,
- { 2, 9476, 3826, 3, 10, UNI_SC__MANI } /* sc=manichaean */,
- { 3, 8973, 1370, 6, 24, UNI_ARABICPFA } /* block=arabicpresentationformsa */,
- { 0, 9927, 1026, 4, 2, -UNI_PCM } /* pcm=no */,
- { 9, 3877, 7330, 17, 10, UNI_KHAR } /* scriptextensions=kharoshthi */,
- { 0, 6083, 9631, 13, 4, UNI_NV__3_SLASH_80 } /* numericvalue=3/80 */,
- { 0, 9727, 10355, 4, 3, UNI_CWL } /* cwl=yes */,
- { 0, 8973, 3571, 6, 17, UNI_ALCHEMICAL } /* block=alchemicalsymbols */,
+ { 33, 6340, 511, 3, 29, UNI_CJKEXTA } /* incjkunifiedideographsextensiona */,
+ { 2, 9831, 0, 3, 0, UNI_LAO } /* lao */,
+ { 2, 4714, 36, 15, 1, UNI_GREXT } /* graphemeextend=t */,
+ { 0, 8782, 9831, 7, 3, UNI_LAO } /* script=lao */,
+ { 0, 8973, 4442, 6, 9, UNI_TANGUTSUP } /* block=tangutsup */,
+ { 13, 9063, 26, 6, 1, UNI_EPRES } /* epres=y */,
+ { 1, 8973, 780, 6, 30, UNI_SYMBOLSANDPICTOGRAPHSEXTA } /* block=symbolsandpictographsextendeda */,
+ { 5, 3877, 8420, 17, 8, UNI_MAHJ } /* scriptextensions=mahajani */,
+ { 136, 9731, 26, 4, 1, UNI_CWT } /* cwt=y */,
+ { 0, 9711, 8027, 4, 2, UNI_CCC__22 } /* ccc=22 */,
+ { 5, 10247, 4804, 3, 15, UNI_JG__MANICHAEANGIMEL } /* jg=manichaeangimel */,
+ { 1, 4074, 6132, 16, 2, UNI_PF } /* generalcategory=pf */,
+ { 2, 2808, 864, 4, 4, UNI_ARROWS } /* inarrows */,
+ { 24, 9979, 9699, 4, 4, UNI_BUHD } /* scx=buhd */,
+ { 13, 1418, 8211, 24, 2, UNI_CCC__18 } /* canonicalcombiningclass=18 */,
+ { 139, 8782, 8356, 7, 4, UNI_SC__HIRA } /* script=hira */,
+ { 0, 3622, 0, 17, 0, UNI_AGHB } /* caucasianalbanian */,
+ { 66, 2242, 9896, 3, 2, UNI_INNKO } /* innko */,
+ { 0, 185, 7709, 2, 9, UNI_SIND } /* iskhudawadi */,
+ { 2, 185, 3193, 2, 11, UNI_ETHIOPICSUP } /* isethiopicsup */,
+ { 46, 4463, 3141, 4, 16, UNI_DEVANAGARIEXT } /* indevanagariextended */,
+ { 0, 2248, 3464, 3, 17, UNI_SMALLKANAEXT } /* insmallkanaextension */,
+ { 1, 6290, 0, 12, 0, UNI_GONG } /* gunjalagondi */,
+ { 1, 3894, 10055, 17, 4, UNI_STERM } /* sentenceterminal=true */,
{ 1, 9476, 9719, 3, 4, UNI_SC__CPMN } /* sc=cpmn */,
- { 812, 9429, 0, 5, 0, UNI_cwcf_values_index } /* cwcf= */,
- { 8, 1553, 10396, 9, 2, UNI_ZL } /* category=zl */,
- { 4, 9755, 0, 4, 0, UNI_DSRT } /* dsrt */,
- { 1, 7580, 496, 10, 2, UNI_WB__NU } /* wordbreak=nu */,
- { 48, 21, 9524, 2, 5, UNI_INRUNIC } /* inrunic */,
- { 0, 9476, 9687, 3, 4, UNI_BHKS } /* sc=bhks */,
- { 0, 7360, 3, 11, 1, UNI_LB__LF } /* linebreak=lf */,
- { 747, 9663, 0, 4, 0, UNI_ARMI } /* armi */,
- { 101, 7297, 2228, 3, 13, UNI_ROHG } /* ishanifirohingya */,
- { 38, 4074, 340, 16, 2, UNI_LO } /* generalcategory=lo */,
- { 43, 185, 868, 2, 28, UNI_PHONETICEXTSUP } /* isphoneticextensionssupplement */,
- { 129, 9469, 5044, 5, 15, UNI_LOE } /* inpc=visualorderleft */,
- { 3, 10217, 0, 3, 0, UNI_bc_values_index } /* bc= */,
- { 1, 8973, 8356, 6, 8, UNI_INHIRAGANA } /* block=hiragana */,
- { 33, 6083, 8188, 13, 8, UNI_NV__2_SLASH_3 } /* numericvalue=6.67e-01 */,
- { 24, 8810, 0, 4, 0, UNI_SOYO } /* soyo */,
- { 68, 185, 44, 3, 2, UNI_CJK } /* iscjk */,
- { 12, 118, 448, 3, 31, UNI_IDEOGRAPHICSYMBOLS } /* inideographicsymbolsandpunctuation */,
- { 64, 8973, 3139, 6, 18, UNI_DEVANAGARIEXT } /* block=devanagariextended */,
- { 13, 2304, 7432, 4, 8, UNI_SOGO } /* isoldsogdian */,
- { 68, 8973, 3911, 6, 17, UNI_SMALLFORMS } /* block=smallformvariants */,
- { 1, 10268, 8004, 3, 8, UNI_NV__5_SLASH_2 } /* nv=2.50e+00 */,
- { 2, 1320, 0, 25, 0, UNI_SYMBOLSANDPICTOGRAPHSEXTA } /* symbolsandpictographsexta */,
- { 2, 9979, 4759, 4, 15, UNI_ARMI } /* scx=imperialaramaic */,
- { 0, 4865, 1163, 4, 2, UNI_CPRT } /* iscprt */,
- { 1, 10352, 8313, 3, 3, UNI_WB__EB } /* wb=gaz */,
- { 204, 2974, 0, 19, 0, UNI_SUPARROWSB } /* supplementalarrowsb */,
- { 24, 2085, 0, 4, 0, UNI_MODI } /* modi */,
- { 0, 3894, 3, 17, 1, -UNI_STERM } /* sentenceterminal=f */,
- { 18, 9979, 4924, 4, 15, UNI_NARB } /* scx=oldnortharabian */,
- { 0, 8579, 0, 7, 0, UNI_CJKEXTF } /* cjkextf */,
- { 0, 2373, 0, 20, 0, UNI_PC } /* connectorpunctuation */,
- { 4, 1858, 3, 22, 1, -UNI_CWT } /* changeswhentitlecased=f */,
- { 2, 185, 2165, 3, 20, UNI_CYRILLICSUP } /* iscyrillicsupplementary */,
- { 366, 9429, 1, 5, 1, -UNI_CWCF } /* cwcf=n */,
- { 3, 8782, 9707, 7, 4, UNI_CANS } /* script=cans */,
- { 392, 6386, 0, 7, 0, UNI_MAHJONG } /* mahjong */,
- { 2, 868, 0, 11, 0, UNI_PHONETICEXT } /* phoneticext */,
- { 0, 10280, 1, 3, 1, -UNI_RI } /* ri=n */,
- { 0, 9476, 7570, 3, 10, UNI_WARA } /* sc=warangciti */,
- { 27, 4202, 0, 16, 0, UNI_LINEARBSYLLABARY } /* linearbsyllabary */,
- { 0, 8782, 9117, 7, 6, UNI_LEPC } /* script=lepcha */,
- { 0, 10247, 5480, 3, 14, UNI_JG__MANICHAEANRESH } /* jg=manichaeanresh */,
- { 0, 10508, 468, 8, 5, UNI_XPOSIXPUNCT } /* isxposixpunct */,
- { 0, 2056, 1, 22, 1, -UNI__PERL_NCHAR } /* noncharactercodepoint=n */,
- { 6, 9979, 2353, 4, 20, UNI_HLUW } /* scx=anatolianhieroglyphs */,
- { 0, 1852, 3, 6, 1, -UNI_CASED } /* cased=f */,
- { 2, 1553, 3301, 9, 18, UNI_PI } /* category=initialpunctuation */,
- { 1, 9979, 5227, 4, 4, UNI_CHAM } /* scx=cham */,
- { 0, 8782, 2879, 7, 9, UNI_SC__MONG } /* script=mongolian */,
- { 8, 8973, 909, 6, 14, UNI_PUA } /* block=privateusearea */,
- { 3, 3121, 1295, 18, 5, UNI_DT__SUP } /* decompositiontype=super */,
- { 4, 7580, 5669, 10, 2, UNI_WB__EB } /* wordbreak=eb */,
- { 36, 9711, 9499, 4, 5, UNI_CCC__7 } /* ccc=nukta */,
- { 11, 2936, 0, 4, 0, UNI_SUND } /* sund */,
- { 4, 9691, 660, 4, 30, UNI_CJKEXTF } /* blk=cjkunifiedideographsextensionf */,
- { 0, 3877, 9967, 17, 4, UNI_RUNR } /* scriptextensions=runr */,
- { 0, 5662, 36, 15, 1, UNI_SB__ST } /* sentencebreak=st */,
- { 98, 8973, 1345, 6, 25, UNI_SYMBOLSFORLEGACYCOMPUTING } /* block=symbolsforlegacycomputing */,
- { 0, 9476, 8979, 3, 6, UNI_CARI } /* sc=carian */,
- { 706, 4157, 1931, 3, 15, UNI_INDICNUMBERFORMS } /* isindicnumberforms */,
- { 0, 9691, 2085, 4, 4, UNI_INMODI } /* blk=modi */,
- { 96, 6697, 26, 11, 1, UNI_XPOSIXALPHA } /* alphabetic=y */,
- { 0, 9691, 4489, 4, 15, UNI_ARABICEXTB } /* blk=arabicextendedb */,
- { 1, 9647, 10199, 4, 3, UNI_AGE__6_DOT_1 } /* age=6.1 */,
- { 0, 3707, 0, 17, 0, UNI_ETHIOPICEXTA } /* ethiopicextendeda */,
- { 0, 8782, 9739, 7, 4, UNI_SC__CYRL } /* script=cyrl */,
- { 52, 6340, 2691, 4, 17, UNI_COUNTINGROD } /* incountingrodnumerals */,
- { 2, 9871, 0, 3, 0, UNI_MRO } /* mro */,
- { 2, 8887, 3, 7, 1, -UNI_XPOSIXSPACE } /* wspace=f */,
- { 384, 9979, 6302, 4, 6, UNI_HEBR } /* scx=hebrew */,
- { 18, 8973, 750, 6, 16, UNI_ENCLOSEDALPHANUM } /* block=enclosedalphanum */,
- { 0, 9743, 0, 4, 0, UNI_dep_values_index } /* dep= */,
- { 2, 185, 5771, 2, 13, UNI_BLOCKELEMENTS } /* isblockelements */,
- { 3, 9449, 0, 10, 0, -UNI_EMOD } /* emod=false */,
- { 5, 9979, 6386, 4, 4, UNI_MAHJ } /* scx=mahj */,
- { 3, 7230, 3741, 10, 17, UNI_BC__ES } /* bidiclass=europeanseparator */,
- { 9, 4074, 729, 16, 6, UNI_N } /* generalcategory=number */,
- { 0, 9711, 8901, 4, 3, UNI_CCC__216 } /* ccc=216 */,
- { 1, 10229, 2593, 3, 4, UNI_DT__VERT } /* dt=vert */,
- { 65, 7467, 8099, 3, 2, UNI_IN__14 } /* in=14 */,
- { 0, 6697, 9454, 11, 5, -UNI_XPOSIXALPHA } /* alphabetic=false */,
- { 2, 2304, 4347, 3, 15, UNI_PO } /* isotherpunctuation */,
- { 261, 8973, 4314, 6, 7, UNI_INMYANMAR } /* block=myanmar */,
- { 2, 8973, 4442, 6, 16, UNI_TANGUTSUP } /* block=tangutsupplement */,
- { 0, 8961, 3, 6, 1, -UNI_BIDIC } /* bidic=f */,
- { 0, 10223, 10355, 3, 3, UNI_CI } /* ci=yes */,
- { 1, 8973, 8340, 6, 8, UNI_INGUJARATI } /* block=gujarati */,
- { 0, 185, 8537, 2, 7, UNI_BENG } /* isbengali */,
- { 1, 1418, 9335, 25, 4, UNI_CCC__21 } /* canonicalcombiningclass=ccc21 */,
- { 24, 10247, 5704, 3, 10, UNI_JG__TEHMARBUTA } /* jg=tehmarbuta */,
- { 28, 6083, 5732, 13, 9, UNI_NV__100000000 } /* numericvalue=100000000 */,
- { 1, 2248, 2312, 3, 6, UNI_INSINHALA } /* insinhala */,
- { 4, 185, 7330, 2, 10, UNI_KHAR } /* iskharoshthi */,
- { 0, 8973, 5242, 6, 14, UNI_HIGHSURROGATES } /* block=highsurrogates */,
- { 0, 10247, 9995, 3, 4, UNI_JG__SHIN } /* jg=shin */,
- { 0, 185, 1014, 2, 5, UNI_GREK } /* isgreek */,
- { 2, 7218, 7211, 3, 9, UNI_ASCII } /* inbasiclatin */,
- { 1, 21, 9656, 3, 3, UNI_INAHOM } /* inahom */,
- { 7, 3877, 9791, 17, 4, UNI_HLUW } /* scriptextensions=hluw */,
- { 0, 9711, 9405, 5, 4, UNI_CCC__35 } /* ccc=ccc35 */,
- { 9, 2332, 0, 21, 0, UNI_YIJING } /* yijinghexagramsymbols */,
- { 3, 185, 3104, 3, 17, UNI_COPTICEPACTNUMBERS } /* iscopticepactnumbers */,
- { 3, 9691, 8796, 4, 7, UNI_SHAW } /* blk=shavian */,
- { 733, 10253, 341, 3, 2, UNI_LB__OP } /* lb=op */,
- { 2, 2304, 7810, 4, 7, UNI_ITAL } /* isolditalic */,
- { 0, 185, 3050, 3, 7, UNI_CHER } /* ischerokee */,
- { 0, 6741, 1, 11, 1, -UNI_DEP } /* deprecated=n */,
- { 0, 1418, 8988, 24, 3, UNI_CCC__103 } /* canonicalcombiningclass=103 */,
- { 22, 185, 8691, 2, 4, UNI_MULT } /* ismult */,
- { 0, 1553, 0, 10, 0, UNI_S } /* category=s */,
- { 32, 9691, 7241, 5, 9, UNI_BOXDRAWING } /* blk=boxdrawing */,
- { 57, 185, 3319, 2, 9, UNI_LATINEXTA } /* islatinexta */,
- { 0, 9464, 10355, 5, 3, UNI_IDST } /* idst=yes */,
- { 0, 1418, 8099, 24, 2, UNI_CCC__14 } /* canonicalcombiningclass=14 */,
- { 0, 10553, 2937, 3, 8, UNI_SUND } /* issundanese */,
- { 6, 9290, 8302, 4, 6, UNI_INDUPLOYAN } /* induployan */,
- { 3, 6529, 4925, 3, 14, UNI_NARB } /* inoldnortharabian */,
+ { 0, 7420, 0, 10, 0, UNI_XPEO } /* oldpersian */,
+ { 32, 185, 150, 3, 34, UNI_DIACRITICALSSUP } /* iscombiningdiacriticalmarkssupplement */,
+ { 40, 8782, 9284, 7, 5, UNI_BATK } /* script=batak */,
+ { 0, 2304, 6592, 4, 10, UNI_HUNG } /* isoldhungarian */,
+ { 3, 6083, 8091, 13, 2, UNI_NV__24 } /* numericvalue=24 */,
+ { 0, 9979, 9444, 4, 5, UNI_DOGR } /* scx=dogra */,
+ { 0, 8691, 0, 4, 0, UNI_MULT } /* mult */,
+ { 2, 7360, 10376, 10, 2, UNI_LB__BK } /* linebreak=bk */,
+ { 3, 1553, 1530, 11, 7, UNI__PERL_SURROGATE } /* category=surrogate */,
+ { 32, 21, 7709, 2, 9, UNI_INKHUDAWADI } /* inkhudawadi */,
+ { 0, 185, 3445, 2, 4, UNI_RUMI } /* isrumi */,
+ { 0, 3877, 8607, 17, 4, UNI_ELBA } /* scriptextensions=elba */,
+ { 1, 8782, 9907, 7, 4, UNI_OLCK } /* script=olck */,
+ { 72, 4972, 1117, 3, 3, UNI_TANG } /* istang */,
+ { 158, 10253, 8428, 3, 8, UNI_LB__NL } /* lb=nextline */,
+ { 101, 5927, 0, 13, 0, UNI_LOWSURROGATES } /* lowsurrogates */,
+ { 42, 10352, 6278, 3, 12, UNI_WB__EB } /* wb=glueafterzwj */,
+ { 13, 10516, 5095, 7, 6, UNI_POSIXXDIGIT } /* isposixxdigit */,
+ { 78, 8705, 17, 8, 1, UNI_NFKCQC__N } /* nfkcqc=no */,
+ { 0, 1190, 6001, 3, 4, UNI_NV__NAN } /* nt=none */,
+ { 0, 8817, 0, 7, 0, UNI_SUPPUAA } /* suppuaa */,
+ { 1, 10247, 10277, 3, 3, UNI_JG__REH } /* jg=reh */,
+ { 1, 9476, 9959, 3, 4, UNI_RJNG } /* sc=rjng */,
+ { 0, 10247, 9983, 3, 4, UNI_JG__SEEN } /* jg=seen */,
+ { 0, 4972, 5000, 3, 14, UNI_TITLE } /* istitlecaseletter */,
+ { 3, 185, 2146, 2, 7, UNI_RADICAL } /* isradical */,
+ { 1, 1026, 0, 2, 0, UNI_NO } /* no */,
+ { 1, 3398, 1, 11, 1, -UNI_XPOSIXSPACE } /* whitespace=n */,
+ { 259, 6158, 10055, 12, 4, UNI_BIDIC } /* bidicontrol=true */,
+ { 2, 7218, 1587, 3, 13, UNI_BYZANTINEMUSIC } /* inbyzantinemusic */,
+ { 2, 9979, 7310, 4, 10, UNI_DIAK } /* scx=divesakuru */,
+ { 9, 1814, 3, 22, 1, -UNI_CWCM } /* changeswhencasemapped=f */,
+ { 73, 4972, 8839, 3, 6, UNI_LANA } /* istaitham */,
+ { 0, 3877, 2632, 17, 6, UNI_BRAH } /* scriptextensions=brahmi */,
+ { 37, 9691, 1442, 4, 10, UNI_CJKSYMBOLS } /* blk=cjksymbols */,
+ { 21, 7360, 6278, 10, 4, UNI_LB__GL } /* linebreak=glue */,
+ { 128, 9057, 10055, 6, 4, UNI_EMOJI } /* emoji=true */,
+ { 0, 8782, 1655, 7, 6, UNI_SC__HANG } /* script=hangul */,
+ { 0, 185, 3193, 2, 8, UNI_ETHI } /* isethiopic */,
+ { 1, 9711, 9022, 5, 5, UNI_CCC__132 } /* ccc=ccc132 */,
+ { 5, 7467, 8100, 3, 3, UNI_IN__4_DOT_1 } /* in=4.1 */,
+ { 0, 9667, 0, 4, 0, UNI_ARMN } /* armn */,
+ { 10, 7467, 8099, 3, 2, UNI_IN__14 } /* in=14 */,
+ { 3, 9476, 9534, 3, 5, UNI_SC__TAKR } /* sc=takri */,
+ { 35, 1061, 0, 27, 0, UNI_OCR } /* opticalcharacterrecognition */,
+ { 0, 7580, 1219, 10, 8, UNI_WB__KA } /* wordbreak=katakana */,
+ { 3, 185, 5522, 2, 14, UNI_SK } /* ismodifiersymbol */,
+ { 45, 8881, 7639, 4, 7, UNI_ARABICPFA } /* isarabicpfa */,
+ { 0, 8973, 44, 7, 35, UNI_CJKCOMPATIDEOGRAPHSSUP } /* block=cjkcompatibilityideographssupplement */,
+ { 3, 9979, 7817, 4, 9, UNI_PERM } /* scx=oldpermic */,
+ { 1, 9979, 9903, 4, 4, UNI_OGAM } /* scx=ogam */,
+ { 0, 185, 1061, 3, 5, UNI_COPT } /* iscoptic */,
+ { 0, 9214, 1, 5, 1, -UNI_IDEO } /* ideo=n */,
+ { 32, 21, 4186, 2, 16, UNI_LINEARBIDEOGRAMS } /* inlinearbideograms */,
+ { 0, 8537, 0, 4, 0, UNI_BENG } /* beng */,
+ { 0, 4699, 10055, 15, 4, UNI_ECOMP } /* emojicomponent=true */,
+ { 104, 8973, 1674, 6, 4, UNI_JAMO } /* block=jamo */,
+ { 121, 6083, 10136, 13, 3, UNI_NV__2_SLASH_3 } /* numericvalue=2/3 */,
+ { 257, 8881, 5089, 3, 12, UNI_POSIXXDIGIT } /* isasciihexdigit */,
+ { 0, 10268, 9604, 3, 3, UNI_NV__3_SLASH_2 } /* nv=3/2 */,
+ { 0, 6083, 10368, 13, 2, UNI_NV__47 } /* numericvalue=47 */,
+ { 1, 10560, 2423, 3, 3, UNI_VITH } /* isvith */,
+ { 5, 8973, 2841, 6, 19, UNI_MERO } /* block=meroitichieroglyphs */,
+ { 193, 10247, 5508, 3, 14, UNI_JG__MANICHAEANYODH } /* jg=manichaeanyodh */,
+ { 0, 185, 9751, 2, 4, UNI_DIAK } /* isdiak */,
+ { 0, 185, 4381, 2, 13, UNI_MATHOPERATORS } /* ismathoperators */,
+ { 4, 7297, 1194, 3, 25, UNI_HALFANDFULLFORMS } /* ishalfwidthandfullwidthforms */,
+ { 0, 10217, 2473, 3, 11, UNI_BC__L } /* bc=lefttoright */,
+ { 0, 9177, 9454, 6, 5, -UNI_QMARK } /* qmark=false */,
+ { 1, 9474, 4394, 5, 16, UNI_INSC__SYLLABLEMODIFIER } /* insc=syllablemodifier */,
+ { 0, 10244, 6719, 3, 11, UNI_CASEDLETTER } /* gc=casedletter */,
+ { 1, 3877, 9655, 17, 4, UNI_AHOM } /* scriptextensions=ahom */,
+ { 33, 7811, 0, 4, 0, UNI_ITAL } /* ital */,
+ { 128, 185, 184, 2, 34, UNI_MISCPICTOGRAPHS } /* ismiscellaneoussymbolsandpictographs */,
+ { 3, 9695, 4954, 4, 4, UNI_BPT__O } /* bpt=open */,
+ { 4, 9190, 0, 6, 0, UNI_TERM } /* term=t */,
+ { 0, 10508, 97, 8, 5, UNI_XPOSIXALPHA } /* isxposixalpha */,
+ { 0, 2593, 3517, 20, 18, UNI_VO__TR } /* verticalorientation=transformedrotated */,
+ { 0, 9476, 8292, 3, 4, UNI_SC__BUGI } /* sc=bugi */,
+ { 32, 9711, 4175, 4, 1, UNI_CCC__1 } /* ccc=1 */,
+ { 2, 6994, 0, 11, 0, UNI_NO } /* othernumber */,
+ { 4, 185, 401, 2, 6, UNI_CF } /* isformat */,
+ { 5, 1115, 1, 26, 1, -UNI_CWKCF } /* changeswhennfkccasefolded=n */,
+ { 1, 4847, 4315, 3, 6, UNI_INMYANMAR } /* inmyanmar */,
+ { 2, 185, 2690, 3, 18, UNI_COUNTINGROD } /* iscountingrodnumerals */,
+ { 0, 10223, 1026, 3, 2, -UNI_CI } /* ci=no */,
+ { 0, 8973, 1467, 7, 23, UNI_DIACRITICALSFORSYMBOLS } /* block=combiningmarksforsymbols */,
+ { 0, 10229, 1254, 3, 4, UNI_DT__INIT } /* dt=init */,
+ { 0, 4074, 10390, 16, 2, UNI_CASEDLETTER } /* generalcategory=l_ */,
+ { 0, 8642, 3, 7, 1, -UNI_HYPHEN } /* hyphen=f */,
+ { 4, 1506, 2278, 5, 5, UNI_GREEKEXT } /* ingreekext */,
+ { 0, 4744, 1285, 15, 9, UNI_IDENTIFIERTYPE__EXCLUSION } /* identifiertype=exclusion */,
+ { 0, 9691, 9201, 4, 6, UNI_INTELUGU } /* blk=telugu */,
+ { 15, 9979, 10051, 4, 4, UNI_TOTO } /* scx=toto */,
+ { 2, 5116, 0, 13, 0, UNI_CI } /* caseignorable */,
+ { 2, 3978, 0, 16, 0, UNI_BOPOMOFOEXT } /* bopomofoextended */,
+ { 0, 3049, 0, 11, 0, UNI_CHEROKEESUP } /* cherokeesup */,
+ { 0, 9979, 9195, 4, 6, UNI_TNSA } /* scx=tangsa */,
+ { 18, 9803, 7380, 4, 10, UNI_LB__H2 } /* hst=lvsyllable */,
+ { 2, 9171, 26, 6, 1, UNI__PERL_PATWS } /* patws=y */,
+ { 0, 4074, 38, 16, 2, UNI_XPOSIXDIGIT } /* generalcategory=nd */,
+ { 0, 9476, 6386, 3, 4, UNI_SC__MAHJ } /* sc=mahj */,
+ { 0, 9979, 5227, 4, 4, UNI_CHAM } /* scx=cham */,
+ { 1, 10268, 7948, 3, 8, UNI_NV__1_SLASH_7 } /* nv=1.43e-01 */,
+ { 0, 8955, 26, 6, 1, UNI_XPOSIXALPHA } /* alpha=y */,
+ { 0, 7360, 909, 10, 2, UNI_LB__PR } /* linebreak=pr */,
+ { 6, 8782, 1116, 7, 4, UNI_SC__HANG } /* script=hang */,
+ { 1, 896, 0, 28, 0, UNI_SUPPUAA } /* supplementaryprivateuseareaa */,
+ { 0, 5823, 3, 13, 1, -UNI_GRBASE } /* graphemebase=f */,
+ { 0, 8782, 10119, 7, 4, UNI_SC__ZYYY } /* script=zyyy */,
+ { 1, 6675, 0, 3, 0, UNI_IDC } /* idc */,
+ { 3, 185, 3247, 2, 18, UNI_INPUNCTUATION } /* isgeneralpunctuation */,
+ { 1, 10268, 9367, 3, 2, UNI_NV__27 } /* nv=27 */,
+ { 1, 1858, 9454, 22, 5, -UNI_CWT } /* changeswhentitlecased=false */,
+ { 0, 6350, 6, 12, 1, UNI_JT__D } /* joiningtype=d */,
+ { 0, 10352, 0, 3, 0, UNI_wb_values_index } /* wb= */,
+ { 4, 8782, 2453, 7, 20, UNI_PHLI } /* script=inscriptionalpahlavi */,
+ { 0, 9691, 3571, 4, 17, UNI_ALCHEMICAL } /* blk=alchemicalsymbols */,
+ { 2, 7460, 10059, 10, 4, UNI_IN__10 } /* presentin=v100 */,
+ { 1, 8973, 9519, 6, 5, UNI_INOSAGE } /* block=osage */,
+ { 0, 9735, 0, 3, 0, UNI_CWU } /* cwu */,
+ { 0, 4972, 10036, 3, 3, UNI_TGLG } /* istglg */,
+ { 0, 5875, 6018, 13, 13, UNI_JG__MANICHAEANTEN } /* joininggroup=manichaeanten */,
+ { 0, 10247, 5704, 3, 14, UNI_JG__HAMZAONHEHGOAL } /* jg=tehmarbutagoal */,
+ { 1, 8973, 8545, 7, 6, UNI_CJKEXTA } /* block=cjkexta */,
+ { 1, 2936, 0, 9, 0, UNI_SUND } /* sundanese */,
+ { 0, 8881, 1008, 3, 26, UNI_ANCIENTGREEKMUSIC } /* isancientgreekmusicalnotation */,
+ { 0, 9476, 8468, 3, 8, UNI_SC__TAGB } /* sc=tagbanwa */,
+ { 91, 6340, 1062, 4, 4, UNI_INCOPTIC } /* incoptic */,
+ { 1, 8782, 9519, 7, 5, UNI_OSGE } /* script=osage */,
+ { 1, 9129, 0, 6, 0, UNI_LYCI } /* lycian */,
+ { 3, 9979, 7501, 5, 3, UNI_SAUR } /* scx=saur */,
+ { 1, 9711, 9225, 4, 6, UNI_CCC__9 } /* ccc=virama */,
+ { 3, 3877, 9895, 17, 3, UNI_NKO } /* scriptextensions=nko */,
+ { 17, 8782, 8635, 7, 7, UNI_SC__HANO } /* script=hanunoo */,
+ { 1, 3877, 8811, 18, 3, UNI_SOYO } /* scriptextensions=soyo */,
+ { 0, 9847, 1026, 4, 2, -UNI_LOE } /* loe=no */,
+ { 0, 185, 9887, 2, 4, UNI_NBAT } /* isnbat */,
+ { 18, 7467, 10307, 3, 3, UNI_IN__3_DOT_2 } /* in=v32 */,
+ { 30, 6083, 5733, 13, 1, UNI_NV__0 } /* numericvalue=0 */,
+ { 0, 185, 2433, 2, 10, UNI_GLAG } /* isglagolitic */,
+ { 129, 8768, 26, 7, 1, UNI_PATSYN } /* patsyn=y */,
+ { 3, 2311, 0, 4, 0, UNI_SINH } /* sinh */,
+ { 0, 9979, 7430, 4, 10, UNI_SOGO } /* scx=oldsogdian */,
+ { 1, 9997, 1703, 4, 21, UNI_SHORTHANDFORMATCONTROLS } /* inshorthandformatcontrols */,
+ { 19, 185, 9075, 2, 5, UNI_GREXT } /* isgrext */,
+ { 7, 1270, 26, 25, 1, UNI_COMPEX } /* fullcompositionexclusion=y */,
+ { 5, 114, 0, 25, 0, UNI_DIACRITICALS } /* combiningdiacriticalmarks */,
+ { 0, 9476, 7862, 3, 9, UNI_SAMR } /* sc=samaritan */,
+ { 0, 8973, 3463, 6, 12, UNI_SMALLKANAEXT } /* block=smallkanaext */,
+ { 70, 185, 3724, 2, 17, UNI_ETHIOPICEXTB } /* isethiopicextendedb */,
+ { 8, 9647, 9587, 4, 4, UNI_AGE__11 } /* age=11.0 */,
+ { 0, 9979, 9482, 4, 4, UNI_PHLI } /* scx=phli */,
+ { 1, 10253, 10374, 3, 2, UNI_LB__B2 } /* lb=b2 */,
+ { 68, 185, 4504, 2, 5, UNI_BAMU } /* isbamum */,
+ { 33, 9691, 5029, 4, 8, UNI_VEDICEXT } /* blk=vedicext */,
+ { 139, 8973, 4610, 7, 14, UNI_CONTROLPICTURES } /* block=controlpictures */,
+ { 1, 8973, 6939, 6, 11, UNI_MISCSYMBOLS } /* block=miscsymbols */,
+ { 53, 9691, 9295, 5, 4, UNI_INBUHID } /* blk=buhid */,
+ { 3, 9269, 10355, 5, 3, UNI_POSIXXDIGIT } /* ahex=yes */,
+ { 0, 8973, 4759, 6, 15, UNI_INIMPERIALARAMAIC } /* block=imperialaramaic */,
+ { 5, 9711, 8235, 4, 2, UNI_CCC__28 } /* ccc=28 */,
+ { 144, 3409, 36, 18, 1, UNI_RI } /* regionalindicator=t */,
+ { 8, 97, 0, 10, 0, UNI_XPOSIXALPHA } /* alphabetic */,
+ { 22, 185, 9783, 2, 4, UNI_GURU } /* isguru */,
+ { 174, 9997, 8798, 4, 5, UNI_SHAW } /* inshavian */,
+ { 124, 8782, 866, 10, 1, UNI_SHAW } /* script=shaw */,
+ { 0, 9979, 8656, 4, 7, UNI_KALI } /* scx=kayahli */,
+ { 1, 10268, 8028, 3, 4, UNI_NV__2000 } /* nv=2000 */,
+ { 0, 3283, 9454, 18, 5, -UNI_IDSB } /* idsbinaryoperator=false */,
+ { 1, 10244, 1, 3, 1, UNI_N } /* gc=n */,
+ { 12, 9474, 5158, 5, 14, UNI_INSC__CONSONANTFINAL } /* insc=consonantfinal */,
+ { 0, 3406, 9454, 3, 5, -UNI_CE } /* ce=false */,
+ { 5, 9691, 9195, 4, 6, UNI_INTANGSA } /* blk=tangsa */,
+ { 2, 21, 5298, 2, 14, UNI_LATINEXTC } /* inlatinextendedc */,
+ { 5, 1167, 1, 26, 1, -UNI_DI } /* defaultignorablecodepoint=n */,
+ { 3, 1553, 4999, 9, 15, UNI_TITLE } /* category=titlecaseletter */,
+ { 18, 8782, 9891, 7, 4, UNI_NEWA } /* script=newa */,
+ { 0, 9979, 8649, 4, 7, UNI_KNDA } /* scx=kannada */,
+ { 32, 10217, 4549, 3, 15, UNI_BC__CS } /* bc=commonseparator */,
+ { 1, 9695, 17, 4, 1, UNI_BPT__O } /* bpt=o */,
+ { 0, 9979, 9069, 4, 6, UNI_GOTH } /* scx=gothic */,
+ { 0, 5830, 3, 6, 1, -UNI_EBASE } /* ebase=f */,
+ { 0, 1990, 7799, 22, 9, UNI_INSC__NONJOINER } /* indicsyllabiccategory=nonjoiner */,
+ { 0, 9189, 1, 6, 1, -UNI_STERM } /* sterm=n */,
+ { 2, 5862, 0, 13, 0, UNI_IPAEXT } /* ipaextensions */,
+ { 52, 118, 448, 3, 17, UNI_IDEOGRAPHICSYMBOLS } /* inideographicsymbols */,
+ { 9, 7580, 8313, 10, 3, UNI_WB__EB } /* wordbreak=gaz */,
+ { 3, 185, 6195, 3, 11, UNI_CYRILLICEXTA } /* iscyrillicexta */,
+ { 0, 9476, 5059, 3, 15, UNI_ZANB } /* sc=zanabazarsquare */,
+ { 1, 1418, 7619, 24, 9, UNI_CCC__AL } /* canonicalcombiningclass=aboveleft */,
+ { 132, 10352, 2468, 3, 2, UNI_LB__HL } /* wb=hl */,
+ { 66, 8973, 9895, 6, 3, UNI_INNKO } /* block=nko */,
+ { 0, 7060, 0, 10, 0, UNI_SD } /* softdotted */,
+ { 153, 8782, 1223, 7, 4, UNI_SC__KANA } /* script=kana */,
+ { 12, 2312, 4109, 5, 13, UNI_HALFANDFULLFORMS } /* inhalfandfullforms */,
+ { 116, 9979, 8420, 4, 8, UNI_MAHJ } /* scx=mahajani */,
+ { 18, 5875, 6432, 13, 5, UNI_JG__GAMAL } /* joininggroup=gamal */,
+ { 24, 10352, 34, 3, 6, UNI_WB__EXTEND } /* wb=extend */,
+ { 3, 8973, 810, 6, 22, UNI_ENCLOSEDIDEOGRAPHICSUP } /* block=enclosedideographicsup */,
+ { 44, 6083, 8907, 13, 5, UNI_NV__30000 } /* numericvalue=30000 */,
+ { 2, 1418, 10169, 24, 3, UNI_CCC__DA } /* canonicalcombiningclass=234 */,
+ { 0, 10280, 1026, 3, 2, -UNI_RI } /* ri=no */,
+ { 5, 9711, 3039, 4, 5, UNI_CCC__A } /* ccc=above */,
+ { 3, 7360, 10382, 10, 2, UNI_GCB__L } /* linebreak=jl */,
+ { 26, 9691, 7656, 5, 8, UNI_INBHAIKSUKI } /* blk=bhaiksuki */,
+ { 2, 10268, 8943, 3, 6, UNI_NV__800000 } /* nv=800000 */,
+ { 2, 6529, 9515, 3, 4, UNI_INORIYA } /* inoriya */,
+ { 27, 7467, 9599, 3, 4, UNI_IN__13 } /* in=13.0 */,
+ { 33, 9123, 9454, 6, 5, -UNI_XPOSIXLOWER } /* lower=false */,
+ { 7, 6083, 5732, 13, 4, UNI_NV__1000 } /* numericvalue=1000 */,
+ { 1, 9476, 3265, 3, 8, UNI_SC__GEOR } /* sc=georgian */,
+ { 0, 9429, 0, 5, 0, UNI_cwcf_values_index } /* cwcf= */,
+ { 9, 8316, 0, 9, 0, -UNI_EXTPICT } /* extpict=f */,
+ { 141, 2185, 0, 20, 0, UNI_EXTPICT } /* extendedpictographic */,
+ { 5, 9135, 0, 4, 0, UNI_LYDI } /* lydi */,
+ { 0, 185, 7210, 2, 10, UNI_ASCII } /* isbasiclatin */,
+ { 129, 9476, 9827, 3, 4, UNI_LANA } /* sc=lana */,
+ { 0, 6386, 0, 12, 0, UNI_MAHJONG } /* mahjongtiles */,
+ { 1, 7230, 0, 10, 0, UNI_bc_values_index } /* bidiclass= */,
+ { 1, 8607, 0, 7, 0, UNI_ELBA } /* elbasan */,
+ { 0, 8782, 1538, 8, 3, UNI_SC__SIND } /* script=sind */,
+ { 0, 8973, 4090, 6, 16, UNI_GEORGIANEXT } /* block=georgianextended */,
+ { 5, 1418, 5461, 24, 2, UNI_CCC__7 } /* canonicalcombiningclass=nk */,
+ { 2, 1553, 5582, 10, 10, UNI_MC } /* category=spacingmark */,
+ { 2, 3877, 9444, 17, 5, UNI_DOGR } /* scriptextensions=dogra */,
+ { 1, 1990, 1490, 22, 24, UNI_INSC__CONSONANTSUCCEEDINGREPHA } /* indicsyllabiccategory=consonantsucceedingrepha */,
+ { 74, 8973, 2936, 6, 9, UNI_INSUNDANESE } /* block=sundanese */,
+ { 24, 185, 27, 2, 2, UNI_LOWERCASELETTER } /* isll */,
+ { 2, 1187, 0, 2, 0, UNI_PO } /* po */,
+ { 0, 10268, 7923, 3, 2, UNI_NV__11 } /* nv=11 */,
+ { 40, 1418, 8998, 25, 5, UNI_CCC__118 } /* canonicalcombiningclass=ccc118 */,
+ { 34, 10247, 7340, 3, 10, UNI_JG__KNOTTEDHEH } /* jg=knottedheh */,
+ { 8, 7460, 8148, 10, 3, UNI_IN__6 } /* presentin=6.0 */,
+ { 33, 5875, 7177, 13, 2, UNI_JG__FE } /* joininggroup=fe */,
+ { 10, 185, 5797, 2, 13, UNI_XPOSIXDIGIT } /* isdecimalnumber */,
+ { 0, 10217, 3211, 3, 18, UNI_BC__ET } /* bc=europeanterminator */,
+ { 0, 8973, 2727, 6, 19, UNI_ENCLOSEDALPHANUMSUP } /* block=enclosedalphanumsup */,
+ { 0, 5875, 8460, 13, 8, UNI_JG__SWASHKAF } /* joininggroup=swashkaf */,
+ { 0, 8973, 4669, 6, 15, UNI_DIACRITICALSSUP } /* block=diacriticalssup */,
+ { 140, 5045, 1369, 3, 3, UNI_UGAR } /* isugar */,
+ { 0, 1418, 9367, 24, 2, UNI_CCC__27 } /* canonicalcombiningclass=27 */,
+ { 7, 3406, 3, 3, 1, -UNI_CE } /* ce=f */,
+ { 0, 9691, 4170, 4, 6, UNI_LATIN1 } /* blk=latin1 */,
+ { 1, 3945, 9454, 17, 5, -UNI_UIDEO } /* unifiedideograph=false */,
+ { 0, 5830, 10055, 6, 4, UNI_EBASE } /* ebase=true */,
+ { 4, 5875, 3843, 13, 17, UNI_JG__MANICHAEANHUNDRED } /* joininggroup=manichaeanhundred */,
+ { 9, 10223, 10055, 3, 4, UNI_CI } /* ci=true */,
+ { 1, 9270, 1026, 4, 2, -UNI_XPOSIXXDIGIT } /* hex=no */,
+ { 9, 9979, 2841, 4, 4, UNI_MERO } /* scx=mero */,
+ { 1, 9123, 36, 6, 1, UNI_XPOSIXLOWER } /* lower=t */,
+ { 2, 3758, 8523, 17, 7, UNI_IDENTIFIERSTATUS__ALLOWED } /* identifierstatus=allowed */,
+ { 1, 3448, 1, 3, 41, UNI_UCASEXT } /* inunifiedcanadianaboriginalsyllabicsextended */,
+ { 8, 8719, 0, 7, 0, UNI_NB } /* noblock */,
+ { 72, 5875, 9995, 13, 4, UNI_JG__SHIN } /* joininggroup=shin */,
+ { 1, 4972, 2101, 3, 21, UNI_TRANSPORTANDMAP } /* istransportandmapsymbols */,
+ { 36, 2164, 0, 21, 0, UNI_CYRILLICSUP } /* cyrillicsupplementary */,
+ { 14, 1418, 1780, 24, 2, UNI_CCC__BR } /* canonicalcombiningclass=br */,
+ { 1, 1538, 2479, 24, 5, UNI_INPC__RIGHT } /* indicpositionalcategory=right */,
+ { 0, 8607, 0, 4, 0, UNI_ELBA } /* elba */,
+ { 196, 3945, 36, 17, 1, UNI_UIDEO } /* unifiedideograph=t */,
+ { 1, 2206, 74, 21, 2, UNI_WB__EB } /* graphemeclusterbreak=em */,
+ { 17, 3877, 10119, 17, 4, UNI_ZYYY } /* scriptextensions=zyyy */,
{ 0, 9461, 496, 3, 2, UNI_SB__NU } /* sb=nu */,
- { 7, 8782, 8607, 7, 4, UNI_ELBA } /* script=elba */,
- { 9, 1270, 36, 25, 1, UNI_COMPEX } /* fullcompositionexclusion=t */,
- { 0, 9476, 10083, 3, 4, UNI_VAI } /* sc=vaii */,
- { 0, 10229, 0, 3, 0, UNI_dt_values_index } /* dt= */,
- { 1, 8967, 36, 6, 1, UNI_BIDIM } /* bidim=t */,
- { 2, 3877, 9963, 17, 4, UNI_ROHG } /* scriptextensions=rohg */,
- { 128, 5875, 2651, 13, 19, UNI_JG__BURUSHASKIYEHBARREE } /* joininggroup=burushaskiyehbarree */,
- { 11, 2003, 0, 10, 1, UNI_UPPERCASELETTER } /* category=lu */,
- { 1, 9695, 4954, 4, 4, UNI_BPT__O } /* bpt=open */,
- { 0, 9863, 0, 4, 0, UNI_MIAO } /* miao */,
- { 7, 9927, 9454, 4, 5, -UNI_PCM } /* pcm=false */,
- { 32, 9691, 1466, 4, 24, UNI_DIACRITICALSFORSYMBOLS } /* blk=combiningmarksforsymbols */,
- { 1, 8782, 10103, 7, 4, UNI_SC__YI } /* script=yiii */,
- { 0, 9979, 9081, 4, 6, UNI_HATR } /* scx=hatran */,
- { 4, 1990, 1490, 22, 24, UNI_INSC__CONSONANTSUCCEEDINGREPHA } /* indicsyllabiccategory=consonantsucceedingrepha */,
- { 0, 185, 1968, 2, 22, UNI_EARLYDYNASTICCUNEIFORM } /* isearlydynasticcuneiform */,
- { 1, 5592, 1026, 14, 2, -UNI_PATSYN } /* patternsyntax=no */,
- { 1, 185, 9524, 2, 5, UNI_RUNR } /* isrunic */,
- { 0, 8782, 4534, 7, 4, UNI_BRAI } /* script=brai */,
- { 0, 4972, 8839, 3, 6, UNI_LANA } /* istaitham */,
- { 0, 9476, 9294, 3, 5, UNI_SC__BUHD } /* sc=buhid */,
- { 11, 8782, 7781, 7, 9, UNI_NBAT } /* script=nabataean */,
- { 10, 2304, 8742, 4, 5, UNI_OLCK } /* isolchiki */,
- { 0, 1418, 10145, 24, 3, UNI_CCC__BL } /* canonicalcombiningclass=218 */,
- { 2, 8782, 1219, 7, 8, UNI_SC__KANA } /* script=katakana */,
- { 4, 2304, 263, 3, 3, UNI_OSMA } /* isosma */,
- { 0, 9063, 10355, 6, 3, UNI_EPRES } /* epres=yes */,
- { 263, 8961, 10355, 6, 3, UNI_BIDIC } /* bidic=yes */,
- { 4, 6340, 8566, 3, 6, UNI_CJKEXTD } /* incjkextd */,
- { 6, 9979, 9783, 4, 4, UNI_GURU } /* scx=guru */,
- { 513, 21, 4170, 2, 9, UNI_LATIN1 } /* inlatin1sup */,
- { 21, 5875, 7038, 13, 11, UNI_JG__ROHINGYAYEH } /* joininggroup=rohingyayeh */,
- { 1, 5758, 0, 12, 0, UNI_BIDIM } /* bidimirrored */,
- { 7, 10553, 4411, 3, 8, UNI_SYRIACSUP } /* issyriacsup */,
- { 5, 10268, 8943, 3, 4, UNI_NV__8000 } /* nv=8000 */,
- { 0, 9219, 36, 6, 1, UNI_XPOSIXUPPER } /* upper=t */,
- { 72, 10268, 10366, 3, 2, UNI_NV__46 } /* nv=46 */,
- { 1, 5408, 4383, 4, 11, UNI_MATHOPERATORS } /* inmathoperators */,
- { 18, 9979, 7820, 4, 4, UNI_PERM } /* scx=perm */,
- { 3, 9711, 8211, 4, 2, UNI_CCC__18 } /* ccc=18 */,
- { 38, 7580, 4912, 10, 2, UNI_WB__DQ } /* wordbreak=dq */,
- { 268, 6083, 7611, 13, 8, UNI_NV__1_SLASH_2 } /* numericvalue=5.00e-01 */,
- { 88, 1792, 3, 22, 1, -UNI_CWCF } /* changeswhencasefolded=f */,
- { 0, 6044, 0, 13, 0, UNI_MAYANNUMERALS } /* mayannumerals */,
- { 41, 9979, 9831, 4, 4, UNI_LAO } /* scx=laoo */,
- { 0, 4090, 0, 11, 0, UNI_GEORGIANEXT } /* georgianext */,
- { 916, 5592, 0, 13, 0, UNI_PATSYN } /* patternsyntax */,
- { 1, 3877, 9739, 17, 4, UNI_CYRL } /* scriptextensions=cyrl */,
- { 25, 185, 7709, 2, 9, UNI_SIND } /* iskhudawadi */,
- { 5, 9476, 9975, 3, 4, UNI_SARB } /* sc=sarb */,
- { 0, 5875, 4244, 13, 3, UNI_JG__LAM } /* joininggroup=lam */,
- { 2, 1418, 9671, 24, 4, UNI_CCC__216 } /* canonicalcombiningclass=atar */,
- { 1, 8881, 4491, 4, 13, UNI_ARABICEXTB } /* isarabicextendedb */,
- { 0, 9691, 317, 4, 33, UNI_SUPMATHOPERATORS } /* blk=supplementalmathematicaloperators */,
- { 13, 8973, 6626, 6, 12, UNI_PLAYINGCARDS } /* block=playingcards */,
- { 0, 1858, 0, 21, 0, UNI_CWT } /* changeswhentitlecased */,
- { 0, 9469, 7115, 5, 11, UNI_INPC__TOPANDRIGHT } /* inpc=topandright */,
- { 56, 118, 2455, 4, 18, UNI_ININSCRIPTIONALPAHLAVI } /* ininscriptionalpahlavi */,
- { 0, 9979, 7844, 4, 9, UNI_PALM } /* scx=palmyrene */,
- { 0, 9476, 8340, 3, 8, UNI_SC__GUJR } /* sc=gujarati */,
- { 514, 8973, 721, 7, 15, UNI_CUNEIFORMNUMBERS } /* block=cuneiformnumbers */,
- { 0, 185, 8316, 2, 7, UNI_EXTPICT } /* isextpict */,
- { 4, 9147, 3, 6, 1, -UNI__PERL_NCHAR } /* nchar=f */,
- { 65, 4074, 5797, 16, 13, UNI_XPOSIXDIGIT } /* generalcategory=decimalnumber */,
- { 1, 6083, 10130, 13, 3, UNI_NV__1_SLASH_7 } /* numericvalue=1/7 */,
- { 132, 2304, 1062, 3, 26, UNI_OCR } /* isopticalcharacterrecognition */,
- { 0, 2553, 0, 19, 0, UNI_TERM } /* terminalpunctuation */,
- { 1, 8973, 2311, 6, 21, UNI_SINHALAARCHAICNUMBERS } /* block=sinhalaarchaicnumbers */,
- { 0, 8782, 8621, 7, 4, UNI_SC__GRAN } /* script=gran */,
- { 0, 5592, 0, 14, 0, UNI_patsyn_values_index } /* patternsyntax= */,
- { 18, 10283, 3, 3, 1, -UNI_SD } /* sd=f */,
- { 1, 1418, 10163, 24, 3, UNI_CCC__AR } /* canonicalcombiningclass=232 */,
- { 18, 10268, 8943, 3, 6, UNI_NV__800000 } /* nv=800000 */,
- { 0, 9691, 1930, 4, 16, UNI_INDICNUMBERFORMS } /* blk=indicnumberforms */,
+ { 2, 9979, 494, 4, 3, UNI_HAN } /* scx=han */,
+ { 29, 10268, 7932, 3, 8, UNI_NV__1_SLASH_8 } /* nv=1.25e-01 */,
+ { 8, 1274, 1, 21, 1, -UNI_CE } /* compositionexclusion=n */,
+ { 5, 9691, 7844, 4, 9, UNI_PALM } /* blk=palmyrene */,
+ { 0, 1172, 0, 2, 0, UNI_TITLE } /* lt */,
+ { 1, 3877, 8500, 17, 8, UNI_UGAR } /* scriptextensions=ugaritic */,
+ { 1, 9979, 7018, 5, 3, UNI_SHAW } /* scx=shaw */,
+ { 25, 185, 9867, 2, 4, UNI_MLYM } /* ismlym */,
+ { 25, 10253, 185, 3, 2, UNI_LB__IS } /* lb=is */,
+ { 0, 4894, 0, 15, 0, UNI_nfkcqc_values_index } /* nfkcquickcheck= */,
+ { 0, 6340, 1926, 4, 20, UNI_INDICNUMBERFORMS } /* incommonindicnumberforms */,
+ { 0, 7736, 0, 9, 0, UNI_LATINEXTD } /* latinextd */,
+ { 0, 8973, 924, 6, 28, UNI_SUPPUAB } /* block=supplementaryprivateuseareab */,
+ { 4, 7218, 4505, 3, 14, UNI_BAMUMSUP } /* inbamumsupplement */,
+ { 0, 810, 0, 22, 0, UNI_ENCLOSEDIDEOGRAPHICSUP } /* enclosedideographicsup */,
+ { 0, 10268, 5732, 3, 13, UNI_NV__1000000000000 } /* nv=1000000000000 */,
+ { 9, 6083, 8937, 13, 2, UNI_NV__70 } /* numericvalue=70 */,
+ { 5, 10268, 9631, 3, 4, UNI_NV__3_SLASH_80 } /* nv=3/80 */,
+ { 1, 8967, 9454, 6, 5, -UNI_BIDIM } /* bidim=false */,
+ { 0, 10253, 8642, 3, 6, UNI_LB__HY } /* lb=hyphen */,
+ { 5, 7230, 2917, 10, 19, UNI_BC__RLO } /* bidiclass=righttoleftoverride */,
+ { 138, 3877, 6590, 17, 12, UNI_HUNG } /* scriptextensions=oldhungarian */,
+ { 3, 10268, 7947, 3, 2, UNI_NV__21 } /* nv=21 */,
+ { 1, 9979, 4186, 4, 7, UNI_LINB } /* scx=linearb */,
+ { 32, 10247, 9111, 3, 6, UNI_JG__LAMADH } /* jg=lamadh */,
+ { 146, 7297, 2766, 3, 18, UNI_JAMOEXTB } /* ishanguljamoextendedb */,
+ { 0, 4074, 6983, 16, 11, UNI_LO } /* generalcategory=otherletter */,
+ { 1, 10510, 468, 6, 5, UNI_XPOSIXPUNCT } /* xposixpunct */,
+ { 1, 8628, 26, 7, 1, UNI_GRBASE } /* grbase=y */,
+ { 3, 7467, 7611, 3, 3, UNI_IN__5 } /* in=5.0 */,
+ { 15, 8973, 2898, 6, 19, UNI_OTTOMANSIYAQNUMBERS } /* block=ottomansiyaqnumbers */,
+ { 3, 8712, 10355, 7, 3, UNI_DT__NONE } /* nfkdqc=yes */,
+ { 203, 10232, 7628, 3, 9, UNI_EA__A } /* ea=ambiguous */,
+ { 65, 9153, 17, 7, 1, UNI_COMPEX } /* nfcqc=no */,
+ { 0, 9703, 0, 4, 0, UNI_CAKM } /* cakm */,
+ { 11, 9979, 9831, 4, 3, UNI_LAO } /* scx=lao */,
+ { 1, 10516, 8769, 3, 5, UNI_PATSYN } /* ispatsyn */,
+ { 12, 185, 2085, 2, 14, UNI_LM } /* ismodifierletter */,
+ { 240, 10232, 9, 3, 2, UNI_EA__NA } /* ea=na */,
+ { 4, 120, 9070, 3, 5, UNI_INGOTHIC } /* ingothic */,
+ { 72, 10280, 9454, 3, 5, -UNI_RI } /* ri=false */,
+ { 0, 8973, 4426, 6, 16, UNI_TANGUTCOMPONENTS } /* block=tangutcomponents */,
+ { 1, 8782, 9195, 7, 6, UNI_TNSA } /* script=tangsa */,
+ { 32, 9461, 9189, 3, 5, UNI_SB__ST } /* sb=sterm */,
+ { 0, 4684, 0, 15, 0, UNI_ea_values_index } /* eastasianwidth= */,
+ { 1, 10247, 6015, 3, 3, UNI_JG__TAW } /* jg=taw */,
+ { 0, 9647, 7550, 4, 10, UNI_AGE__NA } /* age=unassigned */,
+ { 34, 1553, 9424, 9, 5, UNI_XPOSIXCNTRL } /* category=cntrl */,
+ { 0, 9489, 10055, 5, 4, UNI_MATH } /* math=true */,
+ { 22, 6083, 1250, 13, 3, UNI_NV__NAN } /* numericvalue=nan */,
+ { 9, 8973, 2433, 6, 20, UNI_GLAGOLITICSUP } /* block=glagoliticsupplement */,
+ { 0, 4074, 9048, 16, 2, UNI_CF } /* generalcategory=cf */,
+ { 0, 8782, 8614, 7, 4, UNI_ELYM } /* script=elym */,
+ { 0, 10349, 3, 3, 1, -UNI_VS } /* vs=f */,
+ { 0, 9711, 8028, 4, 3, UNI_WB__EB } /* ccc=200 */,
+ { 85, 8530, 0, 7, 0, UNI_AVST } /* avestan */,
+ { 0, 9691, 6939, 4, 11, UNI_MISCSYMBOLS } /* blk=miscsymbols */,
+ { 265, 185, 3068, 3, 17, UNI_HALFMARKS } /* iscombininghalfmarks */,
+ { 64, 1418, 185, 24, 2, UNI_CCC__IS } /* canonicalcombiningclass=is */,
+ { 7, 6340, 3050, 3, 17, UNI_CHEROKEESUP } /* incherokeesupplement */,
+ { 0, 5116, 3, 14, 1, -UNI_CI } /* caseignorable=f */,
+ { 3, 3877, 9663, 17, 4, UNI_ARMI } /* scriptextensions=armi */,
+ { 0, 7360, 10384, 10, 2, UNI_GCB__V } /* linebreak=jv */,
{ 0, 3409, 10055, 18, 4, UNI_RI } /* regionalindicator=true */,
- { 11, 7360, 989, 10, 2, UNI_LB__CP } /* linebreak=cp */,
- { 0, 9979, 8775, 4, 7, UNI_PHAG } /* scx=phagspa */,
- { 1, 9883, 0, 4, 0, UNI_NARB } /* narb */,
- { 32, 8702, 752, 4, 28, UNI_ENCLOSEDALPHANUMSUP } /* inenclosedalphanumericsupplement */,
- { 74, 7297, 2747, 3, 18, UNI_JAMOEXTA } /* ishanguljamoextendeda */,
- { 0, 9979, 8670, 4, 7, UNI_MAKA } /* scx=makasar */,
- { 11, 8973, 350, 6, 33, UNI_SUPSYMBOLSANDPICTOGRAPHS } /* block=supplementalsymbolsandpictographs */,
- { 177, 9979, 1678, 4, 5, UNI_LATN } /* scx=latin */,
- { 0, 185, 9716, 3, 3, UNI_CHRS } /* ischrs */,
- { 67, 6083, 9563, 13, 4, UNI_NV__1_SLASH_10 } /* numericvalue=1/10 */,
- { 0, 9439, 10055, 5, 4, UNI_DASH } /* dash=true */,
- { 10, 1935, 0, 11, 0, UNI_NUMBERFORMS } /* numberforms */,
- { 1, 9476, 9529, 3, 5, UNI_SC__TALE } /* sc=taile */,
- { 0, 9171, 36, 6, 1, UNI__PERL_PATWS } /* patws=t */,
- { 1, 8973, 4106, 6, 16, UNI_HALFANDFULLFORMS } /* block=halfandfullforms */,
- { 341, 1189, 2101, 3, 21, UNI_TRANSPORTANDMAP } /* intransportandmapsymbols */,
- { 264, 9763, 912, 4, 1, UNI_GCB__V } /* gcb=v */,
- { 0, 10268, 7934, 3, 2, UNI_NV__25 } /* nv=25 */,
- { 0, 9476, 9795, 3, 4, UNI_HMNG } /* sc=hmng */,
- { 0, 9051, 10355, 6, 3, UNI_ECOMP } /* ecomp=yes */,
- { 7, 3283, 9454, 18, 5, -UNI_IDSB } /* idsbinaryoperator=false */,
- { 0, 6083, 8913, 13, 4, UNI_NV__4000 } /* numericvalue=4000 */,
+ { 0, 9476, 8691, 3, 7, UNI_SC__MULT } /* sc=multani */,
+ { 0, 185, 8292, 2, 8, UNI_BUGI } /* isbuginese */,
+ { 22, 10268, 8913, 3, 4, UNI_NV__4000 } /* nv=4000 */,
+ { 0, 9214, 10355, 5, 3, UNI_IDEO } /* ideo=yes */,
+ { 34, 4154, 5030, 3, 7, UNI_VEDICEXT } /* invedicext */,
+ { 0, 5093, 10055, 9, 4, UNI_XPOSIXXDIGIT } /* hexdigit=true */,
+ { 80, 720, 0, 30, 0, UNI_CUNEIFORMNUMBERS } /* cuneiformnumbersandpunctuation */,
+ { 13, 1836, 1, 22, 1, -UNI_CWL } /* changeswhenlowercased=n */,
+ { 3, 8973, 2613, 6, 19, UNI_ANCIENTGREEKNUMBERS } /* block=ancientgreeknumbers */,
+ { 2, 9045, 0, 5, 0, UNI_CWKCF } /* cwkcf */,
+ { 10, 1418, 9410, 25, 4, UNI_CCC__36 } /* canonicalcombiningclass=ccc36 */,
+ { 2, 10217, 1, 4, 1, UNI_BC__BN } /* bc=bn */,
+ { 0, 10349, 36, 3, 1, UNI_VS } /* vs=t */,
+ { 256, 9695, 0, 4, 0, UNI_bpt_values_index } /* bpt= */,
+ { 0, 3877, 9683, 17, 4, UNI_BATK } /* scriptextensions=batk */,
+ { 8, 1418, 9225, 24, 6, UNI_CCC__9 } /* canonicalcombiningclass=virama */,
+ { 2, 8768, 0, 6, 0, UNI_PATSYN } /* patsyn */,
+ { 0, 9979, 9783, 4, 4, UNI_GURU } /* scx=guru */,
+ { 0, 7460, 10211, 10, 3, UNI_IN__9 } /* presentin=9.0 */,
+ { 6, 3877, 3049, 17, 8, UNI_CHER } /* scriptextensions=cherokee */,
+ { 0, 9711, 4968, 4, 2, UNI_CCC__0 } /* ccc=nr */,
+ { 136, 185, 3657, 3, 16, UNI_CYRILLICEXTA } /* iscyrillicextendeda */,
+ { 0, 10247, 3843, 3, 17, UNI_JG__MANICHAEANHUNDRED } /* jg=manichaeanhundred */,
+ { 1, 8782, 9895, 7, 4, UNI_SC__NKO } /* script=nkoo */,
+ { 0, 8973, 7510, 6, 10, UNI_SMALLFORMS } /* block=smallforms */,
+ { 1, 10530, 8861, 4, 5, UNI_INTIBETAN } /* intibetan */,
+ { 0, 10253, 1466, 3, 13, UNI_LB__CM } /* lb=combiningmark */,
+ { 0, 1418, 8, 24, 1, UNI_CCC__A } /* canonicalcombiningclass=a */,
+ { 112, 9476, 8476, 3, 8, UNI_TFNG } /* sc=tifinagh */,
+ { 29, 185, 11, 2, 2, UNI_DI } /* isdi */,
+ { 178, 8782, 9791, 7, 4, UNI_HLUW } /* script=hluw */,
+ { 8, 185, 1678, 2, 9, UNI_LATINEXTE } /* islatinexte */,
+ { 0, 10247, 5462, 3, 4, UNI_JG__KAPH } /* jg=kaph */,
+ { 0, 10560, 5031, 4, 6, UNI_VEDICEXT } /* isvedicext */,
+ { 0, 8782, 3826, 7, 10, UNI_SC__MANI } /* script=manichaean */,
+ { 12, 8973, 5312, 6, 14, UNI_LATINEXTD } /* block=latinextendedd */,
+ { 0, 9476, 8388, 3, 8, UNI_SC__JAVA } /* sc=javanese */,
+ { 0, 3877, 4042, 17, 7, UNI_CPRT } /* scriptextensions=cypriot */,
+ { 4, 5298, 0, 14, 0, UNI_LATINEXTC } /* latinextendedc */,
+ { 7, 10553, 8811, 3, 3, UNI_SOYO } /* issoyo */,
+ { 0, 9691, 7241, 5, 9, UNI_BOXDRAWING } /* blk=boxdrawing */,
+ { 0, 4154, 953, 3, 17, UNI_INVS } /* invariationselectors */,
+ { 2, 6338, 1026, 12, 2, -UNI_JOINC } /* joincontrol=no */,
+ { 1, 1088, 36, 27, 1, UNI_PCM } /* prependedconcatenationmark=t */,
+ { 1, 10510, 10528, 6, 5, UNI_XPOSIXPRINT } /* xposixprint */,
+ { 4, 4684, 4527, 15, 7, UNI_EA__N } /* eastasianwidth=neutral */,
+ { 1, 9691, 8586, 4, 7, UNI_CJKEXTG } /* blk=cjkextg */,
+ { 2, 10244, 5096, 3, 5, UNI_XPOSIXDIGIT } /* gc=digit */,
+ { 0, 9991, 0, 4, 0, UNI_SHAW } /* shaw */,
+ { 2, 7460, 9583, 10, 4, UNI_IN__10 } /* presentin=10.0 */,
+ { 0, 7297, 1515, 3, 23, UNI_HIGHPUSURROGATES } /* ishighprivateusesurrogates */,
+ { 2, 185, 8388, 2, 4, UNI_JAVA } /* isjava */,
+ { 2, 10508, 1891, 8, 5, UNI_XPOSIXUPPER } /* isxposixupper */,
+ { 1, 10268, 9575, 3, 4, UNI_NV__1_SLASH_64 } /* nv=1/64 */,
+ { 3, 6083, 8211, 13, 2, UNI_NV__18 } /* numericvalue=18 */,
+ { 3, 9476, 4534, 3, 4, UNI_BRAI } /* sc=brai */,
+ { 0, 8973, 839, 6, 29, UNI_MISCARROWS } /* block=miscellaneoussymbolsandarrows */,
+ { 0, 7467, 7924, 3, 3, UNI_IN__1_DOT_1 } /* in=1.1 */,
+ { 0, 9979, 10115, 4, 4, UNI_QAAI } /* scx=zinh */,
+ { 9, 10244, 2292, 3, 2, UNI_PD } /* gc=pd */,
+ { 0, 185, 2708, 2, 19, UNI_EGYP } /* isegyptianhieroglyphs */,
+ { 2, 5875, 10241, 13, 3, UNI_JG__GAF } /* joininggroup=gaf */,
+ { 0, 4684, 10091, 15, 4, UNI_EA__W } /* eastasianwidth=wide */,
+ { 1, 185, 952, 2, 28, UNI_VSSUP } /* isvariationselectorssupplement */,
+ { 387, 7907, 1026, 9, 2, -UNI_XIDS } /* xidstart=no */,
+ { 4, 9979, 4314, 4, 7, UNI_MYMR } /* scx=myanmar */,
+ { 75, 6529, 7809, 3, 8, UNI_INOLDITALIC } /* inolditalic */,
+ { 308, 6340, 5131, 3, 13, UNI_CJKCOMPATFORMS } /* incjkcompatforms */,
+ { 6, 3877, 6386, 17, 4, UNI_MAHJ } /* scriptextensions=mahj */,
+ { 3, 7360, 10374, 10, 2, UNI_LB__B2 } /* linebreak=b2 */,
+ { 1, 9476, 9871, 3, 4, UNI_MRO } /* sc=mroo */,
+ { 0, 185, 8404, 2, 8, UNI_KANAEXTB } /* iskanaextb */,
+ { 0, 9469, 3505, 5, 12, UNI_INPC__LEFTANDRIGHT } /* inpc=leftandright */,
+ { 24, 8782, 9201, 7, 6, UNI_SC__TELU } /* script=telugu */,
+ { 17, 10268, 7983, 3, 1, UNI_NV__7 } /* nv=7 */,
+ { 118, 9476, 10023, 3, 4, UNI_SC__TAML } /* sc=taml */,
+ { 44, 8854, 2333, 3, 5, UNI_YIJING } /* inyijing */,
+ { 3, 8782, 9264, 7, 5, UNI_SC__ADLM } /* script=adlam */,
+ { 3, 868, 0, 11, 0, UNI_PHONETICEXT } /* phoneticext */,
+ { 6, 9469, 9, 5, 2, UNI_INPC__NA } /* inpc=na */,
+ { 3, 9691, 2708, 4, 19, UNI_INEGYPTIANHIEROGLYPHS } /* blk=egyptianhieroglyphs */,
+ { 136, 8973, 8824, 6, 7, UNI_SUPPUAB } /* block=suppuab */,
+ { 0, 7560, 36, 10, 1, UNI_XPOSIXUPPER } /* uppercase=t */,
+ { 3, 9691, 6950, 4, 11, UNI_MYANMAREXTA } /* blk=myanmarexta */,
+ { 149, 7460, 10316, 10, 3, UNI_IN__5 } /* presentin=v50 */,
+ { 64, 9691, 4170, 4, 16, UNI_LATIN1 } /* blk=latin1supplement */,
+ { 10, 9461, 113, 3, 2, UNI_SB__SC } /* sb=sc */,
+ { 0, 185, 4170, 2, 6, UNI_LATIN1 } /* islatin1 */,
+ { 6, 3391, 1026, 18, 2, -UNI__PERL_PATWS } /* patternwhitespace=no */,
+ { 177, 6340, 3657, 3, 16, UNI_CYRILLICEXTA } /* incyrillicextendeda */,
+ { 15, 2003, 48, 10, 1, UNI_LM } /* category=lm */,
+ { 1, 9476, 8803, 3, 7, UNI_SIDD } /* sc=siddham */,
+ { 31, 2248, 8818, 3, 6, UNI_SUPPUAA } /* insuppuaa */,
+ { 1, 7160, 7160, 3, 10, UNI_YISYLLABLES } /* isyisyllables */,
+ { 108, 1418, 9387, 24, 2, UNI_CCC__31 } /* canonicalcombiningclass=31 */,
+ { 1, 3481, 0, 11, 0, UNI_TAIXUANJING } /* taixuanjing */,
+ { 0, 9691, 2332, 4, 21, UNI_YIJING } /* blk=yijinghexagramsymbols */,
+ { 10, 6083, 7940, 13, 8, UNI_NV__1_SLASH_80 } /* numericvalue=1.25e-02 */,
+ { 8, 8973, 10271, 6, 3, UNI_OCR } /* block=ocr */,
+ { 2, 10346, 3528, 3, 7, UNI_VO__R } /* vo=rotated */,
+ { 16, 9153, 10355, 6, 3, UNI_NFCQC__Y } /* nfcqc=yes */,
+ { 0, 1418, 6774, 24, 11, UNI_CCC__DB } /* canonicalcombiningclass=doublebelow */,
{ 0, 7682, 0, 8, 0, UNI_EXT } /* extender */,
- { 1, 5875, 1512, 13, 3, UNI_JG__HAH } /* joininggroup=hah */,
- { 48, 8955, 36, 6, 1, UNI_XPOSIXALPHA } /* alpha=t */,
- { 0, 8973, 1632, 6, 18, UNI_GEOMETRICSHAPESEXT } /* block=geometricshapesext */,
- { 21, 9476, 9831, 3, 3, UNI_LAO } /* sc=lao */,
- { 7, 9691, 9135, 4, 6, UNI_INLYDIAN } /* blk=lydian */,
- { 0, 6340, 116, 4, 23, UNI_DIACRITICALS } /* incombiningdiacriticalmarks */,
- { 56, 9787, 0, 4, 0, UNI_HANO } /* hano */,
- { 0, 9469, 7451, 3, 9, UNI_INPHOENICIAN } /* inphoenician */,
- { 3, 9544, 9454, 5, 5, -UNI_XIDC } /* xidc=false */,
- { 256, 9476, 9963, 3, 4, UNI_SC__ROHG } /* sc=rohg */,
- { 2, 6083, 7950, 13, 2, UNI_NV__43 } /* numericvalue=43 */,
- { 0, 5662, 126, 14, 2, UNI_LB__CR } /* sentencebreak=cr */,
- { 21, 5088, 3, 14, 1, -UNI_POSIXXDIGIT } /* asciihexdigit=f */,
- { 0, 10244, 5014, 3, 15, UNI_UPPERCASELETTER } /* gc=uppercaseletter */,
- { 0, 9691, 868, 4, 11, UNI_PHONETICEXT } /* blk=phoneticext */,
- { 1, 7460, 10316, 10, 3, UNI_IN__5 } /* presentin=v50 */,
- { 640, 839, 0, 29, 0, UNI_MISCARROWS } /* miscellaneoussymbolsandarrows */,
- { 0, 7460, 9587, 10, 4, UNI_IN__11 } /* presentin=11.0 */,
- { 0, 9045, 9454, 6, 5, -UNI_CWKCF } /* cwkcf=false */,
- { 2, 10553, 8825, 3, 6, UNI_SUPPUAB } /* issuppuab */,
- { 113, 4972, 3482, 3, 10, UNI_TAIXUANJING } /* istaixuanjing */,
- { 0, 9051, 26, 6, 1, UNI_ECOMP } /* ecomp=y */,
- { 0, 8782, 0, 7, 0, UNI_sc_values_index } /* script= */,
- { 3, 7467, 9596, 3, 3, UNI_IN__2_DOT_1 } /* in=2.1 */,
- { 1, 10247, 10265, 3, 3, UNI_JG__MIM } /* jg=mim */,
- { 0, 9979, 9519, 4, 5, UNI_OSGE } /* scx=osage */,
- { 3, 9979, 1116, 4, 4, UNI_HANG } /* scx=hang */,
- { 36, 1418, 9315, 25, 4, UNI_CCC__17 } /* canonicalcombiningclass=ccc17 */,
- { 12, 8452, 0, 8, 0, UNI_SPECIALS } /* specials */,
- { 1090, 9691, 3139, 4, 13, UNI_DEVANAGARIEXT } /* blk=devanagariext */,
- { 1, 3121, 69, 18, 3, UNI_DT__SUP } /* decompositiontype=sup */,
- { 0, 8973, 1562, 6, 24, UNI_SUPSYMBOLSANDPICTOGRAPHS } /* block=supsymbolsandpictographs */,
- { 0, 9033, 0, 6, 0, UNI_CAKM } /* chakma */,
- { 5, 10268, 8036, 3, 8, UNI_NV__1_SLASH_32 } /* nv=3.12e-02 */,
- { 5, 9489, 9454, 5, 5, -UNI_MATH } /* math=false */,
- { 2, 9711, 8994, 4, 3, UNI_CCC__107 } /* ccc=107 */,
- { 522, 10547, 3403, 6, 5, UNI_POSIXSPACE } /* isperlspace */,
- { 14, 4426, 0, 16, 0, UNI_TANGUTCOMPONENTS } /* tangutcomponents */,
- { 2, 9691, 479, 4, 31, UNI_MATHALPHANUM } /* blk=mathematicalalphanumericsymbols */,
- { 7, 3877, 8292, 17, 4, UNI_BUGI } /* scriptextensions=bugi */,
- { 3, 9655, 0, 4, 0, UNI_AHOM } /* ahom */,
- { 1034, 3877, 4534, 17, 4, UNI_BRAI } /* scriptextensions=brai */,
- { 2, 185, 571, 3, 29, UNI_CJKEXTC } /* iscjkunifiedideographsextensionc */,
- { 0, 10247, 7170, 3, 10, UNI_JG__AFRICANFEH } /* jg=africanfeh */,
- { 11, 10402, 1528, 6, 9, UNI__PERL_SURROGATE } /* _perl_surrogate */,
- { 0, 8677, 0, 7, 0, UNI_MAND } /* mandaic */,
- { 0, 2803, 9454, 19, 5, -UNI_IDST } /* idstrinaryoperator=false */,
- { 0, 9476, 8300, 3, 4, UNI_SC__DUPL } /* sc=dupl */,
- { 0, 8782, 4759, 7, 15, UNI_ARMI } /* script=imperialaramaic */,
- { 8, 8973, 8859, 6, 7, UNI_INTIBETAN } /* block=tibetan */,
- { 4, 6674, 3, 12, 1, -UNI_XIDC } /* xidcontinue=f */,
- { 7, 21, 5089, 3, 4, UNI_ASCII } /* inascii */,
- { 0, 1852, 0, 5, 0, UNI_CASED } /* cased */,
- { 0, 9731, 9454, 4, 5, -UNI_CWT } /* cwt=false */,
- { 2, 1418, 5849, 24, 13, UNI_CCC__IS } /* canonicalcombiningclass=iotasubscript */,
- { 0, 8782, 1177, 8, 3, UNI_SORA } /* script=sora */,
- { 1, 8444, 1026, 8, 2, -UNI_RADICAL } /* radical=no */,
- { 258, 924, 0, 28, 0, UNI_SUPPUAB } /* supplementaryprivateuseareab */,
- { 528, 10511, 468, 5, 5, UNI_POSIXPUNCT } /* posixpunct */,
- { 0, 8782, 10047, 7, 4, UNI_TNSA } /* script=tnsa */,
- { 0, 9711, 9395, 5, 4, UNI_CCC__33 } /* ccc=ccc33 */,
- { 0, 9476, 7500, 3, 10, UNI_SAUR } /* sc=saurashtra */,
- { 17, 8973, 5634, 6, 14, UNI_INPSALTERPAHLAVI } /* block=psalterpahlavi */,
- { 0, 10247, 7187, 3, 3, UNI_JG__QAF } /* jg=qaf */,
- { 0, 1418, 7995, 24, 2, UNI_CCC__12 } /* canonicalcombiningclass=12 */,
- { 0, 9691, 9231, 4, 6, UNI_INWANCHO } /* blk=wancho */,
- { 3, 10352, 10394, 3, 2, UNI_WB__XX } /* wb=xx */,
- { 1, 9691, 9129, 4, 6, UNI_INLYCIAN } /* blk=lycian */,
- { 0, 6675, 9454, 11, 5, -UNI_IDC } /* idcontinue=false */,
- { 0, 2501, 0, 3, 0, UNI_PUA } /* pua */,
- { 512, 9476, 9843, 3, 4, UNI_SC__LINB } /* sc=linb */,
- { 1, 7360, 5102, 10, 14, UNI_LB__CR } /* linebreak=carriagereturn */,
- { 13, 9691, 3656, 4, 17, UNI_CYRILLICEXTA } /* blk=cyrillicextendeda */,
- { 0, 1538, 3012, 24, 19, UNI_INPC__TOPANDBOTTOMANDLEFT } /* indicpositionalcategory=topandbottomandleft */,
- { 180, 10349, 1026, 3, 2, -UNI_VS } /* vs=no */,
- { 0, 9711, 9022, 5, 5, UNI_CCC__132 } /* ccc=ccc132 */,
- { 0, 185, 4378, 2, 16, UNI_SUPMATHOPERATORS } /* issupmathoperators */,
- { 3, 9190, 3, 5, 1, -UNI_TERM } /* term=f */,
- { 35, 8684, 0, 4, 0, UNI_MARC } /* marc */,
- { 1, 10352, 496, 3, 2, UNI_WB__NU } /* wb=nu */,
- { 1, 185, 721, 3, 8, UNI_XSUX } /* iscuneiform */,
- { 16, 9476, 9482, 3, 4, UNI_PHLI } /* sc=phli */,
- { 4, 10253, 3, 4, 1, UNI_LB__LF } /* lb=lf */,
- { 8, 8768, 10355, 7, 3, UNI_PATSYN } /* patsyn=yes */,
- { 148, 6083, 8092, 13, 8, UNI_NV__2_SLASH_5 } /* numericvalue=4.00e-01 */,
- { 1, 8702, 752, 4, 19, UNI_ENCLOSEDALPHANUM } /* inenclosedalphanumerics */,
- { 0, 6083, 8252, 13, 8, UNI_NV__11_SLASH_12 } /* numericvalue=9.17e-01 */,
- { 1, 9691, 2433, 4, 20, UNI_GLAGOLITICSUP } /* blk=glagoliticsupplement */,
- { 17, 9735, 0, 3, 0, UNI_CWU } /* cwu */,
- { 48, 8967, 1, 6, 1, -UNI_BIDIM } /* bidim=n */,
- { 228, 10244, 10396, 3, 2, UNI_ZL } /* gc=zl */,
- { 3, 10244, 407, 3, 7, UNI_XPOSIXCNTRL } /* gc=control */,
- { 1, 10516, 473, 3, 2, UNI_PUA } /* ispua */,
- { 5, 8782, 2937, 8, 3, UNI_SUND } /* script=sund */,
- { 0, 7467, 10205, 3, 3, UNI_IN__7 } /* in=7.0 */,
- { 2, 2206, 6278, 21, 12, UNI_WB__EB } /* graphemeclusterbreak=glueafterzwj */,
- { 3, 2206, 1088, 21, 7, UNI_GCB__PP } /* graphemeclusterbreak=prepend */,
- { 19, 1189, 4427, 3, 5, UNI_INTANGUT } /* intangut */,
- { 0, 9476, 4504, 3, 4, UNI_BAMU } /* sc=bamu */,
- { 0, 8782, 4426, 7, 4, UNI_TANG } /* script=tang */,
- { 36, 10268, 8220, 3, 8, UNI_NV__5_SLASH_6 } /* nv=8.33e-01 */,
- { 53, 7682, 1, 9, 1, -UNI_EXT } /* extender=n */,
- { 0, 1553, 1466, 9, 13, UNI_M } /* category=combiningmark */,
- { 0, 3877, 9863, 17, 4, UNI_MIAO } /* scriptextensions=miao */,
- { 0, 7460, 9596, 10, 3, UNI_IN__2_DOT_1 } /* presentin=2.1 */,
- { 13, 185, 2144, 3, 20, UNI_CJKRADICALSSUP } /* iscjkradicalssupplement */,
- { 1, 5875, 6482, 13, 12, UNI_JG__MANICHAEANPE } /* joininggroup=manichaeanpe */,
- { 802, 185, 24, 2, 1, UNI_L } /* isl */,
- { 0, 10223, 0, 3, 0, UNI_ci_values_index } /* ci= */,
- { 1, 8973, 7570, 6, 10, UNI_INWARANGCITI } /* block=warangciti */,
- { 6, 8973, 3978, 6, 11, UNI_BOPOMOFOEXT } /* block=bopomofoext */,
- { 8, 7360, 6818, 10, 11, UNI_LB__IN } /* linebreak=inseparable */,
- { 18, 7580, 0, 4, 0, UNI_XPOSIXWORD } /* word */,
- { 137, 9524, 0, 5, 0, UNI_RUNR } /* runic */,
- { 24, 1553, 5582, 10, 10, UNI_MC } /* category=spacingmark */,
- { 145, 8782, 9851, 7, 4, UNI_MEDF } /* script=medf */,
- { 1, 185, 3707, 2, 16, UNI_ETHIOPICEXT } /* isethiopicextended */,
- { 0, 6340, 8552, 3, 6, UNI_CJKEXTB } /* incjkextb */,
- { 0, 3121, 9759, 18, 4, UNI_DT__FONT } /* decompositiontype=font */,
- { 0, 9476, 2164, 3, 8, UNI_SC__CYRL } /* sc=cyrillic */,
- { 2, 5648, 10055, 14, 4, UNI_QMARK } /* quotationmark=true */,
- { 0, 9691, 7520, 4, 10, UNI_SUPARROWSA } /* blk=suparrowsa */,
- { 1, 5592, 10055, 14, 4, UNI_PATSYN } /* patternsyntax=true */,
- { 0, 6302, 0, 4, 0, UNI_HEBR } /* hebr */,
- { 0, 6340, 1903, 3, 18, UNI_CJKCOMPATIDEOGRAPHS } /* incjkcompatideographs */,
- { 297, 10244, 24, 3, 1, UNI_L } /* gc=l */,
- { 3, 9703, 0, 4, 0, UNI_CAKM } /* cakm */,
- { 2, 10217, 10259, 3, 3, UNI_BC__LRI } /* bc=lri */,
- { 1, 9476, 9663, 3, 4, UNI_ARMI } /* sc=armi */,
- { 803, 9979, 9911, 4, 4, UNI_ORKH } /* scx=orkh */,
- { 398, 8537, 0, 4, 0, UNI_BENG } /* beng */,
- { 1, 10217, 3373, 3, 18, UNI_BC__B } /* bc=paragraphseparator */,
- { 16, 3894, 10355, 17, 3, UNI_STERM } /* sentenceterminal=yes */,
- { 0, 1836, 26, 22, 1, UNI_CWL } /* changeswhenlowercased=y */,
- { 0, 8782, 8670, 7, 7, UNI_MAKA } /* script=makasar */,
- { 1, 7907, 1026, 9, 2, -UNI_XIDS } /* xidstart=no */,
- { 0, 7467, 9595, 3, 4, UNI_IN__12_DOT_1 } /* in=12.1 */,
- { 0, 4074, 5810, 16, 13, UNI_ME } /* generalcategory=enclosingmark */,
- { 1, 5662, 8747, 14, 7, UNI_SB__LE } /* sentencebreak=oletter */,
- { 0, 4074, 1067, 16, 2, UNI_CASEDLETTER } /* generalcategory=lc */,
- { 2, 8973, 924, 6, 28, UNI_SUPPUAB } /* block=supplementaryprivateuseareab */,
- { 1, 9979, 8740, 4, 7, UNI_OLCK } /* scx=olchiki */,
- { 3, 9711, 10169, 4, 3, UNI_CCC__DA } /* ccc=234 */,
- { 0, 6340, 4043, 3, 15, UNI_CYPRIOTSYLLABARY } /* incypriotsyllabary */,
- { 143, 9803, 9, 4, 2, UNI_HST__NA } /* hst=na */,
- { 1, 1418, 10169, 24, 3, UNI_CCC__DA } /* canonicalcombiningclass=234 */,
- { 0, 10352, 8308, 3, 8, UNI_WB__EB } /* wb=ebasegaz */,
- { 33, 9544, 26, 5, 1, UNI_XIDC } /* xidc=y */,
- { 0, 10352, 7772, 3, 6, UNI_WB__MN } /* wb=midnum */,
- { 0, 7460, 8046, 10, 2, UNI_IN__13 } /* presentin=13 */,
- { 0, 185, 6972, 2, 11, UNI_NAND } /* isnandinagari */,
- { 0, 9979, 9195, 4, 6, UNI_TNSA } /* scx=tangsa */,
- { 178, 8973, 4442, 6, 9, UNI_TANGUTSUP } /* block=tangutsup */,
- { 18, 9695, 17, 4, 1, UNI_BPT__O } /* bpt=o */,
- { 2, 3656, 0, 17, 0, UNI_CYRILLICEXTA } /* cyrillicextendeda */,
- { 3, 9474, 2393, 5, 20, UNI_INSC__CONSONANTPLACEHOLDER } /* insc=consonantplaceholder */,
- { 262, 9979, 6972, 4, 4, UNI_NAND } /* scx=nand */,
- { 0, 10247, 9855, 3, 4, UNI_JG__MEEM } /* jg=meem */,
- { 5, 7360, 43, 10, 2, UNI_LB__CJ } /* linebreak=cj */,
- { 0, 9439, 1026, 5, 2, -UNI_DASH } /* dash=no */,
- { 0, 185, 5312, 2, 14, UNI_LATINEXTD } /* islatinextendedd */,
- { 10, 8973, 7817, 6, 9, UNI_INOLDPERMIC } /* block=oldpermic */,
- { 7, 8973, 0, 6, 42, UNI_UCASEXT } /* block=unifiedcanadianaboriginalsyllabicsextended */,
- { 0, 9189, 0, 5, 0, UNI_STERM } /* sterm */,
- { 4, 6083, 8949, 13, 4, UNI_NV__9000 } /* numericvalue=9000 */,
- { 0, 1167, 3, 26, 1, -UNI_DI } /* defaultignorablecodepoint=f */,
- { 170, 7460, 9599, 10, 4, UNI_IN__13 } /* presentin=13.0 */,
- { 0, 9979, 9105, 4, 6, UNI_KHOJ } /* scx=khojki */,
- { 118, 9711, 9402, 4, 2, UNI_CCC__34 } /* ccc=34 */,
- { 4, 9979, 9117, 4, 4, UNI_LEPC } /* scx=lepc */,
- { 2, 10244, 10388, 3, 2, UNI_CASEDLETTER } /* gc=l& */,
- { 0, 1418, 8998, 25, 5, UNI_CCC__118 } /* canonicalcombiningclass=ccc118 */,
- { 7, 10268, 8043, 3, 2, UNI_NV__23 } /* nv=23 */,
- { 0, 9691, 3139, 4, 10, UNI_INDEVANAGARI } /* blk=devanagari */,
- { 1, 8973, 8492, 6, 8, UNI_UCASEXTA } /* block=ucasexta */,
- { 2, 8782, 10023, 7, 4, UNI_SC__TAML } /* script=taml */,
- { 0, 3877, 2879, 17, 9, UNI_MONG } /* scriptextensions=mongolian */,
+ { 0, 9691, 1946, 4, 22, UNI_DIACRITICALSFORSYMBOLS } /* blk=diacriticalsforsymbols */,
+ { 187, 8973, 7330, 6, 10, UNI_INKHAROSHTHI } /* block=kharoshthi */,
+ { 1, 10553, 8825, 3, 6, UNI_SUPPUAB } /* issuppuab */,
+ { 2, 9739, 0, 4, 0, UNI_CYRL } /* cyrl */,
+ { 0, 284, 0, 33, 0, UNI_MISCMATHSYMBOLSB } /* miscellaneousmathematicalsymbolsb */,
+ { 195, 10253, 867, 3, 2, UNI_LB__SP } /* lb=sp */,
+ { 0, 8782, 4534, 7, 7, UNI_BRAI } /* script=braille */,
+ { 4, 9763, 10235, 4, 3, UNI_WB__EB } /* gcb=ebg */,
+ { 53, 2808, 8262, 4, 6, UNI_INARMENIAN } /* inarmenian */,
+ { 13, 4744, 2047, 15, 9, UNI_IDENTIFIERTYPE__TECHNICAL } /* identifiertype=technical */,
+ { 6, 8973, 2165, 7, 7, UNI_INCYRILLIC } /* block=cyrillic */,
+ { 4, 3894, 1, 17, 1, -UNI_STERM } /* sentenceterminal=n */,
+ { 0, 1418, 9013, 24, 2, UNI_CCC__29 } /* canonicalcombiningclass=29 */,
+ { 1, 185, 11, 2, 3, UNI_DIA } /* isdia */,
+ { 0, 1418, 0, 24, 0, UNI_ccc_values_index } /* canonicalcombiningclass= */,
+ { 3, 9691, 4939, 4, 15, UNI_SARB } /* blk=oldsoutharabian */,
+ { 19, 1274, 36, 21, 1, UNI_CE } /* compositionexclusion=t */,
+ { 32, 5592, 1026, 14, 2, -UNI_PATSYN } /* patternsyntax=no */,
+ { 0, 3877, 9791, 17, 4, UNI_HLUW } /* scriptextensions=hluw */,
+ { 3, 7718, 0, 9, 0, UNI_LATINEXTB } /* latinextb */,
+ { 3, 9691, 7826, 4, 9, UNI_INOLDTURKIC } /* blk=oldturkic */,
+ { 0, 7060, 36, 11, 1, UNI_SD } /* softdotted=t */,
+ { 9, 4074, 263, 16, 2, UNI_SM } /* generalcategory=sm */,
+ { 1, 5758, 1, 13, 1, -UNI_BIDIM } /* bidimirrored=n */,
+ { 34, 7467, 9595, 3, 4, UNI_IN__12_DOT_1 } /* in=12.1 */,
+ { 0, 9691, 1655, 4, 23, UNI_COMPATJAMO } /* blk=hangulcompatibilityjamo */,
+ { 35, 5875, 10265, 13, 3, UNI_JG__MIM } /* joininggroup=mim */,
+ { 4, 6083, 8059, 13, 2, UNI_NV__33 } /* numericvalue=33 */,
+ { 9, 9647, 10301, 4, 3, UNI_AGE__3 } /* age=v30 */,
+ { 0, 8782, 9771, 7, 4, UNI_SC__GONM } /* script=gonm */,
+ { 0, 5875, 6455, 13, 3, UNI_JG__NYA } /* joininggroup=nya */,
+ { 10, 5875, 6482, 13, 12, UNI_JG__MANICHAEANPE } /* joininggroup=manichaeanpe */,
+ { 2, 3877, 7501, 18, 9, UNI_SAUR } /* scriptextensions=saurashtra */,
+ { 2, 9979, 9923, 4, 4, UNI_OUGR } /* scx=ougr */,
+ { 163, 5676, 0, 14, 0, UNI_ZS } /* spaceseparator */,
+ { 2, 8881, 3964, 4, 14, UNI_ARABICSUP } /* isarabicsupplement */,
+ { 1, 6340, 44, 3, 8, UNI_CJKCOMPAT } /* incjkcompat */,
+ { 11, 9476, 9963, 3, 4, UNI_SC__ROHG } /* sc=rohg */,
+ { 100, 8973, 7727, 6, 9, UNI_LATINEXTC } /* block=latinextc */,
+ { 1, 3877, 7072, 18, 10, UNI_SORA } /* scriptextensions=sorasompeng */,
+ { 5, 9476, 9751, 3, 4, UNI_DIAK } /* sc=diak */,
+ { 4, 8973, 6386, 6, 7, UNI_MAHJONG } /* block=mahjong */,
+ { 0, 8887, 10055, 7, 4, UNI_XPOSIXSPACE } /* wspace=true */,
+ { 0, 2808, 3964, 4, 7, UNI_ARABICSUP } /* inarabicsup */,
+ { 0, 4410, 0, 9, 0, UNI_SYRIACSUP } /* syriacsup */,
+ { 0, 2248, 7094, 3, 10, UNI_SUPERANDSUB } /* insuperandsub */,
{ 0, 10268, 7990, 3, 1, UNI_NV__8 } /* nv=8 */,
- { 1, 3877, 9529, 17, 5, UNI_TALE } /* scriptextensions=taile */,
- { 0, 8973, 3319, 6, 18, UNI_LATINEXTADDITIONAL } /* block=latinextadditional */,
- { 0, 7391, 755, 4, 3, UNI_CASED } /* iscased */,
- { 1042, 185, 9046, 3, 4, UNI_CWKCF } /* iscwkcf */,
- { 129, 185, 6374, 2, 12, UNI_NL } /* isletternumber */,
- { 24, 9979, 8691, 4, 4, UNI_MULT } /* scx=mult */,
- { 1481, 3121, 8332, 18, 8, UNI_DT__FRA } /* decompositiontype=fraction */,
- { 70, 8973, 1467, 7, 23, UNI_DIACRITICALSFORSYMBOLS } /* block=combiningmarksforsymbols */,
- { 3, 1270, 10055, 25, 4, UNI_COMPEX } /* fullcompositionexclusion=true */,
- { 0, 8973, 5088, 6, 5, UNI_ASCII } /* block=ascii */,
- { 169, 2242, 6974, 4, 9, UNI_INNANDINAGARI } /* innandinagari */,
- { 1, 1678, 0, 14, 0, UNI_LATINEXTA } /* latinextendeda */,
- { 650, 5648, 36, 14, 1, UNI_QMARK } /* quotationmark=t */,
- { 3, 8782, 9831, 7, 4, UNI_LAO } /* script=laoo */,
- { 6, 185, 408, 3, 6, UNI_XPOSIXCNTRL } /* iscontrol */,
- { 0, 9057, 10055, 6, 4, UNI_EMOJI } /* emoji=true */,
- { 66, 3121, 9141, 18, 6, UNI_DT__NAR } /* decompositiontype=narrow */,
- { 3, 7218, 4535, 3, 14, UNI_BRAI } /* inbraillepatterns */,
- { 6, 9711, 9030, 4, 3, UNI_WB__EB } /* ccc=133 */,
- { 0, 5172, 10055, 14, 4, UNI_EMOD } /* emojimodifier=true */,
- { 4, 8973, 750, 6, 21, UNI_ENCLOSEDALPHANUM } /* block=enclosedalphanumerics */,
- { 1, 8782, 79, 7, 6, UNI_SC__ARAB } /* script=arabic */,
- { 89, 3945, 0, 17, 0, UNI_uideo_values_index } /* unifiedideograph= */,
- { 520, 10510, 5095, 6, 6, UNI_XPOSIXXDIGIT } /* xposixxdigit */,
- { 0, 3175, 1, 18, 1, -UNI_EPRES } /* emojipresentation=n */,
- { 66, 185, 134, 2, 4, UNI_M } /* ismark */,
- { 0, 5875, 2227, 13, 21, UNI_JG__HANIFIROHINGYAKINNAYA } /* joininggroup=hanifirohingyakinnaya */,
- { 0, 2012, 10055, 22, 4, UNI_LOE } /* logicalorderexception=true */,
- { 8, 9691, 9519, 4, 5, UNI_INOSAGE } /* blk=osage */,
- { 292, 10280, 9454, 3, 5, -UNI_RI } /* ri=false */,
- { 0, 9811, 0, 4, 0, UNI_KHMR } /* khmr */,
- { 6, 4463, 8602, 4, 5, UNI_DSRT } /* indeseret */,
- { 0, 3877, 7853, 17, 4, UNI_PAUC } /* scriptextensions=pauc */,
- { 71, 6983, 0, 11, 0, UNI_LO } /* otherletter */,
- { 136, 9979, 8979, 4, 4, UNI_CARI } /* scx=cari */,
- { 1, 6340, 5131, 3, 13, UNI_CJKCOMPATFORMS } /* incjkcompatforms */,
- { 1, 10247, 6005, 3, 13, UNI_JG__MANICHAEANTAW } /* jg=manichaeantaw */,
- { 1, 10268, 8147, 3, 2, UNI_NV__16 } /* nv=16 */,
- { 7, 7230, 0, 10, 0, UNI_bc_values_index } /* bidiclass= */,
- { 692, 185, 5940, 2, 9, UNI_MLYM } /* ismalayalam */,
- { 2, 6340, 44, 3, 8, UNI_CJKCOMPAT } /* incjkcompat */,
- { 201, 8768, 3, 7, 1, -UNI_PATSYN } /* patsyn=f */,
- { 144, 8973, 3674, 7, 16, UNI_CYRILLICEXTB } /* block=cyrillicextendedb */,
- { 1, 8782, 9751, 7, 4, UNI_DIAK } /* script=diak */,
- { 0, 185, 5648, 2, 13, UNI_QMARK } /* isquotationmark */,
- { 0, 5088, 9454, 14, 5, -UNI_POSIXXDIGIT } /* asciihexdigit=false */,
- { 26, 7210, 0, 10, 0, UNI_ASCII } /* basiclatin */,
- { 128, 8973, 4669, 6, 15, UNI_DIACRITICALSSUP } /* block=diacriticalssup */,
- { 9, 9476, 4849, 3, 15, UNI_MERC } /* sc=meroiticcursive */,
- { 152, 9979, 8292, 4, 8, UNI_BUGI } /* scx=buginese */,
- { 1, 4847, 1020, 3, 4, UNI_MUSIC } /* inmusic */,
- { 19, 9691, 2164, 4, 11, UNI_CYRILLICSUP } /* blk=cyrillicsup */,
- { 273, 447, 0, 18, 0, UNI_IDEOGRAPHICSYMBOLS } /* ideographicsymbols */,
- { 0, 10232, 0, 3, 0, UNI_ea_values_index } /* ea= */,
- { 26, 4157, 5863, 3, 12, UNI_IPAEXT } /* isipaextensions */,
- { 2, 3877, 9807, 17, 4, UNI_KALI } /* scriptextensions=kali */,
- { 0, 6340, 6195, 3, 11, UNI_CYRILLICEXTA } /* incyrillicexta */,
- { 1, 9959, 0, 4, 0, UNI_RJNG } /* rjng */,
- { 515, 5875, 9243, 13, 4, UNI_JG__YUDH } /* joininggroup=yudh */,
- { 0, 1418, 9028, 25, 5, UNI_WB__EB } /* canonicalcombiningclass=ccc133 */,
- { 2, 9691, 980, 4, 27, UNI_ALPHABETICPF } /* blk=alphabeticpresentationforms */,
- { 96, 7460, 10175, 10, 3, UNI_IN__3_DOT_2 } /* presentin=3.2 */,
- { 0, 9691, 9863, 4, 4, UNI_INMIAO } /* blk=miao */,
- { 13, 8356, 0, 8, 0, UNI_HIRA } /* hiragana */,
- { 2, 8468, 0, 8, 0, UNI_TAGB } /* tagbanwa */,
- { 0, 7360, 5620, 10, 14, UNI_LB__PO } /* linebreak=postfixnumeric */,
- { 0, 8973, 568, 6, 2, UNI_NB } /* block=nb */,
- { 4, 9647, 7611, 4, 1, UNI_AGE__5 } /* age=5 */,
- { 16, 5875, 7180, 13, 10, UNI_JG__AFRICANQAF } /* joininggroup=africanqaf */,
- { 0, 9979, 2493, 4, 20, UNI_HMNP } /* scx=nyiakengpuachuehmong */,
- { 260, 1274, 26, 21, 1, UNI_CE } /* compositionexclusion=y */,
- { 0, 8782, 10039, 7, 4, UNI_THAI } /* script=thai */,
- { 0, 8973, 8452, 6, 8, UNI_SPECIALS } /* block=specials */,
- { 0, 10244, 1564, 3, 2, UNI_PS } /* gc=ps */,
- { 2, 1418, 8211, 24, 2, UNI_CCC__18 } /* canonicalcombiningclass=18 */,
- { 0, 10516, 6615, 3, 7, UNI_PHAISTOS } /* isphaistos */,
- { 46, 3877, 9895, 17, 3, UNI_NKO } /* scriptextensions=nko */,
- { 8, 7467, 7950, 3, 1, UNI_IN__4 } /* in=4 */,
- { 0, 9979, 2509, 4, 4, UNI_MONG } /* scx=mong */,
- { 11, 9147, 17, 7, 1, -UNI__PERL_NCHAR } /* nchar=no */,
- { 0, 8628, 0, 7, 0, UNI_grbase_values_index } /* grbase= */,
- { 2, 8782, 9069, 7, 4, UNI_GOTH } /* script=goth */,
- { 0, 10268, 5732, 3, 9, UNI_NV__100000000 } /* nv=100000000 */,
- { 15, 8973, 7159, 6, 11, UNI_YISYLLABLES } /* block=yisyllables */,
- { 0, 9979, 9663, 4, 4, UNI_ARMI } /* scx=armi */,
- { 0, 8782, 9719, 7, 4, UNI_SC__CPMN } /* script=cpmn */,
- { 0, 9474, 4879, 5, 15, UNI_INSC__MODIFYINGLETTER } /* insc=modifyingletter */,
- { 1, 3877, 1014, 17, 5, UNI_GREK } /* scriptextensions=greek */,
- { 5, 10403, 7580, 4, 4, UNI_POSIXWORD } /* perlword */,
- { 0, 185, 6614, 2, 12, UNI_PHAISTOS } /* isphaistosdisc */,
- { 9, 4744, 6542, 15, 12, UNI_IDENTIFIERTYPE__NOTCHARACTER } /* identifiertype=notcharacter */,
- { 1027, 8628, 1, 7, 1, -UNI_GRBASE } /* grbase=n */,
- { 3, 7467, 9600, 3, 3, UNI_IN__3 } /* in=3.0 */,
- { 121, 9691, 1968, 4, 22, UNI_EARLYDYNASTICCUNEIFORM } /* blk=earlydynasticcuneiform */,
- { 2, 5875, 5504, 13, 4, UNI_JG__TETH } /* joininggroup=teth */,
- { 1, 8782, 1629, 7, 4, UNI_SC__PHAG } /* script=phag */,
- { 1, 9449, 26, 5, 1, UNI_EMOD } /* emod=y */,
- { 1029, 9691, 780, 4, 30, UNI_SYMBOLSANDPICTOGRAPHSEXTA } /* blk=symbolsandpictographsextendeda */,
- { 0, 7460, 7990, 10, 1, UNI_IN__8 } /* presentin=8 */,
- { 65, 185, 6741, 2, 10, UNI_DEP } /* isdeprecated */,
- { 0, 8973, 447, 6, 32, UNI_IDEOGRAPHICSYMBOLS } /* block=ideographicsymbolsandpunctuation */,
- { 2, 10247, 6434, 3, 12, UNI_JG__MALAYALAMNNA } /* jg=malayalamnna */,
- { 5, 5045, 8501, 3, 7, UNI_UGAR } /* isugaritic */,
- { 0, 9763, 8308, 4, 8, UNI_WB__EB } /* gcb=ebasegaz */,
- { 365, 9190, 0, 5, 0, UNI_term_values_index } /* term= */,
- { 0, 1814, 10355, 22, 3, UNI_CWCM } /* changeswhencasemapped=yes */,
- { 2, 8955, 9454, 6, 5, -UNI_XPOSIXALPHA } /* alpha=false */,
- { 6, 1945, 0, 2, 0, UNI_SD } /* sd */,
- { 1, 9190, 10056, 6, 3, UNI_TERM } /* term=true */,
- { 265, 1418, 2833, 24, 2, UNI_CCC__1 } /* canonicalcombiningclass=ov */,
- { 0, 9691, 720, 4, 16, UNI_CUNEIFORMNUMBERS } /* blk=cuneiformnumbers */,
- { 1, 185, 7104, 2, 11, UNI_SYLO } /* issylotinagri */,
- { 2, 185, 4625, 3, 13, UNI_SC } /* iscurrencysymbol */,
- { 0, 2304, 7006, 3, 10, UNI_SO } /* isothersymbol */,
- { 0, 9476, 9707, 3, 4, UNI_CANS } /* sc=cans */,
- { 0, 9979, 9871, 4, 3, UNI_MRO } /* scx=mro */,
- { 0, 8973, 7600, 6, 10, UNI_YIRADICALS } /* block=yiradicals */,
- { 720, 4058, 0, 16, 0, UNI_PF } /* finalpunctuation */,
- { 0, 9647, 5732, 4, 2, UNI_AGE__10 } /* age=10 */,
- { 1, 185, 8607, 2, 4, UNI_ELBA } /* iselba */,
- { 352, 10247, 7148, 3, 11, UNI_JG__YEHWITHTAIL } /* jg=yehwithtail */,
- { 1, 9979, 7434, 5, 3, UNI_SOGD } /* scx=sogd */,
- { 1, 3373, 0, 18, 0, UNI_ZP } /* paragraphseparator */,
- { 0, 510, 0, 30, 0, UNI_CJKEXTA } /* cjkunifiedideographsextensiona */,
- { 1, 10511, 5802, 5, 5, UNI_POSIXALNUM } /* posixalnum */,
- { 62, 10268, 8913, 3, 4, UNI_NV__4000 } /* nv=4000 */,
- { 320, 9476, 2311, 3, 7, UNI_SC__SINH } /* sc=sinhala */,
- { 0, 10510, 5096, 6, 5, UNI_XPOSIXDIGIT } /* xposixdigit */,
- { 2, 7360, 415, 10, 11, UNI_LB__ID } /* linebreak=ideographic */,
- { 340, 185, 9871, 2, 3, UNI_MRO } /* ismro */,
- { 0, 118, 4760, 3, 14, UNI_INIMPERIALARAMAIC } /* inimperialaramaic */,
- { 0, 8642, 10055, 7, 4, UNI_HYPHEN } /* hyphen=true */,
- { 24, 9691, 7862, 4, 9, UNI_INSAMARITAN } /* blk=samaritan */,
- { 0, 6937, 188, 6, 30, UNI_MISCPICTOGRAPHS } /* inmiscellaneoussymbolsandpictographs */,
- { 1, 1553, 4058, 9, 16, UNI_PF } /* category=finalpunctuation */,
- { 0, 3157, 10055, 18, 4, UNI_EBASE } /* emojimodifierbase=true */,
- { 0, 3877, 3826, 17, 4, UNI_MANI } /* scriptextensions=mani */,
- { 4, 5592, 26, 14, 1, UNI_PATSYN } /* patternsyntax=y */,
- { 0, 4847, 6951, 3, 10, UNI_MYANMAREXTA } /* inmyanmarexta */,
- { 6, 8593, 1026, 7, 2, -UNI_COMPEX } /* compex=no */,
+ { 0, 10349, 9454, 3, 5, -UNI_VS } /* vs=false */,
+ { 0, 5823, 0, 12, 0, UNI_GRBASE } /* graphemebase */,
+ { 0, 9979, 9811, 4, 4, UNI_KHMR } /* scx=khmr */,
+ { 26, 9691, 540, 4, 30, UNI_CJKEXTB } /* blk=cjkunifiedideographsextensionb */,
+ { 0, 7908, 0, 8, 0, UNI_ids_values_index } /* idstart= */,
+ { 0, 4847, 6520, 4, 10, UNI_INMENDEKIKAKUI } /* inmendekikakui */,
+ { 10, 10244, 4286, 3, 10, UNI_SM } /* gc=mathsymbol */,
+ { 0, 4972, 6091, 3, 3, UNI_TALU } /* istalu */,
+ { 1, 10400, 0, 2, 0, UNI_ZS } /* zs */,
+ { 0, 10253, 3409, 3, 17, UNI_RI } /* lb=regionalindicator */,
+ { 0, 9691, 2993, 4, 19, UNI_SUPARROWSC } /* blk=supplementalarrowsc */,
+ { 0, 10247, 2661, 3, 9, UNI_JG__YEHBARREE } /* jg=yehbarree */,
+ { 71, 9429, 0, 4, 0, UNI_CWCF } /* cwcf */,
+ { 0, 10229, 1418, 3, 9, UNI_DT__CAN } /* dt=canonical */,
+ { 0, 9459, 9454, 5, 5, -UNI_IDSB } /* idsb=false */,
+ { 0, 4972, 48, 5, 1, UNI_TERM } /* isterm */,
+ { 57, 185, 1632, 2, 23, UNI_GEOMETRICSHAPESEXT } /* isgeometricshapesextended */,
+ { 11, 10250, 6, 3, 1, UNI_JT__D } /* jt=d */,
+ { 10, 8973, 2860, 6, 19, UNI_MODIFIERTONELETTERS } /* block=modifiertoneletters */,
+ { 2, 9691, 3724, 4, 17, UNI_ETHIOPICEXTB } /* blk=ethiopicextendedb */,
+ { 0, 9469, 8776, 3, 6, UNI_INPHAGSPA } /* inphagspa */,
+ { 1, 10516, 7845, 3, 8, UNI_PALM } /* ispalmyrene */,
+ { 2, 4074, 7005, 16, 11, UNI_SO } /* generalcategory=othersymbol */,
+ { 0, 5256, 0, 7, 0, UNI_KANASUP } /* kanasup */,
+ { 4, 9476, 8677, 3, 7, UNI_SC__MAND } /* sc=mandaic */,
+ { 1, 185, 10119, 2, 4, UNI_ZYYY } /* iszyyy */,
+ { 82, 7360, 0, 10, 0, UNI_lb_values_index } /* linebreak= */,
+ { 0, 185, 6518, 2, 12, UNI_MEND } /* ismendekikakui */,
+ { 0, 9691, 3319, 4, 18, UNI_LATINEXTADDITIONAL } /* blk=latinextadditional */,
+ { 2, 1880, 10055, 22, 4, UNI_CWU } /* changeswhenuppercased=true */,
+ { 1, 1418, 9010, 25, 5, UNI_CCC__129 } /* canonicalcombiningclass=ccc129 */,
+ { 11, 10232, 10091, 3, 4, UNI_EA__W } /* ea=wide */,
+ { 2, 6340, 1443, 3, 23, UNI_CJKSYMBOLS } /* incjksymbolsandpunctuation */,
+ { 0, 3877, 9135, 17, 4, UNI_LYDI } /* scriptextensions=lydi */,
+ { 0, 1418, 9380, 25, 4, UNI_CCC__30 } /* canonicalcombiningclass=ccc30 */,
+ { 6, 9691, 251, 4, 33, UNI_MISCMATHSYMBOLSA } /* blk=miscellaneousmathematicalsymbolsa */,
+ { 2, 10268, 8903, 3, 3, UNI_NV__600 } /* nv=600 */,
+ { 0, 9549, 1026, 5, 2, -UNI_XIDS } /* xids=no */,
+ { 176, 9979, 7016, 4, 11, UNI_HMNG } /* scx=pahawhhmong */,
+ { 0, 10250, 7400, 3, 10, UNI_JT__U } /* jt=nonjoining */,
+ { 75, 3157, 9454, 18, 5, -UNI_EBASE } /* emojimodifierbase=false */,
+ { 0, 9979, 8859, 4, 7, UNI_TIBT } /* scx=tibetan */,
+ { 67, 3193, 0, 18, 0, UNI_ETHIOPICSUP } /* ethiopicsupplement */,
+ { 2, 10352, 7049, 3, 11, UNI_WB__SQ } /* wb=singlequote */,
+ { 0, 8973, 7420, 6, 10, UNI_INOLDPERSIAN } /* block=oldpersian */,
+ { 1, 8973, 3911, 6, 17, UNI_SMALLFORMS } /* block=smallformvariants */,
+ { 0, 149, 0, 35, 0, UNI_DIACRITICALSSUP } /* combiningdiacriticalmarkssupplement */,
+ { 2, 7297, 8643, 3, 5, UNI_HYPHEN } /* ishyphen */,
+ { 0, 2304, 2899, 3, 18, UNI_OTTOMANSIYAQNUMBERS } /* isottomansiyaqnumbers */,
+ { 0, 5830, 0, 6, 0, UNI_ebase_values_index } /* ebase= */,
+ { 0, 3877, 8740, 17, 7, UNI_OLCK } /* scriptextensions=olchiki */,
+ { 0, 7580, 1195, 10, 2, UNI_LB__LF } /* wordbreak=lf */,
+ { 0, 7230, 866, 10, 2, UNI_BC__WS } /* bidiclass=ws */,
+ { 34, 3877, 9787, 17, 4, UNI_HANO } /* scriptextensions=hano */,
+ { 28, 9691, 8663, 4, 7, UNI_INLINEARA } /* blk=lineara */,
+ { 1, 10223, 26, 3, 1, UNI_CI } /* ci=y */,
+ { 1, 9743, 26, 4, 1, UNI_DEP } /* dep=y */,
+ { 65, 9476, 9843, 3, 4, UNI_SC__LINB } /* sc=linb */,
+ { 1, 8973, 4939, 6, 15, UNI_SARB } /* block=oldsoutharabian */,
+ { 0, 7297, 1117, 3, 3, UNI_HANG } /* ishang */,
+ { 2, 9763, 407, 4, 7, UNI_GCB__CN } /* gcb=control */,
+ { 1, 185, 9947, 2, 4, UNI_COPT } /* isqaac */,
+ { 7, 185, 7727, 2, 9, UNI_LATINEXTC } /* islatinextc */,
+ { 3, 8712, 0, 9, 0, UNI_NFKDQC__N } /* nfkdqc=no */,
+ { 262, 9691, 3622, 4, 17, UNI_INCAUCASIANALBANIAN } /* blk=caucasianalbanian */,
+ { 6, 5326, 0, 14, 0, UNI_LATINEXTE } /* latinextendede */,
+ { 1, 85, 0, 4, 0, UNI_MATH } /* math */,
+ { 147, 7460, 10187, 10, 3, UNI_IN__5_DOT_1 } /* presentin=5.1 */,
+ { 1, 1553, 1923, 9, 2, UNI_PC } /* category=pc */,
+ { 3, 5875, 7187, 13, 3, UNI_JG__QAF } /* joininggroup=qaf */,
+ { 0, 8973, 1193, 6, 26, UNI_HALFANDFULLFORMS } /* block=halfwidthandfullwidthforms */,
+ { 0, 8973, 661, 7, 29, UNI_CJKEXTF } /* block=cjkunifiedideographsextensionf */,
+ { 0, 1852, 1026, 6, 2, -UNI_CASED } /* cased=no */,
+ { 114, 5368, 0, 14, 0, UNI_LISUSUP } /* lisusupplement */,
+ { 2, 9474, 3639, 5, 17, UNI_INSC__CONSONANTPREFIXED } /* insc=consonantprefixed */,
+ { 0, 8782, 9509, 7, 5, UNI_OGAM } /* script=ogham */,
+ { 145, 3877, 9835, 17, 4, UNI_LATN } /* scriptextensions=latn */,
+ { 0, 8973, 3139, 6, 13, UNI_DEVANAGARIEXT } /* block=devanagariext */,
+ { 128, 9979, 7844, 4, 4, UNI_PALM } /* scx=palm */,
+ { 0, 9691, 5772, 5, 12, UNI_BLOCKELEMENTS } /* blk=blockelements */,
+ { 2, 3877, 8388, 17, 4, UNI_JAVA } /* scriptextensions=java */,
+ { 1, 9489, 9454, 5, 5, -UNI_MATH } /* math=false */,
+ { 8, 9476, 7570, 3, 10, UNI_WARA } /* sc=warangciti */,
+ { 1, 10268, 10358, 3, 2, UNI_NV__38 } /* nv=38 */,
+ { 138, 21, 1219, 2, 26, UNI_KATAKANAEXT } /* inkatakanaphoneticextensions */,
+ { 6, 9691, 5368, 4, 7, UNI_LISUSUP } /* blk=lisusup */,
+ { 6, 8782, 383, 7, 4, UNI_EGYP } /* script=egyp */,
+ { 5, 9691, 2841, 4, 19, UNI_MERO } /* blk=meroitichieroglyphs */,
+ { 10, 9979, 2584, 4, 4, UNI_MAND } /* scx=mand */,
+ { 112, 10247, 0, 3, 0, UNI_jg_values_index } /* jg= */,
+ { 25, 8973, 3792, 6, 17, UNI_INKHITANSMALLSCRIPT } /* block=khitansmallscript */,
+ { 92, 317, 0, 33, 0, UNI_SUPMATHOPERATORS } /* supplementalmathematicaloperators */,
+ { 2, 9647, 7950, 4, 1, UNI_AGE__4 } /* age=4 */,
+ { 0, 4157, 416, 3, 10, UNI_IDEO } /* isideographic */,
+ { 1, 8782, 10004, 8, 3, UNI_SOGO } /* script=sogo */,
+ { 6, 5116, 36, 14, 1, UNI_CI } /* caseignorable=t */,
+ { 49, 185, 3978, 2, 11, UNI_BOPOMOFOEXT } /* isbopomofoext */,
+ { 87, 1553, 48, 9, 1, UNI_M } /* category=m */,
+ { 8, 8782, 8845, 7, 7, UNI_TAVT } /* script=taiviet */,
+ { 1, 9474, 8484, 5, 8, UNI_INSC__TONEMARK } /* insc=tonemark */,
+ { 1, 5172, 26, 14, 1, UNI_EMOD } /* emojimodifier=y */,
{ 1, 2898, 0, 19, 0, UNI_OTTOMANSIYAQNUMBERS } /* ottomansiyaqnumbers */,
- { 0, 21, 9129, 2, 6, UNI_INLYCIAN } /* inlycian */,
- { 4, 8782, 8740, 7, 7, UNI_OLCK } /* script=olchiki */,
- { 3, 9979, 9907, 4, 4, UNI_OLCK } /* scx=olck */,
- { 9, 1418, 8986, 25, 5, UNI_CCC__103 } /* canonicalcombiningclass=ccc103 */,
- { 0, 9979, 3978, 4, 4, UNI_BOPO } /* scx=bopo */,
- { 2, 8973, 6386, 6, 7, UNI_MAHJONG } /* block=mahjong */,
- { 0, 9469, 2573, 5, 3, UNI_INPC__TOP } /* inpc=top */,
- { 0, 2206, 71, 21, 2, UNI_GCB__PP } /* graphemeclusterbreak=pp */,
- { 4, 185, 2936, 2, 12, UNI_SUNDANESESUP } /* issundanesesup */,
- { 0, 9476, 9827, 3, 4, UNI_LANA } /* sc=lana */,
- { 2, 10516, 1630, 3, 3, UNI_PHAG } /* isphag */,
- { 8, 9691, 4984, 4, 5, UNI_INTAMIL } /* blk=tamil */,
- { 3, 9476, 9907, 3, 4, UNI_OLCK } /* sc=olck */,
- { 10, 9979, 2269, 4, 11, UNI_MTEI } /* scx=meeteimayek */,
- { 1, 8881, 981, 3, 26, UNI_ALPHABETICPF } /* isalphabeticpresentationforms */,
- { 74, 8284, 0, 8, 0, UNI_BASS } /* bassavah */,
- { 0, 185, 5284, 2, 14, UNI_LATINEXTB } /* islatinextendedb */,
- { 0, 1553, 9424, 9, 5, UNI_XPOSIXCNTRL } /* category=cntrl */,
- { 30, 7360, 752, 10, 2, UNI_LB__CL } /* linebreak=cl */,
- { 0, 8973, 1930, 6, 16, UNI_INDICNUMBERFORMS } /* block=indicnumberforms */,
- { 2, 10268, 10360, 3, 2, UNI_NV__39 } /* nv=39 */,
- { 32, 10253, 1187, 3, 2, UNI_LB__PO } /* lb=po */,
- { 29, 9461, 9189, 3, 5, UNI_SB__ST } /* sb=sterm */,
- { 67, 5914, 0, 13, 0, UNI_ZL } /* lineseparator */,
- { 212, 6083, 8211, 13, 2, UNI_NV__18 } /* numericvalue=18 */,
- { 608, 1814, 0, 22, 0, UNI_cwcm_values_index } /* changeswhencasemapped= */,
- { 0, 7360, 5648, 10, 9, UNI_LB__QU } /* linebreak=quotation */,
- { 0, 3894, 36, 17, 1, UNI_STERM } /* sentenceterminal=t */,
- { 0, 5875, 10265, 13, 3, UNI_JG__MIM } /* joininggroup=mim */,
- { 3, 1632, 0, 18, 0, UNI_GEOMETRICSHAPESEXT } /* geometricshapesext */,
- { 0, 10244, 4954, 3, 15, UNI_PS } /* gc=openpunctuation */,
- { 0, 7360, 4954, 10, 15, UNI_LB__OP } /* linebreak=openpunctuation */,
- { 0, 5662, 752, 14, 5, UNI_SB__CL } /* sentencebreak=close */,
- { 0, 8973, 4625, 7, 14, UNI_CURRENCYSYMBOLS } /* block=currencysymbols */,
- { 1, 8973, 8656, 6, 7, UNI_KALI } /* block=kayahli */,
- { 34, 9711, 2833, 4, 2, UNI_CCC__1 } /* ccc=ov */,
- { 12, 10268, 7975, 3, 1, UNI_NV__6 } /* nv=6 */,
- { 0, 4972, 1117, 3, 3, UNI_TANG } /* istang */,
- { 108, 7745, 0, 9, 0, UNI_LATINEXTF } /* latinextf */,
- { 2, 6206, 0, 12, 0, UNI_CYRILLICEXTB } /* cyrillicextb */,
- { 0, 1564, 0, 2, 0, UNI_PS } /* ps */,
- { 136, 9476, 9514, 3, 5, UNI_SC__ORYA } /* sc=oriya */,
- { 72, 3409, 1, 18, 1, -UNI_RI } /* regionalindicator=n */,
- { 488, 9691, 568, 4, 2, UNI_NB } /* blk=nb */,
- { 9, 9691, 810, 4, 29, UNI_ENCLOSEDIDEOGRAPHICSUP } /* blk=enclosedideographicsupplement */,
- { 2, 9691, 7817, 4, 9, UNI_INOLDPERMIC } /* blk=oldpermic */,
- { 3, 8973, 2879, 6, 12, UNI_MONGOLIANSUP } /* block=mongoliansup */,
- { 144, 7520, 0, 10, 0, UNI_SUPARROWSA } /* suparrowsa */,
- { 320, 10352, 10235, 3, 3, UNI_WB__EB } /* wb=ebg */,
- { 1, 3877, 3193, 17, 8, UNI_ETHI } /* scriptextensions=ethiopic */,
- { 0, 3942, 8350, 4, 6, UNI_INGURMUKHI } /* ingurmukhi */,
- { 527, 4074, 48, 16, 1, UNI_M } /* generalcategory=m */,
- { 122, 6083, 9603, 13, 4, UNI_NV__13_SLASH_2 } /* numericvalue=13/2 */,
- { 1, 1553, 6983, 9, 11, UNI_LO } /* category=otherletter */,
- { 22, 9647, 10331, 4, 3, UNI_AGE__6_DOT_2 } /* age=v62 */,
- { 75, 9691, 2332, 4, 21, UNI_YIJING } /* blk=yijinghexagramsymbols */,
- { 2, 9711, 6851, 4, 11, UNI_CCC__8 } /* ccc=kanavoicing */,
- { 0, 9691, 4535, 5, 6, UNI_BRAI } /* blk=braille */,
- { 0, 9461, 0, 3, 0, UNI_sb_values_index } /* sb= */,
- { 94, 8782, 9444, 7, 4, UNI_SC__DOGR } /* script=dogr */,
- { 0, 383, 0, 4, 0, UNI_EGYP } /* egyp */,
- { 0, 6083, 8913, 13, 5, UNI_NV__40000 } /* numericvalue=40000 */,
- { 0, 5823, 1026, 13, 2, -UNI_GRBASE } /* graphemebase=no */,
- { 2, 9979, 9699, 4, 4, UNI_BUHD } /* scx=buhd */,
- { 0, 8973, 9264, 6, 5, UNI_INADLAM } /* block=adlam */,
- { 22, 7300, 26, 10, 1, UNI_DIA } /* diacritic=y */,
- { 1, 9691, 8579, 4, 7, UNI_CJKEXTF } /* blk=cjkextf */,
- { 0, 2206, 34, 21, 2, UNI_GCB__EX } /* graphemeclusterbreak=ex */,
- { 1, 9087, 3, 6, 1, -UNI_JOINC } /* joinc=f */,
- { 0, 10352, 496, 3, 7, UNI_WB__NU } /* wb=numeric */,
- { 66, 3877, 3622, 17, 17, UNI_AGHB } /* scriptextensions=caucasianalbanian */,
- { 10, 8782, 7330, 7, 4, UNI_KHAR } /* script=khar */,
- { 1, 10352, 139, 3, 2, UNI_WB__FO } /* wb=fo */,
- { 7, 9476, 1116, 3, 4, UNI_SC__HANG } /* sc=hang */,
- { 24, 9647, 7951, 4, 1, UNI_AGE__3 } /* age=3 */,
- { 7, 1538, 2573, 24, 3, UNI_INPC__TOP } /* indicpositionalcategory=top */,
- { 0, 185, 1903, 3, 18, UNI_CJKCOMPATIDEOGRAPHS } /* iscjkcompatideographs */,
- { 5, 7230, 3398, 10, 10, UNI_BC__WS } /* bidiclass=whitespace */,
- { 0, 7093, 0, 11, 0, UNI_SUPERANDSUB } /* superandsub */,
- { 1, 2248, 8818, 3, 6, UNI_SUPPUAA } /* insuppuaa */,
- { 11, 909, 0, 10, 0, UNI_CO } /* privateuse */,
- { 61, 8782, 9807, 7, 4, UNI_SC__KALI } /* script=kali */,
- { 263, 9476, 10007, 3, 4, UNI_SC__SYRC } /* sc=syrc */,
- { 15, 7560, 36, 10, 1, UNI_XPOSIXUPPER } /* uppercase=t */,
- { 1, 9691, 5368, 4, 7, UNI_LISUSUP } /* blk=lisusup */,
- { 2, 810, 0, 22, 0, UNI_ENCLOSEDIDEOGRAPHICSUP } /* enclosedideographicsup */,
- { 1, 7360, 8428, 10, 8, UNI_LB__NL } /* linebreak=nextline */,
- { 0, 8973, 5214, 6, 14, UNI_INGREEK } /* block=greekandcoptic */,
- { 0, 185, 8670, 2, 4, UNI_MAKA } /* ismaka */,
- { 32, 59, 0, 4, 0, UNI_IDEO } /* ideo */,
- { 137, 185, 729, 2, 6, UNI_N } /* isnumber */,
- { 48, 7230, 3373, 10, 18, UNI_BC__B } /* bidiclass=paragraphseparator */,
- { 0, 9294, 0, 5, 0, UNI_BUHD } /* buhid */,
- { 10, 1592, 2709, 3, 18, UNI_INEGYPTIANHIEROGLYPHS } /* inegyptianhieroglyphs */,
- { 272, 10244, 207, 3, 2, UNI_PI } /* gc=pi */,
- { 0, 9461, 33, 3, 2, UNI_SB__SE } /* sb=se */,
- { 126, 9847, 9454, 4, 5, -UNI_LOE } /* loe=false */,
- { 24, 4074, 3373, 16, 18, UNI_ZP } /* generalcategory=paragraphseparator */,
- { 6, 8316, 1026, 8, 2, -UNI_EXTPICT } /* extpict=no */,
- { 0, 9691, 6972, 4, 11, UNI_INNANDINAGARI } /* blk=nandinagari */,
- { 26, 9476, 4759, 3, 15, UNI_ARMI } /* sc=imperialaramaic */,
- { 6, 2803, 10055, 19, 4, UNI_IDST } /* idstrinaryoperator=true */,
- { 16, 10352, 728, 3, 2, UNI_WB__MN } /* wb=mn */,
- { 3, 9647, 8212, 4, 3, UNI_AGE__8 } /* age=8.0 */,
- { 0, 9691, 284, 4, 33, UNI_MISCMATHSYMBOLSB } /* blk=miscellaneousmathematicalsymbolsb */,
- { 160, 185, 8388, 2, 4, UNI_JAVA } /* isjava */,
- { 3, 7360, 21, 10, 2, UNI_LB__IN } /* linebreak=in */,
- { 91, 10268, 8949, 3, 6, UNI_NV__900000 } /* nv=900000 */,
- { 1, 2248, 3929, 3, 16, UNI_SUTTONSIGNWRITING } /* insuttonsignwriting */,
- { 0, 8961, 9454, 6, 5, -UNI_BIDIC } /* bidic=false */,
- { 0, 9476, 9284, 3, 5, UNI_BATK } /* sc=batak */,
- { 0, 3877, 2632, 17, 6, UNI_BRAH } /* scriptextensions=brahmi */,
- { 0, 9979, 9135, 4, 6, UNI_LYDI } /* scx=lydian */,
- { 0, 8380, 0, 8, 0, UNI_JAMOEXTB } /* jamoextb */,
- { 0, 8973, 6506, 6, 12, UNI_MATHALPHANUM } /* block=mathalphanum */,
- { 0, 10247, 2651, 3, 19, UNI_JG__BURUSHASKIYEHBARREE } /* jg=burushaskiyehbarree */,
- { 12, 9077, 0, 4, 0, UNI_ext_values_index } /* ext= */,
- { 25, 8973, 3076, 6, 9, UNI_HALFMARKS } /* block=halfmarks */,
- { 1, 2242, 7783, 4, 7, UNI_INNABATAEAN } /* innabataean */,
- { 0, 10553, 10008, 3, 3, UNI_SYRC } /* issyrc */,
- { 288, 9177, 10355, 6, 3, UNI_QMARK } /* qmark=yes */,
- { 0, 9476, 10123, 3, 4, UNI_ZZZZ } /* sc=zzzz */,
- { 7, 7467, 7934, 3, 1, UNI_IN__2 } /* in=2 */,
- { 0, 4157, 7909, 3, 6, UNI_IDS } /* isidstart */,
- { 0, 8973, 5745, 6, 13, UNI_AEGEANNUMBERS } /* block=aegeannumbers */,
- { 16, 185, 9444, 2, 4, UNI_DOGR } /* isdogr */,
- { 0, 7467, 9587, 3, 4, UNI_IN__11 } /* in=11.0 */,
- { 0, 9711, 7934, 4, 2, UNI_CCC__25 } /* ccc=25 */,
- { 0, 9691, 4669, 4, 15, UNI_DIACRITICALSSUP } /* blk=diacriticalssup */,
- { 26, 10346, 472, 3, 2, UNI_VO__TU } /* vo=tu */,
- { 2, 5368, 0, 7, 0, UNI_LISUSUP } /* lisusup */,
- { 1, 10244, 27, 3, 2, UNI_LOWERCASELETTER } /* gc=ll */,
- { 9, 3877, 7853, 17, 9, UNI_PAUC } /* scriptextensions=paucinhau */,
- { 2, 9476, 2433, 3, 10, UNI_SC__GLAG } /* sc=glagolitic */,
- { 6, 9434, 26, 5, 1, UNI_CWCM } /* cwcm=y */,
- { 1192, 7460, 7975, 10, 1, UNI_IN__6 } /* presentin=6 */,
- { 11, 6230, 0, 12, 0, UNI_ETHIOPICEXTA } /* ethiopicexta */,
- { 0, 185, 5830, 2, 5, UNI_EBASE } /* isebase */,
- { 292, 8810, 0, 7, 0, UNI_SOYO } /* soyombo */,
- { 1, 7460, 10298, 10, 3, UNI_IN__2_DOT_1 } /* presentin=v21 */,
- { 0, 9979, 8284, 4, 4, UNI_BASS } /* scx=bass */,
- { 68, 9711, 9375, 5, 4, UNI_CCC__29 } /* ccc=ccc29 */,
- { 0, 9979, 9939, 4, 4, UNI_MIAO } /* scx=plrd */,
- { 0, 7460, 10331, 10, 3, UNI_IN__6_DOT_2 } /* presentin=v62 */,
- { 26, 8782, 4190, 8, 3, UNI_SARB } /* script=sarb */,
- { 0, 3877, 9935, 17, 4, UNI_PHNX } /* scriptextensions=phnx */,
- { 1, 10553, 8811, 3, 6, UNI_SOYO } /* issoyombo */,
- { 0, 1990, 5200, 22, 14, UNI_INSC__GEMINATIONMARK } /* indicsyllabiccategory=geminationmark */,
- { 9, 1553, 6132, 9, 2, UNI_PF } /* category=pf */,
- { 0, 3962, 0, 16, 0, UNI_ARABICSUP } /* arabicsupplement */,
- { 39, 9979, 5368, 4, 4, UNI_LISU } /* scx=lisu */,
- { 44, 185, 7540, 2, 10, UNI_SUPARROWSC } /* issuparrowsc */,
- { 0, 8973, 8559, 7, 6, UNI_CJKEXTC } /* block=cjkextc */,
- { 86, 4074, 6994, 16, 11, UNI_NO } /* generalcategory=othernumber */,
- { 1, 6675, 0, 10, 0, UNI_IDC } /* idcontinue */,
- { 424, 5875, 88, 13, 2, UNI_JG__HE } /* joininggroup=he */,
- { 1280, 8702, 1036, 4, 9, UNI_ENCLOSEDCJK } /* inenclosedcjk */,
- { 176, 0, 0, 42, 0, UNI_UCASEXT } /* unifiedcanadianaboriginalsyllabicsextended */,
- { 1, 185, 3050, 3, 10, UNI_CHEROKEESUP } /* ischerokeesup */,
- { 10, 2003, 7, 10, 1, UNI_CASEDLETTER } /* category=lc */,
- { 30, 8782, 8284, 7, 4, UNI_BASS } /* script=bass */,
- { 4, 185, 810, 2, 29, UNI_ENCLOSEDIDEOGRAPHICSUP } /* isenclosedideographicsupplement */,
- { 0, 9979, 0, 4, 0, UNI_scx_values_index } /* scx= */,
- { 0, 9843, 0, 4, 0, UNI_LINB } /* linb */,
- { 0, 4504, 0, 4, 0, UNI_BAMU } /* bamu */,
- { 72, 185, 6386, 2, 12, UNI_MAHJONG } /* ismahjongtiles */,
- { 26, 8973, 6731, 7, 10, UNI_INCYPROMINOAN } /* block=cyprominoan */,
- { 1, 10217, 10256, 3, 3, UNI_BC__LRE } /* bc=lre */,
- { 1313, 9429, 9454, 5, 5, -UNI_CWCF } /* cwcf=false */,
- { 5, 3877, 2312, 18, 6, UNI_SINH } /* scriptextensions=sinhala */,
- { 97, 10268, 7932, 3, 8, UNI_NV__1_SLASH_8 } /* nv=1.25e-01 */,
- { 28, 1553, 6719, 9, 11, UNI_CASEDLETTER } /* category=casedletter */,
- { 256, 6590, 0, 12, 0, UNI_HUNG } /* oldhungarian */,
- { 1, 10268, 8012, 3, 8, UNI_NV__1_SLASH_4 } /* nv=2.50e-01 */,
- { 0, 6083, 5732, 13, 4, UNI_NV__1000 } /* numericvalue=1000 */,
- { 11, 9476, 6590, 3, 12, UNI_HUNG } /* sc=oldhungarian */,
- { 0, 1189, 8469, 3, 7, UNI_INTAGBANWA } /* intagbanwa */,
- { 36, 9695, 7, 4, 1, UNI_BPT__C } /* bpt=c */,
- { 79, 8973, 8292, 6, 8, UNI_INBUGINESE } /* block=buginese */,
- { 1, 4170, 0, 6, 0, UNI_LATIN1 } /* latin1 */,
- { 0, 4972, 9535, 3, 4, UNI_TAKR } /* istakri */,
- { 2, 185, 9883, 2, 4, UNI_NARB } /* isnarb */,
- { 0, 9691, 6675, 4, 3, UNI_INIDC } /* blk=idc */,
- { 192, 7467, 8092, 3, 3, UNI_IN__4 } /* in=4.0 */,
- { 6, 8628, 36, 7, 1, UNI_GRBASE } /* grbase=t */,
- { 0, 9544, 10055, 5, 4, UNI_XIDC } /* xidc=true */,
- { 1, 1553, 4639, 9, 15, UNI_PD } /* category=dashpunctuation */,
- { 8, 9727, 3, 4, 1, -UNI_CWL } /* cwl=f */,
- { 5, 8973, 8684, 6, 7, UNI_INMARCHEN } /* block=marchen */,
+ { 0, 9476, 7310, 3, 10, UNI_DIAK } /* sc=divesakuru */,
+ { 13, 3877, 8600, 17, 7, UNI_DSRT } /* scriptextensions=deseret */,
+ { 0, 7370, 1026, 10, 2, -UNI_XPOSIXLOWER } /* lowercase=no */,
+ { 27, 10268, 4175, 3, 1, UNI_NV__1 } /* nv=1 */,
+ { 0, 9691, 2143, 4, 21, UNI_CJKRADICALSSUP } /* blk=cjkradicalssupplement */,
+ { 16, 4170, 0, 9, 0, UNI_LATIN1 } /* latin1sup */,
+ { 5, 9763, 0, 4, 0, UNI_gcb_values_index } /* gcb= */,
+ { 0, 6083, 7995, 13, 2, UNI_NV__12 } /* numericvalue=12 */,
+ { 26, 10268, 10196, 3, 3, UNI_NV__5_SLASH_8 } /* nv=5/8 */,
+ { 3, 3962, 0, 9, 0, UNI_ARABICSUP } /* arabicsup */,
+ { 1, 8782, 2312, 8, 6, UNI_SC__SINH } /* script=sinhala */,
+ { 1, 9711, 1180, 4, 2, UNI_CCC__BL } /* ccc=bl */,
+ { 0, 7467, 10298, 3, 3, UNI_IN__2_DOT_1 } /* in=v21 */,
+ { 3, 9691, 7853, 4, 9, UNI_INPAUCINHAU } /* blk=paucinhau */,
+ { 1, 6340, 8580, 3, 6, UNI_CJKEXTF } /* incjkextf */,
+ { 0, 8881, 3964, 4, 7, UNI_ARABICSUP } /* isarabicsup */,
+ { 0, 9476, 1116, 3, 4, UNI_SC__HANG } /* sc=hang */,
+ { 0, 8705, 26, 7, 1, UNI_NFKCQC__Y } /* nfkcqc=y */,
+ { 33, 8796, 0, 7, 0, UNI_SHAW } /* shavian */,
+ { 0, 9691, 3049, 4, 8, UNI_INCHEROKEE } /* blk=cherokee */,
+ { 0, 3877, 10023, 17, 4, UNI_TAML } /* scriptextensions=taml */,
+ { 6, 4074, 4346, 16, 16, UNI_PO } /* generalcategory=otherpunctuation */,
+ { 0, 10283, 1, 3, 1, -UNI_SD } /* sd=n */,
+ { 81, 9691, 7520, 4, 10, UNI_SUPARROWSA } /* blk=suparrowsa */,
+ { 2, 8973, 7200, 6, 10, UNI_ARABICEXTB } /* block=arabicextb */,
+ { 0, 8782, 10103, 7, 4, UNI_SC__YI } /* script=yiii */,
+ { 265, 9190, 3, 5, 1, -UNI_TERM } /* term=f */,
+ { 40, 9711, 5849, 4, 13, UNI_CCC__IS } /* ccc=iotasubscript */,
+ { 16, 3894, 36, 17, 1, UNI_STERM } /* sentenceterminal=t */,
+ { 0, 9979, 9843, 4, 4, UNI_LINB } /* scx=linb */,
+ { 1, 9691, 479, 4, 31, UNI_MATHALPHANUM } /* blk=mathematicalalphanumericsymbols */,
+ { 0, 7460, 7923, 10, 2, UNI_IN__11 } /* presentin=11 */,
+ { 29, 9711, 8761, 4, 7, UNI_CCC__1 } /* ccc=overlay */,
+ { 3, 4909, 26, 15, 1, UNI_DT__NONE } /* nfkdquickcheck=y */,
+ { 177, 2248, 7072, 3, 10, UNI_INSORASOMPENG } /* insorasompeng */,
+ { 1, 10352, 401, 3, 6, UNI_WB__FO } /* wb=format */,
+ { 5, 8973, 5940, 6, 9, UNI_INMALAYALAM } /* block=malayalam */,
+ { 0, 10247, 6266, 3, 12, UNI_JG__FINALSEMKATH } /* jg=finalsemkath */,
+ { 2, 8642, 36, 7, 1, UNI_HYPHEN } /* hyphen=t */,
+ { 2, 10217, 0, 3, 0, UNI_bc_values_index } /* bc= */,
+ { 9, 9691, 4186, 4, 16, UNI_LINEARBIDEOGRAMS } /* blk=linearbideograms */,
+ { 0, 4074, 1060, 16, 2, UNI_SO } /* generalcategory=so */,
+ { 1, 10528, 0, 5, 0, UNI_XPOSIXPRINT } /* print */,
+ { 0, 9189, 9454, 6, 5, -UNI_STERM } /* sterm=false */,
+ { 150, 9691, 2633, 5, 5, UNI_INBRAHMI } /* blk=brahmi */,
+ { 0, 9979, 9799, 4, 4, UNI_HMNP } /* scx=hmnp */,
+ { 0, 9763, 5830, 4, 5, UNI_WB__EB } /* gcb=ebase */,
+ { 32, 10229, 9141, 3, 6, UNI_DT__NAR } /* dt=narrow */,
+ { 1, 3877, 8691, 17, 7, UNI_MULT } /* scriptextensions=multani */,
+ { 2, 8284, 0, 8, 0, UNI_BASS } /* bassavah */,
+ { 0, 7230, 2533, 10, 11, UNI_BC__R } /* bidiclass=righttoleft */,
+ { 7, 8684, 0, 4, 0, UNI_MARC } /* marc */,
+ { 4, 3877, 10087, 17, 4, UNI_WCHO } /* scriptextensions=wcho */,
+ { 0, 8782, 8799, 10, 4, UNI_SHAW } /* script=shavian */,
+ { 41, 6675, 10355, 11, 3, UNI_IDC } /* idcontinue=yes */,
+ { 0, 10253, 8642, 3, 2, UNI_LB__HY } /* lb=hy */,
+ { 0, 9171, 36, 6, 1, UNI__PERL_PATWS } /* patws=t */,
+ { 8, 3391, 0, 18, 0, UNI_patws_values_index } /* patternwhitespace= */,
+ { 3, 8973, 329, 6, 21, UNI_MATHOPERATORS } /* block=mathematicaloperators */,
+ { 12, 8691, 0, 7, 0, UNI_MULT } /* multani */,
+ { 33, 8782, 9843, 7, 4, UNI_SC__LINB } /* script=linb */,
+ { 0, 9476, 9444, 3, 5, UNI_SC__DOGR } /* sc=dogra */,
+ { 17, 9691, 9117, 4, 6, UNI_INLEPCHA } /* blk=lepcha */,
+ { 16, 8887, 0, 6, 0, UNI_XPOSIXSPACE } /* wspace */,
+ { 1, 9476, 10031, 3, 4, UNI_TFNG } /* sc=tfng */,
+ { 18, 25, 0, 1, 0, UNI_S } /* s */,
+ { 20, 6230, 0, 12, 0, UNI_ETHIOPICEXTA } /* ethiopicexta */,
+ { 3, 6083, 8004, 13, 8, UNI_NV__5_SLASH_2 } /* numericvalue=2.50e+00 */,
+ { 1, 9691, 980, 4, 27, UNI_ALPHABETICPF } /* blk=alphabeticpresentationforms */,
+ { 1, 8973, 1370, 6, 24, UNI_ARABICPFA } /* block=arabicpresentationformsa */,
+ { 57, 185, 219, 3, 32, UNI_DIACRITICALSEXT } /* iscombiningdiacriticalmarksextended */,
+ { 0, 5823, 36, 13, 1, UNI_GRBASE } /* graphemebase=t */,
+ { 0, 9476, 2311, 3, 4, UNI_SC__SINH } /* sc=sinh */,
+ { 0, 4669, 0, 15, 0, UNI_DIACRITICALSSUP } /* diacriticalssup */,
+ { 273, 1553, 4639, 9, 15, UNI_PD } /* category=dashpunctuation */,
+ { 0, 185, 8628, 2, 6, UNI_GRBASE } /* isgrbase */,
+ { 1, 8782, 8356, 7, 8, UNI_SC__HIRA } /* script=hiragana */,
+ { 6, 1836, 10055, 22, 4, UNI_CWL } /* changeswhenlowercased=true */,
+ { 83, 6350, 7, 12, 1, UNI_JT__C } /* joiningtype=c */,
+ { 1, 3877, 9105, 17, 6, UNI_KHOJ } /* scriptextensions=khojki */,
+ { 0, 9476, 8979, 3, 4, UNI_CARI } /* sc=cari */,
+ { 76, 9979, 2433, 4, 10, UNI_GLAG } /* scx=glagolitic */,
+ { 0, 9979, 8476, 4, 8, UNI_TFNG } /* scx=tifinagh */,
+ { 136, 8973, 1903, 7, 21, UNI_CJKCOMPATIDEOGRAPHSSUP } /* block=cjkcompatideographssup */,
+ { 70, 8782, 2879, 7, 9, UNI_SC__MONG } /* script=mongolian */,
+ { 1, 9691, 720, 4, 9, UNI_INCUNEIFORM } /* blk=cuneiform */,
+ { 4, 9979, 3265, 4, 8, UNI_GEOR } /* scx=georgian */,
+ { 1, 8492, 0, 7, 0, UNI_UCASEXT } /* ucasext */,
+ { 8, 7460, 7983, 10, 1, UNI_IN__7 } /* presentin=7 */,
+ { 73, 10103, 0, 4, 0, UNI_YI } /* yiii */,
+ { 20, 3877, 2353, 17, 20, UNI_HLUW } /* scriptextensions=anatolianhieroglyphs */,
{ 0, 1418, 3031, 24, 18, UNI_CCC__216 } /* canonicalcombiningclass=attachedaboveright */,
- { 0, 5830, 9454, 6, 5, -UNI_EBASE } /* ebase=false */,
- { 36, 185, 3193, 2, 18, UNI_ETHIOPICSUP } /* isethiopicsupplement */,
- { 9, 8961, 1026, 6, 2, -UNI_BIDIC } /* bidic=no */,
- { 0, 10516, 63, 7, 5, UNI_POSIXGRAPH } /* isposixgraph */,
- { 512, 8973, 601, 7, 29, UNI_CJKEXTD } /* block=cjkunifiedideographsextensiond */,
- { 357, 4154, 1775, 3, 2, UNI_INVAI } /* invai */,
- { 4, 9077, 26, 4, 1, UNI_EXT } /* ext=y */,
- { 0, 6340, 2123, 3, 20, UNI_CJKCOMPATFORMS } /* incjkcompatibilityforms */,
- { 1, 3121, 568, 18, 2, UNI_DT__NB } /* decompositiontype=nb */,
- { 0, 7467, 10075, 3, 4, UNI_IN__13 } /* in=v130 */,
- { 290, 6083, 4175, 13, 1, UNI_NV__1 } /* numericvalue=1 */,
- { 0, 8782, 9264, 7, 5, UNI_SC__ADLM } /* script=adlam */,
- { 0, 401, 0, 6, 0, UNI_CF } /* format */,
- { 2, 9171, 3, 6, 1, -UNI__PERL_PATWS } /* patws=f */,
- { 64, 4714, 1026, 15, 2, -UNI_GREXT } /* graphemeextend=no */,
- { 0, 1538, 5044, 24, 15, UNI_LOE } /* indicpositionalcategory=visualorderleft */,
- { 0, 9691, 7745, 4, 9, UNI_LATINEXTF } /* blk=latinextf */,
- { 0, 10268, 8059, 3, 2, UNI_NV__33 } /* nv=33 */,
- { 0, 3877, 7430, 17, 10, UNI_SOGO } /* scriptextensions=oldsogdian */,
- { 300, 9476, 8607, 3, 4, UNI_ELBA } /* sc=elba */,
- { 2, 10247, 5410, 3, 14, UNI_JG__MANICHAEANBETH } /* jg=manichaeanbeth */,
- { 0, 8881, 27, 3, 2, UNI_ALL } /* isall */,
- { 13, 10553, 2312, 3, 3, UNI_SINH } /* issinh */,
- { 0, 10253, 4503, 3, 2, UNI_LB__BB } /* lb=bb */,
- { 0, 9731, 1026, 4, 2, -UNI_CWT } /* cwt=no */,
- { 0, 8614, 0, 7, 0, UNI_ELYM } /* elymaic */,
- { 1, 5088, 36, 14, 1, UNI_POSIXXDIGIT } /* asciihexdigit=t */,
- { 117, 10253, 97, 3, 10, UNI_LB__AL } /* lb=alphabetic */,
- { 11, 10268, 8092, 3, 8, UNI_NV__2_SLASH_5 } /* nv=4.00e-01 */,
- { 29, 10516, 3, 3, 1, UNI_PF } /* ispf */,
- { 0, 8955, 3, 6, 1, -UNI_XPOSIXALPHA } /* alpha=f */,
- { 4, 8782, 9651, 7, 4, UNI_AGHB } /* script=aghb */,
- { 0, 9979, 4314, 4, 7, UNI_MYMR } /* scx=myanmar */,
- { 0, 8824, 0, 7, 0, UNI_SUPPUAB } /* suppuab */,
- { 12, 1418, 10157, 24, 3, UNI_CCC__AL } /* canonicalcombiningclass=228 */,
- { 1, 6340, 661, 3, 29, UNI_CJKEXTF } /* incjkunifiedideographsextensionf */,
- { 3, 10268, 10136, 3, 3, UNI_NV__2_SLASH_3 } /* nv=2/3 */,
- { 9, 5662, 1891, 14, 5, UNI_SB__UP } /* sentencebreak=upper */,
- { 0, 21, 1678, 2, 23, UNI_LATINEXTADDITIONAL } /* inlatinextendedadditional */,
- { 2, 6697, 1026, 11, 2, -UNI_XPOSIXALPHA } /* alphabetic=no */,
- { 0, 0, 0, 43, 0, UNI_UCASEXTA } /* unifiedcanadianaboriginalsyllabicsextendeda */,
- { 1, 10247, 6906, 3, 11, UNI_JG__MALAYALAMJA } /* jg=malayalamja */,
- { 56, 8973, 7718, 6, 9, UNI_LATINEXTB } /* block=latinextb */,
- { 7, 9691, 8656, 4, 7, UNI_KALI } /* blk=kayahli */,
- { 0, 8712, 0, 8, 0, UNI_NFKDQC__N } /* nfkdqc=n */,
- { 11, 9476, 9715, 3, 4, UNI_CHRS } /* sc=chrs */,
- { 0, 6340, 220, 4, 31, UNI_DIACRITICALSEXT } /* incombiningdiacriticalmarksextended */,
- { 2, 9831, 0, 3, 0, UNI_LAO } /* lao */,
- { 1, 1629, 0, 4, 0, UNI_PHAG } /* phag */,
- { 9, 8973, 7390, 6, 10, UNI_MISCARROWS } /* block=miscarrows */,
- { 281, 4847, 2086, 3, 14, UNI_MODIFIERLETTERS } /* inmodifierletters */,
- { 2, 8973, 415, 6, 32, UNI_INIDC } /* block=ideographicdescriptioncharacters */,
- { 4, 9691, 909, 4, 10, UNI_PUA } /* blk=privateuse */,
- { 0, 10247, 6422, 3, 12, UNI_JG__MALAYALAMNGA } /* jg=malayalamnga */,
- { 16, 6083, 7610, 13, 9, UNI_NV___MINUS_1_SLASH_2 } /* numericvalue=-5.00e-01 */,
- { 0, 3877, 8356, 17, 8, UNI_HIRA } /* scriptextensions=hiragana */,
- { 2, 9927, 36, 4, 1, UNI_PCM } /* pcm=t */,
- { 1, 8973, 5326, 6, 14, UNI_LATINEXTE } /* block=latinextendede */,
- { 1, 4442, 0, 16, 0, UNI_TANGUTSUP } /* tangutsupplement */,
- { 0, 21, 5312, 2, 14, UNI_LATINEXTD } /* inlatinextendedd */,
- { 384, 4074, 7, 16, 1, UNI_C } /* generalcategory=c */,
- { 0, 4346, 0, 5, 0, UNI_C } /* other */,
- { 0, 3877, 8656, 17, 7, UNI_KALI } /* scriptextensions=kayahli */,
- { 4, 2304, 9515, 3, 4, UNI_ORYA } /* isoriya */,
- { 0, 1418, 3588, 24, 13, UNI_CCC__202 } /* canonicalcombiningclass=attachedbelow */,
- { 0, 9093, 0, 6, 0, UNI_KTHI } /* kaithi */,
- { 1, 5875, 2661, 13, 3, UNI_JG__YEH } /* joininggroup=yeh */,
- { 0, 5116, 36, 14, 1, UNI_CI } /* caseignorable=t */,
- { 0, 10229, 1254, 3, 4, UNI_DT__INIT } /* dt=init */,
- { 0, 185, 317, 2, 33, UNI_SUPMATHOPERATORS } /* issupplementalmathematicaloperators */,
+ { 115, 9105, 0, 6, 0, UNI_KHOJ } /* khojki */,
+ { 81, 9691, 8404, 4, 8, UNI_KANAEXTB } /* blk=kanaextb */,
+ { 1, 2304, 263, 3, 3, UNI_OSMA } /* isosma */,
+ { 89, 9711, 8251, 4, 2, UNI_CCC__19 } /* ccc=19 */,
+ { 2, 8973, 9093, 6, 6, UNI_INKAITHI } /* block=kaithi */,
+ { 40, 9691, 1701, 4, 23, UNI_SHORTHANDFORMATCONTROLS } /* blk=shorthandformatcontrols */,
+ { 1, 9474, 4458, 5, 5, UNI_INSC__VOWEL } /* insc=vowel */,
+ { 1, 10229, 10286, 3, 3, UNI_DT__SML } /* dt=sml */,
+ { 119, 3877, 9959, 17, 4, UNI_RJNG } /* scriptextensions=rjng */,
+ { 0, 8284, 0, 4, 0, UNI_BASS } /* bass */,
+ { 18, 9691, 9509, 4, 5, UNI_INOGHAM } /* blk=ogham */,
+ { 202, 3877, 10008, 18, 3, UNI_SYRC } /* scriptextensions=syrc */,
+ { 0, 9979, 10015, 4, 4, UNI_TALE } /* scx=tale */,
+ { 4, 9476, 7655, 3, 9, UNI_BHKS } /* sc=bhaiksuki */,
+ { 0, 6083, 8028, 13, 5, UNI_NV__20000 } /* numericvalue=20000 */,
+ { 18, 10346, 472, 3, 2, UNI_VO__TU } /* vo=tu */,
+ { 2, 3877, 7853, 17, 9, UNI_PAUC } /* scriptextensions=paucinhau */,
+ { 0, 3877, 8859, 17, 7, UNI_TIBT } /* scriptextensions=tibetan */,
+ { 0, 9763, 6287, 4, 3, UNI_LB__ZWJ } /* gcb=zwj */,
+ { 9, 10511, 10528, 5, 5, UNI_POSIXPRINT } /* posixprint */,
+ { 0, 21, 7736, 2, 9, UNI_LATINEXTD } /* inlatinextd */,
+ { 1, 5875, 4829, 13, 3, UNI_JG__SAD } /* joininggroup=sad */,
+ { 24, 720, 0, 9, 0, UNI_XSUX } /* cuneiform */,
+ { 0, 3409, 3, 18, 1, -UNI_RI } /* regionalindicator=f */,
+ { 3, 10516, 9936, 3, 3, UNI_PHNX } /* isphnx */,
+ { 148, 10244, 1564, 3, 2, UNI_PS } /* gc=ps */,
+ { 0, 10516, 2595, 3, 3, UNI_PRTI } /* isprti */,
+ { 3, 9476, 9699, 3, 4, UNI_SC__BUHD } /* sc=buhd */,
+ { 1, 3877, 1678, 17, 5, UNI_LATN } /* scriptextensions=latin */,
+ { 140, 10003, 0, 4, 0, UNI_SOGO } /* sogo */,
+ { 138, 10516, 25, 3, 1, UNI_PS } /* isps */,
+ { 0, 10533, 3403, 7, 5, UNI_XPOSIXBLANK } /* ishorizspace */,
+ { 1, 6083, 8028, 13, 4, UNI_NV__2000 } /* numericvalue=2000 */,
+ { 12, 9979, 8790, 5, 6, UNI_SHRD } /* scx=sharada */,
+ { 3, 9691, 6752, 4, 11, UNI_DOMINO } /* blk=dominotiles */,
+ { 98, 10232, 4527, 3, 7, UNI_EA__N } /* ea=neutral */,
+ { 49, 5875, 6917, 13, 11, UNI_JG__MALAYALAMRA } /* joininggroup=malayalamra */,
+ { 0, 4157, 1931, 3, 15, UNI_INDICNUMBERFORMS } /* isindicnumberforms */,
+ { 0, 7460, 10304, 10, 3, UNI_IN__3_DOT_1 } /* presentin=v31 */,
+ { 16, 7297, 2228, 3, 3, UNI_HAN } /* ishani */,
+ { 0, 9979, 9679, 4, 4, UNI_AVST } /* scx=avst */,
+ { 1, 6083, 9259, 13, 5, UNI_NV__11_SLASH_12 } /* numericvalue=11/12 */,
+ { 0, 4774, 0, 15, 0, UNI_LOWERCASELETTER } /* lowercaseletter */,
+ { 40, 1270, 0, 25, 0, UNI_compex_values_index } /* fullcompositionexclusion= */,
+ { 0, 185, 9951, 2, 4, UNI_QAAI } /* isqaai */,
+ { 15, 3877, 9775, 17, 4, UNI_GREK } /* scriptextensions=grek */,
+ { 1, 9691, 952, 4, 28, UNI_VSSUP } /* blk=variationselectorssupplement */,
+ { 4, 3877, 7420, 17, 10, UNI_XPEO } /* scriptextensions=oldpersian */,
+ { 1, 6697, 26, 11, 1, UNI_XPOSIXALPHA } /* alphabetic=y */,
+ { 141, 2012, 10055, 22, 4, UNI_LOE } /* logicalorderexception=true */,
+ { 136, 10268, 10370, 3, 2, UNI_NV__48 } /* nv=48 */,
+ { 0, 3877, 9715, 17, 4, UNI_CHRS } /* scriptextensions=chrs */,
+ { 257, 3175, 9454, 18, 5, -UNI_EPRES } /* emojipresentation=false */,
+ { 7, 185, 7016, 2, 11, UNI_HMNG } /* ispahawhhmong */,
+ { 78, 3877, 9534, 17, 5, UNI_TAKR } /* scriptextensions=takri */,
+ { 3, 10516, 9424, 7, 5, UNI_POSIXCNTRL } /* isposixcntrl */,
+ { 1, 21, 5270, 2, 6, UNI_KANGXI } /* inkangxi */,
+ { 33, 185, 721, 3, 29, UNI_CUNEIFORMNUMBERS } /* iscuneiformnumbersandpunctuation */,
+ { 5, 8973, 7808, 6, 9, UNI_INOLDITALIC } /* block=olditalic */,
+ { 2, 9691, 3193, 4, 18, UNI_ETHIOPICSUP } /* blk=ethiopicsupplement */,
+ { 0, 6338, 0, 11, 0, UNI_JOINC } /* joincontrol */,
+ { 0, 1553, 207, 9, 2, UNI_PI } /* category=pi */,
{ 0, 6083, 8116, 13, 8, UNI_NV__3_SLASH_64 } /* numericvalue=4.69e-02 */,
- { 0, 3403, 9454, 6, 5, -UNI_XPOSIXSPACE } /* space=false */,
+ { 1, 9711, 8179, 4, 2, UNI_CCC__36 } /* ccc=36 */,
+ { 9, 1592, 2709, 3, 18, UNI_INEGYPTIANHIEROGLYPHS } /* inegyptianhieroglyphs */,
+ { 0, 8444, 1026, 8, 2, -UNI_RADICAL } /* radical=no */,
+ { 0, 10247, 3826, 3, 17, UNI_JG__MANICHAEANDHAMEDH } /* jg=manichaeandhamedh */,
+ { 0, 185, 6158, 2, 11, UNI_BIDIC } /* isbidicontrol */,
+ { 96, 10352, 7763, 3, 9, UNI_WB__ML } /* wb=midletter */,
+ { 1, 21, 2614, 3, 18, UNI_ANCIENTGREEKNUMBERS } /* inancientgreeknumbers */,
+ { 4, 3448, 8493, 3, 6, UNI_UCASEXT } /* inucasext */,
+ { 4, 9476, 2248, 3, 21, UNI_PRTI } /* sc=inscriptionalparthian */,
+ { 29, 5823, 0, 13, 0, UNI_grbase_values_index } /* graphemebase= */,
+ { 13, 8316, 36, 8, 1, UNI_EXTPICT } /* extpict=t */,
+ { 24, 3877, 8866, 17, 7, UNI_TIRH } /* scriptextensions=tirhuta */,
+ { 1, 185, 1345, 2, 25, UNI_SYMBOLSFORLEGACYCOMPUTING } /* issymbolsforlegacycomputing */,
+ { 1, 9647, 8099, 4, 2, UNI_AGE__14 } /* age=14 */,
+ { 0, 9711, 8, 4, 1, UNI_CCC__A } /* ccc=a */,
+ { 100, 8420, 0, 8, 0, UNI_MAHJ } /* mahajani */,
+ { 1, 10268, 8179, 3, 2, UNI_NV__36 } /* nv=36 */,
+ { 0, 3877, 0, 17, 0, UNI_scx_values_index } /* scriptextensions= */,
+ { 0, 3877, 9117, 17, 4, UNI_LEPC } /* scriptextensions=lepc */,
+ { 187, 1814, 0, 21, 0, UNI_CWCM } /* changeswhencasemapped */,
+ { 5, 6083, 9571, 13, 4, UNI_NV__1_SLASH_40 } /* numericvalue=1/40 */,
+ { 0, 10511, 5095, 5, 6, UNI_POSIXXDIGIT } /* posixxdigit */,
+ { 2, 8782, 10099, 7, 4, UNI_XSUX } /* script=xsux */,
+ { 1, 10217, 3373, 3, 18, UNI_BC__B } /* bc=paragraphseparator */,
+ { 0, 9979, 8775, 4, 7, UNI_PHAG } /* scx=phagspa */,
+ { 75, 185, 7390, 2, 10, UNI_MISCARROWS } /* ismiscarrows */,
+ { 0, 2146, 0, 7, 0, UNI_RADICAL } /* radical */,
+ { 0, 8593, 1, 7, 1, -UNI_COMPEX } /* compex=n */,
+ { 1, 9939, 0, 4, 0, UNI_MIAO } /* plrd */,
+ { 0, 2248, 897, 3, 27, UNI_SUPPUAA } /* insupplementaryprivateuseareaa */,
+ { 3, 3553, 0, 18, 0, UNI_vs_values_index } /* variationselector= */,
+ { 0, 2242, 8720, 3, 6, UNI_NB } /* innoblock */,
+ { 0, 3877, 8811, 18, 6, UNI_SOYO } /* scriptextensions=soyombo */,
+ { 0, 1418, 10148, 24, 3, UNI_CCC__BR } /* canonicalcombiningclass=222 */,
+ { 128, 9449, 36, 5, 1, UNI_EMOD } /* emod=t */,
+ { 0, 6674, 1, 12, 1, -UNI_XIDC } /* xidcontinue=n */,
+ { 0, 1219, 0, 8, 0, UNI_KANA } /* katakana */,
+ { 0, 8782, 79, 7, 4, UNI_SC__ARAB } /* script=arab */,
+ { 0, 3877, 6928, 17, 11, UNI_MEDF } /* scriptextensions=medefaidrin */,
+ { 0, 9476, 8831, 3, 7, UNI_SC__TGLG } /* sc=tagalog */,
+ { 0, 5875, 5940, 13, 13, UNI_JG__MALAYALAMLLLA } /* joininggroup=malayalamllla */,
+ { 0, 9123, 3, 6, 1, -UNI_XPOSIXLOWER } /* lower=f */,
+ { 0, 5536, 48, 14, 1, UNI_NFCQC__M } /* nfcquickcheck=m */,
+ { 0, 7360, 1775, 10, 2, UNI_LB__AI } /* linebreak=ai */,
+ { 91, 185, 541, 3, 29, UNI_CJKEXTB } /* iscjkunifiedideographsextensionb */,
+ { 0, 7360, 1187, 10, 2, UNI_LB__PO } /* linebreak=po */,
+ { 1, 8973, 4298, 6, 16, UNI_MISCMATHSYMBOLSB } /* block=miscmathsymbolsb */,
+ { 4, 7071, 0, 4, 0, UNI_SORA } /* sora */,
+ { 3, 6578, 39, 12, 2, UNI_XPOSIXDIGIT } /* numerictype=de */,
+ { 0, 3877, 8873, 17, 7, UNI_ZZZZ } /* scriptextensions=unknown */,
+ { 0, 185, 10111, 2, 4, UNI_ZANB } /* iszanb */,
+ { 0, 7360, 10380, 10, 2, UNI_LB__H3 } /* linebreak=h3 */,
+ { 0, 8973, 4410, 6, 9, UNI_SYRIACSUP } /* block=syriacsup */,
+ { 121, 9647, 8100, 4, 3, UNI_AGE__4_DOT_1 } /* age=4.1 */,
+ { 2, 6083, 8937, 13, 3, UNI_NV__700 } /* numericvalue=700 */,
+ { 0, 5662, 1090, 15, 2, UNI_SB__SE } /* sentencebreak=sep */,
+ { 4, 1553, 5522, 9, 14, UNI_SK } /* category=modifiersymbol */,
+ { 4, 10510, 1891, 6, 5, UNI_XPOSIXUPPER } /* xposixupper */,
{ 1, 1189, 4443, 3, 8, UNI_TANGUTSUP } /* intangutsup */,
- { 2, 185, 4714, 2, 14, UNI_GREXT } /* isgraphemeextend */,
- { 3, 4074, 1846, 16, 2, UNI_NL } /* generalcategory=nl */,
- { 336, 185, 38, 2, 2, UNI_XPOSIXDIGIT } /* isnd */,
- { 23, 1990, 1245, 22, 25, UNI_INSC__CONSONANTINITIALPOSTFIXED } /* indicsyllabiccategory=consonantinitialpostfixed */,
- { 6, 9476, 8754, 3, 4, UNI_OSMA } /* sc=osma */,
- { 345, 9691, 2353, 4, 20, UNI_INANATOLIANHIEROGLYPHS } /* blk=anatolianhieroglyphs */,
- { 4, 185, 7, 3, 1, UNI_XPOSIXCNTRL } /* iscc */,
- { 3, 7820, 0, 4, 0, UNI_PERM } /* perm */,
- { 4, 185, 10400, 2, 2, UNI_ZS } /* iszs */,
- { 0, 8973, 1747, 6, 13, UNI_ZNAMENNYMUSIC } /* block=znamennymusic */,
- { 800, 5662, 2553, 15, 4, UNI_SB__ST } /* sentencebreak=sterm */,
- { 7, 8782, 9504, 7, 5, UNI_NSHU } /* script=nushu */,
- { 1, 9691, 7433, 4, 7, UNI_INSOGDIAN } /* blk=sogdian */,
- { 35, 1418, 7990, 24, 1, UNI_CCC__8 } /* canonicalcombiningclass=8 */,
- { 68, 9476, 9643, 3, 4, UNI_SC__ADLM } /* sc=adlm */,
- { 3, 9476, 7450, 3, 10, UNI_PHNX } /* sc=phoenician */,
- { 32, 10247, 9111, 3, 6, UNI_JG__LAMADH } /* jg=lamadh */,
- { 18, 7360, 59, 10, 2, UNI_LB__ID } /* linebreak=id */,
- { 6, 9979, 8388, 4, 8, UNI_JAVA } /* scx=javanese */,
- { 0, 8973, 3707, 6, 16, UNI_ETHIOPICEXT } /* block=ethiopicextended */,
- { 0, 3877, 8691, 17, 7, UNI_MULT } /* scriptextensions=multani */,
- { 0, 3877, 9484, 17, 4, UNI_LIMB } /* scriptextensions=limb */,
- { 5, 7467, 10310, 3, 3, UNI_IN__4 } /* in=v40 */,
- { 0, 2248, 1725, 3, 22, UNI_SUPPUNCTUATION } /* insupplementalpunctuation */,
- { 50, 9476, 8614, 3, 7, UNI_ELYM } /* sc=elymaic */,
- { 0, 1990, 5158, 22, 14, UNI_INSC__CONSONANTFINAL } /* indicsyllabiccategory=consonantfinal */,
- { 291, 4074, 3382, 16, 9, UNI_Z } /* generalcategory=separator */,
- { 6, 9691, 1674, 4, 4, UNI_JAMO } /* blk=jamo */,
- { 0, 185, 3978, 2, 8, UNI_BOPO } /* isbopomofo */,
- { 0, 9476, 1655, 3, 6, UNI_SC__HANG } /* sc=hangul */,
- { 0, 10247, 10277, 3, 3, UNI_JG__REH } /* jg=reh */,
- { 130, 9803, 6895, 4, 3, UNI_LB__H3 } /* hst=lvt */,
- { 0, 7467, 7990, 3, 1, UNI_IN__8 } /* in=8 */,
- { 0, 8973, 1903, 7, 18, UNI_CJKCOMPATIDEOGRAPHS } /* block=cjkcompatideographs */,
- { 50, 9135, 0, 6, 0, UNI_LYDI } /* lydian */,
- { 0, 7360, 18, 10, 2, UNI_RI } /* linebreak=ri */,
- { 33, 8316, 36, 8, 1, UNI_EXTPICT } /* extpict=t */,
- { 1, 7835, 0, 9, 0, UNI_OUGR } /* olduyghur */,
- { 20, 1418, 9006, 24, 3, UNI_CCC__122 } /* canonicalcombiningclass=122 */,
- { 0, 9979, 10083, 4, 3, UNI_VAI } /* scx=vai */,
- { 1, 2003, 48, 10, 1, UNI_LM } /* category=lm */,
- { 0, 9647, 10307, 4, 3, UNI_AGE__3_DOT_2 } /* age=v32 */,
- { 0, 9943, 0, 4, 0, UNI_PRTI } /* prti */,
- { 1, 10349, 1, 3, 1, -UNI_VS } /* vs=n */,
- { 0, 9270, 9454, 4, 5, -UNI_XPOSIXXDIGIT } /* hex=false */,
- { 0, 21, 1008, 3, 26, UNI_ANCIENTGREEKMUSIC } /* inancientgreekmusicalnotation */,
- { 18, 4042, 0, 7, 0, UNI_CPRT } /* cypriot */,
- { 0, 6529, 126, 3, 2, UNI_OCR } /* inocr */,
- { 0, 9711, 9345, 5, 4, UNI_CCC__23 } /* ccc=ccc23 */,
- { 0, 9979, 2433, 4, 4, UNI_GLAG } /* scx=glag */,
- { 0, 9711, 3596, 4, 5, UNI_CCC__B } /* ccc=below */,
- { 619, 9270, 0, 4, 0, UNI_hex_values_index } /* hex= */,
- { 0, 10217, 3398, 3, 10, UNI_BC__WS } /* bc=whitespace */,
- { 0, 8782, 9033, 7, 6, UNI_SC__CAKM } /* script=chakma */,
- { 0, 9979, 9919, 4, 4, UNI_OSGE } /* scx=osge */,
- { 417, 9476, 9867, 3, 4, UNI_SC__MLYM } /* sc=mlym */,
- { 17, 9647, 10175, 4, 3, UNI_AGE__3_DOT_2 } /* age=3.2 */,
- { 0, 9075, 0, 5, 0, UNI_GREXT } /* grext */,
- { 1, 7230, 2822, 10, 19, UNI_BC__LRO } /* bidiclass=lefttorightoverride */,
- { 0, 1189, 8777, 3, 3, UNI_TAGS } /* intags */,
- { 0, 9476, 7826, 3, 9, UNI_ORKH } /* sc=oldturkic */,
- { 12, 5875, 6470, 13, 12, UNI_JG__MALAYALAMTTA } /* joininggroup=malayalamtta */,
- { 0, 1189, 3482, 3, 10, UNI_TAIXUANJING } /* intaixuanjing */,
- { 10, 9967, 0, 4, 0, UNI_RUNR } /* runr */,
- { 67, 9476, 9069, 3, 4, UNI_GOTH } /* sc=goth */,
- { 2, 7360, 909, 10, 2, UNI_LB__PR } /* linebreak=pr */,
- { 12, 3121, 1310, 18, 3, UNI_DT__SUB } /* decompositiontype=sub */,
- { 1, 10268, 9591, 3, 4, UNI_NV__11_SLASH_2 } /* nv=11/2 */,
- { 2, 7360, 97, 10, 10, UNI_LB__AL } /* linebreak=alphabetic */,
- { 0, 9963, 0, 4, 0, UNI_ROHG } /* rohg */,
- { 555, 8973, 251, 6, 33, UNI_MISCMATHSYMBOLSA } /* block=miscellaneousmathematicalsymbolsa */,
+ { 20, 185, 8684, 2, 4, UNI_MARC } /* ismarc */,
+ { 0, 6752, 0, 11, 0, UNI_DOMINO } /* dominotiles */,
+ { 1, 10223, 10355, 3, 3, UNI_CI } /* ci=yes */,
+ { 3, 185, 8887, 2, 6, UNI_XPOSIXSPACE } /* iswspace */,
+ { 1, 5408, 8672, 4, 5, UNI_INMAKASAR } /* inmakasar */,
+ { 65, 9476, 10115, 3, 4, UNI_SC__QAAI } /* sc=zinh */,
+ { 176, 9691, 2085, 4, 4, UNI_INMODI } /* blk=modi */,
+ { 101, 9711, 185, 4, 2, UNI_CCC__IS } /* ccc=is */,
+ { 40, 185, 8580, 3, 6, UNI_CJKEXTF } /* iscjkextf */,
+ { 0, 9691, 9484, 4, 5, UNI_INLIMBU } /* blk=limbu */,
+ { 9, 10349, 1026, 3, 2, -UNI_VS } /* vs=no */,
+ { 203, 185, 8594, 3, 5, UNI_COMPEX } /* iscompex */,
+ { 2, 2227, 0, 14, 0, UNI_ROHG } /* hanifirohingya */,
+ { 2, 7360, 84, 10, 2, UNI_LB__CM } /* linebreak=cm */,
+ { 0, 9075, 9454, 6, 5, -UNI_GREXT } /* grext=false */,
+ { 2, 10247, 6031, 3, 13, UNI_JG__MANICHAEANWAW } /* jg=manichaeanwaw */,
+ { 0, 9979, 383, 4, 4, UNI_EGYP } /* scx=egyp */,
+ { 3, 2727, 0, 19, 0, UNI_ENCLOSEDALPHANUMSUP } /* enclosedalphanumsup */,
+ { 16, 9474, 4346, 5, 5, UNI_INSC__OTHER } /* insc=other */,
+ { 3, 9075, 26, 6, 1, UNI_GREXT } /* grext=y */,
+ { 0, 10217, 5926, 3, 3, UNI_BC__RLO } /* bc=rlo */,
+ { 25, 7467, 8119, 3, 1, UNI_IN__9 } /* in=9 */,
+ { 2, 6578, 0, 12, 0, UNI_nt_values_index } /* numerictype= */,
+ { 0, 9461, 340, 3, 2, UNI_SB__LO } /* sb=lo */,
+ { 32, 9979, 79, 4, 4, UNI_ARAB } /* scx=arab */,
+ { 0, 10244, 5797, 3, 13, UNI_XPOSIXDIGIT } /* gc=decimalnumber */,
+ { 205, 9087, 26, 6, 1, UNI_JOINC } /* joinc=y */,
+ { 0, 9691, 0, 4, 34, UNI_UCAS } /* blk=unifiedcanadianaboriginalsyllabics */,
+ { 153, 185, 7500, 2, 10, UNI_SAUR } /* issaurashtra */,
+ { 0, 8973, 7520, 6, 10, UNI_SUPARROWSA } /* block=suparrowsa */,
+ { 12, 8973, 7430, 6, 10, UNI_INOLDSOGDIAN } /* block=oldsogdian */,
+ { 0, 7467, 10340, 3, 3, UNI_IN__8 } /* in=v80 */,
+ { 11, 1167, 9454, 26, 5, -UNI_DI } /* defaultignorablecodepoint=false */,
+ { 5, 6697, 9454, 11, 5, -UNI_XPOSIXALPHA } /* alphabetic=false */,
+ { 0, 8973, 2708, 6, 19, UNI_INEGYPTIANHIEROGLYPHS } /* block=egyptianhieroglyphs */,
+ { 160, 9763, 4401, 4, 9, UNI_WB__EB } /* gcb=emodifier */,
+ { 0, 10217, 25, 3, 1, UNI_BC__S } /* bc=s */,
+ { 1, 6083, 7964, 13, 8, UNI_NV__3_SLASH_20 } /* numericvalue=1.50e-01 */,
+ { 1, 8973, 3265, 6, 18, UNI_GEORGIANSUP } /* block=georgiansupplement */,
+ { 0, 10253, 10384, 3, 2, UNI_GCB__V } /* lb=jv */,
+ { 0, 9439, 36, 5, 1, UNI_DASH } /* dash=t */,
+ { 9, 9459, 10355, 5, 3, UNI_IDSB } /* idsb=yes */,
+ { 1, 8973, 219, 7, 32, UNI_DIACRITICALSEXT } /* block=combiningdiacriticalmarksextended */,
+ { 112, 3775, 0, 17, 0, UNI_INDICSIYAQNUMBERS } /* indicsiyaqnumbers */,
+ { 0, 1418, 8102, 24, 2, UNI_CCC__17 } /* canonicalcombiningclass=17 */,
+ { 0, 9544, 0, 5, 0, UNI_xidc_values_index } /* xidc= */,
+ { 0, 9691, 8538, 5, 6, UNI_INBENGALI } /* blk=bengali */,
+ { 344, 9691, 3656, 4, 17, UNI_CYRILLICEXTA } /* blk=cyrillicextendeda */,
+ { 7, 9711, 9300, 5, 4, UNI_CCC__14 } /* ccc=ccc14 */,
+ { 149, 2242, 9892, 3, 3, UNI_INNEWA } /* innewa */,
+ { 0, 8782, 7826, 7, 9, UNI_ORKH } /* script=oldturkic */,
+ { 0, 10516, 10528, 7, 5, UNI_POSIXPRINT } /* isposixprint */,
+ { 0, 4154, 5030, 3, 14, UNI_VEDICEXT } /* invedicextensions */,
+ { 265, 6340, 6207, 3, 11, UNI_CYRILLICEXTB } /* incyrillicextb */,
+ { 13, 1592, 3194, 3, 17, UNI_ETHIOPICSUP } /* inethiopicsupplement */,
+ { 132, 7230, 18, 10, 1, UNI_BC__R } /* bidiclass=r */,
+ { 1, 9469, 7115, 5, 11, UNI_INPC__TOPANDRIGHT } /* inpc=topandright */,
+ { 0, 10247, 7254, 3, 3, UNI_JG__KAF } /* jg=kaf */,
+ { 6, 9691, 7727, 4, 9, UNI_LATINEXTC } /* blk=latinextc */,
+ { 0, 9979, 9105, 4, 4, UNI_KHOJ } /* scx=khoj */,
+ { 0, 329, 0, 21, 0, UNI_MATHOPERATORS } /* mathematicaloperators */,
+ { 3, 2304, 7810, 4, 7, UNI_ITAL } /* isolditalic */,
+ { 2, 1990, 4969, 22, 15, UNI_INSC__REGISTERSHIFTER } /* indicsyllabiccategory=registershifter */,
+ { 1, 1990, 2413, 22, 20, UNI_INSC__CONSONANTWITHSTACKER } /* indicsyllabiccategory=consonantwithstacker */,
+ { 8, 7460, 10328, 10, 3, UNI_IN__6_DOT_1 } /* presentin=v61 */,
+ { 0, 10530, 8478, 4, 6, UNI_INTIFINAGH } /* intifinagh */,
+ { 3, 6083, 9013, 13, 2, UNI_NV__29 } /* numericvalue=29 */,
+ { 0, 1592, 3194, 3, 10, UNI_ETHIOPICSUP } /* inethiopicsup */,
+ { 0, 6314, 0, 12, 0, UNI_ideo_values_index } /* ideographic= */,
+ { 2, 9979, 9703, 4, 4, UNI_CAKM } /* scx=cakm */,
+ { 0, 10250, 6638, 3, 12, UNI_JT__R } /* jt=rightjoining */,
+ { 3, 10268, 9639, 3, 4, UNI_NV__7_SLASH_12 } /* nv=7/12 */,
+ { 10, 9647, 9607, 4, 4, UNI_AGE__14 } /* age=14.0 */,
+ { 2, 10043, 0, 4, 0, UNI_TIBT } /* tibt */,
+ { 11, 1418, 9360, 25, 4, UNI_CCC__26 } /* canonicalcombiningclass=ccc26 */,
+ { 0, 2206, 6287, 21, 3, UNI_LB__ZWJ } /* graphemeclusterbreak=zwj */,
+ { 1, 185, 48, 2, 1, UNI_M } /* ism */,
+ { 132, 10553, 7501, 3, 3, UNI_SAUR } /* issaur */,
+ { 0, 10250, 6840, 3, 11, UNI_JT__C } /* jt=joincausing */,
+ { 0, 4894, 17, 16, 1, UNI_NFKCQC__N } /* nfkcquickcheck=no */,
+ { 4, 10217, 866, 3, 2, UNI_BC__WS } /* bc=ws */,
+ { 1, 7460, 10063, 10, 4, UNI_IN__11 } /* presentin=v110 */,
+ { 1, 8973, 1514, 6, 24, UNI_HIGHPUSURROGATES } /* block=highprivateusesurrogates */,
+ { 0, 9979, 9895, 4, 4, UNI_NKO } /* scx=nkoo */,
+ { 0, 4157, 2454, 3, 19, UNI_PHLI } /* isinscriptionalpahlavi */,
+ { 32, 185, 5836, 2, 8, UNI_GREEKEXT } /* isgreekext */,
+ { 0, 8973, 6972, 6, 11, UNI_INNANDINAGARI } /* block=nandinagari */,
+ { 0, 1088, 9454, 27, 5, -UNI_PCM } /* prependedconcatenationmark=false */,
+ { 65, 7853, 0, 9, 0, UNI_PAUC } /* paucinhau */,
+ { 2, 6741, 26, 11, 1, UNI_DEP } /* deprecated=y */,
+ { 12, 9474, 2868, 5, 10, UNI_INSC__TONELETTER } /* insc=toneletter */,
+ { 27, 2269, 0, 21, 0, UNI_MEETEIMAYEKEXT } /* meeteimayekextensions */,
+ { 3, 185, 9899, 2, 4, UNI_NSHU } /* isnshu */,
+ { 373, 6362, 0, 12, 0, UNI_KHMERSYMBOLS } /* khmersymbols */,
+ { 0, 9081, 0, 4, 0, UNI_HATR } /* hatr */,
+ { 0, 720, 0, 16, 0, UNI_CUNEIFORMNUMBERS } /* cuneiformnumbers */,
+ { 463, 24, 0, 1, 0, UNI_L } /* l */,
+ { 13, 185, 5256, 2, 7, UNI_KANASUP } /* iskanasup */,
+ { 0, 9979, 1219, 4, 8, UNI_KANA } /* scx=katakana */,
+ { 0, 9077, 1, 4, 1, -UNI_EXT } /* ext=n */,
+ { 32, 4074, 9706, 16, 2, UNI_MC } /* generalcategory=mc */,
+ { 356, 9647, 10319, 4, 3, UNI_AGE__5_DOT_1 } /* age=v51 */,
+ { 11, 9711, 0, 4, 0, UNI_ccc_values_index } /* ccc= */,
+ { 0, 5875, 3860, 13, 17, UNI_JG__MANICHAEANTHAMEDH } /* joininggroup=manichaeanthamedh */,
+ { 69, 1858, 36, 22, 1, UNI_CWT } /* changeswhentitlecased=t */,
+ { 0, 9057, 26, 6, 1, UNI_EMOJI } /* emoji=y */,
+ { 0, 10268, 8212, 3, 8, UNI_NV__4_SLASH_5 } /* nv=8.00e-01 */,
+ { 3, 7580, 6278, 10, 12, UNI_WB__EB } /* wordbreak=glueafterzwj */,
+ { 156, 9979, 9823, 4, 4, UNI_KTHI } /* scx=kthi */,
+ { 0, 1088, 3, 27, 1, -UNI_PCM } /* prependedconcatenationmark=f */,
+ { 0, 9691, 3481, 4, 18, UNI_TAIXUANJING } /* blk=taixuanjingsymbols */,
+ { 0, 5875, 4789, 13, 15, UNI_JG__MANICHAEANALEPH } /* joininggroup=manichaeanaleph */,
+ { 0, 185, 6862, 2, 11, UNI_KATAKANAEXT } /* iskatakanaext */,
+ { 0, 9979, 1924, 4, 6, UNI_ZYYY } /* scx=common */,
+ { 17, 185, 2165, 3, 20, UNI_CYRILLICSUP } /* iscyrillicsupplementary */,
+ { 132, 7460, 10310, 10, 3, UNI_IN__4 } /* presentin=v40 */,
+ { 19, 185, 8340, 2, 8, UNI_GUJR } /* isgujarati */,
+ { 0, 9647, 7995, 4, 2, UNI_AGE__12 } /* age=12 */,
+ { 108, 1836, 9454, 22, 5, -UNI_CWL } /* changeswhenlowercased=false */,
+ { 1, 3877, 9943, 17, 4, UNI_PRTI } /* scriptextensions=prti */,
+ { 0, 1553, 1187, 9, 2, UNI_PO } /* category=po */,
+ { 1, 5875, 4829, 13, 5, UNI_JG__SADHE } /* joininggroup=sadhe */,
+ { 72, 9647, 7990, 4, 1, UNI_AGE__8 } /* age=8 */,
+ { 0, 6083, 10130, 13, 3, UNI_NV__1_SLASH_7 } /* numericvalue=1/7 */,
+ { 2, 8967, 36, 6, 1, UNI_BIDIM } /* bidim=t */,
+ { 1, 6928, 0, 11, 0, UNI_MEDF } /* medefaidrin */,
+ { 1, 7370, 36, 10, 1, UNI_XPOSIXLOWER } /* lowercase=t */,
+ { 0, 9269, 0, 5, 0, UNI_ahex_values_index } /* ahex= */,
+ { 0, 9691, 7817, 4, 9, UNI_INOLDPERMIC } /* blk=oldpermic */,
+ { 0, 3877, 9907, 17, 4, UNI_OLCK } /* scriptextensions=olck */,
+ { 0, 185, 9699, 2, 4, UNI_BUHD } /* isbuhd */,
+ { 9, 4885, 2435, 4, 11, UNI_GLAGOLITICSUP } /* inglagoliticsup */,
+ { 357, 9691, 3365, 4, 8, UNI_DINGBATS } /* blk=dingbats */,
+ { 3, 4186, 0, 16, 0, UNI_LINEARBIDEOGRAMS } /* linearbideograms */,
+ { 0, 10516, 7349, 3, 3, UNI_PHLI } /* isphli */,
+ { 4, 9214, 0, 5, 0, UNI_ideo_values_index } /* ideo= */,
+ { 1, 8973, 44, 7, 25, UNI_CJKCOMPATIDEOGRAPHS } /* block=cjkcompatibilityideographs */,
+ { 0, 8973, 184, 6, 34, UNI_MISCPICTOGRAPHS } /* block=miscellaneoussymbolsandpictographs */,
+ { 0, 6674, 10055, 12, 4, UNI_XIDC } /* xidcontinue=true */,
+ { 379, 9476, 7016, 3, 11, UNI_HMNG } /* sc=pahawhhmong */,
+ { 4, 1990, 5718, 22, 14, UNI_INSC__VOWELDEPENDENT } /* indicsyllabiccategory=voweldependent */,
+ { 2, 1442, 0, 10, 0, UNI_CJKSYMBOLS } /* cjksymbols */,
+ { 1, 10217, 23, 3, 2, UNI_BC__AL } /* bc=al */,
+ { 0, 9270, 1, 4, 1, -UNI_XPOSIXXDIGIT } /* hex=n */,
+ { 0, 8782, 8500, 7, 4, UNI_UGAR } /* script=ugar */,
+ { 0, 510, 0, 30, 0, UNI_CJKEXTA } /* cjkunifiedideographsextensiona */,
+ { 1, 4074, 4286, 16, 10, UNI_SM } /* generalcategory=mathsymbol */,
+ { 8, 4463, 3141, 4, 8, UNI_INDEVANAGARI } /* indevanagari */,
+ { 3, 1418, 10151, 24, 3, UNI_CCC__L } /* canonicalcombiningclass=224 */,
+ { 40, 1418, 3588, 24, 17, UNI_WB__EB } /* canonicalcombiningclass=attachedbelowleft */,
+ { 52, 4426, 0, 6, 0, UNI_TANG } /* tangut */,
+ { 0, 5875, 5410, 13, 14, UNI_JG__MANICHAEANBETH } /* joininggroup=manichaeanbeth */,
+ { 0, 9444, 0, 4, 0, UNI_DOGR } /* dogr */,
+ { 2, 3978, 0, 4, 0, UNI_BOPO } /* bopo */,
+ { 7, 185, 1443, 3, 9, UNI_CJKSYMBOLS } /* iscjksymbols */,
+ { 0, 9476, 8775, 3, 7, UNI_SC__PHAG } /* sc=phagspa */,
+ { 354, 9979, 7835, 4, 9, UNI_OUGR } /* scx=olduyghur */,
+ { 1, 8782, 9739, 7, 4, UNI_SC__CYRL } /* script=cyrl */,
+ { 107, 9461, 401, 3, 6, UNI_SB__FO } /* sb=format */,
+ { 128, 1553, 909, 9, 10, UNI_CO } /* category=privateuse */,
+ { 0, 6302, 0, 6, 0, UNI_HEBR } /* hebrew */,
+ { 45, 7160, 2333, 3, 5, UNI_YIJING } /* isyijing */,
+ { 66, 9711, 9340, 5, 4, UNI_CCC__22 } /* ccc=ccc22 */,
+ { 5, 6350, 6796, 12, 11, UNI_JT__D } /* joiningtype=dualjoining */,
+ { 114, 9691, 4314, 4, 7, UNI_INMYANMAR } /* blk=myanmar */,
{ 2, 6675, 26, 11, 1, UNI_IDC } /* idcontinue=y */,
- { 4, 9691, 6290, 4, 12, UNI_INGUNJALAGONDI } /* blk=gunjalagondi */,
- { 0, 10508, 5095, 8, 6, UNI_XPOSIXXDIGIT } /* isxposixxdigit */,
- { 1103, 10268, 9254, 3, 3, UNI_NV__1_SLASH_3 } /* nv=1/3 */,
- { 72, 3877, 8340, 17, 8, UNI_GUJR } /* scriptextensions=gujarati */,
- { 0, 10247, 10220, 3, 3, UNI_JG__BEH } /* jg=beh */,
- { 842, 10244, 4346, 3, 5, UNI_C } /* gc=other */,
- { 90, 8973, 8573, 7, 6, UNI_CJKEXTE } /* block=cjkexte */,
- { 1164, 10247, 9955, 3, 4, UNI_JG__QAPH } /* jg=qaph */,
- { 1, 7360, 9920, 10, 2, UNI_LB__SG } /* linebreak=sg */,
- { 0, 1506, 5839, 5, 10, UNI_GREEKEXT } /* ingreekextended */,
- { 0, 10247, 10292, 3, 3, UNI_JG__TAH } /* jg=tah */,
- { 138, 7297, 9800, 3, 3, UNI_HMNP } /* ishmnp */,
- { 2, 2879, 0, 9, 0, UNI_MONG } /* mongolian */,
- { 1, 9476, 8845, 3, 7, UNI_TAVT } /* sc=taiviet */,
- { 0, 123, 0, 9, 0, UNI_DIA } /* diacritic */,
- { 0, 9691, 6302, 4, 6, UNI_INHEBREW } /* blk=hebrew */,
- { 0, 9691, 3139, 4, 18, UNI_DEVANAGARIEXT } /* blk=devanagariextended */,
- { 3, 8881, 1372, 4, 22, UNI_ARABICPFA } /* isarabicpresentationformsa */,
- { 1281, 8782, 7501, 8, 9, UNI_SAUR } /* script=saurashtra */,
- { 2, 9476, 9484, 3, 4, UNI_SC__LIMB } /* sc=limb */,
- { 2, 8973, 839, 6, 29, UNI_MISCARROWS } /* block=miscellaneoussymbolsandarrows */,
- { 1, 10268, 8180, 3, 8, UNI_NV__13_SLASH_2 } /* nv=6.50e+00 */,
- { 15, 9081, 0, 6, 0, UNI_HATR } /* hatran */,
- { 1, 3448, 8493, 3, 7, UNI_UCASEXTA } /* inucasexta */,
- { 0, 10244, 10390, 3, 2, UNI_CASEDLETTER } /* gc=l_ */,
+ { 0, 8973, 1061, 6, 27, UNI_OCR } /* block=opticalcharacterrecognition */,
+ { 0, 185, 8537, 2, 7, UNI_BENG } /* isbengali */,
+ { 0, 9509, 0, 5, 0, UNI_OGAM } /* ogham */,
+ { 144, 6083, 9639, 13, 4, UNI_NV__7_SLASH_12 } /* numericvalue=7/12 */,
+ { 0, 8782, 1924, 7, 6, UNI_SC__ZYYY } /* script=common */,
+ { 0, 3175, 1, 18, 1, -UNI_EPRES } /* emojipresentation=n */,
+ { 1, 8973, 6230, 6, 12, UNI_ETHIOPICEXTA } /* block=ethiopicexta */,
+ { 1, 4074, 5578, 16, 14, UNI_MN } /* generalcategory=nonspacingmark */,
+ { 0, 185, 9484, 2, 4, UNI_LIMB } /* islimb */,
+ { 232, 415, 0, 32, 0, UNI_INIDC } /* ideographicdescriptioncharacters */,
+ { 0, 10247, 3860, 3, 17, UNI_JG__MANICHAEANTHAMEDH } /* jg=manichaeanthamedh */,
+ { 19, 9476, 9871, 3, 3, UNI_MRO } /* sc=mro */,
+ { 0, 8973, 9264, 6, 5, UNI_INADLAM } /* block=adlam */,
+ { 1, 7360, 10378, 10, 2, UNI_LB__H2 } /* linebreak=h2 */,
+ { 0, 6529, 8755, 3, 6, UNI_INOSMANYA } /* inosmanya */,
+ { 0, 4074, 2085, 16, 14, UNI_LM } /* generalcategory=modifierletter */,
+ { 102, 4463, 8602, 4, 5, UNI_DSRT } /* indeseret */,
+ { 9, 3877, 2509, 17, 4, UNI_MONG } /* scriptextensions=mong */,
+ { 82, 2248, 7541, 3, 9, UNI_SUPARROWSC } /* insuparrowsc */,
+ { 1, 9743, 10055, 4, 4, UNI_DEP } /* dep=true */,
+ { 0, 9476, 9867, 3, 4, UNI_SC__MLYM } /* sc=mlym */,
+ { 135, 2803, 1026, 19, 2, -UNI_IDST } /* idstrinaryoperator=no */,
+ { 0, 9461, 1847, 3, 5, UNI_SB__LO } /* sb=lower */,
+ { 4, 21, 3792, 2, 17, UNI_INKHITANSMALLSCRIPT } /* inkhitansmallscript */,
+ { 0, 3877, 8276, 17, 8, UNI_BALI } /* scriptextensions=balinese */,
+ { 1, 185, 4534, 2, 15, UNI_BRAI } /* isbraillepatterns */,
+ { 0, 9979, 5368, 4, 4, UNI_LISU } /* scx=lisu */,
+ { 5, 9476, 10015, 3, 4, UNI_SC__TALE } /* sc=tale */,
+ { 0, 9691, 4759, 4, 15, UNI_INIMPERIALARAMAIC } /* blk=imperialaramaic */,
+ { 24, 4074, 32, 16, 2, UNI__PERL_SURROGATE } /* generalcategory=cs */,
+ { 294, 7230, 10259, 10, 3, UNI_BC__LRI } /* bidiclass=lri */,
+ { 0, 3877, 2841, 17, 19, UNI_MERO } /* scriptextensions=meroitichieroglyphs */,
+ { 459, 6083, 8043, 13, 2, UNI_NV__23 } /* numericvalue=23 */,
+ { 0, 9711, 9395, 5, 4, UNI_CCC__33 } /* ccc=ccc33 */,
+ { 130, 10253, 4026, 3, 16, UNI_LB__CL } /* lb=closepunctuation */,
+ { 0, 6374, 0, 12, 0, UNI_NL } /* letternumber */,
+ { 0, 6350, 6638, 12, 12, UNI_JT__R } /* joiningtype=rightjoining */,
+ { 0, 1553, 401, 9, 6, UNI_CF } /* category=format */,
+ { 1, 7560, 1026, 10, 2, -UNI_XPOSIXUPPER } /* uppercase=no */,
+ { 0, 9476, 6590, 3, 12, UNI_HUNG } /* sc=oldhungarian */,
+ { 11, 8500, 0, 8, 0, UNI_UGAR } /* ugaritic */,
+ { 134, 9691, 7450, 4, 10, UNI_INPHOENICIAN } /* blk=phoenician */,
+ { 24, 8973, 9529, 6, 5, UNI_INTAILE } /* block=taile */,
+ { 0, 8973, 1007, 6, 17, UNI_ANCIENTGREEKMUSIC } /* block=ancientgreekmusic */,
+ { 212, 2304, 9916, 3, 3, UNI_ORYA } /* isorya */,
+ { 2, 1418, 8998, 25, 4, UNI_CCC__11 } /* canonicalcombiningclass=ccc11 */,
+ { 0, 3877, 4314, 17, 7, UNI_MYMR } /* scriptextensions=myanmar */,
+ { 24, 8782, 8691, 7, 4, UNI_SC__MULT } /* script=mult */,
+ { 95, 9691, 383, 4, 32, UNI_EGYPTIANHIEROGLYPHFORMATCONTROLS } /* blk=egyptianhieroglyphformatcontrols */,
+ { 38, 1418, 79, 24, 2, UNI_CCC__AR } /* canonicalcombiningclass=ar */,
+ { 138, 9691, 43, 4, 36, UNI_CJKCOMPATIDEOGRAPHSSUP } /* blk=cjkcompatibilityideographssupplement */,
+ { 96, 4074, 5797, 16, 13, UNI_XPOSIXDIGIT } /* generalcategory=decimalnumber */,
+ { 0, 9999, 0, 4, 0, UNI_SHRD } /* shrd */,
+ { 6, 9979, 8276, 4, 4, UNI_BALI } /* scx=bali */,
+ { 8, 1418, 7923, 24, 2, UNI_CCC__11 } /* canonicalcombiningclass=11 */,
+ { 0, 9911, 0, 4, 0, UNI_ORKH } /* orkh */,
+ { 97, 9763, 74, 4, 2, UNI_WB__EB } /* gcb=em */,
+ { 17, 9270, 0, 4, 0, UNI_hex_values_index } /* hex= */,
+ { 1, 9691, 5270, 4, 6, UNI_KANGXI } /* blk=kangxi */,
+ { 1, 9711, 9307, 4, 2, UNI_CCC__15 } /* ccc=15 */,
+ { 138, 9691, 8380, 4, 8, UNI_JAMOEXTB } /* blk=jamoextb */,
+ { 2, 750, 0, 30, 0, UNI_ENCLOSEDALPHANUMSUP } /* enclosedalphanumericsupplement */,
+ { 16, 10244, 7, 3, 1, UNI_C } /* gc=c */,
+ { 1, 9544, 9454, 5, 5, -UNI_XIDC } /* xidc=false */,
+ { 3, 21, 8372, 2, 8, UNI_JAMOEXTA } /* injamoexta */,
+ { 268, 2206, 36, 21, 1, UNI_GCB__T } /* graphemeclusterbreak=t */,
+ { 0, 1770, 0, 22, 0, UNI_bpt_values_index } /* bidipairedbrackettype= */,
+ { 1, 1632, 0, 23, 0, UNI_GEOMETRICSHAPESEXT } /* geometricshapesextended */,
+ { 0, 21, 8649, 2, 7, UNI_INKANNADA } /* inkannada */,
+ { 0, 4598, 1634, 4, 13, UNI_GEOMETRICSHAPES } /* ingeometricshapes */,
+ { 1, 6158, 26, 12, 1, UNI_BIDIC } /* bidicontrol=y */,
+ { 338, 3877, 7844, 17, 9, UNI_PALM } /* scriptextensions=palmyrene */,
+ { 170, 9219, 3, 6, 1, -UNI_XPOSIXUPPER } /* upper=f */,
+ { 1, 10253, 8894, 3, 7, UNI_LB__ZW } /* lb=zwspace */,
+ { 288, 8782, 9827, 7, 4, UNI_LANA } /* script=lana */,
+ { 37, 2056, 1026, 22, 2, -UNI__PERL_NCHAR } /* noncharactercodepoint=no */,
+ { 0, 9847, 26, 4, 1, UNI_LOE } /* loe=y */,
+ { 1, 468, 0, 11, 0, UNI_P } /* punctuation */,
+ { 7, 1167, 26, 26, 1, UNI_DI } /* defaultignorablecodepoint=y */,
+ { 0, 6083, 8903, 13, 2, UNI_NV__60 } /* numericvalue=60 */,
+ { 259, 10244, 10398, 3, 2, UNI_ZP } /* gc=zp */,
+ { 0, 8782, 8300, 7, 8, UNI_SC__DUPL } /* script=duployan */,
+ { 0, 9691, 8684, 4, 7, UNI_INMARCHEN } /* blk=marchen */,
+ { 40, 9747, 9454, 4, 5, -UNI_DIA } /* dia=false */,
+ { 1, 4699, 10355, 15, 3, UNI_ECOMP } /* emojicomponent=yes */,
+ { 0, 10402, 1160, 33, 5, UNI__PERL_PROBLEMATIC_LOCALE_FOLDEDS_START } /* _perl_problematic_locale_foldeds_start */,
+ { 93, 185, 329, 2, 21, UNI_MATHOPERATORS } /* ismathematicaloperators */,
+ { 12, 8973, 3139, 6, 10, UNI_INDEVANAGARI } /* block=devanagari */,
+ { 1, 4154, 25, 3, 1, UNI_INVS } /* invs */,
{ 0, 8782, 9959, 7, 4, UNI_RJNG } /* script=rjng */,
- { 2, 10553, 2312, 3, 6, UNI_SINH } /* issinhala */,
- { 0, 5408, 6046, 4, 11, UNI_MAYANNUMERALS } /* inmayannumerals */,
- { 2, 4909, 1, 15, 1, UNI_NFKDQC__N } /* nfkdquickcheck=n */,
- { 1, 2312, 1196, 5, 23, UNI_HALFANDFULLFORMS } /* inhalfwidthandfullwidthforms */,
- { 0, 3877, 9444, 17, 4, UNI_DOGR } /* scriptextensions=dogr */,
- { 5, 6083, 8068, 13, 8, UNI_NV__7_SLASH_2 } /* numericvalue=3.50e+00 */,
- { 0, 9979, 10019, 4, 4, UNI_TALU } /* scx=talu */,
- { 0, 8782, 9943, 7, 4, UNI_PRTI } /* script=prti */,
- { 0, 9691, 7190, 4, 10, UNI_ARABICEXTA } /* blk=arabicexta */,
- { 1, 9269, 0, 4, 0, UNI_POSIXXDIGIT } /* ahex */,
- { 5, 1553, 4624, 9, 14, UNI_SC } /* category=currencysymbol */,
- { 39, 9691, 8831, 4, 7, UNI_INTAGALOG } /* blk=tagalog */,
- { 10, 118, 3777, 4, 15, UNI_INDICSIYAQNUMBERS } /* inindicsiyaqnumbers */,
- { 21, 2206, 10235, 21, 3, UNI_WB__EB } /* graphemeclusterbreak=ebg */,
- { 3, 3942, 8342, 4, 6, UNI_INGUJARATI } /* ingujarati */,
- { 0, 6083, 8099, 13, 2, UNI_NV__14 } /* numericvalue=14 */,
- { 3, 1167, 36, 26, 1, UNI_DI } /* defaultignorablecodepoint=t */,
- { 2, 10268, 9407, 3, 2, UNI_NV__35 } /* nv=35 */,
- { 257, 7908, 10355, 8, 3, UNI_IDS } /* idstart=yes */,
- { 0, 185, 7570, 2, 10, UNI_WARA } /* iswarangciti */,
- { 26, 10229, 9759, 3, 4, UNI_DT__FONT } /* dt=font */,
- { 3, 185, 329, 2, 21, UNI_MATHOPERATORS } /* ismathematicaloperators */,
- { 32, 9979, 9703, 4, 4, UNI_CAKM } /* scx=cakm */,
- { 0, 4972, 9530, 3, 4, UNI_TALE } /* istaile */,
- { 0, 8593, 26, 7, 1, UNI_COMPEX } /* compex=y */,
- { 0, 1034, 0, 27, 0, UNI_ENCLOSEDCJK } /* enclosedcjklettersandmonths */,
- { 42, 9545, 3, 4, 1, -UNI_IDC } /* idc=f */,
- { 0, 8782, 8530, 7, 7, UNI_AVST } /* script=avestan */,
- { 16, 10253, 10384, 3, 2, UNI_GCB__V } /* lb=jv */,
- { 0, 8973, 5298, 6, 14, UNI_LATINEXTC } /* block=latinextendedc */,
- { 49, 436, 0, 5, 0, UNI__PERL_NCHAR } /* nchar */,
- { 1025, 10253, 1141, 3, 26, UNI_LB__CJ } /* lb=conditionaljapanesestarter */,
- { 2, 9439, 10355, 5, 3, UNI_DASH } /* dash=yes */,
- { 1033, 1632, 0, 23, 0, UNI_GEOMETRICSHAPESEXT } /* geometricshapesextended */,
- { 1328, 185, 909, 2, 14, UNI_PUA } /* isprivateusearea */,
- { 257, 10247, 9479, 3, 5, UNI_JG__KHAPH } /* jg=khaph */,
- { 1070, 1187, 0, 2, 0, UNI_PO } /* po */,
- { 64, 7297, 5243, 3, 13, UNI_HIGHSURROGATES } /* ishighsurrogates */,
- { 0, 8973, 4984, 6, 8, UNI_TAMILSUP } /* block=tamilsup */,
- { 41, 10268, 9631, 3, 3, UNI_NV__3_SLASH_8 } /* nv=3/8 */,
- { 3, 9979, 8754, 4, 4, UNI_OSMA } /* scx=osma */,
- { 0, 2784, 36, 19, 1, UNI_GCB__T } /* hangulsyllabletype=t */,
- { 4, 10268, 8060, 3, 8, UNI_NV__1_SLASH_3 } /* nv=3.33e-01 */,
- { 0, 8782, 8684, 7, 7, UNI_MARC } /* script=marchen */,
- { 0, 10247, 7254, 3, 3, UNI_JG__KAF } /* jg=kaf */,
- { 0, 9691, 4330, 4, 16, UNI_MYANMAREXTB } /* blk=myanmarextendedb */,
- { 0, 1418, 10154, 24, 3, UNI_CCC__R } /* canonicalcombiningclass=226 */,
- { 7, 4972, 4985, 3, 14, UNI_TAMILSUP } /* istamilsupplement */,
- { 0, 3877, 9851, 17, 4, UNI_MEDF } /* scriptextensions=medf */,
- { 1, 9735, 9454, 4, 5, -UNI_CWU } /* cwu=false */,
- { 16, 9691, 1587, 5, 22, UNI_BYZANTINEMUSIC } /* blk=byzantinemusicalsymbols */,
- { 260, 9219, 0, 6, 0, UNI_upper_values_index } /* upper= */,
- { 40, 9063, 0, 6, 0, UNI_epres_values_index } /* epres= */,
- { 0, 9069, 0, 4, 0, UNI_GOTH } /* goth */,
- { 0, 8782, 3826, 7, 4, UNI_SC__MANI } /* script=mani */,
- { 1, 9691, 3265, 4, 11, UNI_GEORGIANSUP } /* blk=georgiansup */,
- { 1, 9647, 10187, 4, 3, UNI_AGE__5_DOT_1 } /* age=5.1 */,
- { 0, 8973, 7500, 6, 10, UNI_INSAURASHTRA } /* block=saurashtra */,
- { 1, 9691, 5074, 4, 14, UNI_ANCIENTSYMBOLS } /* blk=ancientsymbols */,
- { 38, 21, 9105, 2, 6, UNI_INKHOJKI } /* inkhojki */,
- { 27, 6083, 8179, 13, 2, UNI_NV__36 } /* numericvalue=36 */,
- { 0, 10217, 25, 3, 1, UNI_BC__S } /* bc=s */,
- { 1, 10232, 9141, 3, 6, UNI_EA__NA } /* ea=narrow */,
- { 1, 8782, 9509, 7, 5, UNI_OGAM } /* script=ogham */,
- { 643, 10516, 1847, 7, 5, UNI_POSIXLOWER } /* isposixlower */,
- { 0, 7230, 3427, 10, 18, UNI_BC__RLI } /* bidiclass=righttoleftisolate */,
- { 17, 185, 9687, 2, 4, UNI_BHKS } /* isbhks */,
- { 13, 8973, 3104, 7, 17, UNI_COPTICEPACTNUMBERS } /* block=copticepactnumbers */,
- { 0, 5745, 0, 13, 0, UNI_AEGEANNUMBERS } /* aegeannumbers */,
- { 1, 3877, 9207, 17, 6, UNI_THAA } /* scriptextensions=thaana */,
- { 2053, 21, 4170, 2, 6, UNI_LATIN1 } /* inlatin1 */,
- { 0, 7460, 10310, 10, 3, UNI_IN__4 } /* presentin=v40 */,
- { 37, 8782, 2433, 7, 4, UNI_SC__GLAG } /* script=glag */,
- { 0, 10268, 7948, 3, 8, UNI_NV__1_SLASH_7 } /* nv=1.43e-01 */,
- { 5, 6350, 6840, 12, 11, UNI_JT__C } /* joiningtype=joincausing */,
- { 674, 9691, 9237, 4, 6, UNI_INYEZIDI } /* blk=yezidi */,
- { 1232, 7467, 8100, 3, 3, UNI_IN__4_DOT_1 } /* in=4.1 */,
- { 14, 6340, 3691, 3, 16, UNI_CYRILLICEXTC } /* incyrillicextendedc */,
- { 1357, 9847, 36, 4, 1, UNI_LOE } /* loe=t */,
- { 48, 9691, 8404, 4, 8, UNI_KANAEXTB } /* blk=kanaextb */,
- { 51, 2248, 7501, 3, 9, UNI_INSAURASHTRA } /* insaurashtra */,
- { 1, 7460, 10187, 10, 3, UNI_IN__5_DOT_1 } /* presentin=5.1 */,
- { 2, 9474, 4154, 5, 16, UNI_INSC__INVISIBLESTACKER } /* insc=invisiblestacker */,
- { 340, 10244, 909, 3, 10, UNI_CO } /* gc=privateuse */,
- { 15, 4972, 48, 5, 1, UNI_TERM } /* isterm */,
- { 0, 5088, 0, 13, 0, UNI_POSIXXDIGIT } /* asciihexdigit */,
- { 278, 3758, 8523, 17, 7, UNI_IDENTIFIERSTATUS__ALLOWED } /* identifierstatus=allowed */,
- { 18, 8782, 8260, 7, 8, UNI_ARMN } /* script=armenian */,
- { 0, 7637, 0, 9, 0, UNI_ARABICPFA } /* arabicpfa */,
- { 0, 1418, 9013, 24, 2, UNI_CCC__29 } /* canonicalcombiningclass=29 */,
- { 784, 4972, 5000, 3, 14, UNI_TITLE } /* istitlecaseletter */,
- { 69, 1418, 7975, 24, 1, UNI_CCC__6 } /* canonicalcombiningclass=6 */,
- { 269, 185, 0, 4, 0, UNI_CE } /* isce */,
- { 2, 10229, 6530, 3, 12, UNI_DT__NONCANON } /* dt=noncanonical */,
- { 0, 8973, 8691, 6, 7, UNI_INMULTANI } /* block=multani */,
- { 0, 10352, 109, 3, 2, UNI_WB__MB } /* wb=mb */,
- { 517, 9476, 8537, 3, 4, UNI_SC__BENG } /* sc=beng */,
- { 0, 2206, 5717, 21, 2, UNI_LB__H2 } /* graphemeclusterbreak=lv */,
- { 1, 9691, 6939, 4, 11, UNI_MISCSYMBOLS } /* blk=miscsymbols */,
- { 2, 8508, 0, 8, 0, UNI_VITH } /* vithkuqi */,
- { 3, 9469, 3505, 5, 12, UNI_INPC__LEFTANDRIGHT } /* inpc=leftandright */,
- { 1, 7580, 8313, 10, 3, UNI_WB__EB } /* wordbreak=gaz */,
- { 4, 9691, 2085, 4, 15, UNI_MODIFIERLETTERS } /* blk=modifierletters */,
- { 0, 1814, 0, 21, 0, UNI_CWCM } /* changeswhencasemapped */,
- { 0, 185, 2056, 2, 21, UNI__PERL_NCHAR } /* isnoncharactercodepoint */,
- { 0, 3877, 9951, 17, 4, UNI_QAAI } /* scriptextensions=qaai */,
- { 0, 1538, 0, 24, 0, UNI_inpc_values_index } /* indicpositionalcategory= */,
- { 1280, 9979, 8292, 4, 4, UNI_BUGI } /* scx=bugi */,
- { 1078, 6083, 8027, 13, 2, UNI_NV__22 } /* numericvalue=22 */,
- { 8, 9691, 8614, 4, 7, UNI_INELYMAIC } /* blk=elymaic */,
- { 0, 2206, 18, 21, 2, UNI_RI } /* graphemeclusterbreak=ri */,
- { 0, 1990, 6572, 22, 6, UNI_LB__ZWJ } /* indicsyllabiccategory=joiner */,
- { 108, 8782, 9105, 7, 6, UNI_SC__KHOJ } /* script=khojki */,
- { 6, 4090, 0, 16, 0, UNI_GEORGIANEXT } /* georgianextended */,
- { 642, 10390, 0, 2, 0, UNI_CASEDLETTER } /* l_ */,
- { 0, 8607, 0, 4, 0, UNI_ELBA } /* elba */,
- { 27, 9997, 8798, 4, 5, UNI_SHAW } /* inshavian */,
- { 0, 185, 568, 2, 2, UNI_NB } /* isnb */,
- { 3, 9711, 9004, 5, 4, UNI_CCC__12 } /* ccc=ccc12 */,
- { 3, 7907, 9454, 9, 5, -UNI_XIDS } /* xidstart=false */,
- { 0, 2248, 781, 3, 29, UNI_SYMBOLSANDPICTOGRAPHSEXTA } /* insymbolsandpictographsextendeda */,
- { 0, 9711, 9013, 4, 2, UNI_CCC__29 } /* ccc=29 */,
- { 1, 9711, 79, 4, 2, UNI_CCC__AR } /* ccc=ar */,
- { 6, 8782, 9791, 7, 4, UNI_HLUW } /* script=hluw */,
- { 0, 7907, 0, 9, 0, UNI_xids_values_index } /* xidstart= */,
- { 1, 9979, 8260, 4, 8, UNI_ARMN } /* scx=armenian */,
- { 1, 9476, 10095, 3, 4, UNI_XPEO } /* sc=xpeo */,
- { 1803, 9951, 0, 4, 0, UNI_QAAI } /* qaai */,
- { 584, 8782, 8508, 7, 4, UNI_VITH } /* script=vith */,
- { 0, 9691, 5270, 4, 14, UNI_KANGXI } /* blk=kangxiradicals */,
- { 0, 7360, 23, 10, 2, UNI_LB__AL } /* linebreak=al */,
- { 0, 9691, 10271, 4, 3, UNI_OCR } /* blk=ocr */,
- { 2, 4074, 1528, 16, 9, UNI__PERL_SURROGATE } /* generalcategory=surrogate */,
- { 2051, 9691, 5029, 4, 8, UNI_VEDICEXT } /* blk=vedicext */,
- { 532, 185, 2708, 2, 19, UNI_EGYP } /* isegyptianhieroglyphs */,
- { 1536, 9691, 8740, 4, 7, UNI_OLCK } /* blk=olchiki */,
- { 0, 185, 8537, 2, 4, UNI_BENG } /* isbeng */,
- { 0, 9735, 3, 4, 1, -UNI_CWU } /* cwu=f */,
- { 1, 185, 4504, 2, 15, UNI_BAMUMSUP } /* isbamumsupplement */,
- { 1, 6083, 5732, 13, 7, UNI_NV__1000000 } /* numericvalue=1000000 */,
- { 0, 4074, 0, 16, 0, UNI_gc_values_index } /* generalcategory= */,
- { 1024, 3877, 3935, 18, 10, UNI_SGNW } /* scriptextensions=signwriting */,
- { 0, 185, 6752, 2, 11, UNI_DOMINO } /* isdominotiles */,
- { 0, 10253, 8413, 4, 7, UNI_LB__LF } /* lb=linefeed */,
- { 1, 8782, 4849, 7, 15, UNI_MERC } /* script=meroiticcursive */,
- { 0, 5875, 3826, 13, 17, UNI_JG__MANICHAEANDHAMEDH } /* joininggroup=manichaeandhamedh */,
- { 0, 9979, 8859, 4, 7, UNI_TIBT } /* scx=tibetan */,
- { 1154, 9979, 2312, 5, 3, UNI_SINH } /* scx=sinh */,
- { 4, 4729, 0, 15, 0, UNI_INHANGUL } /* hangulsyllables */,
- { 258, 3877, 8979, 17, 6, UNI_CARI } /* scriptextensions=carian */,
- { 0, 10226, 1026, 3, 2, -UNI_DI } /* di=no */,
- { 0, 9979, 10031, 4, 4, UNI_TFNG } /* scx=tfng */,
- { 148, 3877, 7450, 17, 10, UNI_PHNX } /* scriptextensions=phoenician */,
- { 14, 3877, 1177, 18, 3, UNI_SORA } /* scriptextensions=sora */,
- { 1873, 6083, 8913, 13, 3, UNI_NV__400 } /* numericvalue=400 */,
- { 9, 7360, 25, 10, 2, UNI_LB__SY } /* linebreak=sy */,
- { 10, 10516, 3623, 3, 3, UNI_PAUC } /* ispauc */,
- { 67, 10268, 10133, 3, 3, UNI_NV__1_SLASH_9 } /* nv=1/9 */,
- { 0, 8973, 1632, 6, 15, UNI_GEOMETRICSHAPES } /* block=geometricshapes */,
- { 160, 10253, 415, 3, 11, UNI_LB__ID } /* lb=ideographic */,
- { 4, 10253, 1466, 3, 13, UNI_LB__CM } /* lb=combiningmark */,
- { 2685, 8973, 3365, 6, 8, UNI_DINGBATS } /* block=dingbats */,
- { 257, 9476, 9094, 4, 5, UNI_SC__KTHI } /* sc=kaithi */,
- { 0, 10352, 7049, 3, 11, UNI_WB__SQ } /* wb=singlequote */,
- { 0, 1167, 10055, 26, 4, UNI_DI } /* defaultignorablecodepoint=true */,
- { 0, 9691, 8372, 4, 8, UNI_JAMOEXTA } /* blk=jamoexta */,
- { 6, 185, 1270, 2, 24, UNI_COMPEX } /* isfullcompositionexclusion */,
- { 16, 9691, 5340, 4, 14, UNI_LATINEXTF } /* blk=latinextendedf */,
- { 268, 5823, 0, 13, 0, UNI_grbase_values_index } /* graphemebase= */,
- { 10, 3877, 2164, 17, 8, UNI_CYRL } /* scriptextensions=cyrillic */,
- { 0, 4972, 10044, 3, 3, UNI_TIBT } /* istibt */,
- { 0, 6578, 11, 12, 2, UNI_NT__DI } /* numerictype=di */,
- { 3, 185, 8388, 2, 8, UNI_JAVA } /* isjavanese */,
- { 12, 4744, 8733, 15, 7, UNI_IDENTIFIERTYPE__NOTNFKC } /* identifiertype=notnfkc */,
- { 2, 4972, 4229, 3, 3, UNI_TALE } /* istale */,
- { 2, 5662, 9279, 14, 5, UNI_SB__AT } /* sentencebreak=aterm */,
- { 0, 8782, 10111, 7, 4, UNI_ZANB } /* script=zanb */,
- { 0, 8973, 750, 6, 30, UNI_ENCLOSEDALPHANUMSUP } /* block=enclosedalphanumericsupplement */,
- { 0, 4972, 8867, 3, 3, UNI_TIRH } /* istirh */,
- { 91, 6314, 9454, 12, 5, -UNI_IDEO } /* ideographic=false */,
- { 0, 185, 9879, 2, 4, UNI_MYMR } /* ismymr */,
- { 68, 185, 3826, 2, 10, UNI_MANI } /* ismanichaean */,
- { 0, 7580, 0, 10, 0, UNI_wb_values_index } /* wordbreak= */,
- { 4, 3157, 0, 17, 0, UNI_EBASE } /* emojimodifierbase */,
- { 2, 21, 5888, 2, 13, UNI_KANAEXTA } /* inkanaextendeda */,
- { 0, 9691, 510, 4, 30, UNI_CJKEXTA } /* blk=cjkunifiedideographsextensiona */,
- { 0, 10247, 6031, 3, 13, UNI_JG__MANICHAEANWAW } /* jg=manichaeanwaw */,
- { 128, 3877, 6928, 17, 11, UNI_MEDF } /* scriptextensions=medefaidrin */,
- { 0, 10244, 107, 3, 6, UNI_S } /* gc=symbol */,
- { 2, 8973, 1514, 6, 24, UNI_HIGHPUSURROGATES } /* block=highprivateusesurrogates */,
- { 673, 8973, 8866, 6, 7, UNI_INTIRHUTA } /* block=tirhuta */,
- { 0, 5536, 10355, 14, 3, UNI_NFCQC__Y } /* nfcquickcheck=yes */,
- { 0, 3247, 0, 18, 0, UNI_INPUNCTUATION } /* generalpunctuation */,
- { 531, 8881, 5803, 3, 4, UNI_XPOSIXALNUM } /* isalnum */,
- { 0, 1553, 9048, 9, 2, UNI_CF } /* category=cf */,
- { 0, 9476, 6730, 3, 11, UNI_SC__CPMN } /* sc=cyprominoan */,
+ { 56, 9979, 9895, 4, 3, UNI_NKO } /* scx=nko */,
+ { 264, 8973, 8580, 7, 6, UNI_CJKEXTF } /* block=cjkextf */,
+ { 0, 10268, 9407, 3, 2, UNI_NV__35 } /* nv=35 */,
+ { 0, 9979, 8607, 4, 7, UNI_ELBA } /* scx=elbasan */,
+ { 136, 8782, 4939, 7, 15, UNI_SARB } /* script=oldsoutharabian */,
+ { 1, 10511, 1891, 5, 5, UNI_POSIXUPPER } /* posixupper */,
+ { 1, 9476, 8600, 3, 7, UNI_DSRT } /* sc=deseret */,
+ { 0, 38, 0, 2, 0, UNI_XPOSIXDIGIT } /* nd */,
+ { 7, 5536, 9494, 14, 5, UNI_NFCQC__M } /* nfcquickcheck=maybe */,
+ { 331, 8782, 9207, 7, 4, UNI_SC__THAA } /* script=thaa */,
+ { 0, 8782, 2509, 7, 4, UNI_SC__MONG } /* script=mong */,
+ { 1, 8452, 0, 8, 0, UNI_SPECIALS } /* specials */,
+ { 0, 10268, 10362, 3, 2, UNI_NV__44 } /* nv=44 */,
+ { 1, 10352, 6254, 3, 12, UNI_WB__EX } /* wb=extendnumlet */,
+ { 2, 185, 7792, 3, 2, UNI_CWT } /* iscwt */,
+ { 1, 3877, 9815, 17, 4, UNI_KITS } /* scriptextensions=kits */,
+ { 134, 185, 7281, 3, 9, UNI_COMPATJAMO } /* iscompatjamo */,
+ { 1, 8881, 184, 4, 2, UNI_ARMI } /* isarmi */,
+ { 535, 8973, 7159, 6, 11, UNI_YISYLLABLES } /* block=yisyllables */,
+ { 0, 185, 7310, 2, 10, UNI_DIAK } /* isdivesakuru */,
+ { 344, 9979, 7863, 5, 8, UNI_SAMR } /* scx=samaritan */,
+ { 36, 185, 3928, 2, 17, UNI_SUTTONSIGNWRITING } /* issuttonsignwriting */,
+ { 0, 10268, 9254, 3, 3, UNI_NV__1_SLASH_3 } /* nv=1/3 */,
+ { 1, 9647, 8156, 4, 3, UNI_AGE__6_DOT_2 } /* age=6.2 */,
+ { 1, 3877, 8356, 17, 4, UNI_HIRA } /* scriptextensions=hira */,
+ { 0, 7460, 9600, 10, 3, UNI_IN__3 } /* presentin=3.0 */,
+ { 0, 4074, 75, 16, 2, UNI_ME } /* generalcategory=me */,
+ { 194, 1858, 1, 22, 1, -UNI_CWT } /* changeswhentitlecased=n */,
+ { 1, 3398, 9454, 11, 5, -UNI_XPOSIXSPACE } /* whitespace=false */,
+ { 0, 185, 115, 3, 24, UNI_DIACRITICALS } /* iscombiningdiacriticalmarks */,
+ { 3, 8579, 0, 7, 0, UNI_CJKEXTF } /* cjkextf */,
+ { 0, 9476, 9835, 3, 4, UNI_SC__LATN } /* sc=latn */,
+ { 4, 10247, 8324, 3, 8, UNI_JG__FARSIYEH } /* jg=farsiyeh */,
+ { 0, 1088, 10055, 27, 4, UNI_PCM } /* prependedconcatenationmark=true */,
+ { 2, 8881, 4476, 4, 13, UNI_ARABICEXTA } /* isarabicextendeda */,
+ { 2, 10283, 9454, 3, 5, -UNI_SD } /* sd=false */,
+ { 378, 9691, 2269, 4, 11, UNI_INMEETEIMAYEK } /* blk=meeteimayek */,
+ { 0, 3877, 9294, 17, 5, UNI_BUHD } /* scriptextensions=buhid */,
+ { 411, 8881, 864, 4, 4, UNI_ARROWS } /* isarrows */,
+ { 226, 9979, 2312, 5, 6, UNI_SINH } /* scx=sinhala */,
+ { 0, 9449, 0, 10, 0, -UNI_EMOD } /* emod=false */,
+ { 1, 9763, 5717, 4, 2, UNI_LB__H2 } /* gcb=lv */,
+ { 261, 9691, 5340, 4, 14, UNI_LATINEXTF } /* blk=latinextendedf */,
+ { 66, 6083, 10133, 13, 3, UNI_NV__1_SLASH_9 } /* numericvalue=1/9 */,
+ { 90, 4074, 4774, 16, 15, UNI_LOWERCASELETTER } /* generalcategory=lowercaseletter */,
+ { 0, 8973, 1443, 7, 23, UNI_CJKSYMBOLS } /* block=cjksymbolsandpunctuation */,
+ { 0, 8973, 4654, 6, 15, UNI_DIACRITICALSEXT } /* block=diacriticalsext */,
+ { 0, 9979, 3139, 4, 10, UNI_DEVA } /* scx=devanagari */,
+ { 5, 5836, 0, 13, 0, UNI_GREEKEXT } /* greekextended */,
+ { 16, 9691, 6972, 4, 11, UNI_INNANDINAGARI } /* blk=nandinagari */,
+ { 517, 10352, 7772, 3, 9, UNI_WB__MB } /* wb=midnumlet */,
+ { 0, 8782, 7310, 7, 10, UNI_DIAK } /* script=divesakuru */,
+ { 0, 9979, 7808, 4, 9, UNI_ITAL } /* scx=olditalic */,
+ { 112, 9647, 7951, 4, 1, UNI_AGE__3 } /* age=3 */,
+ { 12, 3877, 8804, 18, 6, UNI_SIDD } /* scriptextensions=siddham */,
+ { 64, 9691, 5059, 4, 15, UNI_INZANABAZARSQUARE } /* blk=zanabazarsquare */,
+ { 0, 1553, 5014, 9, 15, UNI_UPPERCASELETTER } /* category=uppercaseletter */,
+ { 93, 8973, 2034, 6, 22, UNI_MISCTECHNICAL } /* block=miscellaneoustechnical */,
+ { 6, 6350, 0, 12, 0, UNI_jt_values_index } /* joiningtype= */,
+ { 3, 9476, 9651, 3, 4, UNI_AGHB } /* sc=aghb */,
+ { 268, 8782, 8500, 7, 8, UNI_UGAR } /* script=ugaritic */,
+ { 0, 3877, 3103, 17, 4, UNI_COPT } /* scriptextensions=copt */,
+ { 5, 8973, 2433, 6, 10, UNI_INGLAGOLITIC } /* block=glagolitic */,
{ 0, 1274, 9454, 21, 5, -UNI_CE } /* compositionexclusion=false */,
- { 0, 9449, 0, 6, 0, -UNI_EMOD } /* emod=f */,
- { 8, 9476, 4534, 3, 4, UNI_BRAI } /* sc=brai */,
- { 0, 9476, 58, 3, 2, UNI_SC__YI } /* sc=yi */,
- { 0, 9979, 3139, 4, 4, UNI_DEVA } /* scx=deva */,
- { 6, 8973, 1061, 6, 27, UNI_OCR } /* block=opticalcharacterrecognition */,
- { 0, 3877, 8797, 18, 6, UNI_SHAW } /* scriptextensions=shavian */,
- { 0, 5116, 9454, 14, 5, -UNI_CI } /* caseignorable=false */,
- { 1, 1270, 0, 24, 0, UNI_COMPEX } /* fullcompositionexclusion */,
- { 36, 8973, 9207, 6, 6, UNI_INTHAANA } /* block=thaana */,
- { 0, 21, 8388, 2, 8, UNI_INJAVANESE } /* injavanese */,
- { 3, 6083, 8164, 13, 8, UNI_NV__1_SLASH_16 } /* numericvalue=6.25e-02 */,
- { 513, 9691, 218, 4, 33, UNI_DIACRITICALSEXT } /* blk=combiningdiacriticalmarksextended */,
- { 67, 9979, 9069, 4, 4, UNI_GOTH } /* scx=goth */,
- { 1, 1167, 26, 26, 1, UNI_DI } /* defaultignorablecodepoint=y */,
- { 276, 9743, 3, 4, 1, -UNI_DEP } /* dep=f */,
- { 273, 9476, 8810, 3, 7, UNI_SOYO } /* sc=soyombo */,
- { 87, 9691, 4170, 4, 6, UNI_LATIN1 } /* blk=latin1 */,
- { 0, 5875, 9480, 14, 4, UNI_JG__KHAPH } /* joininggroup=khaph */,
- { 1233, 8973, 7261, 7, 9, UNI_INCHORASMIAN } /* block=chorasmian */,
- { 77, 185, 5634, 2, 14, UNI_PHLP } /* ispsalterpahlavi */,
- { 363, 6083, 7611, 13, 1, UNI_NV__5 } /* numericvalue=5 */,
- { 0, 10268, 9604, 3, 3, UNI_NV__3_SLASH_2 } /* nv=3/2 */,
- { 19, 7467, 10298, 3, 3, UNI_IN__2_DOT_1 } /* in=v21 */,
- { 0, 8973, 6752, 6, 11, UNI_DOMINO } /* block=dominotiles */,
- { 0, 1418, 9360, 25, 4, UNI_CCC__26 } /* canonicalcombiningclass=ccc26 */,
- { 257, 5823, 26, 13, 1, UNI_GRBASE } /* graphemebase=y */,
- { 264, 3283, 10355, 18, 3, UNI_IDSB } /* idsbinaryoperator=yes */,
- { 292, 9711, 9010, 5, 5, UNI_CCC__129 } /* ccc=ccc129 */,
- { 0, 3707, 0, 16, 0, UNI_ETHIOPICEXT } /* ethiopicextended */,
- { 422, 4924, 0, 15, 0, UNI_NARB } /* oldnortharabian */,
- { 657, 9691, 3775, 4, 17, UNI_INDICSIYAQNUMBERS } /* blk=indicsiyaqnumbers */,
- { 0, 4684, 10091, 15, 4, UNI_EA__W } /* eastasianwidth=wide */,
- { 148, 5758, 9454, 13, 5, -UNI_BIDIM } /* bidimirrored=false */,
- { 1, 185, 44, 3, 25, UNI_CJKCOMPATIDEOGRAPHS } /* iscjkcompatibilityideographs */,
- { 0, 2012, 36, 22, 1, UNI_LOE } /* logicalorderexception=t */,
- { 3, 7360, 8894, 10, 7, UNI_LB__ZW } /* linebreak=zwspace */,
- { 0, 185, 133, 2, 2, UNI_LM } /* islm */,
- { 3, 6529, 9520, 3, 4, UNI_INOSAGE } /* inosage */,
- { 2, 3877, 8300, 17, 4, UNI_DUPL } /* scriptextensions=dupl */,
- { 0, 9903, 0, 4, 0, UNI_OGAM } /* ogam */,
- { 2, 3175, 10055, 18, 4, UNI_EPRES } /* emojipresentation=true */,
- { 0, 8973, 9231, 6, 6, UNI_INWANCHO } /* block=wancho */,
- { 0, 185, 9823, 2, 4, UNI_KTHI } /* iskthi */,
- { 105, 9691, 6109, 4, 13, UNI_VERTICALFORMS } /* blk=verticalforms */,
- { 2400, 9469, 3018, 5, 13, UNI_INPC__BOTTOMANDLEFT } /* inpc=bottomandleft */,
- { 560, 9691, 43, 4, 26, UNI_CJKCOMPATIDEOGRAPHS } /* blk=cjkcompatibilityideographs */,
- { 704, 6083, 8907, 13, 2, UNI_NV__30 } /* numericvalue=30 */,
- { 0, 8973, 1019, 6, 5, UNI_MUSIC } /* block=music */,
- { 0, 8973, 4610, 7, 14, UNI_CONTROLPICTURES } /* block=controlpictures */,
- { 1288, 8782, 9839, 7, 4, UNI_SC__LINA } /* script=lina */,
- { 0, 9476, 3139, 3, 4, UNI_SC__DEVA } /* sc=deva */,
- { 1040, 8796, 0, 7, 0, UNI_SHAW } /* shavian */,
- { 0, 9711, 7320, 4, 10, UNI_CCC__6 } /* ccc=hanreading */,
- { 565, 5045, 1, 3, 41, UNI_UCASEXT } /* isunifiedcanadianaboriginalsyllabicsextended */,
- { 1056, 9979, 9963, 4, 4, UNI_ROHG } /* scx=rohg */,
- { 122, 2553, 1, 20, 1, -UNI_TERM } /* terminalpunctuation=n */,
- { 1, 6083, 9591, 13, 4, UNI_NV__11_SLASH_2 } /* numericvalue=11/2 */,
- { 583, 3945, 26, 17, 1, UNI_UIDEO } /* unifiedideograph=y */,
- { 4, 1193, 0, 26, 0, UNI_HALFANDFULLFORMS } /* halfwidthandfullwidthforms */,
- { 2196, 9549, 0, 5, 0, UNI_xids_values_index } /* xids= */,
- { 21, 5875, 5448, 13, 4, UNI_JG__HETH } /* joininggroup=heth */,
- { 1, 185, 5914, 2, 13, UNI_ZL } /* islineseparator */,
- { 5, 9979, 10099, 4, 4, UNI_XSUX } /* scx=xsux */,
- { 0, 8973, 8420, 6, 8, UNI_INMAHAJANI } /* block=mahajani */,
- { 2, 185, 17, 3, 1, UNI_CO } /* isco */,
- { 4, 10268, 8943, 3, 5, UNI_NV__80000 } /* nv=80000 */,
- { 1, 9434, 0, 4, 0, UNI_CWCM } /* cwcm */,
- { 3, 1045, 0, 6, 0, UNI_L } /* letter */,
- { 137, 10247, 4829, 3, 5, UNI_JG__SADHE } /* jg=sadhe */,
- { 412, 9979, 2227, 4, 14, UNI_ROHG } /* scx=hanifirohingya */,
- { 10, 1418, 9367, 24, 2, UNI_CCC__27 } /* canonicalcombiningclass=27 */,
- { 516, 10229, 8332, 3, 3, UNI_DT__FRA } /* dt=fra */,
- { 1, 1814, 10055, 22, 4, UNI_CWCM } /* changeswhencasemapped=true */,
- { 3, 1418, 9390, 25, 4, UNI_CCC__32 } /* canonicalcombiningclass=ccc32 */,
- { 0, 9691, 2100, 4, 22, UNI_TRANSPORTANDMAP } /* blk=transportandmapsymbols */,
- { 0, 3877, 9903, 17, 4, UNI_OGAM } /* scriptextensions=ogam */,
- { 1073, 2304, 9510, 3, 4, UNI_OGAM } /* isogham */,
- { 0, 9979, 3826, 4, 4, UNI_MANI } /* scx=mani */,
- { 1041, 8782, 8691, 7, 4, UNI_SC__MULT } /* script=mult */,
- { 1966, 5096, 0, 5, 0, UNI_XPOSIXDIGIT } /* digit */,
- { 1, 10402, 10490, 6, 9, UNI__PERL_ANY_FOLDS } /* _perl_any_folds */,
- { 7, 9237, 0, 6, 0, UNI_YEZI } /* yezidi */,
- { 1, 185, 0, 3, 0, UNI_C } /* isc */,
- { 9, 1553, 407, 9, 7, UNI_XPOSIXCNTRL } /* category=control */,
- { 0, 10023, 0, 4, 0, UNI_TAML } /* taml */,
- { 0, 5758, 36, 13, 1, UNI_BIDIM } /* bidimirrored=t */,
- { 6, 9123, 0, 6, 0, UNI_lower_values_index } /* lower= */,
- { 0, 8782, 9775, 7, 4, UNI_SC__GREK } /* script=grek */,
- { 5, 4699, 3, 15, 1, -UNI_ECOMP } /* emojicomponent=f */,
- { 0, 1190, 39, 3, 2, UNI_XPOSIXDIGIT } /* nt=de */,
- { 0, 6083, 8235, 13, 2, UNI_NV__28 } /* numericvalue=28 */,
- { 1553, 9711, 8102, 4, 2, UNI_CCC__17 } /* ccc=17 */,
- { 0, 6386, 0, 12, 0, UNI_MAHJONG } /* mahjongtiles */,
- { 1, 3121, 46, 18, 3, UNI_DT__COM } /* decompositiontype=com */,
- { 2, 7460, 8036, 10, 3, UNI_IN__3_DOT_1 } /* presentin=3.1 */,
+ { 2, 9979, 10023, 4, 4, UNI_TAML } /* scx=taml */,
+ { 1, 9763, 8308, 4, 8, UNI_WB__EB } /* gcb=ebasegaz */,
+ { 395, 7580, 18, 10, 2, UNI_RI } /* wordbreak=ri */,
+ { 0, 4074, 24, 16, 1, UNI_L } /* generalcategory=l */,
+ { 0, 690, 0, 30, 0, UNI_CJKEXTG } /* cjkunifiedideographsextensiong */,
+ { 514, 8380, 0, 8, 0, UNI_JAMOEXTB } /* jamoextb */,
+ { 642, 185, 2034, 2, 22, UNI_MISCTECHNICAL } /* ismiscellaneoustechnical */,
+ { 1, 3877, 8260, 17, 8, UNI_ARMN } /* scriptextensions=armenian */,
+ { 181, 9979, 2269, 4, 11, UNI_MTEI } /* scx=meeteimayek */,
+ { 322, 9691, 1061, 4, 27, UNI_OCR } /* blk=opticalcharacterrecognition */,
+ { 1, 10271, 0, 3, 0, UNI_OCR } /* ocr */,
+ { 25, 2803, 1, 19, 1, -UNI_IDST } /* idstrinaryoperator=n */,
+ { 0, 9444, 0, 5, 0, UNI_DOGR } /* dogra */,
+ { 22, 3571, 0, 10, 0, UNI_ALCHEMICAL } /* alchemical */,
+ { 4, 7467, 9596, 3, 3, UNI_IN__2_DOT_1 } /* in=2.1 */,
+ { 587, 6675, 1026, 11, 2, -UNI_IDC } /* idcontinue=no */,
+ { 2, 4598, 4092, 4, 9, UNI_GEORGIANEXT } /* ingeorgianext */,
+ { 161, 21, 8531, 3, 6, UNI_INAVESTAN } /* inavestan */,
+ { 3, 7300, 1, 10, 1, -UNI_DIA } /* diacritic=n */,
+ { 0, 7360, 6829, 10, 11, UNI_LB__IN } /* linebreak=inseperable */,
+ { 3, 9711, 9370, 5, 4, UNI_CCC__28 } /* ccc=ccc28 */,
+ { 0, 185, 6386, 2, 4, UNI_MAHJ } /* ismahj */,
+ { 0, 9476, 5634, 3, 14, UNI_SC__PHLP } /* sc=psalterpahlavi */,
+ { 0, 6083, 10193, 13, 3, UNI_NV__5_SLASH_6 } /* numericvalue=5/6 */,
+ { 172, 10268, 8931, 3, 6, UNI_NV__600000 } /* nv=600000 */,
+ { 101, 8782, 7450, 7, 10, UNI_PHNX } /* script=phoenician */,
+ { 0, 10268, 8028, 3, 2, UNI_NV__20 } /* nv=20 */,
+ { 164, 9711, 5733, 4, 1, UNI_CCC__0 } /* ccc=0 */,
+ { 0, 10553, 2312, 3, 6, UNI_SINH } /* issinhala */,
+ { 5, 9979, 4426, 4, 4, UNI_TANG } /* scx=tang */,
+ { 3, 1562, 0, 24, 0, UNI_SUPSYMBOLSANDPICTOGRAPHS } /* supsymbolsandpictographs */,
+ { 0, 1418, 1180, 24, 2, UNI_CCC__BL } /* canonicalcombiningclass=bl */,
+ { 1, 8973, 8468, 6, 8, UNI_INTAGBANWA } /* block=tagbanwa */,
+ { 192, 4714, 10055, 15, 4, UNI_GREXT } /* graphemeextend=true */,
+ { 27, 9979, 8740, 4, 7, UNI_OLCK } /* scx=olchiki */,
+ { 0, 185, 9069, 2, 6, UNI_GOTH } /* isgothic */,
+ { 17, 1880, 9454, 22, 5, -UNI_CWU } /* changeswhenuppercased=false */,
+ { 245, 2311, 0, 21, 0, UNI_SINHALAARCHAICNUMBERS } /* sinhalaarchaicnumbers */,
+ { 0, 1418, 4175, 24, 1, UNI_CCC__1 } /* canonicalcombiningclass=1 */,
+ { 33, 9979, 7826, 4, 9, UNI_ORKH } /* scx=oldturkic */,
+ { 0, 10402, 25, 29, 1, UNI__PERL_PROBLEMATIC_LOCALE_FOLDS } /* _perl_problematic_locale_folds */,
+ { 53, 6083, 8949, 13, 3, UNI_NV__900 } /* numericvalue=900 */,
+ { 1, 9711, 8986, 5, 5, UNI_CCC__103 } /* ccc=ccc103 */,
+ { 0, 3877, 9687, 17, 4, UNI_BHKS } /* scriptextensions=bhks */,
+ { 11, 4074, 1067, 16, 2, UNI_CASEDLETTER } /* generalcategory=lc */,
+ { 162, 3707, 0, 17, 0, UNI_ETHIOPICEXTA } /* ethiopicextendeda */,
+ { 0, 8508, 0, 4, 0, UNI_VITH } /* vith */,
+ { 0, 5116, 10355, 14, 3, UNI_CI } /* caseignorable=yes */,
+ { 261, 9711, 9018, 4, 3, UNI_CCC__130 } /* ccc=130 */,
+ { 8, 1553, 4346, 9, 16, UNI_PO } /* category=otherpunctuation */,
+ { 6, 185, 3050, 3, 10, UNI_CHEROKEESUP } /* ischerokeesup */,
+ { 1, 7218, 8293, 3, 7, UNI_INBUGINESE } /* inbuginese */,
+ { 0, 8973, 4043, 7, 15, UNI_CYPRIOTSYLLABARY } /* block=cypriotsyllabary */,
+ { 2, 9476, 9903, 3, 4, UNI_OGAM } /* sc=ogam */,
+ { 0, 1792, 26, 22, 1, UNI_CWCF } /* changeswhencasefolded=y */,
+ { 0, 8881, 27, 3, 2, UNI_ALL } /* isall */,
+ { 0, 5096, 0, 5, 0, UNI_XPOSIXDIGIT } /* digit */,
+ { 8, 9691, 4298, 4, 16, UNI_MISCMATHSYMBOLSB } /* blk=miscmathsymbolsb */,
+ { 49, 7467, 7951, 3, 1, UNI_IN__3 } /* in=3 */,
+ { 1, 6083, 5732, 13, 13, UNI_NV__1000000000000 } /* numericvalue=1000000000000 */,
+ { 0, 5758, 0, 13, 0, UNI_bidim_values_index } /* bidimirrored= */,
+ { 235, 4474, 0, 15, 0, UNI_ARABICEXTA } /* arabicextendeda */,
+ { 2, 9691, 2078, 4, 22, UNI_MODIFIERLETTERS } /* blk=spacingmodifierletters */,
+ { 24, 185, 383, 2, 4, UNI_EGYP } /* isegyp */,
+ { 3, 10268, 9611, 3, 4, UNI_NV__15_SLASH_2 } /* nv=15/2 */,
+ { 1, 1270, 3, 25, 1, -UNI_COMPEX } /* fullcompositionexclusion=f */,
+ { 292, 8973, 4378, 6, 16, UNI_SUPMATHOPERATORS } /* block=supmathoperators */,
+ { 57, 9979, 6590, 4, 12, UNI_HUNG } /* scx=oldhungarian */,
+ { 3, 2003, 0, 11, 0, UNI_LO } /* category=lo */,
+ { 6, 7908, 10355, 8, 3, UNI_IDS } /* idstart=yes */,
+ { 0, 3942, 6293, 5, 9, UNI_INGUNJALAGONDI } /* ingunjalagondi */,
+ { 526, 9534, 0, 4, 0, UNI_TAKR } /* takr */,
+ { 512, 9711, 7947, 4, 2, UNI_CCC__21 } /* ccc=21 */,
+ { 3, 9153, 9494, 6, 5, UNI_NFCQC__M } /* nfcqc=maybe */,
+ { 194, 9476, 2509, 3, 4, UNI_SC__MONG } /* sc=mong */,
+ { 0, 10229, 436, 4, 2, UNI_DT__ENC } /* dt=enc */,
+ { 34, 1190, 5096, 3, 5, UNI_NT__DI } /* nt=digit */,
+ { 107, 9979, 8500, 4, 4, UNI_UGAR } /* scx=ugar */,
+ { 0, 9979, 6302, 4, 4, UNI_HEBR } /* scx=hebr */,
+ { 6, 8973, 4729, 6, 15, UNI_INHANGUL } /* block=hangulsyllables */,
+ { 0, 2056, 10055, 22, 4, UNI__PERL_NCHAR } /* noncharactercodepoint=true */,
+ { 0, 4744, 1167, 15, 16, UNI_IDENTIFIERTYPE__DEFAULTIGNORABLE } /* identifiertype=defaultignorable */,
+ { 3, 10510, 5802, 6, 5, UNI_XPOSIXALNUM } /* xposixalnum */,
+ { 0, 1189, 4443, 3, 15, UNI_TANGUTSUP } /* intangutsupplement */,
+ { 1, 4684, 3, 15, 1, UNI_EA__F } /* eastasianwidth=f */,
+ { 0, 2784, 912, 19, 1, UNI_GCB__V } /* hangulsyllabletype=v */,
+ { 0, 8712, 0, 7, 0, UNI_nfkdqc_values_index } /* nfkdqc= */,
+ { 1, 2078, 0, 22, 0, UNI_MODIFIERLETTERS } /* spacingmodifierletters */,
+ { 0, 185, 1045, 2, 6, UNI_L } /* isletter */,
+ { 0, 185, 6183, 3, 11, UNI_CHESSSYMBOLS } /* ischesssymbols */,
+ { 0, 9691, 3103, 4, 6, UNI_INCOPTIC } /* blk=coptic */,
+ { 1, 9711, 9010, 5, 5, UNI_CCC__129 } /* ccc=ccc129 */,
+ { 2, 1770, 4954, 22, 4, UNI_BPT__O } /* bidipairedbrackettype=open */,
+ { 174, 7467, 10079, 3, 4, UNI_IN__14 } /* in=v140 */,
+ { 4, 9476, 8388, 3, 4, UNI_SC__JAVA } /* sc=java */,
+ { 2, 8881, 8262, 4, 6, UNI_ARMN } /* isarmenian */,
+ { 5, 8782, 9679, 7, 4, UNI_AVST } /* script=avst */,
+ { 10, 8973, 3707, 6, 11, UNI_ETHIOPICEXT } /* block=ethiopicext */,
+ { 0, 7682, 3, 9, 1, -UNI_EXT } /* extender=f */,
+ { 0, 2784, 9, 19, 2, UNI_HST__NA } /* hangulsyllabletype=na */,
+ { 0, 9691, 1014, 4, 5, UNI_INGREEK } /* blk=greek */,
+ { 1, 1990, 1609, 22, 23, UNI_INSC__CONSONANTPRECEDINGREPHA } /* indicsyllabiccategory=consonantprecedingrepha */,
+ { 12, 10229, 10091, 3, 4, UNI_EA__F } /* dt=wide */,
+ { 0, 9979, 9117, 4, 6, UNI_LEPC } /* scx=lepcha */,
+ { 7, 1088, 26, 27, 1, UNI_PCM } /* prependedconcatenationmark=y */,
+ { 0, 1990, 6566, 22, 12, UNI_INSC__NUMBERJOINER } /* indicsyllabiccategory=numberjoiner */,
+ { 0, 8973, 2879, 6, 12, UNI_MONGOLIANSUP } /* block=mongoliansup */,
+ { 0, 6083, 7934, 13, 2, UNI_NV__25 } /* numericvalue=25 */,
+ { 49, 5875, 5424, 13, 14, UNI_JG__MANICHAEANFIVE } /* joininggroup=manichaeanfive */,
+ { 1, 5408, 0, 12, 0, UNI_INMANICHAEAN } /* inmanichaean */,
+ { 2, 9979, 4411, 5, 5, UNI_SYRC } /* scx=syriac */,
+ { 0, 9979, 8804, 5, 6, UNI_SIDD } /* scx=siddham */,
+ { 0, 10516, 469, 3, 4, UNI_P } /* ispunct */,
+ { 1, 9691, 5927, 4, 13, UNI_LOWSURROGATES } /* blk=lowsurrogates */,
+ { 0, 7360, 1141, 10, 26, UNI_LB__CJ } /* linebreak=conditionaljapanesestarter */,
+ { 342, 8973, 2936, 6, 12, UNI_SUNDANESESUP } /* block=sundanesesup */,
+ { 140, 5875, 6662, 13, 12, UNI_JG__VERTICALTAIL } /* joininggroup=verticaltail */,
+ { 577, 9476, 860, 4, 3, UNI_SC__KNDA } /* sc=knda */,
+ { 34, 6083, 8172, 13, 8, UNI_NV__1_SLASH_160 } /* numericvalue=6.25e-03 */,
+ { 2, 10123, 0, 4, 0, UNI_ZZZZ } /* zzzz */,
+ { 0, 2085, 0, 15, 0, UNI_MODIFIERLETTERS } /* modifierletters */,
+ { 0, 8782, 9699, 7, 4, UNI_SC__BUHD } /* script=buhd */,
+ { 177, 5648, 26, 14, 1, UNI_QMARK } /* quotationmark=y */,
+ { 1, 10247, 7180, 3, 10, UNI_JG__AFRICANQAF } /* jg=africanqaf */,
+ { 7, 7835, 0, 9, 0, UNI_OUGR } /* olduyghur */,
+ { 0, 8593, 0, 7, 0, UNI_compex_values_index } /* compex= */,
+ { 1, 9691, 9514, 4, 5, UNI_INORIYA } /* blk=oriya */,
+ { 5, 7300, 9454, 10, 5, -UNI_DIA } /* diacritic=false */,
{ 1, 10229, 1254, 3, 7, UNI_DT__INIT } /* dt=initial */,
- { 0, 185, 383, 2, 4, UNI_EGYP } /* isegyp */,
- { 1, 9476, 6972, 3, 4, UNI_SC__NAND } /* sc=nand */,
- { 155, 8881, 2614, 3, 18, UNI_ANCIENTGREEKNUMBERS } /* isancientgreeknumbers */,
- { 0, 8782, 9129, 7, 6, UNI_LYCI } /* script=lycian */,
- { 1025, 9711, 9300, 5, 4, UNI_CCC__14 } /* ccc=ccc14 */,
- { 1839, 8782, 9967, 7, 4, UNI_RUNR } /* script=runr */,
- { 0, 7460, 9583, 10, 4, UNI_IN__10 } /* presentin=10.0 */,
- { 0, 8973, 1014, 6, 5, UNI_INGREEK } /* block=greek */,
- { 0, 6350, 7, 12, 1, UNI_JT__C } /* joiningtype=c */,
- { 130, 10253, 25, 3, 2, UNI_LB__SY } /* lb=sy */,
- { 0, 8782, 7853, 7, 4, UNI_PAUC } /* script=pauc */,
- { 0, 10229, 2809, 3, 3, UNI_DT__NAR } /* dt=nar */,
- { 0, 10247, 7290, 3, 10, UNI_JG__DALATHRISH } /* jg=dalathrish */,
- { 1, 494, 0, 3, 0, UNI_HAN } /* han */,
- { 0, 2803, 3, 19, 1, -UNI_IDST } /* idstrinaryoperator=f */,
- { 0, 9727, 1026, 4, 2, -UNI_CWL } /* cwl=no */,
- { 2822, 3877, 8811, 18, 3, UNI_SOYO } /* scriptextensions=soyo */,
- { 0, 7297, 3077, 3, 8, UNI_HALFMARKS } /* ishalfmarks */,
- { 2, 8316, 1966, 10, 3, -UNI_EXTPICT } /* extpict=false */,
- { 4, 7200, 0, 10, 0, UNI_ARABICEXTB } /* arabicextb */,
- { 0, 6675, 0, 3, 0, UNI_IDC } /* idc */,
- { 269, 10352, 6278, 3, 12, UNI_WB__EB } /* wb=glueafterzwj */,
- { 32, 7060, 1, 11, 1, -UNI_SD } /* softdotted=n */,
- { 0, 9691, 79, 4, 35, UNI_ARABICMATH } /* blk=arabicmathematicalalphabeticsymbols */,
- { 64, 1026, 0, 2, 0, UNI_NO } /* no */,
- { 0, 185, 8300, 2, 4, UNI_DUPL } /* isdupl */,
- { 3, 329, 0, 21, 0, UNI_MATHOPERATORS } /* mathematicaloperators */,
- { 0, 9177, 0, 6, 0, UNI_qmark_values_index } /* qmark= */,
- { 4, 9647, 10059, 4, 4, UNI_AGE__10 } /* age=v100 */,
- { 1, 6518, 0, 12, 0, UNI_MEND } /* mendekikakui */,
- { 1238, 1814, 9454, 22, 5, -UNI_CWCM } /* changeswhencasemapped=false */,
- { 29, 9429, 10355, 5, 3, UNI_CWCF } /* cwcf=yes */,
- { 0, 1553, 2085, 9, 14, UNI_LM } /* category=modifierletter */,
- { 284, 8967, 0, 6, 0, UNI_bidim_values_index } /* bidim= */,
- { 16, 1592, 3708, 3, 10, UNI_ETHIOPICEXT } /* inethiopicext */,
- { 1, 4894, 0, 15, 0, UNI_nfkcqc_values_index } /* nfkcquickcheck= */,
- { 5, 9706, 0, 2, 0, UNI_MC } /* mc */,
- { 0, 8782, 4534, 7, 7, UNI_BRAI } /* script=braille */,
- { 0, 10232, 8, 3, 1, UNI_EA__A } /* ea=a */,
- { 0, 4074, 2085, 16, 14, UNI_LM } /* generalcategory=modifierletter */,
- { 1248, 8973, 2493, 6, 20, UNI_INNYIAKENGPUACHUEHMONG } /* block=nyiakengpuachuehmong */,
- { 2354, 9691, 1924, 4, 22, UNI_INDICNUMBERFORMS } /* blk=commonindicnumberforms */,
- { 1554, 1902, 0, 22, 0, UNI_CJKCOMPATIDEOGRAPHSSUP } /* cjkcompatideographssup */,
- { 1127, 6937, 843, 6, 25, UNI_MISCARROWS } /* inmiscellaneoussymbolsandarrows */,
- { 2, 9979, 3193, 4, 4, UNI_ETHI } /* scx=ethi */,
- { 649, 8586, 0, 7, 0, UNI_CJKEXTG } /* cjkextg */,
- { 336, 10247, 5462, 3, 4, UNI_JG__KAPH } /* jg=kaph */,
- { 0, 9979, 3792, 4, 17, UNI_KITS } /* scx=khitansmallscript */,
- { 135, 1418, 3031, 24, 13, UNI_CCC__214 } /* canonicalcombiningclass=attachedabove */,
- { 8, 9691, 7430, 4, 10, UNI_INOLDSOGDIAN } /* blk=oldsogdian */,
- { 1122, 185, 6158, 2, 11, UNI_BIDIC } /* isbidicontrol */,
- { 0, 4894, 26, 15, 1, UNI_NFKCQC__Y } /* nfkcquickcheck=y */,
- { 1, 9979, 10008, 5, 3, UNI_SYRC } /* scx=syrc */,
- { 0, 9979, 10087, 4, 4, UNI_WCHO } /* scx=wcho */,
- { 2, 7360, 6708, 10, 11, UNI_LB__BB } /* linebreak=breakbefore */,
- { 19, 185, 9899, 2, 4, UNI_NSHU } /* isnshu */,
- { 0, 3877, 6593, 17, 4, UNI_HUNG } /* scriptextensions=hung */,
- { 1027, 8973, 4504, 6, 8, UNI_BAMUMSUP } /* block=bamumsup */,
- { 2, 8973, 9524, 6, 5, UNI_INRUNIC } /* block=runic */,
- { 0, 185, 952, 2, 17, UNI_VS } /* isvariationselector */,
- { 0, 10226, 10055, 3, 4, UNI_DI } /* di=true */,
- { 0, 185, 2185, 2, 20, UNI_EXTPICT } /* isextendedpictographic */,
- { 0, 21, 5256, 2, 14, UNI_KANASUP } /* inkanasupplement */,
- { 28, 10247, 3826, 3, 17, UNI_JG__MANICHAEANDHAMEDH } /* jg=manichaeandhamedh */,
- { 682, 9105, 0, 4, 0, UNI_KHOJ } /* khoj */,
- { 0, 1418, 16, 24, 1, UNI_CCC__B } /* canonicalcombiningclass=b */,
- { 25, 8973, 10039, 6, 4, UNI_INTHAI } /* block=thai */,
- { 80, 9063, 36, 6, 1, UNI_EPRES } /* epres=t */,
- { 0, 10508, 10523, 8, 5, UNI_XPOSIXBLANK } /* isxposixblank */,
- { 0, 9691, 690, 4, 30, UNI_CJKEXTG } /* blk=cjkunifiedideographsextensiong */,
- { 733, 4381, 0, 13, 0, UNI_MATHOPERATORS } /* mathoperators */,
- { 6, 9691, 7637, 4, 9, UNI_ARABICPFA } /* blk=arabicpfa */,
- { 1155, 9476, 9264, 3, 5, UNI_SC__ADLM } /* sc=adlam */,
- { 6, 6350, 7126, 12, 11, UNI_JT__T } /* joiningtype=transparent */,
- { 1321, 7500, 0, 4, 0, UNI_SAUR } /* saur */,
- { 806, 9647, 8148, 4, 3, UNI_AGE__6 } /* age=6.0 */,
- { 0, 8782, 79, 7, 4, UNI_SC__ARAB } /* script=arab */,
- { 0, 5875, 5940, 13, 13, UNI_JG__MALAYALAMLLLA } /* joininggroup=malayalamllla */,
- { 129, 8973, 8663, 6, 7, UNI_INLINEARA } /* block=lineara */,
- { 1, 8973, 2708, 6, 19, UNI_INEGYPTIANHIEROGLYPHS } /* block=egyptianhieroglyphs */,
- { 1, 3877, 8530, 17, 7, UNI_AVST } /* scriptextensions=avestan */,
- { 0, 5823, 9454, 13, 5, -UNI_GRBASE } /* graphemebase=false */,
- { 1, 9439, 26, 5, 1, UNI_DASH } /* dash=y */,
- { 2345, 4157, 3284, 3, 16, UNI_IDSB } /* isidsbinaryoperator */,
- { 2858, 7908, 10055, 8, 4, UNI_IDS } /* idstart=true */,
- { 2564, 2248, 2937, 3, 18, UNI_SUNDANESESUP } /* insundanesesupplement */,
- { 0, 4074, 2292, 16, 2, UNI_PD } /* generalcategory=pd */,
- { 6, 9691, 868, 4, 18, UNI_PHONETICEXT } /* blk=phoneticextensions */,
- { 80, 10217, 2292, 3, 3, UNI_BC__PDI } /* bc=pdi */,
- { 0, 9075, 10055, 6, 4, UNI_GREXT } /* grext=true */,
- { 0, 1538, 3505, 24, 12, UNI_INPC__LEFTANDRIGHT } /* indicpositionalcategory=leftandright */,
- { 0, 10268, 5732, 3, 5, UNI_NV__10000 } /* nv=10000 */,
- { 662, 10553, 2553, 3, 4, UNI_STERM } /* issterm */,
- { 0, 9544, 1026, 5, 2, -UNI_XIDC } /* xidc=no */,
- { 0, 1553, 49, 9, 1, UNI_P } /* category=p */,
- { 0, 3877, 10103, 17, 4, UNI_YI } /* scriptextensions=yiii */,
- { 0, 10247, 5438, 3, 14, UNI_JG__MANICHAEANHETH } /* jg=manichaeanheth */,
- { 2492, 5648, 1026, 14, 2, -UNI_QMARK } /* quotationmark=no */,
- { 0, 10553, 8811, 3, 3, UNI_SOYO } /* issoyo */,
- { 3616, 185, 9859, 2, 4, UNI_MERC } /* ismerc */,
- { 2304, 5093, 36, 9, 1, UNI_XPOSIXXDIGIT } /* hexdigit=t */,
- { 17, 9979, 2841, 4, 4, UNI_MERO } /* scx=mero */,
- { 10, 8782, 2632, 7, 6, UNI_BRAH } /* script=brahmi */,
+ { 426, 10268, 8907, 3, 6, UNI_NV__300000 } /* nv=300000 */,
+ { 336, 7467, 8092, 3, 3, UNI_IN__4 } /* in=4.0 */,
+ { 5, 2879, 0, 19, 0, UNI_MONGOLIANSUP } /* mongoliansupplement */,
+ { 0, 9979, 9755, 4, 4, UNI_DSRT } /* scx=dsrt */,
+ { 708, 1553, 2373, 9, 20, UNI_PC } /* category=connectorpunctuation */,
+ { 11, 9711, 9028, 5, 5, UNI_WB__EB } /* ccc=ccc133 */,
+ { 0, 1185, 0, 3, 0, UNI_DEP } /* dep */,
+ { 0, 8973, 8388, 6, 8, UNI_INJAVANESE } /* block=javanese */,
+ { 11, 6937, 862, 6, 6, UNI_MISCARROWS } /* inmiscarrows */,
+ { 6, 9476, 498, 5, 3, UNI_KHMR } /* sc=khmer */,
+ { 19, 9269, 10055, 5, 4, UNI_POSIXXDIGIT } /* ahex=true */,
+ { 3, 185, 1288, 2, 2, UNI_UPPERCASELETTER } /* islu */,
+ { 0, 3877, 9859, 17, 4, UNI_MERC } /* scriptextensions=merc */,
+ { 1, 5088, 26, 14, 1, UNI_POSIXXDIGIT } /* asciihexdigit=y */,
+ { 0, 5875, 5, 13, 1, UNI_JG__E } /* joininggroup=e */,
+ { 265, 9979, 8607, 4, 4, UNI_ELBA } /* scx=elba */,
+ { 11, 9691, 3463, 4, 18, UNI_SMALLKANAEXT } /* blk=smallkanaextension */,
+ { 55, 8782, 8979, 7, 6, UNI_CARI } /* script=carian */,
+ { 139, 10247, 7880, 3, 9, UNI_JG__SYRIACWAW } /* jg=syriacwaw */,
+ { 1, 185, 9046, 3, 4, UNI_CWKCF } /* iscwkcf */,
+ { 19, 9051, 26, 6, 1, UNI_ECOMP } /* ecomp=y */,
+ { 7, 6083, 10362, 13, 2, UNI_NV__44 } /* numericvalue=44 */,
+ { 0, 4157, 448, 3, 31, UNI_IDEOGRAPHICSYMBOLS } /* isideographicsymbolsandpunctuation */,
+ { 8, 9476, 9907, 3, 4, UNI_OLCK } /* sc=olck */,
+ { 196, 4074, 0, 16, 0, UNI_gc_values_index } /* generalcategory= */,
+ { 0, 10510, 5096, 6, 5, UNI_XPOSIXDIGIT } /* xposixdigit */,
+ { 0, 600, 0, 30, 0, UNI_CJKEXTD } /* cjkunifiedideographsextensiond */,
+ { 0, 6083, 9575, 13, 4, UNI_NV__1_SLASH_64 } /* numericvalue=1/64 */,
+ { 0, 6338, 3, 12, 1, -UNI_JOINC } /* joincontrol=f */,
+ { 7, 9691, 6675, 4, 3, UNI_INIDC } /* blk=idc */,
+ { 0, 10268, 8943, 3, 5, UNI_NV__80000 } /* nv=80000 */,
+ { 8, 7580, 34, 10, 6, UNI_WB__EXTEND } /* wordbreak=extend */,
+ { 79, 4154, 8510, 4, 6, UNI_INVITHKUQI } /* invithkuqi */,
+ { 36, 9476, 7826, 3, 9, UNI_ORKH } /* sc=oldturkic */,
+ { 0, 21, 7570, 2, 10, UNI_INWARANGCITI } /* inwarangciti */,
+ { 0, 9063, 36, 6, 1, UNI_EPRES } /* epres=t */,
+ { 0, 2012, 26, 22, 1, UNI_LOE } /* logicalorderexception=y */,
+ { 64, 6083, 8092, 13, 8, UNI_NV__2_SLASH_5 } /* numericvalue=4.00e-01 */,
+ { 22, 9474, 9289, 5, 5, UNI_INSC__BINDU } /* insc=bindu */,
+ { 3, 3894, 1026, 17, 2, -UNI_STERM } /* sentenceterminal=no */,
+ { 8, 133, 0, 2, 0, UNI_LM } /* lm */,
+ { 0, 3877, 9879, 17, 4, UNI_MYMR } /* scriptextensions=mymr */,
+ { 7, 10553, 8454, 4, 6, UNI_SPECIALS } /* isspecials */,
+ { 160, 9979, 8300, 4, 8, UNI_DUPL } /* scx=duployan */,
+ { 300, 6529, 3356, 3, 17, UNI_ORNAMENTALDINGBATS } /* inornamentaldingbats */,
+ { 0, 9123, 1026, 6, 2, -UNI_XPOSIXLOWER } /* lower=no */,
+ { 72, 9711, 6763, 4, 11, UNI_CCC__DA } /* ccc=doubleabove */,
+ { 1, 3877, 8663, 17, 7, UNI_LINA } /* scriptextensions=lineara */,
+ { 0, 3877, 6518, 17, 12, UNI_MEND } /* scriptextensions=mendekikakui */,
+ { 1, 9803, 6873, 4, 11, UNI_GCB__L } /* hst=leadingjamo */,
+ { 10, 9476, 7430, 3, 10, UNI_SOGO } /* sc=oldsogdian */,
+ { 156, 10268, 8907, 3, 4, UNI_NV__3000 } /* nv=3000 */,
+ { 260, 185, 1678, 2, 14, UNI_LATINEXTA } /* islatinextendeda */,
+ { 10, 8973, 1034, 6, 11, UNI_ENCLOSEDCJK } /* block=enclosedcjk */,
+ { 7, 1270, 9454, 25, 5, -UNI_COMPEX } /* fullcompositionexclusion=false */,
+ { 0, 8973, 184, 6, 20, UNI_MISCSYMBOLS } /* block=miscellaneoussymbols */,
+ { 466, 7853, 0, 4, 0, UNI_PAUC } /* pauc */,
+ { 3, 8973, 44, 7, 15, UNI_CJKCOMPAT } /* block=cjkcompatibility */,
+ { 0, 185, 1185, 2, 3, UNI_DEP } /* isdep */,
+ { 22, 9763, 6279, 5, 11, UNI_WB__EB } /* gcb=glueafterzwj */,
+ { 0, 7360, 126, 10, 2, UNI_LB__CR } /* linebreak=cr */,
+ { 21, 9461, 3382, 3, 3, UNI_SB__SE } /* sb=sep */,
+ { 257, 6083, 8937, 13, 5, UNI_NV__70000 } /* numericvalue=70000 */,
+ { 0, 8973, 479, 6, 31, UNI_MATHALPHANUM } /* block=mathematicalalphanumericsymbols */,
+ { 577, 10232, 866, 3, 1, UNI_EA__W } /* ea=w */,
+ { 83, 9476, 9231, 3, 6, UNI_WCHO } /* sc=wancho */,
+ { 1, 8973, 3607, 8, 15, UNI_UCAS } /* block=canadiansyllabics */,
+ { 1, 8600, 0, 7, 0, UNI_DSRT } /* deseret */,
+ { 3, 10268, 8235, 3, 2, UNI_NV__28 } /* nv=28 */,
+ { 664, 185, 3809, 2, 17, UNI_LETTERLIKESYMBOLS } /* isletterlikesymbols */,
+ { 260, 10268, 8100, 3, 8, UNI_NV__5_SLASH_12 } /* nv=4.17e-01 */,
+ { 0, 3877, 2453, 17, 20, UNI_PHLI } /* scriptextensions=inscriptionalpahlavi */,
+ { 307, 4684, 9, 15, 2, UNI_EA__NA } /* eastasianwidth=na */,
+ { 488, 10229, 8332, 3, 8, UNI_DT__FRA } /* dt=fraction */,
+ { 16, 9476, 1655, 3, 6, UNI_SC__HANG } /* sc=hangul */,
+ { 0, 3877, 8340, 17, 8, UNI_GUJR } /* scriptextensions=gujarati */,
+ { 456, 5875, 6031, 13, 13, UNI_JG__MANICHAEANWAW } /* joininggroup=manichaeanwaw */,
+ { 0, 21, 7727, 2, 9, UNI_LATINEXTC } /* inlatinextc */,
+ { 34, 185, 3265, 2, 18, UNI_GEORGIANSUP } /* isgeorgiansupplement */,
+ { 5, 2808, 7192, 4, 8, UNI_ARABICEXTA } /* inarabicexta */,
+ { 0, 185, 2433, 2, 20, UNI_GLAGOLITICSUP } /* isglagoliticsupplement */,
+ { 9, 4972, 8860, 3, 6, UNI_TIBT } /* istibetan */,
+ { 0, 9459, 3, 5, 1, -UNI_IDSB } /* idsb=f */,
+ { 1, 9731, 0, 3, 0, UNI_CWT } /* cwt */,
+ { 0, 1792, 1026, 22, 2, -UNI_CWCF } /* changeswhencasefolded=no */,
+ { 7, 7360, 1846, 10, 2, UNI_LB__NL } /* linebreak=nl */,
+ { 0, 9514, 0, 5, 0, UNI_ORYA } /* oriya */,
+ { 0, 9847, 0, 4, 0, UNI_loe_values_index } /* loe= */,
+ { 0, 10229, 10289, 3, 3, UNI_DT__SQR } /* dt=sqr */,
+ { 0, 8973, 8656, 6, 7, UNI_KALI } /* block=kayahli */,
+ { 271, 3877, 9719, 17, 4, UNI_CPMN } /* scriptextensions=cpmn */,
+ { 71, 2304, 8742, 4, 5, UNI_OLCK } /* isolchiki */,
+ { 1, 7467, 7611, 3, 1, UNI_IN__5 } /* in=5 */,
+ { 0, 1852, 0, 6, 0, UNI_cased_values_index } /* cased= */,
+ { 0, 8973, 7646, 6, 9, UNI_ARABICPFB } /* block=arabicpfb */,
+ { 83, 1990, 729, 22, 6, UNI_INSC__NUMBER } /* indicsyllabiccategory=number */,
+ { 1, 9647, 10067, 4, 4, UNI_AGE__12 } /* age=v120 */,
+ { 6, 10247, 7148, 3, 11, UNI_JG__YEHWITHTAIL } /* jg=yehwithtail */,
+ { 2, 9213, 36, 6, 1, UNI_UIDEO } /* uideo=t */,
+ { 103, 6083, 4175, 13, 1, UNI_NV__1 } /* numericvalue=1 */,
+ { 0, 6158, 10355, 12, 3, UNI_BIDIC } /* bidicontrol=yes */,
+ { 327, 3877, 7105, 18, 10, UNI_SYLO } /* scriptextensions=sylotinagri */,
+ { 0, 8782, 8284, 7, 8, UNI_BASS } /* script=bassavah */,
+ { 0, 3877, 6362, 17, 5, UNI_KHMR } /* scriptextensions=khmer */,
+ { 0, 7230, 10256, 10, 3, UNI_BC__LRE } /* bidiclass=lre */,
+ { 0, 7104, 0, 11, 0, UNI_SYLO } /* sylotinagri */,
+ { 0, 10229, 9759, 3, 4, UNI_DT__FONT } /* dt=font */,
+ { 3, 8782, 7820, 7, 4, UNI_SC__PERM } /* script=perm */,
+ { 0, 10510, 3403, 6, 5, UNI_XPOSIXSPACE } /* xposixspace */,
+ { 3, 3877, 9667, 17, 4, UNI_ARMN } /* scriptextensions=armn */,
+ { 0, 9461, 8747, 3, 7, UNI_SB__LE } /* sb=oletter */,
+ { 0, 185, 8284, 2, 4, UNI_BASS } /* isbass */,
+ { 194, 185, 1275, 3, 19, UNI_CE } /* iscompositionexclusion */,
+ { 0, 9464, 3, 5, 1, -UNI_IDST } /* idst=f */,
+ { 0, 10283, 1026, 3, 2, -UNI_SD } /* sd=no */,
+ { 0, 2304, 7819, 4, 7, UNI_PERM } /* isoldpermic */,
+ { 196, 2003, 1046, 10, 5, UNI_L } /* category=letter */,
+ { 1, 10268, 5732, 3, 2, UNI_NV__10 } /* nv=10 */,
+ { 0, 9476, 9891, 3, 4, UNI_NEWA } /* sc=newa */,
+ { 0, 185, 3707, 2, 17, UNI_ETHIOPICEXTA } /* isethiopicextendeda */,
+ { 0, 9213, 0, 5, 0, UNI_UIDEO } /* uideo */,
+ { 3, 9476, 3049, 3, 4, UNI_CHER } /* sc=cher */,
+ { 6, 3877, 6593, 17, 4, UNI_HUNG } /* scriptextensions=hung */,
+ { 1, 10244, 9048, 3, 2, UNI_CF } /* gc=cf */,
+ { 43, 9711, 9367, 4, 2, UNI_CCC__27 } /* ccc=27 */,
+ { 896, 3945, 0, 17, 0, UNI_uideo_values_index } /* unifiedideograph= */,
+ { 0, 9691, 1562, 4, 24, UNI_SUPSYMBOLSANDPICTOGRAPHS } /* blk=supsymbolsandpictographs */,
+ { 0, 7230, 3797, 10, 3, UNI_BC__NSM } /* bidiclass=nsm */,
+ { 0, 1553, 134, 9, 4, UNI_M } /* category=mark */,
+ { 1, 3121, 4588, 18, 6, UNI_DT__MED } /* decompositiontype=medial */,
+ { 14, 3877, 3792, 17, 17, UNI_KITS } /* scriptextensions=khitansmallscript */,
+ { 5, 8782, 1629, 7, 4, UNI_SC__PHAG } /* script=phag */,
+ { 0, 10268, 5732, 3, 9, UNI_NV__100000000 } /* nv=100000000 */,
+ { 197, 10244, 340, 3, 2, UNI_LO } /* gc=lo */,
+ { 256, 6314, 9454, 12, 5, -UNI_IDEO } /* ideographic=false */,
+ { 1, 9476, 10087, 3, 4, UNI_WCHO } /* sc=wcho */,
+ { 2, 4074, 1026, 16, 2, UNI_NO } /* generalcategory=no */,
+ { 0, 1678, 0, 9, 0, UNI_LATINEXTE } /* latinexte */,
+ { 0, 8782, 9783, 7, 4, UNI_SC__GURU } /* script=guru */,
+ { 264, 9979, 2841, 4, 19, UNI_MERO } /* scx=meroitichieroglyphs */,
+ { 6, 4074, 4346, 16, 5, UNI_C } /* generalcategory=other */,
+ { 67, 6083, 10178, 13, 3, UNI_NV__3_SLASH_4 } /* numericvalue=3/4 */,
+ { 5, 21, 5284, 2, 14, UNI_LATINEXTB } /* inlatinextendedb */,
+ { 60, 10247, 6906, 3, 11, UNI_JG__MALAYALAMJA } /* jg=malayalamja */,
+ { 8, 10508, 6675, 3, 3, UNI_XIDC } /* isxidc */,
+ { 4, 6494, 0, 12, 0, UNI_GONM } /* masaramgondi */,
+ { 0, 10247, 10220, 3, 3, UNI_JG__BEH } /* jg=beh */,
+ { 0, 6674, 0, 4, 0, UNI_XIDC } /* xidc */,
+ { 0, 3877, 8284, 17, 8, UNI_BASS } /* scriptextensions=bassavah */,
+ { 0, 8782, 5368, 7, 4, UNI_LISU } /* script=lisu */,
+ { 290, 7580, 6287, 10, 3, UNI_LB__ZWJ } /* wordbreak=zwj */,
+ { 8, 5270, 0, 14, 0, UNI_KANGXI } /* kangxiradicals */,
+ { 1, 9057, 3, 6, 1, -UNI_EMOJI } /* emoji=f */,
+ { 484, 1814, 1026, 22, 2, -UNI_CWCM } /* changeswhencasemapped=no */,
+ { 153, 8782, 6302, 7, 6, UNI_HEBR } /* script=hebrew */,
+ { 0, 1418, 10166, 24, 3, UNI_CCC__DB } /* canonicalcombiningclass=233 */,
+ { 0, 8782, 9815, 7, 4, UNI_KITS } /* script=kits */,
+ { 1, 10247, 7170, 3, 10, UNI_JG__AFRICANFEH } /* jg=africanfeh */,
+ { 1, 9691, 1394, 4, 24, UNI_ARABICPFB } /* blk=arabicpresentationformsb */,
+ { 0, 10229, 1310, 3, 3, UNI_DT__SUB } /* dt=sub */,
+ { 21, 5875, 7180, 13, 10, UNI_JG__AFRICANQAF } /* joininggroup=africanqaf */,
+ { 536, 10268, 5732, 3, 8, UNI_NV__10000000 } /* nv=10000000 */,
+ { 22, 8973, 1632, 6, 15, UNI_GEOMETRICSHAPES } /* block=geometricshapes */,
+ { 7, 1553, 32, 9, 2, UNI__PERL_SURROGATE } /* category=cs */,
+ { 3, 7580, 8308, 10, 8, UNI_WB__EB } /* wordbreak=ebasegaz */,
+ { 328, 10217, 5186, 3, 14, UNI_BC__EN } /* bc=europeannumber */,
+ { 0, 3553, 3, 18, 1, -UNI_VS } /* variationselector=f */,
+ { 0, 10253, 5669, 3, 2, UNI_EBASE } /* lb=eb */,
+ { 0, 2808, 1396, 4, 22, UNI_ARABICPFB } /* inarabicpresentationformsb */,
+ { 19, 9237, 0, 6, 0, UNI_YEZI } /* yezidi */,
+ { 0, 4847, 2086, 3, 3, UNI_INMODI } /* inmodi */,
+ { 0, 1007, 0, 17, 0, UNI_ANCIENTGREEKMUSIC } /* ancientgreekmusic */,
+ { 0, 513, 0, 16, 0, UNI_UIDEO } /* unifiedideograph */,
+ { 1, 2557, 6125, 5, 9, UNI_ALPHABETICPF } /* inalphabeticpf */,
+ { 0, 10516, 9932, 3, 3, UNI_PHLP } /* isphlp */,
+ { 139, 8973, 6362, 6, 12, UNI_KHMERSYMBOLS } /* block=khmersymbols */,
+ { 0, 10268, 8220, 3, 8, UNI_NV__5_SLASH_6 } /* nv=8.33e-01 */,
+ { 36, 8973, 6862, 6, 11, UNI_KATAKANAEXT } /* block=katakanaext */,
+ { 527, 7360, 6287, 10, 3, UNI_LB__ZWJ } /* linebreak=zwj */,
+ { 7, 185, 8621, 2, 4, UNI_GRAN } /* isgran */,
+ { 43, 9711, 18, 4, 1, UNI_CCC__R } /* ccc=r */,
+ { 3, 4999, 0, 15, 0, UNI_TITLE } /* titlecaseletter */,
+ { 1, 10250, 7126, 3, 11, UNI_JT__T } /* jt=transparent */,
+ { 5, 7370, 3, 10, 1, -UNI_XPOSIXLOWER } /* lowercase=f */,
+ { 0, 21, 6362, 2, 12, UNI_KHMERSYMBOLS } /* inkhmersymbols */,
+ { 1, 7360, 8642, 10, 6, UNI_LB__HY } /* linebreak=hyphen */,
+ { 84, 1655, 0, 6, 0, UNI_HANG } /* hangul */,
+ { 7, 2312, 2748, 4, 17, UNI_JAMOEXTA } /* inhanguljamoextendeda */,
+ { 175, 9711, 23, 4, 2, UNI_CCC__AL } /* ccc=al */,
+ { 0, 2936, 0, 4, 0, UNI_SUND } /* sund */,
+ { 0, 10553, 48, 3, 1, UNI_SM } /* issm */,
+ { 0, 9489, 36, 5, 1, UNI_MATH } /* math=t */,
+ { 40, 2312, 2748, 4, 8, UNI_JAMO } /* inhanguljamo */,
+ { 0, 4972, 2321, 3, 3, UNI_THAI } /* isthai */,
+ { 34, 4074, 25, 16, 1, UNI_S } /* generalcategory=s */,
+ { 1, 10268, 8092, 3, 8, UNI_NV__2_SLASH_5 } /* nv=4.00e-01 */,
+ { 0, 9691, 1924, 4, 22, UNI_INDICNUMBERFORMS } /* blk=commonindicnumberforms */,
+ { 562, 3877, 9444, 17, 4, UNI_DOGR } /* scriptextensions=dogr */,
+ { 1, 7360, 1528, 10, 9, UNI_LB__SG } /* linebreak=surrogate */,
+ { 560, 1891, 0, 5, 0, UNI_XPOSIXUPPER } /* upper */,
+ { 0, 3877, 8348, 17, 8, UNI_GURU } /* scriptextensions=gurmukhi */,
+ { 8, 7460, 10199, 10, 3, UNI_IN__6_DOT_1 } /* presentin=6.1 */,
+ { 0, 185, 7060, 2, 10, UNI_SD } /* issoftdotted */,
+ { 257, 7230, 4521, 12, 13, UNI_BC__BN } /* bidiclass=boundaryneutral */,
+ { 0, 9691, 4202, 4, 16, UNI_LINEARBSYLLABARY } /* blk=linearbsyllabary */,
+ { 0, 9476, 10051, 3, 4, UNI_TOTO } /* sc=toto */,
+ { 1, 1880, 36, 22, 1, UNI_CWU } /* changeswhenuppercased=t */,
+ { 0, 7218, 7211, 3, 9, UNI_ASCII } /* inbasiclatin */,
+ { 7, 8782, 6730, 7, 11, UNI_SC__CPMN } /* script=cyprominoan */,
+ { 0, 6083, 10153, 13, 2, UNI_NV__42 } /* numericvalue=42 */,
+ { 3, 9979, 8600, 4, 7, UNI_DSRT } /* scx=deseret */,
+ { 1, 7709, 0, 9, 0, UNI_SIND } /* khudawadi */,
+ { 0, 6083, 8028, 13, 3, UNI_NV__200 } /* numericvalue=200 */,
+ { 609, 8973, 8420, 6, 8, UNI_INMAHAJANI } /* block=mahajani */,
+ { 98, 3877, 9484, 17, 4, UNI_LIMB } /* scriptextensions=limb */,
+ { 72, 1553, 4026, 9, 16, UNI_PE } /* category=closepunctuation */,
+ { 13, 8973, 6290, 6, 12, UNI_INGUNJALAGONDI } /* block=gunjalagondi */,
+ { 522, 1836, 0, 22, 0, UNI_cwl_values_index } /* changeswhenlowercased= */,
+ { 0, 11, 0, 3, 0, UNI_DIA } /* dia */,
+ { 2, 185, 3934, 2, 11, UNI_SGNW } /* issignwriting */,
+ { 4, 10007, 0, 4, 0, UNI_SYRC } /* syrc */,
+ { 284, 9476, 9081, 3, 6, UNI_HATR } /* sc=hatran */,
+ { 0, 9691, 3103, 4, 18, UNI_COPTICEPACTNUMBERS } /* blk=copticepactnumbers */,
+ { 0, 10244, 38, 3, 2, UNI_XPOSIXDIGIT } /* gc=nd */,
+ { 6, 3877, 8508, 17, 8, UNI_VITH } /* scriptextensions=vithkuqi */,
+ { 393, 8782, 2269, 7, 11, UNI_MTEI } /* script=meeteimayek */,
+ { 0, 9545, 26, 4, 1, UNI_IDC } /* idc=y */,
+ { 0, 2248, 7501, 3, 9, UNI_INSAURASHTRA } /* insaurashtra */,
+ { 172, 9727, 1, 4, 1, -UNI_CWL } /* cwl=n */,
+ { 0, 7467, 9583, 3, 4, UNI_IN__10 } /* in=10.0 */,
+ { 1, 1418, 8028, 24, 2, UNI_CCC__20 } /* canonicalcombiningclass=20 */,
+ { 3, 10244, 9706, 3, 2, UNI_MC } /* gc=mc */,
+ { 0, 9787, 0, 4, 0, UNI_HANO } /* hano */,
+ { 782, 9643, 0, 4, 0, UNI_ADLM } /* adlm */,
+ { 1, 5116, 0, 14, 0, UNI_ci_values_index } /* caseignorable= */,
+ { 0, 8782, 9779, 7, 4, UNI_SC__GUJR } /* script=gujr */,
+ { 1, 9087, 3, 6, 1, -UNI_JOINC } /* joinc=f */,
+ { 130, 9691, 5270, 4, 14, UNI_KANGXI } /* blk=kangxiradicals */,
+ { 384, 185, 1701, 2, 23, UNI_SHORTHANDFORMATCONTROLS } /* isshorthandformatcontrols */,
+ { 179, 5823, 26, 13, 1, UNI_GRBASE } /* graphemebase=y */,
+ { 354, 9153, 0, 6, 0, UNI_nfcqc_values_index } /* nfcqc= */,
+ { 0, 8973, 896, 6, 28, UNI_SUPPUAA } /* block=supplementaryprivateuseareaa */,
+ { 2, 185, 8388, 2, 8, UNI_JAVA } /* isjavanese */,
+ { 0, 185, 2879, 2, 9, UNI_MONG } /* ismongolian */,
+ { 4, 9979, 8468, 4, 4, UNI_TAGB } /* scx=tagb */,
+ { 271, 4744, 6741, 15, 10, UNI_DEP } /* identifiertype=deprecated */,
+ { 1, 9474, 0, 5, 0, UNI_insc_values_index } /* insc= */,
+ { 0, 9691, 3962, 4, 16, UNI_ARABICSUP } /* blk=arabicsupplement */,
+ { 0, 3877, 9033, 17, 6, UNI_CAKM } /* scriptextensions=chakma */,
+ { 6, 9691, 7835, 4, 9, UNI_INOLDUYGHUR } /* blk=olduyghur */,
+ { 72, 5875, 9274, 13, 5, UNI_JG__ALAPH } /* joininggroup=alaph */,
+ { 244, 9979, 9444, 4, 4, UNI_DOGR } /* scx=dogr */,
+ { 288, 9979, 8663, 4, 7, UNI_LINA } /* scx=lineara */,
+ { 0, 2056, 9454, 22, 5, -UNI__PERL_NCHAR } /* noncharactercodepoint=false */,
+ { 47, 21, 1678, 2, 9, UNI_LATINEXTE } /* inlatinexte */,
+ { 306, 3877, 1629, 17, 4, UNI_PHAG } /* scriptextensions=phag */,
+ { 106, 10268, 8027, 3, 2, UNI_NV__22 } /* nv=22 */,
+ { 1, 10229, 46, 3, 3, UNI_DT__COM } /* dt=com */,
+ { 0, 3877, 8790, 18, 6, UNI_SHRD } /* scriptextensions=sharada */,
+ { 4097, 10232, 9141, 3, 6, UNI_EA__NA } /* ea=narrow */,
+ { 2, 3877, 9951, 17, 4, UNI_QAAI } /* scriptextensions=qaai */,
+ { 520, 9476, 7711, 5, 7, UNI_SC__SIND } /* sc=khudawadi */,
+ { 45, 7360, 4594, 10, 15, UNI_LB__CB } /* linebreak=contingentbreak */,
+ { 5, 8404, 0, 8, 0, UNI_KANAEXTB } /* kanaextb */,
+ { 0, 185, 6386, 2, 7, UNI_MAHJONG } /* ismahjong */,
+ { 0, 6340, 2165, 3, 20, UNI_CYRILLICSUP } /* incyrillicsupplementary */,
+ { 36, 9691, 2227, 4, 14, UNI_INHANIFIROHINGYA } /* blk=hanifirohingya */,
+ { 0, 6083, 8108, 13, 8, UNI_NV__9_SLASH_2 } /* numericvalue=4.50e+00 */,
+ { 0, 4042, 0, 7, 0, UNI_CPRT } /* cypriot */,
+ { 600, 8973, 3050, 7, 17, UNI_CHEROKEESUP } /* block=cherokeesupplement */,
+ { 6, 7467, 10187, 3, 3, UNI_IN__5_DOT_1 } /* in=5.1 */,
+ { 844, 8881, 9656, 3, 3, UNI_AHOM } /* isahom */,
+ { 0, 9691, 2727, 4, 19, UNI_ENCLOSEDALPHANUMSUP } /* blk=enclosedalphanumsup */,
+ { 2, 1418, 9417, 24, 2, UNI_CCC__84 } /* canonicalcombiningclass=84 */,
+ { 73, 2553, 0, 19, 0, UNI_TERM } /* terminalpunctuation */,
+ { 100, 10283, 10355, 3, 3, UNI_SD } /* sd=yes */,
+ { 358, 3049, 0, 4, 0, UNI_CHER } /* cher */,
+ { 1, 8782, 9105, 7, 4, UNI_SC__KHOJ } /* script=khoj */,
+ { 777, 7297, 5243, 3, 13, UNI_HIGHSURROGATES } /* ishighsurrogates */,
+ { 0, 185, 5830, 2, 5, UNI_EBASE } /* isebase */,
+ { 9, 6939, 0, 11, 0, UNI_MISCSYMBOLS } /* miscsymbols */,
+ { 0, 9147, 10055, 6, 4, UNI__PERL_NCHAR } /* nchar=true */,
+ { 259, 8973, 1007, 6, 27, UNI_ANCIENTGREEKMUSIC } /* block=ancientgreekmusicalnotation */,
+ { 1, 1115, 10055, 26, 4, UNI_CWKCF } /* changeswhennfkccasefolded=true */,
+ { 3, 9711, 9325, 5, 4, UNI_CCC__19 } /* ccc=ccc19 */,
+ { 1, 2433, 0, 4, 0, UNI_GLAG } /* glag */,
+ { 531, 185, 4639, 2, 4, UNI_DASH } /* isdash */,
+ { 2, 9691, 4442, 4, 9, UNI_TANGUTSUP } /* blk=tangutsup */,
+ { 1082, 9549, 3, 5, 1, -UNI_XIDS } /* xids=f */,
+ { 0, 10247, 9479, 3, 5, UNI_JG__KHAPH } /* jg=khaph */,
+ { 128, 10247, 9243, 3, 4, UNI_JG__YUDH } /* jg=yudh */,
+ { 121, 2056, 0, 21, 0, UNI__PERL_NCHAR } /* noncharactercodepoint */,
+ { 745, 9063, 0, 6, 0, UNI_epres_values_index } /* epres= */,
+ { 0, 9763, 1088, 4, 7, UNI_GCB__PP } /* gcb=prepend */,
+ { 2, 9691, 2613, 4, 19, UNI_ANCIENTGREEKNUMBERS } /* blk=ancientgreeknumbers */,
+ { 818, 10226, 10355, 3, 3, UNI_DI } /* di=yes */,
+ { 1, 9476, 6302, 3, 6, UNI_HEBR } /* sc=hebrew */,
+ { 0, 7550, 0, 10, 0, UNI_CN } /* unassigned */,
+ { 195, 4699, 0, 15, 0, UNI_ecomp_values_index } /* emojicomponent= */,
+ { 5, 1418, 9422, 24, 2, UNI_CCC__91 } /* canonicalcombiningclass=91 */,
+ { 1235, 8973, 6614, 6, 8, UNI_PHAISTOS } /* block=phaistos */,
+ { 0, 9177, 10355, 6, 3, UNI_QMARK } /* qmark=yes */,
+ { 148, 8973, 7310, 6, 10, UNI_INDIVESAKURU } /* block=divesakuru */,
+ { 128, 8782, 8670, 7, 7, UNI_MAKA } /* script=makasar */,
+ { 0, 9177, 1, 6, 1, -UNI_QMARK } /* qmark=n */,
+ { 7, 2206, 1934, 21, 2, UNI_GCB__CN } /* graphemeclusterbreak=cn */,
+ { 0, 5875, 7170, 13, 10, UNI_JG__AFRICANFEH } /* joininggroup=africanfeh */,
+ { 513, 7230, 6146, 10, 12, UNI_BC__AN } /* bidiclass=arabicnumber */,
+ { 1032, 1189, 9208, 3, 5, UNI_INTHAANA } /* inthaana */,
+ { 0, 8782, 2227, 7, 14, UNI_SC__ROHG } /* script=hanifirohingya */,
+ { 0, 3877, 6972, 17, 4, UNI_NAND } /* scriptextensions=nand */,
+ { 264, 10247, 5940, 3, 13, UNI_JG__MALAYALAMLLLA } /* jg=malayalamllla */,
+ { 0, 3283, 0, 18, 0, UNI_idsb_values_index } /* idsbinaryoperator= */,
+ { 0, 1930, 0, 16, 0, UNI_INDICNUMBERFORMS } /* indicnumberforms */,
+ { 536, 1418, 16, 24, 1, UNI_CCC__B } /* canonicalcombiningclass=b */,
+ { 328, 3877, 2937, 18, 8, UNI_SUND } /* scriptextensions=sundanese */,
+ { 6, 6083, 9604, 13, 3, UNI_NV__3_SLASH_2 } /* numericvalue=3/2 */,
+ { 0, 9979, 8284, 4, 4, UNI_BASS } /* scx=bass */,
+ { 1704, 10244, 4026, 3, 16, UNI_PE } /* gc=closepunctuation */,
+ { 8, 7580, 7772, 10, 9, UNI_WB__MB } /* wordbreak=midnumlet */,
+ { 0, 1553, 1026, 9, 2, UNI_NO } /* category=no */,
+ { 1142, 9691, 7673, 4, 9, UNI_EMOTICONS } /* blk=emoticons */,
+ { 24, 8973, 980, 6, 27, UNI_ALPHABETICPF } /* block=alphabeticpresentationforms */,
+ { 1, 97, 0, 5, 0, UNI_XPOSIXALPHA } /* alpha */,
+ { 5, 9691, 839, 4, 29, UNI_MISCARROWS } /* blk=miscellaneoussymbolsandarrows */,
+ { 1, 9979, 9135, 4, 4, UNI_LYDI } /* scx=lydi */,
+ { 254, 7467, 10313, 3, 3, UNI_IN__4_DOT_1 } /* in=v41 */,
+ { 34, 10547, 48, 5, 1, UNI_PERM } /* isperm */,
+ { 0, 10217, 4520, 4, 14, UNI_BC__BN } /* bc=boundaryneutral */,
+ { 0, 10217, 3797, 3, 3, UNI_BC__NSM } /* bc=nsm */,
+ { 0, 10247, 8460, 3, 8, UNI_JG__SWASHKAF } /* jg=swashkaf */,
+ { 1, 10250, 6885, 4, 10, UNI_JT__L } /* jt=leftjoining */,
+ { 5, 9476, 2632, 3, 4, UNI_BRAH } /* sc=brah */,
+ { 2, 9449, 0, 5, 0, UNI_emod_values_index } /* emod= */,
+ { 0, 7467, 10343, 3, 3, UNI_IN__9 } /* in=v90 */,
+ { 5, 2304, 6995, 3, 10, UNI_NO } /* isothernumber */,
+ { 549, 9476, 7835, 3, 9, UNI_SC__OUGR } /* sc=olduyghur */,
+ { 47, 9691, 4378, 4, 16, UNI_SUPMATHOPERATORS } /* blk=supmathoperators */,
+ { 16, 1592, 8615, 3, 6, UNI_INELYMAIC } /* inelymaic */,
+ { 14, 9827, 0, 4, 0, UNI_LANA } /* lana */,
+ { 1, 8973, 10039, 6, 4, UNI_INTHAI } /* block=thai */,
+ { 1165, 9269, 1, 5, 1, -UNI_POSIXXDIGIT } /* ahex=n */,
+ { 0, 1990, 1245, 22, 25, UNI_INSC__CONSONANTINITIALPOSTFIXED } /* indicsyllabiccategory=consonantinitialpostfixed */,
+ { 0, 9476, 2227, 3, 14, UNI_SC__ROHG } /* sc=hanifirohingya */,
+ { 24, 8973, 4330, 6, 16, UNI_MYANMAREXTB } /* block=myanmarextendedb */,
+ { 0, 1189, 2321, 3, 3, UNI_INTHAI } /* inthai */,
+ { 0, 9847, 0, 3, 0, UNI_LOE } /* loe */,
+ { 0, 10253, 34, 3, 2, UNI_LB__EX } /* lb=ex */,
+ { 1027, 10247, 4819, 3, 15, UNI_JG__MANICHAEANSADHE } /* jg=manichaeansadhe */,
+ { 5, 1553, 48, 10, 1, UNI_SM } /* category=sm */,
+ { 1, 10508, 5096, 8, 5, UNI_XPOSIXDIGIT } /* isxposixdigit */,
+ { 308, 7230, 4362, 10, 16, UNI_BC__S } /* bidiclass=segmentseparator */,
+ { 147, 10244, 342, 3, 2, UNI_PE } /* gc=pe */,
+ { 5, 8973, 4138, 6, 16, UNI_HIGHPUSURROGATES } /* block=highpusurrogates */,
+ { 0, 4074, 729, 16, 6, UNI_N } /* generalcategory=number */,
+ { 1309, 8973, 5326, 6, 14, UNI_LATINEXTE } /* block=latinextendede */,
+ { 1, 10352, 5068, 3, 2, UNI_WB__SQ } /* wb=sq */,
+ { 0, 4074, 134, 16, 4, UNI_M } /* generalcategory=mark */,
+ { 0, 9691, 3571, 4, 10, UNI_ALCHEMICAL } /* blk=alchemical */,
+ { 0, 10253, 4954, 3, 15, UNI_LB__OP } /* lb=openpunctuation */,
+ { 2, 185, 2632, 2, 4, UNI_BRAH } /* isbrah */,
+ { 0, 8973, 2746, 6, 19, UNI_JAMOEXTA } /* block=hanguljamoextendeda */,
+ { 142, 185, 8396, 2, 8, UNI_KANAEXTA } /* iskanaexta */,
+ { 1, 10099, 0, 4, 0, UNI_XSUX } /* xsux */,
+ { 0, 185, 9847, 2, 3, UNI_LOE } /* isloe */,
+ { 2, 10553, 45, 3, 1, UNI_SK } /* issk */,
+ { 10, 9105, 0, 4, 0, UNI_KHOJ } /* khoj */,
+ { 0, 2808, 4491, 4, 13, UNI_ARABICEXTB } /* inarabicextendedb */,
+ { 0, 9711, 7320, 4, 4, UNI_CCC__6 } /* ccc=hanr */,
+ { 533, 10247, 6005, 3, 13, UNI_JG__MANICHAEANTAW } /* jg=manichaeantaw */,
+ { 0, 7820, 0, 4, 0, UNI_PERM } /* perm */,
+ { 0, 862, 0, 6, 0, UNI_ARROWS } /* arrows */,
+ { 1794, 7297, 5275, 3, 3, UNI_HIRA } /* ishira */,
+ { 0, 9691, 2936, 4, 19, UNI_SUNDANESESUP } /* blk=sundanesesupplement */,
+ { 0, 185, 5270, 2, 14, UNI_KANGXI } /* iskangxiradicals */,
+ { 1, 9979, 10083, 4, 3, UNI_VAI } /* scx=vai */,
+ { 0, 6340, 2144, 3, 13, UNI_CJKRADICALSSUP } /* incjkradicalssup */,
+ { 0, 6340, 3674, 3, 16, UNI_CYRILLICEXTB } /* incyrillicextendedb */,
+ { 0, 3877, 7434, 18, 3, UNI_SOGD } /* scriptextensions=sogd */,
+ { 1, 9476, 7781, 3, 9, UNI_NBAT } /* sc=nabataean */,
+ { 0, 2553, 0, 20, 0, UNI_term_values_index } /* terminalpunctuation= */,
+ { 816, 10470, 6677, 15, 8, UNI__PERL_CHARNAME_CONTINUE } /* _perl_charname_continue */,
+ { 0, 3403, 26, 6, 1, UNI_XPOSIXSPACE } /* space=y */,
+ { 1720, 9811, 0, 4, 0, UNI_KHMR } /* khmr */,
+ { 0, 8782, 9651, 7, 4, UNI_AGHB } /* script=aghb */,
+ { 911, 1538, 7440, 24, 10, UNI_INPC__OVERSTRUCK } /* indicpositionalcategory=overstruck */,
+ { 3, 8782, 9751, 7, 4, UNI_DIAK } /* script=diak */,
+ { 385, 8973, 1946, 6, 12, UNI_DIACRITICALS } /* block=diacriticals */,
+ { 0, 1418, 8907, 24, 2, UNI_CCC__30 } /* canonicalcombiningclass=30 */,
+ { 645, 10229, 8726, 3, 7, UNI_DT__NB } /* dt=nobreak */,
+ { 33, 10352, 1846, 3, 2, UNI_WB__NL } /* wb=nl */,
+ { 1, 9476, 6972, 3, 11, UNI_SC__NAND } /* sc=nandinagari */,
+ { 8, 6083, 8925, 13, 5, UNI_NV__50000 } /* numericvalue=50000 */,
+ { 8, 8973, 2144, 7, 13, UNI_CJKRADICALSSUP } /* block=cjkradicalssup */,
+ { 20, 185, 3139, 2, 18, UNI_DEVANAGARIEXT } /* isdevanagariextended */,
+ { 512, 9550, 36, 4, 1, UNI_IDS } /* ids=t */,
+ { 0, 9775, 0, 4, 0, UNI_GREK } /* grek */,
+ { 772, 185, 2841, 2, 19, UNI_MERO } /* ismeroitichieroglyphs */,
+ { 8, 8973, 3265, 6, 11, UNI_GEORGIANSUP } /* block=georgiansup */,
+ { 1032, 9711, 10154, 4, 3, UNI_CCC__R } /* ccc=226 */,
+ { 0, 6044, 0, 13, 0, UNI_MAYANNUMERALS } /* mayannumerals */,
+ { 0, 4714, 10355, 15, 3, UNI_GREXT } /* graphemeextend=yes */,
+ { 642, 10253, 4401, 3, 9, UNI_EMOD } /* lb=emodifier */,
+ { 0, 8782, 9871, 7, 4, UNI_MRO } /* script=mroo */,
+ { 72, 8537, 0, 7, 0, UNI_BENG } /* bengali */,
+ { 23, 10244, 4639, 3, 15, UNI_PD } /* gc=dashpunctuation */,
{ 0, 3877, 8684, 17, 7, UNI_MARC } /* scriptextensions=marchen */,
- { 2, 1418, 9330, 25, 4, UNI_CCC__20 } /* canonicalcombiningclass=ccc20 */,
- { 0, 2936, 0, 12, 0, UNI_SUNDANESESUP } /* sundanesesup */,
- { 0, 1553, 45, 10, 1, UNI_SK } /* category=sk */,
- { 2145, 3265, 0, 8, 0, UNI_GEOR } /* georgian */,
- { 0, 10217, 10274, 3, 3, UNI_BC__PDF } /* bc=pdf */,
- { 69, 8973, 8600, 6, 7, UNI_DSRT } /* block=deseret */,
- { 128, 5095, 0, 6, 0, UNI_XPOSIXXDIGIT } /* xdigit */,
- { 277, 2206, 4346, 21, 5, UNI_GCB__XX } /* graphemeclusterbreak=other */,
- { 84, 10247, 5235, 3, 7, UNI_JG__HEHGOAL } /* jg=hehgoal */,
- { 2, 10268, 1250, 3, 3, UNI_NV__NAN } /* nv=nan */,
- { 1081, 9711, 9400, 5, 4, UNI_CCC__34 } /* ccc=ccc34 */,
- { 0, 9476, 9787, 3, 4, UNI_SC__HANO } /* sc=hano */,
- { 9, 9077, 10055, 4, 4, UNI_EXT } /* ext=true */,
- { 528, 3409, 9454, 18, 5, -UNI_RI } /* regionalindicator=false */,
- { 0, 5875, 9659, 13, 4, UNI_JG__ALEF } /* joininggroup=alef */,
- { 0, 8973, 1320, 6, 25, UNI_SYMBOLSANDPICTOGRAPHSEXTA } /* block=symbolsandpictographsexta */,
- { 0, 9691, 2879, 4, 12, UNI_MONGOLIANSUP } /* blk=mongoliansup */,
- { 0, 9476, 3049, 3, 4, UNI_CHER } /* sc=cher */,
- { 17, 3877, 9891, 17, 4, UNI_NEWA } /* scriptextensions=newa */,
- { 2697, 2553, 0, 21, 0, UNI_TERM } /* terminalpunctuation=t */,
- { 0, 4714, 10055, 15, 4, UNI_GREXT } /* graphemeextend=true */,
- { 0, 8881, 5089, 3, 12, UNI_POSIXXDIGIT } /* isasciihexdigit */,
- { 1, 185, 1467, 3, 23, UNI_DIACRITICALSFORSYMBOLS } /* iscombiningmarksforsymbols */,
- { 6, 10268, 8903, 3, 3, UNI_NV__600 } /* nv=600 */,
- { 0, 185, 8396, 2, 8, UNI_KANAEXTA } /* iskanaexta */,
- { 9, 8973, 8348, 6, 8, UNI_INGURMUKHI } /* block=gurmukhi */,
- { 4, 185, 7718, 2, 9, UNI_LATINEXTB } /* islatinextb */,
- { 0, 9691, 3463, 4, 18, UNI_SMALLKANAEXT } /* blk=smallkanaextension */,
- { 2258, 2784, 24, 19, 1, UNI_GCB__L } /* hangulsyllabletype=l */,
- { 0, 9469, 7440, 5, 10, UNI_INPC__OVERSTRUCK } /* inpc=overstruck */,
- { 0, 3877, 3978, 17, 8, UNI_BOPO } /* scriptextensions=bopomofo */,
- { 0, 6083, 9611, 13, 4, UNI_NV__15_SLASH_2 } /* numericvalue=15/2 */,
- { 137, 7550, 0, 10, 0, UNI_CN } /* unassigned */,
- { 6, 185, 3157, 2, 13, UNI_EMOD } /* isemojimodifier */,
- { 2, 10268, 8949, 3, 3, UNI_NV__900 } /* nv=900 */,
- { 51, 10244, 599, 3, 2, UNI_XPOSIXCNTRL } /* gc=cc */,
- { 10, 1852, 1, 6, 1, -UNI_CASED } /* cased=n */,
- { 8, 9747, 3, 4, 1, -UNI_DIA } /* dia=f */,
- { 5, 6374, 0, 12, 0, UNI_NL } /* letternumber */,
- { 0, 1418, 3039, 24, 5, UNI_CCC__A } /* canonicalcombiningclass=above */,
- { 47, 9476, 9871, 3, 3, UNI_MRO } /* sc=mro */,
- { 1144, 10244, 10400, 3, 2, UNI_ZS } /* gc=zs */,
- { 2217, 1418, 8986, 25, 4, UNI_CCC__10 } /* canonicalcombiningclass=ccc10 */,
- { 0, 9979, 9719, 4, 4, UNI_CPMN } /* scx=cpmn */,
- { 0, 185, 2311, 2, 21, UNI_SINHALAARCHAICNUMBERS } /* issinhalaarchaicnumbers */,
- { 229, 7360, 5669, 10, 2, UNI_EBASE } /* linebreak=eb */,
- { 0, 8621, 0, 4, 0, UNI_GRAN } /* gran */,
- { 0, 9474, 2413, 5, 20, UNI_INSC__CONSONANTWITHSTACKER } /* insc=consonantwithstacker */,
- { 2609, 8973, 862, 6, 6, UNI_ARROWS } /* block=arrows */,
- { 0, 5354, 0, 14, 0, UNI_LATINEXTG } /* latinextendedg */,
- { 233, 6083, 10362, 13, 2, UNI_NV__44 } /* numericvalue=44 */,
- { 12, 6994, 0, 11, 0, UNI_NO } /* othernumber */,
- { 22, 8881, 184, 4, 2, UNI_ARMI } /* isarmi */,
- { 0, 9711, 8251, 4, 2, UNI_CCC__19 } /* ccc=19 */,
- { 0, 9939, 0, 4, 0, UNI_MIAO } /* plrd */,
- { 0, 3877, 9069, 17, 6, UNI_GOTH } /* scriptextensions=gothic */,
- { 0, 9691, 6862, 4, 11, UNI_KATAKANAEXT } /* blk=katakanaext */,
- { 556, 3877, 9519, 17, 5, UNI_OSGE } /* scriptextensions=osage */,
- { 1311, 9979, 8663, 4, 7, UNI_LINA } /* scx=lineara */,
- { 1, 9711, 6774, 4, 11, UNI_CCC__DB } /* ccc=doublebelow */,
- { 0, 4598, 1634, 4, 13, UNI_GEOMETRICSHAPES } /* ingeometricshapes */,
- { 11, 3877, 2584, 17, 4, UNI_MAND } /* scriptextensions=mand */,
- { 1427, 8782, 7, 7, 18, UNI_CANS } /* script=canadianaboriginal */,
- { 0, 4074, 1218, 16, 2, UNI_SK } /* generalcategory=sk */,
- { 5, 8782, 866, 10, 1, UNI_SHAW } /* script=shaw */,
- { 462, 9269, 9454, 5, 5, -UNI_POSIXXDIGIT } /* ahex=false */,
- { 585, 10244, 25, 3, 1, UNI_S } /* gc=s */,
- { 0, 7218, 8277, 3, 7, UNI_INBALINESE } /* inbalinese */,
- { 8, 10268, 10368, 3, 2, UNI_NV__47 } /* nv=47 */,
- { 0, 8316, 0, 9, 0, -UNI_EXTPICT } /* extpict=f */,
- { 0, 3398, 0, 10, 0, UNI_XPOSIXSPACE } /* whitespace */,
- { 2870, 2242, 9892, 3, 3, UNI_INNEWA } /* innewa */,
- { 0, 9691, 4378, 4, 16, UNI_SUPMATHOPERATORS } /* blk=supmathoperators */,
- { 1, 9123, 9454, 6, 5, -UNI_XPOSIXLOWER } /* lower=false */,
- { 1128, 3121, 4058, 18, 5, UNI_DT__FIN } /* decompositiontype=final */,
- { 0, 9449, 36, 5, 1, UNI_EMOD } /* emod=t */,
- { 3091, 9476, 8260, 3, 8, UNI_ARMN } /* sc=armenian */,
- { 0, 185, 728, 2, 2, UNI_MN } /* ismn */,
- { 1800, 1167, 1026, 26, 2, -UNI_DI } /* defaultignorablecodepoint=no */,
- { 1, 9979, 7450, 4, 10, UNI_PHNX } /* scx=phoenician */,
- { 47, 7467, 9607, 3, 4, UNI_IN__14 } /* in=14.0 */,
- { 0, 10268, 8076, 3, 8, UNI_NV__3_SLASH_8 } /* nv=3.75e-01 */,
- { 83, 8782, 9081, 7, 6, UNI_HATR } /* script=hatran */,
- { 5, 9735, 10355, 4, 3, UNI_CWU } /* cwu=yes */,
- { 0, 1869, 0, 5, 0, UNI_TITLE } /* title */,
- { 2, 9063, 10055, 6, 4, UNI_EPRES } /* epres=true */,
- { 138, 10244, 1172, 3, 2, UNI_TITLE } /* gc=lt */,
- { 1089, 9763, 34, 4, 2, UNI_GCB__EX } /* gcb=ex */,
- { 8, 3942, 6293, 5, 9, UNI_INGUNJALAGONDI } /* ingunjalagondi */,
- { 2, 3877, 9482, 17, 4, UNI_PHLI } /* scriptextensions=phli */,
- { 0, 9979, 8420, 4, 8, UNI_MAHJ } /* scx=mahajani */,
- { 0, 9979, 6730, 4, 11, UNI_CPMN } /* scx=cyprominoan */,
- { 0, 9123, 3, 6, 1, -UNI_XPOSIXLOWER } /* lower=f */,
- { 2374, 8782, 3936, 8, 3, UNI_SGNW } /* script=sgnw */,
- { 0, 9476, 7500, 3, 4, UNI_SAUR } /* sc=saur */,
- { 0, 185, 9294, 2, 5, UNI_BUHD } /* isbuhid */,
- { 0, 7460, 8099, 10, 2, UNI_IN__14 } /* presentin=14 */,
- { 0, 185, 1935, 2, 11, UNI_NUMBERFORMS } /* isnumberforms */,
- { 0, 1553, 10400, 9, 2, UNI_ZS } /* category=zs */,
- { 50, 9691, 3076, 4, 9, UNI_HALFMARKS } /* blk=halfmarks */,
- { 0, 2143, 0, 21, 0, UNI_CJKRADICALSSUP } /* cjkradicalssupplement */,
- { 4, 185, 2879, 2, 19, UNI_MONGOLIANSUP } /* ismongoliansupplement */,
- { 0, 9647, 7995, 4, 4, UNI_AGE__12 } /* age=12.0 */,
- { 526, 9691, 2269, 4, 11, UNI_INMEETEIMAYEK } /* blk=meeteimayek */,
- { 23, 9979, 10000, 5, 3, UNI_SHRD } /* scx=shrd */,
- { 1149, 185, 9736, 3, 2, UNI_CWU } /* iscwu */,
+ { 1139, 3121, 8332, 18, 8, UNI_DT__FRA } /* decompositiontype=fraction */,
+ { 672, 4157, 5863, 3, 5, UNI_IPAEXT } /* isipaext */,
+ { 1, 9476, 4924, 3, 15, UNI_NARB } /* sc=oldnortharabian */,
+ { 1266, 5875, 5508, 13, 14, UNI_JG__MANICHAEANYODH } /* joininggroup=manichaeanyodh */,
+ { 692, 7727, 0, 9, 0, UNI_LATINEXTC } /* latinextc */,
+ { 13, 8782, 3792, 7, 17, UNI_KITS } /* script=khitansmallscript */,
+ { 1, 9979, 4504, 4, 5, UNI_BAMU } /* scx=bamum */,
+ { 2, 9691, 8500, 4, 8, UNI_INUGARITIC } /* blk=ugaritic */,
+ { 0, 9711, 8998, 5, 5, UNI_CCC__118 } /* ccc=ccc118 */,
+ { 1371, 8782, 10111, 7, 4, UNI_ZANB } /* script=zanb */,
+ { 3904, 9799, 0, 4, 0, UNI_HMNP } /* hmnp */,
+ { 1056, 8973, 8607, 6, 7, UNI_INELBASAN } /* block=elbasan */,
+ { 5, 8973, 5214, 6, 14, UNI_INGREEK } /* block=greekandcoptic */,
+ { 611, 8979, 0, 6, 0, UNI_CARI } /* carian */,
+ { 8, 5823, 9454, 13, 5, -UNI_GRBASE } /* graphemebase=false */,
+ { 1, 8782, 6924, 8, 3, UNI_SAMR } /* script=samr */,
+ { 1, 5875, 5992, 13, 13, UNI_JG__MANICHAEANONE } /* joininggroup=manichaeanone */,
+ { 1048, 1553, 4058, 9, 16, UNI_PF } /* category=finalpunctuation */,
+ { 0, 8955, 1, 6, 1, -UNI_XPOSIXALPHA } /* alpha=n */,
+ { 0, 6083, 8920, 13, 2, UNI_NV__32 } /* numericvalue=32 */,
+ { 0, 10244, 1218, 3, 2, UNI_SK } /* gc=sk */,
+ { 229, 10268, 0, 3, 0, UNI_nv_values_index } /* nv= */,
+ { 1, 2784, 6895, 19, 11, UNI_LB__H3 } /* hangulsyllabletype=lvtsyllable */,
+ { 256, 9424, 0, 5, 0, UNI_XPOSIXCNTRL } /* cntrl */,
+ { 3897, 8782, 9895, 7, 3, UNI_SC__NKO } /* script=nko */,
+ { 1, 185, 9105, 2, 4, UNI_KHOJ } /* iskhoj */,
+ { 1, 10516, 8776, 3, 6, UNI_PHAG } /* isphagspa */,
+ { 1453, 10456, 10440, 14, 11, UNI__PERL_FOLDS_TO_MULTI_CHAR } /* _perl_folds_to_multi_char */,
+ { 90, 10268, 7980, 3, 8, UNI_NV__1_SLASH_6 } /* nv=1.67e-01 */,
+ { 0, 9691, 9863, 4, 4, UNI_INMIAO } /* blk=miao */,
+ { 0, 6338, 9454, 12, 5, -UNI_JOINC } /* joincontrol=false */,
+ { 0, 9823, 0, 4, 0, UNI_KTHI } /* kthi */,
+ { 0, 6741, 0, 10, 0, UNI_DEP } /* deprecated */,
+ { 737, 10247, 88, 3, 2, UNI_JG__HE } /* jg=he */,
+ { 0, 1418, 9671, 24, 4, UNI_CCC__216 } /* canonicalcombiningclass=atar */,
+ { 0, 2003, 36, 10, 1, UNI_TITLE } /* category=lt */,
+ { 0, 9476, 7817, 3, 9, UNI_SC__PERM } /* sc=oldpermic */,
+ { 1, 3877, 8607, 17, 7, UNI_ELBA } /* scriptextensions=elbasan */,
+ { 3846, 1814, 1, 22, 1, -UNI_CWCM } /* changeswhencasemapped=n */,
+ { 1152, 9691, 570, 4, 30, UNI_CJKEXTC } /* blk=cjkunifiedideographsextensionc */,
+ { 0, 10268, 8052, 3, 8, UNI_NV__1_SLASH_320 } /* nv=3.13e-03 */,
+ { 0, 3877, 9931, 17, 4, UNI_PHLP } /* scriptextensions=phlp */,
+ { 561, 185, 10396, 2, 2, UNI_ZL } /* iszl */,
+ { 61, 9147, 0, 7, 0, -UNI__PERL_NCHAR } /* nchar=n */,
+ { 4106, 185, 3265, 2, 8, UNI_GEOR } /* isgeorgian */,
+ { 9, 1115, 0, 26, 0, UNI_cwkcf_values_index } /* changeswhennfkccasefolded= */,
+ { 0, 10217, 6146, 3, 12, UNI_BC__AN } /* bc=arabicnumber */,
+ { 16, 9691, 2974, 4, 19, UNI_SUPARROWSB } /* blk=supplementalarrowsb */,
+ { 920, 185, 9706, 2, 2, UNI_MC } /* ismc */,
+ { 0, 8854, 9239, 4, 4, UNI_INYEZIDI } /* inyezidi */,
+ { 1043, 7682, 26, 9, 1, UNI_EXT } /* extender=y */,
+ { 3081, 3877, 8670, 17, 7, UNI_MAKA } /* scriptextensions=makasar */,
+ { 1, 7360, 6170, 10, 12, UNI_LB__SY } /* linebreak=breaksymbols */,
+ { 82, 10268, 8949, 3, 4, UNI_NV__9000 } /* nv=9000 */,
+ { 10, 3553, 9454, 18, 5, -UNI_VS } /* variationselector=false */,
+ { 2817, 10470, 10485, 15, 5, UNI__PERL_CHARNAME_BEGIN } /* _perl_charname_begin */,
+ { 1024, 2553, 3, 20, 1, -UNI_TERM } /* terminalpunctuation=f */,
+ { 13, 3877, 8797, 18, 6, UNI_SHAW } /* scriptextensions=shavian */,
+ { 3264, 4865, 728, 4, 2, UNI_CPMN } /* iscpmn */,
+ { 303, 185, 9859, 2, 4, UNI_MERC } /* ismerc */,
+ { 9, 1847, 0, 5, 0, UNI_XPOSIXLOWER } /* lower */,
+ { 0, 1270, 36, 25, 1, UNI_COMPEX } /* fullcompositionexclusion=t */,
+ { 0, 8955, 9454, 6, 5, -UNI_XPOSIXALPHA } /* alpha=false */,
+ { 1800, 10553, 7105, 3, 3, UNI_SYLO } /* issylo */,
+ { 0, 4090, 0, 16, 0, UNI_GEORGIANEXT } /* georgianextended */,
+ { 0, 3877, 9871, 17, 3, UNI_MRO } /* scriptextensions=mro */,
+ { 0, 10039, 0, 4, 0, UNI_THAI } /* thai */,
+ { 3, 10346, 410, 3, 2, UNI_VO__TR } /* vo=tr */,
+ { 0, 8782, 8740, 7, 7, UNI_OLCK } /* script=olchiki */,
+ { 0, 9979, 9081, 4, 4, UNI_HATR } /* scx=hatr */,
+ { 1, 8973, 7600, 6, 10, UNI_YIRADICALS } /* block=yiradicals */,
+ { 0, 9476, 9519, 3, 5, UNI_OSGE } /* sc=osage */,
+ { 1603, 10352, 6287, 3, 3, UNI_LB__ZWJ } /* wb=zwj */,
+ { 16, 6083, 9627, 13, 4, UNI_NV__3_SLASH_64 } /* numericvalue=3/64 */,
+ { 1048, 1418, 9385, 25, 4, UNI_CCC__31 } /* canonicalcombiningclass=ccc31 */,
+ { 2080, 9691, 284, 4, 33, UNI_MISCMATHSYMBOLSB } /* blk=miscellaneousmathematicalsymbolsb */,
+ { 23, 21, 5368, 2, 7, UNI_LISUSUP } /* inlisusup */,
+ { 1, 185, 3463, 2, 12, UNI_SMALLKANAEXT } /* issmallkanaext */,
+ { 1041, 9544, 1, 5, 1, -UNI_XIDC } /* xidc=n */,
+ { 0, 6083, 9631, 13, 3, UNI_NV__3_SLASH_8 } /* numericvalue=3/8 */,
+ { 1, 2593, 3535, 20, 18, UNI_VO__TU } /* verticalorientation=transformedupright */,
+ { 0, 9647, 7983, 4, 1, UNI_AGE__7 } /* age=7 */,
+ { 1042, 5592, 10355, 14, 3, UNI_PATSYN } /* patternsyntax=yes */,
+ { 0, 8782, 8677, 7, 7, UNI_SC__MAND } /* script=mandaic */,
+ { 1, 8854, 7160, 3, 10, UNI_YISYLLABLES } /* inyisyllables */,
+ { 1041, 7218, 4535, 3, 6, UNI_BRAI } /* inbraille */,
+ { 0, 118, 5863, 3, 12, UNI_IPAEXT } /* inipaextensions */,
+ { 1, 5662, 0, 14, 0, UNI_sb_values_index } /* sentencebreak= */,
+ { 0, 9691, 3809, 4, 17, UNI_LETTERLIKESYMBOLS } /* blk=letterlikesymbols */,
+ { 3, 8973, 4106, 6, 16, UNI_HALFANDFULLFORMS } /* block=halfandfullforms */,
+ { 1, 9476, 9839, 3, 4, UNI_SC__LINA } /* sc=lina */,
+ { 1, 9476, 8810, 3, 7, UNI_SOYO } /* sc=soyombo */,
+ { 34, 10253, 3403, 3, 5, UNI_LB__SP } /* lb=space */,
+ { 242, 8973, 8789, 6, 7, UNI_SC__SHRD } /* block=sharada */,
+ { 1902, 185, 1903, 3, 18, UNI_CJKCOMPATIDEOGRAPHS } /* iscjkcompatideographs */,
+ { 3194, 6083, 8943, 13, 5, UNI_NV__80000 } /* numericvalue=80000 */,
+ { 0, 8782, 4426, 7, 4, UNI_TANG } /* script=tang */,
+ { 3, 8881, 2338, 3, 3, UNI_POSIXXDIGIT } /* isahex */,
+ { 2512, 7460, 7611, 10, 3, UNI_IN__5 } /* presentin=5.0 */,
+ { 2444, 8973, 691, 7, 29, UNI_CJKEXTG } /* block=cjkunifiedideographsextensiong */,
+ { 115, 9469, 7017, 3, 10, UNI_INPAHAWHHMONG } /* inpahawhhmong */,
+ { 1753, 3877, 9534, 17, 4, UNI_TAKR } /* scriptextensions=takr */,
+ { 0, 9461, 0, 3, 0, UNI_sb_values_index } /* sb= */,
+ { 0, 6083, 5732, 13, 9, UNI_NV__100000000 } /* numericvalue=100000000 */,
+ { 1660, 185, 9879, 2, 4, UNI_MYMR } /* ismymr */,
+ { 1794, 2433, 0, 10, 0, UNI_GLAG } /* glagolitic */,
+ { 10, 5340, 0, 14, 0, UNI_LATINEXTF } /* latinextendedf */,
+ { 0, 6083, 9567, 13, 4, UNI_NV__1_SLASH_20 } /* numericvalue=1/20 */,
+ { 132, 2593, 472, 20, 2, UNI_VO__TU } /* verticalorientation=tu */,
{ 0, 10268, 8907, 3, 3, UNI_NV__300 } /* nv=300 */,
- { 0, 21, 8649, 2, 7, UNI_INKANNADA } /* inkannada */,
- { 1163, 185, 1881, 3, 20, UNI_CWU } /* ischangeswhenuppercased */,
- { 1, 6083, 9571, 13, 3, UNI_NV__1_SLASH_4 } /* numericvalue=1/4 */,
- { 6, 4074, 10400, 16, 2, UNI_ZS } /* generalcategory=zs */,
- { 1, 3877, 10039, 17, 4, UNI_THAI } /* scriptextensions=thai */,
- { 0, 3877, 5368, 17, 4, UNI_LISU } /* scriptextensions=lisu */,
- { 3901, 9549, 10355, 5, 3, UNI_XIDS } /* xids=yes */,
- { 135, 2632, 0, 4, 0, UNI_BRAH } /* brah */,
- { 0, 3877, 5059, 17, 15, UNI_ZANB } /* scriptextensions=zanabazarsquare */,
- { 2625, 3877, 0, 17, 0, UNI_scx_values_index } /* scriptextensions= */,
- { 9, 7297, 2766, 3, 18, UNI_JAMOEXTB } /* ishanguljamoextendedb */,
- { 2309, 10217, 5186, 3, 14, UNI_BC__EN } /* bc=europeannumber */,
- { 0, 510, 0, 20, 0, UNI_CJK } /* cjkunifiedideographs */,
- { 2, 8544, 0, 7, 0, UNI_CJKEXTA } /* cjkexta */,
- { 1541, 49, 0, 1, 0, UNI_P } /* p */,
- { 3, 9711, 1779, 4, 2, UNI_CCC__DB } /* ccc=db */,
- { 2, 5830, 36, 6, 1, UNI_EBASE } /* ebase=t */,
- { 4, 185, 3398, 2, 10, UNI_XPOSIXSPACE } /* iswhitespace */,
- { 0, 3877, 3049, 17, 8, UNI_CHER } /* scriptextensions=cherokee */,
- { 0, 9691, 750, 4, 30, UNI_ENCLOSEDALPHANUMSUP } /* blk=enclosedalphanumericsupplement */,
- { 5, 185, 3928, 2, 17, UNI_SUTTONSIGNWRITING } /* issuttonsignwriting */,
- { 3, 9667, 0, 4, 0, UNI_ARMN } /* armn */,
- { 7, 10253, 8873, 3, 7, UNI_LB__XX } /* lb=unknown */,
- { 577, 8973, 2613, 6, 19, UNI_ANCIENTGREEKNUMBERS } /* block=ancientgreeknumbers */,
- { 14, 6578, 39, 12, 2, UNI_XPOSIXDIGIT } /* numerictype=de */,
- { 0, 1418, 3596, 24, 5, UNI_CCC__B } /* canonicalcombiningclass=below */,
- { 1, 10516, 10528, 7, 5, UNI_POSIXPRINT } /* isposixprint */,
- { 0, 9711, 3039, 4, 10, UNI_CCC__AR } /* ccc=aboveright */,
- { 1, 5758, 10355, 13, 3, UNI_BIDIM } /* bidimirrored=yes */,
- { 3622, 185, 4286, 2, 10, UNI_SM } /* ismathsymbol */,
- { 3358, 10346, 0, 3, 1, UNI_VO__U } /* vo=u */,
- { 2, 10553, 6924, 3, 3, UNI_SAMR } /* issamr */,
- { 24, 9691, 720, 4, 30, UNI_CUNEIFORMNUMBERS } /* blk=cuneiformnumbersandpunctuation */,
- { 0, 1553, 75, 9, 2, UNI_ME } /* category=me */,
- { 1113, 9063, 1, 6, 1, -UNI_EPRES } /* epres=n */,
- { 3, 9979, 8537, 4, 7, UNI_BENG } /* scx=bengali */,
- { 832, 10268, 8937, 3, 3, UNI_NV__700 } /* nv=700 */,
- { 0, 3877, 8600, 17, 7, UNI_DSRT } /* scriptextensions=deseret */,
- { 1, 9979, 9883, 4, 4, UNI_NARB } /* scx=narb */,
- { 394, 10253, 7250, 3, 10, UNI_LB__BA } /* lb=breakafter */,
- { 3717, 3877, 9959, 17, 4, UNI_RJNG } /* scriptextensions=rjng */,
- { 2923, 10553, 8818, 3, 6, UNI_SUPPUAA } /* issuppuaa */,
- { 1, 8973, 9105, 6, 6, UNI_INKHOJKI } /* block=khojki */,
- { 3824, 8881, 8531, 3, 6, UNI_AVST } /* isavestan */,
- { 452, 5578, 0, 14, 0, UNI_MN } /* nonspacingmark */,
- { 0, 8782, 9871, 7, 3, UNI_MRO } /* script=mro */,
- { 0, 4684, 1193, 15, 9, UNI_EA__H } /* eastasianwidth=halfwidth */,
- { 11, 10247, 5494, 3, 14, UNI_JG__MANICHAEANTETH } /* jg=manichaeanteth */,
- { 4085, 21, 4202, 2, 16, UNI_LINEARBSYLLABARY } /* inlinearbsyllabary */,
- { 4, 2784, 9, 19, 2, UNI_HST__NA } /* hangulsyllabletype=na */,
- { 1074, 9691, 600, 4, 30, UNI_CJKEXTD } /* blk=cjkunifiedideographsextensiond */,
- { 1235, 1, 0, 1, 0, UNI_N } /* n */,
- { 0, 3382, 0, 9, 0, UNI_Z } /* separator */,
- { 2100, 7467, 7996, 3, 3, UNI_IN__2 } /* in=2.0 */,
- { 21, 5172, 10355, 14, 3, UNI_EMOD } /* emojimodifier=yes */,
- { 1, 7360, 34, 10, 2, UNI_LB__EX } /* linebreak=ex */,
- { 15, 1189, 9208, 3, 5, UNI_INTHAANA } /* inthaana */,
- { 3104, 9691, 7159, 4, 11, UNI_YISYLLABLES } /* blk=yisyllables */,
- { 20, 9087, 0, 6, 0, UNI_joinc_values_index } /* joinc= */,
- { 2945, 5045, 8493, 3, 6, UNI_UCASEXT } /* isucasext */,
- { 3, 2248, 2312, 3, 20, UNI_SINHALAARCHAICNUMBERS } /* insinhalaarchaicnumbers */,
- { 4, 8973, 980, 6, 27, UNI_ALPHABETICPF } /* block=alphabeticpresentationforms */,
- { 3984, 185, 5214, 2, 14, UNI_INGREEK } /* isgreekandcoptic */,
- { 2688, 5875, 7187, 13, 3, UNI_JG__QAF } /* joininggroup=qaf */,
- { 0, 6083, 8036, 13, 8, UNI_NV__1_SLASH_32 } /* numericvalue=3.12e-02 */,
- { 9, 79, 0, 6, 0, UNI_ARAB } /* arabic */,
- { 0, 9476, 7016, 3, 11, UNI_HMNG } /* sc=pahawhhmong */,
- { 473, 8444, 0, 8, 0, UNI_radical_values_index } /* radical= */,
- { 48, 9979, 8635, 4, 7, UNI_HANO } /* scx=hanunoo */,
- { 10, 8768, 36, 7, 1, UNI_PATSYN } /* patsyn=t */,
- { 304, 7560, 26, 10, 1, UNI_XPOSIXUPPER } /* uppercase=y */,
- { 9, 10244, 1045, 3, 6, UNI_L } /* gc=letter */,
- { 1732, 185, 1847, 2, 5, UNI_XPOSIXLOWER } /* islower */,
- { 2625, 9763, 18, 4, 2, UNI_RI } /* gcb=ri */,
- { 0, 10268, 9603, 3, 4, UNI_NV__13_SLASH_2 } /* nv=13/2 */,
- { 1861, 9711, 9350, 5, 4, UNI_CCC__24 } /* ccc=ccc24 */,
- { 3456, 185, 1859, 3, 20, UNI_CWT } /* ischangeswhentitlecased */,
- { 4, 58, 0, 2, 0, UNI_YI } /* yi */,
- { 8, 6529, 8755, 3, 6, UNI_INOSMANYA } /* inosmanya */,
- { 0, 9469, 869, 3, 17, UNI_PHONETICEXT } /* inphoneticextensions */,
- { 576, 9429, 36, 5, 1, UNI_CWCF } /* cwcf=t */,
- { 0, 8881, 7202, 4, 8, UNI_ARABICEXTB } /* isarabicextb */,
- { 4240, 118, 448, 3, 17, UNI_IDEOGRAPHICSYMBOLS } /* inideographicsymbols */,
- { 13, 9711, 9390, 5, 4, UNI_CCC__32 } /* ccc=ccc32 */,
- { 1836, 7467, 10067, 3, 4, UNI_IN__12 } /* in=v120 */,
- { 0, 2206, 6287, 21, 3, UNI_LB__ZWJ } /* graphemeclusterbreak=zwj */,
- { 3, 185, 9807, 2, 4, UNI_KALI } /* iskali */,
- { 0, 8973, 7310, 6, 10, UNI_INDIVESAKURU } /* block=divesakuru */,
- { 10, 185, 2509, 2, 4, UNI_MONG } /* ismong */,
- { 6266, 7297, 2531, 3, 3, UNI_HATR } /* ishatr */,
- { 0, 8782, 7501, 8, 3, UNI_SAUR } /* script=saur */,
- { 3, 2312, 2100, 4, 4, UNI_INHATRAN } /* inhatran */,
- { 0, 9711, 3588, 4, 13, UNI_CCC__202 } /* ccc=attachedbelow */,
- { 1631, 10247, 6271, 3, 7, UNI_JG__SEMKATH } /* jg=semkath */,
- { 2402, 185, 3157, 2, 17, UNI_EBASE } /* isemojimodifierbase */,
- { 264, 4847, 2271, 4, 19, UNI_MEETEIMAYEKEXT } /* inmeeteimayekextensions */,
- { 684, 1418, 7923, 24, 2, UNI_CCC__11 } /* canonicalcombiningclass=11 */,
- { 0, 3877, 9895, 17, 4, UNI_NKO } /* scriptextensions=nkoo */,
- { 0, 7360, 4503, 10, 2, UNI_LB__BB } /* linebreak=bb */,
- { 4670, 185, 601, 3, 29, UNI_CJKEXTD } /* iscjkunifiedideographsextensiond */,
- { 0, 8628, 1026, 7, 2, -UNI_GRBASE } /* grbase=no */,
- { 0, 9691, 5256, 4, 7, UNI_KANASUP } /* blk=kanasup */,
- { 19, 9691, 6518, 4, 12, UNI_INMENDEKIKAKUI } /* blk=mendekikakui */,
- { 0, 9469, 3012, 5, 19, UNI_INPC__TOPANDBOTTOMANDLEFT } /* inpc=topandbottomandleft */,
- { 0, 1990, 4346, 22, 5, UNI_INSC__OTHER } /* indicsyllabiccategory=other */,
- { 4, 9847, 3, 4, 1, -UNI_LOE } /* loe=f */,
- { 1890, 9691, 7280, 4, 10, UNI_COMPATJAMO } /* blk=compatjamo */,
- { 0, 7360, 10250, 10, 2, UNI_GCB__T } /* linebreak=jt */,
- { 0, 10253, 7628, 3, 9, UNI_LB__AI } /* lb=ambiguous */,
- { 4669, 5074, 0, 14, 0, UNI_ANCIENTSYMBOLS } /* ancientsymbols */,
- { 0, 9476, 8607, 3, 7, UNI_ELBA } /* sc=elbasan */
+ { 0, 185, 4610, 3, 14, UNI_CONTROLPICTURES } /* iscontrolpictures */,
+ { 0, 7460, 10295, 10, 3, UNI_IN__2 } /* presentin=v20 */,
+ { 1171, 7360, 8413, 11, 7, UNI_LB__LF } /* linebreak=linefeed */,
+ { 0, 10516, 7854, 3, 8, UNI_PAUC } /* ispaucinhau */,
+ { 2, 9979, 8348, 4, 8, UNI_GURU } /* scx=gurmukhi */,
+ { 6713, 9190, 10056, 6, 3, UNI_TERM } /* term=true */,
+ { 1, 5172, 10055, 14, 4, UNI_EMOD } /* emojimodifier=true */,
+ { 1, 8782, 9963, 7, 4, UNI_SC__ROHG } /* script=rohg */,
+ { 6354, 3877, 9831, 17, 3, UNI_LAO } /* scriptextensions=lao */,
+ { 0, 9476, 8621, 3, 7, UNI_SC__GRAN } /* sc=grantha */,
+ { 0, 1370, 0, 24, 0, UNI_ARABICPFA } /* arabicpresentationformsa */,
+ { 4, 5836, 0, 8, 0, UNI_GREEKEXT } /* greekext */,
+ { 1, 1553, 7, 10, 1, UNI_SC } /* category=sc */,
+ { 2529, 8973, 3050, 7, 7, UNI_INCHEROKEE } /* block=cherokee */,
+ { 289, 9476, 1629, 3, 4, UNI_SC__PHAG } /* sc=phag */,
+ { 537, 9691, 3193, 4, 11, UNI_ETHIOPICSUP } /* blk=ethiopicsup */,
+ { 0, 9476, 7853, 3, 9, UNI_PAUC } /* sc=paucinhau */,
+ { 0, 10352, 6302, 3, 12, UNI_LB__HL } /* wb=hebrewletter */,
+ { 2436, 1418, 1220, 24, 3, UNI_CCC__214 } /* canonicalcombiningclass=ata */,
+ { 0, 185, 3600, 3, 2, UNI_CWL } /* iscwl */,
+ { 0, 10352, 34, 3, 2, UNI_WB__EX } /* wb=ex */,
+ { 0, 118, 3777, 4, 15, UNI_INDICSIYAQNUMBERS } /* inindicsiyaqnumbers */,
+ { 0, 2248, 781, 3, 29, UNI_SYMBOLSANDPICTOGRAPHSEXTA } /* insymbolsandpictographsextendeda */,
+ { 4682, 9691, 750, 4, 30, UNI_ENCLOSEDALPHANUMSUP } /* blk=enclosedalphanumericsupplement */,
+ { 0, 9476, 8866, 3, 7, UNI_SC__TIRH } /* sc=tirhuta */,
+ { 3105, 1553, 1, 9, 1, UNI_N } /* category=n */,
+ { 2314, 8973, 8508, 6, 8, UNI_INVITHKUQI } /* block=vithkuqi */,
+ { 1, 4864, 0, 15, 0, UNI_MISCPICTOGRAPHS } /* miscpictographs */,
+ { 7005, 1553, 9706, 9, 2, UNI_MC } /* category=mc */,
+ { 0, 9270, 26, 4, 1, UNI_XPOSIXXDIGIT } /* hex=y */,
+ { 30, 7297, 9792, 3, 3, UNI_HLUW } /* ishluw */,
+ { 25, 9979, 8838, 4, 7, UNI_LANA } /* scx=taitham */,
+ { 0, 7580, 496, 10, 7, UNI_WB__NU } /* wordbreak=numeric */,
+ { 2573, 8388, 0, 8, 0, UNI_JAVA } /* javanese */,
+ { 12, 4972, 10028, 3, 3, UNI_TAVT } /* istavt */,
+ { 0, 6083, 9307, 13, 2, UNI_NV__15 } /* numericvalue=15 */,
+ { 0, 1506, 3868, 4, 5, UNI_INGRANTHA } /* ingrantha */,
+ { 1, 9691, 4505, 5, 4, UNI_INBAMUM } /* blk=bamum */,
+ { 0, 7467, 10067, 3, 4, UNI_IN__12 } /* in=v120 */,
+ { 2111, 6983, 0, 11, 0, UNI_LO } /* otherletter */,
+ { 21, 1189, 4985, 3, 14, UNI_TAMILSUP } /* intamilsupplement */,
+ { 6194, 10253, 5102, 3, 14, UNI_LB__CR } /* lb=carriagereturn */,
+ { 0, 4346, 0, 5, 0, UNI_C } /* other */,
+ { 3, 9767, 0, 4, 0, UNI_GONG } /* gong */,
+ { 7, 3877, 6972, 17, 11, UNI_NAND } /* scriptextensions=nandinagari */,
+ { 5963, 10268, 7934, 3, 1, UNI_NV__2 } /* nv=2 */,
+ { 5014, 1418, 8179, 24, 2, UNI_CCC__36 } /* canonicalcombiningclass=36 */,
+ { 1, 9691, 2353, 4, 20, UNI_INANATOLIANHIEROGLYPHS } /* blk=anatolianhieroglyphs */,
+ { 0, 9213, 10355, 6, 3, UNI_UIDEO } /* uideo=yes */,
+ { 0, 7467, 10295, 3, 3, UNI_IN__2 } /* in=v20 */,
+ { 2, 9691, 510, 4, 20, UNI_CJK } /* blk=cjkunifiedideographs */,
+ { 0, 9691, 7071, 4, 11, UNI_INSORASOMPENG } /* blk=sorasompeng */,
+ { 2083, 9691, 8740, 4, 7, UNI_OLCK } /* blk=olchiki */,
+ { 28, 9147, 9454, 6, 5, -UNI__PERL_NCHAR } /* nchar=false */,
+ { 0, 9979, 9839, 4, 4, UNI_LINA } /* scx=lina */,
+ { 4110, 4074, 5810, 16, 13, UNI_ME } /* generalcategory=enclosingmark */,
+ { 1, 9979, 8614, 4, 7, UNI_ELYM } /* scx=elymaic */,
+ { 5121, 7460, 5732, 10, 2, UNI_IN__10 } /* presentin=10 */,
+ { 0, 8782, 9129, 7, 4, UNI_LYCI } /* script=lyci */,
+ { 0, 7360, 3403, 10, 5, UNI_LB__SP } /* linebreak=space */,
+ { 0, 8782, 8468, 7, 8, UNI_SC__TAGB } /* script=tagbanwa */,
+ { 0, 3877, 8866, 17, 4, UNI_TIRH } /* scriptextensions=tirh */,
+ { 0, 8782, 6362, 7, 5, UNI_KHMR } /* script=khmer */,
+ { 1024, 1223, 0, 4, 0, UNI_KANA } /* kana */,
+ { 6182, 10268, 8020, 3, 8, UNI_NV__1_SLASH_40 } /* nv=2.50e-02 */,
+ { 1216, 9691, 6862, 4, 11, UNI_KATAKANAEXT } /* blk=katakanaext */,
+ { 0, 6083, 8212, 13, 8, UNI_NV__4_SLASH_5 } /* numericvalue=8.00e-01 */,
+ { 0, 9711, 8027, 4, 3, UNI_CCC__B } /* ccc=220 */,
+ { 516, 185, 8545, 3, 6, UNI_CJKEXTA } /* iscjkexta */,
+ { 0, 7460, 9587, 10, 4, UNI_IN__11 } /* presentin=11.0 */,
+ { 2886, 9711, 10163, 4, 3, UNI_CCC__AR } /* ccc=232 */,
+ { 1, 8782, 7817, 7, 9, UNI_SC__PERM } /* script=oldpermic */,
+ { 55, 10223, 3, 3, 1, -UNI_CI } /* ci=f */,
+ { 0, 10244, 1187, 3, 2, UNI_PO } /* gc=po */,
+ { 1045, 10253, 7664, 3, 9, UNI_LB__B2 } /* lb=breakboth */,
+ { 1, 2332, 0, 21, 0, UNI_YIJING } /* yijinghexagramsymbols */,
+ { 32, 9171, 1, 6, 1, -UNI__PERL_PATWS } /* patws=n */,
+ { 1, 8782, 9899, 7, 4, UNI_NSHU } /* script=nshu */,
+ { 0, 9979, 8691, 4, 4, UNI_MULT } /* scx=mult */,
+ { 86, 1506, 1017, 5, 2, UNI_INGREEK } /* ingreek */,
+ { 1, 9711, 9417, 4, 2, UNI_CCC__84 } /* ccc=84 */,
+ { 16, 7580, 6302, 10, 12, UNI_LB__HL } /* wordbreak=hebrewletter */,
+ { 2082, 9979, 10087, 4, 4, UNI_WCHO } /* scx=wcho */,
+ { 0, 21, 1678, 2, 23, UNI_LATINEXTADDITIONAL } /* inlatinextendedadditional */,
+ { 2052, 9979, 79, 4, 6, UNI_ARAB } /* scx=arabic */,
+ { 1, 9691, 7159, 4, 11, UNI_YISYLLABLES } /* blk=yisyllables */,
+ { 0, 10349, 10055, 3, 4, UNI_VS } /* vs=true */,
+ { 3169, 185, 3373, 2, 18, UNI_ZP } /* isparagraphseparator */,
+ { 19, 8973, 7745, 6, 9, UNI_LATINEXTF } /* block=latinextf */,
+ { 0, 185, 8691, 2, 4, UNI_MULT } /* ismult */,
+ { 0, 9803, 9, 4, 2, UNI_HST__NA } /* hst=na */,
+ { 4, 2206, 5717, 21, 2, UNI_LB__H2 } /* graphemeclusterbreak=lv */,
+ { 2, 1990, 8880, 22, 7, UNI_INSC__VISARGA } /* indicsyllabiccategory=visarga */,
+ { 1, 185, 5940, 2, 9, UNI_MLYM } /* ismalayalam */,
+ { 5533, 8782, 2937, 8, 8, UNI_SUND } /* script=sundanese */,
+ { 5518, 4074, 5096, 16, 5, UNI_XPOSIXDIGIT } /* generalcategory=digit */,
+ { 1, 8973, 1394, 6, 24, UNI_ARABICPFB } /* block=arabicpresentationformsb */,
+ { 553, 10250, 7, 3, 1, UNI_JT__C } /* jt=c */,
+ { 0, 7844, 0, 4, 0, UNI_PALM } /* palm */,
+ { 6173, 7570, 0, 10, 0, UNI_WARA } /* warangciti */,
+ { 7, 2248, 8811, 3, 6, UNI_INSOYOMBO } /* insoyombo */,
+ { 0, 4684, 1205, 15, 9, UNI_EA__F } /* eastasianwidth=fullwidth */,
+ { 22, 9691, 5214, 4, 14, UNI_INGREEK } /* blk=greekandcoptic */,
+ { 0, 2248, 4379, 3, 15, UNI_SUPMATHOPERATORS } /* insupmathoperators */,
+ { 6257, 5875, 7082, 13, 11, UNI_JG__STRAIGHTWAW } /* joininggroup=straightwaw */,
+ { 642, 3121, 8364, 18, 8, UNI_DT__ISO } /* decompositiontype=isolated */,
+ { 0, 4654, 0, 15, 0, UNI_DIACRITICALSEXT } /* diacriticalsext */,
+ { 0, 1946, 0, 12, 0, UNI_DIACRITICALS } /* diacriticals */,
+ { 1, 9476, 9033, 3, 6, UNI_SC__CAKM } /* sc=chakma */,
+ { 0, 6350, 24, 12, 1, UNI_JT__L } /* joiningtype=l */,
+ { 7224, 8973, 8859, 6, 7, UNI_INTIBETAN } /* block=tibetan */,
+ { 2667, 5045, 514, 3, 15, UNI_UIDEO } /* isunifiedideograph */,
+ { 2, 9691, 3481, 4, 11, UNI_TAIXUANJING } /* blk=taixuanjing */,
+ { 4916, 2593, 0, 20, 1, UNI_VO__U } /* verticalorientation=u */,
+ { 1, 1274, 0, 21, 0, UNI_ce_values_index } /* compositionexclusion= */,
+ { 0, 4426, 0, 16, 0, UNI_TANGUTCOMPONENTS } /* tangutcomponents */,
+ { 0, 9476, 9482, 3, 4, UNI_PHLI } /* sc=phli */,
+ { 4301, 10247, 6041, 3, 3, UNI_JG__WAW } /* jg=waw */,
+ { 5382, 3121, 5068, 18, 6, UNI_DT__SQR } /* decompositiontype=square */,
+ { 3, 6158, 36, 12, 1, UNI_BIDIC } /* bidicontrol=t */,
+ { 1024, 9213, 3, 6, 1, -UNI_UIDEO } /* uideo=f */,
+ { 0, 185, 75, 2, 2, UNI_ME } /* isme */,
+ { 0, 3911, 0, 17, 0, UNI_SMALLFORMS } /* smallformvariants */,
+ { 3095, 8782, 9863, 7, 4, UNI_MIAO } /* script=miao */,
+ { 4898, 185, 10398, 2, 2, UNI_ZP } /* iszp */,
+ { 0, 7360, 3, 11, 1, UNI_LB__LF } /* linebreak=lf */,
+ { 0, 185, 7781, 2, 9, UNI_NBAT } /* isnabataean */,
+ { 1, 9847, 3, 4, 1, -UNI_LOE } /* loe=f */,
+ { 0, 7230, 2513, 10, 20, UNI_BC__PDF } /* bidiclass=popdirectionalformat */,
+ { 16, 4024, 0, 18, 0, UNI_PE } /* isclosepunctuation */,
+ { 4127, 1189, 8469, 3, 7, UNI_INTAGBANWA } /* intagbanwa */,
+ { 2583, 9979, 8468, 4, 8, UNI_TAGB } /* scx=tagbanwa */,
+ { 0, 9731, 1, 4, 1, -UNI_CWT } /* cwt=n */,
+ { 0, 10352, 4401, 3, 9, UNI_WB__EB } /* wb=emodifier */,
+ { 1100, 10516, 2, 3, 1, UNI_PI } /* ispi */,
+ { 7120, 10253, 21, 3, 2, UNI_LB__IN } /* lb=in */,
+ { 11, 9691, 8420, 4, 8, UNI_INMAHAJANI } /* blk=mahajani */,
+ { 1666, 10226, 10055, 3, 4, UNI_DI } /* di=true */,
+ { 1561, 3391, 10355, 18, 3, UNI__PERL_PATWS } /* patternwhitespace=yes */,
+ { 0, 7200, 0, 10, 0, UNI_ARABICEXTB } /* arabicextb */,
+ { 0, 9711, 9000, 4, 3, UNI_CCC__118 } /* ccc=118 */,
+ { 2314, 9469, 3018, 5, 13, UNI_INPC__BOTTOMANDLEFT } /* inpc=bottomandleft */,
+ { 0, 9691, 3445, 4, 4, UNI_RUMI } /* blk=rumi */,
+ { 0, 4074, 107, 16, 6, UNI_S } /* generalcategory=symbol */,
+ { 153, 4885, 2435, 4, 8, UNI_INGLAGOLITIC } /* inglagolitic */,
+ { 7322, 9711, 6554, 4, 12, UNI_CCC__0 } /* ccc=notreordered */,
+ { 2102, 7360, 396, 10, 2, UNI_LB__GL } /* linebreak=gl */,
+ { 7813, 5875, 5989, 13, 3, UNI_JG__NUN } /* joininggroup=nun */,
+ { 26, 7297, 6430, 3, 3, UNI_HMNG } /* ishmng */,
+ { 0, 9691, 1007, 4, 17, UNI_ANCIENTGREEKMUSIC } /* blk=ancientgreekmusic */,
+ { 10, 8967, 10055, 6, 4, UNI_BIDIM } /* bidim=true */,
+ { 0, 8973, 3319, 6, 18, UNI_LATINEXTADDITIONAL } /* block=latinextadditional */,
+ { 0, 7580, 3409, 10, 17, UNI_RI } /* wordbreak=regionalindicator */,
+ { 2, 7460, 10301, 10, 3, UNI_IN__3 } /* presentin=v30 */,
+ { 0, 8782, 9819, 7, 4, UNI_SC__KNDA } /* script=knda */,
+ { 7296, 5662, 9279, 14, 5, UNI_SB__AT } /* sentencebreak=aterm */,
+ { 1, 185, 2993, 2, 19, UNI_SUPARROWSC } /* issupplementalarrowsc */,
+ { 0, 8782, 9093, 7, 6, UNI_SC__KTHI } /* script=kaithi */,
+ { 0, 5088, 0, 5, 0, UNI_ASCII } /* ascii */,
+ { 42, 7060, 0, 11, 0, UNI_sd_values_index } /* softdotted= */,
+ { 121, 8973, 0, 6, 43, UNI_UCASEXTA } /* block=unifiedcanadianaboriginalsyllabicsextendeda */,
+ { 11, 9691, 0, 4, 43, UNI_UCASEXTA } /* blk=unifiedcanadianaboriginalsyllabicsextendeda */,
+ { 0, 9735, 10055, 4, 4, UNI_CWU } /* cwu=true */,
+ { 0, 5045, 8501, 3, 7, UNI_UGAR } /* isugaritic */,
+ { 2887, 185, 8587, 3, 6, UNI_CJKEXTG } /* iscjkextg */,
+ { 6, 185, 85, 2, 4, UNI_MATH } /* ismath */,
+ { 4276, 9476, 9117, 3, 4, UNI_LEPC } /* sc=lepc */,
+ { 1173, 5875, 6005, 13, 13, UNI_JG__MANICHAEANTAW } /* joininggroup=manichaeantaw */,
+ { 0, 8782, 9939, 7, 4, UNI_MIAO } /* script=plrd */,
+ { 5988, 3877, 3826, 17, 10, UNI_MANI } /* scriptextensions=manichaean */,
+ { 3130, 5088, 3, 14, 1, -UNI_POSIXXDIGIT } /* asciihexdigit=f */,
+ { 6136, 9691, 4924, 4, 15, UNI_NARB } /* blk=oldnortharabian */,
+ { 7450, 10268, 10372, 3, 2, UNI_NV__49 } /* nv=49 */,
+ { 0, 9476, 9971, 3, 4, UNI_SAMR } /* sc=samr */,
+ { 12, 5088, 9454, 14, 5, -UNI_POSIXXDIGIT } /* asciihexdigit=false */,
+ { 0, 8973, 8677, 6, 7, UNI_INMANDAIC } /* block=mandaic */,
+ { 0, 1858, 10055, 22, 4, UNI_CWT } /* changeswhentitlecased=true */,
+ { 2796, 9979, 9879, 4, 4, UNI_MYMR } /* scx=mymr */,
+ { 0, 8782, 9923, 7, 4, UNI_SC__OUGR } /* script=ougr */,
+ { 0, 5172, 0, 14, 0, UNI_emod_values_index } /* emojimodifier= */,
+ { 0, 1553, 6132, 9, 2, UNI_PF } /* category=pf */,
+ { 0, 10226, 9454, 3, 5, -UNI_DI } /* di=false */,
+ { 0, 7360, 97, 10, 10, UNI_LB__AL } /* linebreak=alphabetic */,
+ { 0, 8782, 9835, 7, 4, UNI_SC__LATN } /* script=latn */,
+ { 0, 9429, 9454, 5, 5, -UNI_CWCF } /* cwcf=false */,
+ { 0, 4699, 3, 15, 1, -UNI_ECOMP } /* emojicomponent=f */,
+ { 14, 9647, 7611, 4, 3, UNI_AGE__5 } /* age=5.0 */,
+ { 6437, 185, 5029, 2, 15, UNI_VEDICEXT } /* isvedicextensions */,
+ { 0, 8782, 8804, 8, 3, UNI_SIDD } /* script=sidd */,
+ { 0, 10268, 8004, 3, 8, UNI_NV__5_SLASH_2 } /* nv=2.50e+00 */
};
MPH_VALt match_uniprop( const unsigned char * const key, const U16 key_len ) {
@@ -7697,7 +7697,7 @@ MPH_VALt match_uniprop( const unsigned char * const key, const U16 key_len ) {
* 43f6df50e4878f501b417e366b0ee097ae5ccb2d4ce942026bed3d62d78e7887 lib/unicore/extracted/DLineBreak.txt
* a04502ebb36a45d83cbe48a7d8132ea8143edb7b3d34d0aa6afe4a9685049741 lib/unicore/extracted/DNumType.txt
* 11075771b112e8e7ccf6ffa637c4c91eadc3ef3db0517b24e605df8fd3624239 lib/unicore/extracted/DNumValues.txt
- * 2b1f989c7326b58b7e66be2dfa016bddaeb877644ac49839301302a0e64b6a4b lib/unicore/mktables
+ * c7f768a3f16596ffe80c9f5bc730d62195856cedf3fa962e8259b1c4cdce6fcd lib/unicore/mktables
* c72bbdeda99714db1c8024d3311da4aef3c0db3b9b9f11455a7cfe10d5e9aba3 lib/unicore/version
* 0a6b5ab33bb1026531f816efe81aea1a8ffcd34a27cbea37dd6a70a63d73c844 regen/charset_translations.pl
* 5f8520d3a17ade6317fc0c423f5091470924b1ef425bca0c41ce8e4a9f8460fe regen/mk_PL_charclass.pl