diff --git a/.gitattributes b/.gitattributes new file mode 100644 index 0000000000000000000000000000000000000000..403c8ef104b8bf3476b7a5155be3158eae28734e --- /dev/null +++ b/.gitattributes @@ -0,0 +1,3 @@ +* text=auto +*.zig text eol=lf +zigmod.* text eol=lf diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000000000000000000000000000000000000..fca76950e1542a6e4e13830388ac57078e055e03 --- /dev/null +++ b/.gitignore @@ -0,0 +1,7 @@ +.zig-cache +zig-out +.zigmod +deps.zig +files.zig +zigmod.lock +node_modules diff --git a/2008.zig b/2008.zig new file mode 100755 index 0000000000000000000000000000000000000000..290435480e12c173eff93fb7595e3b08f19324af --- /dev/null +++ b/2008.zig @@ -0,0 +1,3097 @@ +// This file is part of Unicode IDNA Compatibility Processing +// For documentation, see http://www.unicode.org/reports/tr46/ +// + +// Based on the source file: https://www.unicode.org/Public/17.0.0/idna/Idna2008.txt +// + +pub const Prop = struct { + cp: u21, + category: Category +}; + +pub const PropRange = struct { + from: u21, + to: u21, + category: Category +}; + +pub const Category = enum { + pvalid, + contextj, + contexto, + disallowed, + unassigned, +}; + +pub const data = [_]Prop{ + .{ .cp = 0x002D, .category = .pvalid }, + .{ .cp = 0x00B7, .category = .contexto }, + .{ .cp = 0x00F7, .category = .disallowed }, + .{ .cp = 0x0100, .category = .disallowed }, + .{ .cp = 0x0101, .category = .pvalid }, + .{ .cp = 0x0102, .category = .disallowed }, + .{ .cp = 0x0103, .category = .pvalid }, + .{ .cp = 0x0104, .category = .disallowed }, + .{ .cp = 0x0105, .category = .pvalid }, + .{ .cp = 0x0106, .category = .disallowed }, + .{ .cp = 0x0107, .category = .pvalid }, + .{ .cp = 0x0108, .category = .disallowed }, + .{ .cp = 0x0109, .category = .pvalid }, + .{ .cp = 0x010A, .category = .disallowed }, + .{ .cp = 0x010B, .category = .pvalid }, + .{ .cp = 0x010C, .category = .disallowed }, + .{ .cp = 0x010D, .category = .pvalid }, + .{ .cp = 0x010E, .category = .disallowed }, + .{ .cp = 0x010F, .category = .pvalid }, + .{ .cp = 0x0110, .category = .disallowed }, + .{ .cp = 0x0111, .category = .pvalid }, + .{ .cp = 0x0112, .category = .disallowed }, + .{ .cp = 0x0113, .category = .pvalid }, + .{ .cp = 0x0114, .category = .disallowed }, + .{ .cp = 0x0115, .category = .pvalid }, + .{ .cp = 0x0116, .category = .disallowed }, + .{ .cp = 0x0117, .category = .pvalid }, + .{ .cp = 0x0118, .category = .disallowed }, + .{ .cp = 0x0119, .category = .pvalid }, + .{ .cp = 0x011A, .category = .disallowed }, + .{ .cp = 0x011B, .category = .pvalid }, + .{ .cp = 0x011C, .category = .disallowed }, + .{ .cp = 0x011D, .category = .pvalid }, + .{ .cp = 0x011E, .category = .disallowed }, + .{ .cp = 0x011F, .category = .pvalid }, + .{ .cp = 0x0120, .category = .disallowed }, + .{ .cp = 0x0121, .category = .pvalid }, + .{ .cp = 0x0122, .category = .disallowed }, + .{ .cp = 0x0123, .category = .pvalid }, + .{ .cp = 0x0124, .category = .disallowed }, + .{ .cp = 0x0125, .category = .pvalid }, + .{ .cp = 0x0126, .category = .disallowed }, + .{ .cp = 0x0127, .category = .pvalid }, + .{ .cp = 0x0128, .category = .disallowed }, + .{ .cp = 0x0129, .category = .pvalid }, + .{ .cp = 0x012A, .category = .disallowed }, + .{ .cp = 0x012B, .category = .pvalid }, + .{ .cp = 0x012C, .category = .disallowed }, + .{ .cp = 0x012D, .category = .pvalid }, + .{ .cp = 0x012E, .category = .disallowed }, + .{ .cp = 0x012F, .category = .pvalid }, + .{ .cp = 0x0130, .category = .disallowed }, + .{ .cp = 0x0131, .category = .pvalid }, + .{ .cp = 0x0135, .category = .pvalid }, + .{ .cp = 0x0136, .category = .disallowed }, + .{ .cp = 0x0139, .category = .disallowed }, + .{ .cp = 0x013A, .category = .pvalid }, + .{ .cp = 0x013B, .category = .disallowed }, + .{ .cp = 0x013C, .category = .pvalid }, + .{ .cp = 0x013D, .category = .disallowed }, + .{ .cp = 0x013E, .category = .pvalid }, + .{ .cp = 0x0142, .category = .pvalid }, + .{ .cp = 0x0143, .category = .disallowed }, + .{ .cp = 0x0144, .category = .pvalid }, + .{ .cp = 0x0145, .category = .disallowed }, + .{ .cp = 0x0146, .category = .pvalid }, + .{ .cp = 0x0147, .category = .disallowed }, + .{ .cp = 0x0148, .category = .pvalid }, + .{ .cp = 0x014B, .category = .pvalid }, + .{ .cp = 0x014C, .category = .disallowed }, + .{ .cp = 0x014D, .category = .pvalid }, + .{ .cp = 0x014E, .category = .disallowed }, + .{ .cp = 0x014F, .category = .pvalid }, + .{ .cp = 0x0150, .category = .disallowed }, + .{ .cp = 0x0151, .category = .pvalid }, + .{ .cp = 0x0152, .category = .disallowed }, + .{ .cp = 0x0153, .category = .pvalid }, + .{ .cp = 0x0154, .category = .disallowed }, + .{ .cp = 0x0155, .category = .pvalid }, + .{ .cp = 0x0156, .category = .disallowed }, + .{ .cp = 0x0157, .category = .pvalid }, + .{ .cp = 0x0158, .category = .disallowed }, + .{ .cp = 0x0159, .category = .pvalid }, + .{ .cp = 0x015A, .category = .disallowed }, + .{ .cp = 0x015B, .category = .pvalid }, + .{ .cp = 0x015C, .category = .disallowed }, + .{ .cp = 0x015D, .category = .pvalid }, + .{ .cp = 0x015E, .category = .disallowed }, + .{ .cp = 0x015F, .category = .pvalid }, + .{ .cp = 0x0160, .category = .disallowed }, + .{ .cp = 0x0161, .category = .pvalid }, + .{ .cp = 0x0162, .category = .disallowed }, + .{ .cp = 0x0163, .category = .pvalid }, + .{ .cp = 0x0164, .category = .disallowed }, + .{ .cp = 0x0165, .category = .pvalid }, + .{ .cp = 0x0166, .category = .disallowed }, + .{ .cp = 0x0167, .category = .pvalid }, + .{ .cp = 0x0168, .category = .disallowed }, + .{ .cp = 0x0169, .category = .pvalid }, + .{ .cp = 0x016A, .category = .disallowed }, + .{ .cp = 0x016B, .category = .pvalid }, + .{ .cp = 0x016C, .category = .disallowed }, + .{ .cp = 0x016D, .category = .pvalid }, + .{ .cp = 0x016E, .category = .disallowed }, + .{ .cp = 0x016F, .category = .pvalid }, + .{ .cp = 0x0170, .category = .disallowed }, + .{ .cp = 0x0171, .category = .pvalid }, + .{ .cp = 0x0172, .category = .disallowed }, + .{ .cp = 0x0173, .category = .pvalid }, + .{ .cp = 0x0174, .category = .disallowed }, + .{ .cp = 0x0175, .category = .pvalid }, + .{ .cp = 0x0176, .category = .disallowed }, + .{ .cp = 0x0177, .category = .pvalid }, + .{ .cp = 0x017A, .category = .pvalid }, + .{ .cp = 0x017B, .category = .disallowed }, + .{ .cp = 0x017C, .category = .pvalid }, + .{ .cp = 0x017D, .category = .disallowed }, + .{ .cp = 0x017E, .category = .pvalid }, + .{ .cp = 0x017F, .category = .disallowed }, + .{ .cp = 0x0180, .category = .pvalid }, + .{ .cp = 0x0183, .category = .pvalid }, + .{ .cp = 0x0184, .category = .disallowed }, + .{ .cp = 0x0185, .category = .pvalid }, + .{ .cp = 0x0188, .category = .pvalid }, + .{ .cp = 0x0192, .category = .pvalid }, + .{ .cp = 0x0195, .category = .pvalid }, + .{ .cp = 0x019E, .category = .pvalid }, + .{ .cp = 0x01A1, .category = .pvalid }, + .{ .cp = 0x01A2, .category = .disallowed }, + .{ .cp = 0x01A3, .category = .pvalid }, + .{ .cp = 0x01A4, .category = .disallowed }, + .{ .cp = 0x01A5, .category = .pvalid }, + .{ .cp = 0x01A8, .category = .pvalid }, + .{ .cp = 0x01A9, .category = .disallowed }, + .{ .cp = 0x01AC, .category = .disallowed }, + .{ .cp = 0x01AD, .category = .pvalid }, + .{ .cp = 0x01B0, .category = .pvalid }, + .{ .cp = 0x01B4, .category = .pvalid }, + .{ .cp = 0x01B5, .category = .disallowed }, + .{ .cp = 0x01B6, .category = .pvalid }, + .{ .cp = 0x01BC, .category = .disallowed }, + .{ .cp = 0x01CE, .category = .pvalid }, + .{ .cp = 0x01CF, .category = .disallowed }, + .{ .cp = 0x01D0, .category = .pvalid }, + .{ .cp = 0x01D1, .category = .disallowed }, + .{ .cp = 0x01D2, .category = .pvalid }, + .{ .cp = 0x01D3, .category = .disallowed }, + .{ .cp = 0x01D4, .category = .pvalid }, + .{ .cp = 0x01D5, .category = .disallowed }, + .{ .cp = 0x01D6, .category = .pvalid }, + .{ .cp = 0x01D7, .category = .disallowed }, + .{ .cp = 0x01D8, .category = .pvalid }, + .{ .cp = 0x01D9, .category = .disallowed }, + .{ .cp = 0x01DA, .category = .pvalid }, + .{ .cp = 0x01DB, .category = .disallowed }, + .{ .cp = 0x01DE, .category = .disallowed }, + .{ .cp = 0x01DF, .category = .pvalid }, + .{ .cp = 0x01E0, .category = .disallowed }, + .{ .cp = 0x01E1, .category = .pvalid }, + .{ .cp = 0x01E2, .category = .disallowed }, + .{ .cp = 0x01E3, .category = .pvalid }, + .{ .cp = 0x01E4, .category = .disallowed }, + .{ .cp = 0x01E5, .category = .pvalid }, + .{ .cp = 0x01E6, .category = .disallowed }, + .{ .cp = 0x01E7, .category = .pvalid }, + .{ .cp = 0x01E8, .category = .disallowed }, + .{ .cp = 0x01E9, .category = .pvalid }, + .{ .cp = 0x01EA, .category = .disallowed }, + .{ .cp = 0x01EB, .category = .pvalid }, + .{ .cp = 0x01EC, .category = .disallowed }, + .{ .cp = 0x01ED, .category = .pvalid }, + .{ .cp = 0x01EE, .category = .disallowed }, + .{ .cp = 0x01F5, .category = .pvalid }, + .{ .cp = 0x01F9, .category = .pvalid }, + .{ .cp = 0x01FA, .category = .disallowed }, + .{ .cp = 0x01FB, .category = .pvalid }, + .{ .cp = 0x01FC, .category = .disallowed }, + .{ .cp = 0x01FD, .category = .pvalid }, + .{ .cp = 0x01FE, .category = .disallowed }, + .{ .cp = 0x01FF, .category = .pvalid }, + .{ .cp = 0x0200, .category = .disallowed }, + .{ .cp = 0x0201, .category = .pvalid }, + .{ .cp = 0x0202, .category = .disallowed }, + .{ .cp = 0x0203, .category = .pvalid }, + .{ .cp = 0x0204, .category = .disallowed }, + .{ .cp = 0x0205, .category = .pvalid }, + .{ .cp = 0x0206, .category = .disallowed }, + .{ .cp = 0x0207, .category = .pvalid }, + .{ .cp = 0x0208, .category = .disallowed }, + .{ .cp = 0x0209, .category = .pvalid }, + .{ .cp = 0x020A, .category = .disallowed }, + .{ .cp = 0x020B, .category = .pvalid }, + .{ .cp = 0x020C, .category = .disallowed }, + .{ .cp = 0x020D, .category = .pvalid }, + .{ .cp = 0x020E, .category = .disallowed }, + .{ .cp = 0x020F, .category = .pvalid }, + .{ .cp = 0x0210, .category = .disallowed }, + .{ .cp = 0x0211, .category = .pvalid }, + .{ .cp = 0x0212, .category = .disallowed }, + .{ .cp = 0x0213, .category = .pvalid }, + .{ .cp = 0x0214, .category = .disallowed }, + .{ .cp = 0x0215, .category = .pvalid }, + .{ .cp = 0x0216, .category = .disallowed }, + .{ .cp = 0x0217, .category = .pvalid }, + .{ .cp = 0x0218, .category = .disallowed }, + .{ .cp = 0x0219, .category = .pvalid }, + .{ .cp = 0x021A, .category = .disallowed }, + .{ .cp = 0x021B, .category = .pvalid }, + .{ .cp = 0x021C, .category = .disallowed }, + .{ .cp = 0x021D, .category = .pvalid }, + .{ .cp = 0x021E, .category = .disallowed }, + .{ .cp = 0x021F, .category = .pvalid }, + .{ .cp = 0x0220, .category = .disallowed }, + .{ .cp = 0x0221, .category = .pvalid }, + .{ .cp = 0x0222, .category = .disallowed }, + .{ .cp = 0x0223, .category = .pvalid }, + .{ .cp = 0x0224, .category = .disallowed }, + .{ .cp = 0x0225, .category = .pvalid }, + .{ .cp = 0x0226, .category = .disallowed }, + .{ .cp = 0x0227, .category = .pvalid }, + .{ .cp = 0x0228, .category = .disallowed }, + .{ .cp = 0x0229, .category = .pvalid }, + .{ .cp = 0x022A, .category = .disallowed }, + .{ .cp = 0x022B, .category = .pvalid }, + .{ .cp = 0x022C, .category = .disallowed }, + .{ .cp = 0x022D, .category = .pvalid }, + .{ .cp = 0x022E, .category = .disallowed }, + .{ .cp = 0x022F, .category = .pvalid }, + .{ .cp = 0x0230, .category = .disallowed }, + .{ .cp = 0x0231, .category = .pvalid }, + .{ .cp = 0x0232, .category = .disallowed }, + .{ .cp = 0x023C, .category = .pvalid }, + .{ .cp = 0x0241, .category = .disallowed }, + .{ .cp = 0x0242, .category = .pvalid }, + .{ .cp = 0x0247, .category = .pvalid }, + .{ .cp = 0x0248, .category = .disallowed }, + .{ .cp = 0x0249, .category = .pvalid }, + .{ .cp = 0x024A, .category = .disallowed }, + .{ .cp = 0x024B, .category = .pvalid }, + .{ .cp = 0x024C, .category = .disallowed }, + .{ .cp = 0x024D, .category = .pvalid }, + .{ .cp = 0x024E, .category = .disallowed }, + .{ .cp = 0x02EC, .category = .pvalid }, + .{ .cp = 0x02ED, .category = .disallowed }, + .{ .cp = 0x02EE, .category = .pvalid }, + .{ .cp = 0x0342, .category = .pvalid }, + .{ .cp = 0x034F, .category = .disallowed }, + .{ .cp = 0x0370, .category = .disallowed }, + .{ .cp = 0x0371, .category = .pvalid }, + .{ .cp = 0x0372, .category = .disallowed }, + .{ .cp = 0x0373, .category = .pvalid }, + .{ .cp = 0x0374, .category = .disallowed }, + .{ .cp = 0x0375, .category = .contexto }, + .{ .cp = 0x0376, .category = .disallowed }, + .{ .cp = 0x0377, .category = .pvalid }, + .{ .cp = 0x037A, .category = .disallowed }, + .{ .cp = 0x038B, .category = .unassigned }, + .{ .cp = 0x038C, .category = .disallowed }, + .{ .cp = 0x038D, .category = .unassigned }, + .{ .cp = 0x0390, .category = .pvalid }, + .{ .cp = 0x03A2, .category = .unassigned }, + .{ .cp = 0x03D7, .category = .pvalid }, + .{ .cp = 0x03D8, .category = .disallowed }, + .{ .cp = 0x03D9, .category = .pvalid }, + .{ .cp = 0x03DA, .category = .disallowed }, + .{ .cp = 0x03DB, .category = .pvalid }, + .{ .cp = 0x03DC, .category = .disallowed }, + .{ .cp = 0x03DD, .category = .pvalid }, + .{ .cp = 0x03DE, .category = .disallowed }, + .{ .cp = 0x03DF, .category = .pvalid }, + .{ .cp = 0x03E0, .category = .disallowed }, + .{ .cp = 0x03E1, .category = .pvalid }, + .{ .cp = 0x03E2, .category = .disallowed }, + .{ .cp = 0x03E3, .category = .pvalid }, + .{ .cp = 0x03E4, .category = .disallowed }, + .{ .cp = 0x03E5, .category = .pvalid }, + .{ .cp = 0x03E6, .category = .disallowed }, + .{ .cp = 0x03E7, .category = .pvalid }, + .{ .cp = 0x03E8, .category = .disallowed }, + .{ .cp = 0x03E9, .category = .pvalid }, + .{ .cp = 0x03EA, .category = .disallowed }, + .{ .cp = 0x03EB, .category = .pvalid }, + .{ .cp = 0x03EC, .category = .disallowed }, + .{ .cp = 0x03ED, .category = .pvalid }, + .{ .cp = 0x03EE, .category = .disallowed }, + .{ .cp = 0x03EF, .category = .pvalid }, + .{ .cp = 0x03F3, .category = .pvalid }, + .{ .cp = 0x03F8, .category = .pvalid }, + .{ .cp = 0x0460, .category = .disallowed }, + .{ .cp = 0x0461, .category = .pvalid }, + .{ .cp = 0x0462, .category = .disallowed }, + .{ .cp = 0x0463, .category = .pvalid }, + .{ .cp = 0x0464, .category = .disallowed }, + .{ .cp = 0x0465, .category = .pvalid }, + .{ .cp = 0x0466, .category = .disallowed }, + .{ .cp = 0x0467, .category = .pvalid }, + .{ .cp = 0x0468, .category = .disallowed }, + .{ .cp = 0x0469, .category = .pvalid }, + .{ .cp = 0x046A, .category = .disallowed }, + .{ .cp = 0x046B, .category = .pvalid }, + .{ .cp = 0x046C, .category = .disallowed }, + .{ .cp = 0x046D, .category = .pvalid }, + .{ .cp = 0x046E, .category = .disallowed }, + .{ .cp = 0x046F, .category = .pvalid }, + .{ .cp = 0x0470, .category = .disallowed }, + .{ .cp = 0x0471, .category = .pvalid }, + .{ .cp = 0x0472, .category = .disallowed }, + .{ .cp = 0x0473, .category = .pvalid }, + .{ .cp = 0x0474, .category = .disallowed }, + .{ .cp = 0x0475, .category = .pvalid }, + .{ .cp = 0x0476, .category = .disallowed }, + .{ .cp = 0x0477, .category = .pvalid }, + .{ .cp = 0x0478, .category = .disallowed }, + .{ .cp = 0x0479, .category = .pvalid }, + .{ .cp = 0x047A, .category = .disallowed }, + .{ .cp = 0x047B, .category = .pvalid }, + .{ .cp = 0x047C, .category = .disallowed }, + .{ .cp = 0x047D, .category = .pvalid }, + .{ .cp = 0x047E, .category = .disallowed }, + .{ .cp = 0x047F, .category = .pvalid }, + .{ .cp = 0x0480, .category = .disallowed }, + .{ .cp = 0x0481, .category = .pvalid }, + .{ .cp = 0x0482, .category = .disallowed }, + .{ .cp = 0x048B, .category = .pvalid }, + .{ .cp = 0x048C, .category = .disallowed }, + .{ .cp = 0x048D, .category = .pvalid }, + .{ .cp = 0x048E, .category = .disallowed }, + .{ .cp = 0x048F, .category = .pvalid }, + .{ .cp = 0x0490, .category = .disallowed }, + .{ .cp = 0x0491, .category = .pvalid }, + .{ .cp = 0x0492, .category = .disallowed }, + .{ .cp = 0x0493, .category = .pvalid }, + .{ .cp = 0x0494, .category = .disallowed }, + .{ .cp = 0x0495, .category = .pvalid }, + .{ .cp = 0x0496, .category = .disallowed }, + .{ .cp = 0x0497, .category = .pvalid }, + .{ .cp = 0x0498, .category = .disallowed }, + .{ .cp = 0x0499, .category = .pvalid }, + .{ .cp = 0x049A, .category = .disallowed }, + .{ .cp = 0x049B, .category = .pvalid }, + .{ .cp = 0x049C, .category = .disallowed }, + .{ .cp = 0x049D, .category = .pvalid }, + .{ .cp = 0x049E, .category = .disallowed }, + .{ .cp = 0x049F, .category = .pvalid }, + .{ .cp = 0x04A0, .category = .disallowed }, + .{ .cp = 0x04A1, .category = .pvalid }, + .{ .cp = 0x04A2, .category = .disallowed }, + .{ .cp = 0x04A3, .category = .pvalid }, + .{ .cp = 0x04A4, .category = .disallowed }, + .{ .cp = 0x04A5, .category = .pvalid }, + .{ .cp = 0x04A6, .category = .disallowed }, + .{ .cp = 0x04A7, .category = .pvalid }, + .{ .cp = 0x04A8, .category = .disallowed }, + .{ .cp = 0x04A9, .category = .pvalid }, + .{ .cp = 0x04AA, .category = .disallowed }, + .{ .cp = 0x04AB, .category = .pvalid }, + .{ .cp = 0x04AC, .category = .disallowed }, + .{ .cp = 0x04AD, .category = .pvalid }, + .{ .cp = 0x04AE, .category = .disallowed }, + .{ .cp = 0x04AF, .category = .pvalid }, + .{ .cp = 0x04B0, .category = .disallowed }, + .{ .cp = 0x04B1, .category = .pvalid }, + .{ .cp = 0x04B2, .category = .disallowed }, + .{ .cp = 0x04B3, .category = .pvalid }, + .{ .cp = 0x04B4, .category = .disallowed }, + .{ .cp = 0x04B5, .category = .pvalid }, + .{ .cp = 0x04B6, .category = .disallowed }, + .{ .cp = 0x04B7, .category = .pvalid }, + .{ .cp = 0x04B8, .category = .disallowed }, + .{ .cp = 0x04B9, .category = .pvalid }, + .{ .cp = 0x04BA, .category = .disallowed }, + .{ .cp = 0x04BB, .category = .pvalid }, + .{ .cp = 0x04BC, .category = .disallowed }, + .{ .cp = 0x04BD, .category = .pvalid }, + .{ .cp = 0x04BE, .category = .disallowed }, + .{ .cp = 0x04BF, .category = .pvalid }, + .{ .cp = 0x04C2, .category = .pvalid }, + .{ .cp = 0x04C3, .category = .disallowed }, + .{ .cp = 0x04C4, .category = .pvalid }, + .{ .cp = 0x04C5, .category = .disallowed }, + .{ .cp = 0x04C6, .category = .pvalid }, + .{ .cp = 0x04C7, .category = .disallowed }, + .{ .cp = 0x04C8, .category = .pvalid }, + .{ .cp = 0x04C9, .category = .disallowed }, + .{ .cp = 0x04CA, .category = .pvalid }, + .{ .cp = 0x04CB, .category = .disallowed }, + .{ .cp = 0x04CC, .category = .pvalid }, + .{ .cp = 0x04CD, .category = .disallowed }, + .{ .cp = 0x04D0, .category = .disallowed }, + .{ .cp = 0x04D1, .category = .pvalid }, + .{ .cp = 0x04D2, .category = .disallowed }, + .{ .cp = 0x04D3, .category = .pvalid }, + .{ .cp = 0x04D4, .category = .disallowed }, + .{ .cp = 0x04D5, .category = .pvalid }, + .{ .cp = 0x04D6, .category = .disallowed }, + .{ .cp = 0x04D7, .category = .pvalid }, + .{ .cp = 0x04D8, .category = .disallowed }, + .{ .cp = 0x04D9, .category = .pvalid }, + .{ .cp = 0x04DA, .category = .disallowed }, + .{ .cp = 0x04DB, .category = .pvalid }, + .{ .cp = 0x04DC, .category = .disallowed }, + .{ .cp = 0x04DD, .category = .pvalid }, + .{ .cp = 0x04DE, .category = .disallowed }, + .{ .cp = 0x04DF, .category = .pvalid }, + .{ .cp = 0x04E0, .category = .disallowed }, + .{ .cp = 0x04E1, .category = .pvalid }, + .{ .cp = 0x04E2, .category = .disallowed }, + .{ .cp = 0x04E3, .category = .pvalid }, + .{ .cp = 0x04E4, .category = .disallowed }, + .{ .cp = 0x04E5, .category = .pvalid }, + .{ .cp = 0x04E6, .category = .disallowed }, + .{ .cp = 0x04E7, .category = .pvalid }, + .{ .cp = 0x04E8, .category = .disallowed }, + .{ .cp = 0x04E9, .category = .pvalid }, + .{ .cp = 0x04EA, .category = .disallowed }, + .{ .cp = 0x04EB, .category = .pvalid }, + .{ .cp = 0x04EC, .category = .disallowed }, + .{ .cp = 0x04ED, .category = .pvalid }, + .{ .cp = 0x04EE, .category = .disallowed }, + .{ .cp = 0x04EF, .category = .pvalid }, + .{ .cp = 0x04F0, .category = .disallowed }, + .{ .cp = 0x04F1, .category = .pvalid }, + .{ .cp = 0x04F2, .category = .disallowed }, + .{ .cp = 0x04F3, .category = .pvalid }, + .{ .cp = 0x04F4, .category = .disallowed }, + .{ .cp = 0x04F5, .category = .pvalid }, + .{ .cp = 0x04F6, .category = .disallowed }, + .{ .cp = 0x04F7, .category = .pvalid }, + .{ .cp = 0x04F8, .category = .disallowed }, + .{ .cp = 0x04F9, .category = .pvalid }, + .{ .cp = 0x04FA, .category = .disallowed }, + .{ .cp = 0x04FB, .category = .pvalid }, + .{ .cp = 0x04FC, .category = .disallowed }, + .{ .cp = 0x04FD, .category = .pvalid }, + .{ .cp = 0x04FE, .category = .disallowed }, + .{ .cp = 0x04FF, .category = .pvalid }, + .{ .cp = 0x0500, .category = .disallowed }, + .{ .cp = 0x0501, .category = .pvalid }, + .{ .cp = 0x0502, .category = .disallowed }, + .{ .cp = 0x0503, .category = .pvalid }, + .{ .cp = 0x0504, .category = .disallowed }, + .{ .cp = 0x0505, .category = .pvalid }, + .{ .cp = 0x0506, .category = .disallowed }, + .{ .cp = 0x0507, .category = .pvalid }, + .{ .cp = 0x0508, .category = .disallowed }, + .{ .cp = 0x0509, .category = .pvalid }, + .{ .cp = 0x050A, .category = .disallowed }, + .{ .cp = 0x050B, .category = .pvalid }, + .{ .cp = 0x050C, .category = .disallowed }, + .{ .cp = 0x050D, .category = .pvalid }, + .{ .cp = 0x050E, .category = .disallowed }, + .{ .cp = 0x050F, .category = .pvalid }, + .{ .cp = 0x0510, .category = .disallowed }, + .{ .cp = 0x0511, .category = .pvalid }, + .{ .cp = 0x0512, .category = .disallowed }, + .{ .cp = 0x0513, .category = .pvalid }, + .{ .cp = 0x0514, .category = .disallowed }, + .{ .cp = 0x0515, .category = .pvalid }, + .{ .cp = 0x0516, .category = .disallowed }, + .{ .cp = 0x0517, .category = .pvalid }, + .{ .cp = 0x0518, .category = .disallowed }, + .{ .cp = 0x0519, .category = .pvalid }, + .{ .cp = 0x051A, .category = .disallowed }, + .{ .cp = 0x051B, .category = .pvalid }, + .{ .cp = 0x051C, .category = .disallowed }, + .{ .cp = 0x051D, .category = .pvalid }, + .{ .cp = 0x051E, .category = .disallowed }, + .{ .cp = 0x051F, .category = .pvalid }, + .{ .cp = 0x0520, .category = .disallowed }, + .{ .cp = 0x0521, .category = .pvalid }, + .{ .cp = 0x0522, .category = .disallowed }, + .{ .cp = 0x0523, .category = .pvalid }, + .{ .cp = 0x0524, .category = .disallowed }, + .{ .cp = 0x0525, .category = .pvalid }, + .{ .cp = 0x0526, .category = .disallowed }, + .{ .cp = 0x0527, .category = .pvalid }, + .{ .cp = 0x0528, .category = .disallowed }, + .{ .cp = 0x0529, .category = .pvalid }, + .{ .cp = 0x052A, .category = .disallowed }, + .{ .cp = 0x052B, .category = .pvalid }, + .{ .cp = 0x052C, .category = .disallowed }, + .{ .cp = 0x052D, .category = .pvalid }, + .{ .cp = 0x052E, .category = .disallowed }, + .{ .cp = 0x052F, .category = .pvalid }, + .{ .cp = 0x0530, .category = .unassigned }, + .{ .cp = 0x0559, .category = .pvalid }, + .{ .cp = 0x0587, .category = .disallowed }, + .{ .cp = 0x0588, .category = .pvalid }, + .{ .cp = 0x0590, .category = .unassigned }, + .{ .cp = 0x05BE, .category = .disallowed }, + .{ .cp = 0x05BF, .category = .pvalid }, + .{ .cp = 0x05C0, .category = .disallowed }, + .{ .cp = 0x05C3, .category = .disallowed }, + .{ .cp = 0x05C6, .category = .disallowed }, + .{ .cp = 0x05C7, .category = .pvalid }, + .{ .cp = 0x0640, .category = .disallowed }, + .{ .cp = 0x06D4, .category = .disallowed }, + .{ .cp = 0x06E9, .category = .disallowed }, + .{ .cp = 0x070E, .category = .unassigned }, + .{ .cp = 0x070F, .category = .disallowed }, + .{ .cp = 0x07FD, .category = .pvalid }, + .{ .cp = 0x083F, .category = .unassigned }, + .{ .cp = 0x085E, .category = .disallowed }, + .{ .cp = 0x085F, .category = .unassigned }, + .{ .cp = 0x0888, .category = .disallowed }, + .{ .cp = 0x08E2, .category = .disallowed }, + .{ .cp = 0x0970, .category = .disallowed }, + .{ .cp = 0x0984, .category = .unassigned }, + .{ .cp = 0x09A9, .category = .unassigned }, + .{ .cp = 0x09B1, .category = .unassigned }, + .{ .cp = 0x09B2, .category = .pvalid }, + .{ .cp = 0x09D7, .category = .pvalid }, + .{ .cp = 0x09DE, .category = .unassigned }, + .{ .cp = 0x09DF, .category = .disallowed }, + .{ .cp = 0x09FC, .category = .pvalid }, + .{ .cp = 0x09FD, .category = .disallowed }, + .{ .cp = 0x09FE, .category = .pvalid }, + .{ .cp = 0x0A04, .category = .unassigned }, + .{ .cp = 0x0A29, .category = .unassigned }, + .{ .cp = 0x0A31, .category = .unassigned }, + .{ .cp = 0x0A32, .category = .pvalid }, + .{ .cp = 0x0A33, .category = .disallowed }, + .{ .cp = 0x0A34, .category = .unassigned }, + .{ .cp = 0x0A35, .category = .pvalid }, + .{ .cp = 0x0A36, .category = .disallowed }, + .{ .cp = 0x0A37, .category = .unassigned }, + .{ .cp = 0x0A3C, .category = .pvalid }, + .{ .cp = 0x0A3D, .category = .unassigned }, + .{ .cp = 0x0A51, .category = .pvalid }, + .{ .cp = 0x0A5C, .category = .pvalid }, + .{ .cp = 0x0A5D, .category = .unassigned }, + .{ .cp = 0x0A5E, .category = .disallowed }, + .{ .cp = 0x0A76, .category = .disallowed }, + .{ .cp = 0x0A84, .category = .unassigned }, + .{ .cp = 0x0A8E, .category = .unassigned }, + .{ .cp = 0x0A92, .category = .unassigned }, + .{ .cp = 0x0AA9, .category = .unassigned }, + .{ .cp = 0x0AB1, .category = .unassigned }, + .{ .cp = 0x0AB4, .category = .unassigned }, + .{ .cp = 0x0AC6, .category = .unassigned }, + .{ .cp = 0x0ACA, .category = .unassigned }, + .{ .cp = 0x0AD0, .category = .pvalid }, + .{ .cp = 0x0B00, .category = .unassigned }, + .{ .cp = 0x0B04, .category = .unassigned }, + .{ .cp = 0x0B29, .category = .unassigned }, + .{ .cp = 0x0B31, .category = .unassigned }, + .{ .cp = 0x0B34, .category = .unassigned }, + .{ .cp = 0x0B5E, .category = .unassigned }, + .{ .cp = 0x0B70, .category = .disallowed }, + .{ .cp = 0x0B71, .category = .pvalid }, + .{ .cp = 0x0B84, .category = .unassigned }, + .{ .cp = 0x0B91, .category = .unassigned }, + .{ .cp = 0x0B9B, .category = .unassigned }, + .{ .cp = 0x0B9C, .category = .pvalid }, + .{ .cp = 0x0B9D, .category = .unassigned }, + .{ .cp = 0x0BC9, .category = .unassigned }, + .{ .cp = 0x0BD0, .category = .pvalid }, + .{ .cp = 0x0BD7, .category = .pvalid }, + .{ .cp = 0x0C0D, .category = .unassigned }, + .{ .cp = 0x0C11, .category = .unassigned }, + .{ .cp = 0x0C29, .category = .unassigned }, + .{ .cp = 0x0C45, .category = .unassigned }, + .{ .cp = 0x0C49, .category = .unassigned }, + .{ .cp = 0x0C57, .category = .unassigned }, + .{ .cp = 0x0C5B, .category = .unassigned }, + .{ .cp = 0x0C84, .category = .disallowed }, + .{ .cp = 0x0C8D, .category = .unassigned }, + .{ .cp = 0x0C91, .category = .unassigned }, + .{ .cp = 0x0CA9, .category = .unassigned }, + .{ .cp = 0x0CB4, .category = .unassigned }, + .{ .cp = 0x0CC5, .category = .unassigned }, + .{ .cp = 0x0CC9, .category = .unassigned }, + .{ .cp = 0x0CDF, .category = .unassigned }, + .{ .cp = 0x0CF0, .category = .unassigned }, + .{ .cp = 0x0D0D, .category = .unassigned }, + .{ .cp = 0x0D11, .category = .unassigned }, + .{ .cp = 0x0D45, .category = .unassigned }, + .{ .cp = 0x0D49, .category = .unassigned }, + .{ .cp = 0x0D4F, .category = .disallowed }, + .{ .cp = 0x0D80, .category = .unassigned }, + .{ .cp = 0x0D84, .category = .unassigned }, + .{ .cp = 0x0DB2, .category = .unassigned }, + .{ .cp = 0x0DBC, .category = .unassigned }, + .{ .cp = 0x0DBD, .category = .pvalid }, + .{ .cp = 0x0DCA, .category = .pvalid }, + .{ .cp = 0x0DD5, .category = .unassigned }, + .{ .cp = 0x0DD6, .category = .pvalid }, + .{ .cp = 0x0DD7, .category = .unassigned }, + .{ .cp = 0x0DF4, .category = .disallowed }, + .{ .cp = 0x0E33, .category = .disallowed }, + .{ .cp = 0x0E3F, .category = .disallowed }, + .{ .cp = 0x0E4F, .category = .disallowed }, + .{ .cp = 0x0E83, .category = .unassigned }, + .{ .cp = 0x0E84, .category = .pvalid }, + .{ .cp = 0x0E85, .category = .unassigned }, + .{ .cp = 0x0E8B, .category = .unassigned }, + .{ .cp = 0x0EA4, .category = .unassigned }, + .{ .cp = 0x0EA5, .category = .pvalid }, + .{ .cp = 0x0EA6, .category = .unassigned }, + .{ .cp = 0x0EB3, .category = .disallowed }, + .{ .cp = 0x0EC5, .category = .unassigned }, + .{ .cp = 0x0EC6, .category = .pvalid }, + .{ .cp = 0x0EC7, .category = .unassigned }, + .{ .cp = 0x0ECF, .category = .unassigned }, + .{ .cp = 0x0F00, .category = .pvalid }, + .{ .cp = 0x0F0B, .category = .pvalid }, + .{ .cp = 0x0F35, .category = .pvalid }, + .{ .cp = 0x0F36, .category = .disallowed }, + .{ .cp = 0x0F37, .category = .pvalid }, + .{ .cp = 0x0F38, .category = .disallowed }, + .{ .cp = 0x0F39, .category = .pvalid }, + .{ .cp = 0x0F43, .category = .disallowed }, + .{ .cp = 0x0F48, .category = .unassigned }, + .{ .cp = 0x0F4D, .category = .disallowed }, + .{ .cp = 0x0F52, .category = .disallowed }, + .{ .cp = 0x0F57, .category = .disallowed }, + .{ .cp = 0x0F5C, .category = .disallowed }, + .{ .cp = 0x0F69, .category = .disallowed }, + .{ .cp = 0x0F73, .category = .disallowed }, + .{ .cp = 0x0F74, .category = .pvalid }, + .{ .cp = 0x0F81, .category = .disallowed }, + .{ .cp = 0x0F85, .category = .disallowed }, + .{ .cp = 0x0F93, .category = .disallowed }, + .{ .cp = 0x0F98, .category = .unassigned }, + .{ .cp = 0x0F9D, .category = .disallowed }, + .{ .cp = 0x0FA2, .category = .disallowed }, + .{ .cp = 0x0FA7, .category = .disallowed }, + .{ .cp = 0x0FAC, .category = .disallowed }, + .{ .cp = 0x0FB9, .category = .disallowed }, + .{ .cp = 0x0FBD, .category = .unassigned }, + .{ .cp = 0x0FC6, .category = .pvalid }, + .{ .cp = 0x0FCD, .category = .unassigned }, + .{ .cp = 0x10C6, .category = .unassigned }, + .{ .cp = 0x10C7, .category = .disallowed }, + .{ .cp = 0x10CD, .category = .disallowed }, + .{ .cp = 0x1249, .category = .unassigned }, + .{ .cp = 0x1257, .category = .unassigned }, + .{ .cp = 0x1258, .category = .pvalid }, + .{ .cp = 0x1259, .category = .unassigned }, + .{ .cp = 0x1289, .category = .unassigned }, + .{ .cp = 0x12B1, .category = .unassigned }, + .{ .cp = 0x12BF, .category = .unassigned }, + .{ .cp = 0x12C0, .category = .pvalid }, + .{ .cp = 0x12C1, .category = .unassigned }, + .{ .cp = 0x12D7, .category = .unassigned }, + .{ .cp = 0x1311, .category = .unassigned }, + .{ .cp = 0x1400, .category = .disallowed }, + .{ .cp = 0x1680, .category = .disallowed }, + .{ .cp = 0x176D, .category = .unassigned }, + .{ .cp = 0x1771, .category = .unassigned }, + .{ .cp = 0x17D7, .category = .pvalid }, + .{ .cp = 0x191F, .category = .unassigned }, + .{ .cp = 0x1940, .category = .disallowed }, + .{ .cp = 0x19DA, .category = .disallowed }, + .{ .cp = 0x1A5F, .category = .unassigned }, + .{ .cp = 0x1AA7, .category = .pvalid }, + .{ .cp = 0x1ABE, .category = .disallowed }, + .{ .cp = 0x1B4D, .category = .unassigned }, + .{ .cp = 0x1C8A, .category = .pvalid }, + .{ .cp = 0x1CD3, .category = .disallowed }, + .{ .cp = 0x1D2F, .category = .pvalid }, + .{ .cp = 0x1D3B, .category = .pvalid }, + .{ .cp = 0x1D4E, .category = .pvalid }, + .{ .cp = 0x1D78, .category = .disallowed }, + .{ .cp = 0x1E00, .category = .disallowed }, + .{ .cp = 0x1E01, .category = .pvalid }, + .{ .cp = 0x1E02, .category = .disallowed }, + .{ .cp = 0x1E03, .category = .pvalid }, + .{ .cp = 0x1E04, .category = .disallowed }, + .{ .cp = 0x1E05, .category = .pvalid }, + .{ .cp = 0x1E06, .category = .disallowed }, + .{ .cp = 0x1E07, .category = .pvalid }, + .{ .cp = 0x1E08, .category = .disallowed }, + .{ .cp = 0x1E09, .category = .pvalid }, + .{ .cp = 0x1E0A, .category = .disallowed }, + .{ .cp = 0x1E0B, .category = .pvalid }, + .{ .cp = 0x1E0C, .category = .disallowed }, + .{ .cp = 0x1E0D, .category = .pvalid }, + .{ .cp = 0x1E0E, .category = .disallowed }, + .{ .cp = 0x1E0F, .category = .pvalid }, + .{ .cp = 0x1E10, .category = .disallowed }, + .{ .cp = 0x1E11, .category = .pvalid }, + .{ .cp = 0x1E12, .category = .disallowed }, + .{ .cp = 0x1E13, .category = .pvalid }, + .{ .cp = 0x1E14, .category = .disallowed }, + .{ .cp = 0x1E15, .category = .pvalid }, + .{ .cp = 0x1E16, .category = .disallowed }, + .{ .cp = 0x1E17, .category = .pvalid }, + .{ .cp = 0x1E18, .category = .disallowed }, + .{ .cp = 0x1E19, .category = .pvalid }, + .{ .cp = 0x1E1A, .category = .disallowed }, + .{ .cp = 0x1E1B, .category = .pvalid }, + .{ .cp = 0x1E1C, .category = .disallowed }, + .{ .cp = 0x1E1D, .category = .pvalid }, + .{ .cp = 0x1E1E, .category = .disallowed }, + .{ .cp = 0x1E1F, .category = .pvalid }, + .{ .cp = 0x1E20, .category = .disallowed }, + .{ .cp = 0x1E21, .category = .pvalid }, + .{ .cp = 0x1E22, .category = .disallowed }, + .{ .cp = 0x1E23, .category = .pvalid }, + .{ .cp = 0x1E24, .category = .disallowed }, + .{ .cp = 0x1E25, .category = .pvalid }, + .{ .cp = 0x1E26, .category = .disallowed }, + .{ .cp = 0x1E27, .category = .pvalid }, + .{ .cp = 0x1E28, .category = .disallowed }, + .{ .cp = 0x1E29, .category = .pvalid }, + .{ .cp = 0x1E2A, .category = .disallowed }, + .{ .cp = 0x1E2B, .category = .pvalid }, + .{ .cp = 0x1E2C, .category = .disallowed }, + .{ .cp = 0x1E2D, .category = .pvalid }, + .{ .cp = 0x1E2E, .category = .disallowed }, + .{ .cp = 0x1E2F, .category = .pvalid }, + .{ .cp = 0x1E30, .category = .disallowed }, + .{ .cp = 0x1E31, .category = .pvalid }, + .{ .cp = 0x1E32, .category = .disallowed }, + .{ .cp = 0x1E33, .category = .pvalid }, + .{ .cp = 0x1E34, .category = .disallowed }, + .{ .cp = 0x1E35, .category = .pvalid }, + .{ .cp = 0x1E36, .category = .disallowed }, + .{ .cp = 0x1E37, .category = .pvalid }, + .{ .cp = 0x1E38, .category = .disallowed }, + .{ .cp = 0x1E39, .category = .pvalid }, + .{ .cp = 0x1E3A, .category = .disallowed }, + .{ .cp = 0x1E3B, .category = .pvalid }, + .{ .cp = 0x1E3C, .category = .disallowed }, + .{ .cp = 0x1E3D, .category = .pvalid }, + .{ .cp = 0x1E3E, .category = .disallowed }, + .{ .cp = 0x1E3F, .category = .pvalid }, + .{ .cp = 0x1E40, .category = .disallowed }, + .{ .cp = 0x1E41, .category = .pvalid }, + .{ .cp = 0x1E42, .category = .disallowed }, + .{ .cp = 0x1E43, .category = .pvalid }, + .{ .cp = 0x1E44, .category = .disallowed }, + .{ .cp = 0x1E45, .category = .pvalid }, + .{ .cp = 0x1E46, .category = .disallowed }, + .{ .cp = 0x1E47, .category = .pvalid }, + .{ .cp = 0x1E48, .category = .disallowed }, + .{ .cp = 0x1E49, .category = .pvalid }, + .{ .cp = 0x1E4A, .category = .disallowed }, + .{ .cp = 0x1E4B, .category = .pvalid }, + .{ .cp = 0x1E4C, .category = .disallowed }, + .{ .cp = 0x1E4D, .category = .pvalid }, + .{ .cp = 0x1E4E, .category = .disallowed }, + .{ .cp = 0x1E4F, .category = .pvalid }, + .{ .cp = 0x1E50, .category = .disallowed }, + .{ .cp = 0x1E51, .category = .pvalid }, + .{ .cp = 0x1E52, .category = .disallowed }, + .{ .cp = 0x1E53, .category = .pvalid }, + .{ .cp = 0x1E54, .category = .disallowed }, + .{ .cp = 0x1E55, .category = .pvalid }, + .{ .cp = 0x1E56, .category = .disallowed }, + .{ .cp = 0x1E57, .category = .pvalid }, + .{ .cp = 0x1E58, .category = .disallowed }, + .{ .cp = 0x1E59, .category = .pvalid }, + .{ .cp = 0x1E5A, .category = .disallowed }, + .{ .cp = 0x1E5B, .category = .pvalid }, + .{ .cp = 0x1E5C, .category = .disallowed }, + .{ .cp = 0x1E5D, .category = .pvalid }, + .{ .cp = 0x1E5E, .category = .disallowed }, + .{ .cp = 0x1E5F, .category = .pvalid }, + .{ .cp = 0x1E60, .category = .disallowed }, + .{ .cp = 0x1E61, .category = .pvalid }, + .{ .cp = 0x1E62, .category = .disallowed }, + .{ .cp = 0x1E63, .category = .pvalid }, + .{ .cp = 0x1E64, .category = .disallowed }, + .{ .cp = 0x1E65, .category = .pvalid }, + .{ .cp = 0x1E66, .category = .disallowed }, + .{ .cp = 0x1E67, .category = .pvalid }, + .{ .cp = 0x1E68, .category = .disallowed }, + .{ .cp = 0x1E69, .category = .pvalid }, + .{ .cp = 0x1E6A, .category = .disallowed }, + .{ .cp = 0x1E6B, .category = .pvalid }, + .{ .cp = 0x1E6C, .category = .disallowed }, + .{ .cp = 0x1E6D, .category = .pvalid }, + .{ .cp = 0x1E6E, .category = .disallowed }, + .{ .cp = 0x1E6F, .category = .pvalid }, + .{ .cp = 0x1E70, .category = .disallowed }, + .{ .cp = 0x1E71, .category = .pvalid }, + .{ .cp = 0x1E72, .category = .disallowed }, + .{ .cp = 0x1E73, .category = .pvalid }, + .{ .cp = 0x1E74, .category = .disallowed }, + .{ .cp = 0x1E75, .category = .pvalid }, + .{ .cp = 0x1E76, .category = .disallowed }, + .{ .cp = 0x1E77, .category = .pvalid }, + .{ .cp = 0x1E78, .category = .disallowed }, + .{ .cp = 0x1E79, .category = .pvalid }, + .{ .cp = 0x1E7A, .category = .disallowed }, + .{ .cp = 0x1E7B, .category = .pvalid }, + .{ .cp = 0x1E7C, .category = .disallowed }, + .{ .cp = 0x1E7D, .category = .pvalid }, + .{ .cp = 0x1E7E, .category = .disallowed }, + .{ .cp = 0x1E7F, .category = .pvalid }, + .{ .cp = 0x1E80, .category = .disallowed }, + .{ .cp = 0x1E81, .category = .pvalid }, + .{ .cp = 0x1E82, .category = .disallowed }, + .{ .cp = 0x1E83, .category = .pvalid }, + .{ .cp = 0x1E84, .category = .disallowed }, + .{ .cp = 0x1E85, .category = .pvalid }, + .{ .cp = 0x1E86, .category = .disallowed }, + .{ .cp = 0x1E87, .category = .pvalid }, + .{ .cp = 0x1E88, .category = .disallowed }, + .{ .cp = 0x1E89, .category = .pvalid }, + .{ .cp = 0x1E8A, .category = .disallowed }, + .{ .cp = 0x1E8B, .category = .pvalid }, + .{ .cp = 0x1E8C, .category = .disallowed }, + .{ .cp = 0x1E8D, .category = .pvalid }, + .{ .cp = 0x1E8E, .category = .disallowed }, + .{ .cp = 0x1E8F, .category = .pvalid }, + .{ .cp = 0x1E90, .category = .disallowed }, + .{ .cp = 0x1E91, .category = .pvalid }, + .{ .cp = 0x1E92, .category = .disallowed }, + .{ .cp = 0x1E93, .category = .pvalid }, + .{ .cp = 0x1E94, .category = .disallowed }, + .{ .cp = 0x1E9E, .category = .disallowed }, + .{ .cp = 0x1E9F, .category = .pvalid }, + .{ .cp = 0x1EA0, .category = .disallowed }, + .{ .cp = 0x1EA1, .category = .pvalid }, + .{ .cp = 0x1EA2, .category = .disallowed }, + .{ .cp = 0x1EA3, .category = .pvalid }, + .{ .cp = 0x1EA4, .category = .disallowed }, + .{ .cp = 0x1EA5, .category = .pvalid }, + .{ .cp = 0x1EA6, .category = .disallowed }, + .{ .cp = 0x1EA7, .category = .pvalid }, + .{ .cp = 0x1EA8, .category = .disallowed }, + .{ .cp = 0x1EA9, .category = .pvalid }, + .{ .cp = 0x1EAA, .category = .disallowed }, + .{ .cp = 0x1EAB, .category = .pvalid }, + .{ .cp = 0x1EAC, .category = .disallowed }, + .{ .cp = 0x1EAD, .category = .pvalid }, + .{ .cp = 0x1EAE, .category = .disallowed }, + .{ .cp = 0x1EAF, .category = .pvalid }, + .{ .cp = 0x1EB0, .category = .disallowed }, + .{ .cp = 0x1EB1, .category = .pvalid }, + .{ .cp = 0x1EB2, .category = .disallowed }, + .{ .cp = 0x1EB3, .category = .pvalid }, + .{ .cp = 0x1EB4, .category = .disallowed }, + .{ .cp = 0x1EB5, .category = .pvalid }, + .{ .cp = 0x1EB6, .category = .disallowed }, + .{ .cp = 0x1EB7, .category = .pvalid }, + .{ .cp = 0x1EB8, .category = .disallowed }, + .{ .cp = 0x1EB9, .category = .pvalid }, + .{ .cp = 0x1EBA, .category = .disallowed }, + .{ .cp = 0x1EBB, .category = .pvalid }, + .{ .cp = 0x1EBC, .category = .disallowed }, + .{ .cp = 0x1EBD, .category = .pvalid }, + .{ .cp = 0x1EBE, .category = .disallowed }, + .{ .cp = 0x1EBF, .category = .pvalid }, + .{ .cp = 0x1EC0, .category = .disallowed }, + .{ .cp = 0x1EC1, .category = .pvalid }, + .{ .cp = 0x1EC2, .category = .disallowed }, + .{ .cp = 0x1EC3, .category = .pvalid }, + .{ .cp = 0x1EC4, .category = .disallowed }, + .{ .cp = 0x1EC5, .category = .pvalid }, + .{ .cp = 0x1EC6, .category = .disallowed }, + .{ .cp = 0x1EC7, .category = .pvalid }, + .{ .cp = 0x1EC8, .category = .disallowed }, + .{ .cp = 0x1EC9, .category = .pvalid }, + .{ .cp = 0x1ECA, .category = .disallowed }, + .{ .cp = 0x1ECB, .category = .pvalid }, + .{ .cp = 0x1ECC, .category = .disallowed }, + .{ .cp = 0x1ECD, .category = .pvalid }, + .{ .cp = 0x1ECE, .category = .disallowed }, + .{ .cp = 0x1ECF, .category = .pvalid }, + .{ .cp = 0x1ED0, .category = .disallowed }, + .{ .cp = 0x1ED1, .category = .pvalid }, + .{ .cp = 0x1ED2, .category = .disallowed }, + .{ .cp = 0x1ED3, .category = .pvalid }, + .{ .cp = 0x1ED4, .category = .disallowed }, + .{ .cp = 0x1ED5, .category = .pvalid }, + .{ .cp = 0x1ED6, .category = .disallowed }, + .{ .cp = 0x1ED7, .category = .pvalid }, + .{ .cp = 0x1ED8, .category = .disallowed }, + .{ .cp = 0x1ED9, .category = .pvalid }, + .{ .cp = 0x1EDA, .category = .disallowed }, + .{ .cp = 0x1EDB, .category = .pvalid }, + .{ .cp = 0x1EDC, .category = .disallowed }, + .{ .cp = 0x1EDD, .category = .pvalid }, + .{ .cp = 0x1EDE, .category = .disallowed }, + .{ .cp = 0x1EDF, .category = .pvalid }, + .{ .cp = 0x1EE0, .category = .disallowed }, + .{ .cp = 0x1EE1, .category = .pvalid }, + .{ .cp = 0x1EE2, .category = .disallowed }, + .{ .cp = 0x1EE3, .category = .pvalid }, + .{ .cp = 0x1EE4, .category = .disallowed }, + .{ .cp = 0x1EE5, .category = .pvalid }, + .{ .cp = 0x1EE6, .category = .disallowed }, + .{ .cp = 0x1EE7, .category = .pvalid }, + .{ .cp = 0x1EE8, .category = .disallowed }, + .{ .cp = 0x1EE9, .category = .pvalid }, + .{ .cp = 0x1EEA, .category = .disallowed }, + .{ .cp = 0x1EEB, .category = .pvalid }, + .{ .cp = 0x1EEC, .category = .disallowed }, + .{ .cp = 0x1EED, .category = .pvalid }, + .{ .cp = 0x1EEE, .category = .disallowed }, + .{ .cp = 0x1EEF, .category = .pvalid }, + .{ .cp = 0x1EF0, .category = .disallowed }, + .{ .cp = 0x1EF1, .category = .pvalid }, + .{ .cp = 0x1EF2, .category = .disallowed }, + .{ .cp = 0x1EF3, .category = .pvalid }, + .{ .cp = 0x1EF4, .category = .disallowed }, + .{ .cp = 0x1EF5, .category = .pvalid }, + .{ .cp = 0x1EF6, .category = .disallowed }, + .{ .cp = 0x1EF7, .category = .pvalid }, + .{ .cp = 0x1EF8, .category = .disallowed }, + .{ .cp = 0x1EF9, .category = .pvalid }, + .{ .cp = 0x1EFA, .category = .disallowed }, + .{ .cp = 0x1EFB, .category = .pvalid }, + .{ .cp = 0x1EFC, .category = .disallowed }, + .{ .cp = 0x1EFD, .category = .pvalid }, + .{ .cp = 0x1EFE, .category = .disallowed }, + .{ .cp = 0x1F58, .category = .unassigned }, + .{ .cp = 0x1F59, .category = .disallowed }, + .{ .cp = 0x1F5A, .category = .unassigned }, + .{ .cp = 0x1F5B, .category = .disallowed }, + .{ .cp = 0x1F5C, .category = .unassigned }, + .{ .cp = 0x1F5D, .category = .disallowed }, + .{ .cp = 0x1F5E, .category = .unassigned }, + .{ .cp = 0x1F5F, .category = .disallowed }, + .{ .cp = 0x1F70, .category = .pvalid }, + .{ .cp = 0x1F71, .category = .disallowed }, + .{ .cp = 0x1F72, .category = .pvalid }, + .{ .cp = 0x1F73, .category = .disallowed }, + .{ .cp = 0x1F74, .category = .pvalid }, + .{ .cp = 0x1F75, .category = .disallowed }, + .{ .cp = 0x1F76, .category = .pvalid }, + .{ .cp = 0x1F77, .category = .disallowed }, + .{ .cp = 0x1F78, .category = .pvalid }, + .{ .cp = 0x1F79, .category = .disallowed }, + .{ .cp = 0x1F7A, .category = .pvalid }, + .{ .cp = 0x1F7B, .category = .disallowed }, + .{ .cp = 0x1F7C, .category = .pvalid }, + .{ .cp = 0x1F7D, .category = .disallowed }, + .{ .cp = 0x1FB5, .category = .unassigned }, + .{ .cp = 0x1FB6, .category = .pvalid }, + .{ .cp = 0x1FC5, .category = .unassigned }, + .{ .cp = 0x1FC6, .category = .pvalid }, + .{ .cp = 0x1FD3, .category = .disallowed }, + .{ .cp = 0x1FDC, .category = .unassigned }, + .{ .cp = 0x1FE3, .category = .disallowed }, + .{ .cp = 0x1FF5, .category = .unassigned }, + .{ .cp = 0x1FF6, .category = .pvalid }, + .{ .cp = 0x1FFF, .category = .unassigned }, + .{ .cp = 0x2065, .category = .unassigned }, + .{ .cp = 0x208F, .category = .unassigned }, + .{ .cp = 0x214E, .category = .pvalid }, + .{ .cp = 0x2184, .category = .pvalid }, + .{ .cp = 0x2C60, .category = .disallowed }, + .{ .cp = 0x2C61, .category = .pvalid }, + .{ .cp = 0x2C67, .category = .disallowed }, + .{ .cp = 0x2C68, .category = .pvalid }, + .{ .cp = 0x2C69, .category = .disallowed }, + .{ .cp = 0x2C6A, .category = .pvalid }, + .{ .cp = 0x2C6B, .category = .disallowed }, + .{ .cp = 0x2C6C, .category = .pvalid }, + .{ .cp = 0x2C71, .category = .pvalid }, + .{ .cp = 0x2C72, .category = .disallowed }, + .{ .cp = 0x2C75, .category = .disallowed }, + .{ .cp = 0x2C81, .category = .pvalid }, + .{ .cp = 0x2C82, .category = .disallowed }, + .{ .cp = 0x2C83, .category = .pvalid }, + .{ .cp = 0x2C84, .category = .disallowed }, + .{ .cp = 0x2C85, .category = .pvalid }, + .{ .cp = 0x2C86, .category = .disallowed }, + .{ .cp = 0x2C87, .category = .pvalid }, + .{ .cp = 0x2C88, .category = .disallowed }, + .{ .cp = 0x2C89, .category = .pvalid }, + .{ .cp = 0x2C8A, .category = .disallowed }, + .{ .cp = 0x2C8B, .category = .pvalid }, + .{ .cp = 0x2C8C, .category = .disallowed }, + .{ .cp = 0x2C8D, .category = .pvalid }, + .{ .cp = 0x2C8E, .category = .disallowed }, + .{ .cp = 0x2C8F, .category = .pvalid }, + .{ .cp = 0x2C90, .category = .disallowed }, + .{ .cp = 0x2C91, .category = .pvalid }, + .{ .cp = 0x2C92, .category = .disallowed }, + .{ .cp = 0x2C93, .category = .pvalid }, + .{ .cp = 0x2C94, .category = .disallowed }, + .{ .cp = 0x2C95, .category = .pvalid }, + .{ .cp = 0x2C96, .category = .disallowed }, + .{ .cp = 0x2C97, .category = .pvalid }, + .{ .cp = 0x2C98, .category = .disallowed }, + .{ .cp = 0x2C99, .category = .pvalid }, + .{ .cp = 0x2C9A, .category = .disallowed }, + .{ .cp = 0x2C9B, .category = .pvalid }, + .{ .cp = 0x2C9C, .category = .disallowed }, + .{ .cp = 0x2C9D, .category = .pvalid }, + .{ .cp = 0x2C9E, .category = .disallowed }, + .{ .cp = 0x2C9F, .category = .pvalid }, + .{ .cp = 0x2CA0, .category = .disallowed }, + .{ .cp = 0x2CA1, .category = .pvalid }, + .{ .cp = 0x2CA2, .category = .disallowed }, + .{ .cp = 0x2CA3, .category = .pvalid }, + .{ .cp = 0x2CA4, .category = .disallowed }, + .{ .cp = 0x2CA5, .category = .pvalid }, + .{ .cp = 0x2CA6, .category = .disallowed }, + .{ .cp = 0x2CA7, .category = .pvalid }, + .{ .cp = 0x2CA8, .category = .disallowed }, + .{ .cp = 0x2CA9, .category = .pvalid }, + .{ .cp = 0x2CAA, .category = .disallowed }, + .{ .cp = 0x2CAB, .category = .pvalid }, + .{ .cp = 0x2CAC, .category = .disallowed }, + .{ .cp = 0x2CAD, .category = .pvalid }, + .{ .cp = 0x2CAE, .category = .disallowed }, + .{ .cp = 0x2CAF, .category = .pvalid }, + .{ .cp = 0x2CB0, .category = .disallowed }, + .{ .cp = 0x2CB1, .category = .pvalid }, + .{ .cp = 0x2CB2, .category = .disallowed }, + .{ .cp = 0x2CB3, .category = .pvalid }, + .{ .cp = 0x2CB4, .category = .disallowed }, + .{ .cp = 0x2CB5, .category = .pvalid }, + .{ .cp = 0x2CB6, .category = .disallowed }, + .{ .cp = 0x2CB7, .category = .pvalid }, + .{ .cp = 0x2CB8, .category = .disallowed }, + .{ .cp = 0x2CB9, .category = .pvalid }, + .{ .cp = 0x2CBA, .category = .disallowed }, + .{ .cp = 0x2CBB, .category = .pvalid }, + .{ .cp = 0x2CBC, .category = .disallowed }, + .{ .cp = 0x2CBD, .category = .pvalid }, + .{ .cp = 0x2CBE, .category = .disallowed }, + .{ .cp = 0x2CBF, .category = .pvalid }, + .{ .cp = 0x2CC0, .category = .disallowed }, + .{ .cp = 0x2CC1, .category = .pvalid }, + .{ .cp = 0x2CC2, .category = .disallowed }, + .{ .cp = 0x2CC3, .category = .pvalid }, + .{ .cp = 0x2CC4, .category = .disallowed }, + .{ .cp = 0x2CC5, .category = .pvalid }, + .{ .cp = 0x2CC6, .category = .disallowed }, + .{ .cp = 0x2CC7, .category = .pvalid }, + .{ .cp = 0x2CC8, .category = .disallowed }, + .{ .cp = 0x2CC9, .category = .pvalid }, + .{ .cp = 0x2CCA, .category = .disallowed }, + .{ .cp = 0x2CCB, .category = .pvalid }, + .{ .cp = 0x2CCC, .category = .disallowed }, + .{ .cp = 0x2CCD, .category = .pvalid }, + .{ .cp = 0x2CCE, .category = .disallowed }, + .{ .cp = 0x2CCF, .category = .pvalid }, + .{ .cp = 0x2CD0, .category = .disallowed }, + .{ .cp = 0x2CD1, .category = .pvalid }, + .{ .cp = 0x2CD2, .category = .disallowed }, + .{ .cp = 0x2CD3, .category = .pvalid }, + .{ .cp = 0x2CD4, .category = .disallowed }, + .{ .cp = 0x2CD5, .category = .pvalid }, + .{ .cp = 0x2CD6, .category = .disallowed }, + .{ .cp = 0x2CD7, .category = .pvalid }, + .{ .cp = 0x2CD8, .category = .disallowed }, + .{ .cp = 0x2CD9, .category = .pvalid }, + .{ .cp = 0x2CDA, .category = .disallowed }, + .{ .cp = 0x2CDB, .category = .pvalid }, + .{ .cp = 0x2CDC, .category = .disallowed }, + .{ .cp = 0x2CDD, .category = .pvalid }, + .{ .cp = 0x2CDE, .category = .disallowed }, + .{ .cp = 0x2CDF, .category = .pvalid }, + .{ .cp = 0x2CE0, .category = .disallowed }, + .{ .cp = 0x2CE1, .category = .pvalid }, + .{ .cp = 0x2CE2, .category = .disallowed }, + .{ .cp = 0x2CEC, .category = .pvalid }, + .{ .cp = 0x2CED, .category = .disallowed }, + .{ .cp = 0x2CF2, .category = .disallowed }, + .{ .cp = 0x2CF3, .category = .pvalid }, + .{ .cp = 0x2D26, .category = .unassigned }, + .{ .cp = 0x2D27, .category = .pvalid }, + .{ .cp = 0x2D2D, .category = .pvalid }, + .{ .cp = 0x2DA7, .category = .unassigned }, + .{ .cp = 0x2DAF, .category = .unassigned }, + .{ .cp = 0x2DB7, .category = .unassigned }, + .{ .cp = 0x2DBF, .category = .unassigned }, + .{ .cp = 0x2DC7, .category = .unassigned }, + .{ .cp = 0x2DCF, .category = .unassigned }, + .{ .cp = 0x2DD7, .category = .unassigned }, + .{ .cp = 0x2DDF, .category = .unassigned }, + .{ .cp = 0x2E2F, .category = .pvalid }, + .{ .cp = 0x2E9A, .category = .unassigned }, + .{ .cp = 0x303C, .category = .pvalid }, + .{ .cp = 0x3040, .category = .unassigned }, + .{ .cp = 0x30FB, .category = .contexto }, + .{ .cp = 0x30FF, .category = .disallowed }, + .{ .cp = 0x3130, .category = .unassigned }, + .{ .cp = 0x318F, .category = .unassigned }, + .{ .cp = 0x31EF, .category = .disallowed }, + .{ .cp = 0x321F, .category = .unassigned }, + .{ .cp = 0xA640, .category = .disallowed }, + .{ .cp = 0xA641, .category = .pvalid }, + .{ .cp = 0xA642, .category = .disallowed }, + .{ .cp = 0xA643, .category = .pvalid }, + .{ .cp = 0xA644, .category = .disallowed }, + .{ .cp = 0xA645, .category = .pvalid }, + .{ .cp = 0xA646, .category = .disallowed }, + .{ .cp = 0xA647, .category = .pvalid }, + .{ .cp = 0xA648, .category = .disallowed }, + .{ .cp = 0xA649, .category = .pvalid }, + .{ .cp = 0xA64A, .category = .disallowed }, + .{ .cp = 0xA64B, .category = .pvalid }, + .{ .cp = 0xA64C, .category = .disallowed }, + .{ .cp = 0xA64D, .category = .pvalid }, + .{ .cp = 0xA64E, .category = .disallowed }, + .{ .cp = 0xA64F, .category = .pvalid }, + .{ .cp = 0xA650, .category = .disallowed }, + .{ .cp = 0xA651, .category = .pvalid }, + .{ .cp = 0xA652, .category = .disallowed }, + .{ .cp = 0xA653, .category = .pvalid }, + .{ .cp = 0xA654, .category = .disallowed }, + .{ .cp = 0xA655, .category = .pvalid }, + .{ .cp = 0xA656, .category = .disallowed }, + .{ .cp = 0xA657, .category = .pvalid }, + .{ .cp = 0xA658, .category = .disallowed }, + .{ .cp = 0xA659, .category = .pvalid }, + .{ .cp = 0xA65A, .category = .disallowed }, + .{ .cp = 0xA65B, .category = .pvalid }, + .{ .cp = 0xA65C, .category = .disallowed }, + .{ .cp = 0xA65D, .category = .pvalid }, + .{ .cp = 0xA65E, .category = .disallowed }, + .{ .cp = 0xA65F, .category = .pvalid }, + .{ .cp = 0xA660, .category = .disallowed }, + .{ .cp = 0xA661, .category = .pvalid }, + .{ .cp = 0xA662, .category = .disallowed }, + .{ .cp = 0xA663, .category = .pvalid }, + .{ .cp = 0xA664, .category = .disallowed }, + .{ .cp = 0xA665, .category = .pvalid }, + .{ .cp = 0xA666, .category = .disallowed }, + .{ .cp = 0xA667, .category = .pvalid }, + .{ .cp = 0xA668, .category = .disallowed }, + .{ .cp = 0xA669, .category = .pvalid }, + .{ .cp = 0xA66A, .category = .disallowed }, + .{ .cp = 0xA66B, .category = .pvalid }, + .{ .cp = 0xA66C, .category = .disallowed }, + .{ .cp = 0xA67E, .category = .disallowed }, + .{ .cp = 0xA67F, .category = .pvalid }, + .{ .cp = 0xA680, .category = .disallowed }, + .{ .cp = 0xA681, .category = .pvalid }, + .{ .cp = 0xA682, .category = .disallowed }, + .{ .cp = 0xA683, .category = .pvalid }, + .{ .cp = 0xA684, .category = .disallowed }, + .{ .cp = 0xA685, .category = .pvalid }, + .{ .cp = 0xA686, .category = .disallowed }, + .{ .cp = 0xA687, .category = .pvalid }, + .{ .cp = 0xA688, .category = .disallowed }, + .{ .cp = 0xA689, .category = .pvalid }, + .{ .cp = 0xA68A, .category = .disallowed }, + .{ .cp = 0xA68B, .category = .pvalid }, + .{ .cp = 0xA68C, .category = .disallowed }, + .{ .cp = 0xA68D, .category = .pvalid }, + .{ .cp = 0xA68E, .category = .disallowed }, + .{ .cp = 0xA68F, .category = .pvalid }, + .{ .cp = 0xA690, .category = .disallowed }, + .{ .cp = 0xA691, .category = .pvalid }, + .{ .cp = 0xA692, .category = .disallowed }, + .{ .cp = 0xA693, .category = .pvalid }, + .{ .cp = 0xA694, .category = .disallowed }, + .{ .cp = 0xA695, .category = .pvalid }, + .{ .cp = 0xA696, .category = .disallowed }, + .{ .cp = 0xA697, .category = .pvalid }, + .{ .cp = 0xA698, .category = .disallowed }, + .{ .cp = 0xA699, .category = .pvalid }, + .{ .cp = 0xA69A, .category = .disallowed }, + .{ .cp = 0xA69B, .category = .pvalid }, + .{ .cp = 0xA723, .category = .pvalid }, + .{ .cp = 0xA724, .category = .disallowed }, + .{ .cp = 0xA725, .category = .pvalid }, + .{ .cp = 0xA726, .category = .disallowed }, + .{ .cp = 0xA727, .category = .pvalid }, + .{ .cp = 0xA728, .category = .disallowed }, + .{ .cp = 0xA729, .category = .pvalid }, + .{ .cp = 0xA72A, .category = .disallowed }, + .{ .cp = 0xA72B, .category = .pvalid }, + .{ .cp = 0xA72C, .category = .disallowed }, + .{ .cp = 0xA72D, .category = .pvalid }, + .{ .cp = 0xA72E, .category = .disallowed }, + .{ .cp = 0xA732, .category = .disallowed }, + .{ .cp = 0xA733, .category = .pvalid }, + .{ .cp = 0xA734, .category = .disallowed }, + .{ .cp = 0xA735, .category = .pvalid }, + .{ .cp = 0xA736, .category = .disallowed }, + .{ .cp = 0xA737, .category = .pvalid }, + .{ .cp = 0xA738, .category = .disallowed }, + .{ .cp = 0xA739, .category = .pvalid }, + .{ .cp = 0xA73A, .category = .disallowed }, + .{ .cp = 0xA73B, .category = .pvalid }, + .{ .cp = 0xA73C, .category = .disallowed }, + .{ .cp = 0xA73D, .category = .pvalid }, + .{ .cp = 0xA73E, .category = .disallowed }, + .{ .cp = 0xA73F, .category = .pvalid }, + .{ .cp = 0xA740, .category = .disallowed }, + .{ .cp = 0xA741, .category = .pvalid }, + .{ .cp = 0xA742, .category = .disallowed }, + .{ .cp = 0xA743, .category = .pvalid }, + .{ .cp = 0xA744, .category = .disallowed }, + .{ .cp = 0xA745, .category = .pvalid }, + .{ .cp = 0xA746, .category = .disallowed }, + .{ .cp = 0xA747, .category = .pvalid }, + .{ .cp = 0xA748, .category = .disallowed }, + .{ .cp = 0xA749, .category = .pvalid }, + .{ .cp = 0xA74A, .category = .disallowed }, + .{ .cp = 0xA74B, .category = .pvalid }, + .{ .cp = 0xA74C, .category = .disallowed }, + .{ .cp = 0xA74D, .category = .pvalid }, + .{ .cp = 0xA74E, .category = .disallowed }, + .{ .cp = 0xA74F, .category = .pvalid }, + .{ .cp = 0xA750, .category = .disallowed }, + .{ .cp = 0xA751, .category = .pvalid }, + .{ .cp = 0xA752, .category = .disallowed }, + .{ .cp = 0xA753, .category = .pvalid }, + .{ .cp = 0xA754, .category = .disallowed }, + .{ .cp = 0xA755, .category = .pvalid }, + .{ .cp = 0xA756, .category = .disallowed }, + .{ .cp = 0xA757, .category = .pvalid }, + .{ .cp = 0xA758, .category = .disallowed }, + .{ .cp = 0xA759, .category = .pvalid }, + .{ .cp = 0xA75A, .category = .disallowed }, + .{ .cp = 0xA75B, .category = .pvalid }, + .{ .cp = 0xA75C, .category = .disallowed }, + .{ .cp = 0xA75D, .category = .pvalid }, + .{ .cp = 0xA75E, .category = .disallowed }, + .{ .cp = 0xA75F, .category = .pvalid }, + .{ .cp = 0xA760, .category = .disallowed }, + .{ .cp = 0xA761, .category = .pvalid }, + .{ .cp = 0xA762, .category = .disallowed }, + .{ .cp = 0xA763, .category = .pvalid }, + .{ .cp = 0xA764, .category = .disallowed }, + .{ .cp = 0xA765, .category = .pvalid }, + .{ .cp = 0xA766, .category = .disallowed }, + .{ .cp = 0xA767, .category = .pvalid }, + .{ .cp = 0xA768, .category = .disallowed }, + .{ .cp = 0xA769, .category = .pvalid }, + .{ .cp = 0xA76A, .category = .disallowed }, + .{ .cp = 0xA76B, .category = .pvalid }, + .{ .cp = 0xA76C, .category = .disallowed }, + .{ .cp = 0xA76D, .category = .pvalid }, + .{ .cp = 0xA76E, .category = .disallowed }, + .{ .cp = 0xA76F, .category = .pvalid }, + .{ .cp = 0xA770, .category = .disallowed }, + .{ .cp = 0xA779, .category = .disallowed }, + .{ .cp = 0xA77A, .category = .pvalid }, + .{ .cp = 0xA77B, .category = .disallowed }, + .{ .cp = 0xA77C, .category = .pvalid }, + .{ .cp = 0xA77F, .category = .pvalid }, + .{ .cp = 0xA780, .category = .disallowed }, + .{ .cp = 0xA781, .category = .pvalid }, + .{ .cp = 0xA782, .category = .disallowed }, + .{ .cp = 0xA783, .category = .pvalid }, + .{ .cp = 0xA784, .category = .disallowed }, + .{ .cp = 0xA785, .category = .pvalid }, + .{ .cp = 0xA786, .category = .disallowed }, + .{ .cp = 0xA78C, .category = .pvalid }, + .{ .cp = 0xA78D, .category = .disallowed }, + .{ .cp = 0xA790, .category = .disallowed }, + .{ .cp = 0xA791, .category = .pvalid }, + .{ .cp = 0xA792, .category = .disallowed }, + .{ .cp = 0xA796, .category = .disallowed }, + .{ .cp = 0xA797, .category = .pvalid }, + .{ .cp = 0xA798, .category = .disallowed }, + .{ .cp = 0xA799, .category = .pvalid }, + .{ .cp = 0xA79A, .category = .disallowed }, + .{ .cp = 0xA79B, .category = .pvalid }, + .{ .cp = 0xA79C, .category = .disallowed }, + .{ .cp = 0xA79D, .category = .pvalid }, + .{ .cp = 0xA79E, .category = .disallowed }, + .{ .cp = 0xA79F, .category = .pvalid }, + .{ .cp = 0xA7A0, .category = .disallowed }, + .{ .cp = 0xA7A1, .category = .pvalid }, + .{ .cp = 0xA7A2, .category = .disallowed }, + .{ .cp = 0xA7A3, .category = .pvalid }, + .{ .cp = 0xA7A4, .category = .disallowed }, + .{ .cp = 0xA7A5, .category = .pvalid }, + .{ .cp = 0xA7A6, .category = .disallowed }, + .{ .cp = 0xA7A7, .category = .pvalid }, + .{ .cp = 0xA7A8, .category = .disallowed }, + .{ .cp = 0xA7A9, .category = .pvalid }, + .{ .cp = 0xA7AF, .category = .pvalid }, + .{ .cp = 0xA7B5, .category = .pvalid }, + .{ .cp = 0xA7B6, .category = .disallowed }, + .{ .cp = 0xA7B7, .category = .pvalid }, + .{ .cp = 0xA7B8, .category = .disallowed }, + .{ .cp = 0xA7B9, .category = .pvalid }, + .{ .cp = 0xA7BA, .category = .disallowed }, + .{ .cp = 0xA7BB, .category = .pvalid }, + .{ .cp = 0xA7BC, .category = .disallowed }, + .{ .cp = 0xA7BD, .category = .pvalid }, + .{ .cp = 0xA7BE, .category = .disallowed }, + .{ .cp = 0xA7BF, .category = .pvalid }, + .{ .cp = 0xA7C0, .category = .disallowed }, + .{ .cp = 0xA7C1, .category = .pvalid }, + .{ .cp = 0xA7C2, .category = .disallowed }, + .{ .cp = 0xA7C3, .category = .pvalid }, + .{ .cp = 0xA7C8, .category = .pvalid }, + .{ .cp = 0xA7C9, .category = .disallowed }, + .{ .cp = 0xA7CA, .category = .pvalid }, + .{ .cp = 0xA7CD, .category = .pvalid }, + .{ .cp = 0xA7CE, .category = .disallowed }, + .{ .cp = 0xA7CF, .category = .pvalid }, + .{ .cp = 0xA7D0, .category = .disallowed }, + .{ .cp = 0xA7D1, .category = .pvalid }, + .{ .cp = 0xA7D2, .category = .disallowed }, + .{ .cp = 0xA7D3, .category = .pvalid }, + .{ .cp = 0xA7D4, .category = .disallowed }, + .{ .cp = 0xA7D5, .category = .pvalid }, + .{ .cp = 0xA7D6, .category = .disallowed }, + .{ .cp = 0xA7D7, .category = .pvalid }, + .{ .cp = 0xA7D8, .category = .disallowed }, + .{ .cp = 0xA7D9, .category = .pvalid }, + .{ .cp = 0xA7DA, .category = .disallowed }, + .{ .cp = 0xA7DB, .category = .pvalid }, + .{ .cp = 0xA7DC, .category = .disallowed }, + .{ .cp = 0xA82C, .category = .pvalid }, + .{ .cp = 0xA8FB, .category = .pvalid }, + .{ .cp = 0xA8FC, .category = .disallowed }, + .{ .cp = 0xA9CE, .category = .unassigned }, + .{ .cp = 0xA9FF, .category = .unassigned }, + .{ .cp = 0xAB27, .category = .unassigned }, + .{ .cp = 0xAB2F, .category = .unassigned }, + .{ .cp = 0xABEB, .category = .disallowed }, + .{ .cp = 0xFA10, .category = .disallowed }, + .{ .cp = 0xFA11, .category = .pvalid }, + .{ .cp = 0xFA12, .category = .disallowed }, + .{ .cp = 0xFA1F, .category = .pvalid }, + .{ .cp = 0xFA20, .category = .disallowed }, + .{ .cp = 0xFA21, .category = .pvalid }, + .{ .cp = 0xFA22, .category = .disallowed }, + .{ .cp = 0xFB1D, .category = .disallowed }, + .{ .cp = 0xFB1E, .category = .pvalid }, + .{ .cp = 0xFB37, .category = .unassigned }, + .{ .cp = 0xFB3D, .category = .unassigned }, + .{ .cp = 0xFB3E, .category = .disallowed }, + .{ .cp = 0xFB3F, .category = .unassigned }, + .{ .cp = 0xFB42, .category = .unassigned }, + .{ .cp = 0xFB45, .category = .unassigned }, + .{ .cp = 0xFE53, .category = .unassigned }, + .{ .cp = 0xFE67, .category = .unassigned }, + .{ .cp = 0xFE73, .category = .pvalid }, + .{ .cp = 0xFE74, .category = .disallowed }, + .{ .cp = 0xFE75, .category = .unassigned }, + .{ .cp = 0xFEFF, .category = .disallowed }, + .{ .cp = 0xFF00, .category = .unassigned }, + .{ .cp = 0xFFE7, .category = .unassigned }, + .{ .cp = 0x1000C, .category = .unassigned }, + .{ .cp = 0x10027, .category = .unassigned }, + .{ .cp = 0x1003B, .category = .unassigned }, + .{ .cp = 0x1003E, .category = .unassigned }, + .{ .cp = 0x1018F, .category = .unassigned }, + .{ .cp = 0x101A0, .category = .disallowed }, + .{ .cp = 0x101FD, .category = .pvalid }, + .{ .cp = 0x102E0, .category = .pvalid }, + .{ .cp = 0x10341, .category = .disallowed }, + .{ .cp = 0x1034A, .category = .disallowed }, + .{ .cp = 0x1039E, .category = .unassigned }, + .{ .cp = 0x1039F, .category = .disallowed }, + .{ .cp = 0x1057B, .category = .unassigned }, + .{ .cp = 0x1058B, .category = .unassigned }, + .{ .cp = 0x10593, .category = .unassigned }, + .{ .cp = 0x10596, .category = .unassigned }, + .{ .cp = 0x105A2, .category = .unassigned }, + .{ .cp = 0x105B2, .category = .unassigned }, + .{ .cp = 0x105BA, .category = .unassigned }, + .{ .cp = 0x10780, .category = .pvalid }, + .{ .cp = 0x10786, .category = .unassigned }, + .{ .cp = 0x107B1, .category = .unassigned }, + .{ .cp = 0x10808, .category = .pvalid }, + .{ .cp = 0x10809, .category = .unassigned }, + .{ .cp = 0x10836, .category = .unassigned }, + .{ .cp = 0x1083C, .category = .pvalid }, + .{ .cp = 0x10856, .category = .unassigned }, + .{ .cp = 0x108F3, .category = .unassigned }, + .{ .cp = 0x1091F, .category = .disallowed }, + .{ .cp = 0x1093F, .category = .disallowed }, + .{ .cp = 0x10A04, .category = .unassigned }, + .{ .cp = 0x10A14, .category = .unassigned }, + .{ .cp = 0x10A18, .category = .unassigned }, + .{ .cp = 0x10A3F, .category = .pvalid }, + .{ .cp = 0x10AC8, .category = .disallowed }, + .{ .cp = 0x10D6E, .category = .disallowed }, + .{ .cp = 0x10E7F, .category = .unassigned }, + .{ .cp = 0x10EAA, .category = .unassigned }, + .{ .cp = 0x10EAD, .category = .disallowed }, + .{ .cp = 0x10F27, .category = .pvalid }, + .{ .cp = 0x110C2, .category = .pvalid }, + .{ .cp = 0x110CD, .category = .disallowed }, + .{ .cp = 0x11135, .category = .unassigned }, + .{ .cp = 0x11176, .category = .pvalid }, + .{ .cp = 0x111CD, .category = .disallowed }, + .{ .cp = 0x111DB, .category = .disallowed }, + .{ .cp = 0x111DC, .category = .pvalid }, + .{ .cp = 0x111E0, .category = .unassigned }, + .{ .cp = 0x11212, .category = .unassigned }, + .{ .cp = 0x11287, .category = .unassigned }, + .{ .cp = 0x11288, .category = .pvalid }, + .{ .cp = 0x11289, .category = .unassigned }, + .{ .cp = 0x1128E, .category = .unassigned }, + .{ .cp = 0x1129E, .category = .unassigned }, + .{ .cp = 0x112A9, .category = .disallowed }, + .{ .cp = 0x11304, .category = .unassigned }, + .{ .cp = 0x11329, .category = .unassigned }, + .{ .cp = 0x11331, .category = .unassigned }, + .{ .cp = 0x11334, .category = .unassigned }, + .{ .cp = 0x1133A, .category = .unassigned }, + .{ .cp = 0x11350, .category = .pvalid }, + .{ .cp = 0x11357, .category = .pvalid }, + .{ .cp = 0x1138A, .category = .unassigned }, + .{ .cp = 0x1138B, .category = .pvalid }, + .{ .cp = 0x1138E, .category = .pvalid }, + .{ .cp = 0x1138F, .category = .unassigned }, + .{ .cp = 0x113B6, .category = .unassigned }, + .{ .cp = 0x113C1, .category = .unassigned }, + .{ .cp = 0x113C2, .category = .pvalid }, + .{ .cp = 0x113C5, .category = .pvalid }, + .{ .cp = 0x113C6, .category = .unassigned }, + .{ .cp = 0x113CB, .category = .unassigned }, + .{ .cp = 0x113D6, .category = .unassigned }, + .{ .cp = 0x1145C, .category = .unassigned }, + .{ .cp = 0x1145D, .category = .disallowed }, + .{ .cp = 0x114C6, .category = .disallowed }, + .{ .cp = 0x114C7, .category = .pvalid }, + .{ .cp = 0x11644, .category = .pvalid }, + .{ .cp = 0x116B9, .category = .disallowed }, + .{ .cp = 0x1183B, .category = .disallowed }, + .{ .cp = 0x11909, .category = .pvalid }, + .{ .cp = 0x11914, .category = .unassigned }, + .{ .cp = 0x11917, .category = .unassigned }, + .{ .cp = 0x11936, .category = .unassigned }, + .{ .cp = 0x119E2, .category = .disallowed }, + .{ .cp = 0x11A47, .category = .pvalid }, + .{ .cp = 0x11A9D, .category = .pvalid }, + .{ .cp = 0x11BE1, .category = .disallowed }, + .{ .cp = 0x11C09, .category = .unassigned }, + .{ .cp = 0x11C37, .category = .unassigned }, + .{ .cp = 0x11CA8, .category = .unassigned }, + .{ .cp = 0x11D07, .category = .unassigned }, + .{ .cp = 0x11D0A, .category = .unassigned }, + .{ .cp = 0x11D3A, .category = .pvalid }, + .{ .cp = 0x11D3B, .category = .unassigned }, + .{ .cp = 0x11D3E, .category = .unassigned }, + .{ .cp = 0x11D66, .category = .unassigned }, + .{ .cp = 0x11D69, .category = .unassigned }, + .{ .cp = 0x11D8F, .category = .unassigned }, + .{ .cp = 0x11D92, .category = .unassigned }, + .{ .cp = 0x11F11, .category = .unassigned }, + .{ .cp = 0x11FB0, .category = .pvalid }, + .{ .cp = 0x11FFF, .category = .disallowed }, + .{ .cp = 0x1246F, .category = .unassigned }, + .{ .cp = 0x16A5F, .category = .unassigned }, + .{ .cp = 0x16ABF, .category = .unassigned }, + .{ .cp = 0x16AF5, .category = .disallowed }, + .{ .cp = 0x16B5A, .category = .unassigned }, + .{ .cp = 0x16B62, .category = .unassigned }, + .{ .cp = 0x16FE2, .category = .disallowed }, + .{ .cp = 0x1AFF4, .category = .unassigned }, + .{ .cp = 0x1AFFC, .category = .unassigned }, + .{ .cp = 0x1AFFF, .category = .unassigned }, + .{ .cp = 0x1B132, .category = .pvalid }, + .{ .cp = 0x1B155, .category = .pvalid }, + .{ .cp = 0x1BC9C, .category = .disallowed }, + .{ .cp = 0x1D455, .category = .unassigned }, + .{ .cp = 0x1D49D, .category = .unassigned }, + .{ .cp = 0x1D4A2, .category = .disallowed }, + .{ .cp = 0x1D4AD, .category = .unassigned }, + .{ .cp = 0x1D4BA, .category = .unassigned }, + .{ .cp = 0x1D4BB, .category = .disallowed }, + .{ .cp = 0x1D4BC, .category = .unassigned }, + .{ .cp = 0x1D4C4, .category = .unassigned }, + .{ .cp = 0x1D506, .category = .unassigned }, + .{ .cp = 0x1D515, .category = .unassigned }, + .{ .cp = 0x1D51D, .category = .unassigned }, + .{ .cp = 0x1D53A, .category = .unassigned }, + .{ .cp = 0x1D53F, .category = .unassigned }, + .{ .cp = 0x1D545, .category = .unassigned }, + .{ .cp = 0x1D546, .category = .disallowed }, + .{ .cp = 0x1D551, .category = .unassigned }, + .{ .cp = 0x1DA75, .category = .pvalid }, + .{ .cp = 0x1DA84, .category = .pvalid }, + .{ .cp = 0x1DAA0, .category = .unassigned }, + .{ .cp = 0x1E007, .category = .unassigned }, + .{ .cp = 0x1E022, .category = .unassigned }, + .{ .cp = 0x1E025, .category = .unassigned }, + .{ .cp = 0x1E08F, .category = .pvalid }, + .{ .cp = 0x1E14E, .category = .pvalid }, + .{ .cp = 0x1E14F, .category = .disallowed }, + .{ .cp = 0x1E2FF, .category = .disallowed }, + .{ .cp = 0x1E5FF, .category = .disallowed }, + .{ .cp = 0x1E6DF, .category = .unassigned }, + .{ .cp = 0x1E7E7, .category = .unassigned }, + .{ .cp = 0x1E7EC, .category = .unassigned }, + .{ .cp = 0x1E7EF, .category = .unassigned }, + .{ .cp = 0x1E7FF, .category = .unassigned }, + .{ .cp = 0x1EE04, .category = .unassigned }, + .{ .cp = 0x1EE20, .category = .unassigned }, + .{ .cp = 0x1EE23, .category = .unassigned }, + .{ .cp = 0x1EE24, .category = .disallowed }, + .{ .cp = 0x1EE27, .category = .disallowed }, + .{ .cp = 0x1EE28, .category = .unassigned }, + .{ .cp = 0x1EE33, .category = .unassigned }, + .{ .cp = 0x1EE38, .category = .unassigned }, + .{ .cp = 0x1EE39, .category = .disallowed }, + .{ .cp = 0x1EE3A, .category = .unassigned }, + .{ .cp = 0x1EE3B, .category = .disallowed }, + .{ .cp = 0x1EE42, .category = .disallowed }, + .{ .cp = 0x1EE47, .category = .disallowed }, + .{ .cp = 0x1EE48, .category = .unassigned }, + .{ .cp = 0x1EE49, .category = .disallowed }, + .{ .cp = 0x1EE4A, .category = .unassigned }, + .{ .cp = 0x1EE4B, .category = .disallowed }, + .{ .cp = 0x1EE4C, .category = .unassigned }, + .{ .cp = 0x1EE50, .category = .unassigned }, + .{ .cp = 0x1EE53, .category = .unassigned }, + .{ .cp = 0x1EE54, .category = .disallowed }, + .{ .cp = 0x1EE57, .category = .disallowed }, + .{ .cp = 0x1EE58, .category = .unassigned }, + .{ .cp = 0x1EE59, .category = .disallowed }, + .{ .cp = 0x1EE5A, .category = .unassigned }, + .{ .cp = 0x1EE5B, .category = .disallowed }, + .{ .cp = 0x1EE5C, .category = .unassigned }, + .{ .cp = 0x1EE5D, .category = .disallowed }, + .{ .cp = 0x1EE5E, .category = .unassigned }, + .{ .cp = 0x1EE5F, .category = .disallowed }, + .{ .cp = 0x1EE60, .category = .unassigned }, + .{ .cp = 0x1EE63, .category = .unassigned }, + .{ .cp = 0x1EE64, .category = .disallowed }, + .{ .cp = 0x1EE6B, .category = .unassigned }, + .{ .cp = 0x1EE73, .category = .unassigned }, + .{ .cp = 0x1EE78, .category = .unassigned }, + .{ .cp = 0x1EE7D, .category = .unassigned }, + .{ .cp = 0x1EE7E, .category = .disallowed }, + .{ .cp = 0x1EE7F, .category = .unassigned }, + .{ .cp = 0x1EE8A, .category = .unassigned }, + .{ .cp = 0x1EEA4, .category = .unassigned }, + .{ .cp = 0x1EEAA, .category = .unassigned }, + .{ .cp = 0x1F0C0, .category = .unassigned }, + .{ .cp = 0x1F0D0, .category = .unassigned }, + .{ .cp = 0x1F7F0, .category = .disallowed }, + .{ .cp = 0x1FAC7, .category = .unassigned }, + .{ .cp = 0x1FAC8, .category = .disallowed }, + .{ .cp = 0x1FB93, .category = .unassigned }, + .{ .cp = 0xE0000, .category = .unassigned }, + .{ .cp = 0xE0001, .category = .disallowed }, +}; + +pub const data_range = [_]PropRange{ + .{ .from = 0x0000, .to = 0x002C, .category = .disallowed }, + .{ .from = 0x002E, .to = 0x002F, .category = .disallowed }, + .{ .from = 0x0030, .to = 0x0039, .category = .pvalid }, + .{ .from = 0x003A, .to = 0x0060, .category = .disallowed }, + .{ .from = 0x0061, .to = 0x007A, .category = .pvalid }, + .{ .from = 0x007B, .to = 0x00B6, .category = .disallowed }, + .{ .from = 0x00B8, .to = 0x00DE, .category = .disallowed }, + .{ .from = 0x00DF, .to = 0x00F6, .category = .pvalid }, + .{ .from = 0x00F8, .to = 0x00FF, .category = .pvalid }, + .{ .from = 0x0132, .to = 0x0134, .category = .disallowed }, + .{ .from = 0x0137, .to = 0x0138, .category = .pvalid }, + .{ .from = 0x013F, .to = 0x0141, .category = .disallowed }, + .{ .from = 0x0149, .to = 0x014A, .category = .disallowed }, + .{ .from = 0x0178, .to = 0x0179, .category = .disallowed }, + .{ .from = 0x0181, .to = 0x0182, .category = .disallowed }, + .{ .from = 0x0186, .to = 0x0187, .category = .disallowed }, + .{ .from = 0x0189, .to = 0x018B, .category = .disallowed }, + .{ .from = 0x018C, .to = 0x018D, .category = .pvalid }, + .{ .from = 0x018E, .to = 0x0191, .category = .disallowed }, + .{ .from = 0x0193, .to = 0x0194, .category = .disallowed }, + .{ .from = 0x0196, .to = 0x0198, .category = .disallowed }, + .{ .from = 0x0199, .to = 0x019B, .category = .pvalid }, + .{ .from = 0x019C, .to = 0x019D, .category = .disallowed }, + .{ .from = 0x019F, .to = 0x01A0, .category = .disallowed }, + .{ .from = 0x01A6, .to = 0x01A7, .category = .disallowed }, + .{ .from = 0x01AA, .to = 0x01AB, .category = .pvalid }, + .{ .from = 0x01AE, .to = 0x01AF, .category = .disallowed }, + .{ .from = 0x01B1, .to = 0x01B3, .category = .disallowed }, + .{ .from = 0x01B7, .to = 0x01B8, .category = .disallowed }, + .{ .from = 0x01B9, .to = 0x01BB, .category = .pvalid }, + .{ .from = 0x01BD, .to = 0x01C3, .category = .pvalid }, + .{ .from = 0x01C4, .to = 0x01CD, .category = .disallowed }, + .{ .from = 0x01DC, .to = 0x01DD, .category = .pvalid }, + .{ .from = 0x01EF, .to = 0x01F0, .category = .pvalid }, + .{ .from = 0x01F1, .to = 0x01F4, .category = .disallowed }, + .{ .from = 0x01F6, .to = 0x01F8, .category = .disallowed }, + .{ .from = 0x0233, .to = 0x0239, .category = .pvalid }, + .{ .from = 0x023A, .to = 0x023B, .category = .disallowed }, + .{ .from = 0x023D, .to = 0x023E, .category = .disallowed }, + .{ .from = 0x023F, .to = 0x0240, .category = .pvalid }, + .{ .from = 0x0243, .to = 0x0246, .category = .disallowed }, + .{ .from = 0x024F, .to = 0x02AF, .category = .pvalid }, + .{ .from = 0x02B0, .to = 0x02B8, .category = .disallowed }, + .{ .from = 0x02B9, .to = 0x02C1, .category = .pvalid }, + .{ .from = 0x02C2, .to = 0x02C5, .category = .disallowed }, + .{ .from = 0x02C6, .to = 0x02D1, .category = .pvalid }, + .{ .from = 0x02D2, .to = 0x02EB, .category = .disallowed }, + .{ .from = 0x02EF, .to = 0x02FF, .category = .disallowed }, + .{ .from = 0x0300, .to = 0x033F, .category = .pvalid }, + .{ .from = 0x0340, .to = 0x0341, .category = .disallowed }, + .{ .from = 0x0343, .to = 0x0345, .category = .disallowed }, + .{ .from = 0x0346, .to = 0x034E, .category = .pvalid }, + .{ .from = 0x0350, .to = 0x036F, .category = .pvalid }, + .{ .from = 0x0378, .to = 0x0379, .category = .unassigned }, + .{ .from = 0x037B, .to = 0x037D, .category = .pvalid }, + .{ .from = 0x037E, .to = 0x037F, .category = .disallowed }, + .{ .from = 0x0380, .to = 0x0383, .category = .unassigned }, + .{ .from = 0x0384, .to = 0x038A, .category = .disallowed }, + .{ .from = 0x038E, .to = 0x038F, .category = .disallowed }, + .{ .from = 0x0391, .to = 0x03A1, .category = .disallowed }, + .{ .from = 0x03A3, .to = 0x03AB, .category = .disallowed }, + .{ .from = 0x03AC, .to = 0x03CE, .category = .pvalid }, + .{ .from = 0x03CF, .to = 0x03D6, .category = .disallowed }, + .{ .from = 0x03F0, .to = 0x03F2, .category = .disallowed }, + .{ .from = 0x03F4, .to = 0x03F7, .category = .disallowed }, + .{ .from = 0x03F9, .to = 0x03FA, .category = .disallowed }, + .{ .from = 0x03FB, .to = 0x03FC, .category = .pvalid }, + .{ .from = 0x03FD, .to = 0x042F, .category = .disallowed }, + .{ .from = 0x0430, .to = 0x045F, .category = .pvalid }, + .{ .from = 0x0483, .to = 0x0487, .category = .pvalid }, + .{ .from = 0x0488, .to = 0x048A, .category = .disallowed }, + .{ .from = 0x04C0, .to = 0x04C1, .category = .disallowed }, + .{ .from = 0x04CE, .to = 0x04CF, .category = .pvalid }, + .{ .from = 0x0531, .to = 0x0556, .category = .disallowed }, + .{ .from = 0x0557, .to = 0x0558, .category = .unassigned }, + .{ .from = 0x055A, .to = 0x055F, .category = .disallowed }, + .{ .from = 0x0560, .to = 0x0586, .category = .pvalid }, + .{ .from = 0x0589, .to = 0x058A, .category = .disallowed }, + .{ .from = 0x058B, .to = 0x058C, .category = .unassigned }, + .{ .from = 0x058D, .to = 0x058F, .category = .disallowed }, + .{ .from = 0x0591, .to = 0x05BD, .category = .pvalid }, + .{ .from = 0x05C1, .to = 0x05C2, .category = .pvalid }, + .{ .from = 0x05C4, .to = 0x05C5, .category = .pvalid }, + .{ .from = 0x05C8, .to = 0x05CF, .category = .unassigned }, + .{ .from = 0x05D0, .to = 0x05EA, .category = .pvalid }, + .{ .from = 0x05EB, .to = 0x05EE, .category = .unassigned }, + .{ .from = 0x05EF, .to = 0x05F2, .category = .pvalid }, + .{ .from = 0x05F3, .to = 0x05F4, .category = .contexto }, + .{ .from = 0x05F5, .to = 0x05FF, .category = .unassigned }, + .{ .from = 0x0600, .to = 0x060F, .category = .disallowed }, + .{ .from = 0x0610, .to = 0x061A, .category = .pvalid }, + .{ .from = 0x061B, .to = 0x061F, .category = .disallowed }, + .{ .from = 0x0620, .to = 0x063F, .category = .pvalid }, + .{ .from = 0x0641, .to = 0x065F, .category = .pvalid }, + .{ .from = 0x0660, .to = 0x0669, .category = .contexto }, + .{ .from = 0x066A, .to = 0x066D, .category = .disallowed }, + .{ .from = 0x066E, .to = 0x0674, .category = .pvalid }, + .{ .from = 0x0675, .to = 0x0678, .category = .disallowed }, + .{ .from = 0x0679, .to = 0x06D3, .category = .pvalid }, + .{ .from = 0x06D5, .to = 0x06DC, .category = .pvalid }, + .{ .from = 0x06DD, .to = 0x06DE, .category = .disallowed }, + .{ .from = 0x06DF, .to = 0x06E8, .category = .pvalid }, + .{ .from = 0x06EA, .to = 0x06EF, .category = .pvalid }, + .{ .from = 0x06F0, .to = 0x06F9, .category = .contexto }, + .{ .from = 0x06FA, .to = 0x06FF, .category = .pvalid }, + .{ .from = 0x0700, .to = 0x070D, .category = .disallowed }, + .{ .from = 0x0710, .to = 0x074A, .category = .pvalid }, + .{ .from = 0x074B, .to = 0x074C, .category = .unassigned }, + .{ .from = 0x074D, .to = 0x07B1, .category = .pvalid }, + .{ .from = 0x07B2, .to = 0x07BF, .category = .unassigned }, + .{ .from = 0x07C0, .to = 0x07F5, .category = .pvalid }, + .{ .from = 0x07F6, .to = 0x07FA, .category = .disallowed }, + .{ .from = 0x07FB, .to = 0x07FC, .category = .unassigned }, + .{ .from = 0x07FE, .to = 0x07FF, .category = .disallowed }, + .{ .from = 0x0800, .to = 0x082D, .category = .pvalid }, + .{ .from = 0x082E, .to = 0x082F, .category = .unassigned }, + .{ .from = 0x0830, .to = 0x083E, .category = .disallowed }, + .{ .from = 0x0840, .to = 0x085B, .category = .pvalid }, + .{ .from = 0x085C, .to = 0x085D, .category = .unassigned }, + .{ .from = 0x0860, .to = 0x086A, .category = .pvalid }, + .{ .from = 0x086B, .to = 0x086F, .category = .unassigned }, + .{ .from = 0x0870, .to = 0x0887, .category = .pvalid }, + .{ .from = 0x0889, .to = 0x088F, .category = .pvalid }, + .{ .from = 0x0890, .to = 0x0891, .category = .disallowed }, + .{ .from = 0x0892, .to = 0x0896, .category = .unassigned }, + .{ .from = 0x0897, .to = 0x08E1, .category = .pvalid }, + .{ .from = 0x08E3, .to = 0x0957, .category = .pvalid }, + .{ .from = 0x0958, .to = 0x095F, .category = .disallowed }, + .{ .from = 0x0960, .to = 0x0963, .category = .pvalid }, + .{ .from = 0x0964, .to = 0x0965, .category = .disallowed }, + .{ .from = 0x0966, .to = 0x096F, .category = .pvalid }, + .{ .from = 0x0971, .to = 0x0983, .category = .pvalid }, + .{ .from = 0x0985, .to = 0x098C, .category = .pvalid }, + .{ .from = 0x098D, .to = 0x098E, .category = .unassigned }, + .{ .from = 0x098F, .to = 0x0990, .category = .pvalid }, + .{ .from = 0x0991, .to = 0x0992, .category = .unassigned }, + .{ .from = 0x0993, .to = 0x09A8, .category = .pvalid }, + .{ .from = 0x09AA, .to = 0x09B0, .category = .pvalid }, + .{ .from = 0x09B3, .to = 0x09B5, .category = .unassigned }, + .{ .from = 0x09B6, .to = 0x09B9, .category = .pvalid }, + .{ .from = 0x09BA, .to = 0x09BB, .category = .unassigned }, + .{ .from = 0x09BC, .to = 0x09C4, .category = .pvalid }, + .{ .from = 0x09C5, .to = 0x09C6, .category = .unassigned }, + .{ .from = 0x09C7, .to = 0x09C8, .category = .pvalid }, + .{ .from = 0x09C9, .to = 0x09CA, .category = .unassigned }, + .{ .from = 0x09CB, .to = 0x09CE, .category = .pvalid }, + .{ .from = 0x09CF, .to = 0x09D6, .category = .unassigned }, + .{ .from = 0x09D8, .to = 0x09DB, .category = .unassigned }, + .{ .from = 0x09DC, .to = 0x09DD, .category = .disallowed }, + .{ .from = 0x09E0, .to = 0x09E3, .category = .pvalid }, + .{ .from = 0x09E4, .to = 0x09E5, .category = .unassigned }, + .{ .from = 0x09E6, .to = 0x09F1, .category = .pvalid }, + .{ .from = 0x09F2, .to = 0x09FB, .category = .disallowed }, + .{ .from = 0x09FF, .to = 0x0A00, .category = .unassigned }, + .{ .from = 0x0A01, .to = 0x0A03, .category = .pvalid }, + .{ .from = 0x0A05, .to = 0x0A0A, .category = .pvalid }, + .{ .from = 0x0A0B, .to = 0x0A0E, .category = .unassigned }, + .{ .from = 0x0A0F, .to = 0x0A10, .category = .pvalid }, + .{ .from = 0x0A11, .to = 0x0A12, .category = .unassigned }, + .{ .from = 0x0A13, .to = 0x0A28, .category = .pvalid }, + .{ .from = 0x0A2A, .to = 0x0A30, .category = .pvalid }, + .{ .from = 0x0A38, .to = 0x0A39, .category = .pvalid }, + .{ .from = 0x0A3A, .to = 0x0A3B, .category = .unassigned }, + .{ .from = 0x0A3E, .to = 0x0A42, .category = .pvalid }, + .{ .from = 0x0A43, .to = 0x0A46, .category = .unassigned }, + .{ .from = 0x0A47, .to = 0x0A48, .category = .pvalid }, + .{ .from = 0x0A49, .to = 0x0A4A, .category = .unassigned }, + .{ .from = 0x0A4B, .to = 0x0A4D, .category = .pvalid }, + .{ .from = 0x0A4E, .to = 0x0A50, .category = .unassigned }, + .{ .from = 0x0A52, .to = 0x0A58, .category = .unassigned }, + .{ .from = 0x0A59, .to = 0x0A5B, .category = .disallowed }, + .{ .from = 0x0A5F, .to = 0x0A65, .category = .unassigned }, + .{ .from = 0x0A66, .to = 0x0A75, .category = .pvalid }, + .{ .from = 0x0A77, .to = 0x0A80, .category = .unassigned }, + .{ .from = 0x0A81, .to = 0x0A83, .category = .pvalid }, + .{ .from = 0x0A85, .to = 0x0A8D, .category = .pvalid }, + .{ .from = 0x0A8F, .to = 0x0A91, .category = .pvalid }, + .{ .from = 0x0A93, .to = 0x0AA8, .category = .pvalid }, + .{ .from = 0x0AAA, .to = 0x0AB0, .category = .pvalid }, + .{ .from = 0x0AB2, .to = 0x0AB3, .category = .pvalid }, + .{ .from = 0x0AB5, .to = 0x0AB9, .category = .pvalid }, + .{ .from = 0x0ABA, .to = 0x0ABB, .category = .unassigned }, + .{ .from = 0x0ABC, .to = 0x0AC5, .category = .pvalid }, + .{ .from = 0x0AC7, .to = 0x0AC9, .category = .pvalid }, + .{ .from = 0x0ACB, .to = 0x0ACD, .category = .pvalid }, + .{ .from = 0x0ACE, .to = 0x0ACF, .category = .unassigned }, + .{ .from = 0x0AD1, .to = 0x0ADF, .category = .unassigned }, + .{ .from = 0x0AE0, .to = 0x0AE3, .category = .pvalid }, + .{ .from = 0x0AE4, .to = 0x0AE5, .category = .unassigned }, + .{ .from = 0x0AE6, .to = 0x0AEF, .category = .pvalid }, + .{ .from = 0x0AF0, .to = 0x0AF1, .category = .disallowed }, + .{ .from = 0x0AF2, .to = 0x0AF8, .category = .unassigned }, + .{ .from = 0x0AF9, .to = 0x0AFF, .category = .pvalid }, + .{ .from = 0x0B01, .to = 0x0B03, .category = .pvalid }, + .{ .from = 0x0B05, .to = 0x0B0C, .category = .pvalid }, + .{ .from = 0x0B0D, .to = 0x0B0E, .category = .unassigned }, + .{ .from = 0x0B0F, .to = 0x0B10, .category = .pvalid }, + .{ .from = 0x0B11, .to = 0x0B12, .category = .unassigned }, + .{ .from = 0x0B13, .to = 0x0B28, .category = .pvalid }, + .{ .from = 0x0B2A, .to = 0x0B30, .category = .pvalid }, + .{ .from = 0x0B32, .to = 0x0B33, .category = .pvalid }, + .{ .from = 0x0B35, .to = 0x0B39, .category = .pvalid }, + .{ .from = 0x0B3A, .to = 0x0B3B, .category = .unassigned }, + .{ .from = 0x0B3C, .to = 0x0B44, .category = .pvalid }, + .{ .from = 0x0B45, .to = 0x0B46, .category = .unassigned }, + .{ .from = 0x0B47, .to = 0x0B48, .category = .pvalid }, + .{ .from = 0x0B49, .to = 0x0B4A, .category = .unassigned }, + .{ .from = 0x0B4B, .to = 0x0B4D, .category = .pvalid }, + .{ .from = 0x0B4E, .to = 0x0B54, .category = .unassigned }, + .{ .from = 0x0B55, .to = 0x0B57, .category = .pvalid }, + .{ .from = 0x0B58, .to = 0x0B5B, .category = .unassigned }, + .{ .from = 0x0B5C, .to = 0x0B5D, .category = .disallowed }, + .{ .from = 0x0B5F, .to = 0x0B63, .category = .pvalid }, + .{ .from = 0x0B64, .to = 0x0B65, .category = .unassigned }, + .{ .from = 0x0B66, .to = 0x0B6F, .category = .pvalid }, + .{ .from = 0x0B72, .to = 0x0B77, .category = .disallowed }, + .{ .from = 0x0B78, .to = 0x0B81, .category = .unassigned }, + .{ .from = 0x0B82, .to = 0x0B83, .category = .pvalid }, + .{ .from = 0x0B85, .to = 0x0B8A, .category = .pvalid }, + .{ .from = 0x0B8B, .to = 0x0B8D, .category = .unassigned }, + .{ .from = 0x0B8E, .to = 0x0B90, .category = .pvalid }, + .{ .from = 0x0B92, .to = 0x0B95, .category = .pvalid }, + .{ .from = 0x0B96, .to = 0x0B98, .category = .unassigned }, + .{ .from = 0x0B99, .to = 0x0B9A, .category = .pvalid }, + .{ .from = 0x0B9E, .to = 0x0B9F, .category = .pvalid }, + .{ .from = 0x0BA0, .to = 0x0BA2, .category = .unassigned }, + .{ .from = 0x0BA3, .to = 0x0BA4, .category = .pvalid }, + .{ .from = 0x0BA5, .to = 0x0BA7, .category = .unassigned }, + .{ .from = 0x0BA8, .to = 0x0BAA, .category = .pvalid }, + .{ .from = 0x0BAB, .to = 0x0BAD, .category = .unassigned }, + .{ .from = 0x0BAE, .to = 0x0BB9, .category = .pvalid }, + .{ .from = 0x0BBA, .to = 0x0BBD, .category = .unassigned }, + .{ .from = 0x0BBE, .to = 0x0BC2, .category = .pvalid }, + .{ .from = 0x0BC3, .to = 0x0BC5, .category = .unassigned }, + .{ .from = 0x0BC6, .to = 0x0BC8, .category = .pvalid }, + .{ .from = 0x0BCA, .to = 0x0BCD, .category = .pvalid }, + .{ .from = 0x0BCE, .to = 0x0BCF, .category = .unassigned }, + .{ .from = 0x0BD1, .to = 0x0BD6, .category = .unassigned }, + .{ .from = 0x0BD8, .to = 0x0BE5, .category = .unassigned }, + .{ .from = 0x0BE6, .to = 0x0BEF, .category = .pvalid }, + .{ .from = 0x0BF0, .to = 0x0BFA, .category = .disallowed }, + .{ .from = 0x0BFB, .to = 0x0BFF, .category = .unassigned }, + .{ .from = 0x0C00, .to = 0x0C0C, .category = .pvalid }, + .{ .from = 0x0C0E, .to = 0x0C10, .category = .pvalid }, + .{ .from = 0x0C12, .to = 0x0C28, .category = .pvalid }, + .{ .from = 0x0C2A, .to = 0x0C39, .category = .pvalid }, + .{ .from = 0x0C3A, .to = 0x0C3B, .category = .unassigned }, + .{ .from = 0x0C3C, .to = 0x0C44, .category = .pvalid }, + .{ .from = 0x0C46, .to = 0x0C48, .category = .pvalid }, + .{ .from = 0x0C4A, .to = 0x0C4D, .category = .pvalid }, + .{ .from = 0x0C4E, .to = 0x0C54, .category = .unassigned }, + .{ .from = 0x0C55, .to = 0x0C56, .category = .pvalid }, + .{ .from = 0x0C58, .to = 0x0C5A, .category = .pvalid }, + .{ .from = 0x0C5C, .to = 0x0C5D, .category = .pvalid }, + .{ .from = 0x0C5E, .to = 0x0C5F, .category = .unassigned }, + .{ .from = 0x0C60, .to = 0x0C63, .category = .pvalid }, + .{ .from = 0x0C64, .to = 0x0C65, .category = .unassigned }, + .{ .from = 0x0C66, .to = 0x0C6F, .category = .pvalid }, + .{ .from = 0x0C70, .to = 0x0C76, .category = .unassigned }, + .{ .from = 0x0C77, .to = 0x0C7F, .category = .disallowed }, + .{ .from = 0x0C80, .to = 0x0C83, .category = .pvalid }, + .{ .from = 0x0C85, .to = 0x0C8C, .category = .pvalid }, + .{ .from = 0x0C8E, .to = 0x0C90, .category = .pvalid }, + .{ .from = 0x0C92, .to = 0x0CA8, .category = .pvalid }, + .{ .from = 0x0CAA, .to = 0x0CB3, .category = .pvalid }, + .{ .from = 0x0CB5, .to = 0x0CB9, .category = .pvalid }, + .{ .from = 0x0CBA, .to = 0x0CBB, .category = .unassigned }, + .{ .from = 0x0CBC, .to = 0x0CC4, .category = .pvalid }, + .{ .from = 0x0CC6, .to = 0x0CC8, .category = .pvalid }, + .{ .from = 0x0CCA, .to = 0x0CCD, .category = .pvalid }, + .{ .from = 0x0CCE, .to = 0x0CD4, .category = .unassigned }, + .{ .from = 0x0CD5, .to = 0x0CD6, .category = .pvalid }, + .{ .from = 0x0CD7, .to = 0x0CDB, .category = .unassigned }, + .{ .from = 0x0CDC, .to = 0x0CDE, .category = .pvalid }, + .{ .from = 0x0CE0, .to = 0x0CE3, .category = .pvalid }, + .{ .from = 0x0CE4, .to = 0x0CE5, .category = .unassigned }, + .{ .from = 0x0CE6, .to = 0x0CEF, .category = .pvalid }, + .{ .from = 0x0CF1, .to = 0x0CF3, .category = .pvalid }, + .{ .from = 0x0CF4, .to = 0x0CFF, .category = .unassigned }, + .{ .from = 0x0D00, .to = 0x0D0C, .category = .pvalid }, + .{ .from = 0x0D0E, .to = 0x0D10, .category = .pvalid }, + .{ .from = 0x0D12, .to = 0x0D44, .category = .pvalid }, + .{ .from = 0x0D46, .to = 0x0D48, .category = .pvalid }, + .{ .from = 0x0D4A, .to = 0x0D4E, .category = .pvalid }, + .{ .from = 0x0D50, .to = 0x0D53, .category = .unassigned }, + .{ .from = 0x0D54, .to = 0x0D57, .category = .pvalid }, + .{ .from = 0x0D58, .to = 0x0D5E, .category = .disallowed }, + .{ .from = 0x0D5F, .to = 0x0D63, .category = .pvalid }, + .{ .from = 0x0D64, .to = 0x0D65, .category = .unassigned }, + .{ .from = 0x0D66, .to = 0x0D6F, .category = .pvalid }, + .{ .from = 0x0D70, .to = 0x0D79, .category = .disallowed }, + .{ .from = 0x0D7A, .to = 0x0D7F, .category = .pvalid }, + .{ .from = 0x0D81, .to = 0x0D83, .category = .pvalid }, + .{ .from = 0x0D85, .to = 0x0D96, .category = .pvalid }, + .{ .from = 0x0D97, .to = 0x0D99, .category = .unassigned }, + .{ .from = 0x0D9A, .to = 0x0DB1, .category = .pvalid }, + .{ .from = 0x0DB3, .to = 0x0DBB, .category = .pvalid }, + .{ .from = 0x0DBE, .to = 0x0DBF, .category = .unassigned }, + .{ .from = 0x0DC0, .to = 0x0DC6, .category = .pvalid }, + .{ .from = 0x0DC7, .to = 0x0DC9, .category = .unassigned }, + .{ .from = 0x0DCB, .to = 0x0DCE, .category = .unassigned }, + .{ .from = 0x0DCF, .to = 0x0DD4, .category = .pvalid }, + .{ .from = 0x0DD8, .to = 0x0DDF, .category = .pvalid }, + .{ .from = 0x0DE0, .to = 0x0DE5, .category = .unassigned }, + .{ .from = 0x0DE6, .to = 0x0DEF, .category = .pvalid }, + .{ .from = 0x0DF0, .to = 0x0DF1, .category = .unassigned }, + .{ .from = 0x0DF2, .to = 0x0DF3, .category = .pvalid }, + .{ .from = 0x0DF5, .to = 0x0E00, .category = .unassigned }, + .{ .from = 0x0E01, .to = 0x0E32, .category = .pvalid }, + .{ .from = 0x0E34, .to = 0x0E3A, .category = .pvalid }, + .{ .from = 0x0E3B, .to = 0x0E3E, .category = .unassigned }, + .{ .from = 0x0E40, .to = 0x0E4E, .category = .pvalid }, + .{ .from = 0x0E50, .to = 0x0E59, .category = .pvalid }, + .{ .from = 0x0E5A, .to = 0x0E5B, .category = .disallowed }, + .{ .from = 0x0E5C, .to = 0x0E80, .category = .unassigned }, + .{ .from = 0x0E81, .to = 0x0E82, .category = .pvalid }, + .{ .from = 0x0E86, .to = 0x0E8A, .category = .pvalid }, + .{ .from = 0x0E8C, .to = 0x0EA3, .category = .pvalid }, + .{ .from = 0x0EA7, .to = 0x0EB2, .category = .pvalid }, + .{ .from = 0x0EB4, .to = 0x0EBD, .category = .pvalid }, + .{ .from = 0x0EBE, .to = 0x0EBF, .category = .unassigned }, + .{ .from = 0x0EC0, .to = 0x0EC4, .category = .pvalid }, + .{ .from = 0x0EC8, .to = 0x0ECE, .category = .pvalid }, + .{ .from = 0x0ED0, .to = 0x0ED9, .category = .pvalid }, + .{ .from = 0x0EDA, .to = 0x0EDB, .category = .unassigned }, + .{ .from = 0x0EDC, .to = 0x0EDD, .category = .disallowed }, + .{ .from = 0x0EDE, .to = 0x0EDF, .category = .pvalid }, + .{ .from = 0x0EE0, .to = 0x0EFF, .category = .unassigned }, + .{ .from = 0x0F01, .to = 0x0F0A, .category = .disallowed }, + .{ .from = 0x0F0C, .to = 0x0F17, .category = .disallowed }, + .{ .from = 0x0F18, .to = 0x0F19, .category = .pvalid }, + .{ .from = 0x0F1A, .to = 0x0F1F, .category = .disallowed }, + .{ .from = 0x0F20, .to = 0x0F29, .category = .pvalid }, + .{ .from = 0x0F2A, .to = 0x0F34, .category = .disallowed }, + .{ .from = 0x0F3A, .to = 0x0F3D, .category = .disallowed }, + .{ .from = 0x0F3E, .to = 0x0F42, .category = .pvalid }, + .{ .from = 0x0F44, .to = 0x0F47, .category = .pvalid }, + .{ .from = 0x0F49, .to = 0x0F4C, .category = .pvalid }, + .{ .from = 0x0F4E, .to = 0x0F51, .category = .pvalid }, + .{ .from = 0x0F53, .to = 0x0F56, .category = .pvalid }, + .{ .from = 0x0F58, .to = 0x0F5B, .category = .pvalid }, + .{ .from = 0x0F5D, .to = 0x0F68, .category = .pvalid }, + .{ .from = 0x0F6A, .to = 0x0F6C, .category = .pvalid }, + .{ .from = 0x0F6D, .to = 0x0F70, .category = .unassigned }, + .{ .from = 0x0F71, .to = 0x0F72, .category = .pvalid }, + .{ .from = 0x0F75, .to = 0x0F79, .category = .disallowed }, + .{ .from = 0x0F7A, .to = 0x0F80, .category = .pvalid }, + .{ .from = 0x0F82, .to = 0x0F84, .category = .pvalid }, + .{ .from = 0x0F86, .to = 0x0F92, .category = .pvalid }, + .{ .from = 0x0F94, .to = 0x0F97, .category = .pvalid }, + .{ .from = 0x0F99, .to = 0x0F9C, .category = .pvalid }, + .{ .from = 0x0F9E, .to = 0x0FA1, .category = .pvalid }, + .{ .from = 0x0FA3, .to = 0x0FA6, .category = .pvalid }, + .{ .from = 0x0FA8, .to = 0x0FAB, .category = .pvalid }, + .{ .from = 0x0FAD, .to = 0x0FB8, .category = .pvalid }, + .{ .from = 0x0FBA, .to = 0x0FBC, .category = .pvalid }, + .{ .from = 0x0FBE, .to = 0x0FC5, .category = .disallowed }, + .{ .from = 0x0FC7, .to = 0x0FCC, .category = .disallowed }, + .{ .from = 0x0FCE, .to = 0x0FDA, .category = .disallowed }, + .{ .from = 0x0FDB, .to = 0x0FFF, .category = .unassigned }, + .{ .from = 0x1000, .to = 0x1049, .category = .pvalid }, + .{ .from = 0x104A, .to = 0x104F, .category = .disallowed }, + .{ .from = 0x1050, .to = 0x109D, .category = .pvalid }, + .{ .from = 0x109E, .to = 0x10C5, .category = .disallowed }, + .{ .from = 0x10C8, .to = 0x10CC, .category = .unassigned }, + .{ .from = 0x10CE, .to = 0x10CF, .category = .unassigned }, + .{ .from = 0x10D0, .to = 0x10FA, .category = .pvalid }, + .{ .from = 0x10FB, .to = 0x10FC, .category = .disallowed }, + .{ .from = 0x10FD, .to = 0x10FF, .category = .pvalid }, + .{ .from = 0x1100, .to = 0x11FF, .category = .disallowed }, + .{ .from = 0x1200, .to = 0x1248, .category = .pvalid }, + .{ .from = 0x124A, .to = 0x124D, .category = .pvalid }, + .{ .from = 0x124E, .to = 0x124F, .category = .unassigned }, + .{ .from = 0x1250, .to = 0x1256, .category = .pvalid }, + .{ .from = 0x125A, .to = 0x125D, .category = .pvalid }, + .{ .from = 0x125E, .to = 0x125F, .category = .unassigned }, + .{ .from = 0x1260, .to = 0x1288, .category = .pvalid }, + .{ .from = 0x128A, .to = 0x128D, .category = .pvalid }, + .{ .from = 0x128E, .to = 0x128F, .category = .unassigned }, + .{ .from = 0x1290, .to = 0x12B0, .category = .pvalid }, + .{ .from = 0x12B2, .to = 0x12B5, .category = .pvalid }, + .{ .from = 0x12B6, .to = 0x12B7, .category = .unassigned }, + .{ .from = 0x12B8, .to = 0x12BE, .category = .pvalid }, + .{ .from = 0x12C2, .to = 0x12C5, .category = .pvalid }, + .{ .from = 0x12C6, .to = 0x12C7, .category = .unassigned }, + .{ .from = 0x12C8, .to = 0x12D6, .category = .pvalid }, + .{ .from = 0x12D8, .to = 0x1310, .category = .pvalid }, + .{ .from = 0x1312, .to = 0x1315, .category = .pvalid }, + .{ .from = 0x1316, .to = 0x1317, .category = .unassigned }, + .{ .from = 0x1318, .to = 0x135A, .category = .pvalid }, + .{ .from = 0x135B, .to = 0x135C, .category = .unassigned }, + .{ .from = 0x135D, .to = 0x135F, .category = .pvalid }, + .{ .from = 0x1360, .to = 0x137C, .category = .disallowed }, + .{ .from = 0x137D, .to = 0x137F, .category = .unassigned }, + .{ .from = 0x1380, .to = 0x138F, .category = .pvalid }, + .{ .from = 0x1390, .to = 0x1399, .category = .disallowed }, + .{ .from = 0x139A, .to = 0x139F, .category = .unassigned }, + .{ .from = 0x13A0, .to = 0x13F5, .category = .pvalid }, + .{ .from = 0x13F6, .to = 0x13F7, .category = .unassigned }, + .{ .from = 0x13F8, .to = 0x13FD, .category = .disallowed }, + .{ .from = 0x13FE, .to = 0x13FF, .category = .unassigned }, + .{ .from = 0x1401, .to = 0x166C, .category = .pvalid }, + .{ .from = 0x166D, .to = 0x166E, .category = .disallowed }, + .{ .from = 0x166F, .to = 0x167F, .category = .pvalid }, + .{ .from = 0x1681, .to = 0x169A, .category = .pvalid }, + .{ .from = 0x169B, .to = 0x169C, .category = .disallowed }, + .{ .from = 0x169D, .to = 0x169F, .category = .unassigned }, + .{ .from = 0x16A0, .to = 0x16EA, .category = .pvalid }, + .{ .from = 0x16EB, .to = 0x16F0, .category = .disallowed }, + .{ .from = 0x16F1, .to = 0x16F8, .category = .pvalid }, + .{ .from = 0x16F9, .to = 0x16FF, .category = .unassigned }, + .{ .from = 0x1700, .to = 0x1715, .category = .pvalid }, + .{ .from = 0x1716, .to = 0x171E, .category = .unassigned }, + .{ .from = 0x171F, .to = 0x1734, .category = .pvalid }, + .{ .from = 0x1735, .to = 0x1736, .category = .disallowed }, + .{ .from = 0x1737, .to = 0x173F, .category = .unassigned }, + .{ .from = 0x1740, .to = 0x1753, .category = .pvalid }, + .{ .from = 0x1754, .to = 0x175F, .category = .unassigned }, + .{ .from = 0x1760, .to = 0x176C, .category = .pvalid }, + .{ .from = 0x176E, .to = 0x1770, .category = .pvalid }, + .{ .from = 0x1772, .to = 0x1773, .category = .pvalid }, + .{ .from = 0x1774, .to = 0x177F, .category = .unassigned }, + .{ .from = 0x1780, .to = 0x17B3, .category = .pvalid }, + .{ .from = 0x17B4, .to = 0x17B5, .category = .disallowed }, + .{ .from = 0x17B6, .to = 0x17D3, .category = .pvalid }, + .{ .from = 0x17D4, .to = 0x17D6, .category = .disallowed }, + .{ .from = 0x17D8, .to = 0x17DB, .category = .disallowed }, + .{ .from = 0x17DC, .to = 0x17DD, .category = .pvalid }, + .{ .from = 0x17DE, .to = 0x17DF, .category = .unassigned }, + .{ .from = 0x17E0, .to = 0x17E9, .category = .pvalid }, + .{ .from = 0x17EA, .to = 0x17EF, .category = .unassigned }, + .{ .from = 0x17F0, .to = 0x17F9, .category = .disallowed }, + .{ .from = 0x17FA, .to = 0x17FF, .category = .unassigned }, + .{ .from = 0x1800, .to = 0x180F, .category = .disallowed }, + .{ .from = 0x1810, .to = 0x1819, .category = .pvalid }, + .{ .from = 0x181A, .to = 0x181F, .category = .unassigned }, + .{ .from = 0x1820, .to = 0x1878, .category = .pvalid }, + .{ .from = 0x1879, .to = 0x187F, .category = .unassigned }, + .{ .from = 0x1880, .to = 0x18AA, .category = .pvalid }, + .{ .from = 0x18AB, .to = 0x18AF, .category = .unassigned }, + .{ .from = 0x18B0, .to = 0x18F5, .category = .pvalid }, + .{ .from = 0x18F6, .to = 0x18FF, .category = .unassigned }, + .{ .from = 0x1900, .to = 0x191E, .category = .pvalid }, + .{ .from = 0x1920, .to = 0x192B, .category = .pvalid }, + .{ .from = 0x192C, .to = 0x192F, .category = .unassigned }, + .{ .from = 0x1930, .to = 0x193B, .category = .pvalid }, + .{ .from = 0x193C, .to = 0x193F, .category = .unassigned }, + .{ .from = 0x1941, .to = 0x1943, .category = .unassigned }, + .{ .from = 0x1944, .to = 0x1945, .category = .disallowed }, + .{ .from = 0x1946, .to = 0x196D, .category = .pvalid }, + .{ .from = 0x196E, .to = 0x196F, .category = .unassigned }, + .{ .from = 0x1970, .to = 0x1974, .category = .pvalid }, + .{ .from = 0x1975, .to = 0x197F, .category = .unassigned }, + .{ .from = 0x1980, .to = 0x19AB, .category = .pvalid }, + .{ .from = 0x19AC, .to = 0x19AF, .category = .unassigned }, + .{ .from = 0x19B0, .to = 0x19C9, .category = .pvalid }, + .{ .from = 0x19CA, .to = 0x19CF, .category = .unassigned }, + .{ .from = 0x19D0, .to = 0x19D9, .category = .pvalid }, + .{ .from = 0x19DB, .to = 0x19DD, .category = .unassigned }, + .{ .from = 0x19DE, .to = 0x19FF, .category = .disallowed }, + .{ .from = 0x1A00, .to = 0x1A1B, .category = .pvalid }, + .{ .from = 0x1A1C, .to = 0x1A1D, .category = .unassigned }, + .{ .from = 0x1A1E, .to = 0x1A1F, .category = .disallowed }, + .{ .from = 0x1A20, .to = 0x1A5E, .category = .pvalid }, + .{ .from = 0x1A60, .to = 0x1A7C, .category = .pvalid }, + .{ .from = 0x1A7D, .to = 0x1A7E, .category = .unassigned }, + .{ .from = 0x1A7F, .to = 0x1A89, .category = .pvalid }, + .{ .from = 0x1A8A, .to = 0x1A8F, .category = .unassigned }, + .{ .from = 0x1A90, .to = 0x1A99, .category = .pvalid }, + .{ .from = 0x1A9A, .to = 0x1A9F, .category = .unassigned }, + .{ .from = 0x1AA0, .to = 0x1AA6, .category = .disallowed }, + .{ .from = 0x1AA8, .to = 0x1AAD, .category = .disallowed }, + .{ .from = 0x1AAE, .to = 0x1AAF, .category = .unassigned }, + .{ .from = 0x1AB0, .to = 0x1ABD, .category = .pvalid }, + .{ .from = 0x1ABF, .to = 0x1ADD, .category = .pvalid }, + .{ .from = 0x1ADE, .to = 0x1ADF, .category = .unassigned }, + .{ .from = 0x1AE0, .to = 0x1AEB, .category = .pvalid }, + .{ .from = 0x1AEC, .to = 0x1AFF, .category = .unassigned }, + .{ .from = 0x1B00, .to = 0x1B4C, .category = .pvalid }, + .{ .from = 0x1B4E, .to = 0x1B4F, .category = .disallowed }, + .{ .from = 0x1B50, .to = 0x1B59, .category = .pvalid }, + .{ .from = 0x1B5A, .to = 0x1B6A, .category = .disallowed }, + .{ .from = 0x1B6B, .to = 0x1B73, .category = .pvalid }, + .{ .from = 0x1B74, .to = 0x1B7F, .category = .disallowed }, + .{ .from = 0x1B80, .to = 0x1BF3, .category = .pvalid }, + .{ .from = 0x1BF4, .to = 0x1BFB, .category = .unassigned }, + .{ .from = 0x1BFC, .to = 0x1BFF, .category = .disallowed }, + .{ .from = 0x1C00, .to = 0x1C37, .category = .pvalid }, + .{ .from = 0x1C38, .to = 0x1C3A, .category = .unassigned }, + .{ .from = 0x1C3B, .to = 0x1C3F, .category = .disallowed }, + .{ .from = 0x1C40, .to = 0x1C49, .category = .pvalid }, + .{ .from = 0x1C4A, .to = 0x1C4C, .category = .unassigned }, + .{ .from = 0x1C4D, .to = 0x1C7D, .category = .pvalid }, + .{ .from = 0x1C7E, .to = 0x1C89, .category = .disallowed }, + .{ .from = 0x1C8B, .to = 0x1C8F, .category = .unassigned }, + .{ .from = 0x1C90, .to = 0x1CBA, .category = .disallowed }, + .{ .from = 0x1CBB, .to = 0x1CBC, .category = .unassigned }, + .{ .from = 0x1CBD, .to = 0x1CC7, .category = .disallowed }, + .{ .from = 0x1CC8, .to = 0x1CCF, .category = .unassigned }, + .{ .from = 0x1CD0, .to = 0x1CD2, .category = .pvalid }, + .{ .from = 0x1CD4, .to = 0x1CFA, .category = .pvalid }, + .{ .from = 0x1CFB, .to = 0x1CFF, .category = .unassigned }, + .{ .from = 0x1D00, .to = 0x1D2B, .category = .pvalid }, + .{ .from = 0x1D2C, .to = 0x1D2E, .category = .disallowed }, + .{ .from = 0x1D30, .to = 0x1D3A, .category = .disallowed }, + .{ .from = 0x1D3C, .to = 0x1D4D, .category = .disallowed }, + .{ .from = 0x1D4F, .to = 0x1D6A, .category = .disallowed }, + .{ .from = 0x1D6B, .to = 0x1D77, .category = .pvalid }, + .{ .from = 0x1D79, .to = 0x1D9A, .category = .pvalid }, + .{ .from = 0x1D9B, .to = 0x1DBF, .category = .disallowed }, + .{ .from = 0x1DC0, .to = 0x1DFF, .category = .pvalid }, + .{ .from = 0x1E95, .to = 0x1E99, .category = .pvalid }, + .{ .from = 0x1E9A, .to = 0x1E9B, .category = .disallowed }, + .{ .from = 0x1E9C, .to = 0x1E9D, .category = .pvalid }, + .{ .from = 0x1EFF, .to = 0x1F07, .category = .pvalid }, + .{ .from = 0x1F08, .to = 0x1F0F, .category = .disallowed }, + .{ .from = 0x1F10, .to = 0x1F15, .category = .pvalid }, + .{ .from = 0x1F16, .to = 0x1F17, .category = .unassigned }, + .{ .from = 0x1F18, .to = 0x1F1D, .category = .disallowed }, + .{ .from = 0x1F1E, .to = 0x1F1F, .category = .unassigned }, + .{ .from = 0x1F20, .to = 0x1F27, .category = .pvalid }, + .{ .from = 0x1F28, .to = 0x1F2F, .category = .disallowed }, + .{ .from = 0x1F30, .to = 0x1F37, .category = .pvalid }, + .{ .from = 0x1F38, .to = 0x1F3F, .category = .disallowed }, + .{ .from = 0x1F40, .to = 0x1F45, .category = .pvalid }, + .{ .from = 0x1F46, .to = 0x1F47, .category = .unassigned }, + .{ .from = 0x1F48, .to = 0x1F4D, .category = .disallowed }, + .{ .from = 0x1F4E, .to = 0x1F4F, .category = .unassigned }, + .{ .from = 0x1F50, .to = 0x1F57, .category = .pvalid }, + .{ .from = 0x1F60, .to = 0x1F67, .category = .pvalid }, + .{ .from = 0x1F68, .to = 0x1F6F, .category = .disallowed }, + .{ .from = 0x1F7E, .to = 0x1F7F, .category = .unassigned }, + .{ .from = 0x1F80, .to = 0x1FAF, .category = .disallowed }, + .{ .from = 0x1FB0, .to = 0x1FB1, .category = .pvalid }, + .{ .from = 0x1FB2, .to = 0x1FB4, .category = .disallowed }, + .{ .from = 0x1FB7, .to = 0x1FC4, .category = .disallowed }, + .{ .from = 0x1FC7, .to = 0x1FCF, .category = .disallowed }, + .{ .from = 0x1FD0, .to = 0x1FD2, .category = .pvalid }, + .{ .from = 0x1FD4, .to = 0x1FD5, .category = .unassigned }, + .{ .from = 0x1FD6, .to = 0x1FD7, .category = .pvalid }, + .{ .from = 0x1FD8, .to = 0x1FDB, .category = .disallowed }, + .{ .from = 0x1FDD, .to = 0x1FDF, .category = .disallowed }, + .{ .from = 0x1FE0, .to = 0x1FE2, .category = .pvalid }, + .{ .from = 0x1FE4, .to = 0x1FE7, .category = .pvalid }, + .{ .from = 0x1FE8, .to = 0x1FEF, .category = .disallowed }, + .{ .from = 0x1FF0, .to = 0x1FF1, .category = .unassigned }, + .{ .from = 0x1FF2, .to = 0x1FF4, .category = .disallowed }, + .{ .from = 0x1FF7, .to = 0x1FFE, .category = .disallowed }, + .{ .from = 0x2000, .to = 0x200B, .category = .disallowed }, + .{ .from = 0x200C, .to = 0x200D, .category = .contextj }, + .{ .from = 0x200E, .to = 0x2064, .category = .disallowed }, + .{ .from = 0x2066, .to = 0x2071, .category = .disallowed }, + .{ .from = 0x2072, .to = 0x2073, .category = .unassigned }, + .{ .from = 0x2074, .to = 0x208E, .category = .disallowed }, + .{ .from = 0x2090, .to = 0x209C, .category = .disallowed }, + .{ .from = 0x209D, .to = 0x209F, .category = .unassigned }, + .{ .from = 0x20A0, .to = 0x20C1, .category = .disallowed }, + .{ .from = 0x20C2, .to = 0x20CF, .category = .unassigned }, + .{ .from = 0x20D0, .to = 0x20F0, .category = .disallowed }, + .{ .from = 0x20F1, .to = 0x20FF, .category = .unassigned }, + .{ .from = 0x2100, .to = 0x214D, .category = .disallowed }, + .{ .from = 0x214F, .to = 0x2183, .category = .disallowed }, + .{ .from = 0x2185, .to = 0x218B, .category = .disallowed }, + .{ .from = 0x218C, .to = 0x218F, .category = .unassigned }, + .{ .from = 0x2190, .to = 0x2429, .category = .disallowed }, + .{ .from = 0x242A, .to = 0x243F, .category = .unassigned }, + .{ .from = 0x2440, .to = 0x244A, .category = .disallowed }, + .{ .from = 0x244B, .to = 0x245F, .category = .unassigned }, + .{ .from = 0x2460, .to = 0x2B73, .category = .disallowed }, + .{ .from = 0x2B74, .to = 0x2B75, .category = .unassigned }, + .{ .from = 0x2B76, .to = 0x2C2F, .category = .disallowed }, + .{ .from = 0x2C30, .to = 0x2C5F, .category = .pvalid }, + .{ .from = 0x2C62, .to = 0x2C64, .category = .disallowed }, + .{ .from = 0x2C65, .to = 0x2C66, .category = .pvalid }, + .{ .from = 0x2C6D, .to = 0x2C70, .category = .disallowed }, + .{ .from = 0x2C73, .to = 0x2C74, .category = .pvalid }, + .{ .from = 0x2C76, .to = 0x2C7B, .category = .pvalid }, + .{ .from = 0x2C7C, .to = 0x2C80, .category = .disallowed }, + .{ .from = 0x2CE3, .to = 0x2CE4, .category = .pvalid }, + .{ .from = 0x2CE5, .to = 0x2CEB, .category = .disallowed }, + .{ .from = 0x2CEE, .to = 0x2CF1, .category = .pvalid }, + .{ .from = 0x2CF4, .to = 0x2CF8, .category = .unassigned }, + .{ .from = 0x2CF9, .to = 0x2CFF, .category = .disallowed }, + .{ .from = 0x2D00, .to = 0x2D25, .category = .pvalid }, + .{ .from = 0x2D28, .to = 0x2D2C, .category = .unassigned }, + .{ .from = 0x2D2E, .to = 0x2D2F, .category = .unassigned }, + .{ .from = 0x2D30, .to = 0x2D67, .category = .pvalid }, + .{ .from = 0x2D68, .to = 0x2D6E, .category = .unassigned }, + .{ .from = 0x2D6F, .to = 0x2D70, .category = .disallowed }, + .{ .from = 0x2D71, .to = 0x2D7E, .category = .unassigned }, + .{ .from = 0x2D7F, .to = 0x2D96, .category = .pvalid }, + .{ .from = 0x2D97, .to = 0x2D9F, .category = .unassigned }, + .{ .from = 0x2DA0, .to = 0x2DA6, .category = .pvalid }, + .{ .from = 0x2DA8, .to = 0x2DAE, .category = .pvalid }, + .{ .from = 0x2DB0, .to = 0x2DB6, .category = .pvalid }, + .{ .from = 0x2DB8, .to = 0x2DBE, .category = .pvalid }, + .{ .from = 0x2DC0, .to = 0x2DC6, .category = .pvalid }, + .{ .from = 0x2DC8, .to = 0x2DCE, .category = .pvalid }, + .{ .from = 0x2DD0, .to = 0x2DD6, .category = .pvalid }, + .{ .from = 0x2DD8, .to = 0x2DDE, .category = .pvalid }, + .{ .from = 0x2DE0, .to = 0x2DFF, .category = .pvalid }, + .{ .from = 0x2E00, .to = 0x2E2E, .category = .disallowed }, + .{ .from = 0x2E30, .to = 0x2E5D, .category = .disallowed }, + .{ .from = 0x2E5E, .to = 0x2E7F, .category = .unassigned }, + .{ .from = 0x2E80, .to = 0x2E99, .category = .disallowed }, + .{ .from = 0x2E9B, .to = 0x2EF3, .category = .disallowed }, + .{ .from = 0x2EF4, .to = 0x2EFF, .category = .unassigned }, + .{ .from = 0x2F00, .to = 0x2FD5, .category = .disallowed }, + .{ .from = 0x2FD6, .to = 0x2FEF, .category = .unassigned }, + .{ .from = 0x2FF0, .to = 0x3004, .category = .disallowed }, + .{ .from = 0x3005, .to = 0x3007, .category = .pvalid }, + .{ .from = 0x3008, .to = 0x3029, .category = .disallowed }, + .{ .from = 0x302A, .to = 0x302D, .category = .pvalid }, + .{ .from = 0x302E, .to = 0x303B, .category = .disallowed }, + .{ .from = 0x303D, .to = 0x303F, .category = .disallowed }, + .{ .from = 0x3041, .to = 0x3096, .category = .pvalid }, + .{ .from = 0x3097, .to = 0x3098, .category = .unassigned }, + .{ .from = 0x3099, .to = 0x309A, .category = .pvalid }, + .{ .from = 0x309B, .to = 0x309C, .category = .disallowed }, + .{ .from = 0x309D, .to = 0x309E, .category = .pvalid }, + .{ .from = 0x309F, .to = 0x30A0, .category = .disallowed }, + .{ .from = 0x30A1, .to = 0x30FA, .category = .pvalid }, + .{ .from = 0x30FC, .to = 0x30FE, .category = .pvalid }, + .{ .from = 0x3100, .to = 0x3104, .category = .unassigned }, + .{ .from = 0x3105, .to = 0x312F, .category = .pvalid }, + .{ .from = 0x3131, .to = 0x318E, .category = .disallowed }, + .{ .from = 0x3190, .to = 0x319F, .category = .disallowed }, + .{ .from = 0x31A0, .to = 0x31BF, .category = .pvalid }, + .{ .from = 0x31C0, .to = 0x31E5, .category = .disallowed }, + .{ .from = 0x31E6, .to = 0x31EE, .category = .unassigned }, + .{ .from = 0x31F0, .to = 0x31FF, .category = .pvalid }, + .{ .from = 0x3200, .to = 0x321E, .category = .disallowed }, + .{ .from = 0x3220, .to = 0x33FF, .category = .disallowed }, + .{ .from = 0x3400, .to = 0x4DBF, .category = .pvalid }, + .{ .from = 0x4DC0, .to = 0x4DFF, .category = .disallowed }, + .{ .from = 0x4E00, .to = 0xA48C, .category = .pvalid }, + .{ .from = 0xA48D, .to = 0xA48F, .category = .unassigned }, + .{ .from = 0xA490, .to = 0xA4C6, .category = .disallowed }, + .{ .from = 0xA4C7, .to = 0xA4CF, .category = .unassigned }, + .{ .from = 0xA4D0, .to = 0xA4FD, .category = .pvalid }, + .{ .from = 0xA4FE, .to = 0xA4FF, .category = .disallowed }, + .{ .from = 0xA500, .to = 0xA60C, .category = .pvalid }, + .{ .from = 0xA60D, .to = 0xA60F, .category = .disallowed }, + .{ .from = 0xA610, .to = 0xA62B, .category = .pvalid }, + .{ .from = 0xA62C, .to = 0xA63F, .category = .unassigned }, + .{ .from = 0xA66D, .to = 0xA66F, .category = .pvalid }, + .{ .from = 0xA670, .to = 0xA673, .category = .disallowed }, + .{ .from = 0xA674, .to = 0xA67D, .category = .pvalid }, + .{ .from = 0xA69C, .to = 0xA69D, .category = .disallowed }, + .{ .from = 0xA69E, .to = 0xA6E5, .category = .pvalid }, + .{ .from = 0xA6E6, .to = 0xA6EF, .category = .disallowed }, + .{ .from = 0xA6F0, .to = 0xA6F1, .category = .pvalid }, + .{ .from = 0xA6F2, .to = 0xA6F7, .category = .disallowed }, + .{ .from = 0xA6F8, .to = 0xA6FF, .category = .unassigned }, + .{ .from = 0xA700, .to = 0xA716, .category = .disallowed }, + .{ .from = 0xA717, .to = 0xA71F, .category = .pvalid }, + .{ .from = 0xA720, .to = 0xA722, .category = .disallowed }, + .{ .from = 0xA72F, .to = 0xA731, .category = .pvalid }, + .{ .from = 0xA771, .to = 0xA778, .category = .pvalid }, + .{ .from = 0xA77D, .to = 0xA77E, .category = .disallowed }, + .{ .from = 0xA787, .to = 0xA788, .category = .pvalid }, + .{ .from = 0xA789, .to = 0xA78B, .category = .disallowed }, + .{ .from = 0xA78E, .to = 0xA78F, .category = .pvalid }, + .{ .from = 0xA793, .to = 0xA795, .category = .pvalid }, + .{ .from = 0xA7AA, .to = 0xA7AE, .category = .disallowed }, + .{ .from = 0xA7B0, .to = 0xA7B4, .category = .disallowed }, + .{ .from = 0xA7C4, .to = 0xA7C7, .category = .disallowed }, + .{ .from = 0xA7CB, .to = 0xA7CC, .category = .disallowed }, + .{ .from = 0xA7DD, .to = 0xA7F0, .category = .unassigned }, + .{ .from = 0xA7F1, .to = 0xA7F5, .category = .disallowed }, + .{ .from = 0xA7F6, .to = 0xA7F7, .category = .pvalid }, + .{ .from = 0xA7F8, .to = 0xA7F9, .category = .disallowed }, + .{ .from = 0xA7FA, .to = 0xA827, .category = .pvalid }, + .{ .from = 0xA828, .to = 0xA82B, .category = .disallowed }, + .{ .from = 0xA82D, .to = 0xA82F, .category = .unassigned }, + .{ .from = 0xA830, .to = 0xA839, .category = .disallowed }, + .{ .from = 0xA83A, .to = 0xA83F, .category = .unassigned }, + .{ .from = 0xA840, .to = 0xA873, .category = .pvalid }, + .{ .from = 0xA874, .to = 0xA877, .category = .disallowed }, + .{ .from = 0xA878, .to = 0xA87F, .category = .unassigned }, + .{ .from = 0xA880, .to = 0xA8C5, .category = .pvalid }, + .{ .from = 0xA8C6, .to = 0xA8CD, .category = .unassigned }, + .{ .from = 0xA8CE, .to = 0xA8CF, .category = .disallowed }, + .{ .from = 0xA8D0, .to = 0xA8D9, .category = .pvalid }, + .{ .from = 0xA8DA, .to = 0xA8DF, .category = .unassigned }, + .{ .from = 0xA8E0, .to = 0xA8F7, .category = .pvalid }, + .{ .from = 0xA8F8, .to = 0xA8FA, .category = .disallowed }, + .{ .from = 0xA8FD, .to = 0xA92D, .category = .pvalid }, + .{ .from = 0xA92E, .to = 0xA92F, .category = .disallowed }, + .{ .from = 0xA930, .to = 0xA953, .category = .pvalid }, + .{ .from = 0xA954, .to = 0xA95E, .category = .unassigned }, + .{ .from = 0xA95F, .to = 0xA97C, .category = .disallowed }, + .{ .from = 0xA97D, .to = 0xA97F, .category = .unassigned }, + .{ .from = 0xA980, .to = 0xA9C0, .category = .pvalid }, + .{ .from = 0xA9C1, .to = 0xA9CD, .category = .disallowed }, + .{ .from = 0xA9CF, .to = 0xA9D9, .category = .pvalid }, + .{ .from = 0xA9DA, .to = 0xA9DD, .category = .unassigned }, + .{ .from = 0xA9DE, .to = 0xA9DF, .category = .disallowed }, + .{ .from = 0xA9E0, .to = 0xA9FE, .category = .pvalid }, + .{ .from = 0xAA00, .to = 0xAA36, .category = .pvalid }, + .{ .from = 0xAA37, .to = 0xAA3F, .category = .unassigned }, + .{ .from = 0xAA40, .to = 0xAA4D, .category = .pvalid }, + .{ .from = 0xAA4E, .to = 0xAA4F, .category = .unassigned }, + .{ .from = 0xAA50, .to = 0xAA59, .category = .pvalid }, + .{ .from = 0xAA5A, .to = 0xAA5B, .category = .unassigned }, + .{ .from = 0xAA5C, .to = 0xAA5F, .category = .disallowed }, + .{ .from = 0xAA60, .to = 0xAA76, .category = .pvalid }, + .{ .from = 0xAA77, .to = 0xAA79, .category = .disallowed }, + .{ .from = 0xAA7A, .to = 0xAAC2, .category = .pvalid }, + .{ .from = 0xAAC3, .to = 0xAADA, .category = .unassigned }, + .{ .from = 0xAADB, .to = 0xAADD, .category = .pvalid }, + .{ .from = 0xAADE, .to = 0xAADF, .category = .disallowed }, + .{ .from = 0xAAE0, .to = 0xAAEF, .category = .pvalid }, + .{ .from = 0xAAF0, .to = 0xAAF1, .category = .disallowed }, + .{ .from = 0xAAF2, .to = 0xAAF6, .category = .pvalid }, + .{ .from = 0xAAF7, .to = 0xAB00, .category = .unassigned }, + .{ .from = 0xAB01, .to = 0xAB06, .category = .pvalid }, + .{ .from = 0xAB07, .to = 0xAB08, .category = .unassigned }, + .{ .from = 0xAB09, .to = 0xAB0E, .category = .pvalid }, + .{ .from = 0xAB0F, .to = 0xAB10, .category = .unassigned }, + .{ .from = 0xAB11, .to = 0xAB16, .category = .pvalid }, + .{ .from = 0xAB17, .to = 0xAB1F, .category = .unassigned }, + .{ .from = 0xAB20, .to = 0xAB26, .category = .pvalid }, + .{ .from = 0xAB28, .to = 0xAB2E, .category = .pvalid }, + .{ .from = 0xAB30, .to = 0xAB5A, .category = .pvalid }, + .{ .from = 0xAB5B, .to = 0xAB5F, .category = .disallowed }, + .{ .from = 0xAB60, .to = 0xAB68, .category = .pvalid }, + .{ .from = 0xAB69, .to = 0xAB6B, .category = .disallowed }, + .{ .from = 0xAB6C, .to = 0xAB6F, .category = .unassigned }, + .{ .from = 0xAB70, .to = 0xABBF, .category = .disallowed }, + .{ .from = 0xABC0, .to = 0xABEA, .category = .pvalid }, + .{ .from = 0xABEC, .to = 0xABED, .category = .pvalid }, + .{ .from = 0xABEE, .to = 0xABEF, .category = .unassigned }, + .{ .from = 0xABF0, .to = 0xABF9, .category = .pvalid }, + .{ .from = 0xABFA, .to = 0xABFF, .category = .unassigned }, + .{ .from = 0xAC00, .to = 0xD7A3, .category = .pvalid }, + .{ .from = 0xD7A4, .to = 0xD7AF, .category = .unassigned }, + .{ .from = 0xD7B0, .to = 0xD7C6, .category = .disallowed }, + .{ .from = 0xD7C7, .to = 0xD7CA, .category = .unassigned }, + .{ .from = 0xD7CB, .to = 0xD7FB, .category = .disallowed }, + .{ .from = 0xD7FC, .to = 0xD7FF, .category = .unassigned }, + .{ .from = 0xD800, .to = 0xFA0D, .category = .disallowed }, + .{ .from = 0xFA0E, .to = 0xFA0F, .category = .pvalid }, + .{ .from = 0xFA13, .to = 0xFA14, .category = .pvalid }, + .{ .from = 0xFA15, .to = 0xFA1E, .category = .disallowed }, + .{ .from = 0xFA23, .to = 0xFA24, .category = .pvalid }, + .{ .from = 0xFA25, .to = 0xFA26, .category = .disallowed }, + .{ .from = 0xFA27, .to = 0xFA29, .category = .pvalid }, + .{ .from = 0xFA2A, .to = 0xFA6D, .category = .disallowed }, + .{ .from = 0xFA6E, .to = 0xFA6F, .category = .unassigned }, + .{ .from = 0xFA70, .to = 0xFAD9, .category = .disallowed }, + .{ .from = 0xFADA, .to = 0xFAFF, .category = .unassigned }, + .{ .from = 0xFB00, .to = 0xFB06, .category = .disallowed }, + .{ .from = 0xFB07, .to = 0xFB12, .category = .unassigned }, + .{ .from = 0xFB13, .to = 0xFB17, .category = .disallowed }, + .{ .from = 0xFB18, .to = 0xFB1C, .category = .unassigned }, + .{ .from = 0xFB1F, .to = 0xFB36, .category = .disallowed }, + .{ .from = 0xFB38, .to = 0xFB3C, .category = .disallowed }, + .{ .from = 0xFB40, .to = 0xFB41, .category = .disallowed }, + .{ .from = 0xFB43, .to = 0xFB44, .category = .disallowed }, + .{ .from = 0xFB46, .to = 0xFE19, .category = .disallowed }, + .{ .from = 0xFE1A, .to = 0xFE1F, .category = .unassigned }, + .{ .from = 0xFE20, .to = 0xFE2F, .category = .pvalid }, + .{ .from = 0xFE30, .to = 0xFE52, .category = .disallowed }, + .{ .from = 0xFE54, .to = 0xFE66, .category = .disallowed }, + .{ .from = 0xFE68, .to = 0xFE6B, .category = .disallowed }, + .{ .from = 0xFE6C, .to = 0xFE6F, .category = .unassigned }, + .{ .from = 0xFE70, .to = 0xFE72, .category = .disallowed }, + .{ .from = 0xFE76, .to = 0xFEFC, .category = .disallowed }, + .{ .from = 0xFEFD, .to = 0xFEFE, .category = .unassigned }, + .{ .from = 0xFF01, .to = 0xFFBE, .category = .disallowed }, + .{ .from = 0xFFBF, .to = 0xFFC1, .category = .unassigned }, + .{ .from = 0xFFC2, .to = 0xFFC7, .category = .disallowed }, + .{ .from = 0xFFC8, .to = 0xFFC9, .category = .unassigned }, + .{ .from = 0xFFCA, .to = 0xFFCF, .category = .disallowed }, + .{ .from = 0xFFD0, .to = 0xFFD1, .category = .unassigned }, + .{ .from = 0xFFD2, .to = 0xFFD7, .category = .disallowed }, + .{ .from = 0xFFD8, .to = 0xFFD9, .category = .unassigned }, + .{ .from = 0xFFDA, .to = 0xFFDC, .category = .disallowed }, + .{ .from = 0xFFDD, .to = 0xFFDF, .category = .unassigned }, + .{ .from = 0xFFE0, .to = 0xFFE6, .category = .disallowed }, + .{ .from = 0xFFE8, .to = 0xFFEE, .category = .disallowed }, + .{ .from = 0xFFEF, .to = 0xFFF8, .category = .unassigned }, + .{ .from = 0xFFF9, .to = 0xFFFF, .category = .disallowed }, + .{ .from = 0x10000, .to = 0x1000B, .category = .pvalid }, + .{ .from = 0x1000D, .to = 0x10026, .category = .pvalid }, + .{ .from = 0x10028, .to = 0x1003A, .category = .pvalid }, + .{ .from = 0x1003C, .to = 0x1003D, .category = .pvalid }, + .{ .from = 0x1003F, .to = 0x1004D, .category = .pvalid }, + .{ .from = 0x1004E, .to = 0x1004F, .category = .unassigned }, + .{ .from = 0x10050, .to = 0x1005D, .category = .pvalid }, + .{ .from = 0x1005E, .to = 0x1007F, .category = .unassigned }, + .{ .from = 0x10080, .to = 0x100FA, .category = .pvalid }, + .{ .from = 0x100FB, .to = 0x100FF, .category = .unassigned }, + .{ .from = 0x10100, .to = 0x10102, .category = .disallowed }, + .{ .from = 0x10103, .to = 0x10106, .category = .unassigned }, + .{ .from = 0x10107, .to = 0x10133, .category = .disallowed }, + .{ .from = 0x10134, .to = 0x10136, .category = .unassigned }, + .{ .from = 0x10137, .to = 0x1018E, .category = .disallowed }, + .{ .from = 0x10190, .to = 0x1019C, .category = .disallowed }, + .{ .from = 0x1019D, .to = 0x1019F, .category = .unassigned }, + .{ .from = 0x101A1, .to = 0x101CF, .category = .unassigned }, + .{ .from = 0x101D0, .to = 0x101FC, .category = .disallowed }, + .{ .from = 0x101FE, .to = 0x1027F, .category = .unassigned }, + .{ .from = 0x10280, .to = 0x1029C, .category = .pvalid }, + .{ .from = 0x1029D, .to = 0x1029F, .category = .unassigned }, + .{ .from = 0x102A0, .to = 0x102D0, .category = .pvalid }, + .{ .from = 0x102D1, .to = 0x102DF, .category = .unassigned }, + .{ .from = 0x102E1, .to = 0x102FB, .category = .disallowed }, + .{ .from = 0x102FC, .to = 0x102FF, .category = .unassigned }, + .{ .from = 0x10300, .to = 0x1031F, .category = .pvalid }, + .{ .from = 0x10320, .to = 0x10323, .category = .disallowed }, + .{ .from = 0x10324, .to = 0x1032C, .category = .unassigned }, + .{ .from = 0x1032D, .to = 0x10340, .category = .pvalid }, + .{ .from = 0x10342, .to = 0x10349, .category = .pvalid }, + .{ .from = 0x1034B, .to = 0x1034F, .category = .unassigned }, + .{ .from = 0x10350, .to = 0x1037A, .category = .pvalid }, + .{ .from = 0x1037B, .to = 0x1037F, .category = .unassigned }, + .{ .from = 0x10380, .to = 0x1039D, .category = .pvalid }, + .{ .from = 0x103A0, .to = 0x103C3, .category = .pvalid }, + .{ .from = 0x103C4, .to = 0x103C7, .category = .unassigned }, + .{ .from = 0x103C8, .to = 0x103CF, .category = .pvalid }, + .{ .from = 0x103D0, .to = 0x103D5, .category = .disallowed }, + .{ .from = 0x103D6, .to = 0x103FF, .category = .unassigned }, + .{ .from = 0x10400, .to = 0x10427, .category = .disallowed }, + .{ .from = 0x10428, .to = 0x1049D, .category = .pvalid }, + .{ .from = 0x1049E, .to = 0x1049F, .category = .unassigned }, + .{ .from = 0x104A0, .to = 0x104A9, .category = .pvalid }, + .{ .from = 0x104AA, .to = 0x104AF, .category = .unassigned }, + .{ .from = 0x104B0, .to = 0x104D3, .category = .disallowed }, + .{ .from = 0x104D4, .to = 0x104D7, .category = .unassigned }, + .{ .from = 0x104D8, .to = 0x104FB, .category = .pvalid }, + .{ .from = 0x104FC, .to = 0x104FF, .category = .unassigned }, + .{ .from = 0x10500, .to = 0x10527, .category = .pvalid }, + .{ .from = 0x10528, .to = 0x1052F, .category = .unassigned }, + .{ .from = 0x10530, .to = 0x10563, .category = .pvalid }, + .{ .from = 0x10564, .to = 0x1056E, .category = .unassigned }, + .{ .from = 0x1056F, .to = 0x1057A, .category = .disallowed }, + .{ .from = 0x1057C, .to = 0x1058A, .category = .disallowed }, + .{ .from = 0x1058C, .to = 0x10592, .category = .disallowed }, + .{ .from = 0x10594, .to = 0x10595, .category = .disallowed }, + .{ .from = 0x10597, .to = 0x105A1, .category = .pvalid }, + .{ .from = 0x105A3, .to = 0x105B1, .category = .pvalid }, + .{ .from = 0x105B3, .to = 0x105B9, .category = .pvalid }, + .{ .from = 0x105BB, .to = 0x105BC, .category = .pvalid }, + .{ .from = 0x105BD, .to = 0x105BF, .category = .unassigned }, + .{ .from = 0x105C0, .to = 0x105F3, .category = .pvalid }, + .{ .from = 0x105F4, .to = 0x105FF, .category = .unassigned }, + .{ .from = 0x10600, .to = 0x10736, .category = .pvalid }, + .{ .from = 0x10737, .to = 0x1073F, .category = .unassigned }, + .{ .from = 0x10740, .to = 0x10755, .category = .pvalid }, + .{ .from = 0x10756, .to = 0x1075F, .category = .unassigned }, + .{ .from = 0x10760, .to = 0x10767, .category = .pvalid }, + .{ .from = 0x10768, .to = 0x1077F, .category = .unassigned }, + .{ .from = 0x10781, .to = 0x10785, .category = .disallowed }, + .{ .from = 0x10787, .to = 0x107B0, .category = .disallowed }, + .{ .from = 0x107B2, .to = 0x107BA, .category = .disallowed }, + .{ .from = 0x107BB, .to = 0x107FF, .category = .unassigned }, + .{ .from = 0x10800, .to = 0x10805, .category = .pvalid }, + .{ .from = 0x10806, .to = 0x10807, .category = .unassigned }, + .{ .from = 0x1080A, .to = 0x10835, .category = .pvalid }, + .{ .from = 0x10837, .to = 0x10838, .category = .pvalid }, + .{ .from = 0x10839, .to = 0x1083B, .category = .unassigned }, + .{ .from = 0x1083D, .to = 0x1083E, .category = .unassigned }, + .{ .from = 0x1083F, .to = 0x10855, .category = .pvalid }, + .{ .from = 0x10857, .to = 0x1085F, .category = .disallowed }, + .{ .from = 0x10860, .to = 0x10876, .category = .pvalid }, + .{ .from = 0x10877, .to = 0x1087F, .category = .disallowed }, + .{ .from = 0x10880, .to = 0x1089E, .category = .pvalid }, + .{ .from = 0x1089F, .to = 0x108A6, .category = .unassigned }, + .{ .from = 0x108A7, .to = 0x108AF, .category = .disallowed }, + .{ .from = 0x108B0, .to = 0x108DF, .category = .unassigned }, + .{ .from = 0x108E0, .to = 0x108F2, .category = .pvalid }, + .{ .from = 0x108F4, .to = 0x108F5, .category = .pvalid }, + .{ .from = 0x108F6, .to = 0x108FA, .category = .unassigned }, + .{ .from = 0x108FB, .to = 0x108FF, .category = .disallowed }, + .{ .from = 0x10900, .to = 0x10915, .category = .pvalid }, + .{ .from = 0x10916, .to = 0x1091B, .category = .disallowed }, + .{ .from = 0x1091C, .to = 0x1091E, .category = .unassigned }, + .{ .from = 0x10920, .to = 0x10939, .category = .pvalid }, + .{ .from = 0x1093A, .to = 0x1093E, .category = .unassigned }, + .{ .from = 0x10940, .to = 0x10959, .category = .pvalid }, + .{ .from = 0x1095A, .to = 0x1097F, .category = .unassigned }, + .{ .from = 0x10980, .to = 0x109B7, .category = .pvalid }, + .{ .from = 0x109B8, .to = 0x109BB, .category = .unassigned }, + .{ .from = 0x109BC, .to = 0x109BD, .category = .disallowed }, + .{ .from = 0x109BE, .to = 0x109BF, .category = .pvalid }, + .{ .from = 0x109C0, .to = 0x109CF, .category = .disallowed }, + .{ .from = 0x109D0, .to = 0x109D1, .category = .unassigned }, + .{ .from = 0x109D2, .to = 0x109FF, .category = .disallowed }, + .{ .from = 0x10A00, .to = 0x10A03, .category = .pvalid }, + .{ .from = 0x10A05, .to = 0x10A06, .category = .pvalid }, + .{ .from = 0x10A07, .to = 0x10A0B, .category = .unassigned }, + .{ .from = 0x10A0C, .to = 0x10A13, .category = .pvalid }, + .{ .from = 0x10A15, .to = 0x10A17, .category = .pvalid }, + .{ .from = 0x10A19, .to = 0x10A35, .category = .pvalid }, + .{ .from = 0x10A36, .to = 0x10A37, .category = .unassigned }, + .{ .from = 0x10A38, .to = 0x10A3A, .category = .pvalid }, + .{ .from = 0x10A3B, .to = 0x10A3E, .category = .unassigned }, + .{ .from = 0x10A40, .to = 0x10A48, .category = .disallowed }, + .{ .from = 0x10A49, .to = 0x10A4F, .category = .unassigned }, + .{ .from = 0x10A50, .to = 0x10A58, .category = .disallowed }, + .{ .from = 0x10A59, .to = 0x10A5F, .category = .unassigned }, + .{ .from = 0x10A60, .to = 0x10A7C, .category = .pvalid }, + .{ .from = 0x10A7D, .to = 0x10A7F, .category = .disallowed }, + .{ .from = 0x10A80, .to = 0x10A9C, .category = .pvalid }, + .{ .from = 0x10A9D, .to = 0x10A9F, .category = .disallowed }, + .{ .from = 0x10AA0, .to = 0x10ABF, .category = .unassigned }, + .{ .from = 0x10AC0, .to = 0x10AC7, .category = .pvalid }, + .{ .from = 0x10AC9, .to = 0x10AE6, .category = .pvalid }, + .{ .from = 0x10AE7, .to = 0x10AEA, .category = .unassigned }, + .{ .from = 0x10AEB, .to = 0x10AF6, .category = .disallowed }, + .{ .from = 0x10AF7, .to = 0x10AFF, .category = .unassigned }, + .{ .from = 0x10B00, .to = 0x10B35, .category = .pvalid }, + .{ .from = 0x10B36, .to = 0x10B38, .category = .unassigned }, + .{ .from = 0x10B39, .to = 0x10B3F, .category = .disallowed }, + .{ .from = 0x10B40, .to = 0x10B55, .category = .pvalid }, + .{ .from = 0x10B56, .to = 0x10B57, .category = .unassigned }, + .{ .from = 0x10B58, .to = 0x10B5F, .category = .disallowed }, + .{ .from = 0x10B60, .to = 0x10B72, .category = .pvalid }, + .{ .from = 0x10B73, .to = 0x10B77, .category = .unassigned }, + .{ .from = 0x10B78, .to = 0x10B7F, .category = .disallowed }, + .{ .from = 0x10B80, .to = 0x10B91, .category = .pvalid }, + .{ .from = 0x10B92, .to = 0x10B98, .category = .unassigned }, + .{ .from = 0x10B99, .to = 0x10B9C, .category = .disallowed }, + .{ .from = 0x10B9D, .to = 0x10BA8, .category = .unassigned }, + .{ .from = 0x10BA9, .to = 0x10BAF, .category = .disallowed }, + .{ .from = 0x10BB0, .to = 0x10BFF, .category = .unassigned }, + .{ .from = 0x10C00, .to = 0x10C48, .category = .pvalid }, + .{ .from = 0x10C49, .to = 0x10C7F, .category = .unassigned }, + .{ .from = 0x10C80, .to = 0x10CB2, .category = .disallowed }, + .{ .from = 0x10CB3, .to = 0x10CBF, .category = .unassigned }, + .{ .from = 0x10CC0, .to = 0x10CF2, .category = .pvalid }, + .{ .from = 0x10CF3, .to = 0x10CF9, .category = .unassigned }, + .{ .from = 0x10CFA, .to = 0x10CFF, .category = .disallowed }, + .{ .from = 0x10D00, .to = 0x10D27, .category = .pvalid }, + .{ .from = 0x10D28, .to = 0x10D2F, .category = .unassigned }, + .{ .from = 0x10D30, .to = 0x10D39, .category = .pvalid }, + .{ .from = 0x10D3A, .to = 0x10D3F, .category = .unassigned }, + .{ .from = 0x10D40, .to = 0x10D4F, .category = .pvalid }, + .{ .from = 0x10D50, .to = 0x10D65, .category = .disallowed }, + .{ .from = 0x10D66, .to = 0x10D68, .category = .unassigned }, + .{ .from = 0x10D69, .to = 0x10D6D, .category = .pvalid }, + .{ .from = 0x10D6F, .to = 0x10D85, .category = .pvalid }, + .{ .from = 0x10D86, .to = 0x10D8D, .category = .unassigned }, + .{ .from = 0x10D8E, .to = 0x10D8F, .category = .disallowed }, + .{ .from = 0x10D90, .to = 0x10E5F, .category = .unassigned }, + .{ .from = 0x10E60, .to = 0x10E7E, .category = .disallowed }, + .{ .from = 0x10E80, .to = 0x10EA9, .category = .pvalid }, + .{ .from = 0x10EAB, .to = 0x10EAC, .category = .pvalid }, + .{ .from = 0x10EAE, .to = 0x10EAF, .category = .unassigned }, + .{ .from = 0x10EB0, .to = 0x10EB1, .category = .pvalid }, + .{ .from = 0x10EB2, .to = 0x10EC1, .category = .unassigned }, + .{ .from = 0x10EC2, .to = 0x10EC7, .category = .pvalid }, + .{ .from = 0x10EC8, .to = 0x10ECF, .category = .unassigned }, + .{ .from = 0x10ED0, .to = 0x10ED8, .category = .disallowed }, + .{ .from = 0x10ED9, .to = 0x10EF9, .category = .unassigned }, + .{ .from = 0x10EFA, .to = 0x10F1C, .category = .pvalid }, + .{ .from = 0x10F1D, .to = 0x10F26, .category = .disallowed }, + .{ .from = 0x10F28, .to = 0x10F2F, .category = .unassigned }, + .{ .from = 0x10F30, .to = 0x10F50, .category = .pvalid }, + .{ .from = 0x10F51, .to = 0x10F59, .category = .disallowed }, + .{ .from = 0x10F5A, .to = 0x10F6F, .category = .unassigned }, + .{ .from = 0x10F70, .to = 0x10F85, .category = .pvalid }, + .{ .from = 0x10F86, .to = 0x10F89, .category = .disallowed }, + .{ .from = 0x10F8A, .to = 0x10FAF, .category = .unassigned }, + .{ .from = 0x10FB0, .to = 0x10FC4, .category = .pvalid }, + .{ .from = 0x10FC5, .to = 0x10FCB, .category = .disallowed }, + .{ .from = 0x10FCC, .to = 0x10FDF, .category = .unassigned }, + .{ .from = 0x10FE0, .to = 0x10FF6, .category = .pvalid }, + .{ .from = 0x10FF7, .to = 0x10FFF, .category = .unassigned }, + .{ .from = 0x11000, .to = 0x11046, .category = .pvalid }, + .{ .from = 0x11047, .to = 0x1104D, .category = .disallowed }, + .{ .from = 0x1104E, .to = 0x11051, .category = .unassigned }, + .{ .from = 0x11052, .to = 0x11065, .category = .disallowed }, + .{ .from = 0x11066, .to = 0x11075, .category = .pvalid }, + .{ .from = 0x11076, .to = 0x1107E, .category = .unassigned }, + .{ .from = 0x1107F, .to = 0x110BA, .category = .pvalid }, + .{ .from = 0x110BB, .to = 0x110C1, .category = .disallowed }, + .{ .from = 0x110C3, .to = 0x110CC, .category = .unassigned }, + .{ .from = 0x110CE, .to = 0x110CF, .category = .unassigned }, + .{ .from = 0x110D0, .to = 0x110E8, .category = .pvalid }, + .{ .from = 0x110E9, .to = 0x110EF, .category = .unassigned }, + .{ .from = 0x110F0, .to = 0x110F9, .category = .pvalid }, + .{ .from = 0x110FA, .to = 0x110FF, .category = .unassigned }, + .{ .from = 0x11100, .to = 0x11134, .category = .pvalid }, + .{ .from = 0x11136, .to = 0x1113F, .category = .pvalid }, + .{ .from = 0x11140, .to = 0x11143, .category = .disallowed }, + .{ .from = 0x11144, .to = 0x11147, .category = .pvalid }, + .{ .from = 0x11148, .to = 0x1114F, .category = .unassigned }, + .{ .from = 0x11150, .to = 0x11173, .category = .pvalid }, + .{ .from = 0x11174, .to = 0x11175, .category = .disallowed }, + .{ .from = 0x11177, .to = 0x1117F, .category = .unassigned }, + .{ .from = 0x11180, .to = 0x111C4, .category = .pvalid }, + .{ .from = 0x111C5, .to = 0x111C8, .category = .disallowed }, + .{ .from = 0x111C9, .to = 0x111CC, .category = .pvalid }, + .{ .from = 0x111CE, .to = 0x111DA, .category = .pvalid }, + .{ .from = 0x111DD, .to = 0x111DF, .category = .disallowed }, + .{ .from = 0x111E1, .to = 0x111F4, .category = .disallowed }, + .{ .from = 0x111F5, .to = 0x111FF, .category = .unassigned }, + .{ .from = 0x11200, .to = 0x11211, .category = .pvalid }, + .{ .from = 0x11213, .to = 0x11237, .category = .pvalid }, + .{ .from = 0x11238, .to = 0x1123D, .category = .disallowed }, + .{ .from = 0x1123E, .to = 0x11241, .category = .pvalid }, + .{ .from = 0x11242, .to = 0x1127F, .category = .unassigned }, + .{ .from = 0x11280, .to = 0x11286, .category = .pvalid }, + .{ .from = 0x1128A, .to = 0x1128D, .category = .pvalid }, + .{ .from = 0x1128F, .to = 0x1129D, .category = .pvalid }, + .{ .from = 0x1129F, .to = 0x112A8, .category = .pvalid }, + .{ .from = 0x112AA, .to = 0x112AF, .category = .unassigned }, + .{ .from = 0x112B0, .to = 0x112EA, .category = .pvalid }, + .{ .from = 0x112EB, .to = 0x112EF, .category = .unassigned }, + .{ .from = 0x112F0, .to = 0x112F9, .category = .pvalid }, + .{ .from = 0x112FA, .to = 0x112FF, .category = .unassigned }, + .{ .from = 0x11300, .to = 0x11303, .category = .pvalid }, + .{ .from = 0x11305, .to = 0x1130C, .category = .pvalid }, + .{ .from = 0x1130D, .to = 0x1130E, .category = .unassigned }, + .{ .from = 0x1130F, .to = 0x11310, .category = .pvalid }, + .{ .from = 0x11311, .to = 0x11312, .category = .unassigned }, + .{ .from = 0x11313, .to = 0x11328, .category = .pvalid }, + .{ .from = 0x1132A, .to = 0x11330, .category = .pvalid }, + .{ .from = 0x11332, .to = 0x11333, .category = .pvalid }, + .{ .from = 0x11335, .to = 0x11339, .category = .pvalid }, + .{ .from = 0x1133B, .to = 0x11344, .category = .pvalid }, + .{ .from = 0x11345, .to = 0x11346, .category = .unassigned }, + .{ .from = 0x11347, .to = 0x11348, .category = .pvalid }, + .{ .from = 0x11349, .to = 0x1134A, .category = .unassigned }, + .{ .from = 0x1134B, .to = 0x1134D, .category = .pvalid }, + .{ .from = 0x1134E, .to = 0x1134F, .category = .unassigned }, + .{ .from = 0x11351, .to = 0x11356, .category = .unassigned }, + .{ .from = 0x11358, .to = 0x1135C, .category = .unassigned }, + .{ .from = 0x1135D, .to = 0x11363, .category = .pvalid }, + .{ .from = 0x11364, .to = 0x11365, .category = .unassigned }, + .{ .from = 0x11366, .to = 0x1136C, .category = .pvalid }, + .{ .from = 0x1136D, .to = 0x1136F, .category = .unassigned }, + .{ .from = 0x11370, .to = 0x11374, .category = .pvalid }, + .{ .from = 0x11375, .to = 0x1137F, .category = .unassigned }, + .{ .from = 0x11380, .to = 0x11389, .category = .pvalid }, + .{ .from = 0x1138C, .to = 0x1138D, .category = .unassigned }, + .{ .from = 0x11390, .to = 0x113B5, .category = .pvalid }, + .{ .from = 0x113B7, .to = 0x113C0, .category = .pvalid }, + .{ .from = 0x113C3, .to = 0x113C4, .category = .unassigned }, + .{ .from = 0x113C7, .to = 0x113CA, .category = .pvalid }, + .{ .from = 0x113CC, .to = 0x113D3, .category = .pvalid }, + .{ .from = 0x113D4, .to = 0x113D5, .category = .disallowed }, + .{ .from = 0x113D7, .to = 0x113D8, .category = .disallowed }, + .{ .from = 0x113D9, .to = 0x113E0, .category = .unassigned }, + .{ .from = 0x113E1, .to = 0x113E2, .category = .pvalid }, + .{ .from = 0x113E3, .to = 0x113FF, .category = .unassigned }, + .{ .from = 0x11400, .to = 0x1144A, .category = .pvalid }, + .{ .from = 0x1144B, .to = 0x1144F, .category = .disallowed }, + .{ .from = 0x11450, .to = 0x11459, .category = .pvalid }, + .{ .from = 0x1145A, .to = 0x1145B, .category = .disallowed }, + .{ .from = 0x1145E, .to = 0x11461, .category = .pvalid }, + .{ .from = 0x11462, .to = 0x1147F, .category = .unassigned }, + .{ .from = 0x11480, .to = 0x114C5, .category = .pvalid }, + .{ .from = 0x114C8, .to = 0x114CF, .category = .unassigned }, + .{ .from = 0x114D0, .to = 0x114D9, .category = .pvalid }, + .{ .from = 0x114DA, .to = 0x1157F, .category = .unassigned }, + .{ .from = 0x11580, .to = 0x115B5, .category = .pvalid }, + .{ .from = 0x115B6, .to = 0x115B7, .category = .unassigned }, + .{ .from = 0x115B8, .to = 0x115C0, .category = .pvalid }, + .{ .from = 0x115C1, .to = 0x115D7, .category = .disallowed }, + .{ .from = 0x115D8, .to = 0x115DD, .category = .pvalid }, + .{ .from = 0x115DE, .to = 0x115FF, .category = .unassigned }, + .{ .from = 0x11600, .to = 0x11640, .category = .pvalid }, + .{ .from = 0x11641, .to = 0x11643, .category = .disallowed }, + .{ .from = 0x11645, .to = 0x1164F, .category = .unassigned }, + .{ .from = 0x11650, .to = 0x11659, .category = .pvalid }, + .{ .from = 0x1165A, .to = 0x1165F, .category = .unassigned }, + .{ .from = 0x11660, .to = 0x1166C, .category = .disallowed }, + .{ .from = 0x1166D, .to = 0x1167F, .category = .unassigned }, + .{ .from = 0x11680, .to = 0x116B8, .category = .pvalid }, + .{ .from = 0x116BA, .to = 0x116BF, .category = .unassigned }, + .{ .from = 0x116C0, .to = 0x116C9, .category = .pvalid }, + .{ .from = 0x116CA, .to = 0x116CF, .category = .unassigned }, + .{ .from = 0x116D0, .to = 0x116E3, .category = .pvalid }, + .{ .from = 0x116E4, .to = 0x116FF, .category = .unassigned }, + .{ .from = 0x11700, .to = 0x1171A, .category = .pvalid }, + .{ .from = 0x1171B, .to = 0x1171C, .category = .unassigned }, + .{ .from = 0x1171D, .to = 0x1172B, .category = .pvalid }, + .{ .from = 0x1172C, .to = 0x1172F, .category = .unassigned }, + .{ .from = 0x11730, .to = 0x11739, .category = .pvalid }, + .{ .from = 0x1173A, .to = 0x1173F, .category = .disallowed }, + .{ .from = 0x11740, .to = 0x11746, .category = .pvalid }, + .{ .from = 0x11747, .to = 0x117FF, .category = .unassigned }, + .{ .from = 0x11800, .to = 0x1183A, .category = .pvalid }, + .{ .from = 0x1183C, .to = 0x1189F, .category = .unassigned }, + .{ .from = 0x118A0, .to = 0x118BF, .category = .disallowed }, + .{ .from = 0x118C0, .to = 0x118E9, .category = .pvalid }, + .{ .from = 0x118EA, .to = 0x118F2, .category = .disallowed }, + .{ .from = 0x118F3, .to = 0x118FE, .category = .unassigned }, + .{ .from = 0x118FF, .to = 0x11906, .category = .pvalid }, + .{ .from = 0x11907, .to = 0x11908, .category = .unassigned }, + .{ .from = 0x1190A, .to = 0x1190B, .category = .unassigned }, + .{ .from = 0x1190C, .to = 0x11913, .category = .pvalid }, + .{ .from = 0x11915, .to = 0x11916, .category = .pvalid }, + .{ .from = 0x11918, .to = 0x11935, .category = .pvalid }, + .{ .from = 0x11937, .to = 0x11938, .category = .pvalid }, + .{ .from = 0x11939, .to = 0x1193A, .category = .unassigned }, + .{ .from = 0x1193B, .to = 0x11943, .category = .pvalid }, + .{ .from = 0x11944, .to = 0x11946, .category = .disallowed }, + .{ .from = 0x11947, .to = 0x1194F, .category = .unassigned }, + .{ .from = 0x11950, .to = 0x11959, .category = .pvalid }, + .{ .from = 0x1195A, .to = 0x1199F, .category = .unassigned }, + .{ .from = 0x119A0, .to = 0x119A7, .category = .pvalid }, + .{ .from = 0x119A8, .to = 0x119A9, .category = .unassigned }, + .{ .from = 0x119AA, .to = 0x119D7, .category = .pvalid }, + .{ .from = 0x119D8, .to = 0x119D9, .category = .unassigned }, + .{ .from = 0x119DA, .to = 0x119E1, .category = .pvalid }, + .{ .from = 0x119E3, .to = 0x119E4, .category = .pvalid }, + .{ .from = 0x119E5, .to = 0x119FF, .category = .unassigned }, + .{ .from = 0x11A00, .to = 0x11A3E, .category = .pvalid }, + .{ .from = 0x11A3F, .to = 0x11A46, .category = .disallowed }, + .{ .from = 0x11A48, .to = 0x11A4F, .category = .unassigned }, + .{ .from = 0x11A50, .to = 0x11A99, .category = .pvalid }, + .{ .from = 0x11A9A, .to = 0x11A9C, .category = .disallowed }, + .{ .from = 0x11A9E, .to = 0x11AA2, .category = .disallowed }, + .{ .from = 0x11AA3, .to = 0x11AAF, .category = .unassigned }, + .{ .from = 0x11AB0, .to = 0x11AF8, .category = .pvalid }, + .{ .from = 0x11AF9, .to = 0x11AFF, .category = .unassigned }, + .{ .from = 0x11B00, .to = 0x11B09, .category = .disallowed }, + .{ .from = 0x11B0A, .to = 0x11B5F, .category = .unassigned }, + .{ .from = 0x11B60, .to = 0x11B67, .category = .pvalid }, + .{ .from = 0x11B68, .to = 0x11BBF, .category = .unassigned }, + .{ .from = 0x11BC0, .to = 0x11BE0, .category = .pvalid }, + .{ .from = 0x11BE2, .to = 0x11BEF, .category = .unassigned }, + .{ .from = 0x11BF0, .to = 0x11BF9, .category = .pvalid }, + .{ .from = 0x11BFA, .to = 0x11BFF, .category = .unassigned }, + .{ .from = 0x11C00, .to = 0x11C08, .category = .pvalid }, + .{ .from = 0x11C0A, .to = 0x11C36, .category = .pvalid }, + .{ .from = 0x11C38, .to = 0x11C40, .category = .pvalid }, + .{ .from = 0x11C41, .to = 0x11C45, .category = .disallowed }, + .{ .from = 0x11C46, .to = 0x11C4F, .category = .unassigned }, + .{ .from = 0x11C50, .to = 0x11C59, .category = .pvalid }, + .{ .from = 0x11C5A, .to = 0x11C6C, .category = .disallowed }, + .{ .from = 0x11C6D, .to = 0x11C6F, .category = .unassigned }, + .{ .from = 0x11C70, .to = 0x11C71, .category = .disallowed }, + .{ .from = 0x11C72, .to = 0x11C8F, .category = .pvalid }, + .{ .from = 0x11C90, .to = 0x11C91, .category = .unassigned }, + .{ .from = 0x11C92, .to = 0x11CA7, .category = .pvalid }, + .{ .from = 0x11CA9, .to = 0x11CB6, .category = .pvalid }, + .{ .from = 0x11CB7, .to = 0x11CFF, .category = .unassigned }, + .{ .from = 0x11D00, .to = 0x11D06, .category = .pvalid }, + .{ .from = 0x11D08, .to = 0x11D09, .category = .pvalid }, + .{ .from = 0x11D0B, .to = 0x11D36, .category = .pvalid }, + .{ .from = 0x11D37, .to = 0x11D39, .category = .unassigned }, + .{ .from = 0x11D3C, .to = 0x11D3D, .category = .pvalid }, + .{ .from = 0x11D3F, .to = 0x11D47, .category = .pvalid }, + .{ .from = 0x11D48, .to = 0x11D4F, .category = .unassigned }, + .{ .from = 0x11D50, .to = 0x11D59, .category = .pvalid }, + .{ .from = 0x11D5A, .to = 0x11D5F, .category = .unassigned }, + .{ .from = 0x11D60, .to = 0x11D65, .category = .pvalid }, + .{ .from = 0x11D67, .to = 0x11D68, .category = .pvalid }, + .{ .from = 0x11D6A, .to = 0x11D8E, .category = .pvalid }, + .{ .from = 0x11D90, .to = 0x11D91, .category = .pvalid }, + .{ .from = 0x11D93, .to = 0x11D98, .category = .pvalid }, + .{ .from = 0x11D99, .to = 0x11D9F, .category = .unassigned }, + .{ .from = 0x11DA0, .to = 0x11DA9, .category = .pvalid }, + .{ .from = 0x11DAA, .to = 0x11DAF, .category = .unassigned }, + .{ .from = 0x11DB0, .to = 0x11DDB, .category = .pvalid }, + .{ .from = 0x11DDC, .to = 0x11DDF, .category = .unassigned }, + .{ .from = 0x11DE0, .to = 0x11DE9, .category = .pvalid }, + .{ .from = 0x11DEA, .to = 0x11EDF, .category = .unassigned }, + .{ .from = 0x11EE0, .to = 0x11EF6, .category = .pvalid }, + .{ .from = 0x11EF7, .to = 0x11EF8, .category = .disallowed }, + .{ .from = 0x11EF9, .to = 0x11EFF, .category = .unassigned }, + .{ .from = 0x11F00, .to = 0x11F10, .category = .pvalid }, + .{ .from = 0x11F12, .to = 0x11F3A, .category = .pvalid }, + .{ .from = 0x11F3B, .to = 0x11F3D, .category = .unassigned }, + .{ .from = 0x11F3E, .to = 0x11F42, .category = .pvalid }, + .{ .from = 0x11F43, .to = 0x11F4F, .category = .disallowed }, + .{ .from = 0x11F50, .to = 0x11F5A, .category = .pvalid }, + .{ .from = 0x11F5B, .to = 0x11FAF, .category = .unassigned }, + .{ .from = 0x11FB1, .to = 0x11FBF, .category = .unassigned }, + .{ .from = 0x11FC0, .to = 0x11FF1, .category = .disallowed }, + .{ .from = 0x11FF2, .to = 0x11FFE, .category = .unassigned }, + .{ .from = 0x12000, .to = 0x12399, .category = .pvalid }, + .{ .from = 0x1239A, .to = 0x123FF, .category = .unassigned }, + .{ .from = 0x12400, .to = 0x1246E, .category = .disallowed }, + .{ .from = 0x12470, .to = 0x12474, .category = .disallowed }, + .{ .from = 0x12475, .to = 0x1247F, .category = .unassigned }, + .{ .from = 0x12480, .to = 0x12543, .category = .pvalid }, + .{ .from = 0x12544, .to = 0x12F8F, .category = .unassigned }, + .{ .from = 0x12F90, .to = 0x12FF0, .category = .pvalid }, + .{ .from = 0x12FF1, .to = 0x12FF2, .category = .disallowed }, + .{ .from = 0x12FF3, .to = 0x12FFF, .category = .unassigned }, + .{ .from = 0x13000, .to = 0x1342F, .category = .pvalid }, + .{ .from = 0x13430, .to = 0x1343F, .category = .disallowed }, + .{ .from = 0x13440, .to = 0x13455, .category = .pvalid }, + .{ .from = 0x13456, .to = 0x1345F, .category = .unassigned }, + .{ .from = 0x13460, .to = 0x143FA, .category = .pvalid }, + .{ .from = 0x143FB, .to = 0x143FF, .category = .unassigned }, + .{ .from = 0x14400, .to = 0x14646, .category = .pvalid }, + .{ .from = 0x14647, .to = 0x160FF, .category = .unassigned }, + .{ .from = 0x16100, .to = 0x16139, .category = .pvalid }, + .{ .from = 0x1613A, .to = 0x167FF, .category = .unassigned }, + .{ .from = 0x16800, .to = 0x16A38, .category = .pvalid }, + .{ .from = 0x16A39, .to = 0x16A3F, .category = .unassigned }, + .{ .from = 0x16A40, .to = 0x16A5E, .category = .pvalid }, + .{ .from = 0x16A60, .to = 0x16A69, .category = .pvalid }, + .{ .from = 0x16A6A, .to = 0x16A6D, .category = .unassigned }, + .{ .from = 0x16A6E, .to = 0x16A6F, .category = .disallowed }, + .{ .from = 0x16A70, .to = 0x16ABE, .category = .pvalid }, + .{ .from = 0x16AC0, .to = 0x16AC9, .category = .pvalid }, + .{ .from = 0x16ACA, .to = 0x16ACF, .category = .unassigned }, + .{ .from = 0x16AD0, .to = 0x16AED, .category = .pvalid }, + .{ .from = 0x16AEE, .to = 0x16AEF, .category = .unassigned }, + .{ .from = 0x16AF0, .to = 0x16AF4, .category = .pvalid }, + .{ .from = 0x16AF6, .to = 0x16AFF, .category = .unassigned }, + .{ .from = 0x16B00, .to = 0x16B36, .category = .pvalid }, + .{ .from = 0x16B37, .to = 0x16B3F, .category = .disallowed }, + .{ .from = 0x16B40, .to = 0x16B43, .category = .pvalid }, + .{ .from = 0x16B44, .to = 0x16B45, .category = .disallowed }, + .{ .from = 0x16B46, .to = 0x16B4F, .category = .unassigned }, + .{ .from = 0x16B50, .to = 0x16B59, .category = .pvalid }, + .{ .from = 0x16B5B, .to = 0x16B61, .category = .disallowed }, + .{ .from = 0x16B63, .to = 0x16B77, .category = .pvalid }, + .{ .from = 0x16B78, .to = 0x16B7C, .category = .unassigned }, + .{ .from = 0x16B7D, .to = 0x16B8F, .category = .pvalid }, + .{ .from = 0x16B90, .to = 0x16D3F, .category = .unassigned }, + .{ .from = 0x16D40, .to = 0x16D6C, .category = .pvalid }, + .{ .from = 0x16D6D, .to = 0x16D6F, .category = .disallowed }, + .{ .from = 0x16D70, .to = 0x16D79, .category = .pvalid }, + .{ .from = 0x16D7A, .to = 0x16E3F, .category = .unassigned }, + .{ .from = 0x16E40, .to = 0x16E5F, .category = .disallowed }, + .{ .from = 0x16E60, .to = 0x16E7F, .category = .pvalid }, + .{ .from = 0x16E80, .to = 0x16E9A, .category = .disallowed }, + .{ .from = 0x16E9B, .to = 0x16E9F, .category = .unassigned }, + .{ .from = 0x16EA0, .to = 0x16EB8, .category = .disallowed }, + .{ .from = 0x16EB9, .to = 0x16EBA, .category = .unassigned }, + .{ .from = 0x16EBB, .to = 0x16ED3, .category = .pvalid }, + .{ .from = 0x16ED4, .to = 0x16EFF, .category = .unassigned }, + .{ .from = 0x16F00, .to = 0x16F4A, .category = .pvalid }, + .{ .from = 0x16F4B, .to = 0x16F4E, .category = .unassigned }, + .{ .from = 0x16F4F, .to = 0x16F87, .category = .pvalid }, + .{ .from = 0x16F88, .to = 0x16F8E, .category = .unassigned }, + .{ .from = 0x16F8F, .to = 0x16F9F, .category = .pvalid }, + .{ .from = 0x16FA0, .to = 0x16FDF, .category = .unassigned }, + .{ .from = 0x16FE0, .to = 0x16FE1, .category = .pvalid }, + .{ .from = 0x16FE3, .to = 0x16FE4, .category = .pvalid }, + .{ .from = 0x16FE5, .to = 0x16FEF, .category = .unassigned }, + .{ .from = 0x16FF0, .to = 0x16FF3, .category = .pvalid }, + .{ .from = 0x16FF4, .to = 0x16FF6, .category = .disallowed }, + .{ .from = 0x16FF7, .to = 0x16FFF, .category = .unassigned }, + .{ .from = 0x17000, .to = 0x18CD5, .category = .pvalid }, + .{ .from = 0x18CD6, .to = 0x18CFE, .category = .unassigned }, + .{ .from = 0x18CFF, .to = 0x18D1E, .category = .pvalid }, + .{ .from = 0x18D1F, .to = 0x18D7F, .category = .unassigned }, + .{ .from = 0x18D80, .to = 0x18DF2, .category = .pvalid }, + .{ .from = 0x18DF3, .to = 0x1AFEF, .category = .unassigned }, + .{ .from = 0x1AFF0, .to = 0x1AFF3, .category = .pvalid }, + .{ .from = 0x1AFF5, .to = 0x1AFFB, .category = .pvalid }, + .{ .from = 0x1AFFD, .to = 0x1AFFE, .category = .pvalid }, + .{ .from = 0x1B000, .to = 0x1B122, .category = .pvalid }, + .{ .from = 0x1B123, .to = 0x1B131, .category = .unassigned }, + .{ .from = 0x1B133, .to = 0x1B14F, .category = .unassigned }, + .{ .from = 0x1B150, .to = 0x1B152, .category = .pvalid }, + .{ .from = 0x1B153, .to = 0x1B154, .category = .unassigned }, + .{ .from = 0x1B156, .to = 0x1B163, .category = .unassigned }, + .{ .from = 0x1B164, .to = 0x1B167, .category = .pvalid }, + .{ .from = 0x1B168, .to = 0x1B16F, .category = .unassigned }, + .{ .from = 0x1B170, .to = 0x1B2FB, .category = .pvalid }, + .{ .from = 0x1B2FC, .to = 0x1BBFF, .category = .unassigned }, + .{ .from = 0x1BC00, .to = 0x1BC6A, .category = .pvalid }, + .{ .from = 0x1BC6B, .to = 0x1BC6F, .category = .unassigned }, + .{ .from = 0x1BC70, .to = 0x1BC7C, .category = .pvalid }, + .{ .from = 0x1BC7D, .to = 0x1BC7F, .category = .unassigned }, + .{ .from = 0x1BC80, .to = 0x1BC88, .category = .pvalid }, + .{ .from = 0x1BC89, .to = 0x1BC8F, .category = .unassigned }, + .{ .from = 0x1BC90, .to = 0x1BC99, .category = .pvalid }, + .{ .from = 0x1BC9A, .to = 0x1BC9B, .category = .unassigned }, + .{ .from = 0x1BC9D, .to = 0x1BC9E, .category = .pvalid }, + .{ .from = 0x1BC9F, .to = 0x1BCA3, .category = .disallowed }, + .{ .from = 0x1BCA4, .to = 0x1CBFF, .category = .unassigned }, + .{ .from = 0x1CC00, .to = 0x1CCFC, .category = .disallowed }, + .{ .from = 0x1CCFD, .to = 0x1CCFF, .category = .unassigned }, + .{ .from = 0x1CD00, .to = 0x1CEB3, .category = .disallowed }, + .{ .from = 0x1CEB4, .to = 0x1CEB9, .category = .unassigned }, + .{ .from = 0x1CEBA, .to = 0x1CED0, .category = .disallowed }, + .{ .from = 0x1CED1, .to = 0x1CEDF, .category = .unassigned }, + .{ .from = 0x1CEE0, .to = 0x1CEF0, .category = .disallowed }, + .{ .from = 0x1CEF1, .to = 0x1CEFF, .category = .unassigned }, + .{ .from = 0x1CF00, .to = 0x1CF2D, .category = .pvalid }, + .{ .from = 0x1CF2E, .to = 0x1CF2F, .category = .unassigned }, + .{ .from = 0x1CF30, .to = 0x1CF46, .category = .pvalid }, + .{ .from = 0x1CF47, .to = 0x1CF4F, .category = .unassigned }, + .{ .from = 0x1CF50, .to = 0x1CFC3, .category = .disallowed }, + .{ .from = 0x1CFC4, .to = 0x1CFFF, .category = .unassigned }, + .{ .from = 0x1D000, .to = 0x1D0F5, .category = .disallowed }, + .{ .from = 0x1D0F6, .to = 0x1D0FF, .category = .unassigned }, + .{ .from = 0x1D100, .to = 0x1D126, .category = .disallowed }, + .{ .from = 0x1D127, .to = 0x1D128, .category = .unassigned }, + .{ .from = 0x1D129, .to = 0x1D1EA, .category = .disallowed }, + .{ .from = 0x1D1EB, .to = 0x1D1FF, .category = .unassigned }, + .{ .from = 0x1D200, .to = 0x1D245, .category = .disallowed }, + .{ .from = 0x1D246, .to = 0x1D2BF, .category = .unassigned }, + .{ .from = 0x1D2C0, .to = 0x1D2D3, .category = .disallowed }, + .{ .from = 0x1D2D4, .to = 0x1D2DF, .category = .unassigned }, + .{ .from = 0x1D2E0, .to = 0x1D2F3, .category = .disallowed }, + .{ .from = 0x1D2F4, .to = 0x1D2FF, .category = .unassigned }, + .{ .from = 0x1D300, .to = 0x1D356, .category = .disallowed }, + .{ .from = 0x1D357, .to = 0x1D35F, .category = .unassigned }, + .{ .from = 0x1D360, .to = 0x1D378, .category = .disallowed }, + .{ .from = 0x1D379, .to = 0x1D3FF, .category = .unassigned }, + .{ .from = 0x1D400, .to = 0x1D454, .category = .disallowed }, + .{ .from = 0x1D456, .to = 0x1D49C, .category = .disallowed }, + .{ .from = 0x1D49E, .to = 0x1D49F, .category = .disallowed }, + .{ .from = 0x1D4A0, .to = 0x1D4A1, .category = .unassigned }, + .{ .from = 0x1D4A3, .to = 0x1D4A4, .category = .unassigned }, + .{ .from = 0x1D4A5, .to = 0x1D4A6, .category = .disallowed }, + .{ .from = 0x1D4A7, .to = 0x1D4A8, .category = .unassigned }, + .{ .from = 0x1D4A9, .to = 0x1D4AC, .category = .disallowed }, + .{ .from = 0x1D4AE, .to = 0x1D4B9, .category = .disallowed }, + .{ .from = 0x1D4BD, .to = 0x1D4C3, .category = .disallowed }, + .{ .from = 0x1D4C5, .to = 0x1D505, .category = .disallowed }, + .{ .from = 0x1D507, .to = 0x1D50A, .category = .disallowed }, + .{ .from = 0x1D50B, .to = 0x1D50C, .category = .unassigned }, + .{ .from = 0x1D50D, .to = 0x1D514, .category = .disallowed }, + .{ .from = 0x1D516, .to = 0x1D51C, .category = .disallowed }, + .{ .from = 0x1D51E, .to = 0x1D539, .category = .disallowed }, + .{ .from = 0x1D53B, .to = 0x1D53E, .category = .disallowed }, + .{ .from = 0x1D540, .to = 0x1D544, .category = .disallowed }, + .{ .from = 0x1D547, .to = 0x1D549, .category = .unassigned }, + .{ .from = 0x1D54A, .to = 0x1D550, .category = .disallowed }, + .{ .from = 0x1D552, .to = 0x1D6A5, .category = .disallowed }, + .{ .from = 0x1D6A6, .to = 0x1D6A7, .category = .unassigned }, + .{ .from = 0x1D6A8, .to = 0x1D7CB, .category = .disallowed }, + .{ .from = 0x1D7CC, .to = 0x1D7CD, .category = .unassigned }, + .{ .from = 0x1D7CE, .to = 0x1D9FF, .category = .disallowed }, + .{ .from = 0x1DA00, .to = 0x1DA36, .category = .pvalid }, + .{ .from = 0x1DA37, .to = 0x1DA3A, .category = .disallowed }, + .{ .from = 0x1DA3B, .to = 0x1DA6C, .category = .pvalid }, + .{ .from = 0x1DA6D, .to = 0x1DA74, .category = .disallowed }, + .{ .from = 0x1DA76, .to = 0x1DA83, .category = .disallowed }, + .{ .from = 0x1DA85, .to = 0x1DA8B, .category = .disallowed }, + .{ .from = 0x1DA8C, .to = 0x1DA9A, .category = .unassigned }, + .{ .from = 0x1DA9B, .to = 0x1DA9F, .category = .pvalid }, + .{ .from = 0x1DAA1, .to = 0x1DAAF, .category = .pvalid }, + .{ .from = 0x1DAB0, .to = 0x1DEFF, .category = .unassigned }, + .{ .from = 0x1DF00, .to = 0x1DF1E, .category = .pvalid }, + .{ .from = 0x1DF1F, .to = 0x1DF24, .category = .unassigned }, + .{ .from = 0x1DF25, .to = 0x1DF2A, .category = .pvalid }, + .{ .from = 0x1DF2B, .to = 0x1DFFF, .category = .unassigned }, + .{ .from = 0x1E000, .to = 0x1E006, .category = .pvalid }, + .{ .from = 0x1E008, .to = 0x1E018, .category = .pvalid }, + .{ .from = 0x1E019, .to = 0x1E01A, .category = .unassigned }, + .{ .from = 0x1E01B, .to = 0x1E021, .category = .pvalid }, + .{ .from = 0x1E023, .to = 0x1E024, .category = .pvalid }, + .{ .from = 0x1E026, .to = 0x1E02A, .category = .pvalid }, + .{ .from = 0x1E02B, .to = 0x1E02F, .category = .unassigned }, + .{ .from = 0x1E030, .to = 0x1E06D, .category = .disallowed }, + .{ .from = 0x1E06E, .to = 0x1E08E, .category = .unassigned }, + .{ .from = 0x1E090, .to = 0x1E0FF, .category = .unassigned }, + .{ .from = 0x1E100, .to = 0x1E12C, .category = .pvalid }, + .{ .from = 0x1E12D, .to = 0x1E12F, .category = .unassigned }, + .{ .from = 0x1E130, .to = 0x1E13D, .category = .pvalid }, + .{ .from = 0x1E13E, .to = 0x1E13F, .category = .unassigned }, + .{ .from = 0x1E140, .to = 0x1E149, .category = .pvalid }, + .{ .from = 0x1E14A, .to = 0x1E14D, .category = .unassigned }, + .{ .from = 0x1E150, .to = 0x1E28F, .category = .unassigned }, + .{ .from = 0x1E290, .to = 0x1E2AE, .category = .pvalid }, + .{ .from = 0x1E2AF, .to = 0x1E2BF, .category = .unassigned }, + .{ .from = 0x1E2C0, .to = 0x1E2F9, .category = .pvalid }, + .{ .from = 0x1E2FA, .to = 0x1E2FE, .category = .unassigned }, + .{ .from = 0x1E300, .to = 0x1E4CF, .category = .unassigned }, + .{ .from = 0x1E4D0, .to = 0x1E4F9, .category = .pvalid }, + .{ .from = 0x1E4FA, .to = 0x1E5CF, .category = .unassigned }, + .{ .from = 0x1E5D0, .to = 0x1E5FA, .category = .pvalid }, + .{ .from = 0x1E5FB, .to = 0x1E5FE, .category = .unassigned }, + .{ .from = 0x1E600, .to = 0x1E6BF, .category = .unassigned }, + .{ .from = 0x1E6C0, .to = 0x1E6DE, .category = .pvalid }, + .{ .from = 0x1E6E0, .to = 0x1E6F5, .category = .pvalid }, + .{ .from = 0x1E6F6, .to = 0x1E6FD, .category = .unassigned }, + .{ .from = 0x1E6FE, .to = 0x1E6FF, .category = .pvalid }, + .{ .from = 0x1E700, .to = 0x1E7DF, .category = .unassigned }, + .{ .from = 0x1E7E0, .to = 0x1E7E6, .category = .pvalid }, + .{ .from = 0x1E7E8, .to = 0x1E7EB, .category = .pvalid }, + .{ .from = 0x1E7ED, .to = 0x1E7EE, .category = .pvalid }, + .{ .from = 0x1E7F0, .to = 0x1E7FE, .category = .pvalid }, + .{ .from = 0x1E800, .to = 0x1E8C4, .category = .pvalid }, + .{ .from = 0x1E8C5, .to = 0x1E8C6, .category = .unassigned }, + .{ .from = 0x1E8C7, .to = 0x1E8CF, .category = .disallowed }, + .{ .from = 0x1E8D0, .to = 0x1E8D6, .category = .pvalid }, + .{ .from = 0x1E8D7, .to = 0x1E8FF, .category = .unassigned }, + .{ .from = 0x1E900, .to = 0x1E921, .category = .disallowed }, + .{ .from = 0x1E922, .to = 0x1E94B, .category = .pvalid }, + .{ .from = 0x1E94C, .to = 0x1E94F, .category = .unassigned }, + .{ .from = 0x1E950, .to = 0x1E959, .category = .pvalid }, + .{ .from = 0x1E95A, .to = 0x1E95D, .category = .unassigned }, + .{ .from = 0x1E95E, .to = 0x1E95F, .category = .disallowed }, + .{ .from = 0x1E960, .to = 0x1EC70, .category = .unassigned }, + .{ .from = 0x1EC71, .to = 0x1ECB4, .category = .disallowed }, + .{ .from = 0x1ECB5, .to = 0x1ED00, .category = .unassigned }, + .{ .from = 0x1ED01, .to = 0x1ED3D, .category = .disallowed }, + .{ .from = 0x1ED3E, .to = 0x1EDFF, .category = .unassigned }, + .{ .from = 0x1EE00, .to = 0x1EE03, .category = .disallowed }, + .{ .from = 0x1EE05, .to = 0x1EE1F, .category = .disallowed }, + .{ .from = 0x1EE21, .to = 0x1EE22, .category = .disallowed }, + .{ .from = 0x1EE25, .to = 0x1EE26, .category = .unassigned }, + .{ .from = 0x1EE29, .to = 0x1EE32, .category = .disallowed }, + .{ .from = 0x1EE34, .to = 0x1EE37, .category = .disallowed }, + .{ .from = 0x1EE3C, .to = 0x1EE41, .category = .unassigned }, + .{ .from = 0x1EE43, .to = 0x1EE46, .category = .unassigned }, + .{ .from = 0x1EE4D, .to = 0x1EE4F, .category = .disallowed }, + .{ .from = 0x1EE51, .to = 0x1EE52, .category = .disallowed }, + .{ .from = 0x1EE55, .to = 0x1EE56, .category = .unassigned }, + .{ .from = 0x1EE61, .to = 0x1EE62, .category = .disallowed }, + .{ .from = 0x1EE65, .to = 0x1EE66, .category = .unassigned }, + .{ .from = 0x1EE67, .to = 0x1EE6A, .category = .disallowed }, + .{ .from = 0x1EE6C, .to = 0x1EE72, .category = .disallowed }, + .{ .from = 0x1EE74, .to = 0x1EE77, .category = .disallowed }, + .{ .from = 0x1EE79, .to = 0x1EE7C, .category = .disallowed }, + .{ .from = 0x1EE80, .to = 0x1EE89, .category = .disallowed }, + .{ .from = 0x1EE8B, .to = 0x1EE9B, .category = .disallowed }, + .{ .from = 0x1EE9C, .to = 0x1EEA0, .category = .unassigned }, + .{ .from = 0x1EEA1, .to = 0x1EEA3, .category = .disallowed }, + .{ .from = 0x1EEA5, .to = 0x1EEA9, .category = .disallowed }, + .{ .from = 0x1EEAB, .to = 0x1EEBB, .category = .disallowed }, + .{ .from = 0x1EEBC, .to = 0x1EEEF, .category = .unassigned }, + .{ .from = 0x1EEF0, .to = 0x1EEF1, .category = .disallowed }, + .{ .from = 0x1EEF2, .to = 0x1EFFF, .category = .unassigned }, + .{ .from = 0x1F000, .to = 0x1F02B, .category = .disallowed }, + .{ .from = 0x1F02C, .to = 0x1F02F, .category = .unassigned }, + .{ .from = 0x1F030, .to = 0x1F093, .category = .disallowed }, + .{ .from = 0x1F094, .to = 0x1F09F, .category = .unassigned }, + .{ .from = 0x1F0A0, .to = 0x1F0AE, .category = .disallowed }, + .{ .from = 0x1F0AF, .to = 0x1F0B0, .category = .unassigned }, + .{ .from = 0x1F0B1, .to = 0x1F0BF, .category = .disallowed }, + .{ .from = 0x1F0C1, .to = 0x1F0CF, .category = .disallowed }, + .{ .from = 0x1F0D1, .to = 0x1F0F5, .category = .disallowed }, + .{ .from = 0x1F0F6, .to = 0x1F0FF, .category = .unassigned }, + .{ .from = 0x1F100, .to = 0x1F1AD, .category = .disallowed }, + .{ .from = 0x1F1AE, .to = 0x1F1E5, .category = .unassigned }, + .{ .from = 0x1F1E6, .to = 0x1F202, .category = .disallowed }, + .{ .from = 0x1F203, .to = 0x1F20F, .category = .unassigned }, + .{ .from = 0x1F210, .to = 0x1F23B, .category = .disallowed }, + .{ .from = 0x1F23C, .to = 0x1F23F, .category = .unassigned }, + .{ .from = 0x1F240, .to = 0x1F248, .category = .disallowed }, + .{ .from = 0x1F249, .to = 0x1F24F, .category = .unassigned }, + .{ .from = 0x1F250, .to = 0x1F251, .category = .disallowed }, + .{ .from = 0x1F252, .to = 0x1F25F, .category = .unassigned }, + .{ .from = 0x1F260, .to = 0x1F265, .category = .disallowed }, + .{ .from = 0x1F266, .to = 0x1F2FF, .category = .unassigned }, + .{ .from = 0x1F300, .to = 0x1F6D8, .category = .disallowed }, + .{ .from = 0x1F6D9, .to = 0x1F6DB, .category = .unassigned }, + .{ .from = 0x1F6DC, .to = 0x1F6EC, .category = .disallowed }, + .{ .from = 0x1F6ED, .to = 0x1F6EF, .category = .unassigned }, + .{ .from = 0x1F6F0, .to = 0x1F6FC, .category = .disallowed }, + .{ .from = 0x1F6FD, .to = 0x1F6FF, .category = .unassigned }, + .{ .from = 0x1F700, .to = 0x1F7D9, .category = .disallowed }, + .{ .from = 0x1F7DA, .to = 0x1F7DF, .category = .unassigned }, + .{ .from = 0x1F7E0, .to = 0x1F7EB, .category = .disallowed }, + .{ .from = 0x1F7EC, .to = 0x1F7EF, .category = .unassigned }, + .{ .from = 0x1F7F1, .to = 0x1F7FF, .category = .unassigned }, + .{ .from = 0x1F800, .to = 0x1F80B, .category = .disallowed }, + .{ .from = 0x1F80C, .to = 0x1F80F, .category = .unassigned }, + .{ .from = 0x1F810, .to = 0x1F847, .category = .disallowed }, + .{ .from = 0x1F848, .to = 0x1F84F, .category = .unassigned }, + .{ .from = 0x1F850, .to = 0x1F859, .category = .disallowed }, + .{ .from = 0x1F85A, .to = 0x1F85F, .category = .unassigned }, + .{ .from = 0x1F860, .to = 0x1F887, .category = .disallowed }, + .{ .from = 0x1F888, .to = 0x1F88F, .category = .unassigned }, + .{ .from = 0x1F890, .to = 0x1F8AD, .category = .disallowed }, + .{ .from = 0x1F8AE, .to = 0x1F8AF, .category = .unassigned }, + .{ .from = 0x1F8B0, .to = 0x1F8BB, .category = .disallowed }, + .{ .from = 0x1F8BC, .to = 0x1F8BF, .category = .unassigned }, + .{ .from = 0x1F8C0, .to = 0x1F8C1, .category = .disallowed }, + .{ .from = 0x1F8C2, .to = 0x1F8CF, .category = .unassigned }, + .{ .from = 0x1F8D0, .to = 0x1F8D8, .category = .disallowed }, + .{ .from = 0x1F8D9, .to = 0x1F8FF, .category = .unassigned }, + .{ .from = 0x1F900, .to = 0x1FA57, .category = .disallowed }, + .{ .from = 0x1FA58, .to = 0x1FA5F, .category = .unassigned }, + .{ .from = 0x1FA60, .to = 0x1FA6D, .category = .disallowed }, + .{ .from = 0x1FA6E, .to = 0x1FA6F, .category = .unassigned }, + .{ .from = 0x1FA70, .to = 0x1FA7C, .category = .disallowed }, + .{ .from = 0x1FA7D, .to = 0x1FA7F, .category = .unassigned }, + .{ .from = 0x1FA80, .to = 0x1FA8A, .category = .disallowed }, + .{ .from = 0x1FA8B, .to = 0x1FA8D, .category = .unassigned }, + .{ .from = 0x1FA8E, .to = 0x1FAC6, .category = .disallowed }, + .{ .from = 0x1FAC9, .to = 0x1FACC, .category = .unassigned }, + .{ .from = 0x1FACD, .to = 0x1FADC, .category = .disallowed }, + .{ .from = 0x1FADD, .to = 0x1FADE, .category = .unassigned }, + .{ .from = 0x1FADF, .to = 0x1FAEA, .category = .disallowed }, + .{ .from = 0x1FAEB, .to = 0x1FAEE, .category = .unassigned }, + .{ .from = 0x1FAEF, .to = 0x1FAF8, .category = .disallowed }, + .{ .from = 0x1FAF9, .to = 0x1FAFF, .category = .unassigned }, + .{ .from = 0x1FB00, .to = 0x1FB92, .category = .disallowed }, + .{ .from = 0x1FB94, .to = 0x1FBFA, .category = .disallowed }, + .{ .from = 0x1FBFB, .to = 0x1FFFD, .category = .unassigned }, + .{ .from = 0x1FFFE, .to = 0x1FFFF, .category = .disallowed }, + .{ .from = 0x20000, .to = 0x2A6DF, .category = .pvalid }, + .{ .from = 0x2A6E0, .to = 0x2A6FF, .category = .unassigned }, + .{ .from = 0x2A700, .to = 0x2B81D, .category = .pvalid }, + .{ .from = 0x2B81E, .to = 0x2B81F, .category = .unassigned }, + .{ .from = 0x2B820, .to = 0x2CEAD, .category = .pvalid }, + .{ .from = 0x2CEAE, .to = 0x2CEAF, .category = .unassigned }, + .{ .from = 0x2CEB0, .to = 0x2EBE0, .category = .pvalid }, + .{ .from = 0x2EBE1, .to = 0x2EBEF, .category = .unassigned }, + .{ .from = 0x2EBF0, .to = 0x2EE5D, .category = .pvalid }, + .{ .from = 0x2EE5E, .to = 0x2F7FF, .category = .unassigned }, + .{ .from = 0x2F800, .to = 0x2FA1D, .category = .disallowed }, + .{ .from = 0x2FA1E, .to = 0x2FFFD, .category = .unassigned }, + .{ .from = 0x2FFFE, .to = 0x2FFFF, .category = .disallowed }, + .{ .from = 0x30000, .to = 0x3134A, .category = .pvalid }, + .{ .from = 0x3134B, .to = 0x3134F, .category = .unassigned }, + .{ .from = 0x31350, .to = 0x33479, .category = .pvalid }, + .{ .from = 0x3347A, .to = 0x3FFFD, .category = .unassigned }, + .{ .from = 0x3FFFE, .to = 0x3FFFF, .category = .disallowed }, + .{ .from = 0x40000, .to = 0x4FFFD, .category = .unassigned }, + .{ .from = 0x4FFFE, .to = 0x4FFFF, .category = .disallowed }, + .{ .from = 0x50000, .to = 0x5FFFD, .category = .unassigned }, + .{ .from = 0x5FFFE, .to = 0x5FFFF, .category = .disallowed }, + .{ .from = 0x60000, .to = 0x6FFFD, .category = .unassigned }, + .{ .from = 0x6FFFE, .to = 0x6FFFF, .category = .disallowed }, + .{ .from = 0x70000, .to = 0x7FFFD, .category = .unassigned }, + .{ .from = 0x7FFFE, .to = 0x7FFFF, .category = .disallowed }, + .{ .from = 0x80000, .to = 0x8FFFD, .category = .unassigned }, + .{ .from = 0x8FFFE, .to = 0x8FFFF, .category = .disallowed }, + .{ .from = 0x90000, .to = 0x9FFFD, .category = .unassigned }, + .{ .from = 0x9FFFE, .to = 0x9FFFF, .category = .disallowed }, + .{ .from = 0xA0000, .to = 0xAFFFD, .category = .unassigned }, + .{ .from = 0xAFFFE, .to = 0xAFFFF, .category = .disallowed }, + .{ .from = 0xB0000, .to = 0xBFFFD, .category = .unassigned }, + .{ .from = 0xBFFFE, .to = 0xBFFFF, .category = .disallowed }, + .{ .from = 0xC0000, .to = 0xCFFFD, .category = .unassigned }, + .{ .from = 0xCFFFE, .to = 0xCFFFF, .category = .disallowed }, + .{ .from = 0xD0000, .to = 0xDFFFD, .category = .unassigned }, + .{ .from = 0xDFFFE, .to = 0xDFFFF, .category = .disallowed }, + .{ .from = 0xE0002, .to = 0xE001F, .category = .unassigned }, + .{ .from = 0xE0020, .to = 0xE007F, .category = .disallowed }, + .{ .from = 0xE0080, .to = 0xE00FF, .category = .unassigned }, + .{ .from = 0xE0100, .to = 0xE01EF, .category = .disallowed }, + .{ .from = 0xE01F0, .to = 0xEFFFD, .category = .unassigned }, + .{ .from = 0xEFFFE, .to = 0x10FFFF, .category = .disallowed }, +}; diff --git a/LICENSE b/LICENSE new file mode 100644 index 0000000000000000000000000000000000000000..95b48baf6e5e8d43acaa62c76b01bf7b5520b105 --- /dev/null +++ b/LICENSE @@ -0,0 +1,21 @@ +MIT License + +Copyright (c) 2026 Meghan Denny + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. diff --git a/README.md b/README.md new file mode 100644 index 0000000000000000000000000000000000000000..6609089ba8644227daafbe3271edc9c6aaefcd47 --- /dev/null +++ b/README.md @@ -0,0 +1,17 @@ +# zig-unicode-idna + +![loc](https://sloc.xyz/github/nektro/zig-unicode-idna) +[![license](https://img.shields.io/github/license/nektro/zig-unicode-idna.svg)](https://github.com/nektro/zig-unicode-idna/blob/master/LICENSE) +[![nektro @ github sponsors](https://img.shields.io/badge/sponsors-nektro-purple?logo=github)](https://github.com/sponsors/nektro) +[![Zig](https://img.shields.io/badge/Zig-0.14-f7a41d)](https://ziglang.org/) +[![Zigmod](https://img.shields.io/badge/Zigmod-latest-f7a41d)](https://github.com/nektro/zigmod) + +Zig bindings for Unicode IDNA (Internationalizing Domain Names for Applications) Compatibility Processing + +Last updated as of Unicode 17.0.0 + +http://www.unicode.org/reports/tr46/ + +https://www.unicode.org/versions/latest/ + +Source data files are https://www.unicode.org/license.html diff --git a/build.zig b/build.zig new file mode 100644 index 0000000000000000000000000000000000000000..f9ffeeac66f66074b0a7bbaee04d2452b06067c5 --- /dev/null +++ b/build.zig @@ -0,0 +1,20 @@ +const std = @import("std"); +const deps = @import("./deps.zig"); + +pub fn build(b: *std.Build) void { + const target = b.standardTargetOptions(.{}); + const mode = b.option(std.builtin.Mode, "mode", "") orelse .Debug; + + const tests = b.addTest(.{ + .root_source_file = b.path("test.zig"), + .target = target, + .optimize = mode, + }); + deps.addAllTo(tests); + + const test_step = b.step("test", "Run all library tests"); + const tests_run = b.addRunArtifact(tests); + tests_run.setCwd(b.path(".")); + tests_run.has_side_effects = true; + test_step.dependOn(&tests_run.step); +} diff --git a/bun.lock b/bun.lock new file mode 100644 index 0000000000000000000000000000000000000000..279395752fbf3901224132da4a0024399d6c0595 --- /dev/null +++ b/bun.lock @@ -0,0 +1,26 @@ +{ + "lockfileVersion": 1, + "configVersion": 1, + "workspaces": { + "": { + "name": "zig-unicode-idna", + "devDependencies": { + "@types/bun": "latest", + }, + "peerDependencies": { + "typescript": "^5", + }, + }, + }, + "packages": { + "@types/bun": ["@types/bun@1.3.5", "", { "dependencies": { "bun-types": "1.3.5" } }, "sha512-RnygCqNrd3srIPEWBd5LFeUYG7plCoH2Yw9WaZGyNmdTEei+gWaHqydbaIRkIkcbXwhBT94q78QljxN0Sk838w=="], + + "@types/node": ["@types/node@25.0.6", "", { "dependencies": { "undici-types": "~7.16.0" } }, "sha512-NNu0sjyNxpoiW3YuVFfNz7mxSQ+S4X2G28uqg2s+CzoqoQjLPsWSbsFFyztIAqt2vb8kfEAsJNepMGPTxFDx3Q=="], + + "bun-types": ["bun-types@1.3.5", "", { "dependencies": { "@types/node": "*" } }, "sha512-inmAYe2PFLs0SUbFOWSVD24sg1jFlMPxOjOSSCYqUgn4Hsc3rDc7dFvfVYjFPNHtov6kgUeulV4SxbuIV/stPw=="], + + "typescript": ["typescript@5.9.3", "", { "bin": { "tsc": "bin/tsc", "tsserver": "bin/tsserver" } }, "sha512-jl1vZzPDinLr9eUt3J/t7V6FgNEw9QjvBPdysz9KfQDD41fQrC2Y4vKQdiaUpFT4bXlb1RHhLpp8wtm6M5TgSw=="], + + "undici-types": ["undici-types@7.16.0", "", {}, "sha512-Zz+aZWSj8LE6zoxD+xrjh4VfkIG8Ya6LvYkZqtUQGJPZjYl53ypCaUwWqo7eI0x66KBGeRo+mlBEkMSeSZ38Nw=="], + } +} diff --git a/generate.ts b/generate.ts new file mode 100644 index 0000000000000000000000000000000000000000..e353866f2dad87983281ac705149058e889995b6 --- /dev/null +++ b/generate.ts @@ -0,0 +1,160 @@ +import { closeSync, openSync } from "node:fs"; + +const unicode_version = "17.0.0"; + +{ + const source = `https://www.unicode.org/Public/${unicode_version}/idna/IdnaMappingTable.txt`; + const response = await fetch(source); + const data = await response.text(); + const lines = data.split("\n").filter((x) => !x.startsWith("#") && x.length > 0); + const lines_clear = lines.map((x) => x.split("#")[0]!); + const cols = lines_clear.map((x) => x.split(";").map((y) => y.trim())); + + closeSync(openSync("./table.zig", "w", 0o777)); + const f = Bun.file("./table.zig"); + const w = f.writer(); + + w.write(`// This file is part of Unicode IDNA Compatibility Processing\n`); + w.write(`// For documentation, see http://www.unicode.org/reports/tr46/\n`); + w.write(`//\n`); + w.write(`\n`); + w.write(`// Based on the source file: ${source}\n`); + w.write(`//\n`); + w.write(`\n`); + w.write(`pub const Row = struct {\n`); + w.write(` cp: u21,\n`); + w.write(` status: Status,\n`); + w.write(` mapping: []const u21,\n`); + w.write(` status2: Status2008,\n`); + w.write(`};\n`); + w.write(`\n`); + w.write(`pub const RowRange = struct {\n`); + w.write(` from: u21,\n`); + w.write(` to: u21,\n`); + w.write(` status: Status,\n`); + w.write(` mapping: []const u21,\n`); + w.write(` status2: Status2008,\n`); + w.write(`};\n`); + w.write(`\n`); + w.write(`pub const Status = enum {\n`); + w.write(` valid,\n`); + w.write(` ignored,\n`); + w.write(` mapped,\n`); + w.write(` deviation,\n`); + w.write(` disallowed,\n`); + w.write(`};\n`); + w.write(`\n`); + w.write(`pub const Status2008 = enum {\n`); + w.write(` none,\n`); + w.write(` NV8,\n`); + w.write(` XV8,\n`); + w.write(`};\n`); + w.write(`\n`); + w.write(`pub const data = [_]Row{\n`); + { + for (const c of cols.filter((x) => !x[0]!.includes(".."))) { + w.write(` .{ .cp = 0x${c[0]},`); + w.write(` .status = .${c[1]},`); + // prettier-ignore + w.write(` .mapping = &.{${c[2]?.split(" ").filter(x => x.length > 0).map((x) => `0x${x}`).join(",") ?? ""}},`,); + w.write(` .status2 = .${c[3] ?? "none"},`); + w.write(` },\n`); + } + } + w.write(`};\n`); + w.write(`\n`); + w.write(`pub const data_range = [_]RowRange{\n`); + { + for (const c of cols.filter((x) => x[0]!.includes(".."))) { + w.write(` .{ .from = 0x${c[0]!.split("..")[0]}, .to = 0x${c[0]!.split("..")[1]},`); + w.write(` .status = .${c[1]},`); + // prettier-ignore + w.write(` .mapping = &.{${c[2]?.split(" ").filter(x => x.length > 0).map((x) => `0x${x}`).join(",") ?? ""}},`,); + w.write(` .status2 = .${c[3] ?? "none"},`); + w.write(` },\n`); + } + } + w.write(`};\n`); + w.flush(); +} + +{ + const source = `https://www.unicode.org/Public/${unicode_version}/idna/Idna2008.txt`; + const response = await fetch(source); + const data = await response.text(); + const lines = data.split("\n").filter((x) => !x.startsWith("#") && x.length > 0); + const lines_clear = lines.map((x) => x.split("#")[0]!); + const cols = lines_clear.map((x) => x.split(";").map((y) => y.trim())); + + closeSync(openSync("./2008.zig", "w", 0o777)); + const f = Bun.file("./2008.zig"); + const w = f.writer(); + + w.write(`// This file is part of Unicode IDNA Compatibility Processing\n`); + w.write(`// For documentation, see http://www.unicode.org/reports/tr46/\n`); + w.write(`//\n`); + w.write(`\n`); + w.write(`// Based on the source file: ${source}\n`); + w.write(`//\n`); + w.write(`\n`); + w.write(`pub const Prop = struct {\n`); + w.write(` cp: u21,\n`); + w.write(` category: Category\n`); + w.write(`};\n`); + w.write(`\n`); + w.write(`pub const PropRange = struct {\n`); + w.write(` from: u21,\n`); + w.write(` to: u21,\n`); + w.write(` category: Category\n`); + w.write(`};\n`); + w.write(`\n`); + w.write(`pub const Category = enum {\n`); + w.write(` pvalid,\n`); + w.write(` contextj,\n`); + w.write(` contexto,\n`); + w.write(` disallowed,\n`); + w.write(` unassigned,\n`); + w.write(`};\n`); + w.write(`\n`); + w.write(`pub const data = [_]Prop{\n`); + { + for (const c of cols.filter((x) => !x[0]!.includes(".."))) { + w.write(` .{ .cp = 0x${c[0]}, .category = .${c[1]!.toLowerCase()} },\n`); + } + } + w.write(`};\n`); + w.write(`\n`); + w.write(`pub const data_range = [_]PropRange{\n`); + { + for (const c of cols.filter((x) => x[0]!.includes(".."))) { + w.write(` .{ .from = 0x${c[0]!.split("..")[0]}, .to = 0x${c[0]!.split("..")[1]}, .category = .${c[1]!.toLowerCase()} },\n`); + } + } + w.write(`};\n`); + w.flush(); +} + +{ + const source = `https://www.unicode.org/Public/${unicode_version}/idna/IdnaTestV2.txt`; + const response = await fetch(source); + const data = await response.text(); + const lines = data.split("\n").filter((x) => !x.startsWith("#") && x.length > 0); + const lines_clear = lines.map((x) => x.split("#")[0]!); + const cols = lines_clear.map((x) => x.split(";").map((y) => y.trim())); + + closeSync(openSync("./testv2.zig", "w", 0o777)); + const f = Bun.file("./testv2.zig"); + const w = f.writer(); + + w.write(`// This file is part of Unicode IDNA Compatibility Processing\n`); + w.write(`// For documentation, see http://www.unicode.org/reports/tr46/\n`); + w.write(`//\n`); + w.write(`\n`); + w.write(`// Based on the source file: ${source}\n`); + w.write(`//\n`); + w.write(`\n`); + + //TODO: + + w.flush(); +} diff --git a/idna.zig b/idna.zig new file mode 100644 index 0000000000000000000000000000000000000000..d92ca9a26a4eb63b9077ce6e15c35348b3524162 --- /dev/null +++ b/idna.zig @@ -0,0 +1,5 @@ +const std = @import("std"); + +pub const @"2008" = @import("./2008.zig"); + +pub const table = @import("./table.zig"); diff --git a/licenses.txt b/licenses.txt new file mode 100644 index 0000000000000000000000000000000000000000..6336b470e0dc9933d1fad883c84eaf86174573d6 --- /dev/null +++ b/licenses.txt @@ -0,0 +1,3 @@ +MIT: += https://spdx.org/licenses/MIT +- This diff --git a/package.json b/package.json new file mode 100644 index 0000000000000000000000000000000000000000..8bd5288673e6ad10300212eb6c20e619b9efb42d --- /dev/null +++ b/package.json @@ -0,0 +1,10 @@ +{ + "name": "zig-unicode-idna", + "private": true, + "devDependencies": { + "@types/bun": "latest" + }, + "peerDependencies": { + "typescript": "^5" + } +} diff --git a/table.zig b/table.zig new file mode 100755 index 0000000000000000000000000000000000000000..a17d6729b966555dec99d395f95e600477ead9a8 --- /dev/null +++ b/table.zig @@ -0,0 +1,9303 @@ +// This file is part of Unicode IDNA Compatibility Processing +// For documentation, see http://www.unicode.org/reports/tr46/ +// + +// Based on the source file: https://www.unicode.org/Public/17.0.0/idna/IdnaMappingTable.txt +// + +pub const Row = struct { + cp: u21, + status: Status, + mapping: []const u21, + status2: Status2008, +}; + +pub const RowRange = struct { + from: u21, + to: u21, + status: Status, + mapping: []const u21, + status2: Status2008, +}; + +pub const Status = enum { + valid, + ignored, + mapped, + deviation, + disallowed, +}; + +pub const Status2008 = enum { + none, + NV8, + XV8, +}; + +pub const data = [_]Row{ + .{ .cp = 0x002F, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .cp = 0x0041, .status = .mapped, .mapping = &.{0x0061}, .status2 = .none, }, + .{ .cp = 0x0042, .status = .mapped, .mapping = &.{0x0062}, .status2 = .none, }, + .{ .cp = 0x0043, .status = .mapped, .mapping = &.{0x0063}, .status2 = .none, }, + .{ .cp = 0x0044, .status = .mapped, .mapping = &.{0x0064}, .status2 = .none, }, + .{ .cp = 0x0045, .status = .mapped, .mapping = &.{0x0065}, .status2 = .none, }, + .{ .cp = 0x0046, .status = .mapped, .mapping = &.{0x0066}, .status2 = .none, }, + .{ .cp = 0x0047, .status = .mapped, .mapping = &.{0x0067}, .status2 = .none, }, + .{ .cp = 0x0048, .status = .mapped, .mapping = &.{0x0068}, .status2 = .none, }, + .{ .cp = 0x0049, .status = .mapped, .mapping = &.{0x0069}, .status2 = .none, }, + .{ .cp = 0x004A, .status = .mapped, .mapping = &.{0x006A}, .status2 = .none, }, + .{ .cp = 0x004B, .status = .mapped, .mapping = &.{0x006B}, .status2 = .none, }, + .{ .cp = 0x004C, .status = .mapped, .mapping = &.{0x006C}, .status2 = .none, }, + .{ .cp = 0x004D, .status = .mapped, .mapping = &.{0x006D}, .status2 = .none, }, + .{ .cp = 0x004E, .status = .mapped, .mapping = &.{0x006E}, .status2 = .none, }, + .{ .cp = 0x004F, .status = .mapped, .mapping = &.{0x006F}, .status2 = .none, }, + .{ .cp = 0x0050, .status = .mapped, .mapping = &.{0x0070}, .status2 = .none, }, + .{ .cp = 0x0051, .status = .mapped, .mapping = &.{0x0071}, .status2 = .none, }, + .{ .cp = 0x0052, .status = .mapped, .mapping = &.{0x0072}, .status2 = .none, }, + .{ .cp = 0x0053, .status = .mapped, .mapping = &.{0x0073}, .status2 = .none, }, + .{ .cp = 0x0054, .status = .mapped, .mapping = &.{0x0074}, .status2 = .none, }, + .{ .cp = 0x0055, .status = .mapped, .mapping = &.{0x0075}, .status2 = .none, }, + .{ .cp = 0x0056, .status = .mapped, .mapping = &.{0x0076}, .status2 = .none, }, + .{ .cp = 0x0057, .status = .mapped, .mapping = &.{0x0077}, .status2 = .none, }, + .{ .cp = 0x0058, .status = .mapped, .mapping = &.{0x0078}, .status2 = .none, }, + .{ .cp = 0x0059, .status = .mapped, .mapping = &.{0x0079}, .status2 = .none, }, + .{ .cp = 0x005A, .status = .mapped, .mapping = &.{0x007A}, .status2 = .none, }, + .{ .cp = 0x00A0, .status = .mapped, .mapping = &.{0x0020}, .status2 = .none, }, + .{ .cp = 0x00A8, .status = .mapped, .mapping = &.{0x0020,0x0308}, .status2 = .none, }, + .{ .cp = 0x00A9, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .cp = 0x00AA, .status = .mapped, .mapping = &.{0x0061}, .status2 = .none, }, + .{ .cp = 0x00AD, .status = .ignored, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x00AE, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .cp = 0x00AF, .status = .mapped, .mapping = &.{0x0020,0x0304}, .status2 = .none, }, + .{ .cp = 0x00B2, .status = .mapped, .mapping = &.{0x0032}, .status2 = .none, }, + .{ .cp = 0x00B3, .status = .mapped, .mapping = &.{0x0033}, .status2 = .none, }, + .{ .cp = 0x00B4, .status = .mapped, .mapping = &.{0x0020,0x0301}, .status2 = .none, }, + .{ .cp = 0x00B5, .status = .mapped, .mapping = &.{0x03BC}, .status2 = .none, }, + .{ .cp = 0x00B6, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .cp = 0x00B7, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x00B8, .status = .mapped, .mapping = &.{0x0020,0x0327}, .status2 = .none, }, + .{ .cp = 0x00B9, .status = .mapped, .mapping = &.{0x0031}, .status2 = .none, }, + .{ .cp = 0x00BA, .status = .mapped, .mapping = &.{0x006F}, .status2 = .none, }, + .{ .cp = 0x00BB, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .cp = 0x00BC, .status = .mapped, .mapping = &.{0x0031,0x2044,0x0034}, .status2 = .none, }, + .{ .cp = 0x00BD, .status = .mapped, .mapping = &.{0x0031,0x2044,0x0032}, .status2 = .none, }, + .{ .cp = 0x00BE, .status = .mapped, .mapping = &.{0x0033,0x2044,0x0034}, .status2 = .none, }, + .{ .cp = 0x00BF, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .cp = 0x00C0, .status = .mapped, .mapping = &.{0x00E0}, .status2 = .none, }, + .{ .cp = 0x00C1, .status = .mapped, .mapping = &.{0x00E1}, .status2 = .none, }, + .{ .cp = 0x00C2, .status = .mapped, .mapping = &.{0x00E2}, .status2 = .none, }, + .{ .cp = 0x00C3, .status = .mapped, .mapping = &.{0x00E3}, .status2 = .none, }, + .{ .cp = 0x00C4, .status = .mapped, .mapping = &.{0x00E4}, .status2 = .none, }, + .{ .cp = 0x00C5, .status = .mapped, .mapping = &.{0x00E5}, .status2 = .none, }, + .{ .cp = 0x00C6, .status = .mapped, .mapping = &.{0x00E6}, .status2 = .none, }, + .{ .cp = 0x00C7, .status = .mapped, .mapping = &.{0x00E7}, .status2 = .none, }, + .{ .cp = 0x00C8, .status = .mapped, .mapping = &.{0x00E8}, .status2 = .none, }, + .{ .cp = 0x00C9, .status = .mapped, .mapping = &.{0x00E9}, .status2 = .none, }, + .{ .cp = 0x00CA, .status = .mapped, .mapping = &.{0x00EA}, .status2 = .none, }, + .{ .cp = 0x00CB, .status = .mapped, .mapping = &.{0x00EB}, .status2 = .none, }, + .{ .cp = 0x00CC, .status = .mapped, .mapping = &.{0x00EC}, .status2 = .none, }, + .{ .cp = 0x00CD, .status = .mapped, .mapping = &.{0x00ED}, .status2 = .none, }, + .{ .cp = 0x00CE, .status = .mapped, .mapping = &.{0x00EE}, .status2 = .none, }, + .{ .cp = 0x00CF, .status = .mapped, .mapping = &.{0x00EF}, .status2 = .none, }, + .{ .cp = 0x00D0, .status = .mapped, .mapping = &.{0x00F0}, .status2 = .none, }, + .{ .cp = 0x00D1, .status = .mapped, .mapping = &.{0x00F1}, .status2 = .none, }, + .{ .cp = 0x00D2, .status = .mapped, .mapping = &.{0x00F2}, .status2 = .none, }, + .{ .cp = 0x00D3, .status = .mapped, .mapping = &.{0x00F3}, .status2 = .none, }, + .{ .cp = 0x00D4, .status = .mapped, .mapping = &.{0x00F4}, .status2 = .none, }, + .{ .cp = 0x00D5, .status = .mapped, .mapping = &.{0x00F5}, .status2 = .none, }, + .{ .cp = 0x00D6, .status = .mapped, .mapping = &.{0x00F6}, .status2 = .none, }, + .{ .cp = 0x00D7, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .cp = 0x00D8, .status = .mapped, .mapping = &.{0x00F8}, .status2 = .none, }, + .{ .cp = 0x00D9, .status = .mapped, .mapping = &.{0x00F9}, .status2 = .none, }, + .{ .cp = 0x00DA, .status = .mapped, .mapping = &.{0x00FA}, .status2 = .none, }, + .{ .cp = 0x00DB, .status = .mapped, .mapping = &.{0x00FB}, .status2 = .none, }, + .{ .cp = 0x00DC, .status = .mapped, .mapping = &.{0x00FC}, .status2 = .none, }, + .{ .cp = 0x00DD, .status = .mapped, .mapping = &.{0x00FD}, .status2 = .none, }, + .{ .cp = 0x00DE, .status = .mapped, .mapping = &.{0x00FE}, .status2 = .none, }, + .{ .cp = 0x00DF, .status = .deviation, .mapping = &.{0x0073,0x0073}, .status2 = .none, }, + .{ .cp = 0x00F7, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .cp = 0x0100, .status = .mapped, .mapping = &.{0x0101}, .status2 = .none, }, + .{ .cp = 0x0101, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x0102, .status = .mapped, .mapping = &.{0x0103}, .status2 = .none, }, + .{ .cp = 0x0103, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x0104, .status = .mapped, .mapping = &.{0x0105}, .status2 = .none, }, + .{ .cp = 0x0105, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x0106, .status = .mapped, .mapping = &.{0x0107}, .status2 = .none, }, + .{ .cp = 0x0107, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x0108, .status = .mapped, .mapping = &.{0x0109}, .status2 = .none, }, + .{ .cp = 0x0109, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x010A, .status = .mapped, .mapping = &.{0x010B}, .status2 = .none, }, + .{ .cp = 0x010B, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x010C, .status = .mapped, .mapping = &.{0x010D}, .status2 = .none, }, + .{ .cp = 0x010D, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x010E, .status = .mapped, .mapping = &.{0x010F}, .status2 = .none, }, + .{ .cp = 0x010F, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x0110, .status = .mapped, .mapping = &.{0x0111}, .status2 = .none, }, + .{ .cp = 0x0111, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x0112, .status = .mapped, .mapping = &.{0x0113}, .status2 = .none, }, + .{ .cp = 0x0113, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x0114, .status = .mapped, .mapping = &.{0x0115}, .status2 = .none, }, + .{ .cp = 0x0115, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x0116, .status = .mapped, .mapping = &.{0x0117}, .status2 = .none, }, + .{ .cp = 0x0117, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x0118, .status = .mapped, .mapping = &.{0x0119}, .status2 = .none, }, + .{ .cp = 0x0119, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x011A, .status = .mapped, .mapping = &.{0x011B}, .status2 = .none, }, + .{ .cp = 0x011B, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x011C, .status = .mapped, .mapping = &.{0x011D}, .status2 = .none, }, + .{ .cp = 0x011D, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x011E, .status = .mapped, .mapping = &.{0x011F}, .status2 = .none, }, + .{ .cp = 0x011F, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x0120, .status = .mapped, .mapping = &.{0x0121}, .status2 = .none, }, + .{ .cp = 0x0121, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x0122, .status = .mapped, .mapping = &.{0x0123}, .status2 = .none, }, + .{ .cp = 0x0123, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x0124, .status = .mapped, .mapping = &.{0x0125}, .status2 = .none, }, + .{ .cp = 0x0125, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x0126, .status = .mapped, .mapping = &.{0x0127}, .status2 = .none, }, + .{ .cp = 0x0127, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x0128, .status = .mapped, .mapping = &.{0x0129}, .status2 = .none, }, + .{ .cp = 0x0129, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x012A, .status = .mapped, .mapping = &.{0x012B}, .status2 = .none, }, + .{ .cp = 0x012B, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x012C, .status = .mapped, .mapping = &.{0x012D}, .status2 = .none, }, + .{ .cp = 0x012D, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x012E, .status = .mapped, .mapping = &.{0x012F}, .status2 = .none, }, + .{ .cp = 0x012F, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x0130, .status = .mapped, .mapping = &.{0x0069,0x0307}, .status2 = .none, }, + .{ .cp = 0x0131, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x0134, .status = .mapped, .mapping = &.{0x0135}, .status2 = .none, }, + .{ .cp = 0x0135, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x0136, .status = .mapped, .mapping = &.{0x0137}, .status2 = .none, }, + .{ .cp = 0x0139, .status = .mapped, .mapping = &.{0x013A}, .status2 = .none, }, + .{ .cp = 0x013A, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x013B, .status = .mapped, .mapping = &.{0x013C}, .status2 = .none, }, + .{ .cp = 0x013C, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x013D, .status = .mapped, .mapping = &.{0x013E}, .status2 = .none, }, + .{ .cp = 0x013E, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x0141, .status = .mapped, .mapping = &.{0x0142}, .status2 = .none, }, + .{ .cp = 0x0142, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x0143, .status = .mapped, .mapping = &.{0x0144}, .status2 = .none, }, + .{ .cp = 0x0144, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x0145, .status = .mapped, .mapping = &.{0x0146}, .status2 = .none, }, + .{ .cp = 0x0146, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x0147, .status = .mapped, .mapping = &.{0x0148}, .status2 = .none, }, + .{ .cp = 0x0148, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x0149, .status = .mapped, .mapping = &.{0x02BC,0x006E}, .status2 = .none, }, + .{ .cp = 0x014A, .status = .mapped, .mapping = &.{0x014B}, .status2 = .none, }, + .{ .cp = 0x014B, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x014C, .status = .mapped, .mapping = &.{0x014D}, .status2 = .none, }, + .{ .cp = 0x014D, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x014E, .status = .mapped, .mapping = &.{0x014F}, .status2 = .none, }, + .{ .cp = 0x014F, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x0150, .status = .mapped, .mapping = &.{0x0151}, .status2 = .none, }, + .{ .cp = 0x0151, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x0152, .status = .mapped, .mapping = &.{0x0153}, .status2 = .none, }, + .{ .cp = 0x0153, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x0154, .status = .mapped, .mapping = &.{0x0155}, .status2 = .none, }, + .{ .cp = 0x0155, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x0156, .status = .mapped, .mapping = &.{0x0157}, .status2 = .none, }, + .{ .cp = 0x0157, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x0158, .status = .mapped, .mapping = &.{0x0159}, .status2 = .none, }, + .{ .cp = 0x0159, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x015A, .status = .mapped, .mapping = &.{0x015B}, .status2 = .none, }, + .{ .cp = 0x015B, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x015C, .status = .mapped, .mapping = &.{0x015D}, .status2 = .none, }, + .{ .cp = 0x015D, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x015E, .status = .mapped, .mapping = &.{0x015F}, .status2 = .none, }, + .{ .cp = 0x015F, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x0160, .status = .mapped, .mapping = &.{0x0161}, .status2 = .none, }, + .{ .cp = 0x0161, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x0162, .status = .mapped, .mapping = &.{0x0163}, .status2 = .none, }, + .{ .cp = 0x0163, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x0164, .status = .mapped, .mapping = &.{0x0165}, .status2 = .none, }, + .{ .cp = 0x0165, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x0166, .status = .mapped, .mapping = &.{0x0167}, .status2 = .none, }, + .{ .cp = 0x0167, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x0168, .status = .mapped, .mapping = &.{0x0169}, .status2 = .none, }, + .{ .cp = 0x0169, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x016A, .status = .mapped, .mapping = &.{0x016B}, .status2 = .none, }, + .{ .cp = 0x016B, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x016C, .status = .mapped, .mapping = &.{0x016D}, .status2 = .none, }, + .{ .cp = 0x016D, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x016E, .status = .mapped, .mapping = &.{0x016F}, .status2 = .none, }, + .{ .cp = 0x016F, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x0170, .status = .mapped, .mapping = &.{0x0171}, .status2 = .none, }, + .{ .cp = 0x0171, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x0172, .status = .mapped, .mapping = &.{0x0173}, .status2 = .none, }, + .{ .cp = 0x0173, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x0174, .status = .mapped, .mapping = &.{0x0175}, .status2 = .none, }, + .{ .cp = 0x0175, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x0176, .status = .mapped, .mapping = &.{0x0177}, .status2 = .none, }, + .{ .cp = 0x0177, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x0178, .status = .mapped, .mapping = &.{0x00FF}, .status2 = .none, }, + .{ .cp = 0x0179, .status = .mapped, .mapping = &.{0x017A}, .status2 = .none, }, + .{ .cp = 0x017A, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x017B, .status = .mapped, .mapping = &.{0x017C}, .status2 = .none, }, + .{ .cp = 0x017C, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x017D, .status = .mapped, .mapping = &.{0x017E}, .status2 = .none, }, + .{ .cp = 0x017E, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x017F, .status = .mapped, .mapping = &.{0x0073}, .status2 = .none, }, + .{ .cp = 0x0180, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x0181, .status = .mapped, .mapping = &.{0x0253}, .status2 = .none, }, + .{ .cp = 0x0182, .status = .mapped, .mapping = &.{0x0183}, .status2 = .none, }, + .{ .cp = 0x0183, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x0184, .status = .mapped, .mapping = &.{0x0185}, .status2 = .none, }, + .{ .cp = 0x0185, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x0186, .status = .mapped, .mapping = &.{0x0254}, .status2 = .none, }, + .{ .cp = 0x0187, .status = .mapped, .mapping = &.{0x0188}, .status2 = .none, }, + .{ .cp = 0x0188, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x0189, .status = .mapped, .mapping = &.{0x0256}, .status2 = .none, }, + .{ .cp = 0x018A, .status = .mapped, .mapping = &.{0x0257}, .status2 = .none, }, + .{ .cp = 0x018B, .status = .mapped, .mapping = &.{0x018C}, .status2 = .none, }, + .{ .cp = 0x018E, .status = .mapped, .mapping = &.{0x01DD}, .status2 = .none, }, + .{ .cp = 0x018F, .status = .mapped, .mapping = &.{0x0259}, .status2 = .none, }, + .{ .cp = 0x0190, .status = .mapped, .mapping = &.{0x025B}, .status2 = .none, }, + .{ .cp = 0x0191, .status = .mapped, .mapping = &.{0x0192}, .status2 = .none, }, + .{ .cp = 0x0192, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x0193, .status = .mapped, .mapping = &.{0x0260}, .status2 = .none, }, + .{ .cp = 0x0194, .status = .mapped, .mapping = &.{0x0263}, .status2 = .none, }, + .{ .cp = 0x0195, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x0196, .status = .mapped, .mapping = &.{0x0269}, .status2 = .none, }, + .{ .cp = 0x0197, .status = .mapped, .mapping = &.{0x0268}, .status2 = .none, }, + .{ .cp = 0x0198, .status = .mapped, .mapping = &.{0x0199}, .status2 = .none, }, + .{ .cp = 0x019C, .status = .mapped, .mapping = &.{0x026F}, .status2 = .none, }, + .{ .cp = 0x019D, .status = .mapped, .mapping = &.{0x0272}, .status2 = .none, }, + .{ .cp = 0x019E, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x019F, .status = .mapped, .mapping = &.{0x0275}, .status2 = .none, }, + .{ .cp = 0x01A0, .status = .mapped, .mapping = &.{0x01A1}, .status2 = .none, }, + .{ .cp = 0x01A1, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x01A2, .status = .mapped, .mapping = &.{0x01A3}, .status2 = .none, }, + .{ .cp = 0x01A3, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x01A4, .status = .mapped, .mapping = &.{0x01A5}, .status2 = .none, }, + .{ .cp = 0x01A5, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x01A6, .status = .mapped, .mapping = &.{0x0280}, .status2 = .none, }, + .{ .cp = 0x01A7, .status = .mapped, .mapping = &.{0x01A8}, .status2 = .none, }, + .{ .cp = 0x01A8, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x01A9, .status = .mapped, .mapping = &.{0x0283}, .status2 = .none, }, + .{ .cp = 0x01AC, .status = .mapped, .mapping = &.{0x01AD}, .status2 = .none, }, + .{ .cp = 0x01AD, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x01AE, .status = .mapped, .mapping = &.{0x0288}, .status2 = .none, }, + .{ .cp = 0x01AF, .status = .mapped, .mapping = &.{0x01B0}, .status2 = .none, }, + .{ .cp = 0x01B0, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x01B1, .status = .mapped, .mapping = &.{0x028A}, .status2 = .none, }, + .{ .cp = 0x01B2, .status = .mapped, .mapping = &.{0x028B}, .status2 = .none, }, + .{ .cp = 0x01B3, .status = .mapped, .mapping = &.{0x01B4}, .status2 = .none, }, + .{ .cp = 0x01B4, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x01B5, .status = .mapped, .mapping = &.{0x01B6}, .status2 = .none, }, + .{ .cp = 0x01B6, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x01B7, .status = .mapped, .mapping = &.{0x0292}, .status2 = .none, }, + .{ .cp = 0x01B8, .status = .mapped, .mapping = &.{0x01B9}, .status2 = .none, }, + .{ .cp = 0x01BC, .status = .mapped, .mapping = &.{0x01BD}, .status2 = .none, }, + .{ .cp = 0x01CD, .status = .mapped, .mapping = &.{0x01CE}, .status2 = .none, }, + .{ .cp = 0x01CE, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x01CF, .status = .mapped, .mapping = &.{0x01D0}, .status2 = .none, }, + .{ .cp = 0x01D0, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x01D1, .status = .mapped, .mapping = &.{0x01D2}, .status2 = .none, }, + .{ .cp = 0x01D2, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x01D3, .status = .mapped, .mapping = &.{0x01D4}, .status2 = .none, }, + .{ .cp = 0x01D4, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x01D5, .status = .mapped, .mapping = &.{0x01D6}, .status2 = .none, }, + .{ .cp = 0x01D6, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x01D7, .status = .mapped, .mapping = &.{0x01D8}, .status2 = .none, }, + .{ .cp = 0x01D8, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x01D9, .status = .mapped, .mapping = &.{0x01DA}, .status2 = .none, }, + .{ .cp = 0x01DA, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x01DB, .status = .mapped, .mapping = &.{0x01DC}, .status2 = .none, }, + .{ .cp = 0x01DE, .status = .mapped, .mapping = &.{0x01DF}, .status2 = .none, }, + .{ .cp = 0x01DF, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x01E0, .status = .mapped, .mapping = &.{0x01E1}, .status2 = .none, }, + .{ .cp = 0x01E1, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x01E2, .status = .mapped, .mapping = &.{0x01E3}, .status2 = .none, }, + .{ .cp = 0x01E3, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x01E4, .status = .mapped, .mapping = &.{0x01E5}, .status2 = .none, }, + .{ .cp = 0x01E5, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x01E6, .status = .mapped, .mapping = &.{0x01E7}, .status2 = .none, }, + .{ .cp = 0x01E7, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x01E8, .status = .mapped, .mapping = &.{0x01E9}, .status2 = .none, }, + .{ .cp = 0x01E9, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x01EA, .status = .mapped, .mapping = &.{0x01EB}, .status2 = .none, }, + .{ .cp = 0x01EB, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x01EC, .status = .mapped, .mapping = &.{0x01ED}, .status2 = .none, }, + .{ .cp = 0x01ED, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x01EE, .status = .mapped, .mapping = &.{0x01EF}, .status2 = .none, }, + .{ .cp = 0x01F4, .status = .mapped, .mapping = &.{0x01F5}, .status2 = .none, }, + .{ .cp = 0x01F5, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x01F6, .status = .mapped, .mapping = &.{0x0195}, .status2 = .none, }, + .{ .cp = 0x01F7, .status = .mapped, .mapping = &.{0x01BF}, .status2 = .none, }, + .{ .cp = 0x01F8, .status = .mapped, .mapping = &.{0x01F9}, .status2 = .none, }, + .{ .cp = 0x01F9, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x01FA, .status = .mapped, .mapping = &.{0x01FB}, .status2 = .none, }, + .{ .cp = 0x01FB, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x01FC, .status = .mapped, .mapping = &.{0x01FD}, .status2 = .none, }, + .{ .cp = 0x01FD, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x01FE, .status = .mapped, .mapping = &.{0x01FF}, .status2 = .none, }, + .{ .cp = 0x01FF, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x0200, .status = .mapped, .mapping = &.{0x0201}, .status2 = .none, }, + .{ .cp = 0x0201, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x0202, .status = .mapped, .mapping = &.{0x0203}, .status2 = .none, }, + .{ .cp = 0x0203, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x0204, .status = .mapped, .mapping = &.{0x0205}, .status2 = .none, }, + .{ .cp = 0x0205, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x0206, .status = .mapped, .mapping = &.{0x0207}, .status2 = .none, }, + .{ .cp = 0x0207, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x0208, .status = .mapped, .mapping = &.{0x0209}, .status2 = .none, }, + .{ .cp = 0x0209, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x020A, .status = .mapped, .mapping = &.{0x020B}, .status2 = .none, }, + .{ .cp = 0x020B, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x020C, .status = .mapped, .mapping = &.{0x020D}, .status2 = .none, }, + .{ .cp = 0x020D, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x020E, .status = .mapped, .mapping = &.{0x020F}, .status2 = .none, }, + .{ .cp = 0x020F, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x0210, .status = .mapped, .mapping = &.{0x0211}, .status2 = .none, }, + .{ .cp = 0x0211, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x0212, .status = .mapped, .mapping = &.{0x0213}, .status2 = .none, }, + .{ .cp = 0x0213, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x0214, .status = .mapped, .mapping = &.{0x0215}, .status2 = .none, }, + .{ .cp = 0x0215, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x0216, .status = .mapped, .mapping = &.{0x0217}, .status2 = .none, }, + .{ .cp = 0x0217, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x0218, .status = .mapped, .mapping = &.{0x0219}, .status2 = .none, }, + .{ .cp = 0x0219, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x021A, .status = .mapped, .mapping = &.{0x021B}, .status2 = .none, }, + .{ .cp = 0x021B, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x021C, .status = .mapped, .mapping = &.{0x021D}, .status2 = .none, }, + .{ .cp = 0x021D, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x021E, .status = .mapped, .mapping = &.{0x021F}, .status2 = .none, }, + .{ .cp = 0x021F, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x0220, .status = .mapped, .mapping = &.{0x019E}, .status2 = .none, }, + .{ .cp = 0x0221, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x0222, .status = .mapped, .mapping = &.{0x0223}, .status2 = .none, }, + .{ .cp = 0x0223, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x0224, .status = .mapped, .mapping = &.{0x0225}, .status2 = .none, }, + .{ .cp = 0x0225, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x0226, .status = .mapped, .mapping = &.{0x0227}, .status2 = .none, }, + .{ .cp = 0x0227, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x0228, .status = .mapped, .mapping = &.{0x0229}, .status2 = .none, }, + .{ .cp = 0x0229, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x022A, .status = .mapped, .mapping = &.{0x022B}, .status2 = .none, }, + .{ .cp = 0x022B, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x022C, .status = .mapped, .mapping = &.{0x022D}, .status2 = .none, }, + .{ .cp = 0x022D, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x022E, .status = .mapped, .mapping = &.{0x022F}, .status2 = .none, }, + .{ .cp = 0x022F, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x0230, .status = .mapped, .mapping = &.{0x0231}, .status2 = .none, }, + .{ .cp = 0x0231, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x0232, .status = .mapped, .mapping = &.{0x0233}, .status2 = .none, }, + .{ .cp = 0x0233, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x023A, .status = .mapped, .mapping = &.{0x2C65}, .status2 = .none, }, + .{ .cp = 0x023B, .status = .mapped, .mapping = &.{0x023C}, .status2 = .none, }, + .{ .cp = 0x023C, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x023D, .status = .mapped, .mapping = &.{0x019A}, .status2 = .none, }, + .{ .cp = 0x023E, .status = .mapped, .mapping = &.{0x2C66}, .status2 = .none, }, + .{ .cp = 0x0241, .status = .mapped, .mapping = &.{0x0242}, .status2 = .none, }, + .{ .cp = 0x0242, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x0243, .status = .mapped, .mapping = &.{0x0180}, .status2 = .none, }, + .{ .cp = 0x0244, .status = .mapped, .mapping = &.{0x0289}, .status2 = .none, }, + .{ .cp = 0x0245, .status = .mapped, .mapping = &.{0x028C}, .status2 = .none, }, + .{ .cp = 0x0246, .status = .mapped, .mapping = &.{0x0247}, .status2 = .none, }, + .{ .cp = 0x0247, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x0248, .status = .mapped, .mapping = &.{0x0249}, .status2 = .none, }, + .{ .cp = 0x0249, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x024A, .status = .mapped, .mapping = &.{0x024B}, .status2 = .none, }, + .{ .cp = 0x024B, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x024C, .status = .mapped, .mapping = &.{0x024D}, .status2 = .none, }, + .{ .cp = 0x024D, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x024E, .status = .mapped, .mapping = &.{0x024F}, .status2 = .none, }, + .{ .cp = 0x024F, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x02B0, .status = .mapped, .mapping = &.{0x0068}, .status2 = .none, }, + .{ .cp = 0x02B1, .status = .mapped, .mapping = &.{0x0266}, .status2 = .none, }, + .{ .cp = 0x02B2, .status = .mapped, .mapping = &.{0x006A}, .status2 = .none, }, + .{ .cp = 0x02B3, .status = .mapped, .mapping = &.{0x0072}, .status2 = .none, }, + .{ .cp = 0x02B4, .status = .mapped, .mapping = &.{0x0279}, .status2 = .none, }, + .{ .cp = 0x02B5, .status = .mapped, .mapping = &.{0x027B}, .status2 = .none, }, + .{ .cp = 0x02B6, .status = .mapped, .mapping = &.{0x0281}, .status2 = .none, }, + .{ .cp = 0x02B7, .status = .mapped, .mapping = &.{0x0077}, .status2 = .none, }, + .{ .cp = 0x02B8, .status = .mapped, .mapping = &.{0x0079}, .status2 = .none, }, + .{ .cp = 0x02D8, .status = .mapped, .mapping = &.{0x0020,0x0306}, .status2 = .none, }, + .{ .cp = 0x02D9, .status = .mapped, .mapping = &.{0x0020,0x0307}, .status2 = .none, }, + .{ .cp = 0x02DA, .status = .mapped, .mapping = &.{0x0020,0x030A}, .status2 = .none, }, + .{ .cp = 0x02DB, .status = .mapped, .mapping = &.{0x0020,0x0328}, .status2 = .none, }, + .{ .cp = 0x02DC, .status = .mapped, .mapping = &.{0x0020,0x0303}, .status2 = .none, }, + .{ .cp = 0x02DD, .status = .mapped, .mapping = &.{0x0020,0x030B}, .status2 = .none, }, + .{ .cp = 0x02DE, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .cp = 0x02DF, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .cp = 0x02E0, .status = .mapped, .mapping = &.{0x0263}, .status2 = .none, }, + .{ .cp = 0x02E1, .status = .mapped, .mapping = &.{0x006C}, .status2 = .none, }, + .{ .cp = 0x02E2, .status = .mapped, .mapping = &.{0x0073}, .status2 = .none, }, + .{ .cp = 0x02E3, .status = .mapped, .mapping = &.{0x0078}, .status2 = .none, }, + .{ .cp = 0x02E4, .status = .mapped, .mapping = &.{0x0295}, .status2 = .none, }, + .{ .cp = 0x02EC, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x02ED, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .cp = 0x02EE, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x0340, .status = .mapped, .mapping = &.{0x0300}, .status2 = .none, }, + .{ .cp = 0x0341, .status = .mapped, .mapping = &.{0x0301}, .status2 = .none, }, + .{ .cp = 0x0342, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x0343, .status = .mapped, .mapping = &.{0x0313}, .status2 = .none, }, + .{ .cp = 0x0344, .status = .mapped, .mapping = &.{0x0308,0x0301}, .status2 = .none, }, + .{ .cp = 0x0345, .status = .mapped, .mapping = &.{0x03B9}, .status2 = .none, }, + .{ .cp = 0x034F, .status = .ignored, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x0362, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x0370, .status = .mapped, .mapping = &.{0x0371}, .status2 = .none, }, + .{ .cp = 0x0371, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x0372, .status = .mapped, .mapping = &.{0x0373}, .status2 = .none, }, + .{ .cp = 0x0373, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x0374, .status = .mapped, .mapping = &.{0x02B9}, .status2 = .none, }, + .{ .cp = 0x0375, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x0376, .status = .mapped, .mapping = &.{0x0377}, .status2 = .none, }, + .{ .cp = 0x0377, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x037A, .status = .mapped, .mapping = &.{0x0020,0x03B9}, .status2 = .none, }, + .{ .cp = 0x037E, .status = .mapped, .mapping = &.{0x003B}, .status2 = .none, }, + .{ .cp = 0x037F, .status = .mapped, .mapping = &.{0x03F3}, .status2 = .none, }, + .{ .cp = 0x0384, .status = .mapped, .mapping = &.{0x0020,0x0301}, .status2 = .none, }, + .{ .cp = 0x0385, .status = .mapped, .mapping = &.{0x0020,0x0308,0x0301}, .status2 = .none, }, + .{ .cp = 0x0386, .status = .mapped, .mapping = &.{0x03AC}, .status2 = .none, }, + .{ .cp = 0x0387, .status = .mapped, .mapping = &.{0x00B7}, .status2 = .none, }, + .{ .cp = 0x0388, .status = .mapped, .mapping = &.{0x03AD}, .status2 = .none, }, + .{ .cp = 0x0389, .status = .mapped, .mapping = &.{0x03AE}, .status2 = .none, }, + .{ .cp = 0x038A, .status = .mapped, .mapping = &.{0x03AF}, .status2 = .none, }, + .{ .cp = 0x038B, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x038C, .status = .mapped, .mapping = &.{0x03CC}, .status2 = .none, }, + .{ .cp = 0x038D, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x038E, .status = .mapped, .mapping = &.{0x03CD}, .status2 = .none, }, + .{ .cp = 0x038F, .status = .mapped, .mapping = &.{0x03CE}, .status2 = .none, }, + .{ .cp = 0x0390, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x0391, .status = .mapped, .mapping = &.{0x03B1}, .status2 = .none, }, + .{ .cp = 0x0392, .status = .mapped, .mapping = &.{0x03B2}, .status2 = .none, }, + .{ .cp = 0x0393, .status = .mapped, .mapping = &.{0x03B3}, .status2 = .none, }, + .{ .cp = 0x0394, .status = .mapped, .mapping = &.{0x03B4}, .status2 = .none, }, + .{ .cp = 0x0395, .status = .mapped, .mapping = &.{0x03B5}, .status2 = .none, }, + .{ .cp = 0x0396, .status = .mapped, .mapping = &.{0x03B6}, .status2 = .none, }, + .{ .cp = 0x0397, .status = .mapped, .mapping = &.{0x03B7}, .status2 = .none, }, + .{ .cp = 0x0398, .status = .mapped, .mapping = &.{0x03B8}, .status2 = .none, }, + .{ .cp = 0x0399, .status = .mapped, .mapping = &.{0x03B9}, .status2 = .none, }, + .{ .cp = 0x039A, .status = .mapped, .mapping = &.{0x03BA}, .status2 = .none, }, + .{ .cp = 0x039B, .status = .mapped, .mapping = &.{0x03BB}, .status2 = .none, }, + .{ .cp = 0x039C, .status = .mapped, .mapping = &.{0x03BC}, .status2 = .none, }, + .{ .cp = 0x039D, .status = .mapped, .mapping = &.{0x03BD}, .status2 = .none, }, + .{ .cp = 0x039E, .status = .mapped, .mapping = &.{0x03BE}, .status2 = .none, }, + .{ .cp = 0x039F, .status = .mapped, .mapping = &.{0x03BF}, .status2 = .none, }, + .{ .cp = 0x03A0, .status = .mapped, .mapping = &.{0x03C0}, .status2 = .none, }, + .{ .cp = 0x03A1, .status = .mapped, .mapping = &.{0x03C1}, .status2 = .none, }, + .{ .cp = 0x03A2, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x03A3, .status = .mapped, .mapping = &.{0x03C3}, .status2 = .none, }, + .{ .cp = 0x03A4, .status = .mapped, .mapping = &.{0x03C4}, .status2 = .none, }, + .{ .cp = 0x03A5, .status = .mapped, .mapping = &.{0x03C5}, .status2 = .none, }, + .{ .cp = 0x03A6, .status = .mapped, .mapping = &.{0x03C6}, .status2 = .none, }, + .{ .cp = 0x03A7, .status = .mapped, .mapping = &.{0x03C7}, .status2 = .none, }, + .{ .cp = 0x03A8, .status = .mapped, .mapping = &.{0x03C8}, .status2 = .none, }, + .{ .cp = 0x03A9, .status = .mapped, .mapping = &.{0x03C9}, .status2 = .none, }, + .{ .cp = 0x03AA, .status = .mapped, .mapping = &.{0x03CA}, .status2 = .none, }, + .{ .cp = 0x03AB, .status = .mapped, .mapping = &.{0x03CB}, .status2 = .none, }, + .{ .cp = 0x03C2, .status = .deviation, .mapping = &.{0x03C3}, .status2 = .none, }, + .{ .cp = 0x03CF, .status = .mapped, .mapping = &.{0x03D7}, .status2 = .none, }, + .{ .cp = 0x03D0, .status = .mapped, .mapping = &.{0x03B2}, .status2 = .none, }, + .{ .cp = 0x03D1, .status = .mapped, .mapping = &.{0x03B8}, .status2 = .none, }, + .{ .cp = 0x03D2, .status = .mapped, .mapping = &.{0x03C5}, .status2 = .none, }, + .{ .cp = 0x03D3, .status = .mapped, .mapping = &.{0x03CD}, .status2 = .none, }, + .{ .cp = 0x03D4, .status = .mapped, .mapping = &.{0x03CB}, .status2 = .none, }, + .{ .cp = 0x03D5, .status = .mapped, .mapping = &.{0x03C6}, .status2 = .none, }, + .{ .cp = 0x03D6, .status = .mapped, .mapping = &.{0x03C0}, .status2 = .none, }, + .{ .cp = 0x03D7, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x03D8, .status = .mapped, .mapping = &.{0x03D9}, .status2 = .none, }, + .{ .cp = 0x03D9, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x03DA, .status = .mapped, .mapping = &.{0x03DB}, .status2 = .none, }, + .{ .cp = 0x03DB, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x03DC, .status = .mapped, .mapping = &.{0x03DD}, .status2 = .none, }, + .{ .cp = 0x03DD, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x03DE, .status = .mapped, .mapping = &.{0x03DF}, .status2 = .none, }, + .{ .cp = 0x03DF, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x03E0, .status = .mapped, .mapping = &.{0x03E1}, .status2 = .none, }, + .{ .cp = 0x03E1, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x03E2, .status = .mapped, .mapping = &.{0x03E3}, .status2 = .none, }, + .{ .cp = 0x03E3, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x03E4, .status = .mapped, .mapping = &.{0x03E5}, .status2 = .none, }, + .{ .cp = 0x03E5, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x03E6, .status = .mapped, .mapping = &.{0x03E7}, .status2 = .none, }, + .{ .cp = 0x03E7, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x03E8, .status = .mapped, .mapping = &.{0x03E9}, .status2 = .none, }, + .{ .cp = 0x03E9, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x03EA, .status = .mapped, .mapping = &.{0x03EB}, .status2 = .none, }, + .{ .cp = 0x03EB, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x03EC, .status = .mapped, .mapping = &.{0x03ED}, .status2 = .none, }, + .{ .cp = 0x03ED, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x03EE, .status = .mapped, .mapping = &.{0x03EF}, .status2 = .none, }, + .{ .cp = 0x03EF, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x03F0, .status = .mapped, .mapping = &.{0x03BA}, .status2 = .none, }, + .{ .cp = 0x03F1, .status = .mapped, .mapping = &.{0x03C1}, .status2 = .none, }, + .{ .cp = 0x03F2, .status = .mapped, .mapping = &.{0x03C3}, .status2 = .none, }, + .{ .cp = 0x03F3, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x03F4, .status = .mapped, .mapping = &.{0x03B8}, .status2 = .none, }, + .{ .cp = 0x03F5, .status = .mapped, .mapping = &.{0x03B5}, .status2 = .none, }, + .{ .cp = 0x03F6, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .cp = 0x03F7, .status = .mapped, .mapping = &.{0x03F8}, .status2 = .none, }, + .{ .cp = 0x03F8, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x03F9, .status = .mapped, .mapping = &.{0x03C3}, .status2 = .none, }, + .{ .cp = 0x03FA, .status = .mapped, .mapping = &.{0x03FB}, .status2 = .none, }, + .{ .cp = 0x03FB, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x03FC, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x03FD, .status = .mapped, .mapping = &.{0x037B}, .status2 = .none, }, + .{ .cp = 0x03FE, .status = .mapped, .mapping = &.{0x037C}, .status2 = .none, }, + .{ .cp = 0x03FF, .status = .mapped, .mapping = &.{0x037D}, .status2 = .none, }, + .{ .cp = 0x0400, .status = .mapped, .mapping = &.{0x0450}, .status2 = .none, }, + .{ .cp = 0x0401, .status = .mapped, .mapping = &.{0x0451}, .status2 = .none, }, + .{ .cp = 0x0402, .status = .mapped, .mapping = &.{0x0452}, .status2 = .none, }, + .{ .cp = 0x0403, .status = .mapped, .mapping = &.{0x0453}, .status2 = .none, }, + .{ .cp = 0x0404, .status = .mapped, .mapping = &.{0x0454}, .status2 = .none, }, + .{ .cp = 0x0405, .status = .mapped, .mapping = &.{0x0455}, .status2 = .none, }, + .{ .cp = 0x0406, .status = .mapped, .mapping = &.{0x0456}, .status2 = .none, }, + .{ .cp = 0x0407, .status = .mapped, .mapping = &.{0x0457}, .status2 = .none, }, + .{ .cp = 0x0408, .status = .mapped, .mapping = &.{0x0458}, .status2 = .none, }, + .{ .cp = 0x0409, .status = .mapped, .mapping = &.{0x0459}, .status2 = .none, }, + .{ .cp = 0x040A, .status = .mapped, .mapping = &.{0x045A}, .status2 = .none, }, + .{ .cp = 0x040B, .status = .mapped, .mapping = &.{0x045B}, .status2 = .none, }, + .{ .cp = 0x040C, .status = .mapped, .mapping = &.{0x045C}, .status2 = .none, }, + .{ .cp = 0x040D, .status = .mapped, .mapping = &.{0x045D}, .status2 = .none, }, + .{ .cp = 0x040E, .status = .mapped, .mapping = &.{0x045E}, .status2 = .none, }, + .{ .cp = 0x040F, .status = .mapped, .mapping = &.{0x045F}, .status2 = .none, }, + .{ .cp = 0x0410, .status = .mapped, .mapping = &.{0x0430}, .status2 = .none, }, + .{ .cp = 0x0411, .status = .mapped, .mapping = &.{0x0431}, .status2 = .none, }, + .{ .cp = 0x0412, .status = .mapped, .mapping = &.{0x0432}, .status2 = .none, }, + .{ .cp = 0x0413, .status = .mapped, .mapping = &.{0x0433}, .status2 = .none, }, + .{ .cp = 0x0414, .status = .mapped, .mapping = &.{0x0434}, .status2 = .none, }, + .{ .cp = 0x0415, .status = .mapped, .mapping = &.{0x0435}, .status2 = .none, }, + .{ .cp = 0x0416, .status = .mapped, .mapping = &.{0x0436}, .status2 = .none, }, + .{ .cp = 0x0417, .status = .mapped, .mapping = &.{0x0437}, .status2 = .none, }, + .{ .cp = 0x0418, .status = .mapped, .mapping = &.{0x0438}, .status2 = .none, }, + .{ .cp = 0x0419, .status = .mapped, .mapping = &.{0x0439}, .status2 = .none, }, + .{ .cp = 0x041A, .status = .mapped, .mapping = &.{0x043A}, .status2 = .none, }, + .{ .cp = 0x041B, .status = .mapped, .mapping = &.{0x043B}, .status2 = .none, }, + .{ .cp = 0x041C, .status = .mapped, .mapping = &.{0x043C}, .status2 = .none, }, + .{ .cp = 0x041D, .status = .mapped, .mapping = &.{0x043D}, .status2 = .none, }, + .{ .cp = 0x041E, .status = .mapped, .mapping = &.{0x043E}, .status2 = .none, }, + .{ .cp = 0x041F, .status = .mapped, .mapping = &.{0x043F}, .status2 = .none, }, + .{ .cp = 0x0420, .status = .mapped, .mapping = &.{0x0440}, .status2 = .none, }, + .{ .cp = 0x0421, .status = .mapped, .mapping = &.{0x0441}, .status2 = .none, }, + .{ .cp = 0x0422, .status = .mapped, .mapping = &.{0x0442}, .status2 = .none, }, + .{ .cp = 0x0423, .status = .mapped, .mapping = &.{0x0443}, .status2 = .none, }, + .{ .cp = 0x0424, .status = .mapped, .mapping = &.{0x0444}, .status2 = .none, }, + .{ .cp = 0x0425, .status = .mapped, .mapping = &.{0x0445}, .status2 = .none, }, + .{ .cp = 0x0426, .status = .mapped, .mapping = &.{0x0446}, .status2 = .none, }, + .{ .cp = 0x0427, .status = .mapped, .mapping = &.{0x0447}, .status2 = .none, }, + .{ .cp = 0x0428, .status = .mapped, .mapping = &.{0x0448}, .status2 = .none, }, + .{ .cp = 0x0429, .status = .mapped, .mapping = &.{0x0449}, .status2 = .none, }, + .{ .cp = 0x042A, .status = .mapped, .mapping = &.{0x044A}, .status2 = .none, }, + .{ .cp = 0x042B, .status = .mapped, .mapping = &.{0x044B}, .status2 = .none, }, + .{ .cp = 0x042C, .status = .mapped, .mapping = &.{0x044C}, .status2 = .none, }, + .{ .cp = 0x042D, .status = .mapped, .mapping = &.{0x044D}, .status2 = .none, }, + .{ .cp = 0x042E, .status = .mapped, .mapping = &.{0x044E}, .status2 = .none, }, + .{ .cp = 0x042F, .status = .mapped, .mapping = &.{0x044F}, .status2 = .none, }, + .{ .cp = 0x0450, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x045D, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x0460, .status = .mapped, .mapping = &.{0x0461}, .status2 = .none, }, + .{ .cp = 0x0461, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x0462, .status = .mapped, .mapping = &.{0x0463}, .status2 = .none, }, + .{ .cp = 0x0463, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x0464, .status = .mapped, .mapping = &.{0x0465}, .status2 = .none, }, + .{ .cp = 0x0465, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x0466, .status = .mapped, .mapping = &.{0x0467}, .status2 = .none, }, + .{ .cp = 0x0467, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x0468, .status = .mapped, .mapping = &.{0x0469}, .status2 = .none, }, + .{ .cp = 0x0469, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x046A, .status = .mapped, .mapping = &.{0x046B}, .status2 = .none, }, + .{ .cp = 0x046B, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x046C, .status = .mapped, .mapping = &.{0x046D}, .status2 = .none, }, + .{ .cp = 0x046D, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x046E, .status = .mapped, .mapping = &.{0x046F}, .status2 = .none, }, + .{ .cp = 0x046F, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x0470, .status = .mapped, .mapping = &.{0x0471}, .status2 = .none, }, + .{ .cp = 0x0471, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x0472, .status = .mapped, .mapping = &.{0x0473}, .status2 = .none, }, + .{ .cp = 0x0473, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x0474, .status = .mapped, .mapping = &.{0x0475}, .status2 = .none, }, + .{ .cp = 0x0475, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x0476, .status = .mapped, .mapping = &.{0x0477}, .status2 = .none, }, + .{ .cp = 0x0477, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x0478, .status = .mapped, .mapping = &.{0x0479}, .status2 = .none, }, + .{ .cp = 0x0479, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x047A, .status = .mapped, .mapping = &.{0x047B}, .status2 = .none, }, + .{ .cp = 0x047B, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x047C, .status = .mapped, .mapping = &.{0x047D}, .status2 = .none, }, + .{ .cp = 0x047D, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x047E, .status = .mapped, .mapping = &.{0x047F}, .status2 = .none, }, + .{ .cp = 0x047F, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x0480, .status = .mapped, .mapping = &.{0x0481}, .status2 = .none, }, + .{ .cp = 0x0481, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x0482, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .cp = 0x0487, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x048A, .status = .mapped, .mapping = &.{0x048B}, .status2 = .none, }, + .{ .cp = 0x048B, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x048C, .status = .mapped, .mapping = &.{0x048D}, .status2 = .none, }, + .{ .cp = 0x048D, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x048E, .status = .mapped, .mapping = &.{0x048F}, .status2 = .none, }, + .{ .cp = 0x048F, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x0490, .status = .mapped, .mapping = &.{0x0491}, .status2 = .none, }, + .{ .cp = 0x0491, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x0492, .status = .mapped, .mapping = &.{0x0493}, .status2 = .none, }, + .{ .cp = 0x0493, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x0494, .status = .mapped, .mapping = &.{0x0495}, .status2 = .none, }, + .{ .cp = 0x0495, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x0496, .status = .mapped, .mapping = &.{0x0497}, .status2 = .none, }, + .{ .cp = 0x0497, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x0498, .status = .mapped, .mapping = &.{0x0499}, .status2 = .none, }, + .{ .cp = 0x0499, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x049A, .status = .mapped, .mapping = &.{0x049B}, .status2 = .none, }, + .{ .cp = 0x049B, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x049C, .status = .mapped, .mapping = &.{0x049D}, .status2 = .none, }, + .{ .cp = 0x049D, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x049E, .status = .mapped, .mapping = &.{0x049F}, .status2 = .none, }, + .{ .cp = 0x049F, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x04A0, .status = .mapped, .mapping = &.{0x04A1}, .status2 = .none, }, + .{ .cp = 0x04A1, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x04A2, .status = .mapped, .mapping = &.{0x04A3}, .status2 = .none, }, + .{ .cp = 0x04A3, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x04A4, .status = .mapped, .mapping = &.{0x04A5}, .status2 = .none, }, + .{ .cp = 0x04A5, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x04A6, .status = .mapped, .mapping = &.{0x04A7}, .status2 = .none, }, + .{ .cp = 0x04A7, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x04A8, .status = .mapped, .mapping = &.{0x04A9}, .status2 = .none, }, + .{ .cp = 0x04A9, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x04AA, .status = .mapped, .mapping = &.{0x04AB}, .status2 = .none, }, + .{ .cp = 0x04AB, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x04AC, .status = .mapped, .mapping = &.{0x04AD}, .status2 = .none, }, + .{ .cp = 0x04AD, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x04AE, .status = .mapped, .mapping = &.{0x04AF}, .status2 = .none, }, + .{ .cp = 0x04AF, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x04B0, .status = .mapped, .mapping = &.{0x04B1}, .status2 = .none, }, + .{ .cp = 0x04B1, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x04B2, .status = .mapped, .mapping = &.{0x04B3}, .status2 = .none, }, + .{ .cp = 0x04B3, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x04B4, .status = .mapped, .mapping = &.{0x04B5}, .status2 = .none, }, + .{ .cp = 0x04B5, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x04B6, .status = .mapped, .mapping = &.{0x04B7}, .status2 = .none, }, + .{ .cp = 0x04B7, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x04B8, .status = .mapped, .mapping = &.{0x04B9}, .status2 = .none, }, + .{ .cp = 0x04B9, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x04BA, .status = .mapped, .mapping = &.{0x04BB}, .status2 = .none, }, + .{ .cp = 0x04BB, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x04BC, .status = .mapped, .mapping = &.{0x04BD}, .status2 = .none, }, + .{ .cp = 0x04BD, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x04BE, .status = .mapped, .mapping = &.{0x04BF}, .status2 = .none, }, + .{ .cp = 0x04BF, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x04C0, .status = .mapped, .mapping = &.{0x04CF}, .status2 = .none, }, + .{ .cp = 0x04C1, .status = .mapped, .mapping = &.{0x04C2}, .status2 = .none, }, + .{ .cp = 0x04C2, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x04C3, .status = .mapped, .mapping = &.{0x04C4}, .status2 = .none, }, + .{ .cp = 0x04C4, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x04C5, .status = .mapped, .mapping = &.{0x04C6}, .status2 = .none, }, + .{ .cp = 0x04C6, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x04C7, .status = .mapped, .mapping = &.{0x04C8}, .status2 = .none, }, + .{ .cp = 0x04C8, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x04C9, .status = .mapped, .mapping = &.{0x04CA}, .status2 = .none, }, + .{ .cp = 0x04CA, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x04CB, .status = .mapped, .mapping = &.{0x04CC}, .status2 = .none, }, + .{ .cp = 0x04CC, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x04CD, .status = .mapped, .mapping = &.{0x04CE}, .status2 = .none, }, + .{ .cp = 0x04CE, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x04CF, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x04D0, .status = .mapped, .mapping = &.{0x04D1}, .status2 = .none, }, + .{ .cp = 0x04D1, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x04D2, .status = .mapped, .mapping = &.{0x04D3}, .status2 = .none, }, + .{ .cp = 0x04D3, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x04D4, .status = .mapped, .mapping = &.{0x04D5}, .status2 = .none, }, + .{ .cp = 0x04D5, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x04D6, .status = .mapped, .mapping = &.{0x04D7}, .status2 = .none, }, + .{ .cp = 0x04D7, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x04D8, .status = .mapped, .mapping = &.{0x04D9}, .status2 = .none, }, + .{ .cp = 0x04D9, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x04DA, .status = .mapped, .mapping = &.{0x04DB}, .status2 = .none, }, + .{ .cp = 0x04DB, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x04DC, .status = .mapped, .mapping = &.{0x04DD}, .status2 = .none, }, + .{ .cp = 0x04DD, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x04DE, .status = .mapped, .mapping = &.{0x04DF}, .status2 = .none, }, + .{ .cp = 0x04DF, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x04E0, .status = .mapped, .mapping = &.{0x04E1}, .status2 = .none, }, + .{ .cp = 0x04E1, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x04E2, .status = .mapped, .mapping = &.{0x04E3}, .status2 = .none, }, + .{ .cp = 0x04E3, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x04E4, .status = .mapped, .mapping = &.{0x04E5}, .status2 = .none, }, + .{ .cp = 0x04E5, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x04E6, .status = .mapped, .mapping = &.{0x04E7}, .status2 = .none, }, + .{ .cp = 0x04E7, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x04E8, .status = .mapped, .mapping = &.{0x04E9}, .status2 = .none, }, + .{ .cp = 0x04E9, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x04EA, .status = .mapped, .mapping = &.{0x04EB}, .status2 = .none, }, + .{ .cp = 0x04EB, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x04EC, .status = .mapped, .mapping = &.{0x04ED}, .status2 = .none, }, + .{ .cp = 0x04ED, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x04EE, .status = .mapped, .mapping = &.{0x04EF}, .status2 = .none, }, + .{ .cp = 0x04EF, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x04F0, .status = .mapped, .mapping = &.{0x04F1}, .status2 = .none, }, + .{ .cp = 0x04F1, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x04F2, .status = .mapped, .mapping = &.{0x04F3}, .status2 = .none, }, + .{ .cp = 0x04F3, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x04F4, .status = .mapped, .mapping = &.{0x04F5}, .status2 = .none, }, + .{ .cp = 0x04F5, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x04F6, .status = .mapped, .mapping = &.{0x04F7}, .status2 = .none, }, + .{ .cp = 0x04F7, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x04F8, .status = .mapped, .mapping = &.{0x04F9}, .status2 = .none, }, + .{ .cp = 0x04F9, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x04FA, .status = .mapped, .mapping = &.{0x04FB}, .status2 = .none, }, + .{ .cp = 0x04FB, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x04FC, .status = .mapped, .mapping = &.{0x04FD}, .status2 = .none, }, + .{ .cp = 0x04FD, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x04FE, .status = .mapped, .mapping = &.{0x04FF}, .status2 = .none, }, + .{ .cp = 0x04FF, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x0500, .status = .mapped, .mapping = &.{0x0501}, .status2 = .none, }, + .{ .cp = 0x0501, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x0502, .status = .mapped, .mapping = &.{0x0503}, .status2 = .none, }, + .{ .cp = 0x0503, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x0504, .status = .mapped, .mapping = &.{0x0505}, .status2 = .none, }, + .{ .cp = 0x0505, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x0506, .status = .mapped, .mapping = &.{0x0507}, .status2 = .none, }, + .{ .cp = 0x0507, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x0508, .status = .mapped, .mapping = &.{0x0509}, .status2 = .none, }, + .{ .cp = 0x0509, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x050A, .status = .mapped, .mapping = &.{0x050B}, .status2 = .none, }, + .{ .cp = 0x050B, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x050C, .status = .mapped, .mapping = &.{0x050D}, .status2 = .none, }, + .{ .cp = 0x050D, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x050E, .status = .mapped, .mapping = &.{0x050F}, .status2 = .none, }, + .{ .cp = 0x050F, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x0510, .status = .mapped, .mapping = &.{0x0511}, .status2 = .none, }, + .{ .cp = 0x0511, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x0512, .status = .mapped, .mapping = &.{0x0513}, .status2 = .none, }, + .{ .cp = 0x0513, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x0514, .status = .mapped, .mapping = &.{0x0515}, .status2 = .none, }, + .{ .cp = 0x0515, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x0516, .status = .mapped, .mapping = &.{0x0517}, .status2 = .none, }, + .{ .cp = 0x0517, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x0518, .status = .mapped, .mapping = &.{0x0519}, .status2 = .none, }, + .{ .cp = 0x0519, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x051A, .status = .mapped, .mapping = &.{0x051B}, .status2 = .none, }, + .{ .cp = 0x051B, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x051C, .status = .mapped, .mapping = &.{0x051D}, .status2 = .none, }, + .{ .cp = 0x051D, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x051E, .status = .mapped, .mapping = &.{0x051F}, .status2 = .none, }, + .{ .cp = 0x051F, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x0520, .status = .mapped, .mapping = &.{0x0521}, .status2 = .none, }, + .{ .cp = 0x0521, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x0522, .status = .mapped, .mapping = &.{0x0523}, .status2 = .none, }, + .{ .cp = 0x0523, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x0524, .status = .mapped, .mapping = &.{0x0525}, .status2 = .none, }, + .{ .cp = 0x0525, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x0526, .status = .mapped, .mapping = &.{0x0527}, .status2 = .none, }, + .{ .cp = 0x0527, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x0528, .status = .mapped, .mapping = &.{0x0529}, .status2 = .none, }, + .{ .cp = 0x0529, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x052A, .status = .mapped, .mapping = &.{0x052B}, .status2 = .none, }, + .{ .cp = 0x052B, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x052C, .status = .mapped, .mapping = &.{0x052D}, .status2 = .none, }, + .{ .cp = 0x052D, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x052E, .status = .mapped, .mapping = &.{0x052F}, .status2 = .none, }, + .{ .cp = 0x052F, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x0530, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x0531, .status = .mapped, .mapping = &.{0x0561}, .status2 = .none, }, + .{ .cp = 0x0532, .status = .mapped, .mapping = &.{0x0562}, .status2 = .none, }, + .{ .cp = 0x0533, .status = .mapped, .mapping = &.{0x0563}, .status2 = .none, }, + .{ .cp = 0x0534, .status = .mapped, .mapping = &.{0x0564}, .status2 = .none, }, + .{ .cp = 0x0535, .status = .mapped, .mapping = &.{0x0565}, .status2 = .none, }, + .{ .cp = 0x0536, .status = .mapped, .mapping = &.{0x0566}, .status2 = .none, }, + .{ .cp = 0x0537, .status = .mapped, .mapping = &.{0x0567}, .status2 = .none, }, + .{ .cp = 0x0538, .status = .mapped, .mapping = &.{0x0568}, .status2 = .none, }, + .{ .cp = 0x0539, .status = .mapped, .mapping = &.{0x0569}, .status2 = .none, }, + .{ .cp = 0x053A, .status = .mapped, .mapping = &.{0x056A}, .status2 = .none, }, + .{ .cp = 0x053B, .status = .mapped, .mapping = &.{0x056B}, .status2 = .none, }, + .{ .cp = 0x053C, .status = .mapped, .mapping = &.{0x056C}, .status2 = .none, }, + .{ .cp = 0x053D, .status = .mapped, .mapping = &.{0x056D}, .status2 = .none, }, + .{ .cp = 0x053E, .status = .mapped, .mapping = &.{0x056E}, .status2 = .none, }, + .{ .cp = 0x053F, .status = .mapped, .mapping = &.{0x056F}, .status2 = .none, }, + .{ .cp = 0x0540, .status = .mapped, .mapping = &.{0x0570}, .status2 = .none, }, + .{ .cp = 0x0541, .status = .mapped, .mapping = &.{0x0571}, .status2 = .none, }, + .{ .cp = 0x0542, .status = .mapped, .mapping = &.{0x0572}, .status2 = .none, }, + .{ .cp = 0x0543, .status = .mapped, .mapping = &.{0x0573}, .status2 = .none, }, + .{ .cp = 0x0544, .status = .mapped, .mapping = &.{0x0574}, .status2 = .none, }, + .{ .cp = 0x0545, .status = .mapped, .mapping = &.{0x0575}, .status2 = .none, }, + .{ .cp = 0x0546, .status = .mapped, .mapping = &.{0x0576}, .status2 = .none, }, + .{ .cp = 0x0547, .status = .mapped, .mapping = &.{0x0577}, .status2 = .none, }, + .{ .cp = 0x0548, .status = .mapped, .mapping = &.{0x0578}, .status2 = .none, }, + .{ .cp = 0x0549, .status = .mapped, .mapping = &.{0x0579}, .status2 = .none, }, + .{ .cp = 0x054A, .status = .mapped, .mapping = &.{0x057A}, .status2 = .none, }, + .{ .cp = 0x054B, .status = .mapped, .mapping = &.{0x057B}, .status2 = .none, }, + .{ .cp = 0x054C, .status = .mapped, .mapping = &.{0x057C}, .status2 = .none, }, + .{ .cp = 0x054D, .status = .mapped, .mapping = &.{0x057D}, .status2 = .none, }, + .{ .cp = 0x054E, .status = .mapped, .mapping = &.{0x057E}, .status2 = .none, }, + .{ .cp = 0x054F, .status = .mapped, .mapping = &.{0x057F}, .status2 = .none, }, + .{ .cp = 0x0550, .status = .mapped, .mapping = &.{0x0580}, .status2 = .none, }, + .{ .cp = 0x0551, .status = .mapped, .mapping = &.{0x0581}, .status2 = .none, }, + .{ .cp = 0x0552, .status = .mapped, .mapping = &.{0x0582}, .status2 = .none, }, + .{ .cp = 0x0553, .status = .mapped, .mapping = &.{0x0583}, .status2 = .none, }, + .{ .cp = 0x0554, .status = .mapped, .mapping = &.{0x0584}, .status2 = .none, }, + .{ .cp = 0x0555, .status = .mapped, .mapping = &.{0x0585}, .status2 = .none, }, + .{ .cp = 0x0556, .status = .mapped, .mapping = &.{0x0586}, .status2 = .none, }, + .{ .cp = 0x0559, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x0560, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x0587, .status = .mapped, .mapping = &.{0x0565,0x0582}, .status2 = .none, }, + .{ .cp = 0x0588, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x0589, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .cp = 0x058A, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .cp = 0x058F, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .cp = 0x0590, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x05A2, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x05BA, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x05BE, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .cp = 0x05BF, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x05C0, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .cp = 0x05C3, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .cp = 0x05C4, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x05C5, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x05C6, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .cp = 0x05C7, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x05EF, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x0604, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x0605, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x060B, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .cp = 0x060C, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .cp = 0x061B, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .cp = 0x061C, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x061D, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .cp = 0x061E, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .cp = 0x061F, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .cp = 0x0620, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x0640, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .cp = 0x065F, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x0675, .status = .mapped, .mapping = &.{0x0627,0x0674}, .status2 = .none, }, + .{ .cp = 0x0676, .status = .mapped, .mapping = &.{0x0648,0x0674}, .status2 = .none, }, + .{ .cp = 0x0677, .status = .mapped, .mapping = &.{0x06C7,0x0674}, .status2 = .none, }, + .{ .cp = 0x0678, .status = .mapped, .mapping = &.{0x064A,0x0674}, .status2 = .none, }, + .{ .cp = 0x06BF, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x06CF, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x06D4, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .cp = 0x06DD, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x06DE, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .cp = 0x06E9, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .cp = 0x06FF, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x070E, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x070F, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x07B1, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x07FD, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x083F, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x085E, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .cp = 0x085F, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x0888, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .cp = 0x088F, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x0897, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x08A0, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x08A1, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x08B5, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x08D3, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x08E2, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x08E3, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x08FF, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x0900, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x0904, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x094E, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x094F, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x0955, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x0958, .status = .mapped, .mapping = &.{0x0915,0x093C}, .status2 = .none, }, + .{ .cp = 0x0959, .status = .mapped, .mapping = &.{0x0916,0x093C}, .status2 = .none, }, + .{ .cp = 0x095A, .status = .mapped, .mapping = &.{0x0917,0x093C}, .status2 = .none, }, + .{ .cp = 0x095B, .status = .mapped, .mapping = &.{0x091C,0x093C}, .status2 = .none, }, + .{ .cp = 0x095C, .status = .mapped, .mapping = &.{0x0921,0x093C}, .status2 = .none, }, + .{ .cp = 0x095D, .status = .mapped, .mapping = &.{0x0922,0x093C}, .status2 = .none, }, + .{ .cp = 0x095E, .status = .mapped, .mapping = &.{0x092B,0x093C}, .status2 = .none, }, + .{ .cp = 0x095F, .status = .mapped, .mapping = &.{0x092F,0x093C}, .status2 = .none, }, + .{ .cp = 0x0970, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .cp = 0x0978, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x097D, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x0980, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x0984, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x09A9, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x09B1, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x09B2, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x09BC, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x09BD, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x09CE, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x09D7, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x09DC, .status = .mapped, .mapping = &.{0x09A1,0x09BC}, .status2 = .none, }, + .{ .cp = 0x09DD, .status = .mapped, .mapping = &.{0x09A2,0x09BC}, .status2 = .none, }, + .{ .cp = 0x09DE, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x09DF, .status = .mapped, .mapping = &.{0x09AF,0x09BC}, .status2 = .none, }, + .{ .cp = 0x09FB, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .cp = 0x09FC, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x09FD, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .cp = 0x09FE, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x0A01, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x0A02, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x0A03, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x0A04, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x0A29, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x0A31, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x0A32, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x0A33, .status = .mapped, .mapping = &.{0x0A32,0x0A3C}, .status2 = .none, }, + .{ .cp = 0x0A34, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x0A35, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x0A36, .status = .mapped, .mapping = &.{0x0A38,0x0A3C}, .status2 = .none, }, + .{ .cp = 0x0A37, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x0A3C, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x0A3D, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x0A51, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x0A59, .status = .mapped, .mapping = &.{0x0A16,0x0A3C}, .status2 = .none, }, + .{ .cp = 0x0A5A, .status = .mapped, .mapping = &.{0x0A17,0x0A3C}, .status2 = .none, }, + .{ .cp = 0x0A5B, .status = .mapped, .mapping = &.{0x0A1C,0x0A3C}, .status2 = .none, }, + .{ .cp = 0x0A5C, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x0A5D, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x0A5E, .status = .mapped, .mapping = &.{0x0A2B,0x0A3C}, .status2 = .none, }, + .{ .cp = 0x0A75, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x0A76, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .cp = 0x0A84, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x0A8C, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x0A8D, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x0A8E, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x0A92, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x0AA9, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x0AB1, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x0AB4, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x0AC6, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x0ACA, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x0AD0, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x0AE0, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x0AF0, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .cp = 0x0AF1, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .cp = 0x0AF9, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x0B00, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x0B04, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x0B29, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x0B31, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x0B34, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x0B35, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x0B44, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x0B55, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x0B5C, .status = .mapped, .mapping = &.{0x0B21,0x0B3C}, .status2 = .none, }, + .{ .cp = 0x0B5D, .status = .mapped, .mapping = &.{0x0B22,0x0B3C}, .status2 = .none, }, + .{ .cp = 0x0B5E, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x0B70, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .cp = 0x0B71, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x0B84, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x0B91, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x0B9B, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x0B9C, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x0B9D, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x0BB6, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x0BC9, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x0BD0, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x0BD7, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x0BE6, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x0C00, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x0C04, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x0C0D, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x0C11, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x0C29, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x0C34, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x0C3C, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x0C3D, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x0C45, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x0C49, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x0C57, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x0C5A, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x0C5B, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x0C5C, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x0C5D, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x0C77, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .cp = 0x0C80, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x0C81, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x0C84, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .cp = 0x0C8D, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x0C91, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x0CA9, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x0CB4, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x0CC5, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x0CC9, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x0CDC, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x0CDD, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x0CDE, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x0CDF, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x0CF0, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x0CF3, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x0D00, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x0D01, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x0D04, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x0D0D, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x0D11, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x0D29, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x0D3A, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x0D3D, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x0D44, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x0D45, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x0D49, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x0D4E, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x0D4F, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .cp = 0x0D57, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x0D5F, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x0D79, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .cp = 0x0D80, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x0D81, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x0D84, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x0DB2, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x0DBC, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x0DBD, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x0DCA, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x0DD5, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x0DD6, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x0DD7, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x0DF4, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .cp = 0x0E33, .status = .mapped, .mapping = &.{0x0E4D,0x0E32}, .status2 = .none, }, + .{ .cp = 0x0E3F, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .cp = 0x0E4F, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .cp = 0x0E83, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x0E84, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x0E85, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x0E86, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x0E89, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x0E8A, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x0E8B, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x0E8C, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x0E8D, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x0E98, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x0EA0, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x0EA4, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x0EA5, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x0EA6, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x0EA7, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x0EAC, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x0EB3, .status = .mapped, .mapping = &.{0x0ECD,0x0EB2}, .status2 = .none, }, + .{ .cp = 0x0EBA, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x0EC5, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x0EC6, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x0EC7, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x0ECE, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x0ECF, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x0EDC, .status = .mapped, .mapping = &.{0x0EAB,0x0E99}, .status2 = .none, }, + .{ .cp = 0x0EDD, .status = .mapped, .mapping = &.{0x0EAB,0x0EA1}, .status2 = .none, }, + .{ .cp = 0x0F00, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x0F0B, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x0F0C, .status = .mapped, .mapping = &.{0x0F0B}, .status2 = .none, }, + .{ .cp = 0x0F35, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x0F36, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .cp = 0x0F37, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x0F38, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .cp = 0x0F39, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x0F43, .status = .mapped, .mapping = &.{0x0F42,0x0FB7}, .status2 = .none, }, + .{ .cp = 0x0F48, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x0F4D, .status = .mapped, .mapping = &.{0x0F4C,0x0FB7}, .status2 = .none, }, + .{ .cp = 0x0F52, .status = .mapped, .mapping = &.{0x0F51,0x0FB7}, .status2 = .none, }, + .{ .cp = 0x0F57, .status = .mapped, .mapping = &.{0x0F56,0x0FB7}, .status2 = .none, }, + .{ .cp = 0x0F5C, .status = .mapped, .mapping = &.{0x0F5B,0x0FB7}, .status2 = .none, }, + .{ .cp = 0x0F69, .status = .mapped, .mapping = &.{0x0F40,0x0FB5}, .status2 = .none, }, + .{ .cp = 0x0F6A, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x0F73, .status = .mapped, .mapping = &.{0x0F71,0x0F72}, .status2 = .none, }, + .{ .cp = 0x0F74, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x0F75, .status = .mapped, .mapping = &.{0x0F71,0x0F74}, .status2 = .none, }, + .{ .cp = 0x0F76, .status = .mapped, .mapping = &.{0x0FB2,0x0F80}, .status2 = .none, }, + .{ .cp = 0x0F77, .status = .mapped, .mapping = &.{0x0FB2,0x0F71,0x0F80}, .status2 = .none, }, + .{ .cp = 0x0F78, .status = .mapped, .mapping = &.{0x0FB3,0x0F80}, .status2 = .none, }, + .{ .cp = 0x0F79, .status = .mapped, .mapping = &.{0x0FB3,0x0F71,0x0F80}, .status2 = .none, }, + .{ .cp = 0x0F81, .status = .mapped, .mapping = &.{0x0F71,0x0F80}, .status2 = .none, }, + .{ .cp = 0x0F85, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .cp = 0x0F93, .status = .mapped, .mapping = &.{0x0F92,0x0FB7}, .status2 = .none, }, + .{ .cp = 0x0F96, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x0F97, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x0F98, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x0F9D, .status = .mapped, .mapping = &.{0x0F9C,0x0FB7}, .status2 = .none, }, + .{ .cp = 0x0FA2, .status = .mapped, .mapping = &.{0x0FA1,0x0FB7}, .status2 = .none, }, + .{ .cp = 0x0FA7, .status = .mapped, .mapping = &.{0x0FA6,0x0FB7}, .status2 = .none, }, + .{ .cp = 0x0FAC, .status = .mapped, .mapping = &.{0x0FAB,0x0FB7}, .status2 = .none, }, + .{ .cp = 0x0FAD, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x0FB8, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x0FB9, .status = .mapped, .mapping = &.{0x0F90,0x0FB5}, .status2 = .none, }, + .{ .cp = 0x0FBD, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x0FC6, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x0FCD, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x0FCE, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .cp = 0x0FCF, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .cp = 0x1022, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x1028, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x102B, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x10A0, .status = .mapped, .mapping = &.{0x2D00}, .status2 = .none, }, + .{ .cp = 0x10A1, .status = .mapped, .mapping = &.{0x2D01}, .status2 = .none, }, + .{ .cp = 0x10A2, .status = .mapped, .mapping = &.{0x2D02}, .status2 = .none, }, + .{ .cp = 0x10A3, .status = .mapped, .mapping = &.{0x2D03}, .status2 = .none, }, + .{ .cp = 0x10A4, .status = .mapped, .mapping = &.{0x2D04}, .status2 = .none, }, + .{ .cp = 0x10A5, .status = .mapped, .mapping = &.{0x2D05}, .status2 = .none, }, + .{ .cp = 0x10A6, .status = .mapped, .mapping = &.{0x2D06}, .status2 = .none, }, + .{ .cp = 0x10A7, .status = .mapped, .mapping = &.{0x2D07}, .status2 = .none, }, + .{ .cp = 0x10A8, .status = .mapped, .mapping = &.{0x2D08}, .status2 = .none, }, + .{ .cp = 0x10A9, .status = .mapped, .mapping = &.{0x2D09}, .status2 = .none, }, + .{ .cp = 0x10AA, .status = .mapped, .mapping = &.{0x2D0A}, .status2 = .none, }, + .{ .cp = 0x10AB, .status = .mapped, .mapping = &.{0x2D0B}, .status2 = .none, }, + .{ .cp = 0x10AC, .status = .mapped, .mapping = &.{0x2D0C}, .status2 = .none, }, + .{ .cp = 0x10AD, .status = .mapped, .mapping = &.{0x2D0D}, .status2 = .none, }, + .{ .cp = 0x10AE, .status = .mapped, .mapping = &.{0x2D0E}, .status2 = .none, }, + .{ .cp = 0x10AF, .status = .mapped, .mapping = &.{0x2D0F}, .status2 = .none, }, + .{ .cp = 0x10B0, .status = .mapped, .mapping = &.{0x2D10}, .status2 = .none, }, + .{ .cp = 0x10B1, .status = .mapped, .mapping = &.{0x2D11}, .status2 = .none, }, + .{ .cp = 0x10B2, .status = .mapped, .mapping = &.{0x2D12}, .status2 = .none, }, + .{ .cp = 0x10B3, .status = .mapped, .mapping = &.{0x2D13}, .status2 = .none, }, + .{ .cp = 0x10B4, .status = .mapped, .mapping = &.{0x2D14}, .status2 = .none, }, + .{ .cp = 0x10B5, .status = .mapped, .mapping = &.{0x2D15}, .status2 = .none, }, + .{ .cp = 0x10B6, .status = .mapped, .mapping = &.{0x2D16}, .status2 = .none, }, + .{ .cp = 0x10B7, .status = .mapped, .mapping = &.{0x2D17}, .status2 = .none, }, + .{ .cp = 0x10B8, .status = .mapped, .mapping = &.{0x2D18}, .status2 = .none, }, + .{ .cp = 0x10B9, .status = .mapped, .mapping = &.{0x2D19}, .status2 = .none, }, + .{ .cp = 0x10BA, .status = .mapped, .mapping = &.{0x2D1A}, .status2 = .none, }, + .{ .cp = 0x10BB, .status = .mapped, .mapping = &.{0x2D1B}, .status2 = .none, }, + .{ .cp = 0x10BC, .status = .mapped, .mapping = &.{0x2D1C}, .status2 = .none, }, + .{ .cp = 0x10BD, .status = .mapped, .mapping = &.{0x2D1D}, .status2 = .none, }, + .{ .cp = 0x10BE, .status = .mapped, .mapping = &.{0x2D1E}, .status2 = .none, }, + .{ .cp = 0x10BF, .status = .mapped, .mapping = &.{0x2D1F}, .status2 = .none, }, + .{ .cp = 0x10C0, .status = .mapped, .mapping = &.{0x2D20}, .status2 = .none, }, + .{ .cp = 0x10C1, .status = .mapped, .mapping = &.{0x2D21}, .status2 = .none, }, + .{ .cp = 0x10C2, .status = .mapped, .mapping = &.{0x2D22}, .status2 = .none, }, + .{ .cp = 0x10C3, .status = .mapped, .mapping = &.{0x2D23}, .status2 = .none, }, + .{ .cp = 0x10C4, .status = .mapped, .mapping = &.{0x2D24}, .status2 = .none, }, + .{ .cp = 0x10C5, .status = .mapped, .mapping = &.{0x2D25}, .status2 = .none, }, + .{ .cp = 0x10C6, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x10C7, .status = .mapped, .mapping = &.{0x2D27}, .status2 = .none, }, + .{ .cp = 0x10CD, .status = .mapped, .mapping = &.{0x2D2D}, .status2 = .none, }, + .{ .cp = 0x10FB, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .cp = 0x10FC, .status = .mapped, .mapping = &.{0x10DC}, .status2 = .none, }, + .{ .cp = 0x1207, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x1247, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x1248, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x1249, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x1257, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x1258, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x1259, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x1287, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x1288, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x1289, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x12AF, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x12B0, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x12B1, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x12BF, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x12C0, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x12C1, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x12CF, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x12D7, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x12EF, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x130F, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x1310, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x1311, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x131F, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x1347, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x135F, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x1360, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .cp = 0x13F5, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x13F8, .status = .mapped, .mapping = &.{0x13F0}, .status2 = .none, }, + .{ .cp = 0x13F9, .status = .mapped, .mapping = &.{0x13F1}, .status2 = .none, }, + .{ .cp = 0x13FA, .status = .mapped, .mapping = &.{0x13F2}, .status2 = .none, }, + .{ .cp = 0x13FB, .status = .mapped, .mapping = &.{0x13F3}, .status2 = .none, }, + .{ .cp = 0x13FC, .status = .mapped, .mapping = &.{0x13F4}, .status2 = .none, }, + .{ .cp = 0x13FD, .status = .mapped, .mapping = &.{0x13F5}, .status2 = .none, }, + .{ .cp = 0x1400, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .cp = 0x1680, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x170D, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x1715, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x171F, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x176D, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x1771, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x17D7, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x17DC, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x17DD, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x180F, .status = .ignored, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x1878, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x18AA, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x191F, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x1940, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .cp = 0x19DA, .status = .valid, .mapping = &.{}, .status2 = .XV8, }, + .{ .cp = 0x1A5F, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x1AA7, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x1ABE, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .cp = 0x1B4C, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x1B4D, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x1B7F, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .cp = 0x1C80, .status = .mapped, .mapping = &.{0x0432}, .status2 = .none, }, + .{ .cp = 0x1C81, .status = .mapped, .mapping = &.{0x0434}, .status2 = .none, }, + .{ .cp = 0x1C82, .status = .mapped, .mapping = &.{0x043E}, .status2 = .none, }, + .{ .cp = 0x1C83, .status = .mapped, .mapping = &.{0x0441}, .status2 = .none, }, + .{ .cp = 0x1C86, .status = .mapped, .mapping = &.{0x044A}, .status2 = .none, }, + .{ .cp = 0x1C87, .status = .mapped, .mapping = &.{0x0463}, .status2 = .none, }, + .{ .cp = 0x1C88, .status = .mapped, .mapping = &.{0xA64B}, .status2 = .none, }, + .{ .cp = 0x1C89, .status = .mapped, .mapping = &.{0x1C8A}, .status2 = .none, }, + .{ .cp = 0x1C8A, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x1C90, .status = .mapped, .mapping = &.{0x10D0}, .status2 = .none, }, + .{ .cp = 0x1C91, .status = .mapped, .mapping = &.{0x10D1}, .status2 = .none, }, + .{ .cp = 0x1C92, .status = .mapped, .mapping = &.{0x10D2}, .status2 = .none, }, + .{ .cp = 0x1C93, .status = .mapped, .mapping = &.{0x10D3}, .status2 = .none, }, + .{ .cp = 0x1C94, .status = .mapped, .mapping = &.{0x10D4}, .status2 = .none, }, + .{ .cp = 0x1C95, .status = .mapped, .mapping = &.{0x10D5}, .status2 = .none, }, + .{ .cp = 0x1C96, .status = .mapped, .mapping = &.{0x10D6}, .status2 = .none, }, + .{ .cp = 0x1C97, .status = .mapped, .mapping = &.{0x10D7}, .status2 = .none, }, + .{ .cp = 0x1C98, .status = .mapped, .mapping = &.{0x10D8}, .status2 = .none, }, + .{ .cp = 0x1C99, .status = .mapped, .mapping = &.{0x10D9}, .status2 = .none, }, + .{ .cp = 0x1C9A, .status = .mapped, .mapping = &.{0x10DA}, .status2 = .none, }, + .{ .cp = 0x1C9B, .status = .mapped, .mapping = &.{0x10DB}, .status2 = .none, }, + .{ .cp = 0x1C9C, .status = .mapped, .mapping = &.{0x10DC}, .status2 = .none, }, + .{ .cp = 0x1C9D, .status = .mapped, .mapping = &.{0x10DD}, .status2 = .none, }, + .{ .cp = 0x1C9E, .status = .mapped, .mapping = &.{0x10DE}, .status2 = .none, }, + .{ .cp = 0x1C9F, .status = .mapped, .mapping = &.{0x10DF}, .status2 = .none, }, + .{ .cp = 0x1CA0, .status = .mapped, .mapping = &.{0x10E0}, .status2 = .none, }, + .{ .cp = 0x1CA1, .status = .mapped, .mapping = &.{0x10E1}, .status2 = .none, }, + .{ .cp = 0x1CA2, .status = .mapped, .mapping = &.{0x10E2}, .status2 = .none, }, + .{ .cp = 0x1CA3, .status = .mapped, .mapping = &.{0x10E3}, .status2 = .none, }, + .{ .cp = 0x1CA4, .status = .mapped, .mapping = &.{0x10E4}, .status2 = .none, }, + .{ .cp = 0x1CA5, .status = .mapped, .mapping = &.{0x10E5}, .status2 = .none, }, + .{ .cp = 0x1CA6, .status = .mapped, .mapping = &.{0x10E6}, .status2 = .none, }, + .{ .cp = 0x1CA7, .status = .mapped, .mapping = &.{0x10E7}, .status2 = .none, }, + .{ .cp = 0x1CA8, .status = .mapped, .mapping = &.{0x10E8}, .status2 = .none, }, + .{ .cp = 0x1CA9, .status = .mapped, .mapping = &.{0x10E9}, .status2 = .none, }, + .{ .cp = 0x1CAA, .status = .mapped, .mapping = &.{0x10EA}, .status2 = .none, }, + .{ .cp = 0x1CAB, .status = .mapped, .mapping = &.{0x10EB}, .status2 = .none, }, + .{ .cp = 0x1CAC, .status = .mapped, .mapping = &.{0x10EC}, .status2 = .none, }, + .{ .cp = 0x1CAD, .status = .mapped, .mapping = &.{0x10ED}, .status2 = .none, }, + .{ .cp = 0x1CAE, .status = .mapped, .mapping = &.{0x10EE}, .status2 = .none, }, + .{ .cp = 0x1CAF, .status = .mapped, .mapping = &.{0x10EF}, .status2 = .none, }, + .{ .cp = 0x1CB0, .status = .mapped, .mapping = &.{0x10F0}, .status2 = .none, }, + .{ .cp = 0x1CB1, .status = .mapped, .mapping = &.{0x10F1}, .status2 = .none, }, + .{ .cp = 0x1CB2, .status = .mapped, .mapping = &.{0x10F2}, .status2 = .none, }, + .{ .cp = 0x1CB3, .status = .mapped, .mapping = &.{0x10F3}, .status2 = .none, }, + .{ .cp = 0x1CB4, .status = .mapped, .mapping = &.{0x10F4}, .status2 = .none, }, + .{ .cp = 0x1CB5, .status = .mapped, .mapping = &.{0x10F5}, .status2 = .none, }, + .{ .cp = 0x1CB6, .status = .mapped, .mapping = &.{0x10F6}, .status2 = .none, }, + .{ .cp = 0x1CB7, .status = .mapped, .mapping = &.{0x10F7}, .status2 = .none, }, + .{ .cp = 0x1CB8, .status = .mapped, .mapping = &.{0x10F8}, .status2 = .none, }, + .{ .cp = 0x1CB9, .status = .mapped, .mapping = &.{0x10F9}, .status2 = .none, }, + .{ .cp = 0x1CBA, .status = .mapped, .mapping = &.{0x10FA}, .status2 = .none, }, + .{ .cp = 0x1CBD, .status = .mapped, .mapping = &.{0x10FD}, .status2 = .none, }, + .{ .cp = 0x1CBE, .status = .mapped, .mapping = &.{0x10FE}, .status2 = .none, }, + .{ .cp = 0x1CBF, .status = .mapped, .mapping = &.{0x10FF}, .status2 = .none, }, + .{ .cp = 0x1CD3, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .cp = 0x1CF7, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x1CFA, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x1D2C, .status = .mapped, .mapping = &.{0x0061}, .status2 = .none, }, + .{ .cp = 0x1D2D, .status = .mapped, .mapping = &.{0x00E6}, .status2 = .none, }, + .{ .cp = 0x1D2E, .status = .mapped, .mapping = &.{0x0062}, .status2 = .none, }, + .{ .cp = 0x1D2F, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x1D30, .status = .mapped, .mapping = &.{0x0064}, .status2 = .none, }, + .{ .cp = 0x1D31, .status = .mapped, .mapping = &.{0x0065}, .status2 = .none, }, + .{ .cp = 0x1D32, .status = .mapped, .mapping = &.{0x01DD}, .status2 = .none, }, + .{ .cp = 0x1D33, .status = .mapped, .mapping = &.{0x0067}, .status2 = .none, }, + .{ .cp = 0x1D34, .status = .mapped, .mapping = &.{0x0068}, .status2 = .none, }, + .{ .cp = 0x1D35, .status = .mapped, .mapping = &.{0x0069}, .status2 = .none, }, + .{ .cp = 0x1D36, .status = .mapped, .mapping = &.{0x006A}, .status2 = .none, }, + .{ .cp = 0x1D37, .status = .mapped, .mapping = &.{0x006B}, .status2 = .none, }, + .{ .cp = 0x1D38, .status = .mapped, .mapping = &.{0x006C}, .status2 = .none, }, + .{ .cp = 0x1D39, .status = .mapped, .mapping = &.{0x006D}, .status2 = .none, }, + .{ .cp = 0x1D3A, .status = .mapped, .mapping = &.{0x006E}, .status2 = .none, }, + .{ .cp = 0x1D3B, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x1D3C, .status = .mapped, .mapping = &.{0x006F}, .status2 = .none, }, + .{ .cp = 0x1D3D, .status = .mapped, .mapping = &.{0x0223}, .status2 = .none, }, + .{ .cp = 0x1D3E, .status = .mapped, .mapping = &.{0x0070}, .status2 = .none, }, + .{ .cp = 0x1D3F, .status = .mapped, .mapping = &.{0x0072}, .status2 = .none, }, + .{ .cp = 0x1D40, .status = .mapped, .mapping = &.{0x0074}, .status2 = .none, }, + .{ .cp = 0x1D41, .status = .mapped, .mapping = &.{0x0075}, .status2 = .none, }, + .{ .cp = 0x1D42, .status = .mapped, .mapping = &.{0x0077}, .status2 = .none, }, + .{ .cp = 0x1D43, .status = .mapped, .mapping = &.{0x0061}, .status2 = .none, }, + .{ .cp = 0x1D44, .status = .mapped, .mapping = &.{0x0250}, .status2 = .none, }, + .{ .cp = 0x1D45, .status = .mapped, .mapping = &.{0x0251}, .status2 = .none, }, + .{ .cp = 0x1D46, .status = .mapped, .mapping = &.{0x1D02}, .status2 = .none, }, + .{ .cp = 0x1D47, .status = .mapped, .mapping = &.{0x0062}, .status2 = .none, }, + .{ .cp = 0x1D48, .status = .mapped, .mapping = &.{0x0064}, .status2 = .none, }, + .{ .cp = 0x1D49, .status = .mapped, .mapping = &.{0x0065}, .status2 = .none, }, + .{ .cp = 0x1D4A, .status = .mapped, .mapping = &.{0x0259}, .status2 = .none, }, + .{ .cp = 0x1D4B, .status = .mapped, .mapping = &.{0x025B}, .status2 = .none, }, + .{ .cp = 0x1D4C, .status = .mapped, .mapping = &.{0x025C}, .status2 = .none, }, + .{ .cp = 0x1D4D, .status = .mapped, .mapping = &.{0x0067}, .status2 = .none, }, + .{ .cp = 0x1D4E, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x1D4F, .status = .mapped, .mapping = &.{0x006B}, .status2 = .none, }, + .{ .cp = 0x1D50, .status = .mapped, .mapping = &.{0x006D}, .status2 = .none, }, + .{ .cp = 0x1D51, .status = .mapped, .mapping = &.{0x014B}, .status2 = .none, }, + .{ .cp = 0x1D52, .status = .mapped, .mapping = &.{0x006F}, .status2 = .none, }, + .{ .cp = 0x1D53, .status = .mapped, .mapping = &.{0x0254}, .status2 = .none, }, + .{ .cp = 0x1D54, .status = .mapped, .mapping = &.{0x1D16}, .status2 = .none, }, + .{ .cp = 0x1D55, .status = .mapped, .mapping = &.{0x1D17}, .status2 = .none, }, + .{ .cp = 0x1D56, .status = .mapped, .mapping = &.{0x0070}, .status2 = .none, }, + .{ .cp = 0x1D57, .status = .mapped, .mapping = &.{0x0074}, .status2 = .none, }, + .{ .cp = 0x1D58, .status = .mapped, .mapping = &.{0x0075}, .status2 = .none, }, + .{ .cp = 0x1D59, .status = .mapped, .mapping = &.{0x1D1D}, .status2 = .none, }, + .{ .cp = 0x1D5A, .status = .mapped, .mapping = &.{0x026F}, .status2 = .none, }, + .{ .cp = 0x1D5B, .status = .mapped, .mapping = &.{0x0076}, .status2 = .none, }, + .{ .cp = 0x1D5C, .status = .mapped, .mapping = &.{0x1D25}, .status2 = .none, }, + .{ .cp = 0x1D5D, .status = .mapped, .mapping = &.{0x03B2}, .status2 = .none, }, + .{ .cp = 0x1D5E, .status = .mapped, .mapping = &.{0x03B3}, .status2 = .none, }, + .{ .cp = 0x1D5F, .status = .mapped, .mapping = &.{0x03B4}, .status2 = .none, }, + .{ .cp = 0x1D60, .status = .mapped, .mapping = &.{0x03C6}, .status2 = .none, }, + .{ .cp = 0x1D61, .status = .mapped, .mapping = &.{0x03C7}, .status2 = .none, }, + .{ .cp = 0x1D62, .status = .mapped, .mapping = &.{0x0069}, .status2 = .none, }, + .{ .cp = 0x1D63, .status = .mapped, .mapping = &.{0x0072}, .status2 = .none, }, + .{ .cp = 0x1D64, .status = .mapped, .mapping = &.{0x0075}, .status2 = .none, }, + .{ .cp = 0x1D65, .status = .mapped, .mapping = &.{0x0076}, .status2 = .none, }, + .{ .cp = 0x1D66, .status = .mapped, .mapping = &.{0x03B2}, .status2 = .none, }, + .{ .cp = 0x1D67, .status = .mapped, .mapping = &.{0x03B3}, .status2 = .none, }, + .{ .cp = 0x1D68, .status = .mapped, .mapping = &.{0x03C1}, .status2 = .none, }, + .{ .cp = 0x1D69, .status = .mapped, .mapping = &.{0x03C6}, .status2 = .none, }, + .{ .cp = 0x1D6A, .status = .mapped, .mapping = &.{0x03C7}, .status2 = .none, }, + .{ .cp = 0x1D6B, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x1D78, .status = .mapped, .mapping = &.{0x043D}, .status2 = .none, }, + .{ .cp = 0x1D9B, .status = .mapped, .mapping = &.{0x0252}, .status2 = .none, }, + .{ .cp = 0x1D9C, .status = .mapped, .mapping = &.{0x0063}, .status2 = .none, }, + .{ .cp = 0x1D9D, .status = .mapped, .mapping = &.{0x0255}, .status2 = .none, }, + .{ .cp = 0x1D9E, .status = .mapped, .mapping = &.{0x00F0}, .status2 = .none, }, + .{ .cp = 0x1D9F, .status = .mapped, .mapping = &.{0x025C}, .status2 = .none, }, + .{ .cp = 0x1DA0, .status = .mapped, .mapping = &.{0x0066}, .status2 = .none, }, + .{ .cp = 0x1DA1, .status = .mapped, .mapping = &.{0x025F}, .status2 = .none, }, + .{ .cp = 0x1DA2, .status = .mapped, .mapping = &.{0x0261}, .status2 = .none, }, + .{ .cp = 0x1DA3, .status = .mapped, .mapping = &.{0x0265}, .status2 = .none, }, + .{ .cp = 0x1DA4, .status = .mapped, .mapping = &.{0x0268}, .status2 = .none, }, + .{ .cp = 0x1DA5, .status = .mapped, .mapping = &.{0x0269}, .status2 = .none, }, + .{ .cp = 0x1DA6, .status = .mapped, .mapping = &.{0x026A}, .status2 = .none, }, + .{ .cp = 0x1DA7, .status = .mapped, .mapping = &.{0x1D7B}, .status2 = .none, }, + .{ .cp = 0x1DA8, .status = .mapped, .mapping = &.{0x029D}, .status2 = .none, }, + .{ .cp = 0x1DA9, .status = .mapped, .mapping = &.{0x026D}, .status2 = .none, }, + .{ .cp = 0x1DAA, .status = .mapped, .mapping = &.{0x1D85}, .status2 = .none, }, + .{ .cp = 0x1DAB, .status = .mapped, .mapping = &.{0x029F}, .status2 = .none, }, + .{ .cp = 0x1DAC, .status = .mapped, .mapping = &.{0x0271}, .status2 = .none, }, + .{ .cp = 0x1DAD, .status = .mapped, .mapping = &.{0x0270}, .status2 = .none, }, + .{ .cp = 0x1DAE, .status = .mapped, .mapping = &.{0x0272}, .status2 = .none, }, + .{ .cp = 0x1DAF, .status = .mapped, .mapping = &.{0x0273}, .status2 = .none, }, + .{ .cp = 0x1DB0, .status = .mapped, .mapping = &.{0x0274}, .status2 = .none, }, + .{ .cp = 0x1DB1, .status = .mapped, .mapping = &.{0x0275}, .status2 = .none, }, + .{ .cp = 0x1DB2, .status = .mapped, .mapping = &.{0x0278}, .status2 = .none, }, + .{ .cp = 0x1DB3, .status = .mapped, .mapping = &.{0x0282}, .status2 = .none, }, + .{ .cp = 0x1DB4, .status = .mapped, .mapping = &.{0x0283}, .status2 = .none, }, + .{ .cp = 0x1DB5, .status = .mapped, .mapping = &.{0x01AB}, .status2 = .none, }, + .{ .cp = 0x1DB6, .status = .mapped, .mapping = &.{0x0289}, .status2 = .none, }, + .{ .cp = 0x1DB7, .status = .mapped, .mapping = &.{0x028A}, .status2 = .none, }, + .{ .cp = 0x1DB8, .status = .mapped, .mapping = &.{0x1D1C}, .status2 = .none, }, + .{ .cp = 0x1DB9, .status = .mapped, .mapping = &.{0x028B}, .status2 = .none, }, + .{ .cp = 0x1DBA, .status = .mapped, .mapping = &.{0x028C}, .status2 = .none, }, + .{ .cp = 0x1DBB, .status = .mapped, .mapping = &.{0x007A}, .status2 = .none, }, + .{ .cp = 0x1DBC, .status = .mapped, .mapping = &.{0x0290}, .status2 = .none, }, + .{ .cp = 0x1DBD, .status = .mapped, .mapping = &.{0x0291}, .status2 = .none, }, + .{ .cp = 0x1DBE, .status = .mapped, .mapping = &.{0x0292}, .status2 = .none, }, + .{ .cp = 0x1DBF, .status = .mapped, .mapping = &.{0x03B8}, .status2 = .none, }, + .{ .cp = 0x1DFA, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x1DFB, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x1DFC, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x1DFD, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x1E00, .status = .mapped, .mapping = &.{0x1E01}, .status2 = .none, }, + .{ .cp = 0x1E01, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x1E02, .status = .mapped, .mapping = &.{0x1E03}, .status2 = .none, }, + .{ .cp = 0x1E03, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x1E04, .status = .mapped, .mapping = &.{0x1E05}, .status2 = .none, }, + .{ .cp = 0x1E05, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x1E06, .status = .mapped, .mapping = &.{0x1E07}, .status2 = .none, }, + .{ .cp = 0x1E07, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x1E08, .status = .mapped, .mapping = &.{0x1E09}, .status2 = .none, }, + .{ .cp = 0x1E09, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x1E0A, .status = .mapped, .mapping = &.{0x1E0B}, .status2 = .none, }, + .{ .cp = 0x1E0B, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x1E0C, .status = .mapped, .mapping = &.{0x1E0D}, .status2 = .none, }, + .{ .cp = 0x1E0D, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x1E0E, .status = .mapped, .mapping = &.{0x1E0F}, .status2 = .none, }, + .{ .cp = 0x1E0F, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x1E10, .status = .mapped, .mapping = &.{0x1E11}, .status2 = .none, }, + .{ .cp = 0x1E11, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x1E12, .status = .mapped, .mapping = &.{0x1E13}, .status2 = .none, }, + .{ .cp = 0x1E13, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x1E14, .status = .mapped, .mapping = &.{0x1E15}, .status2 = .none, }, + .{ .cp = 0x1E15, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x1E16, .status = .mapped, .mapping = &.{0x1E17}, .status2 = .none, }, + .{ .cp = 0x1E17, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x1E18, .status = .mapped, .mapping = &.{0x1E19}, .status2 = .none, }, + .{ .cp = 0x1E19, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x1E1A, .status = .mapped, .mapping = &.{0x1E1B}, .status2 = .none, }, + .{ .cp = 0x1E1B, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x1E1C, .status = .mapped, .mapping = &.{0x1E1D}, .status2 = .none, }, + .{ .cp = 0x1E1D, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x1E1E, .status = .mapped, .mapping = &.{0x1E1F}, .status2 = .none, }, + .{ .cp = 0x1E1F, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x1E20, .status = .mapped, .mapping = &.{0x1E21}, .status2 = .none, }, + .{ .cp = 0x1E21, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x1E22, .status = .mapped, .mapping = &.{0x1E23}, .status2 = .none, }, + .{ .cp = 0x1E23, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x1E24, .status = .mapped, .mapping = &.{0x1E25}, .status2 = .none, }, + .{ .cp = 0x1E25, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x1E26, .status = .mapped, .mapping = &.{0x1E27}, .status2 = .none, }, + .{ .cp = 0x1E27, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x1E28, .status = .mapped, .mapping = &.{0x1E29}, .status2 = .none, }, + .{ .cp = 0x1E29, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x1E2A, .status = .mapped, .mapping = &.{0x1E2B}, .status2 = .none, }, + .{ .cp = 0x1E2B, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x1E2C, .status = .mapped, .mapping = &.{0x1E2D}, .status2 = .none, }, + .{ .cp = 0x1E2D, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x1E2E, .status = .mapped, .mapping = &.{0x1E2F}, .status2 = .none, }, + .{ .cp = 0x1E2F, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x1E30, .status = .mapped, .mapping = &.{0x1E31}, .status2 = .none, }, + .{ .cp = 0x1E31, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x1E32, .status = .mapped, .mapping = &.{0x1E33}, .status2 = .none, }, + .{ .cp = 0x1E33, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x1E34, .status = .mapped, .mapping = &.{0x1E35}, .status2 = .none, }, + .{ .cp = 0x1E35, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x1E36, .status = .mapped, .mapping = &.{0x1E37}, .status2 = .none, }, + .{ .cp = 0x1E37, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x1E38, .status = .mapped, .mapping = &.{0x1E39}, .status2 = .none, }, + .{ .cp = 0x1E39, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x1E3A, .status = .mapped, .mapping = &.{0x1E3B}, .status2 = .none, }, + .{ .cp = 0x1E3B, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x1E3C, .status = .mapped, .mapping = &.{0x1E3D}, .status2 = .none, }, + .{ .cp = 0x1E3D, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x1E3E, .status = .mapped, .mapping = &.{0x1E3F}, .status2 = .none, }, + .{ .cp = 0x1E3F, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x1E40, .status = .mapped, .mapping = &.{0x1E41}, .status2 = .none, }, + .{ .cp = 0x1E41, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x1E42, .status = .mapped, .mapping = &.{0x1E43}, .status2 = .none, }, + .{ .cp = 0x1E43, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x1E44, .status = .mapped, .mapping = &.{0x1E45}, .status2 = .none, }, + .{ .cp = 0x1E45, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x1E46, .status = .mapped, .mapping = &.{0x1E47}, .status2 = .none, }, + .{ .cp = 0x1E47, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x1E48, .status = .mapped, .mapping = &.{0x1E49}, .status2 = .none, }, + .{ .cp = 0x1E49, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x1E4A, .status = .mapped, .mapping = &.{0x1E4B}, .status2 = .none, }, + .{ .cp = 0x1E4B, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x1E4C, .status = .mapped, .mapping = &.{0x1E4D}, .status2 = .none, }, + .{ .cp = 0x1E4D, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x1E4E, .status = .mapped, .mapping = &.{0x1E4F}, .status2 = .none, }, + .{ .cp = 0x1E4F, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x1E50, .status = .mapped, .mapping = &.{0x1E51}, .status2 = .none, }, + .{ .cp = 0x1E51, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x1E52, .status = .mapped, .mapping = &.{0x1E53}, .status2 = .none, }, + .{ .cp = 0x1E53, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x1E54, .status = .mapped, .mapping = &.{0x1E55}, .status2 = .none, }, + .{ .cp = 0x1E55, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x1E56, .status = .mapped, .mapping = &.{0x1E57}, .status2 = .none, }, + .{ .cp = 0x1E57, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x1E58, .status = .mapped, .mapping = &.{0x1E59}, .status2 = .none, }, + .{ .cp = 0x1E59, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x1E5A, .status = .mapped, .mapping = &.{0x1E5B}, .status2 = .none, }, + .{ .cp = 0x1E5B, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x1E5C, .status = .mapped, .mapping = &.{0x1E5D}, .status2 = .none, }, + .{ .cp = 0x1E5D, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x1E5E, .status = .mapped, .mapping = &.{0x1E5F}, .status2 = .none, }, + .{ .cp = 0x1E5F, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x1E60, .status = .mapped, .mapping = &.{0x1E61}, .status2 = .none, }, + .{ .cp = 0x1E61, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x1E62, .status = .mapped, .mapping = &.{0x1E63}, .status2 = .none, }, + .{ .cp = 0x1E63, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x1E64, .status = .mapped, .mapping = &.{0x1E65}, .status2 = .none, }, + .{ .cp = 0x1E65, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x1E66, .status = .mapped, .mapping = &.{0x1E67}, .status2 = .none, }, + .{ .cp = 0x1E67, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x1E68, .status = .mapped, .mapping = &.{0x1E69}, .status2 = .none, }, + .{ .cp = 0x1E69, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x1E6A, .status = .mapped, .mapping = &.{0x1E6B}, .status2 = .none, }, + .{ .cp = 0x1E6B, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x1E6C, .status = .mapped, .mapping = &.{0x1E6D}, .status2 = .none, }, + .{ .cp = 0x1E6D, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x1E6E, .status = .mapped, .mapping = &.{0x1E6F}, .status2 = .none, }, + .{ .cp = 0x1E6F, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x1E70, .status = .mapped, .mapping = &.{0x1E71}, .status2 = .none, }, + .{ .cp = 0x1E71, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x1E72, .status = .mapped, .mapping = &.{0x1E73}, .status2 = .none, }, + .{ .cp = 0x1E73, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x1E74, .status = .mapped, .mapping = &.{0x1E75}, .status2 = .none, }, + .{ .cp = 0x1E75, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x1E76, .status = .mapped, .mapping = &.{0x1E77}, .status2 = .none, }, + .{ .cp = 0x1E77, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x1E78, .status = .mapped, .mapping = &.{0x1E79}, .status2 = .none, }, + .{ .cp = 0x1E79, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x1E7A, .status = .mapped, .mapping = &.{0x1E7B}, .status2 = .none, }, + .{ .cp = 0x1E7B, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x1E7C, .status = .mapped, .mapping = &.{0x1E7D}, .status2 = .none, }, + .{ .cp = 0x1E7D, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x1E7E, .status = .mapped, .mapping = &.{0x1E7F}, .status2 = .none, }, + .{ .cp = 0x1E7F, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x1E80, .status = .mapped, .mapping = &.{0x1E81}, .status2 = .none, }, + .{ .cp = 0x1E81, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x1E82, .status = .mapped, .mapping = &.{0x1E83}, .status2 = .none, }, + .{ .cp = 0x1E83, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x1E84, .status = .mapped, .mapping = &.{0x1E85}, .status2 = .none, }, + .{ .cp = 0x1E85, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x1E86, .status = .mapped, .mapping = &.{0x1E87}, .status2 = .none, }, + .{ .cp = 0x1E87, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x1E88, .status = .mapped, .mapping = &.{0x1E89}, .status2 = .none, }, + .{ .cp = 0x1E89, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x1E8A, .status = .mapped, .mapping = &.{0x1E8B}, .status2 = .none, }, + .{ .cp = 0x1E8B, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x1E8C, .status = .mapped, .mapping = &.{0x1E8D}, .status2 = .none, }, + .{ .cp = 0x1E8D, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x1E8E, .status = .mapped, .mapping = &.{0x1E8F}, .status2 = .none, }, + .{ .cp = 0x1E8F, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x1E90, .status = .mapped, .mapping = &.{0x1E91}, .status2 = .none, }, + .{ .cp = 0x1E91, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x1E92, .status = .mapped, .mapping = &.{0x1E93}, .status2 = .none, }, + .{ .cp = 0x1E93, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x1E94, .status = .mapped, .mapping = &.{0x1E95}, .status2 = .none, }, + .{ .cp = 0x1E9A, .status = .mapped, .mapping = &.{0x0061,0x02BE}, .status2 = .none, }, + .{ .cp = 0x1E9B, .status = .mapped, .mapping = &.{0x1E61}, .status2 = .none, }, + .{ .cp = 0x1E9E, .status = .mapped, .mapping = &.{0x00DF}, .status2 = .none, }, + .{ .cp = 0x1E9F, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x1EA0, .status = .mapped, .mapping = &.{0x1EA1}, .status2 = .none, }, + .{ .cp = 0x1EA1, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x1EA2, .status = .mapped, .mapping = &.{0x1EA3}, .status2 = .none, }, + .{ .cp = 0x1EA3, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x1EA4, .status = .mapped, .mapping = &.{0x1EA5}, .status2 = .none, }, + .{ .cp = 0x1EA5, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x1EA6, .status = .mapped, .mapping = &.{0x1EA7}, .status2 = .none, }, + .{ .cp = 0x1EA7, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x1EA8, .status = .mapped, .mapping = &.{0x1EA9}, .status2 = .none, }, + .{ .cp = 0x1EA9, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x1EAA, .status = .mapped, .mapping = &.{0x1EAB}, .status2 = .none, }, + .{ .cp = 0x1EAB, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x1EAC, .status = .mapped, .mapping = &.{0x1EAD}, .status2 = .none, }, + .{ .cp = 0x1EAD, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x1EAE, .status = .mapped, .mapping = &.{0x1EAF}, .status2 = .none, }, + .{ .cp = 0x1EAF, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x1EB0, .status = .mapped, .mapping = &.{0x1EB1}, .status2 = .none, }, + .{ .cp = 0x1EB1, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x1EB2, .status = .mapped, .mapping = &.{0x1EB3}, .status2 = .none, }, + .{ .cp = 0x1EB3, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x1EB4, .status = .mapped, .mapping = &.{0x1EB5}, .status2 = .none, }, + .{ .cp = 0x1EB5, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x1EB6, .status = .mapped, .mapping = &.{0x1EB7}, .status2 = .none, }, + .{ .cp = 0x1EB7, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x1EB8, .status = .mapped, .mapping = &.{0x1EB9}, .status2 = .none, }, + .{ .cp = 0x1EB9, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x1EBA, .status = .mapped, .mapping = &.{0x1EBB}, .status2 = .none, }, + .{ .cp = 0x1EBB, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x1EBC, .status = .mapped, .mapping = &.{0x1EBD}, .status2 = .none, }, + .{ .cp = 0x1EBD, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x1EBE, .status = .mapped, .mapping = &.{0x1EBF}, .status2 = .none, }, + .{ .cp = 0x1EBF, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x1EC0, .status = .mapped, .mapping = &.{0x1EC1}, .status2 = .none, }, + .{ .cp = 0x1EC1, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x1EC2, .status = .mapped, .mapping = &.{0x1EC3}, .status2 = .none, }, + .{ .cp = 0x1EC3, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x1EC4, .status = .mapped, .mapping = &.{0x1EC5}, .status2 = .none, }, + .{ .cp = 0x1EC5, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x1EC6, .status = .mapped, .mapping = &.{0x1EC7}, .status2 = .none, }, + .{ .cp = 0x1EC7, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x1EC8, .status = .mapped, .mapping = &.{0x1EC9}, .status2 = .none, }, + .{ .cp = 0x1EC9, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x1ECA, .status = .mapped, .mapping = &.{0x1ECB}, .status2 = .none, }, + .{ .cp = 0x1ECB, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x1ECC, .status = .mapped, .mapping = &.{0x1ECD}, .status2 = .none, }, + .{ .cp = 0x1ECD, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x1ECE, .status = .mapped, .mapping = &.{0x1ECF}, .status2 = .none, }, + .{ .cp = 0x1ECF, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x1ED0, .status = .mapped, .mapping = &.{0x1ED1}, .status2 = .none, }, + .{ .cp = 0x1ED1, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x1ED2, .status = .mapped, .mapping = &.{0x1ED3}, .status2 = .none, }, + .{ .cp = 0x1ED3, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x1ED4, .status = .mapped, .mapping = &.{0x1ED5}, .status2 = .none, }, + .{ .cp = 0x1ED5, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x1ED6, .status = .mapped, .mapping = &.{0x1ED7}, .status2 = .none, }, + .{ .cp = 0x1ED7, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x1ED8, .status = .mapped, .mapping = &.{0x1ED9}, .status2 = .none, }, + .{ .cp = 0x1ED9, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x1EDA, .status = .mapped, .mapping = &.{0x1EDB}, .status2 = .none, }, + .{ .cp = 0x1EDB, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x1EDC, .status = .mapped, .mapping = &.{0x1EDD}, .status2 = .none, }, + .{ .cp = 0x1EDD, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x1EDE, .status = .mapped, .mapping = &.{0x1EDF}, .status2 = .none, }, + .{ .cp = 0x1EDF, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x1EE0, .status = .mapped, .mapping = &.{0x1EE1}, .status2 = .none, }, + .{ .cp = 0x1EE1, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x1EE2, .status = .mapped, .mapping = &.{0x1EE3}, .status2 = .none, }, + .{ .cp = 0x1EE3, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x1EE4, .status = .mapped, .mapping = &.{0x1EE5}, .status2 = .none, }, + .{ .cp = 0x1EE5, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x1EE6, .status = .mapped, .mapping = &.{0x1EE7}, .status2 = .none, }, + .{ .cp = 0x1EE7, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x1EE8, .status = .mapped, .mapping = &.{0x1EE9}, .status2 = .none, }, + .{ .cp = 0x1EE9, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x1EEA, .status = .mapped, .mapping = &.{0x1EEB}, .status2 = .none, }, + .{ .cp = 0x1EEB, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x1EEC, .status = .mapped, .mapping = &.{0x1EED}, .status2 = .none, }, + .{ .cp = 0x1EED, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x1EEE, .status = .mapped, .mapping = &.{0x1EEF}, .status2 = .none, }, + .{ .cp = 0x1EEF, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x1EF0, .status = .mapped, .mapping = &.{0x1EF1}, .status2 = .none, }, + .{ .cp = 0x1EF1, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x1EF2, .status = .mapped, .mapping = &.{0x1EF3}, .status2 = .none, }, + .{ .cp = 0x1EF3, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x1EF4, .status = .mapped, .mapping = &.{0x1EF5}, .status2 = .none, }, + .{ .cp = 0x1EF5, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x1EF6, .status = .mapped, .mapping = &.{0x1EF7}, .status2 = .none, }, + .{ .cp = 0x1EF7, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x1EF8, .status = .mapped, .mapping = &.{0x1EF9}, .status2 = .none, }, + .{ .cp = 0x1EF9, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x1EFA, .status = .mapped, .mapping = &.{0x1EFB}, .status2 = .none, }, + .{ .cp = 0x1EFB, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x1EFC, .status = .mapped, .mapping = &.{0x1EFD}, .status2 = .none, }, + .{ .cp = 0x1EFD, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x1EFE, .status = .mapped, .mapping = &.{0x1EFF}, .status2 = .none, }, + .{ .cp = 0x1EFF, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x1F08, .status = .mapped, .mapping = &.{0x1F00}, .status2 = .none, }, + .{ .cp = 0x1F09, .status = .mapped, .mapping = &.{0x1F01}, .status2 = .none, }, + .{ .cp = 0x1F0A, .status = .mapped, .mapping = &.{0x1F02}, .status2 = .none, }, + .{ .cp = 0x1F0B, .status = .mapped, .mapping = &.{0x1F03}, .status2 = .none, }, + .{ .cp = 0x1F0C, .status = .mapped, .mapping = &.{0x1F04}, .status2 = .none, }, + .{ .cp = 0x1F0D, .status = .mapped, .mapping = &.{0x1F05}, .status2 = .none, }, + .{ .cp = 0x1F0E, .status = .mapped, .mapping = &.{0x1F06}, .status2 = .none, }, + .{ .cp = 0x1F0F, .status = .mapped, .mapping = &.{0x1F07}, .status2 = .none, }, + .{ .cp = 0x1F18, .status = .mapped, .mapping = &.{0x1F10}, .status2 = .none, }, + .{ .cp = 0x1F19, .status = .mapped, .mapping = &.{0x1F11}, .status2 = .none, }, + .{ .cp = 0x1F1A, .status = .mapped, .mapping = &.{0x1F12}, .status2 = .none, }, + .{ .cp = 0x1F1B, .status = .mapped, .mapping = &.{0x1F13}, .status2 = .none, }, + .{ .cp = 0x1F1C, .status = .mapped, .mapping = &.{0x1F14}, .status2 = .none, }, + .{ .cp = 0x1F1D, .status = .mapped, .mapping = &.{0x1F15}, .status2 = .none, }, + .{ .cp = 0x1F28, .status = .mapped, .mapping = &.{0x1F20}, .status2 = .none, }, + .{ .cp = 0x1F29, .status = .mapped, .mapping = &.{0x1F21}, .status2 = .none, }, + .{ .cp = 0x1F2A, .status = .mapped, .mapping = &.{0x1F22}, .status2 = .none, }, + .{ .cp = 0x1F2B, .status = .mapped, .mapping = &.{0x1F23}, .status2 = .none, }, + .{ .cp = 0x1F2C, .status = .mapped, .mapping = &.{0x1F24}, .status2 = .none, }, + .{ .cp = 0x1F2D, .status = .mapped, .mapping = &.{0x1F25}, .status2 = .none, }, + .{ .cp = 0x1F2E, .status = .mapped, .mapping = &.{0x1F26}, .status2 = .none, }, + .{ .cp = 0x1F2F, .status = .mapped, .mapping = &.{0x1F27}, .status2 = .none, }, + .{ .cp = 0x1F38, .status = .mapped, .mapping = &.{0x1F30}, .status2 = .none, }, + .{ .cp = 0x1F39, .status = .mapped, .mapping = &.{0x1F31}, .status2 = .none, }, + .{ .cp = 0x1F3A, .status = .mapped, .mapping = &.{0x1F32}, .status2 = .none, }, + .{ .cp = 0x1F3B, .status = .mapped, .mapping = &.{0x1F33}, .status2 = .none, }, + .{ .cp = 0x1F3C, .status = .mapped, .mapping = &.{0x1F34}, .status2 = .none, }, + .{ .cp = 0x1F3D, .status = .mapped, .mapping = &.{0x1F35}, .status2 = .none, }, + .{ .cp = 0x1F3E, .status = .mapped, .mapping = &.{0x1F36}, .status2 = .none, }, + .{ .cp = 0x1F3F, .status = .mapped, .mapping = &.{0x1F37}, .status2 = .none, }, + .{ .cp = 0x1F48, .status = .mapped, .mapping = &.{0x1F40}, .status2 = .none, }, + .{ .cp = 0x1F49, .status = .mapped, .mapping = &.{0x1F41}, .status2 = .none, }, + .{ .cp = 0x1F4A, .status = .mapped, .mapping = &.{0x1F42}, .status2 = .none, }, + .{ .cp = 0x1F4B, .status = .mapped, .mapping = &.{0x1F43}, .status2 = .none, }, + .{ .cp = 0x1F4C, .status = .mapped, .mapping = &.{0x1F44}, .status2 = .none, }, + .{ .cp = 0x1F4D, .status = .mapped, .mapping = &.{0x1F45}, .status2 = .none, }, + .{ .cp = 0x1F58, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x1F59, .status = .mapped, .mapping = &.{0x1F51}, .status2 = .none, }, + .{ .cp = 0x1F5A, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x1F5B, .status = .mapped, .mapping = &.{0x1F53}, .status2 = .none, }, + .{ .cp = 0x1F5C, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x1F5D, .status = .mapped, .mapping = &.{0x1F55}, .status2 = .none, }, + .{ .cp = 0x1F5E, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x1F5F, .status = .mapped, .mapping = &.{0x1F57}, .status2 = .none, }, + .{ .cp = 0x1F68, .status = .mapped, .mapping = &.{0x1F60}, .status2 = .none, }, + .{ .cp = 0x1F69, .status = .mapped, .mapping = &.{0x1F61}, .status2 = .none, }, + .{ .cp = 0x1F6A, .status = .mapped, .mapping = &.{0x1F62}, .status2 = .none, }, + .{ .cp = 0x1F6B, .status = .mapped, .mapping = &.{0x1F63}, .status2 = .none, }, + .{ .cp = 0x1F6C, .status = .mapped, .mapping = &.{0x1F64}, .status2 = .none, }, + .{ .cp = 0x1F6D, .status = .mapped, .mapping = &.{0x1F65}, .status2 = .none, }, + .{ .cp = 0x1F6E, .status = .mapped, .mapping = &.{0x1F66}, .status2 = .none, }, + .{ .cp = 0x1F6F, .status = .mapped, .mapping = &.{0x1F67}, .status2 = .none, }, + .{ .cp = 0x1F70, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x1F71, .status = .mapped, .mapping = &.{0x03AC}, .status2 = .none, }, + .{ .cp = 0x1F72, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x1F73, .status = .mapped, .mapping = &.{0x03AD}, .status2 = .none, }, + .{ .cp = 0x1F74, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x1F75, .status = .mapped, .mapping = &.{0x03AE}, .status2 = .none, }, + .{ .cp = 0x1F76, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x1F77, .status = .mapped, .mapping = &.{0x03AF}, .status2 = .none, }, + .{ .cp = 0x1F78, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x1F79, .status = .mapped, .mapping = &.{0x03CC}, .status2 = .none, }, + .{ .cp = 0x1F7A, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x1F7B, .status = .mapped, .mapping = &.{0x03CD}, .status2 = .none, }, + .{ .cp = 0x1F7C, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x1F7D, .status = .mapped, .mapping = &.{0x03CE}, .status2 = .none, }, + .{ .cp = 0x1F80, .status = .mapped, .mapping = &.{0x1F00,0x03B9}, .status2 = .none, }, + .{ .cp = 0x1F81, .status = .mapped, .mapping = &.{0x1F01,0x03B9}, .status2 = .none, }, + .{ .cp = 0x1F82, .status = .mapped, .mapping = &.{0x1F02,0x03B9}, .status2 = .none, }, + .{ .cp = 0x1F83, .status = .mapped, .mapping = &.{0x1F03,0x03B9}, .status2 = .none, }, + .{ .cp = 0x1F84, .status = .mapped, .mapping = &.{0x1F04,0x03B9}, .status2 = .none, }, + .{ .cp = 0x1F85, .status = .mapped, .mapping = &.{0x1F05,0x03B9}, .status2 = .none, }, + .{ .cp = 0x1F86, .status = .mapped, .mapping = &.{0x1F06,0x03B9}, .status2 = .none, }, + .{ .cp = 0x1F87, .status = .mapped, .mapping = &.{0x1F07,0x03B9}, .status2 = .none, }, + .{ .cp = 0x1F88, .status = .mapped, .mapping = &.{0x1F00,0x03B9}, .status2 = .none, }, + .{ .cp = 0x1F89, .status = .mapped, .mapping = &.{0x1F01,0x03B9}, .status2 = .none, }, + .{ .cp = 0x1F8A, .status = .mapped, .mapping = &.{0x1F02,0x03B9}, .status2 = .none, }, + .{ .cp = 0x1F8B, .status = .mapped, .mapping = &.{0x1F03,0x03B9}, .status2 = .none, }, + .{ .cp = 0x1F8C, .status = .mapped, .mapping = &.{0x1F04,0x03B9}, .status2 = .none, }, + .{ .cp = 0x1F8D, .status = .mapped, .mapping = &.{0x1F05,0x03B9}, .status2 = .none, }, + .{ .cp = 0x1F8E, .status = .mapped, .mapping = &.{0x1F06,0x03B9}, .status2 = .none, }, + .{ .cp = 0x1F8F, .status = .mapped, .mapping = &.{0x1F07,0x03B9}, .status2 = .none, }, + .{ .cp = 0x1F90, .status = .mapped, .mapping = &.{0x1F20,0x03B9}, .status2 = .none, }, + .{ .cp = 0x1F91, .status = .mapped, .mapping = &.{0x1F21,0x03B9}, .status2 = .none, }, + .{ .cp = 0x1F92, .status = .mapped, .mapping = &.{0x1F22,0x03B9}, .status2 = .none, }, + .{ .cp = 0x1F93, .status = .mapped, .mapping = &.{0x1F23,0x03B9}, .status2 = .none, }, + .{ .cp = 0x1F94, .status = .mapped, .mapping = &.{0x1F24,0x03B9}, .status2 = .none, }, + .{ .cp = 0x1F95, .status = .mapped, .mapping = &.{0x1F25,0x03B9}, .status2 = .none, }, + .{ .cp = 0x1F96, .status = .mapped, .mapping = &.{0x1F26,0x03B9}, .status2 = .none, }, + .{ .cp = 0x1F97, .status = .mapped, .mapping = &.{0x1F27,0x03B9}, .status2 = .none, }, + .{ .cp = 0x1F98, .status = .mapped, .mapping = &.{0x1F20,0x03B9}, .status2 = .none, }, + .{ .cp = 0x1F99, .status = .mapped, .mapping = &.{0x1F21,0x03B9}, .status2 = .none, }, + .{ .cp = 0x1F9A, .status = .mapped, .mapping = &.{0x1F22,0x03B9}, .status2 = .none, }, + .{ .cp = 0x1F9B, .status = .mapped, .mapping = &.{0x1F23,0x03B9}, .status2 = .none, }, + .{ .cp = 0x1F9C, .status = .mapped, .mapping = &.{0x1F24,0x03B9}, .status2 = .none, }, + .{ .cp = 0x1F9D, .status = .mapped, .mapping = &.{0x1F25,0x03B9}, .status2 = .none, }, + .{ .cp = 0x1F9E, .status = .mapped, .mapping = &.{0x1F26,0x03B9}, .status2 = .none, }, + .{ .cp = 0x1F9F, .status = .mapped, .mapping = &.{0x1F27,0x03B9}, .status2 = .none, }, + .{ .cp = 0x1FA0, .status = .mapped, .mapping = &.{0x1F60,0x03B9}, .status2 = .none, }, + .{ .cp = 0x1FA1, .status = .mapped, .mapping = &.{0x1F61,0x03B9}, .status2 = .none, }, + .{ .cp = 0x1FA2, .status = .mapped, .mapping = &.{0x1F62,0x03B9}, .status2 = .none, }, + .{ .cp = 0x1FA3, .status = .mapped, .mapping = &.{0x1F63,0x03B9}, .status2 = .none, }, + .{ .cp = 0x1FA4, .status = .mapped, .mapping = &.{0x1F64,0x03B9}, .status2 = .none, }, + .{ .cp = 0x1FA5, .status = .mapped, .mapping = &.{0x1F65,0x03B9}, .status2 = .none, }, + .{ .cp = 0x1FA6, .status = .mapped, .mapping = &.{0x1F66,0x03B9}, .status2 = .none, }, + .{ .cp = 0x1FA7, .status = .mapped, .mapping = &.{0x1F67,0x03B9}, .status2 = .none, }, + .{ .cp = 0x1FA8, .status = .mapped, .mapping = &.{0x1F60,0x03B9}, .status2 = .none, }, + .{ .cp = 0x1FA9, .status = .mapped, .mapping = &.{0x1F61,0x03B9}, .status2 = .none, }, + .{ .cp = 0x1FAA, .status = .mapped, .mapping = &.{0x1F62,0x03B9}, .status2 = .none, }, + .{ .cp = 0x1FAB, .status = .mapped, .mapping = &.{0x1F63,0x03B9}, .status2 = .none, }, + .{ .cp = 0x1FAC, .status = .mapped, .mapping = &.{0x1F64,0x03B9}, .status2 = .none, }, + .{ .cp = 0x1FAD, .status = .mapped, .mapping = &.{0x1F65,0x03B9}, .status2 = .none, }, + .{ .cp = 0x1FAE, .status = .mapped, .mapping = &.{0x1F66,0x03B9}, .status2 = .none, }, + .{ .cp = 0x1FAF, .status = .mapped, .mapping = &.{0x1F67,0x03B9}, .status2 = .none, }, + .{ .cp = 0x1FB2, .status = .mapped, .mapping = &.{0x1F70,0x03B9}, .status2 = .none, }, + .{ .cp = 0x1FB3, .status = .mapped, .mapping = &.{0x03B1,0x03B9}, .status2 = .none, }, + .{ .cp = 0x1FB4, .status = .mapped, .mapping = &.{0x03AC,0x03B9}, .status2 = .none, }, + .{ .cp = 0x1FB5, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x1FB6, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x1FB7, .status = .mapped, .mapping = &.{0x1FB6,0x03B9}, .status2 = .none, }, + .{ .cp = 0x1FB8, .status = .mapped, .mapping = &.{0x1FB0}, .status2 = .none, }, + .{ .cp = 0x1FB9, .status = .mapped, .mapping = &.{0x1FB1}, .status2 = .none, }, + .{ .cp = 0x1FBA, .status = .mapped, .mapping = &.{0x1F70}, .status2 = .none, }, + .{ .cp = 0x1FBB, .status = .mapped, .mapping = &.{0x03AC}, .status2 = .none, }, + .{ .cp = 0x1FBC, .status = .mapped, .mapping = &.{0x03B1,0x03B9}, .status2 = .none, }, + .{ .cp = 0x1FBD, .status = .mapped, .mapping = &.{0x0020,0x0313}, .status2 = .none, }, + .{ .cp = 0x1FBE, .status = .mapped, .mapping = &.{0x03B9}, .status2 = .none, }, + .{ .cp = 0x1FBF, .status = .mapped, .mapping = &.{0x0020,0x0313}, .status2 = .none, }, + .{ .cp = 0x1FC0, .status = .mapped, .mapping = &.{0x0020,0x0342}, .status2 = .none, }, + .{ .cp = 0x1FC1, .status = .mapped, .mapping = &.{0x0020,0x0308,0x0342}, .status2 = .none, }, + .{ .cp = 0x1FC2, .status = .mapped, .mapping = &.{0x1F74,0x03B9}, .status2 = .none, }, + .{ .cp = 0x1FC3, .status = .mapped, .mapping = &.{0x03B7,0x03B9}, .status2 = .none, }, + .{ .cp = 0x1FC4, .status = .mapped, .mapping = &.{0x03AE,0x03B9}, .status2 = .none, }, + .{ .cp = 0x1FC5, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x1FC6, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x1FC7, .status = .mapped, .mapping = &.{0x1FC6,0x03B9}, .status2 = .none, }, + .{ .cp = 0x1FC8, .status = .mapped, .mapping = &.{0x1F72}, .status2 = .none, }, + .{ .cp = 0x1FC9, .status = .mapped, .mapping = &.{0x03AD}, .status2 = .none, }, + .{ .cp = 0x1FCA, .status = .mapped, .mapping = &.{0x1F74}, .status2 = .none, }, + .{ .cp = 0x1FCB, .status = .mapped, .mapping = &.{0x03AE}, .status2 = .none, }, + .{ .cp = 0x1FCC, .status = .mapped, .mapping = &.{0x03B7,0x03B9}, .status2 = .none, }, + .{ .cp = 0x1FCD, .status = .mapped, .mapping = &.{0x0020,0x0313,0x0300}, .status2 = .none, }, + .{ .cp = 0x1FCE, .status = .mapped, .mapping = &.{0x0020,0x0313,0x0301}, .status2 = .none, }, + .{ .cp = 0x1FCF, .status = .mapped, .mapping = &.{0x0020,0x0313,0x0342}, .status2 = .none, }, + .{ .cp = 0x1FD3, .status = .mapped, .mapping = &.{0x0390}, .status2 = .none, }, + .{ .cp = 0x1FD8, .status = .mapped, .mapping = &.{0x1FD0}, .status2 = .none, }, + .{ .cp = 0x1FD9, .status = .mapped, .mapping = &.{0x1FD1}, .status2 = .none, }, + .{ .cp = 0x1FDA, .status = .mapped, .mapping = &.{0x1F76}, .status2 = .none, }, + .{ .cp = 0x1FDB, .status = .mapped, .mapping = &.{0x03AF}, .status2 = .none, }, + .{ .cp = 0x1FDC, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x1FDD, .status = .mapped, .mapping = &.{0x0020,0x0314,0x0300}, .status2 = .none, }, + .{ .cp = 0x1FDE, .status = .mapped, .mapping = &.{0x0020,0x0314,0x0301}, .status2 = .none, }, + .{ .cp = 0x1FDF, .status = .mapped, .mapping = &.{0x0020,0x0314,0x0342}, .status2 = .none, }, + .{ .cp = 0x1FE3, .status = .mapped, .mapping = &.{0x03B0}, .status2 = .none, }, + .{ .cp = 0x1FE8, .status = .mapped, .mapping = &.{0x1FE0}, .status2 = .none, }, + .{ .cp = 0x1FE9, .status = .mapped, .mapping = &.{0x1FE1}, .status2 = .none, }, + .{ .cp = 0x1FEA, .status = .mapped, .mapping = &.{0x1F7A}, .status2 = .none, }, + .{ .cp = 0x1FEB, .status = .mapped, .mapping = &.{0x03CD}, .status2 = .none, }, + .{ .cp = 0x1FEC, .status = .mapped, .mapping = &.{0x1FE5}, .status2 = .none, }, + .{ .cp = 0x1FED, .status = .mapped, .mapping = &.{0x0020,0x0308,0x0300}, .status2 = .none, }, + .{ .cp = 0x1FEE, .status = .mapped, .mapping = &.{0x0020,0x0308,0x0301}, .status2 = .none, }, + .{ .cp = 0x1FEF, .status = .mapped, .mapping = &.{0x0060}, .status2 = .none, }, + .{ .cp = 0x1FF2, .status = .mapped, .mapping = &.{0x1F7C,0x03B9}, .status2 = .none, }, + .{ .cp = 0x1FF3, .status = .mapped, .mapping = &.{0x03C9,0x03B9}, .status2 = .none, }, + .{ .cp = 0x1FF4, .status = .mapped, .mapping = &.{0x03CE,0x03B9}, .status2 = .none, }, + .{ .cp = 0x1FF5, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x1FF6, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x1FF7, .status = .mapped, .mapping = &.{0x1FF6,0x03B9}, .status2 = .none, }, + .{ .cp = 0x1FF8, .status = .mapped, .mapping = &.{0x1F78}, .status2 = .none, }, + .{ .cp = 0x1FF9, .status = .mapped, .mapping = &.{0x03CC}, .status2 = .none, }, + .{ .cp = 0x1FFA, .status = .mapped, .mapping = &.{0x1F7C}, .status2 = .none, }, + .{ .cp = 0x1FFB, .status = .mapped, .mapping = &.{0x03CE}, .status2 = .none, }, + .{ .cp = 0x1FFC, .status = .mapped, .mapping = &.{0x03C9,0x03B9}, .status2 = .none, }, + .{ .cp = 0x1FFD, .status = .mapped, .mapping = &.{0x0020,0x0301}, .status2 = .none, }, + .{ .cp = 0x1FFE, .status = .mapped, .mapping = &.{0x0020,0x0314}, .status2 = .none, }, + .{ .cp = 0x1FFF, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x200B, .status = .ignored, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x2010, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .cp = 0x2011, .status = .mapped, .mapping = &.{0x2010}, .status2 = .none, }, + .{ .cp = 0x2017, .status = .mapped, .mapping = &.{0x0020,0x0333}, .status2 = .none, }, + .{ .cp = 0x2027, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .cp = 0x202F, .status = .mapped, .mapping = &.{0x0020}, .status2 = .none, }, + .{ .cp = 0x2033, .status = .mapped, .mapping = &.{0x2032,0x2032}, .status2 = .none, }, + .{ .cp = 0x2034, .status = .mapped, .mapping = &.{0x2032,0x2032,0x2032}, .status2 = .none, }, + .{ .cp = 0x2035, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .cp = 0x2036, .status = .mapped, .mapping = &.{0x2035,0x2035}, .status2 = .none, }, + .{ .cp = 0x2037, .status = .mapped, .mapping = &.{0x2035,0x2035,0x2035}, .status2 = .none, }, + .{ .cp = 0x203C, .status = .mapped, .mapping = &.{0x0021,0x0021}, .status2 = .none, }, + .{ .cp = 0x203D, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .cp = 0x203E, .status = .mapped, .mapping = &.{0x0020,0x0305}, .status2 = .none, }, + .{ .cp = 0x2047, .status = .mapped, .mapping = &.{0x003F,0x003F}, .status2 = .none, }, + .{ .cp = 0x2048, .status = .mapped, .mapping = &.{0x003F,0x0021}, .status2 = .none, }, + .{ .cp = 0x2049, .status = .mapped, .mapping = &.{0x0021,0x003F}, .status2 = .none, }, + .{ .cp = 0x2057, .status = .mapped, .mapping = &.{0x2032,0x2032,0x2032,0x2032}, .status2 = .none, }, + .{ .cp = 0x205F, .status = .mapped, .mapping = &.{0x0020}, .status2 = .none, }, + .{ .cp = 0x2064, .status = .ignored, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x2065, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x2070, .status = .mapped, .mapping = &.{0x0030}, .status2 = .none, }, + .{ .cp = 0x2071, .status = .mapped, .mapping = &.{0x0069}, .status2 = .none, }, + .{ .cp = 0x2074, .status = .mapped, .mapping = &.{0x0034}, .status2 = .none, }, + .{ .cp = 0x2075, .status = .mapped, .mapping = &.{0x0035}, .status2 = .none, }, + .{ .cp = 0x2076, .status = .mapped, .mapping = &.{0x0036}, .status2 = .none, }, + .{ .cp = 0x2077, .status = .mapped, .mapping = &.{0x0037}, .status2 = .none, }, + .{ .cp = 0x2078, .status = .mapped, .mapping = &.{0x0038}, .status2 = .none, }, + .{ .cp = 0x2079, .status = .mapped, .mapping = &.{0x0039}, .status2 = .none, }, + .{ .cp = 0x207A, .status = .mapped, .mapping = &.{0x002B}, .status2 = .none, }, + .{ .cp = 0x207B, .status = .mapped, .mapping = &.{0x2212}, .status2 = .none, }, + .{ .cp = 0x207C, .status = .mapped, .mapping = &.{0x003D}, .status2 = .none, }, + .{ .cp = 0x207D, .status = .mapped, .mapping = &.{0x0028}, .status2 = .none, }, + .{ .cp = 0x207E, .status = .mapped, .mapping = &.{0x0029}, .status2 = .none, }, + .{ .cp = 0x207F, .status = .mapped, .mapping = &.{0x006E}, .status2 = .none, }, + .{ .cp = 0x2080, .status = .mapped, .mapping = &.{0x0030}, .status2 = .none, }, + .{ .cp = 0x2081, .status = .mapped, .mapping = &.{0x0031}, .status2 = .none, }, + .{ .cp = 0x2082, .status = .mapped, .mapping = &.{0x0032}, .status2 = .none, }, + .{ .cp = 0x2083, .status = .mapped, .mapping = &.{0x0033}, .status2 = .none, }, + .{ .cp = 0x2084, .status = .mapped, .mapping = &.{0x0034}, .status2 = .none, }, + .{ .cp = 0x2085, .status = .mapped, .mapping = &.{0x0035}, .status2 = .none, }, + .{ .cp = 0x2086, .status = .mapped, .mapping = &.{0x0036}, .status2 = .none, }, + .{ .cp = 0x2087, .status = .mapped, .mapping = &.{0x0037}, .status2 = .none, }, + .{ .cp = 0x2088, .status = .mapped, .mapping = &.{0x0038}, .status2 = .none, }, + .{ .cp = 0x2089, .status = .mapped, .mapping = &.{0x0039}, .status2 = .none, }, + .{ .cp = 0x208A, .status = .mapped, .mapping = &.{0x002B}, .status2 = .none, }, + .{ .cp = 0x208B, .status = .mapped, .mapping = &.{0x2212}, .status2 = .none, }, + .{ .cp = 0x208C, .status = .mapped, .mapping = &.{0x003D}, .status2 = .none, }, + .{ .cp = 0x208D, .status = .mapped, .mapping = &.{0x0028}, .status2 = .none, }, + .{ .cp = 0x208E, .status = .mapped, .mapping = &.{0x0029}, .status2 = .none, }, + .{ .cp = 0x208F, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x2090, .status = .mapped, .mapping = &.{0x0061}, .status2 = .none, }, + .{ .cp = 0x2091, .status = .mapped, .mapping = &.{0x0065}, .status2 = .none, }, + .{ .cp = 0x2092, .status = .mapped, .mapping = &.{0x006F}, .status2 = .none, }, + .{ .cp = 0x2093, .status = .mapped, .mapping = &.{0x0078}, .status2 = .none, }, + .{ .cp = 0x2094, .status = .mapped, .mapping = &.{0x0259}, .status2 = .none, }, + .{ .cp = 0x2095, .status = .mapped, .mapping = &.{0x0068}, .status2 = .none, }, + .{ .cp = 0x2096, .status = .mapped, .mapping = &.{0x006B}, .status2 = .none, }, + .{ .cp = 0x2097, .status = .mapped, .mapping = &.{0x006C}, .status2 = .none, }, + .{ .cp = 0x2098, .status = .mapped, .mapping = &.{0x006D}, .status2 = .none, }, + .{ .cp = 0x2099, .status = .mapped, .mapping = &.{0x006E}, .status2 = .none, }, + .{ .cp = 0x209A, .status = .mapped, .mapping = &.{0x0070}, .status2 = .none, }, + .{ .cp = 0x209B, .status = .mapped, .mapping = &.{0x0073}, .status2 = .none, }, + .{ .cp = 0x209C, .status = .mapped, .mapping = &.{0x0074}, .status2 = .none, }, + .{ .cp = 0x20A8, .status = .mapped, .mapping = &.{0x0072,0x0073}, .status2 = .none, }, + .{ .cp = 0x20AB, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .cp = 0x20AC, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .cp = 0x20B9, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .cp = 0x20BA, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .cp = 0x20BE, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .cp = 0x20BF, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .cp = 0x20C0, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .cp = 0x20C1, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .cp = 0x20EB, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .cp = 0x20F0, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .cp = 0x2100, .status = .mapped, .mapping = &.{0x0061,0x002F,0x0063}, .status2 = .none, }, + .{ .cp = 0x2101, .status = .mapped, .mapping = &.{0x0061,0x002F,0x0073}, .status2 = .none, }, + .{ .cp = 0x2102, .status = .mapped, .mapping = &.{0x0063}, .status2 = .none, }, + .{ .cp = 0x2103, .status = .mapped, .mapping = &.{0x00B0,0x0063}, .status2 = .none, }, + .{ .cp = 0x2104, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .cp = 0x2105, .status = .mapped, .mapping = &.{0x0063,0x002F,0x006F}, .status2 = .none, }, + .{ .cp = 0x2106, .status = .mapped, .mapping = &.{0x0063,0x002F,0x0075}, .status2 = .none, }, + .{ .cp = 0x2107, .status = .mapped, .mapping = &.{0x025B}, .status2 = .none, }, + .{ .cp = 0x2108, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .cp = 0x2109, .status = .mapped, .mapping = &.{0x00B0,0x0066}, .status2 = .none, }, + .{ .cp = 0x210A, .status = .mapped, .mapping = &.{0x0067}, .status2 = .none, }, + .{ .cp = 0x210F, .status = .mapped, .mapping = &.{0x0127}, .status2 = .none, }, + .{ .cp = 0x2114, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .cp = 0x2115, .status = .mapped, .mapping = &.{0x006E}, .status2 = .none, }, + .{ .cp = 0x2116, .status = .mapped, .mapping = &.{0x006E,0x006F}, .status2 = .none, }, + .{ .cp = 0x2119, .status = .mapped, .mapping = &.{0x0070}, .status2 = .none, }, + .{ .cp = 0x211A, .status = .mapped, .mapping = &.{0x0071}, .status2 = .none, }, + .{ .cp = 0x2120, .status = .mapped, .mapping = &.{0x0073,0x006D}, .status2 = .none, }, + .{ .cp = 0x2121, .status = .mapped, .mapping = &.{0x0074,0x0065,0x006C}, .status2 = .none, }, + .{ .cp = 0x2122, .status = .mapped, .mapping = &.{0x0074,0x006D}, .status2 = .none, }, + .{ .cp = 0x2123, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .cp = 0x2124, .status = .mapped, .mapping = &.{0x007A}, .status2 = .none, }, + .{ .cp = 0x2125, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .cp = 0x2126, .status = .mapped, .mapping = &.{0x03C9}, .status2 = .none, }, + .{ .cp = 0x2127, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .cp = 0x2128, .status = .mapped, .mapping = &.{0x007A}, .status2 = .none, }, + .{ .cp = 0x2129, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .cp = 0x212A, .status = .mapped, .mapping = &.{0x006B}, .status2 = .none, }, + .{ .cp = 0x212B, .status = .mapped, .mapping = &.{0x00E5}, .status2 = .none, }, + .{ .cp = 0x212C, .status = .mapped, .mapping = &.{0x0062}, .status2 = .none, }, + .{ .cp = 0x212D, .status = .mapped, .mapping = &.{0x0063}, .status2 = .none, }, + .{ .cp = 0x212E, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .cp = 0x2131, .status = .mapped, .mapping = &.{0x0066}, .status2 = .none, }, + .{ .cp = 0x2132, .status = .mapped, .mapping = &.{0x214E}, .status2 = .none, }, + .{ .cp = 0x2133, .status = .mapped, .mapping = &.{0x006D}, .status2 = .none, }, + .{ .cp = 0x2134, .status = .mapped, .mapping = &.{0x006F}, .status2 = .none, }, + .{ .cp = 0x2135, .status = .mapped, .mapping = &.{0x05D0}, .status2 = .none, }, + .{ .cp = 0x2136, .status = .mapped, .mapping = &.{0x05D1}, .status2 = .none, }, + .{ .cp = 0x2137, .status = .mapped, .mapping = &.{0x05D2}, .status2 = .none, }, + .{ .cp = 0x2138, .status = .mapped, .mapping = &.{0x05D3}, .status2 = .none, }, + .{ .cp = 0x2139, .status = .mapped, .mapping = &.{0x0069}, .status2 = .none, }, + .{ .cp = 0x213A, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .cp = 0x213B, .status = .mapped, .mapping = &.{0x0066,0x0061,0x0078}, .status2 = .none, }, + .{ .cp = 0x213C, .status = .mapped, .mapping = &.{0x03C0}, .status2 = .none, }, + .{ .cp = 0x213F, .status = .mapped, .mapping = &.{0x03C0}, .status2 = .none, }, + .{ .cp = 0x2140, .status = .mapped, .mapping = &.{0x2211}, .status2 = .none, }, + .{ .cp = 0x2147, .status = .mapped, .mapping = &.{0x0065}, .status2 = .none, }, + .{ .cp = 0x2148, .status = .mapped, .mapping = &.{0x0069}, .status2 = .none, }, + .{ .cp = 0x2149, .status = .mapped, .mapping = &.{0x006A}, .status2 = .none, }, + .{ .cp = 0x214C, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .cp = 0x214D, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .cp = 0x214E, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x214F, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .cp = 0x2150, .status = .mapped, .mapping = &.{0x0031,0x2044,0x0037}, .status2 = .none, }, + .{ .cp = 0x2151, .status = .mapped, .mapping = &.{0x0031,0x2044,0x0039}, .status2 = .none, }, + .{ .cp = 0x2152, .status = .mapped, .mapping = &.{0x0031,0x2044,0x0031,0x0030}, .status2 = .none, }, + .{ .cp = 0x2153, .status = .mapped, .mapping = &.{0x0031,0x2044,0x0033}, .status2 = .none, }, + .{ .cp = 0x2154, .status = .mapped, .mapping = &.{0x0032,0x2044,0x0033}, .status2 = .none, }, + .{ .cp = 0x2155, .status = .mapped, .mapping = &.{0x0031,0x2044,0x0035}, .status2 = .none, }, + .{ .cp = 0x2156, .status = .mapped, .mapping = &.{0x0032,0x2044,0x0035}, .status2 = .none, }, + .{ .cp = 0x2157, .status = .mapped, .mapping = &.{0x0033,0x2044,0x0035}, .status2 = .none, }, + .{ .cp = 0x2158, .status = .mapped, .mapping = &.{0x0034,0x2044,0x0035}, .status2 = .none, }, + .{ .cp = 0x2159, .status = .mapped, .mapping = &.{0x0031,0x2044,0x0036}, .status2 = .none, }, + .{ .cp = 0x215A, .status = .mapped, .mapping = &.{0x0035,0x2044,0x0036}, .status2 = .none, }, + .{ .cp = 0x215B, .status = .mapped, .mapping = &.{0x0031,0x2044,0x0038}, .status2 = .none, }, + .{ .cp = 0x215C, .status = .mapped, .mapping = &.{0x0033,0x2044,0x0038}, .status2 = .none, }, + .{ .cp = 0x215D, .status = .mapped, .mapping = &.{0x0035,0x2044,0x0038}, .status2 = .none, }, + .{ .cp = 0x215E, .status = .mapped, .mapping = &.{0x0037,0x2044,0x0038}, .status2 = .none, }, + .{ .cp = 0x215F, .status = .mapped, .mapping = &.{0x0031,0x2044}, .status2 = .none, }, + .{ .cp = 0x2160, .status = .mapped, .mapping = &.{0x0069}, .status2 = .none, }, + .{ .cp = 0x2161, .status = .mapped, .mapping = &.{0x0069,0x0069}, .status2 = .none, }, + .{ .cp = 0x2162, .status = .mapped, .mapping = &.{0x0069,0x0069,0x0069}, .status2 = .none, }, + .{ .cp = 0x2163, .status = .mapped, .mapping = &.{0x0069,0x0076}, .status2 = .none, }, + .{ .cp = 0x2164, .status = .mapped, .mapping = &.{0x0076}, .status2 = .none, }, + .{ .cp = 0x2165, .status = .mapped, .mapping = &.{0x0076,0x0069}, .status2 = .none, }, + .{ .cp = 0x2166, .status = .mapped, .mapping = &.{0x0076,0x0069,0x0069}, .status2 = .none, }, + .{ .cp = 0x2167, .status = .mapped, .mapping = &.{0x0076,0x0069,0x0069,0x0069}, .status2 = .none, }, + .{ .cp = 0x2168, .status = .mapped, .mapping = &.{0x0069,0x0078}, .status2 = .none, }, + .{ .cp = 0x2169, .status = .mapped, .mapping = &.{0x0078}, .status2 = .none, }, + .{ .cp = 0x216A, .status = .mapped, .mapping = &.{0x0078,0x0069}, .status2 = .none, }, + .{ .cp = 0x216B, .status = .mapped, .mapping = &.{0x0078,0x0069,0x0069}, .status2 = .none, }, + .{ .cp = 0x216C, .status = .mapped, .mapping = &.{0x006C}, .status2 = .none, }, + .{ .cp = 0x216D, .status = .mapped, .mapping = &.{0x0063}, .status2 = .none, }, + .{ .cp = 0x216E, .status = .mapped, .mapping = &.{0x0064}, .status2 = .none, }, + .{ .cp = 0x216F, .status = .mapped, .mapping = &.{0x006D}, .status2 = .none, }, + .{ .cp = 0x2170, .status = .mapped, .mapping = &.{0x0069}, .status2 = .none, }, + .{ .cp = 0x2171, .status = .mapped, .mapping = &.{0x0069,0x0069}, .status2 = .none, }, + .{ .cp = 0x2172, .status = .mapped, .mapping = &.{0x0069,0x0069,0x0069}, .status2 = .none, }, + .{ .cp = 0x2173, .status = .mapped, .mapping = &.{0x0069,0x0076}, .status2 = .none, }, + .{ .cp = 0x2174, .status = .mapped, .mapping = &.{0x0076}, .status2 = .none, }, + .{ .cp = 0x2175, .status = .mapped, .mapping = &.{0x0076,0x0069}, .status2 = .none, }, + .{ .cp = 0x2176, .status = .mapped, .mapping = &.{0x0076,0x0069,0x0069}, .status2 = .none, }, + .{ .cp = 0x2177, .status = .mapped, .mapping = &.{0x0076,0x0069,0x0069,0x0069}, .status2 = .none, }, + .{ .cp = 0x2178, .status = .mapped, .mapping = &.{0x0069,0x0078}, .status2 = .none, }, + .{ .cp = 0x2179, .status = .mapped, .mapping = &.{0x0078}, .status2 = .none, }, + .{ .cp = 0x217A, .status = .mapped, .mapping = &.{0x0078,0x0069}, .status2 = .none, }, + .{ .cp = 0x217B, .status = .mapped, .mapping = &.{0x0078,0x0069,0x0069}, .status2 = .none, }, + .{ .cp = 0x217C, .status = .mapped, .mapping = &.{0x006C}, .status2 = .none, }, + .{ .cp = 0x217D, .status = .mapped, .mapping = &.{0x0063}, .status2 = .none, }, + .{ .cp = 0x217E, .status = .mapped, .mapping = &.{0x0064}, .status2 = .none, }, + .{ .cp = 0x217F, .status = .mapped, .mapping = &.{0x006D}, .status2 = .none, }, + .{ .cp = 0x2183, .status = .mapped, .mapping = &.{0x2184}, .status2 = .none, }, + .{ .cp = 0x2184, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x2189, .status = .mapped, .mapping = &.{0x0030,0x2044,0x0033}, .status2 = .none, }, + .{ .cp = 0x222C, .status = .mapped, .mapping = &.{0x222B,0x222B}, .status2 = .none, }, + .{ .cp = 0x222D, .status = .mapped, .mapping = &.{0x222B,0x222B,0x222B}, .status2 = .none, }, + .{ .cp = 0x222E, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .cp = 0x222F, .status = .mapped, .mapping = &.{0x222E,0x222E}, .status2 = .none, }, + .{ .cp = 0x2230, .status = .mapped, .mapping = &.{0x222E,0x222E,0x222E}, .status2 = .none, }, + .{ .cp = 0x2300, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .cp = 0x2301, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .cp = 0x2329, .status = .mapped, .mapping = &.{0x3008}, .status2 = .none, }, + .{ .cp = 0x232A, .status = .mapped, .mapping = &.{0x3009}, .status2 = .none, }, + .{ .cp = 0x237B, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .cp = 0x237C, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .cp = 0x23E8, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .cp = 0x23FF, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .cp = 0x2460, .status = .mapped, .mapping = &.{0x0031}, .status2 = .none, }, + .{ .cp = 0x2461, .status = .mapped, .mapping = &.{0x0032}, .status2 = .none, }, + .{ .cp = 0x2462, .status = .mapped, .mapping = &.{0x0033}, .status2 = .none, }, + .{ .cp = 0x2463, .status = .mapped, .mapping = &.{0x0034}, .status2 = .none, }, + .{ .cp = 0x2464, .status = .mapped, .mapping = &.{0x0035}, .status2 = .none, }, + .{ .cp = 0x2465, .status = .mapped, .mapping = &.{0x0036}, .status2 = .none, }, + .{ .cp = 0x2466, .status = .mapped, .mapping = &.{0x0037}, .status2 = .none, }, + .{ .cp = 0x2467, .status = .mapped, .mapping = &.{0x0038}, .status2 = .none, }, + .{ .cp = 0x2468, .status = .mapped, .mapping = &.{0x0039}, .status2 = .none, }, + .{ .cp = 0x2469, .status = .mapped, .mapping = &.{0x0031,0x0030}, .status2 = .none, }, + .{ .cp = 0x246A, .status = .mapped, .mapping = &.{0x0031,0x0031}, .status2 = .none, }, + .{ .cp = 0x246B, .status = .mapped, .mapping = &.{0x0031,0x0032}, .status2 = .none, }, + .{ .cp = 0x246C, .status = .mapped, .mapping = &.{0x0031,0x0033}, .status2 = .none, }, + .{ .cp = 0x246D, .status = .mapped, .mapping = &.{0x0031,0x0034}, .status2 = .none, }, + .{ .cp = 0x246E, .status = .mapped, .mapping = &.{0x0031,0x0035}, .status2 = .none, }, + .{ .cp = 0x246F, .status = .mapped, .mapping = &.{0x0031,0x0036}, .status2 = .none, }, + .{ .cp = 0x2470, .status = .mapped, .mapping = &.{0x0031,0x0037}, .status2 = .none, }, + .{ .cp = 0x2471, .status = .mapped, .mapping = &.{0x0031,0x0038}, .status2 = .none, }, + .{ .cp = 0x2472, .status = .mapped, .mapping = &.{0x0031,0x0039}, .status2 = .none, }, + .{ .cp = 0x2473, .status = .mapped, .mapping = &.{0x0032,0x0030}, .status2 = .none, }, + .{ .cp = 0x2474, .status = .mapped, .mapping = &.{0x0028,0x0031,0x0029}, .status2 = .none, }, + .{ .cp = 0x2475, .status = .mapped, .mapping = &.{0x0028,0x0032,0x0029}, .status2 = .none, }, + .{ .cp = 0x2476, .status = .mapped, .mapping = &.{0x0028,0x0033,0x0029}, .status2 = .none, }, + .{ .cp = 0x2477, .status = .mapped, .mapping = &.{0x0028,0x0034,0x0029}, .status2 = .none, }, + .{ .cp = 0x2478, .status = .mapped, .mapping = &.{0x0028,0x0035,0x0029}, .status2 = .none, }, + .{ .cp = 0x2479, .status = .mapped, .mapping = &.{0x0028,0x0036,0x0029}, .status2 = .none, }, + .{ .cp = 0x247A, .status = .mapped, .mapping = &.{0x0028,0x0037,0x0029}, .status2 = .none, }, + .{ .cp = 0x247B, .status = .mapped, .mapping = &.{0x0028,0x0038,0x0029}, .status2 = .none, }, + .{ .cp = 0x247C, .status = .mapped, .mapping = &.{0x0028,0x0039,0x0029}, .status2 = .none, }, + .{ .cp = 0x247D, .status = .mapped, .mapping = &.{0x0028,0x0031,0x0030,0x0029}, .status2 = .none, }, + .{ .cp = 0x247E, .status = .mapped, .mapping = &.{0x0028,0x0031,0x0031,0x0029}, .status2 = .none, }, + .{ .cp = 0x247F, .status = .mapped, .mapping = &.{0x0028,0x0031,0x0032,0x0029}, .status2 = .none, }, + .{ .cp = 0x2480, .status = .mapped, .mapping = &.{0x0028,0x0031,0x0033,0x0029}, .status2 = .none, }, + .{ .cp = 0x2481, .status = .mapped, .mapping = &.{0x0028,0x0031,0x0034,0x0029}, .status2 = .none, }, + .{ .cp = 0x2482, .status = .mapped, .mapping = &.{0x0028,0x0031,0x0035,0x0029}, .status2 = .none, }, + .{ .cp = 0x2483, .status = .mapped, .mapping = &.{0x0028,0x0031,0x0036,0x0029}, .status2 = .none, }, + .{ .cp = 0x2484, .status = .mapped, .mapping = &.{0x0028,0x0031,0x0037,0x0029}, .status2 = .none, }, + .{ .cp = 0x2485, .status = .mapped, .mapping = &.{0x0028,0x0031,0x0038,0x0029}, .status2 = .none, }, + .{ .cp = 0x2486, .status = .mapped, .mapping = &.{0x0028,0x0031,0x0039,0x0029}, .status2 = .none, }, + .{ .cp = 0x2487, .status = .mapped, .mapping = &.{0x0028,0x0032,0x0030,0x0029}, .status2 = .none, }, + .{ .cp = 0x249C, .status = .mapped, .mapping = &.{0x0028,0x0061,0x0029}, .status2 = .none, }, + .{ .cp = 0x249D, .status = .mapped, .mapping = &.{0x0028,0x0062,0x0029}, .status2 = .none, }, + .{ .cp = 0x249E, .status = .mapped, .mapping = &.{0x0028,0x0063,0x0029}, .status2 = .none, }, + .{ .cp = 0x249F, .status = .mapped, .mapping = &.{0x0028,0x0064,0x0029}, .status2 = .none, }, + .{ .cp = 0x24A0, .status = .mapped, .mapping = &.{0x0028,0x0065,0x0029}, .status2 = .none, }, + .{ .cp = 0x24A1, .status = .mapped, .mapping = &.{0x0028,0x0066,0x0029}, .status2 = .none, }, + .{ .cp = 0x24A2, .status = .mapped, .mapping = &.{0x0028,0x0067,0x0029}, .status2 = .none, }, + .{ .cp = 0x24A3, .status = .mapped, .mapping = &.{0x0028,0x0068,0x0029}, .status2 = .none, }, + .{ .cp = 0x24A4, .status = .mapped, .mapping = &.{0x0028,0x0069,0x0029}, .status2 = .none, }, + .{ .cp = 0x24A5, .status = .mapped, .mapping = &.{0x0028,0x006A,0x0029}, .status2 = .none, }, + .{ .cp = 0x24A6, .status = .mapped, .mapping = &.{0x0028,0x006B,0x0029}, .status2 = .none, }, + .{ .cp = 0x24A7, .status = .mapped, .mapping = &.{0x0028,0x006C,0x0029}, .status2 = .none, }, + .{ .cp = 0x24A8, .status = .mapped, .mapping = &.{0x0028,0x006D,0x0029}, .status2 = .none, }, + .{ .cp = 0x24A9, .status = .mapped, .mapping = &.{0x0028,0x006E,0x0029}, .status2 = .none, }, + .{ .cp = 0x24AA, .status = .mapped, .mapping = &.{0x0028,0x006F,0x0029}, .status2 = .none, }, + .{ .cp = 0x24AB, .status = .mapped, .mapping = &.{0x0028,0x0070,0x0029}, .status2 = .none, }, + .{ .cp = 0x24AC, .status = .mapped, .mapping = &.{0x0028,0x0071,0x0029}, .status2 = .none, }, + .{ .cp = 0x24AD, .status = .mapped, .mapping = &.{0x0028,0x0072,0x0029}, .status2 = .none, }, + .{ .cp = 0x24AE, .status = .mapped, .mapping = &.{0x0028,0x0073,0x0029}, .status2 = .none, }, + .{ .cp = 0x24AF, .status = .mapped, .mapping = &.{0x0028,0x0074,0x0029}, .status2 = .none, }, + .{ .cp = 0x24B0, .status = .mapped, .mapping = &.{0x0028,0x0075,0x0029}, .status2 = .none, }, + .{ .cp = 0x24B1, .status = .mapped, .mapping = &.{0x0028,0x0076,0x0029}, .status2 = .none, }, + .{ .cp = 0x24B2, .status = .mapped, .mapping = &.{0x0028,0x0077,0x0029}, .status2 = .none, }, + .{ .cp = 0x24B3, .status = .mapped, .mapping = &.{0x0028,0x0078,0x0029}, .status2 = .none, }, + .{ .cp = 0x24B4, .status = .mapped, .mapping = &.{0x0028,0x0079,0x0029}, .status2 = .none, }, + .{ .cp = 0x24B5, .status = .mapped, .mapping = &.{0x0028,0x007A,0x0029}, .status2 = .none, }, + .{ .cp = 0x24B6, .status = .mapped, .mapping = &.{0x0061}, .status2 = .none, }, + .{ .cp = 0x24B7, .status = .mapped, .mapping = &.{0x0062}, .status2 = .none, }, + .{ .cp = 0x24B8, .status = .mapped, .mapping = &.{0x0063}, .status2 = .none, }, + .{ .cp = 0x24B9, .status = .mapped, .mapping = &.{0x0064}, .status2 = .none, }, + .{ .cp = 0x24BA, .status = .mapped, .mapping = &.{0x0065}, .status2 = .none, }, + .{ .cp = 0x24BB, .status = .mapped, .mapping = &.{0x0066}, .status2 = .none, }, + .{ .cp = 0x24BC, .status = .mapped, .mapping = &.{0x0067}, .status2 = .none, }, + .{ .cp = 0x24BD, .status = .mapped, .mapping = &.{0x0068}, .status2 = .none, }, + .{ .cp = 0x24BE, .status = .mapped, .mapping = &.{0x0069}, .status2 = .none, }, + .{ .cp = 0x24BF, .status = .mapped, .mapping = &.{0x006A}, .status2 = .none, }, + .{ .cp = 0x24C0, .status = .mapped, .mapping = &.{0x006B}, .status2 = .none, }, + .{ .cp = 0x24C1, .status = .mapped, .mapping = &.{0x006C}, .status2 = .none, }, + .{ .cp = 0x24C2, .status = .mapped, .mapping = &.{0x006D}, .status2 = .none, }, + .{ .cp = 0x24C3, .status = .mapped, .mapping = &.{0x006E}, .status2 = .none, }, + .{ .cp = 0x24C4, .status = .mapped, .mapping = &.{0x006F}, .status2 = .none, }, + .{ .cp = 0x24C5, .status = .mapped, .mapping = &.{0x0070}, .status2 = .none, }, + .{ .cp = 0x24C6, .status = .mapped, .mapping = &.{0x0071}, .status2 = .none, }, + .{ .cp = 0x24C7, .status = .mapped, .mapping = &.{0x0072}, .status2 = .none, }, + .{ .cp = 0x24C8, .status = .mapped, .mapping = &.{0x0073}, .status2 = .none, }, + .{ .cp = 0x24C9, .status = .mapped, .mapping = &.{0x0074}, .status2 = .none, }, + .{ .cp = 0x24CA, .status = .mapped, .mapping = &.{0x0075}, .status2 = .none, }, + .{ .cp = 0x24CB, .status = .mapped, .mapping = &.{0x0076}, .status2 = .none, }, + .{ .cp = 0x24CC, .status = .mapped, .mapping = &.{0x0077}, .status2 = .none, }, + .{ .cp = 0x24CD, .status = .mapped, .mapping = &.{0x0078}, .status2 = .none, }, + .{ .cp = 0x24CE, .status = .mapped, .mapping = &.{0x0079}, .status2 = .none, }, + .{ .cp = 0x24CF, .status = .mapped, .mapping = &.{0x007A}, .status2 = .none, }, + .{ .cp = 0x24D0, .status = .mapped, .mapping = &.{0x0061}, .status2 = .none, }, + .{ .cp = 0x24D1, .status = .mapped, .mapping = &.{0x0062}, .status2 = .none, }, + .{ .cp = 0x24D2, .status = .mapped, .mapping = &.{0x0063}, .status2 = .none, }, + .{ .cp = 0x24D3, .status = .mapped, .mapping = &.{0x0064}, .status2 = .none, }, + .{ .cp = 0x24D4, .status = .mapped, .mapping = &.{0x0065}, .status2 = .none, }, + .{ .cp = 0x24D5, .status = .mapped, .mapping = &.{0x0066}, .status2 = .none, }, + .{ .cp = 0x24D6, .status = .mapped, .mapping = &.{0x0067}, .status2 = .none, }, + .{ .cp = 0x24D7, .status = .mapped, .mapping = &.{0x0068}, .status2 = .none, }, + .{ .cp = 0x24D8, .status = .mapped, .mapping = &.{0x0069}, .status2 = .none, }, + .{ .cp = 0x24D9, .status = .mapped, .mapping = &.{0x006A}, .status2 = .none, }, + .{ .cp = 0x24DA, .status = .mapped, .mapping = &.{0x006B}, .status2 = .none, }, + .{ .cp = 0x24DB, .status = .mapped, .mapping = &.{0x006C}, .status2 = .none, }, + .{ .cp = 0x24DC, .status = .mapped, .mapping = &.{0x006D}, .status2 = .none, }, + .{ .cp = 0x24DD, .status = .mapped, .mapping = &.{0x006E}, .status2 = .none, }, + .{ .cp = 0x24DE, .status = .mapped, .mapping = &.{0x006F}, .status2 = .none, }, + .{ .cp = 0x24DF, .status = .mapped, .mapping = &.{0x0070}, .status2 = .none, }, + .{ .cp = 0x24E0, .status = .mapped, .mapping = &.{0x0071}, .status2 = .none, }, + .{ .cp = 0x24E1, .status = .mapped, .mapping = &.{0x0072}, .status2 = .none, }, + .{ .cp = 0x24E2, .status = .mapped, .mapping = &.{0x0073}, .status2 = .none, }, + .{ .cp = 0x24E3, .status = .mapped, .mapping = &.{0x0074}, .status2 = .none, }, + .{ .cp = 0x24E4, .status = .mapped, .mapping = &.{0x0075}, .status2 = .none, }, + .{ .cp = 0x24E5, .status = .mapped, .mapping = &.{0x0076}, .status2 = .none, }, + .{ .cp = 0x24E6, .status = .mapped, .mapping = &.{0x0077}, .status2 = .none, }, + .{ .cp = 0x24E7, .status = .mapped, .mapping = &.{0x0078}, .status2 = .none, }, + .{ .cp = 0x24E8, .status = .mapped, .mapping = &.{0x0079}, .status2 = .none, }, + .{ .cp = 0x24E9, .status = .mapped, .mapping = &.{0x007A}, .status2 = .none, }, + .{ .cp = 0x24EA, .status = .mapped, .mapping = &.{0x0030}, .status2 = .none, }, + .{ .cp = 0x24FF, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .cp = 0x2618, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .cp = 0x2619, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .cp = 0x269D, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .cp = 0x26B2, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .cp = 0x26CE, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .cp = 0x26E2, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .cp = 0x26E3, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .cp = 0x2700, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .cp = 0x2705, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .cp = 0x2728, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .cp = 0x274C, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .cp = 0x274D, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .cp = 0x274E, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .cp = 0x2756, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .cp = 0x2757, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .cp = 0x27B0, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .cp = 0x27BF, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .cp = 0x27CB, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .cp = 0x27CC, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .cp = 0x27CD, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .cp = 0x2A0C, .status = .mapped, .mapping = &.{0x222B,0x222B,0x222B,0x222B}, .status2 = .none, }, + .{ .cp = 0x2A74, .status = .mapped, .mapping = &.{0x003A,0x003A,0x003D}, .status2 = .none, }, + .{ .cp = 0x2A75, .status = .mapped, .mapping = &.{0x003D,0x003D}, .status2 = .none, }, + .{ .cp = 0x2A76, .status = .mapped, .mapping = &.{0x003D,0x003D,0x003D}, .status2 = .none, }, + .{ .cp = 0x2ADC, .status = .mapped, .mapping = &.{0x2ADD,0x0338}, .status2 = .none, }, + .{ .cp = 0x2B96, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .cp = 0x2B97, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .cp = 0x2BC9, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .cp = 0x2BD2, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .cp = 0x2BFF, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .cp = 0x2C00, .status = .mapped, .mapping = &.{0x2C30}, .status2 = .none, }, + .{ .cp = 0x2C01, .status = .mapped, .mapping = &.{0x2C31}, .status2 = .none, }, + .{ .cp = 0x2C02, .status = .mapped, .mapping = &.{0x2C32}, .status2 = .none, }, + .{ .cp = 0x2C03, .status = .mapped, .mapping = &.{0x2C33}, .status2 = .none, }, + .{ .cp = 0x2C04, .status = .mapped, .mapping = &.{0x2C34}, .status2 = .none, }, + .{ .cp = 0x2C05, .status = .mapped, .mapping = &.{0x2C35}, .status2 = .none, }, + .{ .cp = 0x2C06, .status = .mapped, .mapping = &.{0x2C36}, .status2 = .none, }, + .{ .cp = 0x2C07, .status = .mapped, .mapping = &.{0x2C37}, .status2 = .none, }, + .{ .cp = 0x2C08, .status = .mapped, .mapping = &.{0x2C38}, .status2 = .none, }, + .{ .cp = 0x2C09, .status = .mapped, .mapping = &.{0x2C39}, .status2 = .none, }, + .{ .cp = 0x2C0A, .status = .mapped, .mapping = &.{0x2C3A}, .status2 = .none, }, + .{ .cp = 0x2C0B, .status = .mapped, .mapping = &.{0x2C3B}, .status2 = .none, }, + .{ .cp = 0x2C0C, .status = .mapped, .mapping = &.{0x2C3C}, .status2 = .none, }, + .{ .cp = 0x2C0D, .status = .mapped, .mapping = &.{0x2C3D}, .status2 = .none, }, + .{ .cp = 0x2C0E, .status = .mapped, .mapping = &.{0x2C3E}, .status2 = .none, }, + .{ .cp = 0x2C0F, .status = .mapped, .mapping = &.{0x2C3F}, .status2 = .none, }, + .{ .cp = 0x2C10, .status = .mapped, .mapping = &.{0x2C40}, .status2 = .none, }, + .{ .cp = 0x2C11, .status = .mapped, .mapping = &.{0x2C41}, .status2 = .none, }, + .{ .cp = 0x2C12, .status = .mapped, .mapping = &.{0x2C42}, .status2 = .none, }, + .{ .cp = 0x2C13, .status = .mapped, .mapping = &.{0x2C43}, .status2 = .none, }, + .{ .cp = 0x2C14, .status = .mapped, .mapping = &.{0x2C44}, .status2 = .none, }, + .{ .cp = 0x2C15, .status = .mapped, .mapping = &.{0x2C45}, .status2 = .none, }, + .{ .cp = 0x2C16, .status = .mapped, .mapping = &.{0x2C46}, .status2 = .none, }, + .{ .cp = 0x2C17, .status = .mapped, .mapping = &.{0x2C47}, .status2 = .none, }, + .{ .cp = 0x2C18, .status = .mapped, .mapping = &.{0x2C48}, .status2 = .none, }, + .{ .cp = 0x2C19, .status = .mapped, .mapping = &.{0x2C49}, .status2 = .none, }, + .{ .cp = 0x2C1A, .status = .mapped, .mapping = &.{0x2C4A}, .status2 = .none, }, + .{ .cp = 0x2C1B, .status = .mapped, .mapping = &.{0x2C4B}, .status2 = .none, }, + .{ .cp = 0x2C1C, .status = .mapped, .mapping = &.{0x2C4C}, .status2 = .none, }, + .{ .cp = 0x2C1D, .status = .mapped, .mapping = &.{0x2C4D}, .status2 = .none, }, + .{ .cp = 0x2C1E, .status = .mapped, .mapping = &.{0x2C4E}, .status2 = .none, }, + .{ .cp = 0x2C1F, .status = .mapped, .mapping = &.{0x2C4F}, .status2 = .none, }, + .{ .cp = 0x2C20, .status = .mapped, .mapping = &.{0x2C50}, .status2 = .none, }, + .{ .cp = 0x2C21, .status = .mapped, .mapping = &.{0x2C51}, .status2 = .none, }, + .{ .cp = 0x2C22, .status = .mapped, .mapping = &.{0x2C52}, .status2 = .none, }, + .{ .cp = 0x2C23, .status = .mapped, .mapping = &.{0x2C53}, .status2 = .none, }, + .{ .cp = 0x2C24, .status = .mapped, .mapping = &.{0x2C54}, .status2 = .none, }, + .{ .cp = 0x2C25, .status = .mapped, .mapping = &.{0x2C55}, .status2 = .none, }, + .{ .cp = 0x2C26, .status = .mapped, .mapping = &.{0x2C56}, .status2 = .none, }, + .{ .cp = 0x2C27, .status = .mapped, .mapping = &.{0x2C57}, .status2 = .none, }, + .{ .cp = 0x2C28, .status = .mapped, .mapping = &.{0x2C58}, .status2 = .none, }, + .{ .cp = 0x2C29, .status = .mapped, .mapping = &.{0x2C59}, .status2 = .none, }, + .{ .cp = 0x2C2A, .status = .mapped, .mapping = &.{0x2C5A}, .status2 = .none, }, + .{ .cp = 0x2C2B, .status = .mapped, .mapping = &.{0x2C5B}, .status2 = .none, }, + .{ .cp = 0x2C2C, .status = .mapped, .mapping = &.{0x2C5C}, .status2 = .none, }, + .{ .cp = 0x2C2D, .status = .mapped, .mapping = &.{0x2C5D}, .status2 = .none, }, + .{ .cp = 0x2C2E, .status = .mapped, .mapping = &.{0x2C5E}, .status2 = .none, }, + .{ .cp = 0x2C2F, .status = .mapped, .mapping = &.{0x2C5F}, .status2 = .none, }, + .{ .cp = 0x2C5F, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x2C60, .status = .mapped, .mapping = &.{0x2C61}, .status2 = .none, }, + .{ .cp = 0x2C61, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x2C62, .status = .mapped, .mapping = &.{0x026B}, .status2 = .none, }, + .{ .cp = 0x2C63, .status = .mapped, .mapping = &.{0x1D7D}, .status2 = .none, }, + .{ .cp = 0x2C64, .status = .mapped, .mapping = &.{0x027D}, .status2 = .none, }, + .{ .cp = 0x2C67, .status = .mapped, .mapping = &.{0x2C68}, .status2 = .none, }, + .{ .cp = 0x2C68, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x2C69, .status = .mapped, .mapping = &.{0x2C6A}, .status2 = .none, }, + .{ .cp = 0x2C6A, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x2C6B, .status = .mapped, .mapping = &.{0x2C6C}, .status2 = .none, }, + .{ .cp = 0x2C6C, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x2C6D, .status = .mapped, .mapping = &.{0x0251}, .status2 = .none, }, + .{ .cp = 0x2C6E, .status = .mapped, .mapping = &.{0x0271}, .status2 = .none, }, + .{ .cp = 0x2C6F, .status = .mapped, .mapping = &.{0x0250}, .status2 = .none, }, + .{ .cp = 0x2C70, .status = .mapped, .mapping = &.{0x0252}, .status2 = .none, }, + .{ .cp = 0x2C71, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x2C72, .status = .mapped, .mapping = &.{0x2C73}, .status2 = .none, }, + .{ .cp = 0x2C73, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x2C74, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x2C75, .status = .mapped, .mapping = &.{0x2C76}, .status2 = .none, }, + .{ .cp = 0x2C7C, .status = .mapped, .mapping = &.{0x006A}, .status2 = .none, }, + .{ .cp = 0x2C7D, .status = .mapped, .mapping = &.{0x0076}, .status2 = .none, }, + .{ .cp = 0x2C7E, .status = .mapped, .mapping = &.{0x023F}, .status2 = .none, }, + .{ .cp = 0x2C7F, .status = .mapped, .mapping = &.{0x0240}, .status2 = .none, }, + .{ .cp = 0x2C80, .status = .mapped, .mapping = &.{0x2C81}, .status2 = .none, }, + .{ .cp = 0x2C81, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x2C82, .status = .mapped, .mapping = &.{0x2C83}, .status2 = .none, }, + .{ .cp = 0x2C83, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x2C84, .status = .mapped, .mapping = &.{0x2C85}, .status2 = .none, }, + .{ .cp = 0x2C85, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x2C86, .status = .mapped, .mapping = &.{0x2C87}, .status2 = .none, }, + .{ .cp = 0x2C87, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x2C88, .status = .mapped, .mapping = &.{0x2C89}, .status2 = .none, }, + .{ .cp = 0x2C89, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x2C8A, .status = .mapped, .mapping = &.{0x2C8B}, .status2 = .none, }, + .{ .cp = 0x2C8B, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x2C8C, .status = .mapped, .mapping = &.{0x2C8D}, .status2 = .none, }, + .{ .cp = 0x2C8D, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x2C8E, .status = .mapped, .mapping = &.{0x2C8F}, .status2 = .none, }, + .{ .cp = 0x2C8F, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x2C90, .status = .mapped, .mapping = &.{0x2C91}, .status2 = .none, }, + .{ .cp = 0x2C91, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x2C92, .status = .mapped, .mapping = &.{0x2C93}, .status2 = .none, }, + .{ .cp = 0x2C93, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x2C94, .status = .mapped, .mapping = &.{0x2C95}, .status2 = .none, }, + .{ .cp = 0x2C95, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x2C96, .status = .mapped, .mapping = &.{0x2C97}, .status2 = .none, }, + .{ .cp = 0x2C97, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x2C98, .status = .mapped, .mapping = &.{0x2C99}, .status2 = .none, }, + .{ .cp = 0x2C99, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x2C9A, .status = .mapped, .mapping = &.{0x2C9B}, .status2 = .none, }, + .{ .cp = 0x2C9B, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x2C9C, .status = .mapped, .mapping = &.{0x2C9D}, .status2 = .none, }, + .{ .cp = 0x2C9D, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x2C9E, .status = .mapped, .mapping = &.{0x2C9F}, .status2 = .none, }, + .{ .cp = 0x2C9F, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x2CA0, .status = .mapped, .mapping = &.{0x2CA1}, .status2 = .none, }, + .{ .cp = 0x2CA1, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x2CA2, .status = .mapped, .mapping = &.{0x2CA3}, .status2 = .none, }, + .{ .cp = 0x2CA3, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x2CA4, .status = .mapped, .mapping = &.{0x2CA5}, .status2 = .none, }, + .{ .cp = 0x2CA5, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x2CA6, .status = .mapped, .mapping = &.{0x2CA7}, .status2 = .none, }, + .{ .cp = 0x2CA7, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x2CA8, .status = .mapped, .mapping = &.{0x2CA9}, .status2 = .none, }, + .{ .cp = 0x2CA9, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x2CAA, .status = .mapped, .mapping = &.{0x2CAB}, .status2 = .none, }, + .{ .cp = 0x2CAB, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x2CAC, .status = .mapped, .mapping = &.{0x2CAD}, .status2 = .none, }, + .{ .cp = 0x2CAD, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x2CAE, .status = .mapped, .mapping = &.{0x2CAF}, .status2 = .none, }, + .{ .cp = 0x2CAF, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x2CB0, .status = .mapped, .mapping = &.{0x2CB1}, .status2 = .none, }, + .{ .cp = 0x2CB1, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x2CB2, .status = .mapped, .mapping = &.{0x2CB3}, .status2 = .none, }, + .{ .cp = 0x2CB3, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x2CB4, .status = .mapped, .mapping = &.{0x2CB5}, .status2 = .none, }, + .{ .cp = 0x2CB5, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x2CB6, .status = .mapped, .mapping = &.{0x2CB7}, .status2 = .none, }, + .{ .cp = 0x2CB7, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x2CB8, .status = .mapped, .mapping = &.{0x2CB9}, .status2 = .none, }, + .{ .cp = 0x2CB9, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x2CBA, .status = .mapped, .mapping = &.{0x2CBB}, .status2 = .none, }, + .{ .cp = 0x2CBB, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x2CBC, .status = .mapped, .mapping = &.{0x2CBD}, .status2 = .none, }, + .{ .cp = 0x2CBD, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x2CBE, .status = .mapped, .mapping = &.{0x2CBF}, .status2 = .none, }, + .{ .cp = 0x2CBF, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x2CC0, .status = .mapped, .mapping = &.{0x2CC1}, .status2 = .none, }, + .{ .cp = 0x2CC1, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x2CC2, .status = .mapped, .mapping = &.{0x2CC3}, .status2 = .none, }, + .{ .cp = 0x2CC3, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x2CC4, .status = .mapped, .mapping = &.{0x2CC5}, .status2 = .none, }, + .{ .cp = 0x2CC5, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x2CC6, .status = .mapped, .mapping = &.{0x2CC7}, .status2 = .none, }, + .{ .cp = 0x2CC7, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x2CC8, .status = .mapped, .mapping = &.{0x2CC9}, .status2 = .none, }, + .{ .cp = 0x2CC9, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x2CCA, .status = .mapped, .mapping = &.{0x2CCB}, .status2 = .none, }, + .{ .cp = 0x2CCB, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x2CCC, .status = .mapped, .mapping = &.{0x2CCD}, .status2 = .none, }, + .{ .cp = 0x2CCD, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x2CCE, .status = .mapped, .mapping = &.{0x2CCF}, .status2 = .none, }, + .{ .cp = 0x2CCF, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x2CD0, .status = .mapped, .mapping = &.{0x2CD1}, .status2 = .none, }, + .{ .cp = 0x2CD1, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x2CD2, .status = .mapped, .mapping = &.{0x2CD3}, .status2 = .none, }, + .{ .cp = 0x2CD3, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x2CD4, .status = .mapped, .mapping = &.{0x2CD5}, .status2 = .none, }, + .{ .cp = 0x2CD5, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x2CD6, .status = .mapped, .mapping = &.{0x2CD7}, .status2 = .none, }, + .{ .cp = 0x2CD7, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x2CD8, .status = .mapped, .mapping = &.{0x2CD9}, .status2 = .none, }, + .{ .cp = 0x2CD9, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x2CDA, .status = .mapped, .mapping = &.{0x2CDB}, .status2 = .none, }, + .{ .cp = 0x2CDB, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x2CDC, .status = .mapped, .mapping = &.{0x2CDD}, .status2 = .none, }, + .{ .cp = 0x2CDD, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x2CDE, .status = .mapped, .mapping = &.{0x2CDF}, .status2 = .none, }, + .{ .cp = 0x2CDF, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x2CE0, .status = .mapped, .mapping = &.{0x2CE1}, .status2 = .none, }, + .{ .cp = 0x2CE1, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x2CE2, .status = .mapped, .mapping = &.{0x2CE3}, .status2 = .none, }, + .{ .cp = 0x2CEB, .status = .mapped, .mapping = &.{0x2CEC}, .status2 = .none, }, + .{ .cp = 0x2CEC, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x2CED, .status = .mapped, .mapping = &.{0x2CEE}, .status2 = .none, }, + .{ .cp = 0x2CF2, .status = .mapped, .mapping = &.{0x2CF3}, .status2 = .none, }, + .{ .cp = 0x2CF3, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x2D26, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x2D27, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x2D2D, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x2D6F, .status = .mapped, .mapping = &.{0x2D61}, .status2 = .none, }, + .{ .cp = 0x2D70, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .cp = 0x2D7F, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x2DA7, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x2DAF, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x2DB7, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x2DBF, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x2DC7, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x2DCF, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x2DD7, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x2DDF, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x2E2F, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x2E30, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .cp = 0x2E31, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .cp = 0x2E4F, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .cp = 0x2E9A, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x2E9F, .status = .mapped, .mapping = &.{0x6BCD}, .status2 = .none, }, + .{ .cp = 0x2EF3, .status = .mapped, .mapping = &.{0x9F9F}, .status2 = .none, }, + .{ .cp = 0x2F00, .status = .mapped, .mapping = &.{0x4E00}, .status2 = .none, }, + .{ .cp = 0x2F01, .status = .mapped, .mapping = &.{0x4E28}, .status2 = .none, }, + .{ .cp = 0x2F02, .status = .mapped, .mapping = &.{0x4E36}, .status2 = .none, }, + .{ .cp = 0x2F03, .status = .mapped, .mapping = &.{0x4E3F}, .status2 = .none, }, + .{ .cp = 0x2F04, .status = .mapped, .mapping = &.{0x4E59}, .status2 = .none, }, + .{ .cp = 0x2F05, .status = .mapped, .mapping = &.{0x4E85}, .status2 = .none, }, + .{ .cp = 0x2F06, .status = .mapped, .mapping = &.{0x4E8C}, .status2 = .none, }, + .{ .cp = 0x2F07, .status = .mapped, .mapping = &.{0x4EA0}, .status2 = .none, }, + .{ .cp = 0x2F08, .status = .mapped, .mapping = &.{0x4EBA}, .status2 = .none, }, + .{ .cp = 0x2F09, .status = .mapped, .mapping = &.{0x513F}, .status2 = .none, }, + .{ .cp = 0x2F0A, .status = .mapped, .mapping = &.{0x5165}, .status2 = .none, }, + .{ .cp = 0x2F0B, .status = .mapped, .mapping = &.{0x516B}, .status2 = .none, }, + .{ .cp = 0x2F0C, .status = .mapped, .mapping = &.{0x5182}, .status2 = .none, }, + .{ .cp = 0x2F0D, .status = .mapped, .mapping = &.{0x5196}, .status2 = .none, }, + .{ .cp = 0x2F0E, .status = .mapped, .mapping = &.{0x51AB}, .status2 = .none, }, + .{ .cp = 0x2F0F, .status = .mapped, .mapping = &.{0x51E0}, .status2 = .none, }, + .{ .cp = 0x2F10, .status = .mapped, .mapping = &.{0x51F5}, .status2 = .none, }, + .{ .cp = 0x2F11, .status = .mapped, .mapping = &.{0x5200}, .status2 = .none, }, + .{ .cp = 0x2F12, .status = .mapped, .mapping = &.{0x529B}, .status2 = .none, }, + .{ .cp = 0x2F13, .status = .mapped, .mapping = &.{0x52F9}, .status2 = .none, }, + .{ .cp = 0x2F14, .status = .mapped, .mapping = &.{0x5315}, .status2 = .none, }, + .{ .cp = 0x2F15, .status = .mapped, .mapping = &.{0x531A}, .status2 = .none, }, + .{ .cp = 0x2F16, .status = .mapped, .mapping = &.{0x5338}, .status2 = .none, }, + .{ .cp = 0x2F17, .status = .mapped, .mapping = &.{0x5341}, .status2 = .none, }, + .{ .cp = 0x2F18, .status = .mapped, .mapping = &.{0x535C}, .status2 = .none, }, + .{ .cp = 0x2F19, .status = .mapped, .mapping = &.{0x5369}, .status2 = .none, }, + .{ .cp = 0x2F1A, .status = .mapped, .mapping = &.{0x5382}, .status2 = .none, }, + .{ .cp = 0x2F1B, .status = .mapped, .mapping = &.{0x53B6}, .status2 = .none, }, + .{ .cp = 0x2F1C, .status = .mapped, .mapping = &.{0x53C8}, .status2 = .none, }, + .{ .cp = 0x2F1D, .status = .mapped, .mapping = &.{0x53E3}, .status2 = .none, }, + .{ .cp = 0x2F1E, .status = .mapped, .mapping = &.{0x56D7}, .status2 = .none, }, + .{ .cp = 0x2F1F, .status = .mapped, .mapping = &.{0x571F}, .status2 = .none, }, + .{ .cp = 0x2F20, .status = .mapped, .mapping = &.{0x58EB}, .status2 = .none, }, + .{ .cp = 0x2F21, .status = .mapped, .mapping = &.{0x5902}, .status2 = .none, }, + .{ .cp = 0x2F22, .status = .mapped, .mapping = &.{0x590A}, .status2 = .none, }, + .{ .cp = 0x2F23, .status = .mapped, .mapping = &.{0x5915}, .status2 = .none, }, + .{ .cp = 0x2F24, .status = .mapped, .mapping = &.{0x5927}, .status2 = .none, }, + .{ .cp = 0x2F25, .status = .mapped, .mapping = &.{0x5973}, .status2 = .none, }, + .{ .cp = 0x2F26, .status = .mapped, .mapping = &.{0x5B50}, .status2 = .none, }, + .{ .cp = 0x2F27, .status = .mapped, .mapping = &.{0x5B80}, .status2 = .none, }, + .{ .cp = 0x2F28, .status = .mapped, .mapping = &.{0x5BF8}, .status2 = .none, }, + .{ .cp = 0x2F29, .status = .mapped, .mapping = &.{0x5C0F}, .status2 = .none, }, + .{ .cp = 0x2F2A, .status = .mapped, .mapping = &.{0x5C22}, .status2 = .none, }, + .{ .cp = 0x2F2B, .status = .mapped, .mapping = &.{0x5C38}, .status2 = .none, }, + .{ .cp = 0x2F2C, .status = .mapped, .mapping = &.{0x5C6E}, .status2 = .none, }, + .{ .cp = 0x2F2D, .status = .mapped, .mapping = &.{0x5C71}, .status2 = .none, }, + .{ .cp = 0x2F2E, .status = .mapped, .mapping = &.{0x5DDB}, .status2 = .none, }, + .{ .cp = 0x2F2F, .status = .mapped, .mapping = &.{0x5DE5}, .status2 = .none, }, + .{ .cp = 0x2F30, .status = .mapped, .mapping = &.{0x5DF1}, .status2 = .none, }, + .{ .cp = 0x2F31, .status = .mapped, .mapping = &.{0x5DFE}, .status2 = .none, }, + .{ .cp = 0x2F32, .status = .mapped, .mapping = &.{0x5E72}, .status2 = .none, }, + .{ .cp = 0x2F33, .status = .mapped, .mapping = &.{0x5E7A}, .status2 = .none, }, + .{ .cp = 0x2F34, .status = .mapped, .mapping = &.{0x5E7F}, .status2 = .none, }, + .{ .cp = 0x2F35, .status = .mapped, .mapping = &.{0x5EF4}, .status2 = .none, }, + .{ .cp = 0x2F36, .status = .mapped, .mapping = &.{0x5EFE}, .status2 = .none, }, + .{ .cp = 0x2F37, .status = .mapped, .mapping = &.{0x5F0B}, .status2 = .none, }, + .{ .cp = 0x2F38, .status = .mapped, .mapping = &.{0x5F13}, .status2 = .none, }, + .{ .cp = 0x2F39, .status = .mapped, .mapping = &.{0x5F50}, .status2 = .none, }, + .{ .cp = 0x2F3A, .status = .mapped, .mapping = &.{0x5F61}, .status2 = .none, }, + .{ .cp = 0x2F3B, .status = .mapped, .mapping = &.{0x5F73}, .status2 = .none, }, + .{ .cp = 0x2F3C, .status = .mapped, .mapping = &.{0x5FC3}, .status2 = .none, }, + .{ .cp = 0x2F3D, .status = .mapped, .mapping = &.{0x6208}, .status2 = .none, }, + .{ .cp = 0x2F3E, .status = .mapped, .mapping = &.{0x6236}, .status2 = .none, }, + .{ .cp = 0x2F3F, .status = .mapped, .mapping = &.{0x624B}, .status2 = .none, }, + .{ .cp = 0x2F40, .status = .mapped, .mapping = &.{0x652F}, .status2 = .none, }, + .{ .cp = 0x2F41, .status = .mapped, .mapping = &.{0x6534}, .status2 = .none, }, + .{ .cp = 0x2F42, .status = .mapped, .mapping = &.{0x6587}, .status2 = .none, }, + .{ .cp = 0x2F43, .status = .mapped, .mapping = &.{0x6597}, .status2 = .none, }, + .{ .cp = 0x2F44, .status = .mapped, .mapping = &.{0x65A4}, .status2 = .none, }, + .{ .cp = 0x2F45, .status = .mapped, .mapping = &.{0x65B9}, .status2 = .none, }, + .{ .cp = 0x2F46, .status = .mapped, .mapping = &.{0x65E0}, .status2 = .none, }, + .{ .cp = 0x2F47, .status = .mapped, .mapping = &.{0x65E5}, .status2 = .none, }, + .{ .cp = 0x2F48, .status = .mapped, .mapping = &.{0x66F0}, .status2 = .none, }, + .{ .cp = 0x2F49, .status = .mapped, .mapping = &.{0x6708}, .status2 = .none, }, + .{ .cp = 0x2F4A, .status = .mapped, .mapping = &.{0x6728}, .status2 = .none, }, + .{ .cp = 0x2F4B, .status = .mapped, .mapping = &.{0x6B20}, .status2 = .none, }, + .{ .cp = 0x2F4C, .status = .mapped, .mapping = &.{0x6B62}, .status2 = .none, }, + .{ .cp = 0x2F4D, .status = .mapped, .mapping = &.{0x6B79}, .status2 = .none, }, + .{ .cp = 0x2F4E, .status = .mapped, .mapping = &.{0x6BB3}, .status2 = .none, }, + .{ .cp = 0x2F4F, .status = .mapped, .mapping = &.{0x6BCB}, .status2 = .none, }, + .{ .cp = 0x2F50, .status = .mapped, .mapping = &.{0x6BD4}, .status2 = .none, }, + .{ .cp = 0x2F51, .status = .mapped, .mapping = &.{0x6BDB}, .status2 = .none, }, + .{ .cp = 0x2F52, .status = .mapped, .mapping = &.{0x6C0F}, .status2 = .none, }, + .{ .cp = 0x2F53, .status = .mapped, .mapping = &.{0x6C14}, .status2 = .none, }, + .{ .cp = 0x2F54, .status = .mapped, .mapping = &.{0x6C34}, .status2 = .none, }, + .{ .cp = 0x2F55, .status = .mapped, .mapping = &.{0x706B}, .status2 = .none, }, + .{ .cp = 0x2F56, .status = .mapped, .mapping = &.{0x722A}, .status2 = .none, }, + .{ .cp = 0x2F57, .status = .mapped, .mapping = &.{0x7236}, .status2 = .none, }, + .{ .cp = 0x2F58, .status = .mapped, .mapping = &.{0x723B}, .status2 = .none, }, + .{ .cp = 0x2F59, .status = .mapped, .mapping = &.{0x723F}, .status2 = .none, }, + .{ .cp = 0x2F5A, .status = .mapped, .mapping = &.{0x7247}, .status2 = .none, }, + .{ .cp = 0x2F5B, .status = .mapped, .mapping = &.{0x7259}, .status2 = .none, }, + .{ .cp = 0x2F5C, .status = .mapped, .mapping = &.{0x725B}, .status2 = .none, }, + .{ .cp = 0x2F5D, .status = .mapped, .mapping = &.{0x72AC}, .status2 = .none, }, + .{ .cp = 0x2F5E, .status = .mapped, .mapping = &.{0x7384}, .status2 = .none, }, + .{ .cp = 0x2F5F, .status = .mapped, .mapping = &.{0x7389}, .status2 = .none, }, + .{ .cp = 0x2F60, .status = .mapped, .mapping = &.{0x74DC}, .status2 = .none, }, + .{ .cp = 0x2F61, .status = .mapped, .mapping = &.{0x74E6}, .status2 = .none, }, + .{ .cp = 0x2F62, .status = .mapped, .mapping = &.{0x7518}, .status2 = .none, }, + .{ .cp = 0x2F63, .status = .mapped, .mapping = &.{0x751F}, .status2 = .none, }, + .{ .cp = 0x2F64, .status = .mapped, .mapping = &.{0x7528}, .status2 = .none, }, + .{ .cp = 0x2F65, .status = .mapped, .mapping = &.{0x7530}, .status2 = .none, }, + .{ .cp = 0x2F66, .status = .mapped, .mapping = &.{0x758B}, .status2 = .none, }, + .{ .cp = 0x2F67, .status = .mapped, .mapping = &.{0x7592}, .status2 = .none, }, + .{ .cp = 0x2F68, .status = .mapped, .mapping = &.{0x7676}, .status2 = .none, }, + .{ .cp = 0x2F69, .status = .mapped, .mapping = &.{0x767D}, .status2 = .none, }, + .{ .cp = 0x2F6A, .status = .mapped, .mapping = &.{0x76AE}, .status2 = .none, }, + .{ .cp = 0x2F6B, .status = .mapped, .mapping = &.{0x76BF}, .status2 = .none, }, + .{ .cp = 0x2F6C, .status = .mapped, .mapping = &.{0x76EE}, .status2 = .none, }, + .{ .cp = 0x2F6D, .status = .mapped, .mapping = &.{0x77DB}, .status2 = .none, }, + .{ .cp = 0x2F6E, .status = .mapped, .mapping = &.{0x77E2}, .status2 = .none, }, + .{ .cp = 0x2F6F, .status = .mapped, .mapping = &.{0x77F3}, .status2 = .none, }, + .{ .cp = 0x2F70, .status = .mapped, .mapping = &.{0x793A}, .status2 = .none, }, + .{ .cp = 0x2F71, .status = .mapped, .mapping = &.{0x79B8}, .status2 = .none, }, + .{ .cp = 0x2F72, .status = .mapped, .mapping = &.{0x79BE}, .status2 = .none, }, + .{ .cp = 0x2F73, .status = .mapped, .mapping = &.{0x7A74}, .status2 = .none, }, + .{ .cp = 0x2F74, .status = .mapped, .mapping = &.{0x7ACB}, .status2 = .none, }, + .{ .cp = 0x2F75, .status = .mapped, .mapping = &.{0x7AF9}, .status2 = .none, }, + .{ .cp = 0x2F76, .status = .mapped, .mapping = &.{0x7C73}, .status2 = .none, }, + .{ .cp = 0x2F77, .status = .mapped, .mapping = &.{0x7CF8}, .status2 = .none, }, + .{ .cp = 0x2F78, .status = .mapped, .mapping = &.{0x7F36}, .status2 = .none, }, + .{ .cp = 0x2F79, .status = .mapped, .mapping = &.{0x7F51}, .status2 = .none, }, + .{ .cp = 0x2F7A, .status = .mapped, .mapping = &.{0x7F8A}, .status2 = .none, }, + .{ .cp = 0x2F7B, .status = .mapped, .mapping = &.{0x7FBD}, .status2 = .none, }, + .{ .cp = 0x2F7C, .status = .mapped, .mapping = &.{0x8001}, .status2 = .none, }, + .{ .cp = 0x2F7D, .status = .mapped, .mapping = &.{0x800C}, .status2 = .none, }, + .{ .cp = 0x2F7E, .status = .mapped, .mapping = &.{0x8012}, .status2 = .none, }, + .{ .cp = 0x2F7F, .status = .mapped, .mapping = &.{0x8033}, .status2 = .none, }, + .{ .cp = 0x2F80, .status = .mapped, .mapping = &.{0x807F}, .status2 = .none, }, + .{ .cp = 0x2F81, .status = .mapped, .mapping = &.{0x8089}, .status2 = .none, }, + .{ .cp = 0x2F82, .status = .mapped, .mapping = &.{0x81E3}, .status2 = .none, }, + .{ .cp = 0x2F83, .status = .mapped, .mapping = &.{0x81EA}, .status2 = .none, }, + .{ .cp = 0x2F84, .status = .mapped, .mapping = &.{0x81F3}, .status2 = .none, }, + .{ .cp = 0x2F85, .status = .mapped, .mapping = &.{0x81FC}, .status2 = .none, }, + .{ .cp = 0x2F86, .status = .mapped, .mapping = &.{0x820C}, .status2 = .none, }, + .{ .cp = 0x2F87, .status = .mapped, .mapping = &.{0x821B}, .status2 = .none, }, + .{ .cp = 0x2F88, .status = .mapped, .mapping = &.{0x821F}, .status2 = .none, }, + .{ .cp = 0x2F89, .status = .mapped, .mapping = &.{0x826E}, .status2 = .none, }, + .{ .cp = 0x2F8A, .status = .mapped, .mapping = &.{0x8272}, .status2 = .none, }, + .{ .cp = 0x2F8B, .status = .mapped, .mapping = &.{0x8278}, .status2 = .none, }, + .{ .cp = 0x2F8C, .status = .mapped, .mapping = &.{0x864D}, .status2 = .none, }, + .{ .cp = 0x2F8D, .status = .mapped, .mapping = &.{0x866B}, .status2 = .none, }, + .{ .cp = 0x2F8E, .status = .mapped, .mapping = &.{0x8840}, .status2 = .none, }, + .{ .cp = 0x2F8F, .status = .mapped, .mapping = &.{0x884C}, .status2 = .none, }, + .{ .cp = 0x2F90, .status = .mapped, .mapping = &.{0x8863}, .status2 = .none, }, + .{ .cp = 0x2F91, .status = .mapped, .mapping = &.{0x897E}, .status2 = .none, }, + .{ .cp = 0x2F92, .status = .mapped, .mapping = &.{0x898B}, .status2 = .none, }, + .{ .cp = 0x2F93, .status = .mapped, .mapping = &.{0x89D2}, .status2 = .none, }, + .{ .cp = 0x2F94, .status = .mapped, .mapping = &.{0x8A00}, .status2 = .none, }, + .{ .cp = 0x2F95, .status = .mapped, .mapping = &.{0x8C37}, .status2 = .none, }, + .{ .cp = 0x2F96, .status = .mapped, .mapping = &.{0x8C46}, .status2 = .none, }, + .{ .cp = 0x2F97, .status = .mapped, .mapping = &.{0x8C55}, .status2 = .none, }, + .{ .cp = 0x2F98, .status = .mapped, .mapping = &.{0x8C78}, .status2 = .none, }, + .{ .cp = 0x2F99, .status = .mapped, .mapping = &.{0x8C9D}, .status2 = .none, }, + .{ .cp = 0x2F9A, .status = .mapped, .mapping = &.{0x8D64}, .status2 = .none, }, + .{ .cp = 0x2F9B, .status = .mapped, .mapping = &.{0x8D70}, .status2 = .none, }, + .{ .cp = 0x2F9C, .status = .mapped, .mapping = &.{0x8DB3}, .status2 = .none, }, + .{ .cp = 0x2F9D, .status = .mapped, .mapping = &.{0x8EAB}, .status2 = .none, }, + .{ .cp = 0x2F9E, .status = .mapped, .mapping = &.{0x8ECA}, .status2 = .none, }, + .{ .cp = 0x2F9F, .status = .mapped, .mapping = &.{0x8F9B}, .status2 = .none, }, + .{ .cp = 0x2FA0, .status = .mapped, .mapping = &.{0x8FB0}, .status2 = .none, }, + .{ .cp = 0x2FA1, .status = .mapped, .mapping = &.{0x8FB5}, .status2 = .none, }, + .{ .cp = 0x2FA2, .status = .mapped, .mapping = &.{0x9091}, .status2 = .none, }, + .{ .cp = 0x2FA3, .status = .mapped, .mapping = &.{0x9149}, .status2 = .none, }, + .{ .cp = 0x2FA4, .status = .mapped, .mapping = &.{0x91C6}, .status2 = .none, }, + .{ .cp = 0x2FA5, .status = .mapped, .mapping = &.{0x91CC}, .status2 = .none, }, + .{ .cp = 0x2FA6, .status = .mapped, .mapping = &.{0x91D1}, .status2 = .none, }, + .{ .cp = 0x2FA7, .status = .mapped, .mapping = &.{0x9577}, .status2 = .none, }, + .{ .cp = 0x2FA8, .status = .mapped, .mapping = &.{0x9580}, .status2 = .none, }, + .{ .cp = 0x2FA9, .status = .mapped, .mapping = &.{0x961C}, .status2 = .none, }, + .{ .cp = 0x2FAA, .status = .mapped, .mapping = &.{0x96B6}, .status2 = .none, }, + .{ .cp = 0x2FAB, .status = .mapped, .mapping = &.{0x96B9}, .status2 = .none, }, + .{ .cp = 0x2FAC, .status = .mapped, .mapping = &.{0x96E8}, .status2 = .none, }, + .{ .cp = 0x2FAD, .status = .mapped, .mapping = &.{0x9751}, .status2 = .none, }, + .{ .cp = 0x2FAE, .status = .mapped, .mapping = &.{0x975E}, .status2 = .none, }, + .{ .cp = 0x2FAF, .status = .mapped, .mapping = &.{0x9762}, .status2 = .none, }, + .{ .cp = 0x2FB0, .status = .mapped, .mapping = &.{0x9769}, .status2 = .none, }, + .{ .cp = 0x2FB1, .status = .mapped, .mapping = &.{0x97CB}, .status2 = .none, }, + .{ .cp = 0x2FB2, .status = .mapped, .mapping = &.{0x97ED}, .status2 = .none, }, + .{ .cp = 0x2FB3, .status = .mapped, .mapping = &.{0x97F3}, .status2 = .none, }, + .{ .cp = 0x2FB4, .status = .mapped, .mapping = &.{0x9801}, .status2 = .none, }, + .{ .cp = 0x2FB5, .status = .mapped, .mapping = &.{0x98A8}, .status2 = .none, }, + .{ .cp = 0x2FB6, .status = .mapped, .mapping = &.{0x98DB}, .status2 = .none, }, + .{ .cp = 0x2FB7, .status = .mapped, .mapping = &.{0x98DF}, .status2 = .none, }, + .{ .cp = 0x2FB8, .status = .mapped, .mapping = &.{0x9996}, .status2 = .none, }, + .{ .cp = 0x2FB9, .status = .mapped, .mapping = &.{0x9999}, .status2 = .none, }, + .{ .cp = 0x2FBA, .status = .mapped, .mapping = &.{0x99AC}, .status2 = .none, }, + .{ .cp = 0x2FBB, .status = .mapped, .mapping = &.{0x9AA8}, .status2 = .none, }, + .{ .cp = 0x2FBC, .status = .mapped, .mapping = &.{0x9AD8}, .status2 = .none, }, + .{ .cp = 0x2FBD, .status = .mapped, .mapping = &.{0x9ADF}, .status2 = .none, }, + .{ .cp = 0x2FBE, .status = .mapped, .mapping = &.{0x9B25}, .status2 = .none, }, + .{ .cp = 0x2FBF, .status = .mapped, .mapping = &.{0x9B2F}, .status2 = .none, }, + .{ .cp = 0x2FC0, .status = .mapped, .mapping = &.{0x9B32}, .status2 = .none, }, + .{ .cp = 0x2FC1, .status = .mapped, .mapping = &.{0x9B3C}, .status2 = .none, }, + .{ .cp = 0x2FC2, .status = .mapped, .mapping = &.{0x9B5A}, .status2 = .none, }, + .{ .cp = 0x2FC3, .status = .mapped, .mapping = &.{0x9CE5}, .status2 = .none, }, + .{ .cp = 0x2FC4, .status = .mapped, .mapping = &.{0x9E75}, .status2 = .none, }, + .{ .cp = 0x2FC5, .status = .mapped, .mapping = &.{0x9E7F}, .status2 = .none, }, + .{ .cp = 0x2FC6, .status = .mapped, .mapping = &.{0x9EA5}, .status2 = .none, }, + .{ .cp = 0x2FC7, .status = .mapped, .mapping = &.{0x9EBB}, .status2 = .none, }, + .{ .cp = 0x2FC8, .status = .mapped, .mapping = &.{0x9EC3}, .status2 = .none, }, + .{ .cp = 0x2FC9, .status = .mapped, .mapping = &.{0x9ECD}, .status2 = .none, }, + .{ .cp = 0x2FCA, .status = .mapped, .mapping = &.{0x9ED1}, .status2 = .none, }, + .{ .cp = 0x2FCB, .status = .mapped, .mapping = &.{0x9EF9}, .status2 = .none, }, + .{ .cp = 0x2FCC, .status = .mapped, .mapping = &.{0x9EFD}, .status2 = .none, }, + .{ .cp = 0x2FCD, .status = .mapped, .mapping = &.{0x9F0E}, .status2 = .none, }, + .{ .cp = 0x2FCE, .status = .mapped, .mapping = &.{0x9F13}, .status2 = .none, }, + .{ .cp = 0x2FCF, .status = .mapped, .mapping = &.{0x9F20}, .status2 = .none, }, + .{ .cp = 0x2FD0, .status = .mapped, .mapping = &.{0x9F3B}, .status2 = .none, }, + .{ .cp = 0x2FD1, .status = .mapped, .mapping = &.{0x9F4A}, .status2 = .none, }, + .{ .cp = 0x2FD2, .status = .mapped, .mapping = &.{0x9F52}, .status2 = .none, }, + .{ .cp = 0x2FD3, .status = .mapped, .mapping = &.{0x9F8D}, .status2 = .none, }, + .{ .cp = 0x2FD4, .status = .mapped, .mapping = &.{0x9F9C}, .status2 = .none, }, + .{ .cp = 0x2FD5, .status = .mapped, .mapping = &.{0x9FA0}, .status2 = .none, }, + .{ .cp = 0x3000, .status = .mapped, .mapping = &.{0x0020}, .status2 = .none, }, + .{ .cp = 0x3001, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .cp = 0x3002, .status = .mapped, .mapping = &.{0x002E}, .status2 = .none, }, + .{ .cp = 0x3036, .status = .mapped, .mapping = &.{0x3012}, .status2 = .none, }, + .{ .cp = 0x3037, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .cp = 0x3038, .status = .mapped, .mapping = &.{0x5341}, .status2 = .none, }, + .{ .cp = 0x3039, .status = .mapped, .mapping = &.{0x5344}, .status2 = .none, }, + .{ .cp = 0x303A, .status = .mapped, .mapping = &.{0x5345}, .status2 = .none, }, + .{ .cp = 0x303B, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .cp = 0x303C, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x303D, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .cp = 0x303E, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .cp = 0x303F, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .cp = 0x3040, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x309B, .status = .mapped, .mapping = &.{0x0020,0x3099}, .status2 = .none, }, + .{ .cp = 0x309C, .status = .mapped, .mapping = &.{0x0020,0x309A}, .status2 = .none, }, + .{ .cp = 0x309F, .status = .mapped, .mapping = &.{0x3088,0x308A}, .status2 = .none, }, + .{ .cp = 0x30A0, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .cp = 0x30FF, .status = .mapped, .mapping = &.{0x30B3,0x30C8}, .status2 = .none, }, + .{ .cp = 0x312D, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x312E, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x312F, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x3130, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x3131, .status = .mapped, .mapping = &.{0x1100}, .status2 = .none, }, + .{ .cp = 0x3132, .status = .mapped, .mapping = &.{0x1101}, .status2 = .none, }, + .{ .cp = 0x3133, .status = .mapped, .mapping = &.{0x11AA}, .status2 = .none, }, + .{ .cp = 0x3134, .status = .mapped, .mapping = &.{0x1102}, .status2 = .none, }, + .{ .cp = 0x3135, .status = .mapped, .mapping = &.{0x11AC}, .status2 = .none, }, + .{ .cp = 0x3136, .status = .mapped, .mapping = &.{0x11AD}, .status2 = .none, }, + .{ .cp = 0x3137, .status = .mapped, .mapping = &.{0x1103}, .status2 = .none, }, + .{ .cp = 0x3138, .status = .mapped, .mapping = &.{0x1104}, .status2 = .none, }, + .{ .cp = 0x3139, .status = .mapped, .mapping = &.{0x1105}, .status2 = .none, }, + .{ .cp = 0x313A, .status = .mapped, .mapping = &.{0x11B0}, .status2 = .none, }, + .{ .cp = 0x313B, .status = .mapped, .mapping = &.{0x11B1}, .status2 = .none, }, + .{ .cp = 0x313C, .status = .mapped, .mapping = &.{0x11B2}, .status2 = .none, }, + .{ .cp = 0x313D, .status = .mapped, .mapping = &.{0x11B3}, .status2 = .none, }, + .{ .cp = 0x313E, .status = .mapped, .mapping = &.{0x11B4}, .status2 = .none, }, + .{ .cp = 0x313F, .status = .mapped, .mapping = &.{0x11B5}, .status2 = .none, }, + .{ .cp = 0x3140, .status = .mapped, .mapping = &.{0x111A}, .status2 = .none, }, + .{ .cp = 0x3141, .status = .mapped, .mapping = &.{0x1106}, .status2 = .none, }, + .{ .cp = 0x3142, .status = .mapped, .mapping = &.{0x1107}, .status2 = .none, }, + .{ .cp = 0x3143, .status = .mapped, .mapping = &.{0x1108}, .status2 = .none, }, + .{ .cp = 0x3144, .status = .mapped, .mapping = &.{0x1121}, .status2 = .none, }, + .{ .cp = 0x3145, .status = .mapped, .mapping = &.{0x1109}, .status2 = .none, }, + .{ .cp = 0x3146, .status = .mapped, .mapping = &.{0x110A}, .status2 = .none, }, + .{ .cp = 0x3147, .status = .mapped, .mapping = &.{0x110B}, .status2 = .none, }, + .{ .cp = 0x3148, .status = .mapped, .mapping = &.{0x110C}, .status2 = .none, }, + .{ .cp = 0x3149, .status = .mapped, .mapping = &.{0x110D}, .status2 = .none, }, + .{ .cp = 0x314A, .status = .mapped, .mapping = &.{0x110E}, .status2 = .none, }, + .{ .cp = 0x314B, .status = .mapped, .mapping = &.{0x110F}, .status2 = .none, }, + .{ .cp = 0x314C, .status = .mapped, .mapping = &.{0x1110}, .status2 = .none, }, + .{ .cp = 0x314D, .status = .mapped, .mapping = &.{0x1111}, .status2 = .none, }, + .{ .cp = 0x314E, .status = .mapped, .mapping = &.{0x1112}, .status2 = .none, }, + .{ .cp = 0x314F, .status = .mapped, .mapping = &.{0x1161}, .status2 = .none, }, + .{ .cp = 0x3150, .status = .mapped, .mapping = &.{0x1162}, .status2 = .none, }, + .{ .cp = 0x3151, .status = .mapped, .mapping = &.{0x1163}, .status2 = .none, }, + .{ .cp = 0x3152, .status = .mapped, .mapping = &.{0x1164}, .status2 = .none, }, + .{ .cp = 0x3153, .status = .mapped, .mapping = &.{0x1165}, .status2 = .none, }, + .{ .cp = 0x3154, .status = .mapped, .mapping = &.{0x1166}, .status2 = .none, }, + .{ .cp = 0x3155, .status = .mapped, .mapping = &.{0x1167}, .status2 = .none, }, + .{ .cp = 0x3156, .status = .mapped, .mapping = &.{0x1168}, .status2 = .none, }, + .{ .cp = 0x3157, .status = .mapped, .mapping = &.{0x1169}, .status2 = .none, }, + .{ .cp = 0x3158, .status = .mapped, .mapping = &.{0x116A}, .status2 = .none, }, + .{ .cp = 0x3159, .status = .mapped, .mapping = &.{0x116B}, .status2 = .none, }, + .{ .cp = 0x315A, .status = .mapped, .mapping = &.{0x116C}, .status2 = .none, }, + .{ .cp = 0x315B, .status = .mapped, .mapping = &.{0x116D}, .status2 = .none, }, + .{ .cp = 0x315C, .status = .mapped, .mapping = &.{0x116E}, .status2 = .none, }, + .{ .cp = 0x315D, .status = .mapped, .mapping = &.{0x116F}, .status2 = .none, }, + .{ .cp = 0x315E, .status = .mapped, .mapping = &.{0x1170}, .status2 = .none, }, + .{ .cp = 0x315F, .status = .mapped, .mapping = &.{0x1171}, .status2 = .none, }, + .{ .cp = 0x3160, .status = .mapped, .mapping = &.{0x1172}, .status2 = .none, }, + .{ .cp = 0x3161, .status = .mapped, .mapping = &.{0x1173}, .status2 = .none, }, + .{ .cp = 0x3162, .status = .mapped, .mapping = &.{0x1174}, .status2 = .none, }, + .{ .cp = 0x3163, .status = .mapped, .mapping = &.{0x1175}, .status2 = .none, }, + .{ .cp = 0x3164, .status = .ignored, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x3165, .status = .mapped, .mapping = &.{0x1114}, .status2 = .none, }, + .{ .cp = 0x3166, .status = .mapped, .mapping = &.{0x1115}, .status2 = .none, }, + .{ .cp = 0x3167, .status = .mapped, .mapping = &.{0x11C7}, .status2 = .none, }, + .{ .cp = 0x3168, .status = .mapped, .mapping = &.{0x11C8}, .status2 = .none, }, + .{ .cp = 0x3169, .status = .mapped, .mapping = &.{0x11CC}, .status2 = .none, }, + .{ .cp = 0x316A, .status = .mapped, .mapping = &.{0x11CE}, .status2 = .none, }, + .{ .cp = 0x316B, .status = .mapped, .mapping = &.{0x11D3}, .status2 = .none, }, + .{ .cp = 0x316C, .status = .mapped, .mapping = &.{0x11D7}, .status2 = .none, }, + .{ .cp = 0x316D, .status = .mapped, .mapping = &.{0x11D9}, .status2 = .none, }, + .{ .cp = 0x316E, .status = .mapped, .mapping = &.{0x111C}, .status2 = .none, }, + .{ .cp = 0x316F, .status = .mapped, .mapping = &.{0x11DD}, .status2 = .none, }, + .{ .cp = 0x3170, .status = .mapped, .mapping = &.{0x11DF}, .status2 = .none, }, + .{ .cp = 0x3171, .status = .mapped, .mapping = &.{0x111D}, .status2 = .none, }, + .{ .cp = 0x3172, .status = .mapped, .mapping = &.{0x111E}, .status2 = .none, }, + .{ .cp = 0x3173, .status = .mapped, .mapping = &.{0x1120}, .status2 = .none, }, + .{ .cp = 0x3174, .status = .mapped, .mapping = &.{0x1122}, .status2 = .none, }, + .{ .cp = 0x3175, .status = .mapped, .mapping = &.{0x1123}, .status2 = .none, }, + .{ .cp = 0x3176, .status = .mapped, .mapping = &.{0x1127}, .status2 = .none, }, + .{ .cp = 0x3177, .status = .mapped, .mapping = &.{0x1129}, .status2 = .none, }, + .{ .cp = 0x3178, .status = .mapped, .mapping = &.{0x112B}, .status2 = .none, }, + .{ .cp = 0x3179, .status = .mapped, .mapping = &.{0x112C}, .status2 = .none, }, + .{ .cp = 0x317A, .status = .mapped, .mapping = &.{0x112D}, .status2 = .none, }, + .{ .cp = 0x317B, .status = .mapped, .mapping = &.{0x112E}, .status2 = .none, }, + .{ .cp = 0x317C, .status = .mapped, .mapping = &.{0x112F}, .status2 = .none, }, + .{ .cp = 0x317D, .status = .mapped, .mapping = &.{0x1132}, .status2 = .none, }, + .{ .cp = 0x317E, .status = .mapped, .mapping = &.{0x1136}, .status2 = .none, }, + .{ .cp = 0x317F, .status = .mapped, .mapping = &.{0x1140}, .status2 = .none, }, + .{ .cp = 0x3180, .status = .mapped, .mapping = &.{0x1147}, .status2 = .none, }, + .{ .cp = 0x3181, .status = .mapped, .mapping = &.{0x114C}, .status2 = .none, }, + .{ .cp = 0x3182, .status = .mapped, .mapping = &.{0x11F1}, .status2 = .none, }, + .{ .cp = 0x3183, .status = .mapped, .mapping = &.{0x11F2}, .status2 = .none, }, + .{ .cp = 0x3184, .status = .mapped, .mapping = &.{0x1157}, .status2 = .none, }, + .{ .cp = 0x3185, .status = .mapped, .mapping = &.{0x1158}, .status2 = .none, }, + .{ .cp = 0x3186, .status = .mapped, .mapping = &.{0x1159}, .status2 = .none, }, + .{ .cp = 0x3187, .status = .mapped, .mapping = &.{0x1184}, .status2 = .none, }, + .{ .cp = 0x3188, .status = .mapped, .mapping = &.{0x1185}, .status2 = .none, }, + .{ .cp = 0x3189, .status = .mapped, .mapping = &.{0x1188}, .status2 = .none, }, + .{ .cp = 0x318A, .status = .mapped, .mapping = &.{0x1191}, .status2 = .none, }, + .{ .cp = 0x318B, .status = .mapped, .mapping = &.{0x1192}, .status2 = .none, }, + .{ .cp = 0x318C, .status = .mapped, .mapping = &.{0x1194}, .status2 = .none, }, + .{ .cp = 0x318D, .status = .mapped, .mapping = &.{0x119E}, .status2 = .none, }, + .{ .cp = 0x318E, .status = .mapped, .mapping = &.{0x11A1}, .status2 = .none, }, + .{ .cp = 0x318F, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x3192, .status = .mapped, .mapping = &.{0x4E00}, .status2 = .none, }, + .{ .cp = 0x3193, .status = .mapped, .mapping = &.{0x4E8C}, .status2 = .none, }, + .{ .cp = 0x3194, .status = .mapped, .mapping = &.{0x4E09}, .status2 = .none, }, + .{ .cp = 0x3195, .status = .mapped, .mapping = &.{0x56DB}, .status2 = .none, }, + .{ .cp = 0x3196, .status = .mapped, .mapping = &.{0x4E0A}, .status2 = .none, }, + .{ .cp = 0x3197, .status = .mapped, .mapping = &.{0x4E2D}, .status2 = .none, }, + .{ .cp = 0x3198, .status = .mapped, .mapping = &.{0x4E0B}, .status2 = .none, }, + .{ .cp = 0x3199, .status = .mapped, .mapping = &.{0x7532}, .status2 = .none, }, + .{ .cp = 0x319A, .status = .mapped, .mapping = &.{0x4E59}, .status2 = .none, }, + .{ .cp = 0x319B, .status = .mapped, .mapping = &.{0x4E19}, .status2 = .none, }, + .{ .cp = 0x319C, .status = .mapped, .mapping = &.{0x4E01}, .status2 = .none, }, + .{ .cp = 0x319D, .status = .mapped, .mapping = &.{0x5929}, .status2 = .none, }, + .{ .cp = 0x319E, .status = .mapped, .mapping = &.{0x5730}, .status2 = .none, }, + .{ .cp = 0x319F, .status = .mapped, .mapping = &.{0x4EBA}, .status2 = .none, }, + .{ .cp = 0x31EF, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x3200, .status = .mapped, .mapping = &.{0x0028,0x1100,0x0029}, .status2 = .none, }, + .{ .cp = 0x3201, .status = .mapped, .mapping = &.{0x0028,0x1102,0x0029}, .status2 = .none, }, + .{ .cp = 0x3202, .status = .mapped, .mapping = &.{0x0028,0x1103,0x0029}, .status2 = .none, }, + .{ .cp = 0x3203, .status = .mapped, .mapping = &.{0x0028,0x1105,0x0029}, .status2 = .none, }, + .{ .cp = 0x3204, .status = .mapped, .mapping = &.{0x0028,0x1106,0x0029}, .status2 = .none, }, + .{ .cp = 0x3205, .status = .mapped, .mapping = &.{0x0028,0x1107,0x0029}, .status2 = .none, }, + .{ .cp = 0x3206, .status = .mapped, .mapping = &.{0x0028,0x1109,0x0029}, .status2 = .none, }, + .{ .cp = 0x3207, .status = .mapped, .mapping = &.{0x0028,0x110B,0x0029}, .status2 = .none, }, + .{ .cp = 0x3208, .status = .mapped, .mapping = &.{0x0028,0x110C,0x0029}, .status2 = .none, }, + .{ .cp = 0x3209, .status = .mapped, .mapping = &.{0x0028,0x110E,0x0029}, .status2 = .none, }, + .{ .cp = 0x320A, .status = .mapped, .mapping = &.{0x0028,0x110F,0x0029}, .status2 = .none, }, + .{ .cp = 0x320B, .status = .mapped, .mapping = &.{0x0028,0x1110,0x0029}, .status2 = .none, }, + .{ .cp = 0x320C, .status = .mapped, .mapping = &.{0x0028,0x1111,0x0029}, .status2 = .none, }, + .{ .cp = 0x320D, .status = .mapped, .mapping = &.{0x0028,0x1112,0x0029}, .status2 = .none, }, + .{ .cp = 0x320E, .status = .mapped, .mapping = &.{0x0028,0xAC00,0x0029}, .status2 = .none, }, + .{ .cp = 0x320F, .status = .mapped, .mapping = &.{0x0028,0xB098,0x0029}, .status2 = .none, }, + .{ .cp = 0x3210, .status = .mapped, .mapping = &.{0x0028,0xB2E4,0x0029}, .status2 = .none, }, + .{ .cp = 0x3211, .status = .mapped, .mapping = &.{0x0028,0xB77C,0x0029}, .status2 = .none, }, + .{ .cp = 0x3212, .status = .mapped, .mapping = &.{0x0028,0xB9C8,0x0029}, .status2 = .none, }, + .{ .cp = 0x3213, .status = .mapped, .mapping = &.{0x0028,0xBC14,0x0029}, .status2 = .none, }, + .{ .cp = 0x3214, .status = .mapped, .mapping = &.{0x0028,0xC0AC,0x0029}, .status2 = .none, }, + .{ .cp = 0x3215, .status = .mapped, .mapping = &.{0x0028,0xC544,0x0029}, .status2 = .none, }, + .{ .cp = 0x3216, .status = .mapped, .mapping = &.{0x0028,0xC790,0x0029}, .status2 = .none, }, + .{ .cp = 0x3217, .status = .mapped, .mapping = &.{0x0028,0xCC28,0x0029}, .status2 = .none, }, + .{ .cp = 0x3218, .status = .mapped, .mapping = &.{0x0028,0xCE74,0x0029}, .status2 = .none, }, + .{ .cp = 0x3219, .status = .mapped, .mapping = &.{0x0028,0xD0C0,0x0029}, .status2 = .none, }, + .{ .cp = 0x321A, .status = .mapped, .mapping = &.{0x0028,0xD30C,0x0029}, .status2 = .none, }, + .{ .cp = 0x321B, .status = .mapped, .mapping = &.{0x0028,0xD558,0x0029}, .status2 = .none, }, + .{ .cp = 0x321C, .status = .mapped, .mapping = &.{0x0028,0xC8FC,0x0029}, .status2 = .none, }, + .{ .cp = 0x321D, .status = .mapped, .mapping = &.{0x0028,0xC624,0xC804,0x0029}, .status2 = .none, }, + .{ .cp = 0x321E, .status = .mapped, .mapping = &.{0x0028,0xC624,0xD6C4,0x0029}, .status2 = .none, }, + .{ .cp = 0x321F, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x3220, .status = .mapped, .mapping = &.{0x0028,0x4E00,0x0029}, .status2 = .none, }, + .{ .cp = 0x3221, .status = .mapped, .mapping = &.{0x0028,0x4E8C,0x0029}, .status2 = .none, }, + .{ .cp = 0x3222, .status = .mapped, .mapping = &.{0x0028,0x4E09,0x0029}, .status2 = .none, }, + .{ .cp = 0x3223, .status = .mapped, .mapping = &.{0x0028,0x56DB,0x0029}, .status2 = .none, }, + .{ .cp = 0x3224, .status = .mapped, .mapping = &.{0x0028,0x4E94,0x0029}, .status2 = .none, }, + .{ .cp = 0x3225, .status = .mapped, .mapping = &.{0x0028,0x516D,0x0029}, .status2 = .none, }, + .{ .cp = 0x3226, .status = .mapped, .mapping = &.{0x0028,0x4E03,0x0029}, .status2 = .none, }, + .{ .cp = 0x3227, .status = .mapped, .mapping = &.{0x0028,0x516B,0x0029}, .status2 = .none, }, + .{ .cp = 0x3228, .status = .mapped, .mapping = &.{0x0028,0x4E5D,0x0029}, .status2 = .none, }, + .{ .cp = 0x3229, .status = .mapped, .mapping = &.{0x0028,0x5341,0x0029}, .status2 = .none, }, + .{ .cp = 0x322A, .status = .mapped, .mapping = &.{0x0028,0x6708,0x0029}, .status2 = .none, }, + .{ .cp = 0x322B, .status = .mapped, .mapping = &.{0x0028,0x706B,0x0029}, .status2 = .none, }, + .{ .cp = 0x322C, .status = .mapped, .mapping = &.{0x0028,0x6C34,0x0029}, .status2 = .none, }, + .{ .cp = 0x322D, .status = .mapped, .mapping = &.{0x0028,0x6728,0x0029}, .status2 = .none, }, + .{ .cp = 0x322E, .status = .mapped, .mapping = &.{0x0028,0x91D1,0x0029}, .status2 = .none, }, + .{ .cp = 0x322F, .status = .mapped, .mapping = &.{0x0028,0x571F,0x0029}, .status2 = .none, }, + .{ .cp = 0x3230, .status = .mapped, .mapping = &.{0x0028,0x65E5,0x0029}, .status2 = .none, }, + .{ .cp = 0x3231, .status = .mapped, .mapping = &.{0x0028,0x682A,0x0029}, .status2 = .none, }, + .{ .cp = 0x3232, .status = .mapped, .mapping = &.{0x0028,0x6709,0x0029}, .status2 = .none, }, + .{ .cp = 0x3233, .status = .mapped, .mapping = &.{0x0028,0x793E,0x0029}, .status2 = .none, }, + .{ .cp = 0x3234, .status = .mapped, .mapping = &.{0x0028,0x540D,0x0029}, .status2 = .none, }, + .{ .cp = 0x3235, .status = .mapped, .mapping = &.{0x0028,0x7279,0x0029}, .status2 = .none, }, + .{ .cp = 0x3236, .status = .mapped, .mapping = &.{0x0028,0x8CA1,0x0029}, .status2 = .none, }, + .{ .cp = 0x3237, .status = .mapped, .mapping = &.{0x0028,0x795D,0x0029}, .status2 = .none, }, + .{ .cp = 0x3238, .status = .mapped, .mapping = &.{0x0028,0x52B4,0x0029}, .status2 = .none, }, + .{ .cp = 0x3239, .status = .mapped, .mapping = &.{0x0028,0x4EE3,0x0029}, .status2 = .none, }, + .{ .cp = 0x323A, .status = .mapped, .mapping = &.{0x0028,0x547C,0x0029}, .status2 = .none, }, + .{ .cp = 0x323B, .status = .mapped, .mapping = &.{0x0028,0x5B66,0x0029}, .status2 = .none, }, + .{ .cp = 0x323C, .status = .mapped, .mapping = &.{0x0028,0x76E3,0x0029}, .status2 = .none, }, + .{ .cp = 0x323D, .status = .mapped, .mapping = &.{0x0028,0x4F01,0x0029}, .status2 = .none, }, + .{ .cp = 0x323E, .status = .mapped, .mapping = &.{0x0028,0x8CC7,0x0029}, .status2 = .none, }, + .{ .cp = 0x323F, .status = .mapped, .mapping = &.{0x0028,0x5354,0x0029}, .status2 = .none, }, + .{ .cp = 0x3240, .status = .mapped, .mapping = &.{0x0028,0x796D,0x0029}, .status2 = .none, }, + .{ .cp = 0x3241, .status = .mapped, .mapping = &.{0x0028,0x4F11,0x0029}, .status2 = .none, }, + .{ .cp = 0x3242, .status = .mapped, .mapping = &.{0x0028,0x81EA,0x0029}, .status2 = .none, }, + .{ .cp = 0x3243, .status = .mapped, .mapping = &.{0x0028,0x81F3,0x0029}, .status2 = .none, }, + .{ .cp = 0x3244, .status = .mapped, .mapping = &.{0x554F}, .status2 = .none, }, + .{ .cp = 0x3245, .status = .mapped, .mapping = &.{0x5E7C}, .status2 = .none, }, + .{ .cp = 0x3246, .status = .mapped, .mapping = &.{0x6587}, .status2 = .none, }, + .{ .cp = 0x3247, .status = .mapped, .mapping = &.{0x7B8F}, .status2 = .none, }, + .{ .cp = 0x3250, .status = .mapped, .mapping = &.{0x0070,0x0074,0x0065}, .status2 = .none, }, + .{ .cp = 0x3251, .status = .mapped, .mapping = &.{0x0032,0x0031}, .status2 = .none, }, + .{ .cp = 0x3252, .status = .mapped, .mapping = &.{0x0032,0x0032}, .status2 = .none, }, + .{ .cp = 0x3253, .status = .mapped, .mapping = &.{0x0032,0x0033}, .status2 = .none, }, + .{ .cp = 0x3254, .status = .mapped, .mapping = &.{0x0032,0x0034}, .status2 = .none, }, + .{ .cp = 0x3255, .status = .mapped, .mapping = &.{0x0032,0x0035}, .status2 = .none, }, + .{ .cp = 0x3256, .status = .mapped, .mapping = &.{0x0032,0x0036}, .status2 = .none, }, + .{ .cp = 0x3257, .status = .mapped, .mapping = &.{0x0032,0x0037}, .status2 = .none, }, + .{ .cp = 0x3258, .status = .mapped, .mapping = &.{0x0032,0x0038}, .status2 = .none, }, + .{ .cp = 0x3259, .status = .mapped, .mapping = &.{0x0032,0x0039}, .status2 = .none, }, + .{ .cp = 0x325A, .status = .mapped, .mapping = &.{0x0033,0x0030}, .status2 = .none, }, + .{ .cp = 0x325B, .status = .mapped, .mapping = &.{0x0033,0x0031}, .status2 = .none, }, + .{ .cp = 0x325C, .status = .mapped, .mapping = &.{0x0033,0x0032}, .status2 = .none, }, + .{ .cp = 0x325D, .status = .mapped, .mapping = &.{0x0033,0x0033}, .status2 = .none, }, + .{ .cp = 0x325E, .status = .mapped, .mapping = &.{0x0033,0x0034}, .status2 = .none, }, + .{ .cp = 0x325F, .status = .mapped, .mapping = &.{0x0033,0x0035}, .status2 = .none, }, + .{ .cp = 0x3260, .status = .mapped, .mapping = &.{0x1100}, .status2 = .none, }, + .{ .cp = 0x3261, .status = .mapped, .mapping = &.{0x1102}, .status2 = .none, }, + .{ .cp = 0x3262, .status = .mapped, .mapping = &.{0x1103}, .status2 = .none, }, + .{ .cp = 0x3263, .status = .mapped, .mapping = &.{0x1105}, .status2 = .none, }, + .{ .cp = 0x3264, .status = .mapped, .mapping = &.{0x1106}, .status2 = .none, }, + .{ .cp = 0x3265, .status = .mapped, .mapping = &.{0x1107}, .status2 = .none, }, + .{ .cp = 0x3266, .status = .mapped, .mapping = &.{0x1109}, .status2 = .none, }, + .{ .cp = 0x3267, .status = .mapped, .mapping = &.{0x110B}, .status2 = .none, }, + .{ .cp = 0x3268, .status = .mapped, .mapping = &.{0x110C}, .status2 = .none, }, + .{ .cp = 0x3269, .status = .mapped, .mapping = &.{0x110E}, .status2 = .none, }, + .{ .cp = 0x326A, .status = .mapped, .mapping = &.{0x110F}, .status2 = .none, }, + .{ .cp = 0x326B, .status = .mapped, .mapping = &.{0x1110}, .status2 = .none, }, + .{ .cp = 0x326C, .status = .mapped, .mapping = &.{0x1111}, .status2 = .none, }, + .{ .cp = 0x326D, .status = .mapped, .mapping = &.{0x1112}, .status2 = .none, }, + .{ .cp = 0x326E, .status = .mapped, .mapping = &.{0xAC00}, .status2 = .none, }, + .{ .cp = 0x326F, .status = .mapped, .mapping = &.{0xB098}, .status2 = .none, }, + .{ .cp = 0x3270, .status = .mapped, .mapping = &.{0xB2E4}, .status2 = .none, }, + .{ .cp = 0x3271, .status = .mapped, .mapping = &.{0xB77C}, .status2 = .none, }, + .{ .cp = 0x3272, .status = .mapped, .mapping = &.{0xB9C8}, .status2 = .none, }, + .{ .cp = 0x3273, .status = .mapped, .mapping = &.{0xBC14}, .status2 = .none, }, + .{ .cp = 0x3274, .status = .mapped, .mapping = &.{0xC0AC}, .status2 = .none, }, + .{ .cp = 0x3275, .status = .mapped, .mapping = &.{0xC544}, .status2 = .none, }, + .{ .cp = 0x3276, .status = .mapped, .mapping = &.{0xC790}, .status2 = .none, }, + .{ .cp = 0x3277, .status = .mapped, .mapping = &.{0xCC28}, .status2 = .none, }, + .{ .cp = 0x3278, .status = .mapped, .mapping = &.{0xCE74}, .status2 = .none, }, + .{ .cp = 0x3279, .status = .mapped, .mapping = &.{0xD0C0}, .status2 = .none, }, + .{ .cp = 0x327A, .status = .mapped, .mapping = &.{0xD30C}, .status2 = .none, }, + .{ .cp = 0x327B, .status = .mapped, .mapping = &.{0xD558}, .status2 = .none, }, + .{ .cp = 0x327C, .status = .mapped, .mapping = &.{0xCC38,0xACE0}, .status2 = .none, }, + .{ .cp = 0x327D, .status = .mapped, .mapping = &.{0xC8FC,0xC758}, .status2 = .none, }, + .{ .cp = 0x327E, .status = .mapped, .mapping = &.{0xC6B0}, .status2 = .none, }, + .{ .cp = 0x327F, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .cp = 0x3280, .status = .mapped, .mapping = &.{0x4E00}, .status2 = .none, }, + .{ .cp = 0x3281, .status = .mapped, .mapping = &.{0x4E8C}, .status2 = .none, }, + .{ .cp = 0x3282, .status = .mapped, .mapping = &.{0x4E09}, .status2 = .none, }, + .{ .cp = 0x3283, .status = .mapped, .mapping = &.{0x56DB}, .status2 = .none, }, + .{ .cp = 0x3284, .status = .mapped, .mapping = &.{0x4E94}, .status2 = .none, }, + .{ .cp = 0x3285, .status = .mapped, .mapping = &.{0x516D}, .status2 = .none, }, + .{ .cp = 0x3286, .status = .mapped, .mapping = &.{0x4E03}, .status2 = .none, }, + .{ .cp = 0x3287, .status = .mapped, .mapping = &.{0x516B}, .status2 = .none, }, + .{ .cp = 0x3288, .status = .mapped, .mapping = &.{0x4E5D}, .status2 = .none, }, + .{ .cp = 0x3289, .status = .mapped, .mapping = &.{0x5341}, .status2 = .none, }, + .{ .cp = 0x328A, .status = .mapped, .mapping = &.{0x6708}, .status2 = .none, }, + .{ .cp = 0x328B, .status = .mapped, .mapping = &.{0x706B}, .status2 = .none, }, + .{ .cp = 0x328C, .status = .mapped, .mapping = &.{0x6C34}, .status2 = .none, }, + .{ .cp = 0x328D, .status = .mapped, .mapping = &.{0x6728}, .status2 = .none, }, + .{ .cp = 0x328E, .status = .mapped, .mapping = &.{0x91D1}, .status2 = .none, }, + .{ .cp = 0x328F, .status = .mapped, .mapping = &.{0x571F}, .status2 = .none, }, + .{ .cp = 0x3290, .status = .mapped, .mapping = &.{0x65E5}, .status2 = .none, }, + .{ .cp = 0x3291, .status = .mapped, .mapping = &.{0x682A}, .status2 = .none, }, + .{ .cp = 0x3292, .status = .mapped, .mapping = &.{0x6709}, .status2 = .none, }, + .{ .cp = 0x3293, .status = .mapped, .mapping = &.{0x793E}, .status2 = .none, }, + .{ .cp = 0x3294, .status = .mapped, .mapping = &.{0x540D}, .status2 = .none, }, + .{ .cp = 0x3295, .status = .mapped, .mapping = &.{0x7279}, .status2 = .none, }, + .{ .cp = 0x3296, .status = .mapped, .mapping = &.{0x8CA1}, .status2 = .none, }, + .{ .cp = 0x3297, .status = .mapped, .mapping = &.{0x795D}, .status2 = .none, }, + .{ .cp = 0x3298, .status = .mapped, .mapping = &.{0x52B4}, .status2 = .none, }, + .{ .cp = 0x3299, .status = .mapped, .mapping = &.{0x79D8}, .status2 = .none, }, + .{ .cp = 0x329A, .status = .mapped, .mapping = &.{0x7537}, .status2 = .none, }, + .{ .cp = 0x329B, .status = .mapped, .mapping = &.{0x5973}, .status2 = .none, }, + .{ .cp = 0x329C, .status = .mapped, .mapping = &.{0x9069}, .status2 = .none, }, + .{ .cp = 0x329D, .status = .mapped, .mapping = &.{0x512A}, .status2 = .none, }, + .{ .cp = 0x329E, .status = .mapped, .mapping = &.{0x5370}, .status2 = .none, }, + .{ .cp = 0x329F, .status = .mapped, .mapping = &.{0x6CE8}, .status2 = .none, }, + .{ .cp = 0x32A0, .status = .mapped, .mapping = &.{0x9805}, .status2 = .none, }, + .{ .cp = 0x32A1, .status = .mapped, .mapping = &.{0x4F11}, .status2 = .none, }, + .{ .cp = 0x32A2, .status = .mapped, .mapping = &.{0x5199}, .status2 = .none, }, + .{ .cp = 0x32A3, .status = .mapped, .mapping = &.{0x6B63}, .status2 = .none, }, + .{ .cp = 0x32A4, .status = .mapped, .mapping = &.{0x4E0A}, .status2 = .none, }, + .{ .cp = 0x32A5, .status = .mapped, .mapping = &.{0x4E2D}, .status2 = .none, }, + .{ .cp = 0x32A6, .status = .mapped, .mapping = &.{0x4E0B}, .status2 = .none, }, + .{ .cp = 0x32A7, .status = .mapped, .mapping = &.{0x5DE6}, .status2 = .none, }, + .{ .cp = 0x32A8, .status = .mapped, .mapping = &.{0x53F3}, .status2 = .none, }, + .{ .cp = 0x32A9, .status = .mapped, .mapping = &.{0x533B}, .status2 = .none, }, + .{ .cp = 0x32AA, .status = .mapped, .mapping = &.{0x5B97}, .status2 = .none, }, + .{ .cp = 0x32AB, .status = .mapped, .mapping = &.{0x5B66}, .status2 = .none, }, + .{ .cp = 0x32AC, .status = .mapped, .mapping = &.{0x76E3}, .status2 = .none, }, + .{ .cp = 0x32AD, .status = .mapped, .mapping = &.{0x4F01}, .status2 = .none, }, + .{ .cp = 0x32AE, .status = .mapped, .mapping = &.{0x8CC7}, .status2 = .none, }, + .{ .cp = 0x32AF, .status = .mapped, .mapping = &.{0x5354}, .status2 = .none, }, + .{ .cp = 0x32B0, .status = .mapped, .mapping = &.{0x591C}, .status2 = .none, }, + .{ .cp = 0x32B1, .status = .mapped, .mapping = &.{0x0033,0x0036}, .status2 = .none, }, + .{ .cp = 0x32B2, .status = .mapped, .mapping = &.{0x0033,0x0037}, .status2 = .none, }, + .{ .cp = 0x32B3, .status = .mapped, .mapping = &.{0x0033,0x0038}, .status2 = .none, }, + .{ .cp = 0x32B4, .status = .mapped, .mapping = &.{0x0033,0x0039}, .status2 = .none, }, + .{ .cp = 0x32B5, .status = .mapped, .mapping = &.{0x0034,0x0030}, .status2 = .none, }, + .{ .cp = 0x32B6, .status = .mapped, .mapping = &.{0x0034,0x0031}, .status2 = .none, }, + .{ .cp = 0x32B7, .status = .mapped, .mapping = &.{0x0034,0x0032}, .status2 = .none, }, + .{ .cp = 0x32B8, .status = .mapped, .mapping = &.{0x0034,0x0033}, .status2 = .none, }, + .{ .cp = 0x32B9, .status = .mapped, .mapping = &.{0x0034,0x0034}, .status2 = .none, }, + .{ .cp = 0x32BA, .status = .mapped, .mapping = &.{0x0034,0x0035}, .status2 = .none, }, + .{ .cp = 0x32BB, .status = .mapped, .mapping = &.{0x0034,0x0036}, .status2 = .none, }, + .{ .cp = 0x32BC, .status = .mapped, .mapping = &.{0x0034,0x0037}, .status2 = .none, }, + .{ .cp = 0x32BD, .status = .mapped, .mapping = &.{0x0034,0x0038}, .status2 = .none, }, + .{ .cp = 0x32BE, .status = .mapped, .mapping = &.{0x0034,0x0039}, .status2 = .none, }, + .{ .cp = 0x32BF, .status = .mapped, .mapping = &.{0x0035,0x0030}, .status2 = .none, }, + .{ .cp = 0x32C0, .status = .mapped, .mapping = &.{0x0031,0x6708}, .status2 = .none, }, + .{ .cp = 0x32C1, .status = .mapped, .mapping = &.{0x0032,0x6708}, .status2 = .none, }, + .{ .cp = 0x32C2, .status = .mapped, .mapping = &.{0x0033,0x6708}, .status2 = .none, }, + .{ .cp = 0x32C3, .status = .mapped, .mapping = &.{0x0034,0x6708}, .status2 = .none, }, + .{ .cp = 0x32C4, .status = .mapped, .mapping = &.{0x0035,0x6708}, .status2 = .none, }, + .{ .cp = 0x32C5, .status = .mapped, .mapping = &.{0x0036,0x6708}, .status2 = .none, }, + .{ .cp = 0x32C6, .status = .mapped, .mapping = &.{0x0037,0x6708}, .status2 = .none, }, + .{ .cp = 0x32C7, .status = .mapped, .mapping = &.{0x0038,0x6708}, .status2 = .none, }, + .{ .cp = 0x32C8, .status = .mapped, .mapping = &.{0x0039,0x6708}, .status2 = .none, }, + .{ .cp = 0x32C9, .status = .mapped, .mapping = &.{0x0031,0x0030,0x6708}, .status2 = .none, }, + .{ .cp = 0x32CA, .status = .mapped, .mapping = &.{0x0031,0x0031,0x6708}, .status2 = .none, }, + .{ .cp = 0x32CB, .status = .mapped, .mapping = &.{0x0031,0x0032,0x6708}, .status2 = .none, }, + .{ .cp = 0x32CC, .status = .mapped, .mapping = &.{0x0068,0x0067}, .status2 = .none, }, + .{ .cp = 0x32CD, .status = .mapped, .mapping = &.{0x0065,0x0072,0x0067}, .status2 = .none, }, + .{ .cp = 0x32CE, .status = .mapped, .mapping = &.{0x0065,0x0076}, .status2 = .none, }, + .{ .cp = 0x32CF, .status = .mapped, .mapping = &.{0x006C,0x0074,0x0064}, .status2 = .none, }, + .{ .cp = 0x32D0, .status = .mapped, .mapping = &.{0x30A2}, .status2 = .none, }, + .{ .cp = 0x32D1, .status = .mapped, .mapping = &.{0x30A4}, .status2 = .none, }, + .{ .cp = 0x32D2, .status = .mapped, .mapping = &.{0x30A6}, .status2 = .none, }, + .{ .cp = 0x32D3, .status = .mapped, .mapping = &.{0x30A8}, .status2 = .none, }, + .{ .cp = 0x32D4, .status = .mapped, .mapping = &.{0x30AA}, .status2 = .none, }, + .{ .cp = 0x32D5, .status = .mapped, .mapping = &.{0x30AB}, .status2 = .none, }, + .{ .cp = 0x32D6, .status = .mapped, .mapping = &.{0x30AD}, .status2 = .none, }, + .{ .cp = 0x32D7, .status = .mapped, .mapping = &.{0x30AF}, .status2 = .none, }, + .{ .cp = 0x32D8, .status = .mapped, .mapping = &.{0x30B1}, .status2 = .none, }, + .{ .cp = 0x32D9, .status = .mapped, .mapping = &.{0x30B3}, .status2 = .none, }, + .{ .cp = 0x32DA, .status = .mapped, .mapping = &.{0x30B5}, .status2 = .none, }, + .{ .cp = 0x32DB, .status = .mapped, .mapping = &.{0x30B7}, .status2 = .none, }, + .{ .cp = 0x32DC, .status = .mapped, .mapping = &.{0x30B9}, .status2 = .none, }, + .{ .cp = 0x32DD, .status = .mapped, .mapping = &.{0x30BB}, .status2 = .none, }, + .{ .cp = 0x32DE, .status = .mapped, .mapping = &.{0x30BD}, .status2 = .none, }, + .{ .cp = 0x32DF, .status = .mapped, .mapping = &.{0x30BF}, .status2 = .none, }, + .{ .cp = 0x32E0, .status = .mapped, .mapping = &.{0x30C1}, .status2 = .none, }, + .{ .cp = 0x32E1, .status = .mapped, .mapping = &.{0x30C4}, .status2 = .none, }, + .{ .cp = 0x32E2, .status = .mapped, .mapping = &.{0x30C6}, .status2 = .none, }, + .{ .cp = 0x32E3, .status = .mapped, .mapping = &.{0x30C8}, .status2 = .none, }, + .{ .cp = 0x32E4, .status = .mapped, .mapping = &.{0x30CA}, .status2 = .none, }, + .{ .cp = 0x32E5, .status = .mapped, .mapping = &.{0x30CB}, .status2 = .none, }, + .{ .cp = 0x32E6, .status = .mapped, .mapping = &.{0x30CC}, .status2 = .none, }, + .{ .cp = 0x32E7, .status = .mapped, .mapping = &.{0x30CD}, .status2 = .none, }, + .{ .cp = 0x32E8, .status = .mapped, .mapping = &.{0x30CE}, .status2 = .none, }, + .{ .cp = 0x32E9, .status = .mapped, .mapping = &.{0x30CF}, .status2 = .none, }, + .{ .cp = 0x32EA, .status = .mapped, .mapping = &.{0x30D2}, .status2 = .none, }, + .{ .cp = 0x32EB, .status = .mapped, .mapping = &.{0x30D5}, .status2 = .none, }, + .{ .cp = 0x32EC, .status = .mapped, .mapping = &.{0x30D8}, .status2 = .none, }, + .{ .cp = 0x32ED, .status = .mapped, .mapping = &.{0x30DB}, .status2 = .none, }, + .{ .cp = 0x32EE, .status = .mapped, .mapping = &.{0x30DE}, .status2 = .none, }, + .{ .cp = 0x32EF, .status = .mapped, .mapping = &.{0x30DF}, .status2 = .none, }, + .{ .cp = 0x32F0, .status = .mapped, .mapping = &.{0x30E0}, .status2 = .none, }, + .{ .cp = 0x32F1, .status = .mapped, .mapping = &.{0x30E1}, .status2 = .none, }, + .{ .cp = 0x32F2, .status = .mapped, .mapping = &.{0x30E2}, .status2 = .none, }, + .{ .cp = 0x32F3, .status = .mapped, .mapping = &.{0x30E4}, .status2 = .none, }, + .{ .cp = 0x32F4, .status = .mapped, .mapping = &.{0x30E6}, .status2 = .none, }, + .{ .cp = 0x32F5, .status = .mapped, .mapping = &.{0x30E8}, .status2 = .none, }, + .{ .cp = 0x32F6, .status = .mapped, .mapping = &.{0x30E9}, .status2 = .none, }, + .{ .cp = 0x32F7, .status = .mapped, .mapping = &.{0x30EA}, .status2 = .none, }, + .{ .cp = 0x32F8, .status = .mapped, .mapping = &.{0x30EB}, .status2 = .none, }, + .{ .cp = 0x32F9, .status = .mapped, .mapping = &.{0x30EC}, .status2 = .none, }, + .{ .cp = 0x32FA, .status = .mapped, .mapping = &.{0x30ED}, .status2 = .none, }, + .{ .cp = 0x32FB, .status = .mapped, .mapping = &.{0x30EF}, .status2 = .none, }, + .{ .cp = 0x32FC, .status = .mapped, .mapping = &.{0x30F0}, .status2 = .none, }, + .{ .cp = 0x32FD, .status = .mapped, .mapping = &.{0x30F1}, .status2 = .none, }, + .{ .cp = 0x32FE, .status = .mapped, .mapping = &.{0x30F2}, .status2 = .none, }, + .{ .cp = 0x32FF, .status = .mapped, .mapping = &.{0x4EE4,0x548C}, .status2 = .none, }, + .{ .cp = 0x3300, .status = .mapped, .mapping = &.{0x30A2,0x30D1,0x30FC,0x30C8}, .status2 = .none, }, + .{ .cp = 0x3301, .status = .mapped, .mapping = &.{0x30A2,0x30EB,0x30D5,0x30A1}, .status2 = .none, }, + .{ .cp = 0x3302, .status = .mapped, .mapping = &.{0x30A2,0x30F3,0x30DA,0x30A2}, .status2 = .none, }, + .{ .cp = 0x3303, .status = .mapped, .mapping = &.{0x30A2,0x30FC,0x30EB}, .status2 = .none, }, + .{ .cp = 0x3304, .status = .mapped, .mapping = &.{0x30A4,0x30CB,0x30F3,0x30B0}, .status2 = .none, }, + .{ .cp = 0x3305, .status = .mapped, .mapping = &.{0x30A4,0x30F3,0x30C1}, .status2 = .none, }, + .{ .cp = 0x3306, .status = .mapped, .mapping = &.{0x30A6,0x30A9,0x30F3}, .status2 = .none, }, + .{ .cp = 0x3307, .status = .mapped, .mapping = &.{0x30A8,0x30B9,0x30AF,0x30FC,0x30C9}, .status2 = .none, }, + .{ .cp = 0x3308, .status = .mapped, .mapping = &.{0x30A8,0x30FC,0x30AB,0x30FC}, .status2 = .none, }, + .{ .cp = 0x3309, .status = .mapped, .mapping = &.{0x30AA,0x30F3,0x30B9}, .status2 = .none, }, + .{ .cp = 0x330A, .status = .mapped, .mapping = &.{0x30AA,0x30FC,0x30E0}, .status2 = .none, }, + .{ .cp = 0x330B, .status = .mapped, .mapping = &.{0x30AB,0x30A4,0x30EA}, .status2 = .none, }, + .{ .cp = 0x330C, .status = .mapped, .mapping = &.{0x30AB,0x30E9,0x30C3,0x30C8}, .status2 = .none, }, + .{ .cp = 0x330D, .status = .mapped, .mapping = &.{0x30AB,0x30ED,0x30EA,0x30FC}, .status2 = .none, }, + .{ .cp = 0x330E, .status = .mapped, .mapping = &.{0x30AC,0x30ED,0x30F3}, .status2 = .none, }, + .{ .cp = 0x330F, .status = .mapped, .mapping = &.{0x30AC,0x30F3,0x30DE}, .status2 = .none, }, + .{ .cp = 0x3310, .status = .mapped, .mapping = &.{0x30AE,0x30AC}, .status2 = .none, }, + .{ .cp = 0x3311, .status = .mapped, .mapping = &.{0x30AE,0x30CB,0x30FC}, .status2 = .none, }, + .{ .cp = 0x3312, .status = .mapped, .mapping = &.{0x30AD,0x30E5,0x30EA,0x30FC}, .status2 = .none, }, + .{ .cp = 0x3313, .status = .mapped, .mapping = &.{0x30AE,0x30EB,0x30C0,0x30FC}, .status2 = .none, }, + .{ .cp = 0x3314, .status = .mapped, .mapping = &.{0x30AD,0x30ED}, .status2 = .none, }, + .{ .cp = 0x3315, .status = .mapped, .mapping = &.{0x30AD,0x30ED,0x30B0,0x30E9,0x30E0}, .status2 = .none, }, + .{ .cp = 0x3316, .status = .mapped, .mapping = &.{0x30AD,0x30ED,0x30E1,0x30FC,0x30C8,0x30EB}, .status2 = .none, }, + .{ .cp = 0x3317, .status = .mapped, .mapping = &.{0x30AD,0x30ED,0x30EF,0x30C3,0x30C8}, .status2 = .none, }, + .{ .cp = 0x3318, .status = .mapped, .mapping = &.{0x30B0,0x30E9,0x30E0}, .status2 = .none, }, + .{ .cp = 0x3319, .status = .mapped, .mapping = &.{0x30B0,0x30E9,0x30E0,0x30C8,0x30F3}, .status2 = .none, }, + .{ .cp = 0x331A, .status = .mapped, .mapping = &.{0x30AF,0x30EB,0x30BC,0x30A4,0x30ED}, .status2 = .none, }, + .{ .cp = 0x331B, .status = .mapped, .mapping = &.{0x30AF,0x30ED,0x30FC,0x30CD}, .status2 = .none, }, + .{ .cp = 0x331C, .status = .mapped, .mapping = &.{0x30B1,0x30FC,0x30B9}, .status2 = .none, }, + .{ .cp = 0x331D, .status = .mapped, .mapping = &.{0x30B3,0x30EB,0x30CA}, .status2 = .none, }, + .{ .cp = 0x331E, .status = .mapped, .mapping = &.{0x30B3,0x30FC,0x30DD}, .status2 = .none, }, + .{ .cp = 0x331F, .status = .mapped, .mapping = &.{0x30B5,0x30A4,0x30AF,0x30EB}, .status2 = .none, }, + .{ .cp = 0x3320, .status = .mapped, .mapping = &.{0x30B5,0x30F3,0x30C1,0x30FC,0x30E0}, .status2 = .none, }, + .{ .cp = 0x3321, .status = .mapped, .mapping = &.{0x30B7,0x30EA,0x30F3,0x30B0}, .status2 = .none, }, + .{ .cp = 0x3322, .status = .mapped, .mapping = &.{0x30BB,0x30F3,0x30C1}, .status2 = .none, }, + .{ .cp = 0x3323, .status = .mapped, .mapping = &.{0x30BB,0x30F3,0x30C8}, .status2 = .none, }, + .{ .cp = 0x3324, .status = .mapped, .mapping = &.{0x30C0,0x30FC,0x30B9}, .status2 = .none, }, + .{ .cp = 0x3325, .status = .mapped, .mapping = &.{0x30C7,0x30B7}, .status2 = .none, }, + .{ .cp = 0x3326, .status = .mapped, .mapping = &.{0x30C9,0x30EB}, .status2 = .none, }, + .{ .cp = 0x3327, .status = .mapped, .mapping = &.{0x30C8,0x30F3}, .status2 = .none, }, + .{ .cp = 0x3328, .status = .mapped, .mapping = &.{0x30CA,0x30CE}, .status2 = .none, }, + .{ .cp = 0x3329, .status = .mapped, .mapping = &.{0x30CE,0x30C3,0x30C8}, .status2 = .none, }, + .{ .cp = 0x332A, .status = .mapped, .mapping = &.{0x30CF,0x30A4,0x30C4}, .status2 = .none, }, + .{ .cp = 0x332B, .status = .mapped, .mapping = &.{0x30D1,0x30FC,0x30BB,0x30F3,0x30C8}, .status2 = .none, }, + .{ .cp = 0x332C, .status = .mapped, .mapping = &.{0x30D1,0x30FC,0x30C4}, .status2 = .none, }, + .{ .cp = 0x332D, .status = .mapped, .mapping = &.{0x30D0,0x30FC,0x30EC,0x30EB}, .status2 = .none, }, + .{ .cp = 0x332E, .status = .mapped, .mapping = &.{0x30D4,0x30A2,0x30B9,0x30C8,0x30EB}, .status2 = .none, }, + .{ .cp = 0x332F, .status = .mapped, .mapping = &.{0x30D4,0x30AF,0x30EB}, .status2 = .none, }, + .{ .cp = 0x3330, .status = .mapped, .mapping = &.{0x30D4,0x30B3}, .status2 = .none, }, + .{ .cp = 0x3331, .status = .mapped, .mapping = &.{0x30D3,0x30EB}, .status2 = .none, }, + .{ .cp = 0x3332, .status = .mapped, .mapping = &.{0x30D5,0x30A1,0x30E9,0x30C3,0x30C9}, .status2 = .none, }, + .{ .cp = 0x3333, .status = .mapped, .mapping = &.{0x30D5,0x30A3,0x30FC,0x30C8}, .status2 = .none, }, + .{ .cp = 0x3334, .status = .mapped, .mapping = &.{0x30D6,0x30C3,0x30B7,0x30A7,0x30EB}, .status2 = .none, }, + .{ .cp = 0x3335, .status = .mapped, .mapping = &.{0x30D5,0x30E9,0x30F3}, .status2 = .none, }, + .{ .cp = 0x3336, .status = .mapped, .mapping = &.{0x30D8,0x30AF,0x30BF,0x30FC,0x30EB}, .status2 = .none, }, + .{ .cp = 0x3337, .status = .mapped, .mapping = &.{0x30DA,0x30BD}, .status2 = .none, }, + .{ .cp = 0x3338, .status = .mapped, .mapping = &.{0x30DA,0x30CB,0x30D2}, .status2 = .none, }, + .{ .cp = 0x3339, .status = .mapped, .mapping = &.{0x30D8,0x30EB,0x30C4}, .status2 = .none, }, + .{ .cp = 0x333A, .status = .mapped, .mapping = &.{0x30DA,0x30F3,0x30B9}, .status2 = .none, }, + .{ .cp = 0x333B, .status = .mapped, .mapping = &.{0x30DA,0x30FC,0x30B8}, .status2 = .none, }, + .{ .cp = 0x333C, .status = .mapped, .mapping = &.{0x30D9,0x30FC,0x30BF}, .status2 = .none, }, + .{ .cp = 0x333D, .status = .mapped, .mapping = &.{0x30DD,0x30A4,0x30F3,0x30C8}, .status2 = .none, }, + .{ .cp = 0x333E, .status = .mapped, .mapping = &.{0x30DC,0x30EB,0x30C8}, .status2 = .none, }, + .{ .cp = 0x333F, .status = .mapped, .mapping = &.{0x30DB,0x30F3}, .status2 = .none, }, + .{ .cp = 0x3340, .status = .mapped, .mapping = &.{0x30DD,0x30F3,0x30C9}, .status2 = .none, }, + .{ .cp = 0x3341, .status = .mapped, .mapping = &.{0x30DB,0x30FC,0x30EB}, .status2 = .none, }, + .{ .cp = 0x3342, .status = .mapped, .mapping = &.{0x30DB,0x30FC,0x30F3}, .status2 = .none, }, + .{ .cp = 0x3343, .status = .mapped, .mapping = &.{0x30DE,0x30A4,0x30AF,0x30ED}, .status2 = .none, }, + .{ .cp = 0x3344, .status = .mapped, .mapping = &.{0x30DE,0x30A4,0x30EB}, .status2 = .none, }, + .{ .cp = 0x3345, .status = .mapped, .mapping = &.{0x30DE,0x30C3,0x30CF}, .status2 = .none, }, + .{ .cp = 0x3346, .status = .mapped, .mapping = &.{0x30DE,0x30EB,0x30AF}, .status2 = .none, }, + .{ .cp = 0x3347, .status = .mapped, .mapping = &.{0x30DE,0x30F3,0x30B7,0x30E7,0x30F3}, .status2 = .none, }, + .{ .cp = 0x3348, .status = .mapped, .mapping = &.{0x30DF,0x30AF,0x30ED,0x30F3}, .status2 = .none, }, + .{ .cp = 0x3349, .status = .mapped, .mapping = &.{0x30DF,0x30EA}, .status2 = .none, }, + .{ .cp = 0x334A, .status = .mapped, .mapping = &.{0x30DF,0x30EA,0x30D0,0x30FC,0x30EB}, .status2 = .none, }, + .{ .cp = 0x334B, .status = .mapped, .mapping = &.{0x30E1,0x30AC}, .status2 = .none, }, + .{ .cp = 0x334C, .status = .mapped, .mapping = &.{0x30E1,0x30AC,0x30C8,0x30F3}, .status2 = .none, }, + .{ .cp = 0x334D, .status = .mapped, .mapping = &.{0x30E1,0x30FC,0x30C8,0x30EB}, .status2 = .none, }, + .{ .cp = 0x334E, .status = .mapped, .mapping = &.{0x30E4,0x30FC,0x30C9}, .status2 = .none, }, + .{ .cp = 0x334F, .status = .mapped, .mapping = &.{0x30E4,0x30FC,0x30EB}, .status2 = .none, }, + .{ .cp = 0x3350, .status = .mapped, .mapping = &.{0x30E6,0x30A2,0x30F3}, .status2 = .none, }, + .{ .cp = 0x3351, .status = .mapped, .mapping = &.{0x30EA,0x30C3,0x30C8,0x30EB}, .status2 = .none, }, + .{ .cp = 0x3352, .status = .mapped, .mapping = &.{0x30EA,0x30E9}, .status2 = .none, }, + .{ .cp = 0x3353, .status = .mapped, .mapping = &.{0x30EB,0x30D4,0x30FC}, .status2 = .none, }, + .{ .cp = 0x3354, .status = .mapped, .mapping = &.{0x30EB,0x30FC,0x30D6,0x30EB}, .status2 = .none, }, + .{ .cp = 0x3355, .status = .mapped, .mapping = &.{0x30EC,0x30E0}, .status2 = .none, }, + .{ .cp = 0x3356, .status = .mapped, .mapping = &.{0x30EC,0x30F3,0x30C8,0x30B2,0x30F3}, .status2 = .none, }, + .{ .cp = 0x3357, .status = .mapped, .mapping = &.{0x30EF,0x30C3,0x30C8}, .status2 = .none, }, + .{ .cp = 0x3358, .status = .mapped, .mapping = &.{0x0030,0x70B9}, .status2 = .none, }, + .{ .cp = 0x3359, .status = .mapped, .mapping = &.{0x0031,0x70B9}, .status2 = .none, }, + .{ .cp = 0x335A, .status = .mapped, .mapping = &.{0x0032,0x70B9}, .status2 = .none, }, + .{ .cp = 0x335B, .status = .mapped, .mapping = &.{0x0033,0x70B9}, .status2 = .none, }, + .{ .cp = 0x335C, .status = .mapped, .mapping = &.{0x0034,0x70B9}, .status2 = .none, }, + .{ .cp = 0x335D, .status = .mapped, .mapping = &.{0x0035,0x70B9}, .status2 = .none, }, + .{ .cp = 0x335E, .status = .mapped, .mapping = &.{0x0036,0x70B9}, .status2 = .none, }, + .{ .cp = 0x335F, .status = .mapped, .mapping = &.{0x0037,0x70B9}, .status2 = .none, }, + .{ .cp = 0x3360, .status = .mapped, .mapping = &.{0x0038,0x70B9}, .status2 = .none, }, + .{ .cp = 0x3361, .status = .mapped, .mapping = &.{0x0039,0x70B9}, .status2 = .none, }, + .{ .cp = 0x3362, .status = .mapped, .mapping = &.{0x0031,0x0030,0x70B9}, .status2 = .none, }, + .{ .cp = 0x3363, .status = .mapped, .mapping = &.{0x0031,0x0031,0x70B9}, .status2 = .none, }, + .{ .cp = 0x3364, .status = .mapped, .mapping = &.{0x0031,0x0032,0x70B9}, .status2 = .none, }, + .{ .cp = 0x3365, .status = .mapped, .mapping = &.{0x0031,0x0033,0x70B9}, .status2 = .none, }, + .{ .cp = 0x3366, .status = .mapped, .mapping = &.{0x0031,0x0034,0x70B9}, .status2 = .none, }, + .{ .cp = 0x3367, .status = .mapped, .mapping = &.{0x0031,0x0035,0x70B9}, .status2 = .none, }, + .{ .cp = 0x3368, .status = .mapped, .mapping = &.{0x0031,0x0036,0x70B9}, .status2 = .none, }, + .{ .cp = 0x3369, .status = .mapped, .mapping = &.{0x0031,0x0037,0x70B9}, .status2 = .none, }, + .{ .cp = 0x336A, .status = .mapped, .mapping = &.{0x0031,0x0038,0x70B9}, .status2 = .none, }, + .{ .cp = 0x336B, .status = .mapped, .mapping = &.{0x0031,0x0039,0x70B9}, .status2 = .none, }, + .{ .cp = 0x336C, .status = .mapped, .mapping = &.{0x0032,0x0030,0x70B9}, .status2 = .none, }, + .{ .cp = 0x336D, .status = .mapped, .mapping = &.{0x0032,0x0031,0x70B9}, .status2 = .none, }, + .{ .cp = 0x336E, .status = .mapped, .mapping = &.{0x0032,0x0032,0x70B9}, .status2 = .none, }, + .{ .cp = 0x336F, .status = .mapped, .mapping = &.{0x0032,0x0033,0x70B9}, .status2 = .none, }, + .{ .cp = 0x3370, .status = .mapped, .mapping = &.{0x0032,0x0034,0x70B9}, .status2 = .none, }, + .{ .cp = 0x3371, .status = .mapped, .mapping = &.{0x0068,0x0070,0x0061}, .status2 = .none, }, + .{ .cp = 0x3372, .status = .mapped, .mapping = &.{0x0064,0x0061}, .status2 = .none, }, + .{ .cp = 0x3373, .status = .mapped, .mapping = &.{0x0061,0x0075}, .status2 = .none, }, + .{ .cp = 0x3374, .status = .mapped, .mapping = &.{0x0062,0x0061,0x0072}, .status2 = .none, }, + .{ .cp = 0x3375, .status = .mapped, .mapping = &.{0x006F,0x0076}, .status2 = .none, }, + .{ .cp = 0x3376, .status = .mapped, .mapping = &.{0x0070,0x0063}, .status2 = .none, }, + .{ .cp = 0x3377, .status = .mapped, .mapping = &.{0x0064,0x006D}, .status2 = .none, }, + .{ .cp = 0x3378, .status = .mapped, .mapping = &.{0x0064,0x006D,0x0032}, .status2 = .none, }, + .{ .cp = 0x3379, .status = .mapped, .mapping = &.{0x0064,0x006D,0x0033}, .status2 = .none, }, + .{ .cp = 0x337A, .status = .mapped, .mapping = &.{0x0069,0x0075}, .status2 = .none, }, + .{ .cp = 0x337B, .status = .mapped, .mapping = &.{0x5E73,0x6210}, .status2 = .none, }, + .{ .cp = 0x337C, .status = .mapped, .mapping = &.{0x662D,0x548C}, .status2 = .none, }, + .{ .cp = 0x337D, .status = .mapped, .mapping = &.{0x5927,0x6B63}, .status2 = .none, }, + .{ .cp = 0x337E, .status = .mapped, .mapping = &.{0x660E,0x6CBB}, .status2 = .none, }, + .{ .cp = 0x337F, .status = .mapped, .mapping = &.{0x682A,0x5F0F,0x4F1A,0x793E}, .status2 = .none, }, + .{ .cp = 0x3380, .status = .mapped, .mapping = &.{0x0070,0x0061}, .status2 = .none, }, + .{ .cp = 0x3381, .status = .mapped, .mapping = &.{0x006E,0x0061}, .status2 = .none, }, + .{ .cp = 0x3382, .status = .mapped, .mapping = &.{0x03BC,0x0061}, .status2 = .none, }, + .{ .cp = 0x3383, .status = .mapped, .mapping = &.{0x006D,0x0061}, .status2 = .none, }, + .{ .cp = 0x3384, .status = .mapped, .mapping = &.{0x006B,0x0061}, .status2 = .none, }, + .{ .cp = 0x3385, .status = .mapped, .mapping = &.{0x006B,0x0062}, .status2 = .none, }, + .{ .cp = 0x3386, .status = .mapped, .mapping = &.{0x006D,0x0062}, .status2 = .none, }, + .{ .cp = 0x3387, .status = .mapped, .mapping = &.{0x0067,0x0062}, .status2 = .none, }, + .{ .cp = 0x3388, .status = .mapped, .mapping = &.{0x0063,0x0061,0x006C}, .status2 = .none, }, + .{ .cp = 0x3389, .status = .mapped, .mapping = &.{0x006B,0x0063,0x0061,0x006C}, .status2 = .none, }, + .{ .cp = 0x338A, .status = .mapped, .mapping = &.{0x0070,0x0066}, .status2 = .none, }, + .{ .cp = 0x338B, .status = .mapped, .mapping = &.{0x006E,0x0066}, .status2 = .none, }, + .{ .cp = 0x338C, .status = .mapped, .mapping = &.{0x03BC,0x0066}, .status2 = .none, }, + .{ .cp = 0x338D, .status = .mapped, .mapping = &.{0x03BC,0x0067}, .status2 = .none, }, + .{ .cp = 0x338E, .status = .mapped, .mapping = &.{0x006D,0x0067}, .status2 = .none, }, + .{ .cp = 0x338F, .status = .mapped, .mapping = &.{0x006B,0x0067}, .status2 = .none, }, + .{ .cp = 0x3390, .status = .mapped, .mapping = &.{0x0068,0x007A}, .status2 = .none, }, + .{ .cp = 0x3391, .status = .mapped, .mapping = &.{0x006B,0x0068,0x007A}, .status2 = .none, }, + .{ .cp = 0x3392, .status = .mapped, .mapping = &.{0x006D,0x0068,0x007A}, .status2 = .none, }, + .{ .cp = 0x3393, .status = .mapped, .mapping = &.{0x0067,0x0068,0x007A}, .status2 = .none, }, + .{ .cp = 0x3394, .status = .mapped, .mapping = &.{0x0074,0x0068,0x007A}, .status2 = .none, }, + .{ .cp = 0x3395, .status = .mapped, .mapping = &.{0x03BC,0x006C}, .status2 = .none, }, + .{ .cp = 0x3396, .status = .mapped, .mapping = &.{0x006D,0x006C}, .status2 = .none, }, + .{ .cp = 0x3397, .status = .mapped, .mapping = &.{0x0064,0x006C}, .status2 = .none, }, + .{ .cp = 0x3398, .status = .mapped, .mapping = &.{0x006B,0x006C}, .status2 = .none, }, + .{ .cp = 0x3399, .status = .mapped, .mapping = &.{0x0066,0x006D}, .status2 = .none, }, + .{ .cp = 0x339A, .status = .mapped, .mapping = &.{0x006E,0x006D}, .status2 = .none, }, + .{ .cp = 0x339B, .status = .mapped, .mapping = &.{0x03BC,0x006D}, .status2 = .none, }, + .{ .cp = 0x339C, .status = .mapped, .mapping = &.{0x006D,0x006D}, .status2 = .none, }, + .{ .cp = 0x339D, .status = .mapped, .mapping = &.{0x0063,0x006D}, .status2 = .none, }, + .{ .cp = 0x339E, .status = .mapped, .mapping = &.{0x006B,0x006D}, .status2 = .none, }, + .{ .cp = 0x339F, .status = .mapped, .mapping = &.{0x006D,0x006D,0x0032}, .status2 = .none, }, + .{ .cp = 0x33A0, .status = .mapped, .mapping = &.{0x0063,0x006D,0x0032}, .status2 = .none, }, + .{ .cp = 0x33A1, .status = .mapped, .mapping = &.{0x006D,0x0032}, .status2 = .none, }, + .{ .cp = 0x33A2, .status = .mapped, .mapping = &.{0x006B,0x006D,0x0032}, .status2 = .none, }, + .{ .cp = 0x33A3, .status = .mapped, .mapping = &.{0x006D,0x006D,0x0033}, .status2 = .none, }, + .{ .cp = 0x33A4, .status = .mapped, .mapping = &.{0x0063,0x006D,0x0033}, .status2 = .none, }, + .{ .cp = 0x33A5, .status = .mapped, .mapping = &.{0x006D,0x0033}, .status2 = .none, }, + .{ .cp = 0x33A6, .status = .mapped, .mapping = &.{0x006B,0x006D,0x0033}, .status2 = .none, }, + .{ .cp = 0x33A7, .status = .mapped, .mapping = &.{0x006D,0x2215,0x0073}, .status2 = .none, }, + .{ .cp = 0x33A8, .status = .mapped, .mapping = &.{0x006D,0x2215,0x0073,0x0032}, .status2 = .none, }, + .{ .cp = 0x33A9, .status = .mapped, .mapping = &.{0x0070,0x0061}, .status2 = .none, }, + .{ .cp = 0x33AA, .status = .mapped, .mapping = &.{0x006B,0x0070,0x0061}, .status2 = .none, }, + .{ .cp = 0x33AB, .status = .mapped, .mapping = &.{0x006D,0x0070,0x0061}, .status2 = .none, }, + .{ .cp = 0x33AC, .status = .mapped, .mapping = &.{0x0067,0x0070,0x0061}, .status2 = .none, }, + .{ .cp = 0x33AD, .status = .mapped, .mapping = &.{0x0072,0x0061,0x0064}, .status2 = .none, }, + .{ .cp = 0x33AE, .status = .mapped, .mapping = &.{0x0072,0x0061,0x0064,0x2215,0x0073}, .status2 = .none, }, + .{ .cp = 0x33AF, .status = .mapped, .mapping = &.{0x0072,0x0061,0x0064,0x2215,0x0073,0x0032}, .status2 = .none, }, + .{ .cp = 0x33B0, .status = .mapped, .mapping = &.{0x0070,0x0073}, .status2 = .none, }, + .{ .cp = 0x33B1, .status = .mapped, .mapping = &.{0x006E,0x0073}, .status2 = .none, }, + .{ .cp = 0x33B2, .status = .mapped, .mapping = &.{0x03BC,0x0073}, .status2 = .none, }, + .{ .cp = 0x33B3, .status = .mapped, .mapping = &.{0x006D,0x0073}, .status2 = .none, }, + .{ .cp = 0x33B4, .status = .mapped, .mapping = &.{0x0070,0x0076}, .status2 = .none, }, + .{ .cp = 0x33B5, .status = .mapped, .mapping = &.{0x006E,0x0076}, .status2 = .none, }, + .{ .cp = 0x33B6, .status = .mapped, .mapping = &.{0x03BC,0x0076}, .status2 = .none, }, + .{ .cp = 0x33B7, .status = .mapped, .mapping = &.{0x006D,0x0076}, .status2 = .none, }, + .{ .cp = 0x33B8, .status = .mapped, .mapping = &.{0x006B,0x0076}, .status2 = .none, }, + .{ .cp = 0x33B9, .status = .mapped, .mapping = &.{0x006D,0x0076}, .status2 = .none, }, + .{ .cp = 0x33BA, .status = .mapped, .mapping = &.{0x0070,0x0077}, .status2 = .none, }, + .{ .cp = 0x33BB, .status = .mapped, .mapping = &.{0x006E,0x0077}, .status2 = .none, }, + .{ .cp = 0x33BC, .status = .mapped, .mapping = &.{0x03BC,0x0077}, .status2 = .none, }, + .{ .cp = 0x33BD, .status = .mapped, .mapping = &.{0x006D,0x0077}, .status2 = .none, }, + .{ .cp = 0x33BE, .status = .mapped, .mapping = &.{0x006B,0x0077}, .status2 = .none, }, + .{ .cp = 0x33BF, .status = .mapped, .mapping = &.{0x006D,0x0077}, .status2 = .none, }, + .{ .cp = 0x33C0, .status = .mapped, .mapping = &.{0x006B,0x03C9}, .status2 = .none, }, + .{ .cp = 0x33C1, .status = .mapped, .mapping = &.{0x006D,0x03C9}, .status2 = .none, }, + .{ .cp = 0x33C2, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x33C3, .status = .mapped, .mapping = &.{0x0062,0x0071}, .status2 = .none, }, + .{ .cp = 0x33C4, .status = .mapped, .mapping = &.{0x0063,0x0063}, .status2 = .none, }, + .{ .cp = 0x33C5, .status = .mapped, .mapping = &.{0x0063,0x0064}, .status2 = .none, }, + .{ .cp = 0x33C6, .status = .mapped, .mapping = &.{0x0063,0x2215,0x006B,0x0067}, .status2 = .none, }, + .{ .cp = 0x33C7, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x33C8, .status = .mapped, .mapping = &.{0x0064,0x0062}, .status2 = .none, }, + .{ .cp = 0x33C9, .status = .mapped, .mapping = &.{0x0067,0x0079}, .status2 = .none, }, + .{ .cp = 0x33CA, .status = .mapped, .mapping = &.{0x0068,0x0061}, .status2 = .none, }, + .{ .cp = 0x33CB, .status = .mapped, .mapping = &.{0x0068,0x0070}, .status2 = .none, }, + .{ .cp = 0x33CC, .status = .mapped, .mapping = &.{0x0069,0x006E}, .status2 = .none, }, + .{ .cp = 0x33CD, .status = .mapped, .mapping = &.{0x006B,0x006B}, .status2 = .none, }, + .{ .cp = 0x33CE, .status = .mapped, .mapping = &.{0x006B,0x006D}, .status2 = .none, }, + .{ .cp = 0x33CF, .status = .mapped, .mapping = &.{0x006B,0x0074}, .status2 = .none, }, + .{ .cp = 0x33D0, .status = .mapped, .mapping = &.{0x006C,0x006D}, .status2 = .none, }, + .{ .cp = 0x33D1, .status = .mapped, .mapping = &.{0x006C,0x006E}, .status2 = .none, }, + .{ .cp = 0x33D2, .status = .mapped, .mapping = &.{0x006C,0x006F,0x0067}, .status2 = .none, }, + .{ .cp = 0x33D3, .status = .mapped, .mapping = &.{0x006C,0x0078}, .status2 = .none, }, + .{ .cp = 0x33D4, .status = .mapped, .mapping = &.{0x006D,0x0062}, .status2 = .none, }, + .{ .cp = 0x33D5, .status = .mapped, .mapping = &.{0x006D,0x0069,0x006C}, .status2 = .none, }, + .{ .cp = 0x33D6, .status = .mapped, .mapping = &.{0x006D,0x006F,0x006C}, .status2 = .none, }, + .{ .cp = 0x33D7, .status = .mapped, .mapping = &.{0x0070,0x0068}, .status2 = .none, }, + .{ .cp = 0x33D8, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x33D9, .status = .mapped, .mapping = &.{0x0070,0x0070,0x006D}, .status2 = .none, }, + .{ .cp = 0x33DA, .status = .mapped, .mapping = &.{0x0070,0x0072}, .status2 = .none, }, + .{ .cp = 0x33DB, .status = .mapped, .mapping = &.{0x0073,0x0072}, .status2 = .none, }, + .{ .cp = 0x33DC, .status = .mapped, .mapping = &.{0x0073,0x0076}, .status2 = .none, }, + .{ .cp = 0x33DD, .status = .mapped, .mapping = &.{0x0077,0x0062}, .status2 = .none, }, + .{ .cp = 0x33DE, .status = .mapped, .mapping = &.{0x0076,0x2215,0x006D}, .status2 = .none, }, + .{ .cp = 0x33DF, .status = .mapped, .mapping = &.{0x0061,0x2215,0x006D}, .status2 = .none, }, + .{ .cp = 0x33E0, .status = .mapped, .mapping = &.{0x0031,0x65E5}, .status2 = .none, }, + .{ .cp = 0x33E1, .status = .mapped, .mapping = &.{0x0032,0x65E5}, .status2 = .none, }, + .{ .cp = 0x33E2, .status = .mapped, .mapping = &.{0x0033,0x65E5}, .status2 = .none, }, + .{ .cp = 0x33E3, .status = .mapped, .mapping = &.{0x0034,0x65E5}, .status2 = .none, }, + .{ .cp = 0x33E4, .status = .mapped, .mapping = &.{0x0035,0x65E5}, .status2 = .none, }, + .{ .cp = 0x33E5, .status = .mapped, .mapping = &.{0x0036,0x65E5}, .status2 = .none, }, + .{ .cp = 0x33E6, .status = .mapped, .mapping = &.{0x0037,0x65E5}, .status2 = .none, }, + .{ .cp = 0x33E7, .status = .mapped, .mapping = &.{0x0038,0x65E5}, .status2 = .none, }, + .{ .cp = 0x33E8, .status = .mapped, .mapping = &.{0x0039,0x65E5}, .status2 = .none, }, + .{ .cp = 0x33E9, .status = .mapped, .mapping = &.{0x0031,0x0030,0x65E5}, .status2 = .none, }, + .{ .cp = 0x33EA, .status = .mapped, .mapping = &.{0x0031,0x0031,0x65E5}, .status2 = .none, }, + .{ .cp = 0x33EB, .status = .mapped, .mapping = &.{0x0031,0x0032,0x65E5}, .status2 = .none, }, + .{ .cp = 0x33EC, .status = .mapped, .mapping = &.{0x0031,0x0033,0x65E5}, .status2 = .none, }, + .{ .cp = 0x33ED, .status = .mapped, .mapping = &.{0x0031,0x0034,0x65E5}, .status2 = .none, }, + .{ .cp = 0x33EE, .status = .mapped, .mapping = &.{0x0031,0x0035,0x65E5}, .status2 = .none, }, + .{ .cp = 0x33EF, .status = .mapped, .mapping = &.{0x0031,0x0036,0x65E5}, .status2 = .none, }, + .{ .cp = 0x33F0, .status = .mapped, .mapping = &.{0x0031,0x0037,0x65E5}, .status2 = .none, }, + .{ .cp = 0x33F1, .status = .mapped, .mapping = &.{0x0031,0x0038,0x65E5}, .status2 = .none, }, + .{ .cp = 0x33F2, .status = .mapped, .mapping = &.{0x0031,0x0039,0x65E5}, .status2 = .none, }, + .{ .cp = 0x33F3, .status = .mapped, .mapping = &.{0x0032,0x0030,0x65E5}, .status2 = .none, }, + .{ .cp = 0x33F4, .status = .mapped, .mapping = &.{0x0032,0x0031,0x65E5}, .status2 = .none, }, + .{ .cp = 0x33F5, .status = .mapped, .mapping = &.{0x0032,0x0032,0x65E5}, .status2 = .none, }, + .{ .cp = 0x33F6, .status = .mapped, .mapping = &.{0x0032,0x0033,0x65E5}, .status2 = .none, }, + .{ .cp = 0x33F7, .status = .mapped, .mapping = &.{0x0032,0x0034,0x65E5}, .status2 = .none, }, + .{ .cp = 0x33F8, .status = .mapped, .mapping = &.{0x0032,0x0035,0x65E5}, .status2 = .none, }, + .{ .cp = 0x33F9, .status = .mapped, .mapping = &.{0x0032,0x0036,0x65E5}, .status2 = .none, }, + .{ .cp = 0x33FA, .status = .mapped, .mapping = &.{0x0032,0x0037,0x65E5}, .status2 = .none, }, + .{ .cp = 0x33FB, .status = .mapped, .mapping = &.{0x0032,0x0038,0x65E5}, .status2 = .none, }, + .{ .cp = 0x33FC, .status = .mapped, .mapping = &.{0x0032,0x0039,0x65E5}, .status2 = .none, }, + .{ .cp = 0x33FD, .status = .mapped, .mapping = &.{0x0033,0x0030,0x65E5}, .status2 = .none, }, + .{ .cp = 0x33FE, .status = .mapped, .mapping = &.{0x0033,0x0031,0x65E5}, .status2 = .none, }, + .{ .cp = 0x33FF, .status = .mapped, .mapping = &.{0x0067,0x0061,0x006C}, .status2 = .none, }, + .{ .cp = 0x9FCC, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0xA4B4, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .cp = 0xA4C1, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .cp = 0xA4C5, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .cp = 0xA4C6, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .cp = 0xA640, .status = .mapped, .mapping = &.{0xA641}, .status2 = .none, }, + .{ .cp = 0xA641, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0xA642, .status = .mapped, .mapping = &.{0xA643}, .status2 = .none, }, + .{ .cp = 0xA643, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0xA644, .status = .mapped, .mapping = &.{0xA645}, .status2 = .none, }, + .{ .cp = 0xA645, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0xA646, .status = .mapped, .mapping = &.{0xA647}, .status2 = .none, }, + .{ .cp = 0xA647, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0xA648, .status = .mapped, .mapping = &.{0xA649}, .status2 = .none, }, + .{ .cp = 0xA649, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0xA64A, .status = .mapped, .mapping = &.{0xA64B}, .status2 = .none, }, + .{ .cp = 0xA64B, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0xA64C, .status = .mapped, .mapping = &.{0xA64D}, .status2 = .none, }, + .{ .cp = 0xA64D, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0xA64E, .status = .mapped, .mapping = &.{0xA64F}, .status2 = .none, }, + .{ .cp = 0xA64F, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0xA650, .status = .mapped, .mapping = &.{0xA651}, .status2 = .none, }, + .{ .cp = 0xA651, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0xA652, .status = .mapped, .mapping = &.{0xA653}, .status2 = .none, }, + .{ .cp = 0xA653, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0xA654, .status = .mapped, .mapping = &.{0xA655}, .status2 = .none, }, + .{ .cp = 0xA655, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0xA656, .status = .mapped, .mapping = &.{0xA657}, .status2 = .none, }, + .{ .cp = 0xA657, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0xA658, .status = .mapped, .mapping = &.{0xA659}, .status2 = .none, }, + .{ .cp = 0xA659, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0xA65A, .status = .mapped, .mapping = &.{0xA65B}, .status2 = .none, }, + .{ .cp = 0xA65B, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0xA65C, .status = .mapped, .mapping = &.{0xA65D}, .status2 = .none, }, + .{ .cp = 0xA65D, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0xA65E, .status = .mapped, .mapping = &.{0xA65F}, .status2 = .none, }, + .{ .cp = 0xA65F, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0xA660, .status = .mapped, .mapping = &.{0xA661}, .status2 = .none, }, + .{ .cp = 0xA661, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0xA662, .status = .mapped, .mapping = &.{0xA663}, .status2 = .none, }, + .{ .cp = 0xA663, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0xA664, .status = .mapped, .mapping = &.{0xA665}, .status2 = .none, }, + .{ .cp = 0xA665, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0xA666, .status = .mapped, .mapping = &.{0xA667}, .status2 = .none, }, + .{ .cp = 0xA667, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0xA668, .status = .mapped, .mapping = &.{0xA669}, .status2 = .none, }, + .{ .cp = 0xA669, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0xA66A, .status = .mapped, .mapping = &.{0xA66B}, .status2 = .none, }, + .{ .cp = 0xA66B, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0xA66C, .status = .mapped, .mapping = &.{0xA66D}, .status2 = .none, }, + .{ .cp = 0xA67E, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .cp = 0xA67F, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0xA680, .status = .mapped, .mapping = &.{0xA681}, .status2 = .none, }, + .{ .cp = 0xA681, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0xA682, .status = .mapped, .mapping = &.{0xA683}, .status2 = .none, }, + .{ .cp = 0xA683, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0xA684, .status = .mapped, .mapping = &.{0xA685}, .status2 = .none, }, + .{ .cp = 0xA685, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0xA686, .status = .mapped, .mapping = &.{0xA687}, .status2 = .none, }, + .{ .cp = 0xA687, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0xA688, .status = .mapped, .mapping = &.{0xA689}, .status2 = .none, }, + .{ .cp = 0xA689, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0xA68A, .status = .mapped, .mapping = &.{0xA68B}, .status2 = .none, }, + .{ .cp = 0xA68B, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0xA68C, .status = .mapped, .mapping = &.{0xA68D}, .status2 = .none, }, + .{ .cp = 0xA68D, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0xA68E, .status = .mapped, .mapping = &.{0xA68F}, .status2 = .none, }, + .{ .cp = 0xA68F, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0xA690, .status = .mapped, .mapping = &.{0xA691}, .status2 = .none, }, + .{ .cp = 0xA691, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0xA692, .status = .mapped, .mapping = &.{0xA693}, .status2 = .none, }, + .{ .cp = 0xA693, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0xA694, .status = .mapped, .mapping = &.{0xA695}, .status2 = .none, }, + .{ .cp = 0xA695, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0xA696, .status = .mapped, .mapping = &.{0xA697}, .status2 = .none, }, + .{ .cp = 0xA697, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0xA698, .status = .mapped, .mapping = &.{0xA699}, .status2 = .none, }, + .{ .cp = 0xA699, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0xA69A, .status = .mapped, .mapping = &.{0xA69B}, .status2 = .none, }, + .{ .cp = 0xA69B, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0xA69C, .status = .mapped, .mapping = &.{0x044A}, .status2 = .none, }, + .{ .cp = 0xA69D, .status = .mapped, .mapping = &.{0x044C}, .status2 = .none, }, + .{ .cp = 0xA69E, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0xA69F, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0xA722, .status = .mapped, .mapping = &.{0xA723}, .status2 = .none, }, + .{ .cp = 0xA723, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0xA724, .status = .mapped, .mapping = &.{0xA725}, .status2 = .none, }, + .{ .cp = 0xA725, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0xA726, .status = .mapped, .mapping = &.{0xA727}, .status2 = .none, }, + .{ .cp = 0xA727, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0xA728, .status = .mapped, .mapping = &.{0xA729}, .status2 = .none, }, + .{ .cp = 0xA729, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0xA72A, .status = .mapped, .mapping = &.{0xA72B}, .status2 = .none, }, + .{ .cp = 0xA72B, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0xA72C, .status = .mapped, .mapping = &.{0xA72D}, .status2 = .none, }, + .{ .cp = 0xA72D, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0xA72E, .status = .mapped, .mapping = &.{0xA72F}, .status2 = .none, }, + .{ .cp = 0xA732, .status = .mapped, .mapping = &.{0xA733}, .status2 = .none, }, + .{ .cp = 0xA733, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0xA734, .status = .mapped, .mapping = &.{0xA735}, .status2 = .none, }, + .{ .cp = 0xA735, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0xA736, .status = .mapped, .mapping = &.{0xA737}, .status2 = .none, }, + .{ .cp = 0xA737, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0xA738, .status = .mapped, .mapping = &.{0xA739}, .status2 = .none, }, + .{ .cp = 0xA739, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0xA73A, .status = .mapped, .mapping = &.{0xA73B}, .status2 = .none, }, + .{ .cp = 0xA73B, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0xA73C, .status = .mapped, .mapping = &.{0xA73D}, .status2 = .none, }, + .{ .cp = 0xA73D, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0xA73E, .status = .mapped, .mapping = &.{0xA73F}, .status2 = .none, }, + .{ .cp = 0xA73F, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0xA740, .status = .mapped, .mapping = &.{0xA741}, .status2 = .none, }, + .{ .cp = 0xA741, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0xA742, .status = .mapped, .mapping = &.{0xA743}, .status2 = .none, }, + .{ .cp = 0xA743, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0xA744, .status = .mapped, .mapping = &.{0xA745}, .status2 = .none, }, + .{ .cp = 0xA745, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0xA746, .status = .mapped, .mapping = &.{0xA747}, .status2 = .none, }, + .{ .cp = 0xA747, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0xA748, .status = .mapped, .mapping = &.{0xA749}, .status2 = .none, }, + .{ .cp = 0xA749, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0xA74A, .status = .mapped, .mapping = &.{0xA74B}, .status2 = .none, }, + .{ .cp = 0xA74B, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0xA74C, .status = .mapped, .mapping = &.{0xA74D}, .status2 = .none, }, + .{ .cp = 0xA74D, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0xA74E, .status = .mapped, .mapping = &.{0xA74F}, .status2 = .none, }, + .{ .cp = 0xA74F, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0xA750, .status = .mapped, .mapping = &.{0xA751}, .status2 = .none, }, + .{ .cp = 0xA751, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0xA752, .status = .mapped, .mapping = &.{0xA753}, .status2 = .none, }, + .{ .cp = 0xA753, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0xA754, .status = .mapped, .mapping = &.{0xA755}, .status2 = .none, }, + .{ .cp = 0xA755, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0xA756, .status = .mapped, .mapping = &.{0xA757}, .status2 = .none, }, + .{ .cp = 0xA757, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0xA758, .status = .mapped, .mapping = &.{0xA759}, .status2 = .none, }, + .{ .cp = 0xA759, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0xA75A, .status = .mapped, .mapping = &.{0xA75B}, .status2 = .none, }, + .{ .cp = 0xA75B, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0xA75C, .status = .mapped, .mapping = &.{0xA75D}, .status2 = .none, }, + .{ .cp = 0xA75D, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0xA75E, .status = .mapped, .mapping = &.{0xA75F}, .status2 = .none, }, + .{ .cp = 0xA75F, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0xA760, .status = .mapped, .mapping = &.{0xA761}, .status2 = .none, }, + .{ .cp = 0xA761, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0xA762, .status = .mapped, .mapping = &.{0xA763}, .status2 = .none, }, + .{ .cp = 0xA763, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0xA764, .status = .mapped, .mapping = &.{0xA765}, .status2 = .none, }, + .{ .cp = 0xA765, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0xA766, .status = .mapped, .mapping = &.{0xA767}, .status2 = .none, }, + .{ .cp = 0xA767, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0xA768, .status = .mapped, .mapping = &.{0xA769}, .status2 = .none, }, + .{ .cp = 0xA769, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0xA76A, .status = .mapped, .mapping = &.{0xA76B}, .status2 = .none, }, + .{ .cp = 0xA76B, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0xA76C, .status = .mapped, .mapping = &.{0xA76D}, .status2 = .none, }, + .{ .cp = 0xA76D, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0xA76E, .status = .mapped, .mapping = &.{0xA76F}, .status2 = .none, }, + .{ .cp = 0xA76F, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0xA770, .status = .mapped, .mapping = &.{0xA76F}, .status2 = .none, }, + .{ .cp = 0xA779, .status = .mapped, .mapping = &.{0xA77A}, .status2 = .none, }, + .{ .cp = 0xA77A, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0xA77B, .status = .mapped, .mapping = &.{0xA77C}, .status2 = .none, }, + .{ .cp = 0xA77C, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0xA77D, .status = .mapped, .mapping = &.{0x1D79}, .status2 = .none, }, + .{ .cp = 0xA77E, .status = .mapped, .mapping = &.{0xA77F}, .status2 = .none, }, + .{ .cp = 0xA77F, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0xA780, .status = .mapped, .mapping = &.{0xA781}, .status2 = .none, }, + .{ .cp = 0xA781, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0xA782, .status = .mapped, .mapping = &.{0xA783}, .status2 = .none, }, + .{ .cp = 0xA783, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0xA784, .status = .mapped, .mapping = &.{0xA785}, .status2 = .none, }, + .{ .cp = 0xA785, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0xA786, .status = .mapped, .mapping = &.{0xA787}, .status2 = .none, }, + .{ .cp = 0xA78B, .status = .mapped, .mapping = &.{0xA78C}, .status2 = .none, }, + .{ .cp = 0xA78C, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0xA78D, .status = .mapped, .mapping = &.{0x0265}, .status2 = .none, }, + .{ .cp = 0xA78E, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0xA78F, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0xA790, .status = .mapped, .mapping = &.{0xA791}, .status2 = .none, }, + .{ .cp = 0xA791, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0xA792, .status = .mapped, .mapping = &.{0xA793}, .status2 = .none, }, + .{ .cp = 0xA793, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0xA796, .status = .mapped, .mapping = &.{0xA797}, .status2 = .none, }, + .{ .cp = 0xA797, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0xA798, .status = .mapped, .mapping = &.{0xA799}, .status2 = .none, }, + .{ .cp = 0xA799, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0xA79A, .status = .mapped, .mapping = &.{0xA79B}, .status2 = .none, }, + .{ .cp = 0xA79B, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0xA79C, .status = .mapped, .mapping = &.{0xA79D}, .status2 = .none, }, + .{ .cp = 0xA79D, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0xA79E, .status = .mapped, .mapping = &.{0xA79F}, .status2 = .none, }, + .{ .cp = 0xA79F, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0xA7A0, .status = .mapped, .mapping = &.{0xA7A1}, .status2 = .none, }, + .{ .cp = 0xA7A1, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0xA7A2, .status = .mapped, .mapping = &.{0xA7A3}, .status2 = .none, }, + .{ .cp = 0xA7A3, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0xA7A4, .status = .mapped, .mapping = &.{0xA7A5}, .status2 = .none, }, + .{ .cp = 0xA7A5, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0xA7A6, .status = .mapped, .mapping = &.{0xA7A7}, .status2 = .none, }, + .{ .cp = 0xA7A7, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0xA7A8, .status = .mapped, .mapping = &.{0xA7A9}, .status2 = .none, }, + .{ .cp = 0xA7A9, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0xA7AA, .status = .mapped, .mapping = &.{0x0266}, .status2 = .none, }, + .{ .cp = 0xA7AB, .status = .mapped, .mapping = &.{0x025C}, .status2 = .none, }, + .{ .cp = 0xA7AC, .status = .mapped, .mapping = &.{0x0261}, .status2 = .none, }, + .{ .cp = 0xA7AD, .status = .mapped, .mapping = &.{0x026C}, .status2 = .none, }, + .{ .cp = 0xA7AE, .status = .mapped, .mapping = &.{0x026A}, .status2 = .none, }, + .{ .cp = 0xA7AF, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0xA7B0, .status = .mapped, .mapping = &.{0x029E}, .status2 = .none, }, + .{ .cp = 0xA7B1, .status = .mapped, .mapping = &.{0x0287}, .status2 = .none, }, + .{ .cp = 0xA7B2, .status = .mapped, .mapping = &.{0x029D}, .status2 = .none, }, + .{ .cp = 0xA7B3, .status = .mapped, .mapping = &.{0xAB53}, .status2 = .none, }, + .{ .cp = 0xA7B4, .status = .mapped, .mapping = &.{0xA7B5}, .status2 = .none, }, + .{ .cp = 0xA7B5, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0xA7B6, .status = .mapped, .mapping = &.{0xA7B7}, .status2 = .none, }, + .{ .cp = 0xA7B7, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0xA7B8, .status = .mapped, .mapping = &.{0xA7B9}, .status2 = .none, }, + .{ .cp = 0xA7B9, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0xA7BA, .status = .mapped, .mapping = &.{0xA7BB}, .status2 = .none, }, + .{ .cp = 0xA7BB, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0xA7BC, .status = .mapped, .mapping = &.{0xA7BD}, .status2 = .none, }, + .{ .cp = 0xA7BD, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0xA7BE, .status = .mapped, .mapping = &.{0xA7BF}, .status2 = .none, }, + .{ .cp = 0xA7BF, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0xA7C0, .status = .mapped, .mapping = &.{0xA7C1}, .status2 = .none, }, + .{ .cp = 0xA7C1, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0xA7C2, .status = .mapped, .mapping = &.{0xA7C3}, .status2 = .none, }, + .{ .cp = 0xA7C3, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0xA7C4, .status = .mapped, .mapping = &.{0xA794}, .status2 = .none, }, + .{ .cp = 0xA7C5, .status = .mapped, .mapping = &.{0x0282}, .status2 = .none, }, + .{ .cp = 0xA7C6, .status = .mapped, .mapping = &.{0x1D8E}, .status2 = .none, }, + .{ .cp = 0xA7C7, .status = .mapped, .mapping = &.{0xA7C8}, .status2 = .none, }, + .{ .cp = 0xA7C8, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0xA7C9, .status = .mapped, .mapping = &.{0xA7CA}, .status2 = .none, }, + .{ .cp = 0xA7CA, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0xA7CB, .status = .mapped, .mapping = &.{0x0264}, .status2 = .none, }, + .{ .cp = 0xA7CC, .status = .mapped, .mapping = &.{0xA7CD}, .status2 = .none, }, + .{ .cp = 0xA7CD, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0xA7CE, .status = .mapped, .mapping = &.{0xA7CF}, .status2 = .none, }, + .{ .cp = 0xA7CF, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0xA7D0, .status = .mapped, .mapping = &.{0xA7D1}, .status2 = .none, }, + .{ .cp = 0xA7D1, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0xA7D2, .status = .mapped, .mapping = &.{0xA7D3}, .status2 = .none, }, + .{ .cp = 0xA7D3, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0xA7D4, .status = .mapped, .mapping = &.{0xA7D5}, .status2 = .none, }, + .{ .cp = 0xA7D5, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0xA7D6, .status = .mapped, .mapping = &.{0xA7D7}, .status2 = .none, }, + .{ .cp = 0xA7D7, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0xA7D8, .status = .mapped, .mapping = &.{0xA7D9}, .status2 = .none, }, + .{ .cp = 0xA7D9, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0xA7DA, .status = .mapped, .mapping = &.{0xA7DB}, .status2 = .none, }, + .{ .cp = 0xA7DB, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0xA7DC, .status = .mapped, .mapping = &.{0x019B}, .status2 = .none, }, + .{ .cp = 0xA7F1, .status = .mapped, .mapping = &.{0x0073}, .status2 = .none, }, + .{ .cp = 0xA7F2, .status = .mapped, .mapping = &.{0x0063}, .status2 = .none, }, + .{ .cp = 0xA7F3, .status = .mapped, .mapping = &.{0x0066}, .status2 = .none, }, + .{ .cp = 0xA7F4, .status = .mapped, .mapping = &.{0x0071}, .status2 = .none, }, + .{ .cp = 0xA7F5, .status = .mapped, .mapping = &.{0xA7F6}, .status2 = .none, }, + .{ .cp = 0xA7F6, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0xA7F7, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0xA7F8, .status = .mapped, .mapping = &.{0x0127}, .status2 = .none, }, + .{ .cp = 0xA7F9, .status = .mapped, .mapping = &.{0x0153}, .status2 = .none, }, + .{ .cp = 0xA7FA, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0xA82C, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0xA8C5, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0xA8FB, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0xA8FC, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .cp = 0xA8FD, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0xA95F, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .cp = 0xA9CE, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0xA9FF, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0xAB27, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0xAB2F, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0xAB5B, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .cp = 0xAB5C, .status = .mapped, .mapping = &.{0xA727}, .status2 = .none, }, + .{ .cp = 0xAB5D, .status = .mapped, .mapping = &.{0xAB37}, .status2 = .none, }, + .{ .cp = 0xAB5E, .status = .mapped, .mapping = &.{0x026B}, .status2 = .none, }, + .{ .cp = 0xAB5F, .status = .mapped, .mapping = &.{0xAB52}, .status2 = .none, }, + .{ .cp = 0xAB68, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0xAB69, .status = .mapped, .mapping = &.{0x028D}, .status2 = .none, }, + .{ .cp = 0xAB70, .status = .mapped, .mapping = &.{0x13A0}, .status2 = .none, }, + .{ .cp = 0xAB71, .status = .mapped, .mapping = &.{0x13A1}, .status2 = .none, }, + .{ .cp = 0xAB72, .status = .mapped, .mapping = &.{0x13A2}, .status2 = .none, }, + .{ .cp = 0xAB73, .status = .mapped, .mapping = &.{0x13A3}, .status2 = .none, }, + .{ .cp = 0xAB74, .status = .mapped, .mapping = &.{0x13A4}, .status2 = .none, }, + .{ .cp = 0xAB75, .status = .mapped, .mapping = &.{0x13A5}, .status2 = .none, }, + .{ .cp = 0xAB76, .status = .mapped, .mapping = &.{0x13A6}, .status2 = .none, }, + .{ .cp = 0xAB77, .status = .mapped, .mapping = &.{0x13A7}, .status2 = .none, }, + .{ .cp = 0xAB78, .status = .mapped, .mapping = &.{0x13A8}, .status2 = .none, }, + .{ .cp = 0xAB79, .status = .mapped, .mapping = &.{0x13A9}, .status2 = .none, }, + .{ .cp = 0xAB7A, .status = .mapped, .mapping = &.{0x13AA}, .status2 = .none, }, + .{ .cp = 0xAB7B, .status = .mapped, .mapping = &.{0x13AB}, .status2 = .none, }, + .{ .cp = 0xAB7C, .status = .mapped, .mapping = &.{0x13AC}, .status2 = .none, }, + .{ .cp = 0xAB7D, .status = .mapped, .mapping = &.{0x13AD}, .status2 = .none, }, + .{ .cp = 0xAB7E, .status = .mapped, .mapping = &.{0x13AE}, .status2 = .none, }, + .{ .cp = 0xAB7F, .status = .mapped, .mapping = &.{0x13AF}, .status2 = .none, }, + .{ .cp = 0xAB80, .status = .mapped, .mapping = &.{0x13B0}, .status2 = .none, }, + .{ .cp = 0xAB81, .status = .mapped, .mapping = &.{0x13B1}, .status2 = .none, }, + .{ .cp = 0xAB82, .status = .mapped, .mapping = &.{0x13B2}, .status2 = .none, }, + .{ .cp = 0xAB83, .status = .mapped, .mapping = &.{0x13B3}, .status2 = .none, }, + .{ .cp = 0xAB84, .status = .mapped, .mapping = &.{0x13B4}, .status2 = .none, }, + .{ .cp = 0xAB85, .status = .mapped, .mapping = &.{0x13B5}, .status2 = .none, }, + .{ .cp = 0xAB86, .status = .mapped, .mapping = &.{0x13B6}, .status2 = .none, }, + .{ .cp = 0xAB87, .status = .mapped, .mapping = &.{0x13B7}, .status2 = .none, }, + .{ .cp = 0xAB88, .status = .mapped, .mapping = &.{0x13B8}, .status2 = .none, }, + .{ .cp = 0xAB89, .status = .mapped, .mapping = &.{0x13B9}, .status2 = .none, }, + .{ .cp = 0xAB8A, .status = .mapped, .mapping = &.{0x13BA}, .status2 = .none, }, + .{ .cp = 0xAB8B, .status = .mapped, .mapping = &.{0x13BB}, .status2 = .none, }, + .{ .cp = 0xAB8C, .status = .mapped, .mapping = &.{0x13BC}, .status2 = .none, }, + .{ .cp = 0xAB8D, .status = .mapped, .mapping = &.{0x13BD}, .status2 = .none, }, + .{ .cp = 0xAB8E, .status = .mapped, .mapping = &.{0x13BE}, .status2 = .none, }, + .{ .cp = 0xAB8F, .status = .mapped, .mapping = &.{0x13BF}, .status2 = .none, }, + .{ .cp = 0xAB90, .status = .mapped, .mapping = &.{0x13C0}, .status2 = .none, }, + .{ .cp = 0xAB91, .status = .mapped, .mapping = &.{0x13C1}, .status2 = .none, }, + .{ .cp = 0xAB92, .status = .mapped, .mapping = &.{0x13C2}, .status2 = .none, }, + .{ .cp = 0xAB93, .status = .mapped, .mapping = &.{0x13C3}, .status2 = .none, }, + .{ .cp = 0xAB94, .status = .mapped, .mapping = &.{0x13C4}, .status2 = .none, }, + .{ .cp = 0xAB95, .status = .mapped, .mapping = &.{0x13C5}, .status2 = .none, }, + .{ .cp = 0xAB96, .status = .mapped, .mapping = &.{0x13C6}, .status2 = .none, }, + .{ .cp = 0xAB97, .status = .mapped, .mapping = &.{0x13C7}, .status2 = .none, }, + .{ .cp = 0xAB98, .status = .mapped, .mapping = &.{0x13C8}, .status2 = .none, }, + .{ .cp = 0xAB99, .status = .mapped, .mapping = &.{0x13C9}, .status2 = .none, }, + .{ .cp = 0xAB9A, .status = .mapped, .mapping = &.{0x13CA}, .status2 = .none, }, + .{ .cp = 0xAB9B, .status = .mapped, .mapping = &.{0x13CB}, .status2 = .none, }, + .{ .cp = 0xAB9C, .status = .mapped, .mapping = &.{0x13CC}, .status2 = .none, }, + .{ .cp = 0xAB9D, .status = .mapped, .mapping = &.{0x13CD}, .status2 = .none, }, + .{ .cp = 0xAB9E, .status = .mapped, .mapping = &.{0x13CE}, .status2 = .none, }, + .{ .cp = 0xAB9F, .status = .mapped, .mapping = &.{0x13CF}, .status2 = .none, }, + .{ .cp = 0xABA0, .status = .mapped, .mapping = &.{0x13D0}, .status2 = .none, }, + .{ .cp = 0xABA1, .status = .mapped, .mapping = &.{0x13D1}, .status2 = .none, }, + .{ .cp = 0xABA2, .status = .mapped, .mapping = &.{0x13D2}, .status2 = .none, }, + .{ .cp = 0xABA3, .status = .mapped, .mapping = &.{0x13D3}, .status2 = .none, }, + .{ .cp = 0xABA4, .status = .mapped, .mapping = &.{0x13D4}, .status2 = .none, }, + .{ .cp = 0xABA5, .status = .mapped, .mapping = &.{0x13D5}, .status2 = .none, }, + .{ .cp = 0xABA6, .status = .mapped, .mapping = &.{0x13D6}, .status2 = .none, }, + .{ .cp = 0xABA7, .status = .mapped, .mapping = &.{0x13D7}, .status2 = .none, }, + .{ .cp = 0xABA8, .status = .mapped, .mapping = &.{0x13D8}, .status2 = .none, }, + .{ .cp = 0xABA9, .status = .mapped, .mapping = &.{0x13D9}, .status2 = .none, }, + .{ .cp = 0xABAA, .status = .mapped, .mapping = &.{0x13DA}, .status2 = .none, }, + .{ .cp = 0xABAB, .status = .mapped, .mapping = &.{0x13DB}, .status2 = .none, }, + .{ .cp = 0xABAC, .status = .mapped, .mapping = &.{0x13DC}, .status2 = .none, }, + .{ .cp = 0xABAD, .status = .mapped, .mapping = &.{0x13DD}, .status2 = .none, }, + .{ .cp = 0xABAE, .status = .mapped, .mapping = &.{0x13DE}, .status2 = .none, }, + .{ .cp = 0xABAF, .status = .mapped, .mapping = &.{0x13DF}, .status2 = .none, }, + .{ .cp = 0xABB0, .status = .mapped, .mapping = &.{0x13E0}, .status2 = .none, }, + .{ .cp = 0xABB1, .status = .mapped, .mapping = &.{0x13E1}, .status2 = .none, }, + .{ .cp = 0xABB2, .status = .mapped, .mapping = &.{0x13E2}, .status2 = .none, }, + .{ .cp = 0xABB3, .status = .mapped, .mapping = &.{0x13E3}, .status2 = .none, }, + .{ .cp = 0xABB4, .status = .mapped, .mapping = &.{0x13E4}, .status2 = .none, }, + .{ .cp = 0xABB5, .status = .mapped, .mapping = &.{0x13E5}, .status2 = .none, }, + .{ .cp = 0xABB6, .status = .mapped, .mapping = &.{0x13E6}, .status2 = .none, }, + .{ .cp = 0xABB7, .status = .mapped, .mapping = &.{0x13E7}, .status2 = .none, }, + .{ .cp = 0xABB8, .status = .mapped, .mapping = &.{0x13E8}, .status2 = .none, }, + .{ .cp = 0xABB9, .status = .mapped, .mapping = &.{0x13E9}, .status2 = .none, }, + .{ .cp = 0xABBA, .status = .mapped, .mapping = &.{0x13EA}, .status2 = .none, }, + .{ .cp = 0xABBB, .status = .mapped, .mapping = &.{0x13EB}, .status2 = .none, }, + .{ .cp = 0xABBC, .status = .mapped, .mapping = &.{0x13EC}, .status2 = .none, }, + .{ .cp = 0xABBD, .status = .mapped, .mapping = &.{0x13ED}, .status2 = .none, }, + .{ .cp = 0xABBE, .status = .mapped, .mapping = &.{0x13EE}, .status2 = .none, }, + .{ .cp = 0xABBF, .status = .mapped, .mapping = &.{0x13EF}, .status2 = .none, }, + .{ .cp = 0xABEB, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .cp = 0xF900, .status = .mapped, .mapping = &.{0x8C48}, .status2 = .none, }, + .{ .cp = 0xF901, .status = .mapped, .mapping = &.{0x66F4}, .status2 = .none, }, + .{ .cp = 0xF902, .status = .mapped, .mapping = &.{0x8ECA}, .status2 = .none, }, + .{ .cp = 0xF903, .status = .mapped, .mapping = &.{0x8CC8}, .status2 = .none, }, + .{ .cp = 0xF904, .status = .mapped, .mapping = &.{0x6ED1}, .status2 = .none, }, + .{ .cp = 0xF905, .status = .mapped, .mapping = &.{0x4E32}, .status2 = .none, }, + .{ .cp = 0xF906, .status = .mapped, .mapping = &.{0x53E5}, .status2 = .none, }, + .{ .cp = 0xF909, .status = .mapped, .mapping = &.{0x5951}, .status2 = .none, }, + .{ .cp = 0xF90A, .status = .mapped, .mapping = &.{0x91D1}, .status2 = .none, }, + .{ .cp = 0xF90B, .status = .mapped, .mapping = &.{0x5587}, .status2 = .none, }, + .{ .cp = 0xF90C, .status = .mapped, .mapping = &.{0x5948}, .status2 = .none, }, + .{ .cp = 0xF90D, .status = .mapped, .mapping = &.{0x61F6}, .status2 = .none, }, + .{ .cp = 0xF90E, .status = .mapped, .mapping = &.{0x7669}, .status2 = .none, }, + .{ .cp = 0xF90F, .status = .mapped, .mapping = &.{0x7F85}, .status2 = .none, }, + .{ .cp = 0xF910, .status = .mapped, .mapping = &.{0x863F}, .status2 = .none, }, + .{ .cp = 0xF911, .status = .mapped, .mapping = &.{0x87BA}, .status2 = .none, }, + .{ .cp = 0xF912, .status = .mapped, .mapping = &.{0x88F8}, .status2 = .none, }, + .{ .cp = 0xF913, .status = .mapped, .mapping = &.{0x908F}, .status2 = .none, }, + .{ .cp = 0xF914, .status = .mapped, .mapping = &.{0x6A02}, .status2 = .none, }, + .{ .cp = 0xF915, .status = .mapped, .mapping = &.{0x6D1B}, .status2 = .none, }, + .{ .cp = 0xF916, .status = .mapped, .mapping = &.{0x70D9}, .status2 = .none, }, + .{ .cp = 0xF917, .status = .mapped, .mapping = &.{0x73DE}, .status2 = .none, }, + .{ .cp = 0xF918, .status = .mapped, .mapping = &.{0x843D}, .status2 = .none, }, + .{ .cp = 0xF919, .status = .mapped, .mapping = &.{0x916A}, .status2 = .none, }, + .{ .cp = 0xF91A, .status = .mapped, .mapping = &.{0x99F1}, .status2 = .none, }, + .{ .cp = 0xF91B, .status = .mapped, .mapping = &.{0x4E82}, .status2 = .none, }, + .{ .cp = 0xF91C, .status = .mapped, .mapping = &.{0x5375}, .status2 = .none, }, + .{ .cp = 0xF91D, .status = .mapped, .mapping = &.{0x6B04}, .status2 = .none, }, + .{ .cp = 0xF91E, .status = .mapped, .mapping = &.{0x721B}, .status2 = .none, }, + .{ .cp = 0xF91F, .status = .mapped, .mapping = &.{0x862D}, .status2 = .none, }, + .{ .cp = 0xF920, .status = .mapped, .mapping = &.{0x9E1E}, .status2 = .none, }, + .{ .cp = 0xF921, .status = .mapped, .mapping = &.{0x5D50}, .status2 = .none, }, + .{ .cp = 0xF922, .status = .mapped, .mapping = &.{0x6FEB}, .status2 = .none, }, + .{ .cp = 0xF923, .status = .mapped, .mapping = &.{0x85CD}, .status2 = .none, }, + .{ .cp = 0xF924, .status = .mapped, .mapping = &.{0x8964}, .status2 = .none, }, + .{ .cp = 0xF925, .status = .mapped, .mapping = &.{0x62C9}, .status2 = .none, }, + .{ .cp = 0xF926, .status = .mapped, .mapping = &.{0x81D8}, .status2 = .none, }, + .{ .cp = 0xF927, .status = .mapped, .mapping = &.{0x881F}, .status2 = .none, }, + .{ .cp = 0xF928, .status = .mapped, .mapping = &.{0x5ECA}, .status2 = .none, }, + .{ .cp = 0xF929, .status = .mapped, .mapping = &.{0x6717}, .status2 = .none, }, + .{ .cp = 0xF92A, .status = .mapped, .mapping = &.{0x6D6A}, .status2 = .none, }, + .{ .cp = 0xF92B, .status = .mapped, .mapping = &.{0x72FC}, .status2 = .none, }, + .{ .cp = 0xF92C, .status = .mapped, .mapping = &.{0x90CE}, .status2 = .none, }, + .{ .cp = 0xF92D, .status = .mapped, .mapping = &.{0x4F86}, .status2 = .none, }, + .{ .cp = 0xF92E, .status = .mapped, .mapping = &.{0x51B7}, .status2 = .none, }, + .{ .cp = 0xF92F, .status = .mapped, .mapping = &.{0x52DE}, .status2 = .none, }, + .{ .cp = 0xF930, .status = .mapped, .mapping = &.{0x64C4}, .status2 = .none, }, + .{ .cp = 0xF931, .status = .mapped, .mapping = &.{0x6AD3}, .status2 = .none, }, + .{ .cp = 0xF932, .status = .mapped, .mapping = &.{0x7210}, .status2 = .none, }, + .{ .cp = 0xF933, .status = .mapped, .mapping = &.{0x76E7}, .status2 = .none, }, + .{ .cp = 0xF934, .status = .mapped, .mapping = &.{0x8001}, .status2 = .none, }, + .{ .cp = 0xF935, .status = .mapped, .mapping = &.{0x8606}, .status2 = .none, }, + .{ .cp = 0xF936, .status = .mapped, .mapping = &.{0x865C}, .status2 = .none, }, + .{ .cp = 0xF937, .status = .mapped, .mapping = &.{0x8DEF}, .status2 = .none, }, + .{ .cp = 0xF938, .status = .mapped, .mapping = &.{0x9732}, .status2 = .none, }, + .{ .cp = 0xF939, .status = .mapped, .mapping = &.{0x9B6F}, .status2 = .none, }, + .{ .cp = 0xF93A, .status = .mapped, .mapping = &.{0x9DFA}, .status2 = .none, }, + .{ .cp = 0xF93B, .status = .mapped, .mapping = &.{0x788C}, .status2 = .none, }, + .{ .cp = 0xF93C, .status = .mapped, .mapping = &.{0x797F}, .status2 = .none, }, + .{ .cp = 0xF93D, .status = .mapped, .mapping = &.{0x7DA0}, .status2 = .none, }, + .{ .cp = 0xF93E, .status = .mapped, .mapping = &.{0x83C9}, .status2 = .none, }, + .{ .cp = 0xF93F, .status = .mapped, .mapping = &.{0x9304}, .status2 = .none, }, + .{ .cp = 0xF940, .status = .mapped, .mapping = &.{0x9E7F}, .status2 = .none, }, + .{ .cp = 0xF941, .status = .mapped, .mapping = &.{0x8AD6}, .status2 = .none, }, + .{ .cp = 0xF942, .status = .mapped, .mapping = &.{0x58DF}, .status2 = .none, }, + .{ .cp = 0xF943, .status = .mapped, .mapping = &.{0x5F04}, .status2 = .none, }, + .{ .cp = 0xF944, .status = .mapped, .mapping = &.{0x7C60}, .status2 = .none, }, + .{ .cp = 0xF945, .status = .mapped, .mapping = &.{0x807E}, .status2 = .none, }, + .{ .cp = 0xF946, .status = .mapped, .mapping = &.{0x7262}, .status2 = .none, }, + .{ .cp = 0xF947, .status = .mapped, .mapping = &.{0x78CA}, .status2 = .none, }, + .{ .cp = 0xF948, .status = .mapped, .mapping = &.{0x8CC2}, .status2 = .none, }, + .{ .cp = 0xF949, .status = .mapped, .mapping = &.{0x96F7}, .status2 = .none, }, + .{ .cp = 0xF94A, .status = .mapped, .mapping = &.{0x58D8}, .status2 = .none, }, + .{ .cp = 0xF94B, .status = .mapped, .mapping = &.{0x5C62}, .status2 = .none, }, + .{ .cp = 0xF94C, .status = .mapped, .mapping = &.{0x6A13}, .status2 = .none, }, + .{ .cp = 0xF94D, .status = .mapped, .mapping = &.{0x6DDA}, .status2 = .none, }, + .{ .cp = 0xF94E, .status = .mapped, .mapping = &.{0x6F0F}, .status2 = .none, }, + .{ .cp = 0xF94F, .status = .mapped, .mapping = &.{0x7D2F}, .status2 = .none, }, + .{ .cp = 0xF950, .status = .mapped, .mapping = &.{0x7E37}, .status2 = .none, }, + .{ .cp = 0xF951, .status = .mapped, .mapping = &.{0x964B}, .status2 = .none, }, + .{ .cp = 0xF952, .status = .mapped, .mapping = &.{0x52D2}, .status2 = .none, }, + .{ .cp = 0xF953, .status = .mapped, .mapping = &.{0x808B}, .status2 = .none, }, + .{ .cp = 0xF954, .status = .mapped, .mapping = &.{0x51DC}, .status2 = .none, }, + .{ .cp = 0xF955, .status = .mapped, .mapping = &.{0x51CC}, .status2 = .none, }, + .{ .cp = 0xF956, .status = .mapped, .mapping = &.{0x7A1C}, .status2 = .none, }, + .{ .cp = 0xF957, .status = .mapped, .mapping = &.{0x7DBE}, .status2 = .none, }, + .{ .cp = 0xF958, .status = .mapped, .mapping = &.{0x83F1}, .status2 = .none, }, + .{ .cp = 0xF959, .status = .mapped, .mapping = &.{0x9675}, .status2 = .none, }, + .{ .cp = 0xF95A, .status = .mapped, .mapping = &.{0x8B80}, .status2 = .none, }, + .{ .cp = 0xF95B, .status = .mapped, .mapping = &.{0x62CF}, .status2 = .none, }, + .{ .cp = 0xF95C, .status = .mapped, .mapping = &.{0x6A02}, .status2 = .none, }, + .{ .cp = 0xF95D, .status = .mapped, .mapping = &.{0x8AFE}, .status2 = .none, }, + .{ .cp = 0xF95E, .status = .mapped, .mapping = &.{0x4E39}, .status2 = .none, }, + .{ .cp = 0xF95F, .status = .mapped, .mapping = &.{0x5BE7}, .status2 = .none, }, + .{ .cp = 0xF960, .status = .mapped, .mapping = &.{0x6012}, .status2 = .none, }, + .{ .cp = 0xF961, .status = .mapped, .mapping = &.{0x7387}, .status2 = .none, }, + .{ .cp = 0xF962, .status = .mapped, .mapping = &.{0x7570}, .status2 = .none, }, + .{ .cp = 0xF963, .status = .mapped, .mapping = &.{0x5317}, .status2 = .none, }, + .{ .cp = 0xF964, .status = .mapped, .mapping = &.{0x78FB}, .status2 = .none, }, + .{ .cp = 0xF965, .status = .mapped, .mapping = &.{0x4FBF}, .status2 = .none, }, + .{ .cp = 0xF966, .status = .mapped, .mapping = &.{0x5FA9}, .status2 = .none, }, + .{ .cp = 0xF967, .status = .mapped, .mapping = &.{0x4E0D}, .status2 = .none, }, + .{ .cp = 0xF968, .status = .mapped, .mapping = &.{0x6CCC}, .status2 = .none, }, + .{ .cp = 0xF969, .status = .mapped, .mapping = &.{0x6578}, .status2 = .none, }, + .{ .cp = 0xF96A, .status = .mapped, .mapping = &.{0x7D22}, .status2 = .none, }, + .{ .cp = 0xF96B, .status = .mapped, .mapping = &.{0x53C3}, .status2 = .none, }, + .{ .cp = 0xF96C, .status = .mapped, .mapping = &.{0x585E}, .status2 = .none, }, + .{ .cp = 0xF96D, .status = .mapped, .mapping = &.{0x7701}, .status2 = .none, }, + .{ .cp = 0xF96E, .status = .mapped, .mapping = &.{0x8449}, .status2 = .none, }, + .{ .cp = 0xF96F, .status = .mapped, .mapping = &.{0x8AAA}, .status2 = .none, }, + .{ .cp = 0xF970, .status = .mapped, .mapping = &.{0x6BBA}, .status2 = .none, }, + .{ .cp = 0xF971, .status = .mapped, .mapping = &.{0x8FB0}, .status2 = .none, }, + .{ .cp = 0xF972, .status = .mapped, .mapping = &.{0x6C88}, .status2 = .none, }, + .{ .cp = 0xF973, .status = .mapped, .mapping = &.{0x62FE}, .status2 = .none, }, + .{ .cp = 0xF974, .status = .mapped, .mapping = &.{0x82E5}, .status2 = .none, }, + .{ .cp = 0xF975, .status = .mapped, .mapping = &.{0x63A0}, .status2 = .none, }, + .{ .cp = 0xF976, .status = .mapped, .mapping = &.{0x7565}, .status2 = .none, }, + .{ .cp = 0xF977, .status = .mapped, .mapping = &.{0x4EAE}, .status2 = .none, }, + .{ .cp = 0xF978, .status = .mapped, .mapping = &.{0x5169}, .status2 = .none, }, + .{ .cp = 0xF979, .status = .mapped, .mapping = &.{0x51C9}, .status2 = .none, }, + .{ .cp = 0xF97A, .status = .mapped, .mapping = &.{0x6881}, .status2 = .none, }, + .{ .cp = 0xF97B, .status = .mapped, .mapping = &.{0x7CE7}, .status2 = .none, }, + .{ .cp = 0xF97C, .status = .mapped, .mapping = &.{0x826F}, .status2 = .none, }, + .{ .cp = 0xF97D, .status = .mapped, .mapping = &.{0x8AD2}, .status2 = .none, }, + .{ .cp = 0xF97E, .status = .mapped, .mapping = &.{0x91CF}, .status2 = .none, }, + .{ .cp = 0xF97F, .status = .mapped, .mapping = &.{0x52F5}, .status2 = .none, }, + .{ .cp = 0xF980, .status = .mapped, .mapping = &.{0x5442}, .status2 = .none, }, + .{ .cp = 0xF981, .status = .mapped, .mapping = &.{0x5973}, .status2 = .none, }, + .{ .cp = 0xF982, .status = .mapped, .mapping = &.{0x5EEC}, .status2 = .none, }, + .{ .cp = 0xF983, .status = .mapped, .mapping = &.{0x65C5}, .status2 = .none, }, + .{ .cp = 0xF984, .status = .mapped, .mapping = &.{0x6FFE}, .status2 = .none, }, + .{ .cp = 0xF985, .status = .mapped, .mapping = &.{0x792A}, .status2 = .none, }, + .{ .cp = 0xF986, .status = .mapped, .mapping = &.{0x95AD}, .status2 = .none, }, + .{ .cp = 0xF987, .status = .mapped, .mapping = &.{0x9A6A}, .status2 = .none, }, + .{ .cp = 0xF988, .status = .mapped, .mapping = &.{0x9E97}, .status2 = .none, }, + .{ .cp = 0xF989, .status = .mapped, .mapping = &.{0x9ECE}, .status2 = .none, }, + .{ .cp = 0xF98A, .status = .mapped, .mapping = &.{0x529B}, .status2 = .none, }, + .{ .cp = 0xF98B, .status = .mapped, .mapping = &.{0x66C6}, .status2 = .none, }, + .{ .cp = 0xF98C, .status = .mapped, .mapping = &.{0x6B77}, .status2 = .none, }, + .{ .cp = 0xF98D, .status = .mapped, .mapping = &.{0x8F62}, .status2 = .none, }, + .{ .cp = 0xF98E, .status = .mapped, .mapping = &.{0x5E74}, .status2 = .none, }, + .{ .cp = 0xF98F, .status = .mapped, .mapping = &.{0x6190}, .status2 = .none, }, + .{ .cp = 0xF990, .status = .mapped, .mapping = &.{0x6200}, .status2 = .none, }, + .{ .cp = 0xF991, .status = .mapped, .mapping = &.{0x649A}, .status2 = .none, }, + .{ .cp = 0xF992, .status = .mapped, .mapping = &.{0x6F23}, .status2 = .none, }, + .{ .cp = 0xF993, .status = .mapped, .mapping = &.{0x7149}, .status2 = .none, }, + .{ .cp = 0xF994, .status = .mapped, .mapping = &.{0x7489}, .status2 = .none, }, + .{ .cp = 0xF995, .status = .mapped, .mapping = &.{0x79CA}, .status2 = .none, }, + .{ .cp = 0xF996, .status = .mapped, .mapping = &.{0x7DF4}, .status2 = .none, }, + .{ .cp = 0xF997, .status = .mapped, .mapping = &.{0x806F}, .status2 = .none, }, + .{ .cp = 0xF998, .status = .mapped, .mapping = &.{0x8F26}, .status2 = .none, }, + .{ .cp = 0xF999, .status = .mapped, .mapping = &.{0x84EE}, .status2 = .none, }, + .{ .cp = 0xF99A, .status = .mapped, .mapping = &.{0x9023}, .status2 = .none, }, + .{ .cp = 0xF99B, .status = .mapped, .mapping = &.{0x934A}, .status2 = .none, }, + .{ .cp = 0xF99C, .status = .mapped, .mapping = &.{0x5217}, .status2 = .none, }, + .{ .cp = 0xF99D, .status = .mapped, .mapping = &.{0x52A3}, .status2 = .none, }, + .{ .cp = 0xF99E, .status = .mapped, .mapping = &.{0x54BD}, .status2 = .none, }, + .{ .cp = 0xF99F, .status = .mapped, .mapping = &.{0x70C8}, .status2 = .none, }, + .{ .cp = 0xF9A0, .status = .mapped, .mapping = &.{0x88C2}, .status2 = .none, }, + .{ .cp = 0xF9A1, .status = .mapped, .mapping = &.{0x8AAA}, .status2 = .none, }, + .{ .cp = 0xF9A2, .status = .mapped, .mapping = &.{0x5EC9}, .status2 = .none, }, + .{ .cp = 0xF9A3, .status = .mapped, .mapping = &.{0x5FF5}, .status2 = .none, }, + .{ .cp = 0xF9A4, .status = .mapped, .mapping = &.{0x637B}, .status2 = .none, }, + .{ .cp = 0xF9A5, .status = .mapped, .mapping = &.{0x6BAE}, .status2 = .none, }, + .{ .cp = 0xF9A6, .status = .mapped, .mapping = &.{0x7C3E}, .status2 = .none, }, + .{ .cp = 0xF9A7, .status = .mapped, .mapping = &.{0x7375}, .status2 = .none, }, + .{ .cp = 0xF9A8, .status = .mapped, .mapping = &.{0x4EE4}, .status2 = .none, }, + .{ .cp = 0xF9A9, .status = .mapped, .mapping = &.{0x56F9}, .status2 = .none, }, + .{ .cp = 0xF9AA, .status = .mapped, .mapping = &.{0x5BE7}, .status2 = .none, }, + .{ .cp = 0xF9AB, .status = .mapped, .mapping = &.{0x5DBA}, .status2 = .none, }, + .{ .cp = 0xF9AC, .status = .mapped, .mapping = &.{0x601C}, .status2 = .none, }, + .{ .cp = 0xF9AD, .status = .mapped, .mapping = &.{0x73B2}, .status2 = .none, }, + .{ .cp = 0xF9AE, .status = .mapped, .mapping = &.{0x7469}, .status2 = .none, }, + .{ .cp = 0xF9AF, .status = .mapped, .mapping = &.{0x7F9A}, .status2 = .none, }, + .{ .cp = 0xF9B0, .status = .mapped, .mapping = &.{0x8046}, .status2 = .none, }, + .{ .cp = 0xF9B1, .status = .mapped, .mapping = &.{0x9234}, .status2 = .none, }, + .{ .cp = 0xF9B2, .status = .mapped, .mapping = &.{0x96F6}, .status2 = .none, }, + .{ .cp = 0xF9B3, .status = .mapped, .mapping = &.{0x9748}, .status2 = .none, }, + .{ .cp = 0xF9B4, .status = .mapped, .mapping = &.{0x9818}, .status2 = .none, }, + .{ .cp = 0xF9B5, .status = .mapped, .mapping = &.{0x4F8B}, .status2 = .none, }, + .{ .cp = 0xF9B6, .status = .mapped, .mapping = &.{0x79AE}, .status2 = .none, }, + .{ .cp = 0xF9B7, .status = .mapped, .mapping = &.{0x91B4}, .status2 = .none, }, + .{ .cp = 0xF9B8, .status = .mapped, .mapping = &.{0x96B8}, .status2 = .none, }, + .{ .cp = 0xF9B9, .status = .mapped, .mapping = &.{0x60E1}, .status2 = .none, }, + .{ .cp = 0xF9BA, .status = .mapped, .mapping = &.{0x4E86}, .status2 = .none, }, + .{ .cp = 0xF9BB, .status = .mapped, .mapping = &.{0x50DA}, .status2 = .none, }, + .{ .cp = 0xF9BC, .status = .mapped, .mapping = &.{0x5BEE}, .status2 = .none, }, + .{ .cp = 0xF9BD, .status = .mapped, .mapping = &.{0x5C3F}, .status2 = .none, }, + .{ .cp = 0xF9BE, .status = .mapped, .mapping = &.{0x6599}, .status2 = .none, }, + .{ .cp = 0xF9BF, .status = .mapped, .mapping = &.{0x6A02}, .status2 = .none, }, + .{ .cp = 0xF9C0, .status = .mapped, .mapping = &.{0x71CE}, .status2 = .none, }, + .{ .cp = 0xF9C1, .status = .mapped, .mapping = &.{0x7642}, .status2 = .none, }, + .{ .cp = 0xF9C2, .status = .mapped, .mapping = &.{0x84FC}, .status2 = .none, }, + .{ .cp = 0xF9C3, .status = .mapped, .mapping = &.{0x907C}, .status2 = .none, }, + .{ .cp = 0xF9C4, .status = .mapped, .mapping = &.{0x9F8D}, .status2 = .none, }, + .{ .cp = 0xF9C5, .status = .mapped, .mapping = &.{0x6688}, .status2 = .none, }, + .{ .cp = 0xF9C6, .status = .mapped, .mapping = &.{0x962E}, .status2 = .none, }, + .{ .cp = 0xF9C7, .status = .mapped, .mapping = &.{0x5289}, .status2 = .none, }, + .{ .cp = 0xF9C8, .status = .mapped, .mapping = &.{0x677B}, .status2 = .none, }, + .{ .cp = 0xF9C9, .status = .mapped, .mapping = &.{0x67F3}, .status2 = .none, }, + .{ .cp = 0xF9CA, .status = .mapped, .mapping = &.{0x6D41}, .status2 = .none, }, + .{ .cp = 0xF9CB, .status = .mapped, .mapping = &.{0x6E9C}, .status2 = .none, }, + .{ .cp = 0xF9CC, .status = .mapped, .mapping = &.{0x7409}, .status2 = .none, }, + .{ .cp = 0xF9CD, .status = .mapped, .mapping = &.{0x7559}, .status2 = .none, }, + .{ .cp = 0xF9CE, .status = .mapped, .mapping = &.{0x786B}, .status2 = .none, }, + .{ .cp = 0xF9CF, .status = .mapped, .mapping = &.{0x7D10}, .status2 = .none, }, + .{ .cp = 0xF9D0, .status = .mapped, .mapping = &.{0x985E}, .status2 = .none, }, + .{ .cp = 0xF9D1, .status = .mapped, .mapping = &.{0x516D}, .status2 = .none, }, + .{ .cp = 0xF9D2, .status = .mapped, .mapping = &.{0x622E}, .status2 = .none, }, + .{ .cp = 0xF9D3, .status = .mapped, .mapping = &.{0x9678}, .status2 = .none, }, + .{ .cp = 0xF9D4, .status = .mapped, .mapping = &.{0x502B}, .status2 = .none, }, + .{ .cp = 0xF9D5, .status = .mapped, .mapping = &.{0x5D19}, .status2 = .none, }, + .{ .cp = 0xF9D6, .status = .mapped, .mapping = &.{0x6DEA}, .status2 = .none, }, + .{ .cp = 0xF9D7, .status = .mapped, .mapping = &.{0x8F2A}, .status2 = .none, }, + .{ .cp = 0xF9D8, .status = .mapped, .mapping = &.{0x5F8B}, .status2 = .none, }, + .{ .cp = 0xF9D9, .status = .mapped, .mapping = &.{0x6144}, .status2 = .none, }, + .{ .cp = 0xF9DA, .status = .mapped, .mapping = &.{0x6817}, .status2 = .none, }, + .{ .cp = 0xF9DB, .status = .mapped, .mapping = &.{0x7387}, .status2 = .none, }, + .{ .cp = 0xF9DC, .status = .mapped, .mapping = &.{0x9686}, .status2 = .none, }, + .{ .cp = 0xF9DD, .status = .mapped, .mapping = &.{0x5229}, .status2 = .none, }, + .{ .cp = 0xF9DE, .status = .mapped, .mapping = &.{0x540F}, .status2 = .none, }, + .{ .cp = 0xF9DF, .status = .mapped, .mapping = &.{0x5C65}, .status2 = .none, }, + .{ .cp = 0xF9E0, .status = .mapped, .mapping = &.{0x6613}, .status2 = .none, }, + .{ .cp = 0xF9E1, .status = .mapped, .mapping = &.{0x674E}, .status2 = .none, }, + .{ .cp = 0xF9E2, .status = .mapped, .mapping = &.{0x68A8}, .status2 = .none, }, + .{ .cp = 0xF9E3, .status = .mapped, .mapping = &.{0x6CE5}, .status2 = .none, }, + .{ .cp = 0xF9E4, .status = .mapped, .mapping = &.{0x7406}, .status2 = .none, }, + .{ .cp = 0xF9E5, .status = .mapped, .mapping = &.{0x75E2}, .status2 = .none, }, + .{ .cp = 0xF9E6, .status = .mapped, .mapping = &.{0x7F79}, .status2 = .none, }, + .{ .cp = 0xF9E7, .status = .mapped, .mapping = &.{0x88CF}, .status2 = .none, }, + .{ .cp = 0xF9E8, .status = .mapped, .mapping = &.{0x88E1}, .status2 = .none, }, + .{ .cp = 0xF9E9, .status = .mapped, .mapping = &.{0x91CC}, .status2 = .none, }, + .{ .cp = 0xF9EA, .status = .mapped, .mapping = &.{0x96E2}, .status2 = .none, }, + .{ .cp = 0xF9EB, .status = .mapped, .mapping = &.{0x533F}, .status2 = .none, }, + .{ .cp = 0xF9EC, .status = .mapped, .mapping = &.{0x6EBA}, .status2 = .none, }, + .{ .cp = 0xF9ED, .status = .mapped, .mapping = &.{0x541D}, .status2 = .none, }, + .{ .cp = 0xF9EE, .status = .mapped, .mapping = &.{0x71D0}, .status2 = .none, }, + .{ .cp = 0xF9EF, .status = .mapped, .mapping = &.{0x7498}, .status2 = .none, }, + .{ .cp = 0xF9F0, .status = .mapped, .mapping = &.{0x85FA}, .status2 = .none, }, + .{ .cp = 0xF9F1, .status = .mapped, .mapping = &.{0x96A3}, .status2 = .none, }, + .{ .cp = 0xF9F2, .status = .mapped, .mapping = &.{0x9C57}, .status2 = .none, }, + .{ .cp = 0xF9F3, .status = .mapped, .mapping = &.{0x9E9F}, .status2 = .none, }, + .{ .cp = 0xF9F4, .status = .mapped, .mapping = &.{0x6797}, .status2 = .none, }, + .{ .cp = 0xF9F5, .status = .mapped, .mapping = &.{0x6DCB}, .status2 = .none, }, + .{ .cp = 0xF9F6, .status = .mapped, .mapping = &.{0x81E8}, .status2 = .none, }, + .{ .cp = 0xF9F7, .status = .mapped, .mapping = &.{0x7ACB}, .status2 = .none, }, + .{ .cp = 0xF9F8, .status = .mapped, .mapping = &.{0x7B20}, .status2 = .none, }, + .{ .cp = 0xF9F9, .status = .mapped, .mapping = &.{0x7C92}, .status2 = .none, }, + .{ .cp = 0xF9FA, .status = .mapped, .mapping = &.{0x72C0}, .status2 = .none, }, + .{ .cp = 0xF9FB, .status = .mapped, .mapping = &.{0x7099}, .status2 = .none, }, + .{ .cp = 0xF9FC, .status = .mapped, .mapping = &.{0x8B58}, .status2 = .none, }, + .{ .cp = 0xF9FD, .status = .mapped, .mapping = &.{0x4EC0}, .status2 = .none, }, + .{ .cp = 0xF9FE, .status = .mapped, .mapping = &.{0x8336}, .status2 = .none, }, + .{ .cp = 0xF9FF, .status = .mapped, .mapping = &.{0x523A}, .status2 = .none, }, + .{ .cp = 0xFA00, .status = .mapped, .mapping = &.{0x5207}, .status2 = .none, }, + .{ .cp = 0xFA01, .status = .mapped, .mapping = &.{0x5EA6}, .status2 = .none, }, + .{ .cp = 0xFA02, .status = .mapped, .mapping = &.{0x62D3}, .status2 = .none, }, + .{ .cp = 0xFA03, .status = .mapped, .mapping = &.{0x7CD6}, .status2 = .none, }, + .{ .cp = 0xFA04, .status = .mapped, .mapping = &.{0x5B85}, .status2 = .none, }, + .{ .cp = 0xFA05, .status = .mapped, .mapping = &.{0x6D1E}, .status2 = .none, }, + .{ .cp = 0xFA06, .status = .mapped, .mapping = &.{0x66B4}, .status2 = .none, }, + .{ .cp = 0xFA07, .status = .mapped, .mapping = &.{0x8F3B}, .status2 = .none, }, + .{ .cp = 0xFA08, .status = .mapped, .mapping = &.{0x884C}, .status2 = .none, }, + .{ .cp = 0xFA09, .status = .mapped, .mapping = &.{0x964D}, .status2 = .none, }, + .{ .cp = 0xFA0A, .status = .mapped, .mapping = &.{0x898B}, .status2 = .none, }, + .{ .cp = 0xFA0B, .status = .mapped, .mapping = &.{0x5ED3}, .status2 = .none, }, + .{ .cp = 0xFA0C, .status = .mapped, .mapping = &.{0x5140}, .status2 = .none, }, + .{ .cp = 0xFA0D, .status = .mapped, .mapping = &.{0x55C0}, .status2 = .none, }, + .{ .cp = 0xFA10, .status = .mapped, .mapping = &.{0x585A}, .status2 = .none, }, + .{ .cp = 0xFA11, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0xFA12, .status = .mapped, .mapping = &.{0x6674}, .status2 = .none, }, + .{ .cp = 0xFA15, .status = .mapped, .mapping = &.{0x51DE}, .status2 = .none, }, + .{ .cp = 0xFA16, .status = .mapped, .mapping = &.{0x732A}, .status2 = .none, }, + .{ .cp = 0xFA17, .status = .mapped, .mapping = &.{0x76CA}, .status2 = .none, }, + .{ .cp = 0xFA18, .status = .mapped, .mapping = &.{0x793C}, .status2 = .none, }, + .{ .cp = 0xFA19, .status = .mapped, .mapping = &.{0x795E}, .status2 = .none, }, + .{ .cp = 0xFA1A, .status = .mapped, .mapping = &.{0x7965}, .status2 = .none, }, + .{ .cp = 0xFA1B, .status = .mapped, .mapping = &.{0x798F}, .status2 = .none, }, + .{ .cp = 0xFA1C, .status = .mapped, .mapping = &.{0x9756}, .status2 = .none, }, + .{ .cp = 0xFA1D, .status = .mapped, .mapping = &.{0x7CBE}, .status2 = .none, }, + .{ .cp = 0xFA1E, .status = .mapped, .mapping = &.{0x7FBD}, .status2 = .none, }, + .{ .cp = 0xFA1F, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0xFA20, .status = .mapped, .mapping = &.{0x8612}, .status2 = .none, }, + .{ .cp = 0xFA21, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0xFA22, .status = .mapped, .mapping = &.{0x8AF8}, .status2 = .none, }, + .{ .cp = 0xFA25, .status = .mapped, .mapping = &.{0x9038}, .status2 = .none, }, + .{ .cp = 0xFA26, .status = .mapped, .mapping = &.{0x90FD}, .status2 = .none, }, + .{ .cp = 0xFA2A, .status = .mapped, .mapping = &.{0x98EF}, .status2 = .none, }, + .{ .cp = 0xFA2B, .status = .mapped, .mapping = &.{0x98FC}, .status2 = .none, }, + .{ .cp = 0xFA2C, .status = .mapped, .mapping = &.{0x9928}, .status2 = .none, }, + .{ .cp = 0xFA2D, .status = .mapped, .mapping = &.{0x9DB4}, .status2 = .none, }, + .{ .cp = 0xFA2E, .status = .mapped, .mapping = &.{0x90DE}, .status2 = .none, }, + .{ .cp = 0xFA2F, .status = .mapped, .mapping = &.{0x96B7}, .status2 = .none, }, + .{ .cp = 0xFA30, .status = .mapped, .mapping = &.{0x4FAE}, .status2 = .none, }, + .{ .cp = 0xFA31, .status = .mapped, .mapping = &.{0x50E7}, .status2 = .none, }, + .{ .cp = 0xFA32, .status = .mapped, .mapping = &.{0x514D}, .status2 = .none, }, + .{ .cp = 0xFA33, .status = .mapped, .mapping = &.{0x52C9}, .status2 = .none, }, + .{ .cp = 0xFA34, .status = .mapped, .mapping = &.{0x52E4}, .status2 = .none, }, + .{ .cp = 0xFA35, .status = .mapped, .mapping = &.{0x5351}, .status2 = .none, }, + .{ .cp = 0xFA36, .status = .mapped, .mapping = &.{0x559D}, .status2 = .none, }, + .{ .cp = 0xFA37, .status = .mapped, .mapping = &.{0x5606}, .status2 = .none, }, + .{ .cp = 0xFA38, .status = .mapped, .mapping = &.{0x5668}, .status2 = .none, }, + .{ .cp = 0xFA39, .status = .mapped, .mapping = &.{0x5840}, .status2 = .none, }, + .{ .cp = 0xFA3A, .status = .mapped, .mapping = &.{0x58A8}, .status2 = .none, }, + .{ .cp = 0xFA3B, .status = .mapped, .mapping = &.{0x5C64}, .status2 = .none, }, + .{ .cp = 0xFA3C, .status = .mapped, .mapping = &.{0x5C6E}, .status2 = .none, }, + .{ .cp = 0xFA3D, .status = .mapped, .mapping = &.{0x6094}, .status2 = .none, }, + .{ .cp = 0xFA3E, .status = .mapped, .mapping = &.{0x6168}, .status2 = .none, }, + .{ .cp = 0xFA3F, .status = .mapped, .mapping = &.{0x618E}, .status2 = .none, }, + .{ .cp = 0xFA40, .status = .mapped, .mapping = &.{0x61F2}, .status2 = .none, }, + .{ .cp = 0xFA41, .status = .mapped, .mapping = &.{0x654F}, .status2 = .none, }, + .{ .cp = 0xFA42, .status = .mapped, .mapping = &.{0x65E2}, .status2 = .none, }, + .{ .cp = 0xFA43, .status = .mapped, .mapping = &.{0x6691}, .status2 = .none, }, + .{ .cp = 0xFA44, .status = .mapped, .mapping = &.{0x6885}, .status2 = .none, }, + .{ .cp = 0xFA45, .status = .mapped, .mapping = &.{0x6D77}, .status2 = .none, }, + .{ .cp = 0xFA46, .status = .mapped, .mapping = &.{0x6E1A}, .status2 = .none, }, + .{ .cp = 0xFA47, .status = .mapped, .mapping = &.{0x6F22}, .status2 = .none, }, + .{ .cp = 0xFA48, .status = .mapped, .mapping = &.{0x716E}, .status2 = .none, }, + .{ .cp = 0xFA49, .status = .mapped, .mapping = &.{0x722B}, .status2 = .none, }, + .{ .cp = 0xFA4A, .status = .mapped, .mapping = &.{0x7422}, .status2 = .none, }, + .{ .cp = 0xFA4B, .status = .mapped, .mapping = &.{0x7891}, .status2 = .none, }, + .{ .cp = 0xFA4C, .status = .mapped, .mapping = &.{0x793E}, .status2 = .none, }, + .{ .cp = 0xFA4D, .status = .mapped, .mapping = &.{0x7949}, .status2 = .none, }, + .{ .cp = 0xFA4E, .status = .mapped, .mapping = &.{0x7948}, .status2 = .none, }, + .{ .cp = 0xFA4F, .status = .mapped, .mapping = &.{0x7950}, .status2 = .none, }, + .{ .cp = 0xFA50, .status = .mapped, .mapping = &.{0x7956}, .status2 = .none, }, + .{ .cp = 0xFA51, .status = .mapped, .mapping = &.{0x795D}, .status2 = .none, }, + .{ .cp = 0xFA52, .status = .mapped, .mapping = &.{0x798D}, .status2 = .none, }, + .{ .cp = 0xFA53, .status = .mapped, .mapping = &.{0x798E}, .status2 = .none, }, + .{ .cp = 0xFA54, .status = .mapped, .mapping = &.{0x7A40}, .status2 = .none, }, + .{ .cp = 0xFA55, .status = .mapped, .mapping = &.{0x7A81}, .status2 = .none, }, + .{ .cp = 0xFA56, .status = .mapped, .mapping = &.{0x7BC0}, .status2 = .none, }, + .{ .cp = 0xFA57, .status = .mapped, .mapping = &.{0x7DF4}, .status2 = .none, }, + .{ .cp = 0xFA58, .status = .mapped, .mapping = &.{0x7E09}, .status2 = .none, }, + .{ .cp = 0xFA59, .status = .mapped, .mapping = &.{0x7E41}, .status2 = .none, }, + .{ .cp = 0xFA5A, .status = .mapped, .mapping = &.{0x7F72}, .status2 = .none, }, + .{ .cp = 0xFA5B, .status = .mapped, .mapping = &.{0x8005}, .status2 = .none, }, + .{ .cp = 0xFA5C, .status = .mapped, .mapping = &.{0x81ED}, .status2 = .none, }, + .{ .cp = 0xFA5F, .status = .mapped, .mapping = &.{0x8457}, .status2 = .none, }, + .{ .cp = 0xFA60, .status = .mapped, .mapping = &.{0x8910}, .status2 = .none, }, + .{ .cp = 0xFA61, .status = .mapped, .mapping = &.{0x8996}, .status2 = .none, }, + .{ .cp = 0xFA62, .status = .mapped, .mapping = &.{0x8B01}, .status2 = .none, }, + .{ .cp = 0xFA63, .status = .mapped, .mapping = &.{0x8B39}, .status2 = .none, }, + .{ .cp = 0xFA64, .status = .mapped, .mapping = &.{0x8CD3}, .status2 = .none, }, + .{ .cp = 0xFA65, .status = .mapped, .mapping = &.{0x8D08}, .status2 = .none, }, + .{ .cp = 0xFA66, .status = .mapped, .mapping = &.{0x8FB6}, .status2 = .none, }, + .{ .cp = 0xFA67, .status = .mapped, .mapping = &.{0x9038}, .status2 = .none, }, + .{ .cp = 0xFA68, .status = .mapped, .mapping = &.{0x96E3}, .status2 = .none, }, + .{ .cp = 0xFA69, .status = .mapped, .mapping = &.{0x97FF}, .status2 = .none, }, + .{ .cp = 0xFA6A, .status = .mapped, .mapping = &.{0x983B}, .status2 = .none, }, + .{ .cp = 0xFA6B, .status = .mapped, .mapping = &.{0x6075}, .status2 = .none, }, + .{ .cp = 0xFA6C, .status = .mapped, .mapping = &.{0x242EE}, .status2 = .none, }, + .{ .cp = 0xFA6D, .status = .mapped, .mapping = &.{0x8218}, .status2 = .none, }, + .{ .cp = 0xFA70, .status = .mapped, .mapping = &.{0x4E26}, .status2 = .none, }, + .{ .cp = 0xFA71, .status = .mapped, .mapping = &.{0x51B5}, .status2 = .none, }, + .{ .cp = 0xFA72, .status = .mapped, .mapping = &.{0x5168}, .status2 = .none, }, + .{ .cp = 0xFA73, .status = .mapped, .mapping = &.{0x4F80}, .status2 = .none, }, + .{ .cp = 0xFA74, .status = .mapped, .mapping = &.{0x5145}, .status2 = .none, }, + .{ .cp = 0xFA75, .status = .mapped, .mapping = &.{0x5180}, .status2 = .none, }, + .{ .cp = 0xFA76, .status = .mapped, .mapping = &.{0x52C7}, .status2 = .none, }, + .{ .cp = 0xFA77, .status = .mapped, .mapping = &.{0x52FA}, .status2 = .none, }, + .{ .cp = 0xFA78, .status = .mapped, .mapping = &.{0x559D}, .status2 = .none, }, + .{ .cp = 0xFA79, .status = .mapped, .mapping = &.{0x5555}, .status2 = .none, }, + .{ .cp = 0xFA7A, .status = .mapped, .mapping = &.{0x5599}, .status2 = .none, }, + .{ .cp = 0xFA7B, .status = .mapped, .mapping = &.{0x55E2}, .status2 = .none, }, + .{ .cp = 0xFA7C, .status = .mapped, .mapping = &.{0x585A}, .status2 = .none, }, + .{ .cp = 0xFA7D, .status = .mapped, .mapping = &.{0x58B3}, .status2 = .none, }, + .{ .cp = 0xFA7E, .status = .mapped, .mapping = &.{0x5944}, .status2 = .none, }, + .{ .cp = 0xFA7F, .status = .mapped, .mapping = &.{0x5954}, .status2 = .none, }, + .{ .cp = 0xFA80, .status = .mapped, .mapping = &.{0x5A62}, .status2 = .none, }, + .{ .cp = 0xFA81, .status = .mapped, .mapping = &.{0x5B28}, .status2 = .none, }, + .{ .cp = 0xFA82, .status = .mapped, .mapping = &.{0x5ED2}, .status2 = .none, }, + .{ .cp = 0xFA83, .status = .mapped, .mapping = &.{0x5ED9}, .status2 = .none, }, + .{ .cp = 0xFA84, .status = .mapped, .mapping = &.{0x5F69}, .status2 = .none, }, + .{ .cp = 0xFA85, .status = .mapped, .mapping = &.{0x5FAD}, .status2 = .none, }, + .{ .cp = 0xFA86, .status = .mapped, .mapping = &.{0x60D8}, .status2 = .none, }, + .{ .cp = 0xFA87, .status = .mapped, .mapping = &.{0x614E}, .status2 = .none, }, + .{ .cp = 0xFA88, .status = .mapped, .mapping = &.{0x6108}, .status2 = .none, }, + .{ .cp = 0xFA89, .status = .mapped, .mapping = &.{0x618E}, .status2 = .none, }, + .{ .cp = 0xFA8A, .status = .mapped, .mapping = &.{0x6160}, .status2 = .none, }, + .{ .cp = 0xFA8B, .status = .mapped, .mapping = &.{0x61F2}, .status2 = .none, }, + .{ .cp = 0xFA8C, .status = .mapped, .mapping = &.{0x6234}, .status2 = .none, }, + .{ .cp = 0xFA8D, .status = .mapped, .mapping = &.{0x63C4}, .status2 = .none, }, + .{ .cp = 0xFA8E, .status = .mapped, .mapping = &.{0x641C}, .status2 = .none, }, + .{ .cp = 0xFA8F, .status = .mapped, .mapping = &.{0x6452}, .status2 = .none, }, + .{ .cp = 0xFA90, .status = .mapped, .mapping = &.{0x6556}, .status2 = .none, }, + .{ .cp = 0xFA91, .status = .mapped, .mapping = &.{0x6674}, .status2 = .none, }, + .{ .cp = 0xFA92, .status = .mapped, .mapping = &.{0x6717}, .status2 = .none, }, + .{ .cp = 0xFA93, .status = .mapped, .mapping = &.{0x671B}, .status2 = .none, }, + .{ .cp = 0xFA94, .status = .mapped, .mapping = &.{0x6756}, .status2 = .none, }, + .{ .cp = 0xFA95, .status = .mapped, .mapping = &.{0x6B79}, .status2 = .none, }, + .{ .cp = 0xFA96, .status = .mapped, .mapping = &.{0x6BBA}, .status2 = .none, }, + .{ .cp = 0xFA97, .status = .mapped, .mapping = &.{0x6D41}, .status2 = .none, }, + .{ .cp = 0xFA98, .status = .mapped, .mapping = &.{0x6EDB}, .status2 = .none, }, + .{ .cp = 0xFA99, .status = .mapped, .mapping = &.{0x6ECB}, .status2 = .none, }, + .{ .cp = 0xFA9A, .status = .mapped, .mapping = &.{0x6F22}, .status2 = .none, }, + .{ .cp = 0xFA9B, .status = .mapped, .mapping = &.{0x701E}, .status2 = .none, }, + .{ .cp = 0xFA9C, .status = .mapped, .mapping = &.{0x716E}, .status2 = .none, }, + .{ .cp = 0xFA9D, .status = .mapped, .mapping = &.{0x77A7}, .status2 = .none, }, + .{ .cp = 0xFA9E, .status = .mapped, .mapping = &.{0x7235}, .status2 = .none, }, + .{ .cp = 0xFA9F, .status = .mapped, .mapping = &.{0x72AF}, .status2 = .none, }, + .{ .cp = 0xFAA0, .status = .mapped, .mapping = &.{0x732A}, .status2 = .none, }, + .{ .cp = 0xFAA1, .status = .mapped, .mapping = &.{0x7471}, .status2 = .none, }, + .{ .cp = 0xFAA2, .status = .mapped, .mapping = &.{0x7506}, .status2 = .none, }, + .{ .cp = 0xFAA3, .status = .mapped, .mapping = &.{0x753B}, .status2 = .none, }, + .{ .cp = 0xFAA4, .status = .mapped, .mapping = &.{0x761D}, .status2 = .none, }, + .{ .cp = 0xFAA5, .status = .mapped, .mapping = &.{0x761F}, .status2 = .none, }, + .{ .cp = 0xFAA6, .status = .mapped, .mapping = &.{0x76CA}, .status2 = .none, }, + .{ .cp = 0xFAA7, .status = .mapped, .mapping = &.{0x76DB}, .status2 = .none, }, + .{ .cp = 0xFAA8, .status = .mapped, .mapping = &.{0x76F4}, .status2 = .none, }, + .{ .cp = 0xFAA9, .status = .mapped, .mapping = &.{0x774A}, .status2 = .none, }, + .{ .cp = 0xFAAA, .status = .mapped, .mapping = &.{0x7740}, .status2 = .none, }, + .{ .cp = 0xFAAB, .status = .mapped, .mapping = &.{0x78CC}, .status2 = .none, }, + .{ .cp = 0xFAAC, .status = .mapped, .mapping = &.{0x7AB1}, .status2 = .none, }, + .{ .cp = 0xFAAD, .status = .mapped, .mapping = &.{0x7BC0}, .status2 = .none, }, + .{ .cp = 0xFAAE, .status = .mapped, .mapping = &.{0x7C7B}, .status2 = .none, }, + .{ .cp = 0xFAAF, .status = .mapped, .mapping = &.{0x7D5B}, .status2 = .none, }, + .{ .cp = 0xFAB0, .status = .mapped, .mapping = &.{0x7DF4}, .status2 = .none, }, + .{ .cp = 0xFAB1, .status = .mapped, .mapping = &.{0x7F3E}, .status2 = .none, }, + .{ .cp = 0xFAB2, .status = .mapped, .mapping = &.{0x8005}, .status2 = .none, }, + .{ .cp = 0xFAB3, .status = .mapped, .mapping = &.{0x8352}, .status2 = .none, }, + .{ .cp = 0xFAB4, .status = .mapped, .mapping = &.{0x83EF}, .status2 = .none, }, + .{ .cp = 0xFAB5, .status = .mapped, .mapping = &.{0x8779}, .status2 = .none, }, + .{ .cp = 0xFAB6, .status = .mapped, .mapping = &.{0x8941}, .status2 = .none, }, + .{ .cp = 0xFAB7, .status = .mapped, .mapping = &.{0x8986}, .status2 = .none, }, + .{ .cp = 0xFAB8, .status = .mapped, .mapping = &.{0x8996}, .status2 = .none, }, + .{ .cp = 0xFAB9, .status = .mapped, .mapping = &.{0x8ABF}, .status2 = .none, }, + .{ .cp = 0xFABA, .status = .mapped, .mapping = &.{0x8AF8}, .status2 = .none, }, + .{ .cp = 0xFABB, .status = .mapped, .mapping = &.{0x8ACB}, .status2 = .none, }, + .{ .cp = 0xFABC, .status = .mapped, .mapping = &.{0x8B01}, .status2 = .none, }, + .{ .cp = 0xFABD, .status = .mapped, .mapping = &.{0x8AFE}, .status2 = .none, }, + .{ .cp = 0xFABE, .status = .mapped, .mapping = &.{0x8AED}, .status2 = .none, }, + .{ .cp = 0xFABF, .status = .mapped, .mapping = &.{0x8B39}, .status2 = .none, }, + .{ .cp = 0xFAC0, .status = .mapped, .mapping = &.{0x8B8A}, .status2 = .none, }, + .{ .cp = 0xFAC1, .status = .mapped, .mapping = &.{0x8D08}, .status2 = .none, }, + .{ .cp = 0xFAC2, .status = .mapped, .mapping = &.{0x8F38}, .status2 = .none, }, + .{ .cp = 0xFAC3, .status = .mapped, .mapping = &.{0x9072}, .status2 = .none, }, + .{ .cp = 0xFAC4, .status = .mapped, .mapping = &.{0x9199}, .status2 = .none, }, + .{ .cp = 0xFAC5, .status = .mapped, .mapping = &.{0x9276}, .status2 = .none, }, + .{ .cp = 0xFAC6, .status = .mapped, .mapping = &.{0x967C}, .status2 = .none, }, + .{ .cp = 0xFAC7, .status = .mapped, .mapping = &.{0x96E3}, .status2 = .none, }, + .{ .cp = 0xFAC8, .status = .mapped, .mapping = &.{0x9756}, .status2 = .none, }, + .{ .cp = 0xFAC9, .status = .mapped, .mapping = &.{0x97DB}, .status2 = .none, }, + .{ .cp = 0xFACA, .status = .mapped, .mapping = &.{0x97FF}, .status2 = .none, }, + .{ .cp = 0xFACB, .status = .mapped, .mapping = &.{0x980B}, .status2 = .none, }, + .{ .cp = 0xFACC, .status = .mapped, .mapping = &.{0x983B}, .status2 = .none, }, + .{ .cp = 0xFACD, .status = .mapped, .mapping = &.{0x9B12}, .status2 = .none, }, + .{ .cp = 0xFACE, .status = .mapped, .mapping = &.{0x9F9C}, .status2 = .none, }, + .{ .cp = 0xFACF, .status = .mapped, .mapping = &.{0x2284A}, .status2 = .none, }, + .{ .cp = 0xFAD0, .status = .mapped, .mapping = &.{0x22844}, .status2 = .none, }, + .{ .cp = 0xFAD1, .status = .mapped, .mapping = &.{0x233D5}, .status2 = .none, }, + .{ .cp = 0xFAD2, .status = .mapped, .mapping = &.{0x3B9D}, .status2 = .none, }, + .{ .cp = 0xFAD3, .status = .mapped, .mapping = &.{0x4018}, .status2 = .none, }, + .{ .cp = 0xFAD4, .status = .mapped, .mapping = &.{0x4039}, .status2 = .none, }, + .{ .cp = 0xFAD5, .status = .mapped, .mapping = &.{0x25249}, .status2 = .none, }, + .{ .cp = 0xFAD6, .status = .mapped, .mapping = &.{0x25CD0}, .status2 = .none, }, + .{ .cp = 0xFAD7, .status = .mapped, .mapping = &.{0x27ED3}, .status2 = .none, }, + .{ .cp = 0xFAD8, .status = .mapped, .mapping = &.{0x9F43}, .status2 = .none, }, + .{ .cp = 0xFAD9, .status = .mapped, .mapping = &.{0x9F8E}, .status2 = .none, }, + .{ .cp = 0xFB00, .status = .mapped, .mapping = &.{0x0066,0x0066}, .status2 = .none, }, + .{ .cp = 0xFB01, .status = .mapped, .mapping = &.{0x0066,0x0069}, .status2 = .none, }, + .{ .cp = 0xFB02, .status = .mapped, .mapping = &.{0x0066,0x006C}, .status2 = .none, }, + .{ .cp = 0xFB03, .status = .mapped, .mapping = &.{0x0066,0x0066,0x0069}, .status2 = .none, }, + .{ .cp = 0xFB04, .status = .mapped, .mapping = &.{0x0066,0x0066,0x006C}, .status2 = .none, }, + .{ .cp = 0xFB13, .status = .mapped, .mapping = &.{0x0574,0x0576}, .status2 = .none, }, + .{ .cp = 0xFB14, .status = .mapped, .mapping = &.{0x0574,0x0565}, .status2 = .none, }, + .{ .cp = 0xFB15, .status = .mapped, .mapping = &.{0x0574,0x056B}, .status2 = .none, }, + .{ .cp = 0xFB16, .status = .mapped, .mapping = &.{0x057E,0x0576}, .status2 = .none, }, + .{ .cp = 0xFB17, .status = .mapped, .mapping = &.{0x0574,0x056D}, .status2 = .none, }, + .{ .cp = 0xFB1D, .status = .mapped, .mapping = &.{0x05D9,0x05B4}, .status2 = .none, }, + .{ .cp = 0xFB1E, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0xFB1F, .status = .mapped, .mapping = &.{0x05F2,0x05B7}, .status2 = .none, }, + .{ .cp = 0xFB20, .status = .mapped, .mapping = &.{0x05E2}, .status2 = .none, }, + .{ .cp = 0xFB21, .status = .mapped, .mapping = &.{0x05D0}, .status2 = .none, }, + .{ .cp = 0xFB22, .status = .mapped, .mapping = &.{0x05D3}, .status2 = .none, }, + .{ .cp = 0xFB23, .status = .mapped, .mapping = &.{0x05D4}, .status2 = .none, }, + .{ .cp = 0xFB24, .status = .mapped, .mapping = &.{0x05DB}, .status2 = .none, }, + .{ .cp = 0xFB25, .status = .mapped, .mapping = &.{0x05DC}, .status2 = .none, }, + .{ .cp = 0xFB26, .status = .mapped, .mapping = &.{0x05DD}, .status2 = .none, }, + .{ .cp = 0xFB27, .status = .mapped, .mapping = &.{0x05E8}, .status2 = .none, }, + .{ .cp = 0xFB28, .status = .mapped, .mapping = &.{0x05EA}, .status2 = .none, }, + .{ .cp = 0xFB29, .status = .mapped, .mapping = &.{0x002B}, .status2 = .none, }, + .{ .cp = 0xFB2A, .status = .mapped, .mapping = &.{0x05E9,0x05C1}, .status2 = .none, }, + .{ .cp = 0xFB2B, .status = .mapped, .mapping = &.{0x05E9,0x05C2}, .status2 = .none, }, + .{ .cp = 0xFB2C, .status = .mapped, .mapping = &.{0x05E9,0x05BC,0x05C1}, .status2 = .none, }, + .{ .cp = 0xFB2D, .status = .mapped, .mapping = &.{0x05E9,0x05BC,0x05C2}, .status2 = .none, }, + .{ .cp = 0xFB2E, .status = .mapped, .mapping = &.{0x05D0,0x05B7}, .status2 = .none, }, + .{ .cp = 0xFB2F, .status = .mapped, .mapping = &.{0x05D0,0x05B8}, .status2 = .none, }, + .{ .cp = 0xFB30, .status = .mapped, .mapping = &.{0x05D0,0x05BC}, .status2 = .none, }, + .{ .cp = 0xFB31, .status = .mapped, .mapping = &.{0x05D1,0x05BC}, .status2 = .none, }, + .{ .cp = 0xFB32, .status = .mapped, .mapping = &.{0x05D2,0x05BC}, .status2 = .none, }, + .{ .cp = 0xFB33, .status = .mapped, .mapping = &.{0x05D3,0x05BC}, .status2 = .none, }, + .{ .cp = 0xFB34, .status = .mapped, .mapping = &.{0x05D4,0x05BC}, .status2 = .none, }, + .{ .cp = 0xFB35, .status = .mapped, .mapping = &.{0x05D5,0x05BC}, .status2 = .none, }, + .{ .cp = 0xFB36, .status = .mapped, .mapping = &.{0x05D6,0x05BC}, .status2 = .none, }, + .{ .cp = 0xFB37, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0xFB38, .status = .mapped, .mapping = &.{0x05D8,0x05BC}, .status2 = .none, }, + .{ .cp = 0xFB39, .status = .mapped, .mapping = &.{0x05D9,0x05BC}, .status2 = .none, }, + .{ .cp = 0xFB3A, .status = .mapped, .mapping = &.{0x05DA,0x05BC}, .status2 = .none, }, + .{ .cp = 0xFB3B, .status = .mapped, .mapping = &.{0x05DB,0x05BC}, .status2 = .none, }, + .{ .cp = 0xFB3C, .status = .mapped, .mapping = &.{0x05DC,0x05BC}, .status2 = .none, }, + .{ .cp = 0xFB3D, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0xFB3E, .status = .mapped, .mapping = &.{0x05DE,0x05BC}, .status2 = .none, }, + .{ .cp = 0xFB3F, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0xFB40, .status = .mapped, .mapping = &.{0x05E0,0x05BC}, .status2 = .none, }, + .{ .cp = 0xFB41, .status = .mapped, .mapping = &.{0x05E1,0x05BC}, .status2 = .none, }, + .{ .cp = 0xFB42, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0xFB43, .status = .mapped, .mapping = &.{0x05E3,0x05BC}, .status2 = .none, }, + .{ .cp = 0xFB44, .status = .mapped, .mapping = &.{0x05E4,0x05BC}, .status2 = .none, }, + .{ .cp = 0xFB45, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0xFB46, .status = .mapped, .mapping = &.{0x05E6,0x05BC}, .status2 = .none, }, + .{ .cp = 0xFB47, .status = .mapped, .mapping = &.{0x05E7,0x05BC}, .status2 = .none, }, + .{ .cp = 0xFB48, .status = .mapped, .mapping = &.{0x05E8,0x05BC}, .status2 = .none, }, + .{ .cp = 0xFB49, .status = .mapped, .mapping = &.{0x05E9,0x05BC}, .status2 = .none, }, + .{ .cp = 0xFB4A, .status = .mapped, .mapping = &.{0x05EA,0x05BC}, .status2 = .none, }, + .{ .cp = 0xFB4B, .status = .mapped, .mapping = &.{0x05D5,0x05B9}, .status2 = .none, }, + .{ .cp = 0xFB4C, .status = .mapped, .mapping = &.{0x05D1,0x05BF}, .status2 = .none, }, + .{ .cp = 0xFB4D, .status = .mapped, .mapping = &.{0x05DB,0x05BF}, .status2 = .none, }, + .{ .cp = 0xFB4E, .status = .mapped, .mapping = &.{0x05E4,0x05BF}, .status2 = .none, }, + .{ .cp = 0xFB4F, .status = .mapped, .mapping = &.{0x05D0,0x05DC}, .status2 = .none, }, + .{ .cp = 0xFBC2, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .cp = 0xFBDD, .status = .mapped, .mapping = &.{0x06C7,0x0674}, .status2 = .none, }, + .{ .cp = 0xFC00, .status = .mapped, .mapping = &.{0x0626,0x062C}, .status2 = .none, }, + .{ .cp = 0xFC01, .status = .mapped, .mapping = &.{0x0626,0x062D}, .status2 = .none, }, + .{ .cp = 0xFC02, .status = .mapped, .mapping = &.{0x0626,0x0645}, .status2 = .none, }, + .{ .cp = 0xFC03, .status = .mapped, .mapping = &.{0x0626,0x0649}, .status2 = .none, }, + .{ .cp = 0xFC04, .status = .mapped, .mapping = &.{0x0626,0x064A}, .status2 = .none, }, + .{ .cp = 0xFC05, .status = .mapped, .mapping = &.{0x0628,0x062C}, .status2 = .none, }, + .{ .cp = 0xFC06, .status = .mapped, .mapping = &.{0x0628,0x062D}, .status2 = .none, }, + .{ .cp = 0xFC07, .status = .mapped, .mapping = &.{0x0628,0x062E}, .status2 = .none, }, + .{ .cp = 0xFC08, .status = .mapped, .mapping = &.{0x0628,0x0645}, .status2 = .none, }, + .{ .cp = 0xFC09, .status = .mapped, .mapping = &.{0x0628,0x0649}, .status2 = .none, }, + .{ .cp = 0xFC0A, .status = .mapped, .mapping = &.{0x0628,0x064A}, .status2 = .none, }, + .{ .cp = 0xFC0B, .status = .mapped, .mapping = &.{0x062A,0x062C}, .status2 = .none, }, + .{ .cp = 0xFC0C, .status = .mapped, .mapping = &.{0x062A,0x062D}, .status2 = .none, }, + .{ .cp = 0xFC0D, .status = .mapped, .mapping = &.{0x062A,0x062E}, .status2 = .none, }, + .{ .cp = 0xFC0E, .status = .mapped, .mapping = &.{0x062A,0x0645}, .status2 = .none, }, + .{ .cp = 0xFC0F, .status = .mapped, .mapping = &.{0x062A,0x0649}, .status2 = .none, }, + .{ .cp = 0xFC10, .status = .mapped, .mapping = &.{0x062A,0x064A}, .status2 = .none, }, + .{ .cp = 0xFC11, .status = .mapped, .mapping = &.{0x062B,0x062C}, .status2 = .none, }, + .{ .cp = 0xFC12, .status = .mapped, .mapping = &.{0x062B,0x0645}, .status2 = .none, }, + .{ .cp = 0xFC13, .status = .mapped, .mapping = &.{0x062B,0x0649}, .status2 = .none, }, + .{ .cp = 0xFC14, .status = .mapped, .mapping = &.{0x062B,0x064A}, .status2 = .none, }, + .{ .cp = 0xFC15, .status = .mapped, .mapping = &.{0x062C,0x062D}, .status2 = .none, }, + .{ .cp = 0xFC16, .status = .mapped, .mapping = &.{0x062C,0x0645}, .status2 = .none, }, + .{ .cp = 0xFC17, .status = .mapped, .mapping = &.{0x062D,0x062C}, .status2 = .none, }, + .{ .cp = 0xFC18, .status = .mapped, .mapping = &.{0x062D,0x0645}, .status2 = .none, }, + .{ .cp = 0xFC19, .status = .mapped, .mapping = &.{0x062E,0x062C}, .status2 = .none, }, + .{ .cp = 0xFC1A, .status = .mapped, .mapping = &.{0x062E,0x062D}, .status2 = .none, }, + .{ .cp = 0xFC1B, .status = .mapped, .mapping = &.{0x062E,0x0645}, .status2 = .none, }, + .{ .cp = 0xFC1C, .status = .mapped, .mapping = &.{0x0633,0x062C}, .status2 = .none, }, + .{ .cp = 0xFC1D, .status = .mapped, .mapping = &.{0x0633,0x062D}, .status2 = .none, }, + .{ .cp = 0xFC1E, .status = .mapped, .mapping = &.{0x0633,0x062E}, .status2 = .none, }, + .{ .cp = 0xFC1F, .status = .mapped, .mapping = &.{0x0633,0x0645}, .status2 = .none, }, + .{ .cp = 0xFC20, .status = .mapped, .mapping = &.{0x0635,0x062D}, .status2 = .none, }, + .{ .cp = 0xFC21, .status = .mapped, .mapping = &.{0x0635,0x0645}, .status2 = .none, }, + .{ .cp = 0xFC22, .status = .mapped, .mapping = &.{0x0636,0x062C}, .status2 = .none, }, + .{ .cp = 0xFC23, .status = .mapped, .mapping = &.{0x0636,0x062D}, .status2 = .none, }, + .{ .cp = 0xFC24, .status = .mapped, .mapping = &.{0x0636,0x062E}, .status2 = .none, }, + .{ .cp = 0xFC25, .status = .mapped, .mapping = &.{0x0636,0x0645}, .status2 = .none, }, + .{ .cp = 0xFC26, .status = .mapped, .mapping = &.{0x0637,0x062D}, .status2 = .none, }, + .{ .cp = 0xFC27, .status = .mapped, .mapping = &.{0x0637,0x0645}, .status2 = .none, }, + .{ .cp = 0xFC28, .status = .mapped, .mapping = &.{0x0638,0x0645}, .status2 = .none, }, + .{ .cp = 0xFC29, .status = .mapped, .mapping = &.{0x0639,0x062C}, .status2 = .none, }, + .{ .cp = 0xFC2A, .status = .mapped, .mapping = &.{0x0639,0x0645}, .status2 = .none, }, + .{ .cp = 0xFC2B, .status = .mapped, .mapping = &.{0x063A,0x062C}, .status2 = .none, }, + .{ .cp = 0xFC2C, .status = .mapped, .mapping = &.{0x063A,0x0645}, .status2 = .none, }, + .{ .cp = 0xFC2D, .status = .mapped, .mapping = &.{0x0641,0x062C}, .status2 = .none, }, + .{ .cp = 0xFC2E, .status = .mapped, .mapping = &.{0x0641,0x062D}, .status2 = .none, }, + .{ .cp = 0xFC2F, .status = .mapped, .mapping = &.{0x0641,0x062E}, .status2 = .none, }, + .{ .cp = 0xFC30, .status = .mapped, .mapping = &.{0x0641,0x0645}, .status2 = .none, }, + .{ .cp = 0xFC31, .status = .mapped, .mapping = &.{0x0641,0x0649}, .status2 = .none, }, + .{ .cp = 0xFC32, .status = .mapped, .mapping = &.{0x0641,0x064A}, .status2 = .none, }, + .{ .cp = 0xFC33, .status = .mapped, .mapping = &.{0x0642,0x062D}, .status2 = .none, }, + .{ .cp = 0xFC34, .status = .mapped, .mapping = &.{0x0642,0x0645}, .status2 = .none, }, + .{ .cp = 0xFC35, .status = .mapped, .mapping = &.{0x0642,0x0649}, .status2 = .none, }, + .{ .cp = 0xFC36, .status = .mapped, .mapping = &.{0x0642,0x064A}, .status2 = .none, }, + .{ .cp = 0xFC37, .status = .mapped, .mapping = &.{0x0643,0x0627}, .status2 = .none, }, + .{ .cp = 0xFC38, .status = .mapped, .mapping = &.{0x0643,0x062C}, .status2 = .none, }, + .{ .cp = 0xFC39, .status = .mapped, .mapping = &.{0x0643,0x062D}, .status2 = .none, }, + .{ .cp = 0xFC3A, .status = .mapped, .mapping = &.{0x0643,0x062E}, .status2 = .none, }, + .{ .cp = 0xFC3B, .status = .mapped, .mapping = &.{0x0643,0x0644}, .status2 = .none, }, + .{ .cp = 0xFC3C, .status = .mapped, .mapping = &.{0x0643,0x0645}, .status2 = .none, }, + .{ .cp = 0xFC3D, .status = .mapped, .mapping = &.{0x0643,0x0649}, .status2 = .none, }, + .{ .cp = 0xFC3E, .status = .mapped, .mapping = &.{0x0643,0x064A}, .status2 = .none, }, + .{ .cp = 0xFC3F, .status = .mapped, .mapping = &.{0x0644,0x062C}, .status2 = .none, }, + .{ .cp = 0xFC40, .status = .mapped, .mapping = &.{0x0644,0x062D}, .status2 = .none, }, + .{ .cp = 0xFC41, .status = .mapped, .mapping = &.{0x0644,0x062E}, .status2 = .none, }, + .{ .cp = 0xFC42, .status = .mapped, .mapping = &.{0x0644,0x0645}, .status2 = .none, }, + .{ .cp = 0xFC43, .status = .mapped, .mapping = &.{0x0644,0x0649}, .status2 = .none, }, + .{ .cp = 0xFC44, .status = .mapped, .mapping = &.{0x0644,0x064A}, .status2 = .none, }, + .{ .cp = 0xFC45, .status = .mapped, .mapping = &.{0x0645,0x062C}, .status2 = .none, }, + .{ .cp = 0xFC46, .status = .mapped, .mapping = &.{0x0645,0x062D}, .status2 = .none, }, + .{ .cp = 0xFC47, .status = .mapped, .mapping = &.{0x0645,0x062E}, .status2 = .none, }, + .{ .cp = 0xFC48, .status = .mapped, .mapping = &.{0x0645,0x0645}, .status2 = .none, }, + .{ .cp = 0xFC49, .status = .mapped, .mapping = &.{0x0645,0x0649}, .status2 = .none, }, + .{ .cp = 0xFC4A, .status = .mapped, .mapping = &.{0x0645,0x064A}, .status2 = .none, }, + .{ .cp = 0xFC4B, .status = .mapped, .mapping = &.{0x0646,0x062C}, .status2 = .none, }, + .{ .cp = 0xFC4C, .status = .mapped, .mapping = &.{0x0646,0x062D}, .status2 = .none, }, + .{ .cp = 0xFC4D, .status = .mapped, .mapping = &.{0x0646,0x062E}, .status2 = .none, }, + .{ .cp = 0xFC4E, .status = .mapped, .mapping = &.{0x0646,0x0645}, .status2 = .none, }, + .{ .cp = 0xFC4F, .status = .mapped, .mapping = &.{0x0646,0x0649}, .status2 = .none, }, + .{ .cp = 0xFC50, .status = .mapped, .mapping = &.{0x0646,0x064A}, .status2 = .none, }, + .{ .cp = 0xFC51, .status = .mapped, .mapping = &.{0x0647,0x062C}, .status2 = .none, }, + .{ .cp = 0xFC52, .status = .mapped, .mapping = &.{0x0647,0x0645}, .status2 = .none, }, + .{ .cp = 0xFC53, .status = .mapped, .mapping = &.{0x0647,0x0649}, .status2 = .none, }, + .{ .cp = 0xFC54, .status = .mapped, .mapping = &.{0x0647,0x064A}, .status2 = .none, }, + .{ .cp = 0xFC55, .status = .mapped, .mapping = &.{0x064A,0x062C}, .status2 = .none, }, + .{ .cp = 0xFC56, .status = .mapped, .mapping = &.{0x064A,0x062D}, .status2 = .none, }, + .{ .cp = 0xFC57, .status = .mapped, .mapping = &.{0x064A,0x062E}, .status2 = .none, }, + .{ .cp = 0xFC58, .status = .mapped, .mapping = &.{0x064A,0x0645}, .status2 = .none, }, + .{ .cp = 0xFC59, .status = .mapped, .mapping = &.{0x064A,0x0649}, .status2 = .none, }, + .{ .cp = 0xFC5A, .status = .mapped, .mapping = &.{0x064A,0x064A}, .status2 = .none, }, + .{ .cp = 0xFC5B, .status = .mapped, .mapping = &.{0x0630,0x0670}, .status2 = .none, }, + .{ .cp = 0xFC5C, .status = .mapped, .mapping = &.{0x0631,0x0670}, .status2 = .none, }, + .{ .cp = 0xFC5D, .status = .mapped, .mapping = &.{0x0649,0x0670}, .status2 = .none, }, + .{ .cp = 0xFC5E, .status = .mapped, .mapping = &.{0x0020,0x064C,0x0651}, .status2 = .none, }, + .{ .cp = 0xFC5F, .status = .mapped, .mapping = &.{0x0020,0x064D,0x0651}, .status2 = .none, }, + .{ .cp = 0xFC60, .status = .mapped, .mapping = &.{0x0020,0x064E,0x0651}, .status2 = .none, }, + .{ .cp = 0xFC61, .status = .mapped, .mapping = &.{0x0020,0x064F,0x0651}, .status2 = .none, }, + .{ .cp = 0xFC62, .status = .mapped, .mapping = &.{0x0020,0x0650,0x0651}, .status2 = .none, }, + .{ .cp = 0xFC63, .status = .mapped, .mapping = &.{0x0020,0x0651,0x0670}, .status2 = .none, }, + .{ .cp = 0xFC64, .status = .mapped, .mapping = &.{0x0626,0x0631}, .status2 = .none, }, + .{ .cp = 0xFC65, .status = .mapped, .mapping = &.{0x0626,0x0632}, .status2 = .none, }, + .{ .cp = 0xFC66, .status = .mapped, .mapping = &.{0x0626,0x0645}, .status2 = .none, }, + .{ .cp = 0xFC67, .status = .mapped, .mapping = &.{0x0626,0x0646}, .status2 = .none, }, + .{ .cp = 0xFC68, .status = .mapped, .mapping = &.{0x0626,0x0649}, .status2 = .none, }, + .{ .cp = 0xFC69, .status = .mapped, .mapping = &.{0x0626,0x064A}, .status2 = .none, }, + .{ .cp = 0xFC6A, .status = .mapped, .mapping = &.{0x0628,0x0631}, .status2 = .none, }, + .{ .cp = 0xFC6B, .status = .mapped, .mapping = &.{0x0628,0x0632}, .status2 = .none, }, + .{ .cp = 0xFC6C, .status = .mapped, .mapping = &.{0x0628,0x0645}, .status2 = .none, }, + .{ .cp = 0xFC6D, .status = .mapped, .mapping = &.{0x0628,0x0646}, .status2 = .none, }, + .{ .cp = 0xFC6E, .status = .mapped, .mapping = &.{0x0628,0x0649}, .status2 = .none, }, + .{ .cp = 0xFC6F, .status = .mapped, .mapping = &.{0x0628,0x064A}, .status2 = .none, }, + .{ .cp = 0xFC70, .status = .mapped, .mapping = &.{0x062A,0x0631}, .status2 = .none, }, + .{ .cp = 0xFC71, .status = .mapped, .mapping = &.{0x062A,0x0632}, .status2 = .none, }, + .{ .cp = 0xFC72, .status = .mapped, .mapping = &.{0x062A,0x0645}, .status2 = .none, }, + .{ .cp = 0xFC73, .status = .mapped, .mapping = &.{0x062A,0x0646}, .status2 = .none, }, + .{ .cp = 0xFC74, .status = .mapped, .mapping = &.{0x062A,0x0649}, .status2 = .none, }, + .{ .cp = 0xFC75, .status = .mapped, .mapping = &.{0x062A,0x064A}, .status2 = .none, }, + .{ .cp = 0xFC76, .status = .mapped, .mapping = &.{0x062B,0x0631}, .status2 = .none, }, + .{ .cp = 0xFC77, .status = .mapped, .mapping = &.{0x062B,0x0632}, .status2 = .none, }, + .{ .cp = 0xFC78, .status = .mapped, .mapping = &.{0x062B,0x0645}, .status2 = .none, }, + .{ .cp = 0xFC79, .status = .mapped, .mapping = &.{0x062B,0x0646}, .status2 = .none, }, + .{ .cp = 0xFC7A, .status = .mapped, .mapping = &.{0x062B,0x0649}, .status2 = .none, }, + .{ .cp = 0xFC7B, .status = .mapped, .mapping = &.{0x062B,0x064A}, .status2 = .none, }, + .{ .cp = 0xFC7C, .status = .mapped, .mapping = &.{0x0641,0x0649}, .status2 = .none, }, + .{ .cp = 0xFC7D, .status = .mapped, .mapping = &.{0x0641,0x064A}, .status2 = .none, }, + .{ .cp = 0xFC7E, .status = .mapped, .mapping = &.{0x0642,0x0649}, .status2 = .none, }, + .{ .cp = 0xFC7F, .status = .mapped, .mapping = &.{0x0642,0x064A}, .status2 = .none, }, + .{ .cp = 0xFC80, .status = .mapped, .mapping = &.{0x0643,0x0627}, .status2 = .none, }, + .{ .cp = 0xFC81, .status = .mapped, .mapping = &.{0x0643,0x0644}, .status2 = .none, }, + .{ .cp = 0xFC82, .status = .mapped, .mapping = &.{0x0643,0x0645}, .status2 = .none, }, + .{ .cp = 0xFC83, .status = .mapped, .mapping = &.{0x0643,0x0649}, .status2 = .none, }, + .{ .cp = 0xFC84, .status = .mapped, .mapping = &.{0x0643,0x064A}, .status2 = .none, }, + .{ .cp = 0xFC85, .status = .mapped, .mapping = &.{0x0644,0x0645}, .status2 = .none, }, + .{ .cp = 0xFC86, .status = .mapped, .mapping = &.{0x0644,0x0649}, .status2 = .none, }, + .{ .cp = 0xFC87, .status = .mapped, .mapping = &.{0x0644,0x064A}, .status2 = .none, }, + .{ .cp = 0xFC88, .status = .mapped, .mapping = &.{0x0645,0x0627}, .status2 = .none, }, + .{ .cp = 0xFC89, .status = .mapped, .mapping = &.{0x0645,0x0645}, .status2 = .none, }, + .{ .cp = 0xFC8A, .status = .mapped, .mapping = &.{0x0646,0x0631}, .status2 = .none, }, + .{ .cp = 0xFC8B, .status = .mapped, .mapping = &.{0x0646,0x0632}, .status2 = .none, }, + .{ .cp = 0xFC8C, .status = .mapped, .mapping = &.{0x0646,0x0645}, .status2 = .none, }, + .{ .cp = 0xFC8D, .status = .mapped, .mapping = &.{0x0646,0x0646}, .status2 = .none, }, + .{ .cp = 0xFC8E, .status = .mapped, .mapping = &.{0x0646,0x0649}, .status2 = .none, }, + .{ .cp = 0xFC8F, .status = .mapped, .mapping = &.{0x0646,0x064A}, .status2 = .none, }, + .{ .cp = 0xFC90, .status = .mapped, .mapping = &.{0x0649,0x0670}, .status2 = .none, }, + .{ .cp = 0xFC91, .status = .mapped, .mapping = &.{0x064A,0x0631}, .status2 = .none, }, + .{ .cp = 0xFC92, .status = .mapped, .mapping = &.{0x064A,0x0632}, .status2 = .none, }, + .{ .cp = 0xFC93, .status = .mapped, .mapping = &.{0x064A,0x0645}, .status2 = .none, }, + .{ .cp = 0xFC94, .status = .mapped, .mapping = &.{0x064A,0x0646}, .status2 = .none, }, + .{ .cp = 0xFC95, .status = .mapped, .mapping = &.{0x064A,0x0649}, .status2 = .none, }, + .{ .cp = 0xFC96, .status = .mapped, .mapping = &.{0x064A,0x064A}, .status2 = .none, }, + .{ .cp = 0xFC97, .status = .mapped, .mapping = &.{0x0626,0x062C}, .status2 = .none, }, + .{ .cp = 0xFC98, .status = .mapped, .mapping = &.{0x0626,0x062D}, .status2 = .none, }, + .{ .cp = 0xFC99, .status = .mapped, .mapping = &.{0x0626,0x062E}, .status2 = .none, }, + .{ .cp = 0xFC9A, .status = .mapped, .mapping = &.{0x0626,0x0645}, .status2 = .none, }, + .{ .cp = 0xFC9B, .status = .mapped, .mapping = &.{0x0626,0x0647}, .status2 = .none, }, + .{ .cp = 0xFC9C, .status = .mapped, .mapping = &.{0x0628,0x062C}, .status2 = .none, }, + .{ .cp = 0xFC9D, .status = .mapped, .mapping = &.{0x0628,0x062D}, .status2 = .none, }, + .{ .cp = 0xFC9E, .status = .mapped, .mapping = &.{0x0628,0x062E}, .status2 = .none, }, + .{ .cp = 0xFC9F, .status = .mapped, .mapping = &.{0x0628,0x0645}, .status2 = .none, }, + .{ .cp = 0xFCA0, .status = .mapped, .mapping = &.{0x0628,0x0647}, .status2 = .none, }, + .{ .cp = 0xFCA1, .status = .mapped, .mapping = &.{0x062A,0x062C}, .status2 = .none, }, + .{ .cp = 0xFCA2, .status = .mapped, .mapping = &.{0x062A,0x062D}, .status2 = .none, }, + .{ .cp = 0xFCA3, .status = .mapped, .mapping = &.{0x062A,0x062E}, .status2 = .none, }, + .{ .cp = 0xFCA4, .status = .mapped, .mapping = &.{0x062A,0x0645}, .status2 = .none, }, + .{ .cp = 0xFCA5, .status = .mapped, .mapping = &.{0x062A,0x0647}, .status2 = .none, }, + .{ .cp = 0xFCA6, .status = .mapped, .mapping = &.{0x062B,0x0645}, .status2 = .none, }, + .{ .cp = 0xFCA7, .status = .mapped, .mapping = &.{0x062C,0x062D}, .status2 = .none, }, + .{ .cp = 0xFCA8, .status = .mapped, .mapping = &.{0x062C,0x0645}, .status2 = .none, }, + .{ .cp = 0xFCA9, .status = .mapped, .mapping = &.{0x062D,0x062C}, .status2 = .none, }, + .{ .cp = 0xFCAA, .status = .mapped, .mapping = &.{0x062D,0x0645}, .status2 = .none, }, + .{ .cp = 0xFCAB, .status = .mapped, .mapping = &.{0x062E,0x062C}, .status2 = .none, }, + .{ .cp = 0xFCAC, .status = .mapped, .mapping = &.{0x062E,0x0645}, .status2 = .none, }, + .{ .cp = 0xFCAD, .status = .mapped, .mapping = &.{0x0633,0x062C}, .status2 = .none, }, + .{ .cp = 0xFCAE, .status = .mapped, .mapping = &.{0x0633,0x062D}, .status2 = .none, }, + .{ .cp = 0xFCAF, .status = .mapped, .mapping = &.{0x0633,0x062E}, .status2 = .none, }, + .{ .cp = 0xFCB0, .status = .mapped, .mapping = &.{0x0633,0x0645}, .status2 = .none, }, + .{ .cp = 0xFCB1, .status = .mapped, .mapping = &.{0x0635,0x062D}, .status2 = .none, }, + .{ .cp = 0xFCB2, .status = .mapped, .mapping = &.{0x0635,0x062E}, .status2 = .none, }, + .{ .cp = 0xFCB3, .status = .mapped, .mapping = &.{0x0635,0x0645}, .status2 = .none, }, + .{ .cp = 0xFCB4, .status = .mapped, .mapping = &.{0x0636,0x062C}, .status2 = .none, }, + .{ .cp = 0xFCB5, .status = .mapped, .mapping = &.{0x0636,0x062D}, .status2 = .none, }, + .{ .cp = 0xFCB6, .status = .mapped, .mapping = &.{0x0636,0x062E}, .status2 = .none, }, + .{ .cp = 0xFCB7, .status = .mapped, .mapping = &.{0x0636,0x0645}, .status2 = .none, }, + .{ .cp = 0xFCB8, .status = .mapped, .mapping = &.{0x0637,0x062D}, .status2 = .none, }, + .{ .cp = 0xFCB9, .status = .mapped, .mapping = &.{0x0638,0x0645}, .status2 = .none, }, + .{ .cp = 0xFCBA, .status = .mapped, .mapping = &.{0x0639,0x062C}, .status2 = .none, }, + .{ .cp = 0xFCBB, .status = .mapped, .mapping = &.{0x0639,0x0645}, .status2 = .none, }, + .{ .cp = 0xFCBC, .status = .mapped, .mapping = &.{0x063A,0x062C}, .status2 = .none, }, + .{ .cp = 0xFCBD, .status = .mapped, .mapping = &.{0x063A,0x0645}, .status2 = .none, }, + .{ .cp = 0xFCBE, .status = .mapped, .mapping = &.{0x0641,0x062C}, .status2 = .none, }, + .{ .cp = 0xFCBF, .status = .mapped, .mapping = &.{0x0641,0x062D}, .status2 = .none, }, + .{ .cp = 0xFCC0, .status = .mapped, .mapping = &.{0x0641,0x062E}, .status2 = .none, }, + .{ .cp = 0xFCC1, .status = .mapped, .mapping = &.{0x0641,0x0645}, .status2 = .none, }, + .{ .cp = 0xFCC2, .status = .mapped, .mapping = &.{0x0642,0x062D}, .status2 = .none, }, + .{ .cp = 0xFCC3, .status = .mapped, .mapping = &.{0x0642,0x0645}, .status2 = .none, }, + .{ .cp = 0xFCC4, .status = .mapped, .mapping = &.{0x0643,0x062C}, .status2 = .none, }, + .{ .cp = 0xFCC5, .status = .mapped, .mapping = &.{0x0643,0x062D}, .status2 = .none, }, + .{ .cp = 0xFCC6, .status = .mapped, .mapping = &.{0x0643,0x062E}, .status2 = .none, }, + .{ .cp = 0xFCC7, .status = .mapped, .mapping = &.{0x0643,0x0644}, .status2 = .none, }, + .{ .cp = 0xFCC8, .status = .mapped, .mapping = &.{0x0643,0x0645}, .status2 = .none, }, + .{ .cp = 0xFCC9, .status = .mapped, .mapping = &.{0x0644,0x062C}, .status2 = .none, }, + .{ .cp = 0xFCCA, .status = .mapped, .mapping = &.{0x0644,0x062D}, .status2 = .none, }, + .{ .cp = 0xFCCB, .status = .mapped, .mapping = &.{0x0644,0x062E}, .status2 = .none, }, + .{ .cp = 0xFCCC, .status = .mapped, .mapping = &.{0x0644,0x0645}, .status2 = .none, }, + .{ .cp = 0xFCCD, .status = .mapped, .mapping = &.{0x0644,0x0647}, .status2 = .none, }, + .{ .cp = 0xFCCE, .status = .mapped, .mapping = &.{0x0645,0x062C}, .status2 = .none, }, + .{ .cp = 0xFCCF, .status = .mapped, .mapping = &.{0x0645,0x062D}, .status2 = .none, }, + .{ .cp = 0xFCD0, .status = .mapped, .mapping = &.{0x0645,0x062E}, .status2 = .none, }, + .{ .cp = 0xFCD1, .status = .mapped, .mapping = &.{0x0645,0x0645}, .status2 = .none, }, + .{ .cp = 0xFCD2, .status = .mapped, .mapping = &.{0x0646,0x062C}, .status2 = .none, }, + .{ .cp = 0xFCD3, .status = .mapped, .mapping = &.{0x0646,0x062D}, .status2 = .none, }, + .{ .cp = 0xFCD4, .status = .mapped, .mapping = &.{0x0646,0x062E}, .status2 = .none, }, + .{ .cp = 0xFCD5, .status = .mapped, .mapping = &.{0x0646,0x0645}, .status2 = .none, }, + .{ .cp = 0xFCD6, .status = .mapped, .mapping = &.{0x0646,0x0647}, .status2 = .none, }, + .{ .cp = 0xFCD7, .status = .mapped, .mapping = &.{0x0647,0x062C}, .status2 = .none, }, + .{ .cp = 0xFCD8, .status = .mapped, .mapping = &.{0x0647,0x0645}, .status2 = .none, }, + .{ .cp = 0xFCD9, .status = .mapped, .mapping = &.{0x0647,0x0670}, .status2 = .none, }, + .{ .cp = 0xFCDA, .status = .mapped, .mapping = &.{0x064A,0x062C}, .status2 = .none, }, + .{ .cp = 0xFCDB, .status = .mapped, .mapping = &.{0x064A,0x062D}, .status2 = .none, }, + .{ .cp = 0xFCDC, .status = .mapped, .mapping = &.{0x064A,0x062E}, .status2 = .none, }, + .{ .cp = 0xFCDD, .status = .mapped, .mapping = &.{0x064A,0x0645}, .status2 = .none, }, + .{ .cp = 0xFCDE, .status = .mapped, .mapping = &.{0x064A,0x0647}, .status2 = .none, }, + .{ .cp = 0xFCDF, .status = .mapped, .mapping = &.{0x0626,0x0645}, .status2 = .none, }, + .{ .cp = 0xFCE0, .status = .mapped, .mapping = &.{0x0626,0x0647}, .status2 = .none, }, + .{ .cp = 0xFCE1, .status = .mapped, .mapping = &.{0x0628,0x0645}, .status2 = .none, }, + .{ .cp = 0xFCE2, .status = .mapped, .mapping = &.{0x0628,0x0647}, .status2 = .none, }, + .{ .cp = 0xFCE3, .status = .mapped, .mapping = &.{0x062A,0x0645}, .status2 = .none, }, + .{ .cp = 0xFCE4, .status = .mapped, .mapping = &.{0x062A,0x0647}, .status2 = .none, }, + .{ .cp = 0xFCE5, .status = .mapped, .mapping = &.{0x062B,0x0645}, .status2 = .none, }, + .{ .cp = 0xFCE6, .status = .mapped, .mapping = &.{0x062B,0x0647}, .status2 = .none, }, + .{ .cp = 0xFCE7, .status = .mapped, .mapping = &.{0x0633,0x0645}, .status2 = .none, }, + .{ .cp = 0xFCE8, .status = .mapped, .mapping = &.{0x0633,0x0647}, .status2 = .none, }, + .{ .cp = 0xFCE9, .status = .mapped, .mapping = &.{0x0634,0x0645}, .status2 = .none, }, + .{ .cp = 0xFCEA, .status = .mapped, .mapping = &.{0x0634,0x0647}, .status2 = .none, }, + .{ .cp = 0xFCEB, .status = .mapped, .mapping = &.{0x0643,0x0644}, .status2 = .none, }, + .{ .cp = 0xFCEC, .status = .mapped, .mapping = &.{0x0643,0x0645}, .status2 = .none, }, + .{ .cp = 0xFCED, .status = .mapped, .mapping = &.{0x0644,0x0645}, .status2 = .none, }, + .{ .cp = 0xFCEE, .status = .mapped, .mapping = &.{0x0646,0x0645}, .status2 = .none, }, + .{ .cp = 0xFCEF, .status = .mapped, .mapping = &.{0x0646,0x0647}, .status2 = .none, }, + .{ .cp = 0xFCF0, .status = .mapped, .mapping = &.{0x064A,0x0645}, .status2 = .none, }, + .{ .cp = 0xFCF1, .status = .mapped, .mapping = &.{0x064A,0x0647}, .status2 = .none, }, + .{ .cp = 0xFCF2, .status = .mapped, .mapping = &.{0x0640,0x064E,0x0651}, .status2 = .none, }, + .{ .cp = 0xFCF3, .status = .mapped, .mapping = &.{0x0640,0x064F,0x0651}, .status2 = .none, }, + .{ .cp = 0xFCF4, .status = .mapped, .mapping = &.{0x0640,0x0650,0x0651}, .status2 = .none, }, + .{ .cp = 0xFCF5, .status = .mapped, .mapping = &.{0x0637,0x0649}, .status2 = .none, }, + .{ .cp = 0xFCF6, .status = .mapped, .mapping = &.{0x0637,0x064A}, .status2 = .none, }, + .{ .cp = 0xFCF7, .status = .mapped, .mapping = &.{0x0639,0x0649}, .status2 = .none, }, + .{ .cp = 0xFCF8, .status = .mapped, .mapping = &.{0x0639,0x064A}, .status2 = .none, }, + .{ .cp = 0xFCF9, .status = .mapped, .mapping = &.{0x063A,0x0649}, .status2 = .none, }, + .{ .cp = 0xFCFA, .status = .mapped, .mapping = &.{0x063A,0x064A}, .status2 = .none, }, + .{ .cp = 0xFCFB, .status = .mapped, .mapping = &.{0x0633,0x0649}, .status2 = .none, }, + .{ .cp = 0xFCFC, .status = .mapped, .mapping = &.{0x0633,0x064A}, .status2 = .none, }, + .{ .cp = 0xFCFD, .status = .mapped, .mapping = &.{0x0634,0x0649}, .status2 = .none, }, + .{ .cp = 0xFCFE, .status = .mapped, .mapping = &.{0x0634,0x064A}, .status2 = .none, }, + .{ .cp = 0xFCFF, .status = .mapped, .mapping = &.{0x062D,0x0649}, .status2 = .none, }, + .{ .cp = 0xFD00, .status = .mapped, .mapping = &.{0x062D,0x064A}, .status2 = .none, }, + .{ .cp = 0xFD01, .status = .mapped, .mapping = &.{0x062C,0x0649}, .status2 = .none, }, + .{ .cp = 0xFD02, .status = .mapped, .mapping = &.{0x062C,0x064A}, .status2 = .none, }, + .{ .cp = 0xFD03, .status = .mapped, .mapping = &.{0x062E,0x0649}, .status2 = .none, }, + .{ .cp = 0xFD04, .status = .mapped, .mapping = &.{0x062E,0x064A}, .status2 = .none, }, + .{ .cp = 0xFD05, .status = .mapped, .mapping = &.{0x0635,0x0649}, .status2 = .none, }, + .{ .cp = 0xFD06, .status = .mapped, .mapping = &.{0x0635,0x064A}, .status2 = .none, }, + .{ .cp = 0xFD07, .status = .mapped, .mapping = &.{0x0636,0x0649}, .status2 = .none, }, + .{ .cp = 0xFD08, .status = .mapped, .mapping = &.{0x0636,0x064A}, .status2 = .none, }, + .{ .cp = 0xFD09, .status = .mapped, .mapping = &.{0x0634,0x062C}, .status2 = .none, }, + .{ .cp = 0xFD0A, .status = .mapped, .mapping = &.{0x0634,0x062D}, .status2 = .none, }, + .{ .cp = 0xFD0B, .status = .mapped, .mapping = &.{0x0634,0x062E}, .status2 = .none, }, + .{ .cp = 0xFD0C, .status = .mapped, .mapping = &.{0x0634,0x0645}, .status2 = .none, }, + .{ .cp = 0xFD0D, .status = .mapped, .mapping = &.{0x0634,0x0631}, .status2 = .none, }, + .{ .cp = 0xFD0E, .status = .mapped, .mapping = &.{0x0633,0x0631}, .status2 = .none, }, + .{ .cp = 0xFD0F, .status = .mapped, .mapping = &.{0x0635,0x0631}, .status2 = .none, }, + .{ .cp = 0xFD10, .status = .mapped, .mapping = &.{0x0636,0x0631}, .status2 = .none, }, + .{ .cp = 0xFD11, .status = .mapped, .mapping = &.{0x0637,0x0649}, .status2 = .none, }, + .{ .cp = 0xFD12, .status = .mapped, .mapping = &.{0x0637,0x064A}, .status2 = .none, }, + .{ .cp = 0xFD13, .status = .mapped, .mapping = &.{0x0639,0x0649}, .status2 = .none, }, + .{ .cp = 0xFD14, .status = .mapped, .mapping = &.{0x0639,0x064A}, .status2 = .none, }, + .{ .cp = 0xFD15, .status = .mapped, .mapping = &.{0x063A,0x0649}, .status2 = .none, }, + .{ .cp = 0xFD16, .status = .mapped, .mapping = &.{0x063A,0x064A}, .status2 = .none, }, + .{ .cp = 0xFD17, .status = .mapped, .mapping = &.{0x0633,0x0649}, .status2 = .none, }, + .{ .cp = 0xFD18, .status = .mapped, .mapping = &.{0x0633,0x064A}, .status2 = .none, }, + .{ .cp = 0xFD19, .status = .mapped, .mapping = &.{0x0634,0x0649}, .status2 = .none, }, + .{ .cp = 0xFD1A, .status = .mapped, .mapping = &.{0x0634,0x064A}, .status2 = .none, }, + .{ .cp = 0xFD1B, .status = .mapped, .mapping = &.{0x062D,0x0649}, .status2 = .none, }, + .{ .cp = 0xFD1C, .status = .mapped, .mapping = &.{0x062D,0x064A}, .status2 = .none, }, + .{ .cp = 0xFD1D, .status = .mapped, .mapping = &.{0x062C,0x0649}, .status2 = .none, }, + .{ .cp = 0xFD1E, .status = .mapped, .mapping = &.{0x062C,0x064A}, .status2 = .none, }, + .{ .cp = 0xFD1F, .status = .mapped, .mapping = &.{0x062E,0x0649}, .status2 = .none, }, + .{ .cp = 0xFD20, .status = .mapped, .mapping = &.{0x062E,0x064A}, .status2 = .none, }, + .{ .cp = 0xFD21, .status = .mapped, .mapping = &.{0x0635,0x0649}, .status2 = .none, }, + .{ .cp = 0xFD22, .status = .mapped, .mapping = &.{0x0635,0x064A}, .status2 = .none, }, + .{ .cp = 0xFD23, .status = .mapped, .mapping = &.{0x0636,0x0649}, .status2 = .none, }, + .{ .cp = 0xFD24, .status = .mapped, .mapping = &.{0x0636,0x064A}, .status2 = .none, }, + .{ .cp = 0xFD25, .status = .mapped, .mapping = &.{0x0634,0x062C}, .status2 = .none, }, + .{ .cp = 0xFD26, .status = .mapped, .mapping = &.{0x0634,0x062D}, .status2 = .none, }, + .{ .cp = 0xFD27, .status = .mapped, .mapping = &.{0x0634,0x062E}, .status2 = .none, }, + .{ .cp = 0xFD28, .status = .mapped, .mapping = &.{0x0634,0x0645}, .status2 = .none, }, + .{ .cp = 0xFD29, .status = .mapped, .mapping = &.{0x0634,0x0631}, .status2 = .none, }, + .{ .cp = 0xFD2A, .status = .mapped, .mapping = &.{0x0633,0x0631}, .status2 = .none, }, + .{ .cp = 0xFD2B, .status = .mapped, .mapping = &.{0x0635,0x0631}, .status2 = .none, }, + .{ .cp = 0xFD2C, .status = .mapped, .mapping = &.{0x0636,0x0631}, .status2 = .none, }, + .{ .cp = 0xFD2D, .status = .mapped, .mapping = &.{0x0634,0x062C}, .status2 = .none, }, + .{ .cp = 0xFD2E, .status = .mapped, .mapping = &.{0x0634,0x062D}, .status2 = .none, }, + .{ .cp = 0xFD2F, .status = .mapped, .mapping = &.{0x0634,0x062E}, .status2 = .none, }, + .{ .cp = 0xFD30, .status = .mapped, .mapping = &.{0x0634,0x0645}, .status2 = .none, }, + .{ .cp = 0xFD31, .status = .mapped, .mapping = &.{0x0633,0x0647}, .status2 = .none, }, + .{ .cp = 0xFD32, .status = .mapped, .mapping = &.{0x0634,0x0647}, .status2 = .none, }, + .{ .cp = 0xFD33, .status = .mapped, .mapping = &.{0x0637,0x0645}, .status2 = .none, }, + .{ .cp = 0xFD34, .status = .mapped, .mapping = &.{0x0633,0x062C}, .status2 = .none, }, + .{ .cp = 0xFD35, .status = .mapped, .mapping = &.{0x0633,0x062D}, .status2 = .none, }, + .{ .cp = 0xFD36, .status = .mapped, .mapping = &.{0x0633,0x062E}, .status2 = .none, }, + .{ .cp = 0xFD37, .status = .mapped, .mapping = &.{0x0634,0x062C}, .status2 = .none, }, + .{ .cp = 0xFD38, .status = .mapped, .mapping = &.{0x0634,0x062D}, .status2 = .none, }, + .{ .cp = 0xFD39, .status = .mapped, .mapping = &.{0x0634,0x062E}, .status2 = .none, }, + .{ .cp = 0xFD3A, .status = .mapped, .mapping = &.{0x0637,0x0645}, .status2 = .none, }, + .{ .cp = 0xFD3B, .status = .mapped, .mapping = &.{0x0638,0x0645}, .status2 = .none, }, + .{ .cp = 0xFD50, .status = .mapped, .mapping = &.{0x062A,0x062C,0x0645}, .status2 = .none, }, + .{ .cp = 0xFD53, .status = .mapped, .mapping = &.{0x062A,0x062D,0x0645}, .status2 = .none, }, + .{ .cp = 0xFD54, .status = .mapped, .mapping = &.{0x062A,0x062E,0x0645}, .status2 = .none, }, + .{ .cp = 0xFD55, .status = .mapped, .mapping = &.{0x062A,0x0645,0x062C}, .status2 = .none, }, + .{ .cp = 0xFD56, .status = .mapped, .mapping = &.{0x062A,0x0645,0x062D}, .status2 = .none, }, + .{ .cp = 0xFD57, .status = .mapped, .mapping = &.{0x062A,0x0645,0x062E}, .status2 = .none, }, + .{ .cp = 0xFD5A, .status = .mapped, .mapping = &.{0x062D,0x0645,0x064A}, .status2 = .none, }, + .{ .cp = 0xFD5B, .status = .mapped, .mapping = &.{0x062D,0x0645,0x0649}, .status2 = .none, }, + .{ .cp = 0xFD5C, .status = .mapped, .mapping = &.{0x0633,0x062D,0x062C}, .status2 = .none, }, + .{ .cp = 0xFD5D, .status = .mapped, .mapping = &.{0x0633,0x062C,0x062D}, .status2 = .none, }, + .{ .cp = 0xFD5E, .status = .mapped, .mapping = &.{0x0633,0x062C,0x0649}, .status2 = .none, }, + .{ .cp = 0xFD61, .status = .mapped, .mapping = &.{0x0633,0x0645,0x062C}, .status2 = .none, }, + .{ .cp = 0xFD66, .status = .mapped, .mapping = &.{0x0635,0x0645,0x0645}, .status2 = .none, }, + .{ .cp = 0xFD69, .status = .mapped, .mapping = &.{0x0634,0x062C,0x064A}, .status2 = .none, }, + .{ .cp = 0xFD6E, .status = .mapped, .mapping = &.{0x0636,0x062D,0x0649}, .status2 = .none, }, + .{ .cp = 0xFD73, .status = .mapped, .mapping = &.{0x0637,0x0645,0x0645}, .status2 = .none, }, + .{ .cp = 0xFD74, .status = .mapped, .mapping = &.{0x0637,0x0645,0x064A}, .status2 = .none, }, + .{ .cp = 0xFD75, .status = .mapped, .mapping = &.{0x0639,0x062C,0x0645}, .status2 = .none, }, + .{ .cp = 0xFD78, .status = .mapped, .mapping = &.{0x0639,0x0645,0x0649}, .status2 = .none, }, + .{ .cp = 0xFD79, .status = .mapped, .mapping = &.{0x063A,0x0645,0x0645}, .status2 = .none, }, + .{ .cp = 0xFD7A, .status = .mapped, .mapping = &.{0x063A,0x0645,0x064A}, .status2 = .none, }, + .{ .cp = 0xFD7B, .status = .mapped, .mapping = &.{0x063A,0x0645,0x0649}, .status2 = .none, }, + .{ .cp = 0xFD7E, .status = .mapped, .mapping = &.{0x0642,0x0645,0x062D}, .status2 = .none, }, + .{ .cp = 0xFD7F, .status = .mapped, .mapping = &.{0x0642,0x0645,0x0645}, .status2 = .none, }, + .{ .cp = 0xFD80, .status = .mapped, .mapping = &.{0x0644,0x062D,0x0645}, .status2 = .none, }, + .{ .cp = 0xFD81, .status = .mapped, .mapping = &.{0x0644,0x062D,0x064A}, .status2 = .none, }, + .{ .cp = 0xFD82, .status = .mapped, .mapping = &.{0x0644,0x062D,0x0649}, .status2 = .none, }, + .{ .cp = 0xFD89, .status = .mapped, .mapping = &.{0x0645,0x062D,0x062C}, .status2 = .none, }, + .{ .cp = 0xFD8A, .status = .mapped, .mapping = &.{0x0645,0x062D,0x0645}, .status2 = .none, }, + .{ .cp = 0xFD8B, .status = .mapped, .mapping = &.{0x0645,0x062D,0x064A}, .status2 = .none, }, + .{ .cp = 0xFD8C, .status = .mapped, .mapping = &.{0x0645,0x062C,0x062D}, .status2 = .none, }, + .{ .cp = 0xFD8D, .status = .mapped, .mapping = &.{0x0645,0x062C,0x0645}, .status2 = .none, }, + .{ .cp = 0xFD8E, .status = .mapped, .mapping = &.{0x0645,0x062E,0x062C}, .status2 = .none, }, + .{ .cp = 0xFD8F, .status = .mapped, .mapping = &.{0x0645,0x062E,0x0645}, .status2 = .none, }, + .{ .cp = 0xFD92, .status = .mapped, .mapping = &.{0x0645,0x062C,0x062E}, .status2 = .none, }, + .{ .cp = 0xFD93, .status = .mapped, .mapping = &.{0x0647,0x0645,0x062C}, .status2 = .none, }, + .{ .cp = 0xFD94, .status = .mapped, .mapping = &.{0x0647,0x0645,0x0645}, .status2 = .none, }, + .{ .cp = 0xFD95, .status = .mapped, .mapping = &.{0x0646,0x062D,0x0645}, .status2 = .none, }, + .{ .cp = 0xFD96, .status = .mapped, .mapping = &.{0x0646,0x062D,0x0649}, .status2 = .none, }, + .{ .cp = 0xFD99, .status = .mapped, .mapping = &.{0x0646,0x062C,0x0649}, .status2 = .none, }, + .{ .cp = 0xFD9A, .status = .mapped, .mapping = &.{0x0646,0x0645,0x064A}, .status2 = .none, }, + .{ .cp = 0xFD9B, .status = .mapped, .mapping = &.{0x0646,0x0645,0x0649}, .status2 = .none, }, + .{ .cp = 0xFD9E, .status = .mapped, .mapping = &.{0x0628,0x062E,0x064A}, .status2 = .none, }, + .{ .cp = 0xFD9F, .status = .mapped, .mapping = &.{0x062A,0x062C,0x064A}, .status2 = .none, }, + .{ .cp = 0xFDA0, .status = .mapped, .mapping = &.{0x062A,0x062C,0x0649}, .status2 = .none, }, + .{ .cp = 0xFDA1, .status = .mapped, .mapping = &.{0x062A,0x062E,0x064A}, .status2 = .none, }, + .{ .cp = 0xFDA2, .status = .mapped, .mapping = &.{0x062A,0x062E,0x0649}, .status2 = .none, }, + .{ .cp = 0xFDA3, .status = .mapped, .mapping = &.{0x062A,0x0645,0x064A}, .status2 = .none, }, + .{ .cp = 0xFDA4, .status = .mapped, .mapping = &.{0x062A,0x0645,0x0649}, .status2 = .none, }, + .{ .cp = 0xFDA5, .status = .mapped, .mapping = &.{0x062C,0x0645,0x064A}, .status2 = .none, }, + .{ .cp = 0xFDA6, .status = .mapped, .mapping = &.{0x062C,0x062D,0x0649}, .status2 = .none, }, + .{ .cp = 0xFDA7, .status = .mapped, .mapping = &.{0x062C,0x0645,0x0649}, .status2 = .none, }, + .{ .cp = 0xFDA8, .status = .mapped, .mapping = &.{0x0633,0x062E,0x0649}, .status2 = .none, }, + .{ .cp = 0xFDA9, .status = .mapped, .mapping = &.{0x0635,0x062D,0x064A}, .status2 = .none, }, + .{ .cp = 0xFDAA, .status = .mapped, .mapping = &.{0x0634,0x062D,0x064A}, .status2 = .none, }, + .{ .cp = 0xFDAB, .status = .mapped, .mapping = &.{0x0636,0x062D,0x064A}, .status2 = .none, }, + .{ .cp = 0xFDAC, .status = .mapped, .mapping = &.{0x0644,0x062C,0x064A}, .status2 = .none, }, + .{ .cp = 0xFDAD, .status = .mapped, .mapping = &.{0x0644,0x0645,0x064A}, .status2 = .none, }, + .{ .cp = 0xFDAE, .status = .mapped, .mapping = &.{0x064A,0x062D,0x064A}, .status2 = .none, }, + .{ .cp = 0xFDAF, .status = .mapped, .mapping = &.{0x064A,0x062C,0x064A}, .status2 = .none, }, + .{ .cp = 0xFDB0, .status = .mapped, .mapping = &.{0x064A,0x0645,0x064A}, .status2 = .none, }, + .{ .cp = 0xFDB1, .status = .mapped, .mapping = &.{0x0645,0x0645,0x064A}, .status2 = .none, }, + .{ .cp = 0xFDB2, .status = .mapped, .mapping = &.{0x0642,0x0645,0x064A}, .status2 = .none, }, + .{ .cp = 0xFDB3, .status = .mapped, .mapping = &.{0x0646,0x062D,0x064A}, .status2 = .none, }, + .{ .cp = 0xFDB4, .status = .mapped, .mapping = &.{0x0642,0x0645,0x062D}, .status2 = .none, }, + .{ .cp = 0xFDB5, .status = .mapped, .mapping = &.{0x0644,0x062D,0x0645}, .status2 = .none, }, + .{ .cp = 0xFDB6, .status = .mapped, .mapping = &.{0x0639,0x0645,0x064A}, .status2 = .none, }, + .{ .cp = 0xFDB7, .status = .mapped, .mapping = &.{0x0643,0x0645,0x064A}, .status2 = .none, }, + .{ .cp = 0xFDB8, .status = .mapped, .mapping = &.{0x0646,0x062C,0x062D}, .status2 = .none, }, + .{ .cp = 0xFDB9, .status = .mapped, .mapping = &.{0x0645,0x062E,0x064A}, .status2 = .none, }, + .{ .cp = 0xFDBA, .status = .mapped, .mapping = &.{0x0644,0x062C,0x0645}, .status2 = .none, }, + .{ .cp = 0xFDBB, .status = .mapped, .mapping = &.{0x0643,0x0645,0x0645}, .status2 = .none, }, + .{ .cp = 0xFDBC, .status = .mapped, .mapping = &.{0x0644,0x062C,0x0645}, .status2 = .none, }, + .{ .cp = 0xFDBD, .status = .mapped, .mapping = &.{0x0646,0x062C,0x062D}, .status2 = .none, }, + .{ .cp = 0xFDBE, .status = .mapped, .mapping = &.{0x062C,0x062D,0x064A}, .status2 = .none, }, + .{ .cp = 0xFDBF, .status = .mapped, .mapping = &.{0x062D,0x062C,0x064A}, .status2 = .none, }, + .{ .cp = 0xFDC0, .status = .mapped, .mapping = &.{0x0645,0x062C,0x064A}, .status2 = .none, }, + .{ .cp = 0xFDC1, .status = .mapped, .mapping = &.{0x0641,0x0645,0x064A}, .status2 = .none, }, + .{ .cp = 0xFDC2, .status = .mapped, .mapping = &.{0x0628,0x062D,0x064A}, .status2 = .none, }, + .{ .cp = 0xFDC3, .status = .mapped, .mapping = &.{0x0643,0x0645,0x0645}, .status2 = .none, }, + .{ .cp = 0xFDC4, .status = .mapped, .mapping = &.{0x0639,0x062C,0x0645}, .status2 = .none, }, + .{ .cp = 0xFDC5, .status = .mapped, .mapping = &.{0x0635,0x0645,0x0645}, .status2 = .none, }, + .{ .cp = 0xFDC6, .status = .mapped, .mapping = &.{0x0633,0x062E,0x064A}, .status2 = .none, }, + .{ .cp = 0xFDC7, .status = .mapped, .mapping = &.{0x0646,0x062C,0x064A}, .status2 = .none, }, + .{ .cp = 0xFDCF, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .cp = 0xFDF0, .status = .mapped, .mapping = &.{0x0635,0x0644,0x06D2}, .status2 = .none, }, + .{ .cp = 0xFDF1, .status = .mapped, .mapping = &.{0x0642,0x0644,0x06D2}, .status2 = .none, }, + .{ .cp = 0xFDF2, .status = .mapped, .mapping = &.{0x0627,0x0644,0x0644,0x0647}, .status2 = .none, }, + .{ .cp = 0xFDF3, .status = .mapped, .mapping = &.{0x0627,0x0643,0x0628,0x0631}, .status2 = .none, }, + .{ .cp = 0xFDF4, .status = .mapped, .mapping = &.{0x0645,0x062D,0x0645,0x062F}, .status2 = .none, }, + .{ .cp = 0xFDF5, .status = .mapped, .mapping = &.{0x0635,0x0644,0x0639,0x0645}, .status2 = .none, }, + .{ .cp = 0xFDF6, .status = .mapped, .mapping = &.{0x0631,0x0633,0x0648,0x0644}, .status2 = .none, }, + .{ .cp = 0xFDF7, .status = .mapped, .mapping = &.{0x0639,0x0644,0x064A,0x0647}, .status2 = .none, }, + .{ .cp = 0xFDF8, .status = .mapped, .mapping = &.{0x0648,0x0633,0x0644,0x0645}, .status2 = .none, }, + .{ .cp = 0xFDF9, .status = .mapped, .mapping = &.{0x0635,0x0644,0x0649}, .status2 = .none, }, + .{ .cp = 0xFDFA, .status = .mapped, .mapping = &.{0x0635,0x0644,0x0649,0x0020,0x0627,0x0644,0x0644,0x0647,0x0020,0x0639,0x0644,0x064A,0x0647,0x0020,0x0648,0x0633,0x0644,0x0645}, .status2 = .none, }, + .{ .cp = 0xFDFB, .status = .mapped, .mapping = &.{0x062C,0x0644,0x0020,0x062C,0x0644,0x0627,0x0644,0x0647}, .status2 = .none, }, + .{ .cp = 0xFDFC, .status = .mapped, .mapping = &.{0x0631,0x06CC,0x0627,0x0644}, .status2 = .none, }, + .{ .cp = 0xFDFD, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .cp = 0xFE10, .status = .mapped, .mapping = &.{0x002C}, .status2 = .none, }, + .{ .cp = 0xFE11, .status = .mapped, .mapping = &.{0x3001}, .status2 = .none, }, + .{ .cp = 0xFE12, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0xFE13, .status = .mapped, .mapping = &.{0x003A}, .status2 = .none, }, + .{ .cp = 0xFE14, .status = .mapped, .mapping = &.{0x003B}, .status2 = .none, }, + .{ .cp = 0xFE15, .status = .mapped, .mapping = &.{0x0021}, .status2 = .none, }, + .{ .cp = 0xFE16, .status = .mapped, .mapping = &.{0x003F}, .status2 = .none, }, + .{ .cp = 0xFE17, .status = .mapped, .mapping = &.{0x3016}, .status2 = .none, }, + .{ .cp = 0xFE18, .status = .mapped, .mapping = &.{0x3017}, .status2 = .none, }, + .{ .cp = 0xFE19, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0xFE30, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0xFE31, .status = .mapped, .mapping = &.{0x2014}, .status2 = .none, }, + .{ .cp = 0xFE32, .status = .mapped, .mapping = &.{0x2013}, .status2 = .none, }, + .{ .cp = 0xFE35, .status = .mapped, .mapping = &.{0x0028}, .status2 = .none, }, + .{ .cp = 0xFE36, .status = .mapped, .mapping = &.{0x0029}, .status2 = .none, }, + .{ .cp = 0xFE37, .status = .mapped, .mapping = &.{0x007B}, .status2 = .none, }, + .{ .cp = 0xFE38, .status = .mapped, .mapping = &.{0x007D}, .status2 = .none, }, + .{ .cp = 0xFE39, .status = .mapped, .mapping = &.{0x3014}, .status2 = .none, }, + .{ .cp = 0xFE3A, .status = .mapped, .mapping = &.{0x3015}, .status2 = .none, }, + .{ .cp = 0xFE3B, .status = .mapped, .mapping = &.{0x3010}, .status2 = .none, }, + .{ .cp = 0xFE3C, .status = .mapped, .mapping = &.{0x3011}, .status2 = .none, }, + .{ .cp = 0xFE3D, .status = .mapped, .mapping = &.{0x300A}, .status2 = .none, }, + .{ .cp = 0xFE3E, .status = .mapped, .mapping = &.{0x300B}, .status2 = .none, }, + .{ .cp = 0xFE3F, .status = .mapped, .mapping = &.{0x3008}, .status2 = .none, }, + .{ .cp = 0xFE40, .status = .mapped, .mapping = &.{0x3009}, .status2 = .none, }, + .{ .cp = 0xFE41, .status = .mapped, .mapping = &.{0x300C}, .status2 = .none, }, + .{ .cp = 0xFE42, .status = .mapped, .mapping = &.{0x300D}, .status2 = .none, }, + .{ .cp = 0xFE43, .status = .mapped, .mapping = &.{0x300E}, .status2 = .none, }, + .{ .cp = 0xFE44, .status = .mapped, .mapping = &.{0x300F}, .status2 = .none, }, + .{ .cp = 0xFE47, .status = .mapped, .mapping = &.{0x005B}, .status2 = .none, }, + .{ .cp = 0xFE48, .status = .mapped, .mapping = &.{0x005D}, .status2 = .none, }, + .{ .cp = 0xFE50, .status = .mapped, .mapping = &.{0x002C}, .status2 = .none, }, + .{ .cp = 0xFE51, .status = .mapped, .mapping = &.{0x3001}, .status2 = .none, }, + .{ .cp = 0xFE52, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0xFE53, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0xFE54, .status = .mapped, .mapping = &.{0x003B}, .status2 = .none, }, + .{ .cp = 0xFE55, .status = .mapped, .mapping = &.{0x003A}, .status2 = .none, }, + .{ .cp = 0xFE56, .status = .mapped, .mapping = &.{0x003F}, .status2 = .none, }, + .{ .cp = 0xFE57, .status = .mapped, .mapping = &.{0x0021}, .status2 = .none, }, + .{ .cp = 0xFE58, .status = .mapped, .mapping = &.{0x2014}, .status2 = .none, }, + .{ .cp = 0xFE59, .status = .mapped, .mapping = &.{0x0028}, .status2 = .none, }, + .{ .cp = 0xFE5A, .status = .mapped, .mapping = &.{0x0029}, .status2 = .none, }, + .{ .cp = 0xFE5B, .status = .mapped, .mapping = &.{0x007B}, .status2 = .none, }, + .{ .cp = 0xFE5C, .status = .mapped, .mapping = &.{0x007D}, .status2 = .none, }, + .{ .cp = 0xFE5D, .status = .mapped, .mapping = &.{0x3014}, .status2 = .none, }, + .{ .cp = 0xFE5E, .status = .mapped, .mapping = &.{0x3015}, .status2 = .none, }, + .{ .cp = 0xFE5F, .status = .mapped, .mapping = &.{0x0023}, .status2 = .none, }, + .{ .cp = 0xFE60, .status = .mapped, .mapping = &.{0x0026}, .status2 = .none, }, + .{ .cp = 0xFE61, .status = .mapped, .mapping = &.{0x002A}, .status2 = .none, }, + .{ .cp = 0xFE62, .status = .mapped, .mapping = &.{0x002B}, .status2 = .none, }, + .{ .cp = 0xFE63, .status = .mapped, .mapping = &.{0x002D}, .status2 = .none, }, + .{ .cp = 0xFE64, .status = .mapped, .mapping = &.{0x003C}, .status2 = .none, }, + .{ .cp = 0xFE65, .status = .mapped, .mapping = &.{0x003E}, .status2 = .none, }, + .{ .cp = 0xFE66, .status = .mapped, .mapping = &.{0x003D}, .status2 = .none, }, + .{ .cp = 0xFE67, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0xFE68, .status = .mapped, .mapping = &.{0x005C}, .status2 = .none, }, + .{ .cp = 0xFE69, .status = .mapped, .mapping = &.{0x0024}, .status2 = .none, }, + .{ .cp = 0xFE6A, .status = .mapped, .mapping = &.{0x0025}, .status2 = .none, }, + .{ .cp = 0xFE6B, .status = .mapped, .mapping = &.{0x0040}, .status2 = .none, }, + .{ .cp = 0xFE70, .status = .mapped, .mapping = &.{0x0020,0x064B}, .status2 = .none, }, + .{ .cp = 0xFE71, .status = .mapped, .mapping = &.{0x0640,0x064B}, .status2 = .none, }, + .{ .cp = 0xFE72, .status = .mapped, .mapping = &.{0x0020,0x064C}, .status2 = .none, }, + .{ .cp = 0xFE73, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0xFE74, .status = .mapped, .mapping = &.{0x0020,0x064D}, .status2 = .none, }, + .{ .cp = 0xFE75, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0xFE76, .status = .mapped, .mapping = &.{0x0020,0x064E}, .status2 = .none, }, + .{ .cp = 0xFE77, .status = .mapped, .mapping = &.{0x0640,0x064E}, .status2 = .none, }, + .{ .cp = 0xFE78, .status = .mapped, .mapping = &.{0x0020,0x064F}, .status2 = .none, }, + .{ .cp = 0xFE79, .status = .mapped, .mapping = &.{0x0640,0x064F}, .status2 = .none, }, + .{ .cp = 0xFE7A, .status = .mapped, .mapping = &.{0x0020,0x0650}, .status2 = .none, }, + .{ .cp = 0xFE7B, .status = .mapped, .mapping = &.{0x0640,0x0650}, .status2 = .none, }, + .{ .cp = 0xFE7C, .status = .mapped, .mapping = &.{0x0020,0x0651}, .status2 = .none, }, + .{ .cp = 0xFE7D, .status = .mapped, .mapping = &.{0x0640,0x0651}, .status2 = .none, }, + .{ .cp = 0xFE7E, .status = .mapped, .mapping = &.{0x0020,0x0652}, .status2 = .none, }, + .{ .cp = 0xFE7F, .status = .mapped, .mapping = &.{0x0640,0x0652}, .status2 = .none, }, + .{ .cp = 0xFE80, .status = .mapped, .mapping = &.{0x0621}, .status2 = .none, }, + .{ .cp = 0xFEFF, .status = .ignored, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0xFF00, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0xFF01, .status = .mapped, .mapping = &.{0x0021}, .status2 = .none, }, + .{ .cp = 0xFF02, .status = .mapped, .mapping = &.{0x0022}, .status2 = .none, }, + .{ .cp = 0xFF03, .status = .mapped, .mapping = &.{0x0023}, .status2 = .none, }, + .{ .cp = 0xFF04, .status = .mapped, .mapping = &.{0x0024}, .status2 = .none, }, + .{ .cp = 0xFF05, .status = .mapped, .mapping = &.{0x0025}, .status2 = .none, }, + .{ .cp = 0xFF06, .status = .mapped, .mapping = &.{0x0026}, .status2 = .none, }, + .{ .cp = 0xFF07, .status = .mapped, .mapping = &.{0x0027}, .status2 = .none, }, + .{ .cp = 0xFF08, .status = .mapped, .mapping = &.{0x0028}, .status2 = .none, }, + .{ .cp = 0xFF09, .status = .mapped, .mapping = &.{0x0029}, .status2 = .none, }, + .{ .cp = 0xFF0A, .status = .mapped, .mapping = &.{0x002A}, .status2 = .none, }, + .{ .cp = 0xFF0B, .status = .mapped, .mapping = &.{0x002B}, .status2 = .none, }, + .{ .cp = 0xFF0C, .status = .mapped, .mapping = &.{0x002C}, .status2 = .none, }, + .{ .cp = 0xFF0D, .status = .mapped, .mapping = &.{0x002D}, .status2 = .none, }, + .{ .cp = 0xFF0E, .status = .mapped, .mapping = &.{0x002E}, .status2 = .none, }, + .{ .cp = 0xFF0F, .status = .mapped, .mapping = &.{0x002F}, .status2 = .none, }, + .{ .cp = 0xFF10, .status = .mapped, .mapping = &.{0x0030}, .status2 = .none, }, + .{ .cp = 0xFF11, .status = .mapped, .mapping = &.{0x0031}, .status2 = .none, }, + .{ .cp = 0xFF12, .status = .mapped, .mapping = &.{0x0032}, .status2 = .none, }, + .{ .cp = 0xFF13, .status = .mapped, .mapping = &.{0x0033}, .status2 = .none, }, + .{ .cp = 0xFF14, .status = .mapped, .mapping = &.{0x0034}, .status2 = .none, }, + .{ .cp = 0xFF15, .status = .mapped, .mapping = &.{0x0035}, .status2 = .none, }, + .{ .cp = 0xFF16, .status = .mapped, .mapping = &.{0x0036}, .status2 = .none, }, + .{ .cp = 0xFF17, .status = .mapped, .mapping = &.{0x0037}, .status2 = .none, }, + .{ .cp = 0xFF18, .status = .mapped, .mapping = &.{0x0038}, .status2 = .none, }, + .{ .cp = 0xFF19, .status = .mapped, .mapping = &.{0x0039}, .status2 = .none, }, + .{ .cp = 0xFF1A, .status = .mapped, .mapping = &.{0x003A}, .status2 = .none, }, + .{ .cp = 0xFF1B, .status = .mapped, .mapping = &.{0x003B}, .status2 = .none, }, + .{ .cp = 0xFF1C, .status = .mapped, .mapping = &.{0x003C}, .status2 = .none, }, + .{ .cp = 0xFF1D, .status = .mapped, .mapping = &.{0x003D}, .status2 = .none, }, + .{ .cp = 0xFF1E, .status = .mapped, .mapping = &.{0x003E}, .status2 = .none, }, + .{ .cp = 0xFF1F, .status = .mapped, .mapping = &.{0x003F}, .status2 = .none, }, + .{ .cp = 0xFF20, .status = .mapped, .mapping = &.{0x0040}, .status2 = .none, }, + .{ .cp = 0xFF21, .status = .mapped, .mapping = &.{0x0061}, .status2 = .none, }, + .{ .cp = 0xFF22, .status = .mapped, .mapping = &.{0x0062}, .status2 = .none, }, + .{ .cp = 0xFF23, .status = .mapped, .mapping = &.{0x0063}, .status2 = .none, }, + .{ .cp = 0xFF24, .status = .mapped, .mapping = &.{0x0064}, .status2 = .none, }, + .{ .cp = 0xFF25, .status = .mapped, .mapping = &.{0x0065}, .status2 = .none, }, + .{ .cp = 0xFF26, .status = .mapped, .mapping = &.{0x0066}, .status2 = .none, }, + .{ .cp = 0xFF27, .status = .mapped, .mapping = &.{0x0067}, .status2 = .none, }, + .{ .cp = 0xFF28, .status = .mapped, .mapping = &.{0x0068}, .status2 = .none, }, + .{ .cp = 0xFF29, .status = .mapped, .mapping = &.{0x0069}, .status2 = .none, }, + .{ .cp = 0xFF2A, .status = .mapped, .mapping = &.{0x006A}, .status2 = .none, }, + .{ .cp = 0xFF2B, .status = .mapped, .mapping = &.{0x006B}, .status2 = .none, }, + .{ .cp = 0xFF2C, .status = .mapped, .mapping = &.{0x006C}, .status2 = .none, }, + .{ .cp = 0xFF2D, .status = .mapped, .mapping = &.{0x006D}, .status2 = .none, }, + .{ .cp = 0xFF2E, .status = .mapped, .mapping = &.{0x006E}, .status2 = .none, }, + .{ .cp = 0xFF2F, .status = .mapped, .mapping = &.{0x006F}, .status2 = .none, }, + .{ .cp = 0xFF30, .status = .mapped, .mapping = &.{0x0070}, .status2 = .none, }, + .{ .cp = 0xFF31, .status = .mapped, .mapping = &.{0x0071}, .status2 = .none, }, + .{ .cp = 0xFF32, .status = .mapped, .mapping = &.{0x0072}, .status2 = .none, }, + .{ .cp = 0xFF33, .status = .mapped, .mapping = &.{0x0073}, .status2 = .none, }, + .{ .cp = 0xFF34, .status = .mapped, .mapping = &.{0x0074}, .status2 = .none, }, + .{ .cp = 0xFF35, .status = .mapped, .mapping = &.{0x0075}, .status2 = .none, }, + .{ .cp = 0xFF36, .status = .mapped, .mapping = &.{0x0076}, .status2 = .none, }, + .{ .cp = 0xFF37, .status = .mapped, .mapping = &.{0x0077}, .status2 = .none, }, + .{ .cp = 0xFF38, .status = .mapped, .mapping = &.{0x0078}, .status2 = .none, }, + .{ .cp = 0xFF39, .status = .mapped, .mapping = &.{0x0079}, .status2 = .none, }, + .{ .cp = 0xFF3A, .status = .mapped, .mapping = &.{0x007A}, .status2 = .none, }, + .{ .cp = 0xFF3B, .status = .mapped, .mapping = &.{0x005B}, .status2 = .none, }, + .{ .cp = 0xFF3C, .status = .mapped, .mapping = &.{0x005C}, .status2 = .none, }, + .{ .cp = 0xFF3D, .status = .mapped, .mapping = &.{0x005D}, .status2 = .none, }, + .{ .cp = 0xFF3E, .status = .mapped, .mapping = &.{0x005E}, .status2 = .none, }, + .{ .cp = 0xFF3F, .status = .mapped, .mapping = &.{0x005F}, .status2 = .none, }, + .{ .cp = 0xFF40, .status = .mapped, .mapping = &.{0x0060}, .status2 = .none, }, + .{ .cp = 0xFF41, .status = .mapped, .mapping = &.{0x0061}, .status2 = .none, }, + .{ .cp = 0xFF42, .status = .mapped, .mapping = &.{0x0062}, .status2 = .none, }, + .{ .cp = 0xFF43, .status = .mapped, .mapping = &.{0x0063}, .status2 = .none, }, + .{ .cp = 0xFF44, .status = .mapped, .mapping = &.{0x0064}, .status2 = .none, }, + .{ .cp = 0xFF45, .status = .mapped, .mapping = &.{0x0065}, .status2 = .none, }, + .{ .cp = 0xFF46, .status = .mapped, .mapping = &.{0x0066}, .status2 = .none, }, + .{ .cp = 0xFF47, .status = .mapped, .mapping = &.{0x0067}, .status2 = .none, }, + .{ .cp = 0xFF48, .status = .mapped, .mapping = &.{0x0068}, .status2 = .none, }, + .{ .cp = 0xFF49, .status = .mapped, .mapping = &.{0x0069}, .status2 = .none, }, + .{ .cp = 0xFF4A, .status = .mapped, .mapping = &.{0x006A}, .status2 = .none, }, + .{ .cp = 0xFF4B, .status = .mapped, .mapping = &.{0x006B}, .status2 = .none, }, + .{ .cp = 0xFF4C, .status = .mapped, .mapping = &.{0x006C}, .status2 = .none, }, + .{ .cp = 0xFF4D, .status = .mapped, .mapping = &.{0x006D}, .status2 = .none, }, + .{ .cp = 0xFF4E, .status = .mapped, .mapping = &.{0x006E}, .status2 = .none, }, + .{ .cp = 0xFF4F, .status = .mapped, .mapping = &.{0x006F}, .status2 = .none, }, + .{ .cp = 0xFF50, .status = .mapped, .mapping = &.{0x0070}, .status2 = .none, }, + .{ .cp = 0xFF51, .status = .mapped, .mapping = &.{0x0071}, .status2 = .none, }, + .{ .cp = 0xFF52, .status = .mapped, .mapping = &.{0x0072}, .status2 = .none, }, + .{ .cp = 0xFF53, .status = .mapped, .mapping = &.{0x0073}, .status2 = .none, }, + .{ .cp = 0xFF54, .status = .mapped, .mapping = &.{0x0074}, .status2 = .none, }, + .{ .cp = 0xFF55, .status = .mapped, .mapping = &.{0x0075}, .status2 = .none, }, + .{ .cp = 0xFF56, .status = .mapped, .mapping = &.{0x0076}, .status2 = .none, }, + .{ .cp = 0xFF57, .status = .mapped, .mapping = &.{0x0077}, .status2 = .none, }, + .{ .cp = 0xFF58, .status = .mapped, .mapping = &.{0x0078}, .status2 = .none, }, + .{ .cp = 0xFF59, .status = .mapped, .mapping = &.{0x0079}, .status2 = .none, }, + .{ .cp = 0xFF5A, .status = .mapped, .mapping = &.{0x007A}, .status2 = .none, }, + .{ .cp = 0xFF5B, .status = .mapped, .mapping = &.{0x007B}, .status2 = .none, }, + .{ .cp = 0xFF5C, .status = .mapped, .mapping = &.{0x007C}, .status2 = .none, }, + .{ .cp = 0xFF5D, .status = .mapped, .mapping = &.{0x007D}, .status2 = .none, }, + .{ .cp = 0xFF5E, .status = .mapped, .mapping = &.{0x007E}, .status2 = .none, }, + .{ .cp = 0xFF5F, .status = .mapped, .mapping = &.{0x2985}, .status2 = .none, }, + .{ .cp = 0xFF60, .status = .mapped, .mapping = &.{0x2986}, .status2 = .none, }, + .{ .cp = 0xFF61, .status = .mapped, .mapping = &.{0x002E}, .status2 = .none, }, + .{ .cp = 0xFF62, .status = .mapped, .mapping = &.{0x300C}, .status2 = .none, }, + .{ .cp = 0xFF63, .status = .mapped, .mapping = &.{0x300D}, .status2 = .none, }, + .{ .cp = 0xFF64, .status = .mapped, .mapping = &.{0x3001}, .status2 = .none, }, + .{ .cp = 0xFF65, .status = .mapped, .mapping = &.{0x30FB}, .status2 = .none, }, + .{ .cp = 0xFF66, .status = .mapped, .mapping = &.{0x30F2}, .status2 = .none, }, + .{ .cp = 0xFF67, .status = .mapped, .mapping = &.{0x30A1}, .status2 = .none, }, + .{ .cp = 0xFF68, .status = .mapped, .mapping = &.{0x30A3}, .status2 = .none, }, + .{ .cp = 0xFF69, .status = .mapped, .mapping = &.{0x30A5}, .status2 = .none, }, + .{ .cp = 0xFF6A, .status = .mapped, .mapping = &.{0x30A7}, .status2 = .none, }, + .{ .cp = 0xFF6B, .status = .mapped, .mapping = &.{0x30A9}, .status2 = .none, }, + .{ .cp = 0xFF6C, .status = .mapped, .mapping = &.{0x30E3}, .status2 = .none, }, + .{ .cp = 0xFF6D, .status = .mapped, .mapping = &.{0x30E5}, .status2 = .none, }, + .{ .cp = 0xFF6E, .status = .mapped, .mapping = &.{0x30E7}, .status2 = .none, }, + .{ .cp = 0xFF6F, .status = .mapped, .mapping = &.{0x30C3}, .status2 = .none, }, + .{ .cp = 0xFF70, .status = .mapped, .mapping = &.{0x30FC}, .status2 = .none, }, + .{ .cp = 0xFF71, .status = .mapped, .mapping = &.{0x30A2}, .status2 = .none, }, + .{ .cp = 0xFF72, .status = .mapped, .mapping = &.{0x30A4}, .status2 = .none, }, + .{ .cp = 0xFF73, .status = .mapped, .mapping = &.{0x30A6}, .status2 = .none, }, + .{ .cp = 0xFF74, .status = .mapped, .mapping = &.{0x30A8}, .status2 = .none, }, + .{ .cp = 0xFF75, .status = .mapped, .mapping = &.{0x30AA}, .status2 = .none, }, + .{ .cp = 0xFF76, .status = .mapped, .mapping = &.{0x30AB}, .status2 = .none, }, + .{ .cp = 0xFF77, .status = .mapped, .mapping = &.{0x30AD}, .status2 = .none, }, + .{ .cp = 0xFF78, .status = .mapped, .mapping = &.{0x30AF}, .status2 = .none, }, + .{ .cp = 0xFF79, .status = .mapped, .mapping = &.{0x30B1}, .status2 = .none, }, + .{ .cp = 0xFF7A, .status = .mapped, .mapping = &.{0x30B3}, .status2 = .none, }, + .{ .cp = 0xFF7B, .status = .mapped, .mapping = &.{0x30B5}, .status2 = .none, }, + .{ .cp = 0xFF7C, .status = .mapped, .mapping = &.{0x30B7}, .status2 = .none, }, + .{ .cp = 0xFF7D, .status = .mapped, .mapping = &.{0x30B9}, .status2 = .none, }, + .{ .cp = 0xFF7E, .status = .mapped, .mapping = &.{0x30BB}, .status2 = .none, }, + .{ .cp = 0xFF7F, .status = .mapped, .mapping = &.{0x30BD}, .status2 = .none, }, + .{ .cp = 0xFF80, .status = .mapped, .mapping = &.{0x30BF}, .status2 = .none, }, + .{ .cp = 0xFF81, .status = .mapped, .mapping = &.{0x30C1}, .status2 = .none, }, + .{ .cp = 0xFF82, .status = .mapped, .mapping = &.{0x30C4}, .status2 = .none, }, + .{ .cp = 0xFF83, .status = .mapped, .mapping = &.{0x30C6}, .status2 = .none, }, + .{ .cp = 0xFF84, .status = .mapped, .mapping = &.{0x30C8}, .status2 = .none, }, + .{ .cp = 0xFF85, .status = .mapped, .mapping = &.{0x30CA}, .status2 = .none, }, + .{ .cp = 0xFF86, .status = .mapped, .mapping = &.{0x30CB}, .status2 = .none, }, + .{ .cp = 0xFF87, .status = .mapped, .mapping = &.{0x30CC}, .status2 = .none, }, + .{ .cp = 0xFF88, .status = .mapped, .mapping = &.{0x30CD}, .status2 = .none, }, + .{ .cp = 0xFF89, .status = .mapped, .mapping = &.{0x30CE}, .status2 = .none, }, + .{ .cp = 0xFF8A, .status = .mapped, .mapping = &.{0x30CF}, .status2 = .none, }, + .{ .cp = 0xFF8B, .status = .mapped, .mapping = &.{0x30D2}, .status2 = .none, }, + .{ .cp = 0xFF8C, .status = .mapped, .mapping = &.{0x30D5}, .status2 = .none, }, + .{ .cp = 0xFF8D, .status = .mapped, .mapping = &.{0x30D8}, .status2 = .none, }, + .{ .cp = 0xFF8E, .status = .mapped, .mapping = &.{0x30DB}, .status2 = .none, }, + .{ .cp = 0xFF8F, .status = .mapped, .mapping = &.{0x30DE}, .status2 = .none, }, + .{ .cp = 0xFF90, .status = .mapped, .mapping = &.{0x30DF}, .status2 = .none, }, + .{ .cp = 0xFF91, .status = .mapped, .mapping = &.{0x30E0}, .status2 = .none, }, + .{ .cp = 0xFF92, .status = .mapped, .mapping = &.{0x30E1}, .status2 = .none, }, + .{ .cp = 0xFF93, .status = .mapped, .mapping = &.{0x30E2}, .status2 = .none, }, + .{ .cp = 0xFF94, .status = .mapped, .mapping = &.{0x30E4}, .status2 = .none, }, + .{ .cp = 0xFF95, .status = .mapped, .mapping = &.{0x30E6}, .status2 = .none, }, + .{ .cp = 0xFF96, .status = .mapped, .mapping = &.{0x30E8}, .status2 = .none, }, + .{ .cp = 0xFF97, .status = .mapped, .mapping = &.{0x30E9}, .status2 = .none, }, + .{ .cp = 0xFF98, .status = .mapped, .mapping = &.{0x30EA}, .status2 = .none, }, + .{ .cp = 0xFF99, .status = .mapped, .mapping = &.{0x30EB}, .status2 = .none, }, + .{ .cp = 0xFF9A, .status = .mapped, .mapping = &.{0x30EC}, .status2 = .none, }, + .{ .cp = 0xFF9B, .status = .mapped, .mapping = &.{0x30ED}, .status2 = .none, }, + .{ .cp = 0xFF9C, .status = .mapped, .mapping = &.{0x30EF}, .status2 = .none, }, + .{ .cp = 0xFF9D, .status = .mapped, .mapping = &.{0x30F3}, .status2 = .none, }, + .{ .cp = 0xFF9E, .status = .mapped, .mapping = &.{0x3099}, .status2 = .none, }, + .{ .cp = 0xFF9F, .status = .mapped, .mapping = &.{0x309A}, .status2 = .none, }, + .{ .cp = 0xFFA0, .status = .ignored, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0xFFA1, .status = .mapped, .mapping = &.{0x1100}, .status2 = .none, }, + .{ .cp = 0xFFA2, .status = .mapped, .mapping = &.{0x1101}, .status2 = .none, }, + .{ .cp = 0xFFA3, .status = .mapped, .mapping = &.{0x11AA}, .status2 = .none, }, + .{ .cp = 0xFFA4, .status = .mapped, .mapping = &.{0x1102}, .status2 = .none, }, + .{ .cp = 0xFFA5, .status = .mapped, .mapping = &.{0x11AC}, .status2 = .none, }, + .{ .cp = 0xFFA6, .status = .mapped, .mapping = &.{0x11AD}, .status2 = .none, }, + .{ .cp = 0xFFA7, .status = .mapped, .mapping = &.{0x1103}, .status2 = .none, }, + .{ .cp = 0xFFA8, .status = .mapped, .mapping = &.{0x1104}, .status2 = .none, }, + .{ .cp = 0xFFA9, .status = .mapped, .mapping = &.{0x1105}, .status2 = .none, }, + .{ .cp = 0xFFAA, .status = .mapped, .mapping = &.{0x11B0}, .status2 = .none, }, + .{ .cp = 0xFFAB, .status = .mapped, .mapping = &.{0x11B1}, .status2 = .none, }, + .{ .cp = 0xFFAC, .status = .mapped, .mapping = &.{0x11B2}, .status2 = .none, }, + .{ .cp = 0xFFAD, .status = .mapped, .mapping = &.{0x11B3}, .status2 = .none, }, + .{ .cp = 0xFFAE, .status = .mapped, .mapping = &.{0x11B4}, .status2 = .none, }, + .{ .cp = 0xFFAF, .status = .mapped, .mapping = &.{0x11B5}, .status2 = .none, }, + .{ .cp = 0xFFB0, .status = .mapped, .mapping = &.{0x111A}, .status2 = .none, }, + .{ .cp = 0xFFB1, .status = .mapped, .mapping = &.{0x1106}, .status2 = .none, }, + .{ .cp = 0xFFB2, .status = .mapped, .mapping = &.{0x1107}, .status2 = .none, }, + .{ .cp = 0xFFB3, .status = .mapped, .mapping = &.{0x1108}, .status2 = .none, }, + .{ .cp = 0xFFB4, .status = .mapped, .mapping = &.{0x1121}, .status2 = .none, }, + .{ .cp = 0xFFB5, .status = .mapped, .mapping = &.{0x1109}, .status2 = .none, }, + .{ .cp = 0xFFB6, .status = .mapped, .mapping = &.{0x110A}, .status2 = .none, }, + .{ .cp = 0xFFB7, .status = .mapped, .mapping = &.{0x110B}, .status2 = .none, }, + .{ .cp = 0xFFB8, .status = .mapped, .mapping = &.{0x110C}, .status2 = .none, }, + .{ .cp = 0xFFB9, .status = .mapped, .mapping = &.{0x110D}, .status2 = .none, }, + .{ .cp = 0xFFBA, .status = .mapped, .mapping = &.{0x110E}, .status2 = .none, }, + .{ .cp = 0xFFBB, .status = .mapped, .mapping = &.{0x110F}, .status2 = .none, }, + .{ .cp = 0xFFBC, .status = .mapped, .mapping = &.{0x1110}, .status2 = .none, }, + .{ .cp = 0xFFBD, .status = .mapped, .mapping = &.{0x1111}, .status2 = .none, }, + .{ .cp = 0xFFBE, .status = .mapped, .mapping = &.{0x1112}, .status2 = .none, }, + .{ .cp = 0xFFC2, .status = .mapped, .mapping = &.{0x1161}, .status2 = .none, }, + .{ .cp = 0xFFC3, .status = .mapped, .mapping = &.{0x1162}, .status2 = .none, }, + .{ .cp = 0xFFC4, .status = .mapped, .mapping = &.{0x1163}, .status2 = .none, }, + .{ .cp = 0xFFC5, .status = .mapped, .mapping = &.{0x1164}, .status2 = .none, }, + .{ .cp = 0xFFC6, .status = .mapped, .mapping = &.{0x1165}, .status2 = .none, }, + .{ .cp = 0xFFC7, .status = .mapped, .mapping = &.{0x1166}, .status2 = .none, }, + .{ .cp = 0xFFCA, .status = .mapped, .mapping = &.{0x1167}, .status2 = .none, }, + .{ .cp = 0xFFCB, .status = .mapped, .mapping = &.{0x1168}, .status2 = .none, }, + .{ .cp = 0xFFCC, .status = .mapped, .mapping = &.{0x1169}, .status2 = .none, }, + .{ .cp = 0xFFCD, .status = .mapped, .mapping = &.{0x116A}, .status2 = .none, }, + .{ .cp = 0xFFCE, .status = .mapped, .mapping = &.{0x116B}, .status2 = .none, }, + .{ .cp = 0xFFCF, .status = .mapped, .mapping = &.{0x116C}, .status2 = .none, }, + .{ .cp = 0xFFD2, .status = .mapped, .mapping = &.{0x116D}, .status2 = .none, }, + .{ .cp = 0xFFD3, .status = .mapped, .mapping = &.{0x116E}, .status2 = .none, }, + .{ .cp = 0xFFD4, .status = .mapped, .mapping = &.{0x116F}, .status2 = .none, }, + .{ .cp = 0xFFD5, .status = .mapped, .mapping = &.{0x1170}, .status2 = .none, }, + .{ .cp = 0xFFD6, .status = .mapped, .mapping = &.{0x1171}, .status2 = .none, }, + .{ .cp = 0xFFD7, .status = .mapped, .mapping = &.{0x1172}, .status2 = .none, }, + .{ .cp = 0xFFDA, .status = .mapped, .mapping = &.{0x1173}, .status2 = .none, }, + .{ .cp = 0xFFDB, .status = .mapped, .mapping = &.{0x1174}, .status2 = .none, }, + .{ .cp = 0xFFDC, .status = .mapped, .mapping = &.{0x1175}, .status2 = .none, }, + .{ .cp = 0xFFE0, .status = .mapped, .mapping = &.{0x00A2}, .status2 = .none, }, + .{ .cp = 0xFFE1, .status = .mapped, .mapping = &.{0x00A3}, .status2 = .none, }, + .{ .cp = 0xFFE2, .status = .mapped, .mapping = &.{0x00AC}, .status2 = .none, }, + .{ .cp = 0xFFE3, .status = .mapped, .mapping = &.{0x0020,0x0304}, .status2 = .none, }, + .{ .cp = 0xFFE4, .status = .mapped, .mapping = &.{0x00A6}, .status2 = .none, }, + .{ .cp = 0xFFE5, .status = .mapped, .mapping = &.{0x00A5}, .status2 = .none, }, + .{ .cp = 0xFFE6, .status = .mapped, .mapping = &.{0x20A9}, .status2 = .none, }, + .{ .cp = 0xFFE7, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0xFFE8, .status = .mapped, .mapping = &.{0x2502}, .status2 = .none, }, + .{ .cp = 0xFFE9, .status = .mapped, .mapping = &.{0x2190}, .status2 = .none, }, + .{ .cp = 0xFFEA, .status = .mapped, .mapping = &.{0x2191}, .status2 = .none, }, + .{ .cp = 0xFFEB, .status = .mapped, .mapping = &.{0x2192}, .status2 = .none, }, + .{ .cp = 0xFFEC, .status = .mapped, .mapping = &.{0x2193}, .status2 = .none, }, + .{ .cp = 0xFFED, .status = .mapped, .mapping = &.{0x25A0}, .status2 = .none, }, + .{ .cp = 0xFFEE, .status = .mapped, .mapping = &.{0x25CB}, .status2 = .none, }, + .{ .cp = 0xFFFC, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0xFFFD, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x1000C, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x10027, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x1003B, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x1003E, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x1018F, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x1019C, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .cp = 0x101A0, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .cp = 0x101FD, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x102E0, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x1031F, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x10341, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .cp = 0x1034A, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .cp = 0x1039E, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x1039F, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .cp = 0x10400, .status = .mapped, .mapping = &.{0x10428}, .status2 = .none, }, + .{ .cp = 0x10401, .status = .mapped, .mapping = &.{0x10429}, .status2 = .none, }, + .{ .cp = 0x10402, .status = .mapped, .mapping = &.{0x1042A}, .status2 = .none, }, + .{ .cp = 0x10403, .status = .mapped, .mapping = &.{0x1042B}, .status2 = .none, }, + .{ .cp = 0x10404, .status = .mapped, .mapping = &.{0x1042C}, .status2 = .none, }, + .{ .cp = 0x10405, .status = .mapped, .mapping = &.{0x1042D}, .status2 = .none, }, + .{ .cp = 0x10406, .status = .mapped, .mapping = &.{0x1042E}, .status2 = .none, }, + .{ .cp = 0x10407, .status = .mapped, .mapping = &.{0x1042F}, .status2 = .none, }, + .{ .cp = 0x10408, .status = .mapped, .mapping = &.{0x10430}, .status2 = .none, }, + .{ .cp = 0x10409, .status = .mapped, .mapping = &.{0x10431}, .status2 = .none, }, + .{ .cp = 0x1040A, .status = .mapped, .mapping = &.{0x10432}, .status2 = .none, }, + .{ .cp = 0x1040B, .status = .mapped, .mapping = &.{0x10433}, .status2 = .none, }, + .{ .cp = 0x1040C, .status = .mapped, .mapping = &.{0x10434}, .status2 = .none, }, + .{ .cp = 0x1040D, .status = .mapped, .mapping = &.{0x10435}, .status2 = .none, }, + .{ .cp = 0x1040E, .status = .mapped, .mapping = &.{0x10436}, .status2 = .none, }, + .{ .cp = 0x1040F, .status = .mapped, .mapping = &.{0x10437}, .status2 = .none, }, + .{ .cp = 0x10410, .status = .mapped, .mapping = &.{0x10438}, .status2 = .none, }, + .{ .cp = 0x10411, .status = .mapped, .mapping = &.{0x10439}, .status2 = .none, }, + .{ .cp = 0x10412, .status = .mapped, .mapping = &.{0x1043A}, .status2 = .none, }, + .{ .cp = 0x10413, .status = .mapped, .mapping = &.{0x1043B}, .status2 = .none, }, + .{ .cp = 0x10414, .status = .mapped, .mapping = &.{0x1043C}, .status2 = .none, }, + .{ .cp = 0x10415, .status = .mapped, .mapping = &.{0x1043D}, .status2 = .none, }, + .{ .cp = 0x10416, .status = .mapped, .mapping = &.{0x1043E}, .status2 = .none, }, + .{ .cp = 0x10417, .status = .mapped, .mapping = &.{0x1043F}, .status2 = .none, }, + .{ .cp = 0x10418, .status = .mapped, .mapping = &.{0x10440}, .status2 = .none, }, + .{ .cp = 0x10419, .status = .mapped, .mapping = &.{0x10441}, .status2 = .none, }, + .{ .cp = 0x1041A, .status = .mapped, .mapping = &.{0x10442}, .status2 = .none, }, + .{ .cp = 0x1041B, .status = .mapped, .mapping = &.{0x10443}, .status2 = .none, }, + .{ .cp = 0x1041C, .status = .mapped, .mapping = &.{0x10444}, .status2 = .none, }, + .{ .cp = 0x1041D, .status = .mapped, .mapping = &.{0x10445}, .status2 = .none, }, + .{ .cp = 0x1041E, .status = .mapped, .mapping = &.{0x10446}, .status2 = .none, }, + .{ .cp = 0x1041F, .status = .mapped, .mapping = &.{0x10447}, .status2 = .none, }, + .{ .cp = 0x10420, .status = .mapped, .mapping = &.{0x10448}, .status2 = .none, }, + .{ .cp = 0x10421, .status = .mapped, .mapping = &.{0x10449}, .status2 = .none, }, + .{ .cp = 0x10422, .status = .mapped, .mapping = &.{0x1044A}, .status2 = .none, }, + .{ .cp = 0x10423, .status = .mapped, .mapping = &.{0x1044B}, .status2 = .none, }, + .{ .cp = 0x10424, .status = .mapped, .mapping = &.{0x1044C}, .status2 = .none, }, + .{ .cp = 0x10425, .status = .mapped, .mapping = &.{0x1044D}, .status2 = .none, }, + .{ .cp = 0x10426, .status = .mapped, .mapping = &.{0x1044E}, .status2 = .none, }, + .{ .cp = 0x10427, .status = .mapped, .mapping = &.{0x1044F}, .status2 = .none, }, + .{ .cp = 0x104B0, .status = .mapped, .mapping = &.{0x104D8}, .status2 = .none, }, + .{ .cp = 0x104B1, .status = .mapped, .mapping = &.{0x104D9}, .status2 = .none, }, + .{ .cp = 0x104B2, .status = .mapped, .mapping = &.{0x104DA}, .status2 = .none, }, + .{ .cp = 0x104B3, .status = .mapped, .mapping = &.{0x104DB}, .status2 = .none, }, + .{ .cp = 0x104B4, .status = .mapped, .mapping = &.{0x104DC}, .status2 = .none, }, + .{ .cp = 0x104B5, .status = .mapped, .mapping = &.{0x104DD}, .status2 = .none, }, + .{ .cp = 0x104B6, .status = .mapped, .mapping = &.{0x104DE}, .status2 = .none, }, + .{ .cp = 0x104B7, .status = .mapped, .mapping = &.{0x104DF}, .status2 = .none, }, + .{ .cp = 0x104B8, .status = .mapped, .mapping = &.{0x104E0}, .status2 = .none, }, + .{ .cp = 0x104B9, .status = .mapped, .mapping = &.{0x104E1}, .status2 = .none, }, + .{ .cp = 0x104BA, .status = .mapped, .mapping = &.{0x104E2}, .status2 = .none, }, + .{ .cp = 0x104BB, .status = .mapped, .mapping = &.{0x104E3}, .status2 = .none, }, + .{ .cp = 0x104BC, .status = .mapped, .mapping = &.{0x104E4}, .status2 = .none, }, + .{ .cp = 0x104BD, .status = .mapped, .mapping = &.{0x104E5}, .status2 = .none, }, + .{ .cp = 0x104BE, .status = .mapped, .mapping = &.{0x104E6}, .status2 = .none, }, + .{ .cp = 0x104BF, .status = .mapped, .mapping = &.{0x104E7}, .status2 = .none, }, + .{ .cp = 0x104C0, .status = .mapped, .mapping = &.{0x104E8}, .status2 = .none, }, + .{ .cp = 0x104C1, .status = .mapped, .mapping = &.{0x104E9}, .status2 = .none, }, + .{ .cp = 0x104C2, .status = .mapped, .mapping = &.{0x104EA}, .status2 = .none, }, + .{ .cp = 0x104C3, .status = .mapped, .mapping = &.{0x104EB}, .status2 = .none, }, + .{ .cp = 0x104C4, .status = .mapped, .mapping = &.{0x104EC}, .status2 = .none, }, + .{ .cp = 0x104C5, .status = .mapped, .mapping = &.{0x104ED}, .status2 = .none, }, + .{ .cp = 0x104C6, .status = .mapped, .mapping = &.{0x104EE}, .status2 = .none, }, + .{ .cp = 0x104C7, .status = .mapped, .mapping = &.{0x104EF}, .status2 = .none, }, + .{ .cp = 0x104C8, .status = .mapped, .mapping = &.{0x104F0}, .status2 = .none, }, + .{ .cp = 0x104C9, .status = .mapped, .mapping = &.{0x104F1}, .status2 = .none, }, + .{ .cp = 0x104CA, .status = .mapped, .mapping = &.{0x104F2}, .status2 = .none, }, + .{ .cp = 0x104CB, .status = .mapped, .mapping = &.{0x104F3}, .status2 = .none, }, + .{ .cp = 0x104CC, .status = .mapped, .mapping = &.{0x104F4}, .status2 = .none, }, + .{ .cp = 0x104CD, .status = .mapped, .mapping = &.{0x104F5}, .status2 = .none, }, + .{ .cp = 0x104CE, .status = .mapped, .mapping = &.{0x104F6}, .status2 = .none, }, + .{ .cp = 0x104CF, .status = .mapped, .mapping = &.{0x104F7}, .status2 = .none, }, + .{ .cp = 0x104D0, .status = .mapped, .mapping = &.{0x104F8}, .status2 = .none, }, + .{ .cp = 0x104D1, .status = .mapped, .mapping = &.{0x104F9}, .status2 = .none, }, + .{ .cp = 0x104D2, .status = .mapped, .mapping = &.{0x104FA}, .status2 = .none, }, + .{ .cp = 0x104D3, .status = .mapped, .mapping = &.{0x104FB}, .status2 = .none, }, + .{ .cp = 0x1056F, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .cp = 0x10570, .status = .mapped, .mapping = &.{0x10597}, .status2 = .none, }, + .{ .cp = 0x10571, .status = .mapped, .mapping = &.{0x10598}, .status2 = .none, }, + .{ .cp = 0x10572, .status = .mapped, .mapping = &.{0x10599}, .status2 = .none, }, + .{ .cp = 0x10573, .status = .mapped, .mapping = &.{0x1059A}, .status2 = .none, }, + .{ .cp = 0x10574, .status = .mapped, .mapping = &.{0x1059B}, .status2 = .none, }, + .{ .cp = 0x10575, .status = .mapped, .mapping = &.{0x1059C}, .status2 = .none, }, + .{ .cp = 0x10576, .status = .mapped, .mapping = &.{0x1059D}, .status2 = .none, }, + .{ .cp = 0x10577, .status = .mapped, .mapping = &.{0x1059E}, .status2 = .none, }, + .{ .cp = 0x10578, .status = .mapped, .mapping = &.{0x1059F}, .status2 = .none, }, + .{ .cp = 0x10579, .status = .mapped, .mapping = &.{0x105A0}, .status2 = .none, }, + .{ .cp = 0x1057A, .status = .mapped, .mapping = &.{0x105A1}, .status2 = .none, }, + .{ .cp = 0x1057B, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x1057C, .status = .mapped, .mapping = &.{0x105A3}, .status2 = .none, }, + .{ .cp = 0x1057D, .status = .mapped, .mapping = &.{0x105A4}, .status2 = .none, }, + .{ .cp = 0x1057E, .status = .mapped, .mapping = &.{0x105A5}, .status2 = .none, }, + .{ .cp = 0x1057F, .status = .mapped, .mapping = &.{0x105A6}, .status2 = .none, }, + .{ .cp = 0x10580, .status = .mapped, .mapping = &.{0x105A7}, .status2 = .none, }, + .{ .cp = 0x10581, .status = .mapped, .mapping = &.{0x105A8}, .status2 = .none, }, + .{ .cp = 0x10582, .status = .mapped, .mapping = &.{0x105A9}, .status2 = .none, }, + .{ .cp = 0x10583, .status = .mapped, .mapping = &.{0x105AA}, .status2 = .none, }, + .{ .cp = 0x10584, .status = .mapped, .mapping = &.{0x105AB}, .status2 = .none, }, + .{ .cp = 0x10585, .status = .mapped, .mapping = &.{0x105AC}, .status2 = .none, }, + .{ .cp = 0x10586, .status = .mapped, .mapping = &.{0x105AD}, .status2 = .none, }, + .{ .cp = 0x10587, .status = .mapped, .mapping = &.{0x105AE}, .status2 = .none, }, + .{ .cp = 0x10588, .status = .mapped, .mapping = &.{0x105AF}, .status2 = .none, }, + .{ .cp = 0x10589, .status = .mapped, .mapping = &.{0x105B0}, .status2 = .none, }, + .{ .cp = 0x1058A, .status = .mapped, .mapping = &.{0x105B1}, .status2 = .none, }, + .{ .cp = 0x1058B, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x1058C, .status = .mapped, .mapping = &.{0x105B3}, .status2 = .none, }, + .{ .cp = 0x1058D, .status = .mapped, .mapping = &.{0x105B4}, .status2 = .none, }, + .{ .cp = 0x1058E, .status = .mapped, .mapping = &.{0x105B5}, .status2 = .none, }, + .{ .cp = 0x1058F, .status = .mapped, .mapping = &.{0x105B6}, .status2 = .none, }, + .{ .cp = 0x10590, .status = .mapped, .mapping = &.{0x105B7}, .status2 = .none, }, + .{ .cp = 0x10591, .status = .mapped, .mapping = &.{0x105B8}, .status2 = .none, }, + .{ .cp = 0x10592, .status = .mapped, .mapping = &.{0x105B9}, .status2 = .none, }, + .{ .cp = 0x10593, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x10594, .status = .mapped, .mapping = &.{0x105BB}, .status2 = .none, }, + .{ .cp = 0x10595, .status = .mapped, .mapping = &.{0x105BC}, .status2 = .none, }, + .{ .cp = 0x10596, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x105A2, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x105B2, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x105BA, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x10780, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x10781, .status = .mapped, .mapping = &.{0x02D0}, .status2 = .none, }, + .{ .cp = 0x10782, .status = .mapped, .mapping = &.{0x02D1}, .status2 = .none, }, + .{ .cp = 0x10783, .status = .mapped, .mapping = &.{0x00E6}, .status2 = .none, }, + .{ .cp = 0x10784, .status = .mapped, .mapping = &.{0x0299}, .status2 = .none, }, + .{ .cp = 0x10785, .status = .mapped, .mapping = &.{0x0253}, .status2 = .none, }, + .{ .cp = 0x10786, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x10787, .status = .mapped, .mapping = &.{0x02A3}, .status2 = .none, }, + .{ .cp = 0x10788, .status = .mapped, .mapping = &.{0xAB66}, .status2 = .none, }, + .{ .cp = 0x10789, .status = .mapped, .mapping = &.{0x02A5}, .status2 = .none, }, + .{ .cp = 0x1078A, .status = .mapped, .mapping = &.{0x02A4}, .status2 = .none, }, + .{ .cp = 0x1078B, .status = .mapped, .mapping = &.{0x0256}, .status2 = .none, }, + .{ .cp = 0x1078C, .status = .mapped, .mapping = &.{0x0257}, .status2 = .none, }, + .{ .cp = 0x1078D, .status = .mapped, .mapping = &.{0x1D91}, .status2 = .none, }, + .{ .cp = 0x1078E, .status = .mapped, .mapping = &.{0x0258}, .status2 = .none, }, + .{ .cp = 0x1078F, .status = .mapped, .mapping = &.{0x025E}, .status2 = .none, }, + .{ .cp = 0x10790, .status = .mapped, .mapping = &.{0x02A9}, .status2 = .none, }, + .{ .cp = 0x10791, .status = .mapped, .mapping = &.{0x0264}, .status2 = .none, }, + .{ .cp = 0x10792, .status = .mapped, .mapping = &.{0x0262}, .status2 = .none, }, + .{ .cp = 0x10793, .status = .mapped, .mapping = &.{0x0260}, .status2 = .none, }, + .{ .cp = 0x10794, .status = .mapped, .mapping = &.{0x029B}, .status2 = .none, }, + .{ .cp = 0x10795, .status = .mapped, .mapping = &.{0x0127}, .status2 = .none, }, + .{ .cp = 0x10796, .status = .mapped, .mapping = &.{0x029C}, .status2 = .none, }, + .{ .cp = 0x10797, .status = .mapped, .mapping = &.{0x0267}, .status2 = .none, }, + .{ .cp = 0x10798, .status = .mapped, .mapping = &.{0x0284}, .status2 = .none, }, + .{ .cp = 0x10799, .status = .mapped, .mapping = &.{0x02AA}, .status2 = .none, }, + .{ .cp = 0x1079A, .status = .mapped, .mapping = &.{0x02AB}, .status2 = .none, }, + .{ .cp = 0x1079B, .status = .mapped, .mapping = &.{0x026C}, .status2 = .none, }, + .{ .cp = 0x1079C, .status = .mapped, .mapping = &.{0x1DF04}, .status2 = .none, }, + .{ .cp = 0x1079D, .status = .mapped, .mapping = &.{0xA78E}, .status2 = .none, }, + .{ .cp = 0x1079E, .status = .mapped, .mapping = &.{0x026E}, .status2 = .none, }, + .{ .cp = 0x1079F, .status = .mapped, .mapping = &.{0x1DF05}, .status2 = .none, }, + .{ .cp = 0x107A0, .status = .mapped, .mapping = &.{0x028E}, .status2 = .none, }, + .{ .cp = 0x107A1, .status = .mapped, .mapping = &.{0x1DF06}, .status2 = .none, }, + .{ .cp = 0x107A2, .status = .mapped, .mapping = &.{0x00F8}, .status2 = .none, }, + .{ .cp = 0x107A3, .status = .mapped, .mapping = &.{0x0276}, .status2 = .none, }, + .{ .cp = 0x107A4, .status = .mapped, .mapping = &.{0x0277}, .status2 = .none, }, + .{ .cp = 0x107A5, .status = .mapped, .mapping = &.{0x0071}, .status2 = .none, }, + .{ .cp = 0x107A6, .status = .mapped, .mapping = &.{0x027A}, .status2 = .none, }, + .{ .cp = 0x107A7, .status = .mapped, .mapping = &.{0x1DF08}, .status2 = .none, }, + .{ .cp = 0x107A8, .status = .mapped, .mapping = &.{0x027D}, .status2 = .none, }, + .{ .cp = 0x107A9, .status = .mapped, .mapping = &.{0x027E}, .status2 = .none, }, + .{ .cp = 0x107AA, .status = .mapped, .mapping = &.{0x0280}, .status2 = .none, }, + .{ .cp = 0x107AB, .status = .mapped, .mapping = &.{0x02A8}, .status2 = .none, }, + .{ .cp = 0x107AC, .status = .mapped, .mapping = &.{0x02A6}, .status2 = .none, }, + .{ .cp = 0x107AD, .status = .mapped, .mapping = &.{0xAB67}, .status2 = .none, }, + .{ .cp = 0x107AE, .status = .mapped, .mapping = &.{0x02A7}, .status2 = .none, }, + .{ .cp = 0x107AF, .status = .mapped, .mapping = &.{0x0288}, .status2 = .none, }, + .{ .cp = 0x107B0, .status = .mapped, .mapping = &.{0x2C71}, .status2 = .none, }, + .{ .cp = 0x107B1, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x107B2, .status = .mapped, .mapping = &.{0x028F}, .status2 = .none, }, + .{ .cp = 0x107B3, .status = .mapped, .mapping = &.{0x02A1}, .status2 = .none, }, + .{ .cp = 0x107B4, .status = .mapped, .mapping = &.{0x02A2}, .status2 = .none, }, + .{ .cp = 0x107B5, .status = .mapped, .mapping = &.{0x0298}, .status2 = .none, }, + .{ .cp = 0x107B6, .status = .mapped, .mapping = &.{0x01C0}, .status2 = .none, }, + .{ .cp = 0x107B7, .status = .mapped, .mapping = &.{0x01C1}, .status2 = .none, }, + .{ .cp = 0x107B8, .status = .mapped, .mapping = &.{0x01C2}, .status2 = .none, }, + .{ .cp = 0x107B9, .status = .mapped, .mapping = &.{0x1DF0A}, .status2 = .none, }, + .{ .cp = 0x107BA, .status = .mapped, .mapping = &.{0x1DF1E}, .status2 = .none, }, + .{ .cp = 0x10808, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x10809, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x10836, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x1083C, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x1083F, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x10856, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x108F3, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x1091F, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .cp = 0x1093F, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .cp = 0x10A04, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x10A14, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x10A18, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x10A3F, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x10A48, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .cp = 0x10AC8, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .cp = 0x10C80, .status = .mapped, .mapping = &.{0x10CC0}, .status2 = .none, }, + .{ .cp = 0x10C81, .status = .mapped, .mapping = &.{0x10CC1}, .status2 = .none, }, + .{ .cp = 0x10C82, .status = .mapped, .mapping = &.{0x10CC2}, .status2 = .none, }, + .{ .cp = 0x10C83, .status = .mapped, .mapping = &.{0x10CC3}, .status2 = .none, }, + .{ .cp = 0x10C84, .status = .mapped, .mapping = &.{0x10CC4}, .status2 = .none, }, + .{ .cp = 0x10C85, .status = .mapped, .mapping = &.{0x10CC5}, .status2 = .none, }, + .{ .cp = 0x10C86, .status = .mapped, .mapping = &.{0x10CC6}, .status2 = .none, }, + .{ .cp = 0x10C87, .status = .mapped, .mapping = &.{0x10CC7}, .status2 = .none, }, + .{ .cp = 0x10C88, .status = .mapped, .mapping = &.{0x10CC8}, .status2 = .none, }, + .{ .cp = 0x10C89, .status = .mapped, .mapping = &.{0x10CC9}, .status2 = .none, }, + .{ .cp = 0x10C8A, .status = .mapped, .mapping = &.{0x10CCA}, .status2 = .none, }, + .{ .cp = 0x10C8B, .status = .mapped, .mapping = &.{0x10CCB}, .status2 = .none, }, + .{ .cp = 0x10C8C, .status = .mapped, .mapping = &.{0x10CCC}, .status2 = .none, }, + .{ .cp = 0x10C8D, .status = .mapped, .mapping = &.{0x10CCD}, .status2 = .none, }, + .{ .cp = 0x10C8E, .status = .mapped, .mapping = &.{0x10CCE}, .status2 = .none, }, + .{ .cp = 0x10C8F, .status = .mapped, .mapping = &.{0x10CCF}, .status2 = .none, }, + .{ .cp = 0x10C90, .status = .mapped, .mapping = &.{0x10CD0}, .status2 = .none, }, + .{ .cp = 0x10C91, .status = .mapped, .mapping = &.{0x10CD1}, .status2 = .none, }, + .{ .cp = 0x10C92, .status = .mapped, .mapping = &.{0x10CD2}, .status2 = .none, }, + .{ .cp = 0x10C93, .status = .mapped, .mapping = &.{0x10CD3}, .status2 = .none, }, + .{ .cp = 0x10C94, .status = .mapped, .mapping = &.{0x10CD4}, .status2 = .none, }, + .{ .cp = 0x10C95, .status = .mapped, .mapping = &.{0x10CD5}, .status2 = .none, }, + .{ .cp = 0x10C96, .status = .mapped, .mapping = &.{0x10CD6}, .status2 = .none, }, + .{ .cp = 0x10C97, .status = .mapped, .mapping = &.{0x10CD7}, .status2 = .none, }, + .{ .cp = 0x10C98, .status = .mapped, .mapping = &.{0x10CD8}, .status2 = .none, }, + .{ .cp = 0x10C99, .status = .mapped, .mapping = &.{0x10CD9}, .status2 = .none, }, + .{ .cp = 0x10C9A, .status = .mapped, .mapping = &.{0x10CDA}, .status2 = .none, }, + .{ .cp = 0x10C9B, .status = .mapped, .mapping = &.{0x10CDB}, .status2 = .none, }, + .{ .cp = 0x10C9C, .status = .mapped, .mapping = &.{0x10CDC}, .status2 = .none, }, + .{ .cp = 0x10C9D, .status = .mapped, .mapping = &.{0x10CDD}, .status2 = .none, }, + .{ .cp = 0x10C9E, .status = .mapped, .mapping = &.{0x10CDE}, .status2 = .none, }, + .{ .cp = 0x10C9F, .status = .mapped, .mapping = &.{0x10CDF}, .status2 = .none, }, + .{ .cp = 0x10CA0, .status = .mapped, .mapping = &.{0x10CE0}, .status2 = .none, }, + .{ .cp = 0x10CA1, .status = .mapped, .mapping = &.{0x10CE1}, .status2 = .none, }, + .{ .cp = 0x10CA2, .status = .mapped, .mapping = &.{0x10CE2}, .status2 = .none, }, + .{ .cp = 0x10CA3, .status = .mapped, .mapping = &.{0x10CE3}, .status2 = .none, }, + .{ .cp = 0x10CA4, .status = .mapped, .mapping = &.{0x10CE4}, .status2 = .none, }, + .{ .cp = 0x10CA5, .status = .mapped, .mapping = &.{0x10CE5}, .status2 = .none, }, + .{ .cp = 0x10CA6, .status = .mapped, .mapping = &.{0x10CE6}, .status2 = .none, }, + .{ .cp = 0x10CA7, .status = .mapped, .mapping = &.{0x10CE7}, .status2 = .none, }, + .{ .cp = 0x10CA8, .status = .mapped, .mapping = &.{0x10CE8}, .status2 = .none, }, + .{ .cp = 0x10CA9, .status = .mapped, .mapping = &.{0x10CE9}, .status2 = .none, }, + .{ .cp = 0x10CAA, .status = .mapped, .mapping = &.{0x10CEA}, .status2 = .none, }, + .{ .cp = 0x10CAB, .status = .mapped, .mapping = &.{0x10CEB}, .status2 = .none, }, + .{ .cp = 0x10CAC, .status = .mapped, .mapping = &.{0x10CEC}, .status2 = .none, }, + .{ .cp = 0x10CAD, .status = .mapped, .mapping = &.{0x10CED}, .status2 = .none, }, + .{ .cp = 0x10CAE, .status = .mapped, .mapping = &.{0x10CEE}, .status2 = .none, }, + .{ .cp = 0x10CAF, .status = .mapped, .mapping = &.{0x10CEF}, .status2 = .none, }, + .{ .cp = 0x10CB0, .status = .mapped, .mapping = &.{0x10CF0}, .status2 = .none, }, + .{ .cp = 0x10CB1, .status = .mapped, .mapping = &.{0x10CF1}, .status2 = .none, }, + .{ .cp = 0x10CB2, .status = .mapped, .mapping = &.{0x10CF2}, .status2 = .none, }, + .{ .cp = 0x10D50, .status = .mapped, .mapping = &.{0x10D70}, .status2 = .none, }, + .{ .cp = 0x10D51, .status = .mapped, .mapping = &.{0x10D71}, .status2 = .none, }, + .{ .cp = 0x10D52, .status = .mapped, .mapping = &.{0x10D72}, .status2 = .none, }, + .{ .cp = 0x10D53, .status = .mapped, .mapping = &.{0x10D73}, .status2 = .none, }, + .{ .cp = 0x10D54, .status = .mapped, .mapping = &.{0x10D74}, .status2 = .none, }, + .{ .cp = 0x10D55, .status = .mapped, .mapping = &.{0x10D75}, .status2 = .none, }, + .{ .cp = 0x10D56, .status = .mapped, .mapping = &.{0x10D76}, .status2 = .none, }, + .{ .cp = 0x10D57, .status = .mapped, .mapping = &.{0x10D77}, .status2 = .none, }, + .{ .cp = 0x10D58, .status = .mapped, .mapping = &.{0x10D78}, .status2 = .none, }, + .{ .cp = 0x10D59, .status = .mapped, .mapping = &.{0x10D79}, .status2 = .none, }, + .{ .cp = 0x10D5A, .status = .mapped, .mapping = &.{0x10D7A}, .status2 = .none, }, + .{ .cp = 0x10D5B, .status = .mapped, .mapping = &.{0x10D7B}, .status2 = .none, }, + .{ .cp = 0x10D5C, .status = .mapped, .mapping = &.{0x10D7C}, .status2 = .none, }, + .{ .cp = 0x10D5D, .status = .mapped, .mapping = &.{0x10D7D}, .status2 = .none, }, + .{ .cp = 0x10D5E, .status = .mapped, .mapping = &.{0x10D7E}, .status2 = .none, }, + .{ .cp = 0x10D5F, .status = .mapped, .mapping = &.{0x10D7F}, .status2 = .none, }, + .{ .cp = 0x10D60, .status = .mapped, .mapping = &.{0x10D80}, .status2 = .none, }, + .{ .cp = 0x10D61, .status = .mapped, .mapping = &.{0x10D81}, .status2 = .none, }, + .{ .cp = 0x10D62, .status = .mapped, .mapping = &.{0x10D82}, .status2 = .none, }, + .{ .cp = 0x10D63, .status = .mapped, .mapping = &.{0x10D83}, .status2 = .none, }, + .{ .cp = 0x10D64, .status = .mapped, .mapping = &.{0x10D84}, .status2 = .none, }, + .{ .cp = 0x10D65, .status = .mapped, .mapping = &.{0x10D85}, .status2 = .none, }, + .{ .cp = 0x10D6E, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .cp = 0x10E7F, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x10EAA, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x10EAD, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .cp = 0x10EFC, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x10F27, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x1107F, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x110BD, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x110C2, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x110CD, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x11135, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x11147, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x11176, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x111CD, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .cp = 0x111DA, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x111DB, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .cp = 0x111DC, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x111E0, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x11212, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x1123E, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x11287, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x11288, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x11289, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x1128E, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x1129E, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x112A9, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .cp = 0x11300, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x11304, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x11329, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x11331, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x11334, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x1133A, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x1133B, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x11350, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x11357, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x1138A, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x1138B, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x1138E, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x1138F, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x113B6, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x113C1, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x113C2, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x113C5, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x113C6, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x113CB, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x113D6, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x1145A, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .cp = 0x1145B, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .cp = 0x1145C, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x1145D, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .cp = 0x1145E, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x1145F, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x114C6, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .cp = 0x114C7, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x11644, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x116B8, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x116B9, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .cp = 0x1171A, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x1183B, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .cp = 0x118A0, .status = .mapped, .mapping = &.{0x118C0}, .status2 = .none, }, + .{ .cp = 0x118A1, .status = .mapped, .mapping = &.{0x118C1}, .status2 = .none, }, + .{ .cp = 0x118A2, .status = .mapped, .mapping = &.{0x118C2}, .status2 = .none, }, + .{ .cp = 0x118A3, .status = .mapped, .mapping = &.{0x118C3}, .status2 = .none, }, + .{ .cp = 0x118A4, .status = .mapped, .mapping = &.{0x118C4}, .status2 = .none, }, + .{ .cp = 0x118A5, .status = .mapped, .mapping = &.{0x118C5}, .status2 = .none, }, + .{ .cp = 0x118A6, .status = .mapped, .mapping = &.{0x118C6}, .status2 = .none, }, + .{ .cp = 0x118A7, .status = .mapped, .mapping = &.{0x118C7}, .status2 = .none, }, + .{ .cp = 0x118A8, .status = .mapped, .mapping = &.{0x118C8}, .status2 = .none, }, + .{ .cp = 0x118A9, .status = .mapped, .mapping = &.{0x118C9}, .status2 = .none, }, + .{ .cp = 0x118AA, .status = .mapped, .mapping = &.{0x118CA}, .status2 = .none, }, + .{ .cp = 0x118AB, .status = .mapped, .mapping = &.{0x118CB}, .status2 = .none, }, + .{ .cp = 0x118AC, .status = .mapped, .mapping = &.{0x118CC}, .status2 = .none, }, + .{ .cp = 0x118AD, .status = .mapped, .mapping = &.{0x118CD}, .status2 = .none, }, + .{ .cp = 0x118AE, .status = .mapped, .mapping = &.{0x118CE}, .status2 = .none, }, + .{ .cp = 0x118AF, .status = .mapped, .mapping = &.{0x118CF}, .status2 = .none, }, + .{ .cp = 0x118B0, .status = .mapped, .mapping = &.{0x118D0}, .status2 = .none, }, + .{ .cp = 0x118B1, .status = .mapped, .mapping = &.{0x118D1}, .status2 = .none, }, + .{ .cp = 0x118B2, .status = .mapped, .mapping = &.{0x118D2}, .status2 = .none, }, + .{ .cp = 0x118B3, .status = .mapped, .mapping = &.{0x118D3}, .status2 = .none, }, + .{ .cp = 0x118B4, .status = .mapped, .mapping = &.{0x118D4}, .status2 = .none, }, + .{ .cp = 0x118B5, .status = .mapped, .mapping = &.{0x118D5}, .status2 = .none, }, + .{ .cp = 0x118B6, .status = .mapped, .mapping = &.{0x118D6}, .status2 = .none, }, + .{ .cp = 0x118B7, .status = .mapped, .mapping = &.{0x118D7}, .status2 = .none, }, + .{ .cp = 0x118B8, .status = .mapped, .mapping = &.{0x118D8}, .status2 = .none, }, + .{ .cp = 0x118B9, .status = .mapped, .mapping = &.{0x118D9}, .status2 = .none, }, + .{ .cp = 0x118BA, .status = .mapped, .mapping = &.{0x118DA}, .status2 = .none, }, + .{ .cp = 0x118BB, .status = .mapped, .mapping = &.{0x118DB}, .status2 = .none, }, + .{ .cp = 0x118BC, .status = .mapped, .mapping = &.{0x118DC}, .status2 = .none, }, + .{ .cp = 0x118BD, .status = .mapped, .mapping = &.{0x118DD}, .status2 = .none, }, + .{ .cp = 0x118BE, .status = .mapped, .mapping = &.{0x118DE}, .status2 = .none, }, + .{ .cp = 0x118BF, .status = .mapped, .mapping = &.{0x118DF}, .status2 = .none, }, + .{ .cp = 0x118FF, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x11909, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x11914, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x11917, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x11936, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x119E2, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .cp = 0x11A47, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x11A9D, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x11BE1, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .cp = 0x11C09, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x11C37, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x11CA8, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x11D07, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x11D0A, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x11D3A, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x11D3B, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x11D3E, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x11D66, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x11D69, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x11D8F, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x11D92, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x11F11, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x11F5A, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x11FB0, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x11FFF, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .cp = 0x12399, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x1246F, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x12474, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .cp = 0x1342F, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x16A5F, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x16ABF, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x16AF5, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .cp = 0x16B5A, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x16B62, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x16E40, .status = .mapped, .mapping = &.{0x16E60}, .status2 = .none, }, + .{ .cp = 0x16E41, .status = .mapped, .mapping = &.{0x16E61}, .status2 = .none, }, + .{ .cp = 0x16E42, .status = .mapped, .mapping = &.{0x16E62}, .status2 = .none, }, + .{ .cp = 0x16E43, .status = .mapped, .mapping = &.{0x16E63}, .status2 = .none, }, + .{ .cp = 0x16E44, .status = .mapped, .mapping = &.{0x16E64}, .status2 = .none, }, + .{ .cp = 0x16E45, .status = .mapped, .mapping = &.{0x16E65}, .status2 = .none, }, + .{ .cp = 0x16E46, .status = .mapped, .mapping = &.{0x16E66}, .status2 = .none, }, + .{ .cp = 0x16E47, .status = .mapped, .mapping = &.{0x16E67}, .status2 = .none, }, + .{ .cp = 0x16E48, .status = .mapped, .mapping = &.{0x16E68}, .status2 = .none, }, + .{ .cp = 0x16E49, .status = .mapped, .mapping = &.{0x16E69}, .status2 = .none, }, + .{ .cp = 0x16E4A, .status = .mapped, .mapping = &.{0x16E6A}, .status2 = .none, }, + .{ .cp = 0x16E4B, .status = .mapped, .mapping = &.{0x16E6B}, .status2 = .none, }, + .{ .cp = 0x16E4C, .status = .mapped, .mapping = &.{0x16E6C}, .status2 = .none, }, + .{ .cp = 0x16E4D, .status = .mapped, .mapping = &.{0x16E6D}, .status2 = .none, }, + .{ .cp = 0x16E4E, .status = .mapped, .mapping = &.{0x16E6E}, .status2 = .none, }, + .{ .cp = 0x16E4F, .status = .mapped, .mapping = &.{0x16E6F}, .status2 = .none, }, + .{ .cp = 0x16E50, .status = .mapped, .mapping = &.{0x16E70}, .status2 = .none, }, + .{ .cp = 0x16E51, .status = .mapped, .mapping = &.{0x16E71}, .status2 = .none, }, + .{ .cp = 0x16E52, .status = .mapped, .mapping = &.{0x16E72}, .status2 = .none, }, + .{ .cp = 0x16E53, .status = .mapped, .mapping = &.{0x16E73}, .status2 = .none, }, + .{ .cp = 0x16E54, .status = .mapped, .mapping = &.{0x16E74}, .status2 = .none, }, + .{ .cp = 0x16E55, .status = .mapped, .mapping = &.{0x16E75}, .status2 = .none, }, + .{ .cp = 0x16E56, .status = .mapped, .mapping = &.{0x16E76}, .status2 = .none, }, + .{ .cp = 0x16E57, .status = .mapped, .mapping = &.{0x16E77}, .status2 = .none, }, + .{ .cp = 0x16E58, .status = .mapped, .mapping = &.{0x16E78}, .status2 = .none, }, + .{ .cp = 0x16E59, .status = .mapped, .mapping = &.{0x16E79}, .status2 = .none, }, + .{ .cp = 0x16E5A, .status = .mapped, .mapping = &.{0x16E7A}, .status2 = .none, }, + .{ .cp = 0x16E5B, .status = .mapped, .mapping = &.{0x16E7B}, .status2 = .none, }, + .{ .cp = 0x16E5C, .status = .mapped, .mapping = &.{0x16E7C}, .status2 = .none, }, + .{ .cp = 0x16E5D, .status = .mapped, .mapping = &.{0x16E7D}, .status2 = .none, }, + .{ .cp = 0x16E5E, .status = .mapped, .mapping = &.{0x16E7E}, .status2 = .none, }, + .{ .cp = 0x16E5F, .status = .mapped, .mapping = &.{0x16E7F}, .status2 = .none, }, + .{ .cp = 0x16EA0, .status = .mapped, .mapping = &.{0x16EBB}, .status2 = .none, }, + .{ .cp = 0x16EA1, .status = .mapped, .mapping = &.{0x16EBC}, .status2 = .none, }, + .{ .cp = 0x16EA2, .status = .mapped, .mapping = &.{0x16EBD}, .status2 = .none, }, + .{ .cp = 0x16EA3, .status = .mapped, .mapping = &.{0x16EBE}, .status2 = .none, }, + .{ .cp = 0x16EA4, .status = .mapped, .mapping = &.{0x16EBF}, .status2 = .none, }, + .{ .cp = 0x16EA5, .status = .mapped, .mapping = &.{0x16EC0}, .status2 = .none, }, + .{ .cp = 0x16EA6, .status = .mapped, .mapping = &.{0x16EC1}, .status2 = .none, }, + .{ .cp = 0x16EA7, .status = .mapped, .mapping = &.{0x16EC2}, .status2 = .none, }, + .{ .cp = 0x16EA8, .status = .mapped, .mapping = &.{0x16EC3}, .status2 = .none, }, + .{ .cp = 0x16EA9, .status = .mapped, .mapping = &.{0x16EC4}, .status2 = .none, }, + .{ .cp = 0x16EAA, .status = .mapped, .mapping = &.{0x16EC5}, .status2 = .none, }, + .{ .cp = 0x16EAB, .status = .mapped, .mapping = &.{0x16EC6}, .status2 = .none, }, + .{ .cp = 0x16EAC, .status = .mapped, .mapping = &.{0x16EC7}, .status2 = .none, }, + .{ .cp = 0x16EAD, .status = .mapped, .mapping = &.{0x16EC8}, .status2 = .none, }, + .{ .cp = 0x16EAE, .status = .mapped, .mapping = &.{0x16EC9}, .status2 = .none, }, + .{ .cp = 0x16EAF, .status = .mapped, .mapping = &.{0x16ECA}, .status2 = .none, }, + .{ .cp = 0x16EB0, .status = .mapped, .mapping = &.{0x16ECB}, .status2 = .none, }, + .{ .cp = 0x16EB1, .status = .mapped, .mapping = &.{0x16ECC}, .status2 = .none, }, + .{ .cp = 0x16EB2, .status = .mapped, .mapping = &.{0x16ECD}, .status2 = .none, }, + .{ .cp = 0x16EB3, .status = .mapped, .mapping = &.{0x16ECE}, .status2 = .none, }, + .{ .cp = 0x16EB4, .status = .mapped, .mapping = &.{0x16ECF}, .status2 = .none, }, + .{ .cp = 0x16EB5, .status = .mapped, .mapping = &.{0x16ED0}, .status2 = .none, }, + .{ .cp = 0x16EB6, .status = .mapped, .mapping = &.{0x16ED1}, .status2 = .none, }, + .{ .cp = 0x16EB7, .status = .mapped, .mapping = &.{0x16ED2}, .status2 = .none, }, + .{ .cp = 0x16EB8, .status = .mapped, .mapping = &.{0x16ED3}, .status2 = .none, }, + .{ .cp = 0x16F4F, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x16FE0, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x16FE1, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x16FE2, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .cp = 0x16FE3, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x16FE4, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x18CFF, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x1AFF4, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x1AFFC, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x1AFFF, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x1B132, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x1B155, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x1BC9C, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .cp = 0x1BC9F, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .cp = 0x1CCD6, .status = .mapped, .mapping = &.{0x0061}, .status2 = .none, }, + .{ .cp = 0x1CCD7, .status = .mapped, .mapping = &.{0x0062}, .status2 = .none, }, + .{ .cp = 0x1CCD8, .status = .mapped, .mapping = &.{0x0063}, .status2 = .none, }, + .{ .cp = 0x1CCD9, .status = .mapped, .mapping = &.{0x0064}, .status2 = .none, }, + .{ .cp = 0x1CCDA, .status = .mapped, .mapping = &.{0x0065}, .status2 = .none, }, + .{ .cp = 0x1CCDB, .status = .mapped, .mapping = &.{0x0066}, .status2 = .none, }, + .{ .cp = 0x1CCDC, .status = .mapped, .mapping = &.{0x0067}, .status2 = .none, }, + .{ .cp = 0x1CCDD, .status = .mapped, .mapping = &.{0x0068}, .status2 = .none, }, + .{ .cp = 0x1CCDE, .status = .mapped, .mapping = &.{0x0069}, .status2 = .none, }, + .{ .cp = 0x1CCDF, .status = .mapped, .mapping = &.{0x006A}, .status2 = .none, }, + .{ .cp = 0x1CCE0, .status = .mapped, .mapping = &.{0x006B}, .status2 = .none, }, + .{ .cp = 0x1CCE1, .status = .mapped, .mapping = &.{0x006C}, .status2 = .none, }, + .{ .cp = 0x1CCE2, .status = .mapped, .mapping = &.{0x006D}, .status2 = .none, }, + .{ .cp = 0x1CCE3, .status = .mapped, .mapping = &.{0x006E}, .status2 = .none, }, + .{ .cp = 0x1CCE4, .status = .mapped, .mapping = &.{0x006F}, .status2 = .none, }, + .{ .cp = 0x1CCE5, .status = .mapped, .mapping = &.{0x0070}, .status2 = .none, }, + .{ .cp = 0x1CCE6, .status = .mapped, .mapping = &.{0x0071}, .status2 = .none, }, + .{ .cp = 0x1CCE7, .status = .mapped, .mapping = &.{0x0072}, .status2 = .none, }, + .{ .cp = 0x1CCE8, .status = .mapped, .mapping = &.{0x0073}, .status2 = .none, }, + .{ .cp = 0x1CCE9, .status = .mapped, .mapping = &.{0x0074}, .status2 = .none, }, + .{ .cp = 0x1CCEA, .status = .mapped, .mapping = &.{0x0075}, .status2 = .none, }, + .{ .cp = 0x1CCEB, .status = .mapped, .mapping = &.{0x0076}, .status2 = .none, }, + .{ .cp = 0x1CCEC, .status = .mapped, .mapping = &.{0x0077}, .status2 = .none, }, + .{ .cp = 0x1CCED, .status = .mapped, .mapping = &.{0x0078}, .status2 = .none, }, + .{ .cp = 0x1CCEE, .status = .mapped, .mapping = &.{0x0079}, .status2 = .none, }, + .{ .cp = 0x1CCEF, .status = .mapped, .mapping = &.{0x007A}, .status2 = .none, }, + .{ .cp = 0x1CCF0, .status = .mapped, .mapping = &.{0x0030}, .status2 = .none, }, + .{ .cp = 0x1CCF1, .status = .mapped, .mapping = &.{0x0031}, .status2 = .none, }, + .{ .cp = 0x1CCF2, .status = .mapped, .mapping = &.{0x0032}, .status2 = .none, }, + .{ .cp = 0x1CCF3, .status = .mapped, .mapping = &.{0x0033}, .status2 = .none, }, + .{ .cp = 0x1CCF4, .status = .mapped, .mapping = &.{0x0034}, .status2 = .none, }, + .{ .cp = 0x1CCF5, .status = .mapped, .mapping = &.{0x0035}, .status2 = .none, }, + .{ .cp = 0x1CCF6, .status = .mapped, .mapping = &.{0x0036}, .status2 = .none, }, + .{ .cp = 0x1CCF7, .status = .mapped, .mapping = &.{0x0037}, .status2 = .none, }, + .{ .cp = 0x1CCF8, .status = .mapped, .mapping = &.{0x0038}, .status2 = .none, }, + .{ .cp = 0x1CCF9, .status = .mapped, .mapping = &.{0x0039}, .status2 = .none, }, + .{ .cp = 0x1D129, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .cp = 0x1D15E, .status = .mapped, .mapping = &.{0x1D157,0x1D165}, .status2 = .none, }, + .{ .cp = 0x1D15F, .status = .mapped, .mapping = &.{0x1D158,0x1D165}, .status2 = .none, }, + .{ .cp = 0x1D160, .status = .mapped, .mapping = &.{0x1D158,0x1D165,0x1D16E}, .status2 = .none, }, + .{ .cp = 0x1D161, .status = .mapped, .mapping = &.{0x1D158,0x1D165,0x1D16F}, .status2 = .none, }, + .{ .cp = 0x1D162, .status = .mapped, .mapping = &.{0x1D158,0x1D165,0x1D170}, .status2 = .none, }, + .{ .cp = 0x1D163, .status = .mapped, .mapping = &.{0x1D158,0x1D165,0x1D171}, .status2 = .none, }, + .{ .cp = 0x1D164, .status = .mapped, .mapping = &.{0x1D158,0x1D165,0x1D172}, .status2 = .none, }, + .{ .cp = 0x1D1BB, .status = .mapped, .mapping = &.{0x1D1B9,0x1D165}, .status2 = .none, }, + .{ .cp = 0x1D1BC, .status = .mapped, .mapping = &.{0x1D1BA,0x1D165}, .status2 = .none, }, + .{ .cp = 0x1D1BD, .status = .mapped, .mapping = &.{0x1D1B9,0x1D165,0x1D16E}, .status2 = .none, }, + .{ .cp = 0x1D1BE, .status = .mapped, .mapping = &.{0x1D1BA,0x1D165,0x1D16E}, .status2 = .none, }, + .{ .cp = 0x1D1BF, .status = .mapped, .mapping = &.{0x1D1B9,0x1D165,0x1D16F}, .status2 = .none, }, + .{ .cp = 0x1D1C0, .status = .mapped, .mapping = &.{0x1D1BA,0x1D165,0x1D16F}, .status2 = .none, }, + .{ .cp = 0x1D400, .status = .mapped, .mapping = &.{0x0061}, .status2 = .none, }, + .{ .cp = 0x1D401, .status = .mapped, .mapping = &.{0x0062}, .status2 = .none, }, + .{ .cp = 0x1D402, .status = .mapped, .mapping = &.{0x0063}, .status2 = .none, }, + .{ .cp = 0x1D403, .status = .mapped, .mapping = &.{0x0064}, .status2 = .none, }, + .{ .cp = 0x1D404, .status = .mapped, .mapping = &.{0x0065}, .status2 = .none, }, + .{ .cp = 0x1D405, .status = .mapped, .mapping = &.{0x0066}, .status2 = .none, }, + .{ .cp = 0x1D406, .status = .mapped, .mapping = &.{0x0067}, .status2 = .none, }, + .{ .cp = 0x1D407, .status = .mapped, .mapping = &.{0x0068}, .status2 = .none, }, + .{ .cp = 0x1D408, .status = .mapped, .mapping = &.{0x0069}, .status2 = .none, }, + .{ .cp = 0x1D409, .status = .mapped, .mapping = &.{0x006A}, .status2 = .none, }, + .{ .cp = 0x1D40A, .status = .mapped, .mapping = &.{0x006B}, .status2 = .none, }, + .{ .cp = 0x1D40B, .status = .mapped, .mapping = &.{0x006C}, .status2 = .none, }, + .{ .cp = 0x1D40C, .status = .mapped, .mapping = &.{0x006D}, .status2 = .none, }, + .{ .cp = 0x1D40D, .status = .mapped, .mapping = &.{0x006E}, .status2 = .none, }, + .{ .cp = 0x1D40E, .status = .mapped, .mapping = &.{0x006F}, .status2 = .none, }, + .{ .cp = 0x1D40F, .status = .mapped, .mapping = &.{0x0070}, .status2 = .none, }, + .{ .cp = 0x1D410, .status = .mapped, .mapping = &.{0x0071}, .status2 = .none, }, + .{ .cp = 0x1D411, .status = .mapped, .mapping = &.{0x0072}, .status2 = .none, }, + .{ .cp = 0x1D412, .status = .mapped, .mapping = &.{0x0073}, .status2 = .none, }, + .{ .cp = 0x1D413, .status = .mapped, .mapping = &.{0x0074}, .status2 = .none, }, + .{ .cp = 0x1D414, .status = .mapped, .mapping = &.{0x0075}, .status2 = .none, }, + .{ .cp = 0x1D415, .status = .mapped, .mapping = &.{0x0076}, .status2 = .none, }, + .{ .cp = 0x1D416, .status = .mapped, .mapping = &.{0x0077}, .status2 = .none, }, + .{ .cp = 0x1D417, .status = .mapped, .mapping = &.{0x0078}, .status2 = .none, }, + .{ .cp = 0x1D418, .status = .mapped, .mapping = &.{0x0079}, .status2 = .none, }, + .{ .cp = 0x1D419, .status = .mapped, .mapping = &.{0x007A}, .status2 = .none, }, + .{ .cp = 0x1D41A, .status = .mapped, .mapping = &.{0x0061}, .status2 = .none, }, + .{ .cp = 0x1D41B, .status = .mapped, .mapping = &.{0x0062}, .status2 = .none, }, + .{ .cp = 0x1D41C, .status = .mapped, .mapping = &.{0x0063}, .status2 = .none, }, + .{ .cp = 0x1D41D, .status = .mapped, .mapping = &.{0x0064}, .status2 = .none, }, + .{ .cp = 0x1D41E, .status = .mapped, .mapping = &.{0x0065}, .status2 = .none, }, + .{ .cp = 0x1D41F, .status = .mapped, .mapping = &.{0x0066}, .status2 = .none, }, + .{ .cp = 0x1D420, .status = .mapped, .mapping = &.{0x0067}, .status2 = .none, }, + .{ .cp = 0x1D421, .status = .mapped, .mapping = &.{0x0068}, .status2 = .none, }, + .{ .cp = 0x1D422, .status = .mapped, .mapping = &.{0x0069}, .status2 = .none, }, + .{ .cp = 0x1D423, .status = .mapped, .mapping = &.{0x006A}, .status2 = .none, }, + .{ .cp = 0x1D424, .status = .mapped, .mapping = &.{0x006B}, .status2 = .none, }, + .{ .cp = 0x1D425, .status = .mapped, .mapping = &.{0x006C}, .status2 = .none, }, + .{ .cp = 0x1D426, .status = .mapped, .mapping = &.{0x006D}, .status2 = .none, }, + .{ .cp = 0x1D427, .status = .mapped, .mapping = &.{0x006E}, .status2 = .none, }, + .{ .cp = 0x1D428, .status = .mapped, .mapping = &.{0x006F}, .status2 = .none, }, + .{ .cp = 0x1D429, .status = .mapped, .mapping = &.{0x0070}, .status2 = .none, }, + .{ .cp = 0x1D42A, .status = .mapped, .mapping = &.{0x0071}, .status2 = .none, }, + .{ .cp = 0x1D42B, .status = .mapped, .mapping = &.{0x0072}, .status2 = .none, }, + .{ .cp = 0x1D42C, .status = .mapped, .mapping = &.{0x0073}, .status2 = .none, }, + .{ .cp = 0x1D42D, .status = .mapped, .mapping = &.{0x0074}, .status2 = .none, }, + .{ .cp = 0x1D42E, .status = .mapped, .mapping = &.{0x0075}, .status2 = .none, }, + .{ .cp = 0x1D42F, .status = .mapped, .mapping = &.{0x0076}, .status2 = .none, }, + .{ .cp = 0x1D430, .status = .mapped, .mapping = &.{0x0077}, .status2 = .none, }, + .{ .cp = 0x1D431, .status = .mapped, .mapping = &.{0x0078}, .status2 = .none, }, + .{ .cp = 0x1D432, .status = .mapped, .mapping = &.{0x0079}, .status2 = .none, }, + .{ .cp = 0x1D433, .status = .mapped, .mapping = &.{0x007A}, .status2 = .none, }, + .{ .cp = 0x1D434, .status = .mapped, .mapping = &.{0x0061}, .status2 = .none, }, + .{ .cp = 0x1D435, .status = .mapped, .mapping = &.{0x0062}, .status2 = .none, }, + .{ .cp = 0x1D436, .status = .mapped, .mapping = &.{0x0063}, .status2 = .none, }, + .{ .cp = 0x1D437, .status = .mapped, .mapping = &.{0x0064}, .status2 = .none, }, + .{ .cp = 0x1D438, .status = .mapped, .mapping = &.{0x0065}, .status2 = .none, }, + .{ .cp = 0x1D439, .status = .mapped, .mapping = &.{0x0066}, .status2 = .none, }, + .{ .cp = 0x1D43A, .status = .mapped, .mapping = &.{0x0067}, .status2 = .none, }, + .{ .cp = 0x1D43B, .status = .mapped, .mapping = &.{0x0068}, .status2 = .none, }, + .{ .cp = 0x1D43C, .status = .mapped, .mapping = &.{0x0069}, .status2 = .none, }, + .{ .cp = 0x1D43D, .status = .mapped, .mapping = &.{0x006A}, .status2 = .none, }, + .{ .cp = 0x1D43E, .status = .mapped, .mapping = &.{0x006B}, .status2 = .none, }, + .{ .cp = 0x1D43F, .status = .mapped, .mapping = &.{0x006C}, .status2 = .none, }, + .{ .cp = 0x1D440, .status = .mapped, .mapping = &.{0x006D}, .status2 = .none, }, + .{ .cp = 0x1D441, .status = .mapped, .mapping = &.{0x006E}, .status2 = .none, }, + .{ .cp = 0x1D442, .status = .mapped, .mapping = &.{0x006F}, .status2 = .none, }, + .{ .cp = 0x1D443, .status = .mapped, .mapping = &.{0x0070}, .status2 = .none, }, + .{ .cp = 0x1D444, .status = .mapped, .mapping = &.{0x0071}, .status2 = .none, }, + .{ .cp = 0x1D445, .status = .mapped, .mapping = &.{0x0072}, .status2 = .none, }, + .{ .cp = 0x1D446, .status = .mapped, .mapping = &.{0x0073}, .status2 = .none, }, + .{ .cp = 0x1D447, .status = .mapped, .mapping = &.{0x0074}, .status2 = .none, }, + .{ .cp = 0x1D448, .status = .mapped, .mapping = &.{0x0075}, .status2 = .none, }, + .{ .cp = 0x1D449, .status = .mapped, .mapping = &.{0x0076}, .status2 = .none, }, + .{ .cp = 0x1D44A, .status = .mapped, .mapping = &.{0x0077}, .status2 = .none, }, + .{ .cp = 0x1D44B, .status = .mapped, .mapping = &.{0x0078}, .status2 = .none, }, + .{ .cp = 0x1D44C, .status = .mapped, .mapping = &.{0x0079}, .status2 = .none, }, + .{ .cp = 0x1D44D, .status = .mapped, .mapping = &.{0x007A}, .status2 = .none, }, + .{ .cp = 0x1D44E, .status = .mapped, .mapping = &.{0x0061}, .status2 = .none, }, + .{ .cp = 0x1D44F, .status = .mapped, .mapping = &.{0x0062}, .status2 = .none, }, + .{ .cp = 0x1D450, .status = .mapped, .mapping = &.{0x0063}, .status2 = .none, }, + .{ .cp = 0x1D451, .status = .mapped, .mapping = &.{0x0064}, .status2 = .none, }, + .{ .cp = 0x1D452, .status = .mapped, .mapping = &.{0x0065}, .status2 = .none, }, + .{ .cp = 0x1D453, .status = .mapped, .mapping = &.{0x0066}, .status2 = .none, }, + .{ .cp = 0x1D454, .status = .mapped, .mapping = &.{0x0067}, .status2 = .none, }, + .{ .cp = 0x1D455, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x1D456, .status = .mapped, .mapping = &.{0x0069}, .status2 = .none, }, + .{ .cp = 0x1D457, .status = .mapped, .mapping = &.{0x006A}, .status2 = .none, }, + .{ .cp = 0x1D458, .status = .mapped, .mapping = &.{0x006B}, .status2 = .none, }, + .{ .cp = 0x1D459, .status = .mapped, .mapping = &.{0x006C}, .status2 = .none, }, + .{ .cp = 0x1D45A, .status = .mapped, .mapping = &.{0x006D}, .status2 = .none, }, + .{ .cp = 0x1D45B, .status = .mapped, .mapping = &.{0x006E}, .status2 = .none, }, + .{ .cp = 0x1D45C, .status = .mapped, .mapping = &.{0x006F}, .status2 = .none, }, + .{ .cp = 0x1D45D, .status = .mapped, .mapping = &.{0x0070}, .status2 = .none, }, + .{ .cp = 0x1D45E, .status = .mapped, .mapping = &.{0x0071}, .status2 = .none, }, + .{ .cp = 0x1D45F, .status = .mapped, .mapping = &.{0x0072}, .status2 = .none, }, + .{ .cp = 0x1D460, .status = .mapped, .mapping = &.{0x0073}, .status2 = .none, }, + .{ .cp = 0x1D461, .status = .mapped, .mapping = &.{0x0074}, .status2 = .none, }, + .{ .cp = 0x1D462, .status = .mapped, .mapping = &.{0x0075}, .status2 = .none, }, + .{ .cp = 0x1D463, .status = .mapped, .mapping = &.{0x0076}, .status2 = .none, }, + .{ .cp = 0x1D464, .status = .mapped, .mapping = &.{0x0077}, .status2 = .none, }, + .{ .cp = 0x1D465, .status = .mapped, .mapping = &.{0x0078}, .status2 = .none, }, + .{ .cp = 0x1D466, .status = .mapped, .mapping = &.{0x0079}, .status2 = .none, }, + .{ .cp = 0x1D467, .status = .mapped, .mapping = &.{0x007A}, .status2 = .none, }, + .{ .cp = 0x1D468, .status = .mapped, .mapping = &.{0x0061}, .status2 = .none, }, + .{ .cp = 0x1D469, .status = .mapped, .mapping = &.{0x0062}, .status2 = .none, }, + .{ .cp = 0x1D46A, .status = .mapped, .mapping = &.{0x0063}, .status2 = .none, }, + .{ .cp = 0x1D46B, .status = .mapped, .mapping = &.{0x0064}, .status2 = .none, }, + .{ .cp = 0x1D46C, .status = .mapped, .mapping = &.{0x0065}, .status2 = .none, }, + .{ .cp = 0x1D46D, .status = .mapped, .mapping = &.{0x0066}, .status2 = .none, }, + .{ .cp = 0x1D46E, .status = .mapped, .mapping = &.{0x0067}, .status2 = .none, }, + .{ .cp = 0x1D46F, .status = .mapped, .mapping = &.{0x0068}, .status2 = .none, }, + .{ .cp = 0x1D470, .status = .mapped, .mapping = &.{0x0069}, .status2 = .none, }, + .{ .cp = 0x1D471, .status = .mapped, .mapping = &.{0x006A}, .status2 = .none, }, + .{ .cp = 0x1D472, .status = .mapped, .mapping = &.{0x006B}, .status2 = .none, }, + .{ .cp = 0x1D473, .status = .mapped, .mapping = &.{0x006C}, .status2 = .none, }, + .{ .cp = 0x1D474, .status = .mapped, .mapping = &.{0x006D}, .status2 = .none, }, + .{ .cp = 0x1D475, .status = .mapped, .mapping = &.{0x006E}, .status2 = .none, }, + .{ .cp = 0x1D476, .status = .mapped, .mapping = &.{0x006F}, .status2 = .none, }, + .{ .cp = 0x1D477, .status = .mapped, .mapping = &.{0x0070}, .status2 = .none, }, + .{ .cp = 0x1D478, .status = .mapped, .mapping = &.{0x0071}, .status2 = .none, }, + .{ .cp = 0x1D479, .status = .mapped, .mapping = &.{0x0072}, .status2 = .none, }, + .{ .cp = 0x1D47A, .status = .mapped, .mapping = &.{0x0073}, .status2 = .none, }, + .{ .cp = 0x1D47B, .status = .mapped, .mapping = &.{0x0074}, .status2 = .none, }, + .{ .cp = 0x1D47C, .status = .mapped, .mapping = &.{0x0075}, .status2 = .none, }, + .{ .cp = 0x1D47D, .status = .mapped, .mapping = &.{0x0076}, .status2 = .none, }, + .{ .cp = 0x1D47E, .status = .mapped, .mapping = &.{0x0077}, .status2 = .none, }, + .{ .cp = 0x1D47F, .status = .mapped, .mapping = &.{0x0078}, .status2 = .none, }, + .{ .cp = 0x1D480, .status = .mapped, .mapping = &.{0x0079}, .status2 = .none, }, + .{ .cp = 0x1D481, .status = .mapped, .mapping = &.{0x007A}, .status2 = .none, }, + .{ .cp = 0x1D482, .status = .mapped, .mapping = &.{0x0061}, .status2 = .none, }, + .{ .cp = 0x1D483, .status = .mapped, .mapping = &.{0x0062}, .status2 = .none, }, + .{ .cp = 0x1D484, .status = .mapped, .mapping = &.{0x0063}, .status2 = .none, }, + .{ .cp = 0x1D485, .status = .mapped, .mapping = &.{0x0064}, .status2 = .none, }, + .{ .cp = 0x1D486, .status = .mapped, .mapping = &.{0x0065}, .status2 = .none, }, + .{ .cp = 0x1D487, .status = .mapped, .mapping = &.{0x0066}, .status2 = .none, }, + .{ .cp = 0x1D488, .status = .mapped, .mapping = &.{0x0067}, .status2 = .none, }, + .{ .cp = 0x1D489, .status = .mapped, .mapping = &.{0x0068}, .status2 = .none, }, + .{ .cp = 0x1D48A, .status = .mapped, .mapping = &.{0x0069}, .status2 = .none, }, + .{ .cp = 0x1D48B, .status = .mapped, .mapping = &.{0x006A}, .status2 = .none, }, + .{ .cp = 0x1D48C, .status = .mapped, .mapping = &.{0x006B}, .status2 = .none, }, + .{ .cp = 0x1D48D, .status = .mapped, .mapping = &.{0x006C}, .status2 = .none, }, + .{ .cp = 0x1D48E, .status = .mapped, .mapping = &.{0x006D}, .status2 = .none, }, + .{ .cp = 0x1D48F, .status = .mapped, .mapping = &.{0x006E}, .status2 = .none, }, + .{ .cp = 0x1D490, .status = .mapped, .mapping = &.{0x006F}, .status2 = .none, }, + .{ .cp = 0x1D491, .status = .mapped, .mapping = &.{0x0070}, .status2 = .none, }, + .{ .cp = 0x1D492, .status = .mapped, .mapping = &.{0x0071}, .status2 = .none, }, + .{ .cp = 0x1D493, .status = .mapped, .mapping = &.{0x0072}, .status2 = .none, }, + .{ .cp = 0x1D494, .status = .mapped, .mapping = &.{0x0073}, .status2 = .none, }, + .{ .cp = 0x1D495, .status = .mapped, .mapping = &.{0x0074}, .status2 = .none, }, + .{ .cp = 0x1D496, .status = .mapped, .mapping = &.{0x0075}, .status2 = .none, }, + .{ .cp = 0x1D497, .status = .mapped, .mapping = &.{0x0076}, .status2 = .none, }, + .{ .cp = 0x1D498, .status = .mapped, .mapping = &.{0x0077}, .status2 = .none, }, + .{ .cp = 0x1D499, .status = .mapped, .mapping = &.{0x0078}, .status2 = .none, }, + .{ .cp = 0x1D49A, .status = .mapped, .mapping = &.{0x0079}, .status2 = .none, }, + .{ .cp = 0x1D49B, .status = .mapped, .mapping = &.{0x007A}, .status2 = .none, }, + .{ .cp = 0x1D49C, .status = .mapped, .mapping = &.{0x0061}, .status2 = .none, }, + .{ .cp = 0x1D49D, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x1D49E, .status = .mapped, .mapping = &.{0x0063}, .status2 = .none, }, + .{ .cp = 0x1D49F, .status = .mapped, .mapping = &.{0x0064}, .status2 = .none, }, + .{ .cp = 0x1D4A2, .status = .mapped, .mapping = &.{0x0067}, .status2 = .none, }, + .{ .cp = 0x1D4A5, .status = .mapped, .mapping = &.{0x006A}, .status2 = .none, }, + .{ .cp = 0x1D4A6, .status = .mapped, .mapping = &.{0x006B}, .status2 = .none, }, + .{ .cp = 0x1D4A9, .status = .mapped, .mapping = &.{0x006E}, .status2 = .none, }, + .{ .cp = 0x1D4AA, .status = .mapped, .mapping = &.{0x006F}, .status2 = .none, }, + .{ .cp = 0x1D4AB, .status = .mapped, .mapping = &.{0x0070}, .status2 = .none, }, + .{ .cp = 0x1D4AC, .status = .mapped, .mapping = &.{0x0071}, .status2 = .none, }, + .{ .cp = 0x1D4AD, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x1D4AE, .status = .mapped, .mapping = &.{0x0073}, .status2 = .none, }, + .{ .cp = 0x1D4AF, .status = .mapped, .mapping = &.{0x0074}, .status2 = .none, }, + .{ .cp = 0x1D4B0, .status = .mapped, .mapping = &.{0x0075}, .status2 = .none, }, + .{ .cp = 0x1D4B1, .status = .mapped, .mapping = &.{0x0076}, .status2 = .none, }, + .{ .cp = 0x1D4B2, .status = .mapped, .mapping = &.{0x0077}, .status2 = .none, }, + .{ .cp = 0x1D4B3, .status = .mapped, .mapping = &.{0x0078}, .status2 = .none, }, + .{ .cp = 0x1D4B4, .status = .mapped, .mapping = &.{0x0079}, .status2 = .none, }, + .{ .cp = 0x1D4B5, .status = .mapped, .mapping = &.{0x007A}, .status2 = .none, }, + .{ .cp = 0x1D4B6, .status = .mapped, .mapping = &.{0x0061}, .status2 = .none, }, + .{ .cp = 0x1D4B7, .status = .mapped, .mapping = &.{0x0062}, .status2 = .none, }, + .{ .cp = 0x1D4B8, .status = .mapped, .mapping = &.{0x0063}, .status2 = .none, }, + .{ .cp = 0x1D4B9, .status = .mapped, .mapping = &.{0x0064}, .status2 = .none, }, + .{ .cp = 0x1D4BA, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x1D4BB, .status = .mapped, .mapping = &.{0x0066}, .status2 = .none, }, + .{ .cp = 0x1D4BC, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x1D4BD, .status = .mapped, .mapping = &.{0x0068}, .status2 = .none, }, + .{ .cp = 0x1D4BE, .status = .mapped, .mapping = &.{0x0069}, .status2 = .none, }, + .{ .cp = 0x1D4BF, .status = .mapped, .mapping = &.{0x006A}, .status2 = .none, }, + .{ .cp = 0x1D4C0, .status = .mapped, .mapping = &.{0x006B}, .status2 = .none, }, + .{ .cp = 0x1D4C1, .status = .mapped, .mapping = &.{0x006C}, .status2 = .none, }, + .{ .cp = 0x1D4C2, .status = .mapped, .mapping = &.{0x006D}, .status2 = .none, }, + .{ .cp = 0x1D4C3, .status = .mapped, .mapping = &.{0x006E}, .status2 = .none, }, + .{ .cp = 0x1D4C4, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x1D4C5, .status = .mapped, .mapping = &.{0x0070}, .status2 = .none, }, + .{ .cp = 0x1D4C6, .status = .mapped, .mapping = &.{0x0071}, .status2 = .none, }, + .{ .cp = 0x1D4C7, .status = .mapped, .mapping = &.{0x0072}, .status2 = .none, }, + .{ .cp = 0x1D4C8, .status = .mapped, .mapping = &.{0x0073}, .status2 = .none, }, + .{ .cp = 0x1D4C9, .status = .mapped, .mapping = &.{0x0074}, .status2 = .none, }, + .{ .cp = 0x1D4CA, .status = .mapped, .mapping = &.{0x0075}, .status2 = .none, }, + .{ .cp = 0x1D4CB, .status = .mapped, .mapping = &.{0x0076}, .status2 = .none, }, + .{ .cp = 0x1D4CC, .status = .mapped, .mapping = &.{0x0077}, .status2 = .none, }, + .{ .cp = 0x1D4CD, .status = .mapped, .mapping = &.{0x0078}, .status2 = .none, }, + .{ .cp = 0x1D4CE, .status = .mapped, .mapping = &.{0x0079}, .status2 = .none, }, + .{ .cp = 0x1D4CF, .status = .mapped, .mapping = &.{0x007A}, .status2 = .none, }, + .{ .cp = 0x1D4D0, .status = .mapped, .mapping = &.{0x0061}, .status2 = .none, }, + .{ .cp = 0x1D4D1, .status = .mapped, .mapping = &.{0x0062}, .status2 = .none, }, + .{ .cp = 0x1D4D2, .status = .mapped, .mapping = &.{0x0063}, .status2 = .none, }, + .{ .cp = 0x1D4D3, .status = .mapped, .mapping = &.{0x0064}, .status2 = .none, }, + .{ .cp = 0x1D4D4, .status = .mapped, .mapping = &.{0x0065}, .status2 = .none, }, + .{ .cp = 0x1D4D5, .status = .mapped, .mapping = &.{0x0066}, .status2 = .none, }, + .{ .cp = 0x1D4D6, .status = .mapped, .mapping = &.{0x0067}, .status2 = .none, }, + .{ .cp = 0x1D4D7, .status = .mapped, .mapping = &.{0x0068}, .status2 = .none, }, + .{ .cp = 0x1D4D8, .status = .mapped, .mapping = &.{0x0069}, .status2 = .none, }, + .{ .cp = 0x1D4D9, .status = .mapped, .mapping = &.{0x006A}, .status2 = .none, }, + .{ .cp = 0x1D4DA, .status = .mapped, .mapping = &.{0x006B}, .status2 = .none, }, + .{ .cp = 0x1D4DB, .status = .mapped, .mapping = &.{0x006C}, .status2 = .none, }, + .{ .cp = 0x1D4DC, .status = .mapped, .mapping = &.{0x006D}, .status2 = .none, }, + .{ .cp = 0x1D4DD, .status = .mapped, .mapping = &.{0x006E}, .status2 = .none, }, + .{ .cp = 0x1D4DE, .status = .mapped, .mapping = &.{0x006F}, .status2 = .none, }, + .{ .cp = 0x1D4DF, .status = .mapped, .mapping = &.{0x0070}, .status2 = .none, }, + .{ .cp = 0x1D4E0, .status = .mapped, .mapping = &.{0x0071}, .status2 = .none, }, + .{ .cp = 0x1D4E1, .status = .mapped, .mapping = &.{0x0072}, .status2 = .none, }, + .{ .cp = 0x1D4E2, .status = .mapped, .mapping = &.{0x0073}, .status2 = .none, }, + .{ .cp = 0x1D4E3, .status = .mapped, .mapping = &.{0x0074}, .status2 = .none, }, + .{ .cp = 0x1D4E4, .status = .mapped, .mapping = &.{0x0075}, .status2 = .none, }, + .{ .cp = 0x1D4E5, .status = .mapped, .mapping = &.{0x0076}, .status2 = .none, }, + .{ .cp = 0x1D4E6, .status = .mapped, .mapping = &.{0x0077}, .status2 = .none, }, + .{ .cp = 0x1D4E7, .status = .mapped, .mapping = &.{0x0078}, .status2 = .none, }, + .{ .cp = 0x1D4E8, .status = .mapped, .mapping = &.{0x0079}, .status2 = .none, }, + .{ .cp = 0x1D4E9, .status = .mapped, .mapping = &.{0x007A}, .status2 = .none, }, + .{ .cp = 0x1D4EA, .status = .mapped, .mapping = &.{0x0061}, .status2 = .none, }, + .{ .cp = 0x1D4EB, .status = .mapped, .mapping = &.{0x0062}, .status2 = .none, }, + .{ .cp = 0x1D4EC, .status = .mapped, .mapping = &.{0x0063}, .status2 = .none, }, + .{ .cp = 0x1D4ED, .status = .mapped, .mapping = &.{0x0064}, .status2 = .none, }, + .{ .cp = 0x1D4EE, .status = .mapped, .mapping = &.{0x0065}, .status2 = .none, }, + .{ .cp = 0x1D4EF, .status = .mapped, .mapping = &.{0x0066}, .status2 = .none, }, + .{ .cp = 0x1D4F0, .status = .mapped, .mapping = &.{0x0067}, .status2 = .none, }, + .{ .cp = 0x1D4F1, .status = .mapped, .mapping = &.{0x0068}, .status2 = .none, }, + .{ .cp = 0x1D4F2, .status = .mapped, .mapping = &.{0x0069}, .status2 = .none, }, + .{ .cp = 0x1D4F3, .status = .mapped, .mapping = &.{0x006A}, .status2 = .none, }, + .{ .cp = 0x1D4F4, .status = .mapped, .mapping = &.{0x006B}, .status2 = .none, }, + .{ .cp = 0x1D4F5, .status = .mapped, .mapping = &.{0x006C}, .status2 = .none, }, + .{ .cp = 0x1D4F6, .status = .mapped, .mapping = &.{0x006D}, .status2 = .none, }, + .{ .cp = 0x1D4F7, .status = .mapped, .mapping = &.{0x006E}, .status2 = .none, }, + .{ .cp = 0x1D4F8, .status = .mapped, .mapping = &.{0x006F}, .status2 = .none, }, + .{ .cp = 0x1D4F9, .status = .mapped, .mapping = &.{0x0070}, .status2 = .none, }, + .{ .cp = 0x1D4FA, .status = .mapped, .mapping = &.{0x0071}, .status2 = .none, }, + .{ .cp = 0x1D4FB, .status = .mapped, .mapping = &.{0x0072}, .status2 = .none, }, + .{ .cp = 0x1D4FC, .status = .mapped, .mapping = &.{0x0073}, .status2 = .none, }, + .{ .cp = 0x1D4FD, .status = .mapped, .mapping = &.{0x0074}, .status2 = .none, }, + .{ .cp = 0x1D4FE, .status = .mapped, .mapping = &.{0x0075}, .status2 = .none, }, + .{ .cp = 0x1D4FF, .status = .mapped, .mapping = &.{0x0076}, .status2 = .none, }, + .{ .cp = 0x1D500, .status = .mapped, .mapping = &.{0x0077}, .status2 = .none, }, + .{ .cp = 0x1D501, .status = .mapped, .mapping = &.{0x0078}, .status2 = .none, }, + .{ .cp = 0x1D502, .status = .mapped, .mapping = &.{0x0079}, .status2 = .none, }, + .{ .cp = 0x1D503, .status = .mapped, .mapping = &.{0x007A}, .status2 = .none, }, + .{ .cp = 0x1D504, .status = .mapped, .mapping = &.{0x0061}, .status2 = .none, }, + .{ .cp = 0x1D505, .status = .mapped, .mapping = &.{0x0062}, .status2 = .none, }, + .{ .cp = 0x1D506, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x1D507, .status = .mapped, .mapping = &.{0x0064}, .status2 = .none, }, + .{ .cp = 0x1D508, .status = .mapped, .mapping = &.{0x0065}, .status2 = .none, }, + .{ .cp = 0x1D509, .status = .mapped, .mapping = &.{0x0066}, .status2 = .none, }, + .{ .cp = 0x1D50A, .status = .mapped, .mapping = &.{0x0067}, .status2 = .none, }, + .{ .cp = 0x1D50D, .status = .mapped, .mapping = &.{0x006A}, .status2 = .none, }, + .{ .cp = 0x1D50E, .status = .mapped, .mapping = &.{0x006B}, .status2 = .none, }, + .{ .cp = 0x1D50F, .status = .mapped, .mapping = &.{0x006C}, .status2 = .none, }, + .{ .cp = 0x1D510, .status = .mapped, .mapping = &.{0x006D}, .status2 = .none, }, + .{ .cp = 0x1D511, .status = .mapped, .mapping = &.{0x006E}, .status2 = .none, }, + .{ .cp = 0x1D512, .status = .mapped, .mapping = &.{0x006F}, .status2 = .none, }, + .{ .cp = 0x1D513, .status = .mapped, .mapping = &.{0x0070}, .status2 = .none, }, + .{ .cp = 0x1D514, .status = .mapped, .mapping = &.{0x0071}, .status2 = .none, }, + .{ .cp = 0x1D515, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x1D516, .status = .mapped, .mapping = &.{0x0073}, .status2 = .none, }, + .{ .cp = 0x1D517, .status = .mapped, .mapping = &.{0x0074}, .status2 = .none, }, + .{ .cp = 0x1D518, .status = .mapped, .mapping = &.{0x0075}, .status2 = .none, }, + .{ .cp = 0x1D519, .status = .mapped, .mapping = &.{0x0076}, .status2 = .none, }, + .{ .cp = 0x1D51A, .status = .mapped, .mapping = &.{0x0077}, .status2 = .none, }, + .{ .cp = 0x1D51B, .status = .mapped, .mapping = &.{0x0078}, .status2 = .none, }, + .{ .cp = 0x1D51C, .status = .mapped, .mapping = &.{0x0079}, .status2 = .none, }, + .{ .cp = 0x1D51D, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x1D51E, .status = .mapped, .mapping = &.{0x0061}, .status2 = .none, }, + .{ .cp = 0x1D51F, .status = .mapped, .mapping = &.{0x0062}, .status2 = .none, }, + .{ .cp = 0x1D520, .status = .mapped, .mapping = &.{0x0063}, .status2 = .none, }, + .{ .cp = 0x1D521, .status = .mapped, .mapping = &.{0x0064}, .status2 = .none, }, + .{ .cp = 0x1D522, .status = .mapped, .mapping = &.{0x0065}, .status2 = .none, }, + .{ .cp = 0x1D523, .status = .mapped, .mapping = &.{0x0066}, .status2 = .none, }, + .{ .cp = 0x1D524, .status = .mapped, .mapping = &.{0x0067}, .status2 = .none, }, + .{ .cp = 0x1D525, .status = .mapped, .mapping = &.{0x0068}, .status2 = .none, }, + .{ .cp = 0x1D526, .status = .mapped, .mapping = &.{0x0069}, .status2 = .none, }, + .{ .cp = 0x1D527, .status = .mapped, .mapping = &.{0x006A}, .status2 = .none, }, + .{ .cp = 0x1D528, .status = .mapped, .mapping = &.{0x006B}, .status2 = .none, }, + .{ .cp = 0x1D529, .status = .mapped, .mapping = &.{0x006C}, .status2 = .none, }, + .{ .cp = 0x1D52A, .status = .mapped, .mapping = &.{0x006D}, .status2 = .none, }, + .{ .cp = 0x1D52B, .status = .mapped, .mapping = &.{0x006E}, .status2 = .none, }, + .{ .cp = 0x1D52C, .status = .mapped, .mapping = &.{0x006F}, .status2 = .none, }, + .{ .cp = 0x1D52D, .status = .mapped, .mapping = &.{0x0070}, .status2 = .none, }, + .{ .cp = 0x1D52E, .status = .mapped, .mapping = &.{0x0071}, .status2 = .none, }, + .{ .cp = 0x1D52F, .status = .mapped, .mapping = &.{0x0072}, .status2 = .none, }, + .{ .cp = 0x1D530, .status = .mapped, .mapping = &.{0x0073}, .status2 = .none, }, + .{ .cp = 0x1D531, .status = .mapped, .mapping = &.{0x0074}, .status2 = .none, }, + .{ .cp = 0x1D532, .status = .mapped, .mapping = &.{0x0075}, .status2 = .none, }, + .{ .cp = 0x1D533, .status = .mapped, .mapping = &.{0x0076}, .status2 = .none, }, + .{ .cp = 0x1D534, .status = .mapped, .mapping = &.{0x0077}, .status2 = .none, }, + .{ .cp = 0x1D535, .status = .mapped, .mapping = &.{0x0078}, .status2 = .none, }, + .{ .cp = 0x1D536, .status = .mapped, .mapping = &.{0x0079}, .status2 = .none, }, + .{ .cp = 0x1D537, .status = .mapped, .mapping = &.{0x007A}, .status2 = .none, }, + .{ .cp = 0x1D538, .status = .mapped, .mapping = &.{0x0061}, .status2 = .none, }, + .{ .cp = 0x1D539, .status = .mapped, .mapping = &.{0x0062}, .status2 = .none, }, + .{ .cp = 0x1D53A, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x1D53B, .status = .mapped, .mapping = &.{0x0064}, .status2 = .none, }, + .{ .cp = 0x1D53C, .status = .mapped, .mapping = &.{0x0065}, .status2 = .none, }, + .{ .cp = 0x1D53D, .status = .mapped, .mapping = &.{0x0066}, .status2 = .none, }, + .{ .cp = 0x1D53E, .status = .mapped, .mapping = &.{0x0067}, .status2 = .none, }, + .{ .cp = 0x1D53F, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x1D540, .status = .mapped, .mapping = &.{0x0069}, .status2 = .none, }, + .{ .cp = 0x1D541, .status = .mapped, .mapping = &.{0x006A}, .status2 = .none, }, + .{ .cp = 0x1D542, .status = .mapped, .mapping = &.{0x006B}, .status2 = .none, }, + .{ .cp = 0x1D543, .status = .mapped, .mapping = &.{0x006C}, .status2 = .none, }, + .{ .cp = 0x1D544, .status = .mapped, .mapping = &.{0x006D}, .status2 = .none, }, + .{ .cp = 0x1D545, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x1D546, .status = .mapped, .mapping = &.{0x006F}, .status2 = .none, }, + .{ .cp = 0x1D54A, .status = .mapped, .mapping = &.{0x0073}, .status2 = .none, }, + .{ .cp = 0x1D54B, .status = .mapped, .mapping = &.{0x0074}, .status2 = .none, }, + .{ .cp = 0x1D54C, .status = .mapped, .mapping = &.{0x0075}, .status2 = .none, }, + .{ .cp = 0x1D54D, .status = .mapped, .mapping = &.{0x0076}, .status2 = .none, }, + .{ .cp = 0x1D54E, .status = .mapped, .mapping = &.{0x0077}, .status2 = .none, }, + .{ .cp = 0x1D54F, .status = .mapped, .mapping = &.{0x0078}, .status2 = .none, }, + .{ .cp = 0x1D550, .status = .mapped, .mapping = &.{0x0079}, .status2 = .none, }, + .{ .cp = 0x1D551, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x1D552, .status = .mapped, .mapping = &.{0x0061}, .status2 = .none, }, + .{ .cp = 0x1D553, .status = .mapped, .mapping = &.{0x0062}, .status2 = .none, }, + .{ .cp = 0x1D554, .status = .mapped, .mapping = &.{0x0063}, .status2 = .none, }, + .{ .cp = 0x1D555, .status = .mapped, .mapping = &.{0x0064}, .status2 = .none, }, + .{ .cp = 0x1D556, .status = .mapped, .mapping = &.{0x0065}, .status2 = .none, }, + .{ .cp = 0x1D557, .status = .mapped, .mapping = &.{0x0066}, .status2 = .none, }, + .{ .cp = 0x1D558, .status = .mapped, .mapping = &.{0x0067}, .status2 = .none, }, + .{ .cp = 0x1D559, .status = .mapped, .mapping = &.{0x0068}, .status2 = .none, }, + .{ .cp = 0x1D55A, .status = .mapped, .mapping = &.{0x0069}, .status2 = .none, }, + .{ .cp = 0x1D55B, .status = .mapped, .mapping = &.{0x006A}, .status2 = .none, }, + .{ .cp = 0x1D55C, .status = .mapped, .mapping = &.{0x006B}, .status2 = .none, }, + .{ .cp = 0x1D55D, .status = .mapped, .mapping = &.{0x006C}, .status2 = .none, }, + .{ .cp = 0x1D55E, .status = .mapped, .mapping = &.{0x006D}, .status2 = .none, }, + .{ .cp = 0x1D55F, .status = .mapped, .mapping = &.{0x006E}, .status2 = .none, }, + .{ .cp = 0x1D560, .status = .mapped, .mapping = &.{0x006F}, .status2 = .none, }, + .{ .cp = 0x1D561, .status = .mapped, .mapping = &.{0x0070}, .status2 = .none, }, + .{ .cp = 0x1D562, .status = .mapped, .mapping = &.{0x0071}, .status2 = .none, }, + .{ .cp = 0x1D563, .status = .mapped, .mapping = &.{0x0072}, .status2 = .none, }, + .{ .cp = 0x1D564, .status = .mapped, .mapping = &.{0x0073}, .status2 = .none, }, + .{ .cp = 0x1D565, .status = .mapped, .mapping = &.{0x0074}, .status2 = .none, }, + .{ .cp = 0x1D566, .status = .mapped, .mapping = &.{0x0075}, .status2 = .none, }, + .{ .cp = 0x1D567, .status = .mapped, .mapping = &.{0x0076}, .status2 = .none, }, + .{ .cp = 0x1D568, .status = .mapped, .mapping = &.{0x0077}, .status2 = .none, }, + .{ .cp = 0x1D569, .status = .mapped, .mapping = &.{0x0078}, .status2 = .none, }, + .{ .cp = 0x1D56A, .status = .mapped, .mapping = &.{0x0079}, .status2 = .none, }, + .{ .cp = 0x1D56B, .status = .mapped, .mapping = &.{0x007A}, .status2 = .none, }, + .{ .cp = 0x1D56C, .status = .mapped, .mapping = &.{0x0061}, .status2 = .none, }, + .{ .cp = 0x1D56D, .status = .mapped, .mapping = &.{0x0062}, .status2 = .none, }, + .{ .cp = 0x1D56E, .status = .mapped, .mapping = &.{0x0063}, .status2 = .none, }, + .{ .cp = 0x1D56F, .status = .mapped, .mapping = &.{0x0064}, .status2 = .none, }, + .{ .cp = 0x1D570, .status = .mapped, .mapping = &.{0x0065}, .status2 = .none, }, + .{ .cp = 0x1D571, .status = .mapped, .mapping = &.{0x0066}, .status2 = .none, }, + .{ .cp = 0x1D572, .status = .mapped, .mapping = &.{0x0067}, .status2 = .none, }, + .{ .cp = 0x1D573, .status = .mapped, .mapping = &.{0x0068}, .status2 = .none, }, + .{ .cp = 0x1D574, .status = .mapped, .mapping = &.{0x0069}, .status2 = .none, }, + .{ .cp = 0x1D575, .status = .mapped, .mapping = &.{0x006A}, .status2 = .none, }, + .{ .cp = 0x1D576, .status = .mapped, .mapping = &.{0x006B}, .status2 = .none, }, + .{ .cp = 0x1D577, .status = .mapped, .mapping = &.{0x006C}, .status2 = .none, }, + .{ .cp = 0x1D578, .status = .mapped, .mapping = &.{0x006D}, .status2 = .none, }, + .{ .cp = 0x1D579, .status = .mapped, .mapping = &.{0x006E}, .status2 = .none, }, + .{ .cp = 0x1D57A, .status = .mapped, .mapping = &.{0x006F}, .status2 = .none, }, + .{ .cp = 0x1D57B, .status = .mapped, .mapping = &.{0x0070}, .status2 = .none, }, + .{ .cp = 0x1D57C, .status = .mapped, .mapping = &.{0x0071}, .status2 = .none, }, + .{ .cp = 0x1D57D, .status = .mapped, .mapping = &.{0x0072}, .status2 = .none, }, + .{ .cp = 0x1D57E, .status = .mapped, .mapping = &.{0x0073}, .status2 = .none, }, + .{ .cp = 0x1D57F, .status = .mapped, .mapping = &.{0x0074}, .status2 = .none, }, + .{ .cp = 0x1D580, .status = .mapped, .mapping = &.{0x0075}, .status2 = .none, }, + .{ .cp = 0x1D581, .status = .mapped, .mapping = &.{0x0076}, .status2 = .none, }, + .{ .cp = 0x1D582, .status = .mapped, .mapping = &.{0x0077}, .status2 = .none, }, + .{ .cp = 0x1D583, .status = .mapped, .mapping = &.{0x0078}, .status2 = .none, }, + .{ .cp = 0x1D584, .status = .mapped, .mapping = &.{0x0079}, .status2 = .none, }, + .{ .cp = 0x1D585, .status = .mapped, .mapping = &.{0x007A}, .status2 = .none, }, + .{ .cp = 0x1D586, .status = .mapped, .mapping = &.{0x0061}, .status2 = .none, }, + .{ .cp = 0x1D587, .status = .mapped, .mapping = &.{0x0062}, .status2 = .none, }, + .{ .cp = 0x1D588, .status = .mapped, .mapping = &.{0x0063}, .status2 = .none, }, + .{ .cp = 0x1D589, .status = .mapped, .mapping = &.{0x0064}, .status2 = .none, }, + .{ .cp = 0x1D58A, .status = .mapped, .mapping = &.{0x0065}, .status2 = .none, }, + .{ .cp = 0x1D58B, .status = .mapped, .mapping = &.{0x0066}, .status2 = .none, }, + .{ .cp = 0x1D58C, .status = .mapped, .mapping = &.{0x0067}, .status2 = .none, }, + .{ .cp = 0x1D58D, .status = .mapped, .mapping = &.{0x0068}, .status2 = .none, }, + .{ .cp = 0x1D58E, .status = .mapped, .mapping = &.{0x0069}, .status2 = .none, }, + .{ .cp = 0x1D58F, .status = .mapped, .mapping = &.{0x006A}, .status2 = .none, }, + .{ .cp = 0x1D590, .status = .mapped, .mapping = &.{0x006B}, .status2 = .none, }, + .{ .cp = 0x1D591, .status = .mapped, .mapping = &.{0x006C}, .status2 = .none, }, + .{ .cp = 0x1D592, .status = .mapped, .mapping = &.{0x006D}, .status2 = .none, }, + .{ .cp = 0x1D593, .status = .mapped, .mapping = &.{0x006E}, .status2 = .none, }, + .{ .cp = 0x1D594, .status = .mapped, .mapping = &.{0x006F}, .status2 = .none, }, + .{ .cp = 0x1D595, .status = .mapped, .mapping = &.{0x0070}, .status2 = .none, }, + .{ .cp = 0x1D596, .status = .mapped, .mapping = &.{0x0071}, .status2 = .none, }, + .{ .cp = 0x1D597, .status = .mapped, .mapping = &.{0x0072}, .status2 = .none, }, + .{ .cp = 0x1D598, .status = .mapped, .mapping = &.{0x0073}, .status2 = .none, }, + .{ .cp = 0x1D599, .status = .mapped, .mapping = &.{0x0074}, .status2 = .none, }, + .{ .cp = 0x1D59A, .status = .mapped, .mapping = &.{0x0075}, .status2 = .none, }, + .{ .cp = 0x1D59B, .status = .mapped, .mapping = &.{0x0076}, .status2 = .none, }, + .{ .cp = 0x1D59C, .status = .mapped, .mapping = &.{0x0077}, .status2 = .none, }, + .{ .cp = 0x1D59D, .status = .mapped, .mapping = &.{0x0078}, .status2 = .none, }, + .{ .cp = 0x1D59E, .status = .mapped, .mapping = &.{0x0079}, .status2 = .none, }, + .{ .cp = 0x1D59F, .status = .mapped, .mapping = &.{0x007A}, .status2 = .none, }, + .{ .cp = 0x1D5A0, .status = .mapped, .mapping = &.{0x0061}, .status2 = .none, }, + .{ .cp = 0x1D5A1, .status = .mapped, .mapping = &.{0x0062}, .status2 = .none, }, + .{ .cp = 0x1D5A2, .status = .mapped, .mapping = &.{0x0063}, .status2 = .none, }, + .{ .cp = 0x1D5A3, .status = .mapped, .mapping = &.{0x0064}, .status2 = .none, }, + .{ .cp = 0x1D5A4, .status = .mapped, .mapping = &.{0x0065}, .status2 = .none, }, + .{ .cp = 0x1D5A5, .status = .mapped, .mapping = &.{0x0066}, .status2 = .none, }, + .{ .cp = 0x1D5A6, .status = .mapped, .mapping = &.{0x0067}, .status2 = .none, }, + .{ .cp = 0x1D5A7, .status = .mapped, .mapping = &.{0x0068}, .status2 = .none, }, + .{ .cp = 0x1D5A8, .status = .mapped, .mapping = &.{0x0069}, .status2 = .none, }, + .{ .cp = 0x1D5A9, .status = .mapped, .mapping = &.{0x006A}, .status2 = .none, }, + .{ .cp = 0x1D5AA, .status = .mapped, .mapping = &.{0x006B}, .status2 = .none, }, + .{ .cp = 0x1D5AB, .status = .mapped, .mapping = &.{0x006C}, .status2 = .none, }, + .{ .cp = 0x1D5AC, .status = .mapped, .mapping = &.{0x006D}, .status2 = .none, }, + .{ .cp = 0x1D5AD, .status = .mapped, .mapping = &.{0x006E}, .status2 = .none, }, + .{ .cp = 0x1D5AE, .status = .mapped, .mapping = &.{0x006F}, .status2 = .none, }, + .{ .cp = 0x1D5AF, .status = .mapped, .mapping = &.{0x0070}, .status2 = .none, }, + .{ .cp = 0x1D5B0, .status = .mapped, .mapping = &.{0x0071}, .status2 = .none, }, + .{ .cp = 0x1D5B1, .status = .mapped, .mapping = &.{0x0072}, .status2 = .none, }, + .{ .cp = 0x1D5B2, .status = .mapped, .mapping = &.{0x0073}, .status2 = .none, }, + .{ .cp = 0x1D5B3, .status = .mapped, .mapping = &.{0x0074}, .status2 = .none, }, + .{ .cp = 0x1D5B4, .status = .mapped, .mapping = &.{0x0075}, .status2 = .none, }, + .{ .cp = 0x1D5B5, .status = .mapped, .mapping = &.{0x0076}, .status2 = .none, }, + .{ .cp = 0x1D5B6, .status = .mapped, .mapping = &.{0x0077}, .status2 = .none, }, + .{ .cp = 0x1D5B7, .status = .mapped, .mapping = &.{0x0078}, .status2 = .none, }, + .{ .cp = 0x1D5B8, .status = .mapped, .mapping = &.{0x0079}, .status2 = .none, }, + .{ .cp = 0x1D5B9, .status = .mapped, .mapping = &.{0x007A}, .status2 = .none, }, + .{ .cp = 0x1D5BA, .status = .mapped, .mapping = &.{0x0061}, .status2 = .none, }, + .{ .cp = 0x1D5BB, .status = .mapped, .mapping = &.{0x0062}, .status2 = .none, }, + .{ .cp = 0x1D5BC, .status = .mapped, .mapping = &.{0x0063}, .status2 = .none, }, + .{ .cp = 0x1D5BD, .status = .mapped, .mapping = &.{0x0064}, .status2 = .none, }, + .{ .cp = 0x1D5BE, .status = .mapped, .mapping = &.{0x0065}, .status2 = .none, }, + .{ .cp = 0x1D5BF, .status = .mapped, .mapping = &.{0x0066}, .status2 = .none, }, + .{ .cp = 0x1D5C0, .status = .mapped, .mapping = &.{0x0067}, .status2 = .none, }, + .{ .cp = 0x1D5C1, .status = .mapped, .mapping = &.{0x0068}, .status2 = .none, }, + .{ .cp = 0x1D5C2, .status = .mapped, .mapping = &.{0x0069}, .status2 = .none, }, + .{ .cp = 0x1D5C3, .status = .mapped, .mapping = &.{0x006A}, .status2 = .none, }, + .{ .cp = 0x1D5C4, .status = .mapped, .mapping = &.{0x006B}, .status2 = .none, }, + .{ .cp = 0x1D5C5, .status = .mapped, .mapping = &.{0x006C}, .status2 = .none, }, + .{ .cp = 0x1D5C6, .status = .mapped, .mapping = &.{0x006D}, .status2 = .none, }, + .{ .cp = 0x1D5C7, .status = .mapped, .mapping = &.{0x006E}, .status2 = .none, }, + .{ .cp = 0x1D5C8, .status = .mapped, .mapping = &.{0x006F}, .status2 = .none, }, + .{ .cp = 0x1D5C9, .status = .mapped, .mapping = &.{0x0070}, .status2 = .none, }, + .{ .cp = 0x1D5CA, .status = .mapped, .mapping = &.{0x0071}, .status2 = .none, }, + .{ .cp = 0x1D5CB, .status = .mapped, .mapping = &.{0x0072}, .status2 = .none, }, + .{ .cp = 0x1D5CC, .status = .mapped, .mapping = &.{0x0073}, .status2 = .none, }, + .{ .cp = 0x1D5CD, .status = .mapped, .mapping = &.{0x0074}, .status2 = .none, }, + .{ .cp = 0x1D5CE, .status = .mapped, .mapping = &.{0x0075}, .status2 = .none, }, + .{ .cp = 0x1D5CF, .status = .mapped, .mapping = &.{0x0076}, .status2 = .none, }, + .{ .cp = 0x1D5D0, .status = .mapped, .mapping = &.{0x0077}, .status2 = .none, }, + .{ .cp = 0x1D5D1, .status = .mapped, .mapping = &.{0x0078}, .status2 = .none, }, + .{ .cp = 0x1D5D2, .status = .mapped, .mapping = &.{0x0079}, .status2 = .none, }, + .{ .cp = 0x1D5D3, .status = .mapped, .mapping = &.{0x007A}, .status2 = .none, }, + .{ .cp = 0x1D5D4, .status = .mapped, .mapping = &.{0x0061}, .status2 = .none, }, + .{ .cp = 0x1D5D5, .status = .mapped, .mapping = &.{0x0062}, .status2 = .none, }, + .{ .cp = 0x1D5D6, .status = .mapped, .mapping = &.{0x0063}, .status2 = .none, }, + .{ .cp = 0x1D5D7, .status = .mapped, .mapping = &.{0x0064}, .status2 = .none, }, + .{ .cp = 0x1D5D8, .status = .mapped, .mapping = &.{0x0065}, .status2 = .none, }, + .{ .cp = 0x1D5D9, .status = .mapped, .mapping = &.{0x0066}, .status2 = .none, }, + .{ .cp = 0x1D5DA, .status = .mapped, .mapping = &.{0x0067}, .status2 = .none, }, + .{ .cp = 0x1D5DB, .status = .mapped, .mapping = &.{0x0068}, .status2 = .none, }, + .{ .cp = 0x1D5DC, .status = .mapped, .mapping = &.{0x0069}, .status2 = .none, }, + .{ .cp = 0x1D5DD, .status = .mapped, .mapping = &.{0x006A}, .status2 = .none, }, + .{ .cp = 0x1D5DE, .status = .mapped, .mapping = &.{0x006B}, .status2 = .none, }, + .{ .cp = 0x1D5DF, .status = .mapped, .mapping = &.{0x006C}, .status2 = .none, }, + .{ .cp = 0x1D5E0, .status = .mapped, .mapping = &.{0x006D}, .status2 = .none, }, + .{ .cp = 0x1D5E1, .status = .mapped, .mapping = &.{0x006E}, .status2 = .none, }, + .{ .cp = 0x1D5E2, .status = .mapped, .mapping = &.{0x006F}, .status2 = .none, }, + .{ .cp = 0x1D5E3, .status = .mapped, .mapping = &.{0x0070}, .status2 = .none, }, + .{ .cp = 0x1D5E4, .status = .mapped, .mapping = &.{0x0071}, .status2 = .none, }, + .{ .cp = 0x1D5E5, .status = .mapped, .mapping = &.{0x0072}, .status2 = .none, }, + .{ .cp = 0x1D5E6, .status = .mapped, .mapping = &.{0x0073}, .status2 = .none, }, + .{ .cp = 0x1D5E7, .status = .mapped, .mapping = &.{0x0074}, .status2 = .none, }, + .{ .cp = 0x1D5E8, .status = .mapped, .mapping = &.{0x0075}, .status2 = .none, }, + .{ .cp = 0x1D5E9, .status = .mapped, .mapping = &.{0x0076}, .status2 = .none, }, + .{ .cp = 0x1D5EA, .status = .mapped, .mapping = &.{0x0077}, .status2 = .none, }, + .{ .cp = 0x1D5EB, .status = .mapped, .mapping = &.{0x0078}, .status2 = .none, }, + .{ .cp = 0x1D5EC, .status = .mapped, .mapping = &.{0x0079}, .status2 = .none, }, + .{ .cp = 0x1D5ED, .status = .mapped, .mapping = &.{0x007A}, .status2 = .none, }, + .{ .cp = 0x1D5EE, .status = .mapped, .mapping = &.{0x0061}, .status2 = .none, }, + .{ .cp = 0x1D5EF, .status = .mapped, .mapping = &.{0x0062}, .status2 = .none, }, + .{ .cp = 0x1D5F0, .status = .mapped, .mapping = &.{0x0063}, .status2 = .none, }, + .{ .cp = 0x1D5F1, .status = .mapped, .mapping = &.{0x0064}, .status2 = .none, }, + .{ .cp = 0x1D5F2, .status = .mapped, .mapping = &.{0x0065}, .status2 = .none, }, + .{ .cp = 0x1D5F3, .status = .mapped, .mapping = &.{0x0066}, .status2 = .none, }, + .{ .cp = 0x1D5F4, .status = .mapped, .mapping = &.{0x0067}, .status2 = .none, }, + .{ .cp = 0x1D5F5, .status = .mapped, .mapping = &.{0x0068}, .status2 = .none, }, + .{ .cp = 0x1D5F6, .status = .mapped, .mapping = &.{0x0069}, .status2 = .none, }, + .{ .cp = 0x1D5F7, .status = .mapped, .mapping = &.{0x006A}, .status2 = .none, }, + .{ .cp = 0x1D5F8, .status = .mapped, .mapping = &.{0x006B}, .status2 = .none, }, + .{ .cp = 0x1D5F9, .status = .mapped, .mapping = &.{0x006C}, .status2 = .none, }, + .{ .cp = 0x1D5FA, .status = .mapped, .mapping = &.{0x006D}, .status2 = .none, }, + .{ .cp = 0x1D5FB, .status = .mapped, .mapping = &.{0x006E}, .status2 = .none, }, + .{ .cp = 0x1D5FC, .status = .mapped, .mapping = &.{0x006F}, .status2 = .none, }, + .{ .cp = 0x1D5FD, .status = .mapped, .mapping = &.{0x0070}, .status2 = .none, }, + .{ .cp = 0x1D5FE, .status = .mapped, .mapping = &.{0x0071}, .status2 = .none, }, + .{ .cp = 0x1D5FF, .status = .mapped, .mapping = &.{0x0072}, .status2 = .none, }, + .{ .cp = 0x1D600, .status = .mapped, .mapping = &.{0x0073}, .status2 = .none, }, + .{ .cp = 0x1D601, .status = .mapped, .mapping = &.{0x0074}, .status2 = .none, }, + .{ .cp = 0x1D602, .status = .mapped, .mapping = &.{0x0075}, .status2 = .none, }, + .{ .cp = 0x1D603, .status = .mapped, .mapping = &.{0x0076}, .status2 = .none, }, + .{ .cp = 0x1D604, .status = .mapped, .mapping = &.{0x0077}, .status2 = .none, }, + .{ .cp = 0x1D605, .status = .mapped, .mapping = &.{0x0078}, .status2 = .none, }, + .{ .cp = 0x1D606, .status = .mapped, .mapping = &.{0x0079}, .status2 = .none, }, + .{ .cp = 0x1D607, .status = .mapped, .mapping = &.{0x007A}, .status2 = .none, }, + .{ .cp = 0x1D608, .status = .mapped, .mapping = &.{0x0061}, .status2 = .none, }, + .{ .cp = 0x1D609, .status = .mapped, .mapping = &.{0x0062}, .status2 = .none, }, + .{ .cp = 0x1D60A, .status = .mapped, .mapping = &.{0x0063}, .status2 = .none, }, + .{ .cp = 0x1D60B, .status = .mapped, .mapping = &.{0x0064}, .status2 = .none, }, + .{ .cp = 0x1D60C, .status = .mapped, .mapping = &.{0x0065}, .status2 = .none, }, + .{ .cp = 0x1D60D, .status = .mapped, .mapping = &.{0x0066}, .status2 = .none, }, + .{ .cp = 0x1D60E, .status = .mapped, .mapping = &.{0x0067}, .status2 = .none, }, + .{ .cp = 0x1D60F, .status = .mapped, .mapping = &.{0x0068}, .status2 = .none, }, + .{ .cp = 0x1D610, .status = .mapped, .mapping = &.{0x0069}, .status2 = .none, }, + .{ .cp = 0x1D611, .status = .mapped, .mapping = &.{0x006A}, .status2 = .none, }, + .{ .cp = 0x1D612, .status = .mapped, .mapping = &.{0x006B}, .status2 = .none, }, + .{ .cp = 0x1D613, .status = .mapped, .mapping = &.{0x006C}, .status2 = .none, }, + .{ .cp = 0x1D614, .status = .mapped, .mapping = &.{0x006D}, .status2 = .none, }, + .{ .cp = 0x1D615, .status = .mapped, .mapping = &.{0x006E}, .status2 = .none, }, + .{ .cp = 0x1D616, .status = .mapped, .mapping = &.{0x006F}, .status2 = .none, }, + .{ .cp = 0x1D617, .status = .mapped, .mapping = &.{0x0070}, .status2 = .none, }, + .{ .cp = 0x1D618, .status = .mapped, .mapping = &.{0x0071}, .status2 = .none, }, + .{ .cp = 0x1D619, .status = .mapped, .mapping = &.{0x0072}, .status2 = .none, }, + .{ .cp = 0x1D61A, .status = .mapped, .mapping = &.{0x0073}, .status2 = .none, }, + .{ .cp = 0x1D61B, .status = .mapped, .mapping = &.{0x0074}, .status2 = .none, }, + .{ .cp = 0x1D61C, .status = .mapped, .mapping = &.{0x0075}, .status2 = .none, }, + .{ .cp = 0x1D61D, .status = .mapped, .mapping = &.{0x0076}, .status2 = .none, }, + .{ .cp = 0x1D61E, .status = .mapped, .mapping = &.{0x0077}, .status2 = .none, }, + .{ .cp = 0x1D61F, .status = .mapped, .mapping = &.{0x0078}, .status2 = .none, }, + .{ .cp = 0x1D620, .status = .mapped, .mapping = &.{0x0079}, .status2 = .none, }, + .{ .cp = 0x1D621, .status = .mapped, .mapping = &.{0x007A}, .status2 = .none, }, + .{ .cp = 0x1D622, .status = .mapped, .mapping = &.{0x0061}, .status2 = .none, }, + .{ .cp = 0x1D623, .status = .mapped, .mapping = &.{0x0062}, .status2 = .none, }, + .{ .cp = 0x1D624, .status = .mapped, .mapping = &.{0x0063}, .status2 = .none, }, + .{ .cp = 0x1D625, .status = .mapped, .mapping = &.{0x0064}, .status2 = .none, }, + .{ .cp = 0x1D626, .status = .mapped, .mapping = &.{0x0065}, .status2 = .none, }, + .{ .cp = 0x1D627, .status = .mapped, .mapping = &.{0x0066}, .status2 = .none, }, + .{ .cp = 0x1D628, .status = .mapped, .mapping = &.{0x0067}, .status2 = .none, }, + .{ .cp = 0x1D629, .status = .mapped, .mapping = &.{0x0068}, .status2 = .none, }, + .{ .cp = 0x1D62A, .status = .mapped, .mapping = &.{0x0069}, .status2 = .none, }, + .{ .cp = 0x1D62B, .status = .mapped, .mapping = &.{0x006A}, .status2 = .none, }, + .{ .cp = 0x1D62C, .status = .mapped, .mapping = &.{0x006B}, .status2 = .none, }, + .{ .cp = 0x1D62D, .status = .mapped, .mapping = &.{0x006C}, .status2 = .none, }, + .{ .cp = 0x1D62E, .status = .mapped, .mapping = &.{0x006D}, .status2 = .none, }, + .{ .cp = 0x1D62F, .status = .mapped, .mapping = &.{0x006E}, .status2 = .none, }, + .{ .cp = 0x1D630, .status = .mapped, .mapping = &.{0x006F}, .status2 = .none, }, + .{ .cp = 0x1D631, .status = .mapped, .mapping = &.{0x0070}, .status2 = .none, }, + .{ .cp = 0x1D632, .status = .mapped, .mapping = &.{0x0071}, .status2 = .none, }, + .{ .cp = 0x1D633, .status = .mapped, .mapping = &.{0x0072}, .status2 = .none, }, + .{ .cp = 0x1D634, .status = .mapped, .mapping = &.{0x0073}, .status2 = .none, }, + .{ .cp = 0x1D635, .status = .mapped, .mapping = &.{0x0074}, .status2 = .none, }, + .{ .cp = 0x1D636, .status = .mapped, .mapping = &.{0x0075}, .status2 = .none, }, + .{ .cp = 0x1D637, .status = .mapped, .mapping = &.{0x0076}, .status2 = .none, }, + .{ .cp = 0x1D638, .status = .mapped, .mapping = &.{0x0077}, .status2 = .none, }, + .{ .cp = 0x1D639, .status = .mapped, .mapping = &.{0x0078}, .status2 = .none, }, + .{ .cp = 0x1D63A, .status = .mapped, .mapping = &.{0x0079}, .status2 = .none, }, + .{ .cp = 0x1D63B, .status = .mapped, .mapping = &.{0x007A}, .status2 = .none, }, + .{ .cp = 0x1D63C, .status = .mapped, .mapping = &.{0x0061}, .status2 = .none, }, + .{ .cp = 0x1D63D, .status = .mapped, .mapping = &.{0x0062}, .status2 = .none, }, + .{ .cp = 0x1D63E, .status = .mapped, .mapping = &.{0x0063}, .status2 = .none, }, + .{ .cp = 0x1D63F, .status = .mapped, .mapping = &.{0x0064}, .status2 = .none, }, + .{ .cp = 0x1D640, .status = .mapped, .mapping = &.{0x0065}, .status2 = .none, }, + .{ .cp = 0x1D641, .status = .mapped, .mapping = &.{0x0066}, .status2 = .none, }, + .{ .cp = 0x1D642, .status = .mapped, .mapping = &.{0x0067}, .status2 = .none, }, + .{ .cp = 0x1D643, .status = .mapped, .mapping = &.{0x0068}, .status2 = .none, }, + .{ .cp = 0x1D644, .status = .mapped, .mapping = &.{0x0069}, .status2 = .none, }, + .{ .cp = 0x1D645, .status = .mapped, .mapping = &.{0x006A}, .status2 = .none, }, + .{ .cp = 0x1D646, .status = .mapped, .mapping = &.{0x006B}, .status2 = .none, }, + .{ .cp = 0x1D647, .status = .mapped, .mapping = &.{0x006C}, .status2 = .none, }, + .{ .cp = 0x1D648, .status = .mapped, .mapping = &.{0x006D}, .status2 = .none, }, + .{ .cp = 0x1D649, .status = .mapped, .mapping = &.{0x006E}, .status2 = .none, }, + .{ .cp = 0x1D64A, .status = .mapped, .mapping = &.{0x006F}, .status2 = .none, }, + .{ .cp = 0x1D64B, .status = .mapped, .mapping = &.{0x0070}, .status2 = .none, }, + .{ .cp = 0x1D64C, .status = .mapped, .mapping = &.{0x0071}, .status2 = .none, }, + .{ .cp = 0x1D64D, .status = .mapped, .mapping = &.{0x0072}, .status2 = .none, }, + .{ .cp = 0x1D64E, .status = .mapped, .mapping = &.{0x0073}, .status2 = .none, }, + .{ .cp = 0x1D64F, .status = .mapped, .mapping = &.{0x0074}, .status2 = .none, }, + .{ .cp = 0x1D650, .status = .mapped, .mapping = &.{0x0075}, .status2 = .none, }, + .{ .cp = 0x1D651, .status = .mapped, .mapping = &.{0x0076}, .status2 = .none, }, + .{ .cp = 0x1D652, .status = .mapped, .mapping = &.{0x0077}, .status2 = .none, }, + .{ .cp = 0x1D653, .status = .mapped, .mapping = &.{0x0078}, .status2 = .none, }, + .{ .cp = 0x1D654, .status = .mapped, .mapping = &.{0x0079}, .status2 = .none, }, + .{ .cp = 0x1D655, .status = .mapped, .mapping = &.{0x007A}, .status2 = .none, }, + .{ .cp = 0x1D656, .status = .mapped, .mapping = &.{0x0061}, .status2 = .none, }, + .{ .cp = 0x1D657, .status = .mapped, .mapping = &.{0x0062}, .status2 = .none, }, + .{ .cp = 0x1D658, .status = .mapped, .mapping = &.{0x0063}, .status2 = .none, }, + .{ .cp = 0x1D659, .status = .mapped, .mapping = &.{0x0064}, .status2 = .none, }, + .{ .cp = 0x1D65A, .status = .mapped, .mapping = &.{0x0065}, .status2 = .none, }, + .{ .cp = 0x1D65B, .status = .mapped, .mapping = &.{0x0066}, .status2 = .none, }, + .{ .cp = 0x1D65C, .status = .mapped, .mapping = &.{0x0067}, .status2 = .none, }, + .{ .cp = 0x1D65D, .status = .mapped, .mapping = &.{0x0068}, .status2 = .none, }, + .{ .cp = 0x1D65E, .status = .mapped, .mapping = &.{0x0069}, .status2 = .none, }, + .{ .cp = 0x1D65F, .status = .mapped, .mapping = &.{0x006A}, .status2 = .none, }, + .{ .cp = 0x1D660, .status = .mapped, .mapping = &.{0x006B}, .status2 = .none, }, + .{ .cp = 0x1D661, .status = .mapped, .mapping = &.{0x006C}, .status2 = .none, }, + .{ .cp = 0x1D662, .status = .mapped, .mapping = &.{0x006D}, .status2 = .none, }, + .{ .cp = 0x1D663, .status = .mapped, .mapping = &.{0x006E}, .status2 = .none, }, + .{ .cp = 0x1D664, .status = .mapped, .mapping = &.{0x006F}, .status2 = .none, }, + .{ .cp = 0x1D665, .status = .mapped, .mapping = &.{0x0070}, .status2 = .none, }, + .{ .cp = 0x1D666, .status = .mapped, .mapping = &.{0x0071}, .status2 = .none, }, + .{ .cp = 0x1D667, .status = .mapped, .mapping = &.{0x0072}, .status2 = .none, }, + .{ .cp = 0x1D668, .status = .mapped, .mapping = &.{0x0073}, .status2 = .none, }, + .{ .cp = 0x1D669, .status = .mapped, .mapping = &.{0x0074}, .status2 = .none, }, + .{ .cp = 0x1D66A, .status = .mapped, .mapping = &.{0x0075}, .status2 = .none, }, + .{ .cp = 0x1D66B, .status = .mapped, .mapping = &.{0x0076}, .status2 = .none, }, + .{ .cp = 0x1D66C, .status = .mapped, .mapping = &.{0x0077}, .status2 = .none, }, + .{ .cp = 0x1D66D, .status = .mapped, .mapping = &.{0x0078}, .status2 = .none, }, + .{ .cp = 0x1D66E, .status = .mapped, .mapping = &.{0x0079}, .status2 = .none, }, + .{ .cp = 0x1D66F, .status = .mapped, .mapping = &.{0x007A}, .status2 = .none, }, + .{ .cp = 0x1D670, .status = .mapped, .mapping = &.{0x0061}, .status2 = .none, }, + .{ .cp = 0x1D671, .status = .mapped, .mapping = &.{0x0062}, .status2 = .none, }, + .{ .cp = 0x1D672, .status = .mapped, .mapping = &.{0x0063}, .status2 = .none, }, + .{ .cp = 0x1D673, .status = .mapped, .mapping = &.{0x0064}, .status2 = .none, }, + .{ .cp = 0x1D674, .status = .mapped, .mapping = &.{0x0065}, .status2 = .none, }, + .{ .cp = 0x1D675, .status = .mapped, .mapping = &.{0x0066}, .status2 = .none, }, + .{ .cp = 0x1D676, .status = .mapped, .mapping = &.{0x0067}, .status2 = .none, }, + .{ .cp = 0x1D677, .status = .mapped, .mapping = &.{0x0068}, .status2 = .none, }, + .{ .cp = 0x1D678, .status = .mapped, .mapping = &.{0x0069}, .status2 = .none, }, + .{ .cp = 0x1D679, .status = .mapped, .mapping = &.{0x006A}, .status2 = .none, }, + .{ .cp = 0x1D67A, .status = .mapped, .mapping = &.{0x006B}, .status2 = .none, }, + .{ .cp = 0x1D67B, .status = .mapped, .mapping = &.{0x006C}, .status2 = .none, }, + .{ .cp = 0x1D67C, .status = .mapped, .mapping = &.{0x006D}, .status2 = .none, }, + .{ .cp = 0x1D67D, .status = .mapped, .mapping = &.{0x006E}, .status2 = .none, }, + .{ .cp = 0x1D67E, .status = .mapped, .mapping = &.{0x006F}, .status2 = .none, }, + .{ .cp = 0x1D67F, .status = .mapped, .mapping = &.{0x0070}, .status2 = .none, }, + .{ .cp = 0x1D680, .status = .mapped, .mapping = &.{0x0071}, .status2 = .none, }, + .{ .cp = 0x1D681, .status = .mapped, .mapping = &.{0x0072}, .status2 = .none, }, + .{ .cp = 0x1D682, .status = .mapped, .mapping = &.{0x0073}, .status2 = .none, }, + .{ .cp = 0x1D683, .status = .mapped, .mapping = &.{0x0074}, .status2 = .none, }, + .{ .cp = 0x1D684, .status = .mapped, .mapping = &.{0x0075}, .status2 = .none, }, + .{ .cp = 0x1D685, .status = .mapped, .mapping = &.{0x0076}, .status2 = .none, }, + .{ .cp = 0x1D686, .status = .mapped, .mapping = &.{0x0077}, .status2 = .none, }, + .{ .cp = 0x1D687, .status = .mapped, .mapping = &.{0x0078}, .status2 = .none, }, + .{ .cp = 0x1D688, .status = .mapped, .mapping = &.{0x0079}, .status2 = .none, }, + .{ .cp = 0x1D689, .status = .mapped, .mapping = &.{0x007A}, .status2 = .none, }, + .{ .cp = 0x1D68A, .status = .mapped, .mapping = &.{0x0061}, .status2 = .none, }, + .{ .cp = 0x1D68B, .status = .mapped, .mapping = &.{0x0062}, .status2 = .none, }, + .{ .cp = 0x1D68C, .status = .mapped, .mapping = &.{0x0063}, .status2 = .none, }, + .{ .cp = 0x1D68D, .status = .mapped, .mapping = &.{0x0064}, .status2 = .none, }, + .{ .cp = 0x1D68E, .status = .mapped, .mapping = &.{0x0065}, .status2 = .none, }, + .{ .cp = 0x1D68F, .status = .mapped, .mapping = &.{0x0066}, .status2 = .none, }, + .{ .cp = 0x1D690, .status = .mapped, .mapping = &.{0x0067}, .status2 = .none, }, + .{ .cp = 0x1D691, .status = .mapped, .mapping = &.{0x0068}, .status2 = .none, }, + .{ .cp = 0x1D692, .status = .mapped, .mapping = &.{0x0069}, .status2 = .none, }, + .{ .cp = 0x1D693, .status = .mapped, .mapping = &.{0x006A}, .status2 = .none, }, + .{ .cp = 0x1D694, .status = .mapped, .mapping = &.{0x006B}, .status2 = .none, }, + .{ .cp = 0x1D695, .status = .mapped, .mapping = &.{0x006C}, .status2 = .none, }, + .{ .cp = 0x1D696, .status = .mapped, .mapping = &.{0x006D}, .status2 = .none, }, + .{ .cp = 0x1D697, .status = .mapped, .mapping = &.{0x006E}, .status2 = .none, }, + .{ .cp = 0x1D698, .status = .mapped, .mapping = &.{0x006F}, .status2 = .none, }, + .{ .cp = 0x1D699, .status = .mapped, .mapping = &.{0x0070}, .status2 = .none, }, + .{ .cp = 0x1D69A, .status = .mapped, .mapping = &.{0x0071}, .status2 = .none, }, + .{ .cp = 0x1D69B, .status = .mapped, .mapping = &.{0x0072}, .status2 = .none, }, + .{ .cp = 0x1D69C, .status = .mapped, .mapping = &.{0x0073}, .status2 = .none, }, + .{ .cp = 0x1D69D, .status = .mapped, .mapping = &.{0x0074}, .status2 = .none, }, + .{ .cp = 0x1D69E, .status = .mapped, .mapping = &.{0x0075}, .status2 = .none, }, + .{ .cp = 0x1D69F, .status = .mapped, .mapping = &.{0x0076}, .status2 = .none, }, + .{ .cp = 0x1D6A0, .status = .mapped, .mapping = &.{0x0077}, .status2 = .none, }, + .{ .cp = 0x1D6A1, .status = .mapped, .mapping = &.{0x0078}, .status2 = .none, }, + .{ .cp = 0x1D6A2, .status = .mapped, .mapping = &.{0x0079}, .status2 = .none, }, + .{ .cp = 0x1D6A3, .status = .mapped, .mapping = &.{0x007A}, .status2 = .none, }, + .{ .cp = 0x1D6A4, .status = .mapped, .mapping = &.{0x0131}, .status2 = .none, }, + .{ .cp = 0x1D6A5, .status = .mapped, .mapping = &.{0x0237}, .status2 = .none, }, + .{ .cp = 0x1D6A8, .status = .mapped, .mapping = &.{0x03B1}, .status2 = .none, }, + .{ .cp = 0x1D6A9, .status = .mapped, .mapping = &.{0x03B2}, .status2 = .none, }, + .{ .cp = 0x1D6AA, .status = .mapped, .mapping = &.{0x03B3}, .status2 = .none, }, + .{ .cp = 0x1D6AB, .status = .mapped, .mapping = &.{0x03B4}, .status2 = .none, }, + .{ .cp = 0x1D6AC, .status = .mapped, .mapping = &.{0x03B5}, .status2 = .none, }, + .{ .cp = 0x1D6AD, .status = .mapped, .mapping = &.{0x03B6}, .status2 = .none, }, + .{ .cp = 0x1D6AE, .status = .mapped, .mapping = &.{0x03B7}, .status2 = .none, }, + .{ .cp = 0x1D6AF, .status = .mapped, .mapping = &.{0x03B8}, .status2 = .none, }, + .{ .cp = 0x1D6B0, .status = .mapped, .mapping = &.{0x03B9}, .status2 = .none, }, + .{ .cp = 0x1D6B1, .status = .mapped, .mapping = &.{0x03BA}, .status2 = .none, }, + .{ .cp = 0x1D6B2, .status = .mapped, .mapping = &.{0x03BB}, .status2 = .none, }, + .{ .cp = 0x1D6B3, .status = .mapped, .mapping = &.{0x03BC}, .status2 = .none, }, + .{ .cp = 0x1D6B4, .status = .mapped, .mapping = &.{0x03BD}, .status2 = .none, }, + .{ .cp = 0x1D6B5, .status = .mapped, .mapping = &.{0x03BE}, .status2 = .none, }, + .{ .cp = 0x1D6B6, .status = .mapped, .mapping = &.{0x03BF}, .status2 = .none, }, + .{ .cp = 0x1D6B7, .status = .mapped, .mapping = &.{0x03C0}, .status2 = .none, }, + .{ .cp = 0x1D6B8, .status = .mapped, .mapping = &.{0x03C1}, .status2 = .none, }, + .{ .cp = 0x1D6B9, .status = .mapped, .mapping = &.{0x03B8}, .status2 = .none, }, + .{ .cp = 0x1D6BA, .status = .mapped, .mapping = &.{0x03C3}, .status2 = .none, }, + .{ .cp = 0x1D6BB, .status = .mapped, .mapping = &.{0x03C4}, .status2 = .none, }, + .{ .cp = 0x1D6BC, .status = .mapped, .mapping = &.{0x03C5}, .status2 = .none, }, + .{ .cp = 0x1D6BD, .status = .mapped, .mapping = &.{0x03C6}, .status2 = .none, }, + .{ .cp = 0x1D6BE, .status = .mapped, .mapping = &.{0x03C7}, .status2 = .none, }, + .{ .cp = 0x1D6BF, .status = .mapped, .mapping = &.{0x03C8}, .status2 = .none, }, + .{ .cp = 0x1D6C0, .status = .mapped, .mapping = &.{0x03C9}, .status2 = .none, }, + .{ .cp = 0x1D6C1, .status = .mapped, .mapping = &.{0x2207}, .status2 = .none, }, + .{ .cp = 0x1D6C2, .status = .mapped, .mapping = &.{0x03B1}, .status2 = .none, }, + .{ .cp = 0x1D6C3, .status = .mapped, .mapping = &.{0x03B2}, .status2 = .none, }, + .{ .cp = 0x1D6C4, .status = .mapped, .mapping = &.{0x03B3}, .status2 = .none, }, + .{ .cp = 0x1D6C5, .status = .mapped, .mapping = &.{0x03B4}, .status2 = .none, }, + .{ .cp = 0x1D6C6, .status = .mapped, .mapping = &.{0x03B5}, .status2 = .none, }, + .{ .cp = 0x1D6C7, .status = .mapped, .mapping = &.{0x03B6}, .status2 = .none, }, + .{ .cp = 0x1D6C8, .status = .mapped, .mapping = &.{0x03B7}, .status2 = .none, }, + .{ .cp = 0x1D6C9, .status = .mapped, .mapping = &.{0x03B8}, .status2 = .none, }, + .{ .cp = 0x1D6CA, .status = .mapped, .mapping = &.{0x03B9}, .status2 = .none, }, + .{ .cp = 0x1D6CB, .status = .mapped, .mapping = &.{0x03BA}, .status2 = .none, }, + .{ .cp = 0x1D6CC, .status = .mapped, .mapping = &.{0x03BB}, .status2 = .none, }, + .{ .cp = 0x1D6CD, .status = .mapped, .mapping = &.{0x03BC}, .status2 = .none, }, + .{ .cp = 0x1D6CE, .status = .mapped, .mapping = &.{0x03BD}, .status2 = .none, }, + .{ .cp = 0x1D6CF, .status = .mapped, .mapping = &.{0x03BE}, .status2 = .none, }, + .{ .cp = 0x1D6D0, .status = .mapped, .mapping = &.{0x03BF}, .status2 = .none, }, + .{ .cp = 0x1D6D1, .status = .mapped, .mapping = &.{0x03C0}, .status2 = .none, }, + .{ .cp = 0x1D6D2, .status = .mapped, .mapping = &.{0x03C1}, .status2 = .none, }, + .{ .cp = 0x1D6D5, .status = .mapped, .mapping = &.{0x03C4}, .status2 = .none, }, + .{ .cp = 0x1D6D6, .status = .mapped, .mapping = &.{0x03C5}, .status2 = .none, }, + .{ .cp = 0x1D6D7, .status = .mapped, .mapping = &.{0x03C6}, .status2 = .none, }, + .{ .cp = 0x1D6D8, .status = .mapped, .mapping = &.{0x03C7}, .status2 = .none, }, + .{ .cp = 0x1D6D9, .status = .mapped, .mapping = &.{0x03C8}, .status2 = .none, }, + .{ .cp = 0x1D6DA, .status = .mapped, .mapping = &.{0x03C9}, .status2 = .none, }, + .{ .cp = 0x1D6DB, .status = .mapped, .mapping = &.{0x2202}, .status2 = .none, }, + .{ .cp = 0x1D6DC, .status = .mapped, .mapping = &.{0x03B5}, .status2 = .none, }, + .{ .cp = 0x1D6DD, .status = .mapped, .mapping = &.{0x03B8}, .status2 = .none, }, + .{ .cp = 0x1D6DE, .status = .mapped, .mapping = &.{0x03BA}, .status2 = .none, }, + .{ .cp = 0x1D6DF, .status = .mapped, .mapping = &.{0x03C6}, .status2 = .none, }, + .{ .cp = 0x1D6E0, .status = .mapped, .mapping = &.{0x03C1}, .status2 = .none, }, + .{ .cp = 0x1D6E1, .status = .mapped, .mapping = &.{0x03C0}, .status2 = .none, }, + .{ .cp = 0x1D6E2, .status = .mapped, .mapping = &.{0x03B1}, .status2 = .none, }, + .{ .cp = 0x1D6E3, .status = .mapped, .mapping = &.{0x03B2}, .status2 = .none, }, + .{ .cp = 0x1D6E4, .status = .mapped, .mapping = &.{0x03B3}, .status2 = .none, }, + .{ .cp = 0x1D6E5, .status = .mapped, .mapping = &.{0x03B4}, .status2 = .none, }, + .{ .cp = 0x1D6E6, .status = .mapped, .mapping = &.{0x03B5}, .status2 = .none, }, + .{ .cp = 0x1D6E7, .status = .mapped, .mapping = &.{0x03B6}, .status2 = .none, }, + .{ .cp = 0x1D6E8, .status = .mapped, .mapping = &.{0x03B7}, .status2 = .none, }, + .{ .cp = 0x1D6E9, .status = .mapped, .mapping = &.{0x03B8}, .status2 = .none, }, + .{ .cp = 0x1D6EA, .status = .mapped, .mapping = &.{0x03B9}, .status2 = .none, }, + .{ .cp = 0x1D6EB, .status = .mapped, .mapping = &.{0x03BA}, .status2 = .none, }, + .{ .cp = 0x1D6EC, .status = .mapped, .mapping = &.{0x03BB}, .status2 = .none, }, + .{ .cp = 0x1D6ED, .status = .mapped, .mapping = &.{0x03BC}, .status2 = .none, }, + .{ .cp = 0x1D6EE, .status = .mapped, .mapping = &.{0x03BD}, .status2 = .none, }, + .{ .cp = 0x1D6EF, .status = .mapped, .mapping = &.{0x03BE}, .status2 = .none, }, + .{ .cp = 0x1D6F0, .status = .mapped, .mapping = &.{0x03BF}, .status2 = .none, }, + .{ .cp = 0x1D6F1, .status = .mapped, .mapping = &.{0x03C0}, .status2 = .none, }, + .{ .cp = 0x1D6F2, .status = .mapped, .mapping = &.{0x03C1}, .status2 = .none, }, + .{ .cp = 0x1D6F3, .status = .mapped, .mapping = &.{0x03B8}, .status2 = .none, }, + .{ .cp = 0x1D6F4, .status = .mapped, .mapping = &.{0x03C3}, .status2 = .none, }, + .{ .cp = 0x1D6F5, .status = .mapped, .mapping = &.{0x03C4}, .status2 = .none, }, + .{ .cp = 0x1D6F6, .status = .mapped, .mapping = &.{0x03C5}, .status2 = .none, }, + .{ .cp = 0x1D6F7, .status = .mapped, .mapping = &.{0x03C6}, .status2 = .none, }, + .{ .cp = 0x1D6F8, .status = .mapped, .mapping = &.{0x03C7}, .status2 = .none, }, + .{ .cp = 0x1D6F9, .status = .mapped, .mapping = &.{0x03C8}, .status2 = .none, }, + .{ .cp = 0x1D6FA, .status = .mapped, .mapping = &.{0x03C9}, .status2 = .none, }, + .{ .cp = 0x1D6FB, .status = .mapped, .mapping = &.{0x2207}, .status2 = .none, }, + .{ .cp = 0x1D6FC, .status = .mapped, .mapping = &.{0x03B1}, .status2 = .none, }, + .{ .cp = 0x1D6FD, .status = .mapped, .mapping = &.{0x03B2}, .status2 = .none, }, + .{ .cp = 0x1D6FE, .status = .mapped, .mapping = &.{0x03B3}, .status2 = .none, }, + .{ .cp = 0x1D6FF, .status = .mapped, .mapping = &.{0x03B4}, .status2 = .none, }, + .{ .cp = 0x1D700, .status = .mapped, .mapping = &.{0x03B5}, .status2 = .none, }, + .{ .cp = 0x1D701, .status = .mapped, .mapping = &.{0x03B6}, .status2 = .none, }, + .{ .cp = 0x1D702, .status = .mapped, .mapping = &.{0x03B7}, .status2 = .none, }, + .{ .cp = 0x1D703, .status = .mapped, .mapping = &.{0x03B8}, .status2 = .none, }, + .{ .cp = 0x1D704, .status = .mapped, .mapping = &.{0x03B9}, .status2 = .none, }, + .{ .cp = 0x1D705, .status = .mapped, .mapping = &.{0x03BA}, .status2 = .none, }, + .{ .cp = 0x1D706, .status = .mapped, .mapping = &.{0x03BB}, .status2 = .none, }, + .{ .cp = 0x1D707, .status = .mapped, .mapping = &.{0x03BC}, .status2 = .none, }, + .{ .cp = 0x1D708, .status = .mapped, .mapping = &.{0x03BD}, .status2 = .none, }, + .{ .cp = 0x1D709, .status = .mapped, .mapping = &.{0x03BE}, .status2 = .none, }, + .{ .cp = 0x1D70A, .status = .mapped, .mapping = &.{0x03BF}, .status2 = .none, }, + .{ .cp = 0x1D70B, .status = .mapped, .mapping = &.{0x03C0}, .status2 = .none, }, + .{ .cp = 0x1D70C, .status = .mapped, .mapping = &.{0x03C1}, .status2 = .none, }, + .{ .cp = 0x1D70F, .status = .mapped, .mapping = &.{0x03C4}, .status2 = .none, }, + .{ .cp = 0x1D710, .status = .mapped, .mapping = &.{0x03C5}, .status2 = .none, }, + .{ .cp = 0x1D711, .status = .mapped, .mapping = &.{0x03C6}, .status2 = .none, }, + .{ .cp = 0x1D712, .status = .mapped, .mapping = &.{0x03C7}, .status2 = .none, }, + .{ .cp = 0x1D713, .status = .mapped, .mapping = &.{0x03C8}, .status2 = .none, }, + .{ .cp = 0x1D714, .status = .mapped, .mapping = &.{0x03C9}, .status2 = .none, }, + .{ .cp = 0x1D715, .status = .mapped, .mapping = &.{0x2202}, .status2 = .none, }, + .{ .cp = 0x1D716, .status = .mapped, .mapping = &.{0x03B5}, .status2 = .none, }, + .{ .cp = 0x1D717, .status = .mapped, .mapping = &.{0x03B8}, .status2 = .none, }, + .{ .cp = 0x1D718, .status = .mapped, .mapping = &.{0x03BA}, .status2 = .none, }, + .{ .cp = 0x1D719, .status = .mapped, .mapping = &.{0x03C6}, .status2 = .none, }, + .{ .cp = 0x1D71A, .status = .mapped, .mapping = &.{0x03C1}, .status2 = .none, }, + .{ .cp = 0x1D71B, .status = .mapped, .mapping = &.{0x03C0}, .status2 = .none, }, + .{ .cp = 0x1D71C, .status = .mapped, .mapping = &.{0x03B1}, .status2 = .none, }, + .{ .cp = 0x1D71D, .status = .mapped, .mapping = &.{0x03B2}, .status2 = .none, }, + .{ .cp = 0x1D71E, .status = .mapped, .mapping = &.{0x03B3}, .status2 = .none, }, + .{ .cp = 0x1D71F, .status = .mapped, .mapping = &.{0x03B4}, .status2 = .none, }, + .{ .cp = 0x1D720, .status = .mapped, .mapping = &.{0x03B5}, .status2 = .none, }, + .{ .cp = 0x1D721, .status = .mapped, .mapping = &.{0x03B6}, .status2 = .none, }, + .{ .cp = 0x1D722, .status = .mapped, .mapping = &.{0x03B7}, .status2 = .none, }, + .{ .cp = 0x1D723, .status = .mapped, .mapping = &.{0x03B8}, .status2 = .none, }, + .{ .cp = 0x1D724, .status = .mapped, .mapping = &.{0x03B9}, .status2 = .none, }, + .{ .cp = 0x1D725, .status = .mapped, .mapping = &.{0x03BA}, .status2 = .none, }, + .{ .cp = 0x1D726, .status = .mapped, .mapping = &.{0x03BB}, .status2 = .none, }, + .{ .cp = 0x1D727, .status = .mapped, .mapping = &.{0x03BC}, .status2 = .none, }, + .{ .cp = 0x1D728, .status = .mapped, .mapping = &.{0x03BD}, .status2 = .none, }, + .{ .cp = 0x1D729, .status = .mapped, .mapping = &.{0x03BE}, .status2 = .none, }, + .{ .cp = 0x1D72A, .status = .mapped, .mapping = &.{0x03BF}, .status2 = .none, }, + .{ .cp = 0x1D72B, .status = .mapped, .mapping = &.{0x03C0}, .status2 = .none, }, + .{ .cp = 0x1D72C, .status = .mapped, .mapping = &.{0x03C1}, .status2 = .none, }, + .{ .cp = 0x1D72D, .status = .mapped, .mapping = &.{0x03B8}, .status2 = .none, }, + .{ .cp = 0x1D72E, .status = .mapped, .mapping = &.{0x03C3}, .status2 = .none, }, + .{ .cp = 0x1D72F, .status = .mapped, .mapping = &.{0x03C4}, .status2 = .none, }, + .{ .cp = 0x1D730, .status = .mapped, .mapping = &.{0x03C5}, .status2 = .none, }, + .{ .cp = 0x1D731, .status = .mapped, .mapping = &.{0x03C6}, .status2 = .none, }, + .{ .cp = 0x1D732, .status = .mapped, .mapping = &.{0x03C7}, .status2 = .none, }, + .{ .cp = 0x1D733, .status = .mapped, .mapping = &.{0x03C8}, .status2 = .none, }, + .{ .cp = 0x1D734, .status = .mapped, .mapping = &.{0x03C9}, .status2 = .none, }, + .{ .cp = 0x1D735, .status = .mapped, .mapping = &.{0x2207}, .status2 = .none, }, + .{ .cp = 0x1D736, .status = .mapped, .mapping = &.{0x03B1}, .status2 = .none, }, + .{ .cp = 0x1D737, .status = .mapped, .mapping = &.{0x03B2}, .status2 = .none, }, + .{ .cp = 0x1D738, .status = .mapped, .mapping = &.{0x03B3}, .status2 = .none, }, + .{ .cp = 0x1D739, .status = .mapped, .mapping = &.{0x03B4}, .status2 = .none, }, + .{ .cp = 0x1D73A, .status = .mapped, .mapping = &.{0x03B5}, .status2 = .none, }, + .{ .cp = 0x1D73B, .status = .mapped, .mapping = &.{0x03B6}, .status2 = .none, }, + .{ .cp = 0x1D73C, .status = .mapped, .mapping = &.{0x03B7}, .status2 = .none, }, + .{ .cp = 0x1D73D, .status = .mapped, .mapping = &.{0x03B8}, .status2 = .none, }, + .{ .cp = 0x1D73E, .status = .mapped, .mapping = &.{0x03B9}, .status2 = .none, }, + .{ .cp = 0x1D73F, .status = .mapped, .mapping = &.{0x03BA}, .status2 = .none, }, + .{ .cp = 0x1D740, .status = .mapped, .mapping = &.{0x03BB}, .status2 = .none, }, + .{ .cp = 0x1D741, .status = .mapped, .mapping = &.{0x03BC}, .status2 = .none, }, + .{ .cp = 0x1D742, .status = .mapped, .mapping = &.{0x03BD}, .status2 = .none, }, + .{ .cp = 0x1D743, .status = .mapped, .mapping = &.{0x03BE}, .status2 = .none, }, + .{ .cp = 0x1D744, .status = .mapped, .mapping = &.{0x03BF}, .status2 = .none, }, + .{ .cp = 0x1D745, .status = .mapped, .mapping = &.{0x03C0}, .status2 = .none, }, + .{ .cp = 0x1D746, .status = .mapped, .mapping = &.{0x03C1}, .status2 = .none, }, + .{ .cp = 0x1D749, .status = .mapped, .mapping = &.{0x03C4}, .status2 = .none, }, + .{ .cp = 0x1D74A, .status = .mapped, .mapping = &.{0x03C5}, .status2 = .none, }, + .{ .cp = 0x1D74B, .status = .mapped, .mapping = &.{0x03C6}, .status2 = .none, }, + .{ .cp = 0x1D74C, .status = .mapped, .mapping = &.{0x03C7}, .status2 = .none, }, + .{ .cp = 0x1D74D, .status = .mapped, .mapping = &.{0x03C8}, .status2 = .none, }, + .{ .cp = 0x1D74E, .status = .mapped, .mapping = &.{0x03C9}, .status2 = .none, }, + .{ .cp = 0x1D74F, .status = .mapped, .mapping = &.{0x2202}, .status2 = .none, }, + .{ .cp = 0x1D750, .status = .mapped, .mapping = &.{0x03B5}, .status2 = .none, }, + .{ .cp = 0x1D751, .status = .mapped, .mapping = &.{0x03B8}, .status2 = .none, }, + .{ .cp = 0x1D752, .status = .mapped, .mapping = &.{0x03BA}, .status2 = .none, }, + .{ .cp = 0x1D753, .status = .mapped, .mapping = &.{0x03C6}, .status2 = .none, }, + .{ .cp = 0x1D754, .status = .mapped, .mapping = &.{0x03C1}, .status2 = .none, }, + .{ .cp = 0x1D755, .status = .mapped, .mapping = &.{0x03C0}, .status2 = .none, }, + .{ .cp = 0x1D756, .status = .mapped, .mapping = &.{0x03B1}, .status2 = .none, }, + .{ .cp = 0x1D757, .status = .mapped, .mapping = &.{0x03B2}, .status2 = .none, }, + .{ .cp = 0x1D758, .status = .mapped, .mapping = &.{0x03B3}, .status2 = .none, }, + .{ .cp = 0x1D759, .status = .mapped, .mapping = &.{0x03B4}, .status2 = .none, }, + .{ .cp = 0x1D75A, .status = .mapped, .mapping = &.{0x03B5}, .status2 = .none, }, + .{ .cp = 0x1D75B, .status = .mapped, .mapping = &.{0x03B6}, .status2 = .none, }, + .{ .cp = 0x1D75C, .status = .mapped, .mapping = &.{0x03B7}, .status2 = .none, }, + .{ .cp = 0x1D75D, .status = .mapped, .mapping = &.{0x03B8}, .status2 = .none, }, + .{ .cp = 0x1D75E, .status = .mapped, .mapping = &.{0x03B9}, .status2 = .none, }, + .{ .cp = 0x1D75F, .status = .mapped, .mapping = &.{0x03BA}, .status2 = .none, }, + .{ .cp = 0x1D760, .status = .mapped, .mapping = &.{0x03BB}, .status2 = .none, }, + .{ .cp = 0x1D761, .status = .mapped, .mapping = &.{0x03BC}, .status2 = .none, }, + .{ .cp = 0x1D762, .status = .mapped, .mapping = &.{0x03BD}, .status2 = .none, }, + .{ .cp = 0x1D763, .status = .mapped, .mapping = &.{0x03BE}, .status2 = .none, }, + .{ .cp = 0x1D764, .status = .mapped, .mapping = &.{0x03BF}, .status2 = .none, }, + .{ .cp = 0x1D765, .status = .mapped, .mapping = &.{0x03C0}, .status2 = .none, }, + .{ .cp = 0x1D766, .status = .mapped, .mapping = &.{0x03C1}, .status2 = .none, }, + .{ .cp = 0x1D767, .status = .mapped, .mapping = &.{0x03B8}, .status2 = .none, }, + .{ .cp = 0x1D768, .status = .mapped, .mapping = &.{0x03C3}, .status2 = .none, }, + .{ .cp = 0x1D769, .status = .mapped, .mapping = &.{0x03C4}, .status2 = .none, }, + .{ .cp = 0x1D76A, .status = .mapped, .mapping = &.{0x03C5}, .status2 = .none, }, + .{ .cp = 0x1D76B, .status = .mapped, .mapping = &.{0x03C6}, .status2 = .none, }, + .{ .cp = 0x1D76C, .status = .mapped, .mapping = &.{0x03C7}, .status2 = .none, }, + .{ .cp = 0x1D76D, .status = .mapped, .mapping = &.{0x03C8}, .status2 = .none, }, + .{ .cp = 0x1D76E, .status = .mapped, .mapping = &.{0x03C9}, .status2 = .none, }, + .{ .cp = 0x1D76F, .status = .mapped, .mapping = &.{0x2207}, .status2 = .none, }, + .{ .cp = 0x1D770, .status = .mapped, .mapping = &.{0x03B1}, .status2 = .none, }, + .{ .cp = 0x1D771, .status = .mapped, .mapping = &.{0x03B2}, .status2 = .none, }, + .{ .cp = 0x1D772, .status = .mapped, .mapping = &.{0x03B3}, .status2 = .none, }, + .{ .cp = 0x1D773, .status = .mapped, .mapping = &.{0x03B4}, .status2 = .none, }, + .{ .cp = 0x1D774, .status = .mapped, .mapping = &.{0x03B5}, .status2 = .none, }, + .{ .cp = 0x1D775, .status = .mapped, .mapping = &.{0x03B6}, .status2 = .none, }, + .{ .cp = 0x1D776, .status = .mapped, .mapping = &.{0x03B7}, .status2 = .none, }, + .{ .cp = 0x1D777, .status = .mapped, .mapping = &.{0x03B8}, .status2 = .none, }, + .{ .cp = 0x1D778, .status = .mapped, .mapping = &.{0x03B9}, .status2 = .none, }, + .{ .cp = 0x1D779, .status = .mapped, .mapping = &.{0x03BA}, .status2 = .none, }, + .{ .cp = 0x1D77A, .status = .mapped, .mapping = &.{0x03BB}, .status2 = .none, }, + .{ .cp = 0x1D77B, .status = .mapped, .mapping = &.{0x03BC}, .status2 = .none, }, + .{ .cp = 0x1D77C, .status = .mapped, .mapping = &.{0x03BD}, .status2 = .none, }, + .{ .cp = 0x1D77D, .status = .mapped, .mapping = &.{0x03BE}, .status2 = .none, }, + .{ .cp = 0x1D77E, .status = .mapped, .mapping = &.{0x03BF}, .status2 = .none, }, + .{ .cp = 0x1D77F, .status = .mapped, .mapping = &.{0x03C0}, .status2 = .none, }, + .{ .cp = 0x1D780, .status = .mapped, .mapping = &.{0x03C1}, .status2 = .none, }, + .{ .cp = 0x1D783, .status = .mapped, .mapping = &.{0x03C4}, .status2 = .none, }, + .{ .cp = 0x1D784, .status = .mapped, .mapping = &.{0x03C5}, .status2 = .none, }, + .{ .cp = 0x1D785, .status = .mapped, .mapping = &.{0x03C6}, .status2 = .none, }, + .{ .cp = 0x1D786, .status = .mapped, .mapping = &.{0x03C7}, .status2 = .none, }, + .{ .cp = 0x1D787, .status = .mapped, .mapping = &.{0x03C8}, .status2 = .none, }, + .{ .cp = 0x1D788, .status = .mapped, .mapping = &.{0x03C9}, .status2 = .none, }, + .{ .cp = 0x1D789, .status = .mapped, .mapping = &.{0x2202}, .status2 = .none, }, + .{ .cp = 0x1D78A, .status = .mapped, .mapping = &.{0x03B5}, .status2 = .none, }, + .{ .cp = 0x1D78B, .status = .mapped, .mapping = &.{0x03B8}, .status2 = .none, }, + .{ .cp = 0x1D78C, .status = .mapped, .mapping = &.{0x03BA}, .status2 = .none, }, + .{ .cp = 0x1D78D, .status = .mapped, .mapping = &.{0x03C6}, .status2 = .none, }, + .{ .cp = 0x1D78E, .status = .mapped, .mapping = &.{0x03C1}, .status2 = .none, }, + .{ .cp = 0x1D78F, .status = .mapped, .mapping = &.{0x03C0}, .status2 = .none, }, + .{ .cp = 0x1D790, .status = .mapped, .mapping = &.{0x03B1}, .status2 = .none, }, + .{ .cp = 0x1D791, .status = .mapped, .mapping = &.{0x03B2}, .status2 = .none, }, + .{ .cp = 0x1D792, .status = .mapped, .mapping = &.{0x03B3}, .status2 = .none, }, + .{ .cp = 0x1D793, .status = .mapped, .mapping = &.{0x03B4}, .status2 = .none, }, + .{ .cp = 0x1D794, .status = .mapped, .mapping = &.{0x03B5}, .status2 = .none, }, + .{ .cp = 0x1D795, .status = .mapped, .mapping = &.{0x03B6}, .status2 = .none, }, + .{ .cp = 0x1D796, .status = .mapped, .mapping = &.{0x03B7}, .status2 = .none, }, + .{ .cp = 0x1D797, .status = .mapped, .mapping = &.{0x03B8}, .status2 = .none, }, + .{ .cp = 0x1D798, .status = .mapped, .mapping = &.{0x03B9}, .status2 = .none, }, + .{ .cp = 0x1D799, .status = .mapped, .mapping = &.{0x03BA}, .status2 = .none, }, + .{ .cp = 0x1D79A, .status = .mapped, .mapping = &.{0x03BB}, .status2 = .none, }, + .{ .cp = 0x1D79B, .status = .mapped, .mapping = &.{0x03BC}, .status2 = .none, }, + .{ .cp = 0x1D79C, .status = .mapped, .mapping = &.{0x03BD}, .status2 = .none, }, + .{ .cp = 0x1D79D, .status = .mapped, .mapping = &.{0x03BE}, .status2 = .none, }, + .{ .cp = 0x1D79E, .status = .mapped, .mapping = &.{0x03BF}, .status2 = .none, }, + .{ .cp = 0x1D79F, .status = .mapped, .mapping = &.{0x03C0}, .status2 = .none, }, + .{ .cp = 0x1D7A0, .status = .mapped, .mapping = &.{0x03C1}, .status2 = .none, }, + .{ .cp = 0x1D7A1, .status = .mapped, .mapping = &.{0x03B8}, .status2 = .none, }, + .{ .cp = 0x1D7A2, .status = .mapped, .mapping = &.{0x03C3}, .status2 = .none, }, + .{ .cp = 0x1D7A3, .status = .mapped, .mapping = &.{0x03C4}, .status2 = .none, }, + .{ .cp = 0x1D7A4, .status = .mapped, .mapping = &.{0x03C5}, .status2 = .none, }, + .{ .cp = 0x1D7A5, .status = .mapped, .mapping = &.{0x03C6}, .status2 = .none, }, + .{ .cp = 0x1D7A6, .status = .mapped, .mapping = &.{0x03C7}, .status2 = .none, }, + .{ .cp = 0x1D7A7, .status = .mapped, .mapping = &.{0x03C8}, .status2 = .none, }, + .{ .cp = 0x1D7A8, .status = .mapped, .mapping = &.{0x03C9}, .status2 = .none, }, + .{ .cp = 0x1D7A9, .status = .mapped, .mapping = &.{0x2207}, .status2 = .none, }, + .{ .cp = 0x1D7AA, .status = .mapped, .mapping = &.{0x03B1}, .status2 = .none, }, + .{ .cp = 0x1D7AB, .status = .mapped, .mapping = &.{0x03B2}, .status2 = .none, }, + .{ .cp = 0x1D7AC, .status = .mapped, .mapping = &.{0x03B3}, .status2 = .none, }, + .{ .cp = 0x1D7AD, .status = .mapped, .mapping = &.{0x03B4}, .status2 = .none, }, + .{ .cp = 0x1D7AE, .status = .mapped, .mapping = &.{0x03B5}, .status2 = .none, }, + .{ .cp = 0x1D7AF, .status = .mapped, .mapping = &.{0x03B6}, .status2 = .none, }, + .{ .cp = 0x1D7B0, .status = .mapped, .mapping = &.{0x03B7}, .status2 = .none, }, + .{ .cp = 0x1D7B1, .status = .mapped, .mapping = &.{0x03B8}, .status2 = .none, }, + .{ .cp = 0x1D7B2, .status = .mapped, .mapping = &.{0x03B9}, .status2 = .none, }, + .{ .cp = 0x1D7B3, .status = .mapped, .mapping = &.{0x03BA}, .status2 = .none, }, + .{ .cp = 0x1D7B4, .status = .mapped, .mapping = &.{0x03BB}, .status2 = .none, }, + .{ .cp = 0x1D7B5, .status = .mapped, .mapping = &.{0x03BC}, .status2 = .none, }, + .{ .cp = 0x1D7B6, .status = .mapped, .mapping = &.{0x03BD}, .status2 = .none, }, + .{ .cp = 0x1D7B7, .status = .mapped, .mapping = &.{0x03BE}, .status2 = .none, }, + .{ .cp = 0x1D7B8, .status = .mapped, .mapping = &.{0x03BF}, .status2 = .none, }, + .{ .cp = 0x1D7B9, .status = .mapped, .mapping = &.{0x03C0}, .status2 = .none, }, + .{ .cp = 0x1D7BA, .status = .mapped, .mapping = &.{0x03C1}, .status2 = .none, }, + .{ .cp = 0x1D7BD, .status = .mapped, .mapping = &.{0x03C4}, .status2 = .none, }, + .{ .cp = 0x1D7BE, .status = .mapped, .mapping = &.{0x03C5}, .status2 = .none, }, + .{ .cp = 0x1D7BF, .status = .mapped, .mapping = &.{0x03C6}, .status2 = .none, }, + .{ .cp = 0x1D7C0, .status = .mapped, .mapping = &.{0x03C7}, .status2 = .none, }, + .{ .cp = 0x1D7C1, .status = .mapped, .mapping = &.{0x03C8}, .status2 = .none, }, + .{ .cp = 0x1D7C2, .status = .mapped, .mapping = &.{0x03C9}, .status2 = .none, }, + .{ .cp = 0x1D7C3, .status = .mapped, .mapping = &.{0x2202}, .status2 = .none, }, + .{ .cp = 0x1D7C4, .status = .mapped, .mapping = &.{0x03B5}, .status2 = .none, }, + .{ .cp = 0x1D7C5, .status = .mapped, .mapping = &.{0x03B8}, .status2 = .none, }, + .{ .cp = 0x1D7C6, .status = .mapped, .mapping = &.{0x03BA}, .status2 = .none, }, + .{ .cp = 0x1D7C7, .status = .mapped, .mapping = &.{0x03C6}, .status2 = .none, }, + .{ .cp = 0x1D7C8, .status = .mapped, .mapping = &.{0x03C1}, .status2 = .none, }, + .{ .cp = 0x1D7C9, .status = .mapped, .mapping = &.{0x03C0}, .status2 = .none, }, + .{ .cp = 0x1D7CE, .status = .mapped, .mapping = &.{0x0030}, .status2 = .none, }, + .{ .cp = 0x1D7CF, .status = .mapped, .mapping = &.{0x0031}, .status2 = .none, }, + .{ .cp = 0x1D7D0, .status = .mapped, .mapping = &.{0x0032}, .status2 = .none, }, + .{ .cp = 0x1D7D1, .status = .mapped, .mapping = &.{0x0033}, .status2 = .none, }, + .{ .cp = 0x1D7D2, .status = .mapped, .mapping = &.{0x0034}, .status2 = .none, }, + .{ .cp = 0x1D7D3, .status = .mapped, .mapping = &.{0x0035}, .status2 = .none, }, + .{ .cp = 0x1D7D4, .status = .mapped, .mapping = &.{0x0036}, .status2 = .none, }, + .{ .cp = 0x1D7D5, .status = .mapped, .mapping = &.{0x0037}, .status2 = .none, }, + .{ .cp = 0x1D7D6, .status = .mapped, .mapping = &.{0x0038}, .status2 = .none, }, + .{ .cp = 0x1D7D7, .status = .mapped, .mapping = &.{0x0039}, .status2 = .none, }, + .{ .cp = 0x1D7D8, .status = .mapped, .mapping = &.{0x0030}, .status2 = .none, }, + .{ .cp = 0x1D7D9, .status = .mapped, .mapping = &.{0x0031}, .status2 = .none, }, + .{ .cp = 0x1D7DA, .status = .mapped, .mapping = &.{0x0032}, .status2 = .none, }, + .{ .cp = 0x1D7DB, .status = .mapped, .mapping = &.{0x0033}, .status2 = .none, }, + .{ .cp = 0x1D7DC, .status = .mapped, .mapping = &.{0x0034}, .status2 = .none, }, + .{ .cp = 0x1D7DD, .status = .mapped, .mapping = &.{0x0035}, .status2 = .none, }, + .{ .cp = 0x1D7DE, .status = .mapped, .mapping = &.{0x0036}, .status2 = .none, }, + .{ .cp = 0x1D7DF, .status = .mapped, .mapping = &.{0x0037}, .status2 = .none, }, + .{ .cp = 0x1D7E0, .status = .mapped, .mapping = &.{0x0038}, .status2 = .none, }, + .{ .cp = 0x1D7E1, .status = .mapped, .mapping = &.{0x0039}, .status2 = .none, }, + .{ .cp = 0x1D7E2, .status = .mapped, .mapping = &.{0x0030}, .status2 = .none, }, + .{ .cp = 0x1D7E3, .status = .mapped, .mapping = &.{0x0031}, .status2 = .none, }, + .{ .cp = 0x1D7E4, .status = .mapped, .mapping = &.{0x0032}, .status2 = .none, }, + .{ .cp = 0x1D7E5, .status = .mapped, .mapping = &.{0x0033}, .status2 = .none, }, + .{ .cp = 0x1D7E6, .status = .mapped, .mapping = &.{0x0034}, .status2 = .none, }, + .{ .cp = 0x1D7E7, .status = .mapped, .mapping = &.{0x0035}, .status2 = .none, }, + .{ .cp = 0x1D7E8, .status = .mapped, .mapping = &.{0x0036}, .status2 = .none, }, + .{ .cp = 0x1D7E9, .status = .mapped, .mapping = &.{0x0037}, .status2 = .none, }, + .{ .cp = 0x1D7EA, .status = .mapped, .mapping = &.{0x0038}, .status2 = .none, }, + .{ .cp = 0x1D7EB, .status = .mapped, .mapping = &.{0x0039}, .status2 = .none, }, + .{ .cp = 0x1D7EC, .status = .mapped, .mapping = &.{0x0030}, .status2 = .none, }, + .{ .cp = 0x1D7ED, .status = .mapped, .mapping = &.{0x0031}, .status2 = .none, }, + .{ .cp = 0x1D7EE, .status = .mapped, .mapping = &.{0x0032}, .status2 = .none, }, + .{ .cp = 0x1D7EF, .status = .mapped, .mapping = &.{0x0033}, .status2 = .none, }, + .{ .cp = 0x1D7F0, .status = .mapped, .mapping = &.{0x0034}, .status2 = .none, }, + .{ .cp = 0x1D7F1, .status = .mapped, .mapping = &.{0x0035}, .status2 = .none, }, + .{ .cp = 0x1D7F2, .status = .mapped, .mapping = &.{0x0036}, .status2 = .none, }, + .{ .cp = 0x1D7F3, .status = .mapped, .mapping = &.{0x0037}, .status2 = .none, }, + .{ .cp = 0x1D7F4, .status = .mapped, .mapping = &.{0x0038}, .status2 = .none, }, + .{ .cp = 0x1D7F5, .status = .mapped, .mapping = &.{0x0039}, .status2 = .none, }, + .{ .cp = 0x1D7F6, .status = .mapped, .mapping = &.{0x0030}, .status2 = .none, }, + .{ .cp = 0x1D7F7, .status = .mapped, .mapping = &.{0x0031}, .status2 = .none, }, + .{ .cp = 0x1D7F8, .status = .mapped, .mapping = &.{0x0032}, .status2 = .none, }, + .{ .cp = 0x1D7F9, .status = .mapped, .mapping = &.{0x0033}, .status2 = .none, }, + .{ .cp = 0x1D7FA, .status = .mapped, .mapping = &.{0x0034}, .status2 = .none, }, + .{ .cp = 0x1D7FB, .status = .mapped, .mapping = &.{0x0035}, .status2 = .none, }, + .{ .cp = 0x1D7FC, .status = .mapped, .mapping = &.{0x0036}, .status2 = .none, }, + .{ .cp = 0x1D7FD, .status = .mapped, .mapping = &.{0x0037}, .status2 = .none, }, + .{ .cp = 0x1D7FE, .status = .mapped, .mapping = &.{0x0038}, .status2 = .none, }, + .{ .cp = 0x1D7FF, .status = .mapped, .mapping = &.{0x0039}, .status2 = .none, }, + .{ .cp = 0x1DA75, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x1DA84, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x1DAA0, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x1E007, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x1E022, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x1E025, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x1E030, .status = .mapped, .mapping = &.{0x0430}, .status2 = .none, }, + .{ .cp = 0x1E031, .status = .mapped, .mapping = &.{0x0431}, .status2 = .none, }, + .{ .cp = 0x1E032, .status = .mapped, .mapping = &.{0x0432}, .status2 = .none, }, + .{ .cp = 0x1E033, .status = .mapped, .mapping = &.{0x0433}, .status2 = .none, }, + .{ .cp = 0x1E034, .status = .mapped, .mapping = &.{0x0434}, .status2 = .none, }, + .{ .cp = 0x1E035, .status = .mapped, .mapping = &.{0x0435}, .status2 = .none, }, + .{ .cp = 0x1E036, .status = .mapped, .mapping = &.{0x0436}, .status2 = .none, }, + .{ .cp = 0x1E037, .status = .mapped, .mapping = &.{0x0437}, .status2 = .none, }, + .{ .cp = 0x1E038, .status = .mapped, .mapping = &.{0x0438}, .status2 = .none, }, + .{ .cp = 0x1E039, .status = .mapped, .mapping = &.{0x043A}, .status2 = .none, }, + .{ .cp = 0x1E03A, .status = .mapped, .mapping = &.{0x043B}, .status2 = .none, }, + .{ .cp = 0x1E03B, .status = .mapped, .mapping = &.{0x043C}, .status2 = .none, }, + .{ .cp = 0x1E03C, .status = .mapped, .mapping = &.{0x043E}, .status2 = .none, }, + .{ .cp = 0x1E03D, .status = .mapped, .mapping = &.{0x043F}, .status2 = .none, }, + .{ .cp = 0x1E03E, .status = .mapped, .mapping = &.{0x0440}, .status2 = .none, }, + .{ .cp = 0x1E03F, .status = .mapped, .mapping = &.{0x0441}, .status2 = .none, }, + .{ .cp = 0x1E040, .status = .mapped, .mapping = &.{0x0442}, .status2 = .none, }, + .{ .cp = 0x1E041, .status = .mapped, .mapping = &.{0x0443}, .status2 = .none, }, + .{ .cp = 0x1E042, .status = .mapped, .mapping = &.{0x0444}, .status2 = .none, }, + .{ .cp = 0x1E043, .status = .mapped, .mapping = &.{0x0445}, .status2 = .none, }, + .{ .cp = 0x1E044, .status = .mapped, .mapping = &.{0x0446}, .status2 = .none, }, + .{ .cp = 0x1E045, .status = .mapped, .mapping = &.{0x0447}, .status2 = .none, }, + .{ .cp = 0x1E046, .status = .mapped, .mapping = &.{0x0448}, .status2 = .none, }, + .{ .cp = 0x1E047, .status = .mapped, .mapping = &.{0x044B}, .status2 = .none, }, + .{ .cp = 0x1E048, .status = .mapped, .mapping = &.{0x044D}, .status2 = .none, }, + .{ .cp = 0x1E049, .status = .mapped, .mapping = &.{0x044E}, .status2 = .none, }, + .{ .cp = 0x1E04A, .status = .mapped, .mapping = &.{0xA689}, .status2 = .none, }, + .{ .cp = 0x1E04B, .status = .mapped, .mapping = &.{0x04D9}, .status2 = .none, }, + .{ .cp = 0x1E04C, .status = .mapped, .mapping = &.{0x0456}, .status2 = .none, }, + .{ .cp = 0x1E04D, .status = .mapped, .mapping = &.{0x0458}, .status2 = .none, }, + .{ .cp = 0x1E04E, .status = .mapped, .mapping = &.{0x04E9}, .status2 = .none, }, + .{ .cp = 0x1E04F, .status = .mapped, .mapping = &.{0x04AF}, .status2 = .none, }, + .{ .cp = 0x1E050, .status = .mapped, .mapping = &.{0x04CF}, .status2 = .none, }, + .{ .cp = 0x1E051, .status = .mapped, .mapping = &.{0x0430}, .status2 = .none, }, + .{ .cp = 0x1E052, .status = .mapped, .mapping = &.{0x0431}, .status2 = .none, }, + .{ .cp = 0x1E053, .status = .mapped, .mapping = &.{0x0432}, .status2 = .none, }, + .{ .cp = 0x1E054, .status = .mapped, .mapping = &.{0x0433}, .status2 = .none, }, + .{ .cp = 0x1E055, .status = .mapped, .mapping = &.{0x0434}, .status2 = .none, }, + .{ .cp = 0x1E056, .status = .mapped, .mapping = &.{0x0435}, .status2 = .none, }, + .{ .cp = 0x1E057, .status = .mapped, .mapping = &.{0x0436}, .status2 = .none, }, + .{ .cp = 0x1E058, .status = .mapped, .mapping = &.{0x0437}, .status2 = .none, }, + .{ .cp = 0x1E059, .status = .mapped, .mapping = &.{0x0438}, .status2 = .none, }, + .{ .cp = 0x1E05A, .status = .mapped, .mapping = &.{0x043A}, .status2 = .none, }, + .{ .cp = 0x1E05B, .status = .mapped, .mapping = &.{0x043B}, .status2 = .none, }, + .{ .cp = 0x1E05C, .status = .mapped, .mapping = &.{0x043E}, .status2 = .none, }, + .{ .cp = 0x1E05D, .status = .mapped, .mapping = &.{0x043F}, .status2 = .none, }, + .{ .cp = 0x1E05E, .status = .mapped, .mapping = &.{0x0441}, .status2 = .none, }, + .{ .cp = 0x1E05F, .status = .mapped, .mapping = &.{0x0443}, .status2 = .none, }, + .{ .cp = 0x1E060, .status = .mapped, .mapping = &.{0x0444}, .status2 = .none, }, + .{ .cp = 0x1E061, .status = .mapped, .mapping = &.{0x0445}, .status2 = .none, }, + .{ .cp = 0x1E062, .status = .mapped, .mapping = &.{0x0446}, .status2 = .none, }, + .{ .cp = 0x1E063, .status = .mapped, .mapping = &.{0x0447}, .status2 = .none, }, + .{ .cp = 0x1E064, .status = .mapped, .mapping = &.{0x0448}, .status2 = .none, }, + .{ .cp = 0x1E065, .status = .mapped, .mapping = &.{0x044A}, .status2 = .none, }, + .{ .cp = 0x1E066, .status = .mapped, .mapping = &.{0x044B}, .status2 = .none, }, + .{ .cp = 0x1E067, .status = .mapped, .mapping = &.{0x0491}, .status2 = .none, }, + .{ .cp = 0x1E068, .status = .mapped, .mapping = &.{0x0456}, .status2 = .none, }, + .{ .cp = 0x1E069, .status = .mapped, .mapping = &.{0x0455}, .status2 = .none, }, + .{ .cp = 0x1E06A, .status = .mapped, .mapping = &.{0x045F}, .status2 = .none, }, + .{ .cp = 0x1E06B, .status = .mapped, .mapping = &.{0x04AB}, .status2 = .none, }, + .{ .cp = 0x1E06C, .status = .mapped, .mapping = &.{0xA651}, .status2 = .none, }, + .{ .cp = 0x1E06D, .status = .mapped, .mapping = &.{0x04B1}, .status2 = .none, }, + .{ .cp = 0x1E08F, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x1E14E, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x1E14F, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .cp = 0x1E2FF, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .cp = 0x1E5FF, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .cp = 0x1E6DF, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x1E7E7, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x1E7EC, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x1E7EF, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x1E7FF, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x1E900, .status = .mapped, .mapping = &.{0x1E922}, .status2 = .none, }, + .{ .cp = 0x1E901, .status = .mapped, .mapping = &.{0x1E923}, .status2 = .none, }, + .{ .cp = 0x1E902, .status = .mapped, .mapping = &.{0x1E924}, .status2 = .none, }, + .{ .cp = 0x1E903, .status = .mapped, .mapping = &.{0x1E925}, .status2 = .none, }, + .{ .cp = 0x1E904, .status = .mapped, .mapping = &.{0x1E926}, .status2 = .none, }, + .{ .cp = 0x1E905, .status = .mapped, .mapping = &.{0x1E927}, .status2 = .none, }, + .{ .cp = 0x1E906, .status = .mapped, .mapping = &.{0x1E928}, .status2 = .none, }, + .{ .cp = 0x1E907, .status = .mapped, .mapping = &.{0x1E929}, .status2 = .none, }, + .{ .cp = 0x1E908, .status = .mapped, .mapping = &.{0x1E92A}, .status2 = .none, }, + .{ .cp = 0x1E909, .status = .mapped, .mapping = &.{0x1E92B}, .status2 = .none, }, + .{ .cp = 0x1E90A, .status = .mapped, .mapping = &.{0x1E92C}, .status2 = .none, }, + .{ .cp = 0x1E90B, .status = .mapped, .mapping = &.{0x1E92D}, .status2 = .none, }, + .{ .cp = 0x1E90C, .status = .mapped, .mapping = &.{0x1E92E}, .status2 = .none, }, + .{ .cp = 0x1E90D, .status = .mapped, .mapping = &.{0x1E92F}, .status2 = .none, }, + .{ .cp = 0x1E90E, .status = .mapped, .mapping = &.{0x1E930}, .status2 = .none, }, + .{ .cp = 0x1E90F, .status = .mapped, .mapping = &.{0x1E931}, .status2 = .none, }, + .{ .cp = 0x1E910, .status = .mapped, .mapping = &.{0x1E932}, .status2 = .none, }, + .{ .cp = 0x1E911, .status = .mapped, .mapping = &.{0x1E933}, .status2 = .none, }, + .{ .cp = 0x1E912, .status = .mapped, .mapping = &.{0x1E934}, .status2 = .none, }, + .{ .cp = 0x1E913, .status = .mapped, .mapping = &.{0x1E935}, .status2 = .none, }, + .{ .cp = 0x1E914, .status = .mapped, .mapping = &.{0x1E936}, .status2 = .none, }, + .{ .cp = 0x1E915, .status = .mapped, .mapping = &.{0x1E937}, .status2 = .none, }, + .{ .cp = 0x1E916, .status = .mapped, .mapping = &.{0x1E938}, .status2 = .none, }, + .{ .cp = 0x1E917, .status = .mapped, .mapping = &.{0x1E939}, .status2 = .none, }, + .{ .cp = 0x1E918, .status = .mapped, .mapping = &.{0x1E93A}, .status2 = .none, }, + .{ .cp = 0x1E919, .status = .mapped, .mapping = &.{0x1E93B}, .status2 = .none, }, + .{ .cp = 0x1E91A, .status = .mapped, .mapping = &.{0x1E93C}, .status2 = .none, }, + .{ .cp = 0x1E91B, .status = .mapped, .mapping = &.{0x1E93D}, .status2 = .none, }, + .{ .cp = 0x1E91C, .status = .mapped, .mapping = &.{0x1E93E}, .status2 = .none, }, + .{ .cp = 0x1E91D, .status = .mapped, .mapping = &.{0x1E93F}, .status2 = .none, }, + .{ .cp = 0x1E91E, .status = .mapped, .mapping = &.{0x1E940}, .status2 = .none, }, + .{ .cp = 0x1E91F, .status = .mapped, .mapping = &.{0x1E941}, .status2 = .none, }, + .{ .cp = 0x1E920, .status = .mapped, .mapping = &.{0x1E942}, .status2 = .none, }, + .{ .cp = 0x1E921, .status = .mapped, .mapping = &.{0x1E943}, .status2 = .none, }, + .{ .cp = 0x1E94B, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x1EE00, .status = .mapped, .mapping = &.{0x0627}, .status2 = .none, }, + .{ .cp = 0x1EE01, .status = .mapped, .mapping = &.{0x0628}, .status2 = .none, }, + .{ .cp = 0x1EE02, .status = .mapped, .mapping = &.{0x062C}, .status2 = .none, }, + .{ .cp = 0x1EE03, .status = .mapped, .mapping = &.{0x062F}, .status2 = .none, }, + .{ .cp = 0x1EE04, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x1EE05, .status = .mapped, .mapping = &.{0x0648}, .status2 = .none, }, + .{ .cp = 0x1EE06, .status = .mapped, .mapping = &.{0x0632}, .status2 = .none, }, + .{ .cp = 0x1EE07, .status = .mapped, .mapping = &.{0x062D}, .status2 = .none, }, + .{ .cp = 0x1EE08, .status = .mapped, .mapping = &.{0x0637}, .status2 = .none, }, + .{ .cp = 0x1EE09, .status = .mapped, .mapping = &.{0x064A}, .status2 = .none, }, + .{ .cp = 0x1EE0A, .status = .mapped, .mapping = &.{0x0643}, .status2 = .none, }, + .{ .cp = 0x1EE0B, .status = .mapped, .mapping = &.{0x0644}, .status2 = .none, }, + .{ .cp = 0x1EE0C, .status = .mapped, .mapping = &.{0x0645}, .status2 = .none, }, + .{ .cp = 0x1EE0D, .status = .mapped, .mapping = &.{0x0646}, .status2 = .none, }, + .{ .cp = 0x1EE0E, .status = .mapped, .mapping = &.{0x0633}, .status2 = .none, }, + .{ .cp = 0x1EE0F, .status = .mapped, .mapping = &.{0x0639}, .status2 = .none, }, + .{ .cp = 0x1EE10, .status = .mapped, .mapping = &.{0x0641}, .status2 = .none, }, + .{ .cp = 0x1EE11, .status = .mapped, .mapping = &.{0x0635}, .status2 = .none, }, + .{ .cp = 0x1EE12, .status = .mapped, .mapping = &.{0x0642}, .status2 = .none, }, + .{ .cp = 0x1EE13, .status = .mapped, .mapping = &.{0x0631}, .status2 = .none, }, + .{ .cp = 0x1EE14, .status = .mapped, .mapping = &.{0x0634}, .status2 = .none, }, + .{ .cp = 0x1EE15, .status = .mapped, .mapping = &.{0x062A}, .status2 = .none, }, + .{ .cp = 0x1EE16, .status = .mapped, .mapping = &.{0x062B}, .status2 = .none, }, + .{ .cp = 0x1EE17, .status = .mapped, .mapping = &.{0x062E}, .status2 = .none, }, + .{ .cp = 0x1EE18, .status = .mapped, .mapping = &.{0x0630}, .status2 = .none, }, + .{ .cp = 0x1EE19, .status = .mapped, .mapping = &.{0x0636}, .status2 = .none, }, + .{ .cp = 0x1EE1A, .status = .mapped, .mapping = &.{0x0638}, .status2 = .none, }, + .{ .cp = 0x1EE1B, .status = .mapped, .mapping = &.{0x063A}, .status2 = .none, }, + .{ .cp = 0x1EE1C, .status = .mapped, .mapping = &.{0x066E}, .status2 = .none, }, + .{ .cp = 0x1EE1D, .status = .mapped, .mapping = &.{0x06BA}, .status2 = .none, }, + .{ .cp = 0x1EE1E, .status = .mapped, .mapping = &.{0x06A1}, .status2 = .none, }, + .{ .cp = 0x1EE1F, .status = .mapped, .mapping = &.{0x066F}, .status2 = .none, }, + .{ .cp = 0x1EE20, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x1EE21, .status = .mapped, .mapping = &.{0x0628}, .status2 = .none, }, + .{ .cp = 0x1EE22, .status = .mapped, .mapping = &.{0x062C}, .status2 = .none, }, + .{ .cp = 0x1EE23, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x1EE24, .status = .mapped, .mapping = &.{0x0647}, .status2 = .none, }, + .{ .cp = 0x1EE27, .status = .mapped, .mapping = &.{0x062D}, .status2 = .none, }, + .{ .cp = 0x1EE28, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x1EE29, .status = .mapped, .mapping = &.{0x064A}, .status2 = .none, }, + .{ .cp = 0x1EE2A, .status = .mapped, .mapping = &.{0x0643}, .status2 = .none, }, + .{ .cp = 0x1EE2B, .status = .mapped, .mapping = &.{0x0644}, .status2 = .none, }, + .{ .cp = 0x1EE2C, .status = .mapped, .mapping = &.{0x0645}, .status2 = .none, }, + .{ .cp = 0x1EE2D, .status = .mapped, .mapping = &.{0x0646}, .status2 = .none, }, + .{ .cp = 0x1EE2E, .status = .mapped, .mapping = &.{0x0633}, .status2 = .none, }, + .{ .cp = 0x1EE2F, .status = .mapped, .mapping = &.{0x0639}, .status2 = .none, }, + .{ .cp = 0x1EE30, .status = .mapped, .mapping = &.{0x0641}, .status2 = .none, }, + .{ .cp = 0x1EE31, .status = .mapped, .mapping = &.{0x0635}, .status2 = .none, }, + .{ .cp = 0x1EE32, .status = .mapped, .mapping = &.{0x0642}, .status2 = .none, }, + .{ .cp = 0x1EE33, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x1EE34, .status = .mapped, .mapping = &.{0x0634}, .status2 = .none, }, + .{ .cp = 0x1EE35, .status = .mapped, .mapping = &.{0x062A}, .status2 = .none, }, + .{ .cp = 0x1EE36, .status = .mapped, .mapping = &.{0x062B}, .status2 = .none, }, + .{ .cp = 0x1EE37, .status = .mapped, .mapping = &.{0x062E}, .status2 = .none, }, + .{ .cp = 0x1EE38, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x1EE39, .status = .mapped, .mapping = &.{0x0636}, .status2 = .none, }, + .{ .cp = 0x1EE3A, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x1EE3B, .status = .mapped, .mapping = &.{0x063A}, .status2 = .none, }, + .{ .cp = 0x1EE42, .status = .mapped, .mapping = &.{0x062C}, .status2 = .none, }, + .{ .cp = 0x1EE47, .status = .mapped, .mapping = &.{0x062D}, .status2 = .none, }, + .{ .cp = 0x1EE48, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x1EE49, .status = .mapped, .mapping = &.{0x064A}, .status2 = .none, }, + .{ .cp = 0x1EE4A, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x1EE4B, .status = .mapped, .mapping = &.{0x0644}, .status2 = .none, }, + .{ .cp = 0x1EE4C, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x1EE4D, .status = .mapped, .mapping = &.{0x0646}, .status2 = .none, }, + .{ .cp = 0x1EE4E, .status = .mapped, .mapping = &.{0x0633}, .status2 = .none, }, + .{ .cp = 0x1EE4F, .status = .mapped, .mapping = &.{0x0639}, .status2 = .none, }, + .{ .cp = 0x1EE50, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x1EE51, .status = .mapped, .mapping = &.{0x0635}, .status2 = .none, }, + .{ .cp = 0x1EE52, .status = .mapped, .mapping = &.{0x0642}, .status2 = .none, }, + .{ .cp = 0x1EE53, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x1EE54, .status = .mapped, .mapping = &.{0x0634}, .status2 = .none, }, + .{ .cp = 0x1EE57, .status = .mapped, .mapping = &.{0x062E}, .status2 = .none, }, + .{ .cp = 0x1EE58, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x1EE59, .status = .mapped, .mapping = &.{0x0636}, .status2 = .none, }, + .{ .cp = 0x1EE5A, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x1EE5B, .status = .mapped, .mapping = &.{0x063A}, .status2 = .none, }, + .{ .cp = 0x1EE5C, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x1EE5D, .status = .mapped, .mapping = &.{0x06BA}, .status2 = .none, }, + .{ .cp = 0x1EE5E, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x1EE5F, .status = .mapped, .mapping = &.{0x066F}, .status2 = .none, }, + .{ .cp = 0x1EE60, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x1EE61, .status = .mapped, .mapping = &.{0x0628}, .status2 = .none, }, + .{ .cp = 0x1EE62, .status = .mapped, .mapping = &.{0x062C}, .status2 = .none, }, + .{ .cp = 0x1EE63, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x1EE64, .status = .mapped, .mapping = &.{0x0647}, .status2 = .none, }, + .{ .cp = 0x1EE67, .status = .mapped, .mapping = &.{0x062D}, .status2 = .none, }, + .{ .cp = 0x1EE68, .status = .mapped, .mapping = &.{0x0637}, .status2 = .none, }, + .{ .cp = 0x1EE69, .status = .mapped, .mapping = &.{0x064A}, .status2 = .none, }, + .{ .cp = 0x1EE6A, .status = .mapped, .mapping = &.{0x0643}, .status2 = .none, }, + .{ .cp = 0x1EE6B, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x1EE6C, .status = .mapped, .mapping = &.{0x0645}, .status2 = .none, }, + .{ .cp = 0x1EE6D, .status = .mapped, .mapping = &.{0x0646}, .status2 = .none, }, + .{ .cp = 0x1EE6E, .status = .mapped, .mapping = &.{0x0633}, .status2 = .none, }, + .{ .cp = 0x1EE6F, .status = .mapped, .mapping = &.{0x0639}, .status2 = .none, }, + .{ .cp = 0x1EE70, .status = .mapped, .mapping = &.{0x0641}, .status2 = .none, }, + .{ .cp = 0x1EE71, .status = .mapped, .mapping = &.{0x0635}, .status2 = .none, }, + .{ .cp = 0x1EE72, .status = .mapped, .mapping = &.{0x0642}, .status2 = .none, }, + .{ .cp = 0x1EE73, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x1EE74, .status = .mapped, .mapping = &.{0x0634}, .status2 = .none, }, + .{ .cp = 0x1EE75, .status = .mapped, .mapping = &.{0x062A}, .status2 = .none, }, + .{ .cp = 0x1EE76, .status = .mapped, .mapping = &.{0x062B}, .status2 = .none, }, + .{ .cp = 0x1EE77, .status = .mapped, .mapping = &.{0x062E}, .status2 = .none, }, + .{ .cp = 0x1EE78, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x1EE79, .status = .mapped, .mapping = &.{0x0636}, .status2 = .none, }, + .{ .cp = 0x1EE7A, .status = .mapped, .mapping = &.{0x0638}, .status2 = .none, }, + .{ .cp = 0x1EE7B, .status = .mapped, .mapping = &.{0x063A}, .status2 = .none, }, + .{ .cp = 0x1EE7C, .status = .mapped, .mapping = &.{0x066E}, .status2 = .none, }, + .{ .cp = 0x1EE7D, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x1EE7E, .status = .mapped, .mapping = &.{0x06A1}, .status2 = .none, }, + .{ .cp = 0x1EE7F, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x1EE80, .status = .mapped, .mapping = &.{0x0627}, .status2 = .none, }, + .{ .cp = 0x1EE81, .status = .mapped, .mapping = &.{0x0628}, .status2 = .none, }, + .{ .cp = 0x1EE82, .status = .mapped, .mapping = &.{0x062C}, .status2 = .none, }, + .{ .cp = 0x1EE83, .status = .mapped, .mapping = &.{0x062F}, .status2 = .none, }, + .{ .cp = 0x1EE84, .status = .mapped, .mapping = &.{0x0647}, .status2 = .none, }, + .{ .cp = 0x1EE85, .status = .mapped, .mapping = &.{0x0648}, .status2 = .none, }, + .{ .cp = 0x1EE86, .status = .mapped, .mapping = &.{0x0632}, .status2 = .none, }, + .{ .cp = 0x1EE87, .status = .mapped, .mapping = &.{0x062D}, .status2 = .none, }, + .{ .cp = 0x1EE88, .status = .mapped, .mapping = &.{0x0637}, .status2 = .none, }, + .{ .cp = 0x1EE89, .status = .mapped, .mapping = &.{0x064A}, .status2 = .none, }, + .{ .cp = 0x1EE8A, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x1EE8B, .status = .mapped, .mapping = &.{0x0644}, .status2 = .none, }, + .{ .cp = 0x1EE8C, .status = .mapped, .mapping = &.{0x0645}, .status2 = .none, }, + .{ .cp = 0x1EE8D, .status = .mapped, .mapping = &.{0x0646}, .status2 = .none, }, + .{ .cp = 0x1EE8E, .status = .mapped, .mapping = &.{0x0633}, .status2 = .none, }, + .{ .cp = 0x1EE8F, .status = .mapped, .mapping = &.{0x0639}, .status2 = .none, }, + .{ .cp = 0x1EE90, .status = .mapped, .mapping = &.{0x0641}, .status2 = .none, }, + .{ .cp = 0x1EE91, .status = .mapped, .mapping = &.{0x0635}, .status2 = .none, }, + .{ .cp = 0x1EE92, .status = .mapped, .mapping = &.{0x0642}, .status2 = .none, }, + .{ .cp = 0x1EE93, .status = .mapped, .mapping = &.{0x0631}, .status2 = .none, }, + .{ .cp = 0x1EE94, .status = .mapped, .mapping = &.{0x0634}, .status2 = .none, }, + .{ .cp = 0x1EE95, .status = .mapped, .mapping = &.{0x062A}, .status2 = .none, }, + .{ .cp = 0x1EE96, .status = .mapped, .mapping = &.{0x062B}, .status2 = .none, }, + .{ .cp = 0x1EE97, .status = .mapped, .mapping = &.{0x062E}, .status2 = .none, }, + .{ .cp = 0x1EE98, .status = .mapped, .mapping = &.{0x0630}, .status2 = .none, }, + .{ .cp = 0x1EE99, .status = .mapped, .mapping = &.{0x0636}, .status2 = .none, }, + .{ .cp = 0x1EE9A, .status = .mapped, .mapping = &.{0x0638}, .status2 = .none, }, + .{ .cp = 0x1EE9B, .status = .mapped, .mapping = &.{0x063A}, .status2 = .none, }, + .{ .cp = 0x1EEA1, .status = .mapped, .mapping = &.{0x0628}, .status2 = .none, }, + .{ .cp = 0x1EEA2, .status = .mapped, .mapping = &.{0x062C}, .status2 = .none, }, + .{ .cp = 0x1EEA3, .status = .mapped, .mapping = &.{0x062F}, .status2 = .none, }, + .{ .cp = 0x1EEA4, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x1EEA5, .status = .mapped, .mapping = &.{0x0648}, .status2 = .none, }, + .{ .cp = 0x1EEA6, .status = .mapped, .mapping = &.{0x0632}, .status2 = .none, }, + .{ .cp = 0x1EEA7, .status = .mapped, .mapping = &.{0x062D}, .status2 = .none, }, + .{ .cp = 0x1EEA8, .status = .mapped, .mapping = &.{0x0637}, .status2 = .none, }, + .{ .cp = 0x1EEA9, .status = .mapped, .mapping = &.{0x064A}, .status2 = .none, }, + .{ .cp = 0x1EEAA, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x1EEAB, .status = .mapped, .mapping = &.{0x0644}, .status2 = .none, }, + .{ .cp = 0x1EEAC, .status = .mapped, .mapping = &.{0x0645}, .status2 = .none, }, + .{ .cp = 0x1EEAD, .status = .mapped, .mapping = &.{0x0646}, .status2 = .none, }, + .{ .cp = 0x1EEAE, .status = .mapped, .mapping = &.{0x0633}, .status2 = .none, }, + .{ .cp = 0x1EEAF, .status = .mapped, .mapping = &.{0x0639}, .status2 = .none, }, + .{ .cp = 0x1EEB0, .status = .mapped, .mapping = &.{0x0641}, .status2 = .none, }, + .{ .cp = 0x1EEB1, .status = .mapped, .mapping = &.{0x0635}, .status2 = .none, }, + .{ .cp = 0x1EEB2, .status = .mapped, .mapping = &.{0x0642}, .status2 = .none, }, + .{ .cp = 0x1EEB3, .status = .mapped, .mapping = &.{0x0631}, .status2 = .none, }, + .{ .cp = 0x1EEB4, .status = .mapped, .mapping = &.{0x0634}, .status2 = .none, }, + .{ .cp = 0x1EEB5, .status = .mapped, .mapping = &.{0x062A}, .status2 = .none, }, + .{ .cp = 0x1EEB6, .status = .mapped, .mapping = &.{0x062B}, .status2 = .none, }, + .{ .cp = 0x1EEB7, .status = .mapped, .mapping = &.{0x062E}, .status2 = .none, }, + .{ .cp = 0x1EEB8, .status = .mapped, .mapping = &.{0x0630}, .status2 = .none, }, + .{ .cp = 0x1EEB9, .status = .mapped, .mapping = &.{0x0636}, .status2 = .none, }, + .{ .cp = 0x1EEBA, .status = .mapped, .mapping = &.{0x0638}, .status2 = .none, }, + .{ .cp = 0x1EEBB, .status = .mapped, .mapping = &.{0x063A}, .status2 = .none, }, + .{ .cp = 0x1F0BF, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .cp = 0x1F0C0, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x1F0D0, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x1F100, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x1F101, .status = .mapped, .mapping = &.{0x0030,0x002C}, .status2 = .none, }, + .{ .cp = 0x1F102, .status = .mapped, .mapping = &.{0x0031,0x002C}, .status2 = .none, }, + .{ .cp = 0x1F103, .status = .mapped, .mapping = &.{0x0032,0x002C}, .status2 = .none, }, + .{ .cp = 0x1F104, .status = .mapped, .mapping = &.{0x0033,0x002C}, .status2 = .none, }, + .{ .cp = 0x1F105, .status = .mapped, .mapping = &.{0x0034,0x002C}, .status2 = .none, }, + .{ .cp = 0x1F106, .status = .mapped, .mapping = &.{0x0035,0x002C}, .status2 = .none, }, + .{ .cp = 0x1F107, .status = .mapped, .mapping = &.{0x0036,0x002C}, .status2 = .none, }, + .{ .cp = 0x1F108, .status = .mapped, .mapping = &.{0x0037,0x002C}, .status2 = .none, }, + .{ .cp = 0x1F109, .status = .mapped, .mapping = &.{0x0038,0x002C}, .status2 = .none, }, + .{ .cp = 0x1F10A, .status = .mapped, .mapping = &.{0x0039,0x002C}, .status2 = .none, }, + .{ .cp = 0x1F110, .status = .mapped, .mapping = &.{0x0028,0x0061,0x0029}, .status2 = .none, }, + .{ .cp = 0x1F111, .status = .mapped, .mapping = &.{0x0028,0x0062,0x0029}, .status2 = .none, }, + .{ .cp = 0x1F112, .status = .mapped, .mapping = &.{0x0028,0x0063,0x0029}, .status2 = .none, }, + .{ .cp = 0x1F113, .status = .mapped, .mapping = &.{0x0028,0x0064,0x0029}, .status2 = .none, }, + .{ .cp = 0x1F114, .status = .mapped, .mapping = &.{0x0028,0x0065,0x0029}, .status2 = .none, }, + .{ .cp = 0x1F115, .status = .mapped, .mapping = &.{0x0028,0x0066,0x0029}, .status2 = .none, }, + .{ .cp = 0x1F116, .status = .mapped, .mapping = &.{0x0028,0x0067,0x0029}, .status2 = .none, }, + .{ .cp = 0x1F117, .status = .mapped, .mapping = &.{0x0028,0x0068,0x0029}, .status2 = .none, }, + .{ .cp = 0x1F118, .status = .mapped, .mapping = &.{0x0028,0x0069,0x0029}, .status2 = .none, }, + .{ .cp = 0x1F119, .status = .mapped, .mapping = &.{0x0028,0x006A,0x0029}, .status2 = .none, }, + .{ .cp = 0x1F11A, .status = .mapped, .mapping = &.{0x0028,0x006B,0x0029}, .status2 = .none, }, + .{ .cp = 0x1F11B, .status = .mapped, .mapping = &.{0x0028,0x006C,0x0029}, .status2 = .none, }, + .{ .cp = 0x1F11C, .status = .mapped, .mapping = &.{0x0028,0x006D,0x0029}, .status2 = .none, }, + .{ .cp = 0x1F11D, .status = .mapped, .mapping = &.{0x0028,0x006E,0x0029}, .status2 = .none, }, + .{ .cp = 0x1F11E, .status = .mapped, .mapping = &.{0x0028,0x006F,0x0029}, .status2 = .none, }, + .{ .cp = 0x1F11F, .status = .mapped, .mapping = &.{0x0028,0x0070,0x0029}, .status2 = .none, }, + .{ .cp = 0x1F120, .status = .mapped, .mapping = &.{0x0028,0x0071,0x0029}, .status2 = .none, }, + .{ .cp = 0x1F121, .status = .mapped, .mapping = &.{0x0028,0x0072,0x0029}, .status2 = .none, }, + .{ .cp = 0x1F122, .status = .mapped, .mapping = &.{0x0028,0x0073,0x0029}, .status2 = .none, }, + .{ .cp = 0x1F123, .status = .mapped, .mapping = &.{0x0028,0x0074,0x0029}, .status2 = .none, }, + .{ .cp = 0x1F124, .status = .mapped, .mapping = &.{0x0028,0x0075,0x0029}, .status2 = .none, }, + .{ .cp = 0x1F125, .status = .mapped, .mapping = &.{0x0028,0x0076,0x0029}, .status2 = .none, }, + .{ .cp = 0x1F126, .status = .mapped, .mapping = &.{0x0028,0x0077,0x0029}, .status2 = .none, }, + .{ .cp = 0x1F127, .status = .mapped, .mapping = &.{0x0028,0x0078,0x0029}, .status2 = .none, }, + .{ .cp = 0x1F128, .status = .mapped, .mapping = &.{0x0028,0x0079,0x0029}, .status2 = .none, }, + .{ .cp = 0x1F129, .status = .mapped, .mapping = &.{0x0028,0x007A,0x0029}, .status2 = .none, }, + .{ .cp = 0x1F12A, .status = .mapped, .mapping = &.{0x3014,0x0073,0x3015}, .status2 = .none, }, + .{ .cp = 0x1F12B, .status = .mapped, .mapping = &.{0x0063}, .status2 = .none, }, + .{ .cp = 0x1F12C, .status = .mapped, .mapping = &.{0x0072}, .status2 = .none, }, + .{ .cp = 0x1F12D, .status = .mapped, .mapping = &.{0x0063,0x0064}, .status2 = .none, }, + .{ .cp = 0x1F12E, .status = .mapped, .mapping = &.{0x0077,0x007A}, .status2 = .none, }, + .{ .cp = 0x1F12F, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .cp = 0x1F130, .status = .mapped, .mapping = &.{0x0061}, .status2 = .none, }, + .{ .cp = 0x1F131, .status = .mapped, .mapping = &.{0x0062}, .status2 = .none, }, + .{ .cp = 0x1F132, .status = .mapped, .mapping = &.{0x0063}, .status2 = .none, }, + .{ .cp = 0x1F133, .status = .mapped, .mapping = &.{0x0064}, .status2 = .none, }, + .{ .cp = 0x1F134, .status = .mapped, .mapping = &.{0x0065}, .status2 = .none, }, + .{ .cp = 0x1F135, .status = .mapped, .mapping = &.{0x0066}, .status2 = .none, }, + .{ .cp = 0x1F136, .status = .mapped, .mapping = &.{0x0067}, .status2 = .none, }, + .{ .cp = 0x1F137, .status = .mapped, .mapping = &.{0x0068}, .status2 = .none, }, + .{ .cp = 0x1F138, .status = .mapped, .mapping = &.{0x0069}, .status2 = .none, }, + .{ .cp = 0x1F139, .status = .mapped, .mapping = &.{0x006A}, .status2 = .none, }, + .{ .cp = 0x1F13A, .status = .mapped, .mapping = &.{0x006B}, .status2 = .none, }, + .{ .cp = 0x1F13B, .status = .mapped, .mapping = &.{0x006C}, .status2 = .none, }, + .{ .cp = 0x1F13C, .status = .mapped, .mapping = &.{0x006D}, .status2 = .none, }, + .{ .cp = 0x1F13D, .status = .mapped, .mapping = &.{0x006E}, .status2 = .none, }, + .{ .cp = 0x1F13E, .status = .mapped, .mapping = &.{0x006F}, .status2 = .none, }, + .{ .cp = 0x1F13F, .status = .mapped, .mapping = &.{0x0070}, .status2 = .none, }, + .{ .cp = 0x1F140, .status = .mapped, .mapping = &.{0x0071}, .status2 = .none, }, + .{ .cp = 0x1F141, .status = .mapped, .mapping = &.{0x0072}, .status2 = .none, }, + .{ .cp = 0x1F142, .status = .mapped, .mapping = &.{0x0073}, .status2 = .none, }, + .{ .cp = 0x1F143, .status = .mapped, .mapping = &.{0x0074}, .status2 = .none, }, + .{ .cp = 0x1F144, .status = .mapped, .mapping = &.{0x0075}, .status2 = .none, }, + .{ .cp = 0x1F145, .status = .mapped, .mapping = &.{0x0076}, .status2 = .none, }, + .{ .cp = 0x1F146, .status = .mapped, .mapping = &.{0x0077}, .status2 = .none, }, + .{ .cp = 0x1F147, .status = .mapped, .mapping = &.{0x0078}, .status2 = .none, }, + .{ .cp = 0x1F148, .status = .mapped, .mapping = &.{0x0079}, .status2 = .none, }, + .{ .cp = 0x1F149, .status = .mapped, .mapping = &.{0x007A}, .status2 = .none, }, + .{ .cp = 0x1F14A, .status = .mapped, .mapping = &.{0x0068,0x0076}, .status2 = .none, }, + .{ .cp = 0x1F14B, .status = .mapped, .mapping = &.{0x006D,0x0076}, .status2 = .none, }, + .{ .cp = 0x1F14C, .status = .mapped, .mapping = &.{0x0073,0x0064}, .status2 = .none, }, + .{ .cp = 0x1F14D, .status = .mapped, .mapping = &.{0x0073,0x0073}, .status2 = .none, }, + .{ .cp = 0x1F14E, .status = .mapped, .mapping = &.{0x0070,0x0070,0x0076}, .status2 = .none, }, + .{ .cp = 0x1F14F, .status = .mapped, .mapping = &.{0x0077,0x0063}, .status2 = .none, }, + .{ .cp = 0x1F157, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .cp = 0x1F15F, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .cp = 0x1F16A, .status = .mapped, .mapping = &.{0x006D,0x0063}, .status2 = .none, }, + .{ .cp = 0x1F16B, .status = .mapped, .mapping = &.{0x006D,0x0064}, .status2 = .none, }, + .{ .cp = 0x1F16C, .status = .mapped, .mapping = &.{0x006D,0x0072}, .status2 = .none, }, + .{ .cp = 0x1F179, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .cp = 0x1F17A, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .cp = 0x1F17F, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .cp = 0x1F190, .status = .mapped, .mapping = &.{0x0064,0x006A}, .status2 = .none, }, + .{ .cp = 0x1F1AD, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .cp = 0x1F200, .status = .mapped, .mapping = &.{0x307B,0x304B}, .status2 = .none, }, + .{ .cp = 0x1F201, .status = .mapped, .mapping = &.{0x30B3,0x30B3}, .status2 = .none, }, + .{ .cp = 0x1F202, .status = .mapped, .mapping = &.{0x30B5}, .status2 = .none, }, + .{ .cp = 0x1F210, .status = .mapped, .mapping = &.{0x624B}, .status2 = .none, }, + .{ .cp = 0x1F211, .status = .mapped, .mapping = &.{0x5B57}, .status2 = .none, }, + .{ .cp = 0x1F212, .status = .mapped, .mapping = &.{0x53CC}, .status2 = .none, }, + .{ .cp = 0x1F213, .status = .mapped, .mapping = &.{0x30C7}, .status2 = .none, }, + .{ .cp = 0x1F214, .status = .mapped, .mapping = &.{0x4E8C}, .status2 = .none, }, + .{ .cp = 0x1F215, .status = .mapped, .mapping = &.{0x591A}, .status2 = .none, }, + .{ .cp = 0x1F216, .status = .mapped, .mapping = &.{0x89E3}, .status2 = .none, }, + .{ .cp = 0x1F217, .status = .mapped, .mapping = &.{0x5929}, .status2 = .none, }, + .{ .cp = 0x1F218, .status = .mapped, .mapping = &.{0x4EA4}, .status2 = .none, }, + .{ .cp = 0x1F219, .status = .mapped, .mapping = &.{0x6620}, .status2 = .none, }, + .{ .cp = 0x1F21A, .status = .mapped, .mapping = &.{0x7121}, .status2 = .none, }, + .{ .cp = 0x1F21B, .status = .mapped, .mapping = &.{0x6599}, .status2 = .none, }, + .{ .cp = 0x1F21C, .status = .mapped, .mapping = &.{0x524D}, .status2 = .none, }, + .{ .cp = 0x1F21D, .status = .mapped, .mapping = &.{0x5F8C}, .status2 = .none, }, + .{ .cp = 0x1F21E, .status = .mapped, .mapping = &.{0x518D}, .status2 = .none, }, + .{ .cp = 0x1F21F, .status = .mapped, .mapping = &.{0x65B0}, .status2 = .none, }, + .{ .cp = 0x1F220, .status = .mapped, .mapping = &.{0x521D}, .status2 = .none, }, + .{ .cp = 0x1F221, .status = .mapped, .mapping = &.{0x7D42}, .status2 = .none, }, + .{ .cp = 0x1F222, .status = .mapped, .mapping = &.{0x751F}, .status2 = .none, }, + .{ .cp = 0x1F223, .status = .mapped, .mapping = &.{0x8CA9}, .status2 = .none, }, + .{ .cp = 0x1F224, .status = .mapped, .mapping = &.{0x58F0}, .status2 = .none, }, + .{ .cp = 0x1F225, .status = .mapped, .mapping = &.{0x5439}, .status2 = .none, }, + .{ .cp = 0x1F226, .status = .mapped, .mapping = &.{0x6F14}, .status2 = .none, }, + .{ .cp = 0x1F227, .status = .mapped, .mapping = &.{0x6295}, .status2 = .none, }, + .{ .cp = 0x1F228, .status = .mapped, .mapping = &.{0x6355}, .status2 = .none, }, + .{ .cp = 0x1F229, .status = .mapped, .mapping = &.{0x4E00}, .status2 = .none, }, + .{ .cp = 0x1F22A, .status = .mapped, .mapping = &.{0x4E09}, .status2 = .none, }, + .{ .cp = 0x1F22B, .status = .mapped, .mapping = &.{0x904A}, .status2 = .none, }, + .{ .cp = 0x1F22C, .status = .mapped, .mapping = &.{0x5DE6}, .status2 = .none, }, + .{ .cp = 0x1F22D, .status = .mapped, .mapping = &.{0x4E2D}, .status2 = .none, }, + .{ .cp = 0x1F22E, .status = .mapped, .mapping = &.{0x53F3}, .status2 = .none, }, + .{ .cp = 0x1F22F, .status = .mapped, .mapping = &.{0x6307}, .status2 = .none, }, + .{ .cp = 0x1F230, .status = .mapped, .mapping = &.{0x8D70}, .status2 = .none, }, + .{ .cp = 0x1F231, .status = .mapped, .mapping = &.{0x6253}, .status2 = .none, }, + .{ .cp = 0x1F232, .status = .mapped, .mapping = &.{0x7981}, .status2 = .none, }, + .{ .cp = 0x1F233, .status = .mapped, .mapping = &.{0x7A7A}, .status2 = .none, }, + .{ .cp = 0x1F234, .status = .mapped, .mapping = &.{0x5408}, .status2 = .none, }, + .{ .cp = 0x1F235, .status = .mapped, .mapping = &.{0x6E80}, .status2 = .none, }, + .{ .cp = 0x1F236, .status = .mapped, .mapping = &.{0x6709}, .status2 = .none, }, + .{ .cp = 0x1F237, .status = .mapped, .mapping = &.{0x6708}, .status2 = .none, }, + .{ .cp = 0x1F238, .status = .mapped, .mapping = &.{0x7533}, .status2 = .none, }, + .{ .cp = 0x1F239, .status = .mapped, .mapping = &.{0x5272}, .status2 = .none, }, + .{ .cp = 0x1F23A, .status = .mapped, .mapping = &.{0x55B6}, .status2 = .none, }, + .{ .cp = 0x1F23B, .status = .mapped, .mapping = &.{0x914D}, .status2 = .none, }, + .{ .cp = 0x1F240, .status = .mapped, .mapping = &.{0x3014,0x672C,0x3015}, .status2 = .none, }, + .{ .cp = 0x1F241, .status = .mapped, .mapping = &.{0x3014,0x4E09,0x3015}, .status2 = .none, }, + .{ .cp = 0x1F242, .status = .mapped, .mapping = &.{0x3014,0x4E8C,0x3015}, .status2 = .none, }, + .{ .cp = 0x1F243, .status = .mapped, .mapping = &.{0x3014,0x5B89,0x3015}, .status2 = .none, }, + .{ .cp = 0x1F244, .status = .mapped, .mapping = &.{0x3014,0x70B9,0x3015}, .status2 = .none, }, + .{ .cp = 0x1F245, .status = .mapped, .mapping = &.{0x3014,0x6253,0x3015}, .status2 = .none, }, + .{ .cp = 0x1F246, .status = .mapped, .mapping = &.{0x3014,0x76D7,0x3015}, .status2 = .none, }, + .{ .cp = 0x1F247, .status = .mapped, .mapping = &.{0x3014,0x52DD,0x3015}, .status2 = .none, }, + .{ .cp = 0x1F248, .status = .mapped, .mapping = &.{0x3014,0x6557,0x3015}, .status2 = .none, }, + .{ .cp = 0x1F250, .status = .mapped, .mapping = &.{0x5F97}, .status2 = .none, }, + .{ .cp = 0x1F251, .status = .mapped, .mapping = &.{0x53EF}, .status2 = .none, }, + .{ .cp = 0x1F336, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .cp = 0x1F37D, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .cp = 0x1F3C5, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .cp = 0x1F43F, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .cp = 0x1F440, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .cp = 0x1F441, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .cp = 0x1F4F8, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .cp = 0x1F4FF, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .cp = 0x1F57A, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .cp = 0x1F5A4, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .cp = 0x1F600, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .cp = 0x1F611, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .cp = 0x1F615, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .cp = 0x1F616, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .cp = 0x1F617, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .cp = 0x1F618, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .cp = 0x1F619, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .cp = 0x1F61A, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .cp = 0x1F61B, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .cp = 0x1F61F, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .cp = 0x1F62C, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .cp = 0x1F62D, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .cp = 0x1F634, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .cp = 0x1F6D0, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .cp = 0x1F6D5, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .cp = 0x1F6D8, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .cp = 0x1F6DC, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .cp = 0x1F6F9, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .cp = 0x1F6FA, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .cp = 0x1F7D9, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .cp = 0x1F7F0, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .cp = 0x1F90C, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .cp = 0x1F91F, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .cp = 0x1F930, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .cp = 0x1F93F, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .cp = 0x1F94C, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .cp = 0x1F971, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .cp = 0x1F972, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .cp = 0x1F979, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .cp = 0x1F97A, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .cp = 0x1F97B, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .cp = 0x1F9C0, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .cp = 0x1F9CB, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .cp = 0x1F9CC, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .cp = 0x1FA74, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .cp = 0x1FA89, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .cp = 0x1FA8A, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .cp = 0x1FA8E, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .cp = 0x1FA8F, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .cp = 0x1FABE, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .cp = 0x1FABF, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .cp = 0x1FAC6, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .cp = 0x1FAC7, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x1FAC8, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .cp = 0x1FACD, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .cp = 0x1FADC, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .cp = 0x1FADF, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .cp = 0x1FAE8, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .cp = 0x1FAE9, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .cp = 0x1FAEA, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .cp = 0x1FAEF, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .cp = 0x1FB93, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x1FBF0, .status = .mapped, .mapping = &.{0x0030}, .status2 = .none, }, + .{ .cp = 0x1FBF1, .status = .mapped, .mapping = &.{0x0031}, .status2 = .none, }, + .{ .cp = 0x1FBF2, .status = .mapped, .mapping = &.{0x0032}, .status2 = .none, }, + .{ .cp = 0x1FBF3, .status = .mapped, .mapping = &.{0x0033}, .status2 = .none, }, + .{ .cp = 0x1FBF4, .status = .mapped, .mapping = &.{0x0034}, .status2 = .none, }, + .{ .cp = 0x1FBF5, .status = .mapped, .mapping = &.{0x0035}, .status2 = .none, }, + .{ .cp = 0x1FBF6, .status = .mapped, .mapping = &.{0x0036}, .status2 = .none, }, + .{ .cp = 0x1FBF7, .status = .mapped, .mapping = &.{0x0037}, .status2 = .none, }, + .{ .cp = 0x1FBF8, .status = .mapped, .mapping = &.{0x0038}, .status2 = .none, }, + .{ .cp = 0x1FBF9, .status = .mapped, .mapping = &.{0x0039}, .status2 = .none, }, + .{ .cp = 0x1FBFA, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .cp = 0x2B739, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0x2F800, .status = .mapped, .mapping = &.{0x4E3D}, .status2 = .none, }, + .{ .cp = 0x2F801, .status = .mapped, .mapping = &.{0x4E38}, .status2 = .none, }, + .{ .cp = 0x2F802, .status = .mapped, .mapping = &.{0x4E41}, .status2 = .none, }, + .{ .cp = 0x2F803, .status = .mapped, .mapping = &.{0x20122}, .status2 = .none, }, + .{ .cp = 0x2F804, .status = .mapped, .mapping = &.{0x4F60}, .status2 = .none, }, + .{ .cp = 0x2F805, .status = .mapped, .mapping = &.{0x4FAE}, .status2 = .none, }, + .{ .cp = 0x2F806, .status = .mapped, .mapping = &.{0x4FBB}, .status2 = .none, }, + .{ .cp = 0x2F807, .status = .mapped, .mapping = &.{0x5002}, .status2 = .none, }, + .{ .cp = 0x2F808, .status = .mapped, .mapping = &.{0x507A}, .status2 = .none, }, + .{ .cp = 0x2F809, .status = .mapped, .mapping = &.{0x5099}, .status2 = .none, }, + .{ .cp = 0x2F80A, .status = .mapped, .mapping = &.{0x50E7}, .status2 = .none, }, + .{ .cp = 0x2F80B, .status = .mapped, .mapping = &.{0x50CF}, .status2 = .none, }, + .{ .cp = 0x2F80C, .status = .mapped, .mapping = &.{0x349E}, .status2 = .none, }, + .{ .cp = 0x2F80D, .status = .mapped, .mapping = &.{0x2063A}, .status2 = .none, }, + .{ .cp = 0x2F80E, .status = .mapped, .mapping = &.{0x514D}, .status2 = .none, }, + .{ .cp = 0x2F80F, .status = .mapped, .mapping = &.{0x5154}, .status2 = .none, }, + .{ .cp = 0x2F810, .status = .mapped, .mapping = &.{0x5164}, .status2 = .none, }, + .{ .cp = 0x2F811, .status = .mapped, .mapping = &.{0x5177}, .status2 = .none, }, + .{ .cp = 0x2F812, .status = .mapped, .mapping = &.{0x2051C}, .status2 = .none, }, + .{ .cp = 0x2F813, .status = .mapped, .mapping = &.{0x34B9}, .status2 = .none, }, + .{ .cp = 0x2F814, .status = .mapped, .mapping = &.{0x5167}, .status2 = .none, }, + .{ .cp = 0x2F815, .status = .mapped, .mapping = &.{0x518D}, .status2 = .none, }, + .{ .cp = 0x2F816, .status = .mapped, .mapping = &.{0x2054B}, .status2 = .none, }, + .{ .cp = 0x2F817, .status = .mapped, .mapping = &.{0x5197}, .status2 = .none, }, + .{ .cp = 0x2F818, .status = .mapped, .mapping = &.{0x51A4}, .status2 = .none, }, + .{ .cp = 0x2F819, .status = .mapped, .mapping = &.{0x4ECC}, .status2 = .none, }, + .{ .cp = 0x2F81A, .status = .mapped, .mapping = &.{0x51AC}, .status2 = .none, }, + .{ .cp = 0x2F81B, .status = .mapped, .mapping = &.{0x51B5}, .status2 = .none, }, + .{ .cp = 0x2F81C, .status = .mapped, .mapping = &.{0x291DF}, .status2 = .none, }, + .{ .cp = 0x2F81D, .status = .mapped, .mapping = &.{0x51F5}, .status2 = .none, }, + .{ .cp = 0x2F81E, .status = .mapped, .mapping = &.{0x5203}, .status2 = .none, }, + .{ .cp = 0x2F81F, .status = .mapped, .mapping = &.{0x34DF}, .status2 = .none, }, + .{ .cp = 0x2F820, .status = .mapped, .mapping = &.{0x523B}, .status2 = .none, }, + .{ .cp = 0x2F821, .status = .mapped, .mapping = &.{0x5246}, .status2 = .none, }, + .{ .cp = 0x2F822, .status = .mapped, .mapping = &.{0x5272}, .status2 = .none, }, + .{ .cp = 0x2F823, .status = .mapped, .mapping = &.{0x5277}, .status2 = .none, }, + .{ .cp = 0x2F824, .status = .mapped, .mapping = &.{0x3515}, .status2 = .none, }, + .{ .cp = 0x2F825, .status = .mapped, .mapping = &.{0x52C7}, .status2 = .none, }, + .{ .cp = 0x2F826, .status = .mapped, .mapping = &.{0x52C9}, .status2 = .none, }, + .{ .cp = 0x2F827, .status = .mapped, .mapping = &.{0x52E4}, .status2 = .none, }, + .{ .cp = 0x2F828, .status = .mapped, .mapping = &.{0x52FA}, .status2 = .none, }, + .{ .cp = 0x2F829, .status = .mapped, .mapping = &.{0x5305}, .status2 = .none, }, + .{ .cp = 0x2F82A, .status = .mapped, .mapping = &.{0x5306}, .status2 = .none, }, + .{ .cp = 0x2F82B, .status = .mapped, .mapping = &.{0x5317}, .status2 = .none, }, + .{ .cp = 0x2F82C, .status = .mapped, .mapping = &.{0x5349}, .status2 = .none, }, + .{ .cp = 0x2F82D, .status = .mapped, .mapping = &.{0x5351}, .status2 = .none, }, + .{ .cp = 0x2F82E, .status = .mapped, .mapping = &.{0x535A}, .status2 = .none, }, + .{ .cp = 0x2F82F, .status = .mapped, .mapping = &.{0x5373}, .status2 = .none, }, + .{ .cp = 0x2F830, .status = .mapped, .mapping = &.{0x537D}, .status2 = .none, }, + .{ .cp = 0x2F834, .status = .mapped, .mapping = &.{0x20A2C}, .status2 = .none, }, + .{ .cp = 0x2F835, .status = .mapped, .mapping = &.{0x7070}, .status2 = .none, }, + .{ .cp = 0x2F836, .status = .mapped, .mapping = &.{0x53CA}, .status2 = .none, }, + .{ .cp = 0x2F837, .status = .mapped, .mapping = &.{0x53DF}, .status2 = .none, }, + .{ .cp = 0x2F838, .status = .mapped, .mapping = &.{0x20B63}, .status2 = .none, }, + .{ .cp = 0x2F839, .status = .mapped, .mapping = &.{0x53EB}, .status2 = .none, }, + .{ .cp = 0x2F83A, .status = .mapped, .mapping = &.{0x53F1}, .status2 = .none, }, + .{ .cp = 0x2F83B, .status = .mapped, .mapping = &.{0x5406}, .status2 = .none, }, + .{ .cp = 0x2F83C, .status = .mapped, .mapping = &.{0x549E}, .status2 = .none, }, + .{ .cp = 0x2F83D, .status = .mapped, .mapping = &.{0x5438}, .status2 = .none, }, + .{ .cp = 0x2F83E, .status = .mapped, .mapping = &.{0x5448}, .status2 = .none, }, + .{ .cp = 0x2F83F, .status = .mapped, .mapping = &.{0x5468}, .status2 = .none, }, + .{ .cp = 0x2F840, .status = .mapped, .mapping = &.{0x54A2}, .status2 = .none, }, + .{ .cp = 0x2F841, .status = .mapped, .mapping = &.{0x54F6}, .status2 = .none, }, + .{ .cp = 0x2F842, .status = .mapped, .mapping = &.{0x5510}, .status2 = .none, }, + .{ .cp = 0x2F843, .status = .mapped, .mapping = &.{0x5553}, .status2 = .none, }, + .{ .cp = 0x2F844, .status = .mapped, .mapping = &.{0x5563}, .status2 = .none, }, + .{ .cp = 0x2F847, .status = .mapped, .mapping = &.{0x5599}, .status2 = .none, }, + .{ .cp = 0x2F848, .status = .mapped, .mapping = &.{0x55AB}, .status2 = .none, }, + .{ .cp = 0x2F849, .status = .mapped, .mapping = &.{0x55B3}, .status2 = .none, }, + .{ .cp = 0x2F84A, .status = .mapped, .mapping = &.{0x55C2}, .status2 = .none, }, + .{ .cp = 0x2F84B, .status = .mapped, .mapping = &.{0x5716}, .status2 = .none, }, + .{ .cp = 0x2F84C, .status = .mapped, .mapping = &.{0x5606}, .status2 = .none, }, + .{ .cp = 0x2F84D, .status = .mapped, .mapping = &.{0x5717}, .status2 = .none, }, + .{ .cp = 0x2F84E, .status = .mapped, .mapping = &.{0x5651}, .status2 = .none, }, + .{ .cp = 0x2F84F, .status = .mapped, .mapping = &.{0x5674}, .status2 = .none, }, + .{ .cp = 0x2F850, .status = .mapped, .mapping = &.{0x5207}, .status2 = .none, }, + .{ .cp = 0x2F851, .status = .mapped, .mapping = &.{0x58EE}, .status2 = .none, }, + .{ .cp = 0x2F852, .status = .mapped, .mapping = &.{0x57CE}, .status2 = .none, }, + .{ .cp = 0x2F853, .status = .mapped, .mapping = &.{0x57F4}, .status2 = .none, }, + .{ .cp = 0x2F854, .status = .mapped, .mapping = &.{0x580D}, .status2 = .none, }, + .{ .cp = 0x2F855, .status = .mapped, .mapping = &.{0x578B}, .status2 = .none, }, + .{ .cp = 0x2F856, .status = .mapped, .mapping = &.{0x5832}, .status2 = .none, }, + .{ .cp = 0x2F857, .status = .mapped, .mapping = &.{0x5831}, .status2 = .none, }, + .{ .cp = 0x2F858, .status = .mapped, .mapping = &.{0x58AC}, .status2 = .none, }, + .{ .cp = 0x2F859, .status = .mapped, .mapping = &.{0x214E4}, .status2 = .none, }, + .{ .cp = 0x2F85A, .status = .mapped, .mapping = &.{0x58F2}, .status2 = .none, }, + .{ .cp = 0x2F85B, .status = .mapped, .mapping = &.{0x58F7}, .status2 = .none, }, + .{ .cp = 0x2F85C, .status = .mapped, .mapping = &.{0x5906}, .status2 = .none, }, + .{ .cp = 0x2F85D, .status = .mapped, .mapping = &.{0x591A}, .status2 = .none, }, + .{ .cp = 0x2F85E, .status = .mapped, .mapping = &.{0x5922}, .status2 = .none, }, + .{ .cp = 0x2F85F, .status = .mapped, .mapping = &.{0x5962}, .status2 = .none, }, + .{ .cp = 0x2F860, .status = .mapped, .mapping = &.{0x216A8}, .status2 = .none, }, + .{ .cp = 0x2F861, .status = .mapped, .mapping = &.{0x216EA}, .status2 = .none, }, + .{ .cp = 0x2F862, .status = .mapped, .mapping = &.{0x59EC}, .status2 = .none, }, + .{ .cp = 0x2F863, .status = .mapped, .mapping = &.{0x5A1B}, .status2 = .none, }, + .{ .cp = 0x2F864, .status = .mapped, .mapping = &.{0x5A27}, .status2 = .none, }, + .{ .cp = 0x2F865, .status = .mapped, .mapping = &.{0x59D8}, .status2 = .none, }, + .{ .cp = 0x2F866, .status = .mapped, .mapping = &.{0x5A66}, .status2 = .none, }, + .{ .cp = 0x2F867, .status = .mapped, .mapping = &.{0x36EE}, .status2 = .none, }, + .{ .cp = 0x2F868, .status = .mapped, .mapping = &.{0x36FC}, .status2 = .none, }, + .{ .cp = 0x2F869, .status = .mapped, .mapping = &.{0x5B08}, .status2 = .none, }, + .{ .cp = 0x2F86C, .status = .mapped, .mapping = &.{0x219C8}, .status2 = .none, }, + .{ .cp = 0x2F86D, .status = .mapped, .mapping = &.{0x5BC3}, .status2 = .none, }, + .{ .cp = 0x2F86E, .status = .mapped, .mapping = &.{0x5BD8}, .status2 = .none, }, + .{ .cp = 0x2F86F, .status = .mapped, .mapping = &.{0x5BE7}, .status2 = .none, }, + .{ .cp = 0x2F870, .status = .mapped, .mapping = &.{0x5BF3}, .status2 = .none, }, + .{ .cp = 0x2F871, .status = .mapped, .mapping = &.{0x21B18}, .status2 = .none, }, + .{ .cp = 0x2F872, .status = .mapped, .mapping = &.{0x5BFF}, .status2 = .none, }, + .{ .cp = 0x2F873, .status = .mapped, .mapping = &.{0x5C06}, .status2 = .none, }, + .{ .cp = 0x2F874, .status = .mapped, .mapping = &.{0x5F53}, .status2 = .none, }, + .{ .cp = 0x2F875, .status = .mapped, .mapping = &.{0x5C22}, .status2 = .none, }, + .{ .cp = 0x2F876, .status = .mapped, .mapping = &.{0x3781}, .status2 = .none, }, + .{ .cp = 0x2F877, .status = .mapped, .mapping = &.{0x5C60}, .status2 = .none, }, + .{ .cp = 0x2F878, .status = .mapped, .mapping = &.{0x5C6E}, .status2 = .none, }, + .{ .cp = 0x2F879, .status = .mapped, .mapping = &.{0x5CC0}, .status2 = .none, }, + .{ .cp = 0x2F87A, .status = .mapped, .mapping = &.{0x5C8D}, .status2 = .none, }, + .{ .cp = 0x2F87B, .status = .mapped, .mapping = &.{0x21DE4}, .status2 = .none, }, + .{ .cp = 0x2F87C, .status = .mapped, .mapping = &.{0x5D43}, .status2 = .none, }, + .{ .cp = 0x2F87D, .status = .mapped, .mapping = &.{0x21DE6}, .status2 = .none, }, + .{ .cp = 0x2F87E, .status = .mapped, .mapping = &.{0x5D6E}, .status2 = .none, }, + .{ .cp = 0x2F87F, .status = .mapped, .mapping = &.{0x5D6B}, .status2 = .none, }, + .{ .cp = 0x2F880, .status = .mapped, .mapping = &.{0x5D7C}, .status2 = .none, }, + .{ .cp = 0x2F881, .status = .mapped, .mapping = &.{0x5DE1}, .status2 = .none, }, + .{ .cp = 0x2F882, .status = .mapped, .mapping = &.{0x5DE2}, .status2 = .none, }, + .{ .cp = 0x2F883, .status = .mapped, .mapping = &.{0x382F}, .status2 = .none, }, + .{ .cp = 0x2F884, .status = .mapped, .mapping = &.{0x5DFD}, .status2 = .none, }, + .{ .cp = 0x2F885, .status = .mapped, .mapping = &.{0x5E28}, .status2 = .none, }, + .{ .cp = 0x2F886, .status = .mapped, .mapping = &.{0x5E3D}, .status2 = .none, }, + .{ .cp = 0x2F887, .status = .mapped, .mapping = &.{0x5E69}, .status2 = .none, }, + .{ .cp = 0x2F888, .status = .mapped, .mapping = &.{0x3862}, .status2 = .none, }, + .{ .cp = 0x2F889, .status = .mapped, .mapping = &.{0x22183}, .status2 = .none, }, + .{ .cp = 0x2F88A, .status = .mapped, .mapping = &.{0x387C}, .status2 = .none, }, + .{ .cp = 0x2F88B, .status = .mapped, .mapping = &.{0x5EB0}, .status2 = .none, }, + .{ .cp = 0x2F88C, .status = .mapped, .mapping = &.{0x5EB3}, .status2 = .none, }, + .{ .cp = 0x2F88D, .status = .mapped, .mapping = &.{0x5EB6}, .status2 = .none, }, + .{ .cp = 0x2F88E, .status = .mapped, .mapping = &.{0x5ECA}, .status2 = .none, }, + .{ .cp = 0x2F88F, .status = .mapped, .mapping = &.{0x2A392}, .status2 = .none, }, + .{ .cp = 0x2F890, .status = .mapped, .mapping = &.{0x5EFE}, .status2 = .none, }, + .{ .cp = 0x2F893, .status = .mapped, .mapping = &.{0x8201}, .status2 = .none, }, + .{ .cp = 0x2F896, .status = .mapped, .mapping = &.{0x38C7}, .status2 = .none, }, + .{ .cp = 0x2F897, .status = .mapped, .mapping = &.{0x232B8}, .status2 = .none, }, + .{ .cp = 0x2F898, .status = .mapped, .mapping = &.{0x261DA}, .status2 = .none, }, + .{ .cp = 0x2F899, .status = .mapped, .mapping = &.{0x5F62}, .status2 = .none, }, + .{ .cp = 0x2F89A, .status = .mapped, .mapping = &.{0x5F6B}, .status2 = .none, }, + .{ .cp = 0x2F89B, .status = .mapped, .mapping = &.{0x38E3}, .status2 = .none, }, + .{ .cp = 0x2F89C, .status = .mapped, .mapping = &.{0x5F9A}, .status2 = .none, }, + .{ .cp = 0x2F89D, .status = .mapped, .mapping = &.{0x5FCD}, .status2 = .none, }, + .{ .cp = 0x2F89E, .status = .mapped, .mapping = &.{0x5FD7}, .status2 = .none, }, + .{ .cp = 0x2F89F, .status = .mapped, .mapping = &.{0x5FF9}, .status2 = .none, }, + .{ .cp = 0x2F8A0, .status = .mapped, .mapping = &.{0x6081}, .status2 = .none, }, + .{ .cp = 0x2F8A1, .status = .mapped, .mapping = &.{0x393A}, .status2 = .none, }, + .{ .cp = 0x2F8A2, .status = .mapped, .mapping = &.{0x391C}, .status2 = .none, }, + .{ .cp = 0x2F8A3, .status = .mapped, .mapping = &.{0x6094}, .status2 = .none, }, + .{ .cp = 0x2F8A4, .status = .mapped, .mapping = &.{0x226D4}, .status2 = .none, }, + .{ .cp = 0x2F8A5, .status = .mapped, .mapping = &.{0x60C7}, .status2 = .none, }, + .{ .cp = 0x2F8A6, .status = .mapped, .mapping = &.{0x6148}, .status2 = .none, }, + .{ .cp = 0x2F8A7, .status = .mapped, .mapping = &.{0x614C}, .status2 = .none, }, + .{ .cp = 0x2F8A8, .status = .mapped, .mapping = &.{0x614E}, .status2 = .none, }, + .{ .cp = 0x2F8A9, .status = .mapped, .mapping = &.{0x614C}, .status2 = .none, }, + .{ .cp = 0x2F8AA, .status = .mapped, .mapping = &.{0x617A}, .status2 = .none, }, + .{ .cp = 0x2F8AB, .status = .mapped, .mapping = &.{0x618E}, .status2 = .none, }, + .{ .cp = 0x2F8AC, .status = .mapped, .mapping = &.{0x61B2}, .status2 = .none, }, + .{ .cp = 0x2F8AD, .status = .mapped, .mapping = &.{0x61A4}, .status2 = .none, }, + .{ .cp = 0x2F8AE, .status = .mapped, .mapping = &.{0x61AF}, .status2 = .none, }, + .{ .cp = 0x2F8AF, .status = .mapped, .mapping = &.{0x61DE}, .status2 = .none, }, + .{ .cp = 0x2F8B0, .status = .mapped, .mapping = &.{0x61F2}, .status2 = .none, }, + .{ .cp = 0x2F8B1, .status = .mapped, .mapping = &.{0x61F6}, .status2 = .none, }, + .{ .cp = 0x2F8B2, .status = .mapped, .mapping = &.{0x6210}, .status2 = .none, }, + .{ .cp = 0x2F8B3, .status = .mapped, .mapping = &.{0x621B}, .status2 = .none, }, + .{ .cp = 0x2F8B4, .status = .mapped, .mapping = &.{0x625D}, .status2 = .none, }, + .{ .cp = 0x2F8B5, .status = .mapped, .mapping = &.{0x62B1}, .status2 = .none, }, + .{ .cp = 0x2F8B6, .status = .mapped, .mapping = &.{0x62D4}, .status2 = .none, }, + .{ .cp = 0x2F8B7, .status = .mapped, .mapping = &.{0x6350}, .status2 = .none, }, + .{ .cp = 0x2F8B8, .status = .mapped, .mapping = &.{0x22B0C}, .status2 = .none, }, + .{ .cp = 0x2F8B9, .status = .mapped, .mapping = &.{0x633D}, .status2 = .none, }, + .{ .cp = 0x2F8BA, .status = .mapped, .mapping = &.{0x62FC}, .status2 = .none, }, + .{ .cp = 0x2F8BB, .status = .mapped, .mapping = &.{0x6368}, .status2 = .none, }, + .{ .cp = 0x2F8BC, .status = .mapped, .mapping = &.{0x6383}, .status2 = .none, }, + .{ .cp = 0x2F8BD, .status = .mapped, .mapping = &.{0x63E4}, .status2 = .none, }, + .{ .cp = 0x2F8BE, .status = .mapped, .mapping = &.{0x22BF1}, .status2 = .none, }, + .{ .cp = 0x2F8BF, .status = .mapped, .mapping = &.{0x6422}, .status2 = .none, }, + .{ .cp = 0x2F8C0, .status = .mapped, .mapping = &.{0x63C5}, .status2 = .none, }, + .{ .cp = 0x2F8C1, .status = .mapped, .mapping = &.{0x63A9}, .status2 = .none, }, + .{ .cp = 0x2F8C2, .status = .mapped, .mapping = &.{0x3A2E}, .status2 = .none, }, + .{ .cp = 0x2F8C3, .status = .mapped, .mapping = &.{0x6469}, .status2 = .none, }, + .{ .cp = 0x2F8C4, .status = .mapped, .mapping = &.{0x647E}, .status2 = .none, }, + .{ .cp = 0x2F8C5, .status = .mapped, .mapping = &.{0x649D}, .status2 = .none, }, + .{ .cp = 0x2F8C6, .status = .mapped, .mapping = &.{0x6477}, .status2 = .none, }, + .{ .cp = 0x2F8C7, .status = .mapped, .mapping = &.{0x3A6C}, .status2 = .none, }, + .{ .cp = 0x2F8C8, .status = .mapped, .mapping = &.{0x654F}, .status2 = .none, }, + .{ .cp = 0x2F8C9, .status = .mapped, .mapping = &.{0x656C}, .status2 = .none, }, + .{ .cp = 0x2F8CA, .status = .mapped, .mapping = &.{0x2300A}, .status2 = .none, }, + .{ .cp = 0x2F8CB, .status = .mapped, .mapping = &.{0x65E3}, .status2 = .none, }, + .{ .cp = 0x2F8CC, .status = .mapped, .mapping = &.{0x66F8}, .status2 = .none, }, + .{ .cp = 0x2F8CD, .status = .mapped, .mapping = &.{0x6649}, .status2 = .none, }, + .{ .cp = 0x2F8CE, .status = .mapped, .mapping = &.{0x3B19}, .status2 = .none, }, + .{ .cp = 0x2F8CF, .status = .mapped, .mapping = &.{0x6691}, .status2 = .none, }, + .{ .cp = 0x2F8D0, .status = .mapped, .mapping = &.{0x3B08}, .status2 = .none, }, + .{ .cp = 0x2F8D1, .status = .mapped, .mapping = &.{0x3AE4}, .status2 = .none, }, + .{ .cp = 0x2F8D2, .status = .mapped, .mapping = &.{0x5192}, .status2 = .none, }, + .{ .cp = 0x2F8D3, .status = .mapped, .mapping = &.{0x5195}, .status2 = .none, }, + .{ .cp = 0x2F8D4, .status = .mapped, .mapping = &.{0x6700}, .status2 = .none, }, + .{ .cp = 0x2F8D5, .status = .mapped, .mapping = &.{0x669C}, .status2 = .none, }, + .{ .cp = 0x2F8D6, .status = .mapped, .mapping = &.{0x80AD}, .status2 = .none, }, + .{ .cp = 0x2F8D7, .status = .mapped, .mapping = &.{0x43D9}, .status2 = .none, }, + .{ .cp = 0x2F8D8, .status = .mapped, .mapping = &.{0x6717}, .status2 = .none, }, + .{ .cp = 0x2F8D9, .status = .mapped, .mapping = &.{0x671B}, .status2 = .none, }, + .{ .cp = 0x2F8DA, .status = .mapped, .mapping = &.{0x6721}, .status2 = .none, }, + .{ .cp = 0x2F8DB, .status = .mapped, .mapping = &.{0x675E}, .status2 = .none, }, + .{ .cp = 0x2F8DC, .status = .mapped, .mapping = &.{0x6753}, .status2 = .none, }, + .{ .cp = 0x2F8DD, .status = .mapped, .mapping = &.{0x233C3}, .status2 = .none, }, + .{ .cp = 0x2F8DE, .status = .mapped, .mapping = &.{0x3B49}, .status2 = .none, }, + .{ .cp = 0x2F8DF, .status = .mapped, .mapping = &.{0x67FA}, .status2 = .none, }, + .{ .cp = 0x2F8E0, .status = .mapped, .mapping = &.{0x6785}, .status2 = .none, }, + .{ .cp = 0x2F8E1, .status = .mapped, .mapping = &.{0x6852}, .status2 = .none, }, + .{ .cp = 0x2F8E2, .status = .mapped, .mapping = &.{0x6885}, .status2 = .none, }, + .{ .cp = 0x2F8E3, .status = .mapped, .mapping = &.{0x2346D}, .status2 = .none, }, + .{ .cp = 0x2F8E4, .status = .mapped, .mapping = &.{0x688E}, .status2 = .none, }, + .{ .cp = 0x2F8E5, .status = .mapped, .mapping = &.{0x681F}, .status2 = .none, }, + .{ .cp = 0x2F8E6, .status = .mapped, .mapping = &.{0x6914}, .status2 = .none, }, + .{ .cp = 0x2F8E7, .status = .mapped, .mapping = &.{0x3B9D}, .status2 = .none, }, + .{ .cp = 0x2F8E8, .status = .mapped, .mapping = &.{0x6942}, .status2 = .none, }, + .{ .cp = 0x2F8E9, .status = .mapped, .mapping = &.{0x69A3}, .status2 = .none, }, + .{ .cp = 0x2F8EA, .status = .mapped, .mapping = &.{0x69EA}, .status2 = .none, }, + .{ .cp = 0x2F8EB, .status = .mapped, .mapping = &.{0x6AA8}, .status2 = .none, }, + .{ .cp = 0x2F8EC, .status = .mapped, .mapping = &.{0x236A3}, .status2 = .none, }, + .{ .cp = 0x2F8ED, .status = .mapped, .mapping = &.{0x6ADB}, .status2 = .none, }, + .{ .cp = 0x2F8EE, .status = .mapped, .mapping = &.{0x3C18}, .status2 = .none, }, + .{ .cp = 0x2F8EF, .status = .mapped, .mapping = &.{0x6B21}, .status2 = .none, }, + .{ .cp = 0x2F8F0, .status = .mapped, .mapping = &.{0x238A7}, .status2 = .none, }, + .{ .cp = 0x2F8F1, .status = .mapped, .mapping = &.{0x6B54}, .status2 = .none, }, + .{ .cp = 0x2F8F2, .status = .mapped, .mapping = &.{0x3C4E}, .status2 = .none, }, + .{ .cp = 0x2F8F3, .status = .mapped, .mapping = &.{0x6B72}, .status2 = .none, }, + .{ .cp = 0x2F8F4, .status = .mapped, .mapping = &.{0x6B9F}, .status2 = .none, }, + .{ .cp = 0x2F8F5, .status = .mapped, .mapping = &.{0x6BBA}, .status2 = .none, }, + .{ .cp = 0x2F8F6, .status = .mapped, .mapping = &.{0x6BBB}, .status2 = .none, }, + .{ .cp = 0x2F8F7, .status = .mapped, .mapping = &.{0x23A8D}, .status2 = .none, }, + .{ .cp = 0x2F8F8, .status = .mapped, .mapping = &.{0x21D0B}, .status2 = .none, }, + .{ .cp = 0x2F8F9, .status = .mapped, .mapping = &.{0x23AFA}, .status2 = .none, }, + .{ .cp = 0x2F8FA, .status = .mapped, .mapping = &.{0x6C4E}, .status2 = .none, }, + .{ .cp = 0x2F8FB, .status = .mapped, .mapping = &.{0x23CBC}, .status2 = .none, }, + .{ .cp = 0x2F8FC, .status = .mapped, .mapping = &.{0x6CBF}, .status2 = .none, }, + .{ .cp = 0x2F8FD, .status = .mapped, .mapping = &.{0x6CCD}, .status2 = .none, }, + .{ .cp = 0x2F8FE, .status = .mapped, .mapping = &.{0x6C67}, .status2 = .none, }, + .{ .cp = 0x2F8FF, .status = .mapped, .mapping = &.{0x6D16}, .status2 = .none, }, + .{ .cp = 0x2F900, .status = .mapped, .mapping = &.{0x6D3E}, .status2 = .none, }, + .{ .cp = 0x2F901, .status = .mapped, .mapping = &.{0x6D77}, .status2 = .none, }, + .{ .cp = 0x2F902, .status = .mapped, .mapping = &.{0x6D41}, .status2 = .none, }, + .{ .cp = 0x2F903, .status = .mapped, .mapping = &.{0x6D69}, .status2 = .none, }, + .{ .cp = 0x2F904, .status = .mapped, .mapping = &.{0x6D78}, .status2 = .none, }, + .{ .cp = 0x2F905, .status = .mapped, .mapping = &.{0x6D85}, .status2 = .none, }, + .{ .cp = 0x2F906, .status = .mapped, .mapping = &.{0x23D1E}, .status2 = .none, }, + .{ .cp = 0x2F907, .status = .mapped, .mapping = &.{0x6D34}, .status2 = .none, }, + .{ .cp = 0x2F908, .status = .mapped, .mapping = &.{0x6E2F}, .status2 = .none, }, + .{ .cp = 0x2F909, .status = .mapped, .mapping = &.{0x6E6E}, .status2 = .none, }, + .{ .cp = 0x2F90A, .status = .mapped, .mapping = &.{0x3D33}, .status2 = .none, }, + .{ .cp = 0x2F90B, .status = .mapped, .mapping = &.{0x6ECB}, .status2 = .none, }, + .{ .cp = 0x2F90C, .status = .mapped, .mapping = &.{0x6EC7}, .status2 = .none, }, + .{ .cp = 0x2F90D, .status = .mapped, .mapping = &.{0x23ED1}, .status2 = .none, }, + .{ .cp = 0x2F90E, .status = .mapped, .mapping = &.{0x6DF9}, .status2 = .none, }, + .{ .cp = 0x2F90F, .status = .mapped, .mapping = &.{0x6F6E}, .status2 = .none, }, + .{ .cp = 0x2F910, .status = .mapped, .mapping = &.{0x23F5E}, .status2 = .none, }, + .{ .cp = 0x2F911, .status = .mapped, .mapping = &.{0x23F8E}, .status2 = .none, }, + .{ .cp = 0x2F912, .status = .mapped, .mapping = &.{0x6FC6}, .status2 = .none, }, + .{ .cp = 0x2F913, .status = .mapped, .mapping = &.{0x7039}, .status2 = .none, }, + .{ .cp = 0x2F914, .status = .mapped, .mapping = &.{0x701E}, .status2 = .none, }, + .{ .cp = 0x2F915, .status = .mapped, .mapping = &.{0x701B}, .status2 = .none, }, + .{ .cp = 0x2F916, .status = .mapped, .mapping = &.{0x3D96}, .status2 = .none, }, + .{ .cp = 0x2F917, .status = .mapped, .mapping = &.{0x704A}, .status2 = .none, }, + .{ .cp = 0x2F918, .status = .mapped, .mapping = &.{0x707D}, .status2 = .none, }, + .{ .cp = 0x2F919, .status = .mapped, .mapping = &.{0x7077}, .status2 = .none, }, + .{ .cp = 0x2F91A, .status = .mapped, .mapping = &.{0x70AD}, .status2 = .none, }, + .{ .cp = 0x2F91B, .status = .mapped, .mapping = &.{0x20525}, .status2 = .none, }, + .{ .cp = 0x2F91C, .status = .mapped, .mapping = &.{0x7145}, .status2 = .none, }, + .{ .cp = 0x2F91D, .status = .mapped, .mapping = &.{0x24263}, .status2 = .none, }, + .{ .cp = 0x2F91E, .status = .mapped, .mapping = &.{0x719C}, .status2 = .none, }, + .{ .cp = 0x2F91F, .status = .mapped, .mapping = &.{0x243AB}, .status2 = .none, }, + .{ .cp = 0x2F920, .status = .mapped, .mapping = &.{0x7228}, .status2 = .none, }, + .{ .cp = 0x2F921, .status = .mapped, .mapping = &.{0x7235}, .status2 = .none, }, + .{ .cp = 0x2F922, .status = .mapped, .mapping = &.{0x7250}, .status2 = .none, }, + .{ .cp = 0x2F923, .status = .mapped, .mapping = &.{0x24608}, .status2 = .none, }, + .{ .cp = 0x2F924, .status = .mapped, .mapping = &.{0x7280}, .status2 = .none, }, + .{ .cp = 0x2F925, .status = .mapped, .mapping = &.{0x7295}, .status2 = .none, }, + .{ .cp = 0x2F926, .status = .mapped, .mapping = &.{0x24735}, .status2 = .none, }, + .{ .cp = 0x2F927, .status = .mapped, .mapping = &.{0x24814}, .status2 = .none, }, + .{ .cp = 0x2F928, .status = .mapped, .mapping = &.{0x737A}, .status2 = .none, }, + .{ .cp = 0x2F929, .status = .mapped, .mapping = &.{0x738B}, .status2 = .none, }, + .{ .cp = 0x2F92A, .status = .mapped, .mapping = &.{0x3EAC}, .status2 = .none, }, + .{ .cp = 0x2F92B, .status = .mapped, .mapping = &.{0x73A5}, .status2 = .none, }, + .{ .cp = 0x2F92E, .status = .mapped, .mapping = &.{0x7447}, .status2 = .none, }, + .{ .cp = 0x2F92F, .status = .mapped, .mapping = &.{0x745C}, .status2 = .none, }, + .{ .cp = 0x2F930, .status = .mapped, .mapping = &.{0x7471}, .status2 = .none, }, + .{ .cp = 0x2F931, .status = .mapped, .mapping = &.{0x7485}, .status2 = .none, }, + .{ .cp = 0x2F932, .status = .mapped, .mapping = &.{0x74CA}, .status2 = .none, }, + .{ .cp = 0x2F933, .status = .mapped, .mapping = &.{0x3F1B}, .status2 = .none, }, + .{ .cp = 0x2F934, .status = .mapped, .mapping = &.{0x7524}, .status2 = .none, }, + .{ .cp = 0x2F935, .status = .mapped, .mapping = &.{0x24C36}, .status2 = .none, }, + .{ .cp = 0x2F936, .status = .mapped, .mapping = &.{0x753E}, .status2 = .none, }, + .{ .cp = 0x2F937, .status = .mapped, .mapping = &.{0x24C92}, .status2 = .none, }, + .{ .cp = 0x2F938, .status = .mapped, .mapping = &.{0x7570}, .status2 = .none, }, + .{ .cp = 0x2F939, .status = .mapped, .mapping = &.{0x2219F}, .status2 = .none, }, + .{ .cp = 0x2F93A, .status = .mapped, .mapping = &.{0x7610}, .status2 = .none, }, + .{ .cp = 0x2F93B, .status = .mapped, .mapping = &.{0x24FA1}, .status2 = .none, }, + .{ .cp = 0x2F93C, .status = .mapped, .mapping = &.{0x24FB8}, .status2 = .none, }, + .{ .cp = 0x2F93D, .status = .mapped, .mapping = &.{0x25044}, .status2 = .none, }, + .{ .cp = 0x2F93E, .status = .mapped, .mapping = &.{0x3FFC}, .status2 = .none, }, + .{ .cp = 0x2F93F, .status = .mapped, .mapping = &.{0x4008}, .status2 = .none, }, + .{ .cp = 0x2F940, .status = .mapped, .mapping = &.{0x76F4}, .status2 = .none, }, + .{ .cp = 0x2F941, .status = .mapped, .mapping = &.{0x250F3}, .status2 = .none, }, + .{ .cp = 0x2F942, .status = .mapped, .mapping = &.{0x250F2}, .status2 = .none, }, + .{ .cp = 0x2F943, .status = .mapped, .mapping = &.{0x25119}, .status2 = .none, }, + .{ .cp = 0x2F944, .status = .mapped, .mapping = &.{0x25133}, .status2 = .none, }, + .{ .cp = 0x2F945, .status = .mapped, .mapping = &.{0x771E}, .status2 = .none, }, + .{ .cp = 0x2F948, .status = .mapped, .mapping = &.{0x774A}, .status2 = .none, }, + .{ .cp = 0x2F949, .status = .mapped, .mapping = &.{0x4039}, .status2 = .none, }, + .{ .cp = 0x2F94A, .status = .mapped, .mapping = &.{0x778B}, .status2 = .none, }, + .{ .cp = 0x2F94B, .status = .mapped, .mapping = &.{0x4046}, .status2 = .none, }, + .{ .cp = 0x2F94C, .status = .mapped, .mapping = &.{0x4096}, .status2 = .none, }, + .{ .cp = 0x2F94D, .status = .mapped, .mapping = &.{0x2541D}, .status2 = .none, }, + .{ .cp = 0x2F94E, .status = .mapped, .mapping = &.{0x784E}, .status2 = .none, }, + .{ .cp = 0x2F94F, .status = .mapped, .mapping = &.{0x788C}, .status2 = .none, }, + .{ .cp = 0x2F950, .status = .mapped, .mapping = &.{0x78CC}, .status2 = .none, }, + .{ .cp = 0x2F951, .status = .mapped, .mapping = &.{0x40E3}, .status2 = .none, }, + .{ .cp = 0x2F952, .status = .mapped, .mapping = &.{0x25626}, .status2 = .none, }, + .{ .cp = 0x2F953, .status = .mapped, .mapping = &.{0x7956}, .status2 = .none, }, + .{ .cp = 0x2F954, .status = .mapped, .mapping = &.{0x2569A}, .status2 = .none, }, + .{ .cp = 0x2F955, .status = .mapped, .mapping = &.{0x256C5}, .status2 = .none, }, + .{ .cp = 0x2F956, .status = .mapped, .mapping = &.{0x798F}, .status2 = .none, }, + .{ .cp = 0x2F957, .status = .mapped, .mapping = &.{0x79EB}, .status2 = .none, }, + .{ .cp = 0x2F958, .status = .mapped, .mapping = &.{0x412F}, .status2 = .none, }, + .{ .cp = 0x2F959, .status = .mapped, .mapping = &.{0x7A40}, .status2 = .none, }, + .{ .cp = 0x2F95A, .status = .mapped, .mapping = &.{0x7A4A}, .status2 = .none, }, + .{ .cp = 0x2F95B, .status = .mapped, .mapping = &.{0x7A4F}, .status2 = .none, }, + .{ .cp = 0x2F95C, .status = .mapped, .mapping = &.{0x2597C}, .status2 = .none, }, + .{ .cp = 0x2F95F, .status = .mapped, .mapping = &.{0x7AEE}, .status2 = .none, }, + .{ .cp = 0x2F960, .status = .mapped, .mapping = &.{0x4202}, .status2 = .none, }, + .{ .cp = 0x2F961, .status = .mapped, .mapping = &.{0x25BAB}, .status2 = .none, }, + .{ .cp = 0x2F962, .status = .mapped, .mapping = &.{0x7BC6}, .status2 = .none, }, + .{ .cp = 0x2F963, .status = .mapped, .mapping = &.{0x7BC9}, .status2 = .none, }, + .{ .cp = 0x2F964, .status = .mapped, .mapping = &.{0x4227}, .status2 = .none, }, + .{ .cp = 0x2F965, .status = .mapped, .mapping = &.{0x25C80}, .status2 = .none, }, + .{ .cp = 0x2F966, .status = .mapped, .mapping = &.{0x7CD2}, .status2 = .none, }, + .{ .cp = 0x2F967, .status = .mapped, .mapping = &.{0x42A0}, .status2 = .none, }, + .{ .cp = 0x2F968, .status = .mapped, .mapping = &.{0x7CE8}, .status2 = .none, }, + .{ .cp = 0x2F969, .status = .mapped, .mapping = &.{0x7CE3}, .status2 = .none, }, + .{ .cp = 0x2F96A, .status = .mapped, .mapping = &.{0x7D00}, .status2 = .none, }, + .{ .cp = 0x2F96B, .status = .mapped, .mapping = &.{0x25F86}, .status2 = .none, }, + .{ .cp = 0x2F96C, .status = .mapped, .mapping = &.{0x7D63}, .status2 = .none, }, + .{ .cp = 0x2F96D, .status = .mapped, .mapping = &.{0x4301}, .status2 = .none, }, + .{ .cp = 0x2F96E, .status = .mapped, .mapping = &.{0x7DC7}, .status2 = .none, }, + .{ .cp = 0x2F96F, .status = .mapped, .mapping = &.{0x7E02}, .status2 = .none, }, + .{ .cp = 0x2F970, .status = .mapped, .mapping = &.{0x7E45}, .status2 = .none, }, + .{ .cp = 0x2F971, .status = .mapped, .mapping = &.{0x4334}, .status2 = .none, }, + .{ .cp = 0x2F972, .status = .mapped, .mapping = &.{0x26228}, .status2 = .none, }, + .{ .cp = 0x2F973, .status = .mapped, .mapping = &.{0x26247}, .status2 = .none, }, + .{ .cp = 0x2F974, .status = .mapped, .mapping = &.{0x4359}, .status2 = .none, }, + .{ .cp = 0x2F975, .status = .mapped, .mapping = &.{0x262D9}, .status2 = .none, }, + .{ .cp = 0x2F976, .status = .mapped, .mapping = &.{0x7F7A}, .status2 = .none, }, + .{ .cp = 0x2F977, .status = .mapped, .mapping = &.{0x2633E}, .status2 = .none, }, + .{ .cp = 0x2F978, .status = .mapped, .mapping = &.{0x7F95}, .status2 = .none, }, + .{ .cp = 0x2F979, .status = .mapped, .mapping = &.{0x7FFA}, .status2 = .none, }, + .{ .cp = 0x2F97A, .status = .mapped, .mapping = &.{0x8005}, .status2 = .none, }, + .{ .cp = 0x2F97B, .status = .mapped, .mapping = &.{0x264DA}, .status2 = .none, }, + .{ .cp = 0x2F97C, .status = .mapped, .mapping = &.{0x26523}, .status2 = .none, }, + .{ .cp = 0x2F97D, .status = .mapped, .mapping = &.{0x8060}, .status2 = .none, }, + .{ .cp = 0x2F97E, .status = .mapped, .mapping = &.{0x265A8}, .status2 = .none, }, + .{ .cp = 0x2F97F, .status = .mapped, .mapping = &.{0x8070}, .status2 = .none, }, + .{ .cp = 0x2F980, .status = .mapped, .mapping = &.{0x2335F}, .status2 = .none, }, + .{ .cp = 0x2F981, .status = .mapped, .mapping = &.{0x43D5}, .status2 = .none, }, + .{ .cp = 0x2F982, .status = .mapped, .mapping = &.{0x80B2}, .status2 = .none, }, + .{ .cp = 0x2F983, .status = .mapped, .mapping = &.{0x8103}, .status2 = .none, }, + .{ .cp = 0x2F984, .status = .mapped, .mapping = &.{0x440B}, .status2 = .none, }, + .{ .cp = 0x2F985, .status = .mapped, .mapping = &.{0x813E}, .status2 = .none, }, + .{ .cp = 0x2F986, .status = .mapped, .mapping = &.{0x5AB5}, .status2 = .none, }, + .{ .cp = 0x2F987, .status = .mapped, .mapping = &.{0x267A7}, .status2 = .none, }, + .{ .cp = 0x2F988, .status = .mapped, .mapping = &.{0x267B5}, .status2 = .none, }, + .{ .cp = 0x2F989, .status = .mapped, .mapping = &.{0x23393}, .status2 = .none, }, + .{ .cp = 0x2F98A, .status = .mapped, .mapping = &.{0x2339C}, .status2 = .none, }, + .{ .cp = 0x2F98B, .status = .mapped, .mapping = &.{0x8201}, .status2 = .none, }, + .{ .cp = 0x2F98C, .status = .mapped, .mapping = &.{0x8204}, .status2 = .none, }, + .{ .cp = 0x2F98D, .status = .mapped, .mapping = &.{0x8F9E}, .status2 = .none, }, + .{ .cp = 0x2F98E, .status = .mapped, .mapping = &.{0x446B}, .status2 = .none, }, + .{ .cp = 0x2F98F, .status = .mapped, .mapping = &.{0x8291}, .status2 = .none, }, + .{ .cp = 0x2F990, .status = .mapped, .mapping = &.{0x828B}, .status2 = .none, }, + .{ .cp = 0x2F991, .status = .mapped, .mapping = &.{0x829D}, .status2 = .none, }, + .{ .cp = 0x2F992, .status = .mapped, .mapping = &.{0x52B3}, .status2 = .none, }, + .{ .cp = 0x2F993, .status = .mapped, .mapping = &.{0x82B1}, .status2 = .none, }, + .{ .cp = 0x2F994, .status = .mapped, .mapping = &.{0x82B3}, .status2 = .none, }, + .{ .cp = 0x2F995, .status = .mapped, .mapping = &.{0x82BD}, .status2 = .none, }, + .{ .cp = 0x2F996, .status = .mapped, .mapping = &.{0x82E6}, .status2 = .none, }, + .{ .cp = 0x2F997, .status = .mapped, .mapping = &.{0x26B3C}, .status2 = .none, }, + .{ .cp = 0x2F998, .status = .mapped, .mapping = &.{0x82E5}, .status2 = .none, }, + .{ .cp = 0x2F999, .status = .mapped, .mapping = &.{0x831D}, .status2 = .none, }, + .{ .cp = 0x2F99A, .status = .mapped, .mapping = &.{0x8363}, .status2 = .none, }, + .{ .cp = 0x2F99B, .status = .mapped, .mapping = &.{0x83AD}, .status2 = .none, }, + .{ .cp = 0x2F99C, .status = .mapped, .mapping = &.{0x8323}, .status2 = .none, }, + .{ .cp = 0x2F99D, .status = .mapped, .mapping = &.{0x83BD}, .status2 = .none, }, + .{ .cp = 0x2F99E, .status = .mapped, .mapping = &.{0x83E7}, .status2 = .none, }, + .{ .cp = 0x2F99F, .status = .mapped, .mapping = &.{0x8457}, .status2 = .none, }, + .{ .cp = 0x2F9A0, .status = .mapped, .mapping = &.{0x8353}, .status2 = .none, }, + .{ .cp = 0x2F9A1, .status = .mapped, .mapping = &.{0x83CA}, .status2 = .none, }, + .{ .cp = 0x2F9A2, .status = .mapped, .mapping = &.{0x83CC}, .status2 = .none, }, + .{ .cp = 0x2F9A3, .status = .mapped, .mapping = &.{0x83DC}, .status2 = .none, }, + .{ .cp = 0x2F9A4, .status = .mapped, .mapping = &.{0x26C36}, .status2 = .none, }, + .{ .cp = 0x2F9A5, .status = .mapped, .mapping = &.{0x26D6B}, .status2 = .none, }, + .{ .cp = 0x2F9A6, .status = .mapped, .mapping = &.{0x26CD5}, .status2 = .none, }, + .{ .cp = 0x2F9A7, .status = .mapped, .mapping = &.{0x452B}, .status2 = .none, }, + .{ .cp = 0x2F9A8, .status = .mapped, .mapping = &.{0x84F1}, .status2 = .none, }, + .{ .cp = 0x2F9A9, .status = .mapped, .mapping = &.{0x84F3}, .status2 = .none, }, + .{ .cp = 0x2F9AA, .status = .mapped, .mapping = &.{0x8516}, .status2 = .none, }, + .{ .cp = 0x2F9AB, .status = .mapped, .mapping = &.{0x273CA}, .status2 = .none, }, + .{ .cp = 0x2F9AC, .status = .mapped, .mapping = &.{0x8564}, .status2 = .none, }, + .{ .cp = 0x2F9AD, .status = .mapped, .mapping = &.{0x26F2C}, .status2 = .none, }, + .{ .cp = 0x2F9AE, .status = .mapped, .mapping = &.{0x455D}, .status2 = .none, }, + .{ .cp = 0x2F9AF, .status = .mapped, .mapping = &.{0x4561}, .status2 = .none, }, + .{ .cp = 0x2F9B0, .status = .mapped, .mapping = &.{0x26FB1}, .status2 = .none, }, + .{ .cp = 0x2F9B1, .status = .mapped, .mapping = &.{0x270D2}, .status2 = .none, }, + .{ .cp = 0x2F9B2, .status = .mapped, .mapping = &.{0x456B}, .status2 = .none, }, + .{ .cp = 0x2F9B3, .status = .mapped, .mapping = &.{0x8650}, .status2 = .none, }, + .{ .cp = 0x2F9B4, .status = .mapped, .mapping = &.{0x865C}, .status2 = .none, }, + .{ .cp = 0x2F9B5, .status = .mapped, .mapping = &.{0x8667}, .status2 = .none, }, + .{ .cp = 0x2F9B6, .status = .mapped, .mapping = &.{0x8669}, .status2 = .none, }, + .{ .cp = 0x2F9B7, .status = .mapped, .mapping = &.{0x86A9}, .status2 = .none, }, + .{ .cp = 0x2F9B8, .status = .mapped, .mapping = &.{0x8688}, .status2 = .none, }, + .{ .cp = 0x2F9B9, .status = .mapped, .mapping = &.{0x870E}, .status2 = .none, }, + .{ .cp = 0x2F9BA, .status = .mapped, .mapping = &.{0x86E2}, .status2 = .none, }, + .{ .cp = 0x2F9BB, .status = .mapped, .mapping = &.{0x8779}, .status2 = .none, }, + .{ .cp = 0x2F9BC, .status = .mapped, .mapping = &.{0x8728}, .status2 = .none, }, + .{ .cp = 0x2F9BD, .status = .mapped, .mapping = &.{0x876B}, .status2 = .none, }, + .{ .cp = 0x2F9BE, .status = .mapped, .mapping = &.{0x8786}, .status2 = .none, }, + .{ .cp = 0x2F9BF, .status = .mapped, .mapping = &.{0x45D7}, .status2 = .none, }, + .{ .cp = 0x2F9C0, .status = .mapped, .mapping = &.{0x87E1}, .status2 = .none, }, + .{ .cp = 0x2F9C1, .status = .mapped, .mapping = &.{0x8801}, .status2 = .none, }, + .{ .cp = 0x2F9C2, .status = .mapped, .mapping = &.{0x45F9}, .status2 = .none, }, + .{ .cp = 0x2F9C3, .status = .mapped, .mapping = &.{0x8860}, .status2 = .none, }, + .{ .cp = 0x2F9C4, .status = .mapped, .mapping = &.{0x8863}, .status2 = .none, }, + .{ .cp = 0x2F9C5, .status = .mapped, .mapping = &.{0x27667}, .status2 = .none, }, + .{ .cp = 0x2F9C6, .status = .mapped, .mapping = &.{0x88D7}, .status2 = .none, }, + .{ .cp = 0x2F9C7, .status = .mapped, .mapping = &.{0x88DE}, .status2 = .none, }, + .{ .cp = 0x2F9C8, .status = .mapped, .mapping = &.{0x4635}, .status2 = .none, }, + .{ .cp = 0x2F9C9, .status = .mapped, .mapping = &.{0x88FA}, .status2 = .none, }, + .{ .cp = 0x2F9CA, .status = .mapped, .mapping = &.{0x34BB}, .status2 = .none, }, + .{ .cp = 0x2F9CB, .status = .mapped, .mapping = &.{0x278AE}, .status2 = .none, }, + .{ .cp = 0x2F9CC, .status = .mapped, .mapping = &.{0x27966}, .status2 = .none, }, + .{ .cp = 0x2F9CD, .status = .mapped, .mapping = &.{0x46BE}, .status2 = .none, }, + .{ .cp = 0x2F9CE, .status = .mapped, .mapping = &.{0x46C7}, .status2 = .none, }, + .{ .cp = 0x2F9CF, .status = .mapped, .mapping = &.{0x8AA0}, .status2 = .none, }, + .{ .cp = 0x2F9D0, .status = .mapped, .mapping = &.{0x8AED}, .status2 = .none, }, + .{ .cp = 0x2F9D1, .status = .mapped, .mapping = &.{0x8B8A}, .status2 = .none, }, + .{ .cp = 0x2F9D2, .status = .mapped, .mapping = &.{0x8C55}, .status2 = .none, }, + .{ .cp = 0x2F9D3, .status = .mapped, .mapping = &.{0x27CA8}, .status2 = .none, }, + .{ .cp = 0x2F9D4, .status = .mapped, .mapping = &.{0x8CAB}, .status2 = .none, }, + .{ .cp = 0x2F9D5, .status = .mapped, .mapping = &.{0x8CC1}, .status2 = .none, }, + .{ .cp = 0x2F9D6, .status = .mapped, .mapping = &.{0x8D1B}, .status2 = .none, }, + .{ .cp = 0x2F9D7, .status = .mapped, .mapping = &.{0x8D77}, .status2 = .none, }, + .{ .cp = 0x2F9D8, .status = .mapped, .mapping = &.{0x27F2F}, .status2 = .none, }, + .{ .cp = 0x2F9D9, .status = .mapped, .mapping = &.{0x20804}, .status2 = .none, }, + .{ .cp = 0x2F9DA, .status = .mapped, .mapping = &.{0x8DCB}, .status2 = .none, }, + .{ .cp = 0x2F9DB, .status = .mapped, .mapping = &.{0x8DBC}, .status2 = .none, }, + .{ .cp = 0x2F9DC, .status = .mapped, .mapping = &.{0x8DF0}, .status2 = .none, }, + .{ .cp = 0x2F9DD, .status = .mapped, .mapping = &.{0x208DE}, .status2 = .none, }, + .{ .cp = 0x2F9DE, .status = .mapped, .mapping = &.{0x8ED4}, .status2 = .none, }, + .{ .cp = 0x2F9DF, .status = .mapped, .mapping = &.{0x8F38}, .status2 = .none, }, + .{ .cp = 0x2F9E0, .status = .mapped, .mapping = &.{0x285D2}, .status2 = .none, }, + .{ .cp = 0x2F9E1, .status = .mapped, .mapping = &.{0x285ED}, .status2 = .none, }, + .{ .cp = 0x2F9E2, .status = .mapped, .mapping = &.{0x9094}, .status2 = .none, }, + .{ .cp = 0x2F9E3, .status = .mapped, .mapping = &.{0x90F1}, .status2 = .none, }, + .{ .cp = 0x2F9E4, .status = .mapped, .mapping = &.{0x9111}, .status2 = .none, }, + .{ .cp = 0x2F9E5, .status = .mapped, .mapping = &.{0x2872E}, .status2 = .none, }, + .{ .cp = 0x2F9E6, .status = .mapped, .mapping = &.{0x911B}, .status2 = .none, }, + .{ .cp = 0x2F9E7, .status = .mapped, .mapping = &.{0x9238}, .status2 = .none, }, + .{ .cp = 0x2F9E8, .status = .mapped, .mapping = &.{0x92D7}, .status2 = .none, }, + .{ .cp = 0x2F9E9, .status = .mapped, .mapping = &.{0x92D8}, .status2 = .none, }, + .{ .cp = 0x2F9EA, .status = .mapped, .mapping = &.{0x927C}, .status2 = .none, }, + .{ .cp = 0x2F9EB, .status = .mapped, .mapping = &.{0x93F9}, .status2 = .none, }, + .{ .cp = 0x2F9EC, .status = .mapped, .mapping = &.{0x9415}, .status2 = .none, }, + .{ .cp = 0x2F9ED, .status = .mapped, .mapping = &.{0x28BFA}, .status2 = .none, }, + .{ .cp = 0x2F9EE, .status = .mapped, .mapping = &.{0x958B}, .status2 = .none, }, + .{ .cp = 0x2F9EF, .status = .mapped, .mapping = &.{0x4995}, .status2 = .none, }, + .{ .cp = 0x2F9F0, .status = .mapped, .mapping = &.{0x95B7}, .status2 = .none, }, + .{ .cp = 0x2F9F1, .status = .mapped, .mapping = &.{0x28D77}, .status2 = .none, }, + .{ .cp = 0x2F9F2, .status = .mapped, .mapping = &.{0x49E6}, .status2 = .none, }, + .{ .cp = 0x2F9F3, .status = .mapped, .mapping = &.{0x96C3}, .status2 = .none, }, + .{ .cp = 0x2F9F4, .status = .mapped, .mapping = &.{0x5DB2}, .status2 = .none, }, + .{ .cp = 0x2F9F5, .status = .mapped, .mapping = &.{0x9723}, .status2 = .none, }, + .{ .cp = 0x2F9F6, .status = .mapped, .mapping = &.{0x29145}, .status2 = .none, }, + .{ .cp = 0x2F9F7, .status = .mapped, .mapping = &.{0x2921A}, .status2 = .none, }, + .{ .cp = 0x2F9F8, .status = .mapped, .mapping = &.{0x4A6E}, .status2 = .none, }, + .{ .cp = 0x2F9F9, .status = .mapped, .mapping = &.{0x4A76}, .status2 = .none, }, + .{ .cp = 0x2F9FA, .status = .mapped, .mapping = &.{0x97E0}, .status2 = .none, }, + .{ .cp = 0x2F9FB, .status = .mapped, .mapping = &.{0x2940A}, .status2 = .none, }, + .{ .cp = 0x2F9FC, .status = .mapped, .mapping = &.{0x4AB2}, .status2 = .none, }, + .{ .cp = 0x2F9FD, .status = .mapped, .mapping = &.{0x29496}, .status2 = .none, }, + .{ .cp = 0x2FA00, .status = .mapped, .mapping = &.{0x9829}, .status2 = .none, }, + .{ .cp = 0x2FA01, .status = .mapped, .mapping = &.{0x295B6}, .status2 = .none, }, + .{ .cp = 0x2FA02, .status = .mapped, .mapping = &.{0x98E2}, .status2 = .none, }, + .{ .cp = 0x2FA03, .status = .mapped, .mapping = &.{0x4B33}, .status2 = .none, }, + .{ .cp = 0x2FA04, .status = .mapped, .mapping = &.{0x9929}, .status2 = .none, }, + .{ .cp = 0x2FA05, .status = .mapped, .mapping = &.{0x99A7}, .status2 = .none, }, + .{ .cp = 0x2FA06, .status = .mapped, .mapping = &.{0x99C2}, .status2 = .none, }, + .{ .cp = 0x2FA07, .status = .mapped, .mapping = &.{0x99FE}, .status2 = .none, }, + .{ .cp = 0x2FA08, .status = .mapped, .mapping = &.{0x4BCE}, .status2 = .none, }, + .{ .cp = 0x2FA09, .status = .mapped, .mapping = &.{0x29B30}, .status2 = .none, }, + .{ .cp = 0x2FA0A, .status = .mapped, .mapping = &.{0x9B12}, .status2 = .none, }, + .{ .cp = 0x2FA0B, .status = .mapped, .mapping = &.{0x9C40}, .status2 = .none, }, + .{ .cp = 0x2FA0C, .status = .mapped, .mapping = &.{0x9CFD}, .status2 = .none, }, + .{ .cp = 0x2FA0D, .status = .mapped, .mapping = &.{0x4CCE}, .status2 = .none, }, + .{ .cp = 0x2FA0E, .status = .mapped, .mapping = &.{0x4CED}, .status2 = .none, }, + .{ .cp = 0x2FA0F, .status = .mapped, .mapping = &.{0x9D67}, .status2 = .none, }, + .{ .cp = 0x2FA10, .status = .mapped, .mapping = &.{0x2A0CE}, .status2 = .none, }, + .{ .cp = 0x2FA11, .status = .mapped, .mapping = &.{0x4CF8}, .status2 = .none, }, + .{ .cp = 0x2FA12, .status = .mapped, .mapping = &.{0x2A105}, .status2 = .none, }, + .{ .cp = 0x2FA13, .status = .mapped, .mapping = &.{0x2A20E}, .status2 = .none, }, + .{ .cp = 0x2FA14, .status = .mapped, .mapping = &.{0x2A291}, .status2 = .none, }, + .{ .cp = 0x2FA15, .status = .mapped, .mapping = &.{0x9EBB}, .status2 = .none, }, + .{ .cp = 0x2FA16, .status = .mapped, .mapping = &.{0x4D56}, .status2 = .none, }, + .{ .cp = 0x2FA17, .status = .mapped, .mapping = &.{0x9EF9}, .status2 = .none, }, + .{ .cp = 0x2FA18, .status = .mapped, .mapping = &.{0x9EFE}, .status2 = .none, }, + .{ .cp = 0x2FA19, .status = .mapped, .mapping = &.{0x9F05}, .status2 = .none, }, + .{ .cp = 0x2FA1A, .status = .mapped, .mapping = &.{0x9F0F}, .status2 = .none, }, + .{ .cp = 0x2FA1B, .status = .mapped, .mapping = &.{0x9F16}, .status2 = .none, }, + .{ .cp = 0x2FA1C, .status = .mapped, .mapping = &.{0x9F3B}, .status2 = .none, }, + .{ .cp = 0x2FA1D, .status = .mapped, .mapping = &.{0x2A600}, .status2 = .none, }, + .{ .cp = 0xE0000, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .cp = 0xE0001, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, +}; + +pub const data_range = [_]RowRange{ + .{ .from = 0x0000, .to = 0x002C, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .from = 0x002D, .to = 0x002E, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x0030, .to = 0x0039, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x003A, .to = 0x0040, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .from = 0x005B, .to = 0x0060, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .from = 0x0061, .to = 0x007A, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x007B, .to = 0x007F, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .from = 0x0080, .to = 0x009F, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x00A1, .to = 0x00A7, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .from = 0x00AB, .to = 0x00AC, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .from = 0x00B0, .to = 0x00B1, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .from = 0x00E0, .to = 0x00F6, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x00F8, .to = 0x00FF, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x0132, .to = 0x0133, .status = .mapped, .mapping = &.{0x0069,0x006A}, .status2 = .none, }, + .{ .from = 0x0137, .to = 0x0138, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x013F, .to = 0x0140, .status = .mapped, .mapping = &.{0x006C,0x00B7}, .status2 = .none, }, + .{ .from = 0x018C, .to = 0x018D, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x0199, .to = 0x019B, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x01AA, .to = 0x01AB, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x01B9, .to = 0x01BB, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x01BD, .to = 0x01C3, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x01C4, .to = 0x01C6, .status = .mapped, .mapping = &.{0x0064,0x017E}, .status2 = .none, }, + .{ .from = 0x01C7, .to = 0x01C9, .status = .mapped, .mapping = &.{0x006C,0x006A}, .status2 = .none, }, + .{ .from = 0x01CA, .to = 0x01CC, .status = .mapped, .mapping = &.{0x006E,0x006A}, .status2 = .none, }, + .{ .from = 0x01DC, .to = 0x01DD, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x01EF, .to = 0x01F0, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x01F1, .to = 0x01F3, .status = .mapped, .mapping = &.{0x0064,0x007A}, .status2 = .none, }, + .{ .from = 0x0234, .to = 0x0236, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x0237, .to = 0x0239, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x023F, .to = 0x0240, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x0250, .to = 0x02A8, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x02A9, .to = 0x02AD, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x02AE, .to = 0x02AF, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x02B9, .to = 0x02C1, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x02C2, .to = 0x02C5, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .from = 0x02C6, .to = 0x02D1, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x02D2, .to = 0x02D7, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .from = 0x02E5, .to = 0x02E9, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .from = 0x02EA, .to = 0x02EB, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .from = 0x02EF, .to = 0x02FF, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .from = 0x0300, .to = 0x033F, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x0346, .to = 0x034E, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x0350, .to = 0x0357, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x0358, .to = 0x035C, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x035D, .to = 0x035F, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x0360, .to = 0x0361, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x0363, .to = 0x036F, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x0378, .to = 0x0379, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x037B, .to = 0x037D, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x0380, .to = 0x0383, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x03AC, .to = 0x03C1, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x03C3, .to = 0x03CE, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x0430, .to = 0x044F, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x0451, .to = 0x045C, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x045E, .to = 0x045F, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x0483, .to = 0x0486, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x0488, .to = 0x0489, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .from = 0x0557, .to = 0x0558, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x055A, .to = 0x055F, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .from = 0x0561, .to = 0x0586, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x058B, .to = 0x058C, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x058D, .to = 0x058E, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .from = 0x0591, .to = 0x05A1, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x05A3, .to = 0x05AF, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x05B0, .to = 0x05B9, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x05BB, .to = 0x05BD, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x05C1, .to = 0x05C2, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x05C8, .to = 0x05CF, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x05D0, .to = 0x05EA, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x05EB, .to = 0x05EE, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x05F0, .to = 0x05F4, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x05F5, .to = 0x05FF, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x0600, .to = 0x0603, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x0606, .to = 0x060A, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .from = 0x060D, .to = 0x060F, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .from = 0x0610, .to = 0x0615, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x0616, .to = 0x061A, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x0621, .to = 0x063A, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x063B, .to = 0x063F, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x0641, .to = 0x0652, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x0653, .to = 0x0655, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x0656, .to = 0x0658, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x0659, .to = 0x065E, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x0660, .to = 0x0669, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x066A, .to = 0x066D, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .from = 0x066E, .to = 0x066F, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x0670, .to = 0x0674, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x0679, .to = 0x06B7, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x06B8, .to = 0x06B9, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x06BA, .to = 0x06BE, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x06C0, .to = 0x06CE, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x06D0, .to = 0x06D3, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x06D5, .to = 0x06DC, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x06DF, .to = 0x06E8, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x06EA, .to = 0x06ED, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x06EE, .to = 0x06EF, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x06F0, .to = 0x06F9, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x06FA, .to = 0x06FE, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x0700, .to = 0x070D, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .from = 0x0710, .to = 0x072C, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x072D, .to = 0x072F, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x0730, .to = 0x074A, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x074B, .to = 0x074C, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x074D, .to = 0x074F, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x0750, .to = 0x076D, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x076E, .to = 0x077F, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x0780, .to = 0x07B0, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x07B2, .to = 0x07BF, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x07C0, .to = 0x07F5, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x07F6, .to = 0x07FA, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .from = 0x07FB, .to = 0x07FC, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x07FE, .to = 0x07FF, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .from = 0x0800, .to = 0x082D, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x082E, .to = 0x082F, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x0830, .to = 0x083E, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .from = 0x0840, .to = 0x085B, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x085C, .to = 0x085D, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x0860, .to = 0x086A, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x086B, .to = 0x086F, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x0870, .to = 0x0887, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x0889, .to = 0x088E, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x0890, .to = 0x0891, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x0892, .to = 0x0896, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x0898, .to = 0x089F, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x08A2, .to = 0x08AC, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x08AD, .to = 0x08B2, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x08B3, .to = 0x08B4, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x08B6, .to = 0x08BD, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x08BE, .to = 0x08C7, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x08C8, .to = 0x08D2, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x08D4, .to = 0x08E1, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x08E4, .to = 0x08FE, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x0901, .to = 0x0903, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x0905, .to = 0x0939, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x093A, .to = 0x093B, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x093C, .to = 0x094D, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x0950, .to = 0x0954, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x0956, .to = 0x0957, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x0960, .to = 0x0963, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x0964, .to = 0x0965, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .from = 0x0966, .to = 0x096F, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x0971, .to = 0x0972, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x0973, .to = 0x0977, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x0979, .to = 0x097A, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x097B, .to = 0x097C, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x097E, .to = 0x097F, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x0981, .to = 0x0983, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x0985, .to = 0x098C, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x098D, .to = 0x098E, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x098F, .to = 0x0990, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x0991, .to = 0x0992, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x0993, .to = 0x09A8, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x09AA, .to = 0x09B0, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x09B3, .to = 0x09B5, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x09B6, .to = 0x09B9, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x09BA, .to = 0x09BB, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x09BE, .to = 0x09C4, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x09C5, .to = 0x09C6, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x09C7, .to = 0x09C8, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x09C9, .to = 0x09CA, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x09CB, .to = 0x09CD, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x09CF, .to = 0x09D6, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x09D8, .to = 0x09DB, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x09E0, .to = 0x09E3, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x09E4, .to = 0x09E5, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x09E6, .to = 0x09F1, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x09F2, .to = 0x09FA, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .from = 0x09FF, .to = 0x0A00, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x0A05, .to = 0x0A0A, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x0A0B, .to = 0x0A0E, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x0A0F, .to = 0x0A10, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x0A11, .to = 0x0A12, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x0A13, .to = 0x0A28, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x0A2A, .to = 0x0A30, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x0A38, .to = 0x0A39, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x0A3A, .to = 0x0A3B, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x0A3E, .to = 0x0A42, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x0A43, .to = 0x0A46, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x0A47, .to = 0x0A48, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x0A49, .to = 0x0A4A, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x0A4B, .to = 0x0A4D, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x0A4E, .to = 0x0A50, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x0A52, .to = 0x0A58, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x0A5F, .to = 0x0A65, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x0A66, .to = 0x0A74, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x0A77, .to = 0x0A80, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x0A81, .to = 0x0A83, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x0A85, .to = 0x0A8B, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x0A8F, .to = 0x0A91, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x0A93, .to = 0x0AA8, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x0AAA, .to = 0x0AB0, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x0AB2, .to = 0x0AB3, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x0AB5, .to = 0x0AB9, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x0ABA, .to = 0x0ABB, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x0ABC, .to = 0x0AC5, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x0AC7, .to = 0x0AC9, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x0ACB, .to = 0x0ACD, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x0ACE, .to = 0x0ACF, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x0AD1, .to = 0x0ADF, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x0AE1, .to = 0x0AE3, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x0AE4, .to = 0x0AE5, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x0AE6, .to = 0x0AEF, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x0AF2, .to = 0x0AF8, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x0AFA, .to = 0x0AFF, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x0B01, .to = 0x0B03, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x0B05, .to = 0x0B0C, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x0B0D, .to = 0x0B0E, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x0B0F, .to = 0x0B10, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x0B11, .to = 0x0B12, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x0B13, .to = 0x0B28, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x0B2A, .to = 0x0B30, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x0B32, .to = 0x0B33, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x0B36, .to = 0x0B39, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x0B3A, .to = 0x0B3B, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x0B3C, .to = 0x0B43, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x0B45, .to = 0x0B46, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x0B47, .to = 0x0B48, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x0B49, .to = 0x0B4A, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x0B4B, .to = 0x0B4D, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x0B4E, .to = 0x0B54, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x0B56, .to = 0x0B57, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x0B58, .to = 0x0B5B, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x0B5F, .to = 0x0B61, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x0B62, .to = 0x0B63, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x0B64, .to = 0x0B65, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x0B66, .to = 0x0B6F, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x0B72, .to = 0x0B77, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .from = 0x0B78, .to = 0x0B81, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x0B82, .to = 0x0B83, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x0B85, .to = 0x0B8A, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x0B8B, .to = 0x0B8D, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x0B8E, .to = 0x0B90, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x0B92, .to = 0x0B95, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x0B96, .to = 0x0B98, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x0B99, .to = 0x0B9A, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x0B9E, .to = 0x0B9F, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x0BA0, .to = 0x0BA2, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x0BA3, .to = 0x0BA4, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x0BA5, .to = 0x0BA7, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x0BA8, .to = 0x0BAA, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x0BAB, .to = 0x0BAD, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x0BAE, .to = 0x0BB5, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x0BB7, .to = 0x0BB9, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x0BBA, .to = 0x0BBD, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x0BBE, .to = 0x0BC2, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x0BC3, .to = 0x0BC5, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x0BC6, .to = 0x0BC8, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x0BCA, .to = 0x0BCD, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x0BCE, .to = 0x0BCF, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x0BD1, .to = 0x0BD6, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x0BD8, .to = 0x0BE5, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x0BE7, .to = 0x0BEF, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x0BF0, .to = 0x0BF2, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .from = 0x0BF3, .to = 0x0BFA, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .from = 0x0BFB, .to = 0x0BFF, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x0C01, .to = 0x0C03, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x0C05, .to = 0x0C0C, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x0C0E, .to = 0x0C10, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x0C12, .to = 0x0C28, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x0C2A, .to = 0x0C33, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x0C35, .to = 0x0C39, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x0C3A, .to = 0x0C3B, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x0C3E, .to = 0x0C44, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x0C46, .to = 0x0C48, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x0C4A, .to = 0x0C4D, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x0C4E, .to = 0x0C54, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x0C55, .to = 0x0C56, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x0C58, .to = 0x0C59, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x0C5E, .to = 0x0C5F, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x0C60, .to = 0x0C61, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x0C62, .to = 0x0C63, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x0C64, .to = 0x0C65, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x0C66, .to = 0x0C6F, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x0C70, .to = 0x0C76, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x0C78, .to = 0x0C7F, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .from = 0x0C82, .to = 0x0C83, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x0C85, .to = 0x0C8C, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x0C8E, .to = 0x0C90, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x0C92, .to = 0x0CA8, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x0CAA, .to = 0x0CB3, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x0CB5, .to = 0x0CB9, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x0CBA, .to = 0x0CBB, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x0CBC, .to = 0x0CBD, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x0CBE, .to = 0x0CC4, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x0CC6, .to = 0x0CC8, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x0CCA, .to = 0x0CCD, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x0CCE, .to = 0x0CD4, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x0CD5, .to = 0x0CD6, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x0CD7, .to = 0x0CDB, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x0CE0, .to = 0x0CE1, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x0CE2, .to = 0x0CE3, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x0CE4, .to = 0x0CE5, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x0CE6, .to = 0x0CEF, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x0CF1, .to = 0x0CF2, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x0CF4, .to = 0x0CFF, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x0D02, .to = 0x0D03, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x0D05, .to = 0x0D0C, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x0D0E, .to = 0x0D10, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x0D12, .to = 0x0D28, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x0D2A, .to = 0x0D39, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x0D3B, .to = 0x0D3C, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x0D3E, .to = 0x0D43, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x0D46, .to = 0x0D48, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x0D4A, .to = 0x0D4D, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x0D50, .to = 0x0D53, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x0D54, .to = 0x0D56, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x0D58, .to = 0x0D5E, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .from = 0x0D60, .to = 0x0D61, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x0D62, .to = 0x0D63, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x0D64, .to = 0x0D65, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x0D66, .to = 0x0D6F, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x0D70, .to = 0x0D75, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .from = 0x0D76, .to = 0x0D78, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .from = 0x0D7A, .to = 0x0D7F, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x0D82, .to = 0x0D83, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x0D85, .to = 0x0D96, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x0D97, .to = 0x0D99, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x0D9A, .to = 0x0DB1, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x0DB3, .to = 0x0DBB, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x0DBE, .to = 0x0DBF, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x0DC0, .to = 0x0DC6, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x0DC7, .to = 0x0DC9, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x0DCB, .to = 0x0DCE, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x0DCF, .to = 0x0DD4, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x0DD8, .to = 0x0DDF, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x0DE0, .to = 0x0DE5, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x0DE6, .to = 0x0DEF, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x0DF0, .to = 0x0DF1, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x0DF2, .to = 0x0DF3, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x0DF5, .to = 0x0E00, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x0E01, .to = 0x0E32, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x0E34, .to = 0x0E3A, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x0E3B, .to = 0x0E3E, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x0E40, .to = 0x0E4E, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x0E50, .to = 0x0E59, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x0E5A, .to = 0x0E5B, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .from = 0x0E5C, .to = 0x0E80, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x0E81, .to = 0x0E82, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x0E87, .to = 0x0E88, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x0E8E, .to = 0x0E93, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x0E94, .to = 0x0E97, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x0E99, .to = 0x0E9F, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x0EA1, .to = 0x0EA3, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x0EA8, .to = 0x0EA9, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x0EAA, .to = 0x0EAB, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x0EAD, .to = 0x0EB2, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x0EB4, .to = 0x0EB9, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x0EBB, .to = 0x0EBD, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x0EBE, .to = 0x0EBF, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x0EC0, .to = 0x0EC4, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x0EC8, .to = 0x0ECD, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x0ED0, .to = 0x0ED9, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x0EDA, .to = 0x0EDB, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x0EDE, .to = 0x0EDF, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x0EE0, .to = 0x0EFF, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x0F01, .to = 0x0F0A, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .from = 0x0F0D, .to = 0x0F17, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .from = 0x0F18, .to = 0x0F19, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x0F1A, .to = 0x0F1F, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .from = 0x0F20, .to = 0x0F29, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x0F2A, .to = 0x0F34, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .from = 0x0F3A, .to = 0x0F3D, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .from = 0x0F3E, .to = 0x0F42, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x0F44, .to = 0x0F47, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x0F49, .to = 0x0F4C, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x0F4E, .to = 0x0F51, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x0F53, .to = 0x0F56, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x0F58, .to = 0x0F5B, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x0F5D, .to = 0x0F68, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x0F6B, .to = 0x0F6C, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x0F6D, .to = 0x0F70, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x0F71, .to = 0x0F72, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x0F7A, .to = 0x0F80, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x0F82, .to = 0x0F84, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x0F86, .to = 0x0F8B, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x0F8C, .to = 0x0F8F, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x0F90, .to = 0x0F92, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x0F94, .to = 0x0F95, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x0F99, .to = 0x0F9C, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x0F9E, .to = 0x0FA1, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x0FA3, .to = 0x0FA6, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x0FA8, .to = 0x0FAB, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x0FAE, .to = 0x0FB0, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x0FB1, .to = 0x0FB7, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x0FBA, .to = 0x0FBC, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x0FBE, .to = 0x0FC5, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .from = 0x0FC7, .to = 0x0FCC, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .from = 0x0FD0, .to = 0x0FD1, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .from = 0x0FD2, .to = 0x0FD4, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .from = 0x0FD5, .to = 0x0FD8, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .from = 0x0FD9, .to = 0x0FDA, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .from = 0x0FDB, .to = 0x0FFF, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x1000, .to = 0x1021, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x1023, .to = 0x1027, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x1029, .to = 0x102A, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x102C, .to = 0x1032, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x1033, .to = 0x1035, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x1036, .to = 0x1039, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x103A, .to = 0x103F, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x1040, .to = 0x1049, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x104A, .to = 0x104F, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .from = 0x1050, .to = 0x1059, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x105A, .to = 0x1099, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x109A, .to = 0x109D, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x109E, .to = 0x109F, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .from = 0x10C8, .to = 0x10CC, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x10CE, .to = 0x10CF, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x10D0, .to = 0x10F6, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x10F7, .to = 0x10F8, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x10F9, .to = 0x10FA, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x10FD, .to = 0x10FF, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x1100, .to = 0x1159, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .from = 0x115A, .to = 0x115E, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .from = 0x115F, .to = 0x1160, .status = .ignored, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x1161, .to = 0x11A2, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .from = 0x11A3, .to = 0x11A7, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .from = 0x11A8, .to = 0x11F9, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .from = 0x11FA, .to = 0x11FF, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .from = 0x1200, .to = 0x1206, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x1208, .to = 0x1246, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x124A, .to = 0x124D, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x124E, .to = 0x124F, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x1250, .to = 0x1256, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x125A, .to = 0x125D, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x125E, .to = 0x125F, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x1260, .to = 0x1286, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x128A, .to = 0x128D, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x128E, .to = 0x128F, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x1290, .to = 0x12AE, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x12B2, .to = 0x12B5, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x12B6, .to = 0x12B7, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x12B8, .to = 0x12BE, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x12C2, .to = 0x12C5, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x12C6, .to = 0x12C7, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x12C8, .to = 0x12CE, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x12D0, .to = 0x12D6, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x12D8, .to = 0x12EE, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x12F0, .to = 0x130E, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x1312, .to = 0x1315, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x1316, .to = 0x1317, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x1318, .to = 0x131E, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x1320, .to = 0x1346, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x1348, .to = 0x135A, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x135B, .to = 0x135C, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x135D, .to = 0x135E, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x1361, .to = 0x137C, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .from = 0x137D, .to = 0x137F, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x1380, .to = 0x138F, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x1390, .to = 0x1399, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .from = 0x139A, .to = 0x139F, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x13A0, .to = 0x13F4, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x13F6, .to = 0x13F7, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x13FE, .to = 0x13FF, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x1401, .to = 0x166C, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x166D, .to = 0x166E, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .from = 0x166F, .to = 0x1676, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x1677, .to = 0x167F, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x1681, .to = 0x169A, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x169B, .to = 0x169C, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .from = 0x169D, .to = 0x169F, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x16A0, .to = 0x16EA, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x16EB, .to = 0x16F0, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .from = 0x16F1, .to = 0x16F8, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x16F9, .to = 0x16FF, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x1700, .to = 0x170C, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x170E, .to = 0x1714, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x1716, .to = 0x171E, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x1720, .to = 0x1734, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x1735, .to = 0x1736, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .from = 0x1737, .to = 0x173F, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x1740, .to = 0x1753, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x1754, .to = 0x175F, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x1760, .to = 0x176C, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x176E, .to = 0x1770, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x1772, .to = 0x1773, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x1774, .to = 0x177F, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x1780, .to = 0x17B3, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x17B4, .to = 0x17B5, .status = .ignored, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x17B6, .to = 0x17D3, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x17D4, .to = 0x17D6, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .from = 0x17D8, .to = 0x17DB, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .from = 0x17DE, .to = 0x17DF, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x17E0, .to = 0x17E9, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x17EA, .to = 0x17EF, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x17F0, .to = 0x17F9, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .from = 0x17FA, .to = 0x17FF, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x1800, .to = 0x180A, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .from = 0x180B, .to = 0x180E, .status = .ignored, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x1810, .to = 0x1819, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x181A, .to = 0x181F, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x1820, .to = 0x1877, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x1879, .to = 0x187F, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x1880, .to = 0x18A9, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x18AB, .to = 0x18AF, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x18B0, .to = 0x18F5, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x18F6, .to = 0x18FF, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x1900, .to = 0x191C, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x191D, .to = 0x191E, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x1920, .to = 0x192B, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x192C, .to = 0x192F, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x1930, .to = 0x193B, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x193C, .to = 0x193F, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x1941, .to = 0x1943, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x1944, .to = 0x1945, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .from = 0x1946, .to = 0x196D, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x196E, .to = 0x196F, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x1970, .to = 0x1974, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x1975, .to = 0x197F, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x1980, .to = 0x19A9, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x19AA, .to = 0x19AB, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x19AC, .to = 0x19AF, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x19B0, .to = 0x19C9, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x19CA, .to = 0x19CF, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x19D0, .to = 0x19D9, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x19DB, .to = 0x19DD, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x19DE, .to = 0x19DF, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .from = 0x19E0, .to = 0x19FF, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .from = 0x1A00, .to = 0x1A1B, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x1A1C, .to = 0x1A1D, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x1A1E, .to = 0x1A1F, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .from = 0x1A20, .to = 0x1A5E, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x1A60, .to = 0x1A7C, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x1A7D, .to = 0x1A7E, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x1A7F, .to = 0x1A89, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x1A8A, .to = 0x1A8F, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x1A90, .to = 0x1A99, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x1A9A, .to = 0x1A9F, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x1AA0, .to = 0x1AA6, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .from = 0x1AA8, .to = 0x1AAD, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .from = 0x1AAE, .to = 0x1AAF, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x1AB0, .to = 0x1ABD, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x1ABF, .to = 0x1AC0, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x1AC1, .to = 0x1ACE, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x1ACF, .to = 0x1ADD, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x1ADE, .to = 0x1ADF, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x1AE0, .to = 0x1AEB, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x1AEC, .to = 0x1AFF, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x1B00, .to = 0x1B4B, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x1B4E, .to = 0x1B4F, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .from = 0x1B50, .to = 0x1B59, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x1B5A, .to = 0x1B6A, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .from = 0x1B6B, .to = 0x1B73, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x1B74, .to = 0x1B7C, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .from = 0x1B7D, .to = 0x1B7E, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .from = 0x1B80, .to = 0x1BAA, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x1BAB, .to = 0x1BAD, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x1BAE, .to = 0x1BB9, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x1BBA, .to = 0x1BBF, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x1BC0, .to = 0x1BF3, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x1BF4, .to = 0x1BFB, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x1BFC, .to = 0x1BFF, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .from = 0x1C00, .to = 0x1C37, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x1C38, .to = 0x1C3A, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x1C3B, .to = 0x1C3F, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .from = 0x1C40, .to = 0x1C49, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x1C4A, .to = 0x1C4C, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x1C4D, .to = 0x1C7D, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x1C7E, .to = 0x1C7F, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .from = 0x1C84, .to = 0x1C85, .status = .mapped, .mapping = &.{0x0442}, .status2 = .none, }, + .{ .from = 0x1C8B, .to = 0x1C8F, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x1CBB, .to = 0x1CBC, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x1CC0, .to = 0x1CC7, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .from = 0x1CC8, .to = 0x1CCF, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x1CD0, .to = 0x1CD2, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x1CD4, .to = 0x1CF2, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x1CF3, .to = 0x1CF6, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x1CF8, .to = 0x1CF9, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x1CFB, .to = 0x1CFF, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x1D00, .to = 0x1D2B, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x1D6C, .to = 0x1D77, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x1D79, .to = 0x1D9A, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x1DC0, .to = 0x1DC3, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x1DC4, .to = 0x1DCA, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x1DCB, .to = 0x1DE6, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x1DE7, .to = 0x1DF5, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x1DF6, .to = 0x1DF9, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x1DFE, .to = 0x1DFF, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x1E95, .to = 0x1E99, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x1E9C, .to = 0x1E9D, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x1F00, .to = 0x1F07, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x1F10, .to = 0x1F15, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x1F16, .to = 0x1F17, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x1F1E, .to = 0x1F1F, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x1F20, .to = 0x1F27, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x1F30, .to = 0x1F37, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x1F40, .to = 0x1F45, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x1F46, .to = 0x1F47, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x1F4E, .to = 0x1F4F, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x1F50, .to = 0x1F57, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x1F60, .to = 0x1F67, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x1F7E, .to = 0x1F7F, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x1FB0, .to = 0x1FB1, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x1FD0, .to = 0x1FD2, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x1FD4, .to = 0x1FD5, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x1FD6, .to = 0x1FD7, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x1FE0, .to = 0x1FE2, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x1FE4, .to = 0x1FE7, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x1FF0, .to = 0x1FF1, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x2000, .to = 0x200A, .status = .mapped, .mapping = &.{0x0020}, .status2 = .none, }, + .{ .from = 0x200C, .to = 0x200D, .status = .deviation, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x200E, .to = 0x200F, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x2012, .to = 0x2016, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .from = 0x2018, .to = 0x2023, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .from = 0x2024, .to = 0x2026, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x2028, .to = 0x202E, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x2030, .to = 0x2032, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .from = 0x2038, .to = 0x203B, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .from = 0x203F, .to = 0x2046, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .from = 0x204A, .to = 0x204D, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .from = 0x204E, .to = 0x2052, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .from = 0x2053, .to = 0x2054, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .from = 0x2055, .to = 0x2056, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .from = 0x2058, .to = 0x205E, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .from = 0x2060, .to = 0x2063, .status = .ignored, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x2066, .to = 0x2069, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x206A, .to = 0x206F, .status = .ignored, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x2072, .to = 0x2073, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x209D, .to = 0x209F, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x20A0, .to = 0x20A7, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .from = 0x20A9, .to = 0x20AA, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .from = 0x20AD, .to = 0x20AF, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .from = 0x20B0, .to = 0x20B1, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .from = 0x20B2, .to = 0x20B5, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .from = 0x20B6, .to = 0x20B8, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .from = 0x20BB, .to = 0x20BD, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .from = 0x20C2, .to = 0x20CF, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x20D0, .to = 0x20E1, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .from = 0x20E2, .to = 0x20E3, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .from = 0x20E4, .to = 0x20EA, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .from = 0x20EC, .to = 0x20EF, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .from = 0x20F1, .to = 0x20FF, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x210B, .to = 0x210E, .status = .mapped, .mapping = &.{0x0068}, .status2 = .none, }, + .{ .from = 0x2110, .to = 0x2111, .status = .mapped, .mapping = &.{0x0069}, .status2 = .none, }, + .{ .from = 0x2112, .to = 0x2113, .status = .mapped, .mapping = &.{0x006C}, .status2 = .none, }, + .{ .from = 0x2117, .to = 0x2118, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .from = 0x211B, .to = 0x211D, .status = .mapped, .mapping = &.{0x0072}, .status2 = .none, }, + .{ .from = 0x211E, .to = 0x211F, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .from = 0x212F, .to = 0x2130, .status = .mapped, .mapping = &.{0x0065}, .status2 = .none, }, + .{ .from = 0x213D, .to = 0x213E, .status = .mapped, .mapping = &.{0x03B3}, .status2 = .none, }, + .{ .from = 0x2141, .to = 0x2144, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .from = 0x2145, .to = 0x2146, .status = .mapped, .mapping = &.{0x0064}, .status2 = .none, }, + .{ .from = 0x214A, .to = 0x214B, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .from = 0x2180, .to = 0x2182, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .from = 0x2185, .to = 0x2188, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .from = 0x218A, .to = 0x218B, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .from = 0x218C, .to = 0x218F, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x2190, .to = 0x21EA, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .from = 0x21EB, .to = 0x21F3, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .from = 0x21F4, .to = 0x21FF, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .from = 0x2200, .to = 0x222B, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .from = 0x2231, .to = 0x22F1, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .from = 0x22F2, .to = 0x22FF, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .from = 0x2302, .to = 0x2328, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .from = 0x232B, .to = 0x237A, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .from = 0x237D, .to = 0x239A, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .from = 0x239B, .to = 0x23CE, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .from = 0x23CF, .to = 0x23D0, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .from = 0x23D1, .to = 0x23DB, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .from = 0x23DC, .to = 0x23E7, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .from = 0x23E9, .to = 0x23F3, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .from = 0x23F4, .to = 0x23FA, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .from = 0x23FB, .to = 0x23FE, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .from = 0x2400, .to = 0x2424, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .from = 0x2425, .to = 0x2426, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .from = 0x2427, .to = 0x2429, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .from = 0x242A, .to = 0x243F, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x2440, .to = 0x244A, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .from = 0x244B, .to = 0x245F, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x2488, .to = 0x249B, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x24EB, .to = 0x24FE, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .from = 0x2500, .to = 0x2595, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .from = 0x2596, .to = 0x259F, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .from = 0x25A0, .to = 0x25EF, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .from = 0x25F0, .to = 0x25F7, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .from = 0x25F8, .to = 0x25FF, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .from = 0x2600, .to = 0x2613, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .from = 0x2614, .to = 0x2615, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .from = 0x2616, .to = 0x2617, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .from = 0x261A, .to = 0x266F, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .from = 0x2670, .to = 0x2671, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .from = 0x2672, .to = 0x267D, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .from = 0x267E, .to = 0x267F, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .from = 0x2680, .to = 0x2689, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .from = 0x268A, .to = 0x2691, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .from = 0x2692, .to = 0x269C, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .from = 0x269E, .to = 0x269F, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .from = 0x26A0, .to = 0x26A1, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .from = 0x26A2, .to = 0x26B1, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .from = 0x26B3, .to = 0x26BC, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .from = 0x26BD, .to = 0x26BF, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .from = 0x26C0, .to = 0x26C3, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .from = 0x26C4, .to = 0x26CD, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .from = 0x26CF, .to = 0x26E1, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .from = 0x26E4, .to = 0x26E7, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .from = 0x26E8, .to = 0x26FF, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .from = 0x2701, .to = 0x2704, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .from = 0x2706, .to = 0x2709, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .from = 0x270A, .to = 0x270B, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .from = 0x270C, .to = 0x2727, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .from = 0x2729, .to = 0x274B, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .from = 0x274F, .to = 0x2752, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .from = 0x2753, .to = 0x2755, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .from = 0x2758, .to = 0x275E, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .from = 0x275F, .to = 0x2760, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .from = 0x2761, .to = 0x2767, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .from = 0x2768, .to = 0x2775, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .from = 0x2776, .to = 0x2794, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .from = 0x2795, .to = 0x2797, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .from = 0x2798, .to = 0x27AF, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .from = 0x27B1, .to = 0x27BE, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .from = 0x27C0, .to = 0x27C6, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .from = 0x27C7, .to = 0x27CA, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .from = 0x27CE, .to = 0x27CF, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .from = 0x27D0, .to = 0x27EB, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .from = 0x27EC, .to = 0x27EF, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .from = 0x27F0, .to = 0x27FF, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .from = 0x2800, .to = 0x28FF, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .from = 0x2900, .to = 0x2A0B, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .from = 0x2A0D, .to = 0x2A73, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .from = 0x2A77, .to = 0x2ADB, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .from = 0x2ADD, .to = 0x2AFF, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .from = 0x2B00, .to = 0x2B0D, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .from = 0x2B0E, .to = 0x2B13, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .from = 0x2B14, .to = 0x2B1A, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .from = 0x2B1B, .to = 0x2B1F, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .from = 0x2B20, .to = 0x2B23, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .from = 0x2B24, .to = 0x2B4C, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .from = 0x2B4D, .to = 0x2B4F, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .from = 0x2B50, .to = 0x2B54, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .from = 0x2B55, .to = 0x2B59, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .from = 0x2B5A, .to = 0x2B73, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .from = 0x2B74, .to = 0x2B75, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x2B76, .to = 0x2B95, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .from = 0x2B98, .to = 0x2BB9, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .from = 0x2BBA, .to = 0x2BBC, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .from = 0x2BBD, .to = 0x2BC8, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .from = 0x2BCA, .to = 0x2BD1, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .from = 0x2BD3, .to = 0x2BEB, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .from = 0x2BEC, .to = 0x2BEF, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .from = 0x2BF0, .to = 0x2BFE, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .from = 0x2C30, .to = 0x2C5E, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x2C65, .to = 0x2C66, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x2C76, .to = 0x2C77, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x2C78, .to = 0x2C7B, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x2CE3, .to = 0x2CE4, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x2CE5, .to = 0x2CEA, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .from = 0x2CEE, .to = 0x2CF1, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x2CF4, .to = 0x2CF8, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x2CF9, .to = 0x2CFF, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .from = 0x2D00, .to = 0x2D25, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x2D28, .to = 0x2D2C, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x2D2E, .to = 0x2D2F, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x2D30, .to = 0x2D65, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x2D66, .to = 0x2D67, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x2D68, .to = 0x2D6E, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x2D71, .to = 0x2D7E, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x2D80, .to = 0x2D96, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x2D97, .to = 0x2D9F, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x2DA0, .to = 0x2DA6, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x2DA8, .to = 0x2DAE, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x2DB0, .to = 0x2DB6, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x2DB8, .to = 0x2DBE, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x2DC0, .to = 0x2DC6, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x2DC8, .to = 0x2DCE, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x2DD0, .to = 0x2DD6, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x2DD8, .to = 0x2DDE, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x2DE0, .to = 0x2DFF, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x2E00, .to = 0x2E17, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .from = 0x2E18, .to = 0x2E1B, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .from = 0x2E1C, .to = 0x2E1D, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .from = 0x2E1E, .to = 0x2E2E, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .from = 0x2E32, .to = 0x2E3B, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .from = 0x2E3C, .to = 0x2E42, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .from = 0x2E43, .to = 0x2E44, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .from = 0x2E45, .to = 0x2E49, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .from = 0x2E4A, .to = 0x2E4E, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .from = 0x2E50, .to = 0x2E52, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .from = 0x2E53, .to = 0x2E5D, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .from = 0x2E5E, .to = 0x2E7F, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x2E80, .to = 0x2E99, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .from = 0x2E9B, .to = 0x2E9E, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .from = 0x2EA0, .to = 0x2EF2, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .from = 0x2EF4, .to = 0x2EFF, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x2FD6, .to = 0x2FEF, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x2FF0, .to = 0x2FFB, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x2FFC, .to = 0x2FFF, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x3003, .to = 0x3004, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .from = 0x3005, .to = 0x3007, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x3008, .to = 0x3029, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .from = 0x302A, .to = 0x302D, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x302E, .to = 0x3035, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .from = 0x3041, .to = 0x3094, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x3095, .to = 0x3096, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x3097, .to = 0x3098, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x3099, .to = 0x309A, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x309D, .to = 0x309E, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x30A1, .to = 0x30FE, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x3100, .to = 0x3104, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x3105, .to = 0x312C, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x3190, .to = 0x3191, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .from = 0x31A0, .to = 0x31B7, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x31B8, .to = 0x31BA, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x31BB, .to = 0x31BF, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x31C0, .to = 0x31CF, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .from = 0x31D0, .to = 0x31E3, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .from = 0x31E4, .to = 0x31E5, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .from = 0x31E6, .to = 0x31EE, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x31F0, .to = 0x31FF, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x3248, .to = 0x324F, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .from = 0x3400, .to = 0x4DB5, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x4DB6, .to = 0x4DBF, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x4DC0, .to = 0x4DFF, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .from = 0x4E00, .to = 0x9FA5, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x9FA6, .to = 0x9FBB, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x9FBC, .to = 0x9FC3, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x9FC4, .to = 0x9FCB, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x9FCD, .to = 0x9FD5, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x9FD6, .to = 0x9FEA, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x9FEB, .to = 0x9FEF, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x9FF0, .to = 0x9FFC, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x9FFD, .to = 0x9FFF, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0xA000, .to = 0xA48C, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0xA48D, .to = 0xA48F, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0xA490, .to = 0xA4A1, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .from = 0xA4A2, .to = 0xA4A3, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .from = 0xA4A4, .to = 0xA4B3, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .from = 0xA4B5, .to = 0xA4C0, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .from = 0xA4C2, .to = 0xA4C4, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .from = 0xA4C7, .to = 0xA4CF, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0xA4D0, .to = 0xA4FD, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0xA4FE, .to = 0xA4FF, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .from = 0xA500, .to = 0xA60C, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0xA60D, .to = 0xA60F, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .from = 0xA610, .to = 0xA62B, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0xA62C, .to = 0xA63F, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0xA66D, .to = 0xA66F, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0xA670, .to = 0xA673, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .from = 0xA674, .to = 0xA67B, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0xA67C, .to = 0xA67D, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0xA6A0, .to = 0xA6E5, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0xA6E6, .to = 0xA6EF, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .from = 0xA6F0, .to = 0xA6F1, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0xA6F2, .to = 0xA6F7, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .from = 0xA6F8, .to = 0xA6FF, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0xA700, .to = 0xA716, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .from = 0xA717, .to = 0xA71A, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0xA71B, .to = 0xA71F, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0xA720, .to = 0xA721, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .from = 0xA72F, .to = 0xA731, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0xA771, .to = 0xA778, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0xA787, .to = 0xA788, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0xA789, .to = 0xA78A, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .from = 0xA794, .to = 0xA795, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0xA7DD, .to = 0xA7F0, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0xA7FB, .to = 0xA7FF, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0xA800, .to = 0xA827, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0xA828, .to = 0xA82B, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .from = 0xA82D, .to = 0xA82F, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0xA830, .to = 0xA839, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .from = 0xA83A, .to = 0xA83F, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0xA840, .to = 0xA873, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0xA874, .to = 0xA877, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .from = 0xA878, .to = 0xA87F, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0xA880, .to = 0xA8C4, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0xA8C6, .to = 0xA8CD, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0xA8CE, .to = 0xA8CF, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .from = 0xA8D0, .to = 0xA8D9, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0xA8DA, .to = 0xA8DF, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0xA8E0, .to = 0xA8F7, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0xA8F8, .to = 0xA8FA, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .from = 0xA8FE, .to = 0xA8FF, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0xA900, .to = 0xA92D, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0xA92E, .to = 0xA92F, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .from = 0xA930, .to = 0xA953, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0xA954, .to = 0xA95E, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0xA960, .to = 0xA97C, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .from = 0xA97D, .to = 0xA97F, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0xA980, .to = 0xA9C0, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0xA9C1, .to = 0xA9CD, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .from = 0xA9CF, .to = 0xA9D9, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0xA9DA, .to = 0xA9DD, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0xA9DE, .to = 0xA9DF, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .from = 0xA9E0, .to = 0xA9FE, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0xAA00, .to = 0xAA36, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0xAA37, .to = 0xAA3F, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0xAA40, .to = 0xAA4D, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0xAA4E, .to = 0xAA4F, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0xAA50, .to = 0xAA59, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0xAA5A, .to = 0xAA5B, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0xAA5C, .to = 0xAA5F, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .from = 0xAA60, .to = 0xAA76, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0xAA77, .to = 0xAA79, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .from = 0xAA7A, .to = 0xAA7B, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0xAA7C, .to = 0xAA7F, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0xAA80, .to = 0xAAC2, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0xAAC3, .to = 0xAADA, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0xAADB, .to = 0xAADD, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0xAADE, .to = 0xAADF, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .from = 0xAAE0, .to = 0xAAEF, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0xAAF0, .to = 0xAAF1, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .from = 0xAAF2, .to = 0xAAF6, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0xAAF7, .to = 0xAB00, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0xAB01, .to = 0xAB06, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0xAB07, .to = 0xAB08, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0xAB09, .to = 0xAB0E, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0xAB0F, .to = 0xAB10, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0xAB11, .to = 0xAB16, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0xAB17, .to = 0xAB1F, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0xAB20, .to = 0xAB26, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0xAB28, .to = 0xAB2E, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0xAB30, .to = 0xAB5A, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0xAB60, .to = 0xAB63, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0xAB64, .to = 0xAB65, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0xAB66, .to = 0xAB67, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0xAB6A, .to = 0xAB6B, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .from = 0xAB6C, .to = 0xAB6F, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0xABC0, .to = 0xABEA, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0xABEC, .to = 0xABED, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0xABEE, .to = 0xABEF, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0xABF0, .to = 0xABF9, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0xABFA, .to = 0xABFF, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0xAC00, .to = 0xD7A3, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0xD7A4, .to = 0xD7AF, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0xD7B0, .to = 0xD7C6, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .from = 0xD7C7, .to = 0xD7CA, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0xD7CB, .to = 0xD7FB, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .from = 0xD7FC, .to = 0xD7FF, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0xD800, .to = 0xDFFF, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0xE000, .to = 0xF8FF, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0xF907, .to = 0xF908, .status = .mapped, .mapping = &.{0x9F9C}, .status2 = .none, }, + .{ .from = 0xFA0E, .to = 0xFA0F, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0xFA13, .to = 0xFA14, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0xFA23, .to = 0xFA24, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0xFA27, .to = 0xFA29, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0xFA5D, .to = 0xFA5E, .status = .mapped, .mapping = &.{0x8279}, .status2 = .none, }, + .{ .from = 0xFA6E, .to = 0xFA6F, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0xFADA, .to = 0xFAFF, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0xFB05, .to = 0xFB06, .status = .mapped, .mapping = &.{0x0073,0x0074}, .status2 = .none, }, + .{ .from = 0xFB07, .to = 0xFB12, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0xFB18, .to = 0xFB1C, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0xFB50, .to = 0xFB51, .status = .mapped, .mapping = &.{0x0671}, .status2 = .none, }, + .{ .from = 0xFB52, .to = 0xFB55, .status = .mapped, .mapping = &.{0x067B}, .status2 = .none, }, + .{ .from = 0xFB56, .to = 0xFB59, .status = .mapped, .mapping = &.{0x067E}, .status2 = .none, }, + .{ .from = 0xFB5A, .to = 0xFB5D, .status = .mapped, .mapping = &.{0x0680}, .status2 = .none, }, + .{ .from = 0xFB5E, .to = 0xFB61, .status = .mapped, .mapping = &.{0x067A}, .status2 = .none, }, + .{ .from = 0xFB62, .to = 0xFB65, .status = .mapped, .mapping = &.{0x067F}, .status2 = .none, }, + .{ .from = 0xFB66, .to = 0xFB69, .status = .mapped, .mapping = &.{0x0679}, .status2 = .none, }, + .{ .from = 0xFB6A, .to = 0xFB6D, .status = .mapped, .mapping = &.{0x06A4}, .status2 = .none, }, + .{ .from = 0xFB6E, .to = 0xFB71, .status = .mapped, .mapping = &.{0x06A6}, .status2 = .none, }, + .{ .from = 0xFB72, .to = 0xFB75, .status = .mapped, .mapping = &.{0x0684}, .status2 = .none, }, + .{ .from = 0xFB76, .to = 0xFB79, .status = .mapped, .mapping = &.{0x0683}, .status2 = .none, }, + .{ .from = 0xFB7A, .to = 0xFB7D, .status = .mapped, .mapping = &.{0x0686}, .status2 = .none, }, + .{ .from = 0xFB7E, .to = 0xFB81, .status = .mapped, .mapping = &.{0x0687}, .status2 = .none, }, + .{ .from = 0xFB82, .to = 0xFB83, .status = .mapped, .mapping = &.{0x068D}, .status2 = .none, }, + .{ .from = 0xFB84, .to = 0xFB85, .status = .mapped, .mapping = &.{0x068C}, .status2 = .none, }, + .{ .from = 0xFB86, .to = 0xFB87, .status = .mapped, .mapping = &.{0x068E}, .status2 = .none, }, + .{ .from = 0xFB88, .to = 0xFB89, .status = .mapped, .mapping = &.{0x0688}, .status2 = .none, }, + .{ .from = 0xFB8A, .to = 0xFB8B, .status = .mapped, .mapping = &.{0x0698}, .status2 = .none, }, + .{ .from = 0xFB8C, .to = 0xFB8D, .status = .mapped, .mapping = &.{0x0691}, .status2 = .none, }, + .{ .from = 0xFB8E, .to = 0xFB91, .status = .mapped, .mapping = &.{0x06A9}, .status2 = .none, }, + .{ .from = 0xFB92, .to = 0xFB95, .status = .mapped, .mapping = &.{0x06AF}, .status2 = .none, }, + .{ .from = 0xFB96, .to = 0xFB99, .status = .mapped, .mapping = &.{0x06B3}, .status2 = .none, }, + .{ .from = 0xFB9A, .to = 0xFB9D, .status = .mapped, .mapping = &.{0x06B1}, .status2 = .none, }, + .{ .from = 0xFB9E, .to = 0xFB9F, .status = .mapped, .mapping = &.{0x06BA}, .status2 = .none, }, + .{ .from = 0xFBA0, .to = 0xFBA3, .status = .mapped, .mapping = &.{0x06BB}, .status2 = .none, }, + .{ .from = 0xFBA4, .to = 0xFBA5, .status = .mapped, .mapping = &.{0x06C0}, .status2 = .none, }, + .{ .from = 0xFBA6, .to = 0xFBA9, .status = .mapped, .mapping = &.{0x06C1}, .status2 = .none, }, + .{ .from = 0xFBAA, .to = 0xFBAD, .status = .mapped, .mapping = &.{0x06BE}, .status2 = .none, }, + .{ .from = 0xFBAE, .to = 0xFBAF, .status = .mapped, .mapping = &.{0x06D2}, .status2 = .none, }, + .{ .from = 0xFBB0, .to = 0xFBB1, .status = .mapped, .mapping = &.{0x06D3}, .status2 = .none, }, + .{ .from = 0xFBB2, .to = 0xFBC1, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .from = 0xFBC3, .to = 0xFBD2, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .from = 0xFBD3, .to = 0xFBD6, .status = .mapped, .mapping = &.{0x06AD}, .status2 = .none, }, + .{ .from = 0xFBD7, .to = 0xFBD8, .status = .mapped, .mapping = &.{0x06C7}, .status2 = .none, }, + .{ .from = 0xFBD9, .to = 0xFBDA, .status = .mapped, .mapping = &.{0x06C6}, .status2 = .none, }, + .{ .from = 0xFBDB, .to = 0xFBDC, .status = .mapped, .mapping = &.{0x06C8}, .status2 = .none, }, + .{ .from = 0xFBDE, .to = 0xFBDF, .status = .mapped, .mapping = &.{0x06CB}, .status2 = .none, }, + .{ .from = 0xFBE0, .to = 0xFBE1, .status = .mapped, .mapping = &.{0x06C5}, .status2 = .none, }, + .{ .from = 0xFBE2, .to = 0xFBE3, .status = .mapped, .mapping = &.{0x06C9}, .status2 = .none, }, + .{ .from = 0xFBE4, .to = 0xFBE7, .status = .mapped, .mapping = &.{0x06D0}, .status2 = .none, }, + .{ .from = 0xFBE8, .to = 0xFBE9, .status = .mapped, .mapping = &.{0x0649}, .status2 = .none, }, + .{ .from = 0xFBEA, .to = 0xFBEB, .status = .mapped, .mapping = &.{0x0626,0x0627}, .status2 = .none, }, + .{ .from = 0xFBEC, .to = 0xFBED, .status = .mapped, .mapping = &.{0x0626,0x06D5}, .status2 = .none, }, + .{ .from = 0xFBEE, .to = 0xFBEF, .status = .mapped, .mapping = &.{0x0626,0x0648}, .status2 = .none, }, + .{ .from = 0xFBF0, .to = 0xFBF1, .status = .mapped, .mapping = &.{0x0626,0x06C7}, .status2 = .none, }, + .{ .from = 0xFBF2, .to = 0xFBF3, .status = .mapped, .mapping = &.{0x0626,0x06C6}, .status2 = .none, }, + .{ .from = 0xFBF4, .to = 0xFBF5, .status = .mapped, .mapping = &.{0x0626,0x06C8}, .status2 = .none, }, + .{ .from = 0xFBF6, .to = 0xFBF8, .status = .mapped, .mapping = &.{0x0626,0x06D0}, .status2 = .none, }, + .{ .from = 0xFBF9, .to = 0xFBFB, .status = .mapped, .mapping = &.{0x0626,0x0649}, .status2 = .none, }, + .{ .from = 0xFBFC, .to = 0xFBFF, .status = .mapped, .mapping = &.{0x06CC}, .status2 = .none, }, + .{ .from = 0xFD3C, .to = 0xFD3D, .status = .mapped, .mapping = &.{0x0627,0x064B}, .status2 = .none, }, + .{ .from = 0xFD3E, .to = 0xFD3F, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .from = 0xFD40, .to = 0xFD4F, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .from = 0xFD51, .to = 0xFD52, .status = .mapped, .mapping = &.{0x062A,0x062D,0x062C}, .status2 = .none, }, + .{ .from = 0xFD58, .to = 0xFD59, .status = .mapped, .mapping = &.{0x062C,0x0645,0x062D}, .status2 = .none, }, + .{ .from = 0xFD5F, .to = 0xFD60, .status = .mapped, .mapping = &.{0x0633,0x0645,0x062D}, .status2 = .none, }, + .{ .from = 0xFD62, .to = 0xFD63, .status = .mapped, .mapping = &.{0x0633,0x0645,0x0645}, .status2 = .none, }, + .{ .from = 0xFD64, .to = 0xFD65, .status = .mapped, .mapping = &.{0x0635,0x062D,0x062D}, .status2 = .none, }, + .{ .from = 0xFD67, .to = 0xFD68, .status = .mapped, .mapping = &.{0x0634,0x062D,0x0645}, .status2 = .none, }, + .{ .from = 0xFD6A, .to = 0xFD6B, .status = .mapped, .mapping = &.{0x0634,0x0645,0x062E}, .status2 = .none, }, + .{ .from = 0xFD6C, .to = 0xFD6D, .status = .mapped, .mapping = &.{0x0634,0x0645,0x0645}, .status2 = .none, }, + .{ .from = 0xFD6F, .to = 0xFD70, .status = .mapped, .mapping = &.{0x0636,0x062E,0x0645}, .status2 = .none, }, + .{ .from = 0xFD71, .to = 0xFD72, .status = .mapped, .mapping = &.{0x0637,0x0645,0x062D}, .status2 = .none, }, + .{ .from = 0xFD76, .to = 0xFD77, .status = .mapped, .mapping = &.{0x0639,0x0645,0x0645}, .status2 = .none, }, + .{ .from = 0xFD7C, .to = 0xFD7D, .status = .mapped, .mapping = &.{0x0641,0x062E,0x0645}, .status2 = .none, }, + .{ .from = 0xFD83, .to = 0xFD84, .status = .mapped, .mapping = &.{0x0644,0x062C,0x062C}, .status2 = .none, }, + .{ .from = 0xFD85, .to = 0xFD86, .status = .mapped, .mapping = &.{0x0644,0x062E,0x0645}, .status2 = .none, }, + .{ .from = 0xFD87, .to = 0xFD88, .status = .mapped, .mapping = &.{0x0644,0x0645,0x062D}, .status2 = .none, }, + .{ .from = 0xFD90, .to = 0xFD91, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .from = 0xFD97, .to = 0xFD98, .status = .mapped, .mapping = &.{0x0646,0x062C,0x0645}, .status2 = .none, }, + .{ .from = 0xFD9C, .to = 0xFD9D, .status = .mapped, .mapping = &.{0x064A,0x0645,0x0645}, .status2 = .none, }, + .{ .from = 0xFDC8, .to = 0xFDCE, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .from = 0xFDD0, .to = 0xFDEF, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0xFDFE, .to = 0xFDFF, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .from = 0xFE00, .to = 0xFE0F, .status = .ignored, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0xFE1A, .to = 0xFE1F, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0xFE20, .to = 0xFE23, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0xFE24, .to = 0xFE26, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0xFE27, .to = 0xFE2D, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0xFE2E, .to = 0xFE2F, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0xFE33, .to = 0xFE34, .status = .mapped, .mapping = &.{0x005F}, .status2 = .none, }, + .{ .from = 0xFE45, .to = 0xFE46, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .from = 0xFE49, .to = 0xFE4C, .status = .mapped, .mapping = &.{0x0020,0x0305}, .status2 = .none, }, + .{ .from = 0xFE4D, .to = 0xFE4F, .status = .mapped, .mapping = &.{0x005F}, .status2 = .none, }, + .{ .from = 0xFE6C, .to = 0xFE6F, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0xFE81, .to = 0xFE82, .status = .mapped, .mapping = &.{0x0622}, .status2 = .none, }, + .{ .from = 0xFE83, .to = 0xFE84, .status = .mapped, .mapping = &.{0x0623}, .status2 = .none, }, + .{ .from = 0xFE85, .to = 0xFE86, .status = .mapped, .mapping = &.{0x0624}, .status2 = .none, }, + .{ .from = 0xFE87, .to = 0xFE88, .status = .mapped, .mapping = &.{0x0625}, .status2 = .none, }, + .{ .from = 0xFE89, .to = 0xFE8C, .status = .mapped, .mapping = &.{0x0626}, .status2 = .none, }, + .{ .from = 0xFE8D, .to = 0xFE8E, .status = .mapped, .mapping = &.{0x0627}, .status2 = .none, }, + .{ .from = 0xFE8F, .to = 0xFE92, .status = .mapped, .mapping = &.{0x0628}, .status2 = .none, }, + .{ .from = 0xFE93, .to = 0xFE94, .status = .mapped, .mapping = &.{0x0629}, .status2 = .none, }, + .{ .from = 0xFE95, .to = 0xFE98, .status = .mapped, .mapping = &.{0x062A}, .status2 = .none, }, + .{ .from = 0xFE99, .to = 0xFE9C, .status = .mapped, .mapping = &.{0x062B}, .status2 = .none, }, + .{ .from = 0xFE9D, .to = 0xFEA0, .status = .mapped, .mapping = &.{0x062C}, .status2 = .none, }, + .{ .from = 0xFEA1, .to = 0xFEA4, .status = .mapped, .mapping = &.{0x062D}, .status2 = .none, }, + .{ .from = 0xFEA5, .to = 0xFEA8, .status = .mapped, .mapping = &.{0x062E}, .status2 = .none, }, + .{ .from = 0xFEA9, .to = 0xFEAA, .status = .mapped, .mapping = &.{0x062F}, .status2 = .none, }, + .{ .from = 0xFEAB, .to = 0xFEAC, .status = .mapped, .mapping = &.{0x0630}, .status2 = .none, }, + .{ .from = 0xFEAD, .to = 0xFEAE, .status = .mapped, .mapping = &.{0x0631}, .status2 = .none, }, + .{ .from = 0xFEAF, .to = 0xFEB0, .status = .mapped, .mapping = &.{0x0632}, .status2 = .none, }, + .{ .from = 0xFEB1, .to = 0xFEB4, .status = .mapped, .mapping = &.{0x0633}, .status2 = .none, }, + .{ .from = 0xFEB5, .to = 0xFEB8, .status = .mapped, .mapping = &.{0x0634}, .status2 = .none, }, + .{ .from = 0xFEB9, .to = 0xFEBC, .status = .mapped, .mapping = &.{0x0635}, .status2 = .none, }, + .{ .from = 0xFEBD, .to = 0xFEC0, .status = .mapped, .mapping = &.{0x0636}, .status2 = .none, }, + .{ .from = 0xFEC1, .to = 0xFEC4, .status = .mapped, .mapping = &.{0x0637}, .status2 = .none, }, + .{ .from = 0xFEC5, .to = 0xFEC8, .status = .mapped, .mapping = &.{0x0638}, .status2 = .none, }, + .{ .from = 0xFEC9, .to = 0xFECC, .status = .mapped, .mapping = &.{0x0639}, .status2 = .none, }, + .{ .from = 0xFECD, .to = 0xFED0, .status = .mapped, .mapping = &.{0x063A}, .status2 = .none, }, + .{ .from = 0xFED1, .to = 0xFED4, .status = .mapped, .mapping = &.{0x0641}, .status2 = .none, }, + .{ .from = 0xFED5, .to = 0xFED8, .status = .mapped, .mapping = &.{0x0642}, .status2 = .none, }, + .{ .from = 0xFED9, .to = 0xFEDC, .status = .mapped, .mapping = &.{0x0643}, .status2 = .none, }, + .{ .from = 0xFEDD, .to = 0xFEE0, .status = .mapped, .mapping = &.{0x0644}, .status2 = .none, }, + .{ .from = 0xFEE1, .to = 0xFEE4, .status = .mapped, .mapping = &.{0x0645}, .status2 = .none, }, + .{ .from = 0xFEE5, .to = 0xFEE8, .status = .mapped, .mapping = &.{0x0646}, .status2 = .none, }, + .{ .from = 0xFEE9, .to = 0xFEEC, .status = .mapped, .mapping = &.{0x0647}, .status2 = .none, }, + .{ .from = 0xFEED, .to = 0xFEEE, .status = .mapped, .mapping = &.{0x0648}, .status2 = .none, }, + .{ .from = 0xFEEF, .to = 0xFEF0, .status = .mapped, .mapping = &.{0x0649}, .status2 = .none, }, + .{ .from = 0xFEF1, .to = 0xFEF4, .status = .mapped, .mapping = &.{0x064A}, .status2 = .none, }, + .{ .from = 0xFEF5, .to = 0xFEF6, .status = .mapped, .mapping = &.{0x0644,0x0622}, .status2 = .none, }, + .{ .from = 0xFEF7, .to = 0xFEF8, .status = .mapped, .mapping = &.{0x0644,0x0623}, .status2 = .none, }, + .{ .from = 0xFEF9, .to = 0xFEFA, .status = .mapped, .mapping = &.{0x0644,0x0625}, .status2 = .none, }, + .{ .from = 0xFEFB, .to = 0xFEFC, .status = .mapped, .mapping = &.{0x0644,0x0627}, .status2 = .none, }, + .{ .from = 0xFEFD, .to = 0xFEFE, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0xFFBF, .to = 0xFFC1, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0xFFC8, .to = 0xFFC9, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0xFFD0, .to = 0xFFD1, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0xFFD8, .to = 0xFFD9, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0xFFDD, .to = 0xFFDF, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0xFFEF, .to = 0xFFF8, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0xFFF9, .to = 0xFFFB, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0xFFFE, .to = 0xFFFF, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x10000, .to = 0x1000B, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x1000D, .to = 0x10026, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x10028, .to = 0x1003A, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x1003C, .to = 0x1003D, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x1003F, .to = 0x1004D, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x1004E, .to = 0x1004F, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x10050, .to = 0x1005D, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x1005E, .to = 0x1007F, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x10080, .to = 0x100FA, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x100FB, .to = 0x100FF, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x10100, .to = 0x10102, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .from = 0x10103, .to = 0x10106, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x10107, .to = 0x10133, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .from = 0x10134, .to = 0x10136, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x10137, .to = 0x1013F, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .from = 0x10140, .to = 0x1018A, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .from = 0x1018B, .to = 0x1018C, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .from = 0x1018D, .to = 0x1018E, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .from = 0x10190, .to = 0x1019B, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .from = 0x1019D, .to = 0x1019F, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x101A1, .to = 0x101CF, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x101D0, .to = 0x101FC, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .from = 0x101FE, .to = 0x1027F, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x10280, .to = 0x1029C, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x1029D, .to = 0x1029F, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x102A0, .to = 0x102D0, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x102D1, .to = 0x102DF, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x102E1, .to = 0x102FB, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .from = 0x102FC, .to = 0x102FF, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x10300, .to = 0x1031E, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x10320, .to = 0x10323, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .from = 0x10324, .to = 0x1032C, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x1032D, .to = 0x1032F, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x10330, .to = 0x10340, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x10342, .to = 0x10349, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x1034B, .to = 0x1034F, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x10350, .to = 0x1037A, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x1037B, .to = 0x1037F, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x10380, .to = 0x1039D, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x103A0, .to = 0x103C3, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x103C4, .to = 0x103C7, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x103C8, .to = 0x103CF, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x103D0, .to = 0x103D5, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .from = 0x103D6, .to = 0x103FF, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x10428, .to = 0x1044D, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x1044E, .to = 0x1049D, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x1049E, .to = 0x1049F, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x104A0, .to = 0x104A9, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x104AA, .to = 0x104AF, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x104D4, .to = 0x104D7, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x104D8, .to = 0x104FB, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x104FC, .to = 0x104FF, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x10500, .to = 0x10527, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x10528, .to = 0x1052F, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x10530, .to = 0x10563, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x10564, .to = 0x1056E, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x10597, .to = 0x105A1, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x105A3, .to = 0x105B1, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x105B3, .to = 0x105B9, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x105BB, .to = 0x105BC, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x105BD, .to = 0x105BF, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x105C0, .to = 0x105F3, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x105F4, .to = 0x105FF, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x10600, .to = 0x10736, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x10737, .to = 0x1073F, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x10740, .to = 0x10755, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x10756, .to = 0x1075F, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x10760, .to = 0x10767, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x10768, .to = 0x1077F, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x107BB, .to = 0x107FF, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x10800, .to = 0x10805, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x10806, .to = 0x10807, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x1080A, .to = 0x10835, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x10837, .to = 0x10838, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x10839, .to = 0x1083B, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x1083D, .to = 0x1083E, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x10840, .to = 0x10855, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x10857, .to = 0x1085F, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .from = 0x10860, .to = 0x10876, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x10877, .to = 0x1087F, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .from = 0x10880, .to = 0x1089E, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x1089F, .to = 0x108A6, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x108A7, .to = 0x108AF, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .from = 0x108B0, .to = 0x108DF, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x108E0, .to = 0x108F2, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x108F4, .to = 0x108F5, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x108F6, .to = 0x108FA, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x108FB, .to = 0x108FF, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .from = 0x10900, .to = 0x10915, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x10916, .to = 0x10919, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .from = 0x1091A, .to = 0x1091B, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .from = 0x1091C, .to = 0x1091E, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x10920, .to = 0x10939, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x1093A, .to = 0x1093E, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x10940, .to = 0x10959, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x1095A, .to = 0x1097F, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x10980, .to = 0x109B7, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x109B8, .to = 0x109BB, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x109BC, .to = 0x109BD, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .from = 0x109BE, .to = 0x109BF, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x109C0, .to = 0x109CF, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .from = 0x109D0, .to = 0x109D1, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x109D2, .to = 0x109FF, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .from = 0x10A00, .to = 0x10A03, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x10A05, .to = 0x10A06, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x10A07, .to = 0x10A0B, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x10A0C, .to = 0x10A13, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x10A15, .to = 0x10A17, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x10A19, .to = 0x10A33, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x10A34, .to = 0x10A35, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x10A36, .to = 0x10A37, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x10A38, .to = 0x10A3A, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x10A3B, .to = 0x10A3E, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x10A40, .to = 0x10A47, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .from = 0x10A49, .to = 0x10A4F, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x10A50, .to = 0x10A58, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .from = 0x10A59, .to = 0x10A5F, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x10A60, .to = 0x10A7C, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x10A7D, .to = 0x10A7F, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .from = 0x10A80, .to = 0x10A9C, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x10A9D, .to = 0x10A9F, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .from = 0x10AA0, .to = 0x10ABF, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x10AC0, .to = 0x10AC7, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x10AC9, .to = 0x10AE6, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x10AE7, .to = 0x10AEA, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x10AEB, .to = 0x10AF6, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .from = 0x10AF7, .to = 0x10AFF, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x10B00, .to = 0x10B35, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x10B36, .to = 0x10B38, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x10B39, .to = 0x10B3F, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .from = 0x10B40, .to = 0x10B55, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x10B56, .to = 0x10B57, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x10B58, .to = 0x10B5F, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .from = 0x10B60, .to = 0x10B72, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x10B73, .to = 0x10B77, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x10B78, .to = 0x10B7F, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .from = 0x10B80, .to = 0x10B91, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x10B92, .to = 0x10B98, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x10B99, .to = 0x10B9C, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .from = 0x10B9D, .to = 0x10BA8, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x10BA9, .to = 0x10BAF, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .from = 0x10BB0, .to = 0x10BFF, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x10C00, .to = 0x10C48, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x10C49, .to = 0x10C7F, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x10CB3, .to = 0x10CBF, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x10CC0, .to = 0x10CF2, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x10CF3, .to = 0x10CF9, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x10CFA, .to = 0x10CFF, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .from = 0x10D00, .to = 0x10D27, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x10D28, .to = 0x10D2F, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x10D30, .to = 0x10D39, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x10D3A, .to = 0x10D3F, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x10D40, .to = 0x10D4F, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x10D66, .to = 0x10D68, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x10D69, .to = 0x10D6D, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x10D6F, .to = 0x10D85, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x10D86, .to = 0x10D8D, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x10D8E, .to = 0x10D8F, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .from = 0x10D90, .to = 0x10E5F, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x10E60, .to = 0x10E7E, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .from = 0x10E80, .to = 0x10EA9, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x10EAB, .to = 0x10EAC, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x10EAE, .to = 0x10EAF, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x10EB0, .to = 0x10EB1, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x10EB2, .to = 0x10EC1, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x10EC2, .to = 0x10EC4, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x10EC5, .to = 0x10EC7, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x10EC8, .to = 0x10ECF, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x10ED0, .to = 0x10ED8, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .from = 0x10ED9, .to = 0x10EF9, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x10EFA, .to = 0x10EFB, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x10EFD, .to = 0x10EFF, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x10F00, .to = 0x10F1C, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x10F1D, .to = 0x10F26, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .from = 0x10F28, .to = 0x10F2F, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x10F30, .to = 0x10F50, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x10F51, .to = 0x10F59, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .from = 0x10F5A, .to = 0x10F6F, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x10F70, .to = 0x10F85, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x10F86, .to = 0x10F89, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .from = 0x10F8A, .to = 0x10FAF, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x10FB0, .to = 0x10FC4, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x10FC5, .to = 0x10FCB, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .from = 0x10FCC, .to = 0x10FDF, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x10FE0, .to = 0x10FF6, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x10FF7, .to = 0x10FFF, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x11000, .to = 0x11046, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x11047, .to = 0x1104D, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .from = 0x1104E, .to = 0x11051, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x11052, .to = 0x11065, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .from = 0x11066, .to = 0x1106F, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x11070, .to = 0x11075, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x11076, .to = 0x1107E, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x11080, .to = 0x110BA, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x110BB, .to = 0x110BC, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .from = 0x110BE, .to = 0x110C1, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .from = 0x110C3, .to = 0x110CC, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x110CE, .to = 0x110CF, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x110D0, .to = 0x110E8, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x110E9, .to = 0x110EF, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x110F0, .to = 0x110F9, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x110FA, .to = 0x110FF, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x11100, .to = 0x11134, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x11136, .to = 0x1113F, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x11140, .to = 0x11143, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .from = 0x11144, .to = 0x11146, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x11148, .to = 0x1114F, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x11150, .to = 0x11173, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x11174, .to = 0x11175, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .from = 0x11177, .to = 0x1117F, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x11180, .to = 0x111C4, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x111C5, .to = 0x111C8, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .from = 0x111C9, .to = 0x111CC, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x111CE, .to = 0x111CF, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x111D0, .to = 0x111D9, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x111DD, .to = 0x111DF, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .from = 0x111E1, .to = 0x111F4, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .from = 0x111F5, .to = 0x111FF, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x11200, .to = 0x11211, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x11213, .to = 0x11237, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x11238, .to = 0x1123D, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .from = 0x1123F, .to = 0x11241, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x11242, .to = 0x1127F, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x11280, .to = 0x11286, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x1128A, .to = 0x1128D, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x1128F, .to = 0x1129D, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x1129F, .to = 0x112A8, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x112AA, .to = 0x112AF, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x112B0, .to = 0x112EA, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x112EB, .to = 0x112EF, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x112F0, .to = 0x112F9, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x112FA, .to = 0x112FF, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x11301, .to = 0x11303, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x11305, .to = 0x1130C, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x1130D, .to = 0x1130E, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x1130F, .to = 0x11310, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x11311, .to = 0x11312, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x11313, .to = 0x11328, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x1132A, .to = 0x11330, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x11332, .to = 0x11333, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x11335, .to = 0x11339, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x1133C, .to = 0x11344, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x11345, .to = 0x11346, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x11347, .to = 0x11348, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x11349, .to = 0x1134A, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x1134B, .to = 0x1134D, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x1134E, .to = 0x1134F, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x11351, .to = 0x11356, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x11358, .to = 0x1135C, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x1135D, .to = 0x11363, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x11364, .to = 0x11365, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x11366, .to = 0x1136C, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x1136D, .to = 0x1136F, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x11370, .to = 0x11374, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x11375, .to = 0x1137F, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x11380, .to = 0x11389, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x1138C, .to = 0x1138D, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x11390, .to = 0x113B5, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x113B7, .to = 0x113C0, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x113C3, .to = 0x113C4, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x113C7, .to = 0x113CA, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x113CC, .to = 0x113D3, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x113D4, .to = 0x113D5, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .from = 0x113D7, .to = 0x113D8, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .from = 0x113D9, .to = 0x113E0, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x113E1, .to = 0x113E2, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x113E3, .to = 0x113FF, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x11400, .to = 0x1144A, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x1144B, .to = 0x1144F, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .from = 0x11450, .to = 0x11459, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x11460, .to = 0x11461, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x11462, .to = 0x1147F, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x11480, .to = 0x114C5, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x114C8, .to = 0x114CF, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x114D0, .to = 0x114D9, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x114DA, .to = 0x1157F, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x11580, .to = 0x115B5, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x115B6, .to = 0x115B7, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x115B8, .to = 0x115C0, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x115C1, .to = 0x115C9, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .from = 0x115CA, .to = 0x115D7, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .from = 0x115D8, .to = 0x115DD, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x115DE, .to = 0x115FF, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x11600, .to = 0x11640, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x11641, .to = 0x11643, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .from = 0x11645, .to = 0x1164F, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x11650, .to = 0x11659, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x1165A, .to = 0x1165F, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x11660, .to = 0x1166C, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .from = 0x1166D, .to = 0x1167F, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x11680, .to = 0x116B7, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x116BA, .to = 0x116BF, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x116C0, .to = 0x116C9, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x116CA, .to = 0x116CF, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x116D0, .to = 0x116E3, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x116E4, .to = 0x116FF, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x11700, .to = 0x11719, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x1171B, .to = 0x1171C, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x1171D, .to = 0x1172B, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x1172C, .to = 0x1172F, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x11730, .to = 0x11739, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x1173A, .to = 0x1173F, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .from = 0x11740, .to = 0x11746, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x11747, .to = 0x117FF, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x11800, .to = 0x1183A, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x1183C, .to = 0x1189F, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x118C0, .to = 0x118E9, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x118EA, .to = 0x118F2, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .from = 0x118F3, .to = 0x118FE, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x11900, .to = 0x11906, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x11907, .to = 0x11908, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x1190A, .to = 0x1190B, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x1190C, .to = 0x11913, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x11915, .to = 0x11916, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x11918, .to = 0x11935, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x11937, .to = 0x11938, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x11939, .to = 0x1193A, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x1193B, .to = 0x11943, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x11944, .to = 0x11946, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .from = 0x11947, .to = 0x1194F, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x11950, .to = 0x11959, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x1195A, .to = 0x1199F, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x119A0, .to = 0x119A7, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x119A8, .to = 0x119A9, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x119AA, .to = 0x119D7, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x119D8, .to = 0x119D9, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x119DA, .to = 0x119E1, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x119E3, .to = 0x119E4, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x119E5, .to = 0x119FF, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x11A00, .to = 0x11A3E, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x11A3F, .to = 0x11A46, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .from = 0x11A48, .to = 0x11A4F, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x11A50, .to = 0x11A83, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x11A84, .to = 0x11A85, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x11A86, .to = 0x11A99, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x11A9A, .to = 0x11A9C, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .from = 0x11A9E, .to = 0x11AA2, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .from = 0x11AA3, .to = 0x11AAF, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x11AB0, .to = 0x11ABF, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x11AC0, .to = 0x11AF8, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x11AF9, .to = 0x11AFF, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x11B00, .to = 0x11B09, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .from = 0x11B0A, .to = 0x11B5F, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x11B60, .to = 0x11B67, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x11B68, .to = 0x11BBF, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x11BC0, .to = 0x11BE0, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x11BE2, .to = 0x11BEF, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x11BF0, .to = 0x11BF9, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x11BFA, .to = 0x11BFF, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x11C00, .to = 0x11C08, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x11C0A, .to = 0x11C36, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x11C38, .to = 0x11C40, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x11C41, .to = 0x11C45, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .from = 0x11C46, .to = 0x11C4F, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x11C50, .to = 0x11C59, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x11C5A, .to = 0x11C6C, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .from = 0x11C6D, .to = 0x11C6F, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x11C70, .to = 0x11C71, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .from = 0x11C72, .to = 0x11C8F, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x11C90, .to = 0x11C91, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x11C92, .to = 0x11CA7, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x11CA9, .to = 0x11CB6, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x11CB7, .to = 0x11CFF, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x11D00, .to = 0x11D06, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x11D08, .to = 0x11D09, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x11D0B, .to = 0x11D36, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x11D37, .to = 0x11D39, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x11D3C, .to = 0x11D3D, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x11D3F, .to = 0x11D47, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x11D48, .to = 0x11D4F, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x11D50, .to = 0x11D59, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x11D5A, .to = 0x11D5F, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x11D60, .to = 0x11D65, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x11D67, .to = 0x11D68, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x11D6A, .to = 0x11D8E, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x11D90, .to = 0x11D91, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x11D93, .to = 0x11D98, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x11D99, .to = 0x11D9F, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x11DA0, .to = 0x11DA9, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x11DAA, .to = 0x11DAF, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x11DB0, .to = 0x11DDB, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x11DDC, .to = 0x11DDF, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x11DE0, .to = 0x11DE9, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x11DEA, .to = 0x11EDF, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x11EE0, .to = 0x11EF6, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x11EF7, .to = 0x11EF8, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .from = 0x11EF9, .to = 0x11EFF, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x11F00, .to = 0x11F10, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x11F12, .to = 0x11F3A, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x11F3B, .to = 0x11F3D, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x11F3E, .to = 0x11F42, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x11F43, .to = 0x11F4F, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .from = 0x11F50, .to = 0x11F59, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x11F5B, .to = 0x11FAF, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x11FB1, .to = 0x11FBF, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x11FC0, .to = 0x11FF1, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .from = 0x11FF2, .to = 0x11FFE, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x12000, .to = 0x1236E, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x1236F, .to = 0x12398, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x1239A, .to = 0x123FF, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x12400, .to = 0x12462, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .from = 0x12463, .to = 0x1246E, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .from = 0x12470, .to = 0x12473, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .from = 0x12475, .to = 0x1247F, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x12480, .to = 0x12543, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x12544, .to = 0x12F8F, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x12F90, .to = 0x12FF0, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x12FF1, .to = 0x12FF2, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .from = 0x12FF3, .to = 0x12FFF, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x13000, .to = 0x1342E, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x13430, .to = 0x13438, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x13439, .to = 0x1343F, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x13440, .to = 0x13455, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x13456, .to = 0x1345F, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x13460, .to = 0x143FA, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x143FB, .to = 0x143FF, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x14400, .to = 0x14646, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x14647, .to = 0x160FF, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x16100, .to = 0x16139, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x1613A, .to = 0x167FF, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x16800, .to = 0x16A38, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x16A39, .to = 0x16A3F, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x16A40, .to = 0x16A5E, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x16A60, .to = 0x16A69, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x16A6A, .to = 0x16A6D, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x16A6E, .to = 0x16A6F, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .from = 0x16A70, .to = 0x16ABE, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x16AC0, .to = 0x16AC9, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x16ACA, .to = 0x16ACF, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x16AD0, .to = 0x16AED, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x16AEE, .to = 0x16AEF, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x16AF0, .to = 0x16AF4, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x16AF6, .to = 0x16AFF, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x16B00, .to = 0x16B36, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x16B37, .to = 0x16B3F, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .from = 0x16B40, .to = 0x16B43, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x16B44, .to = 0x16B45, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .from = 0x16B46, .to = 0x16B4F, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x16B50, .to = 0x16B59, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x16B5B, .to = 0x16B61, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .from = 0x16B63, .to = 0x16B77, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x16B78, .to = 0x16B7C, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x16B7D, .to = 0x16B8F, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x16B90, .to = 0x16D3F, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x16D40, .to = 0x16D6C, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x16D6D, .to = 0x16D6F, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .from = 0x16D70, .to = 0x16D79, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x16D7A, .to = 0x16E3F, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x16E60, .to = 0x16E7F, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x16E80, .to = 0x16E9A, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .from = 0x16E9B, .to = 0x16E9F, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x16EB9, .to = 0x16EBA, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x16EBB, .to = 0x16ED3, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x16ED4, .to = 0x16EFF, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x16F00, .to = 0x16F44, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x16F45, .to = 0x16F4A, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x16F4B, .to = 0x16F4E, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x16F50, .to = 0x16F7E, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x16F7F, .to = 0x16F87, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x16F88, .to = 0x16F8E, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x16F8F, .to = 0x16F9F, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x16FA0, .to = 0x16FDF, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x16FE5, .to = 0x16FEF, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x16FF0, .to = 0x16FF1, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x16FF2, .to = 0x16FF3, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x16FF4, .to = 0x16FF6, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .from = 0x16FF7, .to = 0x16FFF, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x17000, .to = 0x187EC, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x187ED, .to = 0x187F1, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x187F2, .to = 0x187F7, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x187F8, .to = 0x187FF, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x18800, .to = 0x18AF2, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x18AF3, .to = 0x18CD5, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x18CD6, .to = 0x18CFE, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x18D00, .to = 0x18D08, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x18D09, .to = 0x18D1E, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x18D1F, .to = 0x18D7F, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x18D80, .to = 0x18DF2, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x18DF3, .to = 0x1AFEF, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x1AFF0, .to = 0x1AFF3, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x1AFF5, .to = 0x1AFFB, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x1AFFD, .to = 0x1AFFE, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x1B000, .to = 0x1B001, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x1B002, .to = 0x1B11E, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x1B11F, .to = 0x1B122, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x1B123, .to = 0x1B131, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x1B133, .to = 0x1B14F, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x1B150, .to = 0x1B152, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x1B153, .to = 0x1B154, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x1B156, .to = 0x1B163, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x1B164, .to = 0x1B167, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x1B168, .to = 0x1B16F, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x1B170, .to = 0x1B2FB, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x1B2FC, .to = 0x1BBFF, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x1BC00, .to = 0x1BC6A, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x1BC6B, .to = 0x1BC6F, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x1BC70, .to = 0x1BC7C, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x1BC7D, .to = 0x1BC7F, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x1BC80, .to = 0x1BC88, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x1BC89, .to = 0x1BC8F, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x1BC90, .to = 0x1BC99, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x1BC9A, .to = 0x1BC9B, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x1BC9D, .to = 0x1BC9E, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x1BCA0, .to = 0x1BCA3, .status = .ignored, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x1BCA4, .to = 0x1CBFF, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x1CC00, .to = 0x1CCD5, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .from = 0x1CCFA, .to = 0x1CCFC, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .from = 0x1CCFD, .to = 0x1CCFF, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x1CD00, .to = 0x1CEB3, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .from = 0x1CEB4, .to = 0x1CEB9, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x1CEBA, .to = 0x1CED0, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .from = 0x1CED1, .to = 0x1CEDF, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x1CEE0, .to = 0x1CEF0, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .from = 0x1CEF1, .to = 0x1CEFF, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x1CF00, .to = 0x1CF2D, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x1CF2E, .to = 0x1CF2F, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x1CF30, .to = 0x1CF46, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x1CF47, .to = 0x1CF4F, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x1CF50, .to = 0x1CFC3, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .from = 0x1CFC4, .to = 0x1CFFF, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x1D000, .to = 0x1D0F5, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .from = 0x1D0F6, .to = 0x1D0FF, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x1D100, .to = 0x1D126, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .from = 0x1D127, .to = 0x1D128, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x1D12A, .to = 0x1D15D, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .from = 0x1D165, .to = 0x1D172, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .from = 0x1D173, .to = 0x1D17A, .status = .ignored, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x1D17B, .to = 0x1D1BA, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .from = 0x1D1C1, .to = 0x1D1DD, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .from = 0x1D1DE, .to = 0x1D1E8, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .from = 0x1D1E9, .to = 0x1D1EA, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .from = 0x1D1EB, .to = 0x1D1FF, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x1D200, .to = 0x1D245, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .from = 0x1D246, .to = 0x1D2BF, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x1D2C0, .to = 0x1D2D3, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .from = 0x1D2D4, .to = 0x1D2DF, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x1D2E0, .to = 0x1D2F3, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .from = 0x1D2F4, .to = 0x1D2FF, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x1D300, .to = 0x1D356, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .from = 0x1D357, .to = 0x1D35F, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x1D360, .to = 0x1D371, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .from = 0x1D372, .to = 0x1D378, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .from = 0x1D379, .to = 0x1D3FF, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x1D4A0, .to = 0x1D4A1, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x1D4A3, .to = 0x1D4A4, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x1D4A7, .to = 0x1D4A8, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x1D50B, .to = 0x1D50C, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x1D547, .to = 0x1D549, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x1D6A6, .to = 0x1D6A7, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x1D6D3, .to = 0x1D6D4, .status = .mapped, .mapping = &.{0x03C3}, .status2 = .none, }, + .{ .from = 0x1D70D, .to = 0x1D70E, .status = .mapped, .mapping = &.{0x03C3}, .status2 = .none, }, + .{ .from = 0x1D747, .to = 0x1D748, .status = .mapped, .mapping = &.{0x03C3}, .status2 = .none, }, + .{ .from = 0x1D781, .to = 0x1D782, .status = .mapped, .mapping = &.{0x03C3}, .status2 = .none, }, + .{ .from = 0x1D7BB, .to = 0x1D7BC, .status = .mapped, .mapping = &.{0x03C3}, .status2 = .none, }, + .{ .from = 0x1D7CA, .to = 0x1D7CB, .status = .mapped, .mapping = &.{0x03DD}, .status2 = .none, }, + .{ .from = 0x1D7CC, .to = 0x1D7CD, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x1D800, .to = 0x1D9FF, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .from = 0x1DA00, .to = 0x1DA36, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x1DA37, .to = 0x1DA3A, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .from = 0x1DA3B, .to = 0x1DA6C, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x1DA6D, .to = 0x1DA74, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .from = 0x1DA76, .to = 0x1DA83, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .from = 0x1DA85, .to = 0x1DA8B, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .from = 0x1DA8C, .to = 0x1DA9A, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x1DA9B, .to = 0x1DA9F, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x1DAA1, .to = 0x1DAAF, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x1DAB0, .to = 0x1DEFF, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x1DF00, .to = 0x1DF1E, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x1DF1F, .to = 0x1DF24, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x1DF25, .to = 0x1DF2A, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x1DF2B, .to = 0x1DFFF, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x1E000, .to = 0x1E006, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x1E008, .to = 0x1E018, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x1E019, .to = 0x1E01A, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x1E01B, .to = 0x1E021, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x1E023, .to = 0x1E024, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x1E026, .to = 0x1E02A, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x1E02B, .to = 0x1E02F, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x1E06E, .to = 0x1E08E, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x1E090, .to = 0x1E0FF, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x1E100, .to = 0x1E12C, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x1E12D, .to = 0x1E12F, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x1E130, .to = 0x1E13D, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x1E13E, .to = 0x1E13F, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x1E140, .to = 0x1E149, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x1E14A, .to = 0x1E14D, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x1E150, .to = 0x1E28F, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x1E290, .to = 0x1E2AE, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x1E2AF, .to = 0x1E2BF, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x1E2C0, .to = 0x1E2F9, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x1E2FA, .to = 0x1E2FE, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x1E300, .to = 0x1E4CF, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x1E4D0, .to = 0x1E4F9, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x1E4FA, .to = 0x1E5CF, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x1E5D0, .to = 0x1E5FA, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x1E5FB, .to = 0x1E5FE, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x1E600, .to = 0x1E6BF, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x1E6C0, .to = 0x1E6DE, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x1E6E0, .to = 0x1E6F5, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x1E6F6, .to = 0x1E6FD, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x1E6FE, .to = 0x1E6FF, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x1E700, .to = 0x1E7DF, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x1E7E0, .to = 0x1E7E6, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x1E7E8, .to = 0x1E7EB, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x1E7ED, .to = 0x1E7EE, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x1E7F0, .to = 0x1E7FE, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x1E800, .to = 0x1E8C4, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x1E8C5, .to = 0x1E8C6, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x1E8C7, .to = 0x1E8CF, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .from = 0x1E8D0, .to = 0x1E8D6, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x1E8D7, .to = 0x1E8FF, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x1E922, .to = 0x1E94A, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x1E94C, .to = 0x1E94F, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x1E950, .to = 0x1E959, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x1E95A, .to = 0x1E95D, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x1E95E, .to = 0x1E95F, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .from = 0x1E960, .to = 0x1EC70, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x1EC71, .to = 0x1ECB4, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .from = 0x1ECB5, .to = 0x1ED00, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x1ED01, .to = 0x1ED3D, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .from = 0x1ED3E, .to = 0x1EDFF, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x1EE25, .to = 0x1EE26, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x1EE3C, .to = 0x1EE41, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x1EE43, .to = 0x1EE46, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x1EE55, .to = 0x1EE56, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x1EE65, .to = 0x1EE66, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x1EE9C, .to = 0x1EEA0, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x1EEBC, .to = 0x1EEEF, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x1EEF0, .to = 0x1EEF1, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .from = 0x1EEF2, .to = 0x1EFFF, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x1F000, .to = 0x1F02B, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .from = 0x1F02C, .to = 0x1F02F, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x1F030, .to = 0x1F093, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .from = 0x1F094, .to = 0x1F09F, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x1F0A0, .to = 0x1F0AE, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .from = 0x1F0AF, .to = 0x1F0B0, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x1F0B1, .to = 0x1F0BE, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .from = 0x1F0C1, .to = 0x1F0CF, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .from = 0x1F0D1, .to = 0x1F0DF, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .from = 0x1F0E0, .to = 0x1F0F5, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .from = 0x1F0F6, .to = 0x1F0FF, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x1F10B, .to = 0x1F10C, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .from = 0x1F10D, .to = 0x1F10F, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .from = 0x1F150, .to = 0x1F156, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .from = 0x1F158, .to = 0x1F15E, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .from = 0x1F160, .to = 0x1F169, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .from = 0x1F16D, .to = 0x1F16F, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .from = 0x1F170, .to = 0x1F178, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .from = 0x1F17B, .to = 0x1F17C, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .from = 0x1F17D, .to = 0x1F17E, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .from = 0x1F180, .to = 0x1F189, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .from = 0x1F18A, .to = 0x1F18D, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .from = 0x1F18E, .to = 0x1F18F, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .from = 0x1F191, .to = 0x1F19A, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .from = 0x1F19B, .to = 0x1F1AC, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .from = 0x1F1AE, .to = 0x1F1E5, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x1F1E6, .to = 0x1F1FF, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .from = 0x1F203, .to = 0x1F20F, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x1F23C, .to = 0x1F23F, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x1F249, .to = 0x1F24F, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x1F252, .to = 0x1F25F, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x1F260, .to = 0x1F265, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .from = 0x1F266, .to = 0x1F2FF, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x1F300, .to = 0x1F320, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .from = 0x1F321, .to = 0x1F32C, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .from = 0x1F32D, .to = 0x1F32F, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .from = 0x1F330, .to = 0x1F335, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .from = 0x1F337, .to = 0x1F37C, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .from = 0x1F37E, .to = 0x1F37F, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .from = 0x1F380, .to = 0x1F393, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .from = 0x1F394, .to = 0x1F39F, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .from = 0x1F3A0, .to = 0x1F3C4, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .from = 0x1F3C6, .to = 0x1F3CA, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .from = 0x1F3CB, .to = 0x1F3CE, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .from = 0x1F3CF, .to = 0x1F3D3, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .from = 0x1F3D4, .to = 0x1F3DF, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .from = 0x1F3E0, .to = 0x1F3F0, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .from = 0x1F3F1, .to = 0x1F3F7, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .from = 0x1F3F8, .to = 0x1F3FF, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .from = 0x1F400, .to = 0x1F43E, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .from = 0x1F442, .to = 0x1F4F7, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .from = 0x1F4F9, .to = 0x1F4FC, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .from = 0x1F4FD, .to = 0x1F4FE, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .from = 0x1F500, .to = 0x1F53D, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .from = 0x1F53E, .to = 0x1F53F, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .from = 0x1F540, .to = 0x1F543, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .from = 0x1F544, .to = 0x1F54A, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .from = 0x1F54B, .to = 0x1F54F, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .from = 0x1F550, .to = 0x1F567, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .from = 0x1F568, .to = 0x1F579, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .from = 0x1F57B, .to = 0x1F5A3, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .from = 0x1F5A5, .to = 0x1F5FA, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .from = 0x1F5FB, .to = 0x1F5FF, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .from = 0x1F601, .to = 0x1F610, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .from = 0x1F612, .to = 0x1F614, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .from = 0x1F61C, .to = 0x1F61E, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .from = 0x1F620, .to = 0x1F625, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .from = 0x1F626, .to = 0x1F627, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .from = 0x1F628, .to = 0x1F62B, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .from = 0x1F62E, .to = 0x1F62F, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .from = 0x1F630, .to = 0x1F633, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .from = 0x1F635, .to = 0x1F640, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .from = 0x1F641, .to = 0x1F642, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .from = 0x1F643, .to = 0x1F644, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .from = 0x1F645, .to = 0x1F64F, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .from = 0x1F650, .to = 0x1F67F, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .from = 0x1F680, .to = 0x1F6C5, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .from = 0x1F6C6, .to = 0x1F6CF, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .from = 0x1F6D1, .to = 0x1F6D2, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .from = 0x1F6D3, .to = 0x1F6D4, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .from = 0x1F6D6, .to = 0x1F6D7, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .from = 0x1F6D9, .to = 0x1F6DB, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x1F6DD, .to = 0x1F6DF, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .from = 0x1F6E0, .to = 0x1F6EC, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .from = 0x1F6ED, .to = 0x1F6EF, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x1F6F0, .to = 0x1F6F3, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .from = 0x1F6F4, .to = 0x1F6F6, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .from = 0x1F6F7, .to = 0x1F6F8, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .from = 0x1F6FB, .to = 0x1F6FC, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .from = 0x1F6FD, .to = 0x1F6FF, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x1F700, .to = 0x1F773, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .from = 0x1F774, .to = 0x1F776, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .from = 0x1F777, .to = 0x1F77A, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .from = 0x1F77B, .to = 0x1F77F, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .from = 0x1F780, .to = 0x1F7D4, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .from = 0x1F7D5, .to = 0x1F7D8, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .from = 0x1F7DA, .to = 0x1F7DF, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x1F7E0, .to = 0x1F7EB, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .from = 0x1F7EC, .to = 0x1F7EF, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x1F7F1, .to = 0x1F7FF, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x1F800, .to = 0x1F80B, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .from = 0x1F80C, .to = 0x1F80F, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x1F810, .to = 0x1F847, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .from = 0x1F848, .to = 0x1F84F, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x1F850, .to = 0x1F859, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .from = 0x1F85A, .to = 0x1F85F, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x1F860, .to = 0x1F887, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .from = 0x1F888, .to = 0x1F88F, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x1F890, .to = 0x1F8AD, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .from = 0x1F8AE, .to = 0x1F8AF, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x1F8B0, .to = 0x1F8B1, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .from = 0x1F8B2, .to = 0x1F8BB, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .from = 0x1F8BC, .to = 0x1F8BF, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x1F8C0, .to = 0x1F8C1, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .from = 0x1F8C2, .to = 0x1F8CF, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x1F8D0, .to = 0x1F8D8, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .from = 0x1F8D9, .to = 0x1F8FF, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x1F900, .to = 0x1F90B, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .from = 0x1F90D, .to = 0x1F90F, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .from = 0x1F910, .to = 0x1F918, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .from = 0x1F919, .to = 0x1F91E, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .from = 0x1F920, .to = 0x1F927, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .from = 0x1F928, .to = 0x1F92F, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .from = 0x1F931, .to = 0x1F932, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .from = 0x1F933, .to = 0x1F93E, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .from = 0x1F940, .to = 0x1F94B, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .from = 0x1F94D, .to = 0x1F94F, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .from = 0x1F950, .to = 0x1F95E, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .from = 0x1F95F, .to = 0x1F96B, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .from = 0x1F96C, .to = 0x1F970, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .from = 0x1F973, .to = 0x1F976, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .from = 0x1F977, .to = 0x1F978, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .from = 0x1F97C, .to = 0x1F97F, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .from = 0x1F980, .to = 0x1F984, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .from = 0x1F985, .to = 0x1F991, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .from = 0x1F992, .to = 0x1F997, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .from = 0x1F998, .to = 0x1F9A2, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .from = 0x1F9A3, .to = 0x1F9A4, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .from = 0x1F9A5, .to = 0x1F9AA, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .from = 0x1F9AB, .to = 0x1F9AD, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .from = 0x1F9AE, .to = 0x1F9AF, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .from = 0x1F9B0, .to = 0x1F9B9, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .from = 0x1F9BA, .to = 0x1F9BF, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .from = 0x1F9C1, .to = 0x1F9C2, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .from = 0x1F9C3, .to = 0x1F9CA, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .from = 0x1F9CD, .to = 0x1F9CF, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .from = 0x1F9D0, .to = 0x1F9E6, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .from = 0x1F9E7, .to = 0x1F9FF, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .from = 0x1FA00, .to = 0x1FA53, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .from = 0x1FA54, .to = 0x1FA57, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .from = 0x1FA58, .to = 0x1FA5F, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x1FA60, .to = 0x1FA6D, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .from = 0x1FA6E, .to = 0x1FA6F, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x1FA70, .to = 0x1FA73, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .from = 0x1FA75, .to = 0x1FA77, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .from = 0x1FA78, .to = 0x1FA7A, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .from = 0x1FA7B, .to = 0x1FA7C, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .from = 0x1FA7D, .to = 0x1FA7F, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x1FA80, .to = 0x1FA82, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .from = 0x1FA83, .to = 0x1FA86, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .from = 0x1FA87, .to = 0x1FA88, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .from = 0x1FA8B, .to = 0x1FA8D, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x1FA90, .to = 0x1FA95, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .from = 0x1FA96, .to = 0x1FAA8, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .from = 0x1FAA9, .to = 0x1FAAC, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .from = 0x1FAAD, .to = 0x1FAAF, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .from = 0x1FAB0, .to = 0x1FAB6, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .from = 0x1FAB7, .to = 0x1FABA, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .from = 0x1FABB, .to = 0x1FABD, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .from = 0x1FAC0, .to = 0x1FAC2, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .from = 0x1FAC3, .to = 0x1FAC5, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .from = 0x1FAC9, .to = 0x1FACC, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x1FACE, .to = 0x1FACF, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .from = 0x1FAD0, .to = 0x1FAD6, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .from = 0x1FAD7, .to = 0x1FAD9, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .from = 0x1FADA, .to = 0x1FADB, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .from = 0x1FADD, .to = 0x1FADE, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x1FAE0, .to = 0x1FAE7, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .from = 0x1FAEB, .to = 0x1FAEE, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x1FAF0, .to = 0x1FAF6, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .from = 0x1FAF7, .to = 0x1FAF8, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .from = 0x1FAF9, .to = 0x1FAFF, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x1FB00, .to = 0x1FB92, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .from = 0x1FB94, .to = 0x1FBCA, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .from = 0x1FBCB, .to = 0x1FBEF, .status = .valid, .mapping = &.{}, .status2 = .NV8, }, + .{ .from = 0x1FBFB, .to = 0x1FFFD, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x1FFFE, .to = 0x1FFFF, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x20000, .to = 0x2A6D6, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x2A6D7, .to = 0x2A6DD, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x2A6DE, .to = 0x2A6DF, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x2A6E0, .to = 0x2A6FF, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x2A700, .to = 0x2B734, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x2B735, .to = 0x2B738, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x2B73A, .to = 0x2B73F, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x2B740, .to = 0x2B81D, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x2B81E, .to = 0x2B81F, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x2B820, .to = 0x2CEA1, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x2CEA2, .to = 0x2CEAD, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x2CEAE, .to = 0x2CEAF, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x2CEB0, .to = 0x2EBE0, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x2EBE1, .to = 0x2EBEF, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x2EBF0, .to = 0x2EE5D, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x2EE5E, .to = 0x2F7FF, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x2F831, .to = 0x2F833, .status = .mapped, .mapping = &.{0x537F}, .status2 = .none, }, + .{ .from = 0x2F845, .to = 0x2F846, .status = .mapped, .mapping = &.{0x5584}, .status2 = .none, }, + .{ .from = 0x2F86A, .to = 0x2F86B, .status = .mapped, .mapping = &.{0x5B3E}, .status2 = .none, }, + .{ .from = 0x2F891, .to = 0x2F892, .status = .mapped, .mapping = &.{0x22331}, .status2 = .none, }, + .{ .from = 0x2F894, .to = 0x2F895, .status = .mapped, .mapping = &.{0x5F22}, .status2 = .none, }, + .{ .from = 0x2F92C, .to = 0x2F92D, .status = .mapped, .mapping = &.{0x3EB8}, .status2 = .none, }, + .{ .from = 0x2F946, .to = 0x2F947, .status = .mapped, .mapping = &.{0x771F}, .status2 = .none, }, + .{ .from = 0x2F95D, .to = 0x2F95E, .status = .mapped, .mapping = &.{0x25AA7}, .status2 = .none, }, + .{ .from = 0x2F9FE, .to = 0x2F9FF, .status = .mapped, .mapping = &.{0x980B}, .status2 = .none, }, + .{ .from = 0x2FA1E, .to = 0x2FFFD, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x2FFFE, .to = 0x2FFFF, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x30000, .to = 0x3134A, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x3134B, .to = 0x3134F, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x31350, .to = 0x323AF, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x323B0, .to = 0x33479, .status = .valid, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x3347A, .to = 0x3FFFD, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x3FFFE, .to = 0x3FFFF, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x40000, .to = 0x4FFFD, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x4FFFE, .to = 0x4FFFF, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x50000, .to = 0x5FFFD, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x5FFFE, .to = 0x5FFFF, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x60000, .to = 0x6FFFD, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x6FFFE, .to = 0x6FFFF, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x70000, .to = 0x7FFFD, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x7FFFE, .to = 0x7FFFF, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x80000, .to = 0x8FFFD, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x8FFFE, .to = 0x8FFFF, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x90000, .to = 0x9FFFD, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x9FFFE, .to = 0x9FFFF, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0xA0000, .to = 0xAFFFD, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0xAFFFE, .to = 0xAFFFF, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0xB0000, .to = 0xBFFFD, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0xBFFFE, .to = 0xBFFFF, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0xC0000, .to = 0xCFFFD, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0xCFFFE, .to = 0xCFFFF, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0xD0000, .to = 0xDFFFD, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0xDFFFE, .to = 0xDFFFF, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0xE0002, .to = 0xE001F, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0xE0020, .to = 0xE007F, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0xE0080, .to = 0xE00FF, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0xE0100, .to = 0xE01EF, .status = .ignored, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0xE01F0, .to = 0xEFFFD, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0xEFFFE, .to = 0xEFFFF, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0xF0000, .to = 0xFFFFD, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0xFFFFE, .to = 0xFFFFF, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x100000, .to = 0x10FFFD, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, + .{ .from = 0x10FFFE, .to = 0x10FFFF, .status = .disallowed, .mapping = &.{}, .status2 = .none, }, +}; diff --git a/test.zig b/test.zig new file mode 100644 index 0000000000000000000000000000000000000000..c33384cfca2f4621e5bb797538352328b5eac740 --- /dev/null +++ b/test.zig @@ -0,0 +1,14 @@ +const std = @import("std"); +const idna = @import("unicode-idna"); + +test { + _ = @import("./testv2.zig"); +} +test { + _ = &idna.@"2008".data; + _ = &idna.@"2008".data_range; +} +test { + _ = &idna.table.data; + _ = &idna.table.data_range; +} diff --git a/testv2.zig b/testv2.zig new file mode 100755 index 0000000000000000000000000000000000000000..903b4741f446cf526314609c4f3fe64b760fe66c --- /dev/null +++ b/testv2.zig @@ -0,0 +1,7 @@ +// This file is part of Unicode IDNA Compatibility Processing +// For documentation, see http://www.unicode.org/reports/tr46/ +// + +// Based on the source file: https://www.unicode.org/Public/17.0.0/idna/IdnaTestV2.txt +// + diff --git a/tsconfig.json b/tsconfig.json new file mode 100644 index 0000000000000000000000000000000000000000..bfa0fead54e8070848b4572df2e14b62a86d570f --- /dev/null +++ b/tsconfig.json @@ -0,0 +1,29 @@ +{ + "compilerOptions": { + // Environment setup & latest features + "lib": ["ESNext"], + "target": "ESNext", + "module": "Preserve", + "moduleDetection": "force", + "jsx": "react-jsx", + "allowJs": true, + + // Bundler mode + "moduleResolution": "bundler", + "allowImportingTsExtensions": true, + "verbatimModuleSyntax": true, + "noEmit": true, + + // Best practices + "strict": true, + "skipLibCheck": true, + "noFallthroughCasesInSwitch": true, + "noUncheckedIndexedAccess": true, + "noImplicitOverride": true, + + // Some stricter flags (disabled by default) + "noUnusedLocals": false, + "noUnusedParameters": false, + "noPropertyAccessFromIndexSignature": false + } +} diff --git a/zigmod.yml b/zigmod.yml new file mode 100644 index 0000000000000000000000000000000000000000..74d8e68519d4b00d5aa3be2e83fa800ff0c1da5c --- /dev/null +++ b/zigmod.yml @@ -0,0 +1,6 @@ +id: i06sa6zt2xq2wia61uem2konpnwboe01ge80rkj5fi02xcxn +name: unicode-idna +main: idna.zig +license: MIT +description: "UTS #46" +dependencies: