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