[use] Skip WJ and ZWJ when clustering

This commit is contained in:
David Corbett 2020-10-16 22:41:12 -04:00 committed by Behdad Esfahbod
parent 3fcf466b7b
commit 0792690b73
6 changed files with 281 additions and 351 deletions

View File

@ -243,7 +243,7 @@ def is_BASE(U, UISC, UGC, AJT):
Vowel_Independent, Vowel_Independent,
] or ] or
# TODO: https://github.com/MicrosoftDocs/typography-issues/issues/484 # TODO: https://github.com/MicrosoftDocs/typography-issues/issues/484
AJT in [jt_C, jt_D, jt_L, jt_R] and not is_ZWJ(U, UISC, UGC, AJT) or AJT in [jt_C, jt_D, jt_L, jt_R] and UISC != Joiner or
(UGC == Lo and UISC in [Avagraha, Bindu, Consonant_Final, Consonant_Medial, (UGC == Lo and UISC in [Avagraha, Bindu, Consonant_Final, Consonant_Medial,
Consonant_Subjoined, Vowel, Vowel_Dependent])) Consonant_Subjoined, Vowel, Vowel_Dependent]))
def is_BASE_IND(U, UISC, UGC, AJT): def is_BASE_IND(U, UISC, UGC, AJT):
@ -290,16 +290,11 @@ def is_HIEROGLYPH_SEGMENT_END(U, UISC, UGC, AJT):
return UISC == Hieroglyph_Segment_End return UISC == Hieroglyph_Segment_End
def is_ZWNJ(U, UISC, UGC, AJT): def is_ZWNJ(U, UISC, UGC, AJT):
return UISC == Non_Joiner return UISC == Non_Joiner
def is_ZWJ(U, UISC, UGC, AJT):
return UISC == Joiner
def is_Word_Joiner(U, UISC, UGC, AJT):
return U == 0x2060
def is_OTHER(U, UISC, UGC, AJT): def is_OTHER(U, UISC, UGC, AJT):
return (UISC == Other return (UISC in [Joiner, Other]
and not is_BASE(U, UISC, UGC, AJT) and not is_BASE(U, UISC, UGC, AJT)
and not is_SYM(U, UISC, UGC, AJT) and not is_SYM(U, UISC, UGC, AJT)
and not is_SYM_MOD(U, UISC, UGC, AJT) and not is_SYM_MOD(U, UISC, UGC, AJT)
and not is_Word_Joiner(U, UISC, UGC, AJT)
) )
def is_Reserved(U, UISC, UGC, AJT): def is_Reserved(U, UISC, UGC, AJT):
return UGC == 'Cn' return UGC == 'Cn'
@ -321,7 +316,7 @@ def is_VOWEL_MOD(U, UISC, UGC, AJT):
return (UISC in [Tone_Mark, Cantillation_Mark, Register_Shifter, Visarga] or return (UISC in [Tone_Mark, Cantillation_Mark, Register_Shifter, Visarga] or
(UGC != Lo and (UISC == Bindu or U in [0xAA29]))) (UGC != Lo and (UISC == Bindu or U in [0xAA29])))
# CGJ and VS are handled in find_syllables # CGJ, VS, WJ, and ZWJ are handled in find_syllables
use_mapping = { use_mapping = {
'B': is_BASE, 'B': is_BASE,
'IND': is_BASE_IND, 'IND': is_BASE_IND,
@ -341,8 +336,6 @@ use_mapping = {
'SB': is_HIEROGLYPH_SEGMENT_BEGIN, 'SB': is_HIEROGLYPH_SEGMENT_BEGIN,
'SE': is_HIEROGLYPH_SEGMENT_END, 'SE': is_HIEROGLYPH_SEGMENT_END,
'ZWNJ': is_ZWNJ, 'ZWNJ': is_ZWNJ,
'ZWJ': is_ZWJ,
'WJ': is_Word_Joiner,
'O': is_OTHER, 'O': is_OTHER,
'Rsv': is_Reserved, 'Rsv': is_Reserved,
'R': is_REPHA, 'R': is_REPHA,

View File

@ -37,306 +37,278 @@
#line 39 "hb-ot-shape-complex-use-machine.hh" #line 39 "hb-ot-shape-complex-use-machine.hh"
static const unsigned char _use_syllable_machine_trans_keys[] = { static const unsigned char _use_syllable_machine_trans_keys[] = {
12u, 48u, 1u, 15u, 1u, 1u, 12u, 48u, 1u, 1u, 0u, 51u, 11u, 48u, 11u, 48u, 1u, 1u, 1u, 1u, 0u, 51u, 11u, 48u, 11u, 48u, 1u, 1u, 22u, 48u, 23u, 48u,
1u, 15u, 1u, 1u, 22u, 48u, 23u, 48u, 24u, 47u, 25u, 47u, 26u, 47u, 45u, 46u, 24u, 47u, 25u, 47u, 26u, 47u, 45u, 46u, 46u, 46u, 24u, 48u, 24u, 48u, 24u, 48u,
46u, 46u, 24u, 48u, 24u, 48u, 24u, 48u, 1u, 1u, 24u, 48u, 23u, 48u, 23u, 48u, 1u, 1u, 24u, 48u, 23u, 48u, 23u, 48u, 23u, 48u, 22u, 48u, 22u, 48u, 22u, 48u,
23u, 48u, 22u, 48u, 22u, 48u, 22u, 48u, 11u, 48u, 1u, 48u, 13u, 13u, 4u, 4u, 11u, 48u, 1u, 48u, 13u, 13u, 4u, 4u, 11u, 48u, 41u, 42u, 42u, 42u, 11u, 48u,
11u, 48u, 41u, 42u, 42u, 42u, 11u, 48u, 22u, 48u, 23u, 48u, 24u, 47u, 25u, 47u, 22u, 48u, 23u, 48u, 24u, 47u, 25u, 47u, 26u, 47u, 45u, 46u, 46u, 46u, 24u, 48u,
26u, 47u, 45u, 46u, 46u, 46u, 24u, 48u, 24u, 48u, 24u, 48u, 24u, 48u, 23u, 48u, 24u, 48u, 24u, 48u, 24u, 48u, 23u, 48u, 23u, 48u, 23u, 48u, 22u, 48u, 22u, 48u,
23u, 48u, 23u, 48u, 22u, 48u, 22u, 48u, 22u, 48u, 11u, 48u, 1u, 48u, 1u, 15u, 22u, 48u, 11u, 48u, 1u, 48u, 1u, 1u, 4u, 4u, 13u, 13u, 1u, 48u, 11u, 48u,
4u, 4u, 13u, 13u, 12u, 48u, 1u, 48u, 11u, 48u, 41u, 42u, 42u, 42u, 1u, 5u, 41u, 42u, 42u, 42u, 1u, 5u, 50u, 52u, 49u, 52u, 49u, 51u, 0
50u, 52u, 49u, 52u, 49u, 51u, 0
}; };
static const char _use_syllable_machine_key_spans[] = { static const char _use_syllable_machine_key_spans[] = {
37, 15, 1, 37, 1, 52, 38, 38, 1, 1, 52, 38, 38, 1, 27, 26,
15, 1, 27, 26, 24, 23, 22, 2, 24, 23, 22, 2, 1, 25, 25, 25,
1, 25, 25, 25, 1, 25, 26, 26, 1, 25, 26, 26, 26, 27, 27, 27,
26, 27, 27, 27, 38, 48, 1, 1, 38, 48, 1, 1, 38, 2, 1, 38,
38, 2, 1, 38, 27, 26, 24, 23, 27, 26, 24, 23, 22, 2, 1, 25,
22, 2, 1, 25, 25, 25, 25, 26, 25, 25, 25, 26, 26, 26, 27, 27,
26, 26, 27, 27, 27, 38, 48, 15, 27, 38, 48, 1, 1, 1, 48, 38,
1, 1, 37, 48, 38, 2, 1, 5, 2, 1, 5, 3, 4, 3
3, 4, 3
}; };
static const short _use_syllable_machine_index_offsets[] = { static const short _use_syllable_machine_index_offsets[] = {
0, 38, 54, 56, 94, 96, 149, 188, 0, 2, 4, 57, 96, 135, 137, 165,
227, 243, 245, 273, 300, 325, 349, 372, 192, 217, 241, 264, 267, 269, 295, 321,
375, 377, 403, 429, 455, 457, 483, 510, 347, 349, 375, 402, 429, 456, 484, 512,
537, 564, 592, 620, 648, 687, 736, 738, 540, 579, 628, 630, 632, 671, 674, 676,
740, 779, 782, 784, 823, 851, 878, 903, 715, 743, 770, 795, 819, 842, 845, 847,
927, 950, 953, 955, 981, 1007, 1033, 1059, 873, 899, 925, 951, 978, 1005, 1032, 1060,
1086, 1113, 1140, 1168, 1196, 1224, 1263, 1312, 1088, 1116, 1155, 1204, 1206, 1208, 1210, 1259,
1328, 1330, 1332, 1370, 1419, 1458, 1461, 1463, 1298, 1301, 1303, 1309, 1313, 1318
1469, 1473, 1478
}; };
static const char _use_syllable_machine_indicies[] = { static const char _use_syllable_machine_indicies[] = {
1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 2, 0, 3, 4, 5, 3,
0, 0, 0, 0, 0, 0, 0, 0, 6, 7, 5, 5, 5, 5, 5, 1,
0, 0, 0, 0, 0, 0, 0, 0, 8, 9, 5, 5, 5, 3, 10, 11,
0, 0, 0, 0, 0, 0, 0, 0, 5, 5, 12, 13, 14, 15, 16, 17,
1, 0, 0, 0, 1, 0, 3, 2, 18, 12, 19, 20, 21, 22, 23, 24,
2, 2, 2, 2, 2, 2, 2, 2, 5, 25, 26, 27, 5, 28, 29, 30,
2, 2, 2, 2, 4, 2, 3, 2, 31, 32, 33, 34, 8, 35, 5, 36,
6, 5, 5, 5, 5, 5, 5, 5, 5, 38, 39, 37, 37, 37, 37, 37,
5, 5, 5, 5, 5, 5, 5, 5, 37, 37, 37, 37, 40, 41, 42, 43,
5, 5, 5, 5, 5, 5, 5, 5, 44, 45, 46, 40, 47, 4, 48, 49,
5, 5, 5, 5, 5, 5, 5, 5, 50, 51, 37, 52, 53, 54, 37, 37,
6, 5, 5, 5, 6, 5, 7, 5, 37, 37, 55, 56, 57, 58, 39, 37,
8, 9, 10, 8, 11, 12, 10, 10, 38, 39, 37, 37, 37, 37, 37, 37,
10, 10, 10, 3, 13, 14, 10, 15, 37, 37, 37, 40, 41, 42, 43, 44,
8, 8, 16, 17, 10, 10, 18, 19, 45, 46, 40, 47, 48, 48, 49, 50,
20, 21, 22, 23, 24, 18, 25, 26, 51, 37, 52, 53, 54, 37, 37, 37,
27, 28, 29, 30, 10, 31, 32, 33, 37, 55, 56, 57, 58, 39, 37, 38,
10, 34, 35, 36, 37, 38, 39, 40, 59, 40, 41, 42, 43, 44, 37, 37,
13, 41, 10, 42, 10, 44, 1, 43, 37, 37, 37, 37, 49, 50, 51, 37,
43, 45, 43, 43, 43, 43, 43, 43, 52, 53, 54, 37, 37, 37, 37, 41,
46, 47, 48, 49, 50, 51, 52, 46, 56, 57, 58, 60, 37, 41, 42, 43,
53, 9, 54, 55, 56, 57, 43, 58, 44, 37, 37, 37, 37, 37, 37, 37,
59, 60, 43, 43, 43, 43, 61, 62, 37, 37, 37, 52, 53, 54, 37, 37,
63, 64, 1, 43, 44, 1, 43, 43, 37, 37, 37, 56, 57, 58, 60, 37,
45, 43, 43, 43, 43, 43, 43, 46, 42, 43, 44, 37, 37, 37, 37, 37,
47, 48, 49, 50, 51, 52, 46, 53, 37, 37, 37, 37, 37, 37, 37, 37,
54, 54, 55, 56, 57, 43, 58, 59, 37, 37, 37, 37, 37, 56, 57, 58,
60, 43, 43, 43, 43, 61, 62, 63, 37, 43, 44, 37, 37, 37, 37, 37,
64, 1, 43, 44, 65, 65, 65, 65, 37, 37, 37, 37, 37, 37, 37, 37,
65, 65, 65, 65, 65, 65, 65, 65, 37, 37, 37, 37, 37, 56, 57, 58,
65, 66, 65, 44, 65, 46, 47, 48, 37, 44, 37, 37, 37, 37, 37, 37,
49, 50, 43, 43, 43, 43, 43, 43, 37, 37, 37, 37, 37, 37, 37, 37,
55, 56, 57, 43, 58, 59, 60, 43, 37, 37, 37, 37, 56, 57, 58, 37,
43, 43, 43, 47, 62, 63, 64, 67, 56, 57, 37, 57, 37, 42, 43, 44,
43, 47, 48, 49, 50, 43, 43, 43, 37, 37, 37, 37, 37, 37, 37, 37,
43, 43, 43, 43, 43, 43, 43, 58, 37, 37, 52, 53, 54, 37, 37, 37,
59, 60, 43, 43, 43, 43, 43, 62, 37, 37, 56, 57, 58, 60, 37, 42,
63, 64, 67, 43, 48, 49, 50, 43, 43, 44, 37, 37, 37, 37, 37, 37,
43, 43, 43, 43, 43, 43, 43, 43, 37, 37, 37, 37, 37, 53, 54, 37,
43, 43, 43, 43, 43, 43, 43, 43, 37, 37, 37, 37, 56, 57, 58, 60,
43, 62, 63, 64, 43, 49, 50, 43, 37, 42, 43, 44, 37, 37, 37, 37,
43, 43, 43, 43, 43, 43, 43, 43, 37, 37, 37, 37, 37, 37, 37, 37,
43, 43, 43, 43, 43, 43, 43, 43, 54, 37, 37, 37, 37, 37, 56, 57,
43, 62, 63, 64, 43, 50, 43, 43, 58, 60, 37, 62, 61, 42, 43, 44,
43, 43, 43, 43, 43, 43, 43, 43, 37, 37, 37, 37, 37, 37, 37, 37,
43, 43, 43, 43, 43, 43, 43, 43, 37, 37, 37, 37, 37, 37, 37, 37,
62, 63, 64, 43, 62, 63, 43, 63, 37, 37, 56, 57, 58, 60, 37, 41,
43, 48, 49, 50, 43, 43, 43, 43, 42, 43, 44, 37, 37, 37, 37, 37,
43, 43, 43, 43, 43, 43, 58, 59, 37, 49, 50, 51, 37, 52, 53, 54,
60, 43, 43, 43, 43, 43, 62, 63, 37, 37, 37, 37, 41, 56, 57, 58,
64, 67, 43, 48, 49, 50, 43, 43, 60, 37, 41, 42, 43, 44, 37, 37,
43, 43, 43, 43, 43, 43, 43, 43, 37, 37, 37, 37, 37, 50, 51, 37,
43, 59, 60, 43, 43, 43, 43, 43, 52, 53, 54, 37, 37, 37, 37, 41,
62, 63, 64, 67, 43, 48, 49, 50, 56, 57, 58, 60, 37, 41, 42, 43,
43, 43, 43, 43, 43, 43, 43, 43, 44, 37, 37, 37, 37, 37, 37, 37,
43, 43, 43, 43, 60, 43, 43, 43, 37, 51, 37, 52, 53, 54, 37, 37,
43, 43, 62, 63, 64, 67, 43, 69, 37, 37, 41, 56, 57, 58, 60, 37,
68, 48, 49, 50, 43, 43, 43, 43, 40, 41, 42, 43, 44, 37, 46, 40,
43, 43, 43, 43, 43, 43, 43, 43, 37, 37, 37, 49, 50, 51, 37, 52,
43, 43, 43, 43, 43, 43, 62, 63, 53, 54, 37, 37, 37, 37, 41, 56,
64, 67, 43, 47, 48, 49, 50, 43, 57, 58, 60, 37, 40, 41, 42, 43,
43, 43, 43, 43, 43, 55, 56, 57, 44, 37, 37, 40, 37, 37, 37, 49,
43, 58, 59, 60, 43, 43, 43, 43, 50, 51, 37, 52, 53, 54, 37, 37,
47, 62, 63, 64, 67, 43, 47, 48, 37, 37, 41, 56, 57, 58, 60, 37,
49, 50, 43, 43, 43, 43, 43, 43, 40, 41, 42, 43, 44, 45, 46, 40,
43, 56, 57, 43, 58, 59, 60, 43, 37, 37, 37, 49, 50, 51, 37, 52,
43, 43, 43, 47, 62, 63, 64, 67, 53, 54, 37, 37, 37, 37, 41, 56,
43, 47, 48, 49, 50, 43, 43, 43, 57, 58, 60, 37, 38, 39, 37, 37,
43, 43, 43, 43, 43, 57, 43, 58, 37, 37, 37, 37, 37, 37, 37, 40,
59, 60, 43, 43, 43, 43, 47, 62, 41, 42, 43, 44, 45, 46, 40, 47,
63, 64, 67, 43, 46, 47, 48, 49, 37, 48, 49, 50, 51, 37, 52, 53,
50, 43, 52, 46, 43, 43, 43, 55, 54, 37, 37, 37, 37, 55, 56, 57,
56, 57, 43, 58, 59, 60, 43, 43, 58, 39, 37, 38, 59, 59, 59, 59,
43, 43, 47, 62, 63, 64, 67, 43, 59, 59, 59, 59, 59, 59, 59, 59,
46, 47, 48, 49, 50, 43, 43, 46, 59, 59, 59, 59, 59, 59, 59, 59,
43, 43, 43, 55, 56, 57, 43, 58, 59, 41, 42, 43, 44, 59, 59, 59,
59, 60, 43, 43, 43, 43, 47, 62, 59, 59, 59, 59, 59, 59, 59, 52,
63, 64, 67, 43, 46, 47, 48, 49, 53, 54, 59, 59, 59, 59, 59, 56,
50, 51, 52, 46, 43, 43, 43, 55, 57, 58, 60, 59, 64, 63, 6, 65,
56, 57, 43, 58, 59, 60, 43, 43, 38, 39, 37, 37, 37, 37, 37, 37,
43, 43, 47, 62, 63, 64, 67, 43, 37, 37, 37, 40, 41, 42, 43, 44,
44, 1, 43, 43, 45, 43, 43, 43, 45, 46, 40, 47, 4, 48, 49, 50,
43, 43, 43, 46, 47, 48, 49, 50, 51, 37, 52, 53, 54, 37, 11, 66,
51, 52, 46, 53, 43, 54, 55, 56, 37, 55, 56, 57, 58, 39, 37, 11,
57, 43, 58, 59, 60, 43, 43, 43, 66, 67, 66, 67, 1, 69, 68, 68,
43, 61, 62, 63, 64, 1, 43, 44, 68, 68, 68, 68, 68, 68, 68, 12,
65, 65, 65, 65, 65, 65, 65, 65, 13, 14, 15, 16, 17, 18, 12, 19,
65, 65, 65, 65, 65, 66, 65, 65, 21, 21, 22, 23, 24, 68, 25, 26,
65, 65, 65, 65, 65, 47, 48, 49, 27, 68, 68, 68, 68, 31, 32, 33,
50, 65, 65, 65, 65, 65, 65, 65, 34, 69, 68, 12, 13, 14, 15, 16,
65, 65, 65, 58, 59, 60, 65, 65, 68, 68, 68, 68, 68, 68, 22, 23,
65, 65, 65, 62, 63, 64, 67, 65, 24, 68, 25, 26, 27, 68, 68, 68,
71, 70, 11, 72, 44, 1, 43, 43, 68, 13, 32, 33, 34, 70, 68, 13,
45, 43, 43, 43, 43, 43, 43, 46, 14, 15, 16, 68, 68, 68, 68, 68,
47, 48, 49, 50, 51, 52, 46, 53, 68, 68, 68, 68, 68, 25, 26, 27,
9, 54, 55, 56, 57, 43, 58, 59, 68, 68, 68, 68, 68, 32, 33, 34,
60, 43, 17, 73, 43, 61, 62, 63, 70, 68, 14, 15, 16, 68, 68, 68,
64, 1, 43, 17, 73, 74, 73, 74, 68, 68, 68, 68, 68, 68, 68, 68,
3, 6, 75, 75, 76, 75, 75, 75, 68, 68, 68, 68, 68, 68, 68, 32,
75, 75, 75, 18, 19, 20, 21, 22, 33, 34, 68, 15, 16, 68, 68, 68,
23, 24, 18, 25, 27, 27, 28, 29, 68, 68, 68, 68, 68, 68, 68, 68,
30, 75, 31, 32, 33, 75, 75, 75, 68, 68, 68, 68, 68, 68, 68, 32,
75, 37, 38, 39, 40, 6, 75, 18, 33, 34, 68, 16, 68, 68, 68, 68,
19, 20, 21, 22, 75, 75, 75, 75, 68, 68, 68, 68, 68, 68, 68, 68,
75, 75, 28, 29, 30, 75, 31, 32, 68, 68, 68, 68, 68, 68, 32, 33,
33, 75, 75, 75, 75, 19, 38, 39, 34, 68, 32, 33, 68, 33, 68, 14,
40, 77, 75, 19, 20, 21, 22, 75, 15, 16, 68, 68, 68, 68, 68, 68,
75, 75, 75, 75, 75, 75, 75, 75, 68, 68, 68, 68, 25, 26, 27, 68,
75, 31, 32, 33, 75, 75, 75, 75, 68, 68, 68, 68, 32, 33, 34, 70,
75, 38, 39, 40, 77, 75, 20, 21, 68, 14, 15, 16, 68, 68, 68, 68,
22, 75, 75, 75, 75, 75, 75, 75, 68, 68, 68, 68, 68, 68, 68, 26,
75, 75, 75, 75, 75, 75, 75, 75, 27, 68, 68, 68, 68, 68, 32, 33,
75, 75, 75, 38, 39, 40, 75, 21, 34, 70, 68, 14, 15, 16, 68, 68,
22, 75, 75, 75, 75, 75, 75, 75, 68, 68, 68, 68, 68, 68, 68, 68,
75, 75, 75, 75, 75, 75, 75, 75, 68, 68, 27, 68, 68, 68, 68, 68,
75, 75, 75, 38, 39, 40, 75, 22, 32, 33, 34, 70, 68, 14, 15, 16,
75, 75, 75, 75, 75, 75, 75, 75, 68, 68, 68, 68, 68, 68, 68, 68,
75, 75, 75, 75, 75, 75, 75, 75, 68, 68, 68, 68, 68, 68, 68, 68,
75, 75, 38, 39, 40, 75, 38, 39, 68, 68, 32, 33, 34, 70, 68, 13,
75, 39, 75, 20, 21, 22, 75, 75, 14, 15, 16, 68, 68, 68, 68, 68,
75, 75, 75, 75, 75, 75, 75, 75, 68, 22, 23, 24, 68, 25, 26, 27,
31, 32, 33, 75, 75, 75, 75, 75, 68, 68, 68, 68, 13, 32, 33, 34,
38, 39, 40, 77, 75, 20, 21, 22, 70, 68, 13, 14, 15, 16, 68, 68,
75, 75, 75, 75, 75, 75, 75, 75, 68, 68, 68, 68, 68, 23, 24, 68,
75, 75, 75, 32, 33, 75, 75, 75, 25, 26, 27, 68, 68, 68, 68, 13,
75, 75, 38, 39, 40, 77, 75, 20, 32, 33, 34, 70, 68, 13, 14, 15,
21, 22, 75, 75, 75, 75, 75, 75, 16, 68, 68, 68, 68, 68, 68, 68,
75, 75, 75, 75, 75, 75, 33, 75, 68, 24, 68, 25, 26, 27, 68, 68,
75, 75, 75, 75, 38, 39, 40, 77, 68, 68, 13, 32, 33, 34, 70, 68,
75, 20, 21, 22, 75, 75, 75, 75, 12, 13, 14, 15, 16, 68, 18, 12,
75, 75, 75, 75, 75, 75, 75, 75, 68, 68, 68, 22, 23, 24, 68, 25,
75, 75, 75, 75, 75, 75, 38, 39, 26, 27, 68, 68, 68, 68, 13, 32,
40, 77, 75, 19, 20, 21, 22, 75, 33, 34, 70, 68, 12, 13, 14, 15,
75, 75, 75, 75, 75, 28, 29, 30, 16, 68, 68, 12, 68, 68, 68, 22,
75, 31, 32, 33, 75, 75, 75, 75, 23, 24, 68, 25, 26, 27, 68, 68,
19, 38, 39, 40, 77, 75, 19, 20, 68, 68, 13, 32, 33, 34, 70, 68,
21, 22, 75, 75, 75, 75, 75, 75, 12, 13, 14, 15, 16, 17, 18, 12,
75, 29, 30, 75, 31, 32, 33, 75, 68, 68, 68, 22, 23, 24, 68, 25,
75, 75, 75, 19, 38, 39, 40, 77, 26, 27, 68, 68, 68, 68, 13, 32,
75, 19, 20, 21, 22, 75, 75, 75, 33, 34, 70, 68, 1, 69, 68, 68,
75, 75, 75, 75, 75, 30, 75, 31, 68, 68, 68, 68, 68, 68, 68, 12,
32, 33, 75, 75, 75, 75, 19, 38, 13, 14, 15, 16, 17, 18, 12, 19,
39, 40, 77, 75, 18, 19, 20, 21, 68, 21, 22, 23, 24, 68, 25, 26,
22, 75, 24, 18, 75, 75, 75, 28, 27, 68, 68, 68, 68, 31, 32, 33,
29, 30, 75, 31, 32, 33, 75, 75, 34, 69, 68, 1, 68, 68, 68, 68,
75, 75, 19, 38, 39, 40, 77, 75, 68, 68, 68, 68, 68, 68, 68, 68,
18, 19, 20, 21, 22, 75, 75, 18, 68, 68, 68, 68, 68, 68, 68, 68,
75, 75, 75, 28, 29, 30, 75, 31, 68, 13, 14, 15, 16, 68, 68, 68,
32, 33, 75, 75, 75, 75, 19, 38, 68, 68, 68, 68, 68, 68, 68, 25,
39, 40, 77, 75, 18, 19, 20, 21, 26, 27, 68, 68, 68, 68, 68, 32,
22, 23, 24, 18, 75, 75, 75, 28, 33, 34, 70, 68, 1, 71, 72, 68,
29, 30, 75, 31, 32, 33, 75, 75, 9, 68, 4, 68, 68, 68, 4, 68,
75, 75, 19, 38, 39, 40, 77, 75, 68, 68, 68, 68, 1, 69, 9, 68,
3, 6, 75, 75, 76, 75, 75, 75, 68, 68, 68, 68, 68, 68, 68, 12,
75, 75, 75, 18, 19, 20, 21, 22, 13, 14, 15, 16, 17, 18, 12, 19,
23, 24, 18, 25, 75, 27, 28, 29, 20, 21, 22, 23, 24, 68, 25, 26,
30, 75, 31, 32, 33, 75, 75, 75, 27, 68, 28, 29, 68, 31, 32, 33,
75, 37, 38, 39, 40, 6, 75, 3, 34, 69, 68, 1, 69, 68, 68, 68,
75, 75, 75, 75, 75, 75, 75, 75, 68, 68, 68, 68, 68, 68, 12, 13,
75, 75, 75, 75, 75, 4, 75, 75, 14, 15, 16, 17, 18, 12, 19, 20,
75, 75, 75, 75, 75, 19, 20, 21, 21, 22, 23, 24, 68, 25, 26, 27,
22, 75, 75, 75, 75, 75, 75, 75, 68, 68, 68, 68, 31, 32, 33, 34,
75, 75, 75, 31, 32, 33, 75, 75, 69, 68, 28, 29, 68, 29, 68, 4,
75, 75, 75, 38, 39, 40, 77, 75, 71, 71, 71, 4, 71, 74, 73, 35,
3, 78, 78, 78, 78, 78, 78, 78, 73, 35, 74, 73, 74, 73, 35, 73,
78, 78, 78, 78, 78, 78, 4, 78, 36, 73, 0
79, 75, 14, 75, 6, 78, 78, 78,
78, 78, 78, 78, 78, 78, 78, 78,
78, 78, 78, 78, 78, 78, 78, 78,
78, 78, 78, 78, 78, 78, 78, 78,
78, 78, 78, 78, 6, 78, 78, 78,
6, 78, 9, 75, 75, 75, 9, 75,
75, 75, 75, 75, 3, 6, 14, 75,
76, 75, 75, 75, 75, 75, 75, 18,
19, 20, 21, 22, 23, 24, 18, 25,
26, 27, 28, 29, 30, 75, 31, 32,
33, 75, 34, 35, 75, 37, 38, 39,
40, 6, 75, 3, 6, 75, 75, 76,
75, 75, 75, 75, 75, 75, 18, 19,
20, 21, 22, 23, 24, 18, 25, 26,
27, 28, 29, 30, 75, 31, 32, 33,
75, 75, 75, 75, 37, 38, 39, 40,
6, 75, 34, 35, 75, 35, 75, 9,
78, 78, 78, 9, 78, 81, 80, 41,
80, 41, 81, 80, 81, 80, 41, 80,
42, 80, 0
}; };
static const char _use_syllable_machine_trans_targs[] = { static const char _use_syllable_machine_trans_targs[] = {
5, 8, 5, 35, 2, 5, 1, 46, 2, 31, 42, 2, 3, 2, 26, 28,
5, 6, 5, 30, 32, 55, 56, 58, 51, 52, 54, 29, 32, 33, 34, 35,
59, 33, 36, 37, 38, 39, 40, 50, 36, 46, 47, 48, 55, 49, 43, 44,
51, 52, 60, 53, 47, 48, 49, 43, 45, 39, 40, 41, 56, 57, 58, 50,
44, 45, 61, 62, 63, 54, 41, 42, 37, 38, 2, 59, 61, 2, 4, 5,
5, 64, 66, 5, 7, 0, 10, 11, 6, 7, 8, 9, 10, 21, 22, 23,
12, 13, 14, 25, 26, 27, 28, 22, 24, 18, 19, 20, 13, 14, 15, 25,
23, 24, 17, 18, 19, 29, 15, 16, 11, 12, 2, 2, 16, 2, 17, 2,
5, 5, 9, 20, 5, 21, 5, 31, 27, 2, 30, 2, 2, 0, 1, 2,
5, 34, 5, 5, 3, 4, 5, 57, 53, 2, 60
5, 65
}; };
static const char _use_syllable_machine_trans_actions[] = { static const char _use_syllable_machine_trans_actions[] = {
1, 0, 2, 3, 0, 4, 0, 5, 1, 2, 2, 5, 0, 6, 0, 0,
8, 5, 9, 0, 5, 10, 0, 10, 0, 0, 2, 0, 2, 2, 0, 0,
3, 0, 5, 5, 0, 0, 0, 5, 0, 2, 2, 2, 2, 2, 2, 2,
5, 5, 3, 3, 5, 5, 5, 5, 2, 2, 2, 2, 0, 0, 0, 2,
5, 5, 0, 0, 0, 3, 0, 0, 0, 0, 7, 0, 0, 8, 0, 0,
11, 0, 0, 12, 5, 0, 0, 0,
0, 0, 0, 0, 0, 0, 5, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
13, 14, 0, 0, 15, 0, 16, 0, 0, 0, 0, 0, 0, 0, 0, 0,
17, 0, 18, 19, 0, 0, 20, 0, 0, 0, 9, 10, 0, 11, 0, 12,
21, 0 0, 13, 0, 14, 15, 0, 0, 16,
0, 17, 0
}; };
static const char _use_syllable_machine_to_state_actions[] = { static const char _use_syllable_machine_to_state_actions[] = {
0, 0, 0, 0, 0, 6, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0
0, 0, 0
}; };
static const char _use_syllable_machine_from_state_actions[] = { static const char _use_syllable_machine_from_state_actions[] = {
0, 0, 0, 0, 0, 7, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0
0, 0, 0
}; };
static const short _use_syllable_machine_eof_trans[] = { static const short _use_syllable_machine_eof_trans[] = {
1, 3, 3, 6, 6, 0, 44, 44, 1, 1, 0, 38, 38, 60, 38, 38,
66, 66, 44, 44, 44, 44, 44, 44, 38, 38, 38, 38, 38, 38, 38, 38,
44, 44, 44, 44, 69, 44, 44, 44, 62, 38, 38, 38, 38, 38, 38, 38,
44, 44, 44, 44, 44, 66, 71, 73, 38, 60, 64, 66, 38, 68, 68, 69,
44, 75, 75, 76, 76, 76, 76, 76, 69, 69, 69, 69, 69, 69, 69, 69,
76, 76, 76, 76, 76, 76, 76, 76, 69, 69, 69, 69, 69, 69, 69, 69,
76, 76, 76, 76, 76, 76, 76, 79, 69, 69, 69, 72, 69, 69, 69, 69,
76, 76, 79, 76, 76, 76, 76, 79, 69, 69, 72, 74, 74, 74
81, 81, 81
}; };
static const int use_syllable_machine_start = 5; static const int use_syllable_machine_start = 2;
static const int use_syllable_machine_first_final = 5; static const int use_syllable_machine_first_final = 2;
static const int use_syllable_machine_error = -1; static const int use_syllable_machine_error = -1;
static const int use_syllable_machine_en_main = 5; static const int use_syllable_machine_en_main = 2;
#line 39 "hb-ot-shape-complex-use-machine.rl" #line 39 "hb-ot-shape-complex-use-machine.rl"
#line 166 "hb-ot-shape-complex-use-machine.rl" #line 163 "hb-ot-shape-complex-use-machine.rl"
#define found_syllable(syllable_type) \ #define found_syllable(syllable_type) \
@ -379,7 +351,7 @@ find_syllables_use (hb_buffer_t *buffer)
unsigned int act; unsigned int act;
int cs; int cs;
#line 383 "hb-ot-shape-complex-use-machine.hh" #line 355 "hb-ot-shape-complex-use-machine.hh"
{ {
cs = use_syllable_machine_start; cs = use_syllable_machine_start;
ts = 0; ts = 0;
@ -387,12 +359,12 @@ find_syllables_use (hb_buffer_t *buffer)
act = 0; act = 0;
} }
#line 210 "hb-ot-shape-complex-use-machine.rl" #line 207 "hb-ot-shape-complex-use-machine.rl"
unsigned int syllable_serial = 1; unsigned int syllable_serial = 1;
#line 396 "hb-ot-shape-complex-use-machine.hh" #line 368 "hb-ot-shape-complex-use-machine.hh"
{ {
int _slen; int _slen;
int _trans; int _trans;
@ -402,11 +374,11 @@ find_syllables_use (hb_buffer_t *buffer)
goto _test_eof; goto _test_eof;
_resume: _resume:
switch ( _use_syllable_machine_from_state_actions[cs] ) { switch ( _use_syllable_machine_from_state_actions[cs] ) {
case 7: case 4:
#line 1 "NONE" #line 1 "NONE"
{ts = p;} {ts = p;}
break; break;
#line 410 "hb-ot-shape-complex-use-machine.hh" #line 382 "hb-ot-shape-complex-use-machine.hh"
} }
_keys = _use_syllable_machine_trans_keys + (cs<<1); _keys = _use_syllable_machine_trans_keys + (cs<<1);
@ -424,104 +396,76 @@ _eof_trans:
goto _again; goto _again;
switch ( _use_syllable_machine_trans_actions[_trans] ) { switch ( _use_syllable_machine_trans_actions[_trans] ) {
case 5: case 2:
#line 1 "NONE" #line 1 "NONE"
{te = p+1;} {te = p+1;}
break; break;
case 5:
#line 150 "hb-ot-shape-complex-use-machine.rl"
{te = p+1;{ found_syllable (independent_cluster); }}
break;
case 9:
#line 153 "hb-ot-shape-complex-use-machine.rl"
{te = p+1;{ found_syllable (standard_cluster); }}
break;
case 7:
#line 158 "hb-ot-shape-complex-use-machine.rl"
{te = p+1;{ found_syllable (broken_cluster); }}
break;
case 6:
#line 159 "hb-ot-shape-complex-use-machine.rl"
{te = p+1;{ found_syllable (non_cluster); }}
break;
case 10:
#line 151 "hb-ot-shape-complex-use-machine.rl"
{te = p;p--;{ found_syllable (virama_terminated_cluster); }}
break;
case 11:
#line 152 "hb-ot-shape-complex-use-machine.rl"
{te = p;p--;{ found_syllable (sakot_terminated_cluster); }}
break;
case 8: case 8:
#line 153 "hb-ot-shape-complex-use-machine.rl" #line 153 "hb-ot-shape-complex-use-machine.rl"
{te = p+1;{ found_syllable (independent_cluster); }} {te = p;p--;{ found_syllable (standard_cluster); }}
break; break;
case 13: case 13:
#line 156 "hb-ot-shape-complex-use-machine.rl"
{te = p+1;{ found_syllable (standard_cluster); }}
break;
case 11:
#line 161 "hb-ot-shape-complex-use-machine.rl"
{te = p+1;{ found_syllable (broken_cluster); }}
break;
case 9:
#line 162 "hb-ot-shape-complex-use-machine.rl"
{te = p+1;{ found_syllable (non_cluster); }}
break;
case 14:
#line 154 "hb-ot-shape-complex-use-machine.rl" #line 154 "hb-ot-shape-complex-use-machine.rl"
{te = p;p--;{ found_syllable (virama_terminated_cluster); }} {te = p;p--;{ found_syllable (number_joiner_terminated_cluster); }}
break;
case 15:
#line 155 "hb-ot-shape-complex-use-machine.rl"
{te = p;p--;{ found_syllable (sakot_terminated_cluster); }}
break; break;
case 12: case 12:
#line 155 "hb-ot-shape-complex-use-machine.rl"
{te = p;p--;{ found_syllable (numeral_cluster); }}
break;
case 14:
#line 156 "hb-ot-shape-complex-use-machine.rl" #line 156 "hb-ot-shape-complex-use-machine.rl"
{te = p;p--;{ found_syllable (standard_cluster); }} {te = p;p--;{ found_syllable (symbol_cluster); }}
break; break;
case 17: case 17:
#line 157 "hb-ot-shape-complex-use-machine.rl" #line 157 "hb-ot-shape-complex-use-machine.rl"
{te = p;p--;{ found_syllable (number_joiner_terminated_cluster); }}
break;
case 16:
#line 158 "hb-ot-shape-complex-use-machine.rl"
{te = p;p--;{ found_syllable (numeral_cluster); }}
break;
case 18:
#line 159 "hb-ot-shape-complex-use-machine.rl"
{te = p;p--;{ found_syllable (symbol_cluster); }}
break;
case 21:
#line 160 "hb-ot-shape-complex-use-machine.rl"
{te = p;p--;{ found_syllable (hieroglyph_cluster); }} {te = p;p--;{ found_syllable (hieroglyph_cluster); }}
break; break;
case 19: case 15:
#line 161 "hb-ot-shape-complex-use-machine.rl" #line 158 "hb-ot-shape-complex-use-machine.rl"
{te = p;p--;{ found_syllable (broken_cluster); }} {te = p;p--;{ found_syllable (broken_cluster); }}
break; break;
case 20: case 16:
#line 162 "hb-ot-shape-complex-use-machine.rl" #line 159 "hb-ot-shape-complex-use-machine.rl"
{te = p;p--;{ found_syllable (non_cluster); }} {te = p;p--;{ found_syllable (non_cluster); }}
break; break;
case 1: case 1:
#line 156 "hb-ot-shape-complex-use-machine.rl" #line 158 "hb-ot-shape-complex-use-machine.rl"
{{p = ((te))-1;}{ found_syllable (standard_cluster); }}
break;
case 4:
#line 161 "hb-ot-shape-complex-use-machine.rl"
{{p = ((te))-1;}{ found_syllable (broken_cluster); }} {{p = ((te))-1;}{ found_syllable (broken_cluster); }}
break; break;
case 2: #line 460 "hb-ot-shape-complex-use-machine.hh"
#line 1 "NONE"
{ switch( act ) {
case 9:
{{p = ((te))-1;} found_syllable (broken_cluster); }
break;
case 10:
{{p = ((te))-1;} found_syllable (non_cluster); }
break;
}
}
break;
case 3:
#line 1 "NONE"
{te = p+1;}
#line 161 "hb-ot-shape-complex-use-machine.rl"
{act = 9;}
break;
case 10:
#line 1 "NONE"
{te = p+1;}
#line 162 "hb-ot-shape-complex-use-machine.rl"
{act = 10;}
break;
#line 516 "hb-ot-shape-complex-use-machine.hh"
} }
_again: _again:
switch ( _use_syllable_machine_to_state_actions[cs] ) { switch ( _use_syllable_machine_to_state_actions[cs] ) {
case 6: case 3:
#line 1 "NONE" #line 1 "NONE"
{ts = 0;} {ts = 0;}
break; break;
#line 525 "hb-ot-shape-complex-use-machine.hh" #line 469 "hb-ot-shape-complex-use-machine.hh"
} }
if ( ++p != pe ) if ( ++p != pe )
@ -537,7 +481,7 @@ _again:
} }
#line 215 "hb-ot-shape-complex-use-machine.rl" #line 212 "hb-ot-shape-complex-use-machine.rl"
} }

View File

@ -57,8 +57,6 @@ H = 12; # HALANT
HN = 13; # HALANT_NUM HN = 13; # HALANT_NUM
ZWNJ = 14; # Zero width non-joiner ZWNJ = 14; # Zero width non-joiner
ZWJ = 15; # Zero width joiner
WJ = 16; # Word joiner
Rsv = 17; # Reserved characters Rsv = 17; # Reserved characters
R = 18; # REPHA R = 18; # REPHA
S = 19; # SYM S = 19; # SYM
@ -98,8 +96,7 @@ FMPst = 47; # CONS_FINAL_MOD UIPC = Not_Applicable
h = H | HVM | Sk; h = H | HVM | Sk;
# Override: Adhoc ZWJ placement. https://github.com/harfbuzz/harfbuzz/issues/542#issuecomment-353169729 consonant_modifiers = CMAbv* CMBlw* ((h B | SUB) CMAbv? CMBlw*)*;
consonant_modifiers = CMAbv* CMBlw* ((ZWJ?.h.ZWJ? B | SUB) CMAbv? CMBlw*)*;
medial_consonants = MPre? MAbv? MBlw? MPst?; medial_consonants = MPre? MAbv? MBlw? MPst?;
dependent_vowels = VPre* VAbv* VBlw* VPst*; dependent_vowels = VPre* VAbv* VBlw* VPst*;
vowel_modifiers = HVM? VMPre* VMAbv* VMBlw* VMPst*; vowel_modifiers = HVM? VMPre* VMAbv* VMBlw* VMPst*;
@ -126,7 +123,7 @@ symbol_cluster_tail = SMAbv+ SMBlw* | SMBlw+;
virama_terminated_cluster = virama_terminated_cluster =
complex_syllable_start complex_syllable_start
consonant_modifiers consonant_modifiers
ZWJ?.h.ZWJ? h
; ;
sakot_terminated_cluster = sakot_terminated_cluster =
complex_syllable_start complex_syllable_start
@ -146,7 +143,7 @@ number_joiner_terminated_cluster = N number_joiner_terminated_cluster_tail;
numeral_cluster = N numeral_cluster_tail?; numeral_cluster = N numeral_cluster_tail?;
symbol_cluster = (S | GB) symbol_cluster_tail?; symbol_cluster = (S | GB) symbol_cluster_tail?;
hieroglyph_cluster = SB+ | SB* G SE* (J SE* (G SE*)?)*; hieroglyph_cluster = SB+ | SB* G SE* (J SE* (G SE*)?)*;
independent_cluster = (IND | O | Rsv | WJ); independent_cluster = (IND | O | Rsv);
other = any; other = any;
main := |* main := |*

View File

@ -57,8 +57,6 @@
#define SE USE_SE /* HIEROGLYPH_SEGMENT_END */ #define SE USE_SE /* HIEROGLYPH_SEGMENT_END */
#define SUB USE_SUB /* CONS_SUB */ #define SUB USE_SUB /* CONS_SUB */
#define Sk USE_Sk /* SAKOT */ #define Sk USE_Sk /* SAKOT */
#define WJ USE_WJ /* Word_Joiner */
#define ZWJ USE_ZWJ /* ZWJ */
#define ZWNJ USE_ZWNJ /* ZWNJ */ #define ZWNJ USE_ZWNJ /* ZWNJ */
#define CMAbv USE_CMAbv #define CMAbv USE_CMAbv
#define CMBlw USE_CMBlw #define CMBlw USE_CMBlw
@ -423,12 +421,12 @@ static const USE_TABLE_ELEMENT_TYPE use_table[] = {
/* General Punctuation */ /* General Punctuation */
O, O, O, O, ZWNJ, ZWJ, O, O, O, O, O, O, ZWNJ, O, O, O,
/* 2010 */ GB, GB, GB, GB, GB, O, O, O, /* 2010 */ GB, GB, GB, GB, GB, O, O, O,
#define use_offset_0x2060u 3064 #define use_offset_0x2060u 3064
/* 2060 */ WJ, O, O, O, O, O, O, O, O, O, O, O, O, O, O, O, /* 2060 */ O, O, O, O, O, O, O, O, O, O, O, O, O, O, O, O,
/* Superscripts and Subscripts */ /* Superscripts and Subscripts */
@ -1180,8 +1178,6 @@ hb_use_get_category (hb_codepoint_t u)
#undef SE #undef SE
#undef SUB #undef SUB
#undef Sk #undef Sk
#undef WJ
#undef ZWJ
#undef ZWNJ #undef ZWNJ
#undef CMAbv #undef CMAbv
#undef CMBlw #undef CMBlw

View File

@ -58,8 +58,6 @@ enum use_category_t {
USE_HN = 13, /* HALANT_NUM */ USE_HN = 13, /* HALANT_NUM */
USE_ZWNJ = 14, /* Zero width non-joiner */ USE_ZWNJ = 14, /* Zero width non-joiner */
USE_ZWJ = 15, /* Zero width joiner */
USE_WJ = 16, /* Word joiner */
USE_Rsv = 17, /* Reserved characters */ USE_Rsv = 17, /* Reserved characters */
USE_R = 18, /* REPHA */ USE_R = 18, /* REPHA */
USE_S = 19, /* SYM */ USE_S = 19, /* SYM */

View File

@ -18,3 +18,5 @@
../fonts/573d3a3177c9a8646e94c8a0d7b224334340946a.ttf:--font-funcs=ft:U+11410,U+11442,U+200C,U+034F,U+11411:[Ga=0+576|Virama=0@70,70+0|Gha=4+566] ../fonts/573d3a3177c9a8646e94c8a0d7b224334340946a.ttf:--font-funcs=ft:U+11410,U+11442,U+200C,U+034F,U+11411:[Ga=0+576|Virama=0@70,70+0|Gha=4+566]
../fonts/573d3a3177c9a8646e94c8a0d7b224334340946a.ttf:--font-funcs=ft:U+11410,U+200C,U+11442,U+034F,U+11411:[Ga.icd=0+367|Gha.diag=1@100,0+386] ../fonts/573d3a3177c9a8646e94c8a0d7b224334340946a.ttf:--font-funcs=ft:U+11410,U+200C,U+11442,U+034F,U+11411:[Ga.icd=0+367|Gha.diag=1@100,0+386]
../fonts/e68a88939e0f06e34d2bc911f09b70890289c8fd.ttf::U+AA00,U+200C,U+AA34:[raMedial_cham_pre=0+400|a_cham=0+1121] ../fonts/e68a88939e0f06e34d2bc911f09b70890289c8fd.ttf::U+AA00,U+200C,U+AA34:[raMedial_cham_pre=0+400|a_cham=0+1121]
../fonts/2a670df15b73a5dc75a5cc491bde5ac93c5077dc.ttf::U+11124,U+200D,U+11127:[u11124=0+514|u11127=0+0]
../fonts/2a670df15b73a5dc75a5cc491bde5ac93c5077dc.ttf::U+11124,U+2060,U+11127:[u11124=0+514|u11127=1+0]