authorgravatar for hello@nektro.netMeghan Denny <hello@nektro.net> 2022-12-22 17:49:27 -08:00
committergravatar for hello@nektro.netMeghan Denny <hello@nektro.net> 2022-12-22 17:49:27 -08:00
loge28382069acb1fc86fdd6c27db57d0529735649f
treefdd7643d8dad0f3b7c43d32b9ed8c6ddce7e8100
parent6a67deffebf450da909be95dad9db631c965b6f0

add VerticalOrientation, closes #39


5 files changed, 2331 insertions(+), 1 deletions(-)

generate.zig+1
...@@ -23,6 +23,7 @@ const files = [_]type{...@@ -23,6 +23,7 @@ const files = [_]type{
23 @import("./scripts/NamedSequencesProv.zig"),23 @import("./scripts/NamedSequencesProv.zig"),
24 @import("./scripts/PropList.zig"),24 @import("./scripts/PropList.zig"),
25 @import("./scripts/Scripts.zig"),25 @import("./scripts/Scripts.zig"),
26 @import("./scripts/VerticalOrientation.zig"),
26};27};
2728
28pub fn main() !void {29pub fn main() !void {
scripts/VerticalOrientation.zig created+47
...@@ -0,0 +1,47 @@
1const std = @import("std");
2const common = @import("./_common.zig");
3
4pub usingnamespace common.Main(struct {
5 pub const source_file = "VerticalOrientation";
6
7 pub const dest_file = "src/vertical_orientation.zig";
8
9 pub const dest_header =
10 \\pub const VerticalOrientation = struct {
11 \\ from: u21,
12 \\ to: u21,
13 \\ orientation: enum {
14 \\ R,
15 \\ U,
16 \\ Tr,
17 \\ Tu,
18 \\ },
19 \\};
20 \\
21 \\pub const data = [_]VerticalOrientation{
22 \\
23 ;
24
25 pub const dest_footer =
26 \\};
27 \\
28 ;
29
30 pub fn exec(alloc: std.mem.Allocator, line: []const u8, writer: anytype) !bool {
31 _ = alloc;
32 var it = std.mem.tokenize(u8, line, "; ");
33
34 const first = it.next().?;
35 const next = it.next().?;
36
37 if (std.mem.indexOf(u8, first, "..")) |index| {
38 const start = first[0..index];
39 const end = first[index + 2 ..];
40 try writer.print(" .{{ .from = 0x{s}, .to = 0x{s}, .orientation = .{s} }},\n", .{ start, end, next });
41 } else {
42 try writer.print(" .{{ .from = 0x{s}, .to = 0x{s}, .orientation = .{s} }},\n", .{ first, first, next });
43 }
44
45 return true;
46 }
47});
src/lib.zig+1-1
...@@ -36,4 +36,4 @@ pub const scripts = @import("./scripts.zig");...@@ -36,4 +36,4 @@ pub const scripts = @import("./scripts.zig");
36// TangutSources.txt36// TangutSources.txt
37// USourceData.txt37// USourceData.txt
38// UnicodeData.txt38// UnicodeData.txt
39// VerticalOrientation.txt39pub const vertical_orientation = @import("./vertical_orientation.zig");
src/main.zig+1
...@@ -28,6 +28,7 @@ pub fn main() !void {...@@ -28,6 +28,7 @@ pub fn main() !void {
28 ucd.named_sequences_prov,28 ucd.named_sequences_prov,
29 ucd.prop_list,29 ucd.prop_list,
30 ucd.scripts,30 ucd.scripts,
31 ucd.vertical_orientation,
31 };32 };
3233
33 inline for (data) |b| {34 inline for (data) |b| {
src/vertical_orientation.zig created+2281
...@@ -0,0 +1,2281 @@
1// This file is part of the Unicode Character Database
2// For documentation, see http://www.unicode.org/reports/tr44/
3//
4// Based on the source file: https://unicode.org/Public/13.0.0/ucd/VerticalOrientation.txt
5//
6// zig fmt: off
7
8pub const VerticalOrientation = struct {
9 from: u21,
10 to: u21,
11 orientation: enum {
12 R,
13 U,
14 Tr,
15 Tu,
16 },
17};
18
19pub const data = [_]VerticalOrientation{
20 .{ .from = 0x0000, .to = 0x001F, .orientation = .R },
21 .{ .from = 0x0020, .to = 0x0020, .orientation = .R },
22 .{ .from = 0x0021, .to = 0x0023, .orientation = .R },
23 .{ .from = 0x0024, .to = 0x0024, .orientation = .R },
24 .{ .from = 0x0025, .to = 0x0027, .orientation = .R },
25 .{ .from = 0x0028, .to = 0x0028, .orientation = .R },
26 .{ .from = 0x0029, .to = 0x0029, .orientation = .R },
27 .{ .from = 0x002A, .to = 0x002A, .orientation = .R },
28 .{ .from = 0x002B, .to = 0x002B, .orientation = .R },
29 .{ .from = 0x002C, .to = 0x002C, .orientation = .R },
30 .{ .from = 0x002D, .to = 0x002D, .orientation = .R },
31 .{ .from = 0x002E, .to = 0x002F, .orientation = .R },
32 .{ .from = 0x0030, .to = 0x0039, .orientation = .R },
33 .{ .from = 0x003A, .to = 0x003B, .orientation = .R },
34 .{ .from = 0x003C, .to = 0x003E, .orientation = .R },
35 .{ .from = 0x003F, .to = 0x0040, .orientation = .R },
36 .{ .from = 0x0041, .to = 0x005A, .orientation = .R },
37 .{ .from = 0x005B, .to = 0x005B, .orientation = .R },
38 .{ .from = 0x005C, .to = 0x005C, .orientation = .R },
39 .{ .from = 0x005D, .to = 0x005D, .orientation = .R },
40 .{ .from = 0x005E, .to = 0x005E, .orientation = .R },
41 .{ .from = 0x005F, .to = 0x005F, .orientation = .R },
42 .{ .from = 0x0060, .to = 0x0060, .orientation = .R },
43 .{ .from = 0x0061, .to = 0x007A, .orientation = .R },
44 .{ .from = 0x007B, .to = 0x007B, .orientation = .R },
45 .{ .from = 0x007C, .to = 0x007C, .orientation = .R },
46 .{ .from = 0x007D, .to = 0x007D, .orientation = .R },
47 .{ .from = 0x007E, .to = 0x007E, .orientation = .R },
48 .{ .from = 0x007F, .to = 0x007F, .orientation = .R },
49 .{ .from = 0x0080, .to = 0x009F, .orientation = .R },
50 .{ .from = 0x00A0, .to = 0x00A0, .orientation = .R },
51 .{ .from = 0x00A1, .to = 0x00A1, .orientation = .R },
52 .{ .from = 0x00A2, .to = 0x00A5, .orientation = .R },
53 .{ .from = 0x00A6, .to = 0x00A6, .orientation = .R },
54 .{ .from = 0x00A7, .to = 0x00A7, .orientation = .U },
55 .{ .from = 0x00A8, .to = 0x00A8, .orientation = .R },
56 .{ .from = 0x00A9, .to = 0x00A9, .orientation = .U },
57 .{ .from = 0x00AA, .to = 0x00AA, .orientation = .R },
58 .{ .from = 0x00AB, .to = 0x00AB, .orientation = .R },
59 .{ .from = 0x00AC, .to = 0x00AC, .orientation = .R },
60 .{ .from = 0x00AD, .to = 0x00AD, .orientation = .R },
61 .{ .from = 0x00AE, .to = 0x00AE, .orientation = .U },
62 .{ .from = 0x00AF, .to = 0x00AF, .orientation = .R },
63 .{ .from = 0x00B0, .to = 0x00B0, .orientation = .R },
64 .{ .from = 0x00B1, .to = 0x00B1, .orientation = .U },
65 .{ .from = 0x00B2, .to = 0x00B3, .orientation = .R },
66 .{ .from = 0x00B4, .to = 0x00B4, .orientation = .R },
67 .{ .from = 0x00B5, .to = 0x00B5, .orientation = .R },
68 .{ .from = 0x00B6, .to = 0x00B7, .orientation = .R },
69 .{ .from = 0x00B8, .to = 0x00B8, .orientation = .R },
70 .{ .from = 0x00B9, .to = 0x00B9, .orientation = .R },
71 .{ .from = 0x00BA, .to = 0x00BA, .orientation = .R },
72 .{ .from = 0x00BB, .to = 0x00BB, .orientation = .R },
73 .{ .from = 0x00BC, .to = 0x00BE, .orientation = .U },
74 .{ .from = 0x00BF, .to = 0x00BF, .orientation = .R },
75 .{ .from = 0x00C0, .to = 0x00D6, .orientation = .R },
76 .{ .from = 0x00D7, .to = 0x00D7, .orientation = .U },
77 .{ .from = 0x00D8, .to = 0x00F6, .orientation = .R },
78 .{ .from = 0x00F7, .to = 0x00F7, .orientation = .U },
79 .{ .from = 0x00F8, .to = 0x00FF, .orientation = .R },
80 .{ .from = 0x0100, .to = 0x017F, .orientation = .R },
81 .{ .from = 0x0180, .to = 0x01BA, .orientation = .R },
82 .{ .from = 0x01BB, .to = 0x01BB, .orientation = .R },
83 .{ .from = 0x01BC, .to = 0x01BF, .orientation = .R },
84 .{ .from = 0x01C0, .to = 0x01C3, .orientation = .R },
85 .{ .from = 0x01C4, .to = 0x024F, .orientation = .R },
86 .{ .from = 0x0250, .to = 0x0293, .orientation = .R },
87 .{ .from = 0x0294, .to = 0x0294, .orientation = .R },
88 .{ .from = 0x0295, .to = 0x02AF, .orientation = .R },
89 .{ .from = 0x02B0, .to = 0x02C1, .orientation = .R },
90 .{ .from = 0x02C2, .to = 0x02C5, .orientation = .R },
91 .{ .from = 0x02C6, .to = 0x02D1, .orientation = .R },
92 .{ .from = 0x02D2, .to = 0x02DF, .orientation = .R },
93 .{ .from = 0x02E0, .to = 0x02E4, .orientation = .R },
94 .{ .from = 0x02E5, .to = 0x02E9, .orientation = .R },
95 .{ .from = 0x02EA, .to = 0x02EB, .orientation = .U },
96 .{ .from = 0x02EC, .to = 0x02EC, .orientation = .R },
97 .{ .from = 0x02ED, .to = 0x02ED, .orientation = .R },
98 .{ .from = 0x02EE, .to = 0x02EE, .orientation = .R },
99 .{ .from = 0x02EF, .to = 0x02FF, .orientation = .R },
100 .{ .from = 0x0300, .to = 0x036F, .orientation = .R },
101 .{ .from = 0x0370, .to = 0x0373, .orientation = .R },
102 .{ .from = 0x0374, .to = 0x0374, .orientation = .R },
103 .{ .from = 0x0375, .to = 0x0375, .orientation = .R },
104 .{ .from = 0x0376, .to = 0x0377, .orientation = .R },
105 .{ .from = 0x037A, .to = 0x037A, .orientation = .R },
106 .{ .from = 0x037B, .to = 0x037D, .orientation = .R },
107 .{ .from = 0x037E, .to = 0x037E, .orientation = .R },
108 .{ .from = 0x037F, .to = 0x037F, .orientation = .R },
109 .{ .from = 0x0384, .to = 0x0385, .orientation = .R },
110 .{ .from = 0x0386, .to = 0x0386, .orientation = .R },
111 .{ .from = 0x0387, .to = 0x0387, .orientation = .R },
112 .{ .from = 0x0388, .to = 0x038A, .orientation = .R },
113 .{ .from = 0x038C, .to = 0x038C, .orientation = .R },
114 .{ .from = 0x038E, .to = 0x03A1, .orientation = .R },
115 .{ .from = 0x03A3, .to = 0x03F5, .orientation = .R },
116 .{ .from = 0x03F6, .to = 0x03F6, .orientation = .R },
117 .{ .from = 0x03F7, .to = 0x03FF, .orientation = .R },
118 .{ .from = 0x0400, .to = 0x0481, .orientation = .R },
119 .{ .from = 0x0482, .to = 0x0482, .orientation = .R },
120 .{ .from = 0x0483, .to = 0x0487, .orientation = .R },
121 .{ .from = 0x0488, .to = 0x0489, .orientation = .R },
122 .{ .from = 0x048A, .to = 0x04FF, .orientation = .R },
123 .{ .from = 0x0500, .to = 0x052F, .orientation = .R },
124 .{ .from = 0x0531, .to = 0x0556, .orientation = .R },
125 .{ .from = 0x0559, .to = 0x0559, .orientation = .R },
126 .{ .from = 0x055A, .to = 0x055F, .orientation = .R },
127 .{ .from = 0x0560, .to = 0x0588, .orientation = .R },
128 .{ .from = 0x0589, .to = 0x0589, .orientation = .R },
129 .{ .from = 0x058A, .to = 0x058A, .orientation = .R },
130 .{ .from = 0x058D, .to = 0x058E, .orientation = .R },
131 .{ .from = 0x058F, .to = 0x058F, .orientation = .R },
132 .{ .from = 0x0591, .to = 0x05BD, .orientation = .R },
133 .{ .from = 0x05BE, .to = 0x05BE, .orientation = .R },
134 .{ .from = 0x05BF, .to = 0x05BF, .orientation = .R },
135 .{ .from = 0x05C0, .to = 0x05C0, .orientation = .R },
136 .{ .from = 0x05C1, .to = 0x05C2, .orientation = .R },
137 .{ .from = 0x05C3, .to = 0x05C3, .orientation = .R },
138 .{ .from = 0x05C4, .to = 0x05C5, .orientation = .R },
139 .{ .from = 0x05C6, .to = 0x05C6, .orientation = .R },
140 .{ .from = 0x05C7, .to = 0x05C7, .orientation = .R },
141 .{ .from = 0x05D0, .to = 0x05EA, .orientation = .R },
142 .{ .from = 0x05EF, .to = 0x05F2, .orientation = .R },
143 .{ .from = 0x05F3, .to = 0x05F4, .orientation = .R },
144 .{ .from = 0x0600, .to = 0x0605, .orientation = .R },
145 .{ .from = 0x0606, .to = 0x0608, .orientation = .R },
146 .{ .from = 0x0609, .to = 0x060A, .orientation = .R },
147 .{ .from = 0x060B, .to = 0x060B, .orientation = .R },
148 .{ .from = 0x060C, .to = 0x060D, .orientation = .R },
149 .{ .from = 0x060E, .to = 0x060F, .orientation = .R },
150 .{ .from = 0x0610, .to = 0x061A, .orientation = .R },
151 .{ .from = 0x061B, .to = 0x061B, .orientation = .R },
152 .{ .from = 0x061C, .to = 0x061C, .orientation = .R },
153 .{ .from = 0x061E, .to = 0x061F, .orientation = .R },
154 .{ .from = 0x0620, .to = 0x063F, .orientation = .R },
155 .{ .from = 0x0640, .to = 0x0640, .orientation = .R },
156 .{ .from = 0x0641, .to = 0x064A, .orientation = .R },
157 .{ .from = 0x064B, .to = 0x065F, .orientation = .R },
158 .{ .from = 0x0660, .to = 0x0669, .orientation = .R },
159 .{ .from = 0x066A, .to = 0x066D, .orientation = .R },
160 .{ .from = 0x066E, .to = 0x066F, .orientation = .R },
161 .{ .from = 0x0670, .to = 0x0670, .orientation = .R },
162 .{ .from = 0x0671, .to = 0x06D3, .orientation = .R },
163 .{ .from = 0x06D4, .to = 0x06D4, .orientation = .R },
164 .{ .from = 0x06D5, .to = 0x06D5, .orientation = .R },
165 .{ .from = 0x06D6, .to = 0x06DC, .orientation = .R },
166 .{ .from = 0x06DD, .to = 0x06DD, .orientation = .R },
167 .{ .from = 0x06DE, .to = 0x06DE, .orientation = .R },
168 .{ .from = 0x06DF, .to = 0x06E4, .orientation = .R },
169 .{ .from = 0x06E5, .to = 0x06E6, .orientation = .R },
170 .{ .from = 0x06E7, .to = 0x06E8, .orientation = .R },
171 .{ .from = 0x06E9, .to = 0x06E9, .orientation = .R },
172 .{ .from = 0x06EA, .to = 0x06ED, .orientation = .R },
173 .{ .from = 0x06EE, .to = 0x06EF, .orientation = .R },
174 .{ .from = 0x06F0, .to = 0x06F9, .orientation = .R },
175 .{ .from = 0x06FA, .to = 0x06FC, .orientation = .R },
176 .{ .from = 0x06FD, .to = 0x06FE, .orientation = .R },
177 .{ .from = 0x06FF, .to = 0x06FF, .orientation = .R },
178 .{ .from = 0x0700, .to = 0x070D, .orientation = .R },
179 .{ .from = 0x070F, .to = 0x070F, .orientation = .R },
180 .{ .from = 0x0710, .to = 0x0710, .orientation = .R },
181 .{ .from = 0x0711, .to = 0x0711, .orientation = .R },
182 .{ .from = 0x0712, .to = 0x072F, .orientation = .R },
183 .{ .from = 0x0730, .to = 0x074A, .orientation = .R },
184 .{ .from = 0x074D, .to = 0x074F, .orientation = .R },
185 .{ .from = 0x0750, .to = 0x077F, .orientation = .R },
186 .{ .from = 0x0780, .to = 0x07A5, .orientation = .R },
187 .{ .from = 0x07A6, .to = 0x07B0, .orientation = .R },
188 .{ .from = 0x07B1, .to = 0x07B1, .orientation = .R },
189 .{ .from = 0x07C0, .to = 0x07C9, .orientation = .R },
190 .{ .from = 0x07CA, .to = 0x07EA, .orientation = .R },
191 .{ .from = 0x07EB, .to = 0x07F3, .orientation = .R },
192 .{ .from = 0x07F4, .to = 0x07F5, .orientation = .R },
193 .{ .from = 0x07F6, .to = 0x07F6, .orientation = .R },
194 .{ .from = 0x07F7, .to = 0x07F9, .orientation = .R },
195 .{ .from = 0x07FA, .to = 0x07FA, .orientation = .R },
196 .{ .from = 0x07FD, .to = 0x07FD, .orientation = .R },
197 .{ .from = 0x07FE, .to = 0x07FF, .orientation = .R },
198 .{ .from = 0x0800, .to = 0x0815, .orientation = .R },
199 .{ .from = 0x0816, .to = 0x0819, .orientation = .R },
200 .{ .from = 0x081A, .to = 0x081A, .orientation = .R },
201 .{ .from = 0x081B, .to = 0x0823, .orientation = .R },
202 .{ .from = 0x0824, .to = 0x0824, .orientation = .R },
203 .{ .from = 0x0825, .to = 0x0827, .orientation = .R },
204 .{ .from = 0x0828, .to = 0x0828, .orientation = .R },
205 .{ .from = 0x0829, .to = 0x082D, .orientation = .R },
206 .{ .from = 0x0830, .to = 0x083E, .orientation = .R },
207 .{ .from = 0x0840, .to = 0x0858, .orientation = .R },
208 .{ .from = 0x0859, .to = 0x085B, .orientation = .R },
209 .{ .from = 0x085E, .to = 0x085E, .orientation = .R },
210 .{ .from = 0x0860, .to = 0x086A, .orientation = .R },
211 .{ .from = 0x08A0, .to = 0x08B4, .orientation = .R },
212 .{ .from = 0x08B6, .to = 0x08C7, .orientation = .R },
213 .{ .from = 0x08D3, .to = 0x08E1, .orientation = .R },
214 .{ .from = 0x08E2, .to = 0x08E2, .orientation = .R },
215 .{ .from = 0x08E3, .to = 0x08FF, .orientation = .R },
216 .{ .from = 0x0900, .to = 0x0902, .orientation = .R },
217 .{ .from = 0x0903, .to = 0x0903, .orientation = .R },
218 .{ .from = 0x0904, .to = 0x0939, .orientation = .R },
219 .{ .from = 0x093A, .to = 0x093A, .orientation = .R },
220 .{ .from = 0x093B, .to = 0x093B, .orientation = .R },
221 .{ .from = 0x093C, .to = 0x093C, .orientation = .R },
222 .{ .from = 0x093D, .to = 0x093D, .orientation = .R },
223 .{ .from = 0x093E, .to = 0x0940, .orientation = .R },
224 .{ .from = 0x0941, .to = 0x0948, .orientation = .R },
225 .{ .from = 0x0949, .to = 0x094C, .orientation = .R },
226 .{ .from = 0x094D, .to = 0x094D, .orientation = .R },
227 .{ .from = 0x094E, .to = 0x094F, .orientation = .R },
228 .{ .from = 0x0950, .to = 0x0950, .orientation = .R },
229 .{ .from = 0x0951, .to = 0x0957, .orientation = .R },
230 .{ .from = 0x0958, .to = 0x0961, .orientation = .R },
231 .{ .from = 0x0962, .to = 0x0963, .orientation = .R },
232 .{ .from = 0x0964, .to = 0x0965, .orientation = .R },
233 .{ .from = 0x0966, .to = 0x096F, .orientation = .R },
234 .{ .from = 0x0970, .to = 0x0970, .orientation = .R },
235 .{ .from = 0x0971, .to = 0x0971, .orientation = .R },
236 .{ .from = 0x0972, .to = 0x097F, .orientation = .R },
237 .{ .from = 0x0980, .to = 0x0980, .orientation = .R },
238 .{ .from = 0x0981, .to = 0x0981, .orientation = .R },
239 .{ .from = 0x0982, .to = 0x0983, .orientation = .R },
240 .{ .from = 0x0985, .to = 0x098C, .orientation = .R },
241 .{ .from = 0x098F, .to = 0x0990, .orientation = .R },
242 .{ .from = 0x0993, .to = 0x09A8, .orientation = .R },
243 .{ .from = 0x09AA, .to = 0x09B0, .orientation = .R },
244 .{ .from = 0x09B2, .to = 0x09B2, .orientation = .R },
245 .{ .from = 0x09B6, .to = 0x09B9, .orientation = .R },
246 .{ .from = 0x09BC, .to = 0x09BC, .orientation = .R },
247 .{ .from = 0x09BD, .to = 0x09BD, .orientation = .R },
248 .{ .from = 0x09BE, .to = 0x09C0, .orientation = .R },
249 .{ .from = 0x09C1, .to = 0x09C4, .orientation = .R },
250 .{ .from = 0x09C7, .to = 0x09C8, .orientation = .R },
251 .{ .from = 0x09CB, .to = 0x09CC, .orientation = .R },
252 .{ .from = 0x09CD, .to = 0x09CD, .orientation = .R },
253 .{ .from = 0x09CE, .to = 0x09CE, .orientation = .R },
254 .{ .from = 0x09D7, .to = 0x09D7, .orientation = .R },
255 .{ .from = 0x09DC, .to = 0x09DD, .orientation = .R },
256 .{ .from = 0x09DF, .to = 0x09E1, .orientation = .R },
257 .{ .from = 0x09E2, .to = 0x09E3, .orientation = .R },
258 .{ .from = 0x09E6, .to = 0x09EF, .orientation = .R },
259 .{ .from = 0x09F0, .to = 0x09F1, .orientation = .R },
260 .{ .from = 0x09F2, .to = 0x09F3, .orientation = .R },
261 .{ .from = 0x09F4, .to = 0x09F9, .orientation = .R },
262 .{ .from = 0x09FA, .to = 0x09FA, .orientation = .R },
263 .{ .from = 0x09FB, .to = 0x09FB, .orientation = .R },
264 .{ .from = 0x09FC, .to = 0x09FC, .orientation = .R },
265 .{ .from = 0x09FD, .to = 0x09FD, .orientation = .R },
266 .{ .from = 0x09FE, .to = 0x09FE, .orientation = .R },
267 .{ .from = 0x0A01, .to = 0x0A02, .orientation = .R },
268 .{ .from = 0x0A03, .to = 0x0A03, .orientation = .R },
269 .{ .from = 0x0A05, .to = 0x0A0A, .orientation = .R },
270 .{ .from = 0x0A0F, .to = 0x0A10, .orientation = .R },
271 .{ .from = 0x0A13, .to = 0x0A28, .orientation = .R },
272 .{ .from = 0x0A2A, .to = 0x0A30, .orientation = .R },
273 .{ .from = 0x0A32, .to = 0x0A33, .orientation = .R },
274 .{ .from = 0x0A35, .to = 0x0A36, .orientation = .R },
275 .{ .from = 0x0A38, .to = 0x0A39, .orientation = .R },
276 .{ .from = 0x0A3C, .to = 0x0A3C, .orientation = .R },
277 .{ .from = 0x0A3E, .to = 0x0A40, .orientation = .R },
278 .{ .from = 0x0A41, .to = 0x0A42, .orientation = .R },
279 .{ .from = 0x0A47, .to = 0x0A48, .orientation = .R },
280 .{ .from = 0x0A4B, .to = 0x0A4D, .orientation = .R },
281 .{ .from = 0x0A51, .to = 0x0A51, .orientation = .R },
282 .{ .from = 0x0A59, .to = 0x0A5C, .orientation = .R },
283 .{ .from = 0x0A5E, .to = 0x0A5E, .orientation = .R },
284 .{ .from = 0x0A66, .to = 0x0A6F, .orientation = .R },
285 .{ .from = 0x0A70, .to = 0x0A71, .orientation = .R },
286 .{ .from = 0x0A72, .to = 0x0A74, .orientation = .R },
287 .{ .from = 0x0A75, .to = 0x0A75, .orientation = .R },
288 .{ .from = 0x0A76, .to = 0x0A76, .orientation = .R },
289 .{ .from = 0x0A81, .to = 0x0A82, .orientation = .R },
290 .{ .from = 0x0A83, .to = 0x0A83, .orientation = .R },
291 .{ .from = 0x0A85, .to = 0x0A8D, .orientation = .R },
292 .{ .from = 0x0A8F, .to = 0x0A91, .orientation = .R },
293 .{ .from = 0x0A93, .to = 0x0AA8, .orientation = .R },
294 .{ .from = 0x0AAA, .to = 0x0AB0, .orientation = .R },
295 .{ .from = 0x0AB2, .to = 0x0AB3, .orientation = .R },
296 .{ .from = 0x0AB5, .to = 0x0AB9, .orientation = .R },
297 .{ .from = 0x0ABC, .to = 0x0ABC, .orientation = .R },
298 .{ .from = 0x0ABD, .to = 0x0ABD, .orientation = .R },
299 .{ .from = 0x0ABE, .to = 0x0AC0, .orientation = .R },
300 .{ .from = 0x0AC1, .to = 0x0AC5, .orientation = .R },
301 .{ .from = 0x0AC7, .to = 0x0AC8, .orientation = .R },
302 .{ .from = 0x0AC9, .to = 0x0AC9, .orientation = .R },
303 .{ .from = 0x0ACB, .to = 0x0ACC, .orientation = .R },
304 .{ .from = 0x0ACD, .to = 0x0ACD, .orientation = .R },
305 .{ .from = 0x0AD0, .to = 0x0AD0, .orientation = .R },
306 .{ .from = 0x0AE0, .to = 0x0AE1, .orientation = .R },
307 .{ .from = 0x0AE2, .to = 0x0AE3, .orientation = .R },
308 .{ .from = 0x0AE6, .to = 0x0AEF, .orientation = .R },
309 .{ .from = 0x0AF0, .to = 0x0AF0, .orientation = .R },
310 .{ .from = 0x0AF1, .to = 0x0AF1, .orientation = .R },
311 .{ .from = 0x0AF9, .to = 0x0AF9, .orientation = .R },
312 .{ .from = 0x0AFA, .to = 0x0AFF, .orientation = .R },
313 .{ .from = 0x0B01, .to = 0x0B01, .orientation = .R },
314 .{ .from = 0x0B02, .to = 0x0B03, .orientation = .R },
315 .{ .from = 0x0B05, .to = 0x0B0C, .orientation = .R },
316 .{ .from = 0x0B0F, .to = 0x0B10, .orientation = .R },
317 .{ .from = 0x0B13, .to = 0x0B28, .orientation = .R },
318 .{ .from = 0x0B2A, .to = 0x0B30, .orientation = .R },
319 .{ .from = 0x0B32, .to = 0x0B33, .orientation = .R },
320 .{ .from = 0x0B35, .to = 0x0B39, .orientation = .R },
321 .{ .from = 0x0B3C, .to = 0x0B3C, .orientation = .R },
322 .{ .from = 0x0B3D, .to = 0x0B3D, .orientation = .R },
323 .{ .from = 0x0B3E, .to = 0x0B3E, .orientation = .R },
324 .{ .from = 0x0B3F, .to = 0x0B3F, .orientation = .R },
325 .{ .from = 0x0B40, .to = 0x0B40, .orientation = .R },
326 .{ .from = 0x0B41, .to = 0x0B44, .orientation = .R },
327 .{ .from = 0x0B47, .to = 0x0B48, .orientation = .R },
328 .{ .from = 0x0B4B, .to = 0x0B4C, .orientation = .R },
329 .{ .from = 0x0B4D, .to = 0x0B4D, .orientation = .R },
330 .{ .from = 0x0B55, .to = 0x0B56, .orientation = .R },
331 .{ .from = 0x0B57, .to = 0x0B57, .orientation = .R },
332 .{ .from = 0x0B5C, .to = 0x0B5D, .orientation = .R },
333 .{ .from = 0x0B5F, .to = 0x0B61, .orientation = .R },
334 .{ .from = 0x0B62, .to = 0x0B63, .orientation = .R },
335 .{ .from = 0x0B66, .to = 0x0B6F, .orientation = .R },
336 .{ .from = 0x0B70, .to = 0x0B70, .orientation = .R },
337 .{ .from = 0x0B71, .to = 0x0B71, .orientation = .R },
338 .{ .from = 0x0B72, .to = 0x0B77, .orientation = .R },
339 .{ .from = 0x0B82, .to = 0x0B82, .orientation = .R },
340 .{ .from = 0x0B83, .to = 0x0B83, .orientation = .R },
341 .{ .from = 0x0B85, .to = 0x0B8A, .orientation = .R },
342 .{ .from = 0x0B8E, .to = 0x0B90, .orientation = .R },
343 .{ .from = 0x0B92, .to = 0x0B95, .orientation = .R },
344 .{ .from = 0x0B99, .to = 0x0B9A, .orientation = .R },
345 .{ .from = 0x0B9C, .to = 0x0B9C, .orientation = .R },
346 .{ .from = 0x0B9E, .to = 0x0B9F, .orientation = .R },
347 .{ .from = 0x0BA3, .to = 0x0BA4, .orientation = .R },
348 .{ .from = 0x0BA8, .to = 0x0BAA, .orientation = .R },
349 .{ .from = 0x0BAE, .to = 0x0BB9, .orientation = .R },
350 .{ .from = 0x0BBE, .to = 0x0BBF, .orientation = .R },
351 .{ .from = 0x0BC0, .to = 0x0BC0, .orientation = .R },
352 .{ .from = 0x0BC1, .to = 0x0BC2, .orientation = .R },
353 .{ .from = 0x0BC6, .to = 0x0BC8, .orientation = .R },
354 .{ .from = 0x0BCA, .to = 0x0BCC, .orientation = .R },
355 .{ .from = 0x0BCD, .to = 0x0BCD, .orientation = .R },
356 .{ .from = 0x0BD0, .to = 0x0BD0, .orientation = .R },
357 .{ .from = 0x0BD7, .to = 0x0BD7, .orientation = .R },
358 .{ .from = 0x0BE6, .to = 0x0BEF, .orientation = .R },
359 .{ .from = 0x0BF0, .to = 0x0BF2, .orientation = .R },
360 .{ .from = 0x0BF3, .to = 0x0BF8, .orientation = .R },
361 .{ .from = 0x0BF9, .to = 0x0BF9, .orientation = .R },
362 .{ .from = 0x0BFA, .to = 0x0BFA, .orientation = .R },
363 .{ .from = 0x0C00, .to = 0x0C00, .orientation = .R },
364 .{ .from = 0x0C01, .to = 0x0C03, .orientation = .R },
365 .{ .from = 0x0C04, .to = 0x0C04, .orientation = .R },
366 .{ .from = 0x0C05, .to = 0x0C0C, .orientation = .R },
367 .{ .from = 0x0C0E, .to = 0x0C10, .orientation = .R },
368 .{ .from = 0x0C12, .to = 0x0C28, .orientation = .R },
369 .{ .from = 0x0C2A, .to = 0x0C39, .orientation = .R },
370 .{ .from = 0x0C3D, .to = 0x0C3D, .orientation = .R },
371 .{ .from = 0x0C3E, .to = 0x0C40, .orientation = .R },
372 .{ .from = 0x0C41, .to = 0x0C44, .orientation = .R },
373 .{ .from = 0x0C46, .to = 0x0C48, .orientation = .R },
374 .{ .from = 0x0C4A, .to = 0x0C4D, .orientation = .R },
375 .{ .from = 0x0C55, .to = 0x0C56, .orientation = .R },
376 .{ .from = 0x0C58, .to = 0x0C5A, .orientation = .R },
377 .{ .from = 0x0C60, .to = 0x0C61, .orientation = .R },
378 .{ .from = 0x0C62, .to = 0x0C63, .orientation = .R },
379 .{ .from = 0x0C66, .to = 0x0C6F, .orientation = .R },
380 .{ .from = 0x0C77, .to = 0x0C77, .orientation = .R },
381 .{ .from = 0x0C78, .to = 0x0C7E, .orientation = .R },
382 .{ .from = 0x0C7F, .to = 0x0C7F, .orientation = .R },
383 .{ .from = 0x0C80, .to = 0x0C80, .orientation = .R },
384 .{ .from = 0x0C81, .to = 0x0C81, .orientation = .R },
385 .{ .from = 0x0C82, .to = 0x0C83, .orientation = .R },
386 .{ .from = 0x0C84, .to = 0x0C84, .orientation = .R },
387 .{ .from = 0x0C85, .to = 0x0C8C, .orientation = .R },
388 .{ .from = 0x0C8E, .to = 0x0C90, .orientation = .R },
389 .{ .from = 0x0C92, .to = 0x0CA8, .orientation = .R },
390 .{ .from = 0x0CAA, .to = 0x0CB3, .orientation = .R },
391 .{ .from = 0x0CB5, .to = 0x0CB9, .orientation = .R },
392 .{ .from = 0x0CBC, .to = 0x0CBC, .orientation = .R },
393 .{ .from = 0x0CBD, .to = 0x0CBD, .orientation = .R },
394 .{ .from = 0x0CBE, .to = 0x0CBE, .orientation = .R },
395 .{ .from = 0x0CBF, .to = 0x0CBF, .orientation = .R },
396 .{ .from = 0x0CC0, .to = 0x0CC4, .orientation = .R },
397 .{ .from = 0x0CC6, .to = 0x0CC6, .orientation = .R },
398 .{ .from = 0x0CC7, .to = 0x0CC8, .orientation = .R },
399 .{ .from = 0x0CCA, .to = 0x0CCB, .orientation = .R },
400 .{ .from = 0x0CCC, .to = 0x0CCD, .orientation = .R },
401 .{ .from = 0x0CD5, .to = 0x0CD6, .orientation = .R },
402 .{ .from = 0x0CDE, .to = 0x0CDE, .orientation = .R },
403 .{ .from = 0x0CE0, .to = 0x0CE1, .orientation = .R },
404 .{ .from = 0x0CE2, .to = 0x0CE3, .orientation = .R },
405 .{ .from = 0x0CE6, .to = 0x0CEF, .orientation = .R },
406 .{ .from = 0x0CF1, .to = 0x0CF2, .orientation = .R },
407 .{ .from = 0x0D00, .to = 0x0D01, .orientation = .R },
408 .{ .from = 0x0D02, .to = 0x0D03, .orientation = .R },
409 .{ .from = 0x0D04, .to = 0x0D0C, .orientation = .R },
410 .{ .from = 0x0D0E, .to = 0x0D10, .orientation = .R },
411 .{ .from = 0x0D12, .to = 0x0D3A, .orientation = .R },
412 .{ .from = 0x0D3B, .to = 0x0D3C, .orientation = .R },
413 .{ .from = 0x0D3D, .to = 0x0D3D, .orientation = .R },
414 .{ .from = 0x0D3E, .to = 0x0D40, .orientation = .R },
415 .{ .from = 0x0D41, .to = 0x0D44, .orientation = .R },
416 .{ .from = 0x0D46, .to = 0x0D48, .orientation = .R },
417 .{ .from = 0x0D4A, .to = 0x0D4C, .orientation = .R },
418 .{ .from = 0x0D4D, .to = 0x0D4D, .orientation = .R },
419 .{ .from = 0x0D4E, .to = 0x0D4E, .orientation = .R },
420 .{ .from = 0x0D4F, .to = 0x0D4F, .orientation = .R },
421 .{ .from = 0x0D54, .to = 0x0D56, .orientation = .R },
422 .{ .from = 0x0D57, .to = 0x0D57, .orientation = .R },
423 .{ .from = 0x0D58, .to = 0x0D5E, .orientation = .R },
424 .{ .from = 0x0D5F, .to = 0x0D61, .orientation = .R },
425 .{ .from = 0x0D62, .to = 0x0D63, .orientation = .R },
426 .{ .from = 0x0D66, .to = 0x0D6F, .orientation = .R },
427 .{ .from = 0x0D70, .to = 0x0D78, .orientation = .R },
428 .{ .from = 0x0D79, .to = 0x0D79, .orientation = .R },
429 .{ .from = 0x0D7A, .to = 0x0D7F, .orientation = .R },
430 .{ .from = 0x0D81, .to = 0x0D81, .orientation = .R },
431 .{ .from = 0x0D82, .to = 0x0D83, .orientation = .R },
432 .{ .from = 0x0D85, .to = 0x0D96, .orientation = .R },
433 .{ .from = 0x0D9A, .to = 0x0DB1, .orientation = .R },
434 .{ .from = 0x0DB3, .to = 0x0DBB, .orientation = .R },
435 .{ .from = 0x0DBD, .to = 0x0DBD, .orientation = .R },
436 .{ .from = 0x0DC0, .to = 0x0DC6, .orientation = .R },
437 .{ .from = 0x0DCA, .to = 0x0DCA, .orientation = .R },
438 .{ .from = 0x0DCF, .to = 0x0DD1, .orientation = .R },
439 .{ .from = 0x0DD2, .to = 0x0DD4, .orientation = .R },
440 .{ .from = 0x0DD6, .to = 0x0DD6, .orientation = .R },
441 .{ .from = 0x0DD8, .to = 0x0DDF, .orientation = .R },
442 .{ .from = 0x0DE6, .to = 0x0DEF, .orientation = .R },
443 .{ .from = 0x0DF2, .to = 0x0DF3, .orientation = .R },
444 .{ .from = 0x0DF4, .to = 0x0DF4, .orientation = .R },
445 .{ .from = 0x0E01, .to = 0x0E30, .orientation = .R },
446 .{ .from = 0x0E31, .to = 0x0E31, .orientation = .R },
447 .{ .from = 0x0E32, .to = 0x0E33, .orientation = .R },
448 .{ .from = 0x0E34, .to = 0x0E3A, .orientation = .R },
449 .{ .from = 0x0E3F, .to = 0x0E3F, .orientation = .R },
450 .{ .from = 0x0E40, .to = 0x0E45, .orientation = .R },
451 .{ .from = 0x0E46, .to = 0x0E46, .orientation = .R },
452 .{ .from = 0x0E47, .to = 0x0E4E, .orientation = .R },
453 .{ .from = 0x0E4F, .to = 0x0E4F, .orientation = .R },
454 .{ .from = 0x0E50, .to = 0x0E59, .orientation = .R },
455 .{ .from = 0x0E5A, .to = 0x0E5B, .orientation = .R },
456 .{ .from = 0x0E81, .to = 0x0E82, .orientation = .R },
457 .{ .from = 0x0E84, .to = 0x0E84, .orientation = .R },
458 .{ .from = 0x0E86, .to = 0x0E8A, .orientation = .R },
459 .{ .from = 0x0E8C, .to = 0x0EA3, .orientation = .R },
460 .{ .from = 0x0EA5, .to = 0x0EA5, .orientation = .R },
461 .{ .from = 0x0EA7, .to = 0x0EB0, .orientation = .R },
462 .{ .from = 0x0EB1, .to = 0x0EB1, .orientation = .R },
463 .{ .from = 0x0EB2, .to = 0x0EB3, .orientation = .R },
464 .{ .from = 0x0EB4, .to = 0x0EBC, .orientation = .R },
465 .{ .from = 0x0EBD, .to = 0x0EBD, .orientation = .R },
466 .{ .from = 0x0EC0, .to = 0x0EC4, .orientation = .R },
467 .{ .from = 0x0EC6, .to = 0x0EC6, .orientation = .R },
468 .{ .from = 0x0EC8, .to = 0x0ECD, .orientation = .R },
469 .{ .from = 0x0ED0, .to = 0x0ED9, .orientation = .R },
470 .{ .from = 0x0EDC, .to = 0x0EDF, .orientation = .R },
471 .{ .from = 0x0F00, .to = 0x0F00, .orientation = .R },
472 .{ .from = 0x0F01, .to = 0x0F03, .orientation = .R },
473 .{ .from = 0x0F04, .to = 0x0F12, .orientation = .R },
474 .{ .from = 0x0F13, .to = 0x0F13, .orientation = .R },
475 .{ .from = 0x0F14, .to = 0x0F14, .orientation = .R },
476 .{ .from = 0x0F15, .to = 0x0F17, .orientation = .R },
477 .{ .from = 0x0F18, .to = 0x0F19, .orientation = .R },
478 .{ .from = 0x0F1A, .to = 0x0F1F, .orientation = .R },
479 .{ .from = 0x0F20, .to = 0x0F29, .orientation = .R },
480 .{ .from = 0x0F2A, .to = 0x0F33, .orientation = .R },
481 .{ .from = 0x0F34, .to = 0x0F34, .orientation = .R },
482 .{ .from = 0x0F35, .to = 0x0F35, .orientation = .R },
483 .{ .from = 0x0F36, .to = 0x0F36, .orientation = .R },
484 .{ .from = 0x0F37, .to = 0x0F37, .orientation = .R },
485 .{ .from = 0x0F38, .to = 0x0F38, .orientation = .R },
486 .{ .from = 0x0F39, .to = 0x0F39, .orientation = .R },
487 .{ .from = 0x0F3A, .to = 0x0F3A, .orientation = .R },
488 .{ .from = 0x0F3B, .to = 0x0F3B, .orientation = .R },
489 .{ .from = 0x0F3C, .to = 0x0F3C, .orientation = .R },
490 .{ .from = 0x0F3D, .to = 0x0F3D, .orientation = .R },
491 .{ .from = 0x0F3E, .to = 0x0F3F, .orientation = .R },
492 .{ .from = 0x0F40, .to = 0x0F47, .orientation = .R },
493 .{ .from = 0x0F49, .to = 0x0F6C, .orientation = .R },
494 .{ .from = 0x0F71, .to = 0x0F7E, .orientation = .R },
495 .{ .from = 0x0F7F, .to = 0x0F7F, .orientation = .R },
496 .{ .from = 0x0F80, .to = 0x0F84, .orientation = .R },
497 .{ .from = 0x0F85, .to = 0x0F85, .orientation = .R },
498 .{ .from = 0x0F86, .to = 0x0F87, .orientation = .R },
499 .{ .from = 0x0F88, .to = 0x0F8C, .orientation = .R },
500 .{ .from = 0x0F8D, .to = 0x0F97, .orientation = .R },
501 .{ .from = 0x0F99, .to = 0x0FBC, .orientation = .R },
502 .{ .from = 0x0FBE, .to = 0x0FC5, .orientation = .R },
503 .{ .from = 0x0FC6, .to = 0x0FC6, .orientation = .R },
504 .{ .from = 0x0FC7, .to = 0x0FCC, .orientation = .R },
505 .{ .from = 0x0FCE, .to = 0x0FCF, .orientation = .R },
506 .{ .from = 0x0FD0, .to = 0x0FD4, .orientation = .R },
507 .{ .from = 0x0FD5, .to = 0x0FD8, .orientation = .R },
508 .{ .from = 0x0FD9, .to = 0x0FDA, .orientation = .R },
509 .{ .from = 0x1000, .to = 0x102A, .orientation = .R },
510 .{ .from = 0x102B, .to = 0x102C, .orientation = .R },
511 .{ .from = 0x102D, .to = 0x1030, .orientation = .R },
512 .{ .from = 0x1031, .to = 0x1031, .orientation = .R },
513 .{ .from = 0x1032, .to = 0x1037, .orientation = .R },
514 .{ .from = 0x1038, .to = 0x1038, .orientation = .R },
515 .{ .from = 0x1039, .to = 0x103A, .orientation = .R },
516 .{ .from = 0x103B, .to = 0x103C, .orientation = .R },
517 .{ .from = 0x103D, .to = 0x103E, .orientation = .R },
518 .{ .from = 0x103F, .to = 0x103F, .orientation = .R },
519 .{ .from = 0x1040, .to = 0x1049, .orientation = .R },
520 .{ .from = 0x104A, .to = 0x104F, .orientation = .R },
521 .{ .from = 0x1050, .to = 0x1055, .orientation = .R },
522 .{ .from = 0x1056, .to = 0x1057, .orientation = .R },
523 .{ .from = 0x1058, .to = 0x1059, .orientation = .R },
524 .{ .from = 0x105A, .to = 0x105D, .orientation = .R },
525 .{ .from = 0x105E, .to = 0x1060, .orientation = .R },
526 .{ .from = 0x1061, .to = 0x1061, .orientation = .R },
527 .{ .from = 0x1062, .to = 0x1064, .orientation = .R },
528 .{ .from = 0x1065, .to = 0x1066, .orientation = .R },
529 .{ .from = 0x1067, .to = 0x106D, .orientation = .R },
530 .{ .from = 0x106E, .to = 0x1070, .orientation = .R },
531 .{ .from = 0x1071, .to = 0x1074, .orientation = .R },
532 .{ .from = 0x1075, .to = 0x1081, .orientation = .R },
533 .{ .from = 0x1082, .to = 0x1082, .orientation = .R },
534 .{ .from = 0x1083, .to = 0x1084, .orientation = .R },
535 .{ .from = 0x1085, .to = 0x1086, .orientation = .R },
536 .{ .from = 0x1087, .to = 0x108C, .orientation = .R },
537 .{ .from = 0x108D, .to = 0x108D, .orientation = .R },
538 .{ .from = 0x108E, .to = 0x108E, .orientation = .R },
539 .{ .from = 0x108F, .to = 0x108F, .orientation = .R },
540 .{ .from = 0x1090, .to = 0x1099, .orientation = .R },
541 .{ .from = 0x109A, .to = 0x109C, .orientation = .R },
542 .{ .from = 0x109D, .to = 0x109D, .orientation = .R },
543 .{ .from = 0x109E, .to = 0x109F, .orientation = .R },
544 .{ .from = 0x10A0, .to = 0x10C5, .orientation = .R },
545 .{ .from = 0x10C7, .to = 0x10C7, .orientation = .R },
546 .{ .from = 0x10CD, .to = 0x10CD, .orientation = .R },
547 .{ .from = 0x10D0, .to = 0x10FA, .orientation = .R },
548 .{ .from = 0x10FB, .to = 0x10FB, .orientation = .R },
549 .{ .from = 0x10FC, .to = 0x10FC, .orientation = .R },
550 .{ .from = 0x10FD, .to = 0x10FF, .orientation = .R },
551 .{ .from = 0x1100, .to = 0x11FF, .orientation = .U },
552 .{ .from = 0x1200, .to = 0x1248, .orientation = .R },
553 .{ .from = 0x124A, .to = 0x124D, .orientation = .R },
554 .{ .from = 0x1250, .to = 0x1256, .orientation = .R },
555 .{ .from = 0x1258, .to = 0x1258, .orientation = .R },
556 .{ .from = 0x125A, .to = 0x125D, .orientation = .R },
557 .{ .from = 0x1260, .to = 0x1288, .orientation = .R },
558 .{ .from = 0x128A, .to = 0x128D, .orientation = .R },
559 .{ .from = 0x1290, .to = 0x12B0, .orientation = .R },
560 .{ .from = 0x12B2, .to = 0x12B5, .orientation = .R },
561 .{ .from = 0x12B8, .to = 0x12BE, .orientation = .R },
562 .{ .from = 0x12C0, .to = 0x12C0, .orientation = .R },
563 .{ .from = 0x12C2, .to = 0x12C5, .orientation = .R },
564 .{ .from = 0x12C8, .to = 0x12D6, .orientation = .R },
565 .{ .from = 0x12D8, .to = 0x1310, .orientation = .R },
566 .{ .from = 0x1312, .to = 0x1315, .orientation = .R },
567 .{ .from = 0x1318, .to = 0x135A, .orientation = .R },
568 .{ .from = 0x135D, .to = 0x135F, .orientation = .R },
569 .{ .from = 0x1360, .to = 0x1368, .orientation = .R },
570 .{ .from = 0x1369, .to = 0x137C, .orientation = .R },
571 .{ .from = 0x1380, .to = 0x138F, .orientation = .R },
572 .{ .from = 0x1390, .to = 0x1399, .orientation = .R },
573 .{ .from = 0x13A0, .to = 0x13F5, .orientation = .R },
574 .{ .from = 0x13F8, .to = 0x13FD, .orientation = .R },
575 .{ .from = 0x1400, .to = 0x1400, .orientation = .R },
576 .{ .from = 0x1401, .to = 0x166C, .orientation = .U },
577 .{ .from = 0x166D, .to = 0x166D, .orientation = .U },
578 .{ .from = 0x166E, .to = 0x166E, .orientation = .U },
579 .{ .from = 0x166F, .to = 0x167F, .orientation = .U },
580 .{ .from = 0x1680, .to = 0x1680, .orientation = .R },
581 .{ .from = 0x1681, .to = 0x169A, .orientation = .R },
582 .{ .from = 0x169B, .to = 0x169B, .orientation = .R },
583 .{ .from = 0x169C, .to = 0x169C, .orientation = .R },
584 .{ .from = 0x16A0, .to = 0x16EA, .orientation = .R },
585 .{ .from = 0x16EB, .to = 0x16ED, .orientation = .R },
586 .{ .from = 0x16EE, .to = 0x16F0, .orientation = .R },
587 .{ .from = 0x16F1, .to = 0x16F8, .orientation = .R },
588 .{ .from = 0x1700, .to = 0x170C, .orientation = .R },
589 .{ .from = 0x170E, .to = 0x1711, .orientation = .R },
590 .{ .from = 0x1712, .to = 0x1714, .orientation = .R },
591 .{ .from = 0x1720, .to = 0x1731, .orientation = .R },
592 .{ .from = 0x1732, .to = 0x1734, .orientation = .R },
593 .{ .from = 0x1735, .to = 0x1736, .orientation = .R },
594 .{ .from = 0x1740, .to = 0x1751, .orientation = .R },
595 .{ .from = 0x1752, .to = 0x1753, .orientation = .R },
596 .{ .from = 0x1760, .to = 0x176C, .orientation = .R },
597 .{ .from = 0x176E, .to = 0x1770, .orientation = .R },
598 .{ .from = 0x1772, .to = 0x1773, .orientation = .R },
599 .{ .from = 0x1780, .to = 0x17B3, .orientation = .R },
600 .{ .from = 0x17B4, .to = 0x17B5, .orientation = .R },
601 .{ .from = 0x17B6, .to = 0x17B6, .orientation = .R },
602 .{ .from = 0x17B7, .to = 0x17BD, .orientation = .R },
603 .{ .from = 0x17BE, .to = 0x17C5, .orientation = .R },
604 .{ .from = 0x17C6, .to = 0x17C6, .orientation = .R },
605 .{ .from = 0x17C7, .to = 0x17C8, .orientation = .R },
606 .{ .from = 0x17C9, .to = 0x17D3, .orientation = .R },
607 .{ .from = 0x17D4, .to = 0x17D6, .orientation = .R },
608 .{ .from = 0x17D7, .to = 0x17D7, .orientation = .R },
609 .{ .from = 0x17D8, .to = 0x17DA, .orientation = .R },
610 .{ .from = 0x17DB, .to = 0x17DB, .orientation = .R },
611 .{ .from = 0x17DC, .to = 0x17DC, .orientation = .R },
612 .{ .from = 0x17DD, .to = 0x17DD, .orientation = .R },
613 .{ .from = 0x17E0, .to = 0x17E9, .orientation = .R },
614 .{ .from = 0x17F0, .to = 0x17F9, .orientation = .R },
615 .{ .from = 0x1800, .to = 0x1805, .orientation = .R },
616 .{ .from = 0x1806, .to = 0x1806, .orientation = .R },
617 .{ .from = 0x1807, .to = 0x180A, .orientation = .R },
618 .{ .from = 0x180B, .to = 0x180D, .orientation = .R },
619 .{ .from = 0x180E, .to = 0x180E, .orientation = .R },
620 .{ .from = 0x1810, .to = 0x1819, .orientation = .R },
621 .{ .from = 0x1820, .to = 0x1842, .orientation = .R },
622 .{ .from = 0x1843, .to = 0x1843, .orientation = .R },
623 .{ .from = 0x1844, .to = 0x1878, .orientation = .R },
624 .{ .from = 0x1880, .to = 0x1884, .orientation = .R },
625 .{ .from = 0x1885, .to = 0x1886, .orientation = .R },
626 .{ .from = 0x1887, .to = 0x18A8, .orientation = .R },
627 .{ .from = 0x18A9, .to = 0x18A9, .orientation = .R },
628 .{ .from = 0x18AA, .to = 0x18AA, .orientation = .R },
629 .{ .from = 0x18B0, .to = 0x18F5, .orientation = .U },
630 .{ .from = 0x18F6, .to = 0x18FF, .orientation = .U },
631 .{ .from = 0x1900, .to = 0x191E, .orientation = .R },
632 .{ .from = 0x1920, .to = 0x1922, .orientation = .R },
633 .{ .from = 0x1923, .to = 0x1926, .orientation = .R },
634 .{ .from = 0x1927, .to = 0x1928, .orientation = .R },
635 .{ .from = 0x1929, .to = 0x192B, .orientation = .R },
636 .{ .from = 0x1930, .to = 0x1931, .orientation = .R },
637 .{ .from = 0x1932, .to = 0x1932, .orientation = .R },
638 .{ .from = 0x1933, .to = 0x1938, .orientation = .R },
639 .{ .from = 0x1939, .to = 0x193B, .orientation = .R },
640 .{ .from = 0x1940, .to = 0x1940, .orientation = .R },
641 .{ .from = 0x1944, .to = 0x1945, .orientation = .R },
642 .{ .from = 0x1946, .to = 0x194F, .orientation = .R },
643 .{ .from = 0x1950, .to = 0x196D, .orientation = .R },
644 .{ .from = 0x1970, .to = 0x1974, .orientation = .R },
645 .{ .from = 0x1980, .to = 0x19AB, .orientation = .R },
646 .{ .from = 0x19B0, .to = 0x19C9, .orientation = .R },
647 .{ .from = 0x19D0, .to = 0x19D9, .orientation = .R },
648 .{ .from = 0x19DA, .to = 0x19DA, .orientation = .R },
649 .{ .from = 0x19DE, .to = 0x19DF, .orientation = .R },
650 .{ .from = 0x19E0, .to = 0x19FF, .orientation = .R },
651 .{ .from = 0x1A00, .to = 0x1A16, .orientation = .R },
652 .{ .from = 0x1A17, .to = 0x1A18, .orientation = .R },
653 .{ .from = 0x1A19, .to = 0x1A1A, .orientation = .R },
654 .{ .from = 0x1A1B, .to = 0x1A1B, .orientation = .R },
655 .{ .from = 0x1A1E, .to = 0x1A1F, .orientation = .R },
656 .{ .from = 0x1A20, .to = 0x1A54, .orientation = .R },
657 .{ .from = 0x1A55, .to = 0x1A55, .orientation = .R },
658 .{ .from = 0x1A56, .to = 0x1A56, .orientation = .R },
659 .{ .from = 0x1A57, .to = 0x1A57, .orientation = .R },
660 .{ .from = 0x1A58, .to = 0x1A5E, .orientation = .R },
661 .{ .from = 0x1A60, .to = 0x1A60, .orientation = .R },
662 .{ .from = 0x1A61, .to = 0x1A61, .orientation = .R },
663 .{ .from = 0x1A62, .to = 0x1A62, .orientation = .R },
664 .{ .from = 0x1A63, .to = 0x1A64, .orientation = .R },
665 .{ .from = 0x1A65, .to = 0x1A6C, .orientation = .R },
666 .{ .from = 0x1A6D, .to = 0x1A72, .orientation = .R },
667 .{ .from = 0x1A73, .to = 0x1A7C, .orientation = .R },
668 .{ .from = 0x1A7F, .to = 0x1A7F, .orientation = .R },
669 .{ .from = 0x1A80, .to = 0x1A89, .orientation = .R },
670 .{ .from = 0x1A90, .to = 0x1A99, .orientation = .R },
671 .{ .from = 0x1AA0, .to = 0x1AA6, .orientation = .R },
672 .{ .from = 0x1AA7, .to = 0x1AA7, .orientation = .R },
673 .{ .from = 0x1AA8, .to = 0x1AAD, .orientation = .R },
674 .{ .from = 0x1AB0, .to = 0x1ABD, .orientation = .R },
675 .{ .from = 0x1ABE, .to = 0x1ABE, .orientation = .R },
676 .{ .from = 0x1ABF, .to = 0x1AC0, .orientation = .R },
677 .{ .from = 0x1B00, .to = 0x1B03, .orientation = .R },
678 .{ .from = 0x1B04, .to = 0x1B04, .orientation = .R },
679 .{ .from = 0x1B05, .to = 0x1B33, .orientation = .R },
680 .{ .from = 0x1B34, .to = 0x1B34, .orientation = .R },
681 .{ .from = 0x1B35, .to = 0x1B35, .orientation = .R },
682 .{ .from = 0x1B36, .to = 0x1B3A, .orientation = .R },
683 .{ .from = 0x1B3B, .to = 0x1B3B, .orientation = .R },
684 .{ .from = 0x1B3C, .to = 0x1B3C, .orientation = .R },
685 .{ .from = 0x1B3D, .to = 0x1B41, .orientation = .R },
686 .{ .from = 0x1B42, .to = 0x1B42, .orientation = .R },
687 .{ .from = 0x1B43, .to = 0x1B44, .orientation = .R },
688 .{ .from = 0x1B45, .to = 0x1B4B, .orientation = .R },
689 .{ .from = 0x1B50, .to = 0x1B59, .orientation = .R },
690 .{ .from = 0x1B5A, .to = 0x1B60, .orientation = .R },
691 .{ .from = 0x1B61, .to = 0x1B6A, .orientation = .R },
692 .{ .from = 0x1B6B, .to = 0x1B73, .orientation = .R },
693 .{ .from = 0x1B74, .to = 0x1B7C, .orientation = .R },
694 .{ .from = 0x1B80, .to = 0x1B81, .orientation = .R },
695 .{ .from = 0x1B82, .to = 0x1B82, .orientation = .R },
696 .{ .from = 0x1B83, .to = 0x1BA0, .orientation = .R },
697 .{ .from = 0x1BA1, .to = 0x1BA1, .orientation = .R },
698 .{ .from = 0x1BA2, .to = 0x1BA5, .orientation = .R },
699 .{ .from = 0x1BA6, .to = 0x1BA7, .orientation = .R },
700 .{ .from = 0x1BA8, .to = 0x1BA9, .orientation = .R },
701 .{ .from = 0x1BAA, .to = 0x1BAA, .orientation = .R },
702 .{ .from = 0x1BAB, .to = 0x1BAD, .orientation = .R },
703 .{ .from = 0x1BAE, .to = 0x1BAF, .orientation = .R },
704 .{ .from = 0x1BB0, .to = 0x1BB9, .orientation = .R },
705 .{ .from = 0x1BBA, .to = 0x1BBF, .orientation = .R },
706 .{ .from = 0x1BC0, .to = 0x1BE5, .orientation = .R },
707 .{ .from = 0x1BE6, .to = 0x1BE6, .orientation = .R },
708 .{ .from = 0x1BE7, .to = 0x1BE7, .orientation = .R },
709 .{ .from = 0x1BE8, .to = 0x1BE9, .orientation = .R },
710 .{ .from = 0x1BEA, .to = 0x1BEC, .orientation = .R },
711 .{ .from = 0x1BED, .to = 0x1BED, .orientation = .R },
712 .{ .from = 0x1BEE, .to = 0x1BEE, .orientation = .R },
713 .{ .from = 0x1BEF, .to = 0x1BF1, .orientation = .R },
714 .{ .from = 0x1BF2, .to = 0x1BF3, .orientation = .R },
715 .{ .from = 0x1BFC, .to = 0x1BFF, .orientation = .R },
716 .{ .from = 0x1C00, .to = 0x1C23, .orientation = .R },
717 .{ .from = 0x1C24, .to = 0x1C2B, .orientation = .R },
718 .{ .from = 0x1C2C, .to = 0x1C33, .orientation = .R },
719 .{ .from = 0x1C34, .to = 0x1C35, .orientation = .R },
720 .{ .from = 0x1C36, .to = 0x1C37, .orientation = .R },
721 .{ .from = 0x1C3B, .to = 0x1C3F, .orientation = .R },
722 .{ .from = 0x1C40, .to = 0x1C49, .orientation = .R },
723 .{ .from = 0x1C4D, .to = 0x1C4F, .orientation = .R },
724 .{ .from = 0x1C50, .to = 0x1C59, .orientation = .R },
725 .{ .from = 0x1C5A, .to = 0x1C77, .orientation = .R },
726 .{ .from = 0x1C78, .to = 0x1C7D, .orientation = .R },
727 .{ .from = 0x1C7E, .to = 0x1C7F, .orientation = .R },
728 .{ .from = 0x1C80, .to = 0x1C88, .orientation = .R },
729 .{ .from = 0x1C90, .to = 0x1CBA, .orientation = .R },
730 .{ .from = 0x1CBD, .to = 0x1CBF, .orientation = .R },
731 .{ .from = 0x1CC0, .to = 0x1CC7, .orientation = .R },
732 .{ .from = 0x1CD0, .to = 0x1CD2, .orientation = .R },
733 .{ .from = 0x1CD3, .to = 0x1CD3, .orientation = .R },
734 .{ .from = 0x1CD4, .to = 0x1CE0, .orientation = .R },
735 .{ .from = 0x1CE1, .to = 0x1CE1, .orientation = .R },
736 .{ .from = 0x1CE2, .to = 0x1CE8, .orientation = .R },
737 .{ .from = 0x1CE9, .to = 0x1CEC, .orientation = .R },
738 .{ .from = 0x1CED, .to = 0x1CED, .orientation = .R },
739 .{ .from = 0x1CEE, .to = 0x1CF3, .orientation = .R },
740 .{ .from = 0x1CF4, .to = 0x1CF4, .orientation = .R },
741 .{ .from = 0x1CF5, .to = 0x1CF6, .orientation = .R },
742 .{ .from = 0x1CF7, .to = 0x1CF7, .orientation = .R },
743 .{ .from = 0x1CF8, .to = 0x1CF9, .orientation = .R },
744 .{ .from = 0x1CFA, .to = 0x1CFA, .orientation = .R },
745 .{ .from = 0x1D00, .to = 0x1D2B, .orientation = .R },
746 .{ .from = 0x1D2C, .to = 0x1D6A, .orientation = .R },
747 .{ .from = 0x1D6B, .to = 0x1D77, .orientation = .R },
748 .{ .from = 0x1D78, .to = 0x1D78, .orientation = .R },
749 .{ .from = 0x1D79, .to = 0x1D7F, .orientation = .R },
750 .{ .from = 0x1D80, .to = 0x1D9A, .orientation = .R },
751 .{ .from = 0x1D9B, .to = 0x1DBF, .orientation = .R },
752 .{ .from = 0x1DC0, .to = 0x1DF9, .orientation = .R },
753 .{ .from = 0x1DFB, .to = 0x1DFF, .orientation = .R },
754 .{ .from = 0x1E00, .to = 0x1EFF, .orientation = .R },
755 .{ .from = 0x1F00, .to = 0x1F15, .orientation = .R },
756 .{ .from = 0x1F18, .to = 0x1F1D, .orientation = .R },
757 .{ .from = 0x1F20, .to = 0x1F45, .orientation = .R },
758 .{ .from = 0x1F48, .to = 0x1F4D, .orientation = .R },
759 .{ .from = 0x1F50, .to = 0x1F57, .orientation = .R },
760 .{ .from = 0x1F59, .to = 0x1F59, .orientation = .R },
761 .{ .from = 0x1F5B, .to = 0x1F5B, .orientation = .R },
762 .{ .from = 0x1F5D, .to = 0x1F5D, .orientation = .R },
763 .{ .from = 0x1F5F, .to = 0x1F7D, .orientation = .R },
764 .{ .from = 0x1F80, .to = 0x1FB4, .orientation = .R },
765 .{ .from = 0x1FB6, .to = 0x1FBC, .orientation = .R },
766 .{ .from = 0x1FBD, .to = 0x1FBD, .orientation = .R },
767 .{ .from = 0x1FBE, .to = 0x1FBE, .orientation = .R },
768 .{ .from = 0x1FBF, .to = 0x1FC1, .orientation = .R },
769 .{ .from = 0x1FC2, .to = 0x1FC4, .orientation = .R },
770 .{ .from = 0x1FC6, .to = 0x1FCC, .orientation = .R },
771 .{ .from = 0x1FCD, .to = 0x1FCF, .orientation = .R },
772 .{ .from = 0x1FD0, .to = 0x1FD3, .orientation = .R },
773 .{ .from = 0x1FD6, .to = 0x1FDB, .orientation = .R },
774 .{ .from = 0x1FDD, .to = 0x1FDF, .orientation = .R },
775 .{ .from = 0x1FE0, .to = 0x1FEC, .orientation = .R },
776 .{ .from = 0x1FED, .to = 0x1FEF, .orientation = .R },
777 .{ .from = 0x1FF2, .to = 0x1FF4, .orientation = .R },
778 .{ .from = 0x1FF6, .to = 0x1FFC, .orientation = .R },
779 .{ .from = 0x1FFD, .to = 0x1FFE, .orientation = .R },
780 .{ .from = 0x2000, .to = 0x200A, .orientation = .R },
781 .{ .from = 0x200B, .to = 0x200F, .orientation = .R },
782 .{ .from = 0x2010, .to = 0x2015, .orientation = .R },
783 .{ .from = 0x2016, .to = 0x2016, .orientation = .U },
784 .{ .from = 0x2017, .to = 0x2017, .orientation = .R },
785 .{ .from = 0x2018, .to = 0x2018, .orientation = .R },
786 .{ .from = 0x2019, .to = 0x2019, .orientation = .R },
787 .{ .from = 0x201A, .to = 0x201A, .orientation = .R },
788 .{ .from = 0x201B, .to = 0x201C, .orientation = .R },
789 .{ .from = 0x201D, .to = 0x201D, .orientation = .R },
790 .{ .from = 0x201E, .to = 0x201E, .orientation = .R },
791 .{ .from = 0x201F, .to = 0x201F, .orientation = .R },
792 .{ .from = 0x2020, .to = 0x2021, .orientation = .U },
793 .{ .from = 0x2022, .to = 0x2027, .orientation = .R },
794 .{ .from = 0x2028, .to = 0x2028, .orientation = .R },
795 .{ .from = 0x2029, .to = 0x2029, .orientation = .R },
796 .{ .from = 0x202A, .to = 0x202E, .orientation = .R },
797 .{ .from = 0x202F, .to = 0x202F, .orientation = .R },
798 .{ .from = 0x2030, .to = 0x2031, .orientation = .U },
799 .{ .from = 0x2032, .to = 0x2038, .orientation = .R },
800 .{ .from = 0x2039, .to = 0x2039, .orientation = .R },
801 .{ .from = 0x203A, .to = 0x203A, .orientation = .R },
802 .{ .from = 0x203B, .to = 0x203C, .orientation = .U },
803 .{ .from = 0x203D, .to = 0x203E, .orientation = .R },
804 .{ .from = 0x203F, .to = 0x2040, .orientation = .R },
805 .{ .from = 0x2041, .to = 0x2041, .orientation = .R },
806 .{ .from = 0x2042, .to = 0x2042, .orientation = .U },
807 .{ .from = 0x2043, .to = 0x2043, .orientation = .R },
808 .{ .from = 0x2044, .to = 0x2044, .orientation = .R },
809 .{ .from = 0x2045, .to = 0x2045, .orientation = .R },
810 .{ .from = 0x2046, .to = 0x2046, .orientation = .R },
811 .{ .from = 0x2047, .to = 0x2049, .orientation = .U },
812 .{ .from = 0x204A, .to = 0x2050, .orientation = .R },
813 .{ .from = 0x2051, .to = 0x2051, .orientation = .U },
814 .{ .from = 0x2052, .to = 0x2052, .orientation = .R },
815 .{ .from = 0x2053, .to = 0x2053, .orientation = .R },
816 .{ .from = 0x2054, .to = 0x2054, .orientation = .R },
817 .{ .from = 0x2055, .to = 0x205E, .orientation = .R },
818 .{ .from = 0x205F, .to = 0x205F, .orientation = .R },
819 .{ .from = 0x2060, .to = 0x2064, .orientation = .R },
820 .{ .from = 0x2065, .to = 0x2065, .orientation = .U },
821 .{ .from = 0x2066, .to = 0x206F, .orientation = .R },
822 .{ .from = 0x2070, .to = 0x2070, .orientation = .R },
823 .{ .from = 0x2071, .to = 0x2071, .orientation = .R },
824 .{ .from = 0x2074, .to = 0x2079, .orientation = .R },
825 .{ .from = 0x207A, .to = 0x207C, .orientation = .R },
826 .{ .from = 0x207D, .to = 0x207D, .orientation = .R },
827 .{ .from = 0x207E, .to = 0x207E, .orientation = .R },
828 .{ .from = 0x207F, .to = 0x207F, .orientation = .R },
829 .{ .from = 0x2080, .to = 0x2089, .orientation = .R },
830 .{ .from = 0x208A, .to = 0x208C, .orientation = .R },
831 .{ .from = 0x208D, .to = 0x208D, .orientation = .R },
832 .{ .from = 0x208E, .to = 0x208E, .orientation = .R },
833 .{ .from = 0x2090, .to = 0x209C, .orientation = .R },
834 .{ .from = 0x20A0, .to = 0x20BF, .orientation = .R },
835 .{ .from = 0x20D0, .to = 0x20DC, .orientation = .R },
836 .{ .from = 0x20DD, .to = 0x20E0, .orientation = .U },
837 .{ .from = 0x20E1, .to = 0x20E1, .orientation = .R },
838 .{ .from = 0x20E2, .to = 0x20E4, .orientation = .U },
839 .{ .from = 0x20E5, .to = 0x20F0, .orientation = .R },
840 .{ .from = 0x2100, .to = 0x2101, .orientation = .U },
841 .{ .from = 0x2102, .to = 0x2102, .orientation = .R },
842 .{ .from = 0x2103, .to = 0x2106, .orientation = .U },
843 .{ .from = 0x2107, .to = 0x2107, .orientation = .U },
844 .{ .from = 0x2108, .to = 0x2109, .orientation = .U },
845 .{ .from = 0x210A, .to = 0x210E, .orientation = .R },
846 .{ .from = 0x210F, .to = 0x210F, .orientation = .U },
847 .{ .from = 0x2110, .to = 0x2112, .orientation = .R },
848 .{ .from = 0x2113, .to = 0x2113, .orientation = .U },
849 .{ .from = 0x2114, .to = 0x2114, .orientation = .U },
850 .{ .from = 0x2115, .to = 0x2115, .orientation = .R },
851 .{ .from = 0x2116, .to = 0x2117, .orientation = .U },
852 .{ .from = 0x2118, .to = 0x2118, .orientation = .R },
853 .{ .from = 0x2119, .to = 0x211D, .orientation = .R },
854 .{ .from = 0x211E, .to = 0x2123, .orientation = .U },
855 .{ .from = 0x2124, .to = 0x2124, .orientation = .R },
856 .{ .from = 0x2125, .to = 0x2125, .orientation = .U },
857 .{ .from = 0x2126, .to = 0x2126, .orientation = .R },
858 .{ .from = 0x2127, .to = 0x2127, .orientation = .U },
859 .{ .from = 0x2128, .to = 0x2128, .orientation = .R },
860 .{ .from = 0x2129, .to = 0x2129, .orientation = .U },
861 .{ .from = 0x212A, .to = 0x212D, .orientation = .R },
862 .{ .from = 0x212E, .to = 0x212E, .orientation = .U },
863 .{ .from = 0x212F, .to = 0x2134, .orientation = .R },
864 .{ .from = 0x2135, .to = 0x2138, .orientation = .U },
865 .{ .from = 0x2139, .to = 0x2139, .orientation = .U },
866 .{ .from = 0x213A, .to = 0x213B, .orientation = .U },
867 .{ .from = 0x213C, .to = 0x213F, .orientation = .U },
868 .{ .from = 0x2140, .to = 0x2144, .orientation = .R },
869 .{ .from = 0x2145, .to = 0x2149, .orientation = .U },
870 .{ .from = 0x214A, .to = 0x214A, .orientation = .U },
871 .{ .from = 0x214B, .to = 0x214B, .orientation = .R },
872 .{ .from = 0x214C, .to = 0x214D, .orientation = .U },
873 .{ .from = 0x214E, .to = 0x214E, .orientation = .R },
874 .{ .from = 0x214F, .to = 0x214F, .orientation = .U },
875 .{ .from = 0x2150, .to = 0x215F, .orientation = .U },
876 .{ .from = 0x2160, .to = 0x2182, .orientation = .U },
877 .{ .from = 0x2183, .to = 0x2184, .orientation = .U },
878 .{ .from = 0x2185, .to = 0x2188, .orientation = .U },
879 .{ .from = 0x2189, .to = 0x2189, .orientation = .U },
880 .{ .from = 0x218A, .to = 0x218B, .orientation = .R },
881 .{ .from = 0x218C, .to = 0x218F, .orientation = .U },
882 .{ .from = 0x2190, .to = 0x2194, .orientation = .R },
883 .{ .from = 0x2195, .to = 0x2199, .orientation = .R },
884 .{ .from = 0x219A, .to = 0x219B, .orientation = .R },
885 .{ .from = 0x219C, .to = 0x219F, .orientation = .R },
886 .{ .from = 0x21A0, .to = 0x21A0, .orientation = .R },
887 .{ .from = 0x21A1, .to = 0x21A2, .orientation = .R },
888 .{ .from = 0x21A3, .to = 0x21A3, .orientation = .R },
889 .{ .from = 0x21A4, .to = 0x21A5, .orientation = .R },
890 .{ .from = 0x21A6, .to = 0x21A6, .orientation = .R },
891 .{ .from = 0x21A7, .to = 0x21AD, .orientation = .R },
892 .{ .from = 0x21AE, .to = 0x21AE, .orientation = .R },
893 .{ .from = 0x21AF, .to = 0x21CD, .orientation = .R },
894 .{ .from = 0x21CE, .to = 0x21CF, .orientation = .R },
895 .{ .from = 0x21D0, .to = 0x21D1, .orientation = .R },
896 .{ .from = 0x21D2, .to = 0x21D2, .orientation = .R },
897 .{ .from = 0x21D3, .to = 0x21D3, .orientation = .R },
898 .{ .from = 0x21D4, .to = 0x21D4, .orientation = .R },
899 .{ .from = 0x21D5, .to = 0x21F3, .orientation = .R },
900 .{ .from = 0x21F4, .to = 0x21FF, .orientation = .R },
901 .{ .from = 0x2200, .to = 0x221D, .orientation = .R },
902 .{ .from = 0x221E, .to = 0x221E, .orientation = .U },
903 .{ .from = 0x221F, .to = 0x2233, .orientation = .R },
904 .{ .from = 0x2234, .to = 0x2235, .orientation = .U },
905 .{ .from = 0x2236, .to = 0x22FF, .orientation = .R },
906 .{ .from = 0x2300, .to = 0x2307, .orientation = .U },
907 .{ .from = 0x2308, .to = 0x2308, .orientation = .R },
908 .{ .from = 0x2309, .to = 0x2309, .orientation = .R },
909 .{ .from = 0x230A, .to = 0x230A, .orientation = .R },
910 .{ .from = 0x230B, .to = 0x230B, .orientation = .R },
911 .{ .from = 0x230C, .to = 0x231F, .orientation = .U },
912 .{ .from = 0x2320, .to = 0x2321, .orientation = .R },
913 .{ .from = 0x2322, .to = 0x2323, .orientation = .R },
914 .{ .from = 0x2324, .to = 0x2328, .orientation = .U },
915 .{ .from = 0x2329, .to = 0x2329, .orientation = .Tr },
916 .{ .from = 0x232A, .to = 0x232A, .orientation = .Tr },
917 .{ .from = 0x232B, .to = 0x232B, .orientation = .U },
918 .{ .from = 0x232C, .to = 0x237B, .orientation = .R },
919 .{ .from = 0x237C, .to = 0x237C, .orientation = .R },
920 .{ .from = 0x237D, .to = 0x239A, .orientation = .U },
921 .{ .from = 0x239B, .to = 0x23B3, .orientation = .R },
922 .{ .from = 0x23B4, .to = 0x23BD, .orientation = .R },
923 .{ .from = 0x23BE, .to = 0x23CD, .orientation = .U },
924 .{ .from = 0x23CE, .to = 0x23CE, .orientation = .R },
925 .{ .from = 0x23CF, .to = 0x23CF, .orientation = .U },
926 .{ .from = 0x23D0, .to = 0x23D0, .orientation = .R },
927 .{ .from = 0x23D1, .to = 0x23DB, .orientation = .U },
928 .{ .from = 0x23DC, .to = 0x23E1, .orientation = .R },
929 .{ .from = 0x23E2, .to = 0x23FF, .orientation = .U },
930 .{ .from = 0x2400, .to = 0x2422, .orientation = .U },
931 .{ .from = 0x2423, .to = 0x2423, .orientation = .R },
932 .{ .from = 0x2424, .to = 0x2426, .orientation = .U },
933 .{ .from = 0x2427, .to = 0x243F, .orientation = .U },
934 .{ .from = 0x2440, .to = 0x244A, .orientation = .U },
935 .{ .from = 0x244B, .to = 0x245F, .orientation = .U },
936 .{ .from = 0x2460, .to = 0x249B, .orientation = .U },
937 .{ .from = 0x249C, .to = 0x24E9, .orientation = .U },
938 .{ .from = 0x24EA, .to = 0x24FF, .orientation = .U },
939 .{ .from = 0x2500, .to = 0x257F, .orientation = .R },
940 .{ .from = 0x2580, .to = 0x259F, .orientation = .R },
941 .{ .from = 0x25A0, .to = 0x25B6, .orientation = .U },
942 .{ .from = 0x25B7, .to = 0x25B7, .orientation = .U },
943 .{ .from = 0x25B8, .to = 0x25C0, .orientation = .U },
944 .{ .from = 0x25C1, .to = 0x25C1, .orientation = .U },
945 .{ .from = 0x25C2, .to = 0x25F7, .orientation = .U },
946 .{ .from = 0x25F8, .to = 0x25FF, .orientation = .U },
947 .{ .from = 0x2600, .to = 0x2619, .orientation = .U },
948 .{ .from = 0x261A, .to = 0x261F, .orientation = .R },
949 .{ .from = 0x2620, .to = 0x266E, .orientation = .U },
950 .{ .from = 0x266F, .to = 0x266F, .orientation = .U },
951 .{ .from = 0x2670, .to = 0x26FF, .orientation = .U },
952 .{ .from = 0x2700, .to = 0x2767, .orientation = .U },
953 .{ .from = 0x2768, .to = 0x2768, .orientation = .R },
954 .{ .from = 0x2769, .to = 0x2769, .orientation = .R },
955 .{ .from = 0x276A, .to = 0x276A, .orientation = .R },
956 .{ .from = 0x276B, .to = 0x276B, .orientation = .R },
957 .{ .from = 0x276C, .to = 0x276C, .orientation = .R },
958 .{ .from = 0x276D, .to = 0x276D, .orientation = .R },
959 .{ .from = 0x276E, .to = 0x276E, .orientation = .R },
960 .{ .from = 0x276F, .to = 0x276F, .orientation = .R },
961 .{ .from = 0x2770, .to = 0x2770, .orientation = .R },
962 .{ .from = 0x2771, .to = 0x2771, .orientation = .R },
963 .{ .from = 0x2772, .to = 0x2772, .orientation = .R },
964 .{ .from = 0x2773, .to = 0x2773, .orientation = .R },
965 .{ .from = 0x2774, .to = 0x2774, .orientation = .R },
966 .{ .from = 0x2775, .to = 0x2775, .orientation = .R },
967 .{ .from = 0x2776, .to = 0x2793, .orientation = .U },
968 .{ .from = 0x2794, .to = 0x27BF, .orientation = .R },
969 .{ .from = 0x27C0, .to = 0x27C4, .orientation = .R },
970 .{ .from = 0x27C5, .to = 0x27C5, .orientation = .R },
971 .{ .from = 0x27C6, .to = 0x27C6, .orientation = .R },
972 .{ .from = 0x27C7, .to = 0x27E5, .orientation = .R },
973 .{ .from = 0x27E6, .to = 0x27E6, .orientation = .R },
974 .{ .from = 0x27E7, .to = 0x27E7, .orientation = .R },
975 .{ .from = 0x27E8, .to = 0x27E8, .orientation = .R },
976 .{ .from = 0x27E9, .to = 0x27E9, .orientation = .R },
977 .{ .from = 0x27EA, .to = 0x27EA, .orientation = .R },
978 .{ .from = 0x27EB, .to = 0x27EB, .orientation = .R },
979 .{ .from = 0x27EC, .to = 0x27EC, .orientation = .R },
980 .{ .from = 0x27ED, .to = 0x27ED, .orientation = .R },
981 .{ .from = 0x27EE, .to = 0x27EE, .orientation = .R },
982 .{ .from = 0x27EF, .to = 0x27EF, .orientation = .R },
983 .{ .from = 0x27F0, .to = 0x27FF, .orientation = .R },
984 .{ .from = 0x2800, .to = 0x28FF, .orientation = .R },
985 .{ .from = 0x2900, .to = 0x297F, .orientation = .R },
986 .{ .from = 0x2980, .to = 0x2982, .orientation = .R },
987 .{ .from = 0x2983, .to = 0x2983, .orientation = .R },
988 .{ .from = 0x2984, .to = 0x2984, .orientation = .R },
989 .{ .from = 0x2985, .to = 0x2985, .orientation = .R },
990 .{ .from = 0x2986, .to = 0x2986, .orientation = .R },
991 .{ .from = 0x2987, .to = 0x2987, .orientation = .R },
992 .{ .from = 0x2988, .to = 0x2988, .orientation = .R },
993 .{ .from = 0x2989, .to = 0x2989, .orientation = .R },
994 .{ .from = 0x298A, .to = 0x298A, .orientation = .R },
995 .{ .from = 0x298B, .to = 0x298B, .orientation = .R },
996 .{ .from = 0x298C, .to = 0x298C, .orientation = .R },
997 .{ .from = 0x298D, .to = 0x298D, .orientation = .R },
998 .{ .from = 0x298E, .to = 0x298E, .orientation = .R },
999 .{ .from = 0x298F, .to = 0x298F, .orientation = .R },
1000 .{ .from = 0x2990, .to = 0x2990, .orientation = .R },
1001 .{ .from = 0x2991, .to = 0x2991, .orientation = .R },
1002 .{ .from = 0x2992, .to = 0x2992, .orientation = .R },
1003 .{ .from = 0x2993, .to = 0x2993, .orientation = .R },
1004 .{ .from = 0x2994, .to = 0x2994, .orientation = .R },
1005 .{ .from = 0x2995, .to = 0x2995, .orientation = .R },
1006 .{ .from = 0x2996, .to = 0x2996, .orientation = .R },
1007 .{ .from = 0x2997, .to = 0x2997, .orientation = .R },
1008 .{ .from = 0x2998, .to = 0x2998, .orientation = .R },
1009 .{ .from = 0x2999, .to = 0x29D7, .orientation = .R },
1010 .{ .from = 0x29D8, .to = 0x29D8, .orientation = .R },
1011 .{ .from = 0x29D9, .to = 0x29D9, .orientation = .R },
1012 .{ .from = 0x29DA, .to = 0x29DA, .orientation = .R },
1013 .{ .from = 0x29DB, .to = 0x29DB, .orientation = .R },
1014 .{ .from = 0x29DC, .to = 0x29FB, .orientation = .R },
1015 .{ .from = 0x29FC, .to = 0x29FC, .orientation = .R },
1016 .{ .from = 0x29FD, .to = 0x29FD, .orientation = .R },
1017 .{ .from = 0x29FE, .to = 0x29FF, .orientation = .R },
1018 .{ .from = 0x2A00, .to = 0x2AFF, .orientation = .R },
1019 .{ .from = 0x2B00, .to = 0x2B11, .orientation = .R },
1020 .{ .from = 0x2B12, .to = 0x2B2F, .orientation = .U },
1021 .{ .from = 0x2B30, .to = 0x2B44, .orientation = .R },
1022 .{ .from = 0x2B45, .to = 0x2B46, .orientation = .R },
1023 .{ .from = 0x2B47, .to = 0x2B4C, .orientation = .R },
1024 .{ .from = 0x2B4D, .to = 0x2B4F, .orientation = .R },
1025 .{ .from = 0x2B50, .to = 0x2B59, .orientation = .U },
1026 .{ .from = 0x2B5A, .to = 0x2B73, .orientation = .R },
1027 .{ .from = 0x2B76, .to = 0x2B95, .orientation = .R },
1028 .{ .from = 0x2B97, .to = 0x2B97, .orientation = .U },
1029 .{ .from = 0x2B98, .to = 0x2BB7, .orientation = .R },
1030 .{ .from = 0x2BB8, .to = 0x2BD1, .orientation = .U },
1031 .{ .from = 0x2BD2, .to = 0x2BD2, .orientation = .R },
1032 .{ .from = 0x2BD3, .to = 0x2BEB, .orientation = .U },
1033 .{ .from = 0x2BEC, .to = 0x2BEF, .orientation = .R },
1034 .{ .from = 0x2BF0, .to = 0x2BFF, .orientation = .U },
1035 .{ .from = 0x2C00, .to = 0x2C2E, .orientation = .R },
1036 .{ .from = 0x2C30, .to = 0x2C5E, .orientation = .R },
1037 .{ .from = 0x2C60, .to = 0x2C7B, .orientation = .R },
1038 .{ .from = 0x2C7C, .to = 0x2C7D, .orientation = .R },
1039 .{ .from = 0x2C7E, .to = 0x2C7F, .orientation = .R },
1040 .{ .from = 0x2C80, .to = 0x2CE4, .orientation = .R },
1041 .{ .from = 0x2CE5, .to = 0x2CEA, .orientation = .R },
1042 .{ .from = 0x2CEB, .to = 0x2CEE, .orientation = .R },
1043 .{ .from = 0x2CEF, .to = 0x2CF1, .orientation = .R },
1044 .{ .from = 0x2CF2, .to = 0x2CF3, .orientation = .R },
1045 .{ .from = 0x2CF9, .to = 0x2CFC, .orientation = .R },
1046 .{ .from = 0x2CFD, .to = 0x2CFD, .orientation = .R },
1047 .{ .from = 0x2CFE, .to = 0x2CFF, .orientation = .R },
1048 .{ .from = 0x2D00, .to = 0x2D25, .orientation = .R },
1049 .{ .from = 0x2D27, .to = 0x2D27, .orientation = .R },
1050 .{ .from = 0x2D2D, .to = 0x2D2D, .orientation = .R },
1051 .{ .from = 0x2D30, .to = 0x2D67, .orientation = .R },
1052 .{ .from = 0x2D6F, .to = 0x2D6F, .orientation = .R },
1053 .{ .from = 0x2D70, .to = 0x2D70, .orientation = .R },
1054 .{ .from = 0x2D7F, .to = 0x2D7F, .orientation = .R },
1055 .{ .from = 0x2D80, .to = 0x2D96, .orientation = .R },
1056 .{ .from = 0x2DA0, .to = 0x2DA6, .orientation = .R },
1057 .{ .from = 0x2DA8, .to = 0x2DAE, .orientation = .R },
1058 .{ .from = 0x2DB0, .to = 0x2DB6, .orientation = .R },
1059 .{ .from = 0x2DB8, .to = 0x2DBE, .orientation = .R },
1060 .{ .from = 0x2DC0, .to = 0x2DC6, .orientation = .R },
1061 .{ .from = 0x2DC8, .to = 0x2DCE, .orientation = .R },
1062 .{ .from = 0x2DD0, .to = 0x2DD6, .orientation = .R },
1063 .{ .from = 0x2DD8, .to = 0x2DDE, .orientation = .R },
1064 .{ .from = 0x2DE0, .to = 0x2DFF, .orientation = .R },
1065 .{ .from = 0x2E00, .to = 0x2E01, .orientation = .R },
1066 .{ .from = 0x2E02, .to = 0x2E02, .orientation = .R },
1067 .{ .from = 0x2E03, .to = 0x2E03, .orientation = .R },
1068 .{ .from = 0x2E04, .to = 0x2E04, .orientation = .R },
1069 .{ .from = 0x2E05, .to = 0x2E05, .orientation = .R },
1070 .{ .from = 0x2E06, .to = 0x2E08, .orientation = .R },
1071 .{ .from = 0x2E09, .to = 0x2E09, .orientation = .R },
1072 .{ .from = 0x2E0A, .to = 0x2E0A, .orientation = .R },
1073 .{ .from = 0x2E0B, .to = 0x2E0B, .orientation = .R },
1074 .{ .from = 0x2E0C, .to = 0x2E0C, .orientation = .R },
1075 .{ .from = 0x2E0D, .to = 0x2E0D, .orientation = .R },
1076 .{ .from = 0x2E0E, .to = 0x2E16, .orientation = .R },
1077 .{ .from = 0x2E17, .to = 0x2E17, .orientation = .R },
1078 .{ .from = 0x2E18, .to = 0x2E19, .orientation = .R },
1079 .{ .from = 0x2E1A, .to = 0x2E1A, .orientation = .R },
1080 .{ .from = 0x2E1B, .to = 0x2E1B, .orientation = .R },
1081 .{ .from = 0x2E1C, .to = 0x2E1C, .orientation = .R },
1082 .{ .from = 0x2E1D, .to = 0x2E1D, .orientation = .R },
1083 .{ .from = 0x2E1E, .to = 0x2E1F, .orientation = .R },
1084 .{ .from = 0x2E20, .to = 0x2E20, .orientation = .R },
1085 .{ .from = 0x2E21, .to = 0x2E21, .orientation = .R },
1086 .{ .from = 0x2E22, .to = 0x2E22, .orientation = .R },
1087 .{ .from = 0x2E23, .to = 0x2E23, .orientation = .R },
1088 .{ .from = 0x2E24, .to = 0x2E24, .orientation = .R },
1089 .{ .from = 0x2E25, .to = 0x2E25, .orientation = .R },
1090 .{ .from = 0x2E26, .to = 0x2E26, .orientation = .R },
1091 .{ .from = 0x2E27, .to = 0x2E27, .orientation = .R },
1092 .{ .from = 0x2E28, .to = 0x2E28, .orientation = .R },
1093 .{ .from = 0x2E29, .to = 0x2E29, .orientation = .R },
1094 .{ .from = 0x2E2A, .to = 0x2E2E, .orientation = .R },
1095 .{ .from = 0x2E2F, .to = 0x2E2F, .orientation = .R },
1096 .{ .from = 0x2E30, .to = 0x2E39, .orientation = .R },
1097 .{ .from = 0x2E3A, .to = 0x2E3B, .orientation = .R },
1098 .{ .from = 0x2E3C, .to = 0x2E3F, .orientation = .R },
1099 .{ .from = 0x2E40, .to = 0x2E40, .orientation = .R },
1100 .{ .from = 0x2E41, .to = 0x2E41, .orientation = .R },
1101 .{ .from = 0x2E42, .to = 0x2E42, .orientation = .R },
1102 .{ .from = 0x2E43, .to = 0x2E4F, .orientation = .R },
1103 .{ .from = 0x2E50, .to = 0x2E51, .orientation = .U },
1104 .{ .from = 0x2E52, .to = 0x2E52, .orientation = .R },
1105 .{ .from = 0x2E80, .to = 0x2E99, .orientation = .U },
1106 .{ .from = 0x2E9A, .to = 0x2E9A, .orientation = .U },
1107 .{ .from = 0x2E9B, .to = 0x2EF3, .orientation = .U },
1108 .{ .from = 0x2EF4, .to = 0x2EFF, .orientation = .U },
1109 .{ .from = 0x2F00, .to = 0x2FD5, .orientation = .U },
1110 .{ .from = 0x2FD6, .to = 0x2FDF, .orientation = .U },
1111 .{ .from = 0x2FE0, .to = 0x2FEF, .orientation = .U },
1112 .{ .from = 0x2FF0, .to = 0x2FFB, .orientation = .U },
1113 .{ .from = 0x2FFC, .to = 0x2FFF, .orientation = .U },
1114 .{ .from = 0x3000, .to = 0x3000, .orientation = .U },
1115 .{ .from = 0x3001, .to = 0x3002, .orientation = .Tu },
1116 .{ .from = 0x3003, .to = 0x3003, .orientation = .U },
1117 .{ .from = 0x3004, .to = 0x3004, .orientation = .U },
1118 .{ .from = 0x3005, .to = 0x3005, .orientation = .U },
1119 .{ .from = 0x3006, .to = 0x3006, .orientation = .U },
1120 .{ .from = 0x3007, .to = 0x3007, .orientation = .U },
1121 .{ .from = 0x3008, .to = 0x3008, .orientation = .Tr },
1122 .{ .from = 0x3009, .to = 0x3009, .orientation = .Tr },
1123 .{ .from = 0x300A, .to = 0x300A, .orientation = .Tr },
1124 .{ .from = 0x300B, .to = 0x300B, .orientation = .Tr },
1125 .{ .from = 0x300C, .to = 0x300C, .orientation = .Tr },
1126 .{ .from = 0x300D, .to = 0x300D, .orientation = .Tr },
1127 .{ .from = 0x300E, .to = 0x300E, .orientation = .Tr },
1128 .{ .from = 0x300F, .to = 0x300F, .orientation = .Tr },
1129 .{ .from = 0x3010, .to = 0x3010, .orientation = .Tr },
1130 .{ .from = 0x3011, .to = 0x3011, .orientation = .Tr },
1131 .{ .from = 0x3012, .to = 0x3013, .orientation = .U },
1132 .{ .from = 0x3014, .to = 0x3014, .orientation = .Tr },
1133 .{ .from = 0x3015, .to = 0x3015, .orientation = .Tr },
1134 .{ .from = 0x3016, .to = 0x3016, .orientation = .Tr },
1135 .{ .from = 0x3017, .to = 0x3017, .orientation = .Tr },
1136 .{ .from = 0x3018, .to = 0x3018, .orientation = .Tr },
1137 .{ .from = 0x3019, .to = 0x3019, .orientation = .Tr },
1138 .{ .from = 0x301A, .to = 0x301A, .orientation = .Tr },
1139 .{ .from = 0x301B, .to = 0x301B, .orientation = .Tr },
1140 .{ .from = 0x301C, .to = 0x301C, .orientation = .Tr },
1141 .{ .from = 0x301D, .to = 0x301D, .orientation = .Tr },
1142 .{ .from = 0x301E, .to = 0x301F, .orientation = .Tr },
1143 .{ .from = 0x3020, .to = 0x3020, .orientation = .U },
1144 .{ .from = 0x3021, .to = 0x3029, .orientation = .U },
1145 .{ .from = 0x302A, .to = 0x302D, .orientation = .U },
1146 .{ .from = 0x302E, .to = 0x302F, .orientation = .U },
1147 .{ .from = 0x3030, .to = 0x3030, .orientation = .Tr },
1148 .{ .from = 0x3031, .to = 0x3035, .orientation = .U },
1149 .{ .from = 0x3036, .to = 0x3037, .orientation = .U },
1150 .{ .from = 0x3038, .to = 0x303A, .orientation = .U },
1151 .{ .from = 0x303B, .to = 0x303B, .orientation = .U },
1152 .{ .from = 0x303C, .to = 0x303C, .orientation = .U },
1153 .{ .from = 0x303D, .to = 0x303D, .orientation = .U },
1154 .{ .from = 0x303E, .to = 0x303F, .orientation = .U },
1155 .{ .from = 0x3040, .to = 0x3040, .orientation = .U },
1156 .{ .from = 0x3041, .to = 0x3041, .orientation = .Tu },
1157 .{ .from = 0x3042, .to = 0x3042, .orientation = .U },
1158 .{ .from = 0x3043, .to = 0x3043, .orientation = .Tu },
1159 .{ .from = 0x3044, .to = 0x3044, .orientation = .U },
1160 .{ .from = 0x3045, .to = 0x3045, .orientation = .Tu },
1161 .{ .from = 0x3046, .to = 0x3046, .orientation = .U },
1162 .{ .from = 0x3047, .to = 0x3047, .orientation = .Tu },
1163 .{ .from = 0x3048, .to = 0x3048, .orientation = .U },
1164 .{ .from = 0x3049, .to = 0x3049, .orientation = .Tu },
1165 .{ .from = 0x304A, .to = 0x3062, .orientation = .U },
1166 .{ .from = 0x3063, .to = 0x3063, .orientation = .Tu },
1167 .{ .from = 0x3064, .to = 0x3082, .orientation = .U },
1168 .{ .from = 0x3083, .to = 0x3083, .orientation = .Tu },
1169 .{ .from = 0x3084, .to = 0x3084, .orientation = .U },
1170 .{ .from = 0x3085, .to = 0x3085, .orientation = .Tu },
1171 .{ .from = 0x3086, .to = 0x3086, .orientation = .U },
1172 .{ .from = 0x3087, .to = 0x3087, .orientation = .Tu },
1173 .{ .from = 0x3088, .to = 0x308D, .orientation = .U },
1174 .{ .from = 0x308E, .to = 0x308E, .orientation = .Tu },
1175 .{ .from = 0x308F, .to = 0x3094, .orientation = .U },
1176 .{ .from = 0x3095, .to = 0x3096, .orientation = .Tu },
1177 .{ .from = 0x3097, .to = 0x3098, .orientation = .U },
1178 .{ .from = 0x3099, .to = 0x309A, .orientation = .U },
1179 .{ .from = 0x309B, .to = 0x309C, .orientation = .Tu },
1180 .{ .from = 0x309D, .to = 0x309E, .orientation = .U },
1181 .{ .from = 0x309F, .to = 0x309F, .orientation = .U },
1182 .{ .from = 0x30A0, .to = 0x30A0, .orientation = .Tr },
1183 .{ .from = 0x30A1, .to = 0x30A1, .orientation = .Tu },
1184 .{ .from = 0x30A2, .to = 0x30A2, .orientation = .U },
1185 .{ .from = 0x30A3, .to = 0x30A3, .orientation = .Tu },
1186 .{ .from = 0x30A4, .to = 0x30A4, .orientation = .U },
1187 .{ .from = 0x30A5, .to = 0x30A5, .orientation = .Tu },
1188 .{ .from = 0x30A6, .to = 0x30A6, .orientation = .U },
1189 .{ .from = 0x30A7, .to = 0x30A7, .orientation = .Tu },
1190 .{ .from = 0x30A8, .to = 0x30A8, .orientation = .U },
1191 .{ .from = 0x30A9, .to = 0x30A9, .orientation = .Tu },
1192 .{ .from = 0x30AA, .to = 0x30C2, .orientation = .U },
1193 .{ .from = 0x30C3, .to = 0x30C3, .orientation = .Tu },
1194 .{ .from = 0x30C4, .to = 0x30E2, .orientation = .U },
1195 .{ .from = 0x30E3, .to = 0x30E3, .orientation = .Tu },
1196 .{ .from = 0x30E4, .to = 0x30E4, .orientation = .U },
1197 .{ .from = 0x30E5, .to = 0x30E5, .orientation = .Tu },
1198 .{ .from = 0x30E6, .to = 0x30E6, .orientation = .U },
1199 .{ .from = 0x30E7, .to = 0x30E7, .orientation = .Tu },
1200 .{ .from = 0x30E8, .to = 0x30ED, .orientation = .U },
1201 .{ .from = 0x30EE, .to = 0x30EE, .orientation = .Tu },
1202 .{ .from = 0x30EF, .to = 0x30F4, .orientation = .U },
1203 .{ .from = 0x30F5, .to = 0x30F6, .orientation = .Tu },
1204 .{ .from = 0x30F7, .to = 0x30FA, .orientation = .U },
1205 .{ .from = 0x30FB, .to = 0x30FB, .orientation = .U },
1206 .{ .from = 0x30FC, .to = 0x30FC, .orientation = .Tr },
1207 .{ .from = 0x30FD, .to = 0x30FE, .orientation = .U },
1208 .{ .from = 0x30FF, .to = 0x30FF, .orientation = .U },
1209 .{ .from = 0x3100, .to = 0x3104, .orientation = .U },
1210 .{ .from = 0x3105, .to = 0x3126, .orientation = .U },
1211 .{ .from = 0x3127, .to = 0x3127, .orientation = .Tu },
1212 .{ .from = 0x3128, .to = 0x312F, .orientation = .U },
1213 .{ .from = 0x3130, .to = 0x3130, .orientation = .U },
1214 .{ .from = 0x3131, .to = 0x318E, .orientation = .U },
1215 .{ .from = 0x318F, .to = 0x318F, .orientation = .U },
1216 .{ .from = 0x3190, .to = 0x3191, .orientation = .U },
1217 .{ .from = 0x3192, .to = 0x3195, .orientation = .U },
1218 .{ .from = 0x3196, .to = 0x319F, .orientation = .U },
1219 .{ .from = 0x31A0, .to = 0x31BF, .orientation = .U },
1220 .{ .from = 0x31C0, .to = 0x31E3, .orientation = .U },
1221 .{ .from = 0x31E4, .to = 0x31EF, .orientation = .U },
1222 .{ .from = 0x31F0, .to = 0x31FF, .orientation = .Tu },
1223 .{ .from = 0x3200, .to = 0x321E, .orientation = .U },
1224 .{ .from = 0x321F, .to = 0x321F, .orientation = .U },
1225 .{ .from = 0x3220, .to = 0x3229, .orientation = .U },
1226 .{ .from = 0x322A, .to = 0x3247, .orientation = .U },
1227 .{ .from = 0x3248, .to = 0x324F, .orientation = .U },
1228 .{ .from = 0x3250, .to = 0x3250, .orientation = .U },
1229 .{ .from = 0x3251, .to = 0x325F, .orientation = .U },
1230 .{ .from = 0x3260, .to = 0x327F, .orientation = .U },
1231 .{ .from = 0x3280, .to = 0x3289, .orientation = .U },
1232 .{ .from = 0x328A, .to = 0x32B0, .orientation = .U },
1233 .{ .from = 0x32B1, .to = 0x32BF, .orientation = .U },
1234 .{ .from = 0x32C0, .to = 0x32FE, .orientation = .U },
1235 .{ .from = 0x32FF, .to = 0x32FF, .orientation = .Tu },
1236 .{ .from = 0x3300, .to = 0x3357, .orientation = .Tu },
1237 .{ .from = 0x3358, .to = 0x337A, .orientation = .U },
1238 .{ .from = 0x337B, .to = 0x337F, .orientation = .Tu },
1239 .{ .from = 0x3380, .to = 0x33FF, .orientation = .U },
1240 .{ .from = 0x3400, .to = 0x4DBF, .orientation = .U },
1241 .{ .from = 0x4DC0, .to = 0x4DFF, .orientation = .U },
1242 .{ .from = 0x4E00, .to = 0x9FFC, .orientation = .U },
1243 .{ .from = 0x9FFD, .to = 0x9FFF, .orientation = .U },
1244 .{ .from = 0xA000, .to = 0xA014, .orientation = .U },
1245 .{ .from = 0xA015, .to = 0xA015, .orientation = .U },
1246 .{ .from = 0xA016, .to = 0xA48C, .orientation = .U },
1247 .{ .from = 0xA48D, .to = 0xA48F, .orientation = .U },
1248 .{ .from = 0xA490, .to = 0xA4C6, .orientation = .U },
1249 .{ .from = 0xA4C7, .to = 0xA4CF, .orientation = .U },
1250 .{ .from = 0xA4D0, .to = 0xA4F7, .orientation = .R },
1251 .{ .from = 0xA4F8, .to = 0xA4FD, .orientation = .R },
1252 .{ .from = 0xA4FE, .to = 0xA4FF, .orientation = .R },
1253 .{ .from = 0xA500, .to = 0xA60B, .orientation = .R },
1254 .{ .from = 0xA60C, .to = 0xA60C, .orientation = .R },
1255 .{ .from = 0xA60D, .to = 0xA60F, .orientation = .R },
1256 .{ .from = 0xA610, .to = 0xA61F, .orientation = .R },
1257 .{ .from = 0xA620, .to = 0xA629, .orientation = .R },
1258 .{ .from = 0xA62A, .to = 0xA62B, .orientation = .R },
1259 .{ .from = 0xA640, .to = 0xA66D, .orientation = .R },
1260 .{ .from = 0xA66E, .to = 0xA66E, .orientation = .R },
1261 .{ .from = 0xA66F, .to = 0xA66F, .orientation = .R },
1262 .{ .from = 0xA670, .to = 0xA672, .orientation = .R },
1263 .{ .from = 0xA673, .to = 0xA673, .orientation = .R },
1264 .{ .from = 0xA674, .to = 0xA67D, .orientation = .R },
1265 .{ .from = 0xA67E, .to = 0xA67E, .orientation = .R },
1266 .{ .from = 0xA67F, .to = 0xA67F, .orientation = .R },
1267 .{ .from = 0xA680, .to = 0xA69B, .orientation = .R },
1268 .{ .from = 0xA69C, .to = 0xA69D, .orientation = .R },
1269 .{ .from = 0xA69E, .to = 0xA69F, .orientation = .R },
1270 .{ .from = 0xA6A0, .to = 0xA6E5, .orientation = .R },
1271 .{ .from = 0xA6E6, .to = 0xA6EF, .orientation = .R },
1272 .{ .from = 0xA6F0, .to = 0xA6F1, .orientation = .R },
1273 .{ .from = 0xA6F2, .to = 0xA6F7, .orientation = .R },
1274 .{ .from = 0xA700, .to = 0xA716, .orientation = .R },
1275 .{ .from = 0xA717, .to = 0xA71F, .orientation = .R },
1276 .{ .from = 0xA720, .to = 0xA721, .orientation = .R },
1277 .{ .from = 0xA722, .to = 0xA76F, .orientation = .R },
1278 .{ .from = 0xA770, .to = 0xA770, .orientation = .R },
1279 .{ .from = 0xA771, .to = 0xA787, .orientation = .R },
1280 .{ .from = 0xA788, .to = 0xA788, .orientation = .R },
1281 .{ .from = 0xA789, .to = 0xA78A, .orientation = .R },
1282 .{ .from = 0xA78B, .to = 0xA78E, .orientation = .R },
1283 .{ .from = 0xA78F, .to = 0xA78F, .orientation = .R },
1284 .{ .from = 0xA790, .to = 0xA7BF, .orientation = .R },
1285 .{ .from = 0xA7C2, .to = 0xA7CA, .orientation = .R },
1286 .{ .from = 0xA7F5, .to = 0xA7F6, .orientation = .R },
1287 .{ .from = 0xA7F7, .to = 0xA7F7, .orientation = .R },
1288 .{ .from = 0xA7F8, .to = 0xA7F9, .orientation = .R },
1289 .{ .from = 0xA7FA, .to = 0xA7FA, .orientation = .R },
1290 .{ .from = 0xA7FB, .to = 0xA7FF, .orientation = .R },
1291 .{ .from = 0xA800, .to = 0xA801, .orientation = .R },
1292 .{ .from = 0xA802, .to = 0xA802, .orientation = .R },
1293 .{ .from = 0xA803, .to = 0xA805, .orientation = .R },
1294 .{ .from = 0xA806, .to = 0xA806, .orientation = .R },
1295 .{ .from = 0xA807, .to = 0xA80A, .orientation = .R },
1296 .{ .from = 0xA80B, .to = 0xA80B, .orientation = .R },
1297 .{ .from = 0xA80C, .to = 0xA822, .orientation = .R },
1298 .{ .from = 0xA823, .to = 0xA824, .orientation = .R },
1299 .{ .from = 0xA825, .to = 0xA826, .orientation = .R },
1300 .{ .from = 0xA827, .to = 0xA827, .orientation = .R },
1301 .{ .from = 0xA828, .to = 0xA82B, .orientation = .R },
1302 .{ .from = 0xA82C, .to = 0xA82C, .orientation = .R },
1303 .{ .from = 0xA830, .to = 0xA835, .orientation = .R },
1304 .{ .from = 0xA836, .to = 0xA837, .orientation = .R },
1305 .{ .from = 0xA838, .to = 0xA838, .orientation = .R },
1306 .{ .from = 0xA839, .to = 0xA839, .orientation = .R },
1307 .{ .from = 0xA840, .to = 0xA873, .orientation = .R },
1308 .{ .from = 0xA874, .to = 0xA877, .orientation = .R },
1309 .{ .from = 0xA880, .to = 0xA881, .orientation = .R },
1310 .{ .from = 0xA882, .to = 0xA8B3, .orientation = .R },
1311 .{ .from = 0xA8B4, .to = 0xA8C3, .orientation = .R },
1312 .{ .from = 0xA8C4, .to = 0xA8C5, .orientation = .R },
1313 .{ .from = 0xA8CE, .to = 0xA8CF, .orientation = .R },
1314 .{ .from = 0xA8D0, .to = 0xA8D9, .orientation = .R },
1315 .{ .from = 0xA8E0, .to = 0xA8F1, .orientation = .R },
1316 .{ .from = 0xA8F2, .to = 0xA8F7, .orientation = .R },
1317 .{ .from = 0xA8F8, .to = 0xA8FA, .orientation = .R },
1318 .{ .from = 0xA8FB, .to = 0xA8FB, .orientation = .R },
1319 .{ .from = 0xA8FC, .to = 0xA8FC, .orientation = .R },
1320 .{ .from = 0xA8FD, .to = 0xA8FE, .orientation = .R },
1321 .{ .from = 0xA8FF, .to = 0xA8FF, .orientation = .R },
1322 .{ .from = 0xA900, .to = 0xA909, .orientation = .R },
1323 .{ .from = 0xA90A, .to = 0xA925, .orientation = .R },
1324 .{ .from = 0xA926, .to = 0xA92D, .orientation = .R },
1325 .{ .from = 0xA92E, .to = 0xA92F, .orientation = .R },
1326 .{ .from = 0xA930, .to = 0xA946, .orientation = .R },
1327 .{ .from = 0xA947, .to = 0xA951, .orientation = .R },
1328 .{ .from = 0xA952, .to = 0xA953, .orientation = .R },
1329 .{ .from = 0xA95F, .to = 0xA95F, .orientation = .R },
1330 .{ .from = 0xA960, .to = 0xA97C, .orientation = .U },
1331 .{ .from = 0xA97D, .to = 0xA97F, .orientation = .U },
1332 .{ .from = 0xA980, .to = 0xA982, .orientation = .R },
1333 .{ .from = 0xA983, .to = 0xA983, .orientation = .R },
1334 .{ .from = 0xA984, .to = 0xA9B2, .orientation = .R },
1335 .{ .from = 0xA9B3, .to = 0xA9B3, .orientation = .R },
1336 .{ .from = 0xA9B4, .to = 0xA9B5, .orientation = .R },
1337 .{ .from = 0xA9B6, .to = 0xA9B9, .orientation = .R },
1338 .{ .from = 0xA9BA, .to = 0xA9BB, .orientation = .R },
1339 .{ .from = 0xA9BC, .to = 0xA9BD, .orientation = .R },
1340 .{ .from = 0xA9BE, .to = 0xA9C0, .orientation = .R },
1341 .{ .from = 0xA9C1, .to = 0xA9CD, .orientation = .R },
1342 .{ .from = 0xA9CF, .to = 0xA9CF, .orientation = .R },
1343 .{ .from = 0xA9D0, .to = 0xA9D9, .orientation = .R },
1344 .{ .from = 0xA9DE, .to = 0xA9DF, .orientation = .R },
1345 .{ .from = 0xA9E0, .to = 0xA9E4, .orientation = .R },
1346 .{ .from = 0xA9E5, .to = 0xA9E5, .orientation = .R },
1347 .{ .from = 0xA9E6, .to = 0xA9E6, .orientation = .R },
1348 .{ .from = 0xA9E7, .to = 0xA9EF, .orientation = .R },
1349 .{ .from = 0xA9F0, .to = 0xA9F9, .orientation = .R },
1350 .{ .from = 0xA9FA, .to = 0xA9FE, .orientation = .R },
1351 .{ .from = 0xAA00, .to = 0xAA28, .orientation = .R },
1352 .{ .from = 0xAA29, .to = 0xAA2E, .orientation = .R },
1353 .{ .from = 0xAA2F, .to = 0xAA30, .orientation = .R },
1354 .{ .from = 0xAA31, .to = 0xAA32, .orientation = .R },
1355 .{ .from = 0xAA33, .to = 0xAA34, .orientation = .R },
1356 .{ .from = 0xAA35, .to = 0xAA36, .orientation = .R },
1357 .{ .from = 0xAA40, .to = 0xAA42, .orientation = .R },
1358 .{ .from = 0xAA43, .to = 0xAA43, .orientation = .R },
1359 .{ .from = 0xAA44, .to = 0xAA4B, .orientation = .R },
1360 .{ .from = 0xAA4C, .to = 0xAA4C, .orientation = .R },
1361 .{ .from = 0xAA4D, .to = 0xAA4D, .orientation = .R },
1362 .{ .from = 0xAA50, .to = 0xAA59, .orientation = .R },
1363 .{ .from = 0xAA5C, .to = 0xAA5F, .orientation = .R },
1364 .{ .from = 0xAA60, .to = 0xAA6F, .orientation = .R },
1365 .{ .from = 0xAA70, .to = 0xAA70, .orientation = .R },
1366 .{ .from = 0xAA71, .to = 0xAA76, .orientation = .R },
1367 .{ .from = 0xAA77, .to = 0xAA79, .orientation = .R },
1368 .{ .from = 0xAA7A, .to = 0xAA7A, .orientation = .R },
1369 .{ .from = 0xAA7B, .to = 0xAA7B, .orientation = .R },
1370 .{ .from = 0xAA7C, .to = 0xAA7C, .orientation = .R },
1371 .{ .from = 0xAA7D, .to = 0xAA7D, .orientation = .R },
1372 .{ .from = 0xAA7E, .to = 0xAA7F, .orientation = .R },
1373 .{ .from = 0xAA80, .to = 0xAAAF, .orientation = .R },
1374 .{ .from = 0xAAB0, .to = 0xAAB0, .orientation = .R },
1375 .{ .from = 0xAAB1, .to = 0xAAB1, .orientation = .R },
1376 .{ .from = 0xAAB2, .to = 0xAAB4, .orientation = .R },
1377 .{ .from = 0xAAB5, .to = 0xAAB6, .orientation = .R },
1378 .{ .from = 0xAAB7, .to = 0xAAB8, .orientation = .R },
1379 .{ .from = 0xAAB9, .to = 0xAABD, .orientation = .R },
1380 .{ .from = 0xAABE, .to = 0xAABF, .orientation = .R },
1381 .{ .from = 0xAAC0, .to = 0xAAC0, .orientation = .R },
1382 .{ .from = 0xAAC1, .to = 0xAAC1, .orientation = .R },
1383 .{ .from = 0xAAC2, .to = 0xAAC2, .orientation = .R },
1384 .{ .from = 0xAADB, .to = 0xAADC, .orientation = .R },
1385 .{ .from = 0xAADD, .to = 0xAADD, .orientation = .R },
1386 .{ .from = 0xAADE, .to = 0xAADF, .orientation = .R },
1387 .{ .from = 0xAAE0, .to = 0xAAEA, .orientation = .R },
1388 .{ .from = 0xAAEB, .to = 0xAAEB, .orientation = .R },
1389 .{ .from = 0xAAEC, .to = 0xAAED, .orientation = .R },
1390 .{ .from = 0xAAEE, .to = 0xAAEF, .orientation = .R },
1391 .{ .from = 0xAAF0, .to = 0xAAF1, .orientation = .R },
1392 .{ .from = 0xAAF2, .to = 0xAAF2, .orientation = .R },
1393 .{ .from = 0xAAF3, .to = 0xAAF4, .orientation = .R },
1394 .{ .from = 0xAAF5, .to = 0xAAF5, .orientation = .R },
1395 .{ .from = 0xAAF6, .to = 0xAAF6, .orientation = .R },
1396 .{ .from = 0xAB01, .to = 0xAB06, .orientation = .R },
1397 .{ .from = 0xAB09, .to = 0xAB0E, .orientation = .R },
1398 .{ .from = 0xAB11, .to = 0xAB16, .orientation = .R },
1399 .{ .from = 0xAB20, .to = 0xAB26, .orientation = .R },
1400 .{ .from = 0xAB28, .to = 0xAB2E, .orientation = .R },
1401 .{ .from = 0xAB30, .to = 0xAB5A, .orientation = .R },
1402 .{ .from = 0xAB5B, .to = 0xAB5B, .orientation = .R },
1403 .{ .from = 0xAB5C, .to = 0xAB5F, .orientation = .R },
1404 .{ .from = 0xAB60, .to = 0xAB68, .orientation = .R },
1405 .{ .from = 0xAB69, .to = 0xAB69, .orientation = .R },
1406 .{ .from = 0xAB6A, .to = 0xAB6B, .orientation = .R },
1407 .{ .from = 0xAB70, .to = 0xABBF, .orientation = .R },
1408 .{ .from = 0xABC0, .to = 0xABE2, .orientation = .R },
1409 .{ .from = 0xABE3, .to = 0xABE4, .orientation = .R },
1410 .{ .from = 0xABE5, .to = 0xABE5, .orientation = .R },
1411 .{ .from = 0xABE6, .to = 0xABE7, .orientation = .R },
1412 .{ .from = 0xABE8, .to = 0xABE8, .orientation = .R },
1413 .{ .from = 0xABE9, .to = 0xABEA, .orientation = .R },
1414 .{ .from = 0xABEB, .to = 0xABEB, .orientation = .R },
1415 .{ .from = 0xABEC, .to = 0xABEC, .orientation = .R },
1416 .{ .from = 0xABED, .to = 0xABED, .orientation = .R },
1417 .{ .from = 0xABF0, .to = 0xABF9, .orientation = .R },
1418 .{ .from = 0xAC00, .to = 0xD7A3, .orientation = .U },
1419 .{ .from = 0xD7A4, .to = 0xD7AF, .orientation = .U },
1420 .{ .from = 0xD7B0, .to = 0xD7C6, .orientation = .U },
1421 .{ .from = 0xD7C7, .to = 0xD7CA, .orientation = .U },
1422 .{ .from = 0xD7CB, .to = 0xD7FB, .orientation = .U },
1423 .{ .from = 0xD7FC, .to = 0xD7FF, .orientation = .U },
1424 .{ .from = 0xD800, .to = 0xDFFF, .orientation = .R },
1425 .{ .from = 0xE000, .to = 0xF8FF, .orientation = .U },
1426 .{ .from = 0xF900, .to = 0xFA6D, .orientation = .U },
1427 .{ .from = 0xFA6E, .to = 0xFA6F, .orientation = .U },
1428 .{ .from = 0xFA70, .to = 0xFAD9, .orientation = .U },
1429 .{ .from = 0xFADA, .to = 0xFAFF, .orientation = .U },
1430 .{ .from = 0xFB00, .to = 0xFB06, .orientation = .R },
1431 .{ .from = 0xFB13, .to = 0xFB17, .orientation = .R },
1432 .{ .from = 0xFB1D, .to = 0xFB1D, .orientation = .R },
1433 .{ .from = 0xFB1E, .to = 0xFB1E, .orientation = .R },
1434 .{ .from = 0xFB1F, .to = 0xFB28, .orientation = .R },
1435 .{ .from = 0xFB29, .to = 0xFB29, .orientation = .R },
1436 .{ .from = 0xFB2A, .to = 0xFB36, .orientation = .R },
1437 .{ .from = 0xFB38, .to = 0xFB3C, .orientation = .R },
1438 .{ .from = 0xFB3E, .to = 0xFB3E, .orientation = .R },
1439 .{ .from = 0xFB40, .to = 0xFB41, .orientation = .R },
1440 .{ .from = 0xFB43, .to = 0xFB44, .orientation = .R },
1441 .{ .from = 0xFB46, .to = 0xFB4F, .orientation = .R },
1442 .{ .from = 0xFB50, .to = 0xFBB1, .orientation = .R },
1443 .{ .from = 0xFBB2, .to = 0xFBC1, .orientation = .R },
1444 .{ .from = 0xFBD3, .to = 0xFD3D, .orientation = .R },
1445 .{ .from = 0xFD3E, .to = 0xFD3E, .orientation = .R },
1446 .{ .from = 0xFD3F, .to = 0xFD3F, .orientation = .R },
1447 .{ .from = 0xFD50, .to = 0xFD8F, .orientation = .R },
1448 .{ .from = 0xFD92, .to = 0xFDC7, .orientation = .R },
1449 .{ .from = 0xFDF0, .to = 0xFDFB, .orientation = .R },
1450 .{ .from = 0xFDFC, .to = 0xFDFC, .orientation = .R },
1451 .{ .from = 0xFDFD, .to = 0xFDFD, .orientation = .R },
1452 .{ .from = 0xFE00, .to = 0xFE0F, .orientation = .R },
1453 .{ .from = 0xFE10, .to = 0xFE16, .orientation = .U },
1454 .{ .from = 0xFE17, .to = 0xFE17, .orientation = .U },
1455 .{ .from = 0xFE18, .to = 0xFE18, .orientation = .U },
1456 .{ .from = 0xFE19, .to = 0xFE19, .orientation = .U },
1457 .{ .from = 0xFE1A, .to = 0xFE1F, .orientation = .U },
1458 .{ .from = 0xFE20, .to = 0xFE2F, .orientation = .R },
1459 .{ .from = 0xFE30, .to = 0xFE30, .orientation = .U },
1460 .{ .from = 0xFE31, .to = 0xFE32, .orientation = .U },
1461 .{ .from = 0xFE33, .to = 0xFE34, .orientation = .U },
1462 .{ .from = 0xFE35, .to = 0xFE35, .orientation = .U },
1463 .{ .from = 0xFE36, .to = 0xFE36, .orientation = .U },
1464 .{ .from = 0xFE37, .to = 0xFE37, .orientation = .U },
1465 .{ .from = 0xFE38, .to = 0xFE38, .orientation = .U },
1466 .{ .from = 0xFE39, .to = 0xFE39, .orientation = .U },
1467 .{ .from = 0xFE3A, .to = 0xFE3A, .orientation = .U },
1468 .{ .from = 0xFE3B, .to = 0xFE3B, .orientation = .U },
1469 .{ .from = 0xFE3C, .to = 0xFE3C, .orientation = .U },
1470 .{ .from = 0xFE3D, .to = 0xFE3D, .orientation = .U },
1471 .{ .from = 0xFE3E, .to = 0xFE3E, .orientation = .U },
1472 .{ .from = 0xFE3F, .to = 0xFE3F, .orientation = .U },
1473 .{ .from = 0xFE40, .to = 0xFE40, .orientation = .U },
1474 .{ .from = 0xFE41, .to = 0xFE41, .orientation = .U },
1475 .{ .from = 0xFE42, .to = 0xFE42, .orientation = .U },
1476 .{ .from = 0xFE43, .to = 0xFE43, .orientation = .U },
1477 .{ .from = 0xFE44, .to = 0xFE44, .orientation = .U },
1478 .{ .from = 0xFE45, .to = 0xFE46, .orientation = .U },
1479 .{ .from = 0xFE47, .to = 0xFE47, .orientation = .U },
1480 .{ .from = 0xFE48, .to = 0xFE48, .orientation = .U },
1481 .{ .from = 0xFE49, .to = 0xFE4C, .orientation = .R },
1482 .{ .from = 0xFE4D, .to = 0xFE4F, .orientation = .R },
1483 .{ .from = 0xFE50, .to = 0xFE52, .orientation = .Tu },
1484 .{ .from = 0xFE53, .to = 0xFE53, .orientation = .U },
1485 .{ .from = 0xFE54, .to = 0xFE57, .orientation = .U },
1486 .{ .from = 0xFE58, .to = 0xFE58, .orientation = .R },
1487 .{ .from = 0xFE59, .to = 0xFE59, .orientation = .Tr },
1488 .{ .from = 0xFE5A, .to = 0xFE5A, .orientation = .Tr },
1489 .{ .from = 0xFE5B, .to = 0xFE5B, .orientation = .Tr },
1490 .{ .from = 0xFE5C, .to = 0xFE5C, .orientation = .Tr },
1491 .{ .from = 0xFE5D, .to = 0xFE5D, .orientation = .Tr },
1492 .{ .from = 0xFE5E, .to = 0xFE5E, .orientation = .Tr },
1493 .{ .from = 0xFE5F, .to = 0xFE61, .orientation = .U },
1494 .{ .from = 0xFE62, .to = 0xFE62, .orientation = .U },
1495 .{ .from = 0xFE63, .to = 0xFE63, .orientation = .R },
1496 .{ .from = 0xFE64, .to = 0xFE66, .orientation = .R },
1497 .{ .from = 0xFE67, .to = 0xFE67, .orientation = .U },
1498 .{ .from = 0xFE68, .to = 0xFE68, .orientation = .U },
1499 .{ .from = 0xFE69, .to = 0xFE69, .orientation = .U },
1500 .{ .from = 0xFE6A, .to = 0xFE6B, .orientation = .U },
1501 .{ .from = 0xFE6C, .to = 0xFE6F, .orientation = .U },
1502 .{ .from = 0xFE70, .to = 0xFE74, .orientation = .R },
1503 .{ .from = 0xFE76, .to = 0xFEFC, .orientation = .R },
1504 .{ .from = 0xFEFF, .to = 0xFEFF, .orientation = .R },
1505 .{ .from = 0xFF01, .to = 0xFF01, .orientation = .Tu },
1506 .{ .from = 0xFF02, .to = 0xFF03, .orientation = .U },
1507 .{ .from = 0xFF04, .to = 0xFF04, .orientation = .U },
1508 .{ .from = 0xFF05, .to = 0xFF07, .orientation = .U },
1509 .{ .from = 0xFF08, .to = 0xFF08, .orientation = .Tr },
1510 .{ .from = 0xFF09, .to = 0xFF09, .orientation = .Tr },
1511 .{ .from = 0xFF0A, .to = 0xFF0A, .orientation = .U },
1512 .{ .from = 0xFF0B, .to = 0xFF0B, .orientation = .U },
1513 .{ .from = 0xFF0C, .to = 0xFF0C, .orientation = .Tu },
1514 .{ .from = 0xFF0D, .to = 0xFF0D, .orientation = .R },
1515 .{ .from = 0xFF0E, .to = 0xFF0E, .orientation = .Tu },
1516 .{ .from = 0xFF0F, .to = 0xFF0F, .orientation = .U },
1517 .{ .from = 0xFF10, .to = 0xFF19, .orientation = .U },
1518 .{ .from = 0xFF1A, .to = 0xFF1B, .orientation = .Tr },
1519 .{ .from = 0xFF1C, .to = 0xFF1E, .orientation = .R },
1520 .{ .from = 0xFF1F, .to = 0xFF1F, .orientation = .Tu },
1521 .{ .from = 0xFF20, .to = 0xFF20, .orientation = .U },
1522 .{ .from = 0xFF21, .to = 0xFF3A, .orientation = .U },
1523 .{ .from = 0xFF3B, .to = 0xFF3B, .orientation = .Tr },
1524 .{ .from = 0xFF3C, .to = 0xFF3C, .orientation = .U },
1525 .{ .from = 0xFF3D, .to = 0xFF3D, .orientation = .Tr },
1526 .{ .from = 0xFF3E, .to = 0xFF3E, .orientation = .U },
1527 .{ .from = 0xFF3F, .to = 0xFF3F, .orientation = .Tr },
1528 .{ .from = 0xFF40, .to = 0xFF40, .orientation = .U },
1529 .{ .from = 0xFF41, .to = 0xFF5A, .orientation = .U },
1530 .{ .from = 0xFF5B, .to = 0xFF5B, .orientation = .Tr },
1531 .{ .from = 0xFF5C, .to = 0xFF5C, .orientation = .Tr },
1532 .{ .from = 0xFF5D, .to = 0xFF5D, .orientation = .Tr },
1533 .{ .from = 0xFF5E, .to = 0xFF5E, .orientation = .Tr },
1534 .{ .from = 0xFF5F, .to = 0xFF5F, .orientation = .Tr },
1535 .{ .from = 0xFF60, .to = 0xFF60, .orientation = .Tr },
1536 .{ .from = 0xFF61, .to = 0xFF61, .orientation = .R },
1537 .{ .from = 0xFF62, .to = 0xFF62, .orientation = .R },
1538 .{ .from = 0xFF63, .to = 0xFF63, .orientation = .R },
1539 .{ .from = 0xFF64, .to = 0xFF65, .orientation = .R },
1540 .{ .from = 0xFF66, .to = 0xFF6F, .orientation = .R },
1541 .{ .from = 0xFF70, .to = 0xFF70, .orientation = .R },
1542 .{ .from = 0xFF71, .to = 0xFF9D, .orientation = .R },
1543 .{ .from = 0xFF9E, .to = 0xFF9F, .orientation = .R },
1544 .{ .from = 0xFFA0, .to = 0xFFBE, .orientation = .R },
1545 .{ .from = 0xFFC2, .to = 0xFFC7, .orientation = .R },
1546 .{ .from = 0xFFCA, .to = 0xFFCF, .orientation = .R },
1547 .{ .from = 0xFFD2, .to = 0xFFD7, .orientation = .R },
1548 .{ .from = 0xFFDA, .to = 0xFFDC, .orientation = .R },
1549 .{ .from = 0xFFE0, .to = 0xFFE1, .orientation = .U },
1550 .{ .from = 0xFFE2, .to = 0xFFE2, .orientation = .U },
1551 .{ .from = 0xFFE3, .to = 0xFFE3, .orientation = .Tr },
1552 .{ .from = 0xFFE4, .to = 0xFFE4, .orientation = .U },
1553 .{ .from = 0xFFE5, .to = 0xFFE6, .orientation = .U },
1554 .{ .from = 0xFFE7, .to = 0xFFE7, .orientation = .U },
1555 .{ .from = 0xFFE8, .to = 0xFFE8, .orientation = .R },
1556 .{ .from = 0xFFE9, .to = 0xFFEC, .orientation = .R },
1557 .{ .from = 0xFFED, .to = 0xFFEE, .orientation = .R },
1558 .{ .from = 0xFFF0, .to = 0xFFF8, .orientation = .U },
1559 .{ .from = 0xFFF9, .to = 0xFFFB, .orientation = .R },
1560 .{ .from = 0xFFFC, .to = 0xFFFD, .orientation = .U },
1561 .{ .from = 0x10000, .to = 0x1000B, .orientation = .R },
1562 .{ .from = 0x1000D, .to = 0x10026, .orientation = .R },
1563 .{ .from = 0x10028, .to = 0x1003A, .orientation = .R },
1564 .{ .from = 0x1003C, .to = 0x1003D, .orientation = .R },
1565 .{ .from = 0x1003F, .to = 0x1004D, .orientation = .R },
1566 .{ .from = 0x10050, .to = 0x1005D, .orientation = .R },
1567 .{ .from = 0x10080, .to = 0x100FA, .orientation = .R },
1568 .{ .from = 0x10100, .to = 0x10102, .orientation = .R },
1569 .{ .from = 0x10107, .to = 0x10133, .orientation = .R },
1570 .{ .from = 0x10137, .to = 0x1013F, .orientation = .R },
1571 .{ .from = 0x10140, .to = 0x10174, .orientation = .R },
1572 .{ .from = 0x10175, .to = 0x10178, .orientation = .R },
1573 .{ .from = 0x10179, .to = 0x10189, .orientation = .R },
1574 .{ .from = 0x1018A, .to = 0x1018B, .orientation = .R },
1575 .{ .from = 0x1018C, .to = 0x1018E, .orientation = .R },
1576 .{ .from = 0x10190, .to = 0x1019C, .orientation = .R },
1577 .{ .from = 0x101A0, .to = 0x101A0, .orientation = .R },
1578 .{ .from = 0x101D0, .to = 0x101FC, .orientation = .R },
1579 .{ .from = 0x101FD, .to = 0x101FD, .orientation = .R },
1580 .{ .from = 0x10280, .to = 0x1029C, .orientation = .R },
1581 .{ .from = 0x102A0, .to = 0x102D0, .orientation = .R },
1582 .{ .from = 0x102E0, .to = 0x102E0, .orientation = .R },
1583 .{ .from = 0x102E1, .to = 0x102FB, .orientation = .R },
1584 .{ .from = 0x10300, .to = 0x1031F, .orientation = .R },
1585 .{ .from = 0x10320, .to = 0x10323, .orientation = .R },
1586 .{ .from = 0x1032D, .to = 0x1032F, .orientation = .R },
1587 .{ .from = 0x10330, .to = 0x10340, .orientation = .R },
1588 .{ .from = 0x10341, .to = 0x10341, .orientation = .R },
1589 .{ .from = 0x10342, .to = 0x10349, .orientation = .R },
1590 .{ .from = 0x1034A, .to = 0x1034A, .orientation = .R },
1591 .{ .from = 0x10350, .to = 0x10375, .orientation = .R },
1592 .{ .from = 0x10376, .to = 0x1037A, .orientation = .R },
1593 .{ .from = 0x10380, .to = 0x1039D, .orientation = .R },
1594 .{ .from = 0x1039F, .to = 0x1039F, .orientation = .R },
1595 .{ .from = 0x103A0, .to = 0x103C3, .orientation = .R },
1596 .{ .from = 0x103C8, .to = 0x103CF, .orientation = .R },
1597 .{ .from = 0x103D0, .to = 0x103D0, .orientation = .R },
1598 .{ .from = 0x103D1, .to = 0x103D5, .orientation = .R },
1599 .{ .from = 0x10400, .to = 0x1044F, .orientation = .R },
1600 .{ .from = 0x10450, .to = 0x1047F, .orientation = .R },
1601 .{ .from = 0x10480, .to = 0x1049D, .orientation = .R },
1602 .{ .from = 0x104A0, .to = 0x104A9, .orientation = .R },
1603 .{ .from = 0x104B0, .to = 0x104D3, .orientation = .R },
1604 .{ .from = 0x104D8, .to = 0x104FB, .orientation = .R },
1605 .{ .from = 0x10500, .to = 0x10527, .orientation = .R },
1606 .{ .from = 0x10530, .to = 0x10563, .orientation = .R },
1607 .{ .from = 0x1056F, .to = 0x1056F, .orientation = .R },
1608 .{ .from = 0x10600, .to = 0x10736, .orientation = .R },
1609 .{ .from = 0x10740, .to = 0x10755, .orientation = .R },
1610 .{ .from = 0x10760, .to = 0x10767, .orientation = .R },
1611 .{ .from = 0x10800, .to = 0x10805, .orientation = .R },
1612 .{ .from = 0x10808, .to = 0x10808, .orientation = .R },
1613 .{ .from = 0x1080A, .to = 0x10835, .orientation = .R },
1614 .{ .from = 0x10837, .to = 0x10838, .orientation = .R },
1615 .{ .from = 0x1083C, .to = 0x1083C, .orientation = .R },
1616 .{ .from = 0x1083F, .to = 0x1083F, .orientation = .R },
1617 .{ .from = 0x10840, .to = 0x10855, .orientation = .R },
1618 .{ .from = 0x10857, .to = 0x10857, .orientation = .R },
1619 .{ .from = 0x10858, .to = 0x1085F, .orientation = .R },
1620 .{ .from = 0x10860, .to = 0x10876, .orientation = .R },
1621 .{ .from = 0x10877, .to = 0x10878, .orientation = .R },
1622 .{ .from = 0x10879, .to = 0x1087F, .orientation = .R },
1623 .{ .from = 0x10880, .to = 0x1089E, .orientation = .R },
1624 .{ .from = 0x108A7, .to = 0x108AF, .orientation = .R },
1625 .{ .from = 0x108E0, .to = 0x108F2, .orientation = .R },
1626 .{ .from = 0x108F4, .to = 0x108F5, .orientation = .R },
1627 .{ .from = 0x108FB, .to = 0x108FF, .orientation = .R },
1628 .{ .from = 0x10900, .to = 0x10915, .orientation = .R },
1629 .{ .from = 0x10916, .to = 0x1091B, .orientation = .R },
1630 .{ .from = 0x1091F, .to = 0x1091F, .orientation = .R },
1631 .{ .from = 0x10920, .to = 0x10939, .orientation = .R },
1632 .{ .from = 0x1093F, .to = 0x1093F, .orientation = .R },
1633 .{ .from = 0x10980, .to = 0x1099F, .orientation = .U },
1634 .{ .from = 0x109A0, .to = 0x109B7, .orientation = .R },
1635 .{ .from = 0x109BC, .to = 0x109BD, .orientation = .R },
1636 .{ .from = 0x109BE, .to = 0x109BF, .orientation = .R },
1637 .{ .from = 0x109C0, .to = 0x109CF, .orientation = .R },
1638 .{ .from = 0x109D2, .to = 0x109FF, .orientation = .R },
1639 .{ .from = 0x10A00, .to = 0x10A00, .orientation = .R },
1640 .{ .from = 0x10A01, .to = 0x10A03, .orientation = .R },
1641 .{ .from = 0x10A05, .to = 0x10A06, .orientation = .R },
1642 .{ .from = 0x10A0C, .to = 0x10A0F, .orientation = .R },
1643 .{ .from = 0x10A10, .to = 0x10A13, .orientation = .R },
1644 .{ .from = 0x10A15, .to = 0x10A17, .orientation = .R },
1645 .{ .from = 0x10A19, .to = 0x10A35, .orientation = .R },
1646 .{ .from = 0x10A38, .to = 0x10A3A, .orientation = .R },
1647 .{ .from = 0x10A3F, .to = 0x10A3F, .orientation = .R },
1648 .{ .from = 0x10A40, .to = 0x10A48, .orientation = .R },
1649 .{ .from = 0x10A50, .to = 0x10A58, .orientation = .R },
1650 .{ .from = 0x10A60, .to = 0x10A7C, .orientation = .R },
1651 .{ .from = 0x10A7D, .to = 0x10A7E, .orientation = .R },
1652 .{ .from = 0x10A7F, .to = 0x10A7F, .orientation = .R },
1653 .{ .from = 0x10A80, .to = 0x10A9C, .orientation = .R },
1654 .{ .from = 0x10A9D, .to = 0x10A9F, .orientation = .R },
1655 .{ .from = 0x10AC0, .to = 0x10AC7, .orientation = .R },
1656 .{ .from = 0x10AC8, .to = 0x10AC8, .orientation = .R },
1657 .{ .from = 0x10AC9, .to = 0x10AE4, .orientation = .R },
1658 .{ .from = 0x10AE5, .to = 0x10AE6, .orientation = .R },
1659 .{ .from = 0x10AEB, .to = 0x10AEF, .orientation = .R },
1660 .{ .from = 0x10AF0, .to = 0x10AF6, .orientation = .R },
1661 .{ .from = 0x10B00, .to = 0x10B35, .orientation = .R },
1662 .{ .from = 0x10B39, .to = 0x10B3F, .orientation = .R },
1663 .{ .from = 0x10B40, .to = 0x10B55, .orientation = .R },
1664 .{ .from = 0x10B58, .to = 0x10B5F, .orientation = .R },
1665 .{ .from = 0x10B60, .to = 0x10B72, .orientation = .R },
1666 .{ .from = 0x10B78, .to = 0x10B7F, .orientation = .R },
1667 .{ .from = 0x10B80, .to = 0x10B91, .orientation = .R },
1668 .{ .from = 0x10B99, .to = 0x10B9C, .orientation = .R },
1669 .{ .from = 0x10BA9, .to = 0x10BAF, .orientation = .R },
1670 .{ .from = 0x10C00, .to = 0x10C48, .orientation = .R },
1671 .{ .from = 0x10C80, .to = 0x10CB2, .orientation = .R },
1672 .{ .from = 0x10CC0, .to = 0x10CF2, .orientation = .R },
1673 .{ .from = 0x10CFA, .to = 0x10CFF, .orientation = .R },
1674 .{ .from = 0x10D00, .to = 0x10D23, .orientation = .R },
1675 .{ .from = 0x10D24, .to = 0x10D27, .orientation = .R },
1676 .{ .from = 0x10D30, .to = 0x10D39, .orientation = .R },
1677 .{ .from = 0x10E60, .to = 0x10E7E, .orientation = .R },
1678 .{ .from = 0x10E80, .to = 0x10EA9, .orientation = .R },
1679 .{ .from = 0x10EAB, .to = 0x10EAC, .orientation = .R },
1680 .{ .from = 0x10EAD, .to = 0x10EAD, .orientation = .R },
1681 .{ .from = 0x10EB0, .to = 0x10EB1, .orientation = .R },
1682 .{ .from = 0x10F00, .to = 0x10F1C, .orientation = .R },
1683 .{ .from = 0x10F1D, .to = 0x10F26, .orientation = .R },
1684 .{ .from = 0x10F27, .to = 0x10F27, .orientation = .R },
1685 .{ .from = 0x10F30, .to = 0x10F45, .orientation = .R },
1686 .{ .from = 0x10F46, .to = 0x10F50, .orientation = .R },
1687 .{ .from = 0x10F51, .to = 0x10F54, .orientation = .R },
1688 .{ .from = 0x10F55, .to = 0x10F59, .orientation = .R },
1689 .{ .from = 0x10FB0, .to = 0x10FC4, .orientation = .R },
1690 .{ .from = 0x10FC5, .to = 0x10FCB, .orientation = .R },
1691 .{ .from = 0x10FE0, .to = 0x10FF6, .orientation = .R },
1692 .{ .from = 0x11000, .to = 0x11000, .orientation = .R },
1693 .{ .from = 0x11001, .to = 0x11001, .orientation = .R },
1694 .{ .from = 0x11002, .to = 0x11002, .orientation = .R },
1695 .{ .from = 0x11003, .to = 0x11037, .orientation = .R },
1696 .{ .from = 0x11038, .to = 0x11046, .orientation = .R },
1697 .{ .from = 0x11047, .to = 0x1104D, .orientation = .R },
1698 .{ .from = 0x11052, .to = 0x11065, .orientation = .R },
1699 .{ .from = 0x11066, .to = 0x1106F, .orientation = .R },
1700 .{ .from = 0x1107F, .to = 0x1107F, .orientation = .R },
1701 .{ .from = 0x11080, .to = 0x11081, .orientation = .R },
1702 .{ .from = 0x11082, .to = 0x11082, .orientation = .R },
1703 .{ .from = 0x11083, .to = 0x110AF, .orientation = .R },
1704 .{ .from = 0x110B0, .to = 0x110B2, .orientation = .R },
1705 .{ .from = 0x110B3, .to = 0x110B6, .orientation = .R },
1706 .{ .from = 0x110B7, .to = 0x110B8, .orientation = .R },
1707 .{ .from = 0x110B9, .to = 0x110BA, .orientation = .R },
1708 .{ .from = 0x110BB, .to = 0x110BC, .orientation = .R },
1709 .{ .from = 0x110BD, .to = 0x110BD, .orientation = .R },
1710 .{ .from = 0x110BE, .to = 0x110C1, .orientation = .R },
1711 .{ .from = 0x110CD, .to = 0x110CD, .orientation = .R },
1712 .{ .from = 0x110D0, .to = 0x110E8, .orientation = .R },
1713 .{ .from = 0x110F0, .to = 0x110F9, .orientation = .R },
1714 .{ .from = 0x11100, .to = 0x11102, .orientation = .R },
1715 .{ .from = 0x11103, .to = 0x11126, .orientation = .R },
1716 .{ .from = 0x11127, .to = 0x1112B, .orientation = .R },
1717 .{ .from = 0x1112C, .to = 0x1112C, .orientation = .R },
1718 .{ .from = 0x1112D, .to = 0x11134, .orientation = .R },
1719 .{ .from = 0x11136, .to = 0x1113F, .orientation = .R },
1720 .{ .from = 0x11140, .to = 0x11143, .orientation = .R },
1721 .{ .from = 0x11144, .to = 0x11144, .orientation = .R },
1722 .{ .from = 0x11145, .to = 0x11146, .orientation = .R },
1723 .{ .from = 0x11147, .to = 0x11147, .orientation = .R },
1724 .{ .from = 0x11150, .to = 0x11172, .orientation = .R },
1725 .{ .from = 0x11173, .to = 0x11173, .orientation = .R },
1726 .{ .from = 0x11174, .to = 0x11175, .orientation = .R },
1727 .{ .from = 0x11176, .to = 0x11176, .orientation = .R },
1728 .{ .from = 0x11180, .to = 0x11181, .orientation = .R },
1729 .{ .from = 0x11182, .to = 0x11182, .orientation = .R },
1730 .{ .from = 0x11183, .to = 0x111B2, .orientation = .R },
1731 .{ .from = 0x111B3, .to = 0x111B5, .orientation = .R },
1732 .{ .from = 0x111B6, .to = 0x111BE, .orientation = .R },
1733 .{ .from = 0x111BF, .to = 0x111C0, .orientation = .R },
1734 .{ .from = 0x111C1, .to = 0x111C4, .orientation = .R },
1735 .{ .from = 0x111C5, .to = 0x111C8, .orientation = .R },
1736 .{ .from = 0x111C9, .to = 0x111CC, .orientation = .R },
1737 .{ .from = 0x111CD, .to = 0x111CD, .orientation = .R },
1738 .{ .from = 0x111CE, .to = 0x111CE, .orientation = .R },
1739 .{ .from = 0x111CF, .to = 0x111CF, .orientation = .R },
1740 .{ .from = 0x111D0, .to = 0x111D9, .orientation = .R },
1741 .{ .from = 0x111DA, .to = 0x111DA, .orientation = .R },
1742 .{ .from = 0x111DB, .to = 0x111DB, .orientation = .R },
1743 .{ .from = 0x111DC, .to = 0x111DC, .orientation = .R },
1744 .{ .from = 0x111DD, .to = 0x111DF, .orientation = .R },
1745 .{ .from = 0x111E1, .to = 0x111F4, .orientation = .R },
1746 .{ .from = 0x11200, .to = 0x11211, .orientation = .R },
1747 .{ .from = 0x11213, .to = 0x1122B, .orientation = .R },
1748 .{ .from = 0x1122C, .to = 0x1122E, .orientation = .R },
1749 .{ .from = 0x1122F, .to = 0x11231, .orientation = .R },
1750 .{ .from = 0x11232, .to = 0x11233, .orientation = .R },
1751 .{ .from = 0x11234, .to = 0x11234, .orientation = .R },
1752 .{ .from = 0x11235, .to = 0x11235, .orientation = .R },
1753 .{ .from = 0x11236, .to = 0x11237, .orientation = .R },
1754 .{ .from = 0x11238, .to = 0x1123D, .orientation = .R },
1755 .{ .from = 0x1123E, .to = 0x1123E, .orientation = .R },
1756 .{ .from = 0x11280, .to = 0x11286, .orientation = .R },
1757 .{ .from = 0x11288, .to = 0x11288, .orientation = .R },
1758 .{ .from = 0x1128A, .to = 0x1128D, .orientation = .R },
1759 .{ .from = 0x1128F, .to = 0x1129D, .orientation = .R },
1760 .{ .from = 0x1129F, .to = 0x112A8, .orientation = .R },
1761 .{ .from = 0x112A9, .to = 0x112A9, .orientation = .R },
1762 .{ .from = 0x112B0, .to = 0x112DE, .orientation = .R },
1763 .{ .from = 0x112DF, .to = 0x112DF, .orientation = .R },
1764 .{ .from = 0x112E0, .to = 0x112E2, .orientation = .R },
1765 .{ .from = 0x112E3, .to = 0x112EA, .orientation = .R },
1766 .{ .from = 0x112F0, .to = 0x112F9, .orientation = .R },
1767 .{ .from = 0x11300, .to = 0x11301, .orientation = .R },
1768 .{ .from = 0x11302, .to = 0x11303, .orientation = .R },
1769 .{ .from = 0x11305, .to = 0x1130C, .orientation = .R },
1770 .{ .from = 0x1130F, .to = 0x11310, .orientation = .R },
1771 .{ .from = 0x11313, .to = 0x11328, .orientation = .R },
1772 .{ .from = 0x1132A, .to = 0x11330, .orientation = .R },
1773 .{ .from = 0x11332, .to = 0x11333, .orientation = .R },
1774 .{ .from = 0x11335, .to = 0x11339, .orientation = .R },
1775 .{ .from = 0x1133B, .to = 0x1133C, .orientation = .R },
1776 .{ .from = 0x1133D, .to = 0x1133D, .orientation = .R },
1777 .{ .from = 0x1133E, .to = 0x1133F, .orientation = .R },
1778 .{ .from = 0x11340, .to = 0x11340, .orientation = .R },
1779 .{ .from = 0x11341, .to = 0x11344, .orientation = .R },
1780 .{ .from = 0x11347, .to = 0x11348, .orientation = .R },
1781 .{ .from = 0x1134B, .to = 0x1134D, .orientation = .R },
1782 .{ .from = 0x11350, .to = 0x11350, .orientation = .R },
1783 .{ .from = 0x11357, .to = 0x11357, .orientation = .R },
1784 .{ .from = 0x1135D, .to = 0x11361, .orientation = .R },
1785 .{ .from = 0x11362, .to = 0x11363, .orientation = .R },
1786 .{ .from = 0x11366, .to = 0x1136C, .orientation = .R },
1787 .{ .from = 0x11370, .to = 0x11374, .orientation = .R },
1788 .{ .from = 0x11400, .to = 0x11434, .orientation = .R },
1789 .{ .from = 0x11435, .to = 0x11437, .orientation = .R },
1790 .{ .from = 0x11438, .to = 0x1143F, .orientation = .R },
1791 .{ .from = 0x11440, .to = 0x11441, .orientation = .R },
1792 .{ .from = 0x11442, .to = 0x11444, .orientation = .R },
1793 .{ .from = 0x11445, .to = 0x11445, .orientation = .R },
1794 .{ .from = 0x11446, .to = 0x11446, .orientation = .R },
1795 .{ .from = 0x11447, .to = 0x1144A, .orientation = .R },
1796 .{ .from = 0x1144B, .to = 0x1144F, .orientation = .R },
1797 .{ .from = 0x11450, .to = 0x11459, .orientation = .R },
1798 .{ .from = 0x1145A, .to = 0x1145B, .orientation = .R },
1799 .{ .from = 0x1145D, .to = 0x1145D, .orientation = .R },
1800 .{ .from = 0x1145E, .to = 0x1145E, .orientation = .R },
1801 .{ .from = 0x1145F, .to = 0x11461, .orientation = .R },
1802 .{ .from = 0x11480, .to = 0x114AF, .orientation = .R },
1803 .{ .from = 0x114B0, .to = 0x114B2, .orientation = .R },
1804 .{ .from = 0x114B3, .to = 0x114B8, .orientation = .R },
1805 .{ .from = 0x114B9, .to = 0x114B9, .orientation = .R },
1806 .{ .from = 0x114BA, .to = 0x114BA, .orientation = .R },
1807 .{ .from = 0x114BB, .to = 0x114BE, .orientation = .R },
1808 .{ .from = 0x114BF, .to = 0x114C0, .orientation = .R },
1809 .{ .from = 0x114C1, .to = 0x114C1, .orientation = .R },
1810 .{ .from = 0x114C2, .to = 0x114C3, .orientation = .R },
1811 .{ .from = 0x114C4, .to = 0x114C5, .orientation = .R },
1812 .{ .from = 0x114C6, .to = 0x114C6, .orientation = .R },
1813 .{ .from = 0x114C7, .to = 0x114C7, .orientation = .R },
1814 .{ .from = 0x114D0, .to = 0x114D9, .orientation = .R },
1815 .{ .from = 0x11580, .to = 0x115AE, .orientation = .U },
1816 .{ .from = 0x115AF, .to = 0x115B1, .orientation = .U },
1817 .{ .from = 0x115B2, .to = 0x115B5, .orientation = .U },
1818 .{ .from = 0x115B6, .to = 0x115B7, .orientation = .U },
1819 .{ .from = 0x115B8, .to = 0x115BB, .orientation = .U },
1820 .{ .from = 0x115BC, .to = 0x115BD, .orientation = .U },
1821 .{ .from = 0x115BE, .to = 0x115BE, .orientation = .U },
1822 .{ .from = 0x115BF, .to = 0x115C0, .orientation = .U },
1823 .{ .from = 0x115C1, .to = 0x115D7, .orientation = .U },
1824 .{ .from = 0x115D8, .to = 0x115DB, .orientation = .U },
1825 .{ .from = 0x115DC, .to = 0x115DD, .orientation = .U },
1826 .{ .from = 0x115DE, .to = 0x115FF, .orientation = .U },
1827 .{ .from = 0x11600, .to = 0x1162F, .orientation = .R },
1828 .{ .from = 0x11630, .to = 0x11632, .orientation = .R },
1829 .{ .from = 0x11633, .to = 0x1163A, .orientation = .R },
1830 .{ .from = 0x1163B, .to = 0x1163C, .orientation = .R },
1831 .{ .from = 0x1163D, .to = 0x1163D, .orientation = .R },
1832 .{ .from = 0x1163E, .to = 0x1163E, .orientation = .R },
1833 .{ .from = 0x1163F, .to = 0x11640, .orientation = .R },
1834 .{ .from = 0x11641, .to = 0x11643, .orientation = .R },
1835 .{ .from = 0x11644, .to = 0x11644, .orientation = .R },
1836 .{ .from = 0x11650, .to = 0x11659, .orientation = .R },
1837 .{ .from = 0x11660, .to = 0x1166C, .orientation = .R },
1838 .{ .from = 0x11680, .to = 0x116AA, .orientation = .R },
1839 .{ .from = 0x116AB, .to = 0x116AB, .orientation = .R },
1840 .{ .from = 0x116AC, .to = 0x116AC, .orientation = .R },
1841 .{ .from = 0x116AD, .to = 0x116AD, .orientation = .R },
1842 .{ .from = 0x116AE, .to = 0x116AF, .orientation = .R },
1843 .{ .from = 0x116B0, .to = 0x116B5, .orientation = .R },
1844 .{ .from = 0x116B6, .to = 0x116B6, .orientation = .R },
1845 .{ .from = 0x116B7, .to = 0x116B7, .orientation = .R },
1846 .{ .from = 0x116B8, .to = 0x116B8, .orientation = .R },
1847 .{ .from = 0x116C0, .to = 0x116C9, .orientation = .R },
1848 .{ .from = 0x11700, .to = 0x1171A, .orientation = .R },
1849 .{ .from = 0x1171D, .to = 0x1171F, .orientation = .R },
1850 .{ .from = 0x11720, .to = 0x11721, .orientation = .R },
1851 .{ .from = 0x11722, .to = 0x11725, .orientation = .R },
1852 .{ .from = 0x11726, .to = 0x11726, .orientation = .R },
1853 .{ .from = 0x11727, .to = 0x1172B, .orientation = .R },
1854 .{ .from = 0x11730, .to = 0x11739, .orientation = .R },
1855 .{ .from = 0x1173A, .to = 0x1173B, .orientation = .R },
1856 .{ .from = 0x1173C, .to = 0x1173E, .orientation = .R },
1857 .{ .from = 0x1173F, .to = 0x1173F, .orientation = .R },
1858 .{ .from = 0x11800, .to = 0x1182B, .orientation = .R },
1859 .{ .from = 0x1182C, .to = 0x1182E, .orientation = .R },
1860 .{ .from = 0x1182F, .to = 0x11837, .orientation = .R },
1861 .{ .from = 0x11838, .to = 0x11838, .orientation = .R },
1862 .{ .from = 0x11839, .to = 0x1183A, .orientation = .R },
1863 .{ .from = 0x1183B, .to = 0x1183B, .orientation = .R },
1864 .{ .from = 0x118A0, .to = 0x118DF, .orientation = .R },
1865 .{ .from = 0x118E0, .to = 0x118E9, .orientation = .R },
1866 .{ .from = 0x118EA, .to = 0x118F2, .orientation = .R },
1867 .{ .from = 0x118FF, .to = 0x118FF, .orientation = .R },
1868 .{ .from = 0x11900, .to = 0x11906, .orientation = .R },
1869 .{ .from = 0x11909, .to = 0x11909, .orientation = .R },
1870 .{ .from = 0x1190C, .to = 0x11913, .orientation = .R },
1871 .{ .from = 0x11915, .to = 0x11916, .orientation = .R },
1872 .{ .from = 0x11918, .to = 0x1192F, .orientation = .R },
1873 .{ .from = 0x11930, .to = 0x11935, .orientation = .R },
1874 .{ .from = 0x11937, .to = 0x11938, .orientation = .R },
1875 .{ .from = 0x1193B, .to = 0x1193C, .orientation = .R },
1876 .{ .from = 0x1193D, .to = 0x1193D, .orientation = .R },
1877 .{ .from = 0x1193E, .to = 0x1193E, .orientation = .R },
1878 .{ .from = 0x1193F, .to = 0x1193F, .orientation = .R },
1879 .{ .from = 0x11940, .to = 0x11940, .orientation = .R },
1880 .{ .from = 0x11941, .to = 0x11941, .orientation = .R },
1881 .{ .from = 0x11942, .to = 0x11942, .orientation = .R },
1882 .{ .from = 0x11943, .to = 0x11943, .orientation = .R },
1883 .{ .from = 0x11944, .to = 0x11946, .orientation = .R },
1884 .{ .from = 0x11950, .to = 0x11959, .orientation = .R },
1885 .{ .from = 0x119A0, .to = 0x119A7, .orientation = .R },
1886 .{ .from = 0x119AA, .to = 0x119D0, .orientation = .R },
1887 .{ .from = 0x119D1, .to = 0x119D3, .orientation = .R },
1888 .{ .from = 0x119D4, .to = 0x119D7, .orientation = .R },
1889 .{ .from = 0x119DA, .to = 0x119DB, .orientation = .R },
1890 .{ .from = 0x119DC, .to = 0x119DF, .orientation = .R },
1891 .{ .from = 0x119E0, .to = 0x119E0, .orientation = .R },
1892 .{ .from = 0x119E1, .to = 0x119E1, .orientation = .R },
1893 .{ .from = 0x119E2, .to = 0x119E2, .orientation = .R },
1894 .{ .from = 0x119E3, .to = 0x119E3, .orientation = .R },
1895 .{ .from = 0x119E4, .to = 0x119E4, .orientation = .R },
1896 .{ .from = 0x11A00, .to = 0x11A00, .orientation = .U },
1897 .{ .from = 0x11A01, .to = 0x11A0A, .orientation = .U },
1898 .{ .from = 0x11A0B, .to = 0x11A32, .orientation = .U },
1899 .{ .from = 0x11A33, .to = 0x11A38, .orientation = .U },
1900 .{ .from = 0x11A39, .to = 0x11A39, .orientation = .U },
1901 .{ .from = 0x11A3A, .to = 0x11A3A, .orientation = .U },
1902 .{ .from = 0x11A3B, .to = 0x11A3E, .orientation = .U },
1903 .{ .from = 0x11A3F, .to = 0x11A46, .orientation = .U },
1904 .{ .from = 0x11A47, .to = 0x11A47, .orientation = .U },
1905 .{ .from = 0x11A48, .to = 0x11A4F, .orientation = .U },
1906 .{ .from = 0x11A50, .to = 0x11A50, .orientation = .U },
1907 .{ .from = 0x11A51, .to = 0x11A56, .orientation = .U },
1908 .{ .from = 0x11A57, .to = 0x11A58, .orientation = .U },
1909 .{ .from = 0x11A59, .to = 0x11A5B, .orientation = .U },
1910 .{ .from = 0x11A5C, .to = 0x11A89, .orientation = .U },
1911 .{ .from = 0x11A8A, .to = 0x11A96, .orientation = .U },
1912 .{ .from = 0x11A97, .to = 0x11A97, .orientation = .U },
1913 .{ .from = 0x11A98, .to = 0x11A99, .orientation = .U },
1914 .{ .from = 0x11A9A, .to = 0x11A9C, .orientation = .U },
1915 .{ .from = 0x11A9D, .to = 0x11A9D, .orientation = .U },
1916 .{ .from = 0x11A9E, .to = 0x11AA2, .orientation = .U },
1917 .{ .from = 0x11AA3, .to = 0x11AAF, .orientation = .U },
1918 .{ .from = 0x11AC0, .to = 0x11AF8, .orientation = .R },
1919 .{ .from = 0x11C00, .to = 0x11C08, .orientation = .R },
1920 .{ .from = 0x11C0A, .to = 0x11C2E, .orientation = .R },
1921 .{ .from = 0x11C2F, .to = 0x11C2F, .orientation = .R },
1922 .{ .from = 0x11C30, .to = 0x11C36, .orientation = .R },
1923 .{ .from = 0x11C38, .to = 0x11C3D, .orientation = .R },
1924 .{ .from = 0x11C3E, .to = 0x11C3E, .orientation = .R },
1925 .{ .from = 0x11C3F, .to = 0x11C3F, .orientation = .R },
1926 .{ .from = 0x11C40, .to = 0x11C40, .orientation = .R },
1927 .{ .from = 0x11C41, .to = 0x11C45, .orientation = .R },
1928 .{ .from = 0x11C50, .to = 0x11C59, .orientation = .R },
1929 .{ .from = 0x11C5A, .to = 0x11C6C, .orientation = .R },
1930 .{ .from = 0x11C70, .to = 0x11C71, .orientation = .R },
1931 .{ .from = 0x11C72, .to = 0x11C8F, .orientation = .R },
1932 .{ .from = 0x11C92, .to = 0x11CA7, .orientation = .R },
1933 .{ .from = 0x11CA9, .to = 0x11CA9, .orientation = .R },
1934 .{ .from = 0x11CAA, .to = 0x11CB0, .orientation = .R },
1935 .{ .from = 0x11CB1, .to = 0x11CB1, .orientation = .R },
1936 .{ .from = 0x11CB2, .to = 0x11CB3, .orientation = .R },
1937 .{ .from = 0x11CB4, .to = 0x11CB4, .orientation = .R },
1938 .{ .from = 0x11CB5, .to = 0x11CB6, .orientation = .R },
1939 .{ .from = 0x11D00, .to = 0x11D06, .orientation = .R },
1940 .{ .from = 0x11D08, .to = 0x11D09, .orientation = .R },
1941 .{ .from = 0x11D0B, .to = 0x11D30, .orientation = .R },
1942 .{ .from = 0x11D31, .to = 0x11D36, .orientation = .R },
1943 .{ .from = 0x11D3A, .to = 0x11D3A, .orientation = .R },
1944 .{ .from = 0x11D3C, .to = 0x11D3D, .orientation = .R },
1945 .{ .from = 0x11D3F, .to = 0x11D45, .orientation = .R },
1946 .{ .from = 0x11D46, .to = 0x11D46, .orientation = .R },
1947 .{ .from = 0x11D47, .to = 0x11D47, .orientation = .R },
1948 .{ .from = 0x11D50, .to = 0x11D59, .orientation = .R },
1949 .{ .from = 0x11D60, .to = 0x11D65, .orientation = .R },
1950 .{ .from = 0x11D67, .to = 0x11D68, .orientation = .R },
1951 .{ .from = 0x11D6A, .to = 0x11D89, .orientation = .R },
1952 .{ .from = 0x11D8A, .to = 0x11D8E, .orientation = .R },
1953 .{ .from = 0x11D90, .to = 0x11D91, .orientation = .R },
1954 .{ .from = 0x11D93, .to = 0x11D94, .orientation = .R },
1955 .{ .from = 0x11D95, .to = 0x11D95, .orientation = .R },
1956 .{ .from = 0x11D96, .to = 0x11D96, .orientation = .R },
1957 .{ .from = 0x11D97, .to = 0x11D97, .orientation = .R },
1958 .{ .from = 0x11D98, .to = 0x11D98, .orientation = .R },
1959 .{ .from = 0x11DA0, .to = 0x11DA9, .orientation = .R },
1960 .{ .from = 0x11EE0, .to = 0x11EF2, .orientation = .R },
1961 .{ .from = 0x11EF3, .to = 0x11EF4, .orientation = .R },
1962 .{ .from = 0x11EF5, .to = 0x11EF6, .orientation = .R },
1963 .{ .from = 0x11EF7, .to = 0x11EF8, .orientation = .R },
1964 .{ .from = 0x11FB0, .to = 0x11FB0, .orientation = .R },
1965 .{ .from = 0x11FC0, .to = 0x11FD4, .orientation = .R },
1966 .{ .from = 0x11FD5, .to = 0x11FDC, .orientation = .R },
1967 .{ .from = 0x11FDD, .to = 0x11FE0, .orientation = .R },
1968 .{ .from = 0x11FE1, .to = 0x11FF1, .orientation = .R },
1969 .{ .from = 0x11FFF, .to = 0x11FFF, .orientation = .R },
1970 .{ .from = 0x12000, .to = 0x12399, .orientation = .R },
1971 .{ .from = 0x12400, .to = 0x1246E, .orientation = .R },
1972 .{ .from = 0x12470, .to = 0x12474, .orientation = .R },
1973 .{ .from = 0x12480, .to = 0x12543, .orientation = .R },
1974 .{ .from = 0x13000, .to = 0x1342E, .orientation = .U },
1975 .{ .from = 0x1342F, .to = 0x1342F, .orientation = .U },
1976 .{ .from = 0x13430, .to = 0x13438, .orientation = .U },
1977 .{ .from = 0x13439, .to = 0x1343F, .orientation = .U },
1978 .{ .from = 0x14400, .to = 0x14646, .orientation = .U },
1979 .{ .from = 0x14647, .to = 0x1467F, .orientation = .U },
1980 .{ .from = 0x16800, .to = 0x16A38, .orientation = .R },
1981 .{ .from = 0x16A40, .to = 0x16A5E, .orientation = .R },
1982 .{ .from = 0x16A60, .to = 0x16A69, .orientation = .R },
1983 .{ .from = 0x16A6E, .to = 0x16A6F, .orientation = .R },
1984 .{ .from = 0x16AD0, .to = 0x16AED, .orientation = .R },
1985 .{ .from = 0x16AF0, .to = 0x16AF4, .orientation = .R },
1986 .{ .from = 0x16AF5, .to = 0x16AF5, .orientation = .R },
1987 .{ .from = 0x16B00, .to = 0x16B2F, .orientation = .R },
1988 .{ .from = 0x16B30, .to = 0x16B36, .orientation = .R },
1989 .{ .from = 0x16B37, .to = 0x16B3B, .orientation = .R },
1990 .{ .from = 0x16B3C, .to = 0x16B3F, .orientation = .R },
1991 .{ .from = 0x16B40, .to = 0x16B43, .orientation = .R },
1992 .{ .from = 0x16B44, .to = 0x16B44, .orientation = .R },
1993 .{ .from = 0x16B45, .to = 0x16B45, .orientation = .R },
1994 .{ .from = 0x16B50, .to = 0x16B59, .orientation = .R },
1995 .{ .from = 0x16B5B, .to = 0x16B61, .orientation = .R },
1996 .{ .from = 0x16B63, .to = 0x16B77, .orientation = .R },
1997 .{ .from = 0x16B7D, .to = 0x16B8F, .orientation = .R },
1998 .{ .from = 0x16E40, .to = 0x16E7F, .orientation = .R },
1999 .{ .from = 0x16E80, .to = 0x16E96, .orientation = .R },
2000 .{ .from = 0x16E97, .to = 0x16E9A, .orientation = .R },
2001 .{ .from = 0x16F00, .to = 0x16F4A, .orientation = .R },
2002 .{ .from = 0x16F4F, .to = 0x16F4F, .orientation = .R },
2003 .{ .from = 0x16F50, .to = 0x16F50, .orientation = .R },
2004 .{ .from = 0x16F51, .to = 0x16F87, .orientation = .R },
2005 .{ .from = 0x16F8F, .to = 0x16F92, .orientation = .R },
2006 .{ .from = 0x16F93, .to = 0x16F9F, .orientation = .R },
2007 .{ .from = 0x16FE0, .to = 0x16FE1, .orientation = .U },
2008 .{ .from = 0x16FE2, .to = 0x16FE2, .orientation = .U },
2009 .{ .from = 0x16FE3, .to = 0x16FE3, .orientation = .U },
2010 .{ .from = 0x16FE4, .to = 0x16FE4, .orientation = .U },
2011 .{ .from = 0x16FE5, .to = 0x16FEF, .orientation = .U },
2012 .{ .from = 0x16FF0, .to = 0x16FF1, .orientation = .U },
2013 .{ .from = 0x16FF2, .to = 0x16FFF, .orientation = .U },
2014 .{ .from = 0x17000, .to = 0x187F7, .orientation = .U },
2015 .{ .from = 0x187F8, .to = 0x187FF, .orientation = .U },
2016 .{ .from = 0x18800, .to = 0x18AFF, .orientation = .U },
2017 .{ .from = 0x18B00, .to = 0x18CD5, .orientation = .U },
2018 .{ .from = 0x18CD6, .to = 0x18CFF, .orientation = .U },
2019 .{ .from = 0x18D00, .to = 0x18D08, .orientation = .U },
2020 .{ .from = 0x18D09, .to = 0x18D8F, .orientation = .U },
2021 .{ .from = 0x1B000, .to = 0x1B0FF, .orientation = .U },
2022 .{ .from = 0x1B100, .to = 0x1B11E, .orientation = .U },
2023 .{ .from = 0x1B11F, .to = 0x1B12F, .orientation = .U },
2024 .{ .from = 0x1B130, .to = 0x1B14F, .orientation = .U },
2025 .{ .from = 0x1B150, .to = 0x1B152, .orientation = .U },
2026 .{ .from = 0x1B153, .to = 0x1B163, .orientation = .U },
2027 .{ .from = 0x1B164, .to = 0x1B167, .orientation = .U },
2028 .{ .from = 0x1B168, .to = 0x1B16F, .orientation = .U },
2029 .{ .from = 0x1B170, .to = 0x1B2FB, .orientation = .U },
2030 .{ .from = 0x1B2FC, .to = 0x1B2FF, .orientation = .U },
2031 .{ .from = 0x1BC00, .to = 0x1BC6A, .orientation = .R },
2032 .{ .from = 0x1BC70, .to = 0x1BC7C, .orientation = .R },
2033 .{ .from = 0x1BC80, .to = 0x1BC88, .orientation = .R },
2034 .{ .from = 0x1BC90, .to = 0x1BC99, .orientation = .R },
2035 .{ .from = 0x1BC9C, .to = 0x1BC9C, .orientation = .R },
2036 .{ .from = 0x1BC9D, .to = 0x1BC9E, .orientation = .R },
2037 .{ .from = 0x1BC9F, .to = 0x1BC9F, .orientation = .R },
2038 .{ .from = 0x1BCA0, .to = 0x1BCA3, .orientation = .R },
2039 .{ .from = 0x1D000, .to = 0x1D0F5, .orientation = .U },
2040 .{ .from = 0x1D0F6, .to = 0x1D0FF, .orientation = .U },
2041 .{ .from = 0x1D100, .to = 0x1D126, .orientation = .U },
2042 .{ .from = 0x1D127, .to = 0x1D128, .orientation = .U },
2043 .{ .from = 0x1D129, .to = 0x1D164, .orientation = .U },
2044 .{ .from = 0x1D165, .to = 0x1D166, .orientation = .U },
2045 .{ .from = 0x1D167, .to = 0x1D169, .orientation = .U },
2046 .{ .from = 0x1D16A, .to = 0x1D16C, .orientation = .U },
2047 .{ .from = 0x1D16D, .to = 0x1D172, .orientation = .U },
2048 .{ .from = 0x1D173, .to = 0x1D17A, .orientation = .U },
2049 .{ .from = 0x1D17B, .to = 0x1D182, .orientation = .U },
2050 .{ .from = 0x1D183, .to = 0x1D184, .orientation = .U },
2051 .{ .from = 0x1D185, .to = 0x1D18B, .orientation = .U },
2052 .{ .from = 0x1D18C, .to = 0x1D1A9, .orientation = .U },
2053 .{ .from = 0x1D1AA, .to = 0x1D1AD, .orientation = .U },
2054 .{ .from = 0x1D1AE, .to = 0x1D1E8, .orientation = .U },
2055 .{ .from = 0x1D1E9, .to = 0x1D1FF, .orientation = .U },
2056 .{ .from = 0x1D200, .to = 0x1D241, .orientation = .R },
2057 .{ .from = 0x1D242, .to = 0x1D244, .orientation = .R },
2058 .{ .from = 0x1D245, .to = 0x1D245, .orientation = .R },
2059 .{ .from = 0x1D2E0, .to = 0x1D2F3, .orientation = .U },
2060 .{ .from = 0x1D2F4, .to = 0x1D2FF, .orientation = .U },
2061 .{ .from = 0x1D300, .to = 0x1D356, .orientation = .U },
2062 .{ .from = 0x1D357, .to = 0x1D35F, .orientation = .U },
2063 .{ .from = 0x1D360, .to = 0x1D378, .orientation = .U },
2064 .{ .from = 0x1D379, .to = 0x1D37F, .orientation = .U },
2065 .{ .from = 0x1D400, .to = 0x1D454, .orientation = .R },
2066 .{ .from = 0x1D456, .to = 0x1D49C, .orientation = .R },
2067 .{ .from = 0x1D49E, .to = 0x1D49F, .orientation = .R },
2068 .{ .from = 0x1D4A2, .to = 0x1D4A2, .orientation = .R },
2069 .{ .from = 0x1D4A5, .to = 0x1D4A6, .orientation = .R },
2070 .{ .from = 0x1D4A9, .to = 0x1D4AC, .orientation = .R },
2071 .{ .from = 0x1D4AE, .to = 0x1D4B9, .orientation = .R },
2072 .{ .from = 0x1D4BB, .to = 0x1D4BB, .orientation = .R },
2073 .{ .from = 0x1D4BD, .to = 0x1D4C3, .orientation = .R },
2074 .{ .from = 0x1D4C5, .to = 0x1D505, .orientation = .R },
2075 .{ .from = 0x1D507, .to = 0x1D50A, .orientation = .R },
2076 .{ .from = 0x1D50D, .to = 0x1D514, .orientation = .R },
2077 .{ .from = 0x1D516, .to = 0x1D51C, .orientation = .R },
2078 .{ .from = 0x1D51E, .to = 0x1D539, .orientation = .R },
2079 .{ .from = 0x1D53B, .to = 0x1D53E, .orientation = .R },
2080 .{ .from = 0x1D540, .to = 0x1D544, .orientation = .R },
2081 .{ .from = 0x1D546, .to = 0x1D546, .orientation = .R },
2082 .{ .from = 0x1D54A, .to = 0x1D550, .orientation = .R },
2083 .{ .from = 0x1D552, .to = 0x1D6A5, .orientation = .R },
2084 .{ .from = 0x1D6A8, .to = 0x1D6C0, .orientation = .R },
2085 .{ .from = 0x1D6C1, .to = 0x1D6C1, .orientation = .R },
2086 .{ .from = 0x1D6C2, .to = 0x1D6DA, .orientation = .R },
2087 .{ .from = 0x1D6DB, .to = 0x1D6DB, .orientation = .R },
2088 .{ .from = 0x1D6DC, .to = 0x1D6FA, .orientation = .R },
2089 .{ .from = 0x1D6FB, .to = 0x1D6FB, .orientation = .R },
2090 .{ .from = 0x1D6FC, .to = 0x1D714, .orientation = .R },
2091 .{ .from = 0x1D715, .to = 0x1D715, .orientation = .R },
2092 .{ .from = 0x1D716, .to = 0x1D734, .orientation = .R },
2093 .{ .from = 0x1D735, .to = 0x1D735, .orientation = .R },
2094 .{ .from = 0x1D736, .to = 0x1D74E, .orientation = .R },
2095 .{ .from = 0x1D74F, .to = 0x1D74F, .orientation = .R },
2096 .{ .from = 0x1D750, .to = 0x1D76E, .orientation = .R },
2097 .{ .from = 0x1D76F, .to = 0x1D76F, .orientation = .R },
2098 .{ .from = 0x1D770, .to = 0x1D788, .orientation = .R },
2099 .{ .from = 0x1D789, .to = 0x1D789, .orientation = .R },
2100 .{ .from = 0x1D78A, .to = 0x1D7A8, .orientation = .R },
2101 .{ .from = 0x1D7A9, .to = 0x1D7A9, .orientation = .R },
2102 .{ .from = 0x1D7AA, .to = 0x1D7C2, .orientation = .R },
2103 .{ .from = 0x1D7C3, .to = 0x1D7C3, .orientation = .R },
2104 .{ .from = 0x1D7C4, .to = 0x1D7CB, .orientation = .R },
2105 .{ .from = 0x1D7CE, .to = 0x1D7FF, .orientation = .R },
2106 .{ .from = 0x1D800, .to = 0x1D9FF, .orientation = .U },
2107 .{ .from = 0x1DA00, .to = 0x1DA36, .orientation = .U },
2108 .{ .from = 0x1DA37, .to = 0x1DA3A, .orientation = .U },
2109 .{ .from = 0x1DA3B, .to = 0x1DA6C, .orientation = .U },
2110 .{ .from = 0x1DA6D, .to = 0x1DA74, .orientation = .U },
2111 .{ .from = 0x1DA75, .to = 0x1DA75, .orientation = .U },
2112 .{ .from = 0x1DA76, .to = 0x1DA83, .orientation = .U },
2113 .{ .from = 0x1DA84, .to = 0x1DA84, .orientation = .U },
2114 .{ .from = 0x1DA85, .to = 0x1DA86, .orientation = .U },
2115 .{ .from = 0x1DA87, .to = 0x1DA8B, .orientation = .U },
2116 .{ .from = 0x1DA8C, .to = 0x1DA9A, .orientation = .U },
2117 .{ .from = 0x1DA9B, .to = 0x1DA9F, .orientation = .U },
2118 .{ .from = 0x1DAA0, .to = 0x1DAA0, .orientation = .U },
2119 .{ .from = 0x1DAA1, .to = 0x1DAAF, .orientation = .U },
2120 .{ .from = 0x1E000, .to = 0x1E006, .orientation = .R },
2121 .{ .from = 0x1E008, .to = 0x1E018, .orientation = .R },
2122 .{ .from = 0x1E01B, .to = 0x1E021, .orientation = .R },
2123 .{ .from = 0x1E023, .to = 0x1E024, .orientation = .R },
2124 .{ .from = 0x1E026, .to = 0x1E02A, .orientation = .R },
2125 .{ .from = 0x1E100, .to = 0x1E12C, .orientation = .R },
2126 .{ .from = 0x1E130, .to = 0x1E136, .orientation = .R },
2127 .{ .from = 0x1E137, .to = 0x1E13D, .orientation = .R },
2128 .{ .from = 0x1E140, .to = 0x1E149, .orientation = .R },
2129 .{ .from = 0x1E14E, .to = 0x1E14E, .orientation = .R },
2130 .{ .from = 0x1E14F, .to = 0x1E14F, .orientation = .R },
2131 .{ .from = 0x1E2C0, .to = 0x1E2EB, .orientation = .R },
2132 .{ .from = 0x1E2EC, .to = 0x1E2EF, .orientation = .R },
2133 .{ .from = 0x1E2F0, .to = 0x1E2F9, .orientation = .R },
2134 .{ .from = 0x1E2FF, .to = 0x1E2FF, .orientation = .R },
2135 .{ .from = 0x1E800, .to = 0x1E8C4, .orientation = .R },
2136 .{ .from = 0x1E8C7, .to = 0x1E8CF, .orientation = .R },
2137 .{ .from = 0x1E8D0, .to = 0x1E8D6, .orientation = .R },
2138 .{ .from = 0x1E900, .to = 0x1E943, .orientation = .R },
2139 .{ .from = 0x1E944, .to = 0x1E94A, .orientation = .R },
2140 .{ .from = 0x1E94B, .to = 0x1E94B, .orientation = .R },
2141 .{ .from = 0x1E950, .to = 0x1E959, .orientation = .R },
2142 .{ .from = 0x1E95E, .to = 0x1E95F, .orientation = .R },
2143 .{ .from = 0x1EC71, .to = 0x1ECAB, .orientation = .R },
2144 .{ .from = 0x1ECAC, .to = 0x1ECAC, .orientation = .R },
2145 .{ .from = 0x1ECAD, .to = 0x1ECAF, .orientation = .R },
2146 .{ .from = 0x1ECB0, .to = 0x1ECB0, .orientation = .R },
2147 .{ .from = 0x1ECB1, .to = 0x1ECB4, .orientation = .R },
2148 .{ .from = 0x1ED01, .to = 0x1ED2D, .orientation = .R },
2149 .{ .from = 0x1ED2E, .to = 0x1ED2E, .orientation = .R },
2150 .{ .from = 0x1ED2F, .to = 0x1ED3D, .orientation = .R },
2151 .{ .from = 0x1EE00, .to = 0x1EE03, .orientation = .R },
2152 .{ .from = 0x1EE05, .to = 0x1EE1F, .orientation = .R },
2153 .{ .from = 0x1EE21, .to = 0x1EE22, .orientation = .R },
2154 .{ .from = 0x1EE24, .to = 0x1EE24, .orientation = .R },
2155 .{ .from = 0x1EE27, .to = 0x1EE27, .orientation = .R },
2156 .{ .from = 0x1EE29, .to = 0x1EE32, .orientation = .R },
2157 .{ .from = 0x1EE34, .to = 0x1EE37, .orientation = .R },
2158 .{ .from = 0x1EE39, .to = 0x1EE39, .orientation = .R },
2159 .{ .from = 0x1EE3B, .to = 0x1EE3B, .orientation = .R },
2160 .{ .from = 0x1EE42, .to = 0x1EE42, .orientation = .R },
2161 .{ .from = 0x1EE47, .to = 0x1EE47, .orientation = .R },
2162 .{ .from = 0x1EE49, .to = 0x1EE49, .orientation = .R },
2163 .{ .from = 0x1EE4B, .to = 0x1EE4B, .orientation = .R },
2164 .{ .from = 0x1EE4D, .to = 0x1EE4F, .orientation = .R },
2165 .{ .from = 0x1EE51, .to = 0x1EE52, .orientation = .R },
2166 .{ .from = 0x1EE54, .to = 0x1EE54, .orientation = .R },
2167 .{ .from = 0x1EE57, .to = 0x1EE57, .orientation = .R },
2168 .{ .from = 0x1EE59, .to = 0x1EE59, .orientation = .R },
2169 .{ .from = 0x1EE5B, .to = 0x1EE5B, .orientation = .R },
2170 .{ .from = 0x1EE5D, .to = 0x1EE5D, .orientation = .R },
2171 .{ .from = 0x1EE5F, .to = 0x1EE5F, .orientation = .R },
2172 .{ .from = 0x1EE61, .to = 0x1EE62, .orientation = .R },
2173 .{ .from = 0x1EE64, .to = 0x1EE64, .orientation = .R },
2174 .{ .from = 0x1EE67, .to = 0x1EE6A, .orientation = .R },
2175 .{ .from = 0x1EE6C, .to = 0x1EE72, .orientation = .R },
2176 .{ .from = 0x1EE74, .to = 0x1EE77, .orientation = .R },
2177 .{ .from = 0x1EE79, .to = 0x1EE7C, .orientation = .R },
2178 .{ .from = 0x1EE7E, .to = 0x1EE7E, .orientation = .R },
2179 .{ .from = 0x1EE80, .to = 0x1EE89, .orientation = .R },
2180 .{ .from = 0x1EE8B, .to = 0x1EE9B, .orientation = .R },
2181 .{ .from = 0x1EEA1, .to = 0x1EEA3, .orientation = .R },
2182 .{ .from = 0x1EEA5, .to = 0x1EEA9, .orientation = .R },
2183 .{ .from = 0x1EEAB, .to = 0x1EEBB, .orientation = .R },
2184 .{ .from = 0x1EEF0, .to = 0x1EEF1, .orientation = .R },
2185 .{ .from = 0x1F000, .to = 0x1F02B, .orientation = .U },
2186 .{ .from = 0x1F02C, .to = 0x1F02F, .orientation = .U },
2187 .{ .from = 0x1F030, .to = 0x1F093, .orientation = .U },
2188 .{ .from = 0x1F094, .to = 0x1F09F, .orientation = .U },
2189 .{ .from = 0x1F0A0, .to = 0x1F0AE, .orientation = .U },
2190 .{ .from = 0x1F0AF, .to = 0x1F0B0, .orientation = .U },
2191 .{ .from = 0x1F0B1, .to = 0x1F0BF, .orientation = .U },
2192 .{ .from = 0x1F0C0, .to = 0x1F0C0, .orientation = .U },
2193 .{ .from = 0x1F0C1, .to = 0x1F0CF, .orientation = .U },
2194 .{ .from = 0x1F0D0, .to = 0x1F0D0, .orientation = .U },
2195 .{ .from = 0x1F0D1, .to = 0x1F0F5, .orientation = .U },
2196 .{ .from = 0x1F0F6, .to = 0x1F0FF, .orientation = .U },
2197 .{ .from = 0x1F100, .to = 0x1F10C, .orientation = .U },
2198 .{ .from = 0x1F10D, .to = 0x1F1AD, .orientation = .U },
2199 .{ .from = 0x1F1AE, .to = 0x1F1E5, .orientation = .U },
2200 .{ .from = 0x1F1E6, .to = 0x1F1FF, .orientation = .U },
2201 .{ .from = 0x1F200, .to = 0x1F201, .orientation = .Tu },
2202 .{ .from = 0x1F202, .to = 0x1F202, .orientation = .U },
2203 .{ .from = 0x1F203, .to = 0x1F20F, .orientation = .U },
2204 .{ .from = 0x1F210, .to = 0x1F23B, .orientation = .U },
2205 .{ .from = 0x1F23C, .to = 0x1F23F, .orientation = .U },
2206 .{ .from = 0x1F240, .to = 0x1F248, .orientation = .U },
2207 .{ .from = 0x1F249, .to = 0x1F24F, .orientation = .U },
2208 .{ .from = 0x1F250, .to = 0x1F251, .orientation = .U },
2209 .{ .from = 0x1F252, .to = 0x1F25F, .orientation = .U },
2210 .{ .from = 0x1F260, .to = 0x1F265, .orientation = .U },
2211 .{ .from = 0x1F266, .to = 0x1F2FF, .orientation = .U },
2212 .{ .from = 0x1F300, .to = 0x1F3FA, .orientation = .U },
2213 .{ .from = 0x1F3FB, .to = 0x1F3FF, .orientation = .U },
2214 .{ .from = 0x1F400, .to = 0x1F5FF, .orientation = .U },
2215 .{ .from = 0x1F600, .to = 0x1F64F, .orientation = .U },
2216 .{ .from = 0x1F650, .to = 0x1F67F, .orientation = .U },
2217 .{ .from = 0x1F680, .to = 0x1F6D7, .orientation = .U },
2218 .{ .from = 0x1F6D8, .to = 0x1F6DF, .orientation = .U },
2219 .{ .from = 0x1F6E0, .to = 0x1F6EC, .orientation = .U },
2220 .{ .from = 0x1F6ED, .to = 0x1F6EF, .orientation = .U },
2221 .{ .from = 0x1F6F0, .to = 0x1F6FC, .orientation = .U },
2222 .{ .from = 0x1F6FD, .to = 0x1F6FF, .orientation = .U },
2223 .{ .from = 0x1F700, .to = 0x1F773, .orientation = .U },
2224 .{ .from = 0x1F774, .to = 0x1F77F, .orientation = .U },
2225 .{ .from = 0x1F780, .to = 0x1F7D8, .orientation = .U },
2226 .{ .from = 0x1F7D9, .to = 0x1F7DF, .orientation = .U },
2227 .{ .from = 0x1F7E0, .to = 0x1F7EB, .orientation = .U },
2228 .{ .from = 0x1F7EC, .to = 0x1F7FF, .orientation = .U },
2229 .{ .from = 0x1F800, .to = 0x1F80B, .orientation = .R },
2230 .{ .from = 0x1F810, .to = 0x1F847, .orientation = .R },
2231 .{ .from = 0x1F850, .to = 0x1F859, .orientation = .R },
2232 .{ .from = 0x1F860, .to = 0x1F887, .orientation = .R },
2233 .{ .from = 0x1F890, .to = 0x1F8AD, .orientation = .R },
2234 .{ .from = 0x1F8B0, .to = 0x1F8B1, .orientation = .R },
2235 .{ .from = 0x1F900, .to = 0x1F978, .orientation = .U },
2236 .{ .from = 0x1F979, .to = 0x1F979, .orientation = .U },
2237 .{ .from = 0x1F97A, .to = 0x1F9CB, .orientation = .U },
2238 .{ .from = 0x1F9CC, .to = 0x1F9CC, .orientation = .U },
2239 .{ .from = 0x1F9CD, .to = 0x1F9FF, .orientation = .U },
2240 .{ .from = 0x1FA00, .to = 0x1FA53, .orientation = .U },
2241 .{ .from = 0x1FA54, .to = 0x1FA5F, .orientation = .U },
2242 .{ .from = 0x1FA60, .to = 0x1FA6D, .orientation = .U },
2243 .{ .from = 0x1FA6E, .to = 0x1FA6F, .orientation = .U },
2244 .{ .from = 0x1FA70, .to = 0x1FA74, .orientation = .U },
2245 .{ .from = 0x1FA75, .to = 0x1FA77, .orientation = .U },
2246 .{ .from = 0x1FA78, .to = 0x1FA7A, .orientation = .U },
2247 .{ .from = 0x1FA7B, .to = 0x1FA7F, .orientation = .U },
2248 .{ .from = 0x1FA80, .to = 0x1FA86, .orientation = .U },
2249 .{ .from = 0x1FA87, .to = 0x1FA8F, .orientation = .U },
2250 .{ .from = 0x1FA90, .to = 0x1FAA8, .orientation = .U },
2251 .{ .from = 0x1FAA9, .to = 0x1FAAF, .orientation = .U },
2252 .{ .from = 0x1FAB0, .to = 0x1FAB6, .orientation = .U },
2253 .{ .from = 0x1FAB7, .to = 0x1FABF, .orientation = .U },
2254 .{ .from = 0x1FAC0, .to = 0x1FAC2, .orientation = .U },
2255 .{ .from = 0x1FAC3, .to = 0x1FACF, .orientation = .U },
2256 .{ .from = 0x1FAD0, .to = 0x1FAD6, .orientation = .U },
2257 .{ .from = 0x1FAD7, .to = 0x1FAFF, .orientation = .U },
2258 .{ .from = 0x1FB00, .to = 0x1FB92, .orientation = .R },
2259 .{ .from = 0x1FB94, .to = 0x1FBCA, .orientation = .R },
2260 .{ .from = 0x1FBF0, .to = 0x1FBF9, .orientation = .R },
2261 .{ .from = 0x20000, .to = 0x2A6DD, .orientation = .U },
2262 .{ .from = 0x2A6DE, .to = 0x2A6FF, .orientation = .U },
2263 .{ .from = 0x2A700, .to = 0x2B734, .orientation = .U },
2264 .{ .from = 0x2B735, .to = 0x2B73F, .orientation = .U },
2265 .{ .from = 0x2B740, .to = 0x2B81D, .orientation = .U },
2266 .{ .from = 0x2B81E, .to = 0x2B81F, .orientation = .U },
2267 .{ .from = 0x2B820, .to = 0x2CEA1, .orientation = .U },
2268 .{ .from = 0x2CEA2, .to = 0x2CEAF, .orientation = .U },
2269 .{ .from = 0x2CEB0, .to = 0x2EBE0, .orientation = .U },
2270 .{ .from = 0x2EBE1, .to = 0x2F7FF, .orientation = .U },
2271 .{ .from = 0x2F800, .to = 0x2FA1D, .orientation = .U },
2272 .{ .from = 0x2FA1E, .to = 0x2FFFD, .orientation = .U },
2273 .{ .from = 0x30000, .to = 0x3134A, .orientation = .U },
2274 .{ .from = 0x3134B, .to = 0x3134F, .orientation = .U },
2275 .{ .from = 0x31350, .to = 0x3FFFD, .orientation = .U },
2276 .{ .from = 0xE0001, .to = 0xE0001, .orientation = .R },
2277 .{ .from = 0xE0020, .to = 0xE007F, .orientation = .R },
2278 .{ .from = 0xE0100, .to = 0xE01EF, .orientation = .R },
2279 .{ .from = 0xF0000, .to = 0xFFFFD, .orientation = .U },
2280 .{ .from = 0x100000, .to = 0x10FFFD, .orientation = .U },
2281};