summaryrefslogtreecommitdiff
path: root/lib/unicore/uni_keywords.pl
blob: 1f79548bf99383f47e590640a92d3d2f332f7d23 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
# -*- buffer-read-only: t -*-
# !!!!!!!   DO NOT EDIT THIS FILE   !!!!!!!
# This file is built by regen/mk_invlists.pl from Unicode::UCD.
# Any changes made here will be lost!

%Unicode::UCD::uni_prop_ptrs_indices = (
    '_perl_any_folds' => 1211,
    '_perl_charname_begin' => 1212,
    '_perl_charname_continue' => 1213,
    '_perl_folds_to_multi_char' => 1214,
    '_perl_idcont' => 1215,
    '_perl_idstart' => 1216,
    '_perl_is_in_multi_char_fold' => 1217,
    '_perl_nchar' => 1218,
    '_perl_patws' => 1219,
    '_perl_problematic_locale_foldeds_start' => 1220,
    '_perl_problematic_locale_folds' => 1221,
    '_perl_quotemeta' => 1222,
    '_perl_surrogate' => 1223,
    'adlm' => 1,
    'aegeannumbers' => 2,
    'age=10' => 3,
    'age=11' => 4,
    'age=12' => 5,
    'age=12.1' => 6,
    'age=13' => 7,
    'age=14' => 8,
    'age=2' => 9,
    'age=2.1' => 10,
    'age=3' => 11,
    'age=3.1' => 12,
    'age=3.2' => 13,
    'age=4' => 14,
    'age=4.1' => 15,
    'age=5' => 16,
    'age=5.1' => 17,
    'age=5.2' => 18,
    'age=6' => 19,
    'age=6.1' => 20,
    'age=6.2' => 21,
    'age=6.3' => 22,
    'age=7' => 23,
    'age=8' => 24,
    'age=9' => 25,
    'aghb' => 26,
    'ahex' => 986,
    'ahom' => 27,
    'alchemical' => 28,
    'all' => 29,
    'alnum' => 1184,
    'alpha' => 1185,
    'alphabetic' => 1185,
    'alphabeticpf' => 30,
    'ancientgreekmusic' => 31,
    'ancientgreeknumbers' => 32,
    'ancientsymbols' => 33,
    'any' => 34,
    'arab' => 35,
    'arabicexta' => 36,
    'arabicextb' => 37,
    'arabicmath' => 38,
    'arabicpfa' => 39,
    'arabicpfb' => 40,
    'arabicsup' => 41,
    'armi' => 42,
    'armn' => 43,
    'arrows' => 44,
    'ascii' => 45,
    'asciihexdigit' => 986,
    'assigned' => 46,
    'avst' => 47,
    'bali' => 48,
    'bamu' => 49,
    'bamumsup' => 50,
    'basiclatin' => 45,
    'bass' => 51,
    'batk' => 52,
    'bc=al' => 53,
    'bc=an' => 54,
    'bc=b' => 55,
    'bc=bn' => 56,
    'bc=cs' => 57,
    'bc=en' => 58,
    'bc=es' => 59,
    'bc=et' => 60,
    'bc=fsi' => 61,
    'bc=l' => 62,
    'bc=lre' => 63,
    'bc=lri' => 64,
    'bc=lro' => 65,
    'bc=nsm' => 66,
    'bc=on' => 67,
    'bc=pdf' => 68,
    'bc=pdi' => 69,
    'bc=r' => 70,
    'bc=rle' => 71,
    'bc=rli' => 72,
    'bc=rlo' => 73,
    'bc=s' => 74,
    'bc=ws' => 75,
    'beng' => 76,
    'bhks' => 77,
    'bidic' => 78,
    'bidim' => 79,
    'blank' => 1186,
    'blockelements' => 80,
    'bopo' => 81,
    'bopomofoext' => 82,
    'boxdrawing' => 83,
    'bpt=c' => 84,
    'bpt=n' => 85,
    'bpt=o' => 86,
    'brah' => 87,
    'brai' => 88,
    'bugi' => 89,
    'buhd' => 90,
    'byzantinemusic' => 91,
    'c' => 92,
    'cakm' => 93,
    'cans' => 94,
    'cari' => 95,
    'cased' => 96,
    'casedletter' => 97,
    'cc' => 1187,
    'ccc=0' => 98,
    'ccc=1' => 99,
    'ccc=10' => 100,
    'ccc=103' => 101,
    'ccc=107' => 102,
    'ccc=11' => 103,
    'ccc=118' => 104,
    'ccc=12' => 105,
    'ccc=122' => 106,
    'ccc=129' => 107,
    'ccc=13' => 108,
    'ccc=130' => 109,
    'ccc=132' => 110,
    'ccc=14' => 111,
    'ccc=15' => 112,
    'ccc=16' => 113,
    'ccc=17' => 114,
    'ccc=18' => 115,
    'ccc=19' => 116,
    'ccc=20' => 117,
    'ccc=202' => 118,
    'ccc=21' => 119,
    'ccc=214' => 120,
    'ccc=216' => 121,
    'ccc=22' => 122,
    'ccc=23' => 123,
    'ccc=24' => 124,
    'ccc=25' => 125,
    'ccc=26' => 126,
    'ccc=27' => 127,
    'ccc=28' => 128,
    'ccc=29' => 129,
    'ccc=30' => 130,
    'ccc=31' => 131,
    'ccc=32' => 132,
    'ccc=33' => 133,
    'ccc=34' => 134,
    'ccc=35' => 135,
    'ccc=36' => 136,
    'ccc=6' => 137,
    'ccc=7' => 138,
    'ccc=8' => 139,
    'ccc=84' => 140,
    'ccc=9' => 141,
    'ccc=91' => 142,
    'ccc=a' => 143,
    'ccc=al' => 144,
    'ccc=ar' => 145,
    'ccc=b' => 146,
    'ccc=bl' => 147,
    'ccc=br' => 148,
    'ccc=da' => 149,
    'ccc=db' => 150,
    'ccc=is' => 151,
    'ccc=l' => 152,
    'ccc=r' => 153,
    'ce' => 154,
    'cf' => 155,
    'cham' => 156,
    'cher' => 157,
    'cherokeesup' => 158,
    'chesssymbols' => 159,
    'chrs' => 160,
    'ci' => 161,
    'cjk' => 162,
    'cjkcompat' => 163,
    'cjkcompatforms' => 164,
    'cjkcompatideographs' => 165,
    'cjkcompatideographssup' => 166,
    'cjkexta' => 167,
    'cjkextb' => 168,
    'cjkextc' => 169,
    'cjkextd' => 170,
    'cjkexte' => 171,
    'cjkextf' => 172,
    'cjkextg' => 173,
    'cjkradicalssup' => 174,
    'cjkstrokes' => 175,
    'cjksymbols' => 176,
    'cn' => 177,
    'cntrl' => 1187,
    'co' => 178,
    'compatjamo' => 179,
    'compex' => 180,
    'control' => 1187,
    'controlpictures' => 181,
    'copt' => 182,
    'copticepactnumbers' => 183,
    'countingrod' => 184,
    'cpmn' => 185,
    'cprt' => 186,
    'cuneiformnumbers' => 187,
    'currencysymbols' => 188,
    'cwcf' => 189,
    'cwcm' => 190,
    'cwkcf' => 191,
    'cwl' => 192,
    'cwt' => 193,
    'cwu' => 194,
    'cypriotsyllabary' => 195,
    'cyrillicexta' => 196,
    'cyrillicextb' => 197,
    'cyrillicextc' => 198,
    'cyrillicsup' => 199,
    'cyrl' => 200,
    'dash' => 201,
    'decimalnumber' => 1188,
    'dep' => 202,
    'deva' => 203,
    'devanagariext' => 204,
    'di' => 205,
    'dia' => 206,
    'diacriticals' => 207,
    'diacriticalsext' => 208,
    'diacriticalsforsymbols' => 209,
    'diacriticalssup' => 210,
    'diak' => 211,
    'digit' => 1188,
    'dingbats' => 212,
    'dogr' => 213,
    'domino' => 214,
    'dsrt' => 215,
    'dt=can' => 216,
    'dt=com' => 217,
    'dt=enc' => 218,
    'dt=fin' => 219,
    'dt=font' => 220,
    'dt=fra' => 221,
    'dt=init' => 222,
    'dt=iso' => 223,
    'dt=med' => 224,
    'dt=nar' => 225,
    'dt=nb' => 226,
    'dt=noncanon' => 227,
    'dt=none' => 228,
    'dt=sml' => 229,
    'dt=sqr' => 230,
    'dt=sub' => 231,
    'dt=sup' => 232,
    'dt=vert' => 233,
    'dupl' => 234,
    'ea=a' => 236,
    'ea=f' => 237,
    'ea=h' => 238,
    'ea=n' => 239,
    'ea=na' => 240,
    'ea=w' => 241,
    'earlydynasticcuneiform' => 235,
    'ebase' => 242,
    'ecomp' => 243,
    'egyp' => 244,
    'egyptianhieroglyphformatcontrols' => 245,
    'elba' => 246,
    'elym' => 247,
    'emod' => 248,
    'emoji' => 249,
    'emoticons' => 250,
    'enclosedalphanum' => 251,
    'enclosedalphanumsup' => 252,
    'enclosedcjk' => 253,
    'enclosedideographicsup' => 254,
    'epres' => 255,
    'ethi' => 256,
    'ethiopicext' => 257,
    'ethiopicexta' => 258,
    'ethiopicextb' => 259,
    'ethiopicsup' => 260,
    'ext' => 261,
    'extpict' => 262,
    'gcb=cn' => 263,
    'gcb=ex' => 264,
    'gcb=l' => 265,
    'gcb=pp' => 266,
    'gcb=sm' => 267,
    'gcb=t' => 268,
    'gcb=v' => 269,
    'gcb=xx' => 270,
    'geometricshapes' => 271,
    'geometricshapesext' => 272,
    'geor' => 273,
    'georgianext' => 274,
    'georgiansup' => 275,
    'glag' => 276,
    'glagoliticsup' => 277,
    'gong' => 278,
    'gonm' => 279,
    'goth' => 280,
    'gran' => 281,
    'graph' => 1189,
    'grbase' => 282,
    'greekext' => 283,
    'grek' => 284,
    'grext' => 285,
    'gujr' => 286,
    'guru' => 287,
    'halfandfullforms' => 288,
    'halfmarks' => 289,
    'han' => 290,
    'hang' => 291,
    'hano' => 292,
    'hatr' => 293,
    'hebr' => 294,
    'hex' => 1196,
    'hexdigit' => 1196,
    'highpusurrogates' => 295,
    'highsurrogates' => 296,
    'hira' => 297,
    'hluw' => 298,
    'hmng' => 299,
    'hmnp' => 300,
    'horizspace' => 1186,
    'hst=na' => 301,
    'hung' => 302,
    'hyphen_perl_aux' => 303,
    'idc' => 304,
    'identifierstatus=allowed' => 305,
    'identifierstatus=restricted' => 306,
    'identifiertype=defaultignorable' => 307,
    'identifiertype=exclusion' => 308,
    'identifiertype=inclusion' => 309,
    'identifiertype=limiteduse' => 310,
    'identifiertype=notcharacter' => 311,
    'identifiertype=notnfkc' => 312,
    'identifiertype=notxid' => 313,
    'identifiertype=obsolete' => 314,
    'identifiertype=recommended' => 315,
    'identifiertype=technical' => 316,
    'identifiertype=uncommonuse' => 317,
    'ideo' => 318,
    'ideographicsymbols' => 319,
    'ids' => 320,
    'idsb' => 321,
    'idst' => 322,
    'in=1.1' => 526,
    'in=10' => 520,
    'in=11' => 521,
    'in=12' => 522,
    'in=12.1' => 523,
    'in=13' => 524,
    'in=14' => 525,
    'in=2' => 527,
    'in=2.1' => 528,
    'in=3' => 529,
    'in=3.1' => 530,
    'in=3.2' => 531,
    'in=4' => 532,
    'in=4.1' => 533,
    'in=5' => 534,
    'in=5.1' => 535,
    'in=5.2' => 536,
    'in=6' => 537,
    'in=6.1' => 538,
    'in=6.2' => 539,
    'in=6.3' => 540,
    'in=7' => 541,
    'in=8' => 542,
    'in=9' => 543,
    'in=na' => 544,
    'inadlam' => 323,
    'inahom' => 324,
    'inanatolianhieroglyphs' => 325,
    'inarabic' => 326,
    'inarmenian' => 327,
    'inavestan' => 328,
    'inbalinese' => 329,
    'inbamum' => 330,
    'inbassavah' => 331,
    'inbatak' => 332,
    'inbengali' => 333,
    'inbhaiksuki' => 334,
    'inbopomofo' => 335,
    'inbrahmi' => 336,
    'inbuginese' => 337,
    'inbuhid' => 338,
    'incarian' => 339,
    'incaucasianalbanian' => 340,
    'inchakma' => 341,
    'incham' => 342,
    'incherokee' => 343,
    'inchorasmian' => 344,
    'incoptic' => 345,
    'incuneiform' => 346,
    'incyprominoan' => 347,
    'incyrillic' => 348,
    'indevanagari' => 349,
    'indicnumberforms' => 350,
    'indicsiyaqnumbers' => 351,
    'indivesakuru' => 352,
    'indogra' => 353,
    'induployan' => 354,
    'inegyptianhieroglyphs' => 355,
    'inelbasan' => 356,
    'inelymaic' => 357,
    'inethiopic' => 358,
    'ingeorgian' => 359,
    'inglagolitic' => 360,
    'ingothic' => 361,
    'ingrantha' => 362,
    'ingreek' => 363,
    'ingujarati' => 364,
    'ingunjalagondi' => 365,
    'ingurmukhi' => 366,
    'inhangul' => 367,
    'inhanifirohingya' => 368,
    'inhanunoo' => 369,
    'inhatran' => 370,
    'inhebrew' => 371,
    'inhiragana' => 372,
    'inidc' => 373,
    'inimperialaramaic' => 374,
    'ininscriptionalpahlavi' => 375,
    'ininscriptionalparthian' => 376,
    'injavanese' => 377,
    'inkaithi' => 378,
    'inkannada' => 379,
    'inkatakana' => 380,
    'inkharoshthi' => 381,
    'inkhitansmallscript' => 382,
    'inkhmer' => 383,
    'inkhojki' => 384,
    'inkhudawadi' => 385,
    'inlao' => 386,
    'inlepcha' => 387,
    'inlimbu' => 388,
    'inlineara' => 389,
    'inlisu' => 390,
    'inlycian' => 391,
    'inlydian' => 392,
    'inmahajani' => 393,
    'inmakasar' => 394,
    'inmalayalam' => 395,
    'inmandaic' => 396,
    'inmanichaean' => 397,
    'inmarchen' => 398,
    'inmasaramgondi' => 399,
    'inmedefaidrin' => 400,
    'inmeeteimayek' => 401,
    'inmendekikakui' => 402,
    'inmeroiticcursive' => 403,
    'inmiao' => 404,
    'inmodi' => 405,
    'inmongolian' => 406,
    'inmro' => 407,
    'inmultani' => 408,
    'inmyanmar' => 409,
    'innabataean' => 410,
    'innandinagari' => 411,
    'innewa' => 412,
    'innewtailue' => 413,
    'innko' => 414,
    'innushu' => 415,
    'innyiakengpuachuehmong' => 416,
    'inogham' => 417,
    'inoldhungarian' => 418,
    'inolditalic' => 419,
    'inoldpermic' => 420,
    'inoldpersian' => 421,
    'inoldsogdian' => 422,
    'inoldturkic' => 423,
    'inolduyghur' => 424,
    'inoriya' => 425,
    'inosage' => 426,
    'inosmanya' => 427,
    'inpahawhhmong' => 428,
    'inpaucinhau' => 429,
    'inpc=bottom' => 430,
    'inpc=bottomandleft' => 431,
    'inpc=bottomandright' => 432,
    'inpc=left' => 433,
    'inpc=leftandright' => 434,
    'inpc=na' => 435,
    'inpc=overstruck' => 436,
    'inpc=right' => 437,
    'inpc=top' => 438,
    'inpc=topandbottom' => 439,
    'inpc=topandbottomandleft' => 440,
    'inpc=topandbottomandright' => 441,
    'inpc=topandleft' => 442,
    'inpc=topandleftandright' => 443,
    'inpc=topandright' => 444,
    'inphagspa' => 445,
    'inphoenician' => 446,
    'inpsalterpahlavi' => 447,
    'inpunctuation' => 448,
    'inrejang' => 449,
    'inrunic' => 450,
    'insamaritan' => 451,
    'insaurashtra' => 452,
    'insc=avagraha' => 453,
    'insc=bindu' => 454,
    'insc=brahmijoiningnumber' => 455,
    'insc=cantillationmark' => 456,
    'insc=consonant' => 457,
    'insc=consonantdead' => 458,
    'insc=consonantfinal' => 459,
    'insc=consonantheadletter' => 460,
    'insc=consonantinitialpostfixed' => 461,
    'insc=consonantkiller' => 462,
    'insc=consonantmedial' => 463,
    'insc=consonantplaceholder' => 464,
    'insc=consonantprecedingrepha' => 465,
    'insc=consonantprefixed' => 466,
    'insc=consonantsubjoined' => 467,
    'insc=consonantsucceedingrepha' => 468,
    'insc=consonantwithstacker' => 469,
    'insc=geminationmark' => 470,
    'insc=invisiblestacker' => 471,
    'insc=modifyingletter' => 472,
    'insc=nonjoiner' => 473,
    'insc=nukta' => 474,
    'insc=number' => 475,
    'insc=numberjoiner' => 476,
    'insc=other' => 477,
    'insc=purekiller' => 478,
    'insc=registershifter' => 479,
    'insc=syllablemodifier' => 480,
    'insc=toneletter' => 481,
    'insc=tonemark' => 482,
    'insc=virama' => 483,
    'insc=visarga' => 484,
    'insc=vowel' => 485,
    'insc=voweldependent' => 486,
    'insc=vowelindependent' => 487,
    'insiddham' => 488,
    'insinhala' => 489,
    'insogdian' => 490,
    'insorasompeng' => 491,
    'insoyombo' => 492,
    'insundanese' => 493,
    'insylotinagri' => 494,
    'insyriac' => 495,
    'intagalog' => 496,
    'intagbanwa' => 497,
    'intaile' => 498,
    'intaitham' => 499,
    'intaiviet' => 500,
    'intakri' => 501,
    'intamil' => 502,
    'intangsa' => 503,
    'intangut' => 504,
    'intelugu' => 505,
    'inthaana' => 506,
    'inthai' => 507,
    'intibetan' => 508,
    'intifinagh' => 509,
    'intirhuta' => 510,
    'intoto' => 511,
    'inugaritic' => 512,
    'invai' => 513,
    'invithkuqi' => 514,
    'invs' => 515,
    'inwancho' => 516,
    'inwarangciti' => 517,
    'inyezidi' => 518,
    'inzanabazarsquare' => 519,
    'ipaext' => 545,
    'ital' => 546,
    'jamo' => 547,
    'jamoexta' => 548,
    'jamoextb' => 549,
    'java' => 550,
    'jg=africanfeh' => 551,
    'jg=africannoon' => 552,
    'jg=africanqaf' => 553,
    'jg=ain' => 554,
    'jg=alaph' => 555,
    'jg=alef' => 556,
    'jg=beh' => 557,
    'jg=beth' => 558,
    'jg=burushaskiyehbarree' => 559,
    'jg=dal' => 560,
    'jg=dalathrish' => 561,
    'jg=e' => 562,
    'jg=farsiyeh' => 563,
    'jg=fe' => 564,
    'jg=feh' => 565,
    'jg=finalsemkath' => 566,
    'jg=gaf' => 567,
    'jg=gamal' => 568,
    'jg=hah' => 569,
    'jg=hamzaonhehgoal' => 570,
    'jg=hanifirohingyakinnaya' => 571,
    'jg=hanifirohingyapa' => 572,
    'jg=he' => 573,
    'jg=heh' => 574,
    'jg=hehgoal' => 575,
    'jg=heth' => 576,
    'jg=kaf' => 577,
    'jg=kaph' => 578,
    'jg=khaph' => 579,
    'jg=knottedheh' => 580,
    'jg=lam' => 581,
    'jg=lamadh' => 582,
    'jg=malayalambha' => 583,
    'jg=malayalamja' => 584,
    'jg=malayalamlla' => 585,
    'jg=malayalamllla' => 586,
    'jg=malayalamnga' => 587,
    'jg=malayalamnna' => 588,
    'jg=malayalamnnna' => 589,
    'jg=malayalamnya' => 590,
    'jg=malayalamra' => 591,
    'jg=malayalamssa' => 592,
    'jg=malayalamtta' => 593,
    'jg=manichaeanaleph' => 594,
    'jg=manichaeanayin' => 595,
    'jg=manichaeanbeth' => 596,
    'jg=manichaeandaleth' => 597,
    'jg=manichaeandhamedh' => 598,
    'jg=manichaeanfive' => 599,
    'jg=manichaeangimel' => 600,
    'jg=manichaeanheth' => 601,
    'jg=manichaeanhundred' => 602,
    'jg=manichaeankaph' => 603,
    'jg=manichaeanlamedh' => 604,
    'jg=manichaeanmem' => 605,
    'jg=manichaeannun' => 606,
    'jg=manichaeanone' => 607,
    'jg=manichaeanpe' => 608,
    'jg=manichaeanqoph' => 609,
    'jg=manichaeanresh' => 610,
    'jg=manichaeansadhe' => 611,
    'jg=manichaeansamekh' => 612,
    'jg=manichaeantaw' => 613,
    'jg=manichaeanten' => 614,
    'jg=manichaeanteth' => 615,
    'jg=manichaeanthamedh' => 616,
    'jg=manichaeantwenty' => 617,
    'jg=manichaeanwaw' => 618,
    'jg=manichaeanyodh' => 619,
    'jg=manichaeanzayin' => 620,
    'jg=meem' => 621,
    'jg=mim' => 622,
    'jg=nojoininggroup' => 623,
    'jg=noon' => 624,
    'jg=nun' => 625,
    'jg=nya' => 626,
    'jg=pe' => 627,
    'jg=qaf' => 628,
    'jg=qaph' => 629,
    'jg=reh' => 630,
    'jg=reversedpe' => 631,
    'jg=rohingyayeh' => 632,
    'jg=sad' => 633,
    'jg=sadhe' => 634,
    'jg=seen' => 635,
    'jg=semkath' => 636,
    'jg=shin' => 637,
    'jg=straightwaw' => 638,
    'jg=swashkaf' => 639,
    'jg=syriacwaw' => 640,
    'jg=tah' => 641,
    'jg=taw' => 642,
    'jg=tehmarbuta' => 643,
    'jg=teth' => 644,
    'jg=thinyeh' => 645,
    'jg=verticaltail' => 646,
    'jg=waw' => 647,
    'jg=yeh' => 648,
    'jg=yehbarree' => 649,
    'jg=yehwithtail' => 650,
    'jg=yudh' => 651,
    'jg=yudhhe' => 652,
    'jg=zain' => 653,
    'jg=zhain' => 654,
    'joinc' => 655,
    'jt=c' => 656,
    'jt=d' => 657,
    'jt=l' => 658,
    'jt=r' => 659,
    'jt=t' => 660,
    'jt=u' => 661,
    'kali' => 662,
    'kana' => 663,
    'kanaexta' => 664,
    'kanaextb' => 665,
    'kanasup' => 666,
    'kanbun' => 667,
    'kangxi' => 668,
    'katakanaext' => 669,
    'khar' => 670,
    'khmersymbols' => 671,
    'khmr' => 672,
    'khoj' => 673,
    'kits' => 674,
    'knda' => 675,
    'kthi' => 676,
    'l' => 677,
    'l_' => 97,
    'l_amp_' => 97,
    'lana' => 678,
    'lao' => 679,
    'latin1' => 680,
    'latinexta' => 681,
    'latinextadditional' => 682,
    'latinextb' => 683,
    'latinextc' => 684,
    'latinextd' => 685,
    'latinexte' => 686,
    'latinextf' => 687,
    'latinextg' => 688,
    'latn' => 689,
    'lb=ai' => 690,
    'lb=al' => 691,
    'lb=b2' => 692,
    'lb=ba' => 693,
    'lb=bb' => 694,
    'lb=bk' => 695,
    'lb=cb' => 696,
    'lb=cj' => 697,
    'lb=cl' => 698,
    'lb=cm' => 699,
    'lb=cp' => 700,
    'lb=cr' => 701,
    'lb=ex' => 702,
    'lb=gl' => 703,
    'lb=h2' => 704,
    'lb=h3' => 705,
    'lb=hl' => 706,
    'lb=hy' => 707,
    'lb=id' => 708,
    'lb=in' => 709,
    'lb=is' => 710,
    'lb=lf' => 711,
    'lb=nl' => 712,
    'lb=ns' => 713,
    'lb=nu' => 714,
    'lb=op' => 715,
    'lb=po' => 716,
    'lb=pr' => 717,
    'lb=qu' => 718,
    'lb=sa' => 719,
    'lb=sg_perl_aux' => 720,
    'lb=sp' => 721,
    'lb=sy' => 722,
    'lb=wj' => 723,
    'lb=xx' => 724,
    'lb=zw' => 725,
    'lb=zwj' => 726,
    'lc' => 97,
    'lepc' => 727,
    'letterlikesymbols' => 728,
    'limb' => 729,
    'lina' => 730,
    'linb' => 731,
    'linearbideograms' => 732,
    'linearbsyllabary' => 733,
    'lisu' => 734,
    'lisusup' => 735,
    'll' => 739,
    'lm' => 736,
    'lo' => 737,
    'loe' => 738,
    'lower' => 1190,
    'lowercase' => 1190,
    'lowercaseletter' => 739,
    'lowsurrogates' => 740,
    'lt' => 1143,
    'lu' => 1152,
    'lyci' => 741,
    'lydi' => 742,
    'm' => 743,
    'mahj' => 744,
    'mahjong' => 745,
    'maka' => 746,
    'mand' => 747,
    'mani' => 748,
    'marc' => 749,
    'math' => 750,
    'mathalphanum' => 751,
    'mathoperators' => 752,
    'mayannumerals' => 753,
    'mc' => 754,
    'me' => 755,
    'medf' => 756,
    'meeteimayekext' => 757,
    'mend' => 758,
    'merc' => 759,
    'mero' => 760,
    'miao' => 761,
    'miscarrows' => 762,
    'miscmathsymbolsa' => 763,
    'miscmathsymbolsb' => 764,
    'miscpictographs' => 765,
    'miscsymbols' => 766,
    'misctechnical' => 767,
    'mlym' => 768,
    'mn' => 769,
    'modi' => 770,
    'modifierletters' => 771,
    'modifiertoneletters' => 772,
    'mong' => 773,
    'mongoliansup' => 774,
    'mro' => 775,
    'mtei' => 776,
    'mult' => 777,
    'music' => 778,
    'myanmarexta' => 779,
    'myanmarextb' => 780,
    'mymr' => 781,
    'n' => 782,
    'nand' => 783,
    'narb' => 784,
    'nb' => 785,
    'nbat' => 786,
    'nd' => 1188,
    'newa' => 787,
    'nfcqc=m' => 788,
    'nfcqc=y' => 789,
    'nfdqc=y' => 790,
    'nfkcqc=n' => 791,
    'nfkcqc=y' => 792,
    'nfkdqc=n' => 793,
    'nko' => 794,
    'nl' => 795,
    'no' => 796,
    'nshu' => 797,
    'nt=di' => 798,
    'nt=nu' => 799,
    'numberforms' => 800,
    'nv=0' => 801,
    'nv=1' => 802,
    'nv=1/10' => 827,
    'nv=1/12' => 828,
    'nv=1/16' => 829,
    'nv=1/160' => 830,
    'nv=1/2' => 831,
    'nv=1/20' => 832,
    'nv=1/3' => 833,
    'nv=1/32' => 834,
    'nv=1/320' => 835,
    'nv=1/4' => 836,
    'nv=1/40' => 837,
    'nv=1/5' => 838,
    'nv=1/6' => 839,
    'nv=1/64' => 840,
    'nv=1/7' => 841,
    'nv=1/8' => 842,
    'nv=1/80' => 843,
    'nv=1/9' => 844,
    'nv=10' => 803,
    'nv=100' => 804,
    'nv=1000' => 805,
    'nv=10000' => 806,
    'nv=100000' => 807,
    'nv=1000000' => 808,
    'nv=10000000' => 809,
    'nv=100000000' => 810,
    'nv=10000000000' => 811,
    'nv=1000000000000' => 812,
    'nv=11' => 813,
    'nv=11/12' => 814,
    'nv=11/2' => 815,
    'nv=12' => 816,
    'nv=13' => 817,
    'nv=13/2' => 818,
    'nv=14' => 819,
    'nv=15' => 820,
    'nv=15/2' => 821,
    'nv=16' => 822,
    'nv=17' => 823,
    'nv=17/2' => 824,
    'nv=18' => 825,
    'nv=19' => 826,
    'nv=2' => 845,
    'nv=2/3' => 862,
    'nv=2/5' => 863,
    'nv=20' => 846,
    'nv=200' => 847,
    'nv=2000' => 848,
    'nv=20000' => 849,
    'nv=200000' => 850,
    'nv=20000000' => 851,
    'nv=21' => 852,
    'nv=216000' => 853,
    'nv=22' => 854,
    'nv=23' => 855,
    'nv=24' => 856,
    'nv=25' => 857,
    'nv=26' => 858,
    'nv=27' => 859,
    'nv=28' => 860,
    'nv=29' => 861,
    'nv=3' => 864,
    'nv=3/16' => 879,
    'nv=3/2' => 880,
    'nv=3/20' => 881,
    'nv=3/4' => 882,
    'nv=3/5' => 883,
    'nv=3/64' => 884,
    'nv=3/8' => 885,
    'nv=3/80' => 886,
    'nv=30' => 865,
    'nv=300' => 866,
    'nv=3000' => 867,
    'nv=30000' => 868,
    'nv=300000' => 869,
    'nv=31' => 870,
    'nv=32' => 871,
    'nv=33' => 872,
    'nv=34' => 873,
    'nv=35' => 874,
    'nv=36' => 875,
    'nv=37' => 876,
    'nv=38' => 877,
    'nv=39' => 878,
    'nv=4' => 887,
    'nv=4/5' => 903,
    'nv=40' => 888,
    'nv=400' => 889,
    'nv=4000' => 890,
    'nv=40000' => 891,
    'nv=400000' => 892,
    'nv=41' => 893,
    'nv=42' => 894,
    'nv=43' => 895,
    'nv=432000' => 896,
    'nv=44' => 897,
    'nv=45' => 898,
    'nv=46' => 899,
    'nv=47' => 900,
    'nv=48' => 901,
    'nv=49' => 902,
    'nv=5' => 904,
    'nv=5/12' => 910,
    'nv=5/2' => 911,
    'nv=5/6' => 912,
    'nv=5/8' => 913,
    'nv=50' => 905,
    'nv=500' => 906,
    'nv=5000' => 907,
    'nv=50000' => 908,
    'nv=500000' => 909,
    'nv=6' => 914,
    'nv=60' => 915,
    'nv=600' => 916,
    'nv=6000' => 917,
    'nv=60000' => 918,
    'nv=600000' => 919,
    'nv=7' => 920,
    'nv=7/12' => 926,
    'nv=7/2' => 927,
    'nv=7/8' => 928,
    'nv=70' => 921,
    'nv=700' => 922,
    'nv=7000' => 923,
    'nv=70000' => 924,
    'nv=700000' => 925,
    'nv=8' => 929,
    'nv=80' => 930,
    'nv=800' => 931,
    'nv=8000' => 932,
    'nv=80000' => 933,
    'nv=800000' => 934,
    'nv=9' => 935,
    'nv=9/2' => 941,
    'nv=90' => 936,
    'nv=900' => 937,
    'nv=9000' => 938,
    'nv=90000' => 939,
    'nv=900000' => 940,
    'nv=_minus_1/2' => 943,
    'nv=nan' => 942,
    'ocr' => 944,
    'ogam' => 945,
    'olck' => 946,
    'orkh' => 947,
    'ornamentaldingbats' => 948,
    'orya' => 949,
    'osge' => 950,
    'osma' => 951,
    'ottomansiyaqnumbers' => 952,
    'ougr' => 953,
    'p' => 954,
    'palm' => 955,
    'patsyn' => 956,
    'pauc' => 957,
    'pc' => 958,
    'pcm' => 959,
    'pd' => 960,
    'pe' => 961,
    'perlspace' => 983,
    'perlword' => 985,
    'perm' => 962,
    'pf' => 963,
    'phag' => 964,
    'phaistos' => 965,
    'phli' => 966,
    'phlp' => 967,
    'phnx' => 968,
    'phoneticext' => 969,
    'phoneticextsup' => 970,
    'pi' => 971,
    'playingcards' => 972,
    'po' => 973,
    'posixalnum' => 974,
    'posixalpha' => 975,
    'posixblank' => 976,
    'posixcntrl' => 977,
    'posixdigit' => 978,
    'posixgraph' => 979,
    'posixlower' => 980,
    'posixprint' => 981,
    'posixpunct' => 982,
    'posixspace' => 983,
    'posixupper' => 984,
    'posixword' => 985,
    'posixxdigit' => 986,
    'print' => 1191,
    'prti' => 987,
    'ps' => 988,
    'pua' => 989,
    'qaai' => 990,
    'qmark' => 991,
    'radical' => 992,
    'ri' => 993,
    'rjng' => 994,
    'rohg' => 995,
    'rumi' => 996,
    'runr' => 997,
    's' => 998,
    'samr' => 999,
    'sarb' => 1000,
    'saur' => 1001,
    'sb=at' => 1002,
    'sb=cl' => 1003,
    'sb=ex' => 1004,
    'sb=fo' => 1005,
    'sb=le' => 1006,
    'sb=lo' => 1007,
    'sb=nu' => 1008,
    'sb=sc' => 1009,
    'sb=se' => 1010,
    'sb=sp' => 1011,
    'sb=st' => 1012,
    'sb=up' => 1013,
    'sb=xx' => 1014,
    'sc' => 1015,
    'sc=adlm' => 1016,
    'sc=arab' => 1017,
    'sc=beng' => 1018,
    'sc=bopo' => 1019,
    'sc=bugi' => 1020,
    'sc=buhd' => 1021,
    'sc=cakm' => 1022,
    'sc=copt' => 1023,
    'sc=cpmn' => 1024,
    'sc=cprt' => 1025,
    'sc=cyrl' => 1026,
    'sc=deva' => 1027,
    'sc=dogr' => 1028,
    'sc=dupl' => 1029,
    'sc=geor' => 1030,
    'sc=glag' => 1031,
    'sc=gong' => 1032,
    'sc=gonm' => 1033,
    'sc=gran' => 1034,
    'sc=grek' => 1035,
    'sc=gujr' => 1036,
    'sc=guru' => 1037,
    'sc=han' => 1038,
    'sc=hang' => 1039,
    'sc=hano' => 1040,
    'sc=hira' => 1041,
    'sc=java' => 1042,
    'sc=kali' => 1043,
    'sc=kana' => 1044,
    'sc=khoj' => 1045,
    'sc=knda' => 1046,
    'sc=kthi' => 1047,
    'sc=latn' => 1048,
    'sc=limb' => 1049,
    'sc=lina' => 1050,
    'sc=linb' => 1051,
    'sc=mahj' => 1052,
    'sc=mand' => 1053,
    'sc=mani' => 1054,
    'sc=mlym' => 1055,
    'sc=modi' => 1056,
    'sc=mong' => 1057,
    'sc=mult' => 1058,
    'sc=mymr' => 1059,
    'sc=nand' => 1060,
    'sc=nko' => 1061,
    'sc=orya' => 1062,
    'sc=ougr' => 1063,
    'sc=perm' => 1064,
    'sc=phag' => 1065,
    'sc=phlp' => 1066,
    'sc=qaai' => 1067,
    'sc=rohg' => 1068,
    'sc=shrd' => 1069,
    'sc=sind' => 1070,
    'sc=sinh' => 1071,
    'sc=sogd' => 1072,
    'sc=sylo' => 1073,
    'sc=syrc' => 1074,
    'sc=tagb' => 1075,
    'sc=takr' => 1076,
    'sc=tale' => 1077,
    'sc=taml' => 1078,
    'sc=telu' => 1079,
    'sc=tglg' => 1080,
    'sc=thaa' => 1081,
    'sc=tirh' => 1082,
    'sc=yezi' => 1083,
    'sc=yi' => 1084,
    'sc=zyyy' => 1085,
    'sd' => 1086,
    'sgnw' => 1087,
    'shaw' => 1088,
    'shorthandformatcontrols' => 1089,
    'shrd' => 1090,
    'sidd' => 1091,
    'sind' => 1092,
    'sinh' => 1093,
    'sinhalaarchaicnumbers' => 1094,
    'sk' => 1095,
    'sm' => 1096,
    'smallforms' => 1097,
    'smallkanaext' => 1098,
    'so' => 1099,
    'sogd' => 1100,
    'sogo' => 1101,
    'sora' => 1102,
    'soyo' => 1103,
    'space' => 1193,
    'spaceperl' => 1193,
    'specials' => 1104,
    'sterm' => 1105,
    'sund' => 1106,
    'sundanesesup' => 1107,
    'suparrowsa' => 1108,
    'suparrowsb' => 1109,
    'suparrowsc' => 1110,
    'superandsub' => 1111,
    'supmathoperators' => 1112,
    'suppuaa' => 1113,
    'suppuab' => 1114,
    'suppunctuation' => 1115,
    'supsymbolsandpictographs' => 1116,
    'suttonsignwriting' => 1117,
    'sylo' => 1118,
    'symbolsandpictographsexta' => 1119,
    'symbolsforlegacycomputing' => 1120,
    'syrc' => 1121,
    'syriacsup' => 1122,
    'tagb' => 1123,
    'tags' => 1124,
    'taixuanjing' => 1125,
    'takr' => 1126,
    'tale' => 1127,
    'talu' => 1128,
    'tamilsup' => 1129,
    'taml' => 1130,
    'tang' => 1131,
    'tangutcomponents' => 1132,
    'tangutsup' => 1133,
    'tavt' => 1134,
    'telu' => 1135,
    'term' => 1136,
    'tfng' => 1137,
    'tglg' => 1138,
    'thaa' => 1139,
    'thai' => 1140,
    'tibt' => 1141,
    'tirh' => 1142,
    'title' => 1143,
    'titlecase' => 1143,
    'titlecaseletter' => 1143,
    'tnsa' => 1144,
    'toto' => 1145,
    'transportandmap' => 1146,
    'ucas' => 1147,
    'ucasext' => 1148,
    'ucasexta' => 1149,
    'ugar' => 1150,
    'uideo' => 1151,
    'upper' => 1194,
    'uppercase' => 1194,
    'uppercaseletter' => 1152,
    'vai' => 1153,
    'vedicext' => 1154,
    'verticalforms' => 1155,
    'vertspace' => 1156,
    'vith' => 1157,
    'vo=r' => 1158,
    'vo=tr' => 1159,
    'vo=tu' => 1160,
    'vo=u' => 1161,
    'vs' => 1162,
    'vssup' => 1163,
    'wara' => 1164,
    'wb=dq' => 1165,
    'wb=eb' => 1166,
    'wb=ex' => 1167,
    'wb=extend' => 1168,
    'wb=fo' => 1169,
    'wb=ka' => 1170,
    'wb=le' => 1171,
    'wb=mb' => 1172,
    'wb=ml' => 1173,
    'wb=mn' => 1174,
    'wb=nl' => 1175,
    'wb=nu' => 1176,
    'wb=sq' => 1177,
    'wb=wsegspace' => 1178,
    'wb=xx' => 1179,
    'wcho' => 1180,
    'whitespace' => 1193,
    'word' => 1195,
    'wspace' => 1193,
    'xdigit' => 1196,
    'xidc' => 1181,
    'xids' => 1182,
    'xpeo' => 1183,
    'xperlspace' => 1193,
    'xposixalnum' => 1184,
    'xposixalpha' => 1185,
    'xposixblank' => 1186,
    'xposixcntrl' => 1187,
    'xposixdigit' => 1188,
    'xposixgraph' => 1189,
    'xposixlower' => 1190,
    'xposixprint' => 1191,
    'xposixpunct' => 1192,
    'xposixspace' => 1193,
    'xposixupper' => 1194,
    'xposixword' => 1195,
    'xposixxdigit' => 1196,
    'xsux' => 1197,
    'yezi' => 1198,
    'yi' => 1199,
    'yijing' => 1200,
    'yiradicals' => 1201,
    'yisyllables' => 1202,
    'z' => 1203,
    'zanb' => 1204,
    'zl' => 1205,
    'znamennymusic' => 1206,
    'zp' => 1207,
    'zs' => 1208,
    'zyyy' => 1209,
    'zzzz' => 1210,
);

1;

# Generated from:
# 688d673ec947f7ccf898b4eae9848139d4d33676b688dee54f449f8bf9d3bbd2 lib/Unicode/UCD.pm
# c7698811e9adb6cc98fb996a7de4be2b6532f2ac67e76055cc8afdbf6ee18af3 lib/unicore/ArabicShaping.txt
# 24a74555f918bbe99f5b3f1b83cf36fc0e205bb8a600a6a3aa539c710a3dcf27 lib/unicore/BidiBrackets.txt
# 7a5c74cedc1616a9af0a9d22e108ae592d86fe93649c144ae6ba49f193a44122 lib/unicore/BidiMirroring.txt
# 598870dddef7b34b5a972916528c456aff2765b79cd4f9647fb58ceb767e7f17 lib/unicore/Blocks.txt
# a566cd48687b2cd897e02501118b2413c14ae86d318f9abbbba97feb84189f0f lib/unicore/CaseFolding.txt
# 3360762fc3295cea54ab251c31df621d05ba4b94d46c60eaac29aa16d70ad1e0 lib/unicore/CompositionExclusions.txt
# 7e058dec02147098bc9c28d86209f0f251bba0538f3b5a705ad02ea3bb709fe0 lib/unicore/DAge.txt
# e3eddd7d469cd1b0feed7528defad1a1cc7c6a9ceb0ae4446a6d10921ed2e7bc lib/unicore/DCoreProperties.txt
# b2c444c20730b097787fdf50bd7d6dd3fc5256ab8084f5b35b11c8776eca674c lib/unicore/DNormalizationProps.txt
# f901ac011aa32a09224d6555da71e2532c59c1d3381322829de0e3b880507250 lib/unicore/EastAsianWidth.txt
# 5995522f01633073911dad1edb74d13aa832f42862c0392a79627b85d52f2391 lib/unicore/EquivalentUnifiedIdeograph.txt
# cd1c9367cba438afa965fcb5edc6ed3ec6e685fd5dd21c0cc20c026f04beb0e5 lib/unicore/HangulSyllableType.txt
# 3f3f368fccdb37f350ecedc20b37fa71ab31c04e847884c77780d34283539f73 lib/unicore/IdStatus.txt
# 45a150c23961b58d7784704af6c4daccd6517d97b6489e53d13bbdbf9e4f065f lib/unicore/IdType.txt
# d8704c8725568813a947ff2ef38bcf1f05e2a6fbea6876ba384890f187a8bf61 lib/unicore/IndicPositionalCategory.txt
# c7b969b653dc278fb66ab4136223d320e30ad19367eb791ae60dcc6d92071b16 lib/unicore/IndicSyllabicCategory.txt
# 39ff89e0a329e1ccce6d54fad8cf82e90926901928c0ca9b9a2ad5681f330dd9 lib/unicore/Jamo.txt
# 9e06e9f35c6959fb91dcc7993f90d58523c3079bc62c6b25f828b4cdebc5d70c lib/unicore/LineBreak.txt
# 14b3b677d33f95c51423dce6eef4a6a28b4b160451ecedee4b91edb6745cf4a3 lib/unicore/NameAliases.txt
# db5745688affcdc0c3927a1ee0667018a96a7b24513f866d5235e98fef6c2436 lib/unicore/NamedSequences.txt
# 6bddfdb850417a5bee6deff19290fd1b138589909afb50f5a049f343bf2c6722 lib/unicore/PropList.txt
# eb755757e20b72b330b2948df3cf2ff7adb0e31bb060140dc09dafb132ace2cd lib/unicore/PropValueAliases.txt
# 859d7225f2d2a460b3ccb1d61a7945f8cc219acdf5aa53b66b7a1e4bf6ebfc87 lib/unicore/PropertyAliases.txt
# d37eedf63ff9c48bac863d5f76862373d6cf5269fd21253d499e2430d638c01d lib/unicore/ScriptExtensions.txt
# 52db475c4ec445e73b0b16915448c357614946ad7062843c563e00d7535c6510 lib/unicore/Scripts.txt
# c667b45908fd269af25fd55d2fc5bbc157fb1b77675936e25c513ce32e080334 lib/unicore/SpecialCasing.txt
# 36018e68657fdcb3485f636630ffe8c8532e01c977703d2803f5b89d6c5feafb lib/unicore/UnicodeData.txt
# 869ff43dd012f924d03c89fc268c88f0e7eea72f0228b91ca30455afdb84f8fd lib/unicore/VerticalOrientation.txt
# ddc7d4d1f3838573b94fc5d83ff7217e63c47b22ae1cd40c5fe1a54efc15589b lib/unicore/auxiliary/GCBTest.txt
# 97e79f1f8d9cd76d120f2420381a01abc00a7c78a2aa583fa3f9627264a99742 lib/unicore/auxiliary/GraphemeBreakProperty.txt
# 488dbb6a7e1d0070d4aa7c175352c818ff6425172850d1b40c6177726658cb05 lib/unicore/auxiliary/LBTest.txt
# 7e42dd749dbb94aa44b13faf9df6319d9a16ce2ea09a3a094fcfbb5962168040 lib/unicore/auxiliary/SBTest.txt
# 7092ca4117cec891c25c7724132efc519e1dece01ae9fd6068035a9db04d526e lib/unicore/auxiliary/SentenceBreakProperty.txt
# 8094b544ec1580c7e41ac0187805cc1aeb330a90301ec7505563e1a59318284e lib/unicore/auxiliary/WBTest.txt
# 7716752aad296d4ab23ff4ed0a2746fc5328750ff84e9e7d6f3828ee9eaef742 lib/unicore/auxiliary/WordBreakProperty.txt
# b597836124298b8f7fa076273802840cfc3271a25f5c397a082e120954b82c3c lib/unicore/emoji/emoji.txt
# e5fe51acc74e3e83b4fb4c7b25f3c34491d6eb8095c9955d0712dafbca7b3c2b lib/unicore/extracted/DBidiClass.txt
# cd0a14176d93bf440b77a582a0d678190fc0688b15442d4cfb250bf2e27956af lib/unicore/extracted/DBinaryProperties.txt
# 12b0c3af9b600b49488d66545a3e7844ea980809627201bf9afeebe1c9f16f4e lib/unicore/extracted/DCombiningClass.txt
# f76064b298cfbd715ba542e7894f7a507d32da2f011070d1d01df95cad9817d6 lib/unicore/extracted/DDecompositionType.txt
# f9bef074cc916db57fece99d54a4505f8e7c7b17481619e3f0005211f7717d4b lib/unicore/extracted/DEastAsianWidth.txt
# cde679c8461976ed40d7edf61ae98cbb947540831f06f5bc7da7decbf91a1420 lib/unicore/extracted/DGeneralCategory.txt
# 9bb891831328713603a486a4a03df7f7987c3e1e8144a6d1ac71fd061ef3f732 lib/unicore/extracted/DJoinGroup.txt
# e97c65bbea0a69d2fae6ec4182b09e519e13232e20bd804b3004edc0f36bb0d4 lib/unicore/extracted/DJoinType.txt
# 43f6df50e4878f501b417e366b0ee097ae5ccb2d4ce942026bed3d62d78e7887 lib/unicore/extracted/DLineBreak.txt
# a04502ebb36a45d83cbe48a7d8132ea8143edb7b3d34d0aa6afe4a9685049741 lib/unicore/extracted/DNumType.txt
# 11075771b112e8e7ccf6ffa637c4c91eadc3ef3db0517b24e605df8fd3624239 lib/unicore/extracted/DNumValues.txt
# 31d2f39a48fd6624f9fb9c7648daed3ae6f364548d08b65310f136d024be8986 lib/unicore/mktables
# c72bbdeda99714db1c8024d3311da4aef3c0db3b9b9f11455a7cfe10d5e9aba3 lib/unicore/version
# 0a6b5ab33bb1026531f816efe81aea1a8ffcd34a27cbea37dd6a70a63d73c844 regen/charset_translations.pl
# 5f8520d3a17ade6317fc0c423f5091470924b1ef425bca0c41ce8e4a9f8460fe regen/mk_PL_charclass.pl
# 6defb8383a69034f8279fea4ff66e09bf58049c4cbecf2331b9b245c45d4f2d5 regen/mk_invlists.pl
# ex: set ro: