From fe2759e8e367a473cb3394c6957e10f3b19fadad Mon Sep 17 00:00:00 2001 From: Meghan Denny Date: Thu, 22 Dec 2022 16:38:12 -0800 Subject: [PATCH] add Scripts, closes #33 --- generate.zig | 1 + scripts/Scripts.zig | 199 ++++ src/lib.zig | 4 + src/main.zig | 1 + src/scripts.zig | 2267 +++++++++++++++++++++++++++++++++++++++++++ 5 files changed, 2472 insertions(+) create mode 100644 scripts/Scripts.zig create mode 100644 src/scripts.zig diff --git a/generate.zig b/generate.zig index e79fbef267bf1873b675607beb262d35566335e2..bd39124f767f6b61f651654522ab59178c801ed7 100644 --- a/generate.zig +++ b/generate.zig @@ -22,6 +22,7 @@ const files = [_]type{ @import("./scripts/NamedSequences.zig"), @import("./scripts/NamedSequencesProv.zig"), @import("./scripts/PropList.zig"), + @import("./scripts/Scripts.zig"), }; pub fn main() !void { diff --git a/scripts/Scripts.zig b/scripts/Scripts.zig new file mode 100644 index 0000000000000000000000000000000000000000..31c5978a413ffdfea4c730b6cced8de044fe8243 --- /dev/null +++ b/scripts/Scripts.zig @@ -0,0 +1,199 @@ +const std = @import("std"); +const common = @import("./_common.zig"); + +pub usingnamespace common.Main(struct { + pub const source_file = "Scripts"; + + pub const dest_file = "src/scripts.zig"; + + pub const dest_header = + \\pub const Scripts = struct { + \\ from: u21, + \\ to: u21, + \\ script: enum { + \\ Common, + \\ Latin, + \\ Greek, + \\ Cyrillic, + \\ Armenian, + \\ Hebrew, + \\ Arabic, + \\ Syriac, + \\ Thaana, + \\ Devanagari, + \\ Bengali, + \\ Gurmukhi, + \\ Gujarati, + \\ Oriya, + \\ Tamil, + \\ Telugu, + \\ Kannada, + \\ Malayalam, + \\ Sinhala, + \\ Thai, + \\ Lao, + \\ Tibetan, + \\ Myanmar, + \\ Georgian, + \\ Hangul, + \\ Ethiopic, + \\ Cherokee, + \\ Canadian_Aboriginal, + \\ Ogham, + \\ Runic, + \\ Khmer, + \\ Mongolian, + \\ Hiragana, + \\ Katakana, + \\ Bopomofo, + \\ Han, + \\ Yi, + \\ Old_Italic, + \\ Gothic, + \\ Deseret, + \\ Inherited, + \\ Tagalog, + \\ Hanunoo, + \\ Buhid, + \\ Tagbanwa, + \\ Limbu, + \\ Tai_Le, + \\ Linear_B, + \\ Ugaritic, + \\ Shavian, + \\ Osmanya, + \\ Cypriot, + \\ Braille, + \\ Buginese, + \\ Coptic, + \\ New_Tai_Lue, + \\ Glagolitic, + \\ Tifinagh, + \\ Syloti_Nagri, + \\ Old_Persian, + \\ Kharoshthi, + \\ Balinese, + \\ Cuneiform, + \\ Phoenician, + \\ Phags_Pa, + \\ Nko, + \\ Sundanese, + \\ Lepcha, + \\ Ol_Chiki, + \\ Vai, + \\ Saurashtra, + \\ Kayah_Li, + \\ Rejang, + \\ Lycian, + \\ Carian, + \\ Lydian, + \\ Cham, + \\ Tai_Tham, + \\ Tai_Viet, + \\ Avestan, + \\ Egyptian_Hieroglyphs, + \\ Samaritan, + \\ Lisu, + \\ Bamum, + \\ Javanese, + \\ Meetei_Mayek, + \\ Imperial_Aramaic, + \\ Old_South_Arabian, + \\ Inscriptional_Parthian, + \\ Inscriptional_Pahlavi, + \\ Old_Turkic, + \\ Kaithi, + \\ Batak, + \\ Brahmi, + \\ Mandaic, + \\ Chakma, + \\ Meroitic_Cursive, + \\ Meroitic_Hieroglyphs, + \\ Miao, + \\ Sharada, + \\ Sora_Sompeng, + \\ Takri, + \\ Caucasian_Albanian, + \\ Bassa_Vah, + \\ Duployan, + \\ Elbasan, + \\ Grantha, + \\ Pahawh_Hmong, + \\ Khojki, + \\ Linear_A, + \\ Mahajani, + \\ Manichaean, + \\ Mende_Kikakui, + \\ Modi, + \\ Mro, + \\ Old_North_Arabian, + \\ Nabataean, + \\ Palmyrene, + \\ Pau_Cin_Hau, + \\ Old_Permic, + \\ Psalter_Pahlavi, + \\ Siddham, + \\ Khudawadi, + \\ Tirhuta, + \\ Warang_Citi, + \\ Ahom, + \\ Anatolian_Hieroglyphs, + \\ Hatran, + \\ Multani, + \\ Old_Hungarian, + \\ SignWriting, + \\ Adlam, + \\ Bhaiksuki, + \\ Marchen, + \\ Newa, + \\ Osage, + \\ Tangut, + \\ Masaram_Gondi, + \\ Nushu, + \\ Soyombo, + \\ Zanabazar_Square, + \\ Dogra, + \\ Gunjala_Gondi, + \\ Makasar, + \\ Medefaidrin, + \\ Hanifi_Rohingya, + \\ Sogdian, + \\ Old_Sogdian, + \\ Elymaic, + \\ Nandinagari, + \\ Nyiakeng_Puachue_Hmong, + \\ Wancho, + \\ Chorasmian, + \\ Dives_Akuru, + \\ Khitan_Small_Script, + \\ Yezidi, + \\ }, + \\}; + \\ + \\pub const data = [_]Scripts{ + \\ + ; + + pub const dest_footer = + \\}; + \\ + ; + + pub fn exec(alloc: std.mem.Allocator, line: []const u8, writer: anytype) !bool { + _ = alloc; + var it = std.mem.tokenize(u8, line, "; "); + + const first = it.next().?; + const next = it.next().?; + + if (std.mem.indexOf(u8, first, "..")) |index| { + const start = first[0..index]; + const end = first[index + 2 ..]; + try writer.print(" .{{ .from = 0x{s}, .to = 0x{s}, .script = .{s} }},\n", .{ start, end, next }); + } else { + try writer.print(" .{{ .from = 0x{s}, .to = 0x{s}, .script = .{s} }},\n", .{ first, first, next }); + } + + return true; + } +}); diff --git a/src/lib.zig b/src/lib.zig index 5a66ae975964311ce2bbfcb692034d7c09917009..5eeb712b62299531301df36e3daae3b0cf17eeab 100644 --- a/src/lib.zig +++ b/src/lib.zig @@ -27,3 +27,7 @@ pub const named_sequences_prov = @import("./named_sequences_prov.zig"); // NormalizationTest.txt // NushuSources.txt pub const prop_list = @import("./prop_list.zig"); +// PropertyAliases.txt +// PropertyValueAliases.txt +// ScriptExtensions.txt +pub const scripts = @import("./scripts.zig"); diff --git a/src/main.zig b/src/main.zig index 58c6f858a18bac6520ea6d76035b2249b478ae37..a80128b85f9549e6e42018a70a8d870eea72ea3f 100644 --- a/src/main.zig +++ b/src/main.zig @@ -27,6 +27,7 @@ pub fn main() !void { ucd.named_sequences, ucd.named_sequences_prov, ucd.prop_list, + ucd.scripts, }; inline for (data) |b| { diff --git a/src/scripts.zig b/src/scripts.zig new file mode 100644 index 0000000000000000000000000000000000000000..b048f9b71ed9b72a031c202917c3d758028698d5 --- /dev/null +++ b/src/scripts.zig @@ -0,0 +1,2267 @@ +// This file is part of the Unicode Character Database +// For documentation, see http://www.unicode.org/reports/tr44/ +// +// Based on the source file: https://unicode.org/Public/13.0.0/ucd/Scripts.txt +// +// zig fmt: off + +pub const Scripts = struct { + from: u21, + to: u21, + script: enum { + Common, + Latin, + Greek, + Cyrillic, + Armenian, + Hebrew, + Arabic, + Syriac, + Thaana, + Devanagari, + Bengali, + Gurmukhi, + Gujarati, + Oriya, + Tamil, + Telugu, + Kannada, + Malayalam, + Sinhala, + Thai, + Lao, + Tibetan, + Myanmar, + Georgian, + Hangul, + Ethiopic, + Cherokee, + Canadian_Aboriginal, + Ogham, + Runic, + Khmer, + Mongolian, + Hiragana, + Katakana, + Bopomofo, + Han, + Yi, + Old_Italic, + Gothic, + Deseret, + Inherited, + Tagalog, + Hanunoo, + Buhid, + Tagbanwa, + Limbu, + Tai_Le, + Linear_B, + Ugaritic, + Shavian, + Osmanya, + Cypriot, + Braille, + Buginese, + Coptic, + New_Tai_Lue, + Glagolitic, + Tifinagh, + Syloti_Nagri, + Old_Persian, + Kharoshthi, + Balinese, + Cuneiform, + Phoenician, + Phags_Pa, + Nko, + Sundanese, + Lepcha, + Ol_Chiki, + Vai, + Saurashtra, + Kayah_Li, + Rejang, + Lycian, + Carian, + Lydian, + Cham, + Tai_Tham, + Tai_Viet, + Avestan, + Egyptian_Hieroglyphs, + Samaritan, + Lisu, + Bamum, + Javanese, + Meetei_Mayek, + Imperial_Aramaic, + Old_South_Arabian, + Inscriptional_Parthian, + Inscriptional_Pahlavi, + Old_Turkic, + Kaithi, + Batak, + Brahmi, + Mandaic, + Chakma, + Meroitic_Cursive, + Meroitic_Hieroglyphs, + Miao, + Sharada, + Sora_Sompeng, + Takri, + Caucasian_Albanian, + Bassa_Vah, + Duployan, + Elbasan, + Grantha, + Pahawh_Hmong, + Khojki, + Linear_A, + Mahajani, + Manichaean, + Mende_Kikakui, + Modi, + Mro, + Old_North_Arabian, + Nabataean, + Palmyrene, + Pau_Cin_Hau, + Old_Permic, + Psalter_Pahlavi, + Siddham, + Khudawadi, + Tirhuta, + Warang_Citi, + Ahom, + Anatolian_Hieroglyphs, + Hatran, + Multani, + Old_Hungarian, + SignWriting, + Adlam, + Bhaiksuki, + Marchen, + Newa, + Osage, + Tangut, + Masaram_Gondi, + Nushu, + Soyombo, + Zanabazar_Square, + Dogra, + Gunjala_Gondi, + Makasar, + Medefaidrin, + Hanifi_Rohingya, + Sogdian, + Old_Sogdian, + Elymaic, + Nandinagari, + Nyiakeng_Puachue_Hmong, + Wancho, + Chorasmian, + Dives_Akuru, + Khitan_Small_Script, + Yezidi, + }, +}; + +pub const data = [_]Scripts{ + .{ .from = 0x0000, .to = 0x001F, .script = .Common }, + .{ .from = 0x0020, .to = 0x0020, .script = .Common }, + .{ .from = 0x0021, .to = 0x0023, .script = .Common }, + .{ .from = 0x0024, .to = 0x0024, .script = .Common }, + .{ .from = 0x0025, .to = 0x0027, .script = .Common }, + .{ .from = 0x0028, .to = 0x0028, .script = .Common }, + .{ .from = 0x0029, .to = 0x0029, .script = .Common }, + .{ .from = 0x002A, .to = 0x002A, .script = .Common }, + .{ .from = 0x002B, .to = 0x002B, .script = .Common }, + .{ .from = 0x002C, .to = 0x002C, .script = .Common }, + .{ .from = 0x002D, .to = 0x002D, .script = .Common }, + .{ .from = 0x002E, .to = 0x002F, .script = .Common }, + .{ .from = 0x0030, .to = 0x0039, .script = .Common }, + .{ .from = 0x003A, .to = 0x003B, .script = .Common }, + .{ .from = 0x003C, .to = 0x003E, .script = .Common }, + .{ .from = 0x003F, .to = 0x0040, .script = .Common }, + .{ .from = 0x005B, .to = 0x005B, .script = .Common }, + .{ .from = 0x005C, .to = 0x005C, .script = .Common }, + .{ .from = 0x005D, .to = 0x005D, .script = .Common }, + .{ .from = 0x005E, .to = 0x005E, .script = .Common }, + .{ .from = 0x005F, .to = 0x005F, .script = .Common }, + .{ .from = 0x0060, .to = 0x0060, .script = .Common }, + .{ .from = 0x007B, .to = 0x007B, .script = .Common }, + .{ .from = 0x007C, .to = 0x007C, .script = .Common }, + .{ .from = 0x007D, .to = 0x007D, .script = .Common }, + .{ .from = 0x007E, .to = 0x007E, .script = .Common }, + .{ .from = 0x007F, .to = 0x009F, .script = .Common }, + .{ .from = 0x00A0, .to = 0x00A0, .script = .Common }, + .{ .from = 0x00A1, .to = 0x00A1, .script = .Common }, + .{ .from = 0x00A2, .to = 0x00A5, .script = .Common }, + .{ .from = 0x00A6, .to = 0x00A6, .script = .Common }, + .{ .from = 0x00A7, .to = 0x00A7, .script = .Common }, + .{ .from = 0x00A8, .to = 0x00A8, .script = .Common }, + .{ .from = 0x00A9, .to = 0x00A9, .script = .Common }, + .{ .from = 0x00AB, .to = 0x00AB, .script = .Common }, + .{ .from = 0x00AC, .to = 0x00AC, .script = .Common }, + .{ .from = 0x00AD, .to = 0x00AD, .script = .Common }, + .{ .from = 0x00AE, .to = 0x00AE, .script = .Common }, + .{ .from = 0x00AF, .to = 0x00AF, .script = .Common }, + .{ .from = 0x00B0, .to = 0x00B0, .script = .Common }, + .{ .from = 0x00B1, .to = 0x00B1, .script = .Common }, + .{ .from = 0x00B2, .to = 0x00B3, .script = .Common }, + .{ .from = 0x00B4, .to = 0x00B4, .script = .Common }, + .{ .from = 0x00B5, .to = 0x00B5, .script = .Common }, + .{ .from = 0x00B6, .to = 0x00B7, .script = .Common }, + .{ .from = 0x00B8, .to = 0x00B8, .script = .Common }, + .{ .from = 0x00B9, .to = 0x00B9, .script = .Common }, + .{ .from = 0x00BB, .to = 0x00BB, .script = .Common }, + .{ .from = 0x00BC, .to = 0x00BE, .script = .Common }, + .{ .from = 0x00BF, .to = 0x00BF, .script = .Common }, + .{ .from = 0x00D7, .to = 0x00D7, .script = .Common }, + .{ .from = 0x00F7, .to = 0x00F7, .script = .Common }, + .{ .from = 0x02B9, .to = 0x02C1, .script = .Common }, + .{ .from = 0x02C2, .to = 0x02C5, .script = .Common }, + .{ .from = 0x02C6, .to = 0x02D1, .script = .Common }, + .{ .from = 0x02D2, .to = 0x02DF, .script = .Common }, + .{ .from = 0x02E5, .to = 0x02E9, .script = .Common }, + .{ .from = 0x02EC, .to = 0x02EC, .script = .Common }, + .{ .from = 0x02ED, .to = 0x02ED, .script = .Common }, + .{ .from = 0x02EE, .to = 0x02EE, .script = .Common }, + .{ .from = 0x02EF, .to = 0x02FF, .script = .Common }, + .{ .from = 0x0374, .to = 0x0374, .script = .Common }, + .{ .from = 0x037E, .to = 0x037E, .script = .Common }, + .{ .from = 0x0385, .to = 0x0385, .script = .Common }, + .{ .from = 0x0387, .to = 0x0387, .script = .Common }, + .{ .from = 0x0605, .to = 0x0605, .script = .Common }, + .{ .from = 0x060C, .to = 0x060C, .script = .Common }, + .{ .from = 0x061B, .to = 0x061B, .script = .Common }, + .{ .from = 0x061F, .to = 0x061F, .script = .Common }, + .{ .from = 0x0640, .to = 0x0640, .script = .Common }, + .{ .from = 0x06DD, .to = 0x06DD, .script = .Common }, + .{ .from = 0x08E2, .to = 0x08E2, .script = .Common }, + .{ .from = 0x0964, .to = 0x0965, .script = .Common }, + .{ .from = 0x0E3F, .to = 0x0E3F, .script = .Common }, + .{ .from = 0x0FD5, .to = 0x0FD8, .script = .Common }, + .{ .from = 0x10FB, .to = 0x10FB, .script = .Common }, + .{ .from = 0x16EB, .to = 0x16ED, .script = .Common }, + .{ .from = 0x1735, .to = 0x1736, .script = .Common }, + .{ .from = 0x1802, .to = 0x1803, .script = .Common }, + .{ .from = 0x1805, .to = 0x1805, .script = .Common }, + .{ .from = 0x1CD3, .to = 0x1CD3, .script = .Common }, + .{ .from = 0x1CE1, .to = 0x1CE1, .script = .Common }, + .{ .from = 0x1CE9, .to = 0x1CEC, .script = .Common }, + .{ .from = 0x1CEE, .to = 0x1CF3, .script = .Common }, + .{ .from = 0x1CF5, .to = 0x1CF6, .script = .Common }, + .{ .from = 0x1CF7, .to = 0x1CF7, .script = .Common }, + .{ .from = 0x1CFA, .to = 0x1CFA, .script = .Common }, + .{ .from = 0x2000, .to = 0x200A, .script = .Common }, + .{ .from = 0x200B, .to = 0x200B, .script = .Common }, + .{ .from = 0x200E, .to = 0x200F, .script = .Common }, + .{ .from = 0x2010, .to = 0x2015, .script = .Common }, + .{ .from = 0x2016, .to = 0x2017, .script = .Common }, + .{ .from = 0x2018, .to = 0x2018, .script = .Common }, + .{ .from = 0x2019, .to = 0x2019, .script = .Common }, + .{ .from = 0x201A, .to = 0x201A, .script = .Common }, + .{ .from = 0x201B, .to = 0x201C, .script = .Common }, + .{ .from = 0x201D, .to = 0x201D, .script = .Common }, + .{ .from = 0x201E, .to = 0x201E, .script = .Common }, + .{ .from = 0x201F, .to = 0x201F, .script = .Common }, + .{ .from = 0x2020, .to = 0x2027, .script = .Common }, + .{ .from = 0x2028, .to = 0x2028, .script = .Common }, + .{ .from = 0x2029, .to = 0x2029, .script = .Common }, + .{ .from = 0x202A, .to = 0x202E, .script = .Common }, + .{ .from = 0x202F, .to = 0x202F, .script = .Common }, + .{ .from = 0x2030, .to = 0x2038, .script = .Common }, + .{ .from = 0x2039, .to = 0x2039, .script = .Common }, + .{ .from = 0x203A, .to = 0x203A, .script = .Common }, + .{ .from = 0x203B, .to = 0x203E, .script = .Common }, + .{ .from = 0x203F, .to = 0x2040, .script = .Common }, + .{ .from = 0x2041, .to = 0x2043, .script = .Common }, + .{ .from = 0x2044, .to = 0x2044, .script = .Common }, + .{ .from = 0x2045, .to = 0x2045, .script = .Common }, + .{ .from = 0x2046, .to = 0x2046, .script = .Common }, + .{ .from = 0x2047, .to = 0x2051, .script = .Common }, + .{ .from = 0x2052, .to = 0x2052, .script = .Common }, + .{ .from = 0x2053, .to = 0x2053, .script = .Common }, + .{ .from = 0x2054, .to = 0x2054, .script = .Common }, + .{ .from = 0x2055, .to = 0x205E, .script = .Common }, + .{ .from = 0x205F, .to = 0x205F, .script = .Common }, + .{ .from = 0x2060, .to = 0x2064, .script = .Common }, + .{ .from = 0x2066, .to = 0x206F, .script = .Common }, + .{ .from = 0x2070, .to = 0x2070, .script = .Common }, + .{ .from = 0x2074, .to = 0x2079, .script = .Common }, + .{ .from = 0x207A, .to = 0x207C, .script = .Common }, + .{ .from = 0x207D, .to = 0x207D, .script = .Common }, + .{ .from = 0x207E, .to = 0x207E, .script = .Common }, + .{ .from = 0x2080, .to = 0x2089, .script = .Common }, + .{ .from = 0x208A, .to = 0x208C, .script = .Common }, + .{ .from = 0x208D, .to = 0x208D, .script = .Common }, + .{ .from = 0x208E, .to = 0x208E, .script = .Common }, + .{ .from = 0x20A0, .to = 0x20BF, .script = .Common }, + .{ .from = 0x2100, .to = 0x2101, .script = .Common }, + .{ .from = 0x2102, .to = 0x2102, .script = .Common }, + .{ .from = 0x2103, .to = 0x2106, .script = .Common }, + .{ .from = 0x2107, .to = 0x2107, .script = .Common }, + .{ .from = 0x2108, .to = 0x2109, .script = .Common }, + .{ .from = 0x210A, .to = 0x2113, .script = .Common }, + .{ .from = 0x2114, .to = 0x2114, .script = .Common }, + .{ .from = 0x2115, .to = 0x2115, .script = .Common }, + .{ .from = 0x2116, .to = 0x2117, .script = .Common }, + .{ .from = 0x2118, .to = 0x2118, .script = .Common }, + .{ .from = 0x2119, .to = 0x211D, .script = .Common }, + .{ .from = 0x211E, .to = 0x2123, .script = .Common }, + .{ .from = 0x2124, .to = 0x2124, .script = .Common }, + .{ .from = 0x2125, .to = 0x2125, .script = .Common }, + .{ .from = 0x2127, .to = 0x2127, .script = .Common }, + .{ .from = 0x2128, .to = 0x2128, .script = .Common }, + .{ .from = 0x2129, .to = 0x2129, .script = .Common }, + .{ .from = 0x212C, .to = 0x212D, .script = .Common }, + .{ .from = 0x212E, .to = 0x212E, .script = .Common }, + .{ .from = 0x212F, .to = 0x2131, .script = .Common }, + .{ .from = 0x2133, .to = 0x2134, .script = .Common }, + .{ .from = 0x2135, .to = 0x2138, .script = .Common }, + .{ .from = 0x2139, .to = 0x2139, .script = .Common }, + .{ .from = 0x213A, .to = 0x213B, .script = .Common }, + .{ .from = 0x213C, .to = 0x213F, .script = .Common }, + .{ .from = 0x2140, .to = 0x2144, .script = .Common }, + .{ .from = 0x2145, .to = 0x2149, .script = .Common }, + .{ .from = 0x214A, .to = 0x214A, .script = .Common }, + .{ .from = 0x214B, .to = 0x214B, .script = .Common }, + .{ .from = 0x214C, .to = 0x214D, .script = .Common }, + .{ .from = 0x214F, .to = 0x214F, .script = .Common }, + .{ .from = 0x2150, .to = 0x215F, .script = .Common }, + .{ .from = 0x2189, .to = 0x2189, .script = .Common }, + .{ .from = 0x218A, .to = 0x218B, .script = .Common }, + .{ .from = 0x2190, .to = 0x2194, .script = .Common }, + .{ .from = 0x2195, .to = 0x2199, .script = .Common }, + .{ .from = 0x219A, .to = 0x219B, .script = .Common }, + .{ .from = 0x219C, .to = 0x219F, .script = .Common }, + .{ .from = 0x21A0, .to = 0x21A0, .script = .Common }, + .{ .from = 0x21A1, .to = 0x21A2, .script = .Common }, + .{ .from = 0x21A3, .to = 0x21A3, .script = .Common }, + .{ .from = 0x21A4, .to = 0x21A5, .script = .Common }, + .{ .from = 0x21A6, .to = 0x21A6, .script = .Common }, + .{ .from = 0x21A7, .to = 0x21AD, .script = .Common }, + .{ .from = 0x21AE, .to = 0x21AE, .script = .Common }, + .{ .from = 0x21AF, .to = 0x21CD, .script = .Common }, + .{ .from = 0x21CE, .to = 0x21CF, .script = .Common }, + .{ .from = 0x21D0, .to = 0x21D1, .script = .Common }, + .{ .from = 0x21D2, .to = 0x21D2, .script = .Common }, + .{ .from = 0x21D3, .to = 0x21D3, .script = .Common }, + .{ .from = 0x21D4, .to = 0x21D4, .script = .Common }, + .{ .from = 0x21D5, .to = 0x21F3, .script = .Common }, + .{ .from = 0x21F4, .to = 0x22FF, .script = .Common }, + .{ .from = 0x2300, .to = 0x2307, .script = .Common }, + .{ .from = 0x2308, .to = 0x2308, .script = .Common }, + .{ .from = 0x2309, .to = 0x2309, .script = .Common }, + .{ .from = 0x230A, .to = 0x230A, .script = .Common }, + .{ .from = 0x230B, .to = 0x230B, .script = .Common }, + .{ .from = 0x230C, .to = 0x231F, .script = .Common }, + .{ .from = 0x2320, .to = 0x2321, .script = .Common }, + .{ .from = 0x2322, .to = 0x2328, .script = .Common }, + .{ .from = 0x2329, .to = 0x2329, .script = .Common }, + .{ .from = 0x232A, .to = 0x232A, .script = .Common }, + .{ .from = 0x232B, .to = 0x237B, .script = .Common }, + .{ .from = 0x237C, .to = 0x237C, .script = .Common }, + .{ .from = 0x237D, .to = 0x239A, .script = .Common }, + .{ .from = 0x239B, .to = 0x23B3, .script = .Common }, + .{ .from = 0x23B4, .to = 0x23DB, .script = .Common }, + .{ .from = 0x23DC, .to = 0x23E1, .script = .Common }, + .{ .from = 0x23E2, .to = 0x2426, .script = .Common }, + .{ .from = 0x2440, .to = 0x244A, .script = .Common }, + .{ .from = 0x2460, .to = 0x249B, .script = .Common }, + .{ .from = 0x249C, .to = 0x24E9, .script = .Common }, + .{ .from = 0x24EA, .to = 0x24FF, .script = .Common }, + .{ .from = 0x2500, .to = 0x25B6, .script = .Common }, + .{ .from = 0x25B7, .to = 0x25B7, .script = .Common }, + .{ .from = 0x25B8, .to = 0x25C0, .script = .Common }, + .{ .from = 0x25C1, .to = 0x25C1, .script = .Common }, + .{ .from = 0x25C2, .to = 0x25F7, .script = .Common }, + .{ .from = 0x25F8, .to = 0x25FF, .script = .Common }, + .{ .from = 0x2600, .to = 0x266E, .script = .Common }, + .{ .from = 0x266F, .to = 0x266F, .script = .Common }, + .{ .from = 0x2670, .to = 0x2767, .script = .Common }, + .{ .from = 0x2768, .to = 0x2768, .script = .Common }, + .{ .from = 0x2769, .to = 0x2769, .script = .Common }, + .{ .from = 0x276A, .to = 0x276A, .script = .Common }, + .{ .from = 0x276B, .to = 0x276B, .script = .Common }, + .{ .from = 0x276C, .to = 0x276C, .script = .Common }, + .{ .from = 0x276D, .to = 0x276D, .script = .Common }, + .{ .from = 0x276E, .to = 0x276E, .script = .Common }, + .{ .from = 0x276F, .to = 0x276F, .script = .Common }, + .{ .from = 0x2770, .to = 0x2770, .script = .Common }, + .{ .from = 0x2771, .to = 0x2771, .script = .Common }, + .{ .from = 0x2772, .to = 0x2772, .script = .Common }, + .{ .from = 0x2773, .to = 0x2773, .script = .Common }, + .{ .from = 0x2774, .to = 0x2774, .script = .Common }, + .{ .from = 0x2775, .to = 0x2775, .script = .Common }, + .{ .from = 0x2776, .to = 0x2793, .script = .Common }, + .{ .from = 0x2794, .to = 0x27BF, .script = .Common }, + .{ .from = 0x27C0, .to = 0x27C4, .script = .Common }, + .{ .from = 0x27C5, .to = 0x27C5, .script = .Common }, + .{ .from = 0x27C6, .to = 0x27C6, .script = .Common }, + .{ .from = 0x27C7, .to = 0x27E5, .script = .Common }, + .{ .from = 0x27E6, .to = 0x27E6, .script = .Common }, + .{ .from = 0x27E7, .to = 0x27E7, .script = .Common }, + .{ .from = 0x27E8, .to = 0x27E8, .script = .Common }, + .{ .from = 0x27E9, .to = 0x27E9, .script = .Common }, + .{ .from = 0x27EA, .to = 0x27EA, .script = .Common }, + .{ .from = 0x27EB, .to = 0x27EB, .script = .Common }, + .{ .from = 0x27EC, .to = 0x27EC, .script = .Common }, + .{ .from = 0x27ED, .to = 0x27ED, .script = .Common }, + .{ .from = 0x27EE, .to = 0x27EE, .script = .Common }, + .{ .from = 0x27EF, .to = 0x27EF, .script = .Common }, + .{ .from = 0x27F0, .to = 0x27FF, .script = .Common }, + .{ .from = 0x2900, .to = 0x2982, .script = .Common }, + .{ .from = 0x2983, .to = 0x2983, .script = .Common }, + .{ .from = 0x2984, .to = 0x2984, .script = .Common }, + .{ .from = 0x2985, .to = 0x2985, .script = .Common }, + .{ .from = 0x2986, .to = 0x2986, .script = .Common }, + .{ .from = 0x2987, .to = 0x2987, .script = .Common }, + .{ .from = 0x2988, .to = 0x2988, .script = .Common }, + .{ .from = 0x2989, .to = 0x2989, .script = .Common }, + .{ .from = 0x298A, .to = 0x298A, .script = .Common }, + .{ .from = 0x298B, .to = 0x298B, .script = .Common }, + .{ .from = 0x298C, .to = 0x298C, .script = .Common }, + .{ .from = 0x298D, .to = 0x298D, .script = .Common }, + .{ .from = 0x298E, .to = 0x298E, .script = .Common }, + .{ .from = 0x298F, .to = 0x298F, .script = .Common }, + .{ .from = 0x2990, .to = 0x2990, .script = .Common }, + .{ .from = 0x2991, .to = 0x2991, .script = .Common }, + .{ .from = 0x2992, .to = 0x2992, .script = .Common }, + .{ .from = 0x2993, .to = 0x2993, .script = .Common }, + .{ .from = 0x2994, .to = 0x2994, .script = .Common }, + .{ .from = 0x2995, .to = 0x2995, .script = .Common }, + .{ .from = 0x2996, .to = 0x2996, .script = .Common }, + .{ .from = 0x2997, .to = 0x2997, .script = .Common }, + .{ .from = 0x2998, .to = 0x2998, .script = .Common }, + .{ .from = 0x2999, .to = 0x29D7, .script = .Common }, + .{ .from = 0x29D8, .to = 0x29D8, .script = .Common }, + .{ .from = 0x29D9, .to = 0x29D9, .script = .Common }, + .{ .from = 0x29DA, .to = 0x29DA, .script = .Common }, + .{ .from = 0x29DB, .to = 0x29DB, .script = .Common }, + .{ .from = 0x29DC, .to = 0x29FB, .script = .Common }, + .{ .from = 0x29FC, .to = 0x29FC, .script = .Common }, + .{ .from = 0x29FD, .to = 0x29FD, .script = .Common }, + .{ .from = 0x29FE, .to = 0x2AFF, .script = .Common }, + .{ .from = 0x2B00, .to = 0x2B2F, .script = .Common }, + .{ .from = 0x2B30, .to = 0x2B44, .script = .Common }, + .{ .from = 0x2B45, .to = 0x2B46, .script = .Common }, + .{ .from = 0x2B47, .to = 0x2B4C, .script = .Common }, + .{ .from = 0x2B4D, .to = 0x2B73, .script = .Common }, + .{ .from = 0x2B76, .to = 0x2B95, .script = .Common }, + .{ .from = 0x2B97, .to = 0x2BFF, .script = .Common }, + .{ .from = 0x2E00, .to = 0x2E01, .script = .Common }, + .{ .from = 0x2E02, .to = 0x2E02, .script = .Common }, + .{ .from = 0x2E03, .to = 0x2E03, .script = .Common }, + .{ .from = 0x2E04, .to = 0x2E04, .script = .Common }, + .{ .from = 0x2E05, .to = 0x2E05, .script = .Common }, + .{ .from = 0x2E06, .to = 0x2E08, .script = .Common }, + .{ .from = 0x2E09, .to = 0x2E09, .script = .Common }, + .{ .from = 0x2E0A, .to = 0x2E0A, .script = .Common }, + .{ .from = 0x2E0B, .to = 0x2E0B, .script = .Common }, + .{ .from = 0x2E0C, .to = 0x2E0C, .script = .Common }, + .{ .from = 0x2E0D, .to = 0x2E0D, .script = .Common }, + .{ .from = 0x2E0E, .to = 0x2E16, .script = .Common }, + .{ .from = 0x2E17, .to = 0x2E17, .script = .Common }, + .{ .from = 0x2E18, .to = 0x2E19, .script = .Common }, + .{ .from = 0x2E1A, .to = 0x2E1A, .script = .Common }, + .{ .from = 0x2E1B, .to = 0x2E1B, .script = .Common }, + .{ .from = 0x2E1C, .to = 0x2E1C, .script = .Common }, + .{ .from = 0x2E1D, .to = 0x2E1D, .script = .Common }, + .{ .from = 0x2E1E, .to = 0x2E1F, .script = .Common }, + .{ .from = 0x2E20, .to = 0x2E20, .script = .Common }, + .{ .from = 0x2E21, .to = 0x2E21, .script = .Common }, + .{ .from = 0x2E22, .to = 0x2E22, .script = .Common }, + .{ .from = 0x2E23, .to = 0x2E23, .script = .Common }, + .{ .from = 0x2E24, .to = 0x2E24, .script = .Common }, + .{ .from = 0x2E25, .to = 0x2E25, .script = .Common }, + .{ .from = 0x2E26, .to = 0x2E26, .script = .Common }, + .{ .from = 0x2E27, .to = 0x2E27, .script = .Common }, + .{ .from = 0x2E28, .to = 0x2E28, .script = .Common }, + .{ .from = 0x2E29, .to = 0x2E29, .script = .Common }, + .{ .from = 0x2E2A, .to = 0x2E2E, .script = .Common }, + .{ .from = 0x2E2F, .to = 0x2E2F, .script = .Common }, + .{ .from = 0x2E30, .to = 0x2E39, .script = .Common }, + .{ .from = 0x2E3A, .to = 0x2E3B, .script = .Common }, + .{ .from = 0x2E3C, .to = 0x2E3F, .script = .Common }, + .{ .from = 0x2E40, .to = 0x2E40, .script = .Common }, + .{ .from = 0x2E41, .to = 0x2E41, .script = .Common }, + .{ .from = 0x2E42, .to = 0x2E42, .script = .Common }, + .{ .from = 0x2E43, .to = 0x2E4F, .script = .Common }, + .{ .from = 0x2E50, .to = 0x2E51, .script = .Common }, + .{ .from = 0x2E52, .to = 0x2E52, .script = .Common }, + .{ .from = 0x2FF0, .to = 0x2FFB, .script = .Common }, + .{ .from = 0x3000, .to = 0x3000, .script = .Common }, + .{ .from = 0x3001, .to = 0x3003, .script = .Common }, + .{ .from = 0x3004, .to = 0x3004, .script = .Common }, + .{ .from = 0x3006, .to = 0x3006, .script = .Common }, + .{ .from = 0x3008, .to = 0x3008, .script = .Common }, + .{ .from = 0x3009, .to = 0x3009, .script = .Common }, + .{ .from = 0x300A, .to = 0x300A, .script = .Common }, + .{ .from = 0x300B, .to = 0x300B, .script = .Common }, + .{ .from = 0x300C, .to = 0x300C, .script = .Common }, + .{ .from = 0x300D, .to = 0x300D, .script = .Common }, + .{ .from = 0x300E, .to = 0x300E, .script = .Common }, + .{ .from = 0x300F, .to = 0x300F, .script = .Common }, + .{ .from = 0x3010, .to = 0x3010, .script = .Common }, + .{ .from = 0x3011, .to = 0x3011, .script = .Common }, + .{ .from = 0x3012, .to = 0x3013, .script = .Common }, + .{ .from = 0x3014, .to = 0x3014, .script = .Common }, + .{ .from = 0x3015, .to = 0x3015, .script = .Common }, + .{ .from = 0x3016, .to = 0x3016, .script = .Common }, + .{ .from = 0x3017, .to = 0x3017, .script = .Common }, + .{ .from = 0x3018, .to = 0x3018, .script = .Common }, + .{ .from = 0x3019, .to = 0x3019, .script = .Common }, + .{ .from = 0x301A, .to = 0x301A, .script = .Common }, + .{ .from = 0x301B, .to = 0x301B, .script = .Common }, + .{ .from = 0x301C, .to = 0x301C, .script = .Common }, + .{ .from = 0x301D, .to = 0x301D, .script = .Common }, + .{ .from = 0x301E, .to = 0x301F, .script = .Common }, + .{ .from = 0x3020, .to = 0x3020, .script = .Common }, + .{ .from = 0x3030, .to = 0x3030, .script = .Common }, + .{ .from = 0x3031, .to = 0x3035, .script = .Common }, + .{ .from = 0x3036, .to = 0x3037, .script = .Common }, + .{ .from = 0x303C, .to = 0x303C, .script = .Common }, + .{ .from = 0x303D, .to = 0x303D, .script = .Common }, + .{ .from = 0x303E, .to = 0x303F, .script = .Common }, + .{ .from = 0x309B, .to = 0x309C, .script = .Common }, + .{ .from = 0x30A0, .to = 0x30A0, .script = .Common }, + .{ .from = 0x30FB, .to = 0x30FB, .script = .Common }, + .{ .from = 0x30FC, .to = 0x30FC, .script = .Common }, + .{ .from = 0x3190, .to = 0x3191, .script = .Common }, + .{ .from = 0x3192, .to = 0x3195, .script = .Common }, + .{ .from = 0x3196, .to = 0x319F, .script = .Common }, + .{ .from = 0x31C0, .to = 0x31E3, .script = .Common }, + .{ .from = 0x3220, .to = 0x3229, .script = .Common }, + .{ .from = 0x322A, .to = 0x3247, .script = .Common }, + .{ .from = 0x3248, .to = 0x324F, .script = .Common }, + .{ .from = 0x3250, .to = 0x3250, .script = .Common }, + .{ .from = 0x3251, .to = 0x325F, .script = .Common }, + .{ .from = 0x327F, .to = 0x327F, .script = .Common }, + .{ .from = 0x3280, .to = 0x3289, .script = .Common }, + .{ .from = 0x328A, .to = 0x32B0, .script = .Common }, + .{ .from = 0x32B1, .to = 0x32BF, .script = .Common }, + .{ .from = 0x32C0, .to = 0x32CF, .script = .Common }, + .{ .from = 0x32FF, .to = 0x32FF, .script = .Common }, + .{ .from = 0x3358, .to = 0x33FF, .script = .Common }, + .{ .from = 0x4DC0, .to = 0x4DFF, .script = .Common }, + .{ .from = 0xA700, .to = 0xA716, .script = .Common }, + .{ .from = 0xA717, .to = 0xA71F, .script = .Common }, + .{ .from = 0xA720, .to = 0xA721, .script = .Common }, + .{ .from = 0xA788, .to = 0xA788, .script = .Common }, + .{ .from = 0xA789, .to = 0xA78A, .script = .Common }, + .{ .from = 0xA830, .to = 0xA835, .script = .Common }, + .{ .from = 0xA836, .to = 0xA837, .script = .Common }, + .{ .from = 0xA838, .to = 0xA838, .script = .Common }, + .{ .from = 0xA839, .to = 0xA839, .script = .Common }, + .{ .from = 0xA92E, .to = 0xA92E, .script = .Common }, + .{ .from = 0xA9CF, .to = 0xA9CF, .script = .Common }, + .{ .from = 0xAB5B, .to = 0xAB5B, .script = .Common }, + .{ .from = 0xAB6A, .to = 0xAB6B, .script = .Common }, + .{ .from = 0xFD3E, .to = 0xFD3E, .script = .Common }, + .{ .from = 0xFD3F, .to = 0xFD3F, .script = .Common }, + .{ .from = 0xFE10, .to = 0xFE16, .script = .Common }, + .{ .from = 0xFE17, .to = 0xFE17, .script = .Common }, + .{ .from = 0xFE18, .to = 0xFE18, .script = .Common }, + .{ .from = 0xFE19, .to = 0xFE19, .script = .Common }, + .{ .from = 0xFE30, .to = 0xFE30, .script = .Common }, + .{ .from = 0xFE31, .to = 0xFE32, .script = .Common }, + .{ .from = 0xFE33, .to = 0xFE34, .script = .Common }, + .{ .from = 0xFE35, .to = 0xFE35, .script = .Common }, + .{ .from = 0xFE36, .to = 0xFE36, .script = .Common }, + .{ .from = 0xFE37, .to = 0xFE37, .script = .Common }, + .{ .from = 0xFE38, .to = 0xFE38, .script = .Common }, + .{ .from = 0xFE39, .to = 0xFE39, .script = .Common }, + .{ .from = 0xFE3A, .to = 0xFE3A, .script = .Common }, + .{ .from = 0xFE3B, .to = 0xFE3B, .script = .Common }, + .{ .from = 0xFE3C, .to = 0xFE3C, .script = .Common }, + .{ .from = 0xFE3D, .to = 0xFE3D, .script = .Common }, + .{ .from = 0xFE3E, .to = 0xFE3E, .script = .Common }, + .{ .from = 0xFE3F, .to = 0xFE3F, .script = .Common }, + .{ .from = 0xFE40, .to = 0xFE40, .script = .Common }, + .{ .from = 0xFE41, .to = 0xFE41, .script = .Common }, + .{ .from = 0xFE42, .to = 0xFE42, .script = .Common }, + .{ .from = 0xFE43, .to = 0xFE43, .script = .Common }, + .{ .from = 0xFE44, .to = 0xFE44, .script = .Common }, + .{ .from = 0xFE45, .to = 0xFE46, .script = .Common }, + .{ .from = 0xFE47, .to = 0xFE47, .script = .Common }, + .{ .from = 0xFE48, .to = 0xFE48, .script = .Common }, + .{ .from = 0xFE49, .to = 0xFE4C, .script = .Common }, + .{ .from = 0xFE4D, .to = 0xFE4F, .script = .Common }, + .{ .from = 0xFE50, .to = 0xFE52, .script = .Common }, + .{ .from = 0xFE54, .to = 0xFE57, .script = .Common }, + .{ .from = 0xFE58, .to = 0xFE58, .script = .Common }, + .{ .from = 0xFE59, .to = 0xFE59, .script = .Common }, + .{ .from = 0xFE5A, .to = 0xFE5A, .script = .Common }, + .{ .from = 0xFE5B, .to = 0xFE5B, .script = .Common }, + .{ .from = 0xFE5C, .to = 0xFE5C, .script = .Common }, + .{ .from = 0xFE5D, .to = 0xFE5D, .script = .Common }, + .{ .from = 0xFE5E, .to = 0xFE5E, .script = .Common }, + .{ .from = 0xFE5F, .to = 0xFE61, .script = .Common }, + .{ .from = 0xFE62, .to = 0xFE62, .script = .Common }, + .{ .from = 0xFE63, .to = 0xFE63, .script = .Common }, + .{ .from = 0xFE64, .to = 0xFE66, .script = .Common }, + .{ .from = 0xFE68, .to = 0xFE68, .script = .Common }, + .{ .from = 0xFE69, .to = 0xFE69, .script = .Common }, + .{ .from = 0xFE6A, .to = 0xFE6B, .script = .Common }, + .{ .from = 0xFEFF, .to = 0xFEFF, .script = .Common }, + .{ .from = 0xFF01, .to = 0xFF03, .script = .Common }, + .{ .from = 0xFF04, .to = 0xFF04, .script = .Common }, + .{ .from = 0xFF05, .to = 0xFF07, .script = .Common }, + .{ .from = 0xFF08, .to = 0xFF08, .script = .Common }, + .{ .from = 0xFF09, .to = 0xFF09, .script = .Common }, + .{ .from = 0xFF0A, .to = 0xFF0A, .script = .Common }, + .{ .from = 0xFF0B, .to = 0xFF0B, .script = .Common }, + .{ .from = 0xFF0C, .to = 0xFF0C, .script = .Common }, + .{ .from = 0xFF0D, .to = 0xFF0D, .script = .Common }, + .{ .from = 0xFF0E, .to = 0xFF0F, .script = .Common }, + .{ .from = 0xFF10, .to = 0xFF19, .script = .Common }, + .{ .from = 0xFF1A, .to = 0xFF1B, .script = .Common }, + .{ .from = 0xFF1C, .to = 0xFF1E, .script = .Common }, + .{ .from = 0xFF1F, .to = 0xFF20, .script = .Common }, + .{ .from = 0xFF3B, .to = 0xFF3B, .script = .Common }, + .{ .from = 0xFF3C, .to = 0xFF3C, .script = .Common }, + .{ .from = 0xFF3D, .to = 0xFF3D, .script = .Common }, + .{ .from = 0xFF3E, .to = 0xFF3E, .script = .Common }, + .{ .from = 0xFF3F, .to = 0xFF3F, .script = .Common }, + .{ .from = 0xFF40, .to = 0xFF40, .script = .Common }, + .{ .from = 0xFF5B, .to = 0xFF5B, .script = .Common }, + .{ .from = 0xFF5C, .to = 0xFF5C, .script = .Common }, + .{ .from = 0xFF5D, .to = 0xFF5D, .script = .Common }, + .{ .from = 0xFF5E, .to = 0xFF5E, .script = .Common }, + .{ .from = 0xFF5F, .to = 0xFF5F, .script = .Common }, + .{ .from = 0xFF60, .to = 0xFF60, .script = .Common }, + .{ .from = 0xFF61, .to = 0xFF61, .script = .Common }, + .{ .from = 0xFF62, .to = 0xFF62, .script = .Common }, + .{ .from = 0xFF63, .to = 0xFF63, .script = .Common }, + .{ .from = 0xFF64, .to = 0xFF65, .script = .Common }, + .{ .from = 0xFF70, .to = 0xFF70, .script = .Common }, + .{ .from = 0xFF9E, .to = 0xFF9F, .script = .Common }, + .{ .from = 0xFFE0, .to = 0xFFE1, .script = .Common }, + .{ .from = 0xFFE2, .to = 0xFFE2, .script = .Common }, + .{ .from = 0xFFE3, .to = 0xFFE3, .script = .Common }, + .{ .from = 0xFFE4, .to = 0xFFE4, .script = .Common }, + .{ .from = 0xFFE5, .to = 0xFFE6, .script = .Common }, + .{ .from = 0xFFE8, .to = 0xFFE8, .script = .Common }, + .{ .from = 0xFFE9, .to = 0xFFEC, .script = .Common }, + .{ .from = 0xFFED, .to = 0xFFEE, .script = .Common }, + .{ .from = 0xFFF9, .to = 0xFFFB, .script = .Common }, + .{ .from = 0xFFFC, .to = 0xFFFD, .script = .Common }, + .{ .from = 0x10100, .to = 0x10102, .script = .Common }, + .{ .from = 0x10107, .to = 0x10133, .script = .Common }, + .{ .from = 0x10137, .to = 0x1013F, .script = .Common }, + .{ .from = 0x10190, .to = 0x1019C, .script = .Common }, + .{ .from = 0x101D0, .to = 0x101FC, .script = .Common }, + .{ .from = 0x102E1, .to = 0x102FB, .script = .Common }, + .{ .from = 0x16FE2, .to = 0x16FE2, .script = .Common }, + .{ .from = 0x16FE3, .to = 0x16FE3, .script = .Common }, + .{ .from = 0x1BCA0, .to = 0x1BCA3, .script = .Common }, + .{ .from = 0x1D000, .to = 0x1D0F5, .script = .Common }, + .{ .from = 0x1D100, .to = 0x1D126, .script = .Common }, + .{ .from = 0x1D129, .to = 0x1D164, .script = .Common }, + .{ .from = 0x1D165, .to = 0x1D166, .script = .Common }, + .{ .from = 0x1D16A, .to = 0x1D16C, .script = .Common }, + .{ .from = 0x1D16D, .to = 0x1D172, .script = .Common }, + .{ .from = 0x1D173, .to = 0x1D17A, .script = .Common }, + .{ .from = 0x1D183, .to = 0x1D184, .script = .Common }, + .{ .from = 0x1D18C, .to = 0x1D1A9, .script = .Common }, + .{ .from = 0x1D1AE, .to = 0x1D1E8, .script = .Common }, + .{ .from = 0x1D2E0, .to = 0x1D2F3, .script = .Common }, + .{ .from = 0x1D300, .to = 0x1D356, .script = .Common }, + .{ .from = 0x1D360, .to = 0x1D378, .script = .Common }, + .{ .from = 0x1D400, .to = 0x1D454, .script = .Common }, + .{ .from = 0x1D456, .to = 0x1D49C, .script = .Common }, + .{ .from = 0x1D49E, .to = 0x1D49F, .script = .Common }, + .{ .from = 0x1D4A2, .to = 0x1D4A2, .script = .Common }, + .{ .from = 0x1D4A5, .to = 0x1D4A6, .script = .Common }, + .{ .from = 0x1D4A9, .to = 0x1D4AC, .script = .Common }, + .{ .from = 0x1D4AE, .to = 0x1D4B9, .script = .Common }, + .{ .from = 0x1D4BB, .to = 0x1D4BB, .script = .Common }, + .{ .from = 0x1D4BD, .to = 0x1D4C3, .script = .Common }, + .{ .from = 0x1D4C5, .to = 0x1D505, .script = .Common }, + .{ .from = 0x1D507, .to = 0x1D50A, .script = .Common }, + .{ .from = 0x1D50D, .to = 0x1D514, .script = .Common }, + .{ .from = 0x1D516, .to = 0x1D51C, .script = .Common }, + .{ .from = 0x1D51E, .to = 0x1D539, .script = .Common }, + .{ .from = 0x1D53B, .to = 0x1D53E, .script = .Common }, + .{ .from = 0x1D540, .to = 0x1D544, .script = .Common }, + .{ .from = 0x1D546, .to = 0x1D546, .script = .Common }, + .{ .from = 0x1D54A, .to = 0x1D550, .script = .Common }, + .{ .from = 0x1D552, .to = 0x1D6A5, .script = .Common }, + .{ .from = 0x1D6A8, .to = 0x1D6C0, .script = .Common }, + .{ .from = 0x1D6C1, .to = 0x1D6C1, .script = .Common }, + .{ .from = 0x1D6C2, .to = 0x1D6DA, .script = .Common }, + .{ .from = 0x1D6DB, .to = 0x1D6DB, .script = .Common }, + .{ .from = 0x1D6DC, .to = 0x1D6FA, .script = .Common }, + .{ .from = 0x1D6FB, .to = 0x1D6FB, .script = .Common }, + .{ .from = 0x1D6FC, .to = 0x1D714, .script = .Common }, + .{ .from = 0x1D715, .to = 0x1D715, .script = .Common }, + .{ .from = 0x1D716, .to = 0x1D734, .script = .Common }, + .{ .from = 0x1D735, .to = 0x1D735, .script = .Common }, + .{ .from = 0x1D736, .to = 0x1D74E, .script = .Common }, + .{ .from = 0x1D74F, .to = 0x1D74F, .script = .Common }, + .{ .from = 0x1D750, .to = 0x1D76E, .script = .Common }, + .{ .from = 0x1D76F, .to = 0x1D76F, .script = .Common }, + .{ .from = 0x1D770, .to = 0x1D788, .script = .Common }, + .{ .from = 0x1D789, .to = 0x1D789, .script = .Common }, + .{ .from = 0x1D78A, .to = 0x1D7A8, .script = .Common }, + .{ .from = 0x1D7A9, .to = 0x1D7A9, .script = .Common }, + .{ .from = 0x1D7AA, .to = 0x1D7C2, .script = .Common }, + .{ .from = 0x1D7C3, .to = 0x1D7C3, .script = .Common }, + .{ .from = 0x1D7C4, .to = 0x1D7CB, .script = .Common }, + .{ .from = 0x1D7CE, .to = 0x1D7FF, .script = .Common }, + .{ .from = 0x1EC71, .to = 0x1ECAB, .script = .Common }, + .{ .from = 0x1ECAC, .to = 0x1ECAC, .script = .Common }, + .{ .from = 0x1ECAD, .to = 0x1ECAF, .script = .Common }, + .{ .from = 0x1ECB0, .to = 0x1ECB0, .script = .Common }, + .{ .from = 0x1ECB1, .to = 0x1ECB4, .script = .Common }, + .{ .from = 0x1ED01, .to = 0x1ED2D, .script = .Common }, + .{ .from = 0x1ED2E, .to = 0x1ED2E, .script = .Common }, + .{ .from = 0x1ED2F, .to = 0x1ED3D, .script = .Common }, + .{ .from = 0x1F000, .to = 0x1F02B, .script = .Common }, + .{ .from = 0x1F030, .to = 0x1F093, .script = .Common }, + .{ .from = 0x1F0A0, .to = 0x1F0AE, .script = .Common }, + .{ .from = 0x1F0B1, .to = 0x1F0BF, .script = .Common }, + .{ .from = 0x1F0C1, .to = 0x1F0CF, .script = .Common }, + .{ .from = 0x1F0D1, .to = 0x1F0F5, .script = .Common }, + .{ .from = 0x1F100, .to = 0x1F10C, .script = .Common }, + .{ .from = 0x1F10D, .to = 0x1F1AD, .script = .Common }, + .{ .from = 0x1F1E6, .to = 0x1F1FF, .script = .Common }, + .{ .from = 0x1F201, .to = 0x1F202, .script = .Common }, + .{ .from = 0x1F210, .to = 0x1F23B, .script = .Common }, + .{ .from = 0x1F240, .to = 0x1F248, .script = .Common }, + .{ .from = 0x1F250, .to = 0x1F251, .script = .Common }, + .{ .from = 0x1F260, .to = 0x1F265, .script = .Common }, + .{ .from = 0x1F300, .to = 0x1F3FA, .script = .Common }, + .{ .from = 0x1F3FB, .to = 0x1F3FF, .script = .Common }, + .{ .from = 0x1F400, .to = 0x1F6D7, .script = .Common }, + .{ .from = 0x1F6E0, .to = 0x1F6EC, .script = .Common }, + .{ .from = 0x1F6F0, .to = 0x1F6FC, .script = .Common }, + .{ .from = 0x1F700, .to = 0x1F773, .script = .Common }, + .{ .from = 0x1F780, .to = 0x1F7D8, .script = .Common }, + .{ .from = 0x1F7E0, .to = 0x1F7EB, .script = .Common }, + .{ .from = 0x1F800, .to = 0x1F80B, .script = .Common }, + .{ .from = 0x1F810, .to = 0x1F847, .script = .Common }, + .{ .from = 0x1F850, .to = 0x1F859, .script = .Common }, + .{ .from = 0x1F860, .to = 0x1F887, .script = .Common }, + .{ .from = 0x1F890, .to = 0x1F8AD, .script = .Common }, + .{ .from = 0x1F8B0, .to = 0x1F8B1, .script = .Common }, + .{ .from = 0x1F900, .to = 0x1F978, .script = .Common }, + .{ .from = 0x1F97A, .to = 0x1F9CB, .script = .Common }, + .{ .from = 0x1F9CD, .to = 0x1FA53, .script = .Common }, + .{ .from = 0x1FA60, .to = 0x1FA6D, .script = .Common }, + .{ .from = 0x1FA70, .to = 0x1FA74, .script = .Common }, + .{ .from = 0x1FA78, .to = 0x1FA7A, .script = .Common }, + .{ .from = 0x1FA80, .to = 0x1FA86, .script = .Common }, + .{ .from = 0x1FA90, .to = 0x1FAA8, .script = .Common }, + .{ .from = 0x1FAB0, .to = 0x1FAB6, .script = .Common }, + .{ .from = 0x1FAC0, .to = 0x1FAC2, .script = .Common }, + .{ .from = 0x1FAD0, .to = 0x1FAD6, .script = .Common }, + .{ .from = 0x1FB00, .to = 0x1FB92, .script = .Common }, + .{ .from = 0x1FB94, .to = 0x1FBCA, .script = .Common }, + .{ .from = 0x1FBF0, .to = 0x1FBF9, .script = .Common }, + .{ .from = 0xE0001, .to = 0xE0001, .script = .Common }, + .{ .from = 0xE0020, .to = 0xE007F, .script = .Common }, + .{ .from = 0x0041, .to = 0x005A, .script = .Latin }, + .{ .from = 0x0061, .to = 0x007A, .script = .Latin }, + .{ .from = 0x00AA, .to = 0x00AA, .script = .Latin }, + .{ .from = 0x00BA, .to = 0x00BA, .script = .Latin }, + .{ .from = 0x00C0, .to = 0x00D6, .script = .Latin }, + .{ .from = 0x00D8, .to = 0x00F6, .script = .Latin }, + .{ .from = 0x00F8, .to = 0x01BA, .script = .Latin }, + .{ .from = 0x01BB, .to = 0x01BB, .script = .Latin }, + .{ .from = 0x01BC, .to = 0x01BF, .script = .Latin }, + .{ .from = 0x01C0, .to = 0x01C3, .script = .Latin }, + .{ .from = 0x01C4, .to = 0x0293, .script = .Latin }, + .{ .from = 0x0294, .to = 0x0294, .script = .Latin }, + .{ .from = 0x0295, .to = 0x02AF, .script = .Latin }, + .{ .from = 0x02B0, .to = 0x02B8, .script = .Latin }, + .{ .from = 0x02E0, .to = 0x02E4, .script = .Latin }, + .{ .from = 0x1D00, .to = 0x1D25, .script = .Latin }, + .{ .from = 0x1D2C, .to = 0x1D5C, .script = .Latin }, + .{ .from = 0x1D62, .to = 0x1D65, .script = .Latin }, + .{ .from = 0x1D6B, .to = 0x1D77, .script = .Latin }, + .{ .from = 0x1D79, .to = 0x1D9A, .script = .Latin }, + .{ .from = 0x1D9B, .to = 0x1DBE, .script = .Latin }, + .{ .from = 0x1E00, .to = 0x1EFF, .script = .Latin }, + .{ .from = 0x2071, .to = 0x2071, .script = .Latin }, + .{ .from = 0x207F, .to = 0x207F, .script = .Latin }, + .{ .from = 0x2090, .to = 0x209C, .script = .Latin }, + .{ .from = 0x212A, .to = 0x212B, .script = .Latin }, + .{ .from = 0x2132, .to = 0x2132, .script = .Latin }, + .{ .from = 0x214E, .to = 0x214E, .script = .Latin }, + .{ .from = 0x2160, .to = 0x2182, .script = .Latin }, + .{ .from = 0x2183, .to = 0x2184, .script = .Latin }, + .{ .from = 0x2185, .to = 0x2188, .script = .Latin }, + .{ .from = 0x2C60, .to = 0x2C7B, .script = .Latin }, + .{ .from = 0x2C7C, .to = 0x2C7D, .script = .Latin }, + .{ .from = 0x2C7E, .to = 0x2C7F, .script = .Latin }, + .{ .from = 0xA722, .to = 0xA76F, .script = .Latin }, + .{ .from = 0xA770, .to = 0xA770, .script = .Latin }, + .{ .from = 0xA771, .to = 0xA787, .script = .Latin }, + .{ .from = 0xA78B, .to = 0xA78E, .script = .Latin }, + .{ .from = 0xA78F, .to = 0xA78F, .script = .Latin }, + .{ .from = 0xA790, .to = 0xA7BF, .script = .Latin }, + .{ .from = 0xA7C2, .to = 0xA7CA, .script = .Latin }, + .{ .from = 0xA7F5, .to = 0xA7F6, .script = .Latin }, + .{ .from = 0xA7F7, .to = 0xA7F7, .script = .Latin }, + .{ .from = 0xA7F8, .to = 0xA7F9, .script = .Latin }, + .{ .from = 0xA7FA, .to = 0xA7FA, .script = .Latin }, + .{ .from = 0xA7FB, .to = 0xA7FF, .script = .Latin }, + .{ .from = 0xAB30, .to = 0xAB5A, .script = .Latin }, + .{ .from = 0xAB5C, .to = 0xAB5F, .script = .Latin }, + .{ .from = 0xAB60, .to = 0xAB64, .script = .Latin }, + .{ .from = 0xAB66, .to = 0xAB68, .script = .Latin }, + .{ .from = 0xAB69, .to = 0xAB69, .script = .Latin }, + .{ .from = 0xFB00, .to = 0xFB06, .script = .Latin }, + .{ .from = 0xFF21, .to = 0xFF3A, .script = .Latin }, + .{ .from = 0xFF41, .to = 0xFF5A, .script = .Latin }, + .{ .from = 0x0370, .to = 0x0373, .script = .Greek }, + .{ .from = 0x0375, .to = 0x0375, .script = .Greek }, + .{ .from = 0x0376, .to = 0x0377, .script = .Greek }, + .{ .from = 0x037A, .to = 0x037A, .script = .Greek }, + .{ .from = 0x037B, .to = 0x037D, .script = .Greek }, + .{ .from = 0x037F, .to = 0x037F, .script = .Greek }, + .{ .from = 0x0384, .to = 0x0384, .script = .Greek }, + .{ .from = 0x0386, .to = 0x0386, .script = .Greek }, + .{ .from = 0x0388, .to = 0x038A, .script = .Greek }, + .{ .from = 0x038C, .to = 0x038C, .script = .Greek }, + .{ .from = 0x038E, .to = 0x03A1, .script = .Greek }, + .{ .from = 0x03A3, .to = 0x03E1, .script = .Greek }, + .{ .from = 0x03F0, .to = 0x03F5, .script = .Greek }, + .{ .from = 0x03F6, .to = 0x03F6, .script = .Greek }, + .{ .from = 0x03F7, .to = 0x03FF, .script = .Greek }, + .{ .from = 0x1D26, .to = 0x1D2A, .script = .Greek }, + .{ .from = 0x1D5D, .to = 0x1D61, .script = .Greek }, + .{ .from = 0x1D66, .to = 0x1D6A, .script = .Greek }, + .{ .from = 0x1DBF, .to = 0x1DBF, .script = .Greek }, + .{ .from = 0x1F00, .to = 0x1F15, .script = .Greek }, + .{ .from = 0x1F18, .to = 0x1F1D, .script = .Greek }, + .{ .from = 0x1F20, .to = 0x1F45, .script = .Greek }, + .{ .from = 0x1F48, .to = 0x1F4D, .script = .Greek }, + .{ .from = 0x1F50, .to = 0x1F57, .script = .Greek }, + .{ .from = 0x1F59, .to = 0x1F59, .script = .Greek }, + .{ .from = 0x1F5B, .to = 0x1F5B, .script = .Greek }, + .{ .from = 0x1F5D, .to = 0x1F5D, .script = .Greek }, + .{ .from = 0x1F5F, .to = 0x1F7D, .script = .Greek }, + .{ .from = 0x1F80, .to = 0x1FB4, .script = .Greek }, + .{ .from = 0x1FB6, .to = 0x1FBC, .script = .Greek }, + .{ .from = 0x1FBD, .to = 0x1FBD, .script = .Greek }, + .{ .from = 0x1FBE, .to = 0x1FBE, .script = .Greek }, + .{ .from = 0x1FBF, .to = 0x1FC1, .script = .Greek }, + .{ .from = 0x1FC2, .to = 0x1FC4, .script = .Greek }, + .{ .from = 0x1FC6, .to = 0x1FCC, .script = .Greek }, + .{ .from = 0x1FCD, .to = 0x1FCF, .script = .Greek }, + .{ .from = 0x1FD0, .to = 0x1FD3, .script = .Greek }, + .{ .from = 0x1FD6, .to = 0x1FDB, .script = .Greek }, + .{ .from = 0x1FDD, .to = 0x1FDF, .script = .Greek }, + .{ .from = 0x1FE0, .to = 0x1FEC, .script = .Greek }, + .{ .from = 0x1FED, .to = 0x1FEF, .script = .Greek }, + .{ .from = 0x1FF2, .to = 0x1FF4, .script = .Greek }, + .{ .from = 0x1FF6, .to = 0x1FFC, .script = .Greek }, + .{ .from = 0x1FFD, .to = 0x1FFE, .script = .Greek }, + .{ .from = 0x2126, .to = 0x2126, .script = .Greek }, + .{ .from = 0xAB65, .to = 0xAB65, .script = .Greek }, + .{ .from = 0x10140, .to = 0x10174, .script = .Greek }, + .{ .from = 0x10175, .to = 0x10178, .script = .Greek }, + .{ .from = 0x10179, .to = 0x10189, .script = .Greek }, + .{ .from = 0x1018A, .to = 0x1018B, .script = .Greek }, + .{ .from = 0x1018C, .to = 0x1018E, .script = .Greek }, + .{ .from = 0x101A0, .to = 0x101A0, .script = .Greek }, + .{ .from = 0x1D200, .to = 0x1D241, .script = .Greek }, + .{ .from = 0x1D242, .to = 0x1D244, .script = .Greek }, + .{ .from = 0x1D245, .to = 0x1D245, .script = .Greek }, + .{ .from = 0x0400, .to = 0x0481, .script = .Cyrillic }, + .{ .from = 0x0482, .to = 0x0482, .script = .Cyrillic }, + .{ .from = 0x0483, .to = 0x0484, .script = .Cyrillic }, + .{ .from = 0x0487, .to = 0x0487, .script = .Cyrillic }, + .{ .from = 0x0488, .to = 0x0489, .script = .Cyrillic }, + .{ .from = 0x048A, .to = 0x052F, .script = .Cyrillic }, + .{ .from = 0x1C80, .to = 0x1C88, .script = .Cyrillic }, + .{ .from = 0x1D2B, .to = 0x1D2B, .script = .Cyrillic }, + .{ .from = 0x1D78, .to = 0x1D78, .script = .Cyrillic }, + .{ .from = 0x2DE0, .to = 0x2DFF, .script = .Cyrillic }, + .{ .from = 0xA640, .to = 0xA66D, .script = .Cyrillic }, + .{ .from = 0xA66E, .to = 0xA66E, .script = .Cyrillic }, + .{ .from = 0xA66F, .to = 0xA66F, .script = .Cyrillic }, + .{ .from = 0xA670, .to = 0xA672, .script = .Cyrillic }, + .{ .from = 0xA673, .to = 0xA673, .script = .Cyrillic }, + .{ .from = 0xA674, .to = 0xA67D, .script = .Cyrillic }, + .{ .from = 0xA67E, .to = 0xA67E, .script = .Cyrillic }, + .{ .from = 0xA67F, .to = 0xA67F, .script = .Cyrillic }, + .{ .from = 0xA680, .to = 0xA69B, .script = .Cyrillic }, + .{ .from = 0xA69C, .to = 0xA69D, .script = .Cyrillic }, + .{ .from = 0xA69E, .to = 0xA69F, .script = .Cyrillic }, + .{ .from = 0xFE2E, .to = 0xFE2F, .script = .Cyrillic }, + .{ .from = 0x0531, .to = 0x0556, .script = .Armenian }, + .{ .from = 0x0559, .to = 0x0559, .script = .Armenian }, + .{ .from = 0x055A, .to = 0x055F, .script = .Armenian }, + .{ .from = 0x0560, .to = 0x0588, .script = .Armenian }, + .{ .from = 0x0589, .to = 0x0589, .script = .Armenian }, + .{ .from = 0x058A, .to = 0x058A, .script = .Armenian }, + .{ .from = 0x058D, .to = 0x058E, .script = .Armenian }, + .{ .from = 0x058F, .to = 0x058F, .script = .Armenian }, + .{ .from = 0xFB13, .to = 0xFB17, .script = .Armenian }, + .{ .from = 0x0591, .to = 0x05BD, .script = .Hebrew }, + .{ .from = 0x05BE, .to = 0x05BE, .script = .Hebrew }, + .{ .from = 0x05BF, .to = 0x05BF, .script = .Hebrew }, + .{ .from = 0x05C0, .to = 0x05C0, .script = .Hebrew }, + .{ .from = 0x05C1, .to = 0x05C2, .script = .Hebrew }, + .{ .from = 0x05C3, .to = 0x05C3, .script = .Hebrew }, + .{ .from = 0x05C4, .to = 0x05C5, .script = .Hebrew }, + .{ .from = 0x05C6, .to = 0x05C6, .script = .Hebrew }, + .{ .from = 0x05C7, .to = 0x05C7, .script = .Hebrew }, + .{ .from = 0x05D0, .to = 0x05EA, .script = .Hebrew }, + .{ .from = 0x05EF, .to = 0x05F2, .script = .Hebrew }, + .{ .from = 0x05F3, .to = 0x05F4, .script = .Hebrew }, + .{ .from = 0xFB1D, .to = 0xFB1D, .script = .Hebrew }, + .{ .from = 0xFB1E, .to = 0xFB1E, .script = .Hebrew }, + .{ .from = 0xFB1F, .to = 0xFB28, .script = .Hebrew }, + .{ .from = 0xFB29, .to = 0xFB29, .script = .Hebrew }, + .{ .from = 0xFB2A, .to = 0xFB36, .script = .Hebrew }, + .{ .from = 0xFB38, .to = 0xFB3C, .script = .Hebrew }, + .{ .from = 0xFB3E, .to = 0xFB3E, .script = .Hebrew }, + .{ .from = 0xFB40, .to = 0xFB41, .script = .Hebrew }, + .{ .from = 0xFB43, .to = 0xFB44, .script = .Hebrew }, + .{ .from = 0xFB46, .to = 0xFB4F, .script = .Hebrew }, + .{ .from = 0x0600, .to = 0x0604, .script = .Arabic }, + .{ .from = 0x0606, .to = 0x0608, .script = .Arabic }, + .{ .from = 0x0609, .to = 0x060A, .script = .Arabic }, + .{ .from = 0x060B, .to = 0x060B, .script = .Arabic }, + .{ .from = 0x060D, .to = 0x060D, .script = .Arabic }, + .{ .from = 0x060E, .to = 0x060F, .script = .Arabic }, + .{ .from = 0x0610, .to = 0x061A, .script = .Arabic }, + .{ .from = 0x061C, .to = 0x061C, .script = .Arabic }, + .{ .from = 0x061E, .to = 0x061E, .script = .Arabic }, + .{ .from = 0x0620, .to = 0x063F, .script = .Arabic }, + .{ .from = 0x0641, .to = 0x064A, .script = .Arabic }, + .{ .from = 0x0656, .to = 0x065F, .script = .Arabic }, + .{ .from = 0x0660, .to = 0x0669, .script = .Arabic }, + .{ .from = 0x066A, .to = 0x066D, .script = .Arabic }, + .{ .from = 0x066E, .to = 0x066F, .script = .Arabic }, + .{ .from = 0x0671, .to = 0x06D3, .script = .Arabic }, + .{ .from = 0x06D4, .to = 0x06D4, .script = .Arabic }, + .{ .from = 0x06D5, .to = 0x06D5, .script = .Arabic }, + .{ .from = 0x06D6, .to = 0x06DC, .script = .Arabic }, + .{ .from = 0x06DE, .to = 0x06DE, .script = .Arabic }, + .{ .from = 0x06DF, .to = 0x06E4, .script = .Arabic }, + .{ .from = 0x06E5, .to = 0x06E6, .script = .Arabic }, + .{ .from = 0x06E7, .to = 0x06E8, .script = .Arabic }, + .{ .from = 0x06E9, .to = 0x06E9, .script = .Arabic }, + .{ .from = 0x06EA, .to = 0x06ED, .script = .Arabic }, + .{ .from = 0x06EE, .to = 0x06EF, .script = .Arabic }, + .{ .from = 0x06F0, .to = 0x06F9, .script = .Arabic }, + .{ .from = 0x06FA, .to = 0x06FC, .script = .Arabic }, + .{ .from = 0x06FD, .to = 0x06FE, .script = .Arabic }, + .{ .from = 0x06FF, .to = 0x06FF, .script = .Arabic }, + .{ .from = 0x0750, .to = 0x077F, .script = .Arabic }, + .{ .from = 0x08A0, .to = 0x08B4, .script = .Arabic }, + .{ .from = 0x08B6, .to = 0x08C7, .script = .Arabic }, + .{ .from = 0x08D3, .to = 0x08E1, .script = .Arabic }, + .{ .from = 0x08E3, .to = 0x08FF, .script = .Arabic }, + .{ .from = 0xFB50, .to = 0xFBB1, .script = .Arabic }, + .{ .from = 0xFBB2, .to = 0xFBC1, .script = .Arabic }, + .{ .from = 0xFBD3, .to = 0xFD3D, .script = .Arabic }, + .{ .from = 0xFD50, .to = 0xFD8F, .script = .Arabic }, + .{ .from = 0xFD92, .to = 0xFDC7, .script = .Arabic }, + .{ .from = 0xFDF0, .to = 0xFDFB, .script = .Arabic }, + .{ .from = 0xFDFC, .to = 0xFDFC, .script = .Arabic }, + .{ .from = 0xFDFD, .to = 0xFDFD, .script = .Arabic }, + .{ .from = 0xFE70, .to = 0xFE74, .script = .Arabic }, + .{ .from = 0xFE76, .to = 0xFEFC, .script = .Arabic }, + .{ .from = 0x10E60, .to = 0x10E7E, .script = .Arabic }, + .{ .from = 0x1EE00, .to = 0x1EE03, .script = .Arabic }, + .{ .from = 0x1EE05, .to = 0x1EE1F, .script = .Arabic }, + .{ .from = 0x1EE21, .to = 0x1EE22, .script = .Arabic }, + .{ .from = 0x1EE24, .to = 0x1EE24, .script = .Arabic }, + .{ .from = 0x1EE27, .to = 0x1EE27, .script = .Arabic }, + .{ .from = 0x1EE29, .to = 0x1EE32, .script = .Arabic }, + .{ .from = 0x1EE34, .to = 0x1EE37, .script = .Arabic }, + .{ .from = 0x1EE39, .to = 0x1EE39, .script = .Arabic }, + .{ .from = 0x1EE3B, .to = 0x1EE3B, .script = .Arabic }, + .{ .from = 0x1EE42, .to = 0x1EE42, .script = .Arabic }, + .{ .from = 0x1EE47, .to = 0x1EE47, .script = .Arabic }, + .{ .from = 0x1EE49, .to = 0x1EE49, .script = .Arabic }, + .{ .from = 0x1EE4B, .to = 0x1EE4B, .script = .Arabic }, + .{ .from = 0x1EE4D, .to = 0x1EE4F, .script = .Arabic }, + .{ .from = 0x1EE51, .to = 0x1EE52, .script = .Arabic }, + .{ .from = 0x1EE54, .to = 0x1EE54, .script = .Arabic }, + .{ .from = 0x1EE57, .to = 0x1EE57, .script = .Arabic }, + .{ .from = 0x1EE59, .to = 0x1EE59, .script = .Arabic }, + .{ .from = 0x1EE5B, .to = 0x1EE5B, .script = .Arabic }, + .{ .from = 0x1EE5D, .to = 0x1EE5D, .script = .Arabic }, + .{ .from = 0x1EE5F, .to = 0x1EE5F, .script = .Arabic }, + .{ .from = 0x1EE61, .to = 0x1EE62, .script = .Arabic }, + .{ .from = 0x1EE64, .to = 0x1EE64, .script = .Arabic }, + .{ .from = 0x1EE67, .to = 0x1EE6A, .script = .Arabic }, + .{ .from = 0x1EE6C, .to = 0x1EE72, .script = .Arabic }, + .{ .from = 0x1EE74, .to = 0x1EE77, .script = .Arabic }, + .{ .from = 0x1EE79, .to = 0x1EE7C, .script = .Arabic }, + .{ .from = 0x1EE7E, .to = 0x1EE7E, .script = .Arabic }, + .{ .from = 0x1EE80, .to = 0x1EE89, .script = .Arabic }, + .{ .from = 0x1EE8B, .to = 0x1EE9B, .script = .Arabic }, + .{ .from = 0x1EEA1, .to = 0x1EEA3, .script = .Arabic }, + .{ .from = 0x1EEA5, .to = 0x1EEA9, .script = .Arabic }, + .{ .from = 0x1EEAB, .to = 0x1EEBB, .script = .Arabic }, + .{ .from = 0x1EEF0, .to = 0x1EEF1, .script = .Arabic }, + .{ .from = 0x0700, .to = 0x070D, .script = .Syriac }, + .{ .from = 0x070F, .to = 0x070F, .script = .Syriac }, + .{ .from = 0x0710, .to = 0x0710, .script = .Syriac }, + .{ .from = 0x0711, .to = 0x0711, .script = .Syriac }, + .{ .from = 0x0712, .to = 0x072F, .script = .Syriac }, + .{ .from = 0x0730, .to = 0x074A, .script = .Syriac }, + .{ .from = 0x074D, .to = 0x074F, .script = .Syriac }, + .{ .from = 0x0860, .to = 0x086A, .script = .Syriac }, + .{ .from = 0x0780, .to = 0x07A5, .script = .Thaana }, + .{ .from = 0x07A6, .to = 0x07B0, .script = .Thaana }, + .{ .from = 0x07B1, .to = 0x07B1, .script = .Thaana }, + .{ .from = 0x0900, .to = 0x0902, .script = .Devanagari }, + .{ .from = 0x0903, .to = 0x0903, .script = .Devanagari }, + .{ .from = 0x0904, .to = 0x0939, .script = .Devanagari }, + .{ .from = 0x093A, .to = 0x093A, .script = .Devanagari }, + .{ .from = 0x093B, .to = 0x093B, .script = .Devanagari }, + .{ .from = 0x093C, .to = 0x093C, .script = .Devanagari }, + .{ .from = 0x093D, .to = 0x093D, .script = .Devanagari }, + .{ .from = 0x093E, .to = 0x0940, .script = .Devanagari }, + .{ .from = 0x0941, .to = 0x0948, .script = .Devanagari }, + .{ .from = 0x0949, .to = 0x094C, .script = .Devanagari }, + .{ .from = 0x094D, .to = 0x094D, .script = .Devanagari }, + .{ .from = 0x094E, .to = 0x094F, .script = .Devanagari }, + .{ .from = 0x0950, .to = 0x0950, .script = .Devanagari }, + .{ .from = 0x0955, .to = 0x0957, .script = .Devanagari }, + .{ .from = 0x0958, .to = 0x0961, .script = .Devanagari }, + .{ .from = 0x0962, .to = 0x0963, .script = .Devanagari }, + .{ .from = 0x0966, .to = 0x096F, .script = .Devanagari }, + .{ .from = 0x0970, .to = 0x0970, .script = .Devanagari }, + .{ .from = 0x0971, .to = 0x0971, .script = .Devanagari }, + .{ .from = 0x0972, .to = 0x097F, .script = .Devanagari }, + .{ .from = 0xA8E0, .to = 0xA8F1, .script = .Devanagari }, + .{ .from = 0xA8F2, .to = 0xA8F7, .script = .Devanagari }, + .{ .from = 0xA8F8, .to = 0xA8FA, .script = .Devanagari }, + .{ .from = 0xA8FB, .to = 0xA8FB, .script = .Devanagari }, + .{ .from = 0xA8FC, .to = 0xA8FC, .script = .Devanagari }, + .{ .from = 0xA8FD, .to = 0xA8FE, .script = .Devanagari }, + .{ .from = 0xA8FF, .to = 0xA8FF, .script = .Devanagari }, + .{ .from = 0x0980, .to = 0x0980, .script = .Bengali }, + .{ .from = 0x0981, .to = 0x0981, .script = .Bengali }, + .{ .from = 0x0982, .to = 0x0983, .script = .Bengali }, + .{ .from = 0x0985, .to = 0x098C, .script = .Bengali }, + .{ .from = 0x098F, .to = 0x0990, .script = .Bengali }, + .{ .from = 0x0993, .to = 0x09A8, .script = .Bengali }, + .{ .from = 0x09AA, .to = 0x09B0, .script = .Bengali }, + .{ .from = 0x09B2, .to = 0x09B2, .script = .Bengali }, + .{ .from = 0x09B6, .to = 0x09B9, .script = .Bengali }, + .{ .from = 0x09BC, .to = 0x09BC, .script = .Bengali }, + .{ .from = 0x09BD, .to = 0x09BD, .script = .Bengali }, + .{ .from = 0x09BE, .to = 0x09C0, .script = .Bengali }, + .{ .from = 0x09C1, .to = 0x09C4, .script = .Bengali }, + .{ .from = 0x09C7, .to = 0x09C8, .script = .Bengali }, + .{ .from = 0x09CB, .to = 0x09CC, .script = .Bengali }, + .{ .from = 0x09CD, .to = 0x09CD, .script = .Bengali }, + .{ .from = 0x09CE, .to = 0x09CE, .script = .Bengali }, + .{ .from = 0x09D7, .to = 0x09D7, .script = .Bengali }, + .{ .from = 0x09DC, .to = 0x09DD, .script = .Bengali }, + .{ .from = 0x09DF, .to = 0x09E1, .script = .Bengali }, + .{ .from = 0x09E2, .to = 0x09E3, .script = .Bengali }, + .{ .from = 0x09E6, .to = 0x09EF, .script = .Bengali }, + .{ .from = 0x09F0, .to = 0x09F1, .script = .Bengali }, + .{ .from = 0x09F2, .to = 0x09F3, .script = .Bengali }, + .{ .from = 0x09F4, .to = 0x09F9, .script = .Bengali }, + .{ .from = 0x09FA, .to = 0x09FA, .script = .Bengali }, + .{ .from = 0x09FB, .to = 0x09FB, .script = .Bengali }, + .{ .from = 0x09FC, .to = 0x09FC, .script = .Bengali }, + .{ .from = 0x09FD, .to = 0x09FD, .script = .Bengali }, + .{ .from = 0x09FE, .to = 0x09FE, .script = .Bengali }, + .{ .from = 0x0A01, .to = 0x0A02, .script = .Gurmukhi }, + .{ .from = 0x0A03, .to = 0x0A03, .script = .Gurmukhi }, + .{ .from = 0x0A05, .to = 0x0A0A, .script = .Gurmukhi }, + .{ .from = 0x0A0F, .to = 0x0A10, .script = .Gurmukhi }, + .{ .from = 0x0A13, .to = 0x0A28, .script = .Gurmukhi }, + .{ .from = 0x0A2A, .to = 0x0A30, .script = .Gurmukhi }, + .{ .from = 0x0A32, .to = 0x0A33, .script = .Gurmukhi }, + .{ .from = 0x0A35, .to = 0x0A36, .script = .Gurmukhi }, + .{ .from = 0x0A38, .to = 0x0A39, .script = .Gurmukhi }, + .{ .from = 0x0A3C, .to = 0x0A3C, .script = .Gurmukhi }, + .{ .from = 0x0A3E, .to = 0x0A40, .script = .Gurmukhi }, + .{ .from = 0x0A41, .to = 0x0A42, .script = .Gurmukhi }, + .{ .from = 0x0A47, .to = 0x0A48, .script = .Gurmukhi }, + .{ .from = 0x0A4B, .to = 0x0A4D, .script = .Gurmukhi }, + .{ .from = 0x0A51, .to = 0x0A51, .script = .Gurmukhi }, + .{ .from = 0x0A59, .to = 0x0A5C, .script = .Gurmukhi }, + .{ .from = 0x0A5E, .to = 0x0A5E, .script = .Gurmukhi }, + .{ .from = 0x0A66, .to = 0x0A6F, .script = .Gurmukhi }, + .{ .from = 0x0A70, .to = 0x0A71, .script = .Gurmukhi }, + .{ .from = 0x0A72, .to = 0x0A74, .script = .Gurmukhi }, + .{ .from = 0x0A75, .to = 0x0A75, .script = .Gurmukhi }, + .{ .from = 0x0A76, .to = 0x0A76, .script = .Gurmukhi }, + .{ .from = 0x0A81, .to = 0x0A82, .script = .Gujarati }, + .{ .from = 0x0A83, .to = 0x0A83, .script = .Gujarati }, + .{ .from = 0x0A85, .to = 0x0A8D, .script = .Gujarati }, + .{ .from = 0x0A8F, .to = 0x0A91, .script = .Gujarati }, + .{ .from = 0x0A93, .to = 0x0AA8, .script = .Gujarati }, + .{ .from = 0x0AAA, .to = 0x0AB0, .script = .Gujarati }, + .{ .from = 0x0AB2, .to = 0x0AB3, .script = .Gujarati }, + .{ .from = 0x0AB5, .to = 0x0AB9, .script = .Gujarati }, + .{ .from = 0x0ABC, .to = 0x0ABC, .script = .Gujarati }, + .{ .from = 0x0ABD, .to = 0x0ABD, .script = .Gujarati }, + .{ .from = 0x0ABE, .to = 0x0AC0, .script = .Gujarati }, + .{ .from = 0x0AC1, .to = 0x0AC5, .script = .Gujarati }, + .{ .from = 0x0AC7, .to = 0x0AC8, .script = .Gujarati }, + .{ .from = 0x0AC9, .to = 0x0AC9, .script = .Gujarati }, + .{ .from = 0x0ACB, .to = 0x0ACC, .script = .Gujarati }, + .{ .from = 0x0ACD, .to = 0x0ACD, .script = .Gujarati }, + .{ .from = 0x0AD0, .to = 0x0AD0, .script = .Gujarati }, + .{ .from = 0x0AE0, .to = 0x0AE1, .script = .Gujarati }, + .{ .from = 0x0AE2, .to = 0x0AE3, .script = .Gujarati }, + .{ .from = 0x0AE6, .to = 0x0AEF, .script = .Gujarati }, + .{ .from = 0x0AF0, .to = 0x0AF0, .script = .Gujarati }, + .{ .from = 0x0AF1, .to = 0x0AF1, .script = .Gujarati }, + .{ .from = 0x0AF9, .to = 0x0AF9, .script = .Gujarati }, + .{ .from = 0x0AFA, .to = 0x0AFF, .script = .Gujarati }, + .{ .from = 0x0B01, .to = 0x0B01, .script = .Oriya }, + .{ .from = 0x0B02, .to = 0x0B03, .script = .Oriya }, + .{ .from = 0x0B05, .to = 0x0B0C, .script = .Oriya }, + .{ .from = 0x0B0F, .to = 0x0B10, .script = .Oriya }, + .{ .from = 0x0B13, .to = 0x0B28, .script = .Oriya }, + .{ .from = 0x0B2A, .to = 0x0B30, .script = .Oriya }, + .{ .from = 0x0B32, .to = 0x0B33, .script = .Oriya }, + .{ .from = 0x0B35, .to = 0x0B39, .script = .Oriya }, + .{ .from = 0x0B3C, .to = 0x0B3C, .script = .Oriya }, + .{ .from = 0x0B3D, .to = 0x0B3D, .script = .Oriya }, + .{ .from = 0x0B3E, .to = 0x0B3E, .script = .Oriya }, + .{ .from = 0x0B3F, .to = 0x0B3F, .script = .Oriya }, + .{ .from = 0x0B40, .to = 0x0B40, .script = .Oriya }, + .{ .from = 0x0B41, .to = 0x0B44, .script = .Oriya }, + .{ .from = 0x0B47, .to = 0x0B48, .script = .Oriya }, + .{ .from = 0x0B4B, .to = 0x0B4C, .script = .Oriya }, + .{ .from = 0x0B4D, .to = 0x0B4D, .script = .Oriya }, + .{ .from = 0x0B55, .to = 0x0B56, .script = .Oriya }, + .{ .from = 0x0B57, .to = 0x0B57, .script = .Oriya }, + .{ .from = 0x0B5C, .to = 0x0B5D, .script = .Oriya }, + .{ .from = 0x0B5F, .to = 0x0B61, .script = .Oriya }, + .{ .from = 0x0B62, .to = 0x0B63, .script = .Oriya }, + .{ .from = 0x0B66, .to = 0x0B6F, .script = .Oriya }, + .{ .from = 0x0B70, .to = 0x0B70, .script = .Oriya }, + .{ .from = 0x0B71, .to = 0x0B71, .script = .Oriya }, + .{ .from = 0x0B72, .to = 0x0B77, .script = .Oriya }, + .{ .from = 0x0B82, .to = 0x0B82, .script = .Tamil }, + .{ .from = 0x0B83, .to = 0x0B83, .script = .Tamil }, + .{ .from = 0x0B85, .to = 0x0B8A, .script = .Tamil }, + .{ .from = 0x0B8E, .to = 0x0B90, .script = .Tamil }, + .{ .from = 0x0B92, .to = 0x0B95, .script = .Tamil }, + .{ .from = 0x0B99, .to = 0x0B9A, .script = .Tamil }, + .{ .from = 0x0B9C, .to = 0x0B9C, .script = .Tamil }, + .{ .from = 0x0B9E, .to = 0x0B9F, .script = .Tamil }, + .{ .from = 0x0BA3, .to = 0x0BA4, .script = .Tamil }, + .{ .from = 0x0BA8, .to = 0x0BAA, .script = .Tamil }, + .{ .from = 0x0BAE, .to = 0x0BB9, .script = .Tamil }, + .{ .from = 0x0BBE, .to = 0x0BBF, .script = .Tamil }, + .{ .from = 0x0BC0, .to = 0x0BC0, .script = .Tamil }, + .{ .from = 0x0BC1, .to = 0x0BC2, .script = .Tamil }, + .{ .from = 0x0BC6, .to = 0x0BC8, .script = .Tamil }, + .{ .from = 0x0BCA, .to = 0x0BCC, .script = .Tamil }, + .{ .from = 0x0BCD, .to = 0x0BCD, .script = .Tamil }, + .{ .from = 0x0BD0, .to = 0x0BD0, .script = .Tamil }, + .{ .from = 0x0BD7, .to = 0x0BD7, .script = .Tamil }, + .{ .from = 0x0BE6, .to = 0x0BEF, .script = .Tamil }, + .{ .from = 0x0BF0, .to = 0x0BF2, .script = .Tamil }, + .{ .from = 0x0BF3, .to = 0x0BF8, .script = .Tamil }, + .{ .from = 0x0BF9, .to = 0x0BF9, .script = .Tamil }, + .{ .from = 0x0BFA, .to = 0x0BFA, .script = .Tamil }, + .{ .from = 0x11FC0, .to = 0x11FD4, .script = .Tamil }, + .{ .from = 0x11FD5, .to = 0x11FDC, .script = .Tamil }, + .{ .from = 0x11FDD, .to = 0x11FE0, .script = .Tamil }, + .{ .from = 0x11FE1, .to = 0x11FF1, .script = .Tamil }, + .{ .from = 0x11FFF, .to = 0x11FFF, .script = .Tamil }, + .{ .from = 0x0C00, .to = 0x0C00, .script = .Telugu }, + .{ .from = 0x0C01, .to = 0x0C03, .script = .Telugu }, + .{ .from = 0x0C04, .to = 0x0C04, .script = .Telugu }, + .{ .from = 0x0C05, .to = 0x0C0C, .script = .Telugu }, + .{ .from = 0x0C0E, .to = 0x0C10, .script = .Telugu }, + .{ .from = 0x0C12, .to = 0x0C28, .script = .Telugu }, + .{ .from = 0x0C2A, .to = 0x0C39, .script = .Telugu }, + .{ .from = 0x0C3D, .to = 0x0C3D, .script = .Telugu }, + .{ .from = 0x0C3E, .to = 0x0C40, .script = .Telugu }, + .{ .from = 0x0C41, .to = 0x0C44, .script = .Telugu }, + .{ .from = 0x0C46, .to = 0x0C48, .script = .Telugu }, + .{ .from = 0x0C4A, .to = 0x0C4D, .script = .Telugu }, + .{ .from = 0x0C55, .to = 0x0C56, .script = .Telugu }, + .{ .from = 0x0C58, .to = 0x0C5A, .script = .Telugu }, + .{ .from = 0x0C60, .to = 0x0C61, .script = .Telugu }, + .{ .from = 0x0C62, .to = 0x0C63, .script = .Telugu }, + .{ .from = 0x0C66, .to = 0x0C6F, .script = .Telugu }, + .{ .from = 0x0C77, .to = 0x0C77, .script = .Telugu }, + .{ .from = 0x0C78, .to = 0x0C7E, .script = .Telugu }, + .{ .from = 0x0C7F, .to = 0x0C7F, .script = .Telugu }, + .{ .from = 0x0C80, .to = 0x0C80, .script = .Kannada }, + .{ .from = 0x0C81, .to = 0x0C81, .script = .Kannada }, + .{ .from = 0x0C82, .to = 0x0C83, .script = .Kannada }, + .{ .from = 0x0C84, .to = 0x0C84, .script = .Kannada }, + .{ .from = 0x0C85, .to = 0x0C8C, .script = .Kannada }, + .{ .from = 0x0C8E, .to = 0x0C90, .script = .Kannada }, + .{ .from = 0x0C92, .to = 0x0CA8, .script = .Kannada }, + .{ .from = 0x0CAA, .to = 0x0CB3, .script = .Kannada }, + .{ .from = 0x0CB5, .to = 0x0CB9, .script = .Kannada }, + .{ .from = 0x0CBC, .to = 0x0CBC, .script = .Kannada }, + .{ .from = 0x0CBD, .to = 0x0CBD, .script = .Kannada }, + .{ .from = 0x0CBE, .to = 0x0CBE, .script = .Kannada }, + .{ .from = 0x0CBF, .to = 0x0CBF, .script = .Kannada }, + .{ .from = 0x0CC0, .to = 0x0CC4, .script = .Kannada }, + .{ .from = 0x0CC6, .to = 0x0CC6, .script = .Kannada }, + .{ .from = 0x0CC7, .to = 0x0CC8, .script = .Kannada }, + .{ .from = 0x0CCA, .to = 0x0CCB, .script = .Kannada }, + .{ .from = 0x0CCC, .to = 0x0CCD, .script = .Kannada }, + .{ .from = 0x0CD5, .to = 0x0CD6, .script = .Kannada }, + .{ .from = 0x0CDE, .to = 0x0CDE, .script = .Kannada }, + .{ .from = 0x0CE0, .to = 0x0CE1, .script = .Kannada }, + .{ .from = 0x0CE2, .to = 0x0CE3, .script = .Kannada }, + .{ .from = 0x0CE6, .to = 0x0CEF, .script = .Kannada }, + .{ .from = 0x0CF1, .to = 0x0CF2, .script = .Kannada }, + .{ .from = 0x0D00, .to = 0x0D01, .script = .Malayalam }, + .{ .from = 0x0D02, .to = 0x0D03, .script = .Malayalam }, + .{ .from = 0x0D04, .to = 0x0D0C, .script = .Malayalam }, + .{ .from = 0x0D0E, .to = 0x0D10, .script = .Malayalam }, + .{ .from = 0x0D12, .to = 0x0D3A, .script = .Malayalam }, + .{ .from = 0x0D3B, .to = 0x0D3C, .script = .Malayalam }, + .{ .from = 0x0D3D, .to = 0x0D3D, .script = .Malayalam }, + .{ .from = 0x0D3E, .to = 0x0D40, .script = .Malayalam }, + .{ .from = 0x0D41, .to = 0x0D44, .script = .Malayalam }, + .{ .from = 0x0D46, .to = 0x0D48, .script = .Malayalam }, + .{ .from = 0x0D4A, .to = 0x0D4C, .script = .Malayalam }, + .{ .from = 0x0D4D, .to = 0x0D4D, .script = .Malayalam }, + .{ .from = 0x0D4E, .to = 0x0D4E, .script = .Malayalam }, + .{ .from = 0x0D4F, .to = 0x0D4F, .script = .Malayalam }, + .{ .from = 0x0D54, .to = 0x0D56, .script = .Malayalam }, + .{ .from = 0x0D57, .to = 0x0D57, .script = .Malayalam }, + .{ .from = 0x0D58, .to = 0x0D5E, .script = .Malayalam }, + .{ .from = 0x0D5F, .to = 0x0D61, .script = .Malayalam }, + .{ .from = 0x0D62, .to = 0x0D63, .script = .Malayalam }, + .{ .from = 0x0D66, .to = 0x0D6F, .script = .Malayalam }, + .{ .from = 0x0D70, .to = 0x0D78, .script = .Malayalam }, + .{ .from = 0x0D79, .to = 0x0D79, .script = .Malayalam }, + .{ .from = 0x0D7A, .to = 0x0D7F, .script = .Malayalam }, + .{ .from = 0x0D81, .to = 0x0D81, .script = .Sinhala }, + .{ .from = 0x0D82, .to = 0x0D83, .script = .Sinhala }, + .{ .from = 0x0D85, .to = 0x0D96, .script = .Sinhala }, + .{ .from = 0x0D9A, .to = 0x0DB1, .script = .Sinhala }, + .{ .from = 0x0DB3, .to = 0x0DBB, .script = .Sinhala }, + .{ .from = 0x0DBD, .to = 0x0DBD, .script = .Sinhala }, + .{ .from = 0x0DC0, .to = 0x0DC6, .script = .Sinhala }, + .{ .from = 0x0DCA, .to = 0x0DCA, .script = .Sinhala }, + .{ .from = 0x0DCF, .to = 0x0DD1, .script = .Sinhala }, + .{ .from = 0x0DD2, .to = 0x0DD4, .script = .Sinhala }, + .{ .from = 0x0DD6, .to = 0x0DD6, .script = .Sinhala }, + .{ .from = 0x0DD8, .to = 0x0DDF, .script = .Sinhala }, + .{ .from = 0x0DE6, .to = 0x0DEF, .script = .Sinhala }, + .{ .from = 0x0DF2, .to = 0x0DF3, .script = .Sinhala }, + .{ .from = 0x0DF4, .to = 0x0DF4, .script = .Sinhala }, + .{ .from = 0x111E1, .to = 0x111F4, .script = .Sinhala }, + .{ .from = 0x0E01, .to = 0x0E30, .script = .Thai }, + .{ .from = 0x0E31, .to = 0x0E31, .script = .Thai }, + .{ .from = 0x0E32, .to = 0x0E33, .script = .Thai }, + .{ .from = 0x0E34, .to = 0x0E3A, .script = .Thai }, + .{ .from = 0x0E40, .to = 0x0E45, .script = .Thai }, + .{ .from = 0x0E46, .to = 0x0E46, .script = .Thai }, + .{ .from = 0x0E47, .to = 0x0E4E, .script = .Thai }, + .{ .from = 0x0E4F, .to = 0x0E4F, .script = .Thai }, + .{ .from = 0x0E50, .to = 0x0E59, .script = .Thai }, + .{ .from = 0x0E5A, .to = 0x0E5B, .script = .Thai }, + .{ .from = 0x0E81, .to = 0x0E82, .script = .Lao }, + .{ .from = 0x0E84, .to = 0x0E84, .script = .Lao }, + .{ .from = 0x0E86, .to = 0x0E8A, .script = .Lao }, + .{ .from = 0x0E8C, .to = 0x0EA3, .script = .Lao }, + .{ .from = 0x0EA5, .to = 0x0EA5, .script = .Lao }, + .{ .from = 0x0EA7, .to = 0x0EB0, .script = .Lao }, + .{ .from = 0x0EB1, .to = 0x0EB1, .script = .Lao }, + .{ .from = 0x0EB2, .to = 0x0EB3, .script = .Lao }, + .{ .from = 0x0EB4, .to = 0x0EBC, .script = .Lao }, + .{ .from = 0x0EBD, .to = 0x0EBD, .script = .Lao }, + .{ .from = 0x0EC0, .to = 0x0EC4, .script = .Lao }, + .{ .from = 0x0EC6, .to = 0x0EC6, .script = .Lao }, + .{ .from = 0x0EC8, .to = 0x0ECD, .script = .Lao }, + .{ .from = 0x0ED0, .to = 0x0ED9, .script = .Lao }, + .{ .from = 0x0EDC, .to = 0x0EDF, .script = .Lao }, + .{ .from = 0x0F00, .to = 0x0F00, .script = .Tibetan }, + .{ .from = 0x0F01, .to = 0x0F03, .script = .Tibetan }, + .{ .from = 0x0F04, .to = 0x0F12, .script = .Tibetan }, + .{ .from = 0x0F13, .to = 0x0F13, .script = .Tibetan }, + .{ .from = 0x0F14, .to = 0x0F14, .script = .Tibetan }, + .{ .from = 0x0F15, .to = 0x0F17, .script = .Tibetan }, + .{ .from = 0x0F18, .to = 0x0F19, .script = .Tibetan }, + .{ .from = 0x0F1A, .to = 0x0F1F, .script = .Tibetan }, + .{ .from = 0x0F20, .to = 0x0F29, .script = .Tibetan }, + .{ .from = 0x0F2A, .to = 0x0F33, .script = .Tibetan }, + .{ .from = 0x0F34, .to = 0x0F34, .script = .Tibetan }, + .{ .from = 0x0F35, .to = 0x0F35, .script = .Tibetan }, + .{ .from = 0x0F36, .to = 0x0F36, .script = .Tibetan }, + .{ .from = 0x0F37, .to = 0x0F37, .script = .Tibetan }, + .{ .from = 0x0F38, .to = 0x0F38, .script = .Tibetan }, + .{ .from = 0x0F39, .to = 0x0F39, .script = .Tibetan }, + .{ .from = 0x0F3A, .to = 0x0F3A, .script = .Tibetan }, + .{ .from = 0x0F3B, .to = 0x0F3B, .script = .Tibetan }, + .{ .from = 0x0F3C, .to = 0x0F3C, .script = .Tibetan }, + .{ .from = 0x0F3D, .to = 0x0F3D, .script = .Tibetan }, + .{ .from = 0x0F3E, .to = 0x0F3F, .script = .Tibetan }, + .{ .from = 0x0F40, .to = 0x0F47, .script = .Tibetan }, + .{ .from = 0x0F49, .to = 0x0F6C, .script = .Tibetan }, + .{ .from = 0x0F71, .to = 0x0F7E, .script = .Tibetan }, + .{ .from = 0x0F7F, .to = 0x0F7F, .script = .Tibetan }, + .{ .from = 0x0F80, .to = 0x0F84, .script = .Tibetan }, + .{ .from = 0x0F85, .to = 0x0F85, .script = .Tibetan }, + .{ .from = 0x0F86, .to = 0x0F87, .script = .Tibetan }, + .{ .from = 0x0F88, .to = 0x0F8C, .script = .Tibetan }, + .{ .from = 0x0F8D, .to = 0x0F97, .script = .Tibetan }, + .{ .from = 0x0F99, .to = 0x0FBC, .script = .Tibetan }, + .{ .from = 0x0FBE, .to = 0x0FC5, .script = .Tibetan }, + .{ .from = 0x0FC6, .to = 0x0FC6, .script = .Tibetan }, + .{ .from = 0x0FC7, .to = 0x0FCC, .script = .Tibetan }, + .{ .from = 0x0FCE, .to = 0x0FCF, .script = .Tibetan }, + .{ .from = 0x0FD0, .to = 0x0FD4, .script = .Tibetan }, + .{ .from = 0x0FD9, .to = 0x0FDA, .script = .Tibetan }, + .{ .from = 0x1000, .to = 0x102A, .script = .Myanmar }, + .{ .from = 0x102B, .to = 0x102C, .script = .Myanmar }, + .{ .from = 0x102D, .to = 0x1030, .script = .Myanmar }, + .{ .from = 0x1031, .to = 0x1031, .script = .Myanmar }, + .{ .from = 0x1032, .to = 0x1037, .script = .Myanmar }, + .{ .from = 0x1038, .to = 0x1038, .script = .Myanmar }, + .{ .from = 0x1039, .to = 0x103A, .script = .Myanmar }, + .{ .from = 0x103B, .to = 0x103C, .script = .Myanmar }, + .{ .from = 0x103D, .to = 0x103E, .script = .Myanmar }, + .{ .from = 0x103F, .to = 0x103F, .script = .Myanmar }, + .{ .from = 0x1040, .to = 0x1049, .script = .Myanmar }, + .{ .from = 0x104A, .to = 0x104F, .script = .Myanmar }, + .{ .from = 0x1050, .to = 0x1055, .script = .Myanmar }, + .{ .from = 0x1056, .to = 0x1057, .script = .Myanmar }, + .{ .from = 0x1058, .to = 0x1059, .script = .Myanmar }, + .{ .from = 0x105A, .to = 0x105D, .script = .Myanmar }, + .{ .from = 0x105E, .to = 0x1060, .script = .Myanmar }, + .{ .from = 0x1061, .to = 0x1061, .script = .Myanmar }, + .{ .from = 0x1062, .to = 0x1064, .script = .Myanmar }, + .{ .from = 0x1065, .to = 0x1066, .script = .Myanmar }, + .{ .from = 0x1067, .to = 0x106D, .script = .Myanmar }, + .{ .from = 0x106E, .to = 0x1070, .script = .Myanmar }, + .{ .from = 0x1071, .to = 0x1074, .script = .Myanmar }, + .{ .from = 0x1075, .to = 0x1081, .script = .Myanmar }, + .{ .from = 0x1082, .to = 0x1082, .script = .Myanmar }, + .{ .from = 0x1083, .to = 0x1084, .script = .Myanmar }, + .{ .from = 0x1085, .to = 0x1086, .script = .Myanmar }, + .{ .from = 0x1087, .to = 0x108C, .script = .Myanmar }, + .{ .from = 0x108D, .to = 0x108D, .script = .Myanmar }, + .{ .from = 0x108E, .to = 0x108E, .script = .Myanmar }, + .{ .from = 0x108F, .to = 0x108F, .script = .Myanmar }, + .{ .from = 0x1090, .to = 0x1099, .script = .Myanmar }, + .{ .from = 0x109A, .to = 0x109C, .script = .Myanmar }, + .{ .from = 0x109D, .to = 0x109D, .script = .Myanmar }, + .{ .from = 0x109E, .to = 0x109F, .script = .Myanmar }, + .{ .from = 0xA9E0, .to = 0xA9E4, .script = .Myanmar }, + .{ .from = 0xA9E5, .to = 0xA9E5, .script = .Myanmar }, + .{ .from = 0xA9E6, .to = 0xA9E6, .script = .Myanmar }, + .{ .from = 0xA9E7, .to = 0xA9EF, .script = .Myanmar }, + .{ .from = 0xA9F0, .to = 0xA9F9, .script = .Myanmar }, + .{ .from = 0xA9FA, .to = 0xA9FE, .script = .Myanmar }, + .{ .from = 0xAA60, .to = 0xAA6F, .script = .Myanmar }, + .{ .from = 0xAA70, .to = 0xAA70, .script = .Myanmar }, + .{ .from = 0xAA71, .to = 0xAA76, .script = .Myanmar }, + .{ .from = 0xAA77, .to = 0xAA79, .script = .Myanmar }, + .{ .from = 0xAA7A, .to = 0xAA7A, .script = .Myanmar }, + .{ .from = 0xAA7B, .to = 0xAA7B, .script = .Myanmar }, + .{ .from = 0xAA7C, .to = 0xAA7C, .script = .Myanmar }, + .{ .from = 0xAA7D, .to = 0xAA7D, .script = .Myanmar }, + .{ .from = 0xAA7E, .to = 0xAA7F, .script = .Myanmar }, + .{ .from = 0x10A0, .to = 0x10C5, .script = .Georgian }, + .{ .from = 0x10C7, .to = 0x10C7, .script = .Georgian }, + .{ .from = 0x10CD, .to = 0x10CD, .script = .Georgian }, + .{ .from = 0x10D0, .to = 0x10FA, .script = .Georgian }, + .{ .from = 0x10FC, .to = 0x10FC, .script = .Georgian }, + .{ .from = 0x10FD, .to = 0x10FF, .script = .Georgian }, + .{ .from = 0x1C90, .to = 0x1CBA, .script = .Georgian }, + .{ .from = 0x1CBD, .to = 0x1CBF, .script = .Georgian }, + .{ .from = 0x2D00, .to = 0x2D25, .script = .Georgian }, + .{ .from = 0x2D27, .to = 0x2D27, .script = .Georgian }, + .{ .from = 0x2D2D, .to = 0x2D2D, .script = .Georgian }, + .{ .from = 0x1100, .to = 0x11FF, .script = .Hangul }, + .{ .from = 0x302E, .to = 0x302F, .script = .Hangul }, + .{ .from = 0x3131, .to = 0x318E, .script = .Hangul }, + .{ .from = 0x3200, .to = 0x321E, .script = .Hangul }, + .{ .from = 0x3260, .to = 0x327E, .script = .Hangul }, + .{ .from = 0xA960, .to = 0xA97C, .script = .Hangul }, + .{ .from = 0xAC00, .to = 0xD7A3, .script = .Hangul }, + .{ .from = 0xD7B0, .to = 0xD7C6, .script = .Hangul }, + .{ .from = 0xD7CB, .to = 0xD7FB, .script = .Hangul }, + .{ .from = 0xFFA0, .to = 0xFFBE, .script = .Hangul }, + .{ .from = 0xFFC2, .to = 0xFFC7, .script = .Hangul }, + .{ .from = 0xFFCA, .to = 0xFFCF, .script = .Hangul }, + .{ .from = 0xFFD2, .to = 0xFFD7, .script = .Hangul }, + .{ .from = 0xFFDA, .to = 0xFFDC, .script = .Hangul }, + .{ .from = 0x1200, .to = 0x1248, .script = .Ethiopic }, + .{ .from = 0x124A, .to = 0x124D, .script = .Ethiopic }, + .{ .from = 0x1250, .to = 0x1256, .script = .Ethiopic }, + .{ .from = 0x1258, .to = 0x1258, .script = .Ethiopic }, + .{ .from = 0x125A, .to = 0x125D, .script = .Ethiopic }, + .{ .from = 0x1260, .to = 0x1288, .script = .Ethiopic }, + .{ .from = 0x128A, .to = 0x128D, .script = .Ethiopic }, + .{ .from = 0x1290, .to = 0x12B0, .script = .Ethiopic }, + .{ .from = 0x12B2, .to = 0x12B5, .script = .Ethiopic }, + .{ .from = 0x12B8, .to = 0x12BE, .script = .Ethiopic }, + .{ .from = 0x12C0, .to = 0x12C0, .script = .Ethiopic }, + .{ .from = 0x12C2, .to = 0x12C5, .script = .Ethiopic }, + .{ .from = 0x12C8, .to = 0x12D6, .script = .Ethiopic }, + .{ .from = 0x12D8, .to = 0x1310, .script = .Ethiopic }, + .{ .from = 0x1312, .to = 0x1315, .script = .Ethiopic }, + .{ .from = 0x1318, .to = 0x135A, .script = .Ethiopic }, + .{ .from = 0x135D, .to = 0x135F, .script = .Ethiopic }, + .{ .from = 0x1360, .to = 0x1368, .script = .Ethiopic }, + .{ .from = 0x1369, .to = 0x137C, .script = .Ethiopic }, + .{ .from = 0x1380, .to = 0x138F, .script = .Ethiopic }, + .{ .from = 0x1390, .to = 0x1399, .script = .Ethiopic }, + .{ .from = 0x2D80, .to = 0x2D96, .script = .Ethiopic }, + .{ .from = 0x2DA0, .to = 0x2DA6, .script = .Ethiopic }, + .{ .from = 0x2DA8, .to = 0x2DAE, .script = .Ethiopic }, + .{ .from = 0x2DB0, .to = 0x2DB6, .script = .Ethiopic }, + .{ .from = 0x2DB8, .to = 0x2DBE, .script = .Ethiopic }, + .{ .from = 0x2DC0, .to = 0x2DC6, .script = .Ethiopic }, + .{ .from = 0x2DC8, .to = 0x2DCE, .script = .Ethiopic }, + .{ .from = 0x2DD0, .to = 0x2DD6, .script = .Ethiopic }, + .{ .from = 0x2DD8, .to = 0x2DDE, .script = .Ethiopic }, + .{ .from = 0xAB01, .to = 0xAB06, .script = .Ethiopic }, + .{ .from = 0xAB09, .to = 0xAB0E, .script = .Ethiopic }, + .{ .from = 0xAB11, .to = 0xAB16, .script = .Ethiopic }, + .{ .from = 0xAB20, .to = 0xAB26, .script = .Ethiopic }, + .{ .from = 0xAB28, .to = 0xAB2E, .script = .Ethiopic }, + .{ .from = 0x13A0, .to = 0x13F5, .script = .Cherokee }, + .{ .from = 0x13F8, .to = 0x13FD, .script = .Cherokee }, + .{ .from = 0xAB70, .to = 0xABBF, .script = .Cherokee }, + .{ .from = 0x1400, .to = 0x1400, .script = .Canadian_Aboriginal }, + .{ .from = 0x1401, .to = 0x166C, .script = .Canadian_Aboriginal }, + .{ .from = 0x166D, .to = 0x166D, .script = .Canadian_Aboriginal }, + .{ .from = 0x166E, .to = 0x166E, .script = .Canadian_Aboriginal }, + .{ .from = 0x166F, .to = 0x167F, .script = .Canadian_Aboriginal }, + .{ .from = 0x18B0, .to = 0x18F5, .script = .Canadian_Aboriginal }, + .{ .from = 0x1680, .to = 0x1680, .script = .Ogham }, + .{ .from = 0x1681, .to = 0x169A, .script = .Ogham }, + .{ .from = 0x169B, .to = 0x169B, .script = .Ogham }, + .{ .from = 0x169C, .to = 0x169C, .script = .Ogham }, + .{ .from = 0x16A0, .to = 0x16EA, .script = .Runic }, + .{ .from = 0x16EE, .to = 0x16F0, .script = .Runic }, + .{ .from = 0x16F1, .to = 0x16F8, .script = .Runic }, + .{ .from = 0x1780, .to = 0x17B3, .script = .Khmer }, + .{ .from = 0x17B4, .to = 0x17B5, .script = .Khmer }, + .{ .from = 0x17B6, .to = 0x17B6, .script = .Khmer }, + .{ .from = 0x17B7, .to = 0x17BD, .script = .Khmer }, + .{ .from = 0x17BE, .to = 0x17C5, .script = .Khmer }, + .{ .from = 0x17C6, .to = 0x17C6, .script = .Khmer }, + .{ .from = 0x17C7, .to = 0x17C8, .script = .Khmer }, + .{ .from = 0x17C9, .to = 0x17D3, .script = .Khmer }, + .{ .from = 0x17D4, .to = 0x17D6, .script = .Khmer }, + .{ .from = 0x17D7, .to = 0x17D7, .script = .Khmer }, + .{ .from = 0x17D8, .to = 0x17DA, .script = .Khmer }, + .{ .from = 0x17DB, .to = 0x17DB, .script = .Khmer }, + .{ .from = 0x17DC, .to = 0x17DC, .script = .Khmer }, + .{ .from = 0x17DD, .to = 0x17DD, .script = .Khmer }, + .{ .from = 0x17E0, .to = 0x17E9, .script = .Khmer }, + .{ .from = 0x17F0, .to = 0x17F9, .script = .Khmer }, + .{ .from = 0x19E0, .to = 0x19FF, .script = .Khmer }, + .{ .from = 0x1800, .to = 0x1801, .script = .Mongolian }, + .{ .from = 0x1804, .to = 0x1804, .script = .Mongolian }, + .{ .from = 0x1806, .to = 0x1806, .script = .Mongolian }, + .{ .from = 0x1807, .to = 0x180A, .script = .Mongolian }, + .{ .from = 0x180B, .to = 0x180D, .script = .Mongolian }, + .{ .from = 0x180E, .to = 0x180E, .script = .Mongolian }, + .{ .from = 0x1810, .to = 0x1819, .script = .Mongolian }, + .{ .from = 0x1820, .to = 0x1842, .script = .Mongolian }, + .{ .from = 0x1843, .to = 0x1843, .script = .Mongolian }, + .{ .from = 0x1844, .to = 0x1878, .script = .Mongolian }, + .{ .from = 0x1880, .to = 0x1884, .script = .Mongolian }, + .{ .from = 0x1885, .to = 0x1886, .script = .Mongolian }, + .{ .from = 0x1887, .to = 0x18A8, .script = .Mongolian }, + .{ .from = 0x18A9, .to = 0x18A9, .script = .Mongolian }, + .{ .from = 0x18AA, .to = 0x18AA, .script = .Mongolian }, + .{ .from = 0x11660, .to = 0x1166C, .script = .Mongolian }, + .{ .from = 0x3041, .to = 0x3096, .script = .Hiragana }, + .{ .from = 0x309D, .to = 0x309E, .script = .Hiragana }, + .{ .from = 0x309F, .to = 0x309F, .script = .Hiragana }, + .{ .from = 0x1B001, .to = 0x1B11E, .script = .Hiragana }, + .{ .from = 0x1B150, .to = 0x1B152, .script = .Hiragana }, + .{ .from = 0x1F200, .to = 0x1F200, .script = .Hiragana }, + .{ .from = 0x30A1, .to = 0x30FA, .script = .Katakana }, + .{ .from = 0x30FD, .to = 0x30FE, .script = .Katakana }, + .{ .from = 0x30FF, .to = 0x30FF, .script = .Katakana }, + .{ .from = 0x31F0, .to = 0x31FF, .script = .Katakana }, + .{ .from = 0x32D0, .to = 0x32FE, .script = .Katakana }, + .{ .from = 0x3300, .to = 0x3357, .script = .Katakana }, + .{ .from = 0xFF66, .to = 0xFF6F, .script = .Katakana }, + .{ .from = 0xFF71, .to = 0xFF9D, .script = .Katakana }, + .{ .from = 0x1B000, .to = 0x1B000, .script = .Katakana }, + .{ .from = 0x1B164, .to = 0x1B167, .script = .Katakana }, + .{ .from = 0x02EA, .to = 0x02EB, .script = .Bopomofo }, + .{ .from = 0x3105, .to = 0x312F, .script = .Bopomofo }, + .{ .from = 0x31A0, .to = 0x31BF, .script = .Bopomofo }, + .{ .from = 0x2E80, .to = 0x2E99, .script = .Han }, + .{ .from = 0x2E9B, .to = 0x2EF3, .script = .Han }, + .{ .from = 0x2F00, .to = 0x2FD5, .script = .Han }, + .{ .from = 0x3005, .to = 0x3005, .script = .Han }, + .{ .from = 0x3007, .to = 0x3007, .script = .Han }, + .{ .from = 0x3021, .to = 0x3029, .script = .Han }, + .{ .from = 0x3038, .to = 0x303A, .script = .Han }, + .{ .from = 0x303B, .to = 0x303B, .script = .Han }, + .{ .from = 0x3400, .to = 0x4DBF, .script = .Han }, + .{ .from = 0x4E00, .to = 0x9FFC, .script = .Han }, + .{ .from = 0xF900, .to = 0xFA6D, .script = .Han }, + .{ .from = 0xFA70, .to = 0xFAD9, .script = .Han }, + .{ .from = 0x16FF0, .to = 0x16FF1, .script = .Han }, + .{ .from = 0x20000, .to = 0x2A6DD, .script = .Han }, + .{ .from = 0x2A700, .to = 0x2B734, .script = .Han }, + .{ .from = 0x2B740, .to = 0x2B81D, .script = .Han }, + .{ .from = 0x2B820, .to = 0x2CEA1, .script = .Han }, + .{ .from = 0x2CEB0, .to = 0x2EBE0, .script = .Han }, + .{ .from = 0x2F800, .to = 0x2FA1D, .script = .Han }, + .{ .from = 0x30000, .to = 0x3134A, .script = .Han }, + .{ .from = 0xA000, .to = 0xA014, .script = .Yi }, + .{ .from = 0xA015, .to = 0xA015, .script = .Yi }, + .{ .from = 0xA016, .to = 0xA48C, .script = .Yi }, + .{ .from = 0xA490, .to = 0xA4C6, .script = .Yi }, + .{ .from = 0x10300, .to = 0x1031F, .script = .Old_Italic }, + .{ .from = 0x10320, .to = 0x10323, .script = .Old_Italic }, + .{ .from = 0x1032D, .to = 0x1032F, .script = .Old_Italic }, + .{ .from = 0x10330, .to = 0x10340, .script = .Gothic }, + .{ .from = 0x10341, .to = 0x10341, .script = .Gothic }, + .{ .from = 0x10342, .to = 0x10349, .script = .Gothic }, + .{ .from = 0x1034A, .to = 0x1034A, .script = .Gothic }, + .{ .from = 0x10400, .to = 0x1044F, .script = .Deseret }, + .{ .from = 0x0300, .to = 0x036F, .script = .Inherited }, + .{ .from = 0x0485, .to = 0x0486, .script = .Inherited }, + .{ .from = 0x064B, .to = 0x0655, .script = .Inherited }, + .{ .from = 0x0670, .to = 0x0670, .script = .Inherited }, + .{ .from = 0x0951, .to = 0x0954, .script = .Inherited }, + .{ .from = 0x1AB0, .to = 0x1ABD, .script = .Inherited }, + .{ .from = 0x1ABE, .to = 0x1ABE, .script = .Inherited }, + .{ .from = 0x1ABF, .to = 0x1AC0, .script = .Inherited }, + .{ .from = 0x1CD0, .to = 0x1CD2, .script = .Inherited }, + .{ .from = 0x1CD4, .to = 0x1CE0, .script = .Inherited }, + .{ .from = 0x1CE2, .to = 0x1CE8, .script = .Inherited }, + .{ .from = 0x1CED, .to = 0x1CED, .script = .Inherited }, + .{ .from = 0x1CF4, .to = 0x1CF4, .script = .Inherited }, + .{ .from = 0x1CF8, .to = 0x1CF9, .script = .Inherited }, + .{ .from = 0x1DC0, .to = 0x1DF9, .script = .Inherited }, + .{ .from = 0x1DFB, .to = 0x1DFF, .script = .Inherited }, + .{ .from = 0x200C, .to = 0x200D, .script = .Inherited }, + .{ .from = 0x20D0, .to = 0x20DC, .script = .Inherited }, + .{ .from = 0x20DD, .to = 0x20E0, .script = .Inherited }, + .{ .from = 0x20E1, .to = 0x20E1, .script = .Inherited }, + .{ .from = 0x20E2, .to = 0x20E4, .script = .Inherited }, + .{ .from = 0x20E5, .to = 0x20F0, .script = .Inherited }, + .{ .from = 0x302A, .to = 0x302D, .script = .Inherited }, + .{ .from = 0x3099, .to = 0x309A, .script = .Inherited }, + .{ .from = 0xFE00, .to = 0xFE0F, .script = .Inherited }, + .{ .from = 0xFE20, .to = 0xFE2D, .script = .Inherited }, + .{ .from = 0x101FD, .to = 0x101FD, .script = .Inherited }, + .{ .from = 0x102E0, .to = 0x102E0, .script = .Inherited }, + .{ .from = 0x1133B, .to = 0x1133B, .script = .Inherited }, + .{ .from = 0x1D167, .to = 0x1D169, .script = .Inherited }, + .{ .from = 0x1D17B, .to = 0x1D182, .script = .Inherited }, + .{ .from = 0x1D185, .to = 0x1D18B, .script = .Inherited }, + .{ .from = 0x1D1AA, .to = 0x1D1AD, .script = .Inherited }, + .{ .from = 0xE0100, .to = 0xE01EF, .script = .Inherited }, + .{ .from = 0x1700, .to = 0x170C, .script = .Tagalog }, + .{ .from = 0x170E, .to = 0x1711, .script = .Tagalog }, + .{ .from = 0x1712, .to = 0x1714, .script = .Tagalog }, + .{ .from = 0x1720, .to = 0x1731, .script = .Hanunoo }, + .{ .from = 0x1732, .to = 0x1734, .script = .Hanunoo }, + .{ .from = 0x1740, .to = 0x1751, .script = .Buhid }, + .{ .from = 0x1752, .to = 0x1753, .script = .Buhid }, + .{ .from = 0x1760, .to = 0x176C, .script = .Tagbanwa }, + .{ .from = 0x176E, .to = 0x1770, .script = .Tagbanwa }, + .{ .from = 0x1772, .to = 0x1773, .script = .Tagbanwa }, + .{ .from = 0x1900, .to = 0x191E, .script = .Limbu }, + .{ .from = 0x1920, .to = 0x1922, .script = .Limbu }, + .{ .from = 0x1923, .to = 0x1926, .script = .Limbu }, + .{ .from = 0x1927, .to = 0x1928, .script = .Limbu }, + .{ .from = 0x1929, .to = 0x192B, .script = .Limbu }, + .{ .from = 0x1930, .to = 0x1931, .script = .Limbu }, + .{ .from = 0x1932, .to = 0x1932, .script = .Limbu }, + .{ .from = 0x1933, .to = 0x1938, .script = .Limbu }, + .{ .from = 0x1939, .to = 0x193B, .script = .Limbu }, + .{ .from = 0x1940, .to = 0x1940, .script = .Limbu }, + .{ .from = 0x1944, .to = 0x1945, .script = .Limbu }, + .{ .from = 0x1946, .to = 0x194F, .script = .Limbu }, + .{ .from = 0x1950, .to = 0x196D, .script = .Tai_Le }, + .{ .from = 0x1970, .to = 0x1974, .script = .Tai_Le }, + .{ .from = 0x10000, .to = 0x1000B, .script = .Linear_B }, + .{ .from = 0x1000D, .to = 0x10026, .script = .Linear_B }, + .{ .from = 0x10028, .to = 0x1003A, .script = .Linear_B }, + .{ .from = 0x1003C, .to = 0x1003D, .script = .Linear_B }, + .{ .from = 0x1003F, .to = 0x1004D, .script = .Linear_B }, + .{ .from = 0x10050, .to = 0x1005D, .script = .Linear_B }, + .{ .from = 0x10080, .to = 0x100FA, .script = .Linear_B }, + .{ .from = 0x10380, .to = 0x1039D, .script = .Ugaritic }, + .{ .from = 0x1039F, .to = 0x1039F, .script = .Ugaritic }, + .{ .from = 0x10450, .to = 0x1047F, .script = .Shavian }, + .{ .from = 0x10480, .to = 0x1049D, .script = .Osmanya }, + .{ .from = 0x104A0, .to = 0x104A9, .script = .Osmanya }, + .{ .from = 0x10800, .to = 0x10805, .script = .Cypriot }, + .{ .from = 0x10808, .to = 0x10808, .script = .Cypriot }, + .{ .from = 0x1080A, .to = 0x10835, .script = .Cypriot }, + .{ .from = 0x10837, .to = 0x10838, .script = .Cypriot }, + .{ .from = 0x1083C, .to = 0x1083C, .script = .Cypriot }, + .{ .from = 0x1083F, .to = 0x1083F, .script = .Cypriot }, + .{ .from = 0x2800, .to = 0x28FF, .script = .Braille }, + .{ .from = 0x1A00, .to = 0x1A16, .script = .Buginese }, + .{ .from = 0x1A17, .to = 0x1A18, .script = .Buginese }, + .{ .from = 0x1A19, .to = 0x1A1A, .script = .Buginese }, + .{ .from = 0x1A1B, .to = 0x1A1B, .script = .Buginese }, + .{ .from = 0x1A1E, .to = 0x1A1F, .script = .Buginese }, + .{ .from = 0x03E2, .to = 0x03EF, .script = .Coptic }, + .{ .from = 0x2C80, .to = 0x2CE4, .script = .Coptic }, + .{ .from = 0x2CE5, .to = 0x2CEA, .script = .Coptic }, + .{ .from = 0x2CEB, .to = 0x2CEE, .script = .Coptic }, + .{ .from = 0x2CEF, .to = 0x2CF1, .script = .Coptic }, + .{ .from = 0x2CF2, .to = 0x2CF3, .script = .Coptic }, + .{ .from = 0x2CF9, .to = 0x2CFC, .script = .Coptic }, + .{ .from = 0x2CFD, .to = 0x2CFD, .script = .Coptic }, + .{ .from = 0x2CFE, .to = 0x2CFF, .script = .Coptic }, + .{ .from = 0x1980, .to = 0x19AB, .script = .New_Tai_Lue }, + .{ .from = 0x19B0, .to = 0x19C9, .script = .New_Tai_Lue }, + .{ .from = 0x19D0, .to = 0x19D9, .script = .New_Tai_Lue }, + .{ .from = 0x19DA, .to = 0x19DA, .script = .New_Tai_Lue }, + .{ .from = 0x19DE, .to = 0x19DF, .script = .New_Tai_Lue }, + .{ .from = 0x2C00, .to = 0x2C2E, .script = .Glagolitic }, + .{ .from = 0x2C30, .to = 0x2C5E, .script = .Glagolitic }, + .{ .from = 0x1E000, .to = 0x1E006, .script = .Glagolitic }, + .{ .from = 0x1E008, .to = 0x1E018, .script = .Glagolitic }, + .{ .from = 0x1E01B, .to = 0x1E021, .script = .Glagolitic }, + .{ .from = 0x1E023, .to = 0x1E024, .script = .Glagolitic }, + .{ .from = 0x1E026, .to = 0x1E02A, .script = .Glagolitic }, + .{ .from = 0x2D30, .to = 0x2D67, .script = .Tifinagh }, + .{ .from = 0x2D6F, .to = 0x2D6F, .script = .Tifinagh }, + .{ .from = 0x2D70, .to = 0x2D70, .script = .Tifinagh }, + .{ .from = 0x2D7F, .to = 0x2D7F, .script = .Tifinagh }, + .{ .from = 0xA800, .to = 0xA801, .script = .Syloti_Nagri }, + .{ .from = 0xA802, .to = 0xA802, .script = .Syloti_Nagri }, + .{ .from = 0xA803, .to = 0xA805, .script = .Syloti_Nagri }, + .{ .from = 0xA806, .to = 0xA806, .script = .Syloti_Nagri }, + .{ .from = 0xA807, .to = 0xA80A, .script = .Syloti_Nagri }, + .{ .from = 0xA80B, .to = 0xA80B, .script = .Syloti_Nagri }, + .{ .from = 0xA80C, .to = 0xA822, .script = .Syloti_Nagri }, + .{ .from = 0xA823, .to = 0xA824, .script = .Syloti_Nagri }, + .{ .from = 0xA825, .to = 0xA826, .script = .Syloti_Nagri }, + .{ .from = 0xA827, .to = 0xA827, .script = .Syloti_Nagri }, + .{ .from = 0xA828, .to = 0xA82B, .script = .Syloti_Nagri }, + .{ .from = 0xA82C, .to = 0xA82C, .script = .Syloti_Nagri }, + .{ .from = 0x103A0, .to = 0x103C3, .script = .Old_Persian }, + .{ .from = 0x103C8, .to = 0x103CF, .script = .Old_Persian }, + .{ .from = 0x103D0, .to = 0x103D0, .script = .Old_Persian }, + .{ .from = 0x103D1, .to = 0x103D5, .script = .Old_Persian }, + .{ .from = 0x10A00, .to = 0x10A00, .script = .Kharoshthi }, + .{ .from = 0x10A01, .to = 0x10A03, .script = .Kharoshthi }, + .{ .from = 0x10A05, .to = 0x10A06, .script = .Kharoshthi }, + .{ .from = 0x10A0C, .to = 0x10A0F, .script = .Kharoshthi }, + .{ .from = 0x10A10, .to = 0x10A13, .script = .Kharoshthi }, + .{ .from = 0x10A15, .to = 0x10A17, .script = .Kharoshthi }, + .{ .from = 0x10A19, .to = 0x10A35, .script = .Kharoshthi }, + .{ .from = 0x10A38, .to = 0x10A3A, .script = .Kharoshthi }, + .{ .from = 0x10A3F, .to = 0x10A3F, .script = .Kharoshthi }, + .{ .from = 0x10A40, .to = 0x10A48, .script = .Kharoshthi }, + .{ .from = 0x10A50, .to = 0x10A58, .script = .Kharoshthi }, + .{ .from = 0x1B00, .to = 0x1B03, .script = .Balinese }, + .{ .from = 0x1B04, .to = 0x1B04, .script = .Balinese }, + .{ .from = 0x1B05, .to = 0x1B33, .script = .Balinese }, + .{ .from = 0x1B34, .to = 0x1B34, .script = .Balinese }, + .{ .from = 0x1B35, .to = 0x1B35, .script = .Balinese }, + .{ .from = 0x1B36, .to = 0x1B3A, .script = .Balinese }, + .{ .from = 0x1B3B, .to = 0x1B3B, .script = .Balinese }, + .{ .from = 0x1B3C, .to = 0x1B3C, .script = .Balinese }, + .{ .from = 0x1B3D, .to = 0x1B41, .script = .Balinese }, + .{ .from = 0x1B42, .to = 0x1B42, .script = .Balinese }, + .{ .from = 0x1B43, .to = 0x1B44, .script = .Balinese }, + .{ .from = 0x1B45, .to = 0x1B4B, .script = .Balinese }, + .{ .from = 0x1B50, .to = 0x1B59, .script = .Balinese }, + .{ .from = 0x1B5A, .to = 0x1B60, .script = .Balinese }, + .{ .from = 0x1B61, .to = 0x1B6A, .script = .Balinese }, + .{ .from = 0x1B6B, .to = 0x1B73, .script = .Balinese }, + .{ .from = 0x1B74, .to = 0x1B7C, .script = .Balinese }, + .{ .from = 0x12000, .to = 0x12399, .script = .Cuneiform }, + .{ .from = 0x12400, .to = 0x1246E, .script = .Cuneiform }, + .{ .from = 0x12470, .to = 0x12474, .script = .Cuneiform }, + .{ .from = 0x12480, .to = 0x12543, .script = .Cuneiform }, + .{ .from = 0x10900, .to = 0x10915, .script = .Phoenician }, + .{ .from = 0x10916, .to = 0x1091B, .script = .Phoenician }, + .{ .from = 0x1091F, .to = 0x1091F, .script = .Phoenician }, + .{ .from = 0xA840, .to = 0xA873, .script = .Phags_Pa }, + .{ .from = 0xA874, .to = 0xA877, .script = .Phags_Pa }, + .{ .from = 0x07C0, .to = 0x07C9, .script = .Nko }, + .{ .from = 0x07CA, .to = 0x07EA, .script = .Nko }, + .{ .from = 0x07EB, .to = 0x07F3, .script = .Nko }, + .{ .from = 0x07F4, .to = 0x07F5, .script = .Nko }, + .{ .from = 0x07F6, .to = 0x07F6, .script = .Nko }, + .{ .from = 0x07F7, .to = 0x07F9, .script = .Nko }, + .{ .from = 0x07FA, .to = 0x07FA, .script = .Nko }, + .{ .from = 0x07FD, .to = 0x07FD, .script = .Nko }, + .{ .from = 0x07FE, .to = 0x07FF, .script = .Nko }, + .{ .from = 0x1B80, .to = 0x1B81, .script = .Sundanese }, + .{ .from = 0x1B82, .to = 0x1B82, .script = .Sundanese }, + .{ .from = 0x1B83, .to = 0x1BA0, .script = .Sundanese }, + .{ .from = 0x1BA1, .to = 0x1BA1, .script = .Sundanese }, + .{ .from = 0x1BA2, .to = 0x1BA5, .script = .Sundanese }, + .{ .from = 0x1BA6, .to = 0x1BA7, .script = .Sundanese }, + .{ .from = 0x1BA8, .to = 0x1BA9, .script = .Sundanese }, + .{ .from = 0x1BAA, .to = 0x1BAA, .script = .Sundanese }, + .{ .from = 0x1BAB, .to = 0x1BAD, .script = .Sundanese }, + .{ .from = 0x1BAE, .to = 0x1BAF, .script = .Sundanese }, + .{ .from = 0x1BB0, .to = 0x1BB9, .script = .Sundanese }, + .{ .from = 0x1BBA, .to = 0x1BBF, .script = .Sundanese }, + .{ .from = 0x1CC0, .to = 0x1CC7, .script = .Sundanese }, + .{ .from = 0x1C00, .to = 0x1C23, .script = .Lepcha }, + .{ .from = 0x1C24, .to = 0x1C2B, .script = .Lepcha }, + .{ .from = 0x1C2C, .to = 0x1C33, .script = .Lepcha }, + .{ .from = 0x1C34, .to = 0x1C35, .script = .Lepcha }, + .{ .from = 0x1C36, .to = 0x1C37, .script = .Lepcha }, + .{ .from = 0x1C3B, .to = 0x1C3F, .script = .Lepcha }, + .{ .from = 0x1C40, .to = 0x1C49, .script = .Lepcha }, + .{ .from = 0x1C4D, .to = 0x1C4F, .script = .Lepcha }, + .{ .from = 0x1C50, .to = 0x1C59, .script = .Ol_Chiki }, + .{ .from = 0x1C5A, .to = 0x1C77, .script = .Ol_Chiki }, + .{ .from = 0x1C78, .to = 0x1C7D, .script = .Ol_Chiki }, + .{ .from = 0x1C7E, .to = 0x1C7F, .script = .Ol_Chiki }, + .{ .from = 0xA500, .to = 0xA60B, .script = .Vai }, + .{ .from = 0xA60C, .to = 0xA60C, .script = .Vai }, + .{ .from = 0xA60D, .to = 0xA60F, .script = .Vai }, + .{ .from = 0xA610, .to = 0xA61F, .script = .Vai }, + .{ .from = 0xA620, .to = 0xA629, .script = .Vai }, + .{ .from = 0xA62A, .to = 0xA62B, .script = .Vai }, + .{ .from = 0xA880, .to = 0xA881, .script = .Saurashtra }, + .{ .from = 0xA882, .to = 0xA8B3, .script = .Saurashtra }, + .{ .from = 0xA8B4, .to = 0xA8C3, .script = .Saurashtra }, + .{ .from = 0xA8C4, .to = 0xA8C5, .script = .Saurashtra }, + .{ .from = 0xA8CE, .to = 0xA8CF, .script = .Saurashtra }, + .{ .from = 0xA8D0, .to = 0xA8D9, .script = .Saurashtra }, + .{ .from = 0xA900, .to = 0xA909, .script = .Kayah_Li }, + .{ .from = 0xA90A, .to = 0xA925, .script = .Kayah_Li }, + .{ .from = 0xA926, .to = 0xA92D, .script = .Kayah_Li }, + .{ .from = 0xA92F, .to = 0xA92F, .script = .Kayah_Li }, + .{ .from = 0xA930, .to = 0xA946, .script = .Rejang }, + .{ .from = 0xA947, .to = 0xA951, .script = .Rejang }, + .{ .from = 0xA952, .to = 0xA953, .script = .Rejang }, + .{ .from = 0xA95F, .to = 0xA95F, .script = .Rejang }, + .{ .from = 0x10280, .to = 0x1029C, .script = .Lycian }, + .{ .from = 0x102A0, .to = 0x102D0, .script = .Carian }, + .{ .from = 0x10920, .to = 0x10939, .script = .Lydian }, + .{ .from = 0x1093F, .to = 0x1093F, .script = .Lydian }, + .{ .from = 0xAA00, .to = 0xAA28, .script = .Cham }, + .{ .from = 0xAA29, .to = 0xAA2E, .script = .Cham }, + .{ .from = 0xAA2F, .to = 0xAA30, .script = .Cham }, + .{ .from = 0xAA31, .to = 0xAA32, .script = .Cham }, + .{ .from = 0xAA33, .to = 0xAA34, .script = .Cham }, + .{ .from = 0xAA35, .to = 0xAA36, .script = .Cham }, + .{ .from = 0xAA40, .to = 0xAA42, .script = .Cham }, + .{ .from = 0xAA43, .to = 0xAA43, .script = .Cham }, + .{ .from = 0xAA44, .to = 0xAA4B, .script = .Cham }, + .{ .from = 0xAA4C, .to = 0xAA4C, .script = .Cham }, + .{ .from = 0xAA4D, .to = 0xAA4D, .script = .Cham }, + .{ .from = 0xAA50, .to = 0xAA59, .script = .Cham }, + .{ .from = 0xAA5C, .to = 0xAA5F, .script = .Cham }, + .{ .from = 0x1A20, .to = 0x1A54, .script = .Tai_Tham }, + .{ .from = 0x1A55, .to = 0x1A55, .script = .Tai_Tham }, + .{ .from = 0x1A56, .to = 0x1A56, .script = .Tai_Tham }, + .{ .from = 0x1A57, .to = 0x1A57, .script = .Tai_Tham }, + .{ .from = 0x1A58, .to = 0x1A5E, .script = .Tai_Tham }, + .{ .from = 0x1A60, .to = 0x1A60, .script = .Tai_Tham }, + .{ .from = 0x1A61, .to = 0x1A61, .script = .Tai_Tham }, + .{ .from = 0x1A62, .to = 0x1A62, .script = .Tai_Tham }, + .{ .from = 0x1A63, .to = 0x1A64, .script = .Tai_Tham }, + .{ .from = 0x1A65, .to = 0x1A6C, .script = .Tai_Tham }, + .{ .from = 0x1A6D, .to = 0x1A72, .script = .Tai_Tham }, + .{ .from = 0x1A73, .to = 0x1A7C, .script = .Tai_Tham }, + .{ .from = 0x1A7F, .to = 0x1A7F, .script = .Tai_Tham }, + .{ .from = 0x1A80, .to = 0x1A89, .script = .Tai_Tham }, + .{ .from = 0x1A90, .to = 0x1A99, .script = .Tai_Tham }, + .{ .from = 0x1AA0, .to = 0x1AA6, .script = .Tai_Tham }, + .{ .from = 0x1AA7, .to = 0x1AA7, .script = .Tai_Tham }, + .{ .from = 0x1AA8, .to = 0x1AAD, .script = .Tai_Tham }, + .{ .from = 0xAA80, .to = 0xAAAF, .script = .Tai_Viet }, + .{ .from = 0xAAB0, .to = 0xAAB0, .script = .Tai_Viet }, + .{ .from = 0xAAB1, .to = 0xAAB1, .script = .Tai_Viet }, + .{ .from = 0xAAB2, .to = 0xAAB4, .script = .Tai_Viet }, + .{ .from = 0xAAB5, .to = 0xAAB6, .script = .Tai_Viet }, + .{ .from = 0xAAB7, .to = 0xAAB8, .script = .Tai_Viet }, + .{ .from = 0xAAB9, .to = 0xAABD, .script = .Tai_Viet }, + .{ .from = 0xAABE, .to = 0xAABF, .script = .Tai_Viet }, + .{ .from = 0xAAC0, .to = 0xAAC0, .script = .Tai_Viet }, + .{ .from = 0xAAC1, .to = 0xAAC1, .script = .Tai_Viet }, + .{ .from = 0xAAC2, .to = 0xAAC2, .script = .Tai_Viet }, + .{ .from = 0xAADB, .to = 0xAADC, .script = .Tai_Viet }, + .{ .from = 0xAADD, .to = 0xAADD, .script = .Tai_Viet }, + .{ .from = 0xAADE, .to = 0xAADF, .script = .Tai_Viet }, + .{ .from = 0x10B00, .to = 0x10B35, .script = .Avestan }, + .{ .from = 0x10B39, .to = 0x10B3F, .script = .Avestan }, + .{ .from = 0x13000, .to = 0x1342E, .script = .Egyptian_Hieroglyphs }, + .{ .from = 0x13430, .to = 0x13438, .script = .Egyptian_Hieroglyphs }, + .{ .from = 0x0800, .to = 0x0815, .script = .Samaritan }, + .{ .from = 0x0816, .to = 0x0819, .script = .Samaritan }, + .{ .from = 0x081A, .to = 0x081A, .script = .Samaritan }, + .{ .from = 0x081B, .to = 0x0823, .script = .Samaritan }, + .{ .from = 0x0824, .to = 0x0824, .script = .Samaritan }, + .{ .from = 0x0825, .to = 0x0827, .script = .Samaritan }, + .{ .from = 0x0828, .to = 0x0828, .script = .Samaritan }, + .{ .from = 0x0829, .to = 0x082D, .script = .Samaritan }, + .{ .from = 0x0830, .to = 0x083E, .script = .Samaritan }, + .{ .from = 0xA4D0, .to = 0xA4F7, .script = .Lisu }, + .{ .from = 0xA4F8, .to = 0xA4FD, .script = .Lisu }, + .{ .from = 0xA4FE, .to = 0xA4FF, .script = .Lisu }, + .{ .from = 0x11FB0, .to = 0x11FB0, .script = .Lisu }, + .{ .from = 0xA6A0, .to = 0xA6E5, .script = .Bamum }, + .{ .from = 0xA6E6, .to = 0xA6EF, .script = .Bamum }, + .{ .from = 0xA6F0, .to = 0xA6F1, .script = .Bamum }, + .{ .from = 0xA6F2, .to = 0xA6F7, .script = .Bamum }, + .{ .from = 0x16800, .to = 0x16A38, .script = .Bamum }, + .{ .from = 0xA980, .to = 0xA982, .script = .Javanese }, + .{ .from = 0xA983, .to = 0xA983, .script = .Javanese }, + .{ .from = 0xA984, .to = 0xA9B2, .script = .Javanese }, + .{ .from = 0xA9B3, .to = 0xA9B3, .script = .Javanese }, + .{ .from = 0xA9B4, .to = 0xA9B5, .script = .Javanese }, + .{ .from = 0xA9B6, .to = 0xA9B9, .script = .Javanese }, + .{ .from = 0xA9BA, .to = 0xA9BB, .script = .Javanese }, + .{ .from = 0xA9BC, .to = 0xA9BD, .script = .Javanese }, + .{ .from = 0xA9BE, .to = 0xA9C0, .script = .Javanese }, + .{ .from = 0xA9C1, .to = 0xA9CD, .script = .Javanese }, + .{ .from = 0xA9D0, .to = 0xA9D9, .script = .Javanese }, + .{ .from = 0xA9DE, .to = 0xA9DF, .script = .Javanese }, + .{ .from = 0xAAE0, .to = 0xAAEA, .script = .Meetei_Mayek }, + .{ .from = 0xAAEB, .to = 0xAAEB, .script = .Meetei_Mayek }, + .{ .from = 0xAAEC, .to = 0xAAED, .script = .Meetei_Mayek }, + .{ .from = 0xAAEE, .to = 0xAAEF, .script = .Meetei_Mayek }, + .{ .from = 0xAAF0, .to = 0xAAF1, .script = .Meetei_Mayek }, + .{ .from = 0xAAF2, .to = 0xAAF2, .script = .Meetei_Mayek }, + .{ .from = 0xAAF3, .to = 0xAAF4, .script = .Meetei_Mayek }, + .{ .from = 0xAAF5, .to = 0xAAF5, .script = .Meetei_Mayek }, + .{ .from = 0xAAF6, .to = 0xAAF6, .script = .Meetei_Mayek }, + .{ .from = 0xABC0, .to = 0xABE2, .script = .Meetei_Mayek }, + .{ .from = 0xABE3, .to = 0xABE4, .script = .Meetei_Mayek }, + .{ .from = 0xABE5, .to = 0xABE5, .script = .Meetei_Mayek }, + .{ .from = 0xABE6, .to = 0xABE7, .script = .Meetei_Mayek }, + .{ .from = 0xABE8, .to = 0xABE8, .script = .Meetei_Mayek }, + .{ .from = 0xABE9, .to = 0xABEA, .script = .Meetei_Mayek }, + .{ .from = 0xABEB, .to = 0xABEB, .script = .Meetei_Mayek }, + .{ .from = 0xABEC, .to = 0xABEC, .script = .Meetei_Mayek }, + .{ .from = 0xABED, .to = 0xABED, .script = .Meetei_Mayek }, + .{ .from = 0xABF0, .to = 0xABF9, .script = .Meetei_Mayek }, + .{ .from = 0x10840, .to = 0x10855, .script = .Imperial_Aramaic }, + .{ .from = 0x10857, .to = 0x10857, .script = .Imperial_Aramaic }, + .{ .from = 0x10858, .to = 0x1085F, .script = .Imperial_Aramaic }, + .{ .from = 0x10A60, .to = 0x10A7C, .script = .Old_South_Arabian }, + .{ .from = 0x10A7D, .to = 0x10A7E, .script = .Old_South_Arabian }, + .{ .from = 0x10A7F, .to = 0x10A7F, .script = .Old_South_Arabian }, + .{ .from = 0x10B40, .to = 0x10B55, .script = .Inscriptional_Parthian }, + .{ .from = 0x10B58, .to = 0x10B5F, .script = .Inscriptional_Parthian }, + .{ .from = 0x10B60, .to = 0x10B72, .script = .Inscriptional_Pahlavi }, + .{ .from = 0x10B78, .to = 0x10B7F, .script = .Inscriptional_Pahlavi }, + .{ .from = 0x10C00, .to = 0x10C48, .script = .Old_Turkic }, + .{ .from = 0x11080, .to = 0x11081, .script = .Kaithi }, + .{ .from = 0x11082, .to = 0x11082, .script = .Kaithi }, + .{ .from = 0x11083, .to = 0x110AF, .script = .Kaithi }, + .{ .from = 0x110B0, .to = 0x110B2, .script = .Kaithi }, + .{ .from = 0x110B3, .to = 0x110B6, .script = .Kaithi }, + .{ .from = 0x110B7, .to = 0x110B8, .script = .Kaithi }, + .{ .from = 0x110B9, .to = 0x110BA, .script = .Kaithi }, + .{ .from = 0x110BB, .to = 0x110BC, .script = .Kaithi }, + .{ .from = 0x110BD, .to = 0x110BD, .script = .Kaithi }, + .{ .from = 0x110BE, .to = 0x110C1, .script = .Kaithi }, + .{ .from = 0x110CD, .to = 0x110CD, .script = .Kaithi }, + .{ .from = 0x1BC0, .to = 0x1BE5, .script = .Batak }, + .{ .from = 0x1BE6, .to = 0x1BE6, .script = .Batak }, + .{ .from = 0x1BE7, .to = 0x1BE7, .script = .Batak }, + .{ .from = 0x1BE8, .to = 0x1BE9, .script = .Batak }, + .{ .from = 0x1BEA, .to = 0x1BEC, .script = .Batak }, + .{ .from = 0x1BED, .to = 0x1BED, .script = .Batak }, + .{ .from = 0x1BEE, .to = 0x1BEE, .script = .Batak }, + .{ .from = 0x1BEF, .to = 0x1BF1, .script = .Batak }, + .{ .from = 0x1BF2, .to = 0x1BF3, .script = .Batak }, + .{ .from = 0x1BFC, .to = 0x1BFF, .script = .Batak }, + .{ .from = 0x11000, .to = 0x11000, .script = .Brahmi }, + .{ .from = 0x11001, .to = 0x11001, .script = .Brahmi }, + .{ .from = 0x11002, .to = 0x11002, .script = .Brahmi }, + .{ .from = 0x11003, .to = 0x11037, .script = .Brahmi }, + .{ .from = 0x11038, .to = 0x11046, .script = .Brahmi }, + .{ .from = 0x11047, .to = 0x1104D, .script = .Brahmi }, + .{ .from = 0x11052, .to = 0x11065, .script = .Brahmi }, + .{ .from = 0x11066, .to = 0x1106F, .script = .Brahmi }, + .{ .from = 0x1107F, .to = 0x1107F, .script = .Brahmi }, + .{ .from = 0x0840, .to = 0x0858, .script = .Mandaic }, + .{ .from = 0x0859, .to = 0x085B, .script = .Mandaic }, + .{ .from = 0x085E, .to = 0x085E, .script = .Mandaic }, + .{ .from = 0x11100, .to = 0x11102, .script = .Chakma }, + .{ .from = 0x11103, .to = 0x11126, .script = .Chakma }, + .{ .from = 0x11127, .to = 0x1112B, .script = .Chakma }, + .{ .from = 0x1112C, .to = 0x1112C, .script = .Chakma }, + .{ .from = 0x1112D, .to = 0x11134, .script = .Chakma }, + .{ .from = 0x11136, .to = 0x1113F, .script = .Chakma }, + .{ .from = 0x11140, .to = 0x11143, .script = .Chakma }, + .{ .from = 0x11144, .to = 0x11144, .script = .Chakma }, + .{ .from = 0x11145, .to = 0x11146, .script = .Chakma }, + .{ .from = 0x11147, .to = 0x11147, .script = .Chakma }, + .{ .from = 0x109A0, .to = 0x109B7, .script = .Meroitic_Cursive }, + .{ .from = 0x109BC, .to = 0x109BD, .script = .Meroitic_Cursive }, + .{ .from = 0x109BE, .to = 0x109BF, .script = .Meroitic_Cursive }, + .{ .from = 0x109C0, .to = 0x109CF, .script = .Meroitic_Cursive }, + .{ .from = 0x109D2, .to = 0x109FF, .script = .Meroitic_Cursive }, + .{ .from = 0x10980, .to = 0x1099F, .script = .Meroitic_Hieroglyphs }, + .{ .from = 0x16F00, .to = 0x16F4A, .script = .Miao }, + .{ .from = 0x16F4F, .to = 0x16F4F, .script = .Miao }, + .{ .from = 0x16F50, .to = 0x16F50, .script = .Miao }, + .{ .from = 0x16F51, .to = 0x16F87, .script = .Miao }, + .{ .from = 0x16F8F, .to = 0x16F92, .script = .Miao }, + .{ .from = 0x16F93, .to = 0x16F9F, .script = .Miao }, + .{ .from = 0x11180, .to = 0x11181, .script = .Sharada }, + .{ .from = 0x11182, .to = 0x11182, .script = .Sharada }, + .{ .from = 0x11183, .to = 0x111B2, .script = .Sharada }, + .{ .from = 0x111B3, .to = 0x111B5, .script = .Sharada }, + .{ .from = 0x111B6, .to = 0x111BE, .script = .Sharada }, + .{ .from = 0x111BF, .to = 0x111C0, .script = .Sharada }, + .{ .from = 0x111C1, .to = 0x111C4, .script = .Sharada }, + .{ .from = 0x111C5, .to = 0x111C8, .script = .Sharada }, + .{ .from = 0x111C9, .to = 0x111CC, .script = .Sharada }, + .{ .from = 0x111CD, .to = 0x111CD, .script = .Sharada }, + .{ .from = 0x111CE, .to = 0x111CE, .script = .Sharada }, + .{ .from = 0x111CF, .to = 0x111CF, .script = .Sharada }, + .{ .from = 0x111D0, .to = 0x111D9, .script = .Sharada }, + .{ .from = 0x111DA, .to = 0x111DA, .script = .Sharada }, + .{ .from = 0x111DB, .to = 0x111DB, .script = .Sharada }, + .{ .from = 0x111DC, .to = 0x111DC, .script = .Sharada }, + .{ .from = 0x111DD, .to = 0x111DF, .script = .Sharada }, + .{ .from = 0x110D0, .to = 0x110E8, .script = .Sora_Sompeng }, + .{ .from = 0x110F0, .to = 0x110F9, .script = .Sora_Sompeng }, + .{ .from = 0x11680, .to = 0x116AA, .script = .Takri }, + .{ .from = 0x116AB, .to = 0x116AB, .script = .Takri }, + .{ .from = 0x116AC, .to = 0x116AC, .script = .Takri }, + .{ .from = 0x116AD, .to = 0x116AD, .script = .Takri }, + .{ .from = 0x116AE, .to = 0x116AF, .script = .Takri }, + .{ .from = 0x116B0, .to = 0x116B5, .script = .Takri }, + .{ .from = 0x116B6, .to = 0x116B6, .script = .Takri }, + .{ .from = 0x116B7, .to = 0x116B7, .script = .Takri }, + .{ .from = 0x116B8, .to = 0x116B8, .script = .Takri }, + .{ .from = 0x116C0, .to = 0x116C9, .script = .Takri }, + .{ .from = 0x10530, .to = 0x10563, .script = .Caucasian_Albanian }, + .{ .from = 0x1056F, .to = 0x1056F, .script = .Caucasian_Albanian }, + .{ .from = 0x16AD0, .to = 0x16AED, .script = .Bassa_Vah }, + .{ .from = 0x16AF0, .to = 0x16AF4, .script = .Bassa_Vah }, + .{ .from = 0x16AF5, .to = 0x16AF5, .script = .Bassa_Vah }, + .{ .from = 0x1BC00, .to = 0x1BC6A, .script = .Duployan }, + .{ .from = 0x1BC70, .to = 0x1BC7C, .script = .Duployan }, + .{ .from = 0x1BC80, .to = 0x1BC88, .script = .Duployan }, + .{ .from = 0x1BC90, .to = 0x1BC99, .script = .Duployan }, + .{ .from = 0x1BC9C, .to = 0x1BC9C, .script = .Duployan }, + .{ .from = 0x1BC9D, .to = 0x1BC9E, .script = .Duployan }, + .{ .from = 0x1BC9F, .to = 0x1BC9F, .script = .Duployan }, + .{ .from = 0x10500, .to = 0x10527, .script = .Elbasan }, + .{ .from = 0x11300, .to = 0x11301, .script = .Grantha }, + .{ .from = 0x11302, .to = 0x11303, .script = .Grantha }, + .{ .from = 0x11305, .to = 0x1130C, .script = .Grantha }, + .{ .from = 0x1130F, .to = 0x11310, .script = .Grantha }, + .{ .from = 0x11313, .to = 0x11328, .script = .Grantha }, + .{ .from = 0x1132A, .to = 0x11330, .script = .Grantha }, + .{ .from = 0x11332, .to = 0x11333, .script = .Grantha }, + .{ .from = 0x11335, .to = 0x11339, .script = .Grantha }, + .{ .from = 0x1133C, .to = 0x1133C, .script = .Grantha }, + .{ .from = 0x1133D, .to = 0x1133D, .script = .Grantha }, + .{ .from = 0x1133E, .to = 0x1133F, .script = .Grantha }, + .{ .from = 0x11340, .to = 0x11340, .script = .Grantha }, + .{ .from = 0x11341, .to = 0x11344, .script = .Grantha }, + .{ .from = 0x11347, .to = 0x11348, .script = .Grantha }, + .{ .from = 0x1134B, .to = 0x1134D, .script = .Grantha }, + .{ .from = 0x11350, .to = 0x11350, .script = .Grantha }, + .{ .from = 0x11357, .to = 0x11357, .script = .Grantha }, + .{ .from = 0x1135D, .to = 0x11361, .script = .Grantha }, + .{ .from = 0x11362, .to = 0x11363, .script = .Grantha }, + .{ .from = 0x11366, .to = 0x1136C, .script = .Grantha }, + .{ .from = 0x11370, .to = 0x11374, .script = .Grantha }, + .{ .from = 0x16B00, .to = 0x16B2F, .script = .Pahawh_Hmong }, + .{ .from = 0x16B30, .to = 0x16B36, .script = .Pahawh_Hmong }, + .{ .from = 0x16B37, .to = 0x16B3B, .script = .Pahawh_Hmong }, + .{ .from = 0x16B3C, .to = 0x16B3F, .script = .Pahawh_Hmong }, + .{ .from = 0x16B40, .to = 0x16B43, .script = .Pahawh_Hmong }, + .{ .from = 0x16B44, .to = 0x16B44, .script = .Pahawh_Hmong }, + .{ .from = 0x16B45, .to = 0x16B45, .script = .Pahawh_Hmong }, + .{ .from = 0x16B50, .to = 0x16B59, .script = .Pahawh_Hmong }, + .{ .from = 0x16B5B, .to = 0x16B61, .script = .Pahawh_Hmong }, + .{ .from = 0x16B63, .to = 0x16B77, .script = .Pahawh_Hmong }, + .{ .from = 0x16B7D, .to = 0x16B8F, .script = .Pahawh_Hmong }, + .{ .from = 0x11200, .to = 0x11211, .script = .Khojki }, + .{ .from = 0x11213, .to = 0x1122B, .script = .Khojki }, + .{ .from = 0x1122C, .to = 0x1122E, .script = .Khojki }, + .{ .from = 0x1122F, .to = 0x11231, .script = .Khojki }, + .{ .from = 0x11232, .to = 0x11233, .script = .Khojki }, + .{ .from = 0x11234, .to = 0x11234, .script = .Khojki }, + .{ .from = 0x11235, .to = 0x11235, .script = .Khojki }, + .{ .from = 0x11236, .to = 0x11237, .script = .Khojki }, + .{ .from = 0x11238, .to = 0x1123D, .script = .Khojki }, + .{ .from = 0x1123E, .to = 0x1123E, .script = .Khojki }, + .{ .from = 0x10600, .to = 0x10736, .script = .Linear_A }, + .{ .from = 0x10740, .to = 0x10755, .script = .Linear_A }, + .{ .from = 0x10760, .to = 0x10767, .script = .Linear_A }, + .{ .from = 0x11150, .to = 0x11172, .script = .Mahajani }, + .{ .from = 0x11173, .to = 0x11173, .script = .Mahajani }, + .{ .from = 0x11174, .to = 0x11175, .script = .Mahajani }, + .{ .from = 0x11176, .to = 0x11176, .script = .Mahajani }, + .{ .from = 0x10AC0, .to = 0x10AC7, .script = .Manichaean }, + .{ .from = 0x10AC8, .to = 0x10AC8, .script = .Manichaean }, + .{ .from = 0x10AC9, .to = 0x10AE4, .script = .Manichaean }, + .{ .from = 0x10AE5, .to = 0x10AE6, .script = .Manichaean }, + .{ .from = 0x10AEB, .to = 0x10AEF, .script = .Manichaean }, + .{ .from = 0x10AF0, .to = 0x10AF6, .script = .Manichaean }, + .{ .from = 0x1E800, .to = 0x1E8C4, .script = .Mende_Kikakui }, + .{ .from = 0x1E8C7, .to = 0x1E8CF, .script = .Mende_Kikakui }, + .{ .from = 0x1E8D0, .to = 0x1E8D6, .script = .Mende_Kikakui }, + .{ .from = 0x11600, .to = 0x1162F, .script = .Modi }, + .{ .from = 0x11630, .to = 0x11632, .script = .Modi }, + .{ .from = 0x11633, .to = 0x1163A, .script = .Modi }, + .{ .from = 0x1163B, .to = 0x1163C, .script = .Modi }, + .{ .from = 0x1163D, .to = 0x1163D, .script = .Modi }, + .{ .from = 0x1163E, .to = 0x1163E, .script = .Modi }, + .{ .from = 0x1163F, .to = 0x11640, .script = .Modi }, + .{ .from = 0x11641, .to = 0x11643, .script = .Modi }, + .{ .from = 0x11644, .to = 0x11644, .script = .Modi }, + .{ .from = 0x11650, .to = 0x11659, .script = .Modi }, + .{ .from = 0x16A40, .to = 0x16A5E, .script = .Mro }, + .{ .from = 0x16A60, .to = 0x16A69, .script = .Mro }, + .{ .from = 0x16A6E, .to = 0x16A6F, .script = .Mro }, + .{ .from = 0x10A80, .to = 0x10A9C, .script = .Old_North_Arabian }, + .{ .from = 0x10A9D, .to = 0x10A9F, .script = .Old_North_Arabian }, + .{ .from = 0x10880, .to = 0x1089E, .script = .Nabataean }, + .{ .from = 0x108A7, .to = 0x108AF, .script = .Nabataean }, + .{ .from = 0x10860, .to = 0x10876, .script = .Palmyrene }, + .{ .from = 0x10877, .to = 0x10878, .script = .Palmyrene }, + .{ .from = 0x10879, .to = 0x1087F, .script = .Palmyrene }, + .{ .from = 0x11AC0, .to = 0x11AF8, .script = .Pau_Cin_Hau }, + .{ .from = 0x10350, .to = 0x10375, .script = .Old_Permic }, + .{ .from = 0x10376, .to = 0x1037A, .script = .Old_Permic }, + .{ .from = 0x10B80, .to = 0x10B91, .script = .Psalter_Pahlavi }, + .{ .from = 0x10B99, .to = 0x10B9C, .script = .Psalter_Pahlavi }, + .{ .from = 0x10BA9, .to = 0x10BAF, .script = .Psalter_Pahlavi }, + .{ .from = 0x11580, .to = 0x115AE, .script = .Siddham }, + .{ .from = 0x115AF, .to = 0x115B1, .script = .Siddham }, + .{ .from = 0x115B2, .to = 0x115B5, .script = .Siddham }, + .{ .from = 0x115B8, .to = 0x115BB, .script = .Siddham }, + .{ .from = 0x115BC, .to = 0x115BD, .script = .Siddham }, + .{ .from = 0x115BE, .to = 0x115BE, .script = .Siddham }, + .{ .from = 0x115BF, .to = 0x115C0, .script = .Siddham }, + .{ .from = 0x115C1, .to = 0x115D7, .script = .Siddham }, + .{ .from = 0x115D8, .to = 0x115DB, .script = .Siddham }, + .{ .from = 0x115DC, .to = 0x115DD, .script = .Siddham }, + .{ .from = 0x112B0, .to = 0x112DE, .script = .Khudawadi }, + .{ .from = 0x112DF, .to = 0x112DF, .script = .Khudawadi }, + .{ .from = 0x112E0, .to = 0x112E2, .script = .Khudawadi }, + .{ .from = 0x112E3, .to = 0x112EA, .script = .Khudawadi }, + .{ .from = 0x112F0, .to = 0x112F9, .script = .Khudawadi }, + .{ .from = 0x11480, .to = 0x114AF, .script = .Tirhuta }, + .{ .from = 0x114B0, .to = 0x114B2, .script = .Tirhuta }, + .{ .from = 0x114B3, .to = 0x114B8, .script = .Tirhuta }, + .{ .from = 0x114B9, .to = 0x114B9, .script = .Tirhuta }, + .{ .from = 0x114BA, .to = 0x114BA, .script = .Tirhuta }, + .{ .from = 0x114BB, .to = 0x114BE, .script = .Tirhuta }, + .{ .from = 0x114BF, .to = 0x114C0, .script = .Tirhuta }, + .{ .from = 0x114C1, .to = 0x114C1, .script = .Tirhuta }, + .{ .from = 0x114C2, .to = 0x114C3, .script = .Tirhuta }, + .{ .from = 0x114C4, .to = 0x114C5, .script = .Tirhuta }, + .{ .from = 0x114C6, .to = 0x114C6, .script = .Tirhuta }, + .{ .from = 0x114C7, .to = 0x114C7, .script = .Tirhuta }, + .{ .from = 0x114D0, .to = 0x114D9, .script = .Tirhuta }, + .{ .from = 0x118A0, .to = 0x118DF, .script = .Warang_Citi }, + .{ .from = 0x118E0, .to = 0x118E9, .script = .Warang_Citi }, + .{ .from = 0x118EA, .to = 0x118F2, .script = .Warang_Citi }, + .{ .from = 0x118FF, .to = 0x118FF, .script = .Warang_Citi }, + .{ .from = 0x11700, .to = 0x1171A, .script = .Ahom }, + .{ .from = 0x1171D, .to = 0x1171F, .script = .Ahom }, + .{ .from = 0x11720, .to = 0x11721, .script = .Ahom }, + .{ .from = 0x11722, .to = 0x11725, .script = .Ahom }, + .{ .from = 0x11726, .to = 0x11726, .script = .Ahom }, + .{ .from = 0x11727, .to = 0x1172B, .script = .Ahom }, + .{ .from = 0x11730, .to = 0x11739, .script = .Ahom }, + .{ .from = 0x1173A, .to = 0x1173B, .script = .Ahom }, + .{ .from = 0x1173C, .to = 0x1173E, .script = .Ahom }, + .{ .from = 0x1173F, .to = 0x1173F, .script = .Ahom }, + .{ .from = 0x14400, .to = 0x14646, .script = .Anatolian_Hieroglyphs }, + .{ .from = 0x108E0, .to = 0x108F2, .script = .Hatran }, + .{ .from = 0x108F4, .to = 0x108F5, .script = .Hatran }, + .{ .from = 0x108FB, .to = 0x108FF, .script = .Hatran }, + .{ .from = 0x11280, .to = 0x11286, .script = .Multani }, + .{ .from = 0x11288, .to = 0x11288, .script = .Multani }, + .{ .from = 0x1128A, .to = 0x1128D, .script = .Multani }, + .{ .from = 0x1128F, .to = 0x1129D, .script = .Multani }, + .{ .from = 0x1129F, .to = 0x112A8, .script = .Multani }, + .{ .from = 0x112A9, .to = 0x112A9, .script = .Multani }, + .{ .from = 0x10C80, .to = 0x10CB2, .script = .Old_Hungarian }, + .{ .from = 0x10CC0, .to = 0x10CF2, .script = .Old_Hungarian }, + .{ .from = 0x10CFA, .to = 0x10CFF, .script = .Old_Hungarian }, + .{ .from = 0x1D800, .to = 0x1D9FF, .script = .SignWriting }, + .{ .from = 0x1DA00, .to = 0x1DA36, .script = .SignWriting }, + .{ .from = 0x1DA37, .to = 0x1DA3A, .script = .SignWriting }, + .{ .from = 0x1DA3B, .to = 0x1DA6C, .script = .SignWriting }, + .{ .from = 0x1DA6D, .to = 0x1DA74, .script = .SignWriting }, + .{ .from = 0x1DA75, .to = 0x1DA75, .script = .SignWriting }, + .{ .from = 0x1DA76, .to = 0x1DA83, .script = .SignWriting }, + .{ .from = 0x1DA84, .to = 0x1DA84, .script = .SignWriting }, + .{ .from = 0x1DA85, .to = 0x1DA86, .script = .SignWriting }, + .{ .from = 0x1DA87, .to = 0x1DA8B, .script = .SignWriting }, + .{ .from = 0x1DA9B, .to = 0x1DA9F, .script = .SignWriting }, + .{ .from = 0x1DAA1, .to = 0x1DAAF, .script = .SignWriting }, + .{ .from = 0x1E900, .to = 0x1E943, .script = .Adlam }, + .{ .from = 0x1E944, .to = 0x1E94A, .script = .Adlam }, + .{ .from = 0x1E94B, .to = 0x1E94B, .script = .Adlam }, + .{ .from = 0x1E950, .to = 0x1E959, .script = .Adlam }, + .{ .from = 0x1E95E, .to = 0x1E95F, .script = .Adlam }, + .{ .from = 0x11C00, .to = 0x11C08, .script = .Bhaiksuki }, + .{ .from = 0x11C0A, .to = 0x11C2E, .script = .Bhaiksuki }, + .{ .from = 0x11C2F, .to = 0x11C2F, .script = .Bhaiksuki }, + .{ .from = 0x11C30, .to = 0x11C36, .script = .Bhaiksuki }, + .{ .from = 0x11C38, .to = 0x11C3D, .script = .Bhaiksuki }, + .{ .from = 0x11C3E, .to = 0x11C3E, .script = .Bhaiksuki }, + .{ .from = 0x11C3F, .to = 0x11C3F, .script = .Bhaiksuki }, + .{ .from = 0x11C40, .to = 0x11C40, .script = .Bhaiksuki }, + .{ .from = 0x11C41, .to = 0x11C45, .script = .Bhaiksuki }, + .{ .from = 0x11C50, .to = 0x11C59, .script = .Bhaiksuki }, + .{ .from = 0x11C5A, .to = 0x11C6C, .script = .Bhaiksuki }, + .{ .from = 0x11C70, .to = 0x11C71, .script = .Marchen }, + .{ .from = 0x11C72, .to = 0x11C8F, .script = .Marchen }, + .{ .from = 0x11C92, .to = 0x11CA7, .script = .Marchen }, + .{ .from = 0x11CA9, .to = 0x11CA9, .script = .Marchen }, + .{ .from = 0x11CAA, .to = 0x11CB0, .script = .Marchen }, + .{ .from = 0x11CB1, .to = 0x11CB1, .script = .Marchen }, + .{ .from = 0x11CB2, .to = 0x11CB3, .script = .Marchen }, + .{ .from = 0x11CB4, .to = 0x11CB4, .script = .Marchen }, + .{ .from = 0x11CB5, .to = 0x11CB6, .script = .Marchen }, + .{ .from = 0x11400, .to = 0x11434, .script = .Newa }, + .{ .from = 0x11435, .to = 0x11437, .script = .Newa }, + .{ .from = 0x11438, .to = 0x1143F, .script = .Newa }, + .{ .from = 0x11440, .to = 0x11441, .script = .Newa }, + .{ .from = 0x11442, .to = 0x11444, .script = .Newa }, + .{ .from = 0x11445, .to = 0x11445, .script = .Newa }, + .{ .from = 0x11446, .to = 0x11446, .script = .Newa }, + .{ .from = 0x11447, .to = 0x1144A, .script = .Newa }, + .{ .from = 0x1144B, .to = 0x1144F, .script = .Newa }, + .{ .from = 0x11450, .to = 0x11459, .script = .Newa }, + .{ .from = 0x1145A, .to = 0x1145B, .script = .Newa }, + .{ .from = 0x1145D, .to = 0x1145D, .script = .Newa }, + .{ .from = 0x1145E, .to = 0x1145E, .script = .Newa }, + .{ .from = 0x1145F, .to = 0x11461, .script = .Newa }, + .{ .from = 0x104B0, .to = 0x104D3, .script = .Osage }, + .{ .from = 0x104D8, .to = 0x104FB, .script = .Osage }, + .{ .from = 0x16FE0, .to = 0x16FE0, .script = .Tangut }, + .{ .from = 0x17000, .to = 0x187F7, .script = .Tangut }, + .{ .from = 0x18800, .to = 0x18AFF, .script = .Tangut }, + .{ .from = 0x18D00, .to = 0x18D08, .script = .Tangut }, + .{ .from = 0x11D00, .to = 0x11D06, .script = .Masaram_Gondi }, + .{ .from = 0x11D08, .to = 0x11D09, .script = .Masaram_Gondi }, + .{ .from = 0x11D0B, .to = 0x11D30, .script = .Masaram_Gondi }, + .{ .from = 0x11D31, .to = 0x11D36, .script = .Masaram_Gondi }, + .{ .from = 0x11D3A, .to = 0x11D3A, .script = .Masaram_Gondi }, + .{ .from = 0x11D3C, .to = 0x11D3D, .script = .Masaram_Gondi }, + .{ .from = 0x11D3F, .to = 0x11D45, .script = .Masaram_Gondi }, + .{ .from = 0x11D46, .to = 0x11D46, .script = .Masaram_Gondi }, + .{ .from = 0x11D47, .to = 0x11D47, .script = .Masaram_Gondi }, + .{ .from = 0x11D50, .to = 0x11D59, .script = .Masaram_Gondi }, + .{ .from = 0x16FE1, .to = 0x16FE1, .script = .Nushu }, + .{ .from = 0x1B170, .to = 0x1B2FB, .script = .Nushu }, + .{ .from = 0x11A50, .to = 0x11A50, .script = .Soyombo }, + .{ .from = 0x11A51, .to = 0x11A56, .script = .Soyombo }, + .{ .from = 0x11A57, .to = 0x11A58, .script = .Soyombo }, + .{ .from = 0x11A59, .to = 0x11A5B, .script = .Soyombo }, + .{ .from = 0x11A5C, .to = 0x11A89, .script = .Soyombo }, + .{ .from = 0x11A8A, .to = 0x11A96, .script = .Soyombo }, + .{ .from = 0x11A97, .to = 0x11A97, .script = .Soyombo }, + .{ .from = 0x11A98, .to = 0x11A99, .script = .Soyombo }, + .{ .from = 0x11A9A, .to = 0x11A9C, .script = .Soyombo }, + .{ .from = 0x11A9D, .to = 0x11A9D, .script = .Soyombo }, + .{ .from = 0x11A9E, .to = 0x11AA2, .script = .Soyombo }, + .{ .from = 0x11A00, .to = 0x11A00, .script = .Zanabazar_Square }, + .{ .from = 0x11A01, .to = 0x11A0A, .script = .Zanabazar_Square }, + .{ .from = 0x11A0B, .to = 0x11A32, .script = .Zanabazar_Square }, + .{ .from = 0x11A33, .to = 0x11A38, .script = .Zanabazar_Square }, + .{ .from = 0x11A39, .to = 0x11A39, .script = .Zanabazar_Square }, + .{ .from = 0x11A3A, .to = 0x11A3A, .script = .Zanabazar_Square }, + .{ .from = 0x11A3B, .to = 0x11A3E, .script = .Zanabazar_Square }, + .{ .from = 0x11A3F, .to = 0x11A46, .script = .Zanabazar_Square }, + .{ .from = 0x11A47, .to = 0x11A47, .script = .Zanabazar_Square }, + .{ .from = 0x11800, .to = 0x1182B, .script = .Dogra }, + .{ .from = 0x1182C, .to = 0x1182E, .script = .Dogra }, + .{ .from = 0x1182F, .to = 0x11837, .script = .Dogra }, + .{ .from = 0x11838, .to = 0x11838, .script = .Dogra }, + .{ .from = 0x11839, .to = 0x1183A, .script = .Dogra }, + .{ .from = 0x1183B, .to = 0x1183B, .script = .Dogra }, + .{ .from = 0x11D60, .to = 0x11D65, .script = .Gunjala_Gondi }, + .{ .from = 0x11D67, .to = 0x11D68, .script = .Gunjala_Gondi }, + .{ .from = 0x11D6A, .to = 0x11D89, .script = .Gunjala_Gondi }, + .{ .from = 0x11D8A, .to = 0x11D8E, .script = .Gunjala_Gondi }, + .{ .from = 0x11D90, .to = 0x11D91, .script = .Gunjala_Gondi }, + .{ .from = 0x11D93, .to = 0x11D94, .script = .Gunjala_Gondi }, + .{ .from = 0x11D95, .to = 0x11D95, .script = .Gunjala_Gondi }, + .{ .from = 0x11D96, .to = 0x11D96, .script = .Gunjala_Gondi }, + .{ .from = 0x11D97, .to = 0x11D97, .script = .Gunjala_Gondi }, + .{ .from = 0x11D98, .to = 0x11D98, .script = .Gunjala_Gondi }, + .{ .from = 0x11DA0, .to = 0x11DA9, .script = .Gunjala_Gondi }, + .{ .from = 0x11EE0, .to = 0x11EF2, .script = .Makasar }, + .{ .from = 0x11EF3, .to = 0x11EF4, .script = .Makasar }, + .{ .from = 0x11EF5, .to = 0x11EF6, .script = .Makasar }, + .{ .from = 0x11EF7, .to = 0x11EF8, .script = .Makasar }, + .{ .from = 0x16E40, .to = 0x16E7F, .script = .Medefaidrin }, + .{ .from = 0x16E80, .to = 0x16E96, .script = .Medefaidrin }, + .{ .from = 0x16E97, .to = 0x16E9A, .script = .Medefaidrin }, + .{ .from = 0x10D00, .to = 0x10D23, .script = .Hanifi_Rohingya }, + .{ .from = 0x10D24, .to = 0x10D27, .script = .Hanifi_Rohingya }, + .{ .from = 0x10D30, .to = 0x10D39, .script = .Hanifi_Rohingya }, + .{ .from = 0x10F30, .to = 0x10F45, .script = .Sogdian }, + .{ .from = 0x10F46, .to = 0x10F50, .script = .Sogdian }, + .{ .from = 0x10F51, .to = 0x10F54, .script = .Sogdian }, + .{ .from = 0x10F55, .to = 0x10F59, .script = .Sogdian }, + .{ .from = 0x10F00, .to = 0x10F1C, .script = .Old_Sogdian }, + .{ .from = 0x10F1D, .to = 0x10F26, .script = .Old_Sogdian }, + .{ .from = 0x10F27, .to = 0x10F27, .script = .Old_Sogdian }, + .{ .from = 0x10FE0, .to = 0x10FF6, .script = .Elymaic }, + .{ .from = 0x119A0, .to = 0x119A7, .script = .Nandinagari }, + .{ .from = 0x119AA, .to = 0x119D0, .script = .Nandinagari }, + .{ .from = 0x119D1, .to = 0x119D3, .script = .Nandinagari }, + .{ .from = 0x119D4, .to = 0x119D7, .script = .Nandinagari }, + .{ .from = 0x119DA, .to = 0x119DB, .script = .Nandinagari }, + .{ .from = 0x119DC, .to = 0x119DF, .script = .Nandinagari }, + .{ .from = 0x119E0, .to = 0x119E0, .script = .Nandinagari }, + .{ .from = 0x119E1, .to = 0x119E1, .script = .Nandinagari }, + .{ .from = 0x119E2, .to = 0x119E2, .script = .Nandinagari }, + .{ .from = 0x119E3, .to = 0x119E3, .script = .Nandinagari }, + .{ .from = 0x119E4, .to = 0x119E4, .script = .Nandinagari }, + .{ .from = 0x1E100, .to = 0x1E12C, .script = .Nyiakeng_Puachue_Hmong }, + .{ .from = 0x1E130, .to = 0x1E136, .script = .Nyiakeng_Puachue_Hmong }, + .{ .from = 0x1E137, .to = 0x1E13D, .script = .Nyiakeng_Puachue_Hmong }, + .{ .from = 0x1E140, .to = 0x1E149, .script = .Nyiakeng_Puachue_Hmong }, + .{ .from = 0x1E14E, .to = 0x1E14E, .script = .Nyiakeng_Puachue_Hmong }, + .{ .from = 0x1E14F, .to = 0x1E14F, .script = .Nyiakeng_Puachue_Hmong }, + .{ .from = 0x1E2C0, .to = 0x1E2EB, .script = .Wancho }, + .{ .from = 0x1E2EC, .to = 0x1E2EF, .script = .Wancho }, + .{ .from = 0x1E2F0, .to = 0x1E2F9, .script = .Wancho }, + .{ .from = 0x1E2FF, .to = 0x1E2FF, .script = .Wancho }, + .{ .from = 0x10FB0, .to = 0x10FC4, .script = .Chorasmian }, + .{ .from = 0x10FC5, .to = 0x10FCB, .script = .Chorasmian }, + .{ .from = 0x11900, .to = 0x11906, .script = .Dives_Akuru }, + .{ .from = 0x11909, .to = 0x11909, .script = .Dives_Akuru }, + .{ .from = 0x1190C, .to = 0x11913, .script = .Dives_Akuru }, + .{ .from = 0x11915, .to = 0x11916, .script = .Dives_Akuru }, + .{ .from = 0x11918, .to = 0x1192F, .script = .Dives_Akuru }, + .{ .from = 0x11930, .to = 0x11935, .script = .Dives_Akuru }, + .{ .from = 0x11937, .to = 0x11938, .script = .Dives_Akuru }, + .{ .from = 0x1193B, .to = 0x1193C, .script = .Dives_Akuru }, + .{ .from = 0x1193D, .to = 0x1193D, .script = .Dives_Akuru }, + .{ .from = 0x1193E, .to = 0x1193E, .script = .Dives_Akuru }, + .{ .from = 0x1193F, .to = 0x1193F, .script = .Dives_Akuru }, + .{ .from = 0x11940, .to = 0x11940, .script = .Dives_Akuru }, + .{ .from = 0x11941, .to = 0x11941, .script = .Dives_Akuru }, + .{ .from = 0x11942, .to = 0x11942, .script = .Dives_Akuru }, + .{ .from = 0x11943, .to = 0x11943, .script = .Dives_Akuru }, + .{ .from = 0x11944, .to = 0x11946, .script = .Dives_Akuru }, + .{ .from = 0x11950, .to = 0x11959, .script = .Dives_Akuru }, + .{ .from = 0x16FE4, .to = 0x16FE4, .script = .Khitan_Small_Script }, + .{ .from = 0x18B00, .to = 0x18CD5, .script = .Khitan_Small_Script }, + .{ .from = 0x10E80, .to = 0x10EA9, .script = .Yezidi }, + .{ .from = 0x10EAB, .to = 0x10EAC, .script = .Yezidi }, + .{ .from = 0x10EAD, .to = 0x10EAD, .script = .Yezidi }, + .{ .from = 0x10EB0, .to = 0x10EB1, .script = .Yezidi }, +}; -- 2.54.0