1% uninames.red                             Copyright (C) 2014 Codemist Ltd
2
3
4% $Id: uninames.h 2888 2014-12-28 10:36:57Z arthurcnorman $
5
6
7%**************************************************************************
8%* Copyright (C) 2014, Codemist Ltd.                     A C Norman       *
9%*                                                                        *
10%* Redistribution and use in source and binary forms, with or without     *
11%* modification, are permitted provided that the following conditions are *
12%* met:                                                                   *
13%*                                                                        *
14%*     * Redistributions of source code must retain the relevant          *
15%*       copyright notice, this list of conditions and the following      *
16%*       disclaimer.                                                      *
17%*     * Redistributions in binary form must reproduce the above          *
18%*       copyright notice, this list of conditions and the following      *
19%*       disclaimer in the documentation and/or other materials provided  *
20%*       with the distribution.                                           *
21%*                                                                        *
22%* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS    *
23%* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT      *
24%* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS      *
25%* FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE         *
26%* COPYRIGHT OWNERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,   *
27%* INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,   *
28%* BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS  *
29%* OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND *
30%* ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR  *
31%* TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF     *
32%* THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH   *
33%* DAMAGE.                                                                *
34%**************************************************************************
35
36% This file is derived from one made available by the Unicode Formum.
37% The Unicode character name list is from the Unicode web site and
38% usage rights are as described at
39%           http://www.unicode.org/copyright.html
40% Their notice reads...
41%
42% COPYRIGHT AND PERMISSION NOTICE
43%
44% Copyright  1991-2014 Unicode, Inc. All rights reserved.
45% Distributed under the Terms of Use in
46% http://www.unicode.org/copyright.html.
47%
48% Permission is hereby granted, free of charge, to any person obtaining
49% a copy of the Unicode data files and any associated documentation
50% (the "Data Files") or Unicode software and any associated documentation
51% (the "Software") to deal in the Data Files or Software
52% without restriction, including without limitation the rights to use,
53% copy, modify, merge, publish, distribute, and/or sell copies of
54% the Data Files or Software, and to permit persons to whom the Data Files
55% or Software are furnished to do so, provided that
56% (a) this copyright and permission notice appear with all copies
57% of the Data Files or Software,
58% (b) this copyright and permission notice appear in associated
59% documentation, and
60% (c) there is clear notice in each modified Data File or in the Software
61% as well as in the documentation associated with the Data File(s) or
62% Software that the data or software has been modified.
63%
64% THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF
65% ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE
66% WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
67% NONINFRINGEMENT OF THIRD PARTY RIGHTS.
68% IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS
69% NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL
70% DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE,
71% DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
72% TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
73% PERFORMANCE OF THE DATA FILES OR SOFTWARE.
74%
75% Except as contained in this notice, the name of a copyright holder
76% shall not be used in advertising or otherwise to promote the sale,
77% use or other dealings in these Data Files or Software without prior
78% written authorization of the copyright holder.
79%
80
81
82% Here is my statement about modification:
83%
84% These should be ALL the Unicode characters in existence at the time
85% of creation of this file. Names have been adjusted by replacing spaces
86% and hyphens with underscores and removing a few "<>" marks, so as to
87% leave names acceptable to C/C++.
88
89<<
90put('SPACE, 'codepoint, 0x0020);
91put('EXCLAMATION_MARK, 'codepoint, 0x0021);
92put('QUOTATION_MARK, 'codepoint, 0x0022);
93put('NUMBER_SIGN, 'codepoint, 0x0023);
94put('DOLLAR_SIGN, 'codepoint, 0x0024);
95put('PERCENT_SIGN, 'codepoint, 0x0025);
96put('AMPERSAND, 'codepoint, 0x0026);
97put('APOSTROPHE, 'codepoint, 0x0027);
98put('LEFT_PARENTHESIS, 'codepoint, 0x0028);
99put('RIGHT_PARENTHESIS, 'codepoint, 0x0029);
100put('ASTERISK, 'codepoint, 0x002A);
101put('PLUS_SIGN, 'codepoint, 0x002B);
102put('COMMA, 'codepoint, 0x002C);
103put('HYPHEN_MINUS, 'codepoint, 0x002D);
104put('FULL_STOP, 'codepoint, 0x002E);
105put('SOLIDUS, 'codepoint, 0x002F);
106put('DIGIT_ZERO, 'codepoint, 0x0030);
107put('DIGIT_ONE, 'codepoint, 0x0031);
108put('DIGIT_TWO, 'codepoint, 0x0032);
109put('DIGIT_THREE, 'codepoint, 0x0033);
110put('DIGIT_FOUR, 'codepoint, 0x0034);
111put('DIGIT_FIVE, 'codepoint, 0x0035);
112put('DIGIT_SIX, 'codepoint, 0x0036);
113put('DIGIT_SEVEN, 'codepoint, 0x0037);
114put('DIGIT_EIGHT, 'codepoint, 0x0038);
115put('DIGIT_NINE, 'codepoint, 0x0039);
116put('COLON, 'codepoint, 0x003A);
117put('SEMICOLON, 'codepoint, 0x003B);
118put('LESS_THAN_SIGN, 'codepoint, 0x003C);
119put('EQUALS_SIGN, 'codepoint, 0x003D);
120put('GREATER_THAN_SIGN, 'codepoint, 0x003E);
121put('QUESTION_MARK, 'codepoint, 0x003F);
122put('COMMERCIAL_AT, 'codepoint, 0x0040);
123put('LATIN_CAPITAL_LETTER_A, 'codepoint, 0x0041);
124put('LATIN_CAPITAL_LETTER_B, 'codepoint, 0x0042);
125put('LATIN_CAPITAL_LETTER_C, 'codepoint, 0x0043);
126put('LATIN_CAPITAL_LETTER_D, 'codepoint, 0x0044);
127put('LATIN_CAPITAL_LETTER_E, 'codepoint, 0x0045);
128put('LATIN_CAPITAL_LETTER_F, 'codepoint, 0x0046);
129put('LATIN_CAPITAL_LETTER_G, 'codepoint, 0x0047);
130put('LATIN_CAPITAL_LETTER_H, 'codepoint, 0x0048);
131put('LATIN_CAPITAL_LETTER_I, 'codepoint, 0x0049);
132put('LATIN_CAPITAL_LETTER_J, 'codepoint, 0x004A);
133put('LATIN_CAPITAL_LETTER_K, 'codepoint, 0x004B);
134put('LATIN_CAPITAL_LETTER_L, 'codepoint, 0x004C);
135put('LATIN_CAPITAL_LETTER_M, 'codepoint, 0x004D);
136put('LATIN_CAPITAL_LETTER_N, 'codepoint, 0x004E);
137put('LATIN_CAPITAL_LETTER_O, 'codepoint, 0x004F);
138put('LATIN_CAPITAL_LETTER_P, 'codepoint, 0x0050);
139put('LATIN_CAPITAL_LETTER_Q, 'codepoint, 0x0051);
140put('LATIN_CAPITAL_LETTER_R, 'codepoint, 0x0052);
141put('LATIN_CAPITAL_LETTER_S, 'codepoint, 0x0053);
142put('LATIN_CAPITAL_LETTER_T, 'codepoint, 0x0054);
143put('LATIN_CAPITAL_LETTER_U, 'codepoint, 0x0055);
144put('LATIN_CAPITAL_LETTER_V, 'codepoint, 0x0056);
145put('LATIN_CAPITAL_LETTER_W, 'codepoint, 0x0057);
146put('LATIN_CAPITAL_LETTER_X, 'codepoint, 0x0058);
147put('LATIN_CAPITAL_LETTER_Y, 'codepoint, 0x0059);
148put('LATIN_CAPITAL_LETTER_Z, 'codepoint, 0x005A);
149put('LEFT_SQUARE_BRACKET, 'codepoint, 0x005B);
150put('REVERSE_SOLIDUS, 'codepoint, 0x005C);
151put('RIGHT_SQUARE_BRACKET, 'codepoint, 0x005D);
152put('CIRCUMFLEX_ACCENT, 'codepoint, 0x005E);
153put('LOW_LINE, 'codepoint, 0x005F);
154put('GRAVE_ACCENT, 'codepoint, 0x0060);
155put('LATIN_SMALL_LETTER_A, 'codepoint, 0x0061);
156put('LATIN_SMALL_LETTER_B, 'codepoint, 0x0062);
157put('LATIN_SMALL_LETTER_C, 'codepoint, 0x0063);
158put('LATIN_SMALL_LETTER_D, 'codepoint, 0x0064);
159put('LATIN_SMALL_LETTER_E, 'codepoint, 0x0065);
160put('LATIN_SMALL_LETTER_F, 'codepoint, 0x0066);
161put('LATIN_SMALL_LETTER_G, 'codepoint, 0x0067);
162put('LATIN_SMALL_LETTER_H, 'codepoint, 0x0068);
163put('LATIN_SMALL_LETTER_I, 'codepoint, 0x0069);
164put('LATIN_SMALL_LETTER_J, 'codepoint, 0x006A);
165put('LATIN_SMALL_LETTER_K, 'codepoint, 0x006B);
166put('LATIN_SMALL_LETTER_L, 'codepoint, 0x006C);
167put('LATIN_SMALL_LETTER_M, 'codepoint, 0x006D);
168put('LATIN_SMALL_LETTER_N, 'codepoint, 0x006E);
169put('LATIN_SMALL_LETTER_O, 'codepoint, 0x006F);
170put('LATIN_SMALL_LETTER_P, 'codepoint, 0x0070);
171put('LATIN_SMALL_LETTER_Q, 'codepoint, 0x0071);
172put('LATIN_SMALL_LETTER_R, 'codepoint, 0x0072);
173put('LATIN_SMALL_LETTER_S, 'codepoint, 0x0073);
174put('LATIN_SMALL_LETTER_T, 'codepoint, 0x0074);
175put('LATIN_SMALL_LETTER_U, 'codepoint, 0x0075);
176put('LATIN_SMALL_LETTER_V, 'codepoint, 0x0076);
177put('LATIN_SMALL_LETTER_W, 'codepoint, 0x0077);
178put('LATIN_SMALL_LETTER_X, 'codepoint, 0x0078);
179put('LATIN_SMALL_LETTER_Y, 'codepoint, 0x0079);
180put('LATIN_SMALL_LETTER_Z, 'codepoint, 0x007A);
181put('LEFT_CURLY_BRACKET, 'codepoint, 0x007B);
182put('VERTICAL_LINE, 'codepoint, 0x007C);
183put('RIGHT_CURLY_BRACKET, 'codepoint, 0x007D);
184put('TILDE, 'codepoint, 0x007E);
185put('NO_BREAK_SPACE, 'codepoint, 0x00A0);
186put('INVERTED_EXCLAMATION_MARK, 'codepoint, 0x00A1);
187put('CENT_SIGN, 'codepoint, 0x00A2);
188put('POUND_SIGN, 'codepoint, 0x00A3);
189put('CURRENCY_SIGN, 'codepoint, 0x00A4);
190put('YEN_SIGN, 'codepoint, 0x00A5);
191put('BROKEN_BAR, 'codepoint, 0x00A6);
192put('SECTION_SIGN, 'codepoint, 0x00A7);
193put('DIAERESIS, 'codepoint, 0x00A8);
194put('COPYRIGHT_SIGN, 'codepoint, 0x00A9);
195put('FEMININE_ORDINAL_INDICATOR, 'codepoint, 0x00AA);
196put('LEFT_POINTING_DOUBLE_ANGLE_QUOTATION_MARK, 'codepoint, 0x00AB);
197put('NOT_SIGN, 'codepoint, 0x00AC);
198put('SOFT_HYPHEN, 'codepoint, 0x00AD);
199put('REGISTERED_SIGN, 'codepoint, 0x00AE);
200put('MACRON, 'codepoint, 0x00AF);
201put('DEGREE_SIGN, 'codepoint, 0x00B0);
202put('PLUS_MINUS_SIGN, 'codepoint, 0x00B1);
203put('SUPERSCRIPT_TWO, 'codepoint, 0x00B2);
204put('SUPERSCRIPT_THREE, 'codepoint, 0x00B3);
205put('ACUTE_ACCENT, 'codepoint, 0x00B4);
206put('MICRO_SIGN, 'codepoint, 0x00B5);
207put('PILCROW_SIGN, 'codepoint, 0x00B6);
208put('MIDDLE_DOT, 'codepoint, 0x00B7);
209put('CEDILLA, 'codepoint, 0x00B8);
210put('SUPERSCRIPT_ONE, 'codepoint, 0x00B9);
211put('MASCULINE_ORDINAL_INDICATOR, 'codepoint, 0x00BA);
212put('RIGHT_POINTING_DOUBLE_ANGLE_QUOTATION_MARK, 'codepoint, 0x00BB);
213put('VULGAR_FRACTION_ONE_QUARTER, 'codepoint, 0x00BC);
214put('VULGAR_FRACTION_ONE_HALF, 'codepoint, 0x00BD);
215put('VULGAR_FRACTION_THREE_QUARTERS, 'codepoint, 0x00BE);
216put('INVERTED_QUESTION_MARK, 'codepoint, 0x00BF);
217put('LATIN_CAPITAL_LETTER_A_WITH_GRAVE, 'codepoint, 0x00C0);
218put('LATIN_CAPITAL_LETTER_A_WITH_ACUTE, 'codepoint, 0x00C1);
219put('LATIN_CAPITAL_LETTER_A_WITH_CIRCUMFLEX, 'codepoint, 0x00C2);
220put('LATIN_CAPITAL_LETTER_A_WITH_TILDE, 'codepoint, 0x00C3);
221put('LATIN_CAPITAL_LETTER_A_WITH_DIAERESIS, 'codepoint, 0x00C4);
222put('LATIN_CAPITAL_LETTER_A_WITH_RING_ABOVE, 'codepoint, 0x00C5);
223put('LATIN_CAPITAL_LETTER_AE, 'codepoint, 0x00C6);
224put('LATIN_CAPITAL_LETTER_C_WITH_CEDILLA, 'codepoint, 0x00C7);
225put('LATIN_CAPITAL_LETTER_E_WITH_GRAVE, 'codepoint, 0x00C8);
226put('LATIN_CAPITAL_LETTER_E_WITH_ACUTE, 'codepoint, 0x00C9);
227put('LATIN_CAPITAL_LETTER_E_WITH_CIRCUMFLEX, 'codepoint, 0x00CA);
228put('LATIN_CAPITAL_LETTER_E_WITH_DIAERESIS, 'codepoint, 0x00CB);
229put('LATIN_CAPITAL_LETTER_I_WITH_GRAVE, 'codepoint, 0x00CC);
230put('LATIN_CAPITAL_LETTER_I_WITH_ACUTE, 'codepoint, 0x00CD);
231put('LATIN_CAPITAL_LETTER_I_WITH_CIRCUMFLEX, 'codepoint, 0x00CE);
232put('LATIN_CAPITAL_LETTER_I_WITH_DIAERESIS, 'codepoint, 0x00CF);
233put('LATIN_CAPITAL_LETTER_ETH, 'codepoint, 0x00D0);
234put('LATIN_CAPITAL_LETTER_N_WITH_TILDE, 'codepoint, 0x00D1);
235put('LATIN_CAPITAL_LETTER_O_WITH_GRAVE, 'codepoint, 0x00D2);
236put('LATIN_CAPITAL_LETTER_O_WITH_ACUTE, 'codepoint, 0x00D3);
237put('LATIN_CAPITAL_LETTER_O_WITH_CIRCUMFLEX, 'codepoint, 0x00D4);
238put('LATIN_CAPITAL_LETTER_O_WITH_TILDE, 'codepoint, 0x00D5);
239put('LATIN_CAPITAL_LETTER_O_WITH_DIAERESIS, 'codepoint, 0x00D6);
240put('MULTIPLICATION_SIGN, 'codepoint, 0x00D7);
241put('LATIN_CAPITAL_LETTER_O_WITH_STROKE, 'codepoint, 0x00D8);
242put('LATIN_CAPITAL_LETTER_U_WITH_GRAVE, 'codepoint, 0x00D9);
243put('LATIN_CAPITAL_LETTER_U_WITH_ACUTE, 'codepoint, 0x00DA);
244put('LATIN_CAPITAL_LETTER_U_WITH_CIRCUMFLEX, 'codepoint, 0x00DB);
245put('LATIN_CAPITAL_LETTER_U_WITH_DIAERESIS, 'codepoint, 0x00DC);
246put('LATIN_CAPITAL_LETTER_Y_WITH_ACUTE, 'codepoint, 0x00DD);
247put('LATIN_CAPITAL_LETTER_THORN, 'codepoint, 0x00DE);
248put('LATIN_SMALL_LETTER_SHARP_S, 'codepoint, 0x00DF);
249put('LATIN_SMALL_LETTER_A_WITH_GRAVE, 'codepoint, 0x00E0);
250put('LATIN_SMALL_LETTER_A_WITH_ACUTE, 'codepoint, 0x00E1);
251put('LATIN_SMALL_LETTER_A_WITH_CIRCUMFLEX, 'codepoint, 0x00E2);
252put('LATIN_SMALL_LETTER_A_WITH_TILDE, 'codepoint, 0x00E3);
253put('LATIN_SMALL_LETTER_A_WITH_DIAERESIS, 'codepoint, 0x00E4);
254put('LATIN_SMALL_LETTER_A_WITH_RING_ABOVE, 'codepoint, 0x00E5);
255put('LATIN_SMALL_LETTER_AE, 'codepoint, 0x00E6);
256put('LATIN_SMALL_LETTER_C_WITH_CEDILLA, 'codepoint, 0x00E7);
257put('LATIN_SMALL_LETTER_E_WITH_GRAVE, 'codepoint, 0x00E8);
258put('LATIN_SMALL_LETTER_E_WITH_ACUTE, 'codepoint, 0x00E9);
259put('LATIN_SMALL_LETTER_E_WITH_CIRCUMFLEX, 'codepoint, 0x00EA);
260put('LATIN_SMALL_LETTER_E_WITH_DIAERESIS, 'codepoint, 0x00EB);
261put('LATIN_SMALL_LETTER_I_WITH_GRAVE, 'codepoint, 0x00EC);
262put('LATIN_SMALL_LETTER_I_WITH_ACUTE, 'codepoint, 0x00ED);
263put('LATIN_SMALL_LETTER_I_WITH_CIRCUMFLEX, 'codepoint, 0x00EE);
264put('LATIN_SMALL_LETTER_I_WITH_DIAERESIS, 'codepoint, 0x00EF);
265put('LATIN_SMALL_LETTER_ETH, 'codepoint, 0x00F0);
266put('LATIN_SMALL_LETTER_N_WITH_TILDE, 'codepoint, 0x00F1);
267put('LATIN_SMALL_LETTER_O_WITH_GRAVE, 'codepoint, 0x00F2);
268put('LATIN_SMALL_LETTER_O_WITH_ACUTE, 'codepoint, 0x00F3);
269put('LATIN_SMALL_LETTER_O_WITH_CIRCUMFLEX, 'codepoint, 0x00F4);
270put('LATIN_SMALL_LETTER_O_WITH_TILDE, 'codepoint, 0x00F5);
271put('LATIN_SMALL_LETTER_O_WITH_DIAERESIS, 'codepoint, 0x00F6);
272put('DIVISION_SIGN, 'codepoint, 0x00F7);
273put('LATIN_SMALL_LETTER_O_WITH_STROKE, 'codepoint, 0x00F8);
274put('LATIN_SMALL_LETTER_U_WITH_GRAVE, 'codepoint, 0x00F9);
275put('LATIN_SMALL_LETTER_U_WITH_ACUTE, 'codepoint, 0x00FA);
276put('LATIN_SMALL_LETTER_U_WITH_CIRCUMFLEX, 'codepoint, 0x00FB);
277put('LATIN_SMALL_LETTER_U_WITH_DIAERESIS, 'codepoint, 0x00FC);
278put('LATIN_SMALL_LETTER_Y_WITH_ACUTE, 'codepoint, 0x00FD);
279put('LATIN_SMALL_LETTER_THORN, 'codepoint, 0x00FE);
280put('LATIN_SMALL_LETTER_Y_WITH_DIAERESIS, 'codepoint, 0x00FF);
281put('LATIN_CAPITAL_LETTER_A_WITH_MACRON, 'codepoint, 0x0100);
282put('LATIN_SMALL_LETTER_A_WITH_MACRON, 'codepoint, 0x0101);
283put('LATIN_CAPITAL_LETTER_A_WITH_BREVE, 'codepoint, 0x0102);
284put('LATIN_SMALL_LETTER_A_WITH_BREVE, 'codepoint, 0x0103);
285put('LATIN_CAPITAL_LETTER_A_WITH_OGONEK, 'codepoint, 0x0104);
286put('LATIN_SMALL_LETTER_A_WITH_OGONEK, 'codepoint, 0x0105);
287put('LATIN_CAPITAL_LETTER_C_WITH_ACUTE, 'codepoint, 0x0106);
288put('LATIN_SMALL_LETTER_C_WITH_ACUTE, 'codepoint, 0x0107);
289put('LATIN_CAPITAL_LETTER_C_WITH_CIRCUMFLEX, 'codepoint, 0x0108);
290put('LATIN_SMALL_LETTER_C_WITH_CIRCUMFLEX, 'codepoint, 0x0109);
291put('LATIN_CAPITAL_LETTER_C_WITH_DOT_ABOVE, 'codepoint, 0x010A);
292put('LATIN_SMALL_LETTER_C_WITH_DOT_ABOVE, 'codepoint, 0x010B);
293put('LATIN_CAPITAL_LETTER_C_WITH_CARON, 'codepoint, 0x010C);
294put('LATIN_SMALL_LETTER_C_WITH_CARON, 'codepoint, 0x010D);
295put('LATIN_CAPITAL_LETTER_D_WITH_CARON, 'codepoint, 0x010E);
296put('LATIN_SMALL_LETTER_D_WITH_CARON, 'codepoint, 0x010F);
297put('LATIN_CAPITAL_LETTER_D_WITH_STROKE, 'codepoint, 0x0110);
298put('LATIN_SMALL_LETTER_D_WITH_STROKE, 'codepoint, 0x0111);
299put('LATIN_CAPITAL_LETTER_E_WITH_MACRON, 'codepoint, 0x0112);
300put('LATIN_SMALL_LETTER_E_WITH_MACRON, 'codepoint, 0x0113);
301put('LATIN_CAPITAL_LETTER_E_WITH_BREVE, 'codepoint, 0x0114);
302put('LATIN_SMALL_LETTER_E_WITH_BREVE, 'codepoint, 0x0115);
303put('LATIN_CAPITAL_LETTER_E_WITH_DOT_ABOVE, 'codepoint, 0x0116);
304put('LATIN_SMALL_LETTER_E_WITH_DOT_ABOVE, 'codepoint, 0x0117);
305put('LATIN_CAPITAL_LETTER_E_WITH_OGONEK, 'codepoint, 0x0118);
306put('LATIN_SMALL_LETTER_E_WITH_OGONEK, 'codepoint, 0x0119);
307put('LATIN_CAPITAL_LETTER_E_WITH_CARON, 'codepoint, 0x011A);
308put('LATIN_SMALL_LETTER_E_WITH_CARON, 'codepoint, 0x011B);
309put('LATIN_CAPITAL_LETTER_G_WITH_CIRCUMFLEX, 'codepoint, 0x011C);
310put('LATIN_SMALL_LETTER_G_WITH_CIRCUMFLEX, 'codepoint, 0x011D);
311put('LATIN_CAPITAL_LETTER_G_WITH_BREVE, 'codepoint, 0x011E);
312put('LATIN_SMALL_LETTER_G_WITH_BREVE, 'codepoint, 0x011F);
313put('LATIN_CAPITAL_LETTER_G_WITH_DOT_ABOVE, 'codepoint, 0x0120);
314put('LATIN_SMALL_LETTER_G_WITH_DOT_ABOVE, 'codepoint, 0x0121);
315put('LATIN_CAPITAL_LETTER_G_WITH_CEDILLA, 'codepoint, 0x0122);
316put('LATIN_SMALL_LETTER_G_WITH_CEDILLA, 'codepoint, 0x0123);
317put('LATIN_CAPITAL_LETTER_H_WITH_CIRCUMFLEX, 'codepoint, 0x0124);
318put('LATIN_SMALL_LETTER_H_WITH_CIRCUMFLEX, 'codepoint, 0x0125);
319put('LATIN_CAPITAL_LETTER_H_WITH_STROKE, 'codepoint, 0x0126);
320put('LATIN_SMALL_LETTER_H_WITH_STROKE, 'codepoint, 0x0127);
321put('LATIN_CAPITAL_LETTER_I_WITH_TILDE, 'codepoint, 0x0128);
322put('LATIN_SMALL_LETTER_I_WITH_TILDE, 'codepoint, 0x0129);
323put('LATIN_CAPITAL_LETTER_I_WITH_MACRON, 'codepoint, 0x012A);
324put('LATIN_SMALL_LETTER_I_WITH_MACRON, 'codepoint, 0x012B);
325put('LATIN_CAPITAL_LETTER_I_WITH_BREVE, 'codepoint, 0x012C);
326put('LATIN_SMALL_LETTER_I_WITH_BREVE, 'codepoint, 0x012D);
327put('LATIN_CAPITAL_LETTER_I_WITH_OGONEK, 'codepoint, 0x012E);
328put('LATIN_SMALL_LETTER_I_WITH_OGONEK, 'codepoint, 0x012F);
329put('LATIN_CAPITAL_LETTER_I_WITH_DOT_ABOVE, 'codepoint, 0x0130);
330put('LATIN_SMALL_LETTER_DOTLESS_I, 'codepoint, 0x0131);
331put('LATIN_CAPITAL_LIGATURE_IJ, 'codepoint, 0x0132);
332put('LATIN_SMALL_LIGATURE_IJ, 'codepoint, 0x0133);
333put('LATIN_CAPITAL_LETTER_J_WITH_CIRCUMFLEX, 'codepoint, 0x0134);
334put('LATIN_SMALL_LETTER_J_WITH_CIRCUMFLEX, 'codepoint, 0x0135);
335put('LATIN_CAPITAL_LETTER_K_WITH_CEDILLA, 'codepoint, 0x0136);
336put('LATIN_SMALL_LETTER_K_WITH_CEDILLA, 'codepoint, 0x0137);
337put('LATIN_SMALL_LETTER_KRA, 'codepoint, 0x0138);
338put('LATIN_CAPITAL_LETTER_L_WITH_ACUTE, 'codepoint, 0x0139);
339put('LATIN_SMALL_LETTER_L_WITH_ACUTE, 'codepoint, 0x013A);
340put('LATIN_CAPITAL_LETTER_L_WITH_CEDILLA, 'codepoint, 0x013B);
341put('LATIN_SMALL_LETTER_L_WITH_CEDILLA, 'codepoint, 0x013C);
342put('LATIN_CAPITAL_LETTER_L_WITH_CARON, 'codepoint, 0x013D);
343put('LATIN_SMALL_LETTER_L_WITH_CARON, 'codepoint, 0x013E);
344put('LATIN_CAPITAL_LETTER_L_WITH_MIDDLE_DOT, 'codepoint, 0x013F);
345put('LATIN_SMALL_LETTER_L_WITH_MIDDLE_DOT, 'codepoint, 0x0140);
346put('LATIN_CAPITAL_LETTER_L_WITH_STROKE, 'codepoint, 0x0141);
347put('LATIN_SMALL_LETTER_L_WITH_STROKE, 'codepoint, 0x0142);
348put('LATIN_CAPITAL_LETTER_N_WITH_ACUTE, 'codepoint, 0x0143);
349put('LATIN_SMALL_LETTER_N_WITH_ACUTE, 'codepoint, 0x0144);
350put('LATIN_CAPITAL_LETTER_N_WITH_CEDILLA, 'codepoint, 0x0145);
351put('LATIN_SMALL_LETTER_N_WITH_CEDILLA, 'codepoint, 0x0146);
352put('LATIN_CAPITAL_LETTER_N_WITH_CARON, 'codepoint, 0x0147);
353put('LATIN_SMALL_LETTER_N_WITH_CARON, 'codepoint, 0x0148);
354put('LATIN_SMALL_LETTER_N_PRECEDED_BY_APOSTROPHE, 'codepoint, 0x0149);
355put('LATIN_CAPITAL_LETTER_ENG, 'codepoint, 0x014A);
356put('LATIN_SMALL_LETTER_ENG, 'codepoint, 0x014B);
357put('LATIN_CAPITAL_LETTER_O_WITH_MACRON, 'codepoint, 0x014C);
358put('LATIN_SMALL_LETTER_O_WITH_MACRON, 'codepoint, 0x014D);
359put('LATIN_CAPITAL_LETTER_O_WITH_BREVE, 'codepoint, 0x014E);
360put('LATIN_SMALL_LETTER_O_WITH_BREVE, 'codepoint, 0x014F);
361put('LATIN_CAPITAL_LETTER_O_WITH_DOUBLE_ACUTE, 'codepoint, 0x0150);
362put('LATIN_SMALL_LETTER_O_WITH_DOUBLE_ACUTE, 'codepoint, 0x0151);
363put('LATIN_CAPITAL_LIGATURE_OE, 'codepoint, 0x0152);
364put('LATIN_SMALL_LIGATURE_OE, 'codepoint, 0x0153);
365put('LATIN_CAPITAL_LETTER_R_WITH_ACUTE, 'codepoint, 0x0154);
366put('LATIN_SMALL_LETTER_R_WITH_ACUTE, 'codepoint, 0x0155);
367put('LATIN_CAPITAL_LETTER_R_WITH_CEDILLA, 'codepoint, 0x0156);
368put('LATIN_SMALL_LETTER_R_WITH_CEDILLA, 'codepoint, 0x0157);
369put('LATIN_CAPITAL_LETTER_R_WITH_CARON, 'codepoint, 0x0158);
370put('LATIN_SMALL_LETTER_R_WITH_CARON, 'codepoint, 0x0159);
371put('LATIN_CAPITAL_LETTER_S_WITH_ACUTE, 'codepoint, 0x015A);
372put('LATIN_SMALL_LETTER_S_WITH_ACUTE, 'codepoint, 0x015B);
373put('LATIN_CAPITAL_LETTER_S_WITH_CIRCUMFLEX, 'codepoint, 0x015C);
374put('LATIN_SMALL_LETTER_S_WITH_CIRCUMFLEX, 'codepoint, 0x015D);
375put('LATIN_CAPITAL_LETTER_S_WITH_CEDILLA, 'codepoint, 0x015E);
376put('LATIN_SMALL_LETTER_S_WITH_CEDILLA, 'codepoint, 0x015F);
377put('LATIN_CAPITAL_LETTER_S_WITH_CARON, 'codepoint, 0x0160);
378put('LATIN_SMALL_LETTER_S_WITH_CARON, 'codepoint, 0x0161);
379put('LATIN_CAPITAL_LETTER_T_WITH_CEDILLA, 'codepoint, 0x0162);
380put('LATIN_SMALL_LETTER_T_WITH_CEDILLA, 'codepoint, 0x0163);
381put('LATIN_CAPITAL_LETTER_T_WITH_CARON, 'codepoint, 0x0164);
382put('LATIN_SMALL_LETTER_T_WITH_CARON, 'codepoint, 0x0165);
383put('LATIN_CAPITAL_LETTER_T_WITH_STROKE, 'codepoint, 0x0166);
384put('LATIN_SMALL_LETTER_T_WITH_STROKE, 'codepoint, 0x0167);
385put('LATIN_CAPITAL_LETTER_U_WITH_TILDE, 'codepoint, 0x0168);
386put('LATIN_SMALL_LETTER_U_WITH_TILDE, 'codepoint, 0x0169);
387put('LATIN_CAPITAL_LETTER_U_WITH_MACRON, 'codepoint, 0x016A);
388put('LATIN_SMALL_LETTER_U_WITH_MACRON, 'codepoint, 0x016B);
389put('LATIN_CAPITAL_LETTER_U_WITH_BREVE, 'codepoint, 0x016C);
390put('LATIN_SMALL_LETTER_U_WITH_BREVE, 'codepoint, 0x016D);
391put('LATIN_CAPITAL_LETTER_U_WITH_RING_ABOVE, 'codepoint, 0x016E);
392put('LATIN_SMALL_LETTER_U_WITH_RING_ABOVE, 'codepoint, 0x016F);
393put('LATIN_CAPITAL_LETTER_U_WITH_DOUBLE_ACUTE, 'codepoint, 0x0170);
394put('LATIN_SMALL_LETTER_U_WITH_DOUBLE_ACUTE, 'codepoint, 0x0171);
395put('LATIN_CAPITAL_LETTER_U_WITH_OGONEK, 'codepoint, 0x0172);
396put('LATIN_SMALL_LETTER_U_WITH_OGONEK, 'codepoint, 0x0173);
397put('LATIN_CAPITAL_LETTER_W_WITH_CIRCUMFLEX, 'codepoint, 0x0174);
398put('LATIN_SMALL_LETTER_W_WITH_CIRCUMFLEX, 'codepoint, 0x0175);
399put('LATIN_CAPITAL_LETTER_Y_WITH_CIRCUMFLEX, 'codepoint, 0x0176);
400put('LATIN_SMALL_LETTER_Y_WITH_CIRCUMFLEX, 'codepoint, 0x0177);
401put('LATIN_CAPITAL_LETTER_Y_WITH_DIAERESIS, 'codepoint, 0x0178);
402put('LATIN_CAPITAL_LETTER_Z_WITH_ACUTE, 'codepoint, 0x0179);
403put('LATIN_SMALL_LETTER_Z_WITH_ACUTE, 'codepoint, 0x017A);
404put('LATIN_CAPITAL_LETTER_Z_WITH_DOT_ABOVE, 'codepoint, 0x017B);
405put('LATIN_SMALL_LETTER_Z_WITH_DOT_ABOVE, 'codepoint, 0x017C);
406put('LATIN_CAPITAL_LETTER_Z_WITH_CARON, 'codepoint, 0x017D);
407put('LATIN_SMALL_LETTER_Z_WITH_CARON, 'codepoint, 0x017E);
408put('LATIN_SMALL_LETTER_LONG_S, 'codepoint, 0x017F);
409put('LATIN_SMALL_LETTER_B_WITH_STROKE, 'codepoint, 0x0180);
410put('LATIN_CAPITAL_LETTER_B_WITH_HOOK, 'codepoint, 0x0181);
411put('LATIN_CAPITAL_LETTER_B_WITH_TOPBAR, 'codepoint, 0x0182);
412put('LATIN_SMALL_LETTER_B_WITH_TOPBAR, 'codepoint, 0x0183);
413put('LATIN_CAPITAL_LETTER_TONE_SIX, 'codepoint, 0x0184);
414put('LATIN_SMALL_LETTER_TONE_SIX, 'codepoint, 0x0185);
415put('LATIN_CAPITAL_LETTER_OPEN_O, 'codepoint, 0x0186);
416put('LATIN_CAPITAL_LETTER_C_WITH_HOOK, 'codepoint, 0x0187);
417put('LATIN_SMALL_LETTER_C_WITH_HOOK, 'codepoint, 0x0188);
418put('LATIN_CAPITAL_LETTER_AFRICAN_D, 'codepoint, 0x0189);
419put('LATIN_CAPITAL_LETTER_D_WITH_HOOK, 'codepoint, 0x018A);
420put('LATIN_CAPITAL_LETTER_D_WITH_TOPBAR, 'codepoint, 0x018B);
421put('LATIN_SMALL_LETTER_D_WITH_TOPBAR, 'codepoint, 0x018C);
422put('LATIN_SMALL_LETTER_TURNED_DELTA, 'codepoint, 0x018D);
423put('LATIN_CAPITAL_LETTER_REVERSED_E, 'codepoint, 0x018E);
424put('LATIN_CAPITAL_LETTER_SCHWA, 'codepoint, 0x018F);
425put('LATIN_CAPITAL_LETTER_OPEN_E, 'codepoint, 0x0190);
426put('LATIN_CAPITAL_LETTER_F_WITH_HOOK, 'codepoint, 0x0191);
427put('LATIN_SMALL_LETTER_F_WITH_HOOK, 'codepoint, 0x0192);
428put('LATIN_CAPITAL_LETTER_G_WITH_HOOK, 'codepoint, 0x0193);
429put('LATIN_CAPITAL_LETTER_GAMMA, 'codepoint, 0x0194);
430put('LATIN_SMALL_LETTER_HV, 'codepoint, 0x0195);
431put('LATIN_CAPITAL_LETTER_IOTA, 'codepoint, 0x0196);
432put('LATIN_CAPITAL_LETTER_I_WITH_STROKE, 'codepoint, 0x0197);
433put('LATIN_CAPITAL_LETTER_K_WITH_HOOK, 'codepoint, 0x0198);
434put('LATIN_SMALL_LETTER_K_WITH_HOOK, 'codepoint, 0x0199);
435put('LATIN_SMALL_LETTER_L_WITH_BAR, 'codepoint, 0x019A);
436put('LATIN_SMALL_LETTER_LAMBDA_WITH_STROKE, 'codepoint, 0x019B);
437put('LATIN_CAPITAL_LETTER_TURNED_M, 'codepoint, 0x019C);
438put('LATIN_CAPITAL_LETTER_N_WITH_LEFT_HOOK, 'codepoint, 0x019D);
439put('LATIN_SMALL_LETTER_N_WITH_LONG_RIGHT_LEG, 'codepoint, 0x019E);
440put('LATIN_CAPITAL_LETTER_O_WITH_MIDDLE_TILDE, 'codepoint, 0x019F);
441put('LATIN_CAPITAL_LETTER_O_WITH_HORN, 'codepoint, 0x01A0);
442put('LATIN_SMALL_LETTER_O_WITH_HORN, 'codepoint, 0x01A1);
443put('LATIN_CAPITAL_LETTER_OI, 'codepoint, 0x01A2);
444put('LATIN_SMALL_LETTER_OI, 'codepoint, 0x01A3);
445put('LATIN_CAPITAL_LETTER_P_WITH_HOOK, 'codepoint, 0x01A4);
446put('LATIN_SMALL_LETTER_P_WITH_HOOK, 'codepoint, 0x01A5);
447put('LATIN_LETTER_YR, 'codepoint, 0x01A6);
448put('LATIN_CAPITAL_LETTER_TONE_TWO, 'codepoint, 0x01A7);
449put('LATIN_SMALL_LETTER_TONE_TWO, 'codepoint, 0x01A8);
450put('LATIN_CAPITAL_LETTER_ESH, 'codepoint, 0x01A9);
451put('LATIN_LETTER_REVERSED_ESH_LOOP, 'codepoint, 0x01AA);
452put('LATIN_SMALL_LETTER_T_WITH_PALATAL_HOOK, 'codepoint, 0x01AB);
453put('LATIN_CAPITAL_LETTER_T_WITH_HOOK, 'codepoint, 0x01AC);
454put('LATIN_SMALL_LETTER_T_WITH_HOOK, 'codepoint, 0x01AD);
455put('LATIN_CAPITAL_LETTER_T_WITH_RETROFLEX_HOOK, 'codepoint, 0x01AE);
456put('LATIN_CAPITAL_LETTER_U_WITH_HORN, 'codepoint, 0x01AF);
457put('LATIN_SMALL_LETTER_U_WITH_HORN, 'codepoint, 0x01B0);
458put('LATIN_CAPITAL_LETTER_UPSILON, 'codepoint, 0x01B1);
459put('LATIN_CAPITAL_LETTER_V_WITH_HOOK, 'codepoint, 0x01B2);
460put('LATIN_CAPITAL_LETTER_Y_WITH_HOOK, 'codepoint, 0x01B3);
461put('LATIN_SMALL_LETTER_Y_WITH_HOOK, 'codepoint, 0x01B4);
462put('LATIN_CAPITAL_LETTER_Z_WITH_STROKE, 'codepoint, 0x01B5);
463put('LATIN_SMALL_LETTER_Z_WITH_STROKE, 'codepoint, 0x01B6);
464put('LATIN_CAPITAL_LETTER_EZH, 'codepoint, 0x01B7);
465put('LATIN_CAPITAL_LETTER_EZH_REVERSED, 'codepoint, 0x01B8);
466put('LATIN_SMALL_LETTER_EZH_REVERSED, 'codepoint, 0x01B9);
467put('LATIN_SMALL_LETTER_EZH_WITH_TAIL, 'codepoint, 0x01BA);
468put('LATIN_LETTER_TWO_WITH_STROKE, 'codepoint, 0x01BB);
469put('LATIN_CAPITAL_LETTER_TONE_FIVE, 'codepoint, 0x01BC);
470put('LATIN_SMALL_LETTER_TONE_FIVE, 'codepoint, 0x01BD);
471put('LATIN_LETTER_INVERTED_GLOTTAL_STOP_WITH_STROKE, 'codepoint, 0x01BE);
472put('LATIN_LETTER_WYNN, 'codepoint, 0x01BF);
473put('LATIN_LETTER_DENTAL_CLICK, 'codepoint, 0x01C0);
474put('LATIN_LETTER_LATERAL_CLICK, 'codepoint, 0x01C1);
475put('LATIN_LETTER_ALVEOLAR_CLICK, 'codepoint, 0x01C2);
476put('LATIN_LETTER_RETROFLEX_CLICK, 'codepoint, 0x01C3);
477put('LATIN_CAPITAL_LETTER_DZ_WITH_CARON, 'codepoint, 0x01C4);
478put('LATIN_CAPITAL_LETTER_D_WITH_SMALL_LETTER_Z_WITH_CARON, 'codepoint, 0x01C5);
479put('LATIN_SMALL_LETTER_DZ_WITH_CARON, 'codepoint, 0x01C6);
480put('LATIN_CAPITAL_LETTER_LJ, 'codepoint, 0x01C7);
481put('LATIN_CAPITAL_LETTER_L_WITH_SMALL_LETTER_J, 'codepoint, 0x01C8);
482put('LATIN_SMALL_LETTER_LJ, 'codepoint, 0x01C9);
483put('LATIN_CAPITAL_LETTER_NJ, 'codepoint, 0x01CA);
484put('LATIN_CAPITAL_LETTER_N_WITH_SMALL_LETTER_J, 'codepoint, 0x01CB);
485put('LATIN_SMALL_LETTER_NJ, 'codepoint, 0x01CC);
486put('LATIN_CAPITAL_LETTER_A_WITH_CARON, 'codepoint, 0x01CD);
487put('LATIN_SMALL_LETTER_A_WITH_CARON, 'codepoint, 0x01CE);
488put('LATIN_CAPITAL_LETTER_I_WITH_CARON, 'codepoint, 0x01CF);
489put('LATIN_SMALL_LETTER_I_WITH_CARON, 'codepoint, 0x01D0);
490put('LATIN_CAPITAL_LETTER_O_WITH_CARON, 'codepoint, 0x01D1);
491put('LATIN_SMALL_LETTER_O_WITH_CARON, 'codepoint, 0x01D2);
492put('LATIN_CAPITAL_LETTER_U_WITH_CARON, 'codepoint, 0x01D3);
493put('LATIN_SMALL_LETTER_U_WITH_CARON, 'codepoint, 0x01D4);
494put('LATIN_CAPITAL_LETTER_U_WITH_DIAERESIS_AND_MACRON, 'codepoint, 0x01D5);
495put('LATIN_SMALL_LETTER_U_WITH_DIAERESIS_AND_MACRON, 'codepoint, 0x01D6);
496put('LATIN_CAPITAL_LETTER_U_WITH_DIAERESIS_AND_ACUTE, 'codepoint, 0x01D7);
497put('LATIN_SMALL_LETTER_U_WITH_DIAERESIS_AND_ACUTE, 'codepoint, 0x01D8);
498put('LATIN_CAPITAL_LETTER_U_WITH_DIAERESIS_AND_CARON, 'codepoint, 0x01D9);
499put('LATIN_SMALL_LETTER_U_WITH_DIAERESIS_AND_CARON, 'codepoint, 0x01DA);
500put('LATIN_CAPITAL_LETTER_U_WITH_DIAERESIS_AND_GRAVE, 'codepoint, 0x01DB);
501put('LATIN_SMALL_LETTER_U_WITH_DIAERESIS_AND_GRAVE, 'codepoint, 0x01DC);
502put('LATIN_SMALL_LETTER_TURNED_E, 'codepoint, 0x01DD);
503put('LATIN_CAPITAL_LETTER_A_WITH_DIAERESIS_AND_MACRON, 'codepoint, 0x01DE);
504put('LATIN_SMALL_LETTER_A_WITH_DIAERESIS_AND_MACRON, 'codepoint, 0x01DF);
505put('LATIN_CAPITAL_LETTER_A_WITH_DOT_ABOVE_AND_MACRON, 'codepoint, 0x01E0);
506put('LATIN_SMALL_LETTER_A_WITH_DOT_ABOVE_AND_MACRON, 'codepoint, 0x01E1);
507put('LATIN_CAPITAL_LETTER_AE_WITH_MACRON, 'codepoint, 0x01E2);
508put('LATIN_SMALL_LETTER_AE_WITH_MACRON, 'codepoint, 0x01E3);
509put('LATIN_CAPITAL_LETTER_G_WITH_STROKE, 'codepoint, 0x01E4);
510put('LATIN_SMALL_LETTER_G_WITH_STROKE, 'codepoint, 0x01E5);
511put('LATIN_CAPITAL_LETTER_G_WITH_CARON, 'codepoint, 0x01E6);
512put('LATIN_SMALL_LETTER_G_WITH_CARON, 'codepoint, 0x01E7);
513put('LATIN_CAPITAL_LETTER_K_WITH_CARON, 'codepoint, 0x01E8);
514put('LATIN_SMALL_LETTER_K_WITH_CARON, 'codepoint, 0x01E9);
515put('LATIN_CAPITAL_LETTER_O_WITH_OGONEK, 'codepoint, 0x01EA);
516put('LATIN_SMALL_LETTER_O_WITH_OGONEK, 'codepoint, 0x01EB);
517put('LATIN_CAPITAL_LETTER_O_WITH_OGONEK_AND_MACRON, 'codepoint, 0x01EC);
518put('LATIN_SMALL_LETTER_O_WITH_OGONEK_AND_MACRON, 'codepoint, 0x01ED);
519put('LATIN_CAPITAL_LETTER_EZH_WITH_CARON, 'codepoint, 0x01EE);
520put('LATIN_SMALL_LETTER_EZH_WITH_CARON, 'codepoint, 0x01EF);
521put('LATIN_SMALL_LETTER_J_WITH_CARON, 'codepoint, 0x01F0);
522put('LATIN_CAPITAL_LETTER_DZ, 'codepoint, 0x01F1);
523put('LATIN_CAPITAL_LETTER_D_WITH_SMALL_LETTER_Z, 'codepoint, 0x01F2);
524put('LATIN_SMALL_LETTER_DZ, 'codepoint, 0x01F3);
525put('LATIN_CAPITAL_LETTER_G_WITH_ACUTE, 'codepoint, 0x01F4);
526put('LATIN_SMALL_LETTER_G_WITH_ACUTE, 'codepoint, 0x01F5);
527put('LATIN_CAPITAL_LETTER_HWAIR, 'codepoint, 0x01F6);
528put('LATIN_CAPITAL_LETTER_WYNN, 'codepoint, 0x01F7);
529put('LATIN_CAPITAL_LETTER_N_WITH_GRAVE, 'codepoint, 0x01F8);
530put('LATIN_SMALL_LETTER_N_WITH_GRAVE, 'codepoint, 0x01F9);
531put('LATIN_CAPITAL_LETTER_A_WITH_RING_ABOVE_AND_ACUTE, 'codepoint, 0x01FA);
532put('LATIN_SMALL_LETTER_A_WITH_RING_ABOVE_AND_ACUTE, 'codepoint, 0x01FB);
533put('LATIN_CAPITAL_LETTER_AE_WITH_ACUTE, 'codepoint, 0x01FC);
534put('LATIN_SMALL_LETTER_AE_WITH_ACUTE, 'codepoint, 0x01FD);
535put('LATIN_CAPITAL_LETTER_O_WITH_STROKE_AND_ACUTE, 'codepoint, 0x01FE);
536put('LATIN_SMALL_LETTER_O_WITH_STROKE_AND_ACUTE, 'codepoint, 0x01FF);
537put('LATIN_CAPITAL_LETTER_A_WITH_DOUBLE_GRAVE, 'codepoint, 0x0200);
538put('LATIN_SMALL_LETTER_A_WITH_DOUBLE_GRAVE, 'codepoint, 0x0201);
539put('LATIN_CAPITAL_LETTER_A_WITH_INVERTED_BREVE, 'codepoint, 0x0202);
540put('LATIN_SMALL_LETTER_A_WITH_INVERTED_BREVE, 'codepoint, 0x0203);
541put('LATIN_CAPITAL_LETTER_E_WITH_DOUBLE_GRAVE, 'codepoint, 0x0204);
542put('LATIN_SMALL_LETTER_E_WITH_DOUBLE_GRAVE, 'codepoint, 0x0205);
543put('LATIN_CAPITAL_LETTER_E_WITH_INVERTED_BREVE, 'codepoint, 0x0206);
544put('LATIN_SMALL_LETTER_E_WITH_INVERTED_BREVE, 'codepoint, 0x0207);
545put('LATIN_CAPITAL_LETTER_I_WITH_DOUBLE_GRAVE, 'codepoint, 0x0208);
546put('LATIN_SMALL_LETTER_I_WITH_DOUBLE_GRAVE, 'codepoint, 0x0209);
547put('LATIN_CAPITAL_LETTER_I_WITH_INVERTED_BREVE, 'codepoint, 0x020A);
548put('LATIN_SMALL_LETTER_I_WITH_INVERTED_BREVE, 'codepoint, 0x020B);
549put('LATIN_CAPITAL_LETTER_O_WITH_DOUBLE_GRAVE, 'codepoint, 0x020C);
550put('LATIN_SMALL_LETTER_O_WITH_DOUBLE_GRAVE, 'codepoint, 0x020D);
551put('LATIN_CAPITAL_LETTER_O_WITH_INVERTED_BREVE, 'codepoint, 0x020E);
552put('LATIN_SMALL_LETTER_O_WITH_INVERTED_BREVE, 'codepoint, 0x020F);
553put('LATIN_CAPITAL_LETTER_R_WITH_DOUBLE_GRAVE, 'codepoint, 0x0210);
554put('LATIN_SMALL_LETTER_R_WITH_DOUBLE_GRAVE, 'codepoint, 0x0211);
555put('LATIN_CAPITAL_LETTER_R_WITH_INVERTED_BREVE, 'codepoint, 0x0212);
556put('LATIN_SMALL_LETTER_R_WITH_INVERTED_BREVE, 'codepoint, 0x0213);
557put('LATIN_CAPITAL_LETTER_U_WITH_DOUBLE_GRAVE, 'codepoint, 0x0214);
558put('LATIN_SMALL_LETTER_U_WITH_DOUBLE_GRAVE, 'codepoint, 0x0215);
559put('LATIN_CAPITAL_LETTER_U_WITH_INVERTED_BREVE, 'codepoint, 0x0216);
560put('LATIN_SMALL_LETTER_U_WITH_INVERTED_BREVE, 'codepoint, 0x0217);
561put('LATIN_CAPITAL_LETTER_S_WITH_COMMA_BELOW, 'codepoint, 0x0218);
562put('LATIN_SMALL_LETTER_S_WITH_COMMA_BELOW, 'codepoint, 0x0219);
563put('LATIN_CAPITAL_LETTER_T_WITH_COMMA_BELOW, 'codepoint, 0x021A);
564put('LATIN_SMALL_LETTER_T_WITH_COMMA_BELOW, 'codepoint, 0x021B);
565put('LATIN_CAPITAL_LETTER_YOGH, 'codepoint, 0x021C);
566put('LATIN_SMALL_LETTER_YOGH, 'codepoint, 0x021D);
567put('LATIN_CAPITAL_LETTER_H_WITH_CARON, 'codepoint, 0x021E);
568put('LATIN_SMALL_LETTER_H_WITH_CARON, 'codepoint, 0x021F);
569put('LATIN_CAPITAL_LETTER_N_WITH_LONG_RIGHT_LEG, 'codepoint, 0x0220);
570put('LATIN_SMALL_LETTER_D_WITH_CURL, 'codepoint, 0x0221);
571put('LATIN_CAPITAL_LETTER_OU, 'codepoint, 0x0222);
572put('LATIN_SMALL_LETTER_OU, 'codepoint, 0x0223);
573put('LATIN_CAPITAL_LETTER_Z_WITH_HOOK, 'codepoint, 0x0224);
574put('LATIN_SMALL_LETTER_Z_WITH_HOOK, 'codepoint, 0x0225);
575put('LATIN_CAPITAL_LETTER_A_WITH_DOT_ABOVE, 'codepoint, 0x0226);
576put('LATIN_SMALL_LETTER_A_WITH_DOT_ABOVE, 'codepoint, 0x0227);
577put('LATIN_CAPITAL_LETTER_E_WITH_CEDILLA, 'codepoint, 0x0228);
578put('LATIN_SMALL_LETTER_E_WITH_CEDILLA, 'codepoint, 0x0229);
579put('LATIN_CAPITAL_LETTER_O_WITH_DIAERESIS_AND_MACRON, 'codepoint, 0x022A);
580put('LATIN_SMALL_LETTER_O_WITH_DIAERESIS_AND_MACRON, 'codepoint, 0x022B);
581put('LATIN_CAPITAL_LETTER_O_WITH_TILDE_AND_MACRON, 'codepoint, 0x022C);
582put('LATIN_SMALL_LETTER_O_WITH_TILDE_AND_MACRON, 'codepoint, 0x022D);
583put('LATIN_CAPITAL_LETTER_O_WITH_DOT_ABOVE, 'codepoint, 0x022E);
584put('LATIN_SMALL_LETTER_O_WITH_DOT_ABOVE, 'codepoint, 0x022F);
585put('LATIN_CAPITAL_LETTER_O_WITH_DOT_ABOVE_AND_MACRON, 'codepoint, 0x0230);
586put('LATIN_SMALL_LETTER_O_WITH_DOT_ABOVE_AND_MACRON, 'codepoint, 0x0231);
587put('LATIN_CAPITAL_LETTER_Y_WITH_MACRON, 'codepoint, 0x0232);
588put('LATIN_SMALL_LETTER_Y_WITH_MACRON, 'codepoint, 0x0233);
589put('LATIN_SMALL_LETTER_L_WITH_CURL, 'codepoint, 0x0234);
590put('LATIN_SMALL_LETTER_N_WITH_CURL, 'codepoint, 0x0235);
591put('LATIN_SMALL_LETTER_T_WITH_CURL, 'codepoint, 0x0236);
592put('LATIN_SMALL_LETTER_DOTLESS_J, 'codepoint, 0x0237);
593put('LATIN_SMALL_LETTER_DB_DIGRAPH, 'codepoint, 0x0238);
594put('LATIN_SMALL_LETTER_QP_DIGRAPH, 'codepoint, 0x0239);
595put('LATIN_CAPITAL_LETTER_A_WITH_STROKE, 'codepoint, 0x023A);
596put('LATIN_CAPITAL_LETTER_C_WITH_STROKE, 'codepoint, 0x023B);
597put('LATIN_SMALL_LETTER_C_WITH_STROKE, 'codepoint, 0x023C);
598put('LATIN_CAPITAL_LETTER_L_WITH_BAR, 'codepoint, 0x023D);
599put('LATIN_CAPITAL_LETTER_T_WITH_DIAGONAL_STROKE, 'codepoint, 0x023E);
600put('LATIN_SMALL_LETTER_S_WITH_SWASH_TAIL, 'codepoint, 0x023F);
601put('LATIN_SMALL_LETTER_Z_WITH_SWASH_TAIL, 'codepoint, 0x0240);
602put('LATIN_CAPITAL_LETTER_GLOTTAL_STOP, 'codepoint, 0x0241);
603put('LATIN_SMALL_LETTER_GLOTTAL_STOP, 'codepoint, 0x0242);
604put('LATIN_CAPITAL_LETTER_B_WITH_STROKE, 'codepoint, 0x0243);
605put('LATIN_CAPITAL_LETTER_U_BAR, 'codepoint, 0x0244);
606put('LATIN_CAPITAL_LETTER_TURNED_V, 'codepoint, 0x0245);
607put('LATIN_CAPITAL_LETTER_E_WITH_STROKE, 'codepoint, 0x0246);
608put('LATIN_SMALL_LETTER_E_WITH_STROKE, 'codepoint, 0x0247);
609put('LATIN_CAPITAL_LETTER_J_WITH_STROKE, 'codepoint, 0x0248);
610put('LATIN_SMALL_LETTER_J_WITH_STROKE, 'codepoint, 0x0249);
611put('LATIN_CAPITAL_LETTER_SMALL_Q_WITH_HOOK_TAIL, 'codepoint, 0x024A);
612put('LATIN_SMALL_LETTER_Q_WITH_HOOK_TAIL, 'codepoint, 0x024B);
613put('LATIN_CAPITAL_LETTER_R_WITH_STROKE, 'codepoint, 0x024C);
614put('LATIN_SMALL_LETTER_R_WITH_STROKE, 'codepoint, 0x024D);
615put('LATIN_CAPITAL_LETTER_Y_WITH_STROKE, 'codepoint, 0x024E);
616put('LATIN_SMALL_LETTER_Y_WITH_STROKE, 'codepoint, 0x024F);
617put('LATIN_SMALL_LETTER_TURNED_A, 'codepoint, 0x0250);
618put('LATIN_SMALL_LETTER_ALPHA, 'codepoint, 0x0251);
619put('LATIN_SMALL_LETTER_TURNED_ALPHA, 'codepoint, 0x0252);
620put('LATIN_SMALL_LETTER_B_WITH_HOOK, 'codepoint, 0x0253);
621put('LATIN_SMALL_LETTER_OPEN_O, 'codepoint, 0x0254);
622put('LATIN_SMALL_LETTER_C_WITH_CURL, 'codepoint, 0x0255);
623put('LATIN_SMALL_LETTER_D_WITH_TAIL, 'codepoint, 0x0256);
624put('LATIN_SMALL_LETTER_D_WITH_HOOK, 'codepoint, 0x0257);
625put('LATIN_SMALL_LETTER_REVERSED_E, 'codepoint, 0x0258);
626put('LATIN_SMALL_LETTER_SCHWA, 'codepoint, 0x0259);
627put('LATIN_SMALL_LETTER_SCHWA_WITH_HOOK, 'codepoint, 0x025A);
628put('LATIN_SMALL_LETTER_OPEN_E, 'codepoint, 0x025B);
629put('LATIN_SMALL_LETTER_REVERSED_OPEN_E, 'codepoint, 0x025C);
630put('LATIN_SMALL_LETTER_REVERSED_OPEN_E_WITH_HOOK, 'codepoint, 0x025D);
631put('LATIN_SMALL_LETTER_CLOSED_REVERSED_OPEN_E, 'codepoint, 0x025E);
632put('LATIN_SMALL_LETTER_DOTLESS_J_WITH_STROKE, 'codepoint, 0x025F);
633put('LATIN_SMALL_LETTER_G_WITH_HOOK, 'codepoint, 0x0260);
634put('LATIN_SMALL_LETTER_SCRIPT_G, 'codepoint, 0x0261);
635put('LATIN_LETTER_SMALL_CAPITAL_G, 'codepoint, 0x0262);
636put('LATIN_SMALL_LETTER_GAMMA, 'codepoint, 0x0263);
637put('LATIN_SMALL_LETTER_RAMS_HORN, 'codepoint, 0x0264);
638put('LATIN_SMALL_LETTER_TURNED_H, 'codepoint, 0x0265);
639put('LATIN_SMALL_LETTER_H_WITH_HOOK, 'codepoint, 0x0266);
640put('LATIN_SMALL_LETTER_HENG_WITH_HOOK, 'codepoint, 0x0267);
641put('LATIN_SMALL_LETTER_I_WITH_STROKE, 'codepoint, 0x0268);
642put('LATIN_SMALL_LETTER_IOTA, 'codepoint, 0x0269);
643put('LATIN_LETTER_SMALL_CAPITAL_I, 'codepoint, 0x026A);
644put('LATIN_SMALL_LETTER_L_WITH_MIDDLE_TILDE, 'codepoint, 0x026B);
645put('LATIN_SMALL_LETTER_L_WITH_BELT, 'codepoint, 0x026C);
646put('LATIN_SMALL_LETTER_L_WITH_RETROFLEX_HOOK, 'codepoint, 0x026D);
647put('LATIN_SMALL_LETTER_LEZH, 'codepoint, 0x026E);
648put('LATIN_SMALL_LETTER_TURNED_M, 'codepoint, 0x026F);
649put('LATIN_SMALL_LETTER_TURNED_M_WITH_LONG_LEG, 'codepoint, 0x0270);
650put('LATIN_SMALL_LETTER_M_WITH_HOOK, 'codepoint, 0x0271);
651put('LATIN_SMALL_LETTER_N_WITH_LEFT_HOOK, 'codepoint, 0x0272);
652put('LATIN_SMALL_LETTER_N_WITH_RETROFLEX_HOOK, 'codepoint, 0x0273);
653put('LATIN_LETTER_SMALL_CAPITAL_N, 'codepoint, 0x0274);
654put('LATIN_SMALL_LETTER_BARRED_O, 'codepoint, 0x0275);
655put('LATIN_LETTER_SMALL_CAPITAL_OE, 'codepoint, 0x0276);
656put('LATIN_SMALL_LETTER_CLOSED_OMEGA, 'codepoint, 0x0277);
657put('LATIN_SMALL_LETTER_PHI, 'codepoint, 0x0278);
658put('LATIN_SMALL_LETTER_TURNED_R, 'codepoint, 0x0279);
659put('LATIN_SMALL_LETTER_TURNED_R_WITH_LONG_LEG, 'codepoint, 0x027A);
660put('LATIN_SMALL_LETTER_TURNED_R_WITH_HOOK, 'codepoint, 0x027B);
661put('LATIN_SMALL_LETTER_R_WITH_LONG_LEG, 'codepoint, 0x027C);
662put('LATIN_SMALL_LETTER_R_WITH_TAIL, 'codepoint, 0x027D);
663put('LATIN_SMALL_LETTER_R_WITH_FISHHOOK, 'codepoint, 0x027E);
664put('LATIN_SMALL_LETTER_REVERSED_R_WITH_FISHHOOK, 'codepoint, 0x027F);
665put('LATIN_LETTER_SMALL_CAPITAL_R, 'codepoint, 0x0280);
666put('LATIN_LETTER_SMALL_CAPITAL_INVERTED_R, 'codepoint, 0x0281);
667put('LATIN_SMALL_LETTER_S_WITH_HOOK, 'codepoint, 0x0282);
668put('LATIN_SMALL_LETTER_ESH, 'codepoint, 0x0283);
669put('LATIN_SMALL_LETTER_DOTLESS_J_WITH_STROKE_AND_HOOK, 'codepoint, 0x0284);
670put('LATIN_SMALL_LETTER_SQUAT_REVERSED_ESH, 'codepoint, 0x0285);
671put('LATIN_SMALL_LETTER_ESH_WITH_CURL, 'codepoint, 0x0286);
672put('LATIN_SMALL_LETTER_TURNED_T, 'codepoint, 0x0287);
673put('LATIN_SMALL_LETTER_T_WITH_RETROFLEX_HOOK, 'codepoint, 0x0288);
674put('LATIN_SMALL_LETTER_U_BAR, 'codepoint, 0x0289);
675put('LATIN_SMALL_LETTER_UPSILON, 'codepoint, 0x028A);
676put('LATIN_SMALL_LETTER_V_WITH_HOOK, 'codepoint, 0x028B);
677put('LATIN_SMALL_LETTER_TURNED_V, 'codepoint, 0x028C);
678put('LATIN_SMALL_LETTER_TURNED_W, 'codepoint, 0x028D);
679put('LATIN_SMALL_LETTER_TURNED_Y, 'codepoint, 0x028E);
680put('LATIN_LETTER_SMALL_CAPITAL_Y, 'codepoint, 0x028F);
681put('LATIN_SMALL_LETTER_Z_WITH_RETROFLEX_HOOK, 'codepoint, 0x0290);
682put('LATIN_SMALL_LETTER_Z_WITH_CURL, 'codepoint, 0x0291);
683put('LATIN_SMALL_LETTER_EZH, 'codepoint, 0x0292);
684put('LATIN_SMALL_LETTER_EZH_WITH_CURL, 'codepoint, 0x0293);
685put('LATIN_LETTER_GLOTTAL_STOP, 'codepoint, 0x0294);
686put('LATIN_LETTER_PHARYNGEAL_VOICED_FRICATIVE, 'codepoint, 0x0295);
687put('LATIN_LETTER_INVERTED_GLOTTAL_STOP, 'codepoint, 0x0296);
688put('LATIN_LETTER_STRETCHED_C, 'codepoint, 0x0297);
689put('LATIN_LETTER_BILABIAL_CLICK, 'codepoint, 0x0298);
690put('LATIN_LETTER_SMALL_CAPITAL_B, 'codepoint, 0x0299);
691put('LATIN_SMALL_LETTER_CLOSED_OPEN_E, 'codepoint, 0x029A);
692put('LATIN_LETTER_SMALL_CAPITAL_G_WITH_HOOK, 'codepoint, 0x029B);
693put('LATIN_LETTER_SMALL_CAPITAL_H, 'codepoint, 0x029C);
694put('LATIN_SMALL_LETTER_J_WITH_CROSSED_TAIL, 'codepoint, 0x029D);
695put('LATIN_SMALL_LETTER_TURNED_K, 'codepoint, 0x029E);
696put('LATIN_LETTER_SMALL_CAPITAL_L, 'codepoint, 0x029F);
697put('LATIN_SMALL_LETTER_Q_WITH_HOOK, 'codepoint, 0x02A0);
698put('LATIN_LETTER_GLOTTAL_STOP_WITH_STROKE, 'codepoint, 0x02A1);
699put('LATIN_LETTER_REVERSED_GLOTTAL_STOP_WITH_STROKE, 'codepoint, 0x02A2);
700put('LATIN_SMALL_LETTER_DZ_DIGRAPH, 'codepoint, 0x02A3);
701put('LATIN_SMALL_LETTER_DEZH_DIGRAPH, 'codepoint, 0x02A4);
702put('LATIN_SMALL_LETTER_DZ_DIGRAPH_WITH_CURL, 'codepoint, 0x02A5);
703put('LATIN_SMALL_LETTER_TS_DIGRAPH, 'codepoint, 0x02A6);
704put('LATIN_SMALL_LETTER_TESH_DIGRAPH, 'codepoint, 0x02A7);
705put('LATIN_SMALL_LETTER_TC_DIGRAPH_WITH_CURL, 'codepoint, 0x02A8);
706put('LATIN_SMALL_LETTER_FENG_DIGRAPH, 'codepoint, 0x02A9);
707put('LATIN_SMALL_LETTER_LS_DIGRAPH, 'codepoint, 0x02AA);
708put('LATIN_SMALL_LETTER_LZ_DIGRAPH, 'codepoint, 0x02AB);
709put('LATIN_LETTER_BILABIAL_PERCUSSIVE, 'codepoint, 0x02AC);
710put('LATIN_LETTER_BIDENTAL_PERCUSSIVE, 'codepoint, 0x02AD);
711put('LATIN_SMALL_LETTER_TURNED_H_WITH_FISHHOOK, 'codepoint, 0x02AE);
712put('LATIN_SMALL_LETTER_TURNED_H_WITH_FISHHOOK_AND_TAIL, 'codepoint, 0x02AF);
713put('MODIFIER_LETTER_SMALL_H, 'codepoint, 0x02B0);
714put('MODIFIER_LETTER_SMALL_H_WITH_HOOK, 'codepoint, 0x02B1);
715put('MODIFIER_LETTER_SMALL_J, 'codepoint, 0x02B2);
716put('MODIFIER_LETTER_SMALL_R, 'codepoint, 0x02B3);
717put('MODIFIER_LETTER_SMALL_TURNED_R, 'codepoint, 0x02B4);
718put('MODIFIER_LETTER_SMALL_TURNED_R_WITH_HOOK, 'codepoint, 0x02B5);
719put('MODIFIER_LETTER_SMALL_CAPITAL_INVERTED_R, 'codepoint, 0x02B6);
720put('MODIFIER_LETTER_SMALL_W, 'codepoint, 0x02B7);
721put('MODIFIER_LETTER_SMALL_Y, 'codepoint, 0x02B8);
722put('MODIFIER_LETTER_PRIME, 'codepoint, 0x02B9);
723put('MODIFIER_LETTER_DOUBLE_PRIME, 'codepoint, 0x02BA);
724put('MODIFIER_LETTER_TURNED_COMMA, 'codepoint, 0x02BB);
725put('MODIFIER_LETTER_APOSTROPHE, 'codepoint, 0x02BC);
726put('MODIFIER_LETTER_REVERSED_COMMA, 'codepoint, 0x02BD);
727put('MODIFIER_LETTER_RIGHT_HALF_RING, 'codepoint, 0x02BE);
728put('MODIFIER_LETTER_LEFT_HALF_RING, 'codepoint, 0x02BF);
729put('MODIFIER_LETTER_GLOTTAL_STOP, 'codepoint, 0x02C0);
730put('MODIFIER_LETTER_REVERSED_GLOTTAL_STOP, 'codepoint, 0x02C1);
731put('MODIFIER_LETTER_LEFT_ARROWHEAD, 'codepoint, 0x02C2);
732put('MODIFIER_LETTER_RIGHT_ARROWHEAD, 'codepoint, 0x02C3);
733put('MODIFIER_LETTER_UP_ARROWHEAD, 'codepoint, 0x02C4);
734put('MODIFIER_LETTER_DOWN_ARROWHEAD, 'codepoint, 0x02C5);
735put('MODIFIER_LETTER_CIRCUMFLEX_ACCENT, 'codepoint, 0x02C6);
736put('CARON, 'codepoint, 0x02C7);
737put('MODIFIER_LETTER_VERTICAL_LINE, 'codepoint, 0x02C8);
738put('MODIFIER_LETTER_MACRON, 'codepoint, 0x02C9);
739put('MODIFIER_LETTER_ACUTE_ACCENT, 'codepoint, 0x02CA);
740put('MODIFIER_LETTER_GRAVE_ACCENT, 'codepoint, 0x02CB);
741put('MODIFIER_LETTER_LOW_VERTICAL_LINE, 'codepoint, 0x02CC);
742put('MODIFIER_LETTER_LOW_MACRON, 'codepoint, 0x02CD);
743put('MODIFIER_LETTER_LOW_GRAVE_ACCENT, 'codepoint, 0x02CE);
744put('MODIFIER_LETTER_LOW_ACUTE_ACCENT, 'codepoint, 0x02CF);
745put('MODIFIER_LETTER_TRIANGULAR_COLON, 'codepoint, 0x02D0);
746put('MODIFIER_LETTER_HALF_TRIANGULAR_COLON, 'codepoint, 0x02D1);
747put('MODIFIER_LETTER_CENTRED_RIGHT_HALF_RING, 'codepoint, 0x02D2);
748put('MODIFIER_LETTER_CENTRED_LEFT_HALF_RING, 'codepoint, 0x02D3);
749put('MODIFIER_LETTER_UP_TACK, 'codepoint, 0x02D4);
750put('MODIFIER_LETTER_DOWN_TACK, 'codepoint, 0x02D5);
751put('MODIFIER_LETTER_PLUS_SIGN, 'codepoint, 0x02D6);
752put('MODIFIER_LETTER_MINUS_SIGN, 'codepoint, 0x02D7);
753put('BREVE, 'codepoint, 0x02D8);
754put('DOT_ABOVE, 'codepoint, 0x02D9);
755put('RING_ABOVE, 'codepoint, 0x02DA);
756put('OGONEK, 'codepoint, 0x02DB);
757put('SMALL_TILDE, 'codepoint, 0x02DC);
758put('DOUBLE_ACUTE_ACCENT, 'codepoint, 0x02DD);
759put('MODIFIER_LETTER_RHOTIC_HOOK, 'codepoint, 0x02DE);
760put('MODIFIER_LETTER_CROSS_ACCENT, 'codepoint, 0x02DF);
761put('MODIFIER_LETTER_SMALL_GAMMA, 'codepoint, 0x02E0);
762put('MODIFIER_LETTER_SMALL_L, 'codepoint, 0x02E1);
763put('MODIFIER_LETTER_SMALL_S, 'codepoint, 0x02E2);
764put('MODIFIER_LETTER_SMALL_X, 'codepoint, 0x02E3);
765put('MODIFIER_LETTER_SMALL_REVERSED_GLOTTAL_STOP, 'codepoint, 0x02E4);
766put('MODIFIER_LETTER_EXTRA_HIGH_TONE_BAR, 'codepoint, 0x02E5);
767put('MODIFIER_LETTER_HIGH_TONE_BAR, 'codepoint, 0x02E6);
768put('MODIFIER_LETTER_MID_TONE_BAR, 'codepoint, 0x02E7);
769put('MODIFIER_LETTER_LOW_TONE_BAR, 'codepoint, 0x02E8);
770put('MODIFIER_LETTER_EXTRA_LOW_TONE_BAR, 'codepoint, 0x02E9);
771put('MODIFIER_LETTER_YIN_DEPARTING_TONE_MARK, 'codepoint, 0x02EA);
772put('MODIFIER_LETTER_YANG_DEPARTING_TONE_MARK, 'codepoint, 0x02EB);
773put('MODIFIER_LETTER_VOICING, 'codepoint, 0x02EC);
774put('MODIFIER_LETTER_UNASPIRATED, 'codepoint, 0x02ED);
775put('MODIFIER_LETTER_DOUBLE_APOSTROPHE, 'codepoint, 0x02EE);
776put('MODIFIER_LETTER_LOW_DOWN_ARROWHEAD, 'codepoint, 0x02EF);
777put('MODIFIER_LETTER_LOW_UP_ARROWHEAD, 'codepoint, 0x02F0);
778put('MODIFIER_LETTER_LOW_LEFT_ARROWHEAD, 'codepoint, 0x02F1);
779put('MODIFIER_LETTER_LOW_RIGHT_ARROWHEAD, 'codepoint, 0x02F2);
780put('MODIFIER_LETTER_LOW_RING, 'codepoint, 0x02F3);
781put('MODIFIER_LETTER_MIDDLE_GRAVE_ACCENT, 'codepoint, 0x02F4);
782put('MODIFIER_LETTER_MIDDLE_DOUBLE_GRAVE_ACCENT, 'codepoint, 0x02F5);
783put('MODIFIER_LETTER_MIDDLE_DOUBLE_ACUTE_ACCENT, 'codepoint, 0x02F6);
784put('MODIFIER_LETTER_LOW_TILDE, 'codepoint, 0x02F7);
785put('MODIFIER_LETTER_RAISED_COLON, 'codepoint, 0x02F8);
786put('MODIFIER_LETTER_BEGIN_HIGH_TONE, 'codepoint, 0x02F9);
787put('MODIFIER_LETTER_END_HIGH_TONE, 'codepoint, 0x02FA);
788put('MODIFIER_LETTER_BEGIN_LOW_TONE, 'codepoint, 0x02FB);
789put('MODIFIER_LETTER_END_LOW_TONE, 'codepoint, 0x02FC);
790put('MODIFIER_LETTER_SHELF, 'codepoint, 0x02FD);
791put('MODIFIER_LETTER_OPEN_SHELF, 'codepoint, 0x02FE);
792put('MODIFIER_LETTER_LOW_LEFT_ARROW, 'codepoint, 0x02FF);
793put('COMBINING_GRAVE_ACCENT, 'codepoint, 0x0300);
794put('COMBINING_ACUTE_ACCENT, 'codepoint, 0x0301);
795put('COMBINING_CIRCUMFLEX_ACCENT, 'codepoint, 0x0302);
796put('COMBINING_TILDE, 'codepoint, 0x0303);
797put('COMBINING_MACRON, 'codepoint, 0x0304);
798put('COMBINING_OVERLINE, 'codepoint, 0x0305);
799put('COMBINING_BREVE, 'codepoint, 0x0306);
800put('COMBINING_DOT_ABOVE, 'codepoint, 0x0307);
801put('COMBINING_DIAERESIS, 'codepoint, 0x0308);
802put('COMBINING_HOOK_ABOVE, 'codepoint, 0x0309);
803put('COMBINING_RING_ABOVE, 'codepoint, 0x030A);
804put('COMBINING_DOUBLE_ACUTE_ACCENT, 'codepoint, 0x030B);
805put('COMBINING_CARON, 'codepoint, 0x030C);
806put('COMBINING_VERTICAL_LINE_ABOVE, 'codepoint, 0x030D);
807put('COMBINING_DOUBLE_VERTICAL_LINE_ABOVE, 'codepoint, 0x030E);
808put('COMBINING_DOUBLE_GRAVE_ACCENT, 'codepoint, 0x030F);
809put('COMBINING_CANDRABINDU, 'codepoint, 0x0310);
810put('COMBINING_INVERTED_BREVE, 'codepoint, 0x0311);
811put('COMBINING_TURNED_COMMA_ABOVE, 'codepoint, 0x0312);
812put('COMBINING_COMMA_ABOVE, 'codepoint, 0x0313);
813put('COMBINING_REVERSED_COMMA_ABOVE, 'codepoint, 0x0314);
814put('COMBINING_COMMA_ABOVE_RIGHT, 'codepoint, 0x0315);
815put('COMBINING_GRAVE_ACCENT_BELOW, 'codepoint, 0x0316);
816put('COMBINING_ACUTE_ACCENT_BELOW, 'codepoint, 0x0317);
817put('COMBINING_LEFT_TACK_BELOW, 'codepoint, 0x0318);
818put('COMBINING_RIGHT_TACK_BELOW, 'codepoint, 0x0319);
819put('COMBINING_LEFT_ANGLE_ABOVE, 'codepoint, 0x031A);
820put('COMBINING_HORN, 'codepoint, 0x031B);
821put('COMBINING_LEFT_HALF_RING_BELOW, 'codepoint, 0x031C);
822put('COMBINING_UP_TACK_BELOW, 'codepoint, 0x031D);
823put('COMBINING_DOWN_TACK_BELOW, 'codepoint, 0x031E);
824put('COMBINING_PLUS_SIGN_BELOW, 'codepoint, 0x031F);
825put('COMBINING_MINUS_SIGN_BELOW, 'codepoint, 0x0320);
826put('COMBINING_PALATALIZED_HOOK_BELOW, 'codepoint, 0x0321);
827put('COMBINING_RETROFLEX_HOOK_BELOW, 'codepoint, 0x0322);
828put('COMBINING_DOT_BELOW, 'codepoint, 0x0323);
829put('COMBINING_DIAERESIS_BELOW, 'codepoint, 0x0324);
830put('COMBINING_RING_BELOW, 'codepoint, 0x0325);
831put('COMBINING_COMMA_BELOW, 'codepoint, 0x0326);
832put('COMBINING_CEDILLA, 'codepoint, 0x0327);
833put('COMBINING_OGONEK, 'codepoint, 0x0328);
834put('COMBINING_VERTICAL_LINE_BELOW, 'codepoint, 0x0329);
835put('COMBINING_BRIDGE_BELOW, 'codepoint, 0x032A);
836put('COMBINING_INVERTED_DOUBLE_ARCH_BELOW, 'codepoint, 0x032B);
837put('COMBINING_CARON_BELOW, 'codepoint, 0x032C);
838put('COMBINING_CIRCUMFLEX_ACCENT_BELOW, 'codepoint, 0x032D);
839put('COMBINING_BREVE_BELOW, 'codepoint, 0x032E);
840put('COMBINING_INVERTED_BREVE_BELOW, 'codepoint, 0x032F);
841put('COMBINING_TILDE_BELOW, 'codepoint, 0x0330);
842put('COMBINING_MACRON_BELOW, 'codepoint, 0x0331);
843put('COMBINING_LOW_LINE, 'codepoint, 0x0332);
844put('COMBINING_DOUBLE_LOW_LINE, 'codepoint, 0x0333);
845put('COMBINING_TILDE_OVERLAY, 'codepoint, 0x0334);
846put('COMBINING_SHORT_STROKE_OVERLAY, 'codepoint, 0x0335);
847put('COMBINING_LONG_STROKE_OVERLAY, 'codepoint, 0x0336);
848put('COMBINING_SHORT_SOLIDUS_OVERLAY, 'codepoint, 0x0337);
849put('COMBINING_LONG_SOLIDUS_OVERLAY, 'codepoint, 0x0338);
850put('COMBINING_RIGHT_HALF_RING_BELOW, 'codepoint, 0x0339);
851put('COMBINING_INVERTED_BRIDGE_BELOW, 'codepoint, 0x033A);
852put('COMBINING_SQUARE_BELOW, 'codepoint, 0x033B);
853put('COMBINING_SEAGULL_BELOW, 'codepoint, 0x033C);
854put('COMBINING_X_ABOVE, 'codepoint, 0x033D);
855put('COMBINING_VERTICAL_TILDE, 'codepoint, 0x033E);
856put('COMBINING_DOUBLE_OVERLINE, 'codepoint, 0x033F);
857put('COMBINING_GRAVE_TONE_MARK, 'codepoint, 0x0340);
858put('COMBINING_ACUTE_TONE_MARK, 'codepoint, 0x0341);
859put('COMBINING_GREEK_PERISPOMENI, 'codepoint, 0x0342);
860put('COMBINING_GREEK_KORONIS, 'codepoint, 0x0343);
861put('COMBINING_GREEK_DIALYTIKA_TONOS, 'codepoint, 0x0344);
862put('COMBINING_GREEK_YPOGEGRAMMENI, 'codepoint, 0x0345);
863put('COMBINING_BRIDGE_ABOVE, 'codepoint, 0x0346);
864put('COMBINING_EQUALS_SIGN_BELOW, 'codepoint, 0x0347);
865put('COMBINING_DOUBLE_VERTICAL_LINE_BELOW, 'codepoint, 0x0348);
866put('COMBINING_LEFT_ANGLE_BELOW, 'codepoint, 0x0349);
867put('COMBINING_NOT_TILDE_ABOVE, 'codepoint, 0x034A);
868put('COMBINING_HOMOTHETIC_ABOVE, 'codepoint, 0x034B);
869put('COMBINING_ALMOST_EQUAL_TO_ABOVE, 'codepoint, 0x034C);
870put('COMBINING_LEFT_RIGHT_ARROW_BELOW, 'codepoint, 0x034D);
871put('COMBINING_UPWARDS_ARROW_BELOW, 'codepoint, 0x034E);
872put('COMBINING_GRAPHEME_JOINER, 'codepoint, 0x034F);
873put('COMBINING_RIGHT_ARROWHEAD_ABOVE, 'codepoint, 0x0350);
874put('COMBINING_LEFT_HALF_RING_ABOVE, 'codepoint, 0x0351);
875put('COMBINING_FERMATA, 'codepoint, 0x0352);
876put('COMBINING_X_BELOW, 'codepoint, 0x0353);
877put('COMBINING_LEFT_ARROWHEAD_BELOW, 'codepoint, 0x0354);
878put('COMBINING_RIGHT_ARROWHEAD_BELOW, 'codepoint, 0x0355);
879put('COMBINING_RIGHT_ARROWHEAD_AND_UP_ARROWHEAD_BELOW, 'codepoint, 0x0356);
880put('COMBINING_RIGHT_HALF_RING_ABOVE, 'codepoint, 0x0357);
881put('COMBINING_DOT_ABOVE_RIGHT, 'codepoint, 0x0358);
882put('COMBINING_ASTERISK_BELOW, 'codepoint, 0x0359);
883put('COMBINING_DOUBLE_RING_BELOW, 'codepoint, 0x035A);
884put('COMBINING_ZIGZAG_ABOVE, 'codepoint, 0x035B);
885put('COMBINING_DOUBLE_BREVE_BELOW, 'codepoint, 0x035C);
886put('COMBINING_DOUBLE_BREVE, 'codepoint, 0x035D);
887put('COMBINING_DOUBLE_MACRON, 'codepoint, 0x035E);
888put('COMBINING_DOUBLE_MACRON_BELOW, 'codepoint, 0x035F);
889put('COMBINING_DOUBLE_TILDE, 'codepoint, 0x0360);
890put('COMBINING_DOUBLE_INVERTED_BREVE, 'codepoint, 0x0361);
891put('COMBINING_DOUBLE_RIGHTWARDS_ARROW_BELOW, 'codepoint, 0x0362);
892put('COMBINING_LATIN_SMALL_LETTER_A, 'codepoint, 0x0363);
893put('COMBINING_LATIN_SMALL_LETTER_E, 'codepoint, 0x0364);
894put('COMBINING_LATIN_SMALL_LETTER_I, 'codepoint, 0x0365);
895put('COMBINING_LATIN_SMALL_LETTER_O, 'codepoint, 0x0366);
896put('COMBINING_LATIN_SMALL_LETTER_U, 'codepoint, 0x0367);
897put('COMBINING_LATIN_SMALL_LETTER_C, 'codepoint, 0x0368);
898put('COMBINING_LATIN_SMALL_LETTER_D, 'codepoint, 0x0369);
899put('COMBINING_LATIN_SMALL_LETTER_H, 'codepoint, 0x036A);
900put('COMBINING_LATIN_SMALL_LETTER_M, 'codepoint, 0x036B);
901put('COMBINING_LATIN_SMALL_LETTER_R, 'codepoint, 0x036C);
902put('COMBINING_LATIN_SMALL_LETTER_T, 'codepoint, 0x036D);
903put('COMBINING_LATIN_SMALL_LETTER_V, 'codepoint, 0x036E);
904put('COMBINING_LATIN_SMALL_LETTER_X, 'codepoint, 0x036F);
905put('GREEK_CAPITAL_LETTER_HETA, 'codepoint, 0x0370);
906put('GREEK_SMALL_LETTER_HETA, 'codepoint, 0x0371);
907put('GREEK_CAPITAL_LETTER_ARCHAIC_SAMPI, 'codepoint, 0x0372);
908put('GREEK_SMALL_LETTER_ARCHAIC_SAMPI, 'codepoint, 0x0373);
909put('GREEK_NUMERAL_SIGN, 'codepoint, 0x0374);
910put('GREEK_LOWER_NUMERAL_SIGN, 'codepoint, 0x0375);
911put('GREEK_CAPITAL_LETTER_PAMPHYLIAN_DIGAMMA, 'codepoint, 0x0376);
912put('GREEK_SMALL_LETTER_PAMPHYLIAN_DIGAMMA, 'codepoint, 0x0377);
913put('GREEK_YPOGEGRAMMENI, 'codepoint, 0x037A);
914put('GREEK_SMALL_REVERSED_LUNATE_SIGMA_SYMBOL, 'codepoint, 0x037B);
915put('GREEK_SMALL_DOTTED_LUNATE_SIGMA_SYMBOL, 'codepoint, 0x037C);
916put('GREEK_SMALL_REVERSED_DOTTED_LUNATE_SIGMA_SYMBOL, 'codepoint, 0x037D);
917put('GREEK_QUESTION_MARK, 'codepoint, 0x037E);
918put('GREEK_CAPITAL_LETTER_YOT, 'codepoint, 0x037F);
919put('GREEK_TONOS, 'codepoint, 0x0384);
920put('GREEK_DIALYTIKA_TONOS, 'codepoint, 0x0385);
921put('GREEK_CAPITAL_LETTER_ALPHA_WITH_TONOS, 'codepoint, 0x0386);
922put('GREEK_ANO_TELEIA, 'codepoint, 0x0387);
923put('GREEK_CAPITAL_LETTER_EPSILON_WITH_TONOS, 'codepoint, 0x0388);
924put('GREEK_CAPITAL_LETTER_ETA_WITH_TONOS, 'codepoint, 0x0389);
925put('GREEK_CAPITAL_LETTER_IOTA_WITH_TONOS, 'codepoint, 0x038A);
926put('GREEK_CAPITAL_LETTER_OMICRON_WITH_TONOS, 'codepoint, 0x038C);
927put('GREEK_CAPITAL_LETTER_UPSILON_WITH_TONOS, 'codepoint, 0x038E);
928put('GREEK_CAPITAL_LETTER_OMEGA_WITH_TONOS, 'codepoint, 0x038F);
929put('GREEK_SMALL_LETTER_IOTA_WITH_DIALYTIKA_AND_TONOS, 'codepoint, 0x0390);
930put('GREEK_CAPITAL_LETTER_ALPHA, 'codepoint, 0x0391);
931put('GREEK_CAPITAL_LETTER_BETA, 'codepoint, 0x0392);
932put('GREEK_CAPITAL_LETTER_GAMMA, 'codepoint, 0x0393);
933put('GREEK_CAPITAL_LETTER_DELTA, 'codepoint, 0x0394);
934put('GREEK_CAPITAL_LETTER_EPSILON, 'codepoint, 0x0395);
935put('GREEK_CAPITAL_LETTER_ZETA, 'codepoint, 0x0396);
936put('GREEK_CAPITAL_LETTER_ETA, 'codepoint, 0x0397);
937put('GREEK_CAPITAL_LETTER_THETA, 'codepoint, 0x0398);
938put('GREEK_CAPITAL_LETTER_IOTA, 'codepoint, 0x0399);
939put('GREEK_CAPITAL_LETTER_KAPPA, 'codepoint, 0x039A);
940put('GREEK_CAPITAL_LETTER_LAMDA, 'codepoint, 0x039B);
941put('GREEK_CAPITAL_LETTER_MU, 'codepoint, 0x039C);
942put('GREEK_CAPITAL_LETTER_NU, 'codepoint, 0x039D);
943put('GREEK_CAPITAL_LETTER_XI, 'codepoint, 0x039E);
944put('GREEK_CAPITAL_LETTER_OMICRON, 'codepoint, 0x039F);
945put('GREEK_CAPITAL_LETTER_PI, 'codepoint, 0x03A0);
946put('GREEK_CAPITAL_LETTER_RHO, 'codepoint, 0x03A1);
947put('GREEK_CAPITAL_LETTER_SIGMA, 'codepoint, 0x03A3);
948put('GREEK_CAPITAL_LETTER_TAU, 'codepoint, 0x03A4);
949put('GREEK_CAPITAL_LETTER_UPSILON, 'codepoint, 0x03A5);
950put('GREEK_CAPITAL_LETTER_PHI, 'codepoint, 0x03A6);
951put('GREEK_CAPITAL_LETTER_CHI, 'codepoint, 0x03A7);
952put('GREEK_CAPITAL_LETTER_PSI, 'codepoint, 0x03A8);
953put('GREEK_CAPITAL_LETTER_OMEGA, 'codepoint, 0x03A9);
954put('GREEK_CAPITAL_LETTER_IOTA_WITH_DIALYTIKA, 'codepoint, 0x03AA);
955put('GREEK_CAPITAL_LETTER_UPSILON_WITH_DIALYTIKA, 'codepoint, 0x03AB);
956put('GREEK_SMALL_LETTER_ALPHA_WITH_TONOS, 'codepoint, 0x03AC);
957put('GREEK_SMALL_LETTER_EPSILON_WITH_TONOS, 'codepoint, 0x03AD);
958put('GREEK_SMALL_LETTER_ETA_WITH_TONOS, 'codepoint, 0x03AE);
959put('GREEK_SMALL_LETTER_IOTA_WITH_TONOS, 'codepoint, 0x03AF);
960put('GREEK_SMALL_LETTER_UPSILON_WITH_DIALYTIKA_AND_TONOS, 'codepoint, 0x03B0);
961put('GREEK_SMALL_LETTER_ALPHA, 'codepoint, 0x03B1);
962put('GREEK_SMALL_LETTER_BETA, 'codepoint, 0x03B2);
963put('GREEK_SMALL_LETTER_GAMMA, 'codepoint, 0x03B3);
964put('GREEK_SMALL_LETTER_DELTA, 'codepoint, 0x03B4);
965put('GREEK_SMALL_LETTER_EPSILON, 'codepoint, 0x03B5);
966put('GREEK_SMALL_LETTER_ZETA, 'codepoint, 0x03B6);
967put('GREEK_SMALL_LETTER_ETA, 'codepoint, 0x03B7);
968put('GREEK_SMALL_LETTER_THETA, 'codepoint, 0x03B8);
969put('GREEK_SMALL_LETTER_IOTA, 'codepoint, 0x03B9);
970put('GREEK_SMALL_LETTER_KAPPA, 'codepoint, 0x03BA);
971put('GREEK_SMALL_LETTER_LAMDA, 'codepoint, 0x03BB);
972put('GREEK_SMALL_LETTER_MU, 'codepoint, 0x03BC);
973put('GREEK_SMALL_LETTER_NU, 'codepoint, 0x03BD);
974put('GREEK_SMALL_LETTER_XI, 'codepoint, 0x03BE);
975put('GREEK_SMALL_LETTER_OMICRON, 'codepoint, 0x03BF);
976put('GREEK_SMALL_LETTER_PI, 'codepoint, 0x03C0);
977put('GREEK_SMALL_LETTER_RHO, 'codepoint, 0x03C1);
978put('GREEK_SMALL_LETTER_FINAL_SIGMA, 'codepoint, 0x03C2);
979put('GREEK_SMALL_LETTER_SIGMA, 'codepoint, 0x03C3);
980put('GREEK_SMALL_LETTER_TAU, 'codepoint, 0x03C4);
981put('GREEK_SMALL_LETTER_UPSILON, 'codepoint, 0x03C5);
982put('GREEK_SMALL_LETTER_PHI, 'codepoint, 0x03C6);
983put('GREEK_SMALL_LETTER_CHI, 'codepoint, 0x03C7);
984put('GREEK_SMALL_LETTER_PSI, 'codepoint, 0x03C8);
985put('GREEK_SMALL_LETTER_OMEGA, 'codepoint, 0x03C9);
986put('GREEK_SMALL_LETTER_IOTA_WITH_DIALYTIKA, 'codepoint, 0x03CA);
987put('GREEK_SMALL_LETTER_UPSILON_WITH_DIALYTIKA, 'codepoint, 0x03CB);
988put('GREEK_SMALL_LETTER_OMICRON_WITH_TONOS, 'codepoint, 0x03CC);
989put('GREEK_SMALL_LETTER_UPSILON_WITH_TONOS, 'codepoint, 0x03CD);
990put('GREEK_SMALL_LETTER_OMEGA_WITH_TONOS, 'codepoint, 0x03CE);
991put('GREEK_CAPITAL_KAI_SYMBOL, 'codepoint, 0x03CF);
992put('GREEK_BETA_SYMBOL, 'codepoint, 0x03D0);
993put('GREEK_THETA_SYMBOL, 'codepoint, 0x03D1);
994put('GREEK_UPSILON_WITH_HOOK_SYMBOL, 'codepoint, 0x03D2);
995put('GREEK_UPSILON_WITH_ACUTE_AND_HOOK_SYMBOL, 'codepoint, 0x03D3);
996put('GREEK_UPSILON_WITH_DIAERESIS_AND_HOOK_SYMBOL, 'codepoint, 0x03D4);
997put('GREEK_PHI_SYMBOL, 'codepoint, 0x03D5);
998put('GREEK_PI_SYMBOL, 'codepoint, 0x03D6);
999put('GREEK_KAI_SYMBOL, 'codepoint, 0x03D7);
1000put('GREEK_LETTER_ARCHAIC_KOPPA, 'codepoint, 0x03D8);
1001put('GREEK_SMALL_LETTER_ARCHAIC_KOPPA, 'codepoint, 0x03D9);
1002put('GREEK_LETTER_STIGMA, 'codepoint, 0x03DA);
1003put('GREEK_SMALL_LETTER_STIGMA, 'codepoint, 0x03DB);
1004put('GREEK_LETTER_DIGAMMA, 'codepoint, 0x03DC);
1005put('GREEK_SMALL_LETTER_DIGAMMA, 'codepoint, 0x03DD);
1006put('GREEK_LETTER_KOPPA, 'codepoint, 0x03DE);
1007put('GREEK_SMALL_LETTER_KOPPA, 'codepoint, 0x03DF);
1008put('GREEK_LETTER_SAMPI, 'codepoint, 0x03E0);
1009put('GREEK_SMALL_LETTER_SAMPI, 'codepoint, 0x03E1);
1010put('COPTIC_CAPITAL_LETTER_SHEI, 'codepoint, 0x03E2);
1011put('COPTIC_SMALL_LETTER_SHEI, 'codepoint, 0x03E3);
1012put('COPTIC_CAPITAL_LETTER_FEI, 'codepoint, 0x03E4);
1013put('COPTIC_SMALL_LETTER_FEI, 'codepoint, 0x03E5);
1014put('COPTIC_CAPITAL_LETTER_KHEI, 'codepoint, 0x03E6);
1015put('COPTIC_SMALL_LETTER_KHEI, 'codepoint, 0x03E7);
1016put('COPTIC_CAPITAL_LETTER_HORI, 'codepoint, 0x03E8);
1017put('COPTIC_SMALL_LETTER_HORI, 'codepoint, 0x03E9);
1018put('COPTIC_CAPITAL_LETTER_GANGIA, 'codepoint, 0x03EA);
1019put('COPTIC_SMALL_LETTER_GANGIA, 'codepoint, 0x03EB);
1020put('COPTIC_CAPITAL_LETTER_SHIMA, 'codepoint, 0x03EC);
1021put('COPTIC_SMALL_LETTER_SHIMA, 'codepoint, 0x03ED);
1022put('COPTIC_CAPITAL_LETTER_DEI, 'codepoint, 0x03EE);
1023put('COPTIC_SMALL_LETTER_DEI, 'codepoint, 0x03EF);
1024put('GREEK_KAPPA_SYMBOL, 'codepoint, 0x03F0);
1025put('GREEK_RHO_SYMBOL, 'codepoint, 0x03F1);
1026put('GREEK_LUNATE_SIGMA_SYMBOL, 'codepoint, 0x03F2);
1027put('GREEK_LETTER_YOT, 'codepoint, 0x03F3);
1028put('GREEK_CAPITAL_THETA_SYMBOL, 'codepoint, 0x03F4);
1029put('GREEK_LUNATE_EPSILON_SYMBOL, 'codepoint, 0x03F5);
1030put('GREEK_REVERSED_LUNATE_EPSILON_SYMBOL, 'codepoint, 0x03F6);
1031put('GREEK_CAPITAL_LETTER_SHO, 'codepoint, 0x03F7);
1032put('GREEK_SMALL_LETTER_SHO, 'codepoint, 0x03F8);
1033put('GREEK_CAPITAL_LUNATE_SIGMA_SYMBOL, 'codepoint, 0x03F9);
1034put('GREEK_CAPITAL_LETTER_SAN, 'codepoint, 0x03FA);
1035put('GREEK_SMALL_LETTER_SAN, 'codepoint, 0x03FB);
1036put('GREEK_RHO_WITH_STROKE_SYMBOL, 'codepoint, 0x03FC);
1037put('GREEK_CAPITAL_REVERSED_LUNATE_SIGMA_SYMBOL, 'codepoint, 0x03FD);
1038put('GREEK_CAPITAL_DOTTED_LUNATE_SIGMA_SYMBOL, 'codepoint, 0x03FE);
1039put('GREEK_CAPITAL_REVERSED_DOTTED_LUNATE_SIGMA_SYMBOL, 'codepoint, 0x03FF);
1040put('CYRILLIC_CAPITAL_LETTER_IE_WITH_GRAVE, 'codepoint, 0x0400);
1041put('CYRILLIC_CAPITAL_LETTER_IO, 'codepoint, 0x0401);
1042put('CYRILLIC_CAPITAL_LETTER_DJE, 'codepoint, 0x0402);
1043put('CYRILLIC_CAPITAL_LETTER_GJE, 'codepoint, 0x0403);
1044put('CYRILLIC_CAPITAL_LETTER_UKRAINIAN_IE, 'codepoint, 0x0404);
1045put('CYRILLIC_CAPITAL_LETTER_DZE, 'codepoint, 0x0405);
1046put('CYRILLIC_CAPITAL_LETTER_BYELORUSSIAN_UKRAINIAN_I, 'codepoint, 0x0406);
1047put('CYRILLIC_CAPITAL_LETTER_YI, 'codepoint, 0x0407);
1048put('CYRILLIC_CAPITAL_LETTER_JE, 'codepoint, 0x0408);
1049put('CYRILLIC_CAPITAL_LETTER_LJE, 'codepoint, 0x0409);
1050put('CYRILLIC_CAPITAL_LETTER_NJE, 'codepoint, 0x040A);
1051put('CYRILLIC_CAPITAL_LETTER_TSHE, 'codepoint, 0x040B);
1052put('CYRILLIC_CAPITAL_LETTER_KJE, 'codepoint, 0x040C);
1053put('CYRILLIC_CAPITAL_LETTER_I_WITH_GRAVE, 'codepoint, 0x040D);
1054put('CYRILLIC_CAPITAL_LETTER_SHORT_U, 'codepoint, 0x040E);
1055put('CYRILLIC_CAPITAL_LETTER_DZHE, 'codepoint, 0x040F);
1056put('CYRILLIC_CAPITAL_LETTER_A, 'codepoint, 0x0410);
1057put('CYRILLIC_CAPITAL_LETTER_BE, 'codepoint, 0x0411);
1058put('CYRILLIC_CAPITAL_LETTER_VE, 'codepoint, 0x0412);
1059put('CYRILLIC_CAPITAL_LETTER_GHE, 'codepoint, 0x0413);
1060put('CYRILLIC_CAPITAL_LETTER_DE, 'codepoint, 0x0414);
1061put('CYRILLIC_CAPITAL_LETTER_IE, 'codepoint, 0x0415);
1062put('CYRILLIC_CAPITAL_LETTER_ZHE, 'codepoint, 0x0416);
1063put('CYRILLIC_CAPITAL_LETTER_ZE, 'codepoint, 0x0417);
1064put('CYRILLIC_CAPITAL_LETTER_I, 'codepoint, 0x0418);
1065put('CYRILLIC_CAPITAL_LETTER_SHORT_I, 'codepoint, 0x0419);
1066put('CYRILLIC_CAPITAL_LETTER_KA, 'codepoint, 0x041A);
1067put('CYRILLIC_CAPITAL_LETTER_EL, 'codepoint, 0x041B);
1068put('CYRILLIC_CAPITAL_LETTER_EM, 'codepoint, 0x041C);
1069put('CYRILLIC_CAPITAL_LETTER_EN, 'codepoint, 0x041D);
1070put('CYRILLIC_CAPITAL_LETTER_O, 'codepoint, 0x041E);
1071put('CYRILLIC_CAPITAL_LETTER_PE, 'codepoint, 0x041F);
1072put('CYRILLIC_CAPITAL_LETTER_ER, 'codepoint, 0x0420);
1073put('CYRILLIC_CAPITAL_LETTER_ES, 'codepoint, 0x0421);
1074put('CYRILLIC_CAPITAL_LETTER_TE, 'codepoint, 0x0422);
1075put('CYRILLIC_CAPITAL_LETTER_U, 'codepoint, 0x0423);
1076put('CYRILLIC_CAPITAL_LETTER_EF, 'codepoint, 0x0424);
1077put('CYRILLIC_CAPITAL_LETTER_HA, 'codepoint, 0x0425);
1078put('CYRILLIC_CAPITAL_LETTER_TSE, 'codepoint, 0x0426);
1079put('CYRILLIC_CAPITAL_LETTER_CHE, 'codepoint, 0x0427);
1080put('CYRILLIC_CAPITAL_LETTER_SHA, 'codepoint, 0x0428);
1081put('CYRILLIC_CAPITAL_LETTER_SHCHA, 'codepoint, 0x0429);
1082put('CYRILLIC_CAPITAL_LETTER_HARD_SIGN, 'codepoint, 0x042A);
1083put('CYRILLIC_CAPITAL_LETTER_YERU, 'codepoint, 0x042B);
1084put('CYRILLIC_CAPITAL_LETTER_SOFT_SIGN, 'codepoint, 0x042C);
1085put('CYRILLIC_CAPITAL_LETTER_E, 'codepoint, 0x042D);
1086put('CYRILLIC_CAPITAL_LETTER_YU, 'codepoint, 0x042E);
1087put('CYRILLIC_CAPITAL_LETTER_YA, 'codepoint, 0x042F);
1088put('CYRILLIC_SMALL_LETTER_A, 'codepoint, 0x0430);
1089put('CYRILLIC_SMALL_LETTER_BE, 'codepoint, 0x0431);
1090put('CYRILLIC_SMALL_LETTER_VE, 'codepoint, 0x0432);
1091put('CYRILLIC_SMALL_LETTER_GHE, 'codepoint, 0x0433);
1092put('CYRILLIC_SMALL_LETTER_DE, 'codepoint, 0x0434);
1093put('CYRILLIC_SMALL_LETTER_IE, 'codepoint, 0x0435);
1094put('CYRILLIC_SMALL_LETTER_ZHE, 'codepoint, 0x0436);
1095put('CYRILLIC_SMALL_LETTER_ZE, 'codepoint, 0x0437);
1096put('CYRILLIC_SMALL_LETTER_I, 'codepoint, 0x0438);
1097put('CYRILLIC_SMALL_LETTER_SHORT_I, 'codepoint, 0x0439);
1098put('CYRILLIC_SMALL_LETTER_KA, 'codepoint, 0x043A);
1099put('CYRILLIC_SMALL_LETTER_EL, 'codepoint, 0x043B);
1100put('CYRILLIC_SMALL_LETTER_EM, 'codepoint, 0x043C);
1101put('CYRILLIC_SMALL_LETTER_EN, 'codepoint, 0x043D);
1102put('CYRILLIC_SMALL_LETTER_O, 'codepoint, 0x043E);
1103put('CYRILLIC_SMALL_LETTER_PE, 'codepoint, 0x043F);
1104put('CYRILLIC_SMALL_LETTER_ER, 'codepoint, 0x0440);
1105put('CYRILLIC_SMALL_LETTER_ES, 'codepoint, 0x0441);
1106put('CYRILLIC_SMALL_LETTER_TE, 'codepoint, 0x0442);
1107put('CYRILLIC_SMALL_LETTER_U, 'codepoint, 0x0443);
1108put('CYRILLIC_SMALL_LETTER_EF, 'codepoint, 0x0444);
1109put('CYRILLIC_SMALL_LETTER_HA, 'codepoint, 0x0445);
1110put('CYRILLIC_SMALL_LETTER_TSE, 'codepoint, 0x0446);
1111put('CYRILLIC_SMALL_LETTER_CHE, 'codepoint, 0x0447);
1112put('CYRILLIC_SMALL_LETTER_SHA, 'codepoint, 0x0448);
1113put('CYRILLIC_SMALL_LETTER_SHCHA, 'codepoint, 0x0449);
1114put('CYRILLIC_SMALL_LETTER_HARD_SIGN, 'codepoint, 0x044A);
1115put('CYRILLIC_SMALL_LETTER_YERU, 'codepoint, 0x044B);
1116put('CYRILLIC_SMALL_LETTER_SOFT_SIGN, 'codepoint, 0x044C);
1117put('CYRILLIC_SMALL_LETTER_E, 'codepoint, 0x044D);
1118put('CYRILLIC_SMALL_LETTER_YU, 'codepoint, 0x044E);
1119put('CYRILLIC_SMALL_LETTER_YA, 'codepoint, 0x044F);
1120put('CYRILLIC_SMALL_LETTER_IE_WITH_GRAVE, 'codepoint, 0x0450);
1121put('CYRILLIC_SMALL_LETTER_IO, 'codepoint, 0x0451);
1122put('CYRILLIC_SMALL_LETTER_DJE, 'codepoint, 0x0452);
1123put('CYRILLIC_SMALL_LETTER_GJE, 'codepoint, 0x0453);
1124put('CYRILLIC_SMALL_LETTER_UKRAINIAN_IE, 'codepoint, 0x0454);
1125put('CYRILLIC_SMALL_LETTER_DZE, 'codepoint, 0x0455);
1126put('CYRILLIC_SMALL_LETTER_BYELORUSSIAN_UKRAINIAN_I, 'codepoint, 0x0456);
1127put('CYRILLIC_SMALL_LETTER_YI, 'codepoint, 0x0457);
1128put('CYRILLIC_SMALL_LETTER_JE, 'codepoint, 0x0458);
1129put('CYRILLIC_SMALL_LETTER_LJE, 'codepoint, 0x0459);
1130put('CYRILLIC_SMALL_LETTER_NJE, 'codepoint, 0x045A);
1131put('CYRILLIC_SMALL_LETTER_TSHE, 'codepoint, 0x045B);
1132put('CYRILLIC_SMALL_LETTER_KJE, 'codepoint, 0x045C);
1133put('CYRILLIC_SMALL_LETTER_I_WITH_GRAVE, 'codepoint, 0x045D);
1134put('CYRILLIC_SMALL_LETTER_SHORT_U, 'codepoint, 0x045E);
1135put('CYRILLIC_SMALL_LETTER_DZHE, 'codepoint, 0x045F);
1136put('CYRILLIC_CAPITAL_LETTER_OMEGA, 'codepoint, 0x0460);
1137put('CYRILLIC_SMALL_LETTER_OMEGA, 'codepoint, 0x0461);
1138put('CYRILLIC_CAPITAL_LETTER_YAT, 'codepoint, 0x0462);
1139put('CYRILLIC_SMALL_LETTER_YAT, 'codepoint, 0x0463);
1140put('CYRILLIC_CAPITAL_LETTER_IOTIFIED_E, 'codepoint, 0x0464);
1141put('CYRILLIC_SMALL_LETTER_IOTIFIED_E, 'codepoint, 0x0465);
1142put('CYRILLIC_CAPITAL_LETTER_LITTLE_YUS, 'codepoint, 0x0466);
1143put('CYRILLIC_SMALL_LETTER_LITTLE_YUS, 'codepoint, 0x0467);
1144put('CYRILLIC_CAPITAL_LETTER_IOTIFIED_LITTLE_YUS, 'codepoint, 0x0468);
1145put('CYRILLIC_SMALL_LETTER_IOTIFIED_LITTLE_YUS, 'codepoint, 0x0469);
1146put('CYRILLIC_CAPITAL_LETTER_BIG_YUS, 'codepoint, 0x046A);
1147put('CYRILLIC_SMALL_LETTER_BIG_YUS, 'codepoint, 0x046B);
1148put('CYRILLIC_CAPITAL_LETTER_IOTIFIED_BIG_YUS, 'codepoint, 0x046C);
1149put('CYRILLIC_SMALL_LETTER_IOTIFIED_BIG_YUS, 'codepoint, 0x046D);
1150put('CYRILLIC_CAPITAL_LETTER_KSI, 'codepoint, 0x046E);
1151put('CYRILLIC_SMALL_LETTER_KSI, 'codepoint, 0x046F);
1152put('CYRILLIC_CAPITAL_LETTER_PSI, 'codepoint, 0x0470);
1153put('CYRILLIC_SMALL_LETTER_PSI, 'codepoint, 0x0471);
1154put('CYRILLIC_CAPITAL_LETTER_FITA, 'codepoint, 0x0472);
1155put('CYRILLIC_SMALL_LETTER_FITA, 'codepoint, 0x0473);
1156put('CYRILLIC_CAPITAL_LETTER_IZHITSA, 'codepoint, 0x0474);
1157put('CYRILLIC_SMALL_LETTER_IZHITSA, 'codepoint, 0x0475);
1158put('CYRILLIC_CAPITAL_LETTER_IZHITSA_WITH_DOUBLE_GRAVE_ACCENT, 'codepoint, 0x0476);
1159put('CYRILLIC_SMALL_LETTER_IZHITSA_WITH_DOUBLE_GRAVE_ACCENT, 'codepoint, 0x0477);
1160put('CYRILLIC_CAPITAL_LETTER_UK, 'codepoint, 0x0478);
1161put('CYRILLIC_SMALL_LETTER_UK, 'codepoint, 0x0479);
1162put('CYRILLIC_CAPITAL_LETTER_ROUND_OMEGA, 'codepoint, 0x047A);
1163put('CYRILLIC_SMALL_LETTER_ROUND_OMEGA, 'codepoint, 0x047B);
1164put('CYRILLIC_CAPITAL_LETTER_OMEGA_WITH_TITLO, 'codepoint, 0x047C);
1165put('CYRILLIC_SMALL_LETTER_OMEGA_WITH_TITLO, 'codepoint, 0x047D);
1166put('CYRILLIC_CAPITAL_LETTER_OT, 'codepoint, 0x047E);
1167put('CYRILLIC_SMALL_LETTER_OT, 'codepoint, 0x047F);
1168put('CYRILLIC_CAPITAL_LETTER_KOPPA, 'codepoint, 0x0480);
1169put('CYRILLIC_SMALL_LETTER_KOPPA, 'codepoint, 0x0481);
1170put('CYRILLIC_THOUSANDS_SIGN, 'codepoint, 0x0482);
1171put('COMBINING_CYRILLIC_TITLO, 'codepoint, 0x0483);
1172put('COMBINING_CYRILLIC_PALATALIZATION, 'codepoint, 0x0484);
1173put('COMBINING_CYRILLIC_DASIA_PNEUMATA, 'codepoint, 0x0485);
1174put('COMBINING_CYRILLIC_PSILI_PNEUMATA, 'codepoint, 0x0486);
1175put('COMBINING_CYRILLIC_POKRYTIE, 'codepoint, 0x0487);
1176put('COMBINING_CYRILLIC_HUNDRED_THOUSANDS_SIGN, 'codepoint, 0x0488);
1177put('COMBINING_CYRILLIC_MILLIONS_SIGN, 'codepoint, 0x0489);
1178put('CYRILLIC_CAPITAL_LETTER_SHORT_I_WITH_TAIL, 'codepoint, 0x048A);
1179put('CYRILLIC_SMALL_LETTER_SHORT_I_WITH_TAIL, 'codepoint, 0x048B);
1180put('CYRILLIC_CAPITAL_LETTER_SEMISOFT_SIGN, 'codepoint, 0x048C);
1181put('CYRILLIC_SMALL_LETTER_SEMISOFT_SIGN, 'codepoint, 0x048D);
1182put('CYRILLIC_CAPITAL_LETTER_ER_WITH_TICK, 'codepoint, 0x048E);
1183put('CYRILLIC_SMALL_LETTER_ER_WITH_TICK, 'codepoint, 0x048F);
1184put('CYRILLIC_CAPITAL_LETTER_GHE_WITH_UPTURN, 'codepoint, 0x0490);
1185put('CYRILLIC_SMALL_LETTER_GHE_WITH_UPTURN, 'codepoint, 0x0491);
1186put('CYRILLIC_CAPITAL_LETTER_GHE_WITH_STROKE, 'codepoint, 0x0492);
1187put('CYRILLIC_SMALL_LETTER_GHE_WITH_STROKE, 'codepoint, 0x0493);
1188put('CYRILLIC_CAPITAL_LETTER_GHE_WITH_MIDDLE_HOOK, 'codepoint, 0x0494);
1189put('CYRILLIC_SMALL_LETTER_GHE_WITH_MIDDLE_HOOK, 'codepoint, 0x0495);
1190put('CYRILLIC_CAPITAL_LETTER_ZHE_WITH_DESCENDER, 'codepoint, 0x0496);
1191put('CYRILLIC_SMALL_LETTER_ZHE_WITH_DESCENDER, 'codepoint, 0x0497);
1192put('CYRILLIC_CAPITAL_LETTER_ZE_WITH_DESCENDER, 'codepoint, 0x0498);
1193put('CYRILLIC_SMALL_LETTER_ZE_WITH_DESCENDER, 'codepoint, 0x0499);
1194put('CYRILLIC_CAPITAL_LETTER_KA_WITH_DESCENDER, 'codepoint, 0x049A);
1195put('CYRILLIC_SMALL_LETTER_KA_WITH_DESCENDER, 'codepoint, 0x049B);
1196put('CYRILLIC_CAPITAL_LETTER_KA_WITH_VERTICAL_STROKE, 'codepoint, 0x049C);
1197put('CYRILLIC_SMALL_LETTER_KA_WITH_VERTICAL_STROKE, 'codepoint, 0x049D);
1198put('CYRILLIC_CAPITAL_LETTER_KA_WITH_STROKE, 'codepoint, 0x049E);
1199put('CYRILLIC_SMALL_LETTER_KA_WITH_STROKE, 'codepoint, 0x049F);
1200put('CYRILLIC_CAPITAL_LETTER_BASHKIR_KA, 'codepoint, 0x04A0);
1201put('CYRILLIC_SMALL_LETTER_BASHKIR_KA, 'codepoint, 0x04A1);
1202put('CYRILLIC_CAPITAL_LETTER_EN_WITH_DESCENDER, 'codepoint, 0x04A2);
1203put('CYRILLIC_SMALL_LETTER_EN_WITH_DESCENDER, 'codepoint, 0x04A3);
1204put('CYRILLIC_CAPITAL_LIGATURE_EN_GHE, 'codepoint, 0x04A4);
1205put('CYRILLIC_SMALL_LIGATURE_EN_GHE, 'codepoint, 0x04A5);
1206put('CYRILLIC_CAPITAL_LETTER_PE_WITH_MIDDLE_HOOK, 'codepoint, 0x04A6);
1207put('CYRILLIC_SMALL_LETTER_PE_WITH_MIDDLE_HOOK, 'codepoint, 0x04A7);
1208put('CYRILLIC_CAPITAL_LETTER_ABKHASIAN_HA, 'codepoint, 0x04A8);
1209put('CYRILLIC_SMALL_LETTER_ABKHASIAN_HA, 'codepoint, 0x04A9);
1210put('CYRILLIC_CAPITAL_LETTER_ES_WITH_DESCENDER, 'codepoint, 0x04AA);
1211put('CYRILLIC_SMALL_LETTER_ES_WITH_DESCENDER, 'codepoint, 0x04AB);
1212put('CYRILLIC_CAPITAL_LETTER_TE_WITH_DESCENDER, 'codepoint, 0x04AC);
1213put('CYRILLIC_SMALL_LETTER_TE_WITH_DESCENDER, 'codepoint, 0x04AD);
1214put('CYRILLIC_CAPITAL_LETTER_STRAIGHT_U, 'codepoint, 0x04AE);
1215put('CYRILLIC_SMALL_LETTER_STRAIGHT_U, 'codepoint, 0x04AF);
1216put('CYRILLIC_CAPITAL_LETTER_STRAIGHT_U_WITH_STROKE, 'codepoint, 0x04B0);
1217put('CYRILLIC_SMALL_LETTER_STRAIGHT_U_WITH_STROKE, 'codepoint, 0x04B1);
1218put('CYRILLIC_CAPITAL_LETTER_HA_WITH_DESCENDER, 'codepoint, 0x04B2);
1219put('CYRILLIC_SMALL_LETTER_HA_WITH_DESCENDER, 'codepoint, 0x04B3);
1220put('CYRILLIC_CAPITAL_LIGATURE_TE_TSE, 'codepoint, 0x04B4);
1221put('CYRILLIC_SMALL_LIGATURE_TE_TSE, 'codepoint, 0x04B5);
1222put('CYRILLIC_CAPITAL_LETTER_CHE_WITH_DESCENDER, 'codepoint, 0x04B6);
1223put('CYRILLIC_SMALL_LETTER_CHE_WITH_DESCENDER, 'codepoint, 0x04B7);
1224put('CYRILLIC_CAPITAL_LETTER_CHE_WITH_VERTICAL_STROKE, 'codepoint, 0x04B8);
1225put('CYRILLIC_SMALL_LETTER_CHE_WITH_VERTICAL_STROKE, 'codepoint, 0x04B9);
1226put('CYRILLIC_CAPITAL_LETTER_SHHA, 'codepoint, 0x04BA);
1227put('CYRILLIC_SMALL_LETTER_SHHA, 'codepoint, 0x04BB);
1228put('CYRILLIC_CAPITAL_LETTER_ABKHASIAN_CHE, 'codepoint, 0x04BC);
1229put('CYRILLIC_SMALL_LETTER_ABKHASIAN_CHE, 'codepoint, 0x04BD);
1230put('CYRILLIC_CAPITAL_LETTER_ABKHASIAN_CHE_WITH_DESCENDER, 'codepoint, 0x04BE);
1231put('CYRILLIC_SMALL_LETTER_ABKHASIAN_CHE_WITH_DESCENDER, 'codepoint, 0x04BF);
1232put('CYRILLIC_LETTER_PALOCHKA, 'codepoint, 0x04C0);
1233put('CYRILLIC_CAPITAL_LETTER_ZHE_WITH_BREVE, 'codepoint, 0x04C1);
1234put('CYRILLIC_SMALL_LETTER_ZHE_WITH_BREVE, 'codepoint, 0x04C2);
1235put('CYRILLIC_CAPITAL_LETTER_KA_WITH_HOOK, 'codepoint, 0x04C3);
1236put('CYRILLIC_SMALL_LETTER_KA_WITH_HOOK, 'codepoint, 0x04C4);
1237put('CYRILLIC_CAPITAL_LETTER_EL_WITH_TAIL, 'codepoint, 0x04C5);
1238put('CYRILLIC_SMALL_LETTER_EL_WITH_TAIL, 'codepoint, 0x04C6);
1239put('CYRILLIC_CAPITAL_LETTER_EN_WITH_HOOK, 'codepoint, 0x04C7);
1240put('CYRILLIC_SMALL_LETTER_EN_WITH_HOOK, 'codepoint, 0x04C8);
1241put('CYRILLIC_CAPITAL_LETTER_EN_WITH_TAIL, 'codepoint, 0x04C9);
1242put('CYRILLIC_SMALL_LETTER_EN_WITH_TAIL, 'codepoint, 0x04CA);
1243put('CYRILLIC_CAPITAL_LETTER_KHAKASSIAN_CHE, 'codepoint, 0x04CB);
1244put('CYRILLIC_SMALL_LETTER_KHAKASSIAN_CHE, 'codepoint, 0x04CC);
1245put('CYRILLIC_CAPITAL_LETTER_EM_WITH_TAIL, 'codepoint, 0x04CD);
1246put('CYRILLIC_SMALL_LETTER_EM_WITH_TAIL, 'codepoint, 0x04CE);
1247put('CYRILLIC_SMALL_LETTER_PALOCHKA, 'codepoint, 0x04CF);
1248put('CYRILLIC_CAPITAL_LETTER_A_WITH_BREVE, 'codepoint, 0x04D0);
1249put('CYRILLIC_SMALL_LETTER_A_WITH_BREVE, 'codepoint, 0x04D1);
1250put('CYRILLIC_CAPITAL_LETTER_A_WITH_DIAERESIS, 'codepoint, 0x04D2);
1251put('CYRILLIC_SMALL_LETTER_A_WITH_DIAERESIS, 'codepoint, 0x04D3);
1252put('CYRILLIC_CAPITAL_LIGATURE_A_IE, 'codepoint, 0x04D4);
1253put('CYRILLIC_SMALL_LIGATURE_A_IE, 'codepoint, 0x04D5);
1254put('CYRILLIC_CAPITAL_LETTER_IE_WITH_BREVE, 'codepoint, 0x04D6);
1255put('CYRILLIC_SMALL_LETTER_IE_WITH_BREVE, 'codepoint, 0x04D7);
1256put('CYRILLIC_CAPITAL_LETTER_SCHWA, 'codepoint, 0x04D8);
1257put('CYRILLIC_SMALL_LETTER_SCHWA, 'codepoint, 0x04D9);
1258put('CYRILLIC_CAPITAL_LETTER_SCHWA_WITH_DIAERESIS, 'codepoint, 0x04DA);
1259put('CYRILLIC_SMALL_LETTER_SCHWA_WITH_DIAERESIS, 'codepoint, 0x04DB);
1260put('CYRILLIC_CAPITAL_LETTER_ZHE_WITH_DIAERESIS, 'codepoint, 0x04DC);
1261put('CYRILLIC_SMALL_LETTER_ZHE_WITH_DIAERESIS, 'codepoint, 0x04DD);
1262put('CYRILLIC_CAPITAL_LETTER_ZE_WITH_DIAERESIS, 'codepoint, 0x04DE);
1263put('CYRILLIC_SMALL_LETTER_ZE_WITH_DIAERESIS, 'codepoint, 0x04DF);
1264put('CYRILLIC_CAPITAL_LETTER_ABKHASIAN_DZE, 'codepoint, 0x04E0);
1265put('CYRILLIC_SMALL_LETTER_ABKHASIAN_DZE, 'codepoint, 0x04E1);
1266put('CYRILLIC_CAPITAL_LETTER_I_WITH_MACRON, 'codepoint, 0x04E2);
1267put('CYRILLIC_SMALL_LETTER_I_WITH_MACRON, 'codepoint, 0x04E3);
1268put('CYRILLIC_CAPITAL_LETTER_I_WITH_DIAERESIS, 'codepoint, 0x04E4);
1269put('CYRILLIC_SMALL_LETTER_I_WITH_DIAERESIS, 'codepoint, 0x04E5);
1270put('CYRILLIC_CAPITAL_LETTER_O_WITH_DIAERESIS, 'codepoint, 0x04E6);
1271put('CYRILLIC_SMALL_LETTER_O_WITH_DIAERESIS, 'codepoint, 0x04E7);
1272put('CYRILLIC_CAPITAL_LETTER_BARRED_O, 'codepoint, 0x04E8);
1273put('CYRILLIC_SMALL_LETTER_BARRED_O, 'codepoint, 0x04E9);
1274put('CYRILLIC_CAPITAL_LETTER_BARRED_O_WITH_DIAERESIS, 'codepoint, 0x04EA);
1275put('CYRILLIC_SMALL_LETTER_BARRED_O_WITH_DIAERESIS, 'codepoint, 0x04EB);
1276put('CYRILLIC_CAPITAL_LETTER_E_WITH_DIAERESIS, 'codepoint, 0x04EC);
1277put('CYRILLIC_SMALL_LETTER_E_WITH_DIAERESIS, 'codepoint, 0x04ED);
1278put('CYRILLIC_CAPITAL_LETTER_U_WITH_MACRON, 'codepoint, 0x04EE);
1279put('CYRILLIC_SMALL_LETTER_U_WITH_MACRON, 'codepoint, 0x04EF);
1280put('CYRILLIC_CAPITAL_LETTER_U_WITH_DIAERESIS, 'codepoint, 0x04F0);
1281put('CYRILLIC_SMALL_LETTER_U_WITH_DIAERESIS, 'codepoint, 0x04F1);
1282put('CYRILLIC_CAPITAL_LETTER_U_WITH_DOUBLE_ACUTE, 'codepoint, 0x04F2);
1283put('CYRILLIC_SMALL_LETTER_U_WITH_DOUBLE_ACUTE, 'codepoint, 0x04F3);
1284put('CYRILLIC_CAPITAL_LETTER_CHE_WITH_DIAERESIS, 'codepoint, 0x04F4);
1285put('CYRILLIC_SMALL_LETTER_CHE_WITH_DIAERESIS, 'codepoint, 0x04F5);
1286put('CYRILLIC_CAPITAL_LETTER_GHE_WITH_DESCENDER, 'codepoint, 0x04F6);
1287put('CYRILLIC_SMALL_LETTER_GHE_WITH_DESCENDER, 'codepoint, 0x04F7);
1288put('CYRILLIC_CAPITAL_LETTER_YERU_WITH_DIAERESIS, 'codepoint, 0x04F8);
1289put('CYRILLIC_SMALL_LETTER_YERU_WITH_DIAERESIS, 'codepoint, 0x04F9);
1290put('CYRILLIC_CAPITAL_LETTER_GHE_WITH_STROKE_AND_HOOK, 'codepoint, 0x04FA);
1291put('CYRILLIC_SMALL_LETTER_GHE_WITH_STROKE_AND_HOOK, 'codepoint, 0x04FB);
1292put('CYRILLIC_CAPITAL_LETTER_HA_WITH_HOOK, 'codepoint, 0x04FC);
1293put('CYRILLIC_SMALL_LETTER_HA_WITH_HOOK, 'codepoint, 0x04FD);
1294put('CYRILLIC_CAPITAL_LETTER_HA_WITH_STROKE, 'codepoint, 0x04FE);
1295put('CYRILLIC_SMALL_LETTER_HA_WITH_STROKE, 'codepoint, 0x04FF);
1296put('CYRILLIC_CAPITAL_LETTER_KOMI_DE, 'codepoint, 0x0500);
1297put('CYRILLIC_SMALL_LETTER_KOMI_DE, 'codepoint, 0x0501);
1298put('CYRILLIC_CAPITAL_LETTER_KOMI_DJE, 'codepoint, 0x0502);
1299put('CYRILLIC_SMALL_LETTER_KOMI_DJE, 'codepoint, 0x0503);
1300put('CYRILLIC_CAPITAL_LETTER_KOMI_ZJE, 'codepoint, 0x0504);
1301put('CYRILLIC_SMALL_LETTER_KOMI_ZJE, 'codepoint, 0x0505);
1302put('CYRILLIC_CAPITAL_LETTER_KOMI_DZJE, 'codepoint, 0x0506);
1303put('CYRILLIC_SMALL_LETTER_KOMI_DZJE, 'codepoint, 0x0507);
1304put('CYRILLIC_CAPITAL_LETTER_KOMI_LJE, 'codepoint, 0x0508);
1305put('CYRILLIC_SMALL_LETTER_KOMI_LJE, 'codepoint, 0x0509);
1306put('CYRILLIC_CAPITAL_LETTER_KOMI_NJE, 'codepoint, 0x050A);
1307put('CYRILLIC_SMALL_LETTER_KOMI_NJE, 'codepoint, 0x050B);
1308put('CYRILLIC_CAPITAL_LETTER_KOMI_SJE, 'codepoint, 0x050C);
1309put('CYRILLIC_SMALL_LETTER_KOMI_SJE, 'codepoint, 0x050D);
1310put('CYRILLIC_CAPITAL_LETTER_KOMI_TJE, 'codepoint, 0x050E);
1311put('CYRILLIC_SMALL_LETTER_KOMI_TJE, 'codepoint, 0x050F);
1312put('CYRILLIC_CAPITAL_LETTER_REVERSED_ZE, 'codepoint, 0x0510);
1313put('CYRILLIC_SMALL_LETTER_REVERSED_ZE, 'codepoint, 0x0511);
1314put('CYRILLIC_CAPITAL_LETTER_EL_WITH_HOOK, 'codepoint, 0x0512);
1315put('CYRILLIC_SMALL_LETTER_EL_WITH_HOOK, 'codepoint, 0x0513);
1316put('CYRILLIC_CAPITAL_LETTER_LHA, 'codepoint, 0x0514);
1317put('CYRILLIC_SMALL_LETTER_LHA, 'codepoint, 0x0515);
1318put('CYRILLIC_CAPITAL_LETTER_RHA, 'codepoint, 0x0516);
1319put('CYRILLIC_SMALL_LETTER_RHA, 'codepoint, 0x0517);
1320put('CYRILLIC_CAPITAL_LETTER_YAE, 'codepoint, 0x0518);
1321put('CYRILLIC_SMALL_LETTER_YAE, 'codepoint, 0x0519);
1322put('CYRILLIC_CAPITAL_LETTER_QA, 'codepoint, 0x051A);
1323put('CYRILLIC_SMALL_LETTER_QA, 'codepoint, 0x051B);
1324put('CYRILLIC_CAPITAL_LETTER_WE, 'codepoint, 0x051C);
1325put('CYRILLIC_SMALL_LETTER_WE, 'codepoint, 0x051D);
1326put('CYRILLIC_CAPITAL_LETTER_ALEUT_KA, 'codepoint, 0x051E);
1327put('CYRILLIC_SMALL_LETTER_ALEUT_KA, 'codepoint, 0x051F);
1328put('CYRILLIC_CAPITAL_LETTER_EL_WITH_MIDDLE_HOOK, 'codepoint, 0x0520);
1329put('CYRILLIC_SMALL_LETTER_EL_WITH_MIDDLE_HOOK, 'codepoint, 0x0521);
1330put('CYRILLIC_CAPITAL_LETTER_EN_WITH_MIDDLE_HOOK, 'codepoint, 0x0522);
1331put('CYRILLIC_SMALL_LETTER_EN_WITH_MIDDLE_HOOK, 'codepoint, 0x0523);
1332put('CYRILLIC_CAPITAL_LETTER_PE_WITH_DESCENDER, 'codepoint, 0x0524);
1333put('CYRILLIC_SMALL_LETTER_PE_WITH_DESCENDER, 'codepoint, 0x0525);
1334put('CYRILLIC_CAPITAL_LETTER_SHHA_WITH_DESCENDER, 'codepoint, 0x0526);
1335put('CYRILLIC_SMALL_LETTER_SHHA_WITH_DESCENDER, 'codepoint, 0x0527);
1336put('CYRILLIC_CAPITAL_LETTER_EN_WITH_LEFT_HOOK, 'codepoint, 0x0528);
1337put('CYRILLIC_SMALL_LETTER_EN_WITH_LEFT_HOOK, 'codepoint, 0x0529);
1338put('CYRILLIC_CAPITAL_LETTER_DZZHE, 'codepoint, 0x052A);
1339put('CYRILLIC_SMALL_LETTER_DZZHE, 'codepoint, 0x052B);
1340put('CYRILLIC_CAPITAL_LETTER_DCHE, 'codepoint, 0x052C);
1341put('CYRILLIC_SMALL_LETTER_DCHE, 'codepoint, 0x052D);
1342put('CYRILLIC_CAPITAL_LETTER_EL_WITH_DESCENDER, 'codepoint, 0x052E);
1343put('CYRILLIC_SMALL_LETTER_EL_WITH_DESCENDER, 'codepoint, 0x052F);
1344put('ARMENIAN_CAPITAL_LETTER_AYB, 'codepoint, 0x0531);
1345put('ARMENIAN_CAPITAL_LETTER_BEN, 'codepoint, 0x0532);
1346put('ARMENIAN_CAPITAL_LETTER_GIM, 'codepoint, 0x0533);
1347put('ARMENIAN_CAPITAL_LETTER_DA, 'codepoint, 0x0534);
1348put('ARMENIAN_CAPITAL_LETTER_ECH, 'codepoint, 0x0535);
1349put('ARMENIAN_CAPITAL_LETTER_ZA, 'codepoint, 0x0536);
1350put('ARMENIAN_CAPITAL_LETTER_EH, 'codepoint, 0x0537);
1351put('ARMENIAN_CAPITAL_LETTER_ET, 'codepoint, 0x0538);
1352put('ARMENIAN_CAPITAL_LETTER_TO, 'codepoint, 0x0539);
1353put('ARMENIAN_CAPITAL_LETTER_ZHE, 'codepoint, 0x053A);
1354put('ARMENIAN_CAPITAL_LETTER_INI, 'codepoint, 0x053B);
1355put('ARMENIAN_CAPITAL_LETTER_LIWN, 'codepoint, 0x053C);
1356put('ARMENIAN_CAPITAL_LETTER_XEH, 'codepoint, 0x053D);
1357put('ARMENIAN_CAPITAL_LETTER_CA, 'codepoint, 0x053E);
1358put('ARMENIAN_CAPITAL_LETTER_KEN, 'codepoint, 0x053F);
1359put('ARMENIAN_CAPITAL_LETTER_HO, 'codepoint, 0x0540);
1360put('ARMENIAN_CAPITAL_LETTER_JA, 'codepoint, 0x0541);
1361put('ARMENIAN_CAPITAL_LETTER_GHAD, 'codepoint, 0x0542);
1362put('ARMENIAN_CAPITAL_LETTER_CHEH, 'codepoint, 0x0543);
1363put('ARMENIAN_CAPITAL_LETTER_MEN, 'codepoint, 0x0544);
1364put('ARMENIAN_CAPITAL_LETTER_YI, 'codepoint, 0x0545);
1365put('ARMENIAN_CAPITAL_LETTER_NOW, 'codepoint, 0x0546);
1366put('ARMENIAN_CAPITAL_LETTER_SHA, 'codepoint, 0x0547);
1367put('ARMENIAN_CAPITAL_LETTER_VO, 'codepoint, 0x0548);
1368put('ARMENIAN_CAPITAL_LETTER_CHA, 'codepoint, 0x0549);
1369put('ARMENIAN_CAPITAL_LETTER_PEH, 'codepoint, 0x054A);
1370put('ARMENIAN_CAPITAL_LETTER_JHEH, 'codepoint, 0x054B);
1371put('ARMENIAN_CAPITAL_LETTER_RA, 'codepoint, 0x054C);
1372put('ARMENIAN_CAPITAL_LETTER_SEH, 'codepoint, 0x054D);
1373put('ARMENIAN_CAPITAL_LETTER_VEW, 'codepoint, 0x054E);
1374put('ARMENIAN_CAPITAL_LETTER_TIWN, 'codepoint, 0x054F);
1375put('ARMENIAN_CAPITAL_LETTER_REH, 'codepoint, 0x0550);
1376put('ARMENIAN_CAPITAL_LETTER_CO, 'codepoint, 0x0551);
1377put('ARMENIAN_CAPITAL_LETTER_YIWN, 'codepoint, 0x0552);
1378put('ARMENIAN_CAPITAL_LETTER_PIWR, 'codepoint, 0x0553);
1379put('ARMENIAN_CAPITAL_LETTER_KEH, 'codepoint, 0x0554);
1380put('ARMENIAN_CAPITAL_LETTER_OH, 'codepoint, 0x0555);
1381put('ARMENIAN_CAPITAL_LETTER_FEH, 'codepoint, 0x0556);
1382put('ARMENIAN_MODIFIER_LETTER_LEFT_HALF_RING, 'codepoint, 0x0559);
1383put('ARMENIAN_APOSTROPHE, 'codepoint, 0x055A);
1384put('ARMENIAN_EMPHASIS_MARK, 'codepoint, 0x055B);
1385put('ARMENIAN_EXCLAMATION_MARK, 'codepoint, 0x055C);
1386put('ARMENIAN_COMMA, 'codepoint, 0x055D);
1387put('ARMENIAN_QUESTION_MARK, 'codepoint, 0x055E);
1388put('ARMENIAN_ABBREVIATION_MARK, 'codepoint, 0x055F);
1389put('ARMENIAN_SMALL_LETTER_AYB, 'codepoint, 0x0561);
1390put('ARMENIAN_SMALL_LETTER_BEN, 'codepoint, 0x0562);
1391put('ARMENIAN_SMALL_LETTER_GIM, 'codepoint, 0x0563);
1392put('ARMENIAN_SMALL_LETTER_DA, 'codepoint, 0x0564);
1393put('ARMENIAN_SMALL_LETTER_ECH, 'codepoint, 0x0565);
1394put('ARMENIAN_SMALL_LETTER_ZA, 'codepoint, 0x0566);
1395put('ARMENIAN_SMALL_LETTER_EH, 'codepoint, 0x0567);
1396put('ARMENIAN_SMALL_LETTER_ET, 'codepoint, 0x0568);
1397put('ARMENIAN_SMALL_LETTER_TO, 'codepoint, 0x0569);
1398put('ARMENIAN_SMALL_LETTER_ZHE, 'codepoint, 0x056A);
1399put('ARMENIAN_SMALL_LETTER_INI, 'codepoint, 0x056B);
1400put('ARMENIAN_SMALL_LETTER_LIWN, 'codepoint, 0x056C);
1401put('ARMENIAN_SMALL_LETTER_XEH, 'codepoint, 0x056D);
1402put('ARMENIAN_SMALL_LETTER_CA, 'codepoint, 0x056E);
1403put('ARMENIAN_SMALL_LETTER_KEN, 'codepoint, 0x056F);
1404put('ARMENIAN_SMALL_LETTER_HO, 'codepoint, 0x0570);
1405put('ARMENIAN_SMALL_LETTER_JA, 'codepoint, 0x0571);
1406put('ARMENIAN_SMALL_LETTER_GHAD, 'codepoint, 0x0572);
1407put('ARMENIAN_SMALL_LETTER_CHEH, 'codepoint, 0x0573);
1408put('ARMENIAN_SMALL_LETTER_MEN, 'codepoint, 0x0574);
1409put('ARMENIAN_SMALL_LETTER_YI, 'codepoint, 0x0575);
1410put('ARMENIAN_SMALL_LETTER_NOW, 'codepoint, 0x0576);
1411put('ARMENIAN_SMALL_LETTER_SHA, 'codepoint, 0x0577);
1412put('ARMENIAN_SMALL_LETTER_VO, 'codepoint, 0x0578);
1413put('ARMENIAN_SMALL_LETTER_CHA, 'codepoint, 0x0579);
1414put('ARMENIAN_SMALL_LETTER_PEH, 'codepoint, 0x057A);
1415put('ARMENIAN_SMALL_LETTER_JHEH, 'codepoint, 0x057B);
1416put('ARMENIAN_SMALL_LETTER_RA, 'codepoint, 0x057C);
1417put('ARMENIAN_SMALL_LETTER_SEH, 'codepoint, 0x057D);
1418put('ARMENIAN_SMALL_LETTER_VEW, 'codepoint, 0x057E);
1419put('ARMENIAN_SMALL_LETTER_TIWN, 'codepoint, 0x057F);
1420put('ARMENIAN_SMALL_LETTER_REH, 'codepoint, 0x0580);
1421put('ARMENIAN_SMALL_LETTER_CO, 'codepoint, 0x0581);
1422put('ARMENIAN_SMALL_LETTER_YIWN, 'codepoint, 0x0582);
1423put('ARMENIAN_SMALL_LETTER_PIWR, 'codepoint, 0x0583);
1424put('ARMENIAN_SMALL_LETTER_KEH, 'codepoint, 0x0584);
1425put('ARMENIAN_SMALL_LETTER_OH, 'codepoint, 0x0585);
1426put('ARMENIAN_SMALL_LETTER_FEH, 'codepoint, 0x0586);
1427put('ARMENIAN_SMALL_LIGATURE_ECH_YIWN, 'codepoint, 0x0587);
1428put('ARMENIAN_FULL_STOP, 'codepoint, 0x0589);
1429put('ARMENIAN_HYPHEN, 'codepoint, 0x058A);
1430put('RIGHT_FACING_ARMENIAN_ETERNITY_SIGN, 'codepoint, 0x058D);
1431put('LEFT_FACING_ARMENIAN_ETERNITY_SIGN, 'codepoint, 0x058E);
1432put('ARMENIAN_DRAM_SIGN, 'codepoint, 0x058F);
1433put('HEBREW_ACCENT_ETNAHTA, 'codepoint, 0x0591);
1434put('HEBREW_ACCENT_SEGOL, 'codepoint, 0x0592);
1435put('HEBREW_ACCENT_SHALSHELET, 'codepoint, 0x0593);
1436put('HEBREW_ACCENT_ZAQEF_QATAN, 'codepoint, 0x0594);
1437put('HEBREW_ACCENT_ZAQEF_GADOL, 'codepoint, 0x0595);
1438put('HEBREW_ACCENT_TIPEHA, 'codepoint, 0x0596);
1439put('HEBREW_ACCENT_REVIA, 'codepoint, 0x0597);
1440put('HEBREW_ACCENT_ZARQA, 'codepoint, 0x0598);
1441put('HEBREW_ACCENT_PASHTA, 'codepoint, 0x0599);
1442put('HEBREW_ACCENT_YETIV, 'codepoint, 0x059A);
1443put('HEBREW_ACCENT_TEVIR, 'codepoint, 0x059B);
1444put('HEBREW_ACCENT_GERESH, 'codepoint, 0x059C);
1445put('HEBREW_ACCENT_GERESH_MUQDAM, 'codepoint, 0x059D);
1446put('HEBREW_ACCENT_GERSHAYIM, 'codepoint, 0x059E);
1447put('HEBREW_ACCENT_QARNEY_PARA, 'codepoint, 0x059F);
1448put('HEBREW_ACCENT_TELISHA_GEDOLA, 'codepoint, 0x05A0);
1449put('HEBREW_ACCENT_PAZER, 'codepoint, 0x05A1);
1450put('HEBREW_ACCENT_ATNAH_HAFUKH, 'codepoint, 0x05A2);
1451put('HEBREW_ACCENT_MUNAH, 'codepoint, 0x05A3);
1452put('HEBREW_ACCENT_MAHAPAKH, 'codepoint, 0x05A4);
1453put('HEBREW_ACCENT_MERKHA, 'codepoint, 0x05A5);
1454put('HEBREW_ACCENT_MERKHA_KEFULA, 'codepoint, 0x05A6);
1455put('HEBREW_ACCENT_DARGA, 'codepoint, 0x05A7);
1456put('HEBREW_ACCENT_QADMA, 'codepoint, 0x05A8);
1457put('HEBREW_ACCENT_TELISHA_QETANA, 'codepoint, 0x05A9);
1458put('HEBREW_ACCENT_YERAH_BEN_YOMO, 'codepoint, 0x05AA);
1459put('HEBREW_ACCENT_OLE, 'codepoint, 0x05AB);
1460put('HEBREW_ACCENT_ILUY, 'codepoint, 0x05AC);
1461put('HEBREW_ACCENT_DEHI, 'codepoint, 0x05AD);
1462put('HEBREW_ACCENT_ZINOR, 'codepoint, 0x05AE);
1463put('HEBREW_MARK_MASORA_CIRCLE, 'codepoint, 0x05AF);
1464put('HEBREW_POINT_SHEVA, 'codepoint, 0x05B0);
1465put('HEBREW_POINT_HATAF_SEGOL, 'codepoint, 0x05B1);
1466put('HEBREW_POINT_HATAF_PATAH, 'codepoint, 0x05B2);
1467put('HEBREW_POINT_HATAF_QAMATS, 'codepoint, 0x05B3);
1468put('HEBREW_POINT_HIRIQ, 'codepoint, 0x05B4);
1469put('HEBREW_POINT_TSERE, 'codepoint, 0x05B5);
1470put('HEBREW_POINT_SEGOL, 'codepoint, 0x05B6);
1471put('HEBREW_POINT_PATAH, 'codepoint, 0x05B7);
1472put('HEBREW_POINT_QAMATS, 'codepoint, 0x05B8);
1473put('HEBREW_POINT_HOLAM, 'codepoint, 0x05B9);
1474put('HEBREW_POINT_HOLAM_HASER_FOR_VAV, 'codepoint, 0x05BA);
1475put('HEBREW_POINT_QUBUTS, 'codepoint, 0x05BB);
1476put('HEBREW_POINT_DAGESH_OR_MAPIQ, 'codepoint, 0x05BC);
1477put('HEBREW_POINT_METEG, 'codepoint, 0x05BD);
1478put('HEBREW_PUNCTUATION_MAQAF, 'codepoint, 0x05BE);
1479put('HEBREW_POINT_RAFE, 'codepoint, 0x05BF);
1480put('HEBREW_PUNCTUATION_PASEQ, 'codepoint, 0x05C0);
1481put('HEBREW_POINT_SHIN_DOT, 'codepoint, 0x05C1);
1482put('HEBREW_POINT_SIN_DOT, 'codepoint, 0x05C2);
1483put('HEBREW_PUNCTUATION_SOF_PASUQ, 'codepoint, 0x05C3);
1484put('HEBREW_MARK_UPPER_DOT, 'codepoint, 0x05C4);
1485put('HEBREW_MARK_LOWER_DOT, 'codepoint, 0x05C5);
1486put('HEBREW_PUNCTUATION_NUN_HAFUKHA, 'codepoint, 0x05C6);
1487put('HEBREW_POINT_QAMATS_QATAN, 'codepoint, 0x05C7);
1488put('HEBREW_LETTER_ALEF, 'codepoint, 0x05D0);
1489put('HEBREW_LETTER_BET, 'codepoint, 0x05D1);
1490put('HEBREW_LETTER_GIMEL, 'codepoint, 0x05D2);
1491put('HEBREW_LETTER_DALET, 'codepoint, 0x05D3);
1492put('HEBREW_LETTER_HE, 'codepoint, 0x05D4);
1493put('HEBREW_LETTER_VAV, 'codepoint, 0x05D5);
1494put('HEBREW_LETTER_ZAYIN, 'codepoint, 0x05D6);
1495put('HEBREW_LETTER_HET, 'codepoint, 0x05D7);
1496put('HEBREW_LETTER_TET, 'codepoint, 0x05D8);
1497put('HEBREW_LETTER_YOD, 'codepoint, 0x05D9);
1498put('HEBREW_LETTER_FINAL_KAF, 'codepoint, 0x05DA);
1499put('HEBREW_LETTER_KAF, 'codepoint, 0x05DB);
1500put('HEBREW_LETTER_LAMED, 'codepoint, 0x05DC);
1501put('HEBREW_LETTER_FINAL_MEM, 'codepoint, 0x05DD);
1502put('HEBREW_LETTER_MEM, 'codepoint, 0x05DE);
1503put('HEBREW_LETTER_FINAL_NUN, 'codepoint, 0x05DF);
1504put('HEBREW_LETTER_NUN, 'codepoint, 0x05E0);
1505put('HEBREW_LETTER_SAMEKH, 'codepoint, 0x05E1);
1506put('HEBREW_LETTER_AYIN, 'codepoint, 0x05E2);
1507put('HEBREW_LETTER_FINAL_PE, 'codepoint, 0x05E3);
1508put('HEBREW_LETTER_PE, 'codepoint, 0x05E4);
1509put('HEBREW_LETTER_FINAL_TSADI, 'codepoint, 0x05E5);
1510put('HEBREW_LETTER_TSADI, 'codepoint, 0x05E6);
1511put('HEBREW_LETTER_QOF, 'codepoint, 0x05E7);
1512put('HEBREW_LETTER_RESH, 'codepoint, 0x05E8);
1513put('HEBREW_LETTER_SHIN, 'codepoint, 0x05E9);
1514put('HEBREW_LETTER_TAV, 'codepoint, 0x05EA);
1515put('HEBREW_LIGATURE_YIDDISH_DOUBLE_VAV, 'codepoint, 0x05F0);
1516put('HEBREW_LIGATURE_YIDDISH_VAV_YOD, 'codepoint, 0x05F1);
1517put('HEBREW_LIGATURE_YIDDISH_DOUBLE_YOD, 'codepoint, 0x05F2);
1518put('HEBREW_PUNCTUATION_GERESH, 'codepoint, 0x05F3);
1519put('HEBREW_PUNCTUATION_GERSHAYIM, 'codepoint, 0x05F4);
1520put('ARABIC_NUMBER_SIGN, 'codepoint, 0x0600);
1521put('ARABIC_SIGN_SANAH, 'codepoint, 0x0601);
1522put('ARABIC_FOOTNOTE_MARKER, 'codepoint, 0x0602);
1523put('ARABIC_SIGN_SAFHA, 'codepoint, 0x0603);
1524put('ARABIC_SIGN_SAMVAT, 'codepoint, 0x0604);
1525put('ARABIC_NUMBER_MARK_ABOVE, 'codepoint, 0x0605);
1526put('ARABIC_INDIC_CUBE_ROOT, 'codepoint, 0x0606);
1527put('ARABIC_INDIC_FOURTH_ROOT, 'codepoint, 0x0607);
1528put('ARABIC_RAY, 'codepoint, 0x0608);
1529put('ARABIC_INDIC_PER_MILLE_SIGN, 'codepoint, 0x0609);
1530put('ARABIC_INDIC_PER_TEN_THOUSAND_SIGN, 'codepoint, 0x060A);
1531put('AFGHANI_SIGN, 'codepoint, 0x060B);
1532put('ARABIC_COMMA, 'codepoint, 0x060C);
1533put('ARABIC_DATE_SEPARATOR, 'codepoint, 0x060D);
1534put('ARABIC_POETIC_VERSE_SIGN, 'codepoint, 0x060E);
1535put('ARABIC_SIGN_MISRA, 'codepoint, 0x060F);
1536put('ARABIC_SIGN_SALLALLAHOU_ALAYHE_WASSALLAM, 'codepoint, 0x0610);
1537put('ARABIC_SIGN_ALAYHE_ASSALLAM, 'codepoint, 0x0611);
1538put('ARABIC_SIGN_RAHMATULLAH_ALAYHE, 'codepoint, 0x0612);
1539put('ARABIC_SIGN_RADI_ALLAHOU_ANHU, 'codepoint, 0x0613);
1540put('ARABIC_SIGN_TAKHALLUS, 'codepoint, 0x0614);
1541put('ARABIC_SMALL_HIGH_TAH, 'codepoint, 0x0615);
1542put('ARABIC_SMALL_HIGH_LIGATURE_ALEF_WITH_LAM_WITH_YEH, 'codepoint, 0x0616);
1543put('ARABIC_SMALL_HIGH_ZAIN, 'codepoint, 0x0617);
1544put('ARABIC_SMALL_FATHA, 'codepoint, 0x0618);
1545put('ARABIC_SMALL_DAMMA, 'codepoint, 0x0619);
1546put('ARABIC_SMALL_KASRA, 'codepoint, 0x061A);
1547put('ARABIC_SEMICOLON, 'codepoint, 0x061B);
1548put('ARABIC_LETTER_MARK, 'codepoint, 0x061C);
1549put('ARABIC_TRIPLE_DOT_PUNCTUATION_MARK, 'codepoint, 0x061E);
1550put('ARABIC_QUESTION_MARK, 'codepoint, 0x061F);
1551put('ARABIC_LETTER_KASHMIRI_YEH, 'codepoint, 0x0620);
1552put('ARABIC_LETTER_HAMZA, 'codepoint, 0x0621);
1553put('ARABIC_LETTER_ALEF_WITH_MADDA_ABOVE, 'codepoint, 0x0622);
1554put('ARABIC_LETTER_ALEF_WITH_HAMZA_ABOVE, 'codepoint, 0x0623);
1555put('ARABIC_LETTER_WAW_WITH_HAMZA_ABOVE, 'codepoint, 0x0624);
1556put('ARABIC_LETTER_ALEF_WITH_HAMZA_BELOW, 'codepoint, 0x0625);
1557put('ARABIC_LETTER_YEH_WITH_HAMZA_ABOVE, 'codepoint, 0x0626);
1558put('ARABIC_LETTER_ALEF, 'codepoint, 0x0627);
1559put('ARABIC_LETTER_BEH, 'codepoint, 0x0628);
1560put('ARABIC_LETTER_TEH_MARBUTA, 'codepoint, 0x0629);
1561put('ARABIC_LETTER_TEH, 'codepoint, 0x062A);
1562put('ARABIC_LETTER_THEH, 'codepoint, 0x062B);
1563put('ARABIC_LETTER_JEEM, 'codepoint, 0x062C);
1564put('ARABIC_LETTER_HAH, 'codepoint, 0x062D);
1565put('ARABIC_LETTER_KHAH, 'codepoint, 0x062E);
1566put('ARABIC_LETTER_DAL, 'codepoint, 0x062F);
1567put('ARABIC_LETTER_THAL, 'codepoint, 0x0630);
1568put('ARABIC_LETTER_REH, 'codepoint, 0x0631);
1569put('ARABIC_LETTER_ZAIN, 'codepoint, 0x0632);
1570put('ARABIC_LETTER_SEEN, 'codepoint, 0x0633);
1571put('ARABIC_LETTER_SHEEN, 'codepoint, 0x0634);
1572put('ARABIC_LETTER_SAD, 'codepoint, 0x0635);
1573put('ARABIC_LETTER_DAD, 'codepoint, 0x0636);
1574put('ARABIC_LETTER_TAH, 'codepoint, 0x0637);
1575put('ARABIC_LETTER_ZAH, 'codepoint, 0x0638);
1576put('ARABIC_LETTER_AIN, 'codepoint, 0x0639);
1577put('ARABIC_LETTER_GHAIN, 'codepoint, 0x063A);
1578put('ARABIC_LETTER_KEHEH_WITH_TWO_DOTS_ABOVE, 'codepoint, 0x063B);
1579put('ARABIC_LETTER_KEHEH_WITH_THREE_DOTS_BELOW, 'codepoint, 0x063C);
1580put('ARABIC_LETTER_FARSI_YEH_WITH_INVERTED_V, 'codepoint, 0x063D);
1581put('ARABIC_LETTER_FARSI_YEH_WITH_TWO_DOTS_ABOVE, 'codepoint, 0x063E);
1582put('ARABIC_LETTER_FARSI_YEH_WITH_THREE_DOTS_ABOVE, 'codepoint, 0x063F);
1583put('ARABIC_TATWEEL, 'codepoint, 0x0640);
1584put('ARABIC_LETTER_FEH, 'codepoint, 0x0641);
1585put('ARABIC_LETTER_QAF, 'codepoint, 0x0642);
1586put('ARABIC_LETTER_KAF, 'codepoint, 0x0643);
1587put('ARABIC_LETTER_LAM, 'codepoint, 0x0644);
1588put('ARABIC_LETTER_MEEM, 'codepoint, 0x0645);
1589put('ARABIC_LETTER_NOON, 'codepoint, 0x0646);
1590put('ARABIC_LETTER_HEH, 'codepoint, 0x0647);
1591put('ARABIC_LETTER_WAW, 'codepoint, 0x0648);
1592put('ARABIC_LETTER_ALEF_MAKSURA, 'codepoint, 0x0649);
1593put('ARABIC_LETTER_YEH, 'codepoint, 0x064A);
1594put('ARABIC_FATHATAN, 'codepoint, 0x064B);
1595put('ARABIC_DAMMATAN, 'codepoint, 0x064C);
1596put('ARABIC_KASRATAN, 'codepoint, 0x064D);
1597put('ARABIC_FATHA, 'codepoint, 0x064E);
1598put('ARABIC_DAMMA, 'codepoint, 0x064F);
1599put('ARABIC_KASRA, 'codepoint, 0x0650);
1600put('ARABIC_SHADDA, 'codepoint, 0x0651);
1601put('ARABIC_SUKUN, 'codepoint, 0x0652);
1602put('ARABIC_MADDAH_ABOVE, 'codepoint, 0x0653);
1603put('ARABIC_HAMZA_ABOVE, 'codepoint, 0x0654);
1604put('ARABIC_HAMZA_BELOW, 'codepoint, 0x0655);
1605put('ARABIC_SUBSCRIPT_ALEF, 'codepoint, 0x0656);
1606put('ARABIC_INVERTED_DAMMA, 'codepoint, 0x0657);
1607put('ARABIC_MARK_NOON_GHUNNA, 'codepoint, 0x0658);
1608put('ARABIC_ZWARAKAY, 'codepoint, 0x0659);
1609put('ARABIC_VOWEL_SIGN_SMALL_V_ABOVE, 'codepoint, 0x065A);
1610put('ARABIC_VOWEL_SIGN_INVERTED_SMALL_V_ABOVE, 'codepoint, 0x065B);
1611put('ARABIC_VOWEL_SIGN_DOT_BELOW, 'codepoint, 0x065C);
1612put('ARABIC_REVERSED_DAMMA, 'codepoint, 0x065D);
1613put('ARABIC_FATHA_WITH_TWO_DOTS, 'codepoint, 0x065E);
1614put('ARABIC_WAVY_HAMZA_BELOW, 'codepoint, 0x065F);
1615put('ARABIC_INDIC_DIGIT_ZERO, 'codepoint, 0x0660);
1616put('ARABIC_INDIC_DIGIT_ONE, 'codepoint, 0x0661);
1617put('ARABIC_INDIC_DIGIT_TWO, 'codepoint, 0x0662);
1618put('ARABIC_INDIC_DIGIT_THREE, 'codepoint, 0x0663);
1619put('ARABIC_INDIC_DIGIT_FOUR, 'codepoint, 0x0664);
1620put('ARABIC_INDIC_DIGIT_FIVE, 'codepoint, 0x0665);
1621put('ARABIC_INDIC_DIGIT_SIX, 'codepoint, 0x0666);
1622put('ARABIC_INDIC_DIGIT_SEVEN, 'codepoint, 0x0667);
1623put('ARABIC_INDIC_DIGIT_EIGHT, 'codepoint, 0x0668);
1624put('ARABIC_INDIC_DIGIT_NINE, 'codepoint, 0x0669);
1625put('ARABIC_PERCENT_SIGN, 'codepoint, 0x066A);
1626put('ARABIC_DECIMAL_SEPARATOR, 'codepoint, 0x066B);
1627put('ARABIC_THOUSANDS_SEPARATOR, 'codepoint, 0x066C);
1628put('ARABIC_FIVE_POINTED_STAR, 'codepoint, 0x066D);
1629put('ARABIC_LETTER_DOTLESS_BEH, 'codepoint, 0x066E);
1630put('ARABIC_LETTER_DOTLESS_QAF, 'codepoint, 0x066F);
1631put('ARABIC_LETTER_SUPERSCRIPT_ALEF, 'codepoint, 0x0670);
1632put('ARABIC_LETTER_ALEF_WASLA, 'codepoint, 0x0671);
1633put('ARABIC_LETTER_ALEF_WITH_WAVY_HAMZA_ABOVE, 'codepoint, 0x0672);
1634put('ARABIC_LETTER_ALEF_WITH_WAVY_HAMZA_BELOW, 'codepoint, 0x0673);
1635put('ARABIC_LETTER_HIGH_HAMZA, 'codepoint, 0x0674);
1636put('ARABIC_LETTER_HIGH_HAMZA_ALEF, 'codepoint, 0x0675);
1637put('ARABIC_LETTER_HIGH_HAMZA_WAW, 'codepoint, 0x0676);
1638put('ARABIC_LETTER_U_WITH_HAMZA_ABOVE, 'codepoint, 0x0677);
1639put('ARABIC_LETTER_HIGH_HAMZA_YEH, 'codepoint, 0x0678);
1640put('ARABIC_LETTER_TTEH, 'codepoint, 0x0679);
1641put('ARABIC_LETTER_TTEHEH, 'codepoint, 0x067A);
1642put('ARABIC_LETTER_BEEH, 'codepoint, 0x067B);
1643put('ARABIC_LETTER_TEH_WITH_RING, 'codepoint, 0x067C);
1644put('ARABIC_LETTER_TEH_WITH_THREE_DOTS_ABOVE_DOWNWARDS, 'codepoint, 0x067D);
1645put('ARABIC_LETTER_PEH, 'codepoint, 0x067E);
1646put('ARABIC_LETTER_TEHEH, 'codepoint, 0x067F);
1647put('ARABIC_LETTER_BEHEH, 'codepoint, 0x0680);
1648put('ARABIC_LETTER_HAH_WITH_HAMZA_ABOVE, 'codepoint, 0x0681);
1649put('ARABIC_LETTER_HAH_WITH_TWO_DOTS_VERTICAL_ABOVE, 'codepoint, 0x0682);
1650put('ARABIC_LETTER_NYEH, 'codepoint, 0x0683);
1651put('ARABIC_LETTER_DYEH, 'codepoint, 0x0684);
1652put('ARABIC_LETTER_HAH_WITH_THREE_DOTS_ABOVE, 'codepoint, 0x0685);
1653put('ARABIC_LETTER_TCHEH, 'codepoint, 0x0686);
1654put('ARABIC_LETTER_TCHEHEH, 'codepoint, 0x0687);
1655put('ARABIC_LETTER_DDAL, 'codepoint, 0x0688);
1656put('ARABIC_LETTER_DAL_WITH_RING, 'codepoint, 0x0689);
1657put('ARABIC_LETTER_DAL_WITH_DOT_BELOW, 'codepoint, 0x068A);
1658put('ARABIC_LETTER_DAL_WITH_DOT_BELOW_AND_SMALL_TAH, 'codepoint, 0x068B);
1659put('ARABIC_LETTER_DAHAL, 'codepoint, 0x068C);
1660put('ARABIC_LETTER_DDAHAL, 'codepoint, 0x068D);
1661put('ARABIC_LETTER_DUL, 'codepoint, 0x068E);
1662put('ARABIC_LETTER_DAL_WITH_THREE_DOTS_ABOVE_DOWNWARDS, 'codepoint, 0x068F);
1663put('ARABIC_LETTER_DAL_WITH_FOUR_DOTS_ABOVE, 'codepoint, 0x0690);
1664put('ARABIC_LETTER_RREH, 'codepoint, 0x0691);
1665put('ARABIC_LETTER_REH_WITH_SMALL_V, 'codepoint, 0x0692);
1666put('ARABIC_LETTER_REH_WITH_RING, 'codepoint, 0x0693);
1667put('ARABIC_LETTER_REH_WITH_DOT_BELOW, 'codepoint, 0x0694);
1668put('ARABIC_LETTER_REH_WITH_SMALL_V_BELOW, 'codepoint, 0x0695);
1669put('ARABIC_LETTER_REH_WITH_DOT_BELOW_AND_DOT_ABOVE, 'codepoint, 0x0696);
1670put('ARABIC_LETTER_REH_WITH_TWO_DOTS_ABOVE, 'codepoint, 0x0697);
1671put('ARABIC_LETTER_JEH, 'codepoint, 0x0698);
1672put('ARABIC_LETTER_REH_WITH_FOUR_DOTS_ABOVE, 'codepoint, 0x0699);
1673put('ARABIC_LETTER_SEEN_WITH_DOT_BELOW_AND_DOT_ABOVE, 'codepoint, 0x069A);
1674put('ARABIC_LETTER_SEEN_WITH_THREE_DOTS_BELOW, 'codepoint, 0x069B);
1675put('ARABIC_LETTER_SEEN_WITH_THREE_DOTS_BELOW_AND_THREE_DOTS_ABOVE, 'codepoint, 0x069C);
1676put('ARABIC_LETTER_SAD_WITH_TWO_DOTS_BELOW, 'codepoint, 0x069D);
1677put('ARABIC_LETTER_SAD_WITH_THREE_DOTS_ABOVE, 'codepoint, 0x069E);
1678put('ARABIC_LETTER_TAH_WITH_THREE_DOTS_ABOVE, 'codepoint, 0x069F);
1679put('ARABIC_LETTER_AIN_WITH_THREE_DOTS_ABOVE, 'codepoint, 0x06A0);
1680put('ARABIC_LETTER_DOTLESS_FEH, 'codepoint, 0x06A1);
1681put('ARABIC_LETTER_FEH_WITH_DOT_MOVED_BELOW, 'codepoint, 0x06A2);
1682put('ARABIC_LETTER_FEH_WITH_DOT_BELOW, 'codepoint, 0x06A3);
1683put('ARABIC_LETTER_VEH, 'codepoint, 0x06A4);
1684put('ARABIC_LETTER_FEH_WITH_THREE_DOTS_BELOW, 'codepoint, 0x06A5);
1685put('ARABIC_LETTER_PEHEH, 'codepoint, 0x06A6);
1686put('ARABIC_LETTER_QAF_WITH_DOT_ABOVE, 'codepoint, 0x06A7);
1687put('ARABIC_LETTER_QAF_WITH_THREE_DOTS_ABOVE, 'codepoint, 0x06A8);
1688put('ARABIC_LETTER_KEHEH, 'codepoint, 0x06A9);
1689put('ARABIC_LETTER_SWASH_KAF, 'codepoint, 0x06AA);
1690put('ARABIC_LETTER_KAF_WITH_RING, 'codepoint, 0x06AB);
1691put('ARABIC_LETTER_KAF_WITH_DOT_ABOVE, 'codepoint, 0x06AC);
1692put('ARABIC_LETTER_NG, 'codepoint, 0x06AD);
1693put('ARABIC_LETTER_KAF_WITH_THREE_DOTS_BELOW, 'codepoint, 0x06AE);
1694put('ARABIC_LETTER_GAF, 'codepoint, 0x06AF);
1695put('ARABIC_LETTER_GAF_WITH_RING, 'codepoint, 0x06B0);
1696put('ARABIC_LETTER_NGOEH, 'codepoint, 0x06B1);
1697put('ARABIC_LETTER_GAF_WITH_TWO_DOTS_BELOW, 'codepoint, 0x06B2);
1698put('ARABIC_LETTER_GUEH, 'codepoint, 0x06B3);
1699put('ARABIC_LETTER_GAF_WITH_THREE_DOTS_ABOVE, 'codepoint, 0x06B4);
1700put('ARABIC_LETTER_LAM_WITH_SMALL_V, 'codepoint, 0x06B5);
1701put('ARABIC_LETTER_LAM_WITH_DOT_ABOVE, 'codepoint, 0x06B6);
1702put('ARABIC_LETTER_LAM_WITH_THREE_DOTS_ABOVE, 'codepoint, 0x06B7);
1703put('ARABIC_LETTER_LAM_WITH_THREE_DOTS_BELOW, 'codepoint, 0x06B8);
1704put('ARABIC_LETTER_NOON_WITH_DOT_BELOW, 'codepoint, 0x06B9);
1705put('ARABIC_LETTER_NOON_GHUNNA, 'codepoint, 0x06BA);
1706put('ARABIC_LETTER_RNOON, 'codepoint, 0x06BB);
1707put('ARABIC_LETTER_NOON_WITH_RING, 'codepoint, 0x06BC);
1708put('ARABIC_LETTER_NOON_WITH_THREE_DOTS_ABOVE, 'codepoint, 0x06BD);
1709put('ARABIC_LETTER_HEH_DOACHASHMEE, 'codepoint, 0x06BE);
1710put('ARABIC_LETTER_TCHEH_WITH_DOT_ABOVE, 'codepoint, 0x06BF);
1711put('ARABIC_LETTER_HEH_WITH_YEH_ABOVE, 'codepoint, 0x06C0);
1712put('ARABIC_LETTER_HEH_GOAL, 'codepoint, 0x06C1);
1713put('ARABIC_LETTER_HEH_GOAL_WITH_HAMZA_ABOVE, 'codepoint, 0x06C2);
1714put('ARABIC_LETTER_TEH_MARBUTA_GOAL, 'codepoint, 0x06C3);
1715put('ARABIC_LETTER_WAW_WITH_RING, 'codepoint, 0x06C4);
1716put('ARABIC_LETTER_KIRGHIZ_OE, 'codepoint, 0x06C5);
1717put('ARABIC_LETTER_OE, 'codepoint, 0x06C6);
1718put('ARABIC_LETTER_U, 'codepoint, 0x06C7);
1719put('ARABIC_LETTER_YU, 'codepoint, 0x06C8);
1720put('ARABIC_LETTER_KIRGHIZ_YU, 'codepoint, 0x06C9);
1721put('ARABIC_LETTER_WAW_WITH_TWO_DOTS_ABOVE, 'codepoint, 0x06CA);
1722put('ARABIC_LETTER_VE, 'codepoint, 0x06CB);
1723put('ARABIC_LETTER_FARSI_YEH, 'codepoint, 0x06CC);
1724put('ARABIC_LETTER_YEH_WITH_TAIL, 'codepoint, 0x06CD);
1725put('ARABIC_LETTER_YEH_WITH_SMALL_V, 'codepoint, 0x06CE);
1726put('ARABIC_LETTER_WAW_WITH_DOT_ABOVE, 'codepoint, 0x06CF);
1727put('ARABIC_LETTER_E, 'codepoint, 0x06D0);
1728put('ARABIC_LETTER_YEH_WITH_THREE_DOTS_BELOW, 'codepoint, 0x06D1);
1729put('ARABIC_LETTER_YEH_BARREE, 'codepoint, 0x06D2);
1730put('ARABIC_LETTER_YEH_BARREE_WITH_HAMZA_ABOVE, 'codepoint, 0x06D3);
1731put('ARABIC_FULL_STOP, 'codepoint, 0x06D4);
1732put('ARABIC_LETTER_AE, 'codepoint, 0x06D5);
1733put('ARABIC_SMALL_HIGH_LIGATURE_SAD_WITH_LAM_WITH_ALEF_MAKSURA, 'codepoint, 0x06D6);
1734put('ARABIC_SMALL_HIGH_LIGATURE_QAF_WITH_LAM_WITH_ALEF_MAKSURA, 'codepoint, 0x06D7);
1735put('ARABIC_SMALL_HIGH_MEEM_INITIAL_FORM, 'codepoint, 0x06D8);
1736put('ARABIC_SMALL_HIGH_LAM_ALEF, 'codepoint, 0x06D9);
1737put('ARABIC_SMALL_HIGH_JEEM, 'codepoint, 0x06DA);
1738put('ARABIC_SMALL_HIGH_THREE_DOTS, 'codepoint, 0x06DB);
1739put('ARABIC_SMALL_HIGH_SEEN, 'codepoint, 0x06DC);
1740put('ARABIC_END_OF_AYAH, 'codepoint, 0x06DD);
1741put('ARABIC_START_OF_RUB_EL_HIZB, 'codepoint, 0x06DE);
1742put('ARABIC_SMALL_HIGH_ROUNDED_ZERO, 'codepoint, 0x06DF);
1743put('ARABIC_SMALL_HIGH_UPRIGHT_RECTANGULAR_ZERO, 'codepoint, 0x06E0);
1744put('ARABIC_SMALL_HIGH_DOTLESS_HEAD_OF_KHAH, 'codepoint, 0x06E1);
1745put('ARABIC_SMALL_HIGH_MEEM_ISOLATED_FORM, 'codepoint, 0x06E2);
1746put('ARABIC_SMALL_LOW_SEEN, 'codepoint, 0x06E3);
1747put('ARABIC_SMALL_HIGH_MADDA, 'codepoint, 0x06E4);
1748put('ARABIC_SMALL_WAW, 'codepoint, 0x06E5);
1749put('ARABIC_SMALL_YEH, 'codepoint, 0x06E6);
1750put('ARABIC_SMALL_HIGH_YEH, 'codepoint, 0x06E7);
1751put('ARABIC_SMALL_HIGH_NOON, 'codepoint, 0x06E8);
1752put('ARABIC_PLACE_OF_SAJDAH, 'codepoint, 0x06E9);
1753put('ARABIC_EMPTY_CENTRE_LOW_STOP, 'codepoint, 0x06EA);
1754put('ARABIC_EMPTY_CENTRE_HIGH_STOP, 'codepoint, 0x06EB);
1755put('ARABIC_ROUNDED_HIGH_STOP_WITH_FILLED_CENTRE, 'codepoint, 0x06EC);
1756put('ARABIC_SMALL_LOW_MEEM, 'codepoint, 0x06ED);
1757put('ARABIC_LETTER_DAL_WITH_INVERTED_V, 'codepoint, 0x06EE);
1758put('ARABIC_LETTER_REH_WITH_INVERTED_V, 'codepoint, 0x06EF);
1759put('EXTENDED_ARABIC_INDIC_DIGIT_ZERO, 'codepoint, 0x06F0);
1760put('EXTENDED_ARABIC_INDIC_DIGIT_ONE, 'codepoint, 0x06F1);
1761put('EXTENDED_ARABIC_INDIC_DIGIT_TWO, 'codepoint, 0x06F2);
1762put('EXTENDED_ARABIC_INDIC_DIGIT_THREE, 'codepoint, 0x06F3);
1763put('EXTENDED_ARABIC_INDIC_DIGIT_FOUR, 'codepoint, 0x06F4);
1764put('EXTENDED_ARABIC_INDIC_DIGIT_FIVE, 'codepoint, 0x06F5);
1765put('EXTENDED_ARABIC_INDIC_DIGIT_SIX, 'codepoint, 0x06F6);
1766put('EXTENDED_ARABIC_INDIC_DIGIT_SEVEN, 'codepoint, 0x06F7);
1767put('EXTENDED_ARABIC_INDIC_DIGIT_EIGHT, 'codepoint, 0x06F8);
1768put('EXTENDED_ARABIC_INDIC_DIGIT_NINE, 'codepoint, 0x06F9);
1769put('ARABIC_LETTER_SHEEN_WITH_DOT_BELOW, 'codepoint, 0x06FA);
1770put('ARABIC_LETTER_DAD_WITH_DOT_BELOW, 'codepoint, 0x06FB);
1771put('ARABIC_LETTER_GHAIN_WITH_DOT_BELOW, 'codepoint, 0x06FC);
1772put('ARABIC_SIGN_SINDHI_AMPERSAND, 'codepoint, 0x06FD);
1773put('ARABIC_SIGN_SINDHI_POSTPOSITION_MEN, 'codepoint, 0x06FE);
1774put('ARABIC_LETTER_HEH_WITH_INVERTED_V, 'codepoint, 0x06FF);
1775put('SYRIAC_END_OF_PARAGRAPH, 'codepoint, 0x0700);
1776put('SYRIAC_SUPRALINEAR_FULL_STOP, 'codepoint, 0x0701);
1777put('SYRIAC_SUBLINEAR_FULL_STOP, 'codepoint, 0x0702);
1778put('SYRIAC_SUPRALINEAR_COLON, 'codepoint, 0x0703);
1779put('SYRIAC_SUBLINEAR_COLON, 'codepoint, 0x0704);
1780put('SYRIAC_HORIZONTAL_COLON, 'codepoint, 0x0705);
1781put('SYRIAC_COLON_SKEWED_LEFT, 'codepoint, 0x0706);
1782put('SYRIAC_COLON_SKEWED_RIGHT, 'codepoint, 0x0707);
1783put('SYRIAC_SUPRALINEAR_COLON_SKEWED_LEFT, 'codepoint, 0x0708);
1784put('SYRIAC_SUBLINEAR_COLON_SKEWED_RIGHT, 'codepoint, 0x0709);
1785put('SYRIAC_CONTRACTION, 'codepoint, 0x070A);
1786put('SYRIAC_HARKLEAN_OBELUS, 'codepoint, 0x070B);
1787put('SYRIAC_HARKLEAN_METOBELUS, 'codepoint, 0x070C);
1788put('SYRIAC_HARKLEAN_ASTERISCUS, 'codepoint, 0x070D);
1789put('SYRIAC_ABBREVIATION_MARK, 'codepoint, 0x070F);
1790put('SYRIAC_LETTER_ALAPH, 'codepoint, 0x0710);
1791put('SYRIAC_LETTER_SUPERSCRIPT_ALAPH, 'codepoint, 0x0711);
1792put('SYRIAC_LETTER_BETH, 'codepoint, 0x0712);
1793put('SYRIAC_LETTER_GAMAL, 'codepoint, 0x0713);
1794put('SYRIAC_LETTER_GAMAL_GARSHUNI, 'codepoint, 0x0714);
1795put('SYRIAC_LETTER_DALATH, 'codepoint, 0x0715);
1796put('SYRIAC_LETTER_DOTLESS_DALATH_RISH, 'codepoint, 0x0716);
1797put('SYRIAC_LETTER_HE, 'codepoint, 0x0717);
1798put('SYRIAC_LETTER_WAW, 'codepoint, 0x0718);
1799put('SYRIAC_LETTER_ZAIN, 'codepoint, 0x0719);
1800put('SYRIAC_LETTER_HETH, 'codepoint, 0x071A);
1801put('SYRIAC_LETTER_TETH, 'codepoint, 0x071B);
1802put('SYRIAC_LETTER_TETH_GARSHUNI, 'codepoint, 0x071C);
1803put('SYRIAC_LETTER_YUDH, 'codepoint, 0x071D);
1804put('SYRIAC_LETTER_YUDH_HE, 'codepoint, 0x071E);
1805put('SYRIAC_LETTER_KAPH, 'codepoint, 0x071F);
1806put('SYRIAC_LETTER_LAMADH, 'codepoint, 0x0720);
1807put('SYRIAC_LETTER_MIM, 'codepoint, 0x0721);
1808put('SYRIAC_LETTER_NUN, 'codepoint, 0x0722);
1809put('SYRIAC_LETTER_SEMKATH, 'codepoint, 0x0723);
1810put('SYRIAC_LETTER_FINAL_SEMKATH, 'codepoint, 0x0724);
1811put('SYRIAC_LETTER_E, 'codepoint, 0x0725);
1812put('SYRIAC_LETTER_PE, 'codepoint, 0x0726);
1813put('SYRIAC_LETTER_REVERSED_PE, 'codepoint, 0x0727);
1814put('SYRIAC_LETTER_SADHE, 'codepoint, 0x0728);
1815put('SYRIAC_LETTER_QAPH, 'codepoint, 0x0729);
1816put('SYRIAC_LETTER_RISH, 'codepoint, 0x072A);
1817put('SYRIAC_LETTER_SHIN, 'codepoint, 0x072B);
1818put('SYRIAC_LETTER_TAW, 'codepoint, 0x072C);
1819put('SYRIAC_LETTER_PERSIAN_BHETH, 'codepoint, 0x072D);
1820put('SYRIAC_LETTER_PERSIAN_GHAMAL, 'codepoint, 0x072E);
1821put('SYRIAC_LETTER_PERSIAN_DHALATH, 'codepoint, 0x072F);
1822put('SYRIAC_PTHAHA_ABOVE, 'codepoint, 0x0730);
1823put('SYRIAC_PTHAHA_BELOW, 'codepoint, 0x0731);
1824put('SYRIAC_PTHAHA_DOTTED, 'codepoint, 0x0732);
1825put('SYRIAC_ZQAPHA_ABOVE, 'codepoint, 0x0733);
1826put('SYRIAC_ZQAPHA_BELOW, 'codepoint, 0x0734);
1827put('SYRIAC_ZQAPHA_DOTTED, 'codepoint, 0x0735);
1828put('SYRIAC_RBASA_ABOVE, 'codepoint, 0x0736);
1829put('SYRIAC_RBASA_BELOW, 'codepoint, 0x0737);
1830put('SYRIAC_DOTTED_ZLAMA_HORIZONTAL, 'codepoint, 0x0738);
1831put('SYRIAC_DOTTED_ZLAMA_ANGULAR, 'codepoint, 0x0739);
1832put('SYRIAC_HBASA_ABOVE, 'codepoint, 0x073A);
1833put('SYRIAC_HBASA_BELOW, 'codepoint, 0x073B);
1834put('SYRIAC_HBASA_ESASA_DOTTED, 'codepoint, 0x073C);
1835put('SYRIAC_ESASA_ABOVE, 'codepoint, 0x073D);
1836put('SYRIAC_ESASA_BELOW, 'codepoint, 0x073E);
1837put('SYRIAC_RWAHA, 'codepoint, 0x073F);
1838put('SYRIAC_FEMININE_DOT, 'codepoint, 0x0740);
1839put('SYRIAC_QUSHSHAYA, 'codepoint, 0x0741);
1840put('SYRIAC_RUKKAKHA, 'codepoint, 0x0742);
1841put('SYRIAC_TWO_VERTICAL_DOTS_ABOVE, 'codepoint, 0x0743);
1842put('SYRIAC_TWO_VERTICAL_DOTS_BELOW, 'codepoint, 0x0744);
1843put('SYRIAC_THREE_DOTS_ABOVE, 'codepoint, 0x0745);
1844put('SYRIAC_THREE_DOTS_BELOW, 'codepoint, 0x0746);
1845put('SYRIAC_OBLIQUE_LINE_ABOVE, 'codepoint, 0x0747);
1846put('SYRIAC_OBLIQUE_LINE_BELOW, 'codepoint, 0x0748);
1847put('SYRIAC_MUSIC, 'codepoint, 0x0749);
1848put('SYRIAC_BARREKH, 'codepoint, 0x074A);
1849put('SYRIAC_LETTER_SOGDIAN_ZHAIN, 'codepoint, 0x074D);
1850put('SYRIAC_LETTER_SOGDIAN_KHAPH, 'codepoint, 0x074E);
1851put('SYRIAC_LETTER_SOGDIAN_FE, 'codepoint, 0x074F);
1852put('ARABIC_LETTER_BEH_WITH_THREE_DOTS_HORIZONTALLY_BELOW, 'codepoint, 0x0750);
1853put('ARABIC_LETTER_BEH_WITH_DOT_BELOW_AND_THREE_DOTS_ABOVE, 'codepoint, 0x0751);
1854put('ARABIC_LETTER_BEH_WITH_THREE_DOTS_POINTING_UPWARDS_BELOW, 'codepoint, 0x0752);
1855put('ARABIC_LETTER_BEH_WITH_THREE_DOTS_POINTING_UPWARDS_BELOW_AND_TWO_DOTS_ABOVE, 'codepoint, 0x0753);
1856put('ARABIC_LETTER_BEH_WITH_TWO_DOTS_BELOW_AND_DOT_ABOVE, 'codepoint, 0x0754);
1857put('ARABIC_LETTER_BEH_WITH_INVERTED_SMALL_V_BELOW, 'codepoint, 0x0755);
1858put('ARABIC_LETTER_BEH_WITH_SMALL_V, 'codepoint, 0x0756);
1859put('ARABIC_LETTER_HAH_WITH_TWO_DOTS_ABOVE, 'codepoint, 0x0757);
1860put('ARABIC_LETTER_HAH_WITH_THREE_DOTS_POINTING_UPWARDS_BELOW, 'codepoint, 0x0758);
1861put('ARABIC_LETTER_DAL_WITH_TWO_DOTS_VERTICALLY_BELOW_AND_SMALL_TAH, 'codepoint, 0x0759);
1862put('ARABIC_LETTER_DAL_WITH_INVERTED_SMALL_V_BELOW, 'codepoint, 0x075A);
1863put('ARABIC_LETTER_REH_WITH_STROKE, 'codepoint, 0x075B);
1864put('ARABIC_LETTER_SEEN_WITH_FOUR_DOTS_ABOVE, 'codepoint, 0x075C);
1865put('ARABIC_LETTER_AIN_WITH_TWO_DOTS_ABOVE, 'codepoint, 0x075D);
1866put('ARABIC_LETTER_AIN_WITH_THREE_DOTS_POINTING_DOWNWARDS_ABOVE, 'codepoint, 0x075E);
1867put('ARABIC_LETTER_AIN_WITH_TWO_DOTS_VERTICALLY_ABOVE, 'codepoint, 0x075F);
1868put('ARABIC_LETTER_FEH_WITH_TWO_DOTS_BELOW, 'codepoint, 0x0760);
1869put('ARABIC_LETTER_FEH_WITH_THREE_DOTS_POINTING_UPWARDS_BELOW, 'codepoint, 0x0761);
1870put('ARABIC_LETTER_KEHEH_WITH_DOT_ABOVE, 'codepoint, 0x0762);
1871put('ARABIC_LETTER_KEHEH_WITH_THREE_DOTS_ABOVE, 'codepoint, 0x0763);
1872put('ARABIC_LETTER_KEHEH_WITH_THREE_DOTS_POINTING_UPWARDS_BELOW, 'codepoint, 0x0764);
1873put('ARABIC_LETTER_MEEM_WITH_DOT_ABOVE, 'codepoint, 0x0765);
1874put('ARABIC_LETTER_MEEM_WITH_DOT_BELOW, 'codepoint, 0x0766);
1875put('ARABIC_LETTER_NOON_WITH_TWO_DOTS_BELOW, 'codepoint, 0x0767);
1876put('ARABIC_LETTER_NOON_WITH_SMALL_TAH, 'codepoint, 0x0768);
1877put('ARABIC_LETTER_NOON_WITH_SMALL_V, 'codepoint, 0x0769);
1878put('ARABIC_LETTER_LAM_WITH_BAR, 'codepoint, 0x076A);
1879put('ARABIC_LETTER_REH_WITH_TWO_DOTS_VERTICALLY_ABOVE, 'codepoint, 0x076B);
1880put('ARABIC_LETTER_REH_WITH_HAMZA_ABOVE, 'codepoint, 0x076C);
1881put('ARABIC_LETTER_SEEN_WITH_TWO_DOTS_VERTICALLY_ABOVE, 'codepoint, 0x076D);
1882put('ARABIC_LETTER_HAH_WITH_SMALL_ARABIC_LETTER_TAH_BELOW, 'codepoint, 0x076E);
1883put('ARABIC_LETTER_HAH_WITH_SMALL_ARABIC_LETTER_TAH_AND_TWO_DOTS, 'codepoint, 0x076F);
1884put('ARABIC_LETTER_SEEN_WITH_SMALL_ARABIC_LETTER_TAH_AND_TWO_DOTS, 'codepoint, 0x0770);
1885put('ARABIC_LETTER_REH_WITH_SMALL_ARABIC_LETTER_TAH_AND_TWO_DOTS, 'codepoint, 0x0771);
1886put('ARABIC_LETTER_HAH_WITH_SMALL_ARABIC_LETTER_TAH_ABOVE, 'codepoint, 0x0772);
1887put('ARABIC_LETTER_ALEF_WITH_EXTENDED_ARABIC_INDIC_DIGIT_TWO_ABOVE, 'codepoint, 0x0773);
1888put('ARABIC_LETTER_ALEF_WITH_EXTENDED_ARABIC_INDIC_DIGIT_THREE_ABOVE, 'codepoint, 0x0774);
1889put('ARABIC_LETTER_FARSI_YEH_WITH_EXTENDED_ARABIC_INDIC_DIGIT_TWO_ABOVE, 'codepoint, 0x0775);
1890put('ARABIC_LETTER_FARSI_YEH_WITH_EXTENDED_ARABIC_INDIC_DIGIT_THREE_ABOVE, 'codepoint, 0x0776);
1891put('ARABIC_LETTER_FARSI_YEH_WITH_EXTENDED_ARABIC_INDIC_DIGIT_FOUR_BELOW, 'codepoint, 0x0777);
1892put('ARABIC_LETTER_WAW_WITH_EXTENDED_ARABIC_INDIC_DIGIT_TWO_ABOVE, 'codepoint, 0x0778);
1893put('ARABIC_LETTER_WAW_WITH_EXTENDED_ARABIC_INDIC_DIGIT_THREE_ABOVE, 'codepoint, 0x0779);
1894put('ARABIC_LETTER_YEH_BARREE_WITH_EXTENDED_ARABIC_INDIC_DIGIT_TWO_ABOVE, 'codepoint, 0x077A);
1895put('ARABIC_LETTER_YEH_BARREE_WITH_EXTENDED_ARABIC_INDIC_DIGIT_THREE_ABOVE, 'codepoint, 0x077B);
1896put('ARABIC_LETTER_HAH_WITH_EXTENDED_ARABIC_INDIC_DIGIT_FOUR_BELOW, 'codepoint, 0x077C);
1897put('ARABIC_LETTER_SEEN_WITH_EXTENDED_ARABIC_INDIC_DIGIT_FOUR_ABOVE, 'codepoint, 0x077D);
1898put('ARABIC_LETTER_SEEN_WITH_INVERTED_V, 'codepoint, 0x077E);
1899put('ARABIC_LETTER_KAF_WITH_TWO_DOTS_ABOVE, 'codepoint, 0x077F);
1900put('THAANA_LETTER_HAA, 'codepoint, 0x0780);
1901put('THAANA_LETTER_SHAVIYANI, 'codepoint, 0x0781);
1902put('THAANA_LETTER_NOONU, 'codepoint, 0x0782);
1903put('THAANA_LETTER_RAA, 'codepoint, 0x0783);
1904put('THAANA_LETTER_BAA, 'codepoint, 0x0784);
1905put('THAANA_LETTER_LHAVIYANI, 'codepoint, 0x0785);
1906put('THAANA_LETTER_KAAFU, 'codepoint, 0x0786);
1907put('THAANA_LETTER_ALIFU, 'codepoint, 0x0787);
1908put('THAANA_LETTER_VAAVU, 'codepoint, 0x0788);
1909put('THAANA_LETTER_MEEMU, 'codepoint, 0x0789);
1910put('THAANA_LETTER_FAAFU, 'codepoint, 0x078A);
1911put('THAANA_LETTER_DHAALU, 'codepoint, 0x078B);
1912put('THAANA_LETTER_THAA, 'codepoint, 0x078C);
1913put('THAANA_LETTER_LAAMU, 'codepoint, 0x078D);
1914put('THAANA_LETTER_GAAFU, 'codepoint, 0x078E);
1915put('THAANA_LETTER_GNAVIYANI, 'codepoint, 0x078F);
1916put('THAANA_LETTER_SEENU, 'codepoint, 0x0790);
1917put('THAANA_LETTER_DAVIYANI, 'codepoint, 0x0791);
1918put('THAANA_LETTER_ZAVIYANI, 'codepoint, 0x0792);
1919put('THAANA_LETTER_TAVIYANI, 'codepoint, 0x0793);
1920put('THAANA_LETTER_YAA, 'codepoint, 0x0794);
1921put('THAANA_LETTER_PAVIYANI, 'codepoint, 0x0795);
1922put('THAANA_LETTER_JAVIYANI, 'codepoint, 0x0796);
1923put('THAANA_LETTER_CHAVIYANI, 'codepoint, 0x0797);
1924put('THAANA_LETTER_TTAA, 'codepoint, 0x0798);
1925put('THAANA_LETTER_HHAA, 'codepoint, 0x0799);
1926put('THAANA_LETTER_KHAA, 'codepoint, 0x079A);
1927put('THAANA_LETTER_THAALU, 'codepoint, 0x079B);
1928put('THAANA_LETTER_ZAA, 'codepoint, 0x079C);
1929put('THAANA_LETTER_SHEENU, 'codepoint, 0x079D);
1930put('THAANA_LETTER_SAADHU, 'codepoint, 0x079E);
1931put('THAANA_LETTER_DAADHU, 'codepoint, 0x079F);
1932put('THAANA_LETTER_TO, 'codepoint, 0x07A0);
1933put('THAANA_LETTER_ZO, 'codepoint, 0x07A1);
1934put('THAANA_LETTER_AINU, 'codepoint, 0x07A2);
1935put('THAANA_LETTER_GHAINU, 'codepoint, 0x07A3);
1936put('THAANA_LETTER_QAAFU, 'codepoint, 0x07A4);
1937put('THAANA_LETTER_WAAVU, 'codepoint, 0x07A5);
1938put('THAANA_ABAFILI, 'codepoint, 0x07A6);
1939put('THAANA_AABAAFILI, 'codepoint, 0x07A7);
1940put('THAANA_IBIFILI, 'codepoint, 0x07A8);
1941put('THAANA_EEBEEFILI, 'codepoint, 0x07A9);
1942put('THAANA_UBUFILI, 'codepoint, 0x07AA);
1943put('THAANA_OOBOOFILI, 'codepoint, 0x07AB);
1944put('THAANA_EBEFILI, 'codepoint, 0x07AC);
1945put('THAANA_EYBEYFILI, 'codepoint, 0x07AD);
1946put('THAANA_OBOFILI, 'codepoint, 0x07AE);
1947put('THAANA_OABOAFILI, 'codepoint, 0x07AF);
1948put('THAANA_SUKUN, 'codepoint, 0x07B0);
1949put('THAANA_LETTER_NAA, 'codepoint, 0x07B1);
1950put('NKO_DIGIT_ZERO, 'codepoint, 0x07C0);
1951put('NKO_DIGIT_ONE, 'codepoint, 0x07C1);
1952put('NKO_DIGIT_TWO, 'codepoint, 0x07C2);
1953put('NKO_DIGIT_THREE, 'codepoint, 0x07C3);
1954put('NKO_DIGIT_FOUR, 'codepoint, 0x07C4);
1955put('NKO_DIGIT_FIVE, 'codepoint, 0x07C5);
1956put('NKO_DIGIT_SIX, 'codepoint, 0x07C6);
1957put('NKO_DIGIT_SEVEN, 'codepoint, 0x07C7);
1958put('NKO_DIGIT_EIGHT, 'codepoint, 0x07C8);
1959put('NKO_DIGIT_NINE, 'codepoint, 0x07C9);
1960put('NKO_LETTER_A, 'codepoint, 0x07CA);
1961put('NKO_LETTER_EE, 'codepoint, 0x07CB);
1962put('NKO_LETTER_I, 'codepoint, 0x07CC);
1963put('NKO_LETTER_E, 'codepoint, 0x07CD);
1964put('NKO_LETTER_U, 'codepoint, 0x07CE);
1965put('NKO_LETTER_OO, 'codepoint, 0x07CF);
1966put('NKO_LETTER_O, 'codepoint, 0x07D0);
1967put('NKO_LETTER_DAGBASINNA, 'codepoint, 0x07D1);
1968put('NKO_LETTER_N, 'codepoint, 0x07D2);
1969put('NKO_LETTER_BA, 'codepoint, 0x07D3);
1970put('NKO_LETTER_PA, 'codepoint, 0x07D4);
1971put('NKO_LETTER_TA, 'codepoint, 0x07D5);
1972put('NKO_LETTER_JA, 'codepoint, 0x07D6);
1973put('NKO_LETTER_CHA, 'codepoint, 0x07D7);
1974put('NKO_LETTER_DA, 'codepoint, 0x07D8);
1975put('NKO_LETTER_RA, 'codepoint, 0x07D9);
1976put('NKO_LETTER_RRA, 'codepoint, 0x07DA);
1977put('NKO_LETTER_SA, 'codepoint, 0x07DB);
1978put('NKO_LETTER_GBA, 'codepoint, 0x07DC);
1979put('NKO_LETTER_FA, 'codepoint, 0x07DD);
1980put('NKO_LETTER_KA, 'codepoint, 0x07DE);
1981put('NKO_LETTER_LA, 'codepoint, 0x07DF);
1982put('NKO_LETTER_NA_WOLOSO, 'codepoint, 0x07E0);
1983put('NKO_LETTER_MA, 'codepoint, 0x07E1);
1984put('NKO_LETTER_NYA, 'codepoint, 0x07E2);
1985put('NKO_LETTER_NA, 'codepoint, 0x07E3);
1986put('NKO_LETTER_HA, 'codepoint, 0x07E4);
1987put('NKO_LETTER_WA, 'codepoint, 0x07E5);
1988put('NKO_LETTER_YA, 'codepoint, 0x07E6);
1989put('NKO_LETTER_NYA_WOLOSO, 'codepoint, 0x07E7);
1990put('NKO_LETTER_JONA_JA, 'codepoint, 0x07E8);
1991put('NKO_LETTER_JONA_CHA, 'codepoint, 0x07E9);
1992put('NKO_LETTER_JONA_RA, 'codepoint, 0x07EA);
1993put('NKO_COMBINING_SHORT_HIGH_TONE, 'codepoint, 0x07EB);
1994put('NKO_COMBINING_SHORT_LOW_TONE, 'codepoint, 0x07EC);
1995put('NKO_COMBINING_SHORT_RISING_TONE, 'codepoint, 0x07ED);
1996put('NKO_COMBINING_LONG_DESCENDING_TONE, 'codepoint, 0x07EE);
1997put('NKO_COMBINING_LONG_HIGH_TONE, 'codepoint, 0x07EF);
1998put('NKO_COMBINING_LONG_LOW_TONE, 'codepoint, 0x07F0);
1999put('NKO_COMBINING_LONG_RISING_TONE, 'codepoint, 0x07F1);
2000put('NKO_COMBINING_NASALIZATION_MARK, 'codepoint, 0x07F2);
2001put('NKO_COMBINING_DOUBLE_DOT_ABOVE, 'codepoint, 0x07F3);
2002put('NKO_HIGH_TONE_APOSTROPHE, 'codepoint, 0x07F4);
2003put('NKO_LOW_TONE_APOSTROPHE, 'codepoint, 0x07F5);
2004put('NKO_SYMBOL_OO_DENNEN, 'codepoint, 0x07F6);
2005put('NKO_SYMBOL_GBAKURUNEN, 'codepoint, 0x07F7);
2006put('NKO_COMMA, 'codepoint, 0x07F8);
2007put('NKO_EXCLAMATION_MARK, 'codepoint, 0x07F9);
2008put('NKO_LAJANYALAN, 'codepoint, 0x07FA);
2009put('SAMARITAN_LETTER_ALAF, 'codepoint, 0x0800);
2010put('SAMARITAN_LETTER_BIT, 'codepoint, 0x0801);
2011put('SAMARITAN_LETTER_GAMAN, 'codepoint, 0x0802);
2012put('SAMARITAN_LETTER_DALAT, 'codepoint, 0x0803);
2013put('SAMARITAN_LETTER_IY, 'codepoint, 0x0804);
2014put('SAMARITAN_LETTER_BAA, 'codepoint, 0x0805);
2015put('SAMARITAN_LETTER_ZEN, 'codepoint, 0x0806);
2016put('SAMARITAN_LETTER_IT, 'codepoint, 0x0807);
2017put('SAMARITAN_LETTER_TIT, 'codepoint, 0x0808);
2018put('SAMARITAN_LETTER_YUT, 'codepoint, 0x0809);
2019put('SAMARITAN_LETTER_KAAF, 'codepoint, 0x080A);
2020put('SAMARITAN_LETTER_LABAT, 'codepoint, 0x080B);
2021put('SAMARITAN_LETTER_MIM, 'codepoint, 0x080C);
2022put('SAMARITAN_LETTER_NUN, 'codepoint, 0x080D);
2023put('SAMARITAN_LETTER_SINGAAT, 'codepoint, 0x080E);
2024put('SAMARITAN_LETTER_IN, 'codepoint, 0x080F);
2025put('SAMARITAN_LETTER_FI, 'codepoint, 0x0810);
2026put('SAMARITAN_LETTER_TSAADIY, 'codepoint, 0x0811);
2027put('SAMARITAN_LETTER_QUF, 'codepoint, 0x0812);
2028put('SAMARITAN_LETTER_RISH, 'codepoint, 0x0813);
2029put('SAMARITAN_LETTER_SHAN, 'codepoint, 0x0814);
2030put('SAMARITAN_LETTER_TAAF, 'codepoint, 0x0815);
2031put('SAMARITAN_MARK_IN, 'codepoint, 0x0816);
2032put('SAMARITAN_MARK_IN_ALAF, 'codepoint, 0x0817);
2033put('SAMARITAN_MARK_OCCLUSION, 'codepoint, 0x0818);
2034put('SAMARITAN_MARK_DAGESH, 'codepoint, 0x0819);
2035put('SAMARITAN_MODIFIER_LETTER_EPENTHETIC_YUT, 'codepoint, 0x081A);
2036put('SAMARITAN_MARK_EPENTHETIC_YUT, 'codepoint, 0x081B);
2037put('SAMARITAN_VOWEL_SIGN_LONG_E, 'codepoint, 0x081C);
2038put('SAMARITAN_VOWEL_SIGN_E, 'codepoint, 0x081D);
2039put('SAMARITAN_VOWEL_SIGN_OVERLONG_AA, 'codepoint, 0x081E);
2040put('SAMARITAN_VOWEL_SIGN_LONG_AA, 'codepoint, 0x081F);
2041put('SAMARITAN_VOWEL_SIGN_AA, 'codepoint, 0x0820);
2042put('SAMARITAN_VOWEL_SIGN_OVERLONG_A, 'codepoint, 0x0821);
2043put('SAMARITAN_VOWEL_SIGN_LONG_A, 'codepoint, 0x0822);
2044put('SAMARITAN_VOWEL_SIGN_A, 'codepoint, 0x0823);
2045put('SAMARITAN_MODIFIER_LETTER_SHORT_A, 'codepoint, 0x0824);
2046put('SAMARITAN_VOWEL_SIGN_SHORT_A, 'codepoint, 0x0825);
2047put('SAMARITAN_VOWEL_SIGN_LONG_U, 'codepoint, 0x0826);
2048put('SAMARITAN_VOWEL_SIGN_U, 'codepoint, 0x0827);
2049put('SAMARITAN_MODIFIER_LETTER_I, 'codepoint, 0x0828);
2050put('SAMARITAN_VOWEL_SIGN_LONG_I, 'codepoint, 0x0829);
2051put('SAMARITAN_VOWEL_SIGN_I, 'codepoint, 0x082A);
2052put('SAMARITAN_VOWEL_SIGN_O, 'codepoint, 0x082B);
2053put('SAMARITAN_VOWEL_SIGN_SUKUN, 'codepoint, 0x082C);
2054put('SAMARITAN_MARK_NEQUDAA, 'codepoint, 0x082D);
2055put('SAMARITAN_PUNCTUATION_NEQUDAA, 'codepoint, 0x0830);
2056put('SAMARITAN_PUNCTUATION_AFSAAQ, 'codepoint, 0x0831);
2057put('SAMARITAN_PUNCTUATION_ANGED, 'codepoint, 0x0832);
2058put('SAMARITAN_PUNCTUATION_BAU, 'codepoint, 0x0833);
2059put('SAMARITAN_PUNCTUATION_ATMAAU, 'codepoint, 0x0834);
2060put('SAMARITAN_PUNCTUATION_SHIYYAALAA, 'codepoint, 0x0835);
2061put('SAMARITAN_ABBREVIATION_MARK, 'codepoint, 0x0836);
2062put('SAMARITAN_PUNCTUATION_MELODIC_QITSA, 'codepoint, 0x0837);
2063put('SAMARITAN_PUNCTUATION_ZIQAA, 'codepoint, 0x0838);
2064put('SAMARITAN_PUNCTUATION_QITSA, 'codepoint, 0x0839);
2065put('SAMARITAN_PUNCTUATION_ZAEF, 'codepoint, 0x083A);
2066put('SAMARITAN_PUNCTUATION_TURU, 'codepoint, 0x083B);
2067put('SAMARITAN_PUNCTUATION_ARKAANU, 'codepoint, 0x083C);
2068put('SAMARITAN_PUNCTUATION_SOF_MASHFAAT, 'codepoint, 0x083D);
2069put('SAMARITAN_PUNCTUATION_ANNAAU, 'codepoint, 0x083E);
2070put('MANDAIC_LETTER_HALQA, 'codepoint, 0x0840);
2071put('MANDAIC_LETTER_AB, 'codepoint, 0x0841);
2072put('MANDAIC_LETTER_AG, 'codepoint, 0x0842);
2073put('MANDAIC_LETTER_AD, 'codepoint, 0x0843);
2074put('MANDAIC_LETTER_AH, 'codepoint, 0x0844);
2075put('MANDAIC_LETTER_USHENNA, 'codepoint, 0x0845);
2076put('MANDAIC_LETTER_AZ, 'codepoint, 0x0846);
2077put('MANDAIC_LETTER_IT, 'codepoint, 0x0847);
2078put('MANDAIC_LETTER_ATT, 'codepoint, 0x0848);
2079put('MANDAIC_LETTER_AKSA, 'codepoint, 0x0849);
2080put('MANDAIC_LETTER_AK, 'codepoint, 0x084A);
2081put('MANDAIC_LETTER_AL, 'codepoint, 0x084B);
2082put('MANDAIC_LETTER_AM, 'codepoint, 0x084C);
2083put('MANDAIC_LETTER_AN, 'codepoint, 0x084D);
2084put('MANDAIC_LETTER_AS, 'codepoint, 0x084E);
2085put('MANDAIC_LETTER_IN, 'codepoint, 0x084F);
2086put('MANDAIC_LETTER_AP, 'codepoint, 0x0850);
2087put('MANDAIC_LETTER_ASZ, 'codepoint, 0x0851);
2088put('MANDAIC_LETTER_AQ, 'codepoint, 0x0852);
2089put('MANDAIC_LETTER_AR, 'codepoint, 0x0853);
2090put('MANDAIC_LETTER_ASH, 'codepoint, 0x0854);
2091put('MANDAIC_LETTER_AT, 'codepoint, 0x0855);
2092put('MANDAIC_LETTER_DUSHENNA, 'codepoint, 0x0856);
2093put('MANDAIC_LETTER_KAD, 'codepoint, 0x0857);
2094put('MANDAIC_LETTER_AIN, 'codepoint, 0x0858);
2095put('MANDAIC_AFFRICATION_MARK, 'codepoint, 0x0859);
2096put('MANDAIC_VOCALIZATION_MARK, 'codepoint, 0x085A);
2097put('MANDAIC_GEMINATION_MARK, 'codepoint, 0x085B);
2098put('MANDAIC_PUNCTUATION, 'codepoint, 0x085E);
2099put('ARABIC_LETTER_BEH_WITH_SMALL_V_BELOW, 'codepoint, 0x08A0);
2100put('ARABIC_LETTER_BEH_WITH_HAMZA_ABOVE, 'codepoint, 0x08A1);
2101put('ARABIC_LETTER_JEEM_WITH_TWO_DOTS_ABOVE, 'codepoint, 0x08A2);
2102put('ARABIC_LETTER_TAH_WITH_TWO_DOTS_ABOVE, 'codepoint, 0x08A3);
2103put('ARABIC_LETTER_FEH_WITH_DOT_BELOW_AND_THREE_DOTS_ABOVE, 'codepoint, 0x08A4);
2104put('ARABIC_LETTER_QAF_WITH_DOT_BELOW, 'codepoint, 0x08A5);
2105put('ARABIC_LETTER_LAM_WITH_DOUBLE_BAR, 'codepoint, 0x08A6);
2106put('ARABIC_LETTER_MEEM_WITH_THREE_DOTS_ABOVE, 'codepoint, 0x08A7);
2107put('ARABIC_LETTER_YEH_WITH_TWO_DOTS_BELOW_AND_HAMZA_ABOVE, 'codepoint, 0x08A8);
2108put('ARABIC_LETTER_YEH_WITH_TWO_DOTS_BELOW_AND_DOT_ABOVE, 'codepoint, 0x08A9);
2109put('ARABIC_LETTER_REH_WITH_LOOP, 'codepoint, 0x08AA);
2110put('ARABIC_LETTER_WAW_WITH_DOT_WITHIN, 'codepoint, 0x08AB);
2111put('ARABIC_LETTER_ROHINGYA_YEH, 'codepoint, 0x08AC);
2112put('ARABIC_LETTER_LOW_ALEF, 'codepoint, 0x08AD);
2113put('ARABIC_LETTER_DAL_WITH_THREE_DOTS_BELOW, 'codepoint, 0x08AE);
2114put('ARABIC_LETTER_SAD_WITH_THREE_DOTS_BELOW, 'codepoint, 0x08AF);
2115put('ARABIC_LETTER_GAF_WITH_INVERTED_STROKE, 'codepoint, 0x08B0);
2116put('ARABIC_LETTER_STRAIGHT_WAW, 'codepoint, 0x08B1);
2117put('ARABIC_LETTER_ZAIN_WITH_INVERTED_V_ABOVE, 'codepoint, 0x08B2);
2118put('ARABIC_CURLY_FATHA, 'codepoint, 0x08E4);
2119put('ARABIC_CURLY_DAMMA, 'codepoint, 0x08E5);
2120put('ARABIC_CURLY_KASRA, 'codepoint, 0x08E6);
2121put('ARABIC_CURLY_FATHATAN, 'codepoint, 0x08E7);
2122put('ARABIC_CURLY_DAMMATAN, 'codepoint, 0x08E8);
2123put('ARABIC_CURLY_KASRATAN, 'codepoint, 0x08E9);
2124put('ARABIC_TONE_ONE_DOT_ABOVE, 'codepoint, 0x08EA);
2125put('ARABIC_TONE_TWO_DOTS_ABOVE, 'codepoint, 0x08EB);
2126put('ARABIC_TONE_LOOP_ABOVE, 'codepoint, 0x08EC);
2127put('ARABIC_TONE_ONE_DOT_BELOW, 'codepoint, 0x08ED);
2128put('ARABIC_TONE_TWO_DOTS_BELOW, 'codepoint, 0x08EE);
2129put('ARABIC_TONE_LOOP_BELOW, 'codepoint, 0x08EF);
2130put('ARABIC_OPEN_FATHATAN, 'codepoint, 0x08F0);
2131put('ARABIC_OPEN_DAMMATAN, 'codepoint, 0x08F1);
2132put('ARABIC_OPEN_KASRATAN, 'codepoint, 0x08F2);
2133put('ARABIC_SMALL_HIGH_WAW, 'codepoint, 0x08F3);
2134put('ARABIC_FATHA_WITH_RING, 'codepoint, 0x08F4);
2135put('ARABIC_FATHA_WITH_DOT_ABOVE, 'codepoint, 0x08F5);
2136put('ARABIC_KASRA_WITH_DOT_BELOW, 'codepoint, 0x08F6);
2137put('ARABIC_LEFT_ARROWHEAD_ABOVE, 'codepoint, 0x08F7);
2138put('ARABIC_RIGHT_ARROWHEAD_ABOVE, 'codepoint, 0x08F8);
2139put('ARABIC_LEFT_ARROWHEAD_BELOW, 'codepoint, 0x08F9);
2140put('ARABIC_RIGHT_ARROWHEAD_BELOW, 'codepoint, 0x08FA);
2141put('ARABIC_DOUBLE_RIGHT_ARROWHEAD_ABOVE, 'codepoint, 0x08FB);
2142put('ARABIC_DOUBLE_RIGHT_ARROWHEAD_ABOVE_WITH_DOT, 'codepoint, 0x08FC);
2143put('ARABIC_RIGHT_ARROWHEAD_ABOVE_WITH_DOT, 'codepoint, 0x08FD);
2144put('ARABIC_DAMMA_WITH_DOT, 'codepoint, 0x08FE);
2145put('ARABIC_MARK_SIDEWAYS_NOON_GHUNNA, 'codepoint, 0x08FF);
2146put('DEVANAGARI_SIGN_INVERTED_CANDRABINDU, 'codepoint, 0x0900);
2147put('DEVANAGARI_SIGN_CANDRABINDU, 'codepoint, 0x0901);
2148put('DEVANAGARI_SIGN_ANUSVARA, 'codepoint, 0x0902);
2149put('DEVANAGARI_SIGN_VISARGA, 'codepoint, 0x0903);
2150put('DEVANAGARI_LETTER_SHORT_A, 'codepoint, 0x0904);
2151put('DEVANAGARI_LETTER_A, 'codepoint, 0x0905);
2152put('DEVANAGARI_LETTER_AA, 'codepoint, 0x0906);
2153put('DEVANAGARI_LETTER_I, 'codepoint, 0x0907);
2154put('DEVANAGARI_LETTER_II, 'codepoint, 0x0908);
2155put('DEVANAGARI_LETTER_U, 'codepoint, 0x0909);
2156put('DEVANAGARI_LETTER_UU, 'codepoint, 0x090A);
2157put('DEVANAGARI_LETTER_VOCALIC_R, 'codepoint, 0x090B);
2158put('DEVANAGARI_LETTER_VOCALIC_L, 'codepoint, 0x090C);
2159put('DEVANAGARI_LETTER_CANDRA_E, 'codepoint, 0x090D);
2160put('DEVANAGARI_LETTER_SHORT_E, 'codepoint, 0x090E);
2161put('DEVANAGARI_LETTER_E, 'codepoint, 0x090F);
2162put('DEVANAGARI_LETTER_AI, 'codepoint, 0x0910);
2163put('DEVANAGARI_LETTER_CANDRA_O, 'codepoint, 0x0911);
2164put('DEVANAGARI_LETTER_SHORT_O, 'codepoint, 0x0912);
2165put('DEVANAGARI_LETTER_O, 'codepoint, 0x0913);
2166put('DEVANAGARI_LETTER_AU, 'codepoint, 0x0914);
2167put('DEVANAGARI_LETTER_KA, 'codepoint, 0x0915);
2168put('DEVANAGARI_LETTER_KHA, 'codepoint, 0x0916);
2169put('DEVANAGARI_LETTER_GA, 'codepoint, 0x0917);
2170put('DEVANAGARI_LETTER_GHA, 'codepoint, 0x0918);
2171put('DEVANAGARI_LETTER_NGA, 'codepoint, 0x0919);
2172put('DEVANAGARI_LETTER_CA, 'codepoint, 0x091A);
2173put('DEVANAGARI_LETTER_CHA, 'codepoint, 0x091B);
2174put('DEVANAGARI_LETTER_JA, 'codepoint, 0x091C);
2175put('DEVANAGARI_LETTER_JHA, 'codepoint, 0x091D);
2176put('DEVANAGARI_LETTER_NYA, 'codepoint, 0x091E);
2177put('DEVANAGARI_LETTER_TTA, 'codepoint, 0x091F);
2178put('DEVANAGARI_LETTER_TTHA, 'codepoint, 0x0920);
2179put('DEVANAGARI_LETTER_DDA, 'codepoint, 0x0921);
2180put('DEVANAGARI_LETTER_DDHA, 'codepoint, 0x0922);
2181put('DEVANAGARI_LETTER_NNA, 'codepoint, 0x0923);
2182put('DEVANAGARI_LETTER_TA, 'codepoint, 0x0924);
2183put('DEVANAGARI_LETTER_THA, 'codepoint, 0x0925);
2184put('DEVANAGARI_LETTER_DA, 'codepoint, 0x0926);
2185put('DEVANAGARI_LETTER_DHA, 'codepoint, 0x0927);
2186put('DEVANAGARI_LETTER_NA, 'codepoint, 0x0928);
2187put('DEVANAGARI_LETTER_NNNA, 'codepoint, 0x0929);
2188put('DEVANAGARI_LETTER_PA, 'codepoint, 0x092A);
2189put('DEVANAGARI_LETTER_PHA, 'codepoint, 0x092B);
2190put('DEVANAGARI_LETTER_BA, 'codepoint, 0x092C);
2191put('DEVANAGARI_LETTER_BHA, 'codepoint, 0x092D);
2192put('DEVANAGARI_LETTER_MA, 'codepoint, 0x092E);
2193put('DEVANAGARI_LETTER_YA, 'codepoint, 0x092F);
2194put('DEVANAGARI_LETTER_RA, 'codepoint, 0x0930);
2195put('DEVANAGARI_LETTER_RRA, 'codepoint, 0x0931);
2196put('DEVANAGARI_LETTER_LA, 'codepoint, 0x0932);
2197put('DEVANAGARI_LETTER_LLA, 'codepoint, 0x0933);
2198put('DEVANAGARI_LETTER_LLLA, 'codepoint, 0x0934);
2199put('DEVANAGARI_LETTER_VA, 'codepoint, 0x0935);
2200put('DEVANAGARI_LETTER_SHA, 'codepoint, 0x0936);
2201put('DEVANAGARI_LETTER_SSA, 'codepoint, 0x0937);
2202put('DEVANAGARI_LETTER_SA, 'codepoint, 0x0938);
2203put('DEVANAGARI_LETTER_HA, 'codepoint, 0x0939);
2204put('DEVANAGARI_VOWEL_SIGN_OE, 'codepoint, 0x093A);
2205put('DEVANAGARI_VOWEL_SIGN_OOE, 'codepoint, 0x093B);
2206put('DEVANAGARI_SIGN_NUKTA, 'codepoint, 0x093C);
2207put('DEVANAGARI_SIGN_AVAGRAHA, 'codepoint, 0x093D);
2208put('DEVANAGARI_VOWEL_SIGN_AA, 'codepoint, 0x093E);
2209put('DEVANAGARI_VOWEL_SIGN_I, 'codepoint, 0x093F);
2210put('DEVANAGARI_VOWEL_SIGN_II, 'codepoint, 0x0940);
2211put('DEVANAGARI_VOWEL_SIGN_U, 'codepoint, 0x0941);
2212put('DEVANAGARI_VOWEL_SIGN_UU, 'codepoint, 0x0942);
2213put('DEVANAGARI_VOWEL_SIGN_VOCALIC_R, 'codepoint, 0x0943);
2214put('DEVANAGARI_VOWEL_SIGN_VOCALIC_RR, 'codepoint, 0x0944);
2215put('DEVANAGARI_VOWEL_SIGN_CANDRA_E, 'codepoint, 0x0945);
2216put('DEVANAGARI_VOWEL_SIGN_SHORT_E, 'codepoint, 0x0946);
2217put('DEVANAGARI_VOWEL_SIGN_E, 'codepoint, 0x0947);
2218put('DEVANAGARI_VOWEL_SIGN_AI, 'codepoint, 0x0948);
2219put('DEVANAGARI_VOWEL_SIGN_CANDRA_O, 'codepoint, 0x0949);
2220put('DEVANAGARI_VOWEL_SIGN_SHORT_O, 'codepoint, 0x094A);
2221put('DEVANAGARI_VOWEL_SIGN_O, 'codepoint, 0x094B);
2222put('DEVANAGARI_VOWEL_SIGN_AU, 'codepoint, 0x094C);
2223put('DEVANAGARI_SIGN_VIRAMA, 'codepoint, 0x094D);
2224put('DEVANAGARI_VOWEL_SIGN_PRISHTHAMATRA_E, 'codepoint, 0x094E);
2225put('DEVANAGARI_VOWEL_SIGN_AW, 'codepoint, 0x094F);
2226put('DEVANAGARI_OM, 'codepoint, 0x0950);
2227put('DEVANAGARI_STRESS_SIGN_UDATTA, 'codepoint, 0x0951);
2228put('DEVANAGARI_STRESS_SIGN_ANUDATTA, 'codepoint, 0x0952);
2229put('DEVANAGARI_GRAVE_ACCENT, 'codepoint, 0x0953);
2230put('DEVANAGARI_ACUTE_ACCENT, 'codepoint, 0x0954);
2231put('DEVANAGARI_VOWEL_SIGN_CANDRA_LONG_E, 'codepoint, 0x0955);
2232put('DEVANAGARI_VOWEL_SIGN_UE, 'codepoint, 0x0956);
2233put('DEVANAGARI_VOWEL_SIGN_UUE, 'codepoint, 0x0957);
2234put('DEVANAGARI_LETTER_QA, 'codepoint, 0x0958);
2235put('DEVANAGARI_LETTER_KHHA, 'codepoint, 0x0959);
2236put('DEVANAGARI_LETTER_GHHA, 'codepoint, 0x095A);
2237put('DEVANAGARI_LETTER_ZA, 'codepoint, 0x095B);
2238put('DEVANAGARI_LETTER_DDDHA, 'codepoint, 0x095C);
2239put('DEVANAGARI_LETTER_RHA, 'codepoint, 0x095D);
2240put('DEVANAGARI_LETTER_FA, 'codepoint, 0x095E);
2241put('DEVANAGARI_LETTER_YYA, 'codepoint, 0x095F);
2242put('DEVANAGARI_LETTER_VOCALIC_RR, 'codepoint, 0x0960);
2243put('DEVANAGARI_LETTER_VOCALIC_LL, 'codepoint, 0x0961);
2244put('DEVANAGARI_VOWEL_SIGN_VOCALIC_L, 'codepoint, 0x0962);
2245put('DEVANAGARI_VOWEL_SIGN_VOCALIC_LL, 'codepoint, 0x0963);
2246put('DEVANAGARI_DANDA, 'codepoint, 0x0964);
2247put('DEVANAGARI_DOUBLE_DANDA, 'codepoint, 0x0965);
2248put('DEVANAGARI_DIGIT_ZERO, 'codepoint, 0x0966);
2249put('DEVANAGARI_DIGIT_ONE, 'codepoint, 0x0967);
2250put('DEVANAGARI_DIGIT_TWO, 'codepoint, 0x0968);
2251put('DEVANAGARI_DIGIT_THREE, 'codepoint, 0x0969);
2252put('DEVANAGARI_DIGIT_FOUR, 'codepoint, 0x096A);
2253put('DEVANAGARI_DIGIT_FIVE, 'codepoint, 0x096B);
2254put('DEVANAGARI_DIGIT_SIX, 'codepoint, 0x096C);
2255put('DEVANAGARI_DIGIT_SEVEN, 'codepoint, 0x096D);
2256put('DEVANAGARI_DIGIT_EIGHT, 'codepoint, 0x096E);
2257put('DEVANAGARI_DIGIT_NINE, 'codepoint, 0x096F);
2258put('DEVANAGARI_ABBREVIATION_SIGN, 'codepoint, 0x0970);
2259put('DEVANAGARI_SIGN_HIGH_SPACING_DOT, 'codepoint, 0x0971);
2260put('DEVANAGARI_LETTER_CANDRA_A, 'codepoint, 0x0972);
2261put('DEVANAGARI_LETTER_OE, 'codepoint, 0x0973);
2262put('DEVANAGARI_LETTER_OOE, 'codepoint, 0x0974);
2263put('DEVANAGARI_LETTER_AW, 'codepoint, 0x0975);
2264put('DEVANAGARI_LETTER_UE, 'codepoint, 0x0976);
2265put('DEVANAGARI_LETTER_UUE, 'codepoint, 0x0977);
2266put('DEVANAGARI_LETTER_MARWARI_DDA, 'codepoint, 0x0978);
2267put('DEVANAGARI_LETTER_ZHA, 'codepoint, 0x0979);
2268put('DEVANAGARI_LETTER_HEAVY_YA, 'codepoint, 0x097A);
2269put('DEVANAGARI_LETTER_GGA, 'codepoint, 0x097B);
2270put('DEVANAGARI_LETTER_JJA, 'codepoint, 0x097C);
2271put('DEVANAGARI_LETTER_GLOTTAL_STOP, 'codepoint, 0x097D);
2272put('DEVANAGARI_LETTER_DDDA, 'codepoint, 0x097E);
2273put('DEVANAGARI_LETTER_BBA, 'codepoint, 0x097F);
2274put('BENGALI_ANJI, 'codepoint, 0x0980);
2275put('BENGALI_SIGN_CANDRABINDU, 'codepoint, 0x0981);
2276put('BENGALI_SIGN_ANUSVARA, 'codepoint, 0x0982);
2277put('BENGALI_SIGN_VISARGA, 'codepoint, 0x0983);
2278put('BENGALI_LETTER_A, 'codepoint, 0x0985);
2279put('BENGALI_LETTER_AA, 'codepoint, 0x0986);
2280put('BENGALI_LETTER_I, 'codepoint, 0x0987);
2281put('BENGALI_LETTER_II, 'codepoint, 0x0988);
2282put('BENGALI_LETTER_U, 'codepoint, 0x0989);
2283put('BENGALI_LETTER_UU, 'codepoint, 0x098A);
2284put('BENGALI_LETTER_VOCALIC_R, 'codepoint, 0x098B);
2285put('BENGALI_LETTER_VOCALIC_L, 'codepoint, 0x098C);
2286put('BENGALI_LETTER_E, 'codepoint, 0x098F);
2287put('BENGALI_LETTER_AI, 'codepoint, 0x0990);
2288put('BENGALI_LETTER_O, 'codepoint, 0x0993);
2289put('BENGALI_LETTER_AU, 'codepoint, 0x0994);
2290put('BENGALI_LETTER_KA, 'codepoint, 0x0995);
2291put('BENGALI_LETTER_KHA, 'codepoint, 0x0996);
2292put('BENGALI_LETTER_GA, 'codepoint, 0x0997);
2293put('BENGALI_LETTER_GHA, 'codepoint, 0x0998);
2294put('BENGALI_LETTER_NGA, 'codepoint, 0x0999);
2295put('BENGALI_LETTER_CA, 'codepoint, 0x099A);
2296put('BENGALI_LETTER_CHA, 'codepoint, 0x099B);
2297put('BENGALI_LETTER_JA, 'codepoint, 0x099C);
2298put('BENGALI_LETTER_JHA, 'codepoint, 0x099D);
2299put('BENGALI_LETTER_NYA, 'codepoint, 0x099E);
2300put('BENGALI_LETTER_TTA, 'codepoint, 0x099F);
2301put('BENGALI_LETTER_TTHA, 'codepoint, 0x09A0);
2302put('BENGALI_LETTER_DDA, 'codepoint, 0x09A1);
2303put('BENGALI_LETTER_DDHA, 'codepoint, 0x09A2);
2304put('BENGALI_LETTER_NNA, 'codepoint, 0x09A3);
2305put('BENGALI_LETTER_TA, 'codepoint, 0x09A4);
2306put('BENGALI_LETTER_THA, 'codepoint, 0x09A5);
2307put('BENGALI_LETTER_DA, 'codepoint, 0x09A6);
2308put('BENGALI_LETTER_DHA, 'codepoint, 0x09A7);
2309put('BENGALI_LETTER_NA, 'codepoint, 0x09A8);
2310put('BENGALI_LETTER_PA, 'codepoint, 0x09AA);
2311put('BENGALI_LETTER_PHA, 'codepoint, 0x09AB);
2312put('BENGALI_LETTER_BA, 'codepoint, 0x09AC);
2313put('BENGALI_LETTER_BHA, 'codepoint, 0x09AD);
2314put('BENGALI_LETTER_MA, 'codepoint, 0x09AE);
2315put('BENGALI_LETTER_YA, 'codepoint, 0x09AF);
2316put('BENGALI_LETTER_RA, 'codepoint, 0x09B0);
2317put('BENGALI_LETTER_LA, 'codepoint, 0x09B2);
2318put('BENGALI_LETTER_SHA, 'codepoint, 0x09B6);
2319put('BENGALI_LETTER_SSA, 'codepoint, 0x09B7);
2320put('BENGALI_LETTER_SA, 'codepoint, 0x09B8);
2321put('BENGALI_LETTER_HA, 'codepoint, 0x09B9);
2322put('BENGALI_SIGN_NUKTA, 'codepoint, 0x09BC);
2323put('BENGALI_SIGN_AVAGRAHA, 'codepoint, 0x09BD);
2324put('BENGALI_VOWEL_SIGN_AA, 'codepoint, 0x09BE);
2325put('BENGALI_VOWEL_SIGN_I, 'codepoint, 0x09BF);
2326put('BENGALI_VOWEL_SIGN_II, 'codepoint, 0x09C0);
2327put('BENGALI_VOWEL_SIGN_U, 'codepoint, 0x09C1);
2328put('BENGALI_VOWEL_SIGN_UU, 'codepoint, 0x09C2);
2329put('BENGALI_VOWEL_SIGN_VOCALIC_R, 'codepoint, 0x09C3);
2330put('BENGALI_VOWEL_SIGN_VOCALIC_RR, 'codepoint, 0x09C4);
2331put('BENGALI_VOWEL_SIGN_E, 'codepoint, 0x09C7);
2332put('BENGALI_VOWEL_SIGN_AI, 'codepoint, 0x09C8);
2333put('BENGALI_VOWEL_SIGN_O, 'codepoint, 0x09CB);
2334put('BENGALI_VOWEL_SIGN_AU, 'codepoint, 0x09CC);
2335put('BENGALI_SIGN_VIRAMA, 'codepoint, 0x09CD);
2336put('BENGALI_LETTER_KHANDA_TA, 'codepoint, 0x09CE);
2337put('BENGALI_AU_LENGTH_MARK, 'codepoint, 0x09D7);
2338put('BENGALI_LETTER_RRA, 'codepoint, 0x09DC);
2339put('BENGALI_LETTER_RHA, 'codepoint, 0x09DD);
2340put('BENGALI_LETTER_YYA, 'codepoint, 0x09DF);
2341put('BENGALI_LETTER_VOCALIC_RR, 'codepoint, 0x09E0);
2342put('BENGALI_LETTER_VOCALIC_LL, 'codepoint, 0x09E1);
2343put('BENGALI_VOWEL_SIGN_VOCALIC_L, 'codepoint, 0x09E2);
2344put('BENGALI_VOWEL_SIGN_VOCALIC_LL, 'codepoint, 0x09E3);
2345put('BENGALI_DIGIT_ZERO, 'codepoint, 0x09E6);
2346put('BENGALI_DIGIT_ONE, 'codepoint, 0x09E7);
2347put('BENGALI_DIGIT_TWO, 'codepoint, 0x09E8);
2348put('BENGALI_DIGIT_THREE, 'codepoint, 0x09E9);
2349put('BENGALI_DIGIT_FOUR, 'codepoint, 0x09EA);
2350put('BENGALI_DIGIT_FIVE, 'codepoint, 0x09EB);
2351put('BENGALI_DIGIT_SIX, 'codepoint, 0x09EC);
2352put('BENGALI_DIGIT_SEVEN, 'codepoint, 0x09ED);
2353put('BENGALI_DIGIT_EIGHT, 'codepoint, 0x09EE);
2354put('BENGALI_DIGIT_NINE, 'codepoint, 0x09EF);
2355put('BENGALI_LETTER_RA_WITH_MIDDLE_DIAGONAL, 'codepoint, 0x09F0);
2356put('BENGALI_LETTER_RA_WITH_LOWER_DIAGONAL, 'codepoint, 0x09F1);
2357put('BENGALI_RUPEE_MARK, 'codepoint, 0x09F2);
2358put('BENGALI_RUPEE_SIGN, 'codepoint, 0x09F3);
2359put('BENGALI_CURRENCY_NUMERATOR_ONE, 'codepoint, 0x09F4);
2360put('BENGALI_CURRENCY_NUMERATOR_TWO, 'codepoint, 0x09F5);
2361put('BENGALI_CURRENCY_NUMERATOR_THREE, 'codepoint, 0x09F6);
2362put('BENGALI_CURRENCY_NUMERATOR_FOUR, 'codepoint, 0x09F7);
2363put('BENGALI_CURRENCY_NUMERATOR_ONE_LESS_THAN_THE_DENOMINATOR, 'codepoint, 0x09F8);
2364put('BENGALI_CURRENCY_DENOMINATOR_SIXTEEN, 'codepoint, 0x09F9);
2365put('BENGALI_ISSHAR, 'codepoint, 0x09FA);
2366put('BENGALI_GANDA_MARK, 'codepoint, 0x09FB);
2367put('GURMUKHI_SIGN_ADAK_BINDI, 'codepoint, 0x0A01);
2368put('GURMUKHI_SIGN_BINDI, 'codepoint, 0x0A02);
2369put('GURMUKHI_SIGN_VISARGA, 'codepoint, 0x0A03);
2370put('GURMUKHI_LETTER_A, 'codepoint, 0x0A05);
2371put('GURMUKHI_LETTER_AA, 'codepoint, 0x0A06);
2372put('GURMUKHI_LETTER_I, 'codepoint, 0x0A07);
2373put('GURMUKHI_LETTER_II, 'codepoint, 0x0A08);
2374put('GURMUKHI_LETTER_U, 'codepoint, 0x0A09);
2375put('GURMUKHI_LETTER_UU, 'codepoint, 0x0A0A);
2376put('GURMUKHI_LETTER_EE, 'codepoint, 0x0A0F);
2377put('GURMUKHI_LETTER_AI, 'codepoint, 0x0A10);
2378put('GURMUKHI_LETTER_OO, 'codepoint, 0x0A13);
2379put('GURMUKHI_LETTER_AU, 'codepoint, 0x0A14);
2380put('GURMUKHI_LETTER_KA, 'codepoint, 0x0A15);
2381put('GURMUKHI_LETTER_KHA, 'codepoint, 0x0A16);
2382put('GURMUKHI_LETTER_GA, 'codepoint, 0x0A17);
2383put('GURMUKHI_LETTER_GHA, 'codepoint, 0x0A18);
2384put('GURMUKHI_LETTER_NGA, 'codepoint, 0x0A19);
2385put('GURMUKHI_LETTER_CA, 'codepoint, 0x0A1A);
2386put('GURMUKHI_LETTER_CHA, 'codepoint, 0x0A1B);
2387put('GURMUKHI_LETTER_JA, 'codepoint, 0x0A1C);
2388put('GURMUKHI_LETTER_JHA, 'codepoint, 0x0A1D);
2389put('GURMUKHI_LETTER_NYA, 'codepoint, 0x0A1E);
2390put('GURMUKHI_LETTER_TTA, 'codepoint, 0x0A1F);
2391put('GURMUKHI_LETTER_TTHA, 'codepoint, 0x0A20);
2392put('GURMUKHI_LETTER_DDA, 'codepoint, 0x0A21);
2393put('GURMUKHI_LETTER_DDHA, 'codepoint, 0x0A22);
2394put('GURMUKHI_LETTER_NNA, 'codepoint, 0x0A23);
2395put('GURMUKHI_LETTER_TA, 'codepoint, 0x0A24);
2396put('GURMUKHI_LETTER_THA, 'codepoint, 0x0A25);
2397put('GURMUKHI_LETTER_DA, 'codepoint, 0x0A26);
2398put('GURMUKHI_LETTER_DHA, 'codepoint, 0x0A27);
2399put('GURMUKHI_LETTER_NA, 'codepoint, 0x0A28);
2400put('GURMUKHI_LETTER_PA, 'codepoint, 0x0A2A);
2401put('GURMUKHI_LETTER_PHA, 'codepoint, 0x0A2B);
2402put('GURMUKHI_LETTER_BA, 'codepoint, 0x0A2C);
2403put('GURMUKHI_LETTER_BHA, 'codepoint, 0x0A2D);
2404put('GURMUKHI_LETTER_MA, 'codepoint, 0x0A2E);
2405put('GURMUKHI_LETTER_YA, 'codepoint, 0x0A2F);
2406put('GURMUKHI_LETTER_RA, 'codepoint, 0x0A30);
2407put('GURMUKHI_LETTER_LA, 'codepoint, 0x0A32);
2408put('GURMUKHI_LETTER_LLA, 'codepoint, 0x0A33);
2409put('GURMUKHI_LETTER_VA, 'codepoint, 0x0A35);
2410put('GURMUKHI_LETTER_SHA, 'codepoint, 0x0A36);
2411put('GURMUKHI_LETTER_SA, 'codepoint, 0x0A38);
2412put('GURMUKHI_LETTER_HA, 'codepoint, 0x0A39);
2413put('GURMUKHI_SIGN_NUKTA, 'codepoint, 0x0A3C);
2414put('GURMUKHI_VOWEL_SIGN_AA, 'codepoint, 0x0A3E);
2415put('GURMUKHI_VOWEL_SIGN_I, 'codepoint, 0x0A3F);
2416put('GURMUKHI_VOWEL_SIGN_II, 'codepoint, 0x0A40);
2417put('GURMUKHI_VOWEL_SIGN_U, 'codepoint, 0x0A41);
2418put('GURMUKHI_VOWEL_SIGN_UU, 'codepoint, 0x0A42);
2419put('GURMUKHI_VOWEL_SIGN_EE, 'codepoint, 0x0A47);
2420put('GURMUKHI_VOWEL_SIGN_AI, 'codepoint, 0x0A48);
2421put('GURMUKHI_VOWEL_SIGN_OO, 'codepoint, 0x0A4B);
2422put('GURMUKHI_VOWEL_SIGN_AU, 'codepoint, 0x0A4C);
2423put('GURMUKHI_SIGN_VIRAMA, 'codepoint, 0x0A4D);
2424put('GURMUKHI_SIGN_UDAAT, 'codepoint, 0x0A51);
2425put('GURMUKHI_LETTER_KHHA, 'codepoint, 0x0A59);
2426put('GURMUKHI_LETTER_GHHA, 'codepoint, 0x0A5A);
2427put('GURMUKHI_LETTER_ZA, 'codepoint, 0x0A5B);
2428put('GURMUKHI_LETTER_RRA, 'codepoint, 0x0A5C);
2429put('GURMUKHI_LETTER_FA, 'codepoint, 0x0A5E);
2430put('GURMUKHI_DIGIT_ZERO, 'codepoint, 0x0A66);
2431put('GURMUKHI_DIGIT_ONE, 'codepoint, 0x0A67);
2432put('GURMUKHI_DIGIT_TWO, 'codepoint, 0x0A68);
2433put('GURMUKHI_DIGIT_THREE, 'codepoint, 0x0A69);
2434put('GURMUKHI_DIGIT_FOUR, 'codepoint, 0x0A6A);
2435put('GURMUKHI_DIGIT_FIVE, 'codepoint, 0x0A6B);
2436put('GURMUKHI_DIGIT_SIX, 'codepoint, 0x0A6C);
2437put('GURMUKHI_DIGIT_SEVEN, 'codepoint, 0x0A6D);
2438put('GURMUKHI_DIGIT_EIGHT, 'codepoint, 0x0A6E);
2439put('GURMUKHI_DIGIT_NINE, 'codepoint, 0x0A6F);
2440put('GURMUKHI_TIPPI, 'codepoint, 0x0A70);
2441put('GURMUKHI_ADDAK, 'codepoint, 0x0A71);
2442put('GURMUKHI_IRI, 'codepoint, 0x0A72);
2443put('GURMUKHI_URA, 'codepoint, 0x0A73);
2444put('GURMUKHI_EK_ONKAR, 'codepoint, 0x0A74);
2445put('GURMUKHI_SIGN_YAKASH, 'codepoint, 0x0A75);
2446put('GUJARATI_SIGN_CANDRABINDU, 'codepoint, 0x0A81);
2447put('GUJARATI_SIGN_ANUSVARA, 'codepoint, 0x0A82);
2448put('GUJARATI_SIGN_VISARGA, 'codepoint, 0x0A83);
2449put('GUJARATI_LETTER_A, 'codepoint, 0x0A85);
2450put('GUJARATI_LETTER_AA, 'codepoint, 0x0A86);
2451put('GUJARATI_LETTER_I, 'codepoint, 0x0A87);
2452put('GUJARATI_LETTER_II, 'codepoint, 0x0A88);
2453put('GUJARATI_LETTER_U, 'codepoint, 0x0A89);
2454put('GUJARATI_LETTER_UU, 'codepoint, 0x0A8A);
2455put('GUJARATI_LETTER_VOCALIC_R, 'codepoint, 0x0A8B);
2456put('GUJARATI_LETTER_VOCALIC_L, 'codepoint, 0x0A8C);
2457put('GUJARATI_VOWEL_CANDRA_E, 'codepoint, 0x0A8D);
2458put('GUJARATI_LETTER_E, 'codepoint, 0x0A8F);
2459put('GUJARATI_LETTER_AI, 'codepoint, 0x0A90);
2460put('GUJARATI_VOWEL_CANDRA_O, 'codepoint, 0x0A91);
2461put('GUJARATI_LETTER_O, 'codepoint, 0x0A93);
2462put('GUJARATI_LETTER_AU, 'codepoint, 0x0A94);
2463put('GUJARATI_LETTER_KA, 'codepoint, 0x0A95);
2464put('GUJARATI_LETTER_KHA, 'codepoint, 0x0A96);
2465put('GUJARATI_LETTER_GA, 'codepoint, 0x0A97);
2466put('GUJARATI_LETTER_GHA, 'codepoint, 0x0A98);
2467put('GUJARATI_LETTER_NGA, 'codepoint, 0x0A99);
2468put('GUJARATI_LETTER_CA, 'codepoint, 0x0A9A);
2469put('GUJARATI_LETTER_CHA, 'codepoint, 0x0A9B);
2470put('GUJARATI_LETTER_JA, 'codepoint, 0x0A9C);
2471put('GUJARATI_LETTER_JHA, 'codepoint, 0x0A9D);
2472put('GUJARATI_LETTER_NYA, 'codepoint, 0x0A9E);
2473put('GUJARATI_LETTER_TTA, 'codepoint, 0x0A9F);
2474put('GUJARATI_LETTER_TTHA, 'codepoint, 0x0AA0);
2475put('GUJARATI_LETTER_DDA, 'codepoint, 0x0AA1);
2476put('GUJARATI_LETTER_DDHA, 'codepoint, 0x0AA2);
2477put('GUJARATI_LETTER_NNA, 'codepoint, 0x0AA3);
2478put('GUJARATI_LETTER_TA, 'codepoint, 0x0AA4);
2479put('GUJARATI_LETTER_THA, 'codepoint, 0x0AA5);
2480put('GUJARATI_LETTER_DA, 'codepoint, 0x0AA6);
2481put('GUJARATI_LETTER_DHA, 'codepoint, 0x0AA7);
2482put('GUJARATI_LETTER_NA, 'codepoint, 0x0AA8);
2483put('GUJARATI_LETTER_PA, 'codepoint, 0x0AAA);
2484put('GUJARATI_LETTER_PHA, 'codepoint, 0x0AAB);
2485put('GUJARATI_LETTER_BA, 'codepoint, 0x0AAC);
2486put('GUJARATI_LETTER_BHA, 'codepoint, 0x0AAD);
2487put('GUJARATI_LETTER_MA, 'codepoint, 0x0AAE);
2488put('GUJARATI_LETTER_YA, 'codepoint, 0x0AAF);
2489put('GUJARATI_LETTER_RA, 'codepoint, 0x0AB0);
2490put('GUJARATI_LETTER_LA, 'codepoint, 0x0AB2);
2491put('GUJARATI_LETTER_LLA, 'codepoint, 0x0AB3);
2492put('GUJARATI_LETTER_VA, 'codepoint, 0x0AB5);
2493put('GUJARATI_LETTER_SHA, 'codepoint, 0x0AB6);
2494put('GUJARATI_LETTER_SSA, 'codepoint, 0x0AB7);
2495put('GUJARATI_LETTER_SA, 'codepoint, 0x0AB8);
2496put('GUJARATI_LETTER_HA, 'codepoint, 0x0AB9);
2497put('GUJARATI_SIGN_NUKTA, 'codepoint, 0x0ABC);
2498put('GUJARATI_SIGN_AVAGRAHA, 'codepoint, 0x0ABD);
2499put('GUJARATI_VOWEL_SIGN_AA, 'codepoint, 0x0ABE);
2500put('GUJARATI_VOWEL_SIGN_I, 'codepoint, 0x0ABF);
2501put('GUJARATI_VOWEL_SIGN_II, 'codepoint, 0x0AC0);
2502put('GUJARATI_VOWEL_SIGN_U, 'codepoint, 0x0AC1);
2503put('GUJARATI_VOWEL_SIGN_UU, 'codepoint, 0x0AC2);
2504put('GUJARATI_VOWEL_SIGN_VOCALIC_R, 'codepoint, 0x0AC3);
2505put('GUJARATI_VOWEL_SIGN_VOCALIC_RR, 'codepoint, 0x0AC4);
2506put('GUJARATI_VOWEL_SIGN_CANDRA_E, 'codepoint, 0x0AC5);
2507put('GUJARATI_VOWEL_SIGN_E, 'codepoint, 0x0AC7);
2508put('GUJARATI_VOWEL_SIGN_AI, 'codepoint, 0x0AC8);
2509put('GUJARATI_VOWEL_SIGN_CANDRA_O, 'codepoint, 0x0AC9);
2510put('GUJARATI_VOWEL_SIGN_O, 'codepoint, 0x0ACB);
2511put('GUJARATI_VOWEL_SIGN_AU, 'codepoint, 0x0ACC);
2512put('GUJARATI_SIGN_VIRAMA, 'codepoint, 0x0ACD);
2513put('GUJARATI_OM, 'codepoint, 0x0AD0);
2514put('GUJARATI_LETTER_VOCALIC_RR, 'codepoint, 0x0AE0);
2515put('GUJARATI_LETTER_VOCALIC_LL, 'codepoint, 0x0AE1);
2516put('GUJARATI_VOWEL_SIGN_VOCALIC_L, 'codepoint, 0x0AE2);
2517put('GUJARATI_VOWEL_SIGN_VOCALIC_LL, 'codepoint, 0x0AE3);
2518put('GUJARATI_DIGIT_ZERO, 'codepoint, 0x0AE6);
2519put('GUJARATI_DIGIT_ONE, 'codepoint, 0x0AE7);
2520put('GUJARATI_DIGIT_TWO, 'codepoint, 0x0AE8);
2521put('GUJARATI_DIGIT_THREE, 'codepoint, 0x0AE9);
2522put('GUJARATI_DIGIT_FOUR, 'codepoint, 0x0AEA);
2523put('GUJARATI_DIGIT_FIVE, 'codepoint, 0x0AEB);
2524put('GUJARATI_DIGIT_SIX, 'codepoint, 0x0AEC);
2525put('GUJARATI_DIGIT_SEVEN, 'codepoint, 0x0AED);
2526put('GUJARATI_DIGIT_EIGHT, 'codepoint, 0x0AEE);
2527put('GUJARATI_DIGIT_NINE, 'codepoint, 0x0AEF);
2528put('GUJARATI_ABBREVIATION_SIGN, 'codepoint, 0x0AF0);
2529put('GUJARATI_RUPEE_SIGN, 'codepoint, 0x0AF1);
2530put('ORIYA_SIGN_CANDRABINDU, 'codepoint, 0x0B01);
2531put('ORIYA_SIGN_ANUSVARA, 'codepoint, 0x0B02);
2532put('ORIYA_SIGN_VISARGA, 'codepoint, 0x0B03);
2533put('ORIYA_LETTER_A, 'codepoint, 0x0B05);
2534put('ORIYA_LETTER_AA, 'codepoint, 0x0B06);
2535put('ORIYA_LETTER_I, 'codepoint, 0x0B07);
2536put('ORIYA_LETTER_II, 'codepoint, 0x0B08);
2537put('ORIYA_LETTER_U, 'codepoint, 0x0B09);
2538put('ORIYA_LETTER_UU, 'codepoint, 0x0B0A);
2539put('ORIYA_LETTER_VOCALIC_R, 'codepoint, 0x0B0B);
2540put('ORIYA_LETTER_VOCALIC_L, 'codepoint, 0x0B0C);
2541put('ORIYA_LETTER_E, 'codepoint, 0x0B0F);
2542put('ORIYA_LETTER_AI, 'codepoint, 0x0B10);
2543put('ORIYA_LETTER_O, 'codepoint, 0x0B13);
2544put('ORIYA_LETTER_AU, 'codepoint, 0x0B14);
2545put('ORIYA_LETTER_KA, 'codepoint, 0x0B15);
2546put('ORIYA_LETTER_KHA, 'codepoint, 0x0B16);
2547put('ORIYA_LETTER_GA, 'codepoint, 0x0B17);
2548put('ORIYA_LETTER_GHA, 'codepoint, 0x0B18);
2549put('ORIYA_LETTER_NGA, 'codepoint, 0x0B19);
2550put('ORIYA_LETTER_CA, 'codepoint, 0x0B1A);
2551put('ORIYA_LETTER_CHA, 'codepoint, 0x0B1B);
2552put('ORIYA_LETTER_JA, 'codepoint, 0x0B1C);
2553put('ORIYA_LETTER_JHA, 'codepoint, 0x0B1D);
2554put('ORIYA_LETTER_NYA, 'codepoint, 0x0B1E);
2555put('ORIYA_LETTER_TTA, 'codepoint, 0x0B1F);
2556put('ORIYA_LETTER_TTHA, 'codepoint, 0x0B20);
2557put('ORIYA_LETTER_DDA, 'codepoint, 0x0B21);
2558put('ORIYA_LETTER_DDHA, 'codepoint, 0x0B22);
2559put('ORIYA_LETTER_NNA, 'codepoint, 0x0B23);
2560put('ORIYA_LETTER_TA, 'codepoint, 0x0B24);
2561put('ORIYA_LETTER_THA, 'codepoint, 0x0B25);
2562put('ORIYA_LETTER_DA, 'codepoint, 0x0B26);
2563put('ORIYA_LETTER_DHA, 'codepoint, 0x0B27);
2564put('ORIYA_LETTER_NA, 'codepoint, 0x0B28);
2565put('ORIYA_LETTER_PA, 'codepoint, 0x0B2A);
2566put('ORIYA_LETTER_PHA, 'codepoint, 0x0B2B);
2567put('ORIYA_LETTER_BA, 'codepoint, 0x0B2C);
2568put('ORIYA_LETTER_BHA, 'codepoint, 0x0B2D);
2569put('ORIYA_LETTER_MA, 'codepoint, 0x0B2E);
2570put('ORIYA_LETTER_YA, 'codepoint, 0x0B2F);
2571put('ORIYA_LETTER_RA, 'codepoint, 0x0B30);
2572put('ORIYA_LETTER_LA, 'codepoint, 0x0B32);
2573put('ORIYA_LETTER_LLA, 'codepoint, 0x0B33);
2574put('ORIYA_LETTER_VA, 'codepoint, 0x0B35);
2575put('ORIYA_LETTER_SHA, 'codepoint, 0x0B36);
2576put('ORIYA_LETTER_SSA, 'codepoint, 0x0B37);
2577put('ORIYA_LETTER_SA, 'codepoint, 0x0B38);
2578put('ORIYA_LETTER_HA, 'codepoint, 0x0B39);
2579put('ORIYA_SIGN_NUKTA, 'codepoint, 0x0B3C);
2580put('ORIYA_SIGN_AVAGRAHA, 'codepoint, 0x0B3D);
2581put('ORIYA_VOWEL_SIGN_AA, 'codepoint, 0x0B3E);
2582put('ORIYA_VOWEL_SIGN_I, 'codepoint, 0x0B3F);
2583put('ORIYA_VOWEL_SIGN_II, 'codepoint, 0x0B40);
2584put('ORIYA_VOWEL_SIGN_U, 'codepoint, 0x0B41);
2585put('ORIYA_VOWEL_SIGN_UU, 'codepoint, 0x0B42);
2586put('ORIYA_VOWEL_SIGN_VOCALIC_R, 'codepoint, 0x0B43);
2587put('ORIYA_VOWEL_SIGN_VOCALIC_RR, 'codepoint, 0x0B44);
2588put('ORIYA_VOWEL_SIGN_E, 'codepoint, 0x0B47);
2589put('ORIYA_VOWEL_SIGN_AI, 'codepoint, 0x0B48);
2590put('ORIYA_VOWEL_SIGN_O, 'codepoint, 0x0B4B);
2591put('ORIYA_VOWEL_SIGN_AU, 'codepoint, 0x0B4C);
2592put('ORIYA_SIGN_VIRAMA, 'codepoint, 0x0B4D);
2593put('ORIYA_AI_LENGTH_MARK, 'codepoint, 0x0B56);
2594put('ORIYA_AU_LENGTH_MARK, 'codepoint, 0x0B57);
2595put('ORIYA_LETTER_RRA, 'codepoint, 0x0B5C);
2596put('ORIYA_LETTER_RHA, 'codepoint, 0x0B5D);
2597put('ORIYA_LETTER_YYA, 'codepoint, 0x0B5F);
2598put('ORIYA_LETTER_VOCALIC_RR, 'codepoint, 0x0B60);
2599put('ORIYA_LETTER_VOCALIC_LL, 'codepoint, 0x0B61);
2600put('ORIYA_VOWEL_SIGN_VOCALIC_L, 'codepoint, 0x0B62);
2601put('ORIYA_VOWEL_SIGN_VOCALIC_LL, 'codepoint, 0x0B63);
2602put('ORIYA_DIGIT_ZERO, 'codepoint, 0x0B66);
2603put('ORIYA_DIGIT_ONE, 'codepoint, 0x0B67);
2604put('ORIYA_DIGIT_TWO, 'codepoint, 0x0B68);
2605put('ORIYA_DIGIT_THREE, 'codepoint, 0x0B69);
2606put('ORIYA_DIGIT_FOUR, 'codepoint, 0x0B6A);
2607put('ORIYA_DIGIT_FIVE, 'codepoint, 0x0B6B);
2608put('ORIYA_DIGIT_SIX, 'codepoint, 0x0B6C);
2609put('ORIYA_DIGIT_SEVEN, 'codepoint, 0x0B6D);
2610put('ORIYA_DIGIT_EIGHT, 'codepoint, 0x0B6E);
2611put('ORIYA_DIGIT_NINE, 'codepoint, 0x0B6F);
2612put('ORIYA_ISSHAR, 'codepoint, 0x0B70);
2613put('ORIYA_LETTER_WA, 'codepoint, 0x0B71);
2614put('ORIYA_FRACTION_ONE_QUARTER, 'codepoint, 0x0B72);
2615put('ORIYA_FRACTION_ONE_HALF, 'codepoint, 0x0B73);
2616put('ORIYA_FRACTION_THREE_QUARTERS, 'codepoint, 0x0B74);
2617put('ORIYA_FRACTION_ONE_SIXTEENTH, 'codepoint, 0x0B75);
2618put('ORIYA_FRACTION_ONE_EIGHTH, 'codepoint, 0x0B76);
2619put('ORIYA_FRACTION_THREE_SIXTEENTHS, 'codepoint, 0x0B77);
2620put('TAMIL_SIGN_ANUSVARA, 'codepoint, 0x0B82);
2621put('TAMIL_SIGN_VISARGA, 'codepoint, 0x0B83);
2622put('TAMIL_LETTER_A, 'codepoint, 0x0B85);
2623put('TAMIL_LETTER_AA, 'codepoint, 0x0B86);
2624put('TAMIL_LETTER_I, 'codepoint, 0x0B87);
2625put('TAMIL_LETTER_II, 'codepoint, 0x0B88);
2626put('TAMIL_LETTER_U, 'codepoint, 0x0B89);
2627put('TAMIL_LETTER_UU, 'codepoint, 0x0B8A);
2628put('TAMIL_LETTER_E, 'codepoint, 0x0B8E);
2629put('TAMIL_LETTER_EE, 'codepoint, 0x0B8F);
2630put('TAMIL_LETTER_AI, 'codepoint, 0x0B90);
2631put('TAMIL_LETTER_O, 'codepoint, 0x0B92);
2632put('TAMIL_LETTER_OO, 'codepoint, 0x0B93);
2633put('TAMIL_LETTER_AU, 'codepoint, 0x0B94);
2634put('TAMIL_LETTER_KA, 'codepoint, 0x0B95);
2635put('TAMIL_LETTER_NGA, 'codepoint, 0x0B99);
2636put('TAMIL_LETTER_CA, 'codepoint, 0x0B9A);
2637put('TAMIL_LETTER_JA, 'codepoint, 0x0B9C);
2638put('TAMIL_LETTER_NYA, 'codepoint, 0x0B9E);
2639put('TAMIL_LETTER_TTA, 'codepoint, 0x0B9F);
2640put('TAMIL_LETTER_NNA, 'codepoint, 0x0BA3);
2641put('TAMIL_LETTER_TA, 'codepoint, 0x0BA4);
2642put('TAMIL_LETTER_NA, 'codepoint, 0x0BA8);
2643put('TAMIL_LETTER_NNNA, 'codepoint, 0x0BA9);
2644put('TAMIL_LETTER_PA, 'codepoint, 0x0BAA);
2645put('TAMIL_LETTER_MA, 'codepoint, 0x0BAE);
2646put('TAMIL_LETTER_YA, 'codepoint, 0x0BAF);
2647put('TAMIL_LETTER_RA, 'codepoint, 0x0BB0);
2648put('TAMIL_LETTER_RRA, 'codepoint, 0x0BB1);
2649put('TAMIL_LETTER_LA, 'codepoint, 0x0BB2);
2650put('TAMIL_LETTER_LLA, 'codepoint, 0x0BB3);
2651put('TAMIL_LETTER_LLLA, 'codepoint, 0x0BB4);
2652put('TAMIL_LETTER_VA, 'codepoint, 0x0BB5);
2653put('TAMIL_LETTER_SHA, 'codepoint, 0x0BB6);
2654put('TAMIL_LETTER_SSA, 'codepoint, 0x0BB7);
2655put('TAMIL_LETTER_SA, 'codepoint, 0x0BB8);
2656put('TAMIL_LETTER_HA, 'codepoint, 0x0BB9);
2657put('TAMIL_VOWEL_SIGN_AA, 'codepoint, 0x0BBE);
2658put('TAMIL_VOWEL_SIGN_I, 'codepoint, 0x0BBF);
2659put('TAMIL_VOWEL_SIGN_II, 'codepoint, 0x0BC0);
2660put('TAMIL_VOWEL_SIGN_U, 'codepoint, 0x0BC1);
2661put('TAMIL_VOWEL_SIGN_UU, 'codepoint, 0x0BC2);
2662put('TAMIL_VOWEL_SIGN_E, 'codepoint, 0x0BC6);
2663put('TAMIL_VOWEL_SIGN_EE, 'codepoint, 0x0BC7);
2664put('TAMIL_VOWEL_SIGN_AI, 'codepoint, 0x0BC8);
2665put('TAMIL_VOWEL_SIGN_O, 'codepoint, 0x0BCA);
2666put('TAMIL_VOWEL_SIGN_OO, 'codepoint, 0x0BCB);
2667put('TAMIL_VOWEL_SIGN_AU, 'codepoint, 0x0BCC);
2668put('TAMIL_SIGN_VIRAMA, 'codepoint, 0x0BCD);
2669put('TAMIL_OM, 'codepoint, 0x0BD0);
2670put('TAMIL_AU_LENGTH_MARK, 'codepoint, 0x0BD7);
2671put('TAMIL_DIGIT_ZERO, 'codepoint, 0x0BE6);
2672put('TAMIL_DIGIT_ONE, 'codepoint, 0x0BE7);
2673put('TAMIL_DIGIT_TWO, 'codepoint, 0x0BE8);
2674put('TAMIL_DIGIT_THREE, 'codepoint, 0x0BE9);
2675put('TAMIL_DIGIT_FOUR, 'codepoint, 0x0BEA);
2676put('TAMIL_DIGIT_FIVE, 'codepoint, 0x0BEB);
2677put('TAMIL_DIGIT_SIX, 'codepoint, 0x0BEC);
2678put('TAMIL_DIGIT_SEVEN, 'codepoint, 0x0BED);
2679put('TAMIL_DIGIT_EIGHT, 'codepoint, 0x0BEE);
2680put('TAMIL_DIGIT_NINE, 'codepoint, 0x0BEF);
2681put('TAMIL_NUMBER_TEN, 'codepoint, 0x0BF0);
2682put('TAMIL_NUMBER_ONE_HUNDRED, 'codepoint, 0x0BF1);
2683put('TAMIL_NUMBER_ONE_THOUSAND, 'codepoint, 0x0BF2);
2684put('TAMIL_DAY_SIGN, 'codepoint, 0x0BF3);
2685put('TAMIL_MONTH_SIGN, 'codepoint, 0x0BF4);
2686put('TAMIL_YEAR_SIGN, 'codepoint, 0x0BF5);
2687put('TAMIL_DEBIT_SIGN, 'codepoint, 0x0BF6);
2688put('TAMIL_CREDIT_SIGN, 'codepoint, 0x0BF7);
2689put('TAMIL_AS_ABOVE_SIGN, 'codepoint, 0x0BF8);
2690put('TAMIL_RUPEE_SIGN, 'codepoint, 0x0BF9);
2691put('TAMIL_NUMBER_SIGN, 'codepoint, 0x0BFA);
2692put('TELUGU_SIGN_COMBINING_CANDRABINDU_ABOVE, 'codepoint, 0x0C00);
2693put('TELUGU_SIGN_CANDRABINDU, 'codepoint, 0x0C01);
2694put('TELUGU_SIGN_ANUSVARA, 'codepoint, 0x0C02);
2695put('TELUGU_SIGN_VISARGA, 'codepoint, 0x0C03);
2696put('TELUGU_LETTER_A, 'codepoint, 0x0C05);
2697put('TELUGU_LETTER_AA, 'codepoint, 0x0C06);
2698put('TELUGU_LETTER_I, 'codepoint, 0x0C07);
2699put('TELUGU_LETTER_II, 'codepoint, 0x0C08);
2700put('TELUGU_LETTER_U, 'codepoint, 0x0C09);
2701put('TELUGU_LETTER_UU, 'codepoint, 0x0C0A);
2702put('TELUGU_LETTER_VOCALIC_R, 'codepoint, 0x0C0B);
2703put('TELUGU_LETTER_VOCALIC_L, 'codepoint, 0x0C0C);
2704put('TELUGU_LETTER_E, 'codepoint, 0x0C0E);
2705put('TELUGU_LETTER_EE, 'codepoint, 0x0C0F);
2706put('TELUGU_LETTER_AI, 'codepoint, 0x0C10);
2707put('TELUGU_LETTER_O, 'codepoint, 0x0C12);
2708put('TELUGU_LETTER_OO, 'codepoint, 0x0C13);
2709put('TELUGU_LETTER_AU, 'codepoint, 0x0C14);
2710put('TELUGU_LETTER_KA, 'codepoint, 0x0C15);
2711put('TELUGU_LETTER_KHA, 'codepoint, 0x0C16);
2712put('TELUGU_LETTER_GA, 'codepoint, 0x0C17);
2713put('TELUGU_LETTER_GHA, 'codepoint, 0x0C18);
2714put('TELUGU_LETTER_NGA, 'codepoint, 0x0C19);
2715put('TELUGU_LETTER_CA, 'codepoint, 0x0C1A);
2716put('TELUGU_LETTER_CHA, 'codepoint, 0x0C1B);
2717put('TELUGU_LETTER_JA, 'codepoint, 0x0C1C);
2718put('TELUGU_LETTER_JHA, 'codepoint, 0x0C1D);
2719put('TELUGU_LETTER_NYA, 'codepoint, 0x0C1E);
2720put('TELUGU_LETTER_TTA, 'codepoint, 0x0C1F);
2721put('TELUGU_LETTER_TTHA, 'codepoint, 0x0C20);
2722put('TELUGU_LETTER_DDA, 'codepoint, 0x0C21);
2723put('TELUGU_LETTER_DDHA, 'codepoint, 0x0C22);
2724put('TELUGU_LETTER_NNA, 'codepoint, 0x0C23);
2725put('TELUGU_LETTER_TA, 'codepoint, 0x0C24);
2726put('TELUGU_LETTER_THA, 'codepoint, 0x0C25);
2727put('TELUGU_LETTER_DA, 'codepoint, 0x0C26);
2728put('TELUGU_LETTER_DHA, 'codepoint, 0x0C27);
2729put('TELUGU_LETTER_NA, 'codepoint, 0x0C28);
2730put('TELUGU_LETTER_PA, 'codepoint, 0x0C2A);
2731put('TELUGU_LETTER_PHA, 'codepoint, 0x0C2B);
2732put('TELUGU_LETTER_BA, 'codepoint, 0x0C2C);
2733put('TELUGU_LETTER_BHA, 'codepoint, 0x0C2D);
2734put('TELUGU_LETTER_MA, 'codepoint, 0x0C2E);
2735put('TELUGU_LETTER_YA, 'codepoint, 0x0C2F);
2736put('TELUGU_LETTER_RA, 'codepoint, 0x0C30);
2737put('TELUGU_LETTER_RRA, 'codepoint, 0x0C31);
2738put('TELUGU_LETTER_LA, 'codepoint, 0x0C32);
2739put('TELUGU_LETTER_LLA, 'codepoint, 0x0C33);
2740put('TELUGU_LETTER_LLLA, 'codepoint, 0x0C34);
2741put('TELUGU_LETTER_VA, 'codepoint, 0x0C35);
2742put('TELUGU_LETTER_SHA, 'codepoint, 0x0C36);
2743put('TELUGU_LETTER_SSA, 'codepoint, 0x0C37);
2744put('TELUGU_LETTER_SA, 'codepoint, 0x0C38);
2745put('TELUGU_LETTER_HA, 'codepoint, 0x0C39);
2746put('TELUGU_SIGN_AVAGRAHA, 'codepoint, 0x0C3D);
2747put('TELUGU_VOWEL_SIGN_AA, 'codepoint, 0x0C3E);
2748put('TELUGU_VOWEL_SIGN_I, 'codepoint, 0x0C3F);
2749put('TELUGU_VOWEL_SIGN_II, 'codepoint, 0x0C40);
2750put('TELUGU_VOWEL_SIGN_U, 'codepoint, 0x0C41);
2751put('TELUGU_VOWEL_SIGN_UU, 'codepoint, 0x0C42);
2752put('TELUGU_VOWEL_SIGN_VOCALIC_R, 'codepoint, 0x0C43);
2753put('TELUGU_VOWEL_SIGN_VOCALIC_RR, 'codepoint, 0x0C44);
2754put('TELUGU_VOWEL_SIGN_E, 'codepoint, 0x0C46);
2755put('TELUGU_VOWEL_SIGN_EE, 'codepoint, 0x0C47);
2756put('TELUGU_VOWEL_SIGN_AI, 'codepoint, 0x0C48);
2757put('TELUGU_VOWEL_SIGN_O, 'codepoint, 0x0C4A);
2758put('TELUGU_VOWEL_SIGN_OO, 'codepoint, 0x0C4B);
2759put('TELUGU_VOWEL_SIGN_AU, 'codepoint, 0x0C4C);
2760put('TELUGU_SIGN_VIRAMA, 'codepoint, 0x0C4D);
2761put('TELUGU_LENGTH_MARK, 'codepoint, 0x0C55);
2762put('TELUGU_AI_LENGTH_MARK, 'codepoint, 0x0C56);
2763put('TELUGU_LETTER_TSA, 'codepoint, 0x0C58);
2764put('TELUGU_LETTER_DZA, 'codepoint, 0x0C59);
2765put('TELUGU_LETTER_VOCALIC_RR, 'codepoint, 0x0C60);
2766put('TELUGU_LETTER_VOCALIC_LL, 'codepoint, 0x0C61);
2767put('TELUGU_VOWEL_SIGN_VOCALIC_L, 'codepoint, 0x0C62);
2768put('TELUGU_VOWEL_SIGN_VOCALIC_LL, 'codepoint, 0x0C63);
2769put('TELUGU_DIGIT_ZERO, 'codepoint, 0x0C66);
2770put('TELUGU_DIGIT_ONE, 'codepoint, 0x0C67);
2771put('TELUGU_DIGIT_TWO, 'codepoint, 0x0C68);
2772put('TELUGU_DIGIT_THREE, 'codepoint, 0x0C69);
2773put('TELUGU_DIGIT_FOUR, 'codepoint, 0x0C6A);
2774put('TELUGU_DIGIT_FIVE, 'codepoint, 0x0C6B);
2775put('TELUGU_DIGIT_SIX, 'codepoint, 0x0C6C);
2776put('TELUGU_DIGIT_SEVEN, 'codepoint, 0x0C6D);
2777put('TELUGU_DIGIT_EIGHT, 'codepoint, 0x0C6E);
2778put('TELUGU_DIGIT_NINE, 'codepoint, 0x0C6F);
2779put('TELUGU_FRACTION_DIGIT_ZERO_FOR_ODD_POWERS_OF_FOUR, 'codepoint, 0x0C78);
2780put('TELUGU_FRACTION_DIGIT_ONE_FOR_ODD_POWERS_OF_FOUR, 'codepoint, 0x0C79);
2781put('TELUGU_FRACTION_DIGIT_TWO_FOR_ODD_POWERS_OF_FOUR, 'codepoint, 0x0C7A);
2782put('TELUGU_FRACTION_DIGIT_THREE_FOR_ODD_POWERS_OF_FOUR, 'codepoint, 0x0C7B);
2783put('TELUGU_FRACTION_DIGIT_ONE_FOR_EVEN_POWERS_OF_FOUR, 'codepoint, 0x0C7C);
2784put('TELUGU_FRACTION_DIGIT_TWO_FOR_EVEN_POWERS_OF_FOUR, 'codepoint, 0x0C7D);
2785put('TELUGU_FRACTION_DIGIT_THREE_FOR_EVEN_POWERS_OF_FOUR, 'codepoint, 0x0C7E);
2786put('TELUGU_SIGN_TUUMU, 'codepoint, 0x0C7F);
2787put('KANNADA_SIGN_CANDRABINDU, 'codepoint, 0x0C81);
2788put('KANNADA_SIGN_ANUSVARA, 'codepoint, 0x0C82);
2789put('KANNADA_SIGN_VISARGA, 'codepoint, 0x0C83);
2790put('KANNADA_LETTER_A, 'codepoint, 0x0C85);
2791put('KANNADA_LETTER_AA, 'codepoint, 0x0C86);
2792put('KANNADA_LETTER_I, 'codepoint, 0x0C87);
2793put('KANNADA_LETTER_II, 'codepoint, 0x0C88);
2794put('KANNADA_LETTER_U, 'codepoint, 0x0C89);
2795put('KANNADA_LETTER_UU, 'codepoint, 0x0C8A);
2796put('KANNADA_LETTER_VOCALIC_R, 'codepoint, 0x0C8B);
2797put('KANNADA_LETTER_VOCALIC_L, 'codepoint, 0x0C8C);
2798put('KANNADA_LETTER_E, 'codepoint, 0x0C8E);
2799put('KANNADA_LETTER_EE, 'codepoint, 0x0C8F);
2800put('KANNADA_LETTER_AI, 'codepoint, 0x0C90);
2801put('KANNADA_LETTER_O, 'codepoint, 0x0C92);
2802put('KANNADA_LETTER_OO, 'codepoint, 0x0C93);
2803put('KANNADA_LETTER_AU, 'codepoint, 0x0C94);
2804put('KANNADA_LETTER_KA, 'codepoint, 0x0C95);
2805put('KANNADA_LETTER_KHA, 'codepoint, 0x0C96);
2806put('KANNADA_LETTER_GA, 'codepoint, 0x0C97);
2807put('KANNADA_LETTER_GHA, 'codepoint, 0x0C98);
2808put('KANNADA_LETTER_NGA, 'codepoint, 0x0C99);
2809put('KANNADA_LETTER_CA, 'codepoint, 0x0C9A);
2810put('KANNADA_LETTER_CHA, 'codepoint, 0x0C9B);
2811put('KANNADA_LETTER_JA, 'codepoint, 0x0C9C);
2812put('KANNADA_LETTER_JHA, 'codepoint, 0x0C9D);
2813put('KANNADA_LETTER_NYA, 'codepoint, 0x0C9E);
2814put('KANNADA_LETTER_TTA, 'codepoint, 0x0C9F);
2815put('KANNADA_LETTER_TTHA, 'codepoint, 0x0CA0);
2816put('KANNADA_LETTER_DDA, 'codepoint, 0x0CA1);
2817put('KANNADA_LETTER_DDHA, 'codepoint, 0x0CA2);
2818put('KANNADA_LETTER_NNA, 'codepoint, 0x0CA3);
2819put('KANNADA_LETTER_TA, 'codepoint, 0x0CA4);
2820put('KANNADA_LETTER_THA, 'codepoint, 0x0CA5);
2821put('KANNADA_LETTER_DA, 'codepoint, 0x0CA6);
2822put('KANNADA_LETTER_DHA, 'codepoint, 0x0CA7);
2823put('KANNADA_LETTER_NA, 'codepoint, 0x0CA8);
2824put('KANNADA_LETTER_PA, 'codepoint, 0x0CAA);
2825put('KANNADA_LETTER_PHA, 'codepoint, 0x0CAB);
2826put('KANNADA_LETTER_BA, 'codepoint, 0x0CAC);
2827put('KANNADA_LETTER_BHA, 'codepoint, 0x0CAD);
2828put('KANNADA_LETTER_MA, 'codepoint, 0x0CAE);
2829put('KANNADA_LETTER_YA, 'codepoint, 0x0CAF);
2830put('KANNADA_LETTER_RA, 'codepoint, 0x0CB0);
2831put('KANNADA_LETTER_RRA, 'codepoint, 0x0CB1);
2832put('KANNADA_LETTER_LA, 'codepoint, 0x0CB2);
2833put('KANNADA_LETTER_LLA, 'codepoint, 0x0CB3);
2834put('KANNADA_LETTER_VA, 'codepoint, 0x0CB5);
2835put('KANNADA_LETTER_SHA, 'codepoint, 0x0CB6);
2836put('KANNADA_LETTER_SSA, 'codepoint, 0x0CB7);
2837put('KANNADA_LETTER_SA, 'codepoint, 0x0CB8);
2838put('KANNADA_LETTER_HA, 'codepoint, 0x0CB9);
2839put('KANNADA_SIGN_NUKTA, 'codepoint, 0x0CBC);
2840put('KANNADA_SIGN_AVAGRAHA, 'codepoint, 0x0CBD);
2841put('KANNADA_VOWEL_SIGN_AA, 'codepoint, 0x0CBE);
2842put('KANNADA_VOWEL_SIGN_I, 'codepoint, 0x0CBF);
2843put('KANNADA_VOWEL_SIGN_II, 'codepoint, 0x0CC0);
2844put('KANNADA_VOWEL_SIGN_U, 'codepoint, 0x0CC1);
2845put('KANNADA_VOWEL_SIGN_UU, 'codepoint, 0x0CC2);
2846put('KANNADA_VOWEL_SIGN_VOCALIC_R, 'codepoint, 0x0CC3);
2847put('KANNADA_VOWEL_SIGN_VOCALIC_RR, 'codepoint, 0x0CC4);
2848put('KANNADA_VOWEL_SIGN_E, 'codepoint, 0x0CC6);
2849put('KANNADA_VOWEL_SIGN_EE, 'codepoint, 0x0CC7);
2850put('KANNADA_VOWEL_SIGN_AI, 'codepoint, 0x0CC8);
2851put('KANNADA_VOWEL_SIGN_O, 'codepoint, 0x0CCA);
2852put('KANNADA_VOWEL_SIGN_OO, 'codepoint, 0x0CCB);
2853put('KANNADA_VOWEL_SIGN_AU, 'codepoint, 0x0CCC);
2854put('KANNADA_SIGN_VIRAMA, 'codepoint, 0x0CCD);
2855put('KANNADA_LENGTH_MARK, 'codepoint, 0x0CD5);
2856put('KANNADA_AI_LENGTH_MARK, 'codepoint, 0x0CD6);
2857put('KANNADA_LETTER_FA, 'codepoint, 0x0CDE);
2858put('KANNADA_LETTER_VOCALIC_RR, 'codepoint, 0x0CE0);
2859put('KANNADA_LETTER_VOCALIC_LL, 'codepoint, 0x0CE1);
2860put('KANNADA_VOWEL_SIGN_VOCALIC_L, 'codepoint, 0x0CE2);
2861put('KANNADA_VOWEL_SIGN_VOCALIC_LL, 'codepoint, 0x0CE3);
2862put('KANNADA_DIGIT_ZERO, 'codepoint, 0x0CE6);
2863put('KANNADA_DIGIT_ONE, 'codepoint, 0x0CE7);
2864put('KANNADA_DIGIT_TWO, 'codepoint, 0x0CE8);
2865put('KANNADA_DIGIT_THREE, 'codepoint, 0x0CE9);
2866put('KANNADA_DIGIT_FOUR, 'codepoint, 0x0CEA);
2867put('KANNADA_DIGIT_FIVE, 'codepoint, 0x0CEB);
2868put('KANNADA_DIGIT_SIX, 'codepoint, 0x0CEC);
2869put('KANNADA_DIGIT_SEVEN, 'codepoint, 0x0CED);
2870put('KANNADA_DIGIT_EIGHT, 'codepoint, 0x0CEE);
2871put('KANNADA_DIGIT_NINE, 'codepoint, 0x0CEF);
2872put('KANNADA_SIGN_JIHVAMULIYA, 'codepoint, 0x0CF1);
2873put('KANNADA_SIGN_UPADHMANIYA, 'codepoint, 0x0CF2);
2874put('MALAYALAM_SIGN_CANDRABINDU, 'codepoint, 0x0D01);
2875put('MALAYALAM_SIGN_ANUSVARA, 'codepoint, 0x0D02);
2876put('MALAYALAM_SIGN_VISARGA, 'codepoint, 0x0D03);
2877put('MALAYALAM_LETTER_A, 'codepoint, 0x0D05);
2878put('MALAYALAM_LETTER_AA, 'codepoint, 0x0D06);
2879put('MALAYALAM_LETTER_I, 'codepoint, 0x0D07);
2880put('MALAYALAM_LETTER_II, 'codepoint, 0x0D08);
2881put('MALAYALAM_LETTER_U, 'codepoint, 0x0D09);
2882put('MALAYALAM_LETTER_UU, 'codepoint, 0x0D0A);
2883put('MALAYALAM_LETTER_VOCALIC_R, 'codepoint, 0x0D0B);
2884put('MALAYALAM_LETTER_VOCALIC_L, 'codepoint, 0x0D0C);
2885put('MALAYALAM_LETTER_E, 'codepoint, 0x0D0E);
2886put('MALAYALAM_LETTER_EE, 'codepoint, 0x0D0F);
2887put('MALAYALAM_LETTER_AI, 'codepoint, 0x0D10);
2888put('MALAYALAM_LETTER_O, 'codepoint, 0x0D12);
2889put('MALAYALAM_LETTER_OO, 'codepoint, 0x0D13);
2890put('MALAYALAM_LETTER_AU, 'codepoint, 0x0D14);
2891put('MALAYALAM_LETTER_KA, 'codepoint, 0x0D15);
2892put('MALAYALAM_LETTER_KHA, 'codepoint, 0x0D16);
2893put('MALAYALAM_LETTER_GA, 'codepoint, 0x0D17);
2894put('MALAYALAM_LETTER_GHA, 'codepoint, 0x0D18);
2895put('MALAYALAM_LETTER_NGA, 'codepoint, 0x0D19);
2896put('MALAYALAM_LETTER_CA, 'codepoint, 0x0D1A);
2897put('MALAYALAM_LETTER_CHA, 'codepoint, 0x0D1B);
2898put('MALAYALAM_LETTER_JA, 'codepoint, 0x0D1C);
2899put('MALAYALAM_LETTER_JHA, 'codepoint, 0x0D1D);
2900put('MALAYALAM_LETTER_NYA, 'codepoint, 0x0D1E);
2901put('MALAYALAM_LETTER_TTA, 'codepoint, 0x0D1F);
2902put('MALAYALAM_LETTER_TTHA, 'codepoint, 0x0D20);
2903put('MALAYALAM_LETTER_DDA, 'codepoint, 0x0D21);
2904put('MALAYALAM_LETTER_DDHA, 'codepoint, 0x0D22);
2905put('MALAYALAM_LETTER_NNA, 'codepoint, 0x0D23);
2906put('MALAYALAM_LETTER_TA, 'codepoint, 0x0D24);
2907put('MALAYALAM_LETTER_THA, 'codepoint, 0x0D25);
2908put('MALAYALAM_LETTER_DA, 'codepoint, 0x0D26);
2909put('MALAYALAM_LETTER_DHA, 'codepoint, 0x0D27);
2910put('MALAYALAM_LETTER_NA, 'codepoint, 0x0D28);
2911put('MALAYALAM_LETTER_NNNA, 'codepoint, 0x0D29);
2912put('MALAYALAM_LETTER_PA, 'codepoint, 0x0D2A);
2913put('MALAYALAM_LETTER_PHA, 'codepoint, 0x0D2B);
2914put('MALAYALAM_LETTER_BA, 'codepoint, 0x0D2C);
2915put('MALAYALAM_LETTER_BHA, 'codepoint, 0x0D2D);
2916put('MALAYALAM_LETTER_MA, 'codepoint, 0x0D2E);
2917put('MALAYALAM_LETTER_YA, 'codepoint, 0x0D2F);
2918put('MALAYALAM_LETTER_RA, 'codepoint, 0x0D30);
2919put('MALAYALAM_LETTER_RRA, 'codepoint, 0x0D31);
2920put('MALAYALAM_LETTER_LA, 'codepoint, 0x0D32);
2921put('MALAYALAM_LETTER_LLA, 'codepoint, 0x0D33);
2922put('MALAYALAM_LETTER_LLLA, 'codepoint, 0x0D34);
2923put('MALAYALAM_LETTER_VA, 'codepoint, 0x0D35);
2924put('MALAYALAM_LETTER_SHA, 'codepoint, 0x0D36);
2925put('MALAYALAM_LETTER_SSA, 'codepoint, 0x0D37);
2926put('MALAYALAM_LETTER_SA, 'codepoint, 0x0D38);
2927put('MALAYALAM_LETTER_HA, 'codepoint, 0x0D39);
2928put('MALAYALAM_LETTER_TTTA, 'codepoint, 0x0D3A);
2929put('MALAYALAM_SIGN_AVAGRAHA, 'codepoint, 0x0D3D);
2930put('MALAYALAM_VOWEL_SIGN_AA, 'codepoint, 0x0D3E);
2931put('MALAYALAM_VOWEL_SIGN_I, 'codepoint, 0x0D3F);
2932put('MALAYALAM_VOWEL_SIGN_II, 'codepoint, 0x0D40);
2933put('MALAYALAM_VOWEL_SIGN_U, 'codepoint, 0x0D41);
2934put('MALAYALAM_VOWEL_SIGN_UU, 'codepoint, 0x0D42);
2935put('MALAYALAM_VOWEL_SIGN_VOCALIC_R, 'codepoint, 0x0D43);
2936put('MALAYALAM_VOWEL_SIGN_VOCALIC_RR, 'codepoint, 0x0D44);
2937put('MALAYALAM_VOWEL_SIGN_E, 'codepoint, 0x0D46);
2938put('MALAYALAM_VOWEL_SIGN_EE, 'codepoint, 0x0D47);
2939put('MALAYALAM_VOWEL_SIGN_AI, 'codepoint, 0x0D48);
2940put('MALAYALAM_VOWEL_SIGN_O, 'codepoint, 0x0D4A);
2941put('MALAYALAM_VOWEL_SIGN_OO, 'codepoint, 0x0D4B);
2942put('MALAYALAM_VOWEL_SIGN_AU, 'codepoint, 0x0D4C);
2943put('MALAYALAM_SIGN_VIRAMA, 'codepoint, 0x0D4D);
2944put('MALAYALAM_LETTER_DOT_REPH, 'codepoint, 0x0D4E);
2945put('MALAYALAM_AU_LENGTH_MARK, 'codepoint, 0x0D57);
2946put('MALAYALAM_LETTER_VOCALIC_RR, 'codepoint, 0x0D60);
2947put('MALAYALAM_LETTER_VOCALIC_LL, 'codepoint, 0x0D61);
2948put('MALAYALAM_VOWEL_SIGN_VOCALIC_L, 'codepoint, 0x0D62);
2949put('MALAYALAM_VOWEL_SIGN_VOCALIC_LL, 'codepoint, 0x0D63);
2950put('MALAYALAM_DIGIT_ZERO, 'codepoint, 0x0D66);
2951put('MALAYALAM_DIGIT_ONE, 'codepoint, 0x0D67);
2952put('MALAYALAM_DIGIT_TWO, 'codepoint, 0x0D68);
2953put('MALAYALAM_DIGIT_THREE, 'codepoint, 0x0D69);
2954put('MALAYALAM_DIGIT_FOUR, 'codepoint, 0x0D6A);
2955put('MALAYALAM_DIGIT_FIVE, 'codepoint, 0x0D6B);
2956put('MALAYALAM_DIGIT_SIX, 'codepoint, 0x0D6C);
2957put('MALAYALAM_DIGIT_SEVEN, 'codepoint, 0x0D6D);
2958put('MALAYALAM_DIGIT_EIGHT, 'codepoint, 0x0D6E);
2959put('MALAYALAM_DIGIT_NINE, 'codepoint, 0x0D6F);
2960put('MALAYALAM_NUMBER_TEN, 'codepoint, 0x0D70);
2961put('MALAYALAM_NUMBER_ONE_HUNDRED, 'codepoint, 0x0D71);
2962put('MALAYALAM_NUMBER_ONE_THOUSAND, 'codepoint, 0x0D72);
2963put('MALAYALAM_FRACTION_ONE_QUARTER, 'codepoint, 0x0D73);
2964put('MALAYALAM_FRACTION_ONE_HALF, 'codepoint, 0x0D74);
2965put('MALAYALAM_FRACTION_THREE_QUARTERS, 'codepoint, 0x0D75);
2966put('MALAYALAM_DATE_MARK, 'codepoint, 0x0D79);
2967put('MALAYALAM_LETTER_CHILLU_NN, 'codepoint, 0x0D7A);
2968put('MALAYALAM_LETTER_CHILLU_N, 'codepoint, 0x0D7B);
2969put('MALAYALAM_LETTER_CHILLU_RR, 'codepoint, 0x0D7C);
2970put('MALAYALAM_LETTER_CHILLU_L, 'codepoint, 0x0D7D);
2971put('MALAYALAM_LETTER_CHILLU_LL, 'codepoint, 0x0D7E);
2972put('MALAYALAM_LETTER_CHILLU_K, 'codepoint, 0x0D7F);
2973put('SINHALA_SIGN_ANUSVARAYA, 'codepoint, 0x0D82);
2974put('SINHALA_SIGN_VISARGAYA, 'codepoint, 0x0D83);
2975put('SINHALA_LETTER_AYANNA, 'codepoint, 0x0D85);
2976put('SINHALA_LETTER_AAYANNA, 'codepoint, 0x0D86);
2977put('SINHALA_LETTER_AEYANNA, 'codepoint, 0x0D87);
2978put('SINHALA_LETTER_AEEYANNA, 'codepoint, 0x0D88);
2979put('SINHALA_LETTER_IYANNA, 'codepoint, 0x0D89);
2980put('SINHALA_LETTER_IIYANNA, 'codepoint, 0x0D8A);
2981put('SINHALA_LETTER_UYANNA, 'codepoint, 0x0D8B);
2982put('SINHALA_LETTER_UUYANNA, 'codepoint, 0x0D8C);
2983put('SINHALA_LETTER_IRUYANNA, 'codepoint, 0x0D8D);
2984put('SINHALA_LETTER_IRUUYANNA, 'codepoint, 0x0D8E);
2985put('SINHALA_LETTER_ILUYANNA, 'codepoint, 0x0D8F);
2986put('SINHALA_LETTER_ILUUYANNA, 'codepoint, 0x0D90);
2987put('SINHALA_LETTER_EYANNA, 'codepoint, 0x0D91);
2988put('SINHALA_LETTER_EEYANNA, 'codepoint, 0x0D92);
2989put('SINHALA_LETTER_AIYANNA, 'codepoint, 0x0D93);
2990put('SINHALA_LETTER_OYANNA, 'codepoint, 0x0D94);
2991put('SINHALA_LETTER_OOYANNA, 'codepoint, 0x0D95);
2992put('SINHALA_LETTER_AUYANNA, 'codepoint, 0x0D96);
2993put('SINHALA_LETTER_ALPAPRAANA_KAYANNA, 'codepoint, 0x0D9A);
2994put('SINHALA_LETTER_MAHAAPRAANA_KAYANNA, 'codepoint, 0x0D9B);
2995put('SINHALA_LETTER_ALPAPRAANA_GAYANNA, 'codepoint, 0x0D9C);
2996put('SINHALA_LETTER_MAHAAPRAANA_GAYANNA, 'codepoint, 0x0D9D);
2997put('SINHALA_LETTER_KANTAJA_NAASIKYAYA, 'codepoint, 0x0D9E);
2998put('SINHALA_LETTER_SANYAKA_GAYANNA, 'codepoint, 0x0D9F);
2999put('SINHALA_LETTER_ALPAPRAANA_CAYANNA, 'codepoint, 0x0DA0);
3000put('SINHALA_LETTER_MAHAAPRAANA_CAYANNA, 'codepoint, 0x0DA1);
3001put('SINHALA_LETTER_ALPAPRAANA_JAYANNA, 'codepoint, 0x0DA2);
3002put('SINHALA_LETTER_MAHAAPRAANA_JAYANNA, 'codepoint, 0x0DA3);
3003put('SINHALA_LETTER_TAALUJA_NAASIKYAYA, 'codepoint, 0x0DA4);
3004put('SINHALA_LETTER_TAALUJA_SANYOOGA_NAAKSIKYAYA, 'codepoint, 0x0DA5);
3005put('SINHALA_LETTER_SANYAKA_JAYANNA, 'codepoint, 0x0DA6);
3006put('SINHALA_LETTER_ALPAPRAANA_TTAYANNA, 'codepoint, 0x0DA7);
3007put('SINHALA_LETTER_MAHAAPRAANA_TTAYANNA, 'codepoint, 0x0DA8);
3008put('SINHALA_LETTER_ALPAPRAANA_DDAYANNA, 'codepoint, 0x0DA9);
3009put('SINHALA_LETTER_MAHAAPRAANA_DDAYANNA, 'codepoint, 0x0DAA);
3010put('SINHALA_LETTER_MUURDHAJA_NAYANNA, 'codepoint, 0x0DAB);
3011put('SINHALA_LETTER_SANYAKA_DDAYANNA, 'codepoint, 0x0DAC);
3012put('SINHALA_LETTER_ALPAPRAANA_TAYANNA, 'codepoint, 0x0DAD);
3013put('SINHALA_LETTER_MAHAAPRAANA_TAYANNA, 'codepoint, 0x0DAE);
3014put('SINHALA_LETTER_ALPAPRAANA_DAYANNA, 'codepoint, 0x0DAF);
3015put('SINHALA_LETTER_MAHAAPRAANA_DAYANNA, 'codepoint, 0x0DB0);
3016put('SINHALA_LETTER_DANTAJA_NAYANNA, 'codepoint, 0x0DB1);
3017put('SINHALA_LETTER_SANYAKA_DAYANNA, 'codepoint, 0x0DB3);
3018put('SINHALA_LETTER_ALPAPRAANA_PAYANNA, 'codepoint, 0x0DB4);
3019put('SINHALA_LETTER_MAHAAPRAANA_PAYANNA, 'codepoint, 0x0DB5);
3020put('SINHALA_LETTER_ALPAPRAANA_BAYANNA, 'codepoint, 0x0DB6);
3021put('SINHALA_LETTER_MAHAAPRAANA_BAYANNA, 'codepoint, 0x0DB7);
3022put('SINHALA_LETTER_MAYANNA, 'codepoint, 0x0DB8);
3023put('SINHALA_LETTER_AMBA_BAYANNA, 'codepoint, 0x0DB9);
3024put('SINHALA_LETTER_YAYANNA, 'codepoint, 0x0DBA);
3025put('SINHALA_LETTER_RAYANNA, 'codepoint, 0x0DBB);
3026put('SINHALA_LETTER_DANTAJA_LAYANNA, 'codepoint, 0x0DBD);
3027put('SINHALA_LETTER_VAYANNA, 'codepoint, 0x0DC0);
3028put('SINHALA_LETTER_TAALUJA_SAYANNA, 'codepoint, 0x0DC1);
3029put('SINHALA_LETTER_MUURDHAJA_SAYANNA, 'codepoint, 0x0DC2);
3030put('SINHALA_LETTER_DANTAJA_SAYANNA, 'codepoint, 0x0DC3);
3031put('SINHALA_LETTER_HAYANNA, 'codepoint, 0x0DC4);
3032put('SINHALA_LETTER_MUURDHAJA_LAYANNA, 'codepoint, 0x0DC5);
3033put('SINHALA_LETTER_FAYANNA, 'codepoint, 0x0DC6);
3034put('SINHALA_SIGN_AL_LAKUNA, 'codepoint, 0x0DCA);
3035put('SINHALA_VOWEL_SIGN_AELA_PILLA, 'codepoint, 0x0DCF);
3036put('SINHALA_VOWEL_SIGN_KETTI_AEDA_PILLA, 'codepoint, 0x0DD0);
3037put('SINHALA_VOWEL_SIGN_DIGA_AEDA_PILLA, 'codepoint, 0x0DD1);
3038put('SINHALA_VOWEL_SIGN_KETTI_IS_PILLA, 'codepoint, 0x0DD2);
3039put('SINHALA_VOWEL_SIGN_DIGA_IS_PILLA, 'codepoint, 0x0DD3);
3040put('SINHALA_VOWEL_SIGN_KETTI_PAA_PILLA, 'codepoint, 0x0DD4);
3041put('SINHALA_VOWEL_SIGN_DIGA_PAA_PILLA, 'codepoint, 0x0DD6);
3042put('SINHALA_VOWEL_SIGN_GAETTA_PILLA, 'codepoint, 0x0DD8);
3043put('SINHALA_VOWEL_SIGN_KOMBUVA, 'codepoint, 0x0DD9);
3044put('SINHALA_VOWEL_SIGN_DIGA_KOMBUVA, 'codepoint, 0x0DDA);
3045put('SINHALA_VOWEL_SIGN_KOMBU_DEKA, 'codepoint, 0x0DDB);
3046put('SINHALA_VOWEL_SIGN_KOMBUVA_HAA_AELA_PILLA, 'codepoint, 0x0DDC);
3047put('SINHALA_VOWEL_SIGN_KOMBUVA_HAA_DIGA_AELA_PILLA, 'codepoint, 0x0DDD);
3048put('SINHALA_VOWEL_SIGN_KOMBUVA_HAA_GAYANUKITTA, 'codepoint, 0x0DDE);
3049put('SINHALA_VOWEL_SIGN_GAYANUKITTA, 'codepoint, 0x0DDF);
3050put('SINHALA_LITH_DIGIT_ZERO, 'codepoint, 0x0DE6);
3051put('SINHALA_LITH_DIGIT_ONE, 'codepoint, 0x0DE7);
3052put('SINHALA_LITH_DIGIT_TWO, 'codepoint, 0x0DE8);
3053put('SINHALA_LITH_DIGIT_THREE, 'codepoint, 0x0DE9);
3054put('SINHALA_LITH_DIGIT_FOUR, 'codepoint, 0x0DEA);
3055put('SINHALA_LITH_DIGIT_FIVE, 'codepoint, 0x0DEB);
3056put('SINHALA_LITH_DIGIT_SIX, 'codepoint, 0x0DEC);
3057put('SINHALA_LITH_DIGIT_SEVEN, 'codepoint, 0x0DED);
3058put('SINHALA_LITH_DIGIT_EIGHT, 'codepoint, 0x0DEE);
3059put('SINHALA_LITH_DIGIT_NINE, 'codepoint, 0x0DEF);
3060put('SINHALA_VOWEL_SIGN_DIGA_GAETTA_PILLA, 'codepoint, 0x0DF2);
3061put('SINHALA_VOWEL_SIGN_DIGA_GAYANUKITTA, 'codepoint, 0x0DF3);
3062put('SINHALA_PUNCTUATION_KUNDDALIYA, 'codepoint, 0x0DF4);
3063put('THAI_CHARACTER_KO_KAI, 'codepoint, 0x0E01);
3064put('THAI_CHARACTER_KHO_KHAI, 'codepoint, 0x0E02);
3065put('THAI_CHARACTER_KHO_KHUAT, 'codepoint, 0x0E03);
3066put('THAI_CHARACTER_KHO_KHWAI, 'codepoint, 0x0E04);
3067put('THAI_CHARACTER_KHO_KHON, 'codepoint, 0x0E05);
3068put('THAI_CHARACTER_KHO_RAKHANG, 'codepoint, 0x0E06);
3069put('THAI_CHARACTER_NGO_NGU, 'codepoint, 0x0E07);
3070put('THAI_CHARACTER_CHO_CHAN, 'codepoint, 0x0E08);
3071put('THAI_CHARACTER_CHO_CHING, 'codepoint, 0x0E09);
3072put('THAI_CHARACTER_CHO_CHANG, 'codepoint, 0x0E0A);
3073put('THAI_CHARACTER_SO_SO, 'codepoint, 0x0E0B);
3074put('THAI_CHARACTER_CHO_CHOE, 'codepoint, 0x0E0C);
3075put('THAI_CHARACTER_YO_YING, 'codepoint, 0x0E0D);
3076put('THAI_CHARACTER_DO_CHADA, 'codepoint, 0x0E0E);
3077put('THAI_CHARACTER_TO_PATAK, 'codepoint, 0x0E0F);
3078put('THAI_CHARACTER_THO_THAN, 'codepoint, 0x0E10);
3079put('THAI_CHARACTER_THO_NANGMONTHO, 'codepoint, 0x0E11);
3080put('THAI_CHARACTER_THO_PHUTHAO, 'codepoint, 0x0E12);
3081put('THAI_CHARACTER_NO_NEN, 'codepoint, 0x0E13);
3082put('THAI_CHARACTER_DO_DEK, 'codepoint, 0x0E14);
3083put('THAI_CHARACTER_TO_TAO, 'codepoint, 0x0E15);
3084put('THAI_CHARACTER_THO_THUNG, 'codepoint, 0x0E16);
3085put('THAI_CHARACTER_THO_THAHAN, 'codepoint, 0x0E17);
3086put('THAI_CHARACTER_THO_THONG, 'codepoint, 0x0E18);
3087put('THAI_CHARACTER_NO_NU, 'codepoint, 0x0E19);
3088put('THAI_CHARACTER_BO_BAIMAI, 'codepoint, 0x0E1A);
3089put('THAI_CHARACTER_PO_PLA, 'codepoint, 0x0E1B);
3090put('THAI_CHARACTER_PHO_PHUNG, 'codepoint, 0x0E1C);
3091put('THAI_CHARACTER_FO_FA, 'codepoint, 0x0E1D);
3092put('THAI_CHARACTER_PHO_PHAN, 'codepoint, 0x0E1E);
3093put('THAI_CHARACTER_FO_FAN, 'codepoint, 0x0E1F);
3094put('THAI_CHARACTER_PHO_SAMPHAO, 'codepoint, 0x0E20);
3095put('THAI_CHARACTER_MO_MA, 'codepoint, 0x0E21);
3096put('THAI_CHARACTER_YO_YAK, 'codepoint, 0x0E22);
3097put('THAI_CHARACTER_RO_RUA, 'codepoint, 0x0E23);
3098put('THAI_CHARACTER_RU, 'codepoint, 0x0E24);
3099put('THAI_CHARACTER_LO_LING, 'codepoint, 0x0E25);
3100put('THAI_CHARACTER_LU, 'codepoint, 0x0E26);
3101put('THAI_CHARACTER_WO_WAEN, 'codepoint, 0x0E27);
3102put('THAI_CHARACTER_SO_SALA, 'codepoint, 0x0E28);
3103put('THAI_CHARACTER_SO_RUSI, 'codepoint, 0x0E29);
3104put('THAI_CHARACTER_SO_SUA, 'codepoint, 0x0E2A);
3105put('THAI_CHARACTER_HO_HIP, 'codepoint, 0x0E2B);
3106put('THAI_CHARACTER_LO_CHULA, 'codepoint, 0x0E2C);
3107put('THAI_CHARACTER_O_ANG, 'codepoint, 0x0E2D);
3108put('THAI_CHARACTER_HO_NOKHUK, 'codepoint, 0x0E2E);
3109put('THAI_CHARACTER_PAIYANNOI, 'codepoint, 0x0E2F);
3110put('THAI_CHARACTER_SARA_A, 'codepoint, 0x0E30);
3111put('THAI_CHARACTER_MAI_HAN_AKAT, 'codepoint, 0x0E31);
3112put('THAI_CHARACTER_SARA_AA, 'codepoint, 0x0E32);
3113put('THAI_CHARACTER_SARA_AM, 'codepoint, 0x0E33);
3114put('THAI_CHARACTER_SARA_I, 'codepoint, 0x0E34);
3115put('THAI_CHARACTER_SARA_II, 'codepoint, 0x0E35);
3116put('THAI_CHARACTER_SARA_UE, 'codepoint, 0x0E36);
3117put('THAI_CHARACTER_SARA_UEE, 'codepoint, 0x0E37);
3118put('THAI_CHARACTER_SARA_U, 'codepoint, 0x0E38);
3119put('THAI_CHARACTER_SARA_UU, 'codepoint, 0x0E39);
3120put('THAI_CHARACTER_PHINTHU, 'codepoint, 0x0E3A);
3121put('THAI_CURRENCY_SYMBOL_BAHT, 'codepoint, 0x0E3F);
3122put('THAI_CHARACTER_SARA_E, 'codepoint, 0x0E40);
3123put('THAI_CHARACTER_SARA_AE, 'codepoint, 0x0E41);
3124put('THAI_CHARACTER_SARA_O, 'codepoint, 0x0E42);
3125put('THAI_CHARACTER_SARA_AI_MAIMUAN, 'codepoint, 0x0E43);
3126put('THAI_CHARACTER_SARA_AI_MAIMALAI, 'codepoint, 0x0E44);
3127put('THAI_CHARACTER_LAKKHANGYAO, 'codepoint, 0x0E45);
3128put('THAI_CHARACTER_MAIYAMOK, 'codepoint, 0x0E46);
3129put('THAI_CHARACTER_MAITAIKHU, 'codepoint, 0x0E47);
3130put('THAI_CHARACTER_MAI_EK, 'codepoint, 0x0E48);
3131put('THAI_CHARACTER_MAI_THO, 'codepoint, 0x0E49);
3132put('THAI_CHARACTER_MAI_TRI, 'codepoint, 0x0E4A);
3133put('THAI_CHARACTER_MAI_CHATTAWA, 'codepoint, 0x0E4B);
3134put('THAI_CHARACTER_THANTHAKHAT, 'codepoint, 0x0E4C);
3135put('THAI_CHARACTER_NIKHAHIT, 'codepoint, 0x0E4D);
3136put('THAI_CHARACTER_YAMAKKAN, 'codepoint, 0x0E4E);
3137put('THAI_CHARACTER_FONGMAN, 'codepoint, 0x0E4F);
3138put('THAI_DIGIT_ZERO, 'codepoint, 0x0E50);
3139put('THAI_DIGIT_ONE, 'codepoint, 0x0E51);
3140put('THAI_DIGIT_TWO, 'codepoint, 0x0E52);
3141put('THAI_DIGIT_THREE, 'codepoint, 0x0E53);
3142put('THAI_DIGIT_FOUR, 'codepoint, 0x0E54);
3143put('THAI_DIGIT_FIVE, 'codepoint, 0x0E55);
3144put('THAI_DIGIT_SIX, 'codepoint, 0x0E56);
3145put('THAI_DIGIT_SEVEN, 'codepoint, 0x0E57);
3146put('THAI_DIGIT_EIGHT, 'codepoint, 0x0E58);
3147put('THAI_DIGIT_NINE, 'codepoint, 0x0E59);
3148put('THAI_CHARACTER_ANGKHANKHU, 'codepoint, 0x0E5A);
3149put('THAI_CHARACTER_KHOMUT, 'codepoint, 0x0E5B);
3150put('LAO_LETTER_KO, 'codepoint, 0x0E81);
3151put('LAO_LETTER_KHO_SUNG, 'codepoint, 0x0E82);
3152put('LAO_LETTER_KHO_TAM, 'codepoint, 0x0E84);
3153put('LAO_LETTER_NGO, 'codepoint, 0x0E87);
3154put('LAO_LETTER_CO, 'codepoint, 0x0E88);
3155put('LAO_LETTER_SO_TAM, 'codepoint, 0x0E8A);
3156put('LAO_LETTER_NYO, 'codepoint, 0x0E8D);
3157put('LAO_LETTER_DO, 'codepoint, 0x0E94);
3158put('LAO_LETTER_TO, 'codepoint, 0x0E95);
3159put('LAO_LETTER_THO_SUNG, 'codepoint, 0x0E96);
3160put('LAO_LETTER_THO_TAM, 'codepoint, 0x0E97);
3161put('LAO_LETTER_NO, 'codepoint, 0x0E99);
3162put('LAO_LETTER_BO, 'codepoint, 0x0E9A);
3163put('LAO_LETTER_PO, 'codepoint, 0x0E9B);
3164put('LAO_LETTER_PHO_SUNG, 'codepoint, 0x0E9C);
3165put('LAO_LETTER_FO_TAM, 'codepoint, 0x0E9D);
3166put('LAO_LETTER_PHO_TAM, 'codepoint, 0x0E9E);
3167put('LAO_LETTER_FO_SUNG, 'codepoint, 0x0E9F);
3168put('LAO_LETTER_MO, 'codepoint, 0x0EA1);
3169put('LAO_LETTER_YO, 'codepoint, 0x0EA2);
3170put('LAO_LETTER_LO_LING, 'codepoint, 0x0EA3);
3171put('LAO_LETTER_LO_LOOT, 'codepoint, 0x0EA5);
3172put('LAO_LETTER_WO, 'codepoint, 0x0EA7);
3173put('LAO_LETTER_SO_SUNG, 'codepoint, 0x0EAA);
3174put('LAO_LETTER_HO_SUNG, 'codepoint, 0x0EAB);
3175put('LAO_LETTER_O, 'codepoint, 0x0EAD);
3176put('LAO_LETTER_HO_TAM, 'codepoint, 0x0EAE);
3177put('LAO_ELLIPSIS, 'codepoint, 0x0EAF);
3178put('LAO_VOWEL_SIGN_A, 'codepoint, 0x0EB0);
3179put('LAO_VOWEL_SIGN_MAI_KAN, 'codepoint, 0x0EB1);
3180put('LAO_VOWEL_SIGN_AA, 'codepoint, 0x0EB2);
3181put('LAO_VOWEL_SIGN_AM, 'codepoint, 0x0EB3);
3182put('LAO_VOWEL_SIGN_I, 'codepoint, 0x0EB4);
3183put('LAO_VOWEL_SIGN_II, 'codepoint, 0x0EB5);
3184put('LAO_VOWEL_SIGN_Y, 'codepoint, 0x0EB6);
3185put('LAO_VOWEL_SIGN_YY, 'codepoint, 0x0EB7);
3186put('LAO_VOWEL_SIGN_U, 'codepoint, 0x0EB8);
3187put('LAO_VOWEL_SIGN_UU, 'codepoint, 0x0EB9);
3188put('LAO_VOWEL_SIGN_MAI_KON, 'codepoint, 0x0EBB);
3189put('LAO_SEMIVOWEL_SIGN_LO, 'codepoint, 0x0EBC);
3190put('LAO_SEMIVOWEL_SIGN_NYO, 'codepoint, 0x0EBD);
3191put('LAO_VOWEL_SIGN_E, 'codepoint, 0x0EC0);
3192put('LAO_VOWEL_SIGN_EI, 'codepoint, 0x0EC1);
3193put('LAO_VOWEL_SIGN_O, 'codepoint, 0x0EC2);
3194put('LAO_VOWEL_SIGN_AY, 'codepoint, 0x0EC3);
3195put('LAO_VOWEL_SIGN_AI, 'codepoint, 0x0EC4);
3196put('LAO_KO_LA, 'codepoint, 0x0EC6);
3197put('LAO_TONE_MAI_EK, 'codepoint, 0x0EC8);
3198put('LAO_TONE_MAI_THO, 'codepoint, 0x0EC9);
3199put('LAO_TONE_MAI_TI, 'codepoint, 0x0ECA);
3200put('LAO_TONE_MAI_CATAWA, 'codepoint, 0x0ECB);
3201put('LAO_CANCELLATION_MARK, 'codepoint, 0x0ECC);
3202put('LAO_NIGGAHITA, 'codepoint, 0x0ECD);
3203put('LAO_DIGIT_ZERO, 'codepoint, 0x0ED0);
3204put('LAO_DIGIT_ONE, 'codepoint, 0x0ED1);
3205put('LAO_DIGIT_TWO, 'codepoint, 0x0ED2);
3206put('LAO_DIGIT_THREE, 'codepoint, 0x0ED3);
3207put('LAO_DIGIT_FOUR, 'codepoint, 0x0ED4);
3208put('LAO_DIGIT_FIVE, 'codepoint, 0x0ED5);
3209put('LAO_DIGIT_SIX, 'codepoint, 0x0ED6);
3210put('LAO_DIGIT_SEVEN, 'codepoint, 0x0ED7);
3211put('LAO_DIGIT_EIGHT, 'codepoint, 0x0ED8);
3212put('LAO_DIGIT_NINE, 'codepoint, 0x0ED9);
3213put('LAO_HO_NO, 'codepoint, 0x0EDC);
3214put('LAO_HO_MO, 'codepoint, 0x0EDD);
3215put('LAO_LETTER_KHMU_GO, 'codepoint, 0x0EDE);
3216put('LAO_LETTER_KHMU_NYO, 'codepoint, 0x0EDF);
3217put('TIBETAN_SYLLABLE_OM, 'codepoint, 0x0F00);
3218put('TIBETAN_MARK_GTER_YIG_MGO_TRUNCATED_A, 'codepoint, 0x0F01);
3219put('TIBETAN_MARK_GTER_YIG_MGO__UM_RNAM_BCAD_MA, 'codepoint, 0x0F02);
3220put('TIBETAN_MARK_GTER_YIG_MGO__UM_GTER_TSHEG_MA, 'codepoint, 0x0F03);
3221put('TIBETAN_MARK_INITIAL_YIG_MGO_MDUN_MA, 'codepoint, 0x0F04);
3222put('TIBETAN_MARK_CLOSING_YIG_MGO_SGAB_MA, 'codepoint, 0x0F05);
3223put('TIBETAN_MARK_CARET_YIG_MGO_PHUR_SHAD_MA, 'codepoint, 0x0F06);
3224put('TIBETAN_MARK_YIG_MGO_TSHEG_SHAD_MA, 'codepoint, 0x0F07);
3225put('TIBETAN_MARK_SBRUL_SHAD, 'codepoint, 0x0F08);
3226put('TIBETAN_MARK_BSKUR_YIG_MGO, 'codepoint, 0x0F09);
3227put('TIBETAN_MARK_BKA__SHOG_YIG_MGO, 'codepoint, 0x0F0A);
3228put('TIBETAN_MARK_INTERSYLLABIC_TSHEG, 'codepoint, 0x0F0B);
3229put('TIBETAN_MARK_DELIMITER_TSHEG_BSTAR, 'codepoint, 0x0F0C);
3230put('TIBETAN_MARK_SHAD, 'codepoint, 0x0F0D);
3231put('TIBETAN_MARK_NYIS_SHAD, 'codepoint, 0x0F0E);
3232put('TIBETAN_MARK_TSHEG_SHAD, 'codepoint, 0x0F0F);
3233put('TIBETAN_MARK_NYIS_TSHEG_SHAD, 'codepoint, 0x0F10);
3234put('TIBETAN_MARK_RIN_CHEN_SPUNGS_SHAD, 'codepoint, 0x0F11);
3235put('TIBETAN_MARK_RGYA_GRAM_SHAD, 'codepoint, 0x0F12);
3236put('TIBETAN_MARK_CARET__DZUD_RTAGS_ME_LONG_CAN, 'codepoint, 0x0F13);
3237put('TIBETAN_MARK_GTER_TSHEG, 'codepoint, 0x0F14);
3238put('TIBETAN_LOGOTYPE_SIGN_CHAD_RTAGS, 'codepoint, 0x0F15);
3239put('TIBETAN_LOGOTYPE_SIGN_LHAG_RTAGS, 'codepoint, 0x0F16);
3240put('TIBETAN_ASTROLOGICAL_SIGN_SGRA_GCAN__CHAR_RTAGS, 'codepoint, 0x0F17);
3241put('TIBETAN_ASTROLOGICAL_SIGN__KHYUD_PA, 'codepoint, 0x0F18);
3242put('TIBETAN_ASTROLOGICAL_SIGN_SDONG_TSHUGS, 'codepoint, 0x0F19);
3243put('TIBETAN_SIGN_RDEL_DKAR_GCIG, 'codepoint, 0x0F1A);
3244put('TIBETAN_SIGN_RDEL_DKAR_GNYIS, 'codepoint, 0x0F1B);
3245put('TIBETAN_SIGN_RDEL_DKAR_GSUM, 'codepoint, 0x0F1C);
3246put('TIBETAN_SIGN_RDEL_NAG_GCIG, 'codepoint, 0x0F1D);
3247put('TIBETAN_SIGN_RDEL_NAG_GNYIS, 'codepoint, 0x0F1E);
3248put('TIBETAN_SIGN_RDEL_DKAR_RDEL_NAG, 'codepoint, 0x0F1F);
3249put('TIBETAN_DIGIT_ZERO, 'codepoint, 0x0F20);
3250put('TIBETAN_DIGIT_ONE, 'codepoint, 0x0F21);
3251put('TIBETAN_DIGIT_TWO, 'codepoint, 0x0F22);
3252put('TIBETAN_DIGIT_THREE, 'codepoint, 0x0F23);
3253put('TIBETAN_DIGIT_FOUR, 'codepoint, 0x0F24);
3254put('TIBETAN_DIGIT_FIVE, 'codepoint, 0x0F25);
3255put('TIBETAN_DIGIT_SIX, 'codepoint, 0x0F26);
3256put('TIBETAN_DIGIT_SEVEN, 'codepoint, 0x0F27);
3257put('TIBETAN_DIGIT_EIGHT, 'codepoint, 0x0F28);
3258put('TIBETAN_DIGIT_NINE, 'codepoint, 0x0F29);
3259put('TIBETAN_DIGIT_HALF_ONE, 'codepoint, 0x0F2A);
3260put('TIBETAN_DIGIT_HALF_TWO, 'codepoint, 0x0F2B);
3261put('TIBETAN_DIGIT_HALF_THREE, 'codepoint, 0x0F2C);
3262put('TIBETAN_DIGIT_HALF_FOUR, 'codepoint, 0x0F2D);
3263put('TIBETAN_DIGIT_HALF_FIVE, 'codepoint, 0x0F2E);
3264put('TIBETAN_DIGIT_HALF_SIX, 'codepoint, 0x0F2F);
3265put('TIBETAN_DIGIT_HALF_SEVEN, 'codepoint, 0x0F30);
3266put('TIBETAN_DIGIT_HALF_EIGHT, 'codepoint, 0x0F31);
3267put('TIBETAN_DIGIT_HALF_NINE, 'codepoint, 0x0F32);
3268put('TIBETAN_DIGIT_HALF_ZERO, 'codepoint, 0x0F33);
3269put('TIBETAN_MARK_BSDUS_RTAGS, 'codepoint, 0x0F34);
3270put('TIBETAN_MARK_NGAS_BZUNG_NYI_ZLA, 'codepoint, 0x0F35);
3271put('TIBETAN_MARK_CARET__DZUD_RTAGS_BZHI_MIG_CAN, 'codepoint, 0x0F36);
3272put('TIBETAN_MARK_NGAS_BZUNG_SGOR_RTAGS, 'codepoint, 0x0F37);
3273put('TIBETAN_MARK_CHE_MGO, 'codepoint, 0x0F38);
3274put('TIBETAN_MARK_TSA__PHRU, 'codepoint, 0x0F39);
3275put('TIBETAN_MARK_GUG_RTAGS_GYON, 'codepoint, 0x0F3A);
3276put('TIBETAN_MARK_GUG_RTAGS_GYAS, 'codepoint, 0x0F3B);
3277put('TIBETAN_MARK_ANG_KHANG_GYON, 'codepoint, 0x0F3C);
3278put('TIBETAN_MARK_ANG_KHANG_GYAS, 'codepoint, 0x0F3D);
3279put('TIBETAN_SIGN_YAR_TSHES, 'codepoint, 0x0F3E);
3280put('TIBETAN_SIGN_MAR_TSHES, 'codepoint, 0x0F3F);
3281put('TIBETAN_LETTER_KA, 'codepoint, 0x0F40);
3282put('TIBETAN_LETTER_KHA, 'codepoint, 0x0F41);
3283put('TIBETAN_LETTER_GA, 'codepoint, 0x0F42);
3284put('TIBETAN_LETTER_GHA, 'codepoint, 0x0F43);
3285put('TIBETAN_LETTER_NGA, 'codepoint, 0x0F44);
3286put('TIBETAN_LETTER_CA, 'codepoint, 0x0F45);
3287put('TIBETAN_LETTER_CHA, 'codepoint, 0x0F46);
3288put('TIBETAN_LETTER_JA, 'codepoint, 0x0F47);
3289put('TIBETAN_LETTER_NYA, 'codepoint, 0x0F49);
3290put('TIBETAN_LETTER_TTA, 'codepoint, 0x0F4A);
3291put('TIBETAN_LETTER_TTHA, 'codepoint, 0x0F4B);
3292put('TIBETAN_LETTER_DDA, 'codepoint, 0x0F4C);
3293put('TIBETAN_LETTER_DDHA, 'codepoint, 0x0F4D);
3294put('TIBETAN_LETTER_NNA, 'codepoint, 0x0F4E);
3295put('TIBETAN_LETTER_TA, 'codepoint, 0x0F4F);
3296put('TIBETAN_LETTER_THA, 'codepoint, 0x0F50);
3297put('TIBETAN_LETTER_DA, 'codepoint, 0x0F51);
3298put('TIBETAN_LETTER_DHA, 'codepoint, 0x0F52);
3299put('TIBETAN_LETTER_NA, 'codepoint, 0x0F53);
3300put('TIBETAN_LETTER_PA, 'codepoint, 0x0F54);
3301put('TIBETAN_LETTER_PHA, 'codepoint, 0x0F55);
3302put('TIBETAN_LETTER_BA, 'codepoint, 0x0F56);
3303put('TIBETAN_LETTER_BHA, 'codepoint, 0x0F57);
3304put('TIBETAN_LETTER_MA, 'codepoint, 0x0F58);
3305put('TIBETAN_LETTER_TSA, 'codepoint, 0x0F59);
3306put('TIBETAN_LETTER_TSHA, 'codepoint, 0x0F5A);
3307put('TIBETAN_LETTER_DZA, 'codepoint, 0x0F5B);
3308put('TIBETAN_LETTER_DZHA, 'codepoint, 0x0F5C);
3309put('TIBETAN_LETTER_WA, 'codepoint, 0x0F5D);
3310put('TIBETAN_LETTER_ZHA, 'codepoint, 0x0F5E);
3311put('TIBETAN_LETTER_ZA, 'codepoint, 0x0F5F);
3312put('TIBETAN_LETTER__A, 'codepoint, 0x0F60);
3313put('TIBETAN_LETTER_YA, 'codepoint, 0x0F61);
3314put('TIBETAN_LETTER_RA, 'codepoint, 0x0F62);
3315put('TIBETAN_LETTER_LA, 'codepoint, 0x0F63);
3316put('TIBETAN_LETTER_SHA, 'codepoint, 0x0F64);
3317put('TIBETAN_LETTER_SSA, 'codepoint, 0x0F65);
3318put('TIBETAN_LETTER_SA, 'codepoint, 0x0F66);
3319put('TIBETAN_LETTER_HA, 'codepoint, 0x0F67);
3320put('TIBETAN_LETTER_A, 'codepoint, 0x0F68);
3321put('TIBETAN_LETTER_KSSA, 'codepoint, 0x0F69);
3322put('TIBETAN_LETTER_FIXED_FORM_RA, 'codepoint, 0x0F6A);
3323put('TIBETAN_LETTER_KKA, 'codepoint, 0x0F6B);
3324put('TIBETAN_LETTER_RRA, 'codepoint, 0x0F6C);
3325put('TIBETAN_VOWEL_SIGN_AA, 'codepoint, 0x0F71);
3326put('TIBETAN_VOWEL_SIGN_I, 'codepoint, 0x0F72);
3327put('TIBETAN_VOWEL_SIGN_II, 'codepoint, 0x0F73);
3328put('TIBETAN_VOWEL_SIGN_U, 'codepoint, 0x0F74);
3329put('TIBETAN_VOWEL_SIGN_UU, 'codepoint, 0x0F75);
3330put('TIBETAN_VOWEL_SIGN_VOCALIC_R, 'codepoint, 0x0F76);
3331put('TIBETAN_VOWEL_SIGN_VOCALIC_RR, 'codepoint, 0x0F77);
3332put('TIBETAN_VOWEL_SIGN_VOCALIC_L, 'codepoint, 0x0F78);
3333put('TIBETAN_VOWEL_SIGN_VOCALIC_LL, 'codepoint, 0x0F79);
3334put('TIBETAN_VOWEL_SIGN_E, 'codepoint, 0x0F7A);
3335put('TIBETAN_VOWEL_SIGN_EE, 'codepoint, 0x0F7B);
3336put('TIBETAN_VOWEL_SIGN_O, 'codepoint, 0x0F7C);
3337put('TIBETAN_VOWEL_SIGN_OO, 'codepoint, 0x0F7D);
3338put('TIBETAN_SIGN_RJES_SU_NGA_RO, 'codepoint, 0x0F7E);
3339put('TIBETAN_SIGN_RNAM_BCAD, 'codepoint, 0x0F7F);
3340put('TIBETAN_VOWEL_SIGN_REVERSED_I, 'codepoint, 0x0F80);
3341put('TIBETAN_VOWEL_SIGN_REVERSED_II, 'codepoint, 0x0F81);
3342put('TIBETAN_SIGN_NYI_ZLA_NAA_DA, 'codepoint, 0x0F82);
3343put('TIBETAN_SIGN_SNA_LDAN, 'codepoint, 0x0F83);
3344put('TIBETAN_MARK_HALANTA, 'codepoint, 0x0F84);
3345put('TIBETAN_MARK_PALUTA, 'codepoint, 0x0F85);
3346put('TIBETAN_SIGN_LCI_RTAGS, 'codepoint, 0x0F86);
3347put('TIBETAN_SIGN_YANG_RTAGS, 'codepoint, 0x0F87);
3348put('TIBETAN_SIGN_LCE_TSA_CAN, 'codepoint, 0x0F88);
3349put('TIBETAN_SIGN_MCHU_CAN, 'codepoint, 0x0F89);
3350put('TIBETAN_SIGN_GRU_CAN_RGYINGS, 'codepoint, 0x0F8A);
3351put('TIBETAN_SIGN_GRU_MED_RGYINGS, 'codepoint, 0x0F8B);
3352put('TIBETAN_SIGN_INVERTED_MCHU_CAN, 'codepoint, 0x0F8C);
3353put('TIBETAN_SUBJOINED_SIGN_LCE_TSA_CAN, 'codepoint, 0x0F8D);
3354put('TIBETAN_SUBJOINED_SIGN_MCHU_CAN, 'codepoint, 0x0F8E);
3355put('TIBETAN_SUBJOINED_SIGN_INVERTED_MCHU_CAN, 'codepoint, 0x0F8F);
3356put('TIBETAN_SUBJOINED_LETTER_KA, 'codepoint, 0x0F90);
3357put('TIBETAN_SUBJOINED_LETTER_KHA, 'codepoint, 0x0F91);
3358put('TIBETAN_SUBJOINED_LETTER_GA, 'codepoint, 0x0F92);
3359put('TIBETAN_SUBJOINED_LETTER_GHA, 'codepoint, 0x0F93);
3360put('TIBETAN_SUBJOINED_LETTER_NGA, 'codepoint, 0x0F94);
3361put('TIBETAN_SUBJOINED_LETTER_CA, 'codepoint, 0x0F95);
3362put('TIBETAN_SUBJOINED_LETTER_CHA, 'codepoint, 0x0F96);
3363put('TIBETAN_SUBJOINED_LETTER_JA, 'codepoint, 0x0F97);
3364put('TIBETAN_SUBJOINED_LETTER_NYA, 'codepoint, 0x0F99);
3365put('TIBETAN_SUBJOINED_LETTER_TTA, 'codepoint, 0x0F9A);
3366put('TIBETAN_SUBJOINED_LETTER_TTHA, 'codepoint, 0x0F9B);
3367put('TIBETAN_SUBJOINED_LETTER_DDA, 'codepoint, 0x0F9C);
3368put('TIBETAN_SUBJOINED_LETTER_DDHA, 'codepoint, 0x0F9D);
3369put('TIBETAN_SUBJOINED_LETTER_NNA, 'codepoint, 0x0F9E);
3370put('TIBETAN_SUBJOINED_LETTER_TA, 'codepoint, 0x0F9F);
3371put('TIBETAN_SUBJOINED_LETTER_THA, 'codepoint, 0x0FA0);
3372put('TIBETAN_SUBJOINED_LETTER_DA, 'codepoint, 0x0FA1);
3373put('TIBETAN_SUBJOINED_LETTER_DHA, 'codepoint, 0x0FA2);
3374put('TIBETAN_SUBJOINED_LETTER_NA, 'codepoint, 0x0FA3);
3375put('TIBETAN_SUBJOINED_LETTER_PA, 'codepoint, 0x0FA4);
3376put('TIBETAN_SUBJOINED_LETTER_PHA, 'codepoint, 0x0FA5);
3377put('TIBETAN_SUBJOINED_LETTER_BA, 'codepoint, 0x0FA6);
3378put('TIBETAN_SUBJOINED_LETTER_BHA, 'codepoint, 0x0FA7);
3379put('TIBETAN_SUBJOINED_LETTER_MA, 'codepoint, 0x0FA8);
3380put('TIBETAN_SUBJOINED_LETTER_TSA, 'codepoint, 0x0FA9);
3381put('TIBETAN_SUBJOINED_LETTER_TSHA, 'codepoint, 0x0FAA);
3382put('TIBETAN_SUBJOINED_LETTER_DZA, 'codepoint, 0x0FAB);
3383put('TIBETAN_SUBJOINED_LETTER_DZHA, 'codepoint, 0x0FAC);
3384put('TIBETAN_SUBJOINED_LETTER_WA, 'codepoint, 0x0FAD);
3385put('TIBETAN_SUBJOINED_LETTER_ZHA, 'codepoint, 0x0FAE);
3386put('TIBETAN_SUBJOINED_LETTER_ZA, 'codepoint, 0x0FAF);
3387put('TIBETAN_SUBJOINED_LETTER__A, 'codepoint, 0x0FB0);
3388put('TIBETAN_SUBJOINED_LETTER_YA, 'codepoint, 0x0FB1);
3389put('TIBETAN_SUBJOINED_LETTER_RA, 'codepoint, 0x0FB2);
3390put('TIBETAN_SUBJOINED_LETTER_LA, 'codepoint, 0x0FB3);
3391put('TIBETAN_SUBJOINED_LETTER_SHA, 'codepoint, 0x0FB4);
3392put('TIBETAN_SUBJOINED_LETTER_SSA, 'codepoint, 0x0FB5);
3393put('TIBETAN_SUBJOINED_LETTER_SA, 'codepoint, 0x0FB6);
3394put('TIBETAN_SUBJOINED_LETTER_HA, 'codepoint, 0x0FB7);
3395put('TIBETAN_SUBJOINED_LETTER_A, 'codepoint, 0x0FB8);
3396put('TIBETAN_SUBJOINED_LETTER_KSSA, 'codepoint, 0x0FB9);
3397put('TIBETAN_SUBJOINED_LETTER_FIXED_FORM_WA, 'codepoint, 0x0FBA);
3398put('TIBETAN_SUBJOINED_LETTER_FIXED_FORM_YA, 'codepoint, 0x0FBB);
3399put('TIBETAN_SUBJOINED_LETTER_FIXED_FORM_RA, 'codepoint, 0x0FBC);
3400put('TIBETAN_KU_RU_KHA, 'codepoint, 0x0FBE);
3401put('TIBETAN_KU_RU_KHA_BZHI_MIG_CAN, 'codepoint, 0x0FBF);
3402put('TIBETAN_CANTILLATION_SIGN_HEAVY_BEAT, 'codepoint, 0x0FC0);
3403put('TIBETAN_CANTILLATION_SIGN_LIGHT_BEAT, 'codepoint, 0x0FC1);
3404put('TIBETAN_CANTILLATION_SIGN_CANG_TE_U, 'codepoint, 0x0FC2);
3405put('TIBETAN_CANTILLATION_SIGN_SBUB__CHAL, 'codepoint, 0x0FC3);
3406put('TIBETAN_SYMBOL_DRIL_BU, 'codepoint, 0x0FC4);
3407put('TIBETAN_SYMBOL_RDO_RJE, 'codepoint, 0x0FC5);
3408put('TIBETAN_SYMBOL_PADMA_GDAN, 'codepoint, 0x0FC6);
3409put('TIBETAN_SYMBOL_RDO_RJE_RGYA_GRAM, 'codepoint, 0x0FC7);
3410put('TIBETAN_SYMBOL_PHUR_PA, 'codepoint, 0x0FC8);
3411put('TIBETAN_SYMBOL_NOR_BU, 'codepoint, 0x0FC9);
3412put('TIBETAN_SYMBOL_NOR_BU_NYIS__KHYIL, 'codepoint, 0x0FCA);
3413put('TIBETAN_SYMBOL_NOR_BU_GSUM__KHYIL, 'codepoint, 0x0FCB);
3414put('TIBETAN_SYMBOL_NOR_BU_BZHI__KHYIL, 'codepoint, 0x0FCC);
3415put('TIBETAN_SIGN_RDEL_NAG_RDEL_DKAR, 'codepoint, 0x0FCE);
3416put('TIBETAN_SIGN_RDEL_NAG_GSUM, 'codepoint, 0x0FCF);
3417put('TIBETAN_MARK_BSKA__SHOG_GI_MGO_RGYAN, 'codepoint, 0x0FD0);
3418put('TIBETAN_MARK_MNYAM_YIG_GI_MGO_RGYAN, 'codepoint, 0x0FD1);
3419put('TIBETAN_MARK_NYIS_TSHEG, 'codepoint, 0x0FD2);
3420put('TIBETAN_MARK_INITIAL_BRDA_RNYING_YIG_MGO_MDUN_MA, 'codepoint, 0x0FD3);
3421put('TIBETAN_MARK_CLOSING_BRDA_RNYING_YIG_MGO_SGAB_MA, 'codepoint, 0x0FD4);
3422put('RIGHT_FACING_SVASTI_SIGN, 'codepoint, 0x0FD5);
3423put('LEFT_FACING_SVASTI_SIGN, 'codepoint, 0x0FD6);
3424put('RIGHT_FACING_SVASTI_SIGN_WITH_DOTS, 'codepoint, 0x0FD7);
3425put('LEFT_FACING_SVASTI_SIGN_WITH_DOTS, 'codepoint, 0x0FD8);
3426put('TIBETAN_MARK_LEADING_MCHAN_RTAGS, 'codepoint, 0x0FD9);
3427put('TIBETAN_MARK_TRAILING_MCHAN_RTAGS, 'codepoint, 0x0FDA);
3428put('MYANMAR_LETTER_KA, 'codepoint, 0x1000);
3429put('MYANMAR_LETTER_KHA, 'codepoint, 0x1001);
3430put('MYANMAR_LETTER_GA, 'codepoint, 0x1002);
3431put('MYANMAR_LETTER_GHA, 'codepoint, 0x1003);
3432put('MYANMAR_LETTER_NGA, 'codepoint, 0x1004);
3433put('MYANMAR_LETTER_CA, 'codepoint, 0x1005);
3434put('MYANMAR_LETTER_CHA, 'codepoint, 0x1006);
3435put('MYANMAR_LETTER_JA, 'codepoint, 0x1007);
3436put('MYANMAR_LETTER_JHA, 'codepoint, 0x1008);
3437put('MYANMAR_LETTER_NYA, 'codepoint, 0x1009);
3438put('MYANMAR_LETTER_NNYA, 'codepoint, 0x100A);
3439put('MYANMAR_LETTER_TTA, 'codepoint, 0x100B);
3440put('MYANMAR_LETTER_TTHA, 'codepoint, 0x100C);
3441put('MYANMAR_LETTER_DDA, 'codepoint, 0x100D);
3442put('MYANMAR_LETTER_DDHA, 'codepoint, 0x100E);
3443put('MYANMAR_LETTER_NNA, 'codepoint, 0x100F);
3444put('MYANMAR_LETTER_TA, 'codepoint, 0x1010);
3445put('MYANMAR_LETTER_THA, 'codepoint, 0x1011);
3446put('MYANMAR_LETTER_DA, 'codepoint, 0x1012);
3447put('MYANMAR_LETTER_DHA, 'codepoint, 0x1013);
3448put('MYANMAR_LETTER_NA, 'codepoint, 0x1014);
3449put('MYANMAR_LETTER_PA, 'codepoint, 0x1015);
3450put('MYANMAR_LETTER_PHA, 'codepoint, 0x1016);
3451put('MYANMAR_LETTER_BA, 'codepoint, 0x1017);
3452put('MYANMAR_LETTER_BHA, 'codepoint, 0x1018);
3453put('MYANMAR_LETTER_MA, 'codepoint, 0x1019);
3454put('MYANMAR_LETTER_YA, 'codepoint, 0x101A);
3455put('MYANMAR_LETTER_RA, 'codepoint, 0x101B);
3456put('MYANMAR_LETTER_LA, 'codepoint, 0x101C);
3457put('MYANMAR_LETTER_WA, 'codepoint, 0x101D);
3458put('MYANMAR_LETTER_SA, 'codepoint, 0x101E);
3459put('MYANMAR_LETTER_HA, 'codepoint, 0x101F);
3460put('MYANMAR_LETTER_LLA, 'codepoint, 0x1020);
3461put('MYANMAR_LETTER_A, 'codepoint, 0x1021);
3462put('MYANMAR_LETTER_SHAN_A, 'codepoint, 0x1022);
3463put('MYANMAR_LETTER_I, 'codepoint, 0x1023);
3464put('MYANMAR_LETTER_II, 'codepoint, 0x1024);
3465put('MYANMAR_LETTER_U, 'codepoint, 0x1025);
3466put('MYANMAR_LETTER_UU, 'codepoint, 0x1026);
3467put('MYANMAR_LETTER_E, 'codepoint, 0x1027);
3468put('MYANMAR_LETTER_MON_E, 'codepoint, 0x1028);
3469put('MYANMAR_LETTER_O, 'codepoint, 0x1029);
3470put('MYANMAR_LETTER_AU, 'codepoint, 0x102A);
3471put('MYANMAR_VOWEL_SIGN_TALL_AA, 'codepoint, 0x102B);
3472put('MYANMAR_VOWEL_SIGN_AA, 'codepoint, 0x102C);
3473put('MYANMAR_VOWEL_SIGN_I, 'codepoint, 0x102D);
3474put('MYANMAR_VOWEL_SIGN_II, 'codepoint, 0x102E);
3475put('MYANMAR_VOWEL_SIGN_U, 'codepoint, 0x102F);
3476put('MYANMAR_VOWEL_SIGN_UU, 'codepoint, 0x1030);
3477put('MYANMAR_VOWEL_SIGN_E, 'codepoint, 0x1031);
3478put('MYANMAR_VOWEL_SIGN_AI, 'codepoint, 0x1032);
3479put('MYANMAR_VOWEL_SIGN_MON_II, 'codepoint, 0x1033);
3480put('MYANMAR_VOWEL_SIGN_MON_O, 'codepoint, 0x1034);
3481put('MYANMAR_VOWEL_SIGN_E_ABOVE, 'codepoint, 0x1035);
3482put('MYANMAR_SIGN_ANUSVARA, 'codepoint, 0x1036);
3483put('MYANMAR_SIGN_DOT_BELOW, 'codepoint, 0x1037);
3484put('MYANMAR_SIGN_VISARGA, 'codepoint, 0x1038);
3485put('MYANMAR_SIGN_VIRAMA, 'codepoint, 0x1039);
3486put('MYANMAR_SIGN_ASAT, 'codepoint, 0x103A);
3487put('MYANMAR_CONSONANT_SIGN_MEDIAL_YA, 'codepoint, 0x103B);
3488put('MYANMAR_CONSONANT_SIGN_MEDIAL_RA, 'codepoint, 0x103C);
3489put('MYANMAR_CONSONANT_SIGN_MEDIAL_WA, 'codepoint, 0x103D);
3490put('MYANMAR_CONSONANT_SIGN_MEDIAL_HA, 'codepoint, 0x103E);
3491put('MYANMAR_LETTER_GREAT_SA, 'codepoint, 0x103F);
3492put('MYANMAR_DIGIT_ZERO, 'codepoint, 0x1040);
3493put('MYANMAR_DIGIT_ONE, 'codepoint, 0x1041);
3494put('MYANMAR_DIGIT_TWO, 'codepoint, 0x1042);
3495put('MYANMAR_DIGIT_THREE, 'codepoint, 0x1043);
3496put('MYANMAR_DIGIT_FOUR, 'codepoint, 0x1044);
3497put('MYANMAR_DIGIT_FIVE, 'codepoint, 0x1045);
3498put('MYANMAR_DIGIT_SIX, 'codepoint, 0x1046);
3499put('MYANMAR_DIGIT_SEVEN, 'codepoint, 0x1047);
3500put('MYANMAR_DIGIT_EIGHT, 'codepoint, 0x1048);
3501put('MYANMAR_DIGIT_NINE, 'codepoint, 0x1049);
3502put('MYANMAR_SIGN_LITTLE_SECTION, 'codepoint, 0x104A);
3503put('MYANMAR_SIGN_SECTION, 'codepoint, 0x104B);
3504put('MYANMAR_SYMBOL_LOCATIVE, 'codepoint, 0x104C);
3505put('MYANMAR_SYMBOL_COMPLETED, 'codepoint, 0x104D);
3506put('MYANMAR_SYMBOL_AFOREMENTIONED, 'codepoint, 0x104E);
3507put('MYANMAR_SYMBOL_GENITIVE, 'codepoint, 0x104F);
3508put('MYANMAR_LETTER_SHA, 'codepoint, 0x1050);
3509put('MYANMAR_LETTER_SSA, 'codepoint, 0x1051);
3510put('MYANMAR_LETTER_VOCALIC_R, 'codepoint, 0x1052);
3511put('MYANMAR_LETTER_VOCALIC_RR, 'codepoint, 0x1053);
3512put('MYANMAR_LETTER_VOCALIC_L, 'codepoint, 0x1054);
3513put('MYANMAR_LETTER_VOCALIC_LL, 'codepoint, 0x1055);
3514put('MYANMAR_VOWEL_SIGN_VOCALIC_R, 'codepoint, 0x1056);
3515put('MYANMAR_VOWEL_SIGN_VOCALIC_RR, 'codepoint, 0x1057);
3516put('MYANMAR_VOWEL_SIGN_VOCALIC_L, 'codepoint, 0x1058);
3517put('MYANMAR_VOWEL_SIGN_VOCALIC_LL, 'codepoint, 0x1059);
3518put('MYANMAR_LETTER_MON_NGA, 'codepoint, 0x105A);
3519put('MYANMAR_LETTER_MON_JHA, 'codepoint, 0x105B);
3520put('MYANMAR_LETTER_MON_BBA, 'codepoint, 0x105C);
3521put('MYANMAR_LETTER_MON_BBE, 'codepoint, 0x105D);
3522put('MYANMAR_CONSONANT_SIGN_MON_MEDIAL_NA, 'codepoint, 0x105E);
3523put('MYANMAR_CONSONANT_SIGN_MON_MEDIAL_MA, 'codepoint, 0x105F);
3524put('MYANMAR_CONSONANT_SIGN_MON_MEDIAL_LA, 'codepoint, 0x1060);
3525put('MYANMAR_LETTER_SGAW_KAREN_SHA, 'codepoint, 0x1061);
3526put('MYANMAR_VOWEL_SIGN_SGAW_KAREN_EU, 'codepoint, 0x1062);
3527put('MYANMAR_TONE_MARK_SGAW_KAREN_HATHI, 'codepoint, 0x1063);
3528put('MYANMAR_TONE_MARK_SGAW_KAREN_KE_PHO, 'codepoint, 0x1064);
3529put('MYANMAR_LETTER_WESTERN_PWO_KAREN_THA, 'codepoint, 0x1065);
3530put('MYANMAR_LETTER_WESTERN_PWO_KAREN_PWA, 'codepoint, 0x1066);
3531put('MYANMAR_VOWEL_SIGN_WESTERN_PWO_KAREN_EU, 'codepoint, 0x1067);
3532put('MYANMAR_VOWEL_SIGN_WESTERN_PWO_KAREN_UE, 'codepoint, 0x1068);
3533put('MYANMAR_SIGN_WESTERN_PWO_KAREN_TONE_1, 'codepoint, 0x1069);
3534put('MYANMAR_SIGN_WESTERN_PWO_KAREN_TONE_2, 'codepoint, 0x106A);
3535put('MYANMAR_SIGN_WESTERN_PWO_KAREN_TONE_3, 'codepoint, 0x106B);
3536put('MYANMAR_SIGN_WESTERN_PWO_KAREN_TONE_4, 'codepoint, 0x106C);
3537put('MYANMAR_SIGN_WESTERN_PWO_KAREN_TONE_5, 'codepoint, 0x106D);
3538put('MYANMAR_LETTER_EASTERN_PWO_KAREN_NNA, 'codepoint, 0x106E);
3539put('MYANMAR_LETTER_EASTERN_PWO_KAREN_YWA, 'codepoint, 0x106F);
3540put('MYANMAR_LETTER_EASTERN_PWO_KAREN_GHWA, 'codepoint, 0x1070);
3541put('MYANMAR_VOWEL_SIGN_GEBA_KAREN_I, 'codepoint, 0x1071);
3542put('MYANMAR_VOWEL_SIGN_KAYAH_OE, 'codepoint, 0x1072);
3543put('MYANMAR_VOWEL_SIGN_KAYAH_U, 'codepoint, 0x1073);
3544put('MYANMAR_VOWEL_SIGN_KAYAH_EE, 'codepoint, 0x1074);
3545put('MYANMAR_LETTER_SHAN_KA, 'codepoint, 0x1075);
3546put('MYANMAR_LETTER_SHAN_KHA, 'codepoint, 0x1076);
3547put('MYANMAR_LETTER_SHAN_GA, 'codepoint, 0x1077);
3548put('MYANMAR_LETTER_SHAN_CA, 'codepoint, 0x1078);
3549put('MYANMAR_LETTER_SHAN_ZA, 'codepoint, 0x1079);
3550put('MYANMAR_LETTER_SHAN_NYA, 'codepoint, 0x107A);
3551put('MYANMAR_LETTER_SHAN_DA, 'codepoint, 0x107B);
3552put('MYANMAR_LETTER_SHAN_NA, 'codepoint, 0x107C);
3553put('MYANMAR_LETTER_SHAN_PHA, 'codepoint, 0x107D);
3554put('MYANMAR_LETTER_SHAN_FA, 'codepoint, 0x107E);
3555put('MYANMAR_LETTER_SHAN_BA, 'codepoint, 0x107F);
3556put('MYANMAR_LETTER_SHAN_THA, 'codepoint, 0x1080);
3557put('MYANMAR_LETTER_SHAN_HA, 'codepoint, 0x1081);
3558put('MYANMAR_CONSONANT_SIGN_SHAN_MEDIAL_WA, 'codepoint, 0x1082);
3559put('MYANMAR_VOWEL_SIGN_SHAN_AA, 'codepoint, 0x1083);
3560put('MYANMAR_VOWEL_SIGN_SHAN_E, 'codepoint, 0x1084);
3561put('MYANMAR_VOWEL_SIGN_SHAN_E_ABOVE, 'codepoint, 0x1085);
3562put('MYANMAR_VOWEL_SIGN_SHAN_FINAL_Y, 'codepoint, 0x1086);
3563put('MYANMAR_SIGN_SHAN_TONE_2, 'codepoint, 0x1087);
3564put('MYANMAR_SIGN_SHAN_TONE_3, 'codepoint, 0x1088);
3565put('MYANMAR_SIGN_SHAN_TONE_5, 'codepoint, 0x1089);
3566put('MYANMAR_SIGN_SHAN_TONE_6, 'codepoint, 0x108A);
3567put('MYANMAR_SIGN_SHAN_COUNCIL_TONE_2, 'codepoint, 0x108B);
3568put('MYANMAR_SIGN_SHAN_COUNCIL_TONE_3, 'codepoint, 0x108C);
3569put('MYANMAR_SIGN_SHAN_COUNCIL_EMPHATIC_TONE, 'codepoint, 0x108D);
3570put('MYANMAR_LETTER_RUMAI_PALAUNG_FA, 'codepoint, 0x108E);
3571put('MYANMAR_SIGN_RUMAI_PALAUNG_TONE_5, 'codepoint, 0x108F);
3572put('MYANMAR_SHAN_DIGIT_ZERO, 'codepoint, 0x1090);
3573put('MYANMAR_SHAN_DIGIT_ONE, 'codepoint, 0x1091);
3574put('MYANMAR_SHAN_DIGIT_TWO, 'codepoint, 0x1092);
3575put('MYANMAR_SHAN_DIGIT_THREE, 'codepoint, 0x1093);
3576put('MYANMAR_SHAN_DIGIT_FOUR, 'codepoint, 0x1094);
3577put('MYANMAR_SHAN_DIGIT_FIVE, 'codepoint, 0x1095);
3578put('MYANMAR_SHAN_DIGIT_SIX, 'codepoint, 0x1096);
3579put('MYANMAR_SHAN_DIGIT_SEVEN, 'codepoint, 0x1097);
3580put('MYANMAR_SHAN_DIGIT_EIGHT, 'codepoint, 0x1098);
3581put('MYANMAR_SHAN_DIGIT_NINE, 'codepoint, 0x1099);
3582put('MYANMAR_SIGN_KHAMTI_TONE_1, 'codepoint, 0x109A);
3583put('MYANMAR_SIGN_KHAMTI_TONE_3, 'codepoint, 0x109B);
3584put('MYANMAR_VOWEL_SIGN_AITON_A, 'codepoint, 0x109C);
3585put('MYANMAR_VOWEL_SIGN_AITON_AI, 'codepoint, 0x109D);
3586put('MYANMAR_SYMBOL_SHAN_ONE, 'codepoint, 0x109E);
3587put('MYANMAR_SYMBOL_SHAN_EXCLAMATION, 'codepoint, 0x109F);
3588put('GEORGIAN_CAPITAL_LETTER_AN, 'codepoint, 0x10A0);
3589put('GEORGIAN_CAPITAL_LETTER_BAN, 'codepoint, 0x10A1);
3590put('GEORGIAN_CAPITAL_LETTER_GAN, 'codepoint, 0x10A2);
3591put('GEORGIAN_CAPITAL_LETTER_DON, 'codepoint, 0x10A3);
3592put('GEORGIAN_CAPITAL_LETTER_EN, 'codepoint, 0x10A4);
3593put('GEORGIAN_CAPITAL_LETTER_VIN, 'codepoint, 0x10A5);
3594put('GEORGIAN_CAPITAL_LETTER_ZEN, 'codepoint, 0x10A6);
3595put('GEORGIAN_CAPITAL_LETTER_TAN, 'codepoint, 0x10A7);
3596put('GEORGIAN_CAPITAL_LETTER_IN, 'codepoint, 0x10A8);
3597put('GEORGIAN_CAPITAL_LETTER_KAN, 'codepoint, 0x10A9);
3598put('GEORGIAN_CAPITAL_LETTER_LAS, 'codepoint, 0x10AA);
3599put('GEORGIAN_CAPITAL_LETTER_MAN, 'codepoint, 0x10AB);
3600put('GEORGIAN_CAPITAL_LETTER_NAR, 'codepoint, 0x10AC);
3601put('GEORGIAN_CAPITAL_LETTER_ON, 'codepoint, 0x10AD);
3602put('GEORGIAN_CAPITAL_LETTER_PAR, 'codepoint, 0x10AE);
3603put('GEORGIAN_CAPITAL_LETTER_ZHAR, 'codepoint, 0x10AF);
3604put('GEORGIAN_CAPITAL_LETTER_RAE, 'codepoint, 0x10B0);
3605put('GEORGIAN_CAPITAL_LETTER_SAN, 'codepoint, 0x10B1);
3606put('GEORGIAN_CAPITAL_LETTER_TAR, 'codepoint, 0x10B2);
3607put('GEORGIAN_CAPITAL_LETTER_UN, 'codepoint, 0x10B3);
3608put('GEORGIAN_CAPITAL_LETTER_PHAR, 'codepoint, 0x10B4);
3609put('GEORGIAN_CAPITAL_LETTER_KHAR, 'codepoint, 0x10B5);
3610put('GEORGIAN_CAPITAL_LETTER_GHAN, 'codepoint, 0x10B6);
3611put('GEORGIAN_CAPITAL_LETTER_QAR, 'codepoint, 0x10B7);
3612put('GEORGIAN_CAPITAL_LETTER_SHIN, 'codepoint, 0x10B8);
3613put('GEORGIAN_CAPITAL_LETTER_CHIN, 'codepoint, 0x10B9);
3614put('GEORGIAN_CAPITAL_LETTER_CAN, 'codepoint, 0x10BA);
3615put('GEORGIAN_CAPITAL_LETTER_JIL, 'codepoint, 0x10BB);
3616put('GEORGIAN_CAPITAL_LETTER_CIL, 'codepoint, 0x10BC);
3617put('GEORGIAN_CAPITAL_LETTER_CHAR, 'codepoint, 0x10BD);
3618put('GEORGIAN_CAPITAL_LETTER_XAN, 'codepoint, 0x10BE);
3619put('GEORGIAN_CAPITAL_LETTER_JHAN, 'codepoint, 0x10BF);
3620put('GEORGIAN_CAPITAL_LETTER_HAE, 'codepoint, 0x10C0);
3621put('GEORGIAN_CAPITAL_LETTER_HE, 'codepoint, 0x10C1);
3622put('GEORGIAN_CAPITAL_LETTER_HIE, 'codepoint, 0x10C2);
3623put('GEORGIAN_CAPITAL_LETTER_WE, 'codepoint, 0x10C3);
3624put('GEORGIAN_CAPITAL_LETTER_HAR, 'codepoint, 0x10C4);
3625put('GEORGIAN_CAPITAL_LETTER_HOE, 'codepoint, 0x10C5);
3626put('GEORGIAN_CAPITAL_LETTER_YN, 'codepoint, 0x10C7);
3627put('GEORGIAN_CAPITAL_LETTER_AEN, 'codepoint, 0x10CD);
3628put('GEORGIAN_LETTER_AN, 'codepoint, 0x10D0);
3629put('GEORGIAN_LETTER_BAN, 'codepoint, 0x10D1);
3630put('GEORGIAN_LETTER_GAN, 'codepoint, 0x10D2);
3631put('GEORGIAN_LETTER_DON, 'codepoint, 0x10D3);
3632put('GEORGIAN_LETTER_EN, 'codepoint, 0x10D4);
3633put('GEORGIAN_LETTER_VIN, 'codepoint, 0x10D5);
3634put('GEORGIAN_LETTER_ZEN, 'codepoint, 0x10D6);
3635put('GEORGIAN_LETTER_TAN, 'codepoint, 0x10D7);
3636put('GEORGIAN_LETTER_IN, 'codepoint, 0x10D8);
3637put('GEORGIAN_LETTER_KAN, 'codepoint, 0x10D9);
3638put('GEORGIAN_LETTER_LAS, 'codepoint, 0x10DA);
3639put('GEORGIAN_LETTER_MAN, 'codepoint, 0x10DB);
3640put('GEORGIAN_LETTER_NAR, 'codepoint, 0x10DC);
3641put('GEORGIAN_LETTER_ON, 'codepoint, 0x10DD);
3642put('GEORGIAN_LETTER_PAR, 'codepoint, 0x10DE);
3643put('GEORGIAN_LETTER_ZHAR, 'codepoint, 0x10DF);
3644put('GEORGIAN_LETTER_RAE, 'codepoint, 0x10E0);
3645put('GEORGIAN_LETTER_SAN, 'codepoint, 0x10E1);
3646put('GEORGIAN_LETTER_TAR, 'codepoint, 0x10E2);
3647put('GEORGIAN_LETTER_UN, 'codepoint, 0x10E3);
3648put('GEORGIAN_LETTER_PHAR, 'codepoint, 0x10E4);
3649put('GEORGIAN_LETTER_KHAR, 'codepoint, 0x10E5);
3650put('GEORGIAN_LETTER_GHAN, 'codepoint, 0x10E6);
3651put('GEORGIAN_LETTER_QAR, 'codepoint, 0x10E7);
3652put('GEORGIAN_LETTER_SHIN, 'codepoint, 0x10E8);
3653put('GEORGIAN_LETTER_CHIN, 'codepoint, 0x10E9);
3654put('GEORGIAN_LETTER_CAN, 'codepoint, 0x10EA);
3655put('GEORGIAN_LETTER_JIL, 'codepoint, 0x10EB);
3656put('GEORGIAN_LETTER_CIL, 'codepoint, 0x10EC);
3657put('GEORGIAN_LETTER_CHAR, 'codepoint, 0x10ED);
3658put('GEORGIAN_LETTER_XAN, 'codepoint, 0x10EE);
3659put('GEORGIAN_LETTER_JHAN, 'codepoint, 0x10EF);
3660put('GEORGIAN_LETTER_HAE, 'codepoint, 0x10F0);
3661put('GEORGIAN_LETTER_HE, 'codepoint, 0x10F1);
3662put('GEORGIAN_LETTER_HIE, 'codepoint, 0x10F2);
3663put('GEORGIAN_LETTER_WE, 'codepoint, 0x10F3);
3664put('GEORGIAN_LETTER_HAR, 'codepoint, 0x10F4);
3665put('GEORGIAN_LETTER_HOE, 'codepoint, 0x10F5);
3666put('GEORGIAN_LETTER_FI, 'codepoint, 0x10F6);
3667put('GEORGIAN_LETTER_YN, 'codepoint, 0x10F7);
3668put('GEORGIAN_LETTER_ELIFI, 'codepoint, 0x10F8);
3669put('GEORGIAN_LETTER_TURNED_GAN, 'codepoint, 0x10F9);
3670put('GEORGIAN_LETTER_AIN, 'codepoint, 0x10FA);
3671put('GEORGIAN_PARAGRAPH_SEPARATOR, 'codepoint, 0x10FB);
3672put('MODIFIER_LETTER_GEORGIAN_NAR, 'codepoint, 0x10FC);
3673put('GEORGIAN_LETTER_AEN, 'codepoint, 0x10FD);
3674put('GEORGIAN_LETTER_HARD_SIGN, 'codepoint, 0x10FE);
3675put('GEORGIAN_LETTER_LABIAL_SIGN, 'codepoint, 0x10FF);
3676put('HANGUL_CHOSEONG_KIYEOK, 'codepoint, 0x1100);
3677put('HANGUL_CHOSEONG_SSANGKIYEOK, 'codepoint, 0x1101);
3678put('HANGUL_CHOSEONG_NIEUN, 'codepoint, 0x1102);
3679put('HANGUL_CHOSEONG_TIKEUT, 'codepoint, 0x1103);
3680put('HANGUL_CHOSEONG_SSANGTIKEUT, 'codepoint, 0x1104);
3681put('HANGUL_CHOSEONG_RIEUL, 'codepoint, 0x1105);
3682put('HANGUL_CHOSEONG_MIEUM, 'codepoint, 0x1106);
3683put('HANGUL_CHOSEONG_PIEUP, 'codepoint, 0x1107);
3684put('HANGUL_CHOSEONG_SSANGPIEUP, 'codepoint, 0x1108);
3685put('HANGUL_CHOSEONG_SIOS, 'codepoint, 0x1109);
3686put('HANGUL_CHOSEONG_SSANGSIOS, 'codepoint, 0x110A);
3687put('HANGUL_CHOSEONG_IEUNG, 'codepoint, 0x110B);
3688put('HANGUL_CHOSEONG_CIEUC, 'codepoint, 0x110C);
3689put('HANGUL_CHOSEONG_SSANGCIEUC, 'codepoint, 0x110D);
3690put('HANGUL_CHOSEONG_CHIEUCH, 'codepoint, 0x110E);
3691put('HANGUL_CHOSEONG_KHIEUKH, 'codepoint, 0x110F);
3692put('HANGUL_CHOSEONG_THIEUTH, 'codepoint, 0x1110);
3693put('HANGUL_CHOSEONG_PHIEUPH, 'codepoint, 0x1111);
3694put('HANGUL_CHOSEONG_HIEUH, 'codepoint, 0x1112);
3695put('HANGUL_CHOSEONG_NIEUN_KIYEOK, 'codepoint, 0x1113);
3696put('HANGUL_CHOSEONG_SSANGNIEUN, 'codepoint, 0x1114);
3697put('HANGUL_CHOSEONG_NIEUN_TIKEUT, 'codepoint, 0x1115);
3698put('HANGUL_CHOSEONG_NIEUN_PIEUP, 'codepoint, 0x1116);
3699put('HANGUL_CHOSEONG_TIKEUT_KIYEOK, 'codepoint, 0x1117);
3700put('HANGUL_CHOSEONG_RIEUL_NIEUN, 'codepoint, 0x1118);
3701put('HANGUL_CHOSEONG_SSANGRIEUL, 'codepoint, 0x1119);
3702put('HANGUL_CHOSEONG_RIEUL_HIEUH, 'codepoint, 0x111A);
3703put('HANGUL_CHOSEONG_KAPYEOUNRIEUL, 'codepoint, 0x111B);
3704put('HANGUL_CHOSEONG_MIEUM_PIEUP, 'codepoint, 0x111C);
3705put('HANGUL_CHOSEONG_KAPYEOUNMIEUM, 'codepoint, 0x111D);
3706put('HANGUL_CHOSEONG_PIEUP_KIYEOK, 'codepoint, 0x111E);
3707put('HANGUL_CHOSEONG_PIEUP_NIEUN, 'codepoint, 0x111F);
3708put('HANGUL_CHOSEONG_PIEUP_TIKEUT, 'codepoint, 0x1120);
3709put('HANGUL_CHOSEONG_PIEUP_SIOS, 'codepoint, 0x1121);
3710put('HANGUL_CHOSEONG_PIEUP_SIOS_KIYEOK, 'codepoint, 0x1122);
3711put('HANGUL_CHOSEONG_PIEUP_SIOS_TIKEUT, 'codepoint, 0x1123);
3712put('HANGUL_CHOSEONG_PIEUP_SIOS_PIEUP, 'codepoint, 0x1124);
3713put('HANGUL_CHOSEONG_PIEUP_SSANGSIOS, 'codepoint, 0x1125);
3714put('HANGUL_CHOSEONG_PIEUP_SIOS_CIEUC, 'codepoint, 0x1126);
3715put('HANGUL_CHOSEONG_PIEUP_CIEUC, 'codepoint, 0x1127);
3716put('HANGUL_CHOSEONG_PIEUP_CHIEUCH, 'codepoint, 0x1128);
3717put('HANGUL_CHOSEONG_PIEUP_THIEUTH, 'codepoint, 0x1129);
3718put('HANGUL_CHOSEONG_PIEUP_PHIEUPH, 'codepoint, 0x112A);
3719put('HANGUL_CHOSEONG_KAPYEOUNPIEUP, 'codepoint, 0x112B);
3720put('HANGUL_CHOSEONG_KAPYEOUNSSANGPIEUP, 'codepoint, 0x112C);
3721put('HANGUL_CHOSEONG_SIOS_KIYEOK, 'codepoint, 0x112D);
3722put('HANGUL_CHOSEONG_SIOS_NIEUN, 'codepoint, 0x112E);
3723put('HANGUL_CHOSEONG_SIOS_TIKEUT, 'codepoint, 0x112F);
3724put('HANGUL_CHOSEONG_SIOS_RIEUL, 'codepoint, 0x1130);
3725put('HANGUL_CHOSEONG_SIOS_MIEUM, 'codepoint, 0x1131);
3726put('HANGUL_CHOSEONG_SIOS_PIEUP, 'codepoint, 0x1132);
3727put('HANGUL_CHOSEONG_SIOS_PIEUP_KIYEOK, 'codepoint, 0x1133);
3728put('HANGUL_CHOSEONG_SIOS_SSANGSIOS, 'codepoint, 0x1134);
3729put('HANGUL_CHOSEONG_SIOS_IEUNG, 'codepoint, 0x1135);
3730put('HANGUL_CHOSEONG_SIOS_CIEUC, 'codepoint, 0x1136);
3731put('HANGUL_CHOSEONG_SIOS_CHIEUCH, 'codepoint, 0x1137);
3732put('HANGUL_CHOSEONG_SIOS_KHIEUKH, 'codepoint, 0x1138);
3733put('HANGUL_CHOSEONG_SIOS_THIEUTH, 'codepoint, 0x1139);
3734put('HANGUL_CHOSEONG_SIOS_PHIEUPH, 'codepoint, 0x113A);
3735put('HANGUL_CHOSEONG_SIOS_HIEUH, 'codepoint, 0x113B);
3736put('HANGUL_CHOSEONG_CHITUEUMSIOS, 'codepoint, 0x113C);
3737put('HANGUL_CHOSEONG_CHITUEUMSSANGSIOS, 'codepoint, 0x113D);
3738put('HANGUL_CHOSEONG_CEONGCHIEUMSIOS, 'codepoint, 0x113E);
3739put('HANGUL_CHOSEONG_CEONGCHIEUMSSANGSIOS, 'codepoint, 0x113F);
3740put('HANGUL_CHOSEONG_PANSIOS, 'codepoint, 0x1140);
3741put('HANGUL_CHOSEONG_IEUNG_KIYEOK, 'codepoint, 0x1141);
3742put('HANGUL_CHOSEONG_IEUNG_TIKEUT, 'codepoint, 0x1142);
3743put('HANGUL_CHOSEONG_IEUNG_MIEUM, 'codepoint, 0x1143);
3744put('HANGUL_CHOSEONG_IEUNG_PIEUP, 'codepoint, 0x1144);
3745put('HANGUL_CHOSEONG_IEUNG_SIOS, 'codepoint, 0x1145);
3746put('HANGUL_CHOSEONG_IEUNG_PANSIOS, 'codepoint, 0x1146);
3747put('HANGUL_CHOSEONG_SSANGIEUNG, 'codepoint, 0x1147);
3748put('HANGUL_CHOSEONG_IEUNG_CIEUC, 'codepoint, 0x1148);
3749put('HANGUL_CHOSEONG_IEUNG_CHIEUCH, 'codepoint, 0x1149);
3750put('HANGUL_CHOSEONG_IEUNG_THIEUTH, 'codepoint, 0x114A);
3751put('HANGUL_CHOSEONG_IEUNG_PHIEUPH, 'codepoint, 0x114B);
3752put('HANGUL_CHOSEONG_YESIEUNG, 'codepoint, 0x114C);
3753put('HANGUL_CHOSEONG_CIEUC_IEUNG, 'codepoint, 0x114D);
3754put('HANGUL_CHOSEONG_CHITUEUMCIEUC, 'codepoint, 0x114E);
3755put('HANGUL_CHOSEONG_CHITUEUMSSANGCIEUC, 'codepoint, 0x114F);
3756put('HANGUL_CHOSEONG_CEONGCHIEUMCIEUC, 'codepoint, 0x1150);
3757put('HANGUL_CHOSEONG_CEONGCHIEUMSSANGCIEUC, 'codepoint, 0x1151);
3758put('HANGUL_CHOSEONG_CHIEUCH_KHIEUKH, 'codepoint, 0x1152);
3759put('HANGUL_CHOSEONG_CHIEUCH_HIEUH, 'codepoint, 0x1153);
3760put('HANGUL_CHOSEONG_CHITUEUMCHIEUCH, 'codepoint, 0x1154);
3761put('HANGUL_CHOSEONG_CEONGCHIEUMCHIEUCH, 'codepoint, 0x1155);
3762put('HANGUL_CHOSEONG_PHIEUPH_PIEUP, 'codepoint, 0x1156);
3763put('HANGUL_CHOSEONG_KAPYEOUNPHIEUPH, 'codepoint, 0x1157);
3764put('HANGUL_CHOSEONG_SSANGHIEUH, 'codepoint, 0x1158);
3765put('HANGUL_CHOSEONG_YEORINHIEUH, 'codepoint, 0x1159);
3766put('HANGUL_CHOSEONG_KIYEOK_TIKEUT, 'codepoint, 0x115A);
3767put('HANGUL_CHOSEONG_NIEUN_SIOS, 'codepoint, 0x115B);
3768put('HANGUL_CHOSEONG_NIEUN_CIEUC, 'codepoint, 0x115C);
3769put('HANGUL_CHOSEONG_NIEUN_HIEUH, 'codepoint, 0x115D);
3770put('HANGUL_CHOSEONG_TIKEUT_RIEUL, 'codepoint, 0x115E);
3771put('HANGUL_CHOSEONG_FILLER, 'codepoint, 0x115F);
3772put('HANGUL_JUNGSEONG_FILLER, 'codepoint, 0x1160);
3773put('HANGUL_JUNGSEONG_A, 'codepoint, 0x1161);
3774put('HANGUL_JUNGSEONG_AE, 'codepoint, 0x1162);
3775put('HANGUL_JUNGSEONG_YA, 'codepoint, 0x1163);
3776put('HANGUL_JUNGSEONG_YAE, 'codepoint, 0x1164);
3777put('HANGUL_JUNGSEONG_EO, 'codepoint, 0x1165);
3778put('HANGUL_JUNGSEONG_E, 'codepoint, 0x1166);
3779put('HANGUL_JUNGSEONG_YEO, 'codepoint, 0x1167);
3780put('HANGUL_JUNGSEONG_YE, 'codepoint, 0x1168);
3781put('HANGUL_JUNGSEONG_O, 'codepoint, 0x1169);
3782put('HANGUL_JUNGSEONG_WA, 'codepoint, 0x116A);
3783put('HANGUL_JUNGSEONG_WAE, 'codepoint, 0x116B);
3784put('HANGUL_JUNGSEONG_OE, 'codepoint, 0x116C);
3785put('HANGUL_JUNGSEONG_YO, 'codepoint, 0x116D);
3786put('HANGUL_JUNGSEONG_U, 'codepoint, 0x116E);
3787put('HANGUL_JUNGSEONG_WEO, 'codepoint, 0x116F);
3788put('HANGUL_JUNGSEONG_WE, 'codepoint, 0x1170);
3789put('HANGUL_JUNGSEONG_WI, 'codepoint, 0x1171);
3790put('HANGUL_JUNGSEONG_YU, 'codepoint, 0x1172);
3791put('HANGUL_JUNGSEONG_EU, 'codepoint, 0x1173);
3792put('HANGUL_JUNGSEONG_YI, 'codepoint, 0x1174);
3793put('HANGUL_JUNGSEONG_I, 'codepoint, 0x1175);
3794put('HANGUL_JUNGSEONG_A_O, 'codepoint, 0x1176);
3795put('HANGUL_JUNGSEONG_A_U, 'codepoint, 0x1177);
3796put('HANGUL_JUNGSEONG_YA_O, 'codepoint, 0x1178);
3797put('HANGUL_JUNGSEONG_YA_YO, 'codepoint, 0x1179);
3798put('HANGUL_JUNGSEONG_EO_O, 'codepoint, 0x117A);
3799put('HANGUL_JUNGSEONG_EO_U, 'codepoint, 0x117B);
3800put('HANGUL_JUNGSEONG_EO_EU, 'codepoint, 0x117C);
3801put('HANGUL_JUNGSEONG_YEO_O, 'codepoint, 0x117D);
3802put('HANGUL_JUNGSEONG_YEO_U, 'codepoint, 0x117E);
3803put('HANGUL_JUNGSEONG_O_EO, 'codepoint, 0x117F);
3804put('HANGUL_JUNGSEONG_O_E, 'codepoint, 0x1180);
3805put('HANGUL_JUNGSEONG_O_YE, 'codepoint, 0x1181);
3806put('HANGUL_JUNGSEONG_O_O, 'codepoint, 0x1182);
3807put('HANGUL_JUNGSEONG_O_U, 'codepoint, 0x1183);
3808put('HANGUL_JUNGSEONG_YO_YA, 'codepoint, 0x1184);
3809put('HANGUL_JUNGSEONG_YO_YAE, 'codepoint, 0x1185);
3810put('HANGUL_JUNGSEONG_YO_YEO, 'codepoint, 0x1186);
3811put('HANGUL_JUNGSEONG_YO_O, 'codepoint, 0x1187);
3812put('HANGUL_JUNGSEONG_YO_I, 'codepoint, 0x1188);
3813put('HANGUL_JUNGSEONG_U_A, 'codepoint, 0x1189);
3814put('HANGUL_JUNGSEONG_U_AE, 'codepoint, 0x118A);
3815put('HANGUL_JUNGSEONG_U_EO_EU, 'codepoint, 0x118B);
3816put('HANGUL_JUNGSEONG_U_YE, 'codepoint, 0x118C);
3817put('HANGUL_JUNGSEONG_U_U, 'codepoint, 0x118D);
3818put('HANGUL_JUNGSEONG_YU_A, 'codepoint, 0x118E);
3819put('HANGUL_JUNGSEONG_YU_EO, 'codepoint, 0x118F);
3820put('HANGUL_JUNGSEONG_YU_E, 'codepoint, 0x1190);
3821put('HANGUL_JUNGSEONG_YU_YEO, 'codepoint, 0x1191);
3822put('HANGUL_JUNGSEONG_YU_YE, 'codepoint, 0x1192);
3823put('HANGUL_JUNGSEONG_YU_U, 'codepoint, 0x1193);
3824put('HANGUL_JUNGSEONG_YU_I, 'codepoint, 0x1194);
3825put('HANGUL_JUNGSEONG_EU_U, 'codepoint, 0x1195);
3826put('HANGUL_JUNGSEONG_EU_EU, 'codepoint, 0x1196);
3827put('HANGUL_JUNGSEONG_YI_U, 'codepoint, 0x1197);
3828put('HANGUL_JUNGSEONG_I_A, 'codepoint, 0x1198);
3829put('HANGUL_JUNGSEONG_I_YA, 'codepoint, 0x1199);
3830put('HANGUL_JUNGSEONG_I_O, 'codepoint, 0x119A);
3831put('HANGUL_JUNGSEONG_I_U, 'codepoint, 0x119B);
3832put('HANGUL_JUNGSEONG_I_EU, 'codepoint, 0x119C);
3833put('HANGUL_JUNGSEONG_I_ARAEA, 'codepoint, 0x119D);
3834put('HANGUL_JUNGSEONG_ARAEA, 'codepoint, 0x119E);
3835put('HANGUL_JUNGSEONG_ARAEA_EO, 'codepoint, 0x119F);
3836put('HANGUL_JUNGSEONG_ARAEA_U, 'codepoint, 0x11A0);
3837put('HANGUL_JUNGSEONG_ARAEA_I, 'codepoint, 0x11A1);
3838put('HANGUL_JUNGSEONG_SSANGARAEA, 'codepoint, 0x11A2);
3839put('HANGUL_JUNGSEONG_A_EU, 'codepoint, 0x11A3);
3840put('HANGUL_JUNGSEONG_YA_U, 'codepoint, 0x11A4);
3841put('HANGUL_JUNGSEONG_YEO_YA, 'codepoint, 0x11A5);
3842put('HANGUL_JUNGSEONG_O_YA, 'codepoint, 0x11A6);
3843put('HANGUL_JUNGSEONG_O_YAE, 'codepoint, 0x11A7);
3844put('HANGUL_JONGSEONG_KIYEOK, 'codepoint, 0x11A8);
3845put('HANGUL_JONGSEONG_SSANGKIYEOK, 'codepoint, 0x11A9);
3846put('HANGUL_JONGSEONG_KIYEOK_SIOS, 'codepoint, 0x11AA);
3847put('HANGUL_JONGSEONG_NIEUN, 'codepoint, 0x11AB);
3848put('HANGUL_JONGSEONG_NIEUN_CIEUC, 'codepoint, 0x11AC);
3849put('HANGUL_JONGSEONG_NIEUN_HIEUH, 'codepoint, 0x11AD);
3850put('HANGUL_JONGSEONG_TIKEUT, 'codepoint, 0x11AE);
3851put('HANGUL_JONGSEONG_RIEUL, 'codepoint, 0x11AF);
3852put('HANGUL_JONGSEONG_RIEUL_KIYEOK, 'codepoint, 0x11B0);
3853put('HANGUL_JONGSEONG_RIEUL_MIEUM, 'codepoint, 0x11B1);
3854put('HANGUL_JONGSEONG_RIEUL_PIEUP, 'codepoint, 0x11B2);
3855put('HANGUL_JONGSEONG_RIEUL_SIOS, 'codepoint, 0x11B3);
3856put('HANGUL_JONGSEONG_RIEUL_THIEUTH, 'codepoint, 0x11B4);
3857put('HANGUL_JONGSEONG_RIEUL_PHIEUPH, 'codepoint, 0x11B5);
3858put('HANGUL_JONGSEONG_RIEUL_HIEUH, 'codepoint, 0x11B6);
3859put('HANGUL_JONGSEONG_MIEUM, 'codepoint, 0x11B7);
3860put('HANGUL_JONGSEONG_PIEUP, 'codepoint, 0x11B8);
3861put('HANGUL_JONGSEONG_PIEUP_SIOS, 'codepoint, 0x11B9);
3862put('HANGUL_JONGSEONG_SIOS, 'codepoint, 0x11BA);
3863put('HANGUL_JONGSEONG_SSANGSIOS, 'codepoint, 0x11BB);
3864put('HANGUL_JONGSEONG_IEUNG, 'codepoint, 0x11BC);
3865put('HANGUL_JONGSEONG_CIEUC, 'codepoint, 0x11BD);
3866put('HANGUL_JONGSEONG_CHIEUCH, 'codepoint, 0x11BE);
3867put('HANGUL_JONGSEONG_KHIEUKH, 'codepoint, 0x11BF);
3868put('HANGUL_JONGSEONG_THIEUTH, 'codepoint, 0x11C0);
3869put('HANGUL_JONGSEONG_PHIEUPH, 'codepoint, 0x11C1);
3870put('HANGUL_JONGSEONG_HIEUH, 'codepoint, 0x11C2);
3871put('HANGUL_JONGSEONG_KIYEOK_RIEUL, 'codepoint, 0x11C3);
3872put('HANGUL_JONGSEONG_KIYEOK_SIOS_KIYEOK, 'codepoint, 0x11C4);
3873put('HANGUL_JONGSEONG_NIEUN_KIYEOK, 'codepoint, 0x11C5);
3874put('HANGUL_JONGSEONG_NIEUN_TIKEUT, 'codepoint, 0x11C6);
3875put('HANGUL_JONGSEONG_NIEUN_SIOS, 'codepoint, 0x11C7);
3876put('HANGUL_JONGSEONG_NIEUN_PANSIOS, 'codepoint, 0x11C8);
3877put('HANGUL_JONGSEONG_NIEUN_THIEUTH, 'codepoint, 0x11C9);
3878put('HANGUL_JONGSEONG_TIKEUT_KIYEOK, 'codepoint, 0x11CA);
3879put('HANGUL_JONGSEONG_TIKEUT_RIEUL, 'codepoint, 0x11CB);
3880put('HANGUL_JONGSEONG_RIEUL_KIYEOK_SIOS, 'codepoint, 0x11CC);
3881put('HANGUL_JONGSEONG_RIEUL_NIEUN, 'codepoint, 0x11CD);
3882put('HANGUL_JONGSEONG_RIEUL_TIKEUT, 'codepoint, 0x11CE);
3883put('HANGUL_JONGSEONG_RIEUL_TIKEUT_HIEUH, 'codepoint, 0x11CF);
3884put('HANGUL_JONGSEONG_SSANGRIEUL, 'codepoint, 0x11D0);
3885put('HANGUL_JONGSEONG_RIEUL_MIEUM_KIYEOK, 'codepoint, 0x11D1);
3886put('HANGUL_JONGSEONG_RIEUL_MIEUM_SIOS, 'codepoint, 0x11D2);
3887put('HANGUL_JONGSEONG_RIEUL_PIEUP_SIOS, 'codepoint, 0x11D3);
3888put('HANGUL_JONGSEONG_RIEUL_PIEUP_HIEUH, 'codepoint, 0x11D4);
3889put('HANGUL_JONGSEONG_RIEUL_KAPYEOUNPIEUP, 'codepoint, 0x11D5);
3890put('HANGUL_JONGSEONG_RIEUL_SSANGSIOS, 'codepoint, 0x11D6);
3891put('HANGUL_JONGSEONG_RIEUL_PANSIOS, 'codepoint, 0x11D7);
3892put('HANGUL_JONGSEONG_RIEUL_KHIEUKH, 'codepoint, 0x11D8);
3893put('HANGUL_JONGSEONG_RIEUL_YEORINHIEUH, 'codepoint, 0x11D9);
3894put('HANGUL_JONGSEONG_MIEUM_KIYEOK, 'codepoint, 0x11DA);
3895put('HANGUL_JONGSEONG_MIEUM_RIEUL, 'codepoint, 0x11DB);
3896put('HANGUL_JONGSEONG_MIEUM_PIEUP, 'codepoint, 0x11DC);
3897put('HANGUL_JONGSEONG_MIEUM_SIOS, 'codepoint, 0x11DD);
3898put('HANGUL_JONGSEONG_MIEUM_SSANGSIOS, 'codepoint, 0x11DE);
3899put('HANGUL_JONGSEONG_MIEUM_PANSIOS, 'codepoint, 0x11DF);
3900put('HANGUL_JONGSEONG_MIEUM_CHIEUCH, 'codepoint, 0x11E0);
3901put('HANGUL_JONGSEONG_MIEUM_HIEUH, 'codepoint, 0x11E1);
3902put('HANGUL_JONGSEONG_KAPYEOUNMIEUM, 'codepoint, 0x11E2);
3903put('HANGUL_JONGSEONG_PIEUP_RIEUL, 'codepoint, 0x11E3);
3904put('HANGUL_JONGSEONG_PIEUP_PHIEUPH, 'codepoint, 0x11E4);
3905put('HANGUL_JONGSEONG_PIEUP_HIEUH, 'codepoint, 0x11E5);
3906put('HANGUL_JONGSEONG_KAPYEOUNPIEUP, 'codepoint, 0x11E6);
3907put('HANGUL_JONGSEONG_SIOS_KIYEOK, 'codepoint, 0x11E7);
3908put('HANGUL_JONGSEONG_SIOS_TIKEUT, 'codepoint, 0x11E8);
3909put('HANGUL_JONGSEONG_SIOS_RIEUL, 'codepoint, 0x11E9);
3910put('HANGUL_JONGSEONG_SIOS_PIEUP, 'codepoint, 0x11EA);
3911put('HANGUL_JONGSEONG_PANSIOS, 'codepoint, 0x11EB);
3912put('HANGUL_JONGSEONG_IEUNG_KIYEOK, 'codepoint, 0x11EC);
3913put('HANGUL_JONGSEONG_IEUNG_SSANGKIYEOK, 'codepoint, 0x11ED);
3914put('HANGUL_JONGSEONG_SSANGIEUNG, 'codepoint, 0x11EE);
3915put('HANGUL_JONGSEONG_IEUNG_KHIEUKH, 'codepoint, 0x11EF);
3916put('HANGUL_JONGSEONG_YESIEUNG, 'codepoint, 0x11F0);
3917put('HANGUL_JONGSEONG_YESIEUNG_SIOS, 'codepoint, 0x11F1);
3918put('HANGUL_JONGSEONG_YESIEUNG_PANSIOS, 'codepoint, 0x11F2);
3919put('HANGUL_JONGSEONG_PHIEUPH_PIEUP, 'codepoint, 0x11F3);
3920put('HANGUL_JONGSEONG_KAPYEOUNPHIEUPH, 'codepoint, 0x11F4);
3921put('HANGUL_JONGSEONG_HIEUH_NIEUN, 'codepoint, 0x11F5);
3922put('HANGUL_JONGSEONG_HIEUH_RIEUL, 'codepoint, 0x11F6);
3923put('HANGUL_JONGSEONG_HIEUH_MIEUM, 'codepoint, 0x11F7);
3924put('HANGUL_JONGSEONG_HIEUH_PIEUP, 'codepoint, 0x11F8);
3925put('HANGUL_JONGSEONG_YEORINHIEUH, 'codepoint, 0x11F9);
3926put('HANGUL_JONGSEONG_KIYEOK_NIEUN, 'codepoint, 0x11FA);
3927put('HANGUL_JONGSEONG_KIYEOK_PIEUP, 'codepoint, 0x11FB);
3928put('HANGUL_JONGSEONG_KIYEOK_CHIEUCH, 'codepoint, 0x11FC);
3929put('HANGUL_JONGSEONG_KIYEOK_KHIEUKH, 'codepoint, 0x11FD);
3930put('HANGUL_JONGSEONG_KIYEOK_HIEUH, 'codepoint, 0x11FE);
3931put('HANGUL_JONGSEONG_SSANGNIEUN, 'codepoint, 0x11FF);
3932put('ETHIOPIC_SYLLABLE_HA, 'codepoint, 0x1200);
3933put('ETHIOPIC_SYLLABLE_HU, 'codepoint, 0x1201);
3934put('ETHIOPIC_SYLLABLE_HI, 'codepoint, 0x1202);
3935put('ETHIOPIC_SYLLABLE_HAA, 'codepoint, 0x1203);
3936put('ETHIOPIC_SYLLABLE_HEE, 'codepoint, 0x1204);
3937put('ETHIOPIC_SYLLABLE_HE, 'codepoint, 0x1205);
3938put('ETHIOPIC_SYLLABLE_HO, 'codepoint, 0x1206);
3939put('ETHIOPIC_SYLLABLE_HOA, 'codepoint, 0x1207);
3940put('ETHIOPIC_SYLLABLE_LA, 'codepoint, 0x1208);
3941put('ETHIOPIC_SYLLABLE_LU, 'codepoint, 0x1209);
3942put('ETHIOPIC_SYLLABLE_LI, 'codepoint, 0x120A);
3943put('ETHIOPIC_SYLLABLE_LAA, 'codepoint, 0x120B);
3944put('ETHIOPIC_SYLLABLE_LEE, 'codepoint, 0x120C);
3945put('ETHIOPIC_SYLLABLE_LE, 'codepoint, 0x120D);
3946put('ETHIOPIC_SYLLABLE_LO, 'codepoint, 0x120E);
3947put('ETHIOPIC_SYLLABLE_LWA, 'codepoint, 0x120F);
3948put('ETHIOPIC_SYLLABLE_HHA, 'codepoint, 0x1210);
3949put('ETHIOPIC_SYLLABLE_HHU, 'codepoint, 0x1211);
3950put('ETHIOPIC_SYLLABLE_HHI, 'codepoint, 0x1212);
3951put('ETHIOPIC_SYLLABLE_HHAA, 'codepoint, 0x1213);
3952put('ETHIOPIC_SYLLABLE_HHEE, 'codepoint, 0x1214);
3953put('ETHIOPIC_SYLLABLE_HHE, 'codepoint, 0x1215);
3954put('ETHIOPIC_SYLLABLE_HHO, 'codepoint, 0x1216);
3955put('ETHIOPIC_SYLLABLE_HHWA, 'codepoint, 0x1217);
3956put('ETHIOPIC_SYLLABLE_MA, 'codepoint, 0x1218);
3957put('ETHIOPIC_SYLLABLE_MU, 'codepoint, 0x1219);
3958put('ETHIOPIC_SYLLABLE_MI, 'codepoint, 0x121A);
3959put('ETHIOPIC_SYLLABLE_MAA, 'codepoint, 0x121B);
3960put('ETHIOPIC_SYLLABLE_MEE, 'codepoint, 0x121C);
3961put('ETHIOPIC_SYLLABLE_ME, 'codepoint, 0x121D);
3962put('ETHIOPIC_SYLLABLE_MO, 'codepoint, 0x121E);
3963put('ETHIOPIC_SYLLABLE_MWA, 'codepoint, 0x121F);
3964put('ETHIOPIC_SYLLABLE_SZA, 'codepoint, 0x1220);
3965put('ETHIOPIC_SYLLABLE_SZU, 'codepoint, 0x1221);
3966put('ETHIOPIC_SYLLABLE_SZI, 'codepoint, 0x1222);
3967put('ETHIOPIC_SYLLABLE_SZAA, 'codepoint, 0x1223);
3968put('ETHIOPIC_SYLLABLE_SZEE, 'codepoint, 0x1224);
3969put('ETHIOPIC_SYLLABLE_SZE, 'codepoint, 0x1225);
3970put('ETHIOPIC_SYLLABLE_SZO, 'codepoint, 0x1226);
3971put('ETHIOPIC_SYLLABLE_SZWA, 'codepoint, 0x1227);
3972put('ETHIOPIC_SYLLABLE_RA, 'codepoint, 0x1228);
3973put('ETHIOPIC_SYLLABLE_RU, 'codepoint, 0x1229);
3974put('ETHIOPIC_SYLLABLE_RI, 'codepoint, 0x122A);
3975put('ETHIOPIC_SYLLABLE_RAA, 'codepoint, 0x122B);
3976put('ETHIOPIC_SYLLABLE_REE, 'codepoint, 0x122C);
3977put('ETHIOPIC_SYLLABLE_RE, 'codepoint, 0x122D);
3978put('ETHIOPIC_SYLLABLE_RO, 'codepoint, 0x122E);
3979put('ETHIOPIC_SYLLABLE_RWA, 'codepoint, 0x122F);
3980put('ETHIOPIC_SYLLABLE_SA, 'codepoint, 0x1230);
3981put('ETHIOPIC_SYLLABLE_SU, 'codepoint, 0x1231);
3982put('ETHIOPIC_SYLLABLE_SI, 'codepoint, 0x1232);
3983put('ETHIOPIC_SYLLABLE_SAA, 'codepoint, 0x1233);
3984put('ETHIOPIC_SYLLABLE_SEE, 'codepoint, 0x1234);
3985put('ETHIOPIC_SYLLABLE_SE, 'codepoint, 0x1235);
3986put('ETHIOPIC_SYLLABLE_SO, 'codepoint, 0x1236);
3987put('ETHIOPIC_SYLLABLE_SWA, 'codepoint, 0x1237);
3988put('ETHIOPIC_SYLLABLE_SHA, 'codepoint, 0x1238);
3989put('ETHIOPIC_SYLLABLE_SHU, 'codepoint, 0x1239);
3990put('ETHIOPIC_SYLLABLE_SHI, 'codepoint, 0x123A);
3991put('ETHIOPIC_SYLLABLE_SHAA, 'codepoint, 0x123B);
3992put('ETHIOPIC_SYLLABLE_SHEE, 'codepoint, 0x123C);
3993put('ETHIOPIC_SYLLABLE_SHE, 'codepoint, 0x123D);
3994put('ETHIOPIC_SYLLABLE_SHO, 'codepoint, 0x123E);
3995put('ETHIOPIC_SYLLABLE_SHWA, 'codepoint, 0x123F);
3996put('ETHIOPIC_SYLLABLE_QA, 'codepoint, 0x1240);
3997put('ETHIOPIC_SYLLABLE_QU, 'codepoint, 0x1241);
3998put('ETHIOPIC_SYLLABLE_QI, 'codepoint, 0x1242);
3999put('ETHIOPIC_SYLLABLE_QAA, 'codepoint, 0x1243);
4000put('ETHIOPIC_SYLLABLE_QEE, 'codepoint, 0x1244);
4001put('ETHIOPIC_SYLLABLE_QE, 'codepoint, 0x1245);
4002put('ETHIOPIC_SYLLABLE_QO, 'codepoint, 0x1246);
4003put('ETHIOPIC_SYLLABLE_QOA, 'codepoint, 0x1247);
4004put('ETHIOPIC_SYLLABLE_QWA, 'codepoint, 0x1248);
4005put('ETHIOPIC_SYLLABLE_QWI, 'codepoint, 0x124A);
4006put('ETHIOPIC_SYLLABLE_QWAA, 'codepoint, 0x124B);
4007put('ETHIOPIC_SYLLABLE_QWEE, 'codepoint, 0x124C);
4008put('ETHIOPIC_SYLLABLE_QWE, 'codepoint, 0x124D);
4009put('ETHIOPIC_SYLLABLE_QHA, 'codepoint, 0x1250);
4010put('ETHIOPIC_SYLLABLE_QHU, 'codepoint, 0x1251);
4011put('ETHIOPIC_SYLLABLE_QHI, 'codepoint, 0x1252);
4012put('ETHIOPIC_SYLLABLE_QHAA, 'codepoint, 0x1253);
4013put('ETHIOPIC_SYLLABLE_QHEE, 'codepoint, 0x1254);
4014put('ETHIOPIC_SYLLABLE_QHE, 'codepoint, 0x1255);
4015put('ETHIOPIC_SYLLABLE_QHO, 'codepoint, 0x1256);
4016put('ETHIOPIC_SYLLABLE_QHWA, 'codepoint, 0x1258);
4017put('ETHIOPIC_SYLLABLE_QHWI, 'codepoint, 0x125A);
4018put('ETHIOPIC_SYLLABLE_QHWAA, 'codepoint, 0x125B);
4019put('ETHIOPIC_SYLLABLE_QHWEE, 'codepoint, 0x125C);
4020put('ETHIOPIC_SYLLABLE_QHWE, 'codepoint, 0x125D);
4021put('ETHIOPIC_SYLLABLE_BA, 'codepoint, 0x1260);
4022put('ETHIOPIC_SYLLABLE_BU, 'codepoint, 0x1261);
4023put('ETHIOPIC_SYLLABLE_BI, 'codepoint, 0x1262);
4024put('ETHIOPIC_SYLLABLE_BAA, 'codepoint, 0x1263);
4025put('ETHIOPIC_SYLLABLE_BEE, 'codepoint, 0x1264);
4026put('ETHIOPIC_SYLLABLE_BE, 'codepoint, 0x1265);
4027put('ETHIOPIC_SYLLABLE_BO, 'codepoint, 0x1266);
4028put('ETHIOPIC_SYLLABLE_BWA, 'codepoint, 0x1267);
4029put('ETHIOPIC_SYLLABLE_VA, 'codepoint, 0x1268);
4030put('ETHIOPIC_SYLLABLE_VU, 'codepoint, 0x1269);
4031put('ETHIOPIC_SYLLABLE_VI, 'codepoint, 0x126A);
4032put('ETHIOPIC_SYLLABLE_VAA, 'codepoint, 0x126B);
4033put('ETHIOPIC_SYLLABLE_VEE, 'codepoint, 0x126C);
4034put('ETHIOPIC_SYLLABLE_VE, 'codepoint, 0x126D);
4035put('ETHIOPIC_SYLLABLE_VO, 'codepoint, 0x126E);
4036put('ETHIOPIC_SYLLABLE_VWA, 'codepoint, 0x126F);
4037put('ETHIOPIC_SYLLABLE_TA, 'codepoint, 0x1270);
4038put('ETHIOPIC_SYLLABLE_TU, 'codepoint, 0x1271);
4039put('ETHIOPIC_SYLLABLE_TI, 'codepoint, 0x1272);
4040put('ETHIOPIC_SYLLABLE_TAA, 'codepoint, 0x1273);
4041put('ETHIOPIC_SYLLABLE_TEE, 'codepoint, 0x1274);
4042put('ETHIOPIC_SYLLABLE_TE, 'codepoint, 0x1275);
4043put('ETHIOPIC_SYLLABLE_TO, 'codepoint, 0x1276);
4044put('ETHIOPIC_SYLLABLE_TWA, 'codepoint, 0x1277);
4045put('ETHIOPIC_SYLLABLE_CA, 'codepoint, 0x1278);
4046put('ETHIOPIC_SYLLABLE_CU, 'codepoint, 0x1279);
4047put('ETHIOPIC_SYLLABLE_CI, 'codepoint, 0x127A);
4048put('ETHIOPIC_SYLLABLE_CAA, 'codepoint, 0x127B);
4049put('ETHIOPIC_SYLLABLE_CEE, 'codepoint, 0x127C);
4050put('ETHIOPIC_SYLLABLE_CE, 'codepoint, 0x127D);
4051put('ETHIOPIC_SYLLABLE_CO, 'codepoint, 0x127E);
4052put('ETHIOPIC_SYLLABLE_CWA, 'codepoint, 0x127F);
4053put('ETHIOPIC_SYLLABLE_XA, 'codepoint, 0x1280);
4054put('ETHIOPIC_SYLLABLE_XU, 'codepoint, 0x1281);
4055put('ETHIOPIC_SYLLABLE_XI, 'codepoint, 0x1282);
4056put('ETHIOPIC_SYLLABLE_XAA, 'codepoint, 0x1283);
4057put('ETHIOPIC_SYLLABLE_XEE, 'codepoint, 0x1284);
4058put('ETHIOPIC_SYLLABLE_XE, 'codepoint, 0x1285);
4059put('ETHIOPIC_SYLLABLE_XO, 'codepoint, 0x1286);
4060put('ETHIOPIC_SYLLABLE_XOA, 'codepoint, 0x1287);
4061put('ETHIOPIC_SYLLABLE_XWA, 'codepoint, 0x1288);
4062put('ETHIOPIC_SYLLABLE_XWI, 'codepoint, 0x128A);
4063put('ETHIOPIC_SYLLABLE_XWAA, 'codepoint, 0x128B);
4064put('ETHIOPIC_SYLLABLE_XWEE, 'codepoint, 0x128C);
4065put('ETHIOPIC_SYLLABLE_XWE, 'codepoint, 0x128D);
4066put('ETHIOPIC_SYLLABLE_NA, 'codepoint, 0x1290);
4067put('ETHIOPIC_SYLLABLE_NU, 'codepoint, 0x1291);
4068put('ETHIOPIC_SYLLABLE_NI, 'codepoint, 0x1292);
4069put('ETHIOPIC_SYLLABLE_NAA, 'codepoint, 0x1293);
4070put('ETHIOPIC_SYLLABLE_NEE, 'codepoint, 0x1294);
4071put('ETHIOPIC_SYLLABLE_NE, 'codepoint, 0x1295);
4072put('ETHIOPIC_SYLLABLE_NO, 'codepoint, 0x1296);
4073put('ETHIOPIC_SYLLABLE_NWA, 'codepoint, 0x1297);
4074put('ETHIOPIC_SYLLABLE_NYA, 'codepoint, 0x1298);
4075put('ETHIOPIC_SYLLABLE_NYU, 'codepoint, 0x1299);
4076put('ETHIOPIC_SYLLABLE_NYI, 'codepoint, 0x129A);
4077put('ETHIOPIC_SYLLABLE_NYAA, 'codepoint, 0x129B);
4078put('ETHIOPIC_SYLLABLE_NYEE, 'codepoint, 0x129C);
4079put('ETHIOPIC_SYLLABLE_NYE, 'codepoint, 0x129D);
4080put('ETHIOPIC_SYLLABLE_NYO, 'codepoint, 0x129E);
4081put('ETHIOPIC_SYLLABLE_NYWA, 'codepoint, 0x129F);
4082put('ETHIOPIC_SYLLABLE_GLOTTAL_A, 'codepoint, 0x12A0);
4083put('ETHIOPIC_SYLLABLE_GLOTTAL_U, 'codepoint, 0x12A1);
4084put('ETHIOPIC_SYLLABLE_GLOTTAL_I, 'codepoint, 0x12A2);
4085put('ETHIOPIC_SYLLABLE_GLOTTAL_AA, 'codepoint, 0x12A3);
4086put('ETHIOPIC_SYLLABLE_GLOTTAL_EE, 'codepoint, 0x12A4);
4087put('ETHIOPIC_SYLLABLE_GLOTTAL_E, 'codepoint, 0x12A5);
4088put('ETHIOPIC_SYLLABLE_GLOTTAL_O, 'codepoint, 0x12A6);
4089put('ETHIOPIC_SYLLABLE_GLOTTAL_WA, 'codepoint, 0x12A7);
4090put('ETHIOPIC_SYLLABLE_KA, 'codepoint, 0x12A8);
4091put('ETHIOPIC_SYLLABLE_KU, 'codepoint, 0x12A9);
4092put('ETHIOPIC_SYLLABLE_KI, 'codepoint, 0x12AA);
4093put('ETHIOPIC_SYLLABLE_KAA, 'codepoint, 0x12AB);
4094put('ETHIOPIC_SYLLABLE_KEE, 'codepoint, 0x12AC);
4095put('ETHIOPIC_SYLLABLE_KE, 'codepoint, 0x12AD);
4096put('ETHIOPIC_SYLLABLE_KO, 'codepoint, 0x12AE);
4097put('ETHIOPIC_SYLLABLE_KOA, 'codepoint, 0x12AF);
4098put('ETHIOPIC_SYLLABLE_KWA, 'codepoint, 0x12B0);
4099put('ETHIOPIC_SYLLABLE_KWI, 'codepoint, 0x12B2);
4100put('ETHIOPIC_SYLLABLE_KWAA, 'codepoint, 0x12B3);
4101put('ETHIOPIC_SYLLABLE_KWEE, 'codepoint, 0x12B4);
4102put('ETHIOPIC_SYLLABLE_KWE, 'codepoint, 0x12B5);
4103put('ETHIOPIC_SYLLABLE_KXA, 'codepoint, 0x12B8);
4104put('ETHIOPIC_SYLLABLE_KXU, 'codepoint, 0x12B9);
4105put('ETHIOPIC_SYLLABLE_KXI, 'codepoint, 0x12BA);
4106put('ETHIOPIC_SYLLABLE_KXAA, 'codepoint, 0x12BB);
4107put('ETHIOPIC_SYLLABLE_KXEE, 'codepoint, 0x12BC);
4108put('ETHIOPIC_SYLLABLE_KXE, 'codepoint, 0x12BD);
4109put('ETHIOPIC_SYLLABLE_KXO, 'codepoint, 0x12BE);
4110put('ETHIOPIC_SYLLABLE_KXWA, 'codepoint, 0x12C0);
4111put('ETHIOPIC_SYLLABLE_KXWI, 'codepoint, 0x12C2);
4112put('ETHIOPIC_SYLLABLE_KXWAA, 'codepoint, 0x12C3);
4113put('ETHIOPIC_SYLLABLE_KXWEE, 'codepoint, 0x12C4);
4114put('ETHIOPIC_SYLLABLE_KXWE, 'codepoint, 0x12C5);
4115put('ETHIOPIC_SYLLABLE_WA, 'codepoint, 0x12C8);
4116put('ETHIOPIC_SYLLABLE_WU, 'codepoint, 0x12C9);
4117put('ETHIOPIC_SYLLABLE_WI, 'codepoint, 0x12CA);
4118put('ETHIOPIC_SYLLABLE_WAA, 'codepoint, 0x12CB);
4119put('ETHIOPIC_SYLLABLE_WEE, 'codepoint, 0x12CC);
4120put('ETHIOPIC_SYLLABLE_WE, 'codepoint, 0x12CD);
4121put('ETHIOPIC_SYLLABLE_WO, 'codepoint, 0x12CE);
4122put('ETHIOPIC_SYLLABLE_WOA, 'codepoint, 0x12CF);
4123put('ETHIOPIC_SYLLABLE_PHARYNGEAL_A, 'codepoint, 0x12D0);
4124put('ETHIOPIC_SYLLABLE_PHARYNGEAL_U, 'codepoint, 0x12D1);
4125put('ETHIOPIC_SYLLABLE_PHARYNGEAL_I, 'codepoint, 0x12D2);
4126put('ETHIOPIC_SYLLABLE_PHARYNGEAL_AA, 'codepoint, 0x12D3);
4127put('ETHIOPIC_SYLLABLE_PHARYNGEAL_EE, 'codepoint, 0x12D4);
4128put('ETHIOPIC_SYLLABLE_PHARYNGEAL_E, 'codepoint, 0x12D5);
4129put('ETHIOPIC_SYLLABLE_PHARYNGEAL_O, 'codepoint, 0x12D6);
4130put('ETHIOPIC_SYLLABLE_ZA, 'codepoint, 0x12D8);
4131put('ETHIOPIC_SYLLABLE_ZU, 'codepoint, 0x12D9);
4132put('ETHIOPIC_SYLLABLE_ZI, 'codepoint, 0x12DA);
4133put('ETHIOPIC_SYLLABLE_ZAA, 'codepoint, 0x12DB);
4134put('ETHIOPIC_SYLLABLE_ZEE, 'codepoint, 0x12DC);
4135put('ETHIOPIC_SYLLABLE_ZE, 'codepoint, 0x12DD);
4136put('ETHIOPIC_SYLLABLE_ZO, 'codepoint, 0x12DE);
4137put('ETHIOPIC_SYLLABLE_ZWA, 'codepoint, 0x12DF);
4138put('ETHIOPIC_SYLLABLE_ZHA, 'codepoint, 0x12E0);
4139put('ETHIOPIC_SYLLABLE_ZHU, 'codepoint, 0x12E1);
4140put('ETHIOPIC_SYLLABLE_ZHI, 'codepoint, 0x12E2);
4141put('ETHIOPIC_SYLLABLE_ZHAA, 'codepoint, 0x12E3);
4142put('ETHIOPIC_SYLLABLE_ZHEE, 'codepoint, 0x12E4);
4143put('ETHIOPIC_SYLLABLE_ZHE, 'codepoint, 0x12E5);
4144put('ETHIOPIC_SYLLABLE_ZHO, 'codepoint, 0x12E6);
4145put('ETHIOPIC_SYLLABLE_ZHWA, 'codepoint, 0x12E7);
4146put('ETHIOPIC_SYLLABLE_YA, 'codepoint, 0x12E8);
4147put('ETHIOPIC_SYLLABLE_YU, 'codepoint, 0x12E9);
4148put('ETHIOPIC_SYLLABLE_YI, 'codepoint, 0x12EA);
4149put('ETHIOPIC_SYLLABLE_YAA, 'codepoint, 0x12EB);
4150put('ETHIOPIC_SYLLABLE_YEE, 'codepoint, 0x12EC);
4151put('ETHIOPIC_SYLLABLE_YE, 'codepoint, 0x12ED);
4152put('ETHIOPIC_SYLLABLE_YO, 'codepoint, 0x12EE);
4153put('ETHIOPIC_SYLLABLE_YOA, 'codepoint, 0x12EF);
4154put('ETHIOPIC_SYLLABLE_DA, 'codepoint, 0x12F0);
4155put('ETHIOPIC_SYLLABLE_DU, 'codepoint, 0x12F1);
4156put('ETHIOPIC_SYLLABLE_DI, 'codepoint, 0x12F2);
4157put('ETHIOPIC_SYLLABLE_DAA, 'codepoint, 0x12F3);
4158put('ETHIOPIC_SYLLABLE_DEE, 'codepoint, 0x12F4);
4159put('ETHIOPIC_SYLLABLE_DE, 'codepoint, 0x12F5);
4160put('ETHIOPIC_SYLLABLE_DO, 'codepoint, 0x12F6);
4161put('ETHIOPIC_SYLLABLE_DWA, 'codepoint, 0x12F7);
4162put('ETHIOPIC_SYLLABLE_DDA, 'codepoint, 0x12F8);
4163put('ETHIOPIC_SYLLABLE_DDU, 'codepoint, 0x12F9);
4164put('ETHIOPIC_SYLLABLE_DDI, 'codepoint, 0x12FA);
4165put('ETHIOPIC_SYLLABLE_DDAA, 'codepoint, 0x12FB);
4166put('ETHIOPIC_SYLLABLE_DDEE, 'codepoint, 0x12FC);
4167put('ETHIOPIC_SYLLABLE_DDE, 'codepoint, 0x12FD);
4168put('ETHIOPIC_SYLLABLE_DDO, 'codepoint, 0x12FE);
4169put('ETHIOPIC_SYLLABLE_DDWA, 'codepoint, 0x12FF);
4170put('ETHIOPIC_SYLLABLE_JA, 'codepoint, 0x1300);
4171put('ETHIOPIC_SYLLABLE_JU, 'codepoint, 0x1301);
4172put('ETHIOPIC_SYLLABLE_JI, 'codepoint, 0x1302);
4173put('ETHIOPIC_SYLLABLE_JAA, 'codepoint, 0x1303);
4174put('ETHIOPIC_SYLLABLE_JEE, 'codepoint, 0x1304);
4175put('ETHIOPIC_SYLLABLE_JE, 'codepoint, 0x1305);
4176put('ETHIOPIC_SYLLABLE_JO, 'codepoint, 0x1306);
4177put('ETHIOPIC_SYLLABLE_JWA, 'codepoint, 0x1307);
4178put('ETHIOPIC_SYLLABLE_GA, 'codepoint, 0x1308);
4179put('ETHIOPIC_SYLLABLE_GU, 'codepoint, 0x1309);
4180put('ETHIOPIC_SYLLABLE_GI, 'codepoint, 0x130A);
4181put('ETHIOPIC_SYLLABLE_GAA, 'codepoint, 0x130B);
4182put('ETHIOPIC_SYLLABLE_GEE, 'codepoint, 0x130C);
4183put('ETHIOPIC_SYLLABLE_GE, 'codepoint, 0x130D);
4184put('ETHIOPIC_SYLLABLE_GO, 'codepoint, 0x130E);
4185put('ETHIOPIC_SYLLABLE_GOA, 'codepoint, 0x130F);
4186put('ETHIOPIC_SYLLABLE_GWA, 'codepoint, 0x1310);
4187put('ETHIOPIC_SYLLABLE_GWI, 'codepoint, 0x1312);
4188put('ETHIOPIC_SYLLABLE_GWAA, 'codepoint, 0x1313);
4189put('ETHIOPIC_SYLLABLE_GWEE, 'codepoint, 0x1314);
4190put('ETHIOPIC_SYLLABLE_GWE, 'codepoint, 0x1315);
4191put('ETHIOPIC_SYLLABLE_GGA, 'codepoint, 0x1318);
4192put('ETHIOPIC_SYLLABLE_GGU, 'codepoint, 0x1319);
4193put('ETHIOPIC_SYLLABLE_GGI, 'codepoint, 0x131A);
4194put('ETHIOPIC_SYLLABLE_GGAA, 'codepoint, 0x131B);
4195put('ETHIOPIC_SYLLABLE_GGEE, 'codepoint, 0x131C);
4196put('ETHIOPIC_SYLLABLE_GGE, 'codepoint, 0x131D);
4197put('ETHIOPIC_SYLLABLE_GGO, 'codepoint, 0x131E);
4198put('ETHIOPIC_SYLLABLE_GGWAA, 'codepoint, 0x131F);
4199put('ETHIOPIC_SYLLABLE_THA, 'codepoint, 0x1320);
4200put('ETHIOPIC_SYLLABLE_THU, 'codepoint, 0x1321);
4201put('ETHIOPIC_SYLLABLE_THI, 'codepoint, 0x1322);
4202put('ETHIOPIC_SYLLABLE_THAA, 'codepoint, 0x1323);
4203put('ETHIOPIC_SYLLABLE_THEE, 'codepoint, 0x1324);
4204put('ETHIOPIC_SYLLABLE_THE, 'codepoint, 0x1325);
4205put('ETHIOPIC_SYLLABLE_THO, 'codepoint, 0x1326);
4206put('ETHIOPIC_SYLLABLE_THWA, 'codepoint, 0x1327);
4207put('ETHIOPIC_SYLLABLE_CHA, 'codepoint, 0x1328);
4208put('ETHIOPIC_SYLLABLE_CHU, 'codepoint, 0x1329);
4209put('ETHIOPIC_SYLLABLE_CHI, 'codepoint, 0x132A);
4210put('ETHIOPIC_SYLLABLE_CHAA, 'codepoint, 0x132B);
4211put('ETHIOPIC_SYLLABLE_CHEE, 'codepoint, 0x132C);
4212put('ETHIOPIC_SYLLABLE_CHE, 'codepoint, 0x132D);
4213put('ETHIOPIC_SYLLABLE_CHO, 'codepoint, 0x132E);
4214put('ETHIOPIC_SYLLABLE_CHWA, 'codepoint, 0x132F);
4215put('ETHIOPIC_SYLLABLE_PHA, 'codepoint, 0x1330);
4216put('ETHIOPIC_SYLLABLE_PHU, 'codepoint, 0x1331);
4217put('ETHIOPIC_SYLLABLE_PHI, 'codepoint, 0x1332);
4218put('ETHIOPIC_SYLLABLE_PHAA, 'codepoint, 0x1333);
4219put('ETHIOPIC_SYLLABLE_PHEE, 'codepoint, 0x1334);
4220put('ETHIOPIC_SYLLABLE_PHE, 'codepoint, 0x1335);
4221put('ETHIOPIC_SYLLABLE_PHO, 'codepoint, 0x1336);
4222put('ETHIOPIC_SYLLABLE_PHWA, 'codepoint, 0x1337);
4223put('ETHIOPIC_SYLLABLE_TSA, 'codepoint, 0x1338);
4224put('ETHIOPIC_SYLLABLE_TSU, 'codepoint, 0x1339);
4225put('ETHIOPIC_SYLLABLE_TSI, 'codepoint, 0x133A);
4226put('ETHIOPIC_SYLLABLE_TSAA, 'codepoint, 0x133B);
4227put('ETHIOPIC_SYLLABLE_TSEE, 'codepoint, 0x133C);
4228put('ETHIOPIC_SYLLABLE_TSE, 'codepoint, 0x133D);
4229put('ETHIOPIC_SYLLABLE_TSO, 'codepoint, 0x133E);
4230put('ETHIOPIC_SYLLABLE_TSWA, 'codepoint, 0x133F);
4231put('ETHIOPIC_SYLLABLE_TZA, 'codepoint, 0x1340);
4232put('ETHIOPIC_SYLLABLE_TZU, 'codepoint, 0x1341);
4233put('ETHIOPIC_SYLLABLE_TZI, 'codepoint, 0x1342);
4234put('ETHIOPIC_SYLLABLE_TZAA, 'codepoint, 0x1343);
4235put('ETHIOPIC_SYLLABLE_TZEE, 'codepoint, 0x1344);
4236put('ETHIOPIC_SYLLABLE_TZE, 'codepoint, 0x1345);
4237put('ETHIOPIC_SYLLABLE_TZO, 'codepoint, 0x1346);
4238put('ETHIOPIC_SYLLABLE_TZOA, 'codepoint, 0x1347);
4239put('ETHIOPIC_SYLLABLE_FA, 'codepoint, 0x1348);
4240put('ETHIOPIC_SYLLABLE_FU, 'codepoint, 0x1349);
4241put('ETHIOPIC_SYLLABLE_FI, 'codepoint, 0x134A);
4242put('ETHIOPIC_SYLLABLE_FAA, 'codepoint, 0x134B);
4243put('ETHIOPIC_SYLLABLE_FEE, 'codepoint, 0x134C);
4244put('ETHIOPIC_SYLLABLE_FE, 'codepoint, 0x134D);
4245put('ETHIOPIC_SYLLABLE_FO, 'codepoint, 0x134E);
4246put('ETHIOPIC_SYLLABLE_FWA, 'codepoint, 0x134F);
4247put('ETHIOPIC_SYLLABLE_PA, 'codepoint, 0x1350);
4248put('ETHIOPIC_SYLLABLE_PU, 'codepoint, 0x1351);
4249put('ETHIOPIC_SYLLABLE_PI, 'codepoint, 0x1352);
4250put('ETHIOPIC_SYLLABLE_PAA, 'codepoint, 0x1353);
4251put('ETHIOPIC_SYLLABLE_PEE, 'codepoint, 0x1354);
4252put('ETHIOPIC_SYLLABLE_PE, 'codepoint, 0x1355);
4253put('ETHIOPIC_SYLLABLE_PO, 'codepoint, 0x1356);
4254put('ETHIOPIC_SYLLABLE_PWA, 'codepoint, 0x1357);
4255put('ETHIOPIC_SYLLABLE_RYA, 'codepoint, 0x1358);
4256put('ETHIOPIC_SYLLABLE_MYA, 'codepoint, 0x1359);
4257put('ETHIOPIC_SYLLABLE_FYA, 'codepoint, 0x135A);
4258put('ETHIOPIC_COMBINING_GEMINATION_AND_VOWEL_LENGTH_MARK, 'codepoint, 0x135D);
4259put('ETHIOPIC_COMBINING_VOWEL_LENGTH_MARK, 'codepoint, 0x135E);
4260put('ETHIOPIC_COMBINING_GEMINATION_MARK, 'codepoint, 0x135F);
4261put('ETHIOPIC_SECTION_MARK, 'codepoint, 0x1360);
4262put('ETHIOPIC_WORDSPACE, 'codepoint, 0x1361);
4263put('ETHIOPIC_FULL_STOP, 'codepoint, 0x1362);
4264put('ETHIOPIC_COMMA, 'codepoint, 0x1363);
4265put('ETHIOPIC_SEMICOLON, 'codepoint, 0x1364);
4266put('ETHIOPIC_COLON, 'codepoint, 0x1365);
4267put('ETHIOPIC_PREFACE_COLON, 'codepoint, 0x1366);
4268put('ETHIOPIC_QUESTION_MARK, 'codepoint, 0x1367);
4269put('ETHIOPIC_PARAGRAPH_SEPARATOR, 'codepoint, 0x1368);
4270put('ETHIOPIC_DIGIT_ONE, 'codepoint, 0x1369);
4271put('ETHIOPIC_DIGIT_TWO, 'codepoint, 0x136A);
4272put('ETHIOPIC_DIGIT_THREE, 'codepoint, 0x136B);
4273put('ETHIOPIC_DIGIT_FOUR, 'codepoint, 0x136C);
4274put('ETHIOPIC_DIGIT_FIVE, 'codepoint, 0x136D);
4275put('ETHIOPIC_DIGIT_SIX, 'codepoint, 0x136E);
4276put('ETHIOPIC_DIGIT_SEVEN, 'codepoint, 0x136F);
4277put('ETHIOPIC_DIGIT_EIGHT, 'codepoint, 0x1370);
4278put('ETHIOPIC_DIGIT_NINE, 'codepoint, 0x1371);
4279put('ETHIOPIC_NUMBER_TEN, 'codepoint, 0x1372);
4280put('ETHIOPIC_NUMBER_TWENTY, 'codepoint, 0x1373);
4281put('ETHIOPIC_NUMBER_THIRTY, 'codepoint, 0x1374);
4282put('ETHIOPIC_NUMBER_FORTY, 'codepoint, 0x1375);
4283put('ETHIOPIC_NUMBER_FIFTY, 'codepoint, 0x1376);
4284put('ETHIOPIC_NUMBER_SIXTY, 'codepoint, 0x1377);
4285put('ETHIOPIC_NUMBER_SEVENTY, 'codepoint, 0x1378);
4286put('ETHIOPIC_NUMBER_EIGHTY, 'codepoint, 0x1379);
4287put('ETHIOPIC_NUMBER_NINETY, 'codepoint, 0x137A);
4288put('ETHIOPIC_NUMBER_HUNDRED, 'codepoint, 0x137B);
4289put('ETHIOPIC_NUMBER_TEN_THOUSAND, 'codepoint, 0x137C);
4290put('ETHIOPIC_SYLLABLE_SEBATBEIT_MWA, 'codepoint, 0x1380);
4291put('ETHIOPIC_SYLLABLE_MWI, 'codepoint, 0x1381);
4292put('ETHIOPIC_SYLLABLE_MWEE, 'codepoint, 0x1382);
4293put('ETHIOPIC_SYLLABLE_MWE, 'codepoint, 0x1383);
4294put('ETHIOPIC_SYLLABLE_SEBATBEIT_BWA, 'codepoint, 0x1384);
4295put('ETHIOPIC_SYLLABLE_BWI, 'codepoint, 0x1385);
4296put('ETHIOPIC_SYLLABLE_BWEE, 'codepoint, 0x1386);
4297put('ETHIOPIC_SYLLABLE_BWE, 'codepoint, 0x1387);
4298put('ETHIOPIC_SYLLABLE_SEBATBEIT_FWA, 'codepoint, 0x1388);
4299put('ETHIOPIC_SYLLABLE_FWI, 'codepoint, 0x1389);
4300put('ETHIOPIC_SYLLABLE_FWEE, 'codepoint, 0x138A);
4301put('ETHIOPIC_SYLLABLE_FWE, 'codepoint, 0x138B);
4302put('ETHIOPIC_SYLLABLE_SEBATBEIT_PWA, 'codepoint, 0x138C);
4303put('ETHIOPIC_SYLLABLE_PWI, 'codepoint, 0x138D);
4304put('ETHIOPIC_SYLLABLE_PWEE, 'codepoint, 0x138E);
4305put('ETHIOPIC_SYLLABLE_PWE, 'codepoint, 0x138F);
4306put('ETHIOPIC_TONAL_MARK_YIZET, 'codepoint, 0x1390);
4307put('ETHIOPIC_TONAL_MARK_DERET, 'codepoint, 0x1391);
4308put('ETHIOPIC_TONAL_MARK_RIKRIK, 'codepoint, 0x1392);
4309put('ETHIOPIC_TONAL_MARK_SHORT_RIKRIK, 'codepoint, 0x1393);
4310put('ETHIOPIC_TONAL_MARK_DIFAT, 'codepoint, 0x1394);
4311put('ETHIOPIC_TONAL_MARK_KENAT, 'codepoint, 0x1395);
4312put('ETHIOPIC_TONAL_MARK_CHIRET, 'codepoint, 0x1396);
4313put('ETHIOPIC_TONAL_MARK_HIDET, 'codepoint, 0x1397);
4314put('ETHIOPIC_TONAL_MARK_DERET_HIDET, 'codepoint, 0x1398);
4315put('ETHIOPIC_TONAL_MARK_KURT, 'codepoint, 0x1399);
4316put('CHEROKEE_LETTER_A, 'codepoint, 0x13A0);
4317put('CHEROKEE_LETTER_E, 'codepoint, 0x13A1);
4318put('CHEROKEE_LETTER_I, 'codepoint, 0x13A2);
4319put('CHEROKEE_LETTER_O, 'codepoint, 0x13A3);
4320put('CHEROKEE_LETTER_U, 'codepoint, 0x13A4);
4321put('CHEROKEE_LETTER_V, 'codepoint, 0x13A5);
4322put('CHEROKEE_LETTER_GA, 'codepoint, 0x13A6);
4323put('CHEROKEE_LETTER_KA, 'codepoint, 0x13A7);
4324put('CHEROKEE_LETTER_GE, 'codepoint, 0x13A8);
4325put('CHEROKEE_LETTER_GI, 'codepoint, 0x13A9);
4326put('CHEROKEE_LETTER_GO, 'codepoint, 0x13AA);
4327put('CHEROKEE_LETTER_GU, 'codepoint, 0x13AB);
4328put('CHEROKEE_LETTER_GV, 'codepoint, 0x13AC);
4329put('CHEROKEE_LETTER_HA, 'codepoint, 0x13AD);
4330put('CHEROKEE_LETTER_HE, 'codepoint, 0x13AE);
4331put('CHEROKEE_LETTER_HI, 'codepoint, 0x13AF);
4332put('CHEROKEE_LETTER_HO, 'codepoint, 0x13B0);
4333put('CHEROKEE_LETTER_HU, 'codepoint, 0x13B1);
4334put('CHEROKEE_LETTER_HV, 'codepoint, 0x13B2);
4335put('CHEROKEE_LETTER_LA, 'codepoint, 0x13B3);
4336put('CHEROKEE_LETTER_LE, 'codepoint, 0x13B4);
4337put('CHEROKEE_LETTER_LI, 'codepoint, 0x13B5);
4338put('CHEROKEE_LETTER_LO, 'codepoint, 0x13B6);
4339put('CHEROKEE_LETTER_LU, 'codepoint, 0x13B7);
4340put('CHEROKEE_LETTER_LV, 'codepoint, 0x13B8);
4341put('CHEROKEE_LETTER_MA, 'codepoint, 0x13B9);
4342put('CHEROKEE_LETTER_ME, 'codepoint, 0x13BA);
4343put('CHEROKEE_LETTER_MI, 'codepoint, 0x13BB);
4344put('CHEROKEE_LETTER_MO, 'codepoint, 0x13BC);
4345put('CHEROKEE_LETTER_MU, 'codepoint, 0x13BD);
4346put('CHEROKEE_LETTER_NA, 'codepoint, 0x13BE);
4347put('CHEROKEE_LETTER_HNA, 'codepoint, 0x13BF);
4348put('CHEROKEE_LETTER_NAH, 'codepoint, 0x13C0);
4349put('CHEROKEE_LETTER_NE, 'codepoint, 0x13C1);
4350put('CHEROKEE_LETTER_NI, 'codepoint, 0x13C2);
4351put('CHEROKEE_LETTER_NO, 'codepoint, 0x13C3);
4352put('CHEROKEE_LETTER_NU, 'codepoint, 0x13C4);
4353put('CHEROKEE_LETTER_NV, 'codepoint, 0x13C5);
4354put('CHEROKEE_LETTER_QUA, 'codepoint, 0x13C6);
4355put('CHEROKEE_LETTER_QUE, 'codepoint, 0x13C7);
4356put('CHEROKEE_LETTER_QUI, 'codepoint, 0x13C8);
4357put('CHEROKEE_LETTER_QUO, 'codepoint, 0x13C9);
4358put('CHEROKEE_LETTER_QUU, 'codepoint, 0x13CA);
4359put('CHEROKEE_LETTER_QUV, 'codepoint, 0x13CB);
4360put('CHEROKEE_LETTER_SA, 'codepoint, 0x13CC);
4361put('CHEROKEE_LETTER_S, 'codepoint, 0x13CD);
4362put('CHEROKEE_LETTER_SE, 'codepoint, 0x13CE);
4363put('CHEROKEE_LETTER_SI, 'codepoint, 0x13CF);
4364put('CHEROKEE_LETTER_SO, 'codepoint, 0x13D0);
4365put('CHEROKEE_LETTER_SU, 'codepoint, 0x13D1);
4366put('CHEROKEE_LETTER_SV, 'codepoint, 0x13D2);
4367put('CHEROKEE_LETTER_DA, 'codepoint, 0x13D3);
4368put('CHEROKEE_LETTER_TA, 'codepoint, 0x13D4);
4369put('CHEROKEE_LETTER_DE, 'codepoint, 0x13D5);
4370put('CHEROKEE_LETTER_TE, 'codepoint, 0x13D6);
4371put('CHEROKEE_LETTER_DI, 'codepoint, 0x13D7);
4372put('CHEROKEE_LETTER_TI, 'codepoint, 0x13D8);
4373put('CHEROKEE_LETTER_DO, 'codepoint, 0x13D9);
4374put('CHEROKEE_LETTER_DU, 'codepoint, 0x13DA);
4375put('CHEROKEE_LETTER_DV, 'codepoint, 0x13DB);
4376put('CHEROKEE_LETTER_DLA, 'codepoint, 0x13DC);
4377put('CHEROKEE_LETTER_TLA, 'codepoint, 0x13DD);
4378put('CHEROKEE_LETTER_TLE, 'codepoint, 0x13DE);
4379put('CHEROKEE_LETTER_TLI, 'codepoint, 0x13DF);
4380put('CHEROKEE_LETTER_TLO, 'codepoint, 0x13E0);
4381put('CHEROKEE_LETTER_TLU, 'codepoint, 0x13E1);
4382put('CHEROKEE_LETTER_TLV, 'codepoint, 0x13E2);
4383put('CHEROKEE_LETTER_TSA, 'codepoint, 0x13E3);
4384put('CHEROKEE_LETTER_TSE, 'codepoint, 0x13E4);
4385put('CHEROKEE_LETTER_TSI, 'codepoint, 0x13E5);
4386put('CHEROKEE_LETTER_TSO, 'codepoint, 0x13E6);
4387put('CHEROKEE_LETTER_TSU, 'codepoint, 0x13E7);
4388put('CHEROKEE_LETTER_TSV, 'codepoint, 0x13E8);
4389put('CHEROKEE_LETTER_WA, 'codepoint, 0x13E9);
4390put('CHEROKEE_LETTER_WE, 'codepoint, 0x13EA);
4391put('CHEROKEE_LETTER_WI, 'codepoint, 0x13EB);
4392put('CHEROKEE_LETTER_WO, 'codepoint, 0x13EC);
4393put('CHEROKEE_LETTER_WU, 'codepoint, 0x13ED);
4394put('CHEROKEE_LETTER_WV, 'codepoint, 0x13EE);
4395put('CHEROKEE_LETTER_YA, 'codepoint, 0x13EF);
4396put('CHEROKEE_LETTER_YE, 'codepoint, 0x13F0);
4397put('CHEROKEE_LETTER_YI, 'codepoint, 0x13F1);
4398put('CHEROKEE_LETTER_YO, 'codepoint, 0x13F2);
4399put('CHEROKEE_LETTER_YU, 'codepoint, 0x13F3);
4400put('CHEROKEE_LETTER_YV, 'codepoint, 0x13F4);
4401put('CANADIAN_SYLLABICS_HYPHEN, 'codepoint, 0x1400);
4402put('CANADIAN_SYLLABICS_E, 'codepoint, 0x1401);
4403put('CANADIAN_SYLLABICS_AAI, 'codepoint, 0x1402);
4404put('CANADIAN_SYLLABICS_I, 'codepoint, 0x1403);
4405put('CANADIAN_SYLLABICS_II, 'codepoint, 0x1404);
4406put('CANADIAN_SYLLABICS_O, 'codepoint, 0x1405);
4407put('CANADIAN_SYLLABICS_OO, 'codepoint, 0x1406);
4408put('CANADIAN_SYLLABICS_Y_CREE_OO, 'codepoint, 0x1407);
4409put('CANADIAN_SYLLABICS_CARRIER_EE, 'codepoint, 0x1408);
4410put('CANADIAN_SYLLABICS_CARRIER_I, 'codepoint, 0x1409);
4411put('CANADIAN_SYLLABICS_A, 'codepoint, 0x140A);
4412put('CANADIAN_SYLLABICS_AA, 'codepoint, 0x140B);
4413put('CANADIAN_SYLLABICS_WE, 'codepoint, 0x140C);
4414put('CANADIAN_SYLLABICS_WEST_CREE_WE, 'codepoint, 0x140D);
4415put('CANADIAN_SYLLABICS_WI, 'codepoint, 0x140E);
4416put('CANADIAN_SYLLABICS_WEST_CREE_WI, 'codepoint, 0x140F);
4417put('CANADIAN_SYLLABICS_WII, 'codepoint, 0x1410);
4418put('CANADIAN_SYLLABICS_WEST_CREE_WII, 'codepoint, 0x1411);
4419put('CANADIAN_SYLLABICS_WO, 'codepoint, 0x1412);
4420put('CANADIAN_SYLLABICS_WEST_CREE_WO, 'codepoint, 0x1413);
4421put('CANADIAN_SYLLABICS_WOO, 'codepoint, 0x1414);
4422put('CANADIAN_SYLLABICS_WEST_CREE_WOO, 'codepoint, 0x1415);
4423put('CANADIAN_SYLLABICS_NASKAPI_WOO, 'codepoint, 0x1416);
4424put('CANADIAN_SYLLABICS_WA, 'codepoint, 0x1417);
4425put('CANADIAN_SYLLABICS_WEST_CREE_WA, 'codepoint, 0x1418);
4426put('CANADIAN_SYLLABICS_WAA, 'codepoint, 0x1419);
4427put('CANADIAN_SYLLABICS_WEST_CREE_WAA, 'codepoint, 0x141A);
4428put('CANADIAN_SYLLABICS_NASKAPI_WAA, 'codepoint, 0x141B);
4429put('CANADIAN_SYLLABICS_AI, 'codepoint, 0x141C);
4430put('CANADIAN_SYLLABICS_Y_CREE_W, 'codepoint, 0x141D);
4431put('CANADIAN_SYLLABICS_GLOTTAL_STOP, 'codepoint, 0x141E);
4432put('CANADIAN_SYLLABICS_FINAL_ACUTE, 'codepoint, 0x141F);
4433put('CANADIAN_SYLLABICS_FINAL_GRAVE, 'codepoint, 0x1420);
4434put('CANADIAN_SYLLABICS_FINAL_BOTTOM_HALF_RING, 'codepoint, 0x1421);
4435put('CANADIAN_SYLLABICS_FINAL_TOP_HALF_RING, 'codepoint, 0x1422);
4436put('CANADIAN_SYLLABICS_FINAL_RIGHT_HALF_RING, 'codepoint, 0x1423);
4437put('CANADIAN_SYLLABICS_FINAL_RING, 'codepoint, 0x1424);
4438put('CANADIAN_SYLLABICS_FINAL_DOUBLE_ACUTE, 'codepoint, 0x1425);
4439put('CANADIAN_SYLLABICS_FINAL_DOUBLE_SHORT_VERTICAL_STROKES, 'codepoint, 0x1426);
4440put('CANADIAN_SYLLABICS_FINAL_MIDDLE_DOT, 'codepoint, 0x1427);
4441put('CANADIAN_SYLLABICS_FINAL_SHORT_HORIZONTAL_STROKE, 'codepoint, 0x1428);
4442put('CANADIAN_SYLLABICS_FINAL_PLUS, 'codepoint, 0x1429);
4443put('CANADIAN_SYLLABICS_FINAL_DOWN_TACK, 'codepoint, 0x142A);
4444put('CANADIAN_SYLLABICS_EN, 'codepoint, 0x142B);
4445put('CANADIAN_SYLLABICS_IN, 'codepoint, 0x142C);
4446put('CANADIAN_SYLLABICS_ON, 'codepoint, 0x142D);
4447put('CANADIAN_SYLLABICS_AN, 'codepoint, 0x142E);
4448put('CANADIAN_SYLLABICS_PE, 'codepoint, 0x142F);
4449put('CANADIAN_SYLLABICS_PAAI, 'codepoint, 0x1430);
4450put('CANADIAN_SYLLABICS_PI, 'codepoint, 0x1431);
4451put('CANADIAN_SYLLABICS_PII, 'codepoint, 0x1432);
4452put('CANADIAN_SYLLABICS_PO, 'codepoint, 0x1433);
4453put('CANADIAN_SYLLABICS_POO, 'codepoint, 0x1434);
4454put('CANADIAN_SYLLABICS_Y_CREE_POO, 'codepoint, 0x1435);
4455put('CANADIAN_SYLLABICS_CARRIER_HEE, 'codepoint, 0x1436);
4456put('CANADIAN_SYLLABICS_CARRIER_HI, 'codepoint, 0x1437);
4457put('CANADIAN_SYLLABICS_PA, 'codepoint, 0x1438);
4458put('CANADIAN_SYLLABICS_PAA, 'codepoint, 0x1439);
4459put('CANADIAN_SYLLABICS_PWE, 'codepoint, 0x143A);
4460put('CANADIAN_SYLLABICS_WEST_CREE_PWE, 'codepoint, 0x143B);
4461put('CANADIAN_SYLLABICS_PWI, 'codepoint, 0x143C);
4462put('CANADIAN_SYLLABICS_WEST_CREE_PWI, 'codepoint, 0x143D);
4463put('CANADIAN_SYLLABICS_PWII, 'codepoint, 0x143E);
4464put('CANADIAN_SYLLABICS_WEST_CREE_PWII, 'codepoint, 0x143F);
4465put('CANADIAN_SYLLABICS_PWO, 'codepoint, 0x1440);
4466put('CANADIAN_SYLLABICS_WEST_CREE_PWO, 'codepoint, 0x1441);
4467put('CANADIAN_SYLLABICS_PWOO, 'codepoint, 0x1442);
4468put('CANADIAN_SYLLABICS_WEST_CREE_PWOO, 'codepoint, 0x1443);
4469put('CANADIAN_SYLLABICS_PWA, 'codepoint, 0x1444);
4470put('CANADIAN_SYLLABICS_WEST_CREE_PWA, 'codepoint, 0x1445);
4471put('CANADIAN_SYLLABICS_PWAA, 'codepoint, 0x1446);
4472put('CANADIAN_SYLLABICS_WEST_CREE_PWAA, 'codepoint, 0x1447);
4473put('CANADIAN_SYLLABICS_Y_CREE_PWAA, 'codepoint, 0x1448);
4474put('CANADIAN_SYLLABICS_P, 'codepoint, 0x1449);
4475put('CANADIAN_SYLLABICS_WEST_CREE_P, 'codepoint, 0x144A);
4476put('CANADIAN_SYLLABICS_CARRIER_H, 'codepoint, 0x144B);
4477put('CANADIAN_SYLLABICS_TE, 'codepoint, 0x144C);
4478put('CANADIAN_SYLLABICS_TAAI, 'codepoint, 0x144D);
4479put('CANADIAN_SYLLABICS_TI, 'codepoint, 0x144E);
4480put('CANADIAN_SYLLABICS_TII, 'codepoint, 0x144F);
4481put('CANADIAN_SYLLABICS_TO, 'codepoint, 0x1450);
4482put('CANADIAN_SYLLABICS_TOO, 'codepoint, 0x1451);
4483put('CANADIAN_SYLLABICS_Y_CREE_TOO, 'codepoint, 0x1452);
4484put('CANADIAN_SYLLABICS_CARRIER_DEE, 'codepoint, 0x1453);
4485put('CANADIAN_SYLLABICS_CARRIER_DI, 'codepoint, 0x1454);
4486put('CANADIAN_SYLLABICS_TA, 'codepoint, 0x1455);
4487put('CANADIAN_SYLLABICS_TAA, 'codepoint, 0x1456);
4488put('CANADIAN_SYLLABICS_TWE, 'codepoint, 0x1457);
4489put('CANADIAN_SYLLABICS_WEST_CREE_TWE, 'codepoint, 0x1458);
4490put('CANADIAN_SYLLABICS_TWI, 'codepoint, 0x1459);
4491put('CANADIAN_SYLLABICS_WEST_CREE_TWI, 'codepoint, 0x145A);
4492put('CANADIAN_SYLLABICS_TWII, 'codepoint, 0x145B);
4493put('CANADIAN_SYLLABICS_WEST_CREE_TWII, 'codepoint, 0x145C);
4494put('CANADIAN_SYLLABICS_TWO, 'codepoint, 0x145D);
4495put('CANADIAN_SYLLABICS_WEST_CREE_TWO, 'codepoint, 0x145E);
4496put('CANADIAN_SYLLABICS_TWOO, 'codepoint, 0x145F);
4497put('CANADIAN_SYLLABICS_WEST_CREE_TWOO, 'codepoint, 0x1460);
4498put('CANADIAN_SYLLABICS_TWA, 'codepoint, 0x1461);
4499put('CANADIAN_SYLLABICS_WEST_CREE_TWA, 'codepoint, 0x1462);
4500put('CANADIAN_SYLLABICS_TWAA, 'codepoint, 0x1463);
4501put('CANADIAN_SYLLABICS_WEST_CREE_TWAA, 'codepoint, 0x1464);
4502put('CANADIAN_SYLLABICS_NASKAPI_TWAA, 'codepoint, 0x1465);
4503put('CANADIAN_SYLLABICS_T, 'codepoint, 0x1466);
4504put('CANADIAN_SYLLABICS_TTE, 'codepoint, 0x1467);
4505put('CANADIAN_SYLLABICS_TTI, 'codepoint, 0x1468);
4506put('CANADIAN_SYLLABICS_TTO, 'codepoint, 0x1469);
4507put('CANADIAN_SYLLABICS_TTA, 'codepoint, 0x146A);
4508put('CANADIAN_SYLLABICS_KE, 'codepoint, 0x146B);
4509put('CANADIAN_SYLLABICS_KAAI, 'codepoint, 0x146C);
4510put('CANADIAN_SYLLABICS_KI, 'codepoint, 0x146D);
4511put('CANADIAN_SYLLABICS_KII, 'codepoint, 0x146E);
4512put('CANADIAN_SYLLABICS_KO, 'codepoint, 0x146F);
4513put('CANADIAN_SYLLABICS_KOO, 'codepoint, 0x1470);
4514put('CANADIAN_SYLLABICS_Y_CREE_KOO, 'codepoint, 0x1471);
4515put('CANADIAN_SYLLABICS_KA, 'codepoint, 0x1472);
4516put('CANADIAN_SYLLABICS_KAA, 'codepoint, 0x1473);
4517put('CANADIAN_SYLLABICS_KWE, 'codepoint, 0x1474);
4518put('CANADIAN_SYLLABICS_WEST_CREE_KWE, 'codepoint, 0x1475);
4519put('CANADIAN_SYLLABICS_KWI, 'codepoint, 0x1476);
4520put('CANADIAN_SYLLABICS_WEST_CREE_KWI, 'codepoint, 0x1477);
4521put('CANADIAN_SYLLABICS_KWII, 'codepoint, 0x1478);
4522put('CANADIAN_SYLLABICS_WEST_CREE_KWII, 'codepoint, 0x1479);
4523put('CANADIAN_SYLLABICS_KWO, 'codepoint, 0x147A);
4524put('CANADIAN_SYLLABICS_WEST_CREE_KWO, 'codepoint, 0x147B);
4525put('CANADIAN_SYLLABICS_KWOO, 'codepoint, 0x147C);
4526put('CANADIAN_SYLLABICS_WEST_CREE_KWOO, 'codepoint, 0x147D);
4527put('CANADIAN_SYLLABICS_KWA, 'codepoint, 0x147E);
4528put('CANADIAN_SYLLABICS_WEST_CREE_KWA, 'codepoint, 0x147F);
4529put('CANADIAN_SYLLABICS_KWAA, 'codepoint, 0x1480);
4530put('CANADIAN_SYLLABICS_WEST_CREE_KWAA, 'codepoint, 0x1481);
4531put('CANADIAN_SYLLABICS_NASKAPI_KWAA, 'codepoint, 0x1482);
4532put('CANADIAN_SYLLABICS_K, 'codepoint, 0x1483);
4533put('CANADIAN_SYLLABICS_KW, 'codepoint, 0x1484);
4534put('CANADIAN_SYLLABICS_SOUTH_SLAVEY_KEH, 'codepoint, 0x1485);
4535put('CANADIAN_SYLLABICS_SOUTH_SLAVEY_KIH, 'codepoint, 0x1486);
4536put('CANADIAN_SYLLABICS_SOUTH_SLAVEY_KOH, 'codepoint, 0x1487);
4537put('CANADIAN_SYLLABICS_SOUTH_SLAVEY_KAH, 'codepoint, 0x1488);
4538put('CANADIAN_SYLLABICS_CE, 'codepoint, 0x1489);
4539put('CANADIAN_SYLLABICS_CAAI, 'codepoint, 0x148A);
4540put('CANADIAN_SYLLABICS_CI, 'codepoint, 0x148B);
4541put('CANADIAN_SYLLABICS_CII, 'codepoint, 0x148C);
4542put('CANADIAN_SYLLABICS_CO, 'codepoint, 0x148D);
4543put('CANADIAN_SYLLABICS_COO, 'codepoint, 0x148E);
4544put('CANADIAN_SYLLABICS_Y_CREE_COO, 'codepoint, 0x148F);
4545put('CANADIAN_SYLLABICS_CA, 'codepoint, 0x1490);
4546put('CANADIAN_SYLLABICS_CAA, 'codepoint, 0x1491);
4547put('CANADIAN_SYLLABICS_CWE, 'codepoint, 0x1492);
4548put('CANADIAN_SYLLABICS_WEST_CREE_CWE, 'codepoint, 0x1493);
4549put('CANADIAN_SYLLABICS_CWI, 'codepoint, 0x1494);
4550put('CANADIAN_SYLLABICS_WEST_CREE_CWI, 'codepoint, 0x1495);
4551put('CANADIAN_SYLLABICS_CWII, 'codepoint, 0x1496);
4552put('CANADIAN_SYLLABICS_WEST_CREE_CWII, 'codepoint, 0x1497);
4553put('CANADIAN_SYLLABICS_CWO, 'codepoint, 0x1498);
4554put('CANADIAN_SYLLABICS_WEST_CREE_CWO, 'codepoint, 0x1499);
4555put('CANADIAN_SYLLABICS_CWOO, 'codepoint, 0x149A);
4556put('CANADIAN_SYLLABICS_WEST_CREE_CWOO, 'codepoint, 0x149B);
4557put('CANADIAN_SYLLABICS_CWA, 'codepoint, 0x149C);
4558put('CANADIAN_SYLLABICS_WEST_CREE_CWA, 'codepoint, 0x149D);
4559put('CANADIAN_SYLLABICS_CWAA, 'codepoint, 0x149E);
4560put('CANADIAN_SYLLABICS_WEST_CREE_CWAA, 'codepoint, 0x149F);
4561put('CANADIAN_SYLLABICS_NASKAPI_CWAA, 'codepoint, 0x14A0);
4562put('CANADIAN_SYLLABICS_C, 'codepoint, 0x14A1);
4563put('CANADIAN_SYLLABICS_SAYISI_TH, 'codepoint, 0x14A2);
4564put('CANADIAN_SYLLABICS_ME, 'codepoint, 0x14A3);
4565put('CANADIAN_SYLLABICS_MAAI, 'codepoint, 0x14A4);
4566put('CANADIAN_SYLLABICS_MI, 'codepoint, 0x14A5);
4567put('CANADIAN_SYLLABICS_MII, 'codepoint, 0x14A6);
4568put('CANADIAN_SYLLABICS_MO, 'codepoint, 0x14A7);
4569put('CANADIAN_SYLLABICS_MOO, 'codepoint, 0x14A8);
4570put('CANADIAN_SYLLABICS_Y_CREE_MOO, 'codepoint, 0x14A9);
4571put('CANADIAN_SYLLABICS_MA, 'codepoint, 0x14AA);
4572put('CANADIAN_SYLLABICS_MAA, 'codepoint, 0x14AB);
4573put('CANADIAN_SYLLABICS_MWE, 'codepoint, 0x14AC);
4574put('CANADIAN_SYLLABICS_WEST_CREE_MWE, 'codepoint, 0x14AD);
4575put('CANADIAN_SYLLABICS_MWI, 'codepoint, 0x14AE);
4576put('CANADIAN_SYLLABICS_WEST_CREE_MWI, 'codepoint, 0x14AF);
4577put('CANADIAN_SYLLABICS_MWII, 'codepoint, 0x14B0);
4578put('CANADIAN_SYLLABICS_WEST_CREE_MWII, 'codepoint, 0x14B1);
4579put('CANADIAN_SYLLABICS_MWO, 'codepoint, 0x14B2);
4580put('CANADIAN_SYLLABICS_WEST_CREE_MWO, 'codepoint, 0x14B3);
4581put('CANADIAN_SYLLABICS_MWOO, 'codepoint, 0x14B4);
4582put('CANADIAN_SYLLABICS_WEST_CREE_MWOO, 'codepoint, 0x14B5);
4583put('CANADIAN_SYLLABICS_MWA, 'codepoint, 0x14B6);
4584put('CANADIAN_SYLLABICS_WEST_CREE_MWA, 'codepoint, 0x14B7);
4585put('CANADIAN_SYLLABICS_MWAA, 'codepoint, 0x14B8);
4586put('CANADIAN_SYLLABICS_WEST_CREE_MWAA, 'codepoint, 0x14B9);
4587put('CANADIAN_SYLLABICS_NASKAPI_MWAA, 'codepoint, 0x14BA);
4588put('CANADIAN_SYLLABICS_M, 'codepoint, 0x14BB);
4589put('CANADIAN_SYLLABICS_WEST_CREE_M, 'codepoint, 0x14BC);
4590put('CANADIAN_SYLLABICS_MH, 'codepoint, 0x14BD);
4591put('CANADIAN_SYLLABICS_ATHAPASCAN_M, 'codepoint, 0x14BE);
4592put('CANADIAN_SYLLABICS_SAYISI_M, 'codepoint, 0x14BF);
4593put('CANADIAN_SYLLABICS_NE, 'codepoint, 0x14C0);
4594put('CANADIAN_SYLLABICS_NAAI, 'codepoint, 0x14C1);
4595put('CANADIAN_SYLLABICS_NI, 'codepoint, 0x14C2);
4596put('CANADIAN_SYLLABICS_NII, 'codepoint, 0x14C3);
4597put('CANADIAN_SYLLABICS_NO, 'codepoint, 0x14C4);
4598put('CANADIAN_SYLLABICS_NOO, 'codepoint, 0x14C5);
4599put('CANADIAN_SYLLABICS_Y_CREE_NOO, 'codepoint, 0x14C6);
4600put('CANADIAN_SYLLABICS_NA, 'codepoint, 0x14C7);
4601put('CANADIAN_SYLLABICS_NAA, 'codepoint, 0x14C8);
4602put('CANADIAN_SYLLABICS_NWE, 'codepoint, 0x14C9);
4603put('CANADIAN_SYLLABICS_WEST_CREE_NWE, 'codepoint, 0x14CA);
4604put('CANADIAN_SYLLABICS_NWA, 'codepoint, 0x14CB);
4605put('CANADIAN_SYLLABICS_WEST_CREE_NWA, 'codepoint, 0x14CC);
4606put('CANADIAN_SYLLABICS_NWAA, 'codepoint, 0x14CD);
4607put('CANADIAN_SYLLABICS_WEST_CREE_NWAA, 'codepoint, 0x14CE);
4608put('CANADIAN_SYLLABICS_NASKAPI_NWAA, 'codepoint, 0x14CF);
4609put('CANADIAN_SYLLABICS_N, 'codepoint, 0x14D0);
4610put('CANADIAN_SYLLABICS_CARRIER_NG, 'codepoint, 0x14D1);
4611put('CANADIAN_SYLLABICS_NH, 'codepoint, 0x14D2);
4612put('CANADIAN_SYLLABICS_LE, 'codepoint, 0x14D3);
4613put('CANADIAN_SYLLABICS_LAAI, 'codepoint, 0x14D4);
4614put('CANADIAN_SYLLABICS_LI, 'codepoint, 0x14D5);
4615put('CANADIAN_SYLLABICS_LII, 'codepoint, 0x14D6);
4616put('CANADIAN_SYLLABICS_LO, 'codepoint, 0x14D7);
4617put('CANADIAN_SYLLABICS_LOO, 'codepoint, 0x14D8);
4618put('CANADIAN_SYLLABICS_Y_CREE_LOO, 'codepoint, 0x14D9);
4619put('CANADIAN_SYLLABICS_LA, 'codepoint, 0x14DA);
4620put('CANADIAN_SYLLABICS_LAA, 'codepoint, 0x14DB);
4621put('CANADIAN_SYLLABICS_LWE, 'codepoint, 0x14DC);
4622put('CANADIAN_SYLLABICS_WEST_CREE_LWE, 'codepoint, 0x14DD);
4623put('CANADIAN_SYLLABICS_LWI, 'codepoint, 0x14DE);
4624put('CANADIAN_SYLLABICS_WEST_CREE_LWI, 'codepoint, 0x14DF);
4625put('CANADIAN_SYLLABICS_LWII, 'codepoint, 0x14E0);
4626put('CANADIAN_SYLLABICS_WEST_CREE_LWII, 'codepoint, 0x14E1);
4627put('CANADIAN_SYLLABICS_LWO, 'codepoint, 0x14E2);
4628put('CANADIAN_SYLLABICS_WEST_CREE_LWO, 'codepoint, 0x14E3);
4629put('CANADIAN_SYLLABICS_LWOO, 'codepoint, 0x14E4);
4630put('CANADIAN_SYLLABICS_WEST_CREE_LWOO, 'codepoint, 0x14E5);
4631put('CANADIAN_SYLLABICS_LWA, 'codepoint, 0x14E6);
4632put('CANADIAN_SYLLABICS_WEST_CREE_LWA, 'codepoint, 0x14E7);
4633put('CANADIAN_SYLLABICS_LWAA, 'codepoint, 0x14E8);
4634put('CANADIAN_SYLLABICS_WEST_CREE_LWAA, 'codepoint, 0x14E9);
4635put('CANADIAN_SYLLABICS_L, 'codepoint, 0x14EA);
4636put('CANADIAN_SYLLABICS_WEST_CREE_L, 'codepoint, 0x14EB);
4637put('CANADIAN_SYLLABICS_MEDIAL_L, 'codepoint, 0x14EC);
4638put('CANADIAN_SYLLABICS_SE, 'codepoint, 0x14ED);
4639put('CANADIAN_SYLLABICS_SAAI, 'codepoint, 0x14EE);
4640put('CANADIAN_SYLLABICS_SI, 'codepoint, 0x14EF);
4641put('CANADIAN_SYLLABICS_SII, 'codepoint, 0x14F0);
4642put('CANADIAN_SYLLABICS_SO, 'codepoint, 0x14F1);
4643put('CANADIAN_SYLLABICS_SOO, 'codepoint, 0x14F2);
4644put('CANADIAN_SYLLABICS_Y_CREE_SOO, 'codepoint, 0x14F3);
4645put('CANADIAN_SYLLABICS_SA, 'codepoint, 0x14F4);
4646put('CANADIAN_SYLLABICS_SAA, 'codepoint, 0x14F5);
4647put('CANADIAN_SYLLABICS_SWE, 'codepoint, 0x14F6);
4648put('CANADIAN_SYLLABICS_WEST_CREE_SWE, 'codepoint, 0x14F7);
4649put('CANADIAN_SYLLABICS_SWI, 'codepoint, 0x14F8);
4650put('CANADIAN_SYLLABICS_WEST_CREE_SWI, 'codepoint, 0x14F9);
4651put('CANADIAN_SYLLABICS_SWII, 'codepoint, 0x14FA);
4652put('CANADIAN_SYLLABICS_WEST_CREE_SWII, 'codepoint, 0x14FB);
4653put('CANADIAN_SYLLABICS_SWO, 'codepoint, 0x14FC);
4654put('CANADIAN_SYLLABICS_WEST_CREE_SWO, 'codepoint, 0x14FD);
4655put('CANADIAN_SYLLABICS_SWOO, 'codepoint, 0x14FE);
4656put('CANADIAN_SYLLABICS_WEST_CREE_SWOO, 'codepoint, 0x14FF);
4657put('CANADIAN_SYLLABICS_SWA, 'codepoint, 0x1500);
4658put('CANADIAN_SYLLABICS_WEST_CREE_SWA, 'codepoint, 0x1501);
4659put('CANADIAN_SYLLABICS_SWAA, 'codepoint, 0x1502);
4660put('CANADIAN_SYLLABICS_WEST_CREE_SWAA, 'codepoint, 0x1503);
4661put('CANADIAN_SYLLABICS_NASKAPI_SWAA, 'codepoint, 0x1504);
4662put('CANADIAN_SYLLABICS_S, 'codepoint, 0x1505);
4663put('CANADIAN_SYLLABICS_ATHAPASCAN_S, 'codepoint, 0x1506);
4664put('CANADIAN_SYLLABICS_SW, 'codepoint, 0x1507);
4665put('CANADIAN_SYLLABICS_BLACKFOOT_S, 'codepoint, 0x1508);
4666put('CANADIAN_SYLLABICS_MOOSE_CREE_SK, 'codepoint, 0x1509);
4667put('CANADIAN_SYLLABICS_NASKAPI_SKW, 'codepoint, 0x150A);
4668put('CANADIAN_SYLLABICS_NASKAPI_S_W, 'codepoint, 0x150B);
4669put('CANADIAN_SYLLABICS_NASKAPI_SPWA, 'codepoint, 0x150C);
4670put('CANADIAN_SYLLABICS_NASKAPI_STWA, 'codepoint, 0x150D);
4671put('CANADIAN_SYLLABICS_NASKAPI_SKWA, 'codepoint, 0x150E);
4672put('CANADIAN_SYLLABICS_NASKAPI_SCWA, 'codepoint, 0x150F);
4673put('CANADIAN_SYLLABICS_SHE, 'codepoint, 0x1510);
4674put('CANADIAN_SYLLABICS_SHI, 'codepoint, 0x1511);
4675put('CANADIAN_SYLLABICS_SHII, 'codepoint, 0x1512);
4676put('CANADIAN_SYLLABICS_SHO, 'codepoint, 0x1513);
4677put('CANADIAN_SYLLABICS_SHOO, 'codepoint, 0x1514);
4678put('CANADIAN_SYLLABICS_SHA, 'codepoint, 0x1515);
4679put('CANADIAN_SYLLABICS_SHAA, 'codepoint, 0x1516);
4680put('CANADIAN_SYLLABICS_SHWE, 'codepoint, 0x1517);
4681put('CANADIAN_SYLLABICS_WEST_CREE_SHWE, 'codepoint, 0x1518);
4682put('CANADIAN_SYLLABICS_SHWI, 'codepoint, 0x1519);
4683put('CANADIAN_SYLLABICS_WEST_CREE_SHWI, 'codepoint, 0x151A);
4684put('CANADIAN_SYLLABICS_SHWII, 'codepoint, 0x151B);
4685put('CANADIAN_SYLLABICS_WEST_CREE_SHWII, 'codepoint, 0x151C);
4686put('CANADIAN_SYLLABICS_SHWO, 'codepoint, 0x151D);
4687put('CANADIAN_SYLLABICS_WEST_CREE_SHWO, 'codepoint, 0x151E);
4688put('CANADIAN_SYLLABICS_SHWOO, 'codepoint, 0x151F);
4689put('CANADIAN_SYLLABICS_WEST_CREE_SHWOO, 'codepoint, 0x1520);
4690put('CANADIAN_SYLLABICS_SHWA, 'codepoint, 0x1521);
4691put('CANADIAN_SYLLABICS_WEST_CREE_SHWA, 'codepoint, 0x1522);
4692put('CANADIAN_SYLLABICS_SHWAA, 'codepoint, 0x1523);
4693put('CANADIAN_SYLLABICS_WEST_CREE_SHWAA, 'codepoint, 0x1524);
4694put('CANADIAN_SYLLABICS_SH, 'codepoint, 0x1525);
4695put('CANADIAN_SYLLABICS_YE, 'codepoint, 0x1526);
4696put('CANADIAN_SYLLABICS_YAAI, 'codepoint, 0x1527);
4697put('CANADIAN_SYLLABICS_YI, 'codepoint, 0x1528);
4698put('CANADIAN_SYLLABICS_YII, 'codepoint, 0x1529);
4699put('CANADIAN_SYLLABICS_YO, 'codepoint, 0x152A);
4700put('CANADIAN_SYLLABICS_YOO, 'codepoint, 0x152B);
4701put('CANADIAN_SYLLABICS_Y_CREE_YOO, 'codepoint, 0x152C);
4702put('CANADIAN_SYLLABICS_YA, 'codepoint, 0x152D);
4703put('CANADIAN_SYLLABICS_YAA, 'codepoint, 0x152E);
4704put('CANADIAN_SYLLABICS_YWE, 'codepoint, 0x152F);
4705put('CANADIAN_SYLLABICS_WEST_CREE_YWE, 'codepoint, 0x1530);
4706put('CANADIAN_SYLLABICS_YWI, 'codepoint, 0x1531);
4707put('CANADIAN_SYLLABICS_WEST_CREE_YWI, 'codepoint, 0x1532);
4708put('CANADIAN_SYLLABICS_YWII, 'codepoint, 0x1533);
4709put('CANADIAN_SYLLABICS_WEST_CREE_YWII, 'codepoint, 0x1534);
4710put('CANADIAN_SYLLABICS_YWO, 'codepoint, 0x1535);
4711put('CANADIAN_SYLLABICS_WEST_CREE_YWO, 'codepoint, 0x1536);
4712put('CANADIAN_SYLLABICS_YWOO, 'codepoint, 0x1537);
4713put('CANADIAN_SYLLABICS_WEST_CREE_YWOO, 'codepoint, 0x1538);
4714put('CANADIAN_SYLLABICS_YWA, 'codepoint, 0x1539);
4715put('CANADIAN_SYLLABICS_WEST_CREE_YWA, 'codepoint, 0x153A);
4716put('CANADIAN_SYLLABICS_YWAA, 'codepoint, 0x153B);
4717put('CANADIAN_SYLLABICS_WEST_CREE_YWAA, 'codepoint, 0x153C);
4718put('CANADIAN_SYLLABICS_NASKAPI_YWAA, 'codepoint, 0x153D);
4719put('CANADIAN_SYLLABICS_Y, 'codepoint, 0x153E);
4720put('CANADIAN_SYLLABICS_BIBLE_CREE_Y, 'codepoint, 0x153F);
4721put('CANADIAN_SYLLABICS_WEST_CREE_Y, 'codepoint, 0x1540);
4722put('CANADIAN_SYLLABICS_SAYISI_YI, 'codepoint, 0x1541);
4723put('CANADIAN_SYLLABICS_RE, 'codepoint, 0x1542);
4724put('CANADIAN_SYLLABICS_R_CREE_RE, 'codepoint, 0x1543);
4725put('CANADIAN_SYLLABICS_WEST_CREE_LE, 'codepoint, 0x1544);
4726put('CANADIAN_SYLLABICS_RAAI, 'codepoint, 0x1545);
4727put('CANADIAN_SYLLABICS_RI, 'codepoint, 0x1546);
4728put('CANADIAN_SYLLABICS_RII, 'codepoint, 0x1547);
4729put('CANADIAN_SYLLABICS_RO, 'codepoint, 0x1548);
4730put('CANADIAN_SYLLABICS_ROO, 'codepoint, 0x1549);
4731put('CANADIAN_SYLLABICS_WEST_CREE_LO, 'codepoint, 0x154A);
4732put('CANADIAN_SYLLABICS_RA, 'codepoint, 0x154B);
4733put('CANADIAN_SYLLABICS_RAA, 'codepoint, 0x154C);
4734put('CANADIAN_SYLLABICS_WEST_CREE_LA, 'codepoint, 0x154D);
4735put('CANADIAN_SYLLABICS_RWAA, 'codepoint, 0x154E);
4736put('CANADIAN_SYLLABICS_WEST_CREE_RWAA, 'codepoint, 0x154F);
4737put('CANADIAN_SYLLABICS_R, 'codepoint, 0x1550);
4738put('CANADIAN_SYLLABICS_WEST_CREE_R, 'codepoint, 0x1551);
4739put('CANADIAN_SYLLABICS_MEDIAL_R, 'codepoint, 0x1552);
4740put('CANADIAN_SYLLABICS_FE, 'codepoint, 0x1553);
4741put('CANADIAN_SYLLABICS_FAAI, 'codepoint, 0x1554);
4742put('CANADIAN_SYLLABICS_FI, 'codepoint, 0x1555);
4743put('CANADIAN_SYLLABICS_FII, 'codepoint, 0x1556);
4744put('CANADIAN_SYLLABICS_FO, 'codepoint, 0x1557);
4745put('CANADIAN_SYLLABICS_FOO, 'codepoint, 0x1558);
4746put('CANADIAN_SYLLABICS_FA, 'codepoint, 0x1559);
4747put('CANADIAN_SYLLABICS_FAA, 'codepoint, 0x155A);
4748put('CANADIAN_SYLLABICS_FWAA, 'codepoint, 0x155B);
4749put('CANADIAN_SYLLABICS_WEST_CREE_FWAA, 'codepoint, 0x155C);
4750put('CANADIAN_SYLLABICS_F, 'codepoint, 0x155D);
4751put('CANADIAN_SYLLABICS_THE, 'codepoint, 0x155E);
4752put('CANADIAN_SYLLABICS_N_CREE_THE, 'codepoint, 0x155F);
4753put('CANADIAN_SYLLABICS_THI, 'codepoint, 0x1560);
4754put('CANADIAN_SYLLABICS_N_CREE_THI, 'codepoint, 0x1561);
4755put('CANADIAN_SYLLABICS_THII, 'codepoint, 0x1562);
4756put('CANADIAN_SYLLABICS_N_CREE_THII, 'codepoint, 0x1563);
4757put('CANADIAN_SYLLABICS_THO, 'codepoint, 0x1564);
4758put('CANADIAN_SYLLABICS_THOO, 'codepoint, 0x1565);
4759put('CANADIAN_SYLLABICS_THA, 'codepoint, 0x1566);
4760put('CANADIAN_SYLLABICS_THAA, 'codepoint, 0x1567);
4761put('CANADIAN_SYLLABICS_THWAA, 'codepoint, 0x1568);
4762put('CANADIAN_SYLLABICS_WEST_CREE_THWAA, 'codepoint, 0x1569);
4763put('CANADIAN_SYLLABICS_TH, 'codepoint, 0x156A);
4764put('CANADIAN_SYLLABICS_TTHE, 'codepoint, 0x156B);
4765put('CANADIAN_SYLLABICS_TTHI, 'codepoint, 0x156C);
4766put('CANADIAN_SYLLABICS_TTHO, 'codepoint, 0x156D);
4767put('CANADIAN_SYLLABICS_TTHA, 'codepoint, 0x156E);
4768put('CANADIAN_SYLLABICS_TTH, 'codepoint, 0x156F);
4769put('CANADIAN_SYLLABICS_TYE, 'codepoint, 0x1570);
4770put('CANADIAN_SYLLABICS_TYI, 'codepoint, 0x1571);
4771put('CANADIAN_SYLLABICS_TYO, 'codepoint, 0x1572);
4772put('CANADIAN_SYLLABICS_TYA, 'codepoint, 0x1573);
4773put('CANADIAN_SYLLABICS_NUNAVIK_HE, 'codepoint, 0x1574);
4774put('CANADIAN_SYLLABICS_NUNAVIK_HI, 'codepoint, 0x1575);
4775put('CANADIAN_SYLLABICS_NUNAVIK_HII, 'codepoint, 0x1576);
4776put('CANADIAN_SYLLABICS_NUNAVIK_HO, 'codepoint, 0x1577);
4777put('CANADIAN_SYLLABICS_NUNAVIK_HOO, 'codepoint, 0x1578);
4778put('CANADIAN_SYLLABICS_NUNAVIK_HA, 'codepoint, 0x1579);
4779put('CANADIAN_SYLLABICS_NUNAVIK_HAA, 'codepoint, 0x157A);
4780put('CANADIAN_SYLLABICS_NUNAVIK_H, 'codepoint, 0x157B);
4781put('CANADIAN_SYLLABICS_NUNAVUT_H, 'codepoint, 0x157C);
4782put('CANADIAN_SYLLABICS_HK, 'codepoint, 0x157D);
4783put('CANADIAN_SYLLABICS_QAAI, 'codepoint, 0x157E);
4784put('CANADIAN_SYLLABICS_QI, 'codepoint, 0x157F);
4785put('CANADIAN_SYLLABICS_QII, 'codepoint, 0x1580);
4786put('CANADIAN_SYLLABICS_QO, 'codepoint, 0x1581);
4787put('CANADIAN_SYLLABICS_QOO, 'codepoint, 0x1582);
4788put('CANADIAN_SYLLABICS_QA, 'codepoint, 0x1583);
4789put('CANADIAN_SYLLABICS_QAA, 'codepoint, 0x1584);
4790put('CANADIAN_SYLLABICS_Q, 'codepoint, 0x1585);
4791put('CANADIAN_SYLLABICS_TLHE, 'codepoint, 0x1586);
4792put('CANADIAN_SYLLABICS_TLHI, 'codepoint, 0x1587);
4793put('CANADIAN_SYLLABICS_TLHO, 'codepoint, 0x1588);
4794put('CANADIAN_SYLLABICS_TLHA, 'codepoint, 0x1589);
4795put('CANADIAN_SYLLABICS_WEST_CREE_RE, 'codepoint, 0x158A);
4796put('CANADIAN_SYLLABICS_WEST_CREE_RI, 'codepoint, 0x158B);
4797put('CANADIAN_SYLLABICS_WEST_CREE_RO, 'codepoint, 0x158C);
4798put('CANADIAN_SYLLABICS_WEST_CREE_RA, 'codepoint, 0x158D);
4799put('CANADIAN_SYLLABICS_NGAAI, 'codepoint, 0x158E);
4800put('CANADIAN_SYLLABICS_NGI, 'codepoint, 0x158F);
4801put('CANADIAN_SYLLABICS_NGII, 'codepoint, 0x1590);
4802put('CANADIAN_SYLLABICS_NGO, 'codepoint, 0x1591);
4803put('CANADIAN_SYLLABICS_NGOO, 'codepoint, 0x1592);
4804put('CANADIAN_SYLLABICS_NGA, 'codepoint, 0x1593);
4805put('CANADIAN_SYLLABICS_NGAA, 'codepoint, 0x1594);
4806put('CANADIAN_SYLLABICS_NG, 'codepoint, 0x1595);
4807put('CANADIAN_SYLLABICS_NNG, 'codepoint, 0x1596);
4808put('CANADIAN_SYLLABICS_SAYISI_SHE, 'codepoint, 0x1597);
4809put('CANADIAN_SYLLABICS_SAYISI_SHI, 'codepoint, 0x1598);
4810put('CANADIAN_SYLLABICS_SAYISI_SHO, 'codepoint, 0x1599);
4811put('CANADIAN_SYLLABICS_SAYISI_SHA, 'codepoint, 0x159A);
4812put('CANADIAN_SYLLABICS_WOODS_CREE_THE, 'codepoint, 0x159B);
4813put('CANADIAN_SYLLABICS_WOODS_CREE_THI, 'codepoint, 0x159C);
4814put('CANADIAN_SYLLABICS_WOODS_CREE_THO, 'codepoint, 0x159D);
4815put('CANADIAN_SYLLABICS_WOODS_CREE_THA, 'codepoint, 0x159E);
4816put('CANADIAN_SYLLABICS_WOODS_CREE_TH, 'codepoint, 0x159F);
4817put('CANADIAN_SYLLABICS_LHI, 'codepoint, 0x15A0);
4818put('CANADIAN_SYLLABICS_LHII, 'codepoint, 0x15A1);
4819put('CANADIAN_SYLLABICS_LHO, 'codepoint, 0x15A2);
4820put('CANADIAN_SYLLABICS_LHOO, 'codepoint, 0x15A3);
4821put('CANADIAN_SYLLABICS_LHA, 'codepoint, 0x15A4);
4822put('CANADIAN_SYLLABICS_LHAA, 'codepoint, 0x15A5);
4823put('CANADIAN_SYLLABICS_LH, 'codepoint, 0x15A6);
4824put('CANADIAN_SYLLABICS_TH_CREE_THE, 'codepoint, 0x15A7);
4825put('CANADIAN_SYLLABICS_TH_CREE_THI, 'codepoint, 0x15A8);
4826put('CANADIAN_SYLLABICS_TH_CREE_THII, 'codepoint, 0x15A9);
4827put('CANADIAN_SYLLABICS_TH_CREE_THO, 'codepoint, 0x15AA);
4828put('CANADIAN_SYLLABICS_TH_CREE_THOO, 'codepoint, 0x15AB);
4829put('CANADIAN_SYLLABICS_TH_CREE_THA, 'codepoint, 0x15AC);
4830put('CANADIAN_SYLLABICS_TH_CREE_THAA, 'codepoint, 0x15AD);
4831put('CANADIAN_SYLLABICS_TH_CREE_TH, 'codepoint, 0x15AE);
4832put('CANADIAN_SYLLABICS_AIVILIK_B, 'codepoint, 0x15AF);
4833put('CANADIAN_SYLLABICS_BLACKFOOT_E, 'codepoint, 0x15B0);
4834put('CANADIAN_SYLLABICS_BLACKFOOT_I, 'codepoint, 0x15B1);
4835put('CANADIAN_SYLLABICS_BLACKFOOT_O, 'codepoint, 0x15B2);
4836put('CANADIAN_SYLLABICS_BLACKFOOT_A, 'codepoint, 0x15B3);
4837put('CANADIAN_SYLLABICS_BLACKFOOT_WE, 'codepoint, 0x15B4);
4838put('CANADIAN_SYLLABICS_BLACKFOOT_WI, 'codepoint, 0x15B5);
4839put('CANADIAN_SYLLABICS_BLACKFOOT_WO, 'codepoint, 0x15B6);
4840put('CANADIAN_SYLLABICS_BLACKFOOT_WA, 'codepoint, 0x15B7);
4841put('CANADIAN_SYLLABICS_BLACKFOOT_NE, 'codepoint, 0x15B8);
4842put('CANADIAN_SYLLABICS_BLACKFOOT_NI, 'codepoint, 0x15B9);
4843put('CANADIAN_SYLLABICS_BLACKFOOT_NO, 'codepoint, 0x15BA);
4844put('CANADIAN_SYLLABICS_BLACKFOOT_NA, 'codepoint, 0x15BB);
4845put('CANADIAN_SYLLABICS_BLACKFOOT_KE, 'codepoint, 0x15BC);
4846put('CANADIAN_SYLLABICS_BLACKFOOT_KI, 'codepoint, 0x15BD);
4847put('CANADIAN_SYLLABICS_BLACKFOOT_KO, 'codepoint, 0x15BE);
4848put('CANADIAN_SYLLABICS_BLACKFOOT_KA, 'codepoint, 0x15BF);
4849put('CANADIAN_SYLLABICS_SAYISI_HE, 'codepoint, 0x15C0);
4850put('CANADIAN_SYLLABICS_SAYISI_HI, 'codepoint, 0x15C1);
4851put('CANADIAN_SYLLABICS_SAYISI_HO, 'codepoint, 0x15C2);
4852put('CANADIAN_SYLLABICS_SAYISI_HA, 'codepoint, 0x15C3);
4853put('CANADIAN_SYLLABICS_CARRIER_GHU, 'codepoint, 0x15C4);
4854put('CANADIAN_SYLLABICS_CARRIER_GHO, 'codepoint, 0x15C5);
4855put('CANADIAN_SYLLABICS_CARRIER_GHE, 'codepoint, 0x15C6);
4856put('CANADIAN_SYLLABICS_CARRIER_GHEE, 'codepoint, 0x15C7);
4857put('CANADIAN_SYLLABICS_CARRIER_GHI, 'codepoint, 0x15C8);
4858put('CANADIAN_SYLLABICS_CARRIER_GHA, 'codepoint, 0x15C9);
4859put('CANADIAN_SYLLABICS_CARRIER_RU, 'codepoint, 0x15CA);
4860put('CANADIAN_SYLLABICS_CARRIER_RO, 'codepoint, 0x15CB);
4861put('CANADIAN_SYLLABICS_CARRIER_RE, 'codepoint, 0x15CC);
4862put('CANADIAN_SYLLABICS_CARRIER_REE, 'codepoint, 0x15CD);
4863put('CANADIAN_SYLLABICS_CARRIER_RI, 'codepoint, 0x15CE);
4864put('CANADIAN_SYLLABICS_CARRIER_RA, 'codepoint, 0x15CF);
4865put('CANADIAN_SYLLABICS_CARRIER_WU, 'codepoint, 0x15D0);
4866put('CANADIAN_SYLLABICS_CARRIER_WO, 'codepoint, 0x15D1);
4867put('CANADIAN_SYLLABICS_CARRIER_WE, 'codepoint, 0x15D2);
4868put('CANADIAN_SYLLABICS_CARRIER_WEE, 'codepoint, 0x15D3);
4869put('CANADIAN_SYLLABICS_CARRIER_WI, 'codepoint, 0x15D4);
4870put('CANADIAN_SYLLABICS_CARRIER_WA, 'codepoint, 0x15D5);
4871put('CANADIAN_SYLLABICS_CARRIER_HWU, 'codepoint, 0x15D6);
4872put('CANADIAN_SYLLABICS_CARRIER_HWO, 'codepoint, 0x15D7);
4873put('CANADIAN_SYLLABICS_CARRIER_HWE, 'codepoint, 0x15D8);
4874put('CANADIAN_SYLLABICS_CARRIER_HWEE, 'codepoint, 0x15D9);
4875put('CANADIAN_SYLLABICS_CARRIER_HWI, 'codepoint, 0x15DA);
4876put('CANADIAN_SYLLABICS_CARRIER_HWA, 'codepoint, 0x15DB);
4877put('CANADIAN_SYLLABICS_CARRIER_THU, 'codepoint, 0x15DC);
4878put('CANADIAN_SYLLABICS_CARRIER_THO, 'codepoint, 0x15DD);
4879put('CANADIAN_SYLLABICS_CARRIER_THE, 'codepoint, 0x15DE);
4880put('CANADIAN_SYLLABICS_CARRIER_THEE, 'codepoint, 0x15DF);
4881put('CANADIAN_SYLLABICS_CARRIER_THI, 'codepoint, 0x15E0);
4882put('CANADIAN_SYLLABICS_CARRIER_THA, 'codepoint, 0x15E1);
4883put('CANADIAN_SYLLABICS_CARRIER_TTU, 'codepoint, 0x15E2);
4884put('CANADIAN_SYLLABICS_CARRIER_TTO, 'codepoint, 0x15E3);
4885put('CANADIAN_SYLLABICS_CARRIER_TTE, 'codepoint, 0x15E4);
4886put('CANADIAN_SYLLABICS_CARRIER_TTEE, 'codepoint, 0x15E5);
4887put('CANADIAN_SYLLABICS_CARRIER_TTI, 'codepoint, 0x15E6);
4888put('CANADIAN_SYLLABICS_CARRIER_TTA, 'codepoint, 0x15E7);
4889put('CANADIAN_SYLLABICS_CARRIER_PU, 'codepoint, 0x15E8);
4890put('CANADIAN_SYLLABICS_CARRIER_PO, 'codepoint, 0x15E9);
4891put('CANADIAN_SYLLABICS_CARRIER_PE, 'codepoint, 0x15EA);
4892put('CANADIAN_SYLLABICS_CARRIER_PEE, 'codepoint, 0x15EB);
4893put('CANADIAN_SYLLABICS_CARRIER_PI, 'codepoint, 0x15EC);
4894put('CANADIAN_SYLLABICS_CARRIER_PA, 'codepoint, 0x15ED);
4895put('CANADIAN_SYLLABICS_CARRIER_P, 'codepoint, 0x15EE);
4896put('CANADIAN_SYLLABICS_CARRIER_GU, 'codepoint, 0x15EF);
4897put('CANADIAN_SYLLABICS_CARRIER_GO, 'codepoint, 0x15F0);
4898put('CANADIAN_SYLLABICS_CARRIER_GE, 'codepoint, 0x15F1);
4899put('CANADIAN_SYLLABICS_CARRIER_GEE, 'codepoint, 0x15F2);
4900put('CANADIAN_SYLLABICS_CARRIER_GI, 'codepoint, 0x15F3);
4901put('CANADIAN_SYLLABICS_CARRIER_GA, 'codepoint, 0x15F4);
4902put('CANADIAN_SYLLABICS_CARRIER_KHU, 'codepoint, 0x15F5);
4903put('CANADIAN_SYLLABICS_CARRIER_KHO, 'codepoint, 0x15F6);
4904put('CANADIAN_SYLLABICS_CARRIER_KHE, 'codepoint, 0x15F7);
4905put('CANADIAN_SYLLABICS_CARRIER_KHEE, 'codepoint, 0x15F8);
4906put('CANADIAN_SYLLABICS_CARRIER_KHI, 'codepoint, 0x15F9);
4907put('CANADIAN_SYLLABICS_CARRIER_KHA, 'codepoint, 0x15FA);
4908put('CANADIAN_SYLLABICS_CARRIER_KKU, 'codepoint, 0x15FB);
4909put('CANADIAN_SYLLABICS_CARRIER_KKO, 'codepoint, 0x15FC);
4910put('CANADIAN_SYLLABICS_CARRIER_KKE, 'codepoint, 0x15FD);
4911put('CANADIAN_SYLLABICS_CARRIER_KKEE, 'codepoint, 0x15FE);
4912put('CANADIAN_SYLLABICS_CARRIER_KKI, 'codepoint, 0x15FF);
4913put('CANADIAN_SYLLABICS_CARRIER_KKA, 'codepoint, 0x1600);
4914put('CANADIAN_SYLLABICS_CARRIER_KK, 'codepoint, 0x1601);
4915put('CANADIAN_SYLLABICS_CARRIER_NU, 'codepoint, 0x1602);
4916put('CANADIAN_SYLLABICS_CARRIER_NO, 'codepoint, 0x1603);
4917put('CANADIAN_SYLLABICS_CARRIER_NE, 'codepoint, 0x1604);
4918put('CANADIAN_SYLLABICS_CARRIER_NEE, 'codepoint, 0x1605);
4919put('CANADIAN_SYLLABICS_CARRIER_NI, 'codepoint, 0x1606);
4920put('CANADIAN_SYLLABICS_CARRIER_NA, 'codepoint, 0x1607);
4921put('CANADIAN_SYLLABICS_CARRIER_MU, 'codepoint, 0x1608);
4922put('CANADIAN_SYLLABICS_CARRIER_MO, 'codepoint, 0x1609);
4923put('CANADIAN_SYLLABICS_CARRIER_ME, 'codepoint, 0x160A);
4924put('CANADIAN_SYLLABICS_CARRIER_MEE, 'codepoint, 0x160B);
4925put('CANADIAN_SYLLABICS_CARRIER_MI, 'codepoint, 0x160C);
4926put('CANADIAN_SYLLABICS_CARRIER_MA, 'codepoint, 0x160D);
4927put('CANADIAN_SYLLABICS_CARRIER_YU, 'codepoint, 0x160E);
4928put('CANADIAN_SYLLABICS_CARRIER_YO, 'codepoint, 0x160F);
4929put('CANADIAN_SYLLABICS_CARRIER_YE, 'codepoint, 0x1610);
4930put('CANADIAN_SYLLABICS_CARRIER_YEE, 'codepoint, 0x1611);
4931put('CANADIAN_SYLLABICS_CARRIER_YI, 'codepoint, 0x1612);
4932put('CANADIAN_SYLLABICS_CARRIER_YA, 'codepoint, 0x1613);
4933put('CANADIAN_SYLLABICS_CARRIER_JU, 'codepoint, 0x1614);
4934put('CANADIAN_SYLLABICS_SAYISI_JU, 'codepoint, 0x1615);
4935put('CANADIAN_SYLLABICS_CARRIER_JO, 'codepoint, 0x1616);
4936put('CANADIAN_SYLLABICS_CARRIER_JE, 'codepoint, 0x1617);
4937put('CANADIAN_SYLLABICS_CARRIER_JEE, 'codepoint, 0x1618);
4938put('CANADIAN_SYLLABICS_CARRIER_JI, 'codepoint, 0x1619);
4939put('CANADIAN_SYLLABICS_SAYISI_JI, 'codepoint, 0x161A);
4940put('CANADIAN_SYLLABICS_CARRIER_JA, 'codepoint, 0x161B);
4941put('CANADIAN_SYLLABICS_CARRIER_JJU, 'codepoint, 0x161C);
4942put('CANADIAN_SYLLABICS_CARRIER_JJO, 'codepoint, 0x161D);
4943put('CANADIAN_SYLLABICS_CARRIER_JJE, 'codepoint, 0x161E);
4944put('CANADIAN_SYLLABICS_CARRIER_JJEE, 'codepoint, 0x161F);
4945put('CANADIAN_SYLLABICS_CARRIER_JJI, 'codepoint, 0x1620);
4946put('CANADIAN_SYLLABICS_CARRIER_JJA, 'codepoint, 0x1621);
4947put('CANADIAN_SYLLABICS_CARRIER_LU, 'codepoint, 0x1622);
4948put('CANADIAN_SYLLABICS_CARRIER_LO, 'codepoint, 0x1623);
4949put('CANADIAN_SYLLABICS_CARRIER_LE, 'codepoint, 0x1624);
4950put('CANADIAN_SYLLABICS_CARRIER_LEE, 'codepoint, 0x1625);
4951put('CANADIAN_SYLLABICS_CARRIER_LI, 'codepoint, 0x1626);
4952put('CANADIAN_SYLLABICS_CARRIER_LA, 'codepoint, 0x1627);
4953put('CANADIAN_SYLLABICS_CARRIER_DLU, 'codepoint, 0x1628);
4954put('CANADIAN_SYLLABICS_CARRIER_DLO, 'codepoint, 0x1629);
4955put('CANADIAN_SYLLABICS_CARRIER_DLE, 'codepoint, 0x162A);
4956put('CANADIAN_SYLLABICS_CARRIER_DLEE, 'codepoint, 0x162B);
4957put('CANADIAN_SYLLABICS_CARRIER_DLI, 'codepoint, 0x162C);
4958put('CANADIAN_SYLLABICS_CARRIER_DLA, 'codepoint, 0x162D);
4959put('CANADIAN_SYLLABICS_CARRIER_LHU, 'codepoint, 0x162E);
4960put('CANADIAN_SYLLABICS_CARRIER_LHO, 'codepoint, 0x162F);
4961put('CANADIAN_SYLLABICS_CARRIER_LHE, 'codepoint, 0x1630);
4962put('CANADIAN_SYLLABICS_CARRIER_LHEE, 'codepoint, 0x1631);
4963put('CANADIAN_SYLLABICS_CARRIER_LHI, 'codepoint, 0x1632);
4964put('CANADIAN_SYLLABICS_CARRIER_LHA, 'codepoint, 0x1633);
4965put('CANADIAN_SYLLABICS_CARRIER_TLHU, 'codepoint, 0x1634);
4966put('CANADIAN_SYLLABICS_CARRIER_TLHO, 'codepoint, 0x1635);
4967put('CANADIAN_SYLLABICS_CARRIER_TLHE, 'codepoint, 0x1636);
4968put('CANADIAN_SYLLABICS_CARRIER_TLHEE, 'codepoint, 0x1637);
4969put('CANADIAN_SYLLABICS_CARRIER_TLHI, 'codepoint, 0x1638);
4970put('CANADIAN_SYLLABICS_CARRIER_TLHA, 'codepoint, 0x1639);
4971put('CANADIAN_SYLLABICS_CARRIER_TLU, 'codepoint, 0x163A);
4972put('CANADIAN_SYLLABICS_CARRIER_TLO, 'codepoint, 0x163B);
4973put('CANADIAN_SYLLABICS_CARRIER_TLE, 'codepoint, 0x163C);
4974put('CANADIAN_SYLLABICS_CARRIER_TLEE, 'codepoint, 0x163D);
4975put('CANADIAN_SYLLABICS_CARRIER_TLI, 'codepoint, 0x163E);
4976put('CANADIAN_SYLLABICS_CARRIER_TLA, 'codepoint, 0x163F);
4977put('CANADIAN_SYLLABICS_CARRIER_ZU, 'codepoint, 0x1640);
4978put('CANADIAN_SYLLABICS_CARRIER_ZO, 'codepoint, 0x1641);
4979put('CANADIAN_SYLLABICS_CARRIER_ZE, 'codepoint, 0x1642);
4980put('CANADIAN_SYLLABICS_CARRIER_ZEE, 'codepoint, 0x1643);
4981put('CANADIAN_SYLLABICS_CARRIER_ZI, 'codepoint, 0x1644);
4982put('CANADIAN_SYLLABICS_CARRIER_ZA, 'codepoint, 0x1645);
4983put('CANADIAN_SYLLABICS_CARRIER_Z, 'codepoint, 0x1646);
4984put('CANADIAN_SYLLABICS_CARRIER_INITIAL_Z, 'codepoint, 0x1647);
4985put('CANADIAN_SYLLABICS_CARRIER_DZU, 'codepoint, 0x1648);
4986put('CANADIAN_SYLLABICS_CARRIER_DZO, 'codepoint, 0x1649);
4987put('CANADIAN_SYLLABICS_CARRIER_DZE, 'codepoint, 0x164A);
4988put('CANADIAN_SYLLABICS_CARRIER_DZEE, 'codepoint, 0x164B);
4989put('CANADIAN_SYLLABICS_CARRIER_DZI, 'codepoint, 0x164C);
4990put('CANADIAN_SYLLABICS_CARRIER_DZA, 'codepoint, 0x164D);
4991put('CANADIAN_SYLLABICS_CARRIER_SU, 'codepoint, 0x164E);
4992put('CANADIAN_SYLLABICS_CARRIER_SO, 'codepoint, 0x164F);
4993put('CANADIAN_SYLLABICS_CARRIER_SE, 'codepoint, 0x1650);
4994put('CANADIAN_SYLLABICS_CARRIER_SEE, 'codepoint, 0x1651);
4995put('CANADIAN_SYLLABICS_CARRIER_SI, 'codepoint, 0x1652);
4996put('CANADIAN_SYLLABICS_CARRIER_SA, 'codepoint, 0x1653);
4997put('CANADIAN_SYLLABICS_CARRIER_SHU, 'codepoint, 0x1654);
4998put('CANADIAN_SYLLABICS_CARRIER_SHO, 'codepoint, 0x1655);
4999put('CANADIAN_SYLLABICS_CARRIER_SHE, 'codepoint, 0x1656);
5000put('CANADIAN_SYLLABICS_CARRIER_SHEE, 'codepoint, 0x1657);
5001put('CANADIAN_SYLLABICS_CARRIER_SHI, 'codepoint, 0x1658);
5002put('CANADIAN_SYLLABICS_CARRIER_SHA, 'codepoint, 0x1659);
5003put('CANADIAN_SYLLABICS_CARRIER_SH, 'codepoint, 0x165A);
5004put('CANADIAN_SYLLABICS_CARRIER_TSU, 'codepoint, 0x165B);
5005put('CANADIAN_SYLLABICS_CARRIER_TSO, 'codepoint, 0x165C);
5006put('CANADIAN_SYLLABICS_CARRIER_TSE, 'codepoint, 0x165D);
5007put('CANADIAN_SYLLABICS_CARRIER_TSEE, 'codepoint, 0x165E);
5008put('CANADIAN_SYLLABICS_CARRIER_TSI, 'codepoint, 0x165F);
5009put('CANADIAN_SYLLABICS_CARRIER_TSA, 'codepoint, 0x1660);
5010put('CANADIAN_SYLLABICS_CARRIER_CHU, 'codepoint, 0x1661);
5011put('CANADIAN_SYLLABICS_CARRIER_CHO, 'codepoint, 0x1662);
5012put('CANADIAN_SYLLABICS_CARRIER_CHE, 'codepoint, 0x1663);
5013put('CANADIAN_SYLLABICS_CARRIER_CHEE, 'codepoint, 0x1664);
5014put('CANADIAN_SYLLABICS_CARRIER_CHI, 'codepoint, 0x1665);
5015put('CANADIAN_SYLLABICS_CARRIER_CHA, 'codepoint, 0x1666);
5016put('CANADIAN_SYLLABICS_CARRIER_TTSU, 'codepoint, 0x1667);
5017put('CANADIAN_SYLLABICS_CARRIER_TTSO, 'codepoint, 0x1668);
5018put('CANADIAN_SYLLABICS_CARRIER_TTSE, 'codepoint, 0x1669);
5019put('CANADIAN_SYLLABICS_CARRIER_TTSEE, 'codepoint, 0x166A);
5020put('CANADIAN_SYLLABICS_CARRIER_TTSI, 'codepoint, 0x166B);
5021put('CANADIAN_SYLLABICS_CARRIER_TTSA, 'codepoint, 0x166C);
5022put('CANADIAN_SYLLABICS_CHI_SIGN, 'codepoint, 0x166D);
5023put('CANADIAN_SYLLABICS_FULL_STOP, 'codepoint, 0x166E);
5024put('CANADIAN_SYLLABICS_QAI, 'codepoint, 0x166F);
5025put('CANADIAN_SYLLABICS_NGAI, 'codepoint, 0x1670);
5026put('CANADIAN_SYLLABICS_NNGI, 'codepoint, 0x1671);
5027put('CANADIAN_SYLLABICS_NNGII, 'codepoint, 0x1672);
5028put('CANADIAN_SYLLABICS_NNGO, 'codepoint, 0x1673);
5029put('CANADIAN_SYLLABICS_NNGOO, 'codepoint, 0x1674);
5030put('CANADIAN_SYLLABICS_NNGA, 'codepoint, 0x1675);
5031put('CANADIAN_SYLLABICS_NNGAA, 'codepoint, 0x1676);
5032put('CANADIAN_SYLLABICS_WOODS_CREE_THWEE, 'codepoint, 0x1677);
5033put('CANADIAN_SYLLABICS_WOODS_CREE_THWI, 'codepoint, 0x1678);
5034put('CANADIAN_SYLLABICS_WOODS_CREE_THWII, 'codepoint, 0x1679);
5035put('CANADIAN_SYLLABICS_WOODS_CREE_THWO, 'codepoint, 0x167A);
5036put('CANADIAN_SYLLABICS_WOODS_CREE_THWOO, 'codepoint, 0x167B);
5037put('CANADIAN_SYLLABICS_WOODS_CREE_THWA, 'codepoint, 0x167C);
5038put('CANADIAN_SYLLABICS_WOODS_CREE_THWAA, 'codepoint, 0x167D);
5039put('CANADIAN_SYLLABICS_WOODS_CREE_FINAL_TH, 'codepoint, 0x167E);
5040put('CANADIAN_SYLLABICS_BLACKFOOT_W, 'codepoint, 0x167F);
5041put('OGHAM_SPACE_MARK, 'codepoint, 0x1680);
5042put('OGHAM_LETTER_BEITH, 'codepoint, 0x1681);
5043put('OGHAM_LETTER_LUIS, 'codepoint, 0x1682);
5044put('OGHAM_LETTER_FEARN, 'codepoint, 0x1683);
5045put('OGHAM_LETTER_SAIL, 'codepoint, 0x1684);
5046put('OGHAM_LETTER_NION, 'codepoint, 0x1685);
5047put('OGHAM_LETTER_UATH, 'codepoint, 0x1686);
5048put('OGHAM_LETTER_DAIR, 'codepoint, 0x1687);
5049put('OGHAM_LETTER_TINNE, 'codepoint, 0x1688);
5050put('OGHAM_LETTER_COLL, 'codepoint, 0x1689);
5051put('OGHAM_LETTER_CEIRT, 'codepoint, 0x168A);
5052put('OGHAM_LETTER_MUIN, 'codepoint, 0x168B);
5053put('OGHAM_LETTER_GORT, 'codepoint, 0x168C);
5054put('OGHAM_LETTER_NGEADAL, 'codepoint, 0x168D);
5055put('OGHAM_LETTER_STRAIF, 'codepoint, 0x168E);
5056put('OGHAM_LETTER_RUIS, 'codepoint, 0x168F);
5057put('OGHAM_LETTER_AILM, 'codepoint, 0x1690);
5058put('OGHAM_LETTER_ONN, 'codepoint, 0x1691);
5059put('OGHAM_LETTER_UR, 'codepoint, 0x1692);
5060put('OGHAM_LETTER_EADHADH, 'codepoint, 0x1693);
5061put('OGHAM_LETTER_IODHADH, 'codepoint, 0x1694);
5062put('OGHAM_LETTER_EABHADH, 'codepoint, 0x1695);
5063put('OGHAM_LETTER_OR, 'codepoint, 0x1696);
5064put('OGHAM_LETTER_UILLEANN, 'codepoint, 0x1697);
5065put('OGHAM_LETTER_IFIN, 'codepoint, 0x1698);
5066put('OGHAM_LETTER_EAMHANCHOLL, 'codepoint, 0x1699);
5067put('OGHAM_LETTER_PEITH, 'codepoint, 0x169A);
5068put('OGHAM_FEATHER_MARK, 'codepoint, 0x169B);
5069put('OGHAM_REVERSED_FEATHER_MARK, 'codepoint, 0x169C);
5070put('RUNIC_LETTER_FEHU_FEOH_FE_F, 'codepoint, 0x16A0);
5071put('RUNIC_LETTER_V, 'codepoint, 0x16A1);
5072put('RUNIC_LETTER_URUZ_UR_U, 'codepoint, 0x16A2);
5073put('RUNIC_LETTER_YR, 'codepoint, 0x16A3);
5074put('RUNIC_LETTER_Y, 'codepoint, 0x16A4);
5075put('RUNIC_LETTER_W, 'codepoint, 0x16A5);
5076put('RUNIC_LETTER_THURISAZ_THURS_THORN, 'codepoint, 0x16A6);
5077put('RUNIC_LETTER_ETH, 'codepoint, 0x16A7);
5078put('RUNIC_LETTER_ANSUZ_A, 'codepoint, 0x16A8);
5079put('RUNIC_LETTER_OS_O, 'codepoint, 0x16A9);
5080put('RUNIC_LETTER_AC_A, 'codepoint, 0x16AA);
5081put('RUNIC_LETTER_AESC, 'codepoint, 0x16AB);
5082put('RUNIC_LETTER_LONG_BRANCH_OSS_O, 'codepoint, 0x16AC);
5083put('RUNIC_LETTER_SHORT_TWIG_OSS_O, 'codepoint, 0x16AD);
5084put('RUNIC_LETTER_O, 'codepoint, 0x16AE);
5085put('RUNIC_LETTER_OE, 'codepoint, 0x16AF);
5086put('RUNIC_LETTER_ON, 'codepoint, 0x16B0);
5087put('RUNIC_LETTER_RAIDO_RAD_REID_R, 'codepoint, 0x16B1);
5088put('RUNIC_LETTER_KAUNA, 'codepoint, 0x16B2);
5089put('RUNIC_LETTER_CEN, 'codepoint, 0x16B3);
5090put('RUNIC_LETTER_KAUN_K, 'codepoint, 0x16B4);
5091put('RUNIC_LETTER_G, 'codepoint, 0x16B5);
5092put('RUNIC_LETTER_ENG, 'codepoint, 0x16B6);
5093put('RUNIC_LETTER_GEBO_GYFU_G, 'codepoint, 0x16B7);
5094put('RUNIC_LETTER_GAR, 'codepoint, 0x16B8);
5095put('RUNIC_LETTER_WUNJO_WYNN_W, 'codepoint, 0x16B9);
5096put('RUNIC_LETTER_HAGLAZ_H, 'codepoint, 0x16BA);
5097put('RUNIC_LETTER_HAEGL_H, 'codepoint, 0x16BB);
5098put('RUNIC_LETTER_LONG_BRANCH_HAGALL_H, 'codepoint, 0x16BC);
5099put('RUNIC_LETTER_SHORT_TWIG_HAGALL_H, 'codepoint, 0x16BD);
5100put('RUNIC_LETTER_NAUDIZ_NYD_NAUD_N, 'codepoint, 0x16BE);
5101put('RUNIC_LETTER_SHORT_TWIG_NAUD_N, 'codepoint, 0x16BF);
5102put('RUNIC_LETTER_DOTTED_N, 'codepoint, 0x16C0);
5103put('RUNIC_LETTER_ISAZ_IS_ISS_I, 'codepoint, 0x16C1);
5104put('RUNIC_LETTER_E, 'codepoint, 0x16C2);
5105put('RUNIC_LETTER_JERAN_J, 'codepoint, 0x16C3);
5106put('RUNIC_LETTER_GER, 'codepoint, 0x16C4);
5107put('RUNIC_LETTER_LONG_BRANCH_AR_AE, 'codepoint, 0x16C5);
5108put('RUNIC_LETTER_SHORT_TWIG_AR_A, 'codepoint, 0x16C6);
5109put('RUNIC_LETTER_IWAZ_EOH, 'codepoint, 0x16C7);
5110put('RUNIC_LETTER_PERTHO_PEORTH_P, 'codepoint, 0x16C8);
5111put('RUNIC_LETTER_ALGIZ_EOLHX, 'codepoint, 0x16C9);
5112put('RUNIC_LETTER_SOWILO_S, 'codepoint, 0x16CA);
5113put('RUNIC_LETTER_SIGEL_LONG_BRANCH_SOL_S, 'codepoint, 0x16CB);
5114put('RUNIC_LETTER_SHORT_TWIG_SOL_S, 'codepoint, 0x16CC);
5115put('RUNIC_LETTER_C, 'codepoint, 0x16CD);
5116put('RUNIC_LETTER_Z, 'codepoint, 0x16CE);
5117put('RUNIC_LETTER_TIWAZ_TIR_TYR_T, 'codepoint, 0x16CF);
5118put('RUNIC_LETTER_SHORT_TWIG_TYR_T, 'codepoint, 0x16D0);
5119put('RUNIC_LETTER_D, 'codepoint, 0x16D1);
5120put('RUNIC_LETTER_BERKANAN_BEORC_BJARKAN_B, 'codepoint, 0x16D2);
5121put('RUNIC_LETTER_SHORT_TWIG_BJARKAN_B, 'codepoint, 0x16D3);
5122put('RUNIC_LETTER_DOTTED_P, 'codepoint, 0x16D4);
5123put('RUNIC_LETTER_OPEN_P, 'codepoint, 0x16D5);
5124put('RUNIC_LETTER_EHWAZ_EH_E, 'codepoint, 0x16D6);
5125put('RUNIC_LETTER_MANNAZ_MAN_M, 'codepoint, 0x16D7);
5126put('RUNIC_LETTER_LONG_BRANCH_MADR_M, 'codepoint, 0x16D8);
5127put('RUNIC_LETTER_SHORT_TWIG_MADR_M, 'codepoint, 0x16D9);
5128put('RUNIC_LETTER_LAUKAZ_LAGU_LOGR_L, 'codepoint, 0x16DA);
5129put('RUNIC_LETTER_DOTTED_L, 'codepoint, 0x16DB);
5130put('RUNIC_LETTER_INGWAZ, 'codepoint, 0x16DC);
5131put('RUNIC_LETTER_ING, 'codepoint, 0x16DD);
5132put('RUNIC_LETTER_DAGAZ_DAEG_D, 'codepoint, 0x16DE);
5133put('RUNIC_LETTER_OTHALAN_ETHEL_O, 'codepoint, 0x16DF);
5134put('RUNIC_LETTER_EAR, 'codepoint, 0x16E0);
5135put('RUNIC_LETTER_IOR, 'codepoint, 0x16E1);
5136put('RUNIC_LETTER_CWEORTH, 'codepoint, 0x16E2);
5137put('RUNIC_LETTER_CALC, 'codepoint, 0x16E3);
5138put('RUNIC_LETTER_CEALC, 'codepoint, 0x16E4);
5139put('RUNIC_LETTER_STAN, 'codepoint, 0x16E5);
5140put('RUNIC_LETTER_LONG_BRANCH_YR, 'codepoint, 0x16E6);
5141put('RUNIC_LETTER_SHORT_TWIG_YR, 'codepoint, 0x16E7);
5142put('RUNIC_LETTER_ICELANDIC_YR, 'codepoint, 0x16E8);
5143put('RUNIC_LETTER_Q, 'codepoint, 0x16E9);
5144put('RUNIC_LETTER_X, 'codepoint, 0x16EA);
5145put('RUNIC_SINGLE_PUNCTUATION, 'codepoint, 0x16EB);
5146put('RUNIC_MULTIPLE_PUNCTUATION, 'codepoint, 0x16EC);
5147put('RUNIC_CROSS_PUNCTUATION, 'codepoint, 0x16ED);
5148put('RUNIC_ARLAUG_SYMBOL, 'codepoint, 0x16EE);
5149put('RUNIC_TVIMADUR_SYMBOL, 'codepoint, 0x16EF);
5150put('RUNIC_BELGTHOR_SYMBOL, 'codepoint, 0x16F0);
5151put('RUNIC_LETTER_K, 'codepoint, 0x16F1);
5152put('RUNIC_LETTER_SH, 'codepoint, 0x16F2);
5153put('RUNIC_LETTER_OO, 'codepoint, 0x16F3);
5154put('RUNIC_LETTER_FRANKS_CASKET_OS, 'codepoint, 0x16F4);
5155put('RUNIC_LETTER_FRANKS_CASKET_IS, 'codepoint, 0x16F5);
5156put('RUNIC_LETTER_FRANKS_CASKET_EH, 'codepoint, 0x16F6);
5157put('RUNIC_LETTER_FRANKS_CASKET_AC, 'codepoint, 0x16F7);
5158put('RUNIC_LETTER_FRANKS_CASKET_AESC, 'codepoint, 0x16F8);
5159put('TAGALOG_LETTER_A, 'codepoint, 0x1700);
5160put('TAGALOG_LETTER_I, 'codepoint, 0x1701);
5161put('TAGALOG_LETTER_U, 'codepoint, 0x1702);
5162put('TAGALOG_LETTER_KA, 'codepoint, 0x1703);
5163put('TAGALOG_LETTER_GA, 'codepoint, 0x1704);
5164put('TAGALOG_LETTER_NGA, 'codepoint, 0x1705);
5165put('TAGALOG_LETTER_TA, 'codepoint, 0x1706);
5166put('TAGALOG_LETTER_DA, 'codepoint, 0x1707);
5167put('TAGALOG_LETTER_NA, 'codepoint, 0x1708);
5168put('TAGALOG_LETTER_PA, 'codepoint, 0x1709);
5169put('TAGALOG_LETTER_BA, 'codepoint, 0x170A);
5170put('TAGALOG_LETTER_MA, 'codepoint, 0x170B);
5171put('TAGALOG_LETTER_YA, 'codepoint, 0x170C);
5172put('TAGALOG_LETTER_LA, 'codepoint, 0x170E);
5173put('TAGALOG_LETTER_WA, 'codepoint, 0x170F);
5174put('TAGALOG_LETTER_SA, 'codepoint, 0x1710);
5175put('TAGALOG_LETTER_HA, 'codepoint, 0x1711);
5176put('TAGALOG_VOWEL_SIGN_I, 'codepoint, 0x1712);
5177put('TAGALOG_VOWEL_SIGN_U, 'codepoint, 0x1713);
5178put('TAGALOG_SIGN_VIRAMA, 'codepoint, 0x1714);
5179put('HANUNOO_LETTER_A, 'codepoint, 0x1720);
5180put('HANUNOO_LETTER_I, 'codepoint, 0x1721);
5181put('HANUNOO_LETTER_U, 'codepoint, 0x1722);
5182put('HANUNOO_LETTER_KA, 'codepoint, 0x1723);
5183put('HANUNOO_LETTER_GA, 'codepoint, 0x1724);
5184put('HANUNOO_LETTER_NGA, 'codepoint, 0x1725);
5185put('HANUNOO_LETTER_TA, 'codepoint, 0x1726);
5186put('HANUNOO_LETTER_DA, 'codepoint, 0x1727);
5187put('HANUNOO_LETTER_NA, 'codepoint, 0x1728);
5188put('HANUNOO_LETTER_PA, 'codepoint, 0x1729);
5189put('HANUNOO_LETTER_BA, 'codepoint, 0x172A);
5190put('HANUNOO_LETTER_MA, 'codepoint, 0x172B);
5191put('HANUNOO_LETTER_YA, 'codepoint, 0x172C);
5192put('HANUNOO_LETTER_RA, 'codepoint, 0x172D);
5193put('HANUNOO_LETTER_LA, 'codepoint, 0x172E);
5194put('HANUNOO_LETTER_WA, 'codepoint, 0x172F);
5195put('HANUNOO_LETTER_SA, 'codepoint, 0x1730);
5196put('HANUNOO_LETTER_HA, 'codepoint, 0x1731);
5197put('HANUNOO_VOWEL_SIGN_I, 'codepoint, 0x1732);
5198put('HANUNOO_VOWEL_SIGN_U, 'codepoint, 0x1733);
5199put('HANUNOO_SIGN_PAMUDPOD, 'codepoint, 0x1734);
5200put('PHILIPPINE_SINGLE_PUNCTUATION, 'codepoint, 0x1735);
5201put('PHILIPPINE_DOUBLE_PUNCTUATION, 'codepoint, 0x1736);
5202put('BUHID_LETTER_A, 'codepoint, 0x1740);
5203put('BUHID_LETTER_I, 'codepoint, 0x1741);
5204put('BUHID_LETTER_U, 'codepoint, 0x1742);
5205put('BUHID_LETTER_KA, 'codepoint, 0x1743);
5206put('BUHID_LETTER_GA, 'codepoint, 0x1744);
5207put('BUHID_LETTER_NGA, 'codepoint, 0x1745);
5208put('BUHID_LETTER_TA, 'codepoint, 0x1746);
5209put('BUHID_LETTER_DA, 'codepoint, 0x1747);
5210put('BUHID_LETTER_NA, 'codepoint, 0x1748);
5211put('BUHID_LETTER_PA, 'codepoint, 0x1749);
5212put('BUHID_LETTER_BA, 'codepoint, 0x174A);
5213put('BUHID_LETTER_MA, 'codepoint, 0x174B);
5214put('BUHID_LETTER_YA, 'codepoint, 0x174C);
5215put('BUHID_LETTER_RA, 'codepoint, 0x174D);
5216put('BUHID_LETTER_LA, 'codepoint, 0x174E);
5217put('BUHID_LETTER_WA, 'codepoint, 0x174F);
5218put('BUHID_LETTER_SA, 'codepoint, 0x1750);
5219put('BUHID_LETTER_HA, 'codepoint, 0x1751);
5220put('BUHID_VOWEL_SIGN_I, 'codepoint, 0x1752);
5221put('BUHID_VOWEL_SIGN_U, 'codepoint, 0x1753);
5222put('TAGBANWA_LETTER_A, 'codepoint, 0x1760);
5223put('TAGBANWA_LETTER_I, 'codepoint, 0x1761);
5224put('TAGBANWA_LETTER_U, 'codepoint, 0x1762);
5225put('TAGBANWA_LETTER_KA, 'codepoint, 0x1763);
5226put('TAGBANWA_LETTER_GA, 'codepoint, 0x1764);
5227put('TAGBANWA_LETTER_NGA, 'codepoint, 0x1765);
5228put('TAGBANWA_LETTER_TA, 'codepoint, 0x1766);
5229put('TAGBANWA_LETTER_DA, 'codepoint, 0x1767);
5230put('TAGBANWA_LETTER_NA, 'codepoint, 0x1768);
5231put('TAGBANWA_LETTER_PA, 'codepoint, 0x1769);
5232put('TAGBANWA_LETTER_BA, 'codepoint, 0x176A);
5233put('TAGBANWA_LETTER_MA, 'codepoint, 0x176B);
5234put('TAGBANWA_LETTER_YA, 'codepoint, 0x176C);
5235put('TAGBANWA_LETTER_LA, 'codepoint, 0x176E);
5236put('TAGBANWA_LETTER_WA, 'codepoint, 0x176F);
5237put('TAGBANWA_LETTER_SA, 'codepoint, 0x1770);
5238put('TAGBANWA_VOWEL_SIGN_I, 'codepoint, 0x1772);
5239put('TAGBANWA_VOWEL_SIGN_U, 'codepoint, 0x1773);
5240put('KHMER_LETTER_KA, 'codepoint, 0x1780);
5241put('KHMER_LETTER_KHA, 'codepoint, 0x1781);
5242put('KHMER_LETTER_KO, 'codepoint, 0x1782);
5243put('KHMER_LETTER_KHO, 'codepoint, 0x1783);
5244put('KHMER_LETTER_NGO, 'codepoint, 0x1784);
5245put('KHMER_LETTER_CA, 'codepoint, 0x1785);
5246put('KHMER_LETTER_CHA, 'codepoint, 0x1786);
5247put('KHMER_LETTER_CO, 'codepoint, 0x1787);
5248put('KHMER_LETTER_CHO, 'codepoint, 0x1788);
5249put('KHMER_LETTER_NYO, 'codepoint, 0x1789);
5250put('KHMER_LETTER_DA, 'codepoint, 0x178A);
5251put('KHMER_LETTER_TTHA, 'codepoint, 0x178B);
5252put('KHMER_LETTER_DO, 'codepoint, 0x178C);
5253put('KHMER_LETTER_TTHO, 'codepoint, 0x178D);
5254put('KHMER_LETTER_NNO, 'codepoint, 0x178E);
5255put('KHMER_LETTER_TA, 'codepoint, 0x178F);
5256put('KHMER_LETTER_THA, 'codepoint, 0x1790);
5257put('KHMER_LETTER_TO, 'codepoint, 0x1791);
5258put('KHMER_LETTER_THO, 'codepoint, 0x1792);
5259put('KHMER_LETTER_NO, 'codepoint, 0x1793);
5260put('KHMER_LETTER_BA, 'codepoint, 0x1794);
5261put('KHMER_LETTER_PHA, 'codepoint, 0x1795);
5262put('KHMER_LETTER_PO, 'codepoint, 0x1796);
5263put('KHMER_LETTER_PHO, 'codepoint, 0x1797);
5264put('KHMER_LETTER_MO, 'codepoint, 0x1798);
5265put('KHMER_LETTER_YO, 'codepoint, 0x1799);
5266put('KHMER_LETTER_RO, 'codepoint, 0x179A);
5267put('KHMER_LETTER_LO, 'codepoint, 0x179B);
5268put('KHMER_LETTER_VO, 'codepoint, 0x179C);
5269put('KHMER_LETTER_SHA, 'codepoint, 0x179D);
5270put('KHMER_LETTER_SSO, 'codepoint, 0x179E);
5271put('KHMER_LETTER_SA, 'codepoint, 0x179F);
5272put('KHMER_LETTER_HA, 'codepoint, 0x17A0);
5273put('KHMER_LETTER_LA, 'codepoint, 0x17A1);
5274put('KHMER_LETTER_QA, 'codepoint, 0x17A2);
5275put('KHMER_INDEPENDENT_VOWEL_QAQ, 'codepoint, 0x17A3);
5276put('KHMER_INDEPENDENT_VOWEL_QAA, 'codepoint, 0x17A4);
5277put('KHMER_INDEPENDENT_VOWEL_QI, 'codepoint, 0x17A5);
5278put('KHMER_INDEPENDENT_VOWEL_QII, 'codepoint, 0x17A6);
5279put('KHMER_INDEPENDENT_VOWEL_QU, 'codepoint, 0x17A7);
5280put('KHMER_INDEPENDENT_VOWEL_QUK, 'codepoint, 0x17A8);
5281put('KHMER_INDEPENDENT_VOWEL_QUU, 'codepoint, 0x17A9);
5282put('KHMER_INDEPENDENT_VOWEL_QUUV, 'codepoint, 0x17AA);
5283put('KHMER_INDEPENDENT_VOWEL_RY, 'codepoint, 0x17AB);
5284put('KHMER_INDEPENDENT_VOWEL_RYY, 'codepoint, 0x17AC);
5285put('KHMER_INDEPENDENT_VOWEL_LY, 'codepoint, 0x17AD);
5286put('KHMER_INDEPENDENT_VOWEL_LYY, 'codepoint, 0x17AE);
5287put('KHMER_INDEPENDENT_VOWEL_QE, 'codepoint, 0x17AF);
5288put('KHMER_INDEPENDENT_VOWEL_QAI, 'codepoint, 0x17B0);
5289put('KHMER_INDEPENDENT_VOWEL_QOO_TYPE_ONE, 'codepoint, 0x17B1);
5290put('KHMER_INDEPENDENT_VOWEL_QOO_TYPE_TWO, 'codepoint, 0x17B2);
5291put('KHMER_INDEPENDENT_VOWEL_QAU, 'codepoint, 0x17B3);
5292put('KHMER_VOWEL_INHERENT_AQ, 'codepoint, 0x17B4);
5293put('KHMER_VOWEL_INHERENT_AA, 'codepoint, 0x17B5);
5294put('KHMER_VOWEL_SIGN_AA, 'codepoint, 0x17B6);
5295put('KHMER_VOWEL_SIGN_I, 'codepoint, 0x17B7);
5296put('KHMER_VOWEL_SIGN_II, 'codepoint, 0x17B8);
5297put('KHMER_VOWEL_SIGN_Y, 'codepoint, 0x17B9);
5298put('KHMER_VOWEL_SIGN_YY, 'codepoint, 0x17BA);
5299put('KHMER_VOWEL_SIGN_U, 'codepoint, 0x17BB);
5300put('KHMER_VOWEL_SIGN_UU, 'codepoint, 0x17BC);
5301put('KHMER_VOWEL_SIGN_UA, 'codepoint, 0x17BD);
5302put('KHMER_VOWEL_SIGN_OE, 'codepoint, 0x17BE);
5303put('KHMER_VOWEL_SIGN_YA, 'codepoint, 0x17BF);
5304put('KHMER_VOWEL_SIGN_IE, 'codepoint, 0x17C0);
5305put('KHMER_VOWEL_SIGN_E, 'codepoint, 0x17C1);
5306put('KHMER_VOWEL_SIGN_AE, 'codepoint, 0x17C2);
5307put('KHMER_VOWEL_SIGN_AI, 'codepoint, 0x17C3);
5308put('KHMER_VOWEL_SIGN_OO, 'codepoint, 0x17C4);
5309put('KHMER_VOWEL_SIGN_AU, 'codepoint, 0x17C5);
5310put('KHMER_SIGN_NIKAHIT, 'codepoint, 0x17C6);
5311put('KHMER_SIGN_REAHMUK, 'codepoint, 0x17C7);
5312put('KHMER_SIGN_YUUKALEAPINTU, 'codepoint, 0x17C8);
5313put('KHMER_SIGN_MUUSIKATOAN, 'codepoint, 0x17C9);
5314put('KHMER_SIGN_TRIISAP, 'codepoint, 0x17CA);
5315put('KHMER_SIGN_BANTOC, 'codepoint, 0x17CB);
5316put('KHMER_SIGN_ROBAT, 'codepoint, 0x17CC);
5317put('KHMER_SIGN_TOANDAKHIAT, 'codepoint, 0x17CD);
5318put('KHMER_SIGN_KAKABAT, 'codepoint, 0x17CE);
5319put('KHMER_SIGN_AHSDA, 'codepoint, 0x17CF);
5320put('KHMER_SIGN_SAMYOK_SANNYA, 'codepoint, 0x17D0);
5321put('KHMER_SIGN_VIRIAM, 'codepoint, 0x17D1);
5322put('KHMER_SIGN_COENG, 'codepoint, 0x17D2);
5323put('KHMER_SIGN_BATHAMASAT, 'codepoint, 0x17D3);
5324put('KHMER_SIGN_KHAN, 'codepoint, 0x17D4);
5325put('KHMER_SIGN_BARIYOOSAN, 'codepoint, 0x17D5);
5326put('KHMER_SIGN_CAMNUC_PII_KUUH, 'codepoint, 0x17D6);
5327put('KHMER_SIGN_LEK_TOO, 'codepoint, 0x17D7);
5328put('KHMER_SIGN_BEYYAL, 'codepoint, 0x17D8);
5329put('KHMER_SIGN_PHNAEK_MUAN, 'codepoint, 0x17D9);
5330put('KHMER_SIGN_KOOMUUT, 'codepoint, 0x17DA);
5331put('KHMER_CURRENCY_SYMBOL_RIEL, 'codepoint, 0x17DB);
5332put('KHMER_SIGN_AVAKRAHASANYA, 'codepoint, 0x17DC);
5333put('KHMER_SIGN_ATTHACAN, 'codepoint, 0x17DD);
5334put('KHMER_DIGIT_ZERO, 'codepoint, 0x17E0);
5335put('KHMER_DIGIT_ONE, 'codepoint, 0x17E1);
5336put('KHMER_DIGIT_TWO, 'codepoint, 0x17E2);
5337put('KHMER_DIGIT_THREE, 'codepoint, 0x17E3);
5338put('KHMER_DIGIT_FOUR, 'codepoint, 0x17E4);
5339put('KHMER_DIGIT_FIVE, 'codepoint, 0x17E5);
5340put('KHMER_DIGIT_SIX, 'codepoint, 0x17E6);
5341put('KHMER_DIGIT_SEVEN, 'codepoint, 0x17E7);
5342put('KHMER_DIGIT_EIGHT, 'codepoint, 0x17E8);
5343put('KHMER_DIGIT_NINE, 'codepoint, 0x17E9);
5344put('KHMER_SYMBOL_LEK_ATTAK_SON, 'codepoint, 0x17F0);
5345put('KHMER_SYMBOL_LEK_ATTAK_MUOY, 'codepoint, 0x17F1);
5346put('KHMER_SYMBOL_LEK_ATTAK_PII, 'codepoint, 0x17F2);
5347put('KHMER_SYMBOL_LEK_ATTAK_BEI, 'codepoint, 0x17F3);
5348put('KHMER_SYMBOL_LEK_ATTAK_BUON, 'codepoint, 0x17F4);
5349put('KHMER_SYMBOL_LEK_ATTAK_PRAM, 'codepoint, 0x17F5);
5350put('KHMER_SYMBOL_LEK_ATTAK_PRAM_MUOY, 'codepoint, 0x17F6);
5351put('KHMER_SYMBOL_LEK_ATTAK_PRAM_PII, 'codepoint, 0x17F7);
5352put('KHMER_SYMBOL_LEK_ATTAK_PRAM_BEI, 'codepoint, 0x17F8);
5353put('KHMER_SYMBOL_LEK_ATTAK_PRAM_BUON, 'codepoint, 0x17F9);
5354put('MONGOLIAN_BIRGA, 'codepoint, 0x1800);
5355put('MONGOLIAN_ELLIPSIS, 'codepoint, 0x1801);
5356put('MONGOLIAN_COMMA, 'codepoint, 0x1802);
5357put('MONGOLIAN_FULL_STOP, 'codepoint, 0x1803);
5358put('MONGOLIAN_COLON, 'codepoint, 0x1804);
5359put('MONGOLIAN_FOUR_DOTS, 'codepoint, 0x1805);
5360put('MONGOLIAN_TODO_SOFT_HYPHEN, 'codepoint, 0x1806);
5361put('MONGOLIAN_SIBE_SYLLABLE_BOUNDARY_MARKER, 'codepoint, 0x1807);
5362put('MONGOLIAN_MANCHU_COMMA, 'codepoint, 0x1808);
5363put('MONGOLIAN_MANCHU_FULL_STOP, 'codepoint, 0x1809);
5364put('MONGOLIAN_NIRUGU, 'codepoint, 0x180A);
5365put('MONGOLIAN_FREE_VARIATION_SELECTOR_ONE, 'codepoint, 0x180B);
5366put('MONGOLIAN_FREE_VARIATION_SELECTOR_TWO, 'codepoint, 0x180C);
5367put('MONGOLIAN_FREE_VARIATION_SELECTOR_THREE, 'codepoint, 0x180D);
5368put('MONGOLIAN_VOWEL_SEPARATOR, 'codepoint, 0x180E);
5369put('MONGOLIAN_DIGIT_ZERO, 'codepoint, 0x1810);
5370put('MONGOLIAN_DIGIT_ONE, 'codepoint, 0x1811);
5371put('MONGOLIAN_DIGIT_TWO, 'codepoint, 0x1812);
5372put('MONGOLIAN_DIGIT_THREE, 'codepoint, 0x1813);
5373put('MONGOLIAN_DIGIT_FOUR, 'codepoint, 0x1814);
5374put('MONGOLIAN_DIGIT_FIVE, 'codepoint, 0x1815);
5375put('MONGOLIAN_DIGIT_SIX, 'codepoint, 0x1816);
5376put('MONGOLIAN_DIGIT_SEVEN, 'codepoint, 0x1817);
5377put('MONGOLIAN_DIGIT_EIGHT, 'codepoint, 0x1818);
5378put('MONGOLIAN_DIGIT_NINE, 'codepoint, 0x1819);
5379put('MONGOLIAN_LETTER_A, 'codepoint, 0x1820);
5380put('MONGOLIAN_LETTER_E, 'codepoint, 0x1821);
5381put('MONGOLIAN_LETTER_I, 'codepoint, 0x1822);
5382put('MONGOLIAN_LETTER_O, 'codepoint, 0x1823);
5383put('MONGOLIAN_LETTER_U, 'codepoint, 0x1824);
5384put('MONGOLIAN_LETTER_OE, 'codepoint, 0x1825);
5385put('MONGOLIAN_LETTER_UE, 'codepoint, 0x1826);
5386put('MONGOLIAN_LETTER_EE, 'codepoint, 0x1827);
5387put('MONGOLIAN_LETTER_NA, 'codepoint, 0x1828);
5388put('MONGOLIAN_LETTER_ANG, 'codepoint, 0x1829);
5389put('MONGOLIAN_LETTER_BA, 'codepoint, 0x182A);
5390put('MONGOLIAN_LETTER_PA, 'codepoint, 0x182B);
5391put('MONGOLIAN_LETTER_QA, 'codepoint, 0x182C);
5392put('MONGOLIAN_LETTER_GA, 'codepoint, 0x182D);
5393put('MONGOLIAN_LETTER_MA, 'codepoint, 0x182E);
5394put('MONGOLIAN_LETTER_LA, 'codepoint, 0x182F);
5395put('MONGOLIAN_LETTER_SA, 'codepoint, 0x1830);
5396put('MONGOLIAN_LETTER_SHA, 'codepoint, 0x1831);
5397put('MONGOLIAN_LETTER_TA, 'codepoint, 0x1832);
5398put('MONGOLIAN_LETTER_DA, 'codepoint, 0x1833);
5399put('MONGOLIAN_LETTER_CHA, 'codepoint, 0x1834);
5400put('MONGOLIAN_LETTER_JA, 'codepoint, 0x1835);
5401put('MONGOLIAN_LETTER_YA, 'codepoint, 0x1836);
5402put('MONGOLIAN_LETTER_RA, 'codepoint, 0x1837);
5403put('MONGOLIAN_LETTER_WA, 'codepoint, 0x1838);
5404put('MONGOLIAN_LETTER_FA, 'codepoint, 0x1839);
5405put('MONGOLIAN_LETTER_KA, 'codepoint, 0x183A);
5406put('MONGOLIAN_LETTER_KHA, 'codepoint, 0x183B);
5407put('MONGOLIAN_LETTER_TSA, 'codepoint, 0x183C);
5408put('MONGOLIAN_LETTER_ZA, 'codepoint, 0x183D);
5409put('MONGOLIAN_LETTER_HAA, 'codepoint, 0x183E);
5410put('MONGOLIAN_LETTER_ZRA, 'codepoint, 0x183F);
5411put('MONGOLIAN_LETTER_LHA, 'codepoint, 0x1840);
5412put('MONGOLIAN_LETTER_ZHI, 'codepoint, 0x1841);
5413put('MONGOLIAN_LETTER_CHI, 'codepoint, 0x1842);
5414put('MONGOLIAN_LETTER_TODO_LONG_VOWEL_SIGN, 'codepoint, 0x1843);
5415put('MONGOLIAN_LETTER_TODO_E, 'codepoint, 0x1844);
5416put('MONGOLIAN_LETTER_TODO_I, 'codepoint, 0x1845);
5417put('MONGOLIAN_LETTER_TODO_O, 'codepoint, 0x1846);
5418put('MONGOLIAN_LETTER_TODO_U, 'codepoint, 0x1847);
5419put('MONGOLIAN_LETTER_TODO_OE, 'codepoint, 0x1848);
5420put('MONGOLIAN_LETTER_TODO_UE, 'codepoint, 0x1849);
5421put('MONGOLIAN_LETTER_TODO_ANG, 'codepoint, 0x184A);
5422put('MONGOLIAN_LETTER_TODO_BA, 'codepoint, 0x184B);
5423put('MONGOLIAN_LETTER_TODO_PA, 'codepoint, 0x184C);
5424put('MONGOLIAN_LETTER_TODO_QA, 'codepoint, 0x184D);
5425put('MONGOLIAN_LETTER_TODO_GA, 'codepoint, 0x184E);
5426put('MONGOLIAN_LETTER_TODO_MA, 'codepoint, 0x184F);
5427put('MONGOLIAN_LETTER_TODO_TA, 'codepoint, 0x1850);
5428put('MONGOLIAN_LETTER_TODO_DA, 'codepoint, 0x1851);
5429put('MONGOLIAN_LETTER_TODO_CHA, 'codepoint, 0x1852);
5430put('MONGOLIAN_LETTER_TODO_JA, 'codepoint, 0x1853);
5431put('MONGOLIAN_LETTER_TODO_TSA, 'codepoint, 0x1854);
5432put('MONGOLIAN_LETTER_TODO_YA, 'codepoint, 0x1855);
5433put('MONGOLIAN_LETTER_TODO_WA, 'codepoint, 0x1856);
5434put('MONGOLIAN_LETTER_TODO_KA, 'codepoint, 0x1857);
5435put('MONGOLIAN_LETTER_TODO_GAA, 'codepoint, 0x1858);
5436put('MONGOLIAN_LETTER_TODO_HAA, 'codepoint, 0x1859);
5437put('MONGOLIAN_LETTER_TODO_JIA, 'codepoint, 0x185A);
5438put('MONGOLIAN_LETTER_TODO_NIA, 'codepoint, 0x185B);
5439put('MONGOLIAN_LETTER_TODO_DZA, 'codepoint, 0x185C);
5440put('MONGOLIAN_LETTER_SIBE_E, 'codepoint, 0x185D);
5441put('MONGOLIAN_LETTER_SIBE_I, 'codepoint, 0x185E);
5442put('MONGOLIAN_LETTER_SIBE_IY, 'codepoint, 0x185F);
5443put('MONGOLIAN_LETTER_SIBE_UE, 'codepoint, 0x1860);
5444put('MONGOLIAN_LETTER_SIBE_U, 'codepoint, 0x1861);
5445put('MONGOLIAN_LETTER_SIBE_ANG, 'codepoint, 0x1862);
5446put('MONGOLIAN_LETTER_SIBE_KA, 'codepoint, 0x1863);
5447put('MONGOLIAN_LETTER_SIBE_GA, 'codepoint, 0x1864);
5448put('MONGOLIAN_LETTER_SIBE_HA, 'codepoint, 0x1865);
5449put('MONGOLIAN_LETTER_SIBE_PA, 'codepoint, 0x1866);
5450put('MONGOLIAN_LETTER_SIBE_SHA, 'codepoint, 0x1867);
5451put('MONGOLIAN_LETTER_SIBE_TA, 'codepoint, 0x1868);
5452put('MONGOLIAN_LETTER_SIBE_DA, 'codepoint, 0x1869);
5453put('MONGOLIAN_LETTER_SIBE_JA, 'codepoint, 0x186A);
5454put('MONGOLIAN_LETTER_SIBE_FA, 'codepoint, 0x186B);
5455put('MONGOLIAN_LETTER_SIBE_GAA, 'codepoint, 0x186C);
5456put('MONGOLIAN_LETTER_SIBE_HAA, 'codepoint, 0x186D);
5457put('MONGOLIAN_LETTER_SIBE_TSA, 'codepoint, 0x186E);
5458put('MONGOLIAN_LETTER_SIBE_ZA, 'codepoint, 0x186F);
5459put('MONGOLIAN_LETTER_SIBE_RAA, 'codepoint, 0x1870);
5460put('MONGOLIAN_LETTER_SIBE_CHA, 'codepoint, 0x1871);
5461put('MONGOLIAN_LETTER_SIBE_ZHA, 'codepoint, 0x1872);
5462put('MONGOLIAN_LETTER_MANCHU_I, 'codepoint, 0x1873);
5463put('MONGOLIAN_LETTER_MANCHU_KA, 'codepoint, 0x1874);
5464put('MONGOLIAN_LETTER_MANCHU_RA, 'codepoint, 0x1875);
5465put('MONGOLIAN_LETTER_MANCHU_FA, 'codepoint, 0x1876);
5466put('MONGOLIAN_LETTER_MANCHU_ZHA, 'codepoint, 0x1877);
5467put('MONGOLIAN_LETTER_ALI_GALI_ANUSVARA_ONE, 'codepoint, 0x1880);
5468put('MONGOLIAN_LETTER_ALI_GALI_VISARGA_ONE, 'codepoint, 0x1881);
5469put('MONGOLIAN_LETTER_ALI_GALI_DAMARU, 'codepoint, 0x1882);
5470put('MONGOLIAN_LETTER_ALI_GALI_UBADAMA, 'codepoint, 0x1883);
5471put('MONGOLIAN_LETTER_ALI_GALI_INVERTED_UBADAMA, 'codepoint, 0x1884);
5472put('MONGOLIAN_LETTER_ALI_GALI_BALUDA, 'codepoint, 0x1885);
5473put('MONGOLIAN_LETTER_ALI_GALI_THREE_BALUDA, 'codepoint, 0x1886);
5474put('MONGOLIAN_LETTER_ALI_GALI_A, 'codepoint, 0x1887);
5475put('MONGOLIAN_LETTER_ALI_GALI_I, 'codepoint, 0x1888);
5476put('MONGOLIAN_LETTER_ALI_GALI_KA, 'codepoint, 0x1889);
5477put('MONGOLIAN_LETTER_ALI_GALI_NGA, 'codepoint, 0x188A);
5478put('MONGOLIAN_LETTER_ALI_GALI_CA, 'codepoint, 0x188B);
5479put('MONGOLIAN_LETTER_ALI_GALI_TTA, 'codepoint, 0x188C);
5480put('MONGOLIAN_LETTER_ALI_GALI_TTHA, 'codepoint, 0x188D);
5481put('MONGOLIAN_LETTER_ALI_GALI_DDA, 'codepoint, 0x188E);
5482put('MONGOLIAN_LETTER_ALI_GALI_NNA, 'codepoint, 0x188F);
5483put('MONGOLIAN_LETTER_ALI_GALI_TA, 'codepoint, 0x1890);
5484put('MONGOLIAN_LETTER_ALI_GALI_DA, 'codepoint, 0x1891);
5485put('MONGOLIAN_LETTER_ALI_GALI_PA, 'codepoint, 0x1892);
5486put('MONGOLIAN_LETTER_ALI_GALI_PHA, 'codepoint, 0x1893);
5487put('MONGOLIAN_LETTER_ALI_GALI_SSA, 'codepoint, 0x1894);
5488put('MONGOLIAN_LETTER_ALI_GALI_ZHA, 'codepoint, 0x1895);
5489put('MONGOLIAN_LETTER_ALI_GALI_ZA, 'codepoint, 0x1896);
5490put('MONGOLIAN_LETTER_ALI_GALI_AH, 'codepoint, 0x1897);
5491put('MONGOLIAN_LETTER_TODO_ALI_GALI_TA, 'codepoint, 0x1898);
5492put('MONGOLIAN_LETTER_TODO_ALI_GALI_ZHA, 'codepoint, 0x1899);
5493put('MONGOLIAN_LETTER_MANCHU_ALI_GALI_GHA, 'codepoint, 0x189A);
5494put('MONGOLIAN_LETTER_MANCHU_ALI_GALI_NGA, 'codepoint, 0x189B);
5495put('MONGOLIAN_LETTER_MANCHU_ALI_GALI_CA, 'codepoint, 0x189C);
5496put('MONGOLIAN_LETTER_MANCHU_ALI_GALI_JHA, 'codepoint, 0x189D);
5497put('MONGOLIAN_LETTER_MANCHU_ALI_GALI_TTA, 'codepoint, 0x189E);
5498put('MONGOLIAN_LETTER_MANCHU_ALI_GALI_DDHA, 'codepoint, 0x189F);
5499put('MONGOLIAN_LETTER_MANCHU_ALI_GALI_TA, 'codepoint, 0x18A0);
5500put('MONGOLIAN_LETTER_MANCHU_ALI_GALI_DHA, 'codepoint, 0x18A1);
5501put('MONGOLIAN_LETTER_MANCHU_ALI_GALI_SSA, 'codepoint, 0x18A2);
5502put('MONGOLIAN_LETTER_MANCHU_ALI_GALI_CYA, 'codepoint, 0x18A3);
5503put('MONGOLIAN_LETTER_MANCHU_ALI_GALI_ZHA, 'codepoint, 0x18A4);
5504put('MONGOLIAN_LETTER_MANCHU_ALI_GALI_ZA, 'codepoint, 0x18A5);
5505put('MONGOLIAN_LETTER_ALI_GALI_HALF_U, 'codepoint, 0x18A6);
5506put('MONGOLIAN_LETTER_ALI_GALI_HALF_YA, 'codepoint, 0x18A7);
5507put('MONGOLIAN_LETTER_MANCHU_ALI_GALI_BHA, 'codepoint, 0x18A8);
5508put('MONGOLIAN_LETTER_ALI_GALI_DAGALGA, 'codepoint, 0x18A9);
5509put('MONGOLIAN_LETTER_MANCHU_ALI_GALI_LHA, 'codepoint, 0x18AA);
5510put('CANADIAN_SYLLABICS_OY, 'codepoint, 0x18B0);
5511put('CANADIAN_SYLLABICS_AY, 'codepoint, 0x18B1);
5512put('CANADIAN_SYLLABICS_AAY, 'codepoint, 0x18B2);
5513put('CANADIAN_SYLLABICS_WAY, 'codepoint, 0x18B3);
5514put('CANADIAN_SYLLABICS_POY, 'codepoint, 0x18B4);
5515put('CANADIAN_SYLLABICS_PAY, 'codepoint, 0x18B5);
5516put('CANADIAN_SYLLABICS_PWOY, 'codepoint, 0x18B6);
5517put('CANADIAN_SYLLABICS_TAY, 'codepoint, 0x18B7);
5518put('CANADIAN_SYLLABICS_KAY, 'codepoint, 0x18B8);
5519put('CANADIAN_SYLLABICS_KWAY, 'codepoint, 0x18B9);
5520put('CANADIAN_SYLLABICS_MAY, 'codepoint, 0x18BA);
5521put('CANADIAN_SYLLABICS_NOY, 'codepoint, 0x18BB);
5522put('CANADIAN_SYLLABICS_NAY, 'codepoint, 0x18BC);
5523put('CANADIAN_SYLLABICS_LAY, 'codepoint, 0x18BD);
5524put('CANADIAN_SYLLABICS_SOY, 'codepoint, 0x18BE);
5525put('CANADIAN_SYLLABICS_SAY, 'codepoint, 0x18BF);
5526put('CANADIAN_SYLLABICS_SHOY, 'codepoint, 0x18C0);
5527put('CANADIAN_SYLLABICS_SHAY, 'codepoint, 0x18C1);
5528put('CANADIAN_SYLLABICS_SHWOY, 'codepoint, 0x18C2);
5529put('CANADIAN_SYLLABICS_YOY, 'codepoint, 0x18C3);
5530put('CANADIAN_SYLLABICS_YAY, 'codepoint, 0x18C4);
5531put('CANADIAN_SYLLABICS_RAY, 'codepoint, 0x18C5);
5532put('CANADIAN_SYLLABICS_NWI, 'codepoint, 0x18C6);
5533put('CANADIAN_SYLLABICS_OJIBWAY_NWI, 'codepoint, 0x18C7);
5534put('CANADIAN_SYLLABICS_NWII, 'codepoint, 0x18C8);
5535put('CANADIAN_SYLLABICS_OJIBWAY_NWII, 'codepoint, 0x18C9);
5536put('CANADIAN_SYLLABICS_NWO, 'codepoint, 0x18CA);
5537put('CANADIAN_SYLLABICS_OJIBWAY_NWO, 'codepoint, 0x18CB);
5538put('CANADIAN_SYLLABICS_NWOO, 'codepoint, 0x18CC);
5539put('CANADIAN_SYLLABICS_OJIBWAY_NWOO, 'codepoint, 0x18CD);
5540put('CANADIAN_SYLLABICS_RWEE, 'codepoint, 0x18CE);
5541put('CANADIAN_SYLLABICS_RWI, 'codepoint, 0x18CF);
5542put('CANADIAN_SYLLABICS_RWII, 'codepoint, 0x18D0);
5543put('CANADIAN_SYLLABICS_RWO, 'codepoint, 0x18D1);
5544put('CANADIAN_SYLLABICS_RWOO, 'codepoint, 0x18D2);
5545put('CANADIAN_SYLLABICS_RWA, 'codepoint, 0x18D3);
5546put('CANADIAN_SYLLABICS_OJIBWAY_P, 'codepoint, 0x18D4);
5547put('CANADIAN_SYLLABICS_OJIBWAY_T, 'codepoint, 0x18D5);
5548put('CANADIAN_SYLLABICS_OJIBWAY_K, 'codepoint, 0x18D6);
5549put('CANADIAN_SYLLABICS_OJIBWAY_C, 'codepoint, 0x18D7);
5550put('CANADIAN_SYLLABICS_OJIBWAY_M, 'codepoint, 0x18D8);
5551put('CANADIAN_SYLLABICS_OJIBWAY_N, 'codepoint, 0x18D9);
5552put('CANADIAN_SYLLABICS_OJIBWAY_S, 'codepoint, 0x18DA);
5553put('CANADIAN_SYLLABICS_OJIBWAY_SH, 'codepoint, 0x18DB);
5554put('CANADIAN_SYLLABICS_EASTERN_W, 'codepoint, 0x18DC);
5555put('CANADIAN_SYLLABICS_WESTERN_W, 'codepoint, 0x18DD);
5556put('CANADIAN_SYLLABICS_FINAL_SMALL_RING, 'codepoint, 0x18DE);
5557put('CANADIAN_SYLLABICS_FINAL_RAISED_DOT, 'codepoint, 0x18DF);
5558put('CANADIAN_SYLLABICS_R_CREE_RWE, 'codepoint, 0x18E0);
5559put('CANADIAN_SYLLABICS_WEST_CREE_LOO, 'codepoint, 0x18E1);
5560put('CANADIAN_SYLLABICS_WEST_CREE_LAA, 'codepoint, 0x18E2);
5561put('CANADIAN_SYLLABICS_THWE, 'codepoint, 0x18E3);
5562put('CANADIAN_SYLLABICS_THWA, 'codepoint, 0x18E4);
5563put('CANADIAN_SYLLABICS_TTHWE, 'codepoint, 0x18E5);
5564put('CANADIAN_SYLLABICS_TTHOO, 'codepoint, 0x18E6);
5565put('CANADIAN_SYLLABICS_TTHAA, 'codepoint, 0x18E7);
5566put('CANADIAN_SYLLABICS_TLHWE, 'codepoint, 0x18E8);
5567put('CANADIAN_SYLLABICS_TLHOO, 'codepoint, 0x18E9);
5568put('CANADIAN_SYLLABICS_SAYISI_SHWE, 'codepoint, 0x18EA);
5569put('CANADIAN_SYLLABICS_SAYISI_SHOO, 'codepoint, 0x18EB);
5570put('CANADIAN_SYLLABICS_SAYISI_HOO, 'codepoint, 0x18EC);
5571put('CANADIAN_SYLLABICS_CARRIER_GWU, 'codepoint, 0x18ED);
5572put('CANADIAN_SYLLABICS_CARRIER_DENE_GEE, 'codepoint, 0x18EE);
5573put('CANADIAN_SYLLABICS_CARRIER_GAA, 'codepoint, 0x18EF);
5574put('CANADIAN_SYLLABICS_CARRIER_GWA, 'codepoint, 0x18F0);
5575put('CANADIAN_SYLLABICS_SAYISI_JUU, 'codepoint, 0x18F1);
5576put('CANADIAN_SYLLABICS_CARRIER_JWA, 'codepoint, 0x18F2);
5577put('CANADIAN_SYLLABICS_BEAVER_DENE_L, 'codepoint, 0x18F3);
5578put('CANADIAN_SYLLABICS_BEAVER_DENE_R, 'codepoint, 0x18F4);
5579put('CANADIAN_SYLLABICS_CARRIER_DENTAL_S, 'codepoint, 0x18F5);
5580put('LIMBU_VOWEL_CARRIER_LETTER, 'codepoint, 0x1900);
5581put('LIMBU_LETTER_KA, 'codepoint, 0x1901);
5582put('LIMBU_LETTER_KHA, 'codepoint, 0x1902);
5583put('LIMBU_LETTER_GA, 'codepoint, 0x1903);
5584put('LIMBU_LETTER_GHA, 'codepoint, 0x1904);
5585put('LIMBU_LETTER_NGA, 'codepoint, 0x1905);
5586put('LIMBU_LETTER_CA, 'codepoint, 0x1906);
5587put('LIMBU_LETTER_CHA, 'codepoint, 0x1907);
5588put('LIMBU_LETTER_JA, 'codepoint, 0x1908);
5589put('LIMBU_LETTER_JHA, 'codepoint, 0x1909);
5590put('LIMBU_LETTER_YAN, 'codepoint, 0x190A);
5591put('LIMBU_LETTER_TA, 'codepoint, 0x190B);
5592put('LIMBU_LETTER_THA, 'codepoint, 0x190C);
5593put('LIMBU_LETTER_DA, 'codepoint, 0x190D);
5594put('LIMBU_LETTER_DHA, 'codepoint, 0x190E);
5595put('LIMBU_LETTER_NA, 'codepoint, 0x190F);
5596put('LIMBU_LETTER_PA, 'codepoint, 0x1910);
5597put('LIMBU_LETTER_PHA, 'codepoint, 0x1911);
5598put('LIMBU_LETTER_BA, 'codepoint, 0x1912);
5599put('LIMBU_LETTER_BHA, 'codepoint, 0x1913);
5600put('LIMBU_LETTER_MA, 'codepoint, 0x1914);
5601put('LIMBU_LETTER_YA, 'codepoint, 0x1915);
5602put('LIMBU_LETTER_RA, 'codepoint, 0x1916);
5603put('LIMBU_LETTER_LA, 'codepoint, 0x1917);
5604put('LIMBU_LETTER_WA, 'codepoint, 0x1918);
5605put('LIMBU_LETTER_SHA, 'codepoint, 0x1919);
5606put('LIMBU_LETTER_SSA, 'codepoint, 0x191A);
5607put('LIMBU_LETTER_SA, 'codepoint, 0x191B);
5608put('LIMBU_LETTER_HA, 'codepoint, 0x191C);
5609put('LIMBU_LETTER_GYAN, 'codepoint, 0x191D);
5610put('LIMBU_LETTER_TRA, 'codepoint, 0x191E);
5611put('LIMBU_VOWEL_SIGN_A, 'codepoint, 0x1920);
5612put('LIMBU_VOWEL_SIGN_I, 'codepoint, 0x1921);
5613put('LIMBU_VOWEL_SIGN_U, 'codepoint, 0x1922);
5614put('LIMBU_VOWEL_SIGN_EE, 'codepoint, 0x1923);
5615put('LIMBU_VOWEL_SIGN_AI, 'codepoint, 0x1924);
5616put('LIMBU_VOWEL_SIGN_OO, 'codepoint, 0x1925);
5617put('LIMBU_VOWEL_SIGN_AU, 'codepoint, 0x1926);
5618put('LIMBU_VOWEL_SIGN_E, 'codepoint, 0x1927);
5619put('LIMBU_VOWEL_SIGN_O, 'codepoint, 0x1928);
5620put('LIMBU_SUBJOINED_LETTER_YA, 'codepoint, 0x1929);
5621put('LIMBU_SUBJOINED_LETTER_RA, 'codepoint, 0x192A);
5622put('LIMBU_SUBJOINED_LETTER_WA, 'codepoint, 0x192B);
5623put('LIMBU_SMALL_LETTER_KA, 'codepoint, 0x1930);
5624put('LIMBU_SMALL_LETTER_NGA, 'codepoint, 0x1931);
5625put('LIMBU_SMALL_LETTER_ANUSVARA, 'codepoint, 0x1932);
5626put('LIMBU_SMALL_LETTER_TA, 'codepoint, 0x1933);
5627put('LIMBU_SMALL_LETTER_NA, 'codepoint, 0x1934);
5628put('LIMBU_SMALL_LETTER_PA, 'codepoint, 0x1935);
5629put('LIMBU_SMALL_LETTER_MA, 'codepoint, 0x1936);
5630put('LIMBU_SMALL_LETTER_RA, 'codepoint, 0x1937);
5631put('LIMBU_SMALL_LETTER_LA, 'codepoint, 0x1938);
5632put('LIMBU_SIGN_MUKPHRENG, 'codepoint, 0x1939);
5633put('LIMBU_SIGN_KEMPHRENG, 'codepoint, 0x193A);
5634put('LIMBU_SIGN_SA_I, 'codepoint, 0x193B);
5635put('LIMBU_SIGN_LOO, 'codepoint, 0x1940);
5636put('LIMBU_EXCLAMATION_MARK, 'codepoint, 0x1944);
5637put('LIMBU_QUESTION_MARK, 'codepoint, 0x1945);
5638put('LIMBU_DIGIT_ZERO, 'codepoint, 0x1946);
5639put('LIMBU_DIGIT_ONE, 'codepoint, 0x1947);
5640put('LIMBU_DIGIT_TWO, 'codepoint, 0x1948);
5641put('LIMBU_DIGIT_THREE, 'codepoint, 0x1949);
5642put('LIMBU_DIGIT_FOUR, 'codepoint, 0x194A);
5643put('LIMBU_DIGIT_FIVE, 'codepoint, 0x194B);
5644put('LIMBU_DIGIT_SIX, 'codepoint, 0x194C);
5645put('LIMBU_DIGIT_SEVEN, 'codepoint, 0x194D);
5646put('LIMBU_DIGIT_EIGHT, 'codepoint, 0x194E);
5647put('LIMBU_DIGIT_NINE, 'codepoint, 0x194F);
5648put('TAI_LE_LETTER_KA, 'codepoint, 0x1950);
5649put('TAI_LE_LETTER_XA, 'codepoint, 0x1951);
5650put('TAI_LE_LETTER_NGA, 'codepoint, 0x1952);
5651put('TAI_LE_LETTER_TSA, 'codepoint, 0x1953);
5652put('TAI_LE_LETTER_SA, 'codepoint, 0x1954);
5653put('TAI_LE_LETTER_YA, 'codepoint, 0x1955);
5654put('TAI_LE_LETTER_TA, 'codepoint, 0x1956);
5655put('TAI_LE_LETTER_THA, 'codepoint, 0x1957);
5656put('TAI_LE_LETTER_LA, 'codepoint, 0x1958);
5657put('TAI_LE_LETTER_PA, 'codepoint, 0x1959);
5658put('TAI_LE_LETTER_PHA, 'codepoint, 0x195A);
5659put('TAI_LE_LETTER_MA, 'codepoint, 0x195B);
5660put('TAI_LE_LETTER_FA, 'codepoint, 0x195C);
5661put('TAI_LE_LETTER_VA, 'codepoint, 0x195D);
5662put('TAI_LE_LETTER_HA, 'codepoint, 0x195E);
5663put('TAI_LE_LETTER_QA, 'codepoint, 0x195F);
5664put('TAI_LE_LETTER_KHA, 'codepoint, 0x1960);
5665put('TAI_LE_LETTER_TSHA, 'codepoint, 0x1961);
5666put('TAI_LE_LETTER_NA, 'codepoint, 0x1962);
5667put('TAI_LE_LETTER_A, 'codepoint, 0x1963);
5668put('TAI_LE_LETTER_I, 'codepoint, 0x1964);
5669put('TAI_LE_LETTER_EE, 'codepoint, 0x1965);
5670put('TAI_LE_LETTER_EH, 'codepoint, 0x1966);
5671put('TAI_LE_LETTER_U, 'codepoint, 0x1967);
5672put('TAI_LE_LETTER_OO, 'codepoint, 0x1968);
5673put('TAI_LE_LETTER_O, 'codepoint, 0x1969);
5674put('TAI_LE_LETTER_UE, 'codepoint, 0x196A);
5675put('TAI_LE_LETTER_E, 'codepoint, 0x196B);
5676put('TAI_LE_LETTER_AUE, 'codepoint, 0x196C);
5677put('TAI_LE_LETTER_AI, 'codepoint, 0x196D);
5678put('TAI_LE_LETTER_TONE_2, 'codepoint, 0x1970);
5679put('TAI_LE_LETTER_TONE_3, 'codepoint, 0x1971);
5680put('TAI_LE_LETTER_TONE_4, 'codepoint, 0x1972);
5681put('TAI_LE_LETTER_TONE_5, 'codepoint, 0x1973);
5682put('TAI_LE_LETTER_TONE_6, 'codepoint, 0x1974);
5683put('NEW_TAI_LUE_LETTER_HIGH_QA, 'codepoint, 0x1980);
5684put('NEW_TAI_LUE_LETTER_LOW_QA, 'codepoint, 0x1981);
5685put('NEW_TAI_LUE_LETTER_HIGH_KA, 'codepoint, 0x1982);
5686put('NEW_TAI_LUE_LETTER_HIGH_XA, 'codepoint, 0x1983);
5687put('NEW_TAI_LUE_LETTER_HIGH_NGA, 'codepoint, 0x1984);
5688put('NEW_TAI_LUE_LETTER_LOW_KA, 'codepoint, 0x1985);
5689put('NEW_TAI_LUE_LETTER_LOW_XA, 'codepoint, 0x1986);
5690put('NEW_TAI_LUE_LETTER_LOW_NGA, 'codepoint, 0x1987);
5691put('NEW_TAI_LUE_LETTER_HIGH_TSA, 'codepoint, 0x1988);
5692put('NEW_TAI_LUE_LETTER_HIGH_SA, 'codepoint, 0x1989);
5693put('NEW_TAI_LUE_LETTER_HIGH_YA, 'codepoint, 0x198A);
5694put('NEW_TAI_LUE_LETTER_LOW_TSA, 'codepoint, 0x198B);
5695put('NEW_TAI_LUE_LETTER_LOW_SA, 'codepoint, 0x198C);
5696put('NEW_TAI_LUE_LETTER_LOW_YA, 'codepoint, 0x198D);
5697put('NEW_TAI_LUE_LETTER_HIGH_TA, 'codepoint, 0x198E);
5698put('NEW_TAI_LUE_LETTER_HIGH_THA, 'codepoint, 0x198F);
5699put('NEW_TAI_LUE_LETTER_HIGH_NA, 'codepoint, 0x1990);
5700put('NEW_TAI_LUE_LETTER_LOW_TA, 'codepoint, 0x1991);
5701put('NEW_TAI_LUE_LETTER_LOW_THA, 'codepoint, 0x1992);
5702put('NEW_TAI_LUE_LETTER_LOW_NA, 'codepoint, 0x1993);
5703put('NEW_TAI_LUE_LETTER_HIGH_PA, 'codepoint, 0x1994);
5704put('NEW_TAI_LUE_LETTER_HIGH_PHA, 'codepoint, 0x1995);
5705put('NEW_TAI_LUE_LETTER_HIGH_MA, 'codepoint, 0x1996);
5706put('NEW_TAI_LUE_LETTER_LOW_PA, 'codepoint, 0x1997);
5707put('NEW_TAI_LUE_LETTER_LOW_PHA, 'codepoint, 0x1998);
5708put('NEW_TAI_LUE_LETTER_LOW_MA, 'codepoint, 0x1999);
5709put('NEW_TAI_LUE_LETTER_HIGH_FA, 'codepoint, 0x199A);
5710put('NEW_TAI_LUE_LETTER_HIGH_VA, 'codepoint, 0x199B);
5711put('NEW_TAI_LUE_LETTER_HIGH_LA, 'codepoint, 0x199C);
5712put('NEW_TAI_LUE_LETTER_LOW_FA, 'codepoint, 0x199D);
5713put('NEW_TAI_LUE_LETTER_LOW_VA, 'codepoint, 0x199E);
5714put('NEW_TAI_LUE_LETTER_LOW_LA, 'codepoint, 0x199F);
5715put('NEW_TAI_LUE_LETTER_HIGH_HA, 'codepoint, 0x19A0);
5716put('NEW_TAI_LUE_LETTER_HIGH_DA, 'codepoint, 0x19A1);
5717put('NEW_TAI_LUE_LETTER_HIGH_BA, 'codepoint, 0x19A2);
5718put('NEW_TAI_LUE_LETTER_LOW_HA, 'codepoint, 0x19A3);
5719put('NEW_TAI_LUE_LETTER_LOW_DA, 'codepoint, 0x19A4);
5720put('NEW_TAI_LUE_LETTER_LOW_BA, 'codepoint, 0x19A5);
5721put('NEW_TAI_LUE_LETTER_HIGH_KVA, 'codepoint, 0x19A6);
5722put('NEW_TAI_LUE_LETTER_HIGH_XVA, 'codepoint, 0x19A7);
5723put('NEW_TAI_LUE_LETTER_LOW_KVA, 'codepoint, 0x19A8);
5724put('NEW_TAI_LUE_LETTER_LOW_XVA, 'codepoint, 0x19A9);
5725put('NEW_TAI_LUE_LETTER_HIGH_SUA, 'codepoint, 0x19AA);
5726put('NEW_TAI_LUE_LETTER_LOW_SUA, 'codepoint, 0x19AB);
5727put('NEW_TAI_LUE_VOWEL_SIGN_VOWEL_SHORTENER, 'codepoint, 0x19B0);
5728put('NEW_TAI_LUE_VOWEL_SIGN_AA, 'codepoint, 0x19B1);
5729put('NEW_TAI_LUE_VOWEL_SIGN_II, 'codepoint, 0x19B2);
5730put('NEW_TAI_LUE_VOWEL_SIGN_U, 'codepoint, 0x19B3);
5731put('NEW_TAI_LUE_VOWEL_SIGN_UU, 'codepoint, 0x19B4);
5732put('NEW_TAI_LUE_VOWEL_SIGN_E, 'codepoint, 0x19B5);
5733put('NEW_TAI_LUE_VOWEL_SIGN_AE, 'codepoint, 0x19B6);
5734put('NEW_TAI_LUE_VOWEL_SIGN_O, 'codepoint, 0x19B7);
5735put('NEW_TAI_LUE_VOWEL_SIGN_OA, 'codepoint, 0x19B8);
5736put('NEW_TAI_LUE_VOWEL_SIGN_UE, 'codepoint, 0x19B9);
5737put('NEW_TAI_LUE_VOWEL_SIGN_AY, 'codepoint, 0x19BA);
5738put('NEW_TAI_LUE_VOWEL_SIGN_AAY, 'codepoint, 0x19BB);
5739put('NEW_TAI_LUE_VOWEL_SIGN_UY, 'codepoint, 0x19BC);
5740put('NEW_TAI_LUE_VOWEL_SIGN_OY, 'codepoint, 0x19BD);
5741put('NEW_TAI_LUE_VOWEL_SIGN_OAY, 'codepoint, 0x19BE);
5742put('NEW_TAI_LUE_VOWEL_SIGN_UEY, 'codepoint, 0x19BF);
5743put('NEW_TAI_LUE_VOWEL_SIGN_IY, 'codepoint, 0x19C0);
5744put('NEW_TAI_LUE_LETTER_FINAL_V, 'codepoint, 0x19C1);
5745put('NEW_TAI_LUE_LETTER_FINAL_NG, 'codepoint, 0x19C2);
5746put('NEW_TAI_LUE_LETTER_FINAL_N, 'codepoint, 0x19C3);
5747put('NEW_TAI_LUE_LETTER_FINAL_M, 'codepoint, 0x19C4);
5748put('NEW_TAI_LUE_LETTER_FINAL_K, 'codepoint, 0x19C5);
5749put('NEW_TAI_LUE_LETTER_FINAL_D, 'codepoint, 0x19C6);
5750put('NEW_TAI_LUE_LETTER_FINAL_B, 'codepoint, 0x19C7);
5751put('NEW_TAI_LUE_TONE_MARK_1, 'codepoint, 0x19C8);
5752put('NEW_TAI_LUE_TONE_MARK_2, 'codepoint, 0x19C9);
5753put('NEW_TAI_LUE_DIGIT_ZERO, 'codepoint, 0x19D0);
5754put('NEW_TAI_LUE_DIGIT_ONE, 'codepoint, 0x19D1);
5755put('NEW_TAI_LUE_DIGIT_TWO, 'codepoint, 0x19D2);
5756put('NEW_TAI_LUE_DIGIT_THREE, 'codepoint, 0x19D3);
5757put('NEW_TAI_LUE_DIGIT_FOUR, 'codepoint, 0x19D4);
5758put('NEW_TAI_LUE_DIGIT_FIVE, 'codepoint, 0x19D5);
5759put('NEW_TAI_LUE_DIGIT_SIX, 'codepoint, 0x19D6);
5760put('NEW_TAI_LUE_DIGIT_SEVEN, 'codepoint, 0x19D7);
5761put('NEW_TAI_LUE_DIGIT_EIGHT, 'codepoint, 0x19D8);
5762put('NEW_TAI_LUE_DIGIT_NINE, 'codepoint, 0x19D9);
5763put('NEW_TAI_LUE_THAM_DIGIT_ONE, 'codepoint, 0x19DA);
5764put('NEW_TAI_LUE_SIGN_LAE, 'codepoint, 0x19DE);
5765put('NEW_TAI_LUE_SIGN_LAEV, 'codepoint, 0x19DF);
5766put('KHMER_SYMBOL_PATHAMASAT, 'codepoint, 0x19E0);
5767put('KHMER_SYMBOL_MUOY_KOET, 'codepoint, 0x19E1);
5768put('KHMER_SYMBOL_PII_KOET, 'codepoint, 0x19E2);
5769put('KHMER_SYMBOL_BEI_KOET, 'codepoint, 0x19E3);
5770put('KHMER_SYMBOL_BUON_KOET, 'codepoint, 0x19E4);
5771put('KHMER_SYMBOL_PRAM_KOET, 'codepoint, 0x19E5);
5772put('KHMER_SYMBOL_PRAM_MUOY_KOET, 'codepoint, 0x19E6);
5773put('KHMER_SYMBOL_PRAM_PII_KOET, 'codepoint, 0x19E7);
5774put('KHMER_SYMBOL_PRAM_BEI_KOET, 'codepoint, 0x19E8);
5775put('KHMER_SYMBOL_PRAM_BUON_KOET, 'codepoint, 0x19E9);
5776put('KHMER_SYMBOL_DAP_KOET, 'codepoint, 0x19EA);
5777put('KHMER_SYMBOL_DAP_MUOY_KOET, 'codepoint, 0x19EB);
5778put('KHMER_SYMBOL_DAP_PII_KOET, 'codepoint, 0x19EC);
5779put('KHMER_SYMBOL_DAP_BEI_KOET, 'codepoint, 0x19ED);
5780put('KHMER_SYMBOL_DAP_BUON_KOET, 'codepoint, 0x19EE);
5781put('KHMER_SYMBOL_DAP_PRAM_KOET, 'codepoint, 0x19EF);
5782put('KHMER_SYMBOL_TUTEYASAT, 'codepoint, 0x19F0);
5783put('KHMER_SYMBOL_MUOY_ROC, 'codepoint, 0x19F1);
5784put('KHMER_SYMBOL_PII_ROC, 'codepoint, 0x19F2);
5785put('KHMER_SYMBOL_BEI_ROC, 'codepoint, 0x19F3);
5786put('KHMER_SYMBOL_BUON_ROC, 'codepoint, 0x19F4);
5787put('KHMER_SYMBOL_PRAM_ROC, 'codepoint, 0x19F5);
5788put('KHMER_SYMBOL_PRAM_MUOY_ROC, 'codepoint, 0x19F6);
5789put('KHMER_SYMBOL_PRAM_PII_ROC, 'codepoint, 0x19F7);
5790put('KHMER_SYMBOL_PRAM_BEI_ROC, 'codepoint, 0x19F8);
5791put('KHMER_SYMBOL_PRAM_BUON_ROC, 'codepoint, 0x19F9);
5792put('KHMER_SYMBOL_DAP_ROC, 'codepoint, 0x19FA);
5793put('KHMER_SYMBOL_DAP_MUOY_ROC, 'codepoint, 0x19FB);
5794put('KHMER_SYMBOL_DAP_PII_ROC, 'codepoint, 0x19FC);
5795put('KHMER_SYMBOL_DAP_BEI_ROC, 'codepoint, 0x19FD);
5796put('KHMER_SYMBOL_DAP_BUON_ROC, 'codepoint, 0x19FE);
5797put('KHMER_SYMBOL_DAP_PRAM_ROC, 'codepoint, 0x19FF);
5798put('BUGINESE_LETTER_KA, 'codepoint, 0x1A00);
5799put('BUGINESE_LETTER_GA, 'codepoint, 0x1A01);
5800put('BUGINESE_LETTER_NGA, 'codepoint, 0x1A02);
5801put('BUGINESE_LETTER_NGKA, 'codepoint, 0x1A03);
5802put('BUGINESE_LETTER_PA, 'codepoint, 0x1A04);
5803put('BUGINESE_LETTER_BA, 'codepoint, 0x1A05);
5804put('BUGINESE_LETTER_MA, 'codepoint, 0x1A06);
5805put('BUGINESE_LETTER_MPA, 'codepoint, 0x1A07);
5806put('BUGINESE_LETTER_TA, 'codepoint, 0x1A08);
5807put('BUGINESE_LETTER_DA, 'codepoint, 0x1A09);
5808put('BUGINESE_LETTER_NA, 'codepoint, 0x1A0A);
5809put('BUGINESE_LETTER_NRA, 'codepoint, 0x1A0B);
5810put('BUGINESE_LETTER_CA, 'codepoint, 0x1A0C);
5811put('BUGINESE_LETTER_JA, 'codepoint, 0x1A0D);
5812put('BUGINESE_LETTER_NYA, 'codepoint, 0x1A0E);
5813put('BUGINESE_LETTER_NYCA, 'codepoint, 0x1A0F);
5814put('BUGINESE_LETTER_YA, 'codepoint, 0x1A10);
5815put('BUGINESE_LETTER_RA, 'codepoint, 0x1A11);
5816put('BUGINESE_LETTER_LA, 'codepoint, 0x1A12);
5817put('BUGINESE_LETTER_VA, 'codepoint, 0x1A13);
5818put('BUGINESE_LETTER_SA, 'codepoint, 0x1A14);
5819put('BUGINESE_LETTER_A, 'codepoint, 0x1A15);
5820put('BUGINESE_LETTER_HA, 'codepoint, 0x1A16);
5821put('BUGINESE_VOWEL_SIGN_I, 'codepoint, 0x1A17);
5822put('BUGINESE_VOWEL_SIGN_U, 'codepoint, 0x1A18);
5823put('BUGINESE_VOWEL_SIGN_E, 'codepoint, 0x1A19);
5824put('BUGINESE_VOWEL_SIGN_O, 'codepoint, 0x1A1A);
5825put('BUGINESE_VOWEL_SIGN_AE, 'codepoint, 0x1A1B);
5826put('BUGINESE_PALLAWA, 'codepoint, 0x1A1E);
5827put('BUGINESE_END_OF_SECTION, 'codepoint, 0x1A1F);
5828put('TAI_THAM_LETTER_HIGH_KA, 'codepoint, 0x1A20);
5829put('TAI_THAM_LETTER_HIGH_KHA, 'codepoint, 0x1A21);
5830put('TAI_THAM_LETTER_HIGH_KXA, 'codepoint, 0x1A22);
5831put('TAI_THAM_LETTER_LOW_KA, 'codepoint, 0x1A23);
5832put('TAI_THAM_LETTER_LOW_KXA, 'codepoint, 0x1A24);
5833put('TAI_THAM_LETTER_LOW_KHA, 'codepoint, 0x1A25);
5834put('TAI_THAM_LETTER_NGA, 'codepoint, 0x1A26);
5835put('TAI_THAM_LETTER_HIGH_CA, 'codepoint, 0x1A27);
5836put('TAI_THAM_LETTER_HIGH_CHA, 'codepoint, 0x1A28);
5837put('TAI_THAM_LETTER_LOW_CA, 'codepoint, 0x1A29);
5838put('TAI_THAM_LETTER_LOW_SA, 'codepoint, 0x1A2A);
5839put('TAI_THAM_LETTER_LOW_CHA, 'codepoint, 0x1A2B);
5840put('TAI_THAM_LETTER_NYA, 'codepoint, 0x1A2C);
5841put('TAI_THAM_LETTER_RATA, 'codepoint, 0x1A2D);
5842put('TAI_THAM_LETTER_HIGH_RATHA, 'codepoint, 0x1A2E);
5843put('TAI_THAM_LETTER_DA, 'codepoint, 0x1A2F);
5844put('TAI_THAM_LETTER_LOW_RATHA, 'codepoint, 0x1A30);
5845put('TAI_THAM_LETTER_RANA, 'codepoint, 0x1A31);
5846put('TAI_THAM_LETTER_HIGH_TA, 'codepoint, 0x1A32);
5847put('TAI_THAM_LETTER_HIGH_THA, 'codepoint, 0x1A33);
5848put('TAI_THAM_LETTER_LOW_TA, 'codepoint, 0x1A34);
5849put('TAI_THAM_LETTER_LOW_THA, 'codepoint, 0x1A35);
5850put('TAI_THAM_LETTER_NA, 'codepoint, 0x1A36);
5851put('TAI_THAM_LETTER_BA, 'codepoint, 0x1A37);
5852put('TAI_THAM_LETTER_HIGH_PA, 'codepoint, 0x1A38);
5853put('TAI_THAM_LETTER_HIGH_PHA, 'codepoint, 0x1A39);
5854put('TAI_THAM_LETTER_HIGH_FA, 'codepoint, 0x1A3A);
5855put('TAI_THAM_LETTER_LOW_PA, 'codepoint, 0x1A3B);
5856put('TAI_THAM_LETTER_LOW_FA, 'codepoint, 0x1A3C);
5857put('TAI_THAM_LETTER_LOW_PHA, 'codepoint, 0x1A3D);
5858put('TAI_THAM_LETTER_MA, 'codepoint, 0x1A3E);
5859put('TAI_THAM_LETTER_LOW_YA, 'codepoint, 0x1A3F);
5860put('TAI_THAM_LETTER_HIGH_YA, 'codepoint, 0x1A40);
5861put('TAI_THAM_LETTER_RA, 'codepoint, 0x1A41);
5862put('TAI_THAM_LETTER_RUE, 'codepoint, 0x1A42);
5863put('TAI_THAM_LETTER_LA, 'codepoint, 0x1A43);
5864put('TAI_THAM_LETTER_LUE, 'codepoint, 0x1A44);
5865put('TAI_THAM_LETTER_WA, 'codepoint, 0x1A45);
5866put('TAI_THAM_LETTER_HIGH_SHA, 'codepoint, 0x1A46);
5867put('TAI_THAM_LETTER_HIGH_SSA, 'codepoint, 0x1A47);
5868put('TAI_THAM_LETTER_HIGH_SA, 'codepoint, 0x1A48);
5869put('TAI_THAM_LETTER_HIGH_HA, 'codepoint, 0x1A49);
5870put('TAI_THAM_LETTER_LLA, 'codepoint, 0x1A4A);
5871put('TAI_THAM_LETTER_A, 'codepoint, 0x1A4B);
5872put('TAI_THAM_LETTER_LOW_HA, 'codepoint, 0x1A4C);
5873put('TAI_THAM_LETTER_I, 'codepoint, 0x1A4D);
5874put('TAI_THAM_LETTER_II, 'codepoint, 0x1A4E);
5875put('TAI_THAM_LETTER_U, 'codepoint, 0x1A4F);
5876put('TAI_THAM_LETTER_UU, 'codepoint, 0x1A50);
5877put('TAI_THAM_LETTER_EE, 'codepoint, 0x1A51);
5878put('TAI_THAM_LETTER_OO, 'codepoint, 0x1A52);
5879put('TAI_THAM_LETTER_LAE, 'codepoint, 0x1A53);
5880put('TAI_THAM_LETTER_GREAT_SA, 'codepoint, 0x1A54);
5881put('TAI_THAM_CONSONANT_SIGN_MEDIAL_RA, 'codepoint, 0x1A55);
5882put('TAI_THAM_CONSONANT_SIGN_MEDIAL_LA, 'codepoint, 0x1A56);
5883put('TAI_THAM_CONSONANT_SIGN_LA_TANG_LAI, 'codepoint, 0x1A57);
5884put('TAI_THAM_SIGN_MAI_KANG_LAI, 'codepoint, 0x1A58);
5885put('TAI_THAM_CONSONANT_SIGN_FINAL_NGA, 'codepoint, 0x1A59);
5886put('TAI_THAM_CONSONANT_SIGN_LOW_PA, 'codepoint, 0x1A5A);
5887put('TAI_THAM_CONSONANT_SIGN_HIGH_RATHA_OR_LOW_PA, 'codepoint, 0x1A5B);
5888put('TAI_THAM_CONSONANT_SIGN_MA, 'codepoint, 0x1A5C);
5889put('TAI_THAM_CONSONANT_SIGN_BA, 'codepoint, 0x1A5D);
5890put('TAI_THAM_CONSONANT_SIGN_SA, 'codepoint, 0x1A5E);
5891put('TAI_THAM_SIGN_SAKOT, 'codepoint, 0x1A60);
5892put('TAI_THAM_VOWEL_SIGN_A, 'codepoint, 0x1A61);
5893put('TAI_THAM_VOWEL_SIGN_MAI_SAT, 'codepoint, 0x1A62);
5894put('TAI_THAM_VOWEL_SIGN_AA, 'codepoint, 0x1A63);
5895put('TAI_THAM_VOWEL_SIGN_TALL_AA, 'codepoint, 0x1A64);
5896put('TAI_THAM_VOWEL_SIGN_I, 'codepoint, 0x1A65);
5897put('TAI_THAM_VOWEL_SIGN_II, 'codepoint, 0x1A66);
5898put('TAI_THAM_VOWEL_SIGN_UE, 'codepoint, 0x1A67);
5899put('TAI_THAM_VOWEL_SIGN_UUE, 'codepoint, 0x1A68);
5900put('TAI_THAM_VOWEL_SIGN_U, 'codepoint, 0x1A69);
5901put('TAI_THAM_VOWEL_SIGN_UU, 'codepoint, 0x1A6A);
5902put('TAI_THAM_VOWEL_SIGN_O, 'codepoint, 0x1A6B);
5903put('TAI_THAM_VOWEL_SIGN_OA_BELOW, 'codepoint, 0x1A6C);
5904put('TAI_THAM_VOWEL_SIGN_OY, 'codepoint, 0x1A6D);
5905put('TAI_THAM_VOWEL_SIGN_E, 'codepoint, 0x1A6E);
5906put('TAI_THAM_VOWEL_SIGN_AE, 'codepoint, 0x1A6F);
5907put('TAI_THAM_VOWEL_SIGN_OO, 'codepoint, 0x1A70);
5908put('TAI_THAM_VOWEL_SIGN_AI, 'codepoint, 0x1A71);
5909put('TAI_THAM_VOWEL_SIGN_THAM_AI, 'codepoint, 0x1A72);
5910put('TAI_THAM_VOWEL_SIGN_OA_ABOVE, 'codepoint, 0x1A73);
5911put('TAI_THAM_SIGN_MAI_KANG, 'codepoint, 0x1A74);
5912put('TAI_THAM_SIGN_TONE_1, 'codepoint, 0x1A75);
5913put('TAI_THAM_SIGN_TONE_2, 'codepoint, 0x1A76);
5914put('TAI_THAM_SIGN_KHUEN_TONE_3, 'codepoint, 0x1A77);
5915put('TAI_THAM_SIGN_KHUEN_TONE_4, 'codepoint, 0x1A78);
5916put('TAI_THAM_SIGN_KHUEN_TONE_5, 'codepoint, 0x1A79);
5917put('TAI_THAM_SIGN_RA_HAAM, 'codepoint, 0x1A7A);
5918put('TAI_THAM_SIGN_MAI_SAM, 'codepoint, 0x1A7B);
5919put('TAI_THAM_SIGN_KHUEN_LUE_KARAN, 'codepoint, 0x1A7C);
5920put('TAI_THAM_COMBINING_CRYPTOGRAMMIC_DOT, 'codepoint, 0x1A7F);
5921put('TAI_THAM_HORA_DIGIT_ZERO, 'codepoint, 0x1A80);
5922put('TAI_THAM_HORA_DIGIT_ONE, 'codepoint, 0x1A81);
5923put('TAI_THAM_HORA_DIGIT_TWO, 'codepoint, 0x1A82);
5924put('TAI_THAM_HORA_DIGIT_THREE, 'codepoint, 0x1A83);
5925put('TAI_THAM_HORA_DIGIT_FOUR, 'codepoint, 0x1A84);
5926put('TAI_THAM_HORA_DIGIT_FIVE, 'codepoint, 0x1A85);
5927put('TAI_THAM_HORA_DIGIT_SIX, 'codepoint, 0x1A86);
5928put('TAI_THAM_HORA_DIGIT_SEVEN, 'codepoint, 0x1A87);
5929put('TAI_THAM_HORA_DIGIT_EIGHT, 'codepoint, 0x1A88);
5930put('TAI_THAM_HORA_DIGIT_NINE, 'codepoint, 0x1A89);
5931put('TAI_THAM_THAM_DIGIT_ZERO, 'codepoint, 0x1A90);
5932put('TAI_THAM_THAM_DIGIT_ONE, 'codepoint, 0x1A91);
5933put('TAI_THAM_THAM_DIGIT_TWO, 'codepoint, 0x1A92);
5934put('TAI_THAM_THAM_DIGIT_THREE, 'codepoint, 0x1A93);
5935put('TAI_THAM_THAM_DIGIT_FOUR, 'codepoint, 0x1A94);
5936put('TAI_THAM_THAM_DIGIT_FIVE, 'codepoint, 0x1A95);
5937put('TAI_THAM_THAM_DIGIT_SIX, 'codepoint, 0x1A96);
5938put('TAI_THAM_THAM_DIGIT_SEVEN, 'codepoint, 0x1A97);
5939put('TAI_THAM_THAM_DIGIT_EIGHT, 'codepoint, 0x1A98);
5940put('TAI_THAM_THAM_DIGIT_NINE, 'codepoint, 0x1A99);
5941put('TAI_THAM_SIGN_WIANG, 'codepoint, 0x1AA0);
5942put('TAI_THAM_SIGN_WIANGWAAK, 'codepoint, 0x1AA1);
5943put('TAI_THAM_SIGN_SAWAN, 'codepoint, 0x1AA2);
5944put('TAI_THAM_SIGN_KEOW, 'codepoint, 0x1AA3);
5945put('TAI_THAM_SIGN_HOY, 'codepoint, 0x1AA4);
5946put('TAI_THAM_SIGN_DOKMAI, 'codepoint, 0x1AA5);
5947put('TAI_THAM_SIGN_REVERSED_ROTATED_RANA, 'codepoint, 0x1AA6);
5948put('TAI_THAM_SIGN_MAI_YAMOK, 'codepoint, 0x1AA7);
5949put('TAI_THAM_SIGN_KAAN, 'codepoint, 0x1AA8);
5950put('TAI_THAM_SIGN_KAANKUU, 'codepoint, 0x1AA9);
5951put('TAI_THAM_SIGN_SATKAAN, 'codepoint, 0x1AAA);
5952put('TAI_THAM_SIGN_SATKAANKUU, 'codepoint, 0x1AAB);
5953put('TAI_THAM_SIGN_HANG, 'codepoint, 0x1AAC);
5954put('TAI_THAM_SIGN_CAANG, 'codepoint, 0x1AAD);
5955put('COMBINING_DOUBLED_CIRCUMFLEX_ACCENT, 'codepoint, 0x1AB0);
5956put('COMBINING_DIAERESIS_RING, 'codepoint, 0x1AB1);
5957put('COMBINING_INFINITY, 'codepoint, 0x1AB2);
5958put('COMBINING_DOWNWARDS_ARROW, 'codepoint, 0x1AB3);
5959put('COMBINING_TRIPLE_DOT, 'codepoint, 0x1AB4);
5960put('COMBINING_X_X_BELOW, 'codepoint, 0x1AB5);
5961put('COMBINING_WIGGLY_LINE_BELOW, 'codepoint, 0x1AB6);
5962put('COMBINING_OPEN_MARK_BELOW, 'codepoint, 0x1AB7);
5963put('COMBINING_DOUBLE_OPEN_MARK_BELOW, 'codepoint, 0x1AB8);
5964put('COMBINING_LIGHT_CENTRALIZATION_STROKE_BELOW, 'codepoint, 0x1AB9);
5965put('COMBINING_STRONG_CENTRALIZATION_STROKE_BELOW, 'codepoint, 0x1ABA);
5966put('COMBINING_PARENTHESES_ABOVE, 'codepoint, 0x1ABB);
5967put('COMBINING_DOUBLE_PARENTHESES_ABOVE, 'codepoint, 0x1ABC);
5968put('COMBINING_PARENTHESES_BELOW, 'codepoint, 0x1ABD);
5969put('COMBINING_PARENTHESES_OVERLAY, 'codepoint, 0x1ABE);
5970put('BALINESE_SIGN_ULU_RICEM, 'codepoint, 0x1B00);
5971put('BALINESE_SIGN_ULU_CANDRA, 'codepoint, 0x1B01);
5972put('BALINESE_SIGN_CECEK, 'codepoint, 0x1B02);
5973put('BALINESE_SIGN_SURANG, 'codepoint, 0x1B03);
5974put('BALINESE_SIGN_BISAH, 'codepoint, 0x1B04);
5975put('BALINESE_LETTER_AKARA, 'codepoint, 0x1B05);
5976put('BALINESE_LETTER_AKARA_TEDUNG, 'codepoint, 0x1B06);
5977put('BALINESE_LETTER_IKARA, 'codepoint, 0x1B07);
5978put('BALINESE_LETTER_IKARA_TEDUNG, 'codepoint, 0x1B08);
5979put('BALINESE_LETTER_UKARA, 'codepoint, 0x1B09);
5980put('BALINESE_LETTER_UKARA_TEDUNG, 'codepoint, 0x1B0A);
5981put('BALINESE_LETTER_RA_REPA, 'codepoint, 0x1B0B);
5982put('BALINESE_LETTER_RA_REPA_TEDUNG, 'codepoint, 0x1B0C);
5983put('BALINESE_LETTER_LA_LENGA, 'codepoint, 0x1B0D);
5984put('BALINESE_LETTER_LA_LENGA_TEDUNG, 'codepoint, 0x1B0E);
5985put('BALINESE_LETTER_EKARA, 'codepoint, 0x1B0F);
5986put('BALINESE_LETTER_AIKARA, 'codepoint, 0x1B10);
5987put('BALINESE_LETTER_OKARA, 'codepoint, 0x1B11);
5988put('BALINESE_LETTER_OKARA_TEDUNG, 'codepoint, 0x1B12);
5989put('BALINESE_LETTER_KA, 'codepoint, 0x1B13);
5990put('BALINESE_LETTER_KA_MAHAPRANA, 'codepoint, 0x1B14);
5991put('BALINESE_LETTER_GA, 'codepoint, 0x1B15);
5992put('BALINESE_LETTER_GA_GORA, 'codepoint, 0x1B16);
5993put('BALINESE_LETTER_NGA, 'codepoint, 0x1B17);
5994put('BALINESE_LETTER_CA, 'codepoint, 0x1B18);
5995put('BALINESE_LETTER_CA_LACA, 'codepoint, 0x1B19);
5996put('BALINESE_LETTER_JA, 'codepoint, 0x1B1A);
5997put('BALINESE_LETTER_JA_JERA, 'codepoint, 0x1B1B);
5998put('BALINESE_LETTER_NYA, 'codepoint, 0x1B1C);
5999put('BALINESE_LETTER_TA_LATIK, 'codepoint, 0x1B1D);
6000put('BALINESE_LETTER_TA_MURDA_MAHAPRANA, 'codepoint, 0x1B1E);
6001put('BALINESE_LETTER_DA_MURDA_ALPAPRANA, 'codepoint, 0x1B1F);
6002put('BALINESE_LETTER_DA_MURDA_MAHAPRANA, 'codepoint, 0x1B20);
6003put('BALINESE_LETTER_NA_RAMBAT, 'codepoint, 0x1B21);
6004put('BALINESE_LETTER_TA, 'codepoint, 0x1B22);
6005put('BALINESE_LETTER_TA_TAWA, 'codepoint, 0x1B23);
6006put('BALINESE_LETTER_DA, 'codepoint, 0x1B24);
6007put('BALINESE_LETTER_DA_MADU, 'codepoint, 0x1B25);
6008put('BALINESE_LETTER_NA, 'codepoint, 0x1B26);
6009put('BALINESE_LETTER_PA, 'codepoint, 0x1B27);
6010put('BALINESE_LETTER_PA_KAPAL, 'codepoint, 0x1B28);
6011put('BALINESE_LETTER_BA, 'codepoint, 0x1B29);
6012put('BALINESE_LETTER_BA_KEMBANG, 'codepoint, 0x1B2A);
6013put('BALINESE_LETTER_MA, 'codepoint, 0x1B2B);
6014put('BALINESE_LETTER_YA, 'codepoint, 0x1B2C);
6015put('BALINESE_LETTER_RA, 'codepoint, 0x1B2D);
6016put('BALINESE_LETTER_LA, 'codepoint, 0x1B2E);
6017put('BALINESE_LETTER_WA, 'codepoint, 0x1B2F);
6018put('BALINESE_LETTER_SA_SAGA, 'codepoint, 0x1B30);
6019put('BALINESE_LETTER_SA_SAPA, 'codepoint, 0x1B31);
6020put('BALINESE_LETTER_SA, 'codepoint, 0x1B32);
6021put('BALINESE_LETTER_HA, 'codepoint, 0x1B33);
6022put('BALINESE_SIGN_REREKAN, 'codepoint, 0x1B34);
6023put('BALINESE_VOWEL_SIGN_TEDUNG, 'codepoint, 0x1B35);
6024put('BALINESE_VOWEL_SIGN_ULU, 'codepoint, 0x1B36);
6025put('BALINESE_VOWEL_SIGN_ULU_SARI, 'codepoint, 0x1B37);
6026put('BALINESE_VOWEL_SIGN_SUKU, 'codepoint, 0x1B38);
6027put('BALINESE_VOWEL_SIGN_SUKU_ILUT, 'codepoint, 0x1B39);
6028put('BALINESE_VOWEL_SIGN_RA_REPA, 'codepoint, 0x1B3A);
6029put('BALINESE_VOWEL_SIGN_RA_REPA_TEDUNG, 'codepoint, 0x1B3B);
6030put('BALINESE_VOWEL_SIGN_LA_LENGA, 'codepoint, 0x1B3C);
6031put('BALINESE_VOWEL_SIGN_LA_LENGA_TEDUNG, 'codepoint, 0x1B3D);
6032put('BALINESE_VOWEL_SIGN_TALING, 'codepoint, 0x1B3E);
6033put('BALINESE_VOWEL_SIGN_TALING_REPA, 'codepoint, 0x1B3F);
6034put('BALINESE_VOWEL_SIGN_TALING_TEDUNG, 'codepoint, 0x1B40);
6035put('BALINESE_VOWEL_SIGN_TALING_REPA_TEDUNG, 'codepoint, 0x1B41);
6036put('BALINESE_VOWEL_SIGN_PEPET, 'codepoint, 0x1B42);
6037put('BALINESE_VOWEL_SIGN_PEPET_TEDUNG, 'codepoint, 0x1B43);
6038put('BALINESE_ADEG_ADEG, 'codepoint, 0x1B44);
6039put('BALINESE_LETTER_KAF_SASAK, 'codepoint, 0x1B45);
6040put('BALINESE_LETTER_KHOT_SASAK, 'codepoint, 0x1B46);
6041put('BALINESE_LETTER_TZIR_SASAK, 'codepoint, 0x1B47);
6042put('BALINESE_LETTER_EF_SASAK, 'codepoint, 0x1B48);
6043put('BALINESE_LETTER_VE_SASAK, 'codepoint, 0x1B49);
6044put('BALINESE_LETTER_ZAL_SASAK, 'codepoint, 0x1B4A);
6045put('BALINESE_LETTER_ASYURA_SASAK, 'codepoint, 0x1B4B);
6046put('BALINESE_DIGIT_ZERO, 'codepoint, 0x1B50);
6047put('BALINESE_DIGIT_ONE, 'codepoint, 0x1B51);
6048put('BALINESE_DIGIT_TWO, 'codepoint, 0x1B52);
6049put('BALINESE_DIGIT_THREE, 'codepoint, 0x1B53);
6050put('BALINESE_DIGIT_FOUR, 'codepoint, 0x1B54);
6051put('BALINESE_DIGIT_FIVE, 'codepoint, 0x1B55);
6052put('BALINESE_DIGIT_SIX, 'codepoint, 0x1B56);
6053put('BALINESE_DIGIT_SEVEN, 'codepoint, 0x1B57);
6054put('BALINESE_DIGIT_EIGHT, 'codepoint, 0x1B58);
6055put('BALINESE_DIGIT_NINE, 'codepoint, 0x1B59);
6056put('BALINESE_PANTI, 'codepoint, 0x1B5A);
6057put('BALINESE_PAMADA, 'codepoint, 0x1B5B);
6058put('BALINESE_WINDU, 'codepoint, 0x1B5C);
6059put('BALINESE_CARIK_PAMUNGKAH, 'codepoint, 0x1B5D);
6060put('BALINESE_CARIK_SIKI, 'codepoint, 0x1B5E);
6061put('BALINESE_CARIK_PAREREN, 'codepoint, 0x1B5F);
6062put('BALINESE_PAMENENG, 'codepoint, 0x1B60);
6063put('BALINESE_MUSICAL_SYMBOL_DONG, 'codepoint, 0x1B61);
6064put('BALINESE_MUSICAL_SYMBOL_DENG, 'codepoint, 0x1B62);
6065put('BALINESE_MUSICAL_SYMBOL_DUNG, 'codepoint, 0x1B63);
6066put('BALINESE_MUSICAL_SYMBOL_DANG, 'codepoint, 0x1B64);
6067put('BALINESE_MUSICAL_SYMBOL_DANG_SURANG, 'codepoint, 0x1B65);
6068put('BALINESE_MUSICAL_SYMBOL_DING, 'codepoint, 0x1B66);
6069put('BALINESE_MUSICAL_SYMBOL_DAENG, 'codepoint, 0x1B67);
6070put('BALINESE_MUSICAL_SYMBOL_DEUNG, 'codepoint, 0x1B68);
6071put('BALINESE_MUSICAL_SYMBOL_DAING, 'codepoint, 0x1B69);
6072put('BALINESE_MUSICAL_SYMBOL_DANG_GEDE, 'codepoint, 0x1B6A);
6073put('BALINESE_MUSICAL_SYMBOL_COMBINING_TEGEH, 'codepoint, 0x1B6B);
6074put('BALINESE_MUSICAL_SYMBOL_COMBINING_ENDEP, 'codepoint, 0x1B6C);
6075put('BALINESE_MUSICAL_SYMBOL_COMBINING_KEMPUL, 'codepoint, 0x1B6D);
6076put('BALINESE_MUSICAL_SYMBOL_COMBINING_KEMPLI, 'codepoint, 0x1B6E);
6077put('BALINESE_MUSICAL_SYMBOL_COMBINING_JEGOGAN, 'codepoint, 0x1B6F);
6078put('BALINESE_MUSICAL_SYMBOL_COMBINING_KEMPUL_WITH_JEGOGAN, 'codepoint, 0x1B70);
6079put('BALINESE_MUSICAL_SYMBOL_COMBINING_KEMPLI_WITH_JEGOGAN, 'codepoint, 0x1B71);
6080put('BALINESE_MUSICAL_SYMBOL_COMBINING_BENDE, 'codepoint, 0x1B72);
6081put('BALINESE_MUSICAL_SYMBOL_COMBINING_GONG, 'codepoint, 0x1B73);
6082put('BALINESE_MUSICAL_SYMBOL_RIGHT_HAND_OPEN_DUG, 'codepoint, 0x1B74);
6083put('BALINESE_MUSICAL_SYMBOL_RIGHT_HAND_OPEN_DAG, 'codepoint, 0x1B75);
6084put('BALINESE_MUSICAL_SYMBOL_RIGHT_HAND_CLOSED_TUK, 'codepoint, 0x1B76);
6085put('BALINESE_MUSICAL_SYMBOL_RIGHT_HAND_CLOSED_TAK, 'codepoint, 0x1B77);
6086put('BALINESE_MUSICAL_SYMBOL_LEFT_HAND_OPEN_PANG, 'codepoint, 0x1B78);
6087put('BALINESE_MUSICAL_SYMBOL_LEFT_HAND_OPEN_PUNG, 'codepoint, 0x1B79);
6088put('BALINESE_MUSICAL_SYMBOL_LEFT_HAND_CLOSED_PLAK, 'codepoint, 0x1B7A);
6089put('BALINESE_MUSICAL_SYMBOL_LEFT_HAND_CLOSED_PLUK, 'codepoint, 0x1B7B);
6090put('BALINESE_MUSICAL_SYMBOL_LEFT_HAND_OPEN_PING, 'codepoint, 0x1B7C);
6091put('SUNDANESE_SIGN_PANYECEK, 'codepoint, 0x1B80);
6092put('SUNDANESE_SIGN_PANGLAYAR, 'codepoint, 0x1B81);
6093put('SUNDANESE_SIGN_PANGWISAD, 'codepoint, 0x1B82);
6094put('SUNDANESE_LETTER_A, 'codepoint, 0x1B83);
6095put('SUNDANESE_LETTER_I, 'codepoint, 0x1B84);
6096put('SUNDANESE_LETTER_U, 'codepoint, 0x1B85);
6097put('SUNDANESE_LETTER_AE, 'codepoint, 0x1B86);
6098put('SUNDANESE_LETTER_O, 'codepoint, 0x1B87);
6099put('SUNDANESE_LETTER_E, 'codepoint, 0x1B88);
6100put('SUNDANESE_LETTER_EU, 'codepoint, 0x1B89);
6101put('SUNDANESE_LETTER_KA, 'codepoint, 0x1B8A);
6102put('SUNDANESE_LETTER_QA, 'codepoint, 0x1B8B);
6103put('SUNDANESE_LETTER_GA, 'codepoint, 0x1B8C);
6104put('SUNDANESE_LETTER_NGA, 'codepoint, 0x1B8D);
6105put('SUNDANESE_LETTER_CA, 'codepoint, 0x1B8E);
6106put('SUNDANESE_LETTER_JA, 'codepoint, 0x1B8F);
6107put('SUNDANESE_LETTER_ZA, 'codepoint, 0x1B90);
6108put('SUNDANESE_LETTER_NYA, 'codepoint, 0x1B91);
6109put('SUNDANESE_LETTER_TA, 'codepoint, 0x1B92);
6110put('SUNDANESE_LETTER_DA, 'codepoint, 0x1B93);
6111put('SUNDANESE_LETTER_NA, 'codepoint, 0x1B94);
6112put('SUNDANESE_LETTER_PA, 'codepoint, 0x1B95);
6113put('SUNDANESE_LETTER_FA, 'codepoint, 0x1B96);
6114put('SUNDANESE_LETTER_VA, 'codepoint, 0x1B97);
6115put('SUNDANESE_LETTER_BA, 'codepoint, 0x1B98);
6116put('SUNDANESE_LETTER_MA, 'codepoint, 0x1B99);
6117put('SUNDANESE_LETTER_YA, 'codepoint, 0x1B9A);
6118put('SUNDANESE_LETTER_RA, 'codepoint, 0x1B9B);
6119put('SUNDANESE_LETTER_LA, 'codepoint, 0x1B9C);
6120put('SUNDANESE_LETTER_WA, 'codepoint, 0x1B9D);
6121put('SUNDANESE_LETTER_SA, 'codepoint, 0x1B9E);
6122put('SUNDANESE_LETTER_XA, 'codepoint, 0x1B9F);
6123put('SUNDANESE_LETTER_HA, 'codepoint, 0x1BA0);
6124put('SUNDANESE_CONSONANT_SIGN_PAMINGKAL, 'codepoint, 0x1BA1);
6125put('SUNDANESE_CONSONANT_SIGN_PANYAKRA, 'codepoint, 0x1BA2);
6126put('SUNDANESE_CONSONANT_SIGN_PANYIKU, 'codepoint, 0x1BA3);
6127put('SUNDANESE_VOWEL_SIGN_PANGHULU, 'codepoint, 0x1BA4);
6128put('SUNDANESE_VOWEL_SIGN_PANYUKU, 'codepoint, 0x1BA5);
6129put('SUNDANESE_VOWEL_SIGN_PANAELAENG, 'codepoint, 0x1BA6);
6130put('SUNDANESE_VOWEL_SIGN_PANOLONG, 'codepoint, 0x1BA7);
6131put('SUNDANESE_VOWEL_SIGN_PAMEPET, 'codepoint, 0x1BA8);
6132put('SUNDANESE_VOWEL_SIGN_PANEULEUNG, 'codepoint, 0x1BA9);
6133put('SUNDANESE_SIGN_PAMAAEH, 'codepoint, 0x1BAA);
6134put('SUNDANESE_SIGN_VIRAMA, 'codepoint, 0x1BAB);
6135put('SUNDANESE_CONSONANT_SIGN_PASANGAN_MA, 'codepoint, 0x1BAC);
6136put('SUNDANESE_CONSONANT_SIGN_PASANGAN_WA, 'codepoint, 0x1BAD);
6137put('SUNDANESE_LETTER_KHA, 'codepoint, 0x1BAE);
6138put('SUNDANESE_LETTER_SYA, 'codepoint, 0x1BAF);
6139put('SUNDANESE_DIGIT_ZERO, 'codepoint, 0x1BB0);
6140put('SUNDANESE_DIGIT_ONE, 'codepoint, 0x1BB1);
6141put('SUNDANESE_DIGIT_TWO, 'codepoint, 0x1BB2);
6142put('SUNDANESE_DIGIT_THREE, 'codepoint, 0x1BB3);
6143put('SUNDANESE_DIGIT_FOUR, 'codepoint, 0x1BB4);
6144put('SUNDANESE_DIGIT_FIVE, 'codepoint, 0x1BB5);
6145put('SUNDANESE_DIGIT_SIX, 'codepoint, 0x1BB6);
6146put('SUNDANESE_DIGIT_SEVEN, 'codepoint, 0x1BB7);
6147put('SUNDANESE_DIGIT_EIGHT, 'codepoint, 0x1BB8);
6148put('SUNDANESE_DIGIT_NINE, 'codepoint, 0x1BB9);
6149put('SUNDANESE_AVAGRAHA, 'codepoint, 0x1BBA);
6150put('SUNDANESE_LETTER_REU, 'codepoint, 0x1BBB);
6151put('SUNDANESE_LETTER_LEU, 'codepoint, 0x1BBC);
6152put('SUNDANESE_LETTER_BHA, 'codepoint, 0x1BBD);
6153put('SUNDANESE_LETTER_FINAL_K, 'codepoint, 0x1BBE);
6154put('SUNDANESE_LETTER_FINAL_M, 'codepoint, 0x1BBF);
6155put('BATAK_LETTER_A, 'codepoint, 0x1BC0);
6156put('BATAK_LETTER_SIMALUNGUN_A, 'codepoint, 0x1BC1);
6157put('BATAK_LETTER_HA, 'codepoint, 0x1BC2);
6158put('BATAK_LETTER_SIMALUNGUN_HA, 'codepoint, 0x1BC3);
6159put('BATAK_LETTER_MANDAILING_HA, 'codepoint, 0x1BC4);
6160put('BATAK_LETTER_BA, 'codepoint, 0x1BC5);
6161put('BATAK_LETTER_KARO_BA, 'codepoint, 0x1BC6);
6162put('BATAK_LETTER_PA, 'codepoint, 0x1BC7);
6163put('BATAK_LETTER_SIMALUNGUN_PA, 'codepoint, 0x1BC8);
6164put('BATAK_LETTER_NA, 'codepoint, 0x1BC9);
6165put('BATAK_LETTER_MANDAILING_NA, 'codepoint, 0x1BCA);
6166put('BATAK_LETTER_WA, 'codepoint, 0x1BCB);
6167put('BATAK_LETTER_SIMALUNGUN_WA, 'codepoint, 0x1BCC);
6168put('BATAK_LETTER_PAKPAK_WA, 'codepoint, 0x1BCD);
6169put('BATAK_LETTER_GA, 'codepoint, 0x1BCE);
6170put('BATAK_LETTER_SIMALUNGUN_GA, 'codepoint, 0x1BCF);
6171put('BATAK_LETTER_JA, 'codepoint, 0x1BD0);
6172put('BATAK_LETTER_DA, 'codepoint, 0x1BD1);
6173put('BATAK_LETTER_RA, 'codepoint, 0x1BD2);
6174put('BATAK_LETTER_SIMALUNGUN_RA, 'codepoint, 0x1BD3);
6175put('BATAK_LETTER_MA, 'codepoint, 0x1BD4);
6176put('BATAK_LETTER_SIMALUNGUN_MA, 'codepoint, 0x1BD5);
6177put('BATAK_LETTER_SOUTHERN_TA, 'codepoint, 0x1BD6);
6178put('BATAK_LETTER_NORTHERN_TA, 'codepoint, 0x1BD7);
6179put('BATAK_LETTER_SA, 'codepoint, 0x1BD8);
6180put('BATAK_LETTER_SIMALUNGUN_SA, 'codepoint, 0x1BD9);
6181put('BATAK_LETTER_MANDAILING_SA, 'codepoint, 0x1BDA);
6182put('BATAK_LETTER_YA, 'codepoint, 0x1BDB);
6183put('BATAK_LETTER_SIMALUNGUN_YA, 'codepoint, 0x1BDC);
6184put('BATAK_LETTER_NGA, 'codepoint, 0x1BDD);
6185put('BATAK_LETTER_LA, 'codepoint, 0x1BDE);
6186put('BATAK_LETTER_SIMALUNGUN_LA, 'codepoint, 0x1BDF);
6187put('BATAK_LETTER_NYA, 'codepoint, 0x1BE0);
6188put('BATAK_LETTER_CA, 'codepoint, 0x1BE1);
6189put('BATAK_LETTER_NDA, 'codepoint, 0x1BE2);
6190put('BATAK_LETTER_MBA, 'codepoint, 0x1BE3);
6191put('BATAK_LETTER_I, 'codepoint, 0x1BE4);
6192put('BATAK_LETTER_U, 'codepoint, 0x1BE5);
6193put('BATAK_SIGN_TOMPI, 'codepoint, 0x1BE6);
6194put('BATAK_VOWEL_SIGN_E, 'codepoint, 0x1BE7);
6195put('BATAK_VOWEL_SIGN_PAKPAK_E, 'codepoint, 0x1BE8);
6196put('BATAK_VOWEL_SIGN_EE, 'codepoint, 0x1BE9);
6197put('BATAK_VOWEL_SIGN_I, 'codepoint, 0x1BEA);
6198put('BATAK_VOWEL_SIGN_KARO_I, 'codepoint, 0x1BEB);
6199put('BATAK_VOWEL_SIGN_O, 'codepoint, 0x1BEC);
6200put('BATAK_VOWEL_SIGN_KARO_O, 'codepoint, 0x1BED);
6201put('BATAK_VOWEL_SIGN_U, 'codepoint, 0x1BEE);
6202put('BATAK_VOWEL_SIGN_U_FOR_SIMALUNGUN_SA, 'codepoint, 0x1BEF);
6203put('BATAK_CONSONANT_SIGN_NG, 'codepoint, 0x1BF0);
6204put('BATAK_CONSONANT_SIGN_H, 'codepoint, 0x1BF1);
6205put('BATAK_PANGOLAT, 'codepoint, 0x1BF2);
6206put('BATAK_PANONGONAN, 'codepoint, 0x1BF3);
6207put('BATAK_SYMBOL_BINDU_NA_METEK, 'codepoint, 0x1BFC);
6208put('BATAK_SYMBOL_BINDU_PINARBORAS, 'codepoint, 0x1BFD);
6209put('BATAK_SYMBOL_BINDU_JUDUL, 'codepoint, 0x1BFE);
6210put('BATAK_SYMBOL_BINDU_PANGOLAT, 'codepoint, 0x1BFF);
6211put('LEPCHA_LETTER_KA, 'codepoint, 0x1C00);
6212put('LEPCHA_LETTER_KLA, 'codepoint, 0x1C01);
6213put('LEPCHA_LETTER_KHA, 'codepoint, 0x1C02);
6214put('LEPCHA_LETTER_GA, 'codepoint, 0x1C03);
6215put('LEPCHA_LETTER_GLA, 'codepoint, 0x1C04);
6216put('LEPCHA_LETTER_NGA, 'codepoint, 0x1C05);
6217put('LEPCHA_LETTER_CA, 'codepoint, 0x1C06);
6218put('LEPCHA_LETTER_CHA, 'codepoint, 0x1C07);
6219put('LEPCHA_LETTER_JA, 'codepoint, 0x1C08);
6220put('LEPCHA_LETTER_NYA, 'codepoint, 0x1C09);
6221put('LEPCHA_LETTER_TA, 'codepoint, 0x1C0A);
6222put('LEPCHA_LETTER_THA, 'codepoint, 0x1C0B);
6223put('LEPCHA_LETTER_DA, 'codepoint, 0x1C0C);
6224put('LEPCHA_LETTER_NA, 'codepoint, 0x1C0D);
6225put('LEPCHA_LETTER_PA, 'codepoint, 0x1C0E);
6226put('LEPCHA_LETTER_PLA, 'codepoint, 0x1C0F);
6227put('LEPCHA_LETTER_PHA, 'codepoint, 0x1C10);
6228put('LEPCHA_LETTER_FA, 'codepoint, 0x1C11);
6229put('LEPCHA_LETTER_FLA, 'codepoint, 0x1C12);
6230put('LEPCHA_LETTER_BA, 'codepoint, 0x1C13);
6231put('LEPCHA_LETTER_BLA, 'codepoint, 0x1C14);
6232put('LEPCHA_LETTER_MA, 'codepoint, 0x1C15);
6233put('LEPCHA_LETTER_MLA, 'codepoint, 0x1C16);
6234put('LEPCHA_LETTER_TSA, 'codepoint, 0x1C17);
6235put('LEPCHA_LETTER_TSHA, 'codepoint, 0x1C18);
6236put('LEPCHA_LETTER_DZA, 'codepoint, 0x1C19);
6237put('LEPCHA_LETTER_YA, 'codepoint, 0x1C1A);
6238put('LEPCHA_LETTER_RA, 'codepoint, 0x1C1B);
6239put('LEPCHA_LETTER_LA, 'codepoint, 0x1C1C);
6240put('LEPCHA_LETTER_HA, 'codepoint, 0x1C1D);
6241put('LEPCHA_LETTER_HLA, 'codepoint, 0x1C1E);
6242put('LEPCHA_LETTER_VA, 'codepoint, 0x1C1F);
6243put('LEPCHA_LETTER_SA, 'codepoint, 0x1C20);
6244put('LEPCHA_LETTER_SHA, 'codepoint, 0x1C21);
6245put('LEPCHA_LETTER_WA, 'codepoint, 0x1C22);
6246put('LEPCHA_LETTER_A, 'codepoint, 0x1C23);
6247put('LEPCHA_SUBJOINED_LETTER_YA, 'codepoint, 0x1C24);
6248put('LEPCHA_SUBJOINED_LETTER_RA, 'codepoint, 0x1C25);
6249put('LEPCHA_VOWEL_SIGN_AA, 'codepoint, 0x1C26);
6250put('LEPCHA_VOWEL_SIGN_I, 'codepoint, 0x1C27);
6251put('LEPCHA_VOWEL_SIGN_O, 'codepoint, 0x1C28);
6252put('LEPCHA_VOWEL_SIGN_OO, 'codepoint, 0x1C29);
6253put('LEPCHA_VOWEL_SIGN_U, 'codepoint, 0x1C2A);
6254put('LEPCHA_VOWEL_SIGN_UU, 'codepoint, 0x1C2B);
6255put('LEPCHA_VOWEL_SIGN_E, 'codepoint, 0x1C2C);
6256put('LEPCHA_CONSONANT_SIGN_K, 'codepoint, 0x1C2D);
6257put('LEPCHA_CONSONANT_SIGN_M, 'codepoint, 0x1C2E);
6258put('LEPCHA_CONSONANT_SIGN_L, 'codepoint, 0x1C2F);
6259put('LEPCHA_CONSONANT_SIGN_N, 'codepoint, 0x1C30);
6260put('LEPCHA_CONSONANT_SIGN_P, 'codepoint, 0x1C31);
6261put('LEPCHA_CONSONANT_SIGN_R, 'codepoint, 0x1C32);
6262put('LEPCHA_CONSONANT_SIGN_T, 'codepoint, 0x1C33);
6263put('LEPCHA_CONSONANT_SIGN_NYIN_DO, 'codepoint, 0x1C34);
6264put('LEPCHA_CONSONANT_SIGN_KANG, 'codepoint, 0x1C35);
6265put('LEPCHA_SIGN_RAN, 'codepoint, 0x1C36);
6266put('LEPCHA_SIGN_NUKTA, 'codepoint, 0x1C37);
6267put('LEPCHA_PUNCTUATION_TA_ROL, 'codepoint, 0x1C3B);
6268put('LEPCHA_PUNCTUATION_NYET_THYOOM_TA_ROL, 'codepoint, 0x1C3C);
6269put('LEPCHA_PUNCTUATION_CER_WA, 'codepoint, 0x1C3D);
6270put('LEPCHA_PUNCTUATION_TSHOOK_CER_WA, 'codepoint, 0x1C3E);
6271put('LEPCHA_PUNCTUATION_TSHOOK, 'codepoint, 0x1C3F);
6272put('LEPCHA_DIGIT_ZERO, 'codepoint, 0x1C40);
6273put('LEPCHA_DIGIT_ONE, 'codepoint, 0x1C41);
6274put('LEPCHA_DIGIT_TWO, 'codepoint, 0x1C42);
6275put('LEPCHA_DIGIT_THREE, 'codepoint, 0x1C43);
6276put('LEPCHA_DIGIT_FOUR, 'codepoint, 0x1C44);
6277put('LEPCHA_DIGIT_FIVE, 'codepoint, 0x1C45);
6278put('LEPCHA_DIGIT_SIX, 'codepoint, 0x1C46);
6279put('LEPCHA_DIGIT_SEVEN, 'codepoint, 0x1C47);
6280put('LEPCHA_DIGIT_EIGHT, 'codepoint, 0x1C48);
6281put('LEPCHA_DIGIT_NINE, 'codepoint, 0x1C49);
6282put('LEPCHA_LETTER_TTA, 'codepoint, 0x1C4D);
6283put('LEPCHA_LETTER_TTHA, 'codepoint, 0x1C4E);
6284put('LEPCHA_LETTER_DDA, 'codepoint, 0x1C4F);
6285put('OL_CHIKI_DIGIT_ZERO, 'codepoint, 0x1C50);
6286put('OL_CHIKI_DIGIT_ONE, 'codepoint, 0x1C51);
6287put('OL_CHIKI_DIGIT_TWO, 'codepoint, 0x1C52);
6288put('OL_CHIKI_DIGIT_THREE, 'codepoint, 0x1C53);
6289put('OL_CHIKI_DIGIT_FOUR, 'codepoint, 0x1C54);
6290put('OL_CHIKI_DIGIT_FIVE, 'codepoint, 0x1C55);
6291put('OL_CHIKI_DIGIT_SIX, 'codepoint, 0x1C56);
6292put('OL_CHIKI_DIGIT_SEVEN, 'codepoint, 0x1C57);
6293put('OL_CHIKI_DIGIT_EIGHT, 'codepoint, 0x1C58);
6294put('OL_CHIKI_DIGIT_NINE, 'codepoint, 0x1C59);
6295put('OL_CHIKI_LETTER_LA, 'codepoint, 0x1C5A);
6296put('OL_CHIKI_LETTER_AT, 'codepoint, 0x1C5B);
6297put('OL_CHIKI_LETTER_AG, 'codepoint, 0x1C5C);
6298put('OL_CHIKI_LETTER_ANG, 'codepoint, 0x1C5D);
6299put('OL_CHIKI_LETTER_AL, 'codepoint, 0x1C5E);
6300put('OL_CHIKI_LETTER_LAA, 'codepoint, 0x1C5F);
6301put('OL_CHIKI_LETTER_AAK, 'codepoint, 0x1C60);
6302put('OL_CHIKI_LETTER_AAJ, 'codepoint, 0x1C61);
6303put('OL_CHIKI_LETTER_AAM, 'codepoint, 0x1C62);
6304put('OL_CHIKI_LETTER_AAW, 'codepoint, 0x1C63);
6305put('OL_CHIKI_LETTER_LI, 'codepoint, 0x1C64);
6306put('OL_CHIKI_LETTER_IS, 'codepoint, 0x1C65);
6307put('OL_CHIKI_LETTER_IH, 'codepoint, 0x1C66);
6308put('OL_CHIKI_LETTER_INY, 'codepoint, 0x1C67);
6309put('OL_CHIKI_LETTER_IR, 'codepoint, 0x1C68);
6310put('OL_CHIKI_LETTER_LU, 'codepoint, 0x1C69);
6311put('OL_CHIKI_LETTER_UC, 'codepoint, 0x1C6A);
6312put('OL_CHIKI_LETTER_UD, 'codepoint, 0x1C6B);
6313put('OL_CHIKI_LETTER_UNN, 'codepoint, 0x1C6C);
6314put('OL_CHIKI_LETTER_UY, 'codepoint, 0x1C6D);
6315put('OL_CHIKI_LETTER_LE, 'codepoint, 0x1C6E);
6316put('OL_CHIKI_LETTER_EP, 'codepoint, 0x1C6F);
6317put('OL_CHIKI_LETTER_EDD, 'codepoint, 0x1C70);
6318put('OL_CHIKI_LETTER_EN, 'codepoint, 0x1C71);
6319put('OL_CHIKI_LETTER_ERR, 'codepoint, 0x1C72);
6320put('OL_CHIKI_LETTER_LO, 'codepoint, 0x1C73);
6321put('OL_CHIKI_LETTER_OTT, 'codepoint, 0x1C74);
6322put('OL_CHIKI_LETTER_OB, 'codepoint, 0x1C75);
6323put('OL_CHIKI_LETTER_OV, 'codepoint, 0x1C76);
6324put('OL_CHIKI_LETTER_OH, 'codepoint, 0x1C77);
6325put('OL_CHIKI_MU_TTUDDAG, 'codepoint, 0x1C78);
6326put('OL_CHIKI_GAAHLAA_TTUDDAAG, 'codepoint, 0x1C79);
6327put('OL_CHIKI_MU_GAAHLAA_TTUDDAAG, 'codepoint, 0x1C7A);
6328put('OL_CHIKI_RELAA, 'codepoint, 0x1C7B);
6329put('OL_CHIKI_PHAARKAA, 'codepoint, 0x1C7C);
6330put('OL_CHIKI_AHAD, 'codepoint, 0x1C7D);
6331put('OL_CHIKI_PUNCTUATION_MUCAAD, 'codepoint, 0x1C7E);
6332put('OL_CHIKI_PUNCTUATION_DOUBLE_MUCAAD, 'codepoint, 0x1C7F);
6333put('SUNDANESE_PUNCTUATION_BINDU_SURYA, 'codepoint, 0x1CC0);
6334put('SUNDANESE_PUNCTUATION_BINDU_PANGLONG, 'codepoint, 0x1CC1);
6335put('SUNDANESE_PUNCTUATION_BINDU_PURNAMA, 'codepoint, 0x1CC2);
6336put('SUNDANESE_PUNCTUATION_BINDU_CAKRA, 'codepoint, 0x1CC3);
6337put('SUNDANESE_PUNCTUATION_BINDU_LEU_SATANGA, 'codepoint, 0x1CC4);
6338put('SUNDANESE_PUNCTUATION_BINDU_KA_SATANGA, 'codepoint, 0x1CC5);
6339put('SUNDANESE_PUNCTUATION_BINDU_DA_SATANGA, 'codepoint, 0x1CC6);
6340put('SUNDANESE_PUNCTUATION_BINDU_BA_SATANGA, 'codepoint, 0x1CC7);
6341put('VEDIC_TONE_KARSHANA, 'codepoint, 0x1CD0);
6342put('VEDIC_TONE_SHARA, 'codepoint, 0x1CD1);
6343put('VEDIC_TONE_PRENKHA, 'codepoint, 0x1CD2);
6344put('VEDIC_SIGN_NIHSHVASA, 'codepoint, 0x1CD3);
6345put('VEDIC_SIGN_YAJURVEDIC_MIDLINE_SVARITA, 'codepoint, 0x1CD4);
6346put('VEDIC_TONE_YAJURVEDIC_AGGRAVATED_INDEPENDENT_SVARITA, 'codepoint, 0x1CD5);
6347put('VEDIC_TONE_YAJURVEDIC_INDEPENDENT_SVARITA, 'codepoint, 0x1CD6);
6348put('VEDIC_TONE_YAJURVEDIC_KATHAKA_INDEPENDENT_SVARITA, 'codepoint, 0x1CD7);
6349put('VEDIC_TONE_CANDRA_BELOW, 'codepoint, 0x1CD8);
6350put('VEDIC_TONE_YAJURVEDIC_KATHAKA_INDEPENDENT_SVARITA_SCHROEDER, 'codepoint, 0x1CD9);
6351put('VEDIC_TONE_DOUBLE_SVARITA, 'codepoint, 0x1CDA);
6352put('VEDIC_TONE_TRIPLE_SVARITA, 'codepoint, 0x1CDB);
6353put('VEDIC_TONE_KATHAKA_ANUDATTA, 'codepoint, 0x1CDC);
6354put('VEDIC_TONE_DOT_BELOW, 'codepoint, 0x1CDD);
6355put('VEDIC_TONE_TWO_DOTS_BELOW, 'codepoint, 0x1CDE);
6356put('VEDIC_TONE_THREE_DOTS_BELOW, 'codepoint, 0x1CDF);
6357put('VEDIC_TONE_RIGVEDIC_KASHMIRI_INDEPENDENT_SVARITA, 'codepoint, 0x1CE0);
6358put('VEDIC_TONE_ATHARVAVEDIC_INDEPENDENT_SVARITA, 'codepoint, 0x1CE1);
6359put('VEDIC_SIGN_VISARGA_SVARITA, 'codepoint, 0x1CE2);
6360put('VEDIC_SIGN_VISARGA_UDATTA, 'codepoint, 0x1CE3);
6361put('VEDIC_SIGN_REVERSED_VISARGA_UDATTA, 'codepoint, 0x1CE4);
6362put('VEDIC_SIGN_VISARGA_ANUDATTA, 'codepoint, 0x1CE5);
6363put('VEDIC_SIGN_REVERSED_VISARGA_ANUDATTA, 'codepoint, 0x1CE6);
6364put('VEDIC_SIGN_VISARGA_UDATTA_WITH_TAIL, 'codepoint, 0x1CE7);
6365put('VEDIC_SIGN_VISARGA_ANUDATTA_WITH_TAIL, 'codepoint, 0x1CE8);
6366put('VEDIC_SIGN_ANUSVARA_ANTARGOMUKHA, 'codepoint, 0x1CE9);
6367put('VEDIC_SIGN_ANUSVARA_BAHIRGOMUKHA, 'codepoint, 0x1CEA);
6368put('VEDIC_SIGN_ANUSVARA_VAMAGOMUKHA, 'codepoint, 0x1CEB);
6369put('VEDIC_SIGN_ANUSVARA_VAMAGOMUKHA_WITH_TAIL, 'codepoint, 0x1CEC);
6370put('VEDIC_SIGN_TIRYAK, 'codepoint, 0x1CED);
6371put('VEDIC_SIGN_HEXIFORM_LONG_ANUSVARA, 'codepoint, 0x1CEE);
6372put('VEDIC_SIGN_LONG_ANUSVARA, 'codepoint, 0x1CEF);
6373put('VEDIC_SIGN_RTHANG_LONG_ANUSVARA, 'codepoint, 0x1CF0);
6374put('VEDIC_SIGN_ANUSVARA_UBHAYATO_MUKHA, 'codepoint, 0x1CF1);
6375put('VEDIC_SIGN_ARDHAVISARGA, 'codepoint, 0x1CF2);
6376put('VEDIC_SIGN_ROTATED_ARDHAVISARGA, 'codepoint, 0x1CF3);
6377put('VEDIC_TONE_CANDRA_ABOVE, 'codepoint, 0x1CF4);
6378put('VEDIC_SIGN_JIHVAMULIYA, 'codepoint, 0x1CF5);
6379put('VEDIC_SIGN_UPADHMANIYA, 'codepoint, 0x1CF6);
6380put('VEDIC_TONE_RING_ABOVE, 'codepoint, 0x1CF8);
6381put('VEDIC_TONE_DOUBLE_RING_ABOVE, 'codepoint, 0x1CF9);
6382put('LATIN_LETTER_SMALL_CAPITAL_A, 'codepoint, 0x1D00);
6383put('LATIN_LETTER_SMALL_CAPITAL_AE, 'codepoint, 0x1D01);
6384put('LATIN_SMALL_LETTER_TURNED_AE, 'codepoint, 0x1D02);
6385put('LATIN_LETTER_SMALL_CAPITAL_BARRED_B, 'codepoint, 0x1D03);
6386put('LATIN_LETTER_SMALL_CAPITAL_C, 'codepoint, 0x1D04);
6387put('LATIN_LETTER_SMALL_CAPITAL_D, 'codepoint, 0x1D05);
6388put('LATIN_LETTER_SMALL_CAPITAL_ETH, 'codepoint, 0x1D06);
6389put('LATIN_LETTER_SMALL_CAPITAL_E, 'codepoint, 0x1D07);
6390put('LATIN_SMALL_LETTER_TURNED_OPEN_E, 'codepoint, 0x1D08);
6391put('LATIN_SMALL_LETTER_TURNED_I, 'codepoint, 0x1D09);
6392put('LATIN_LETTER_SMALL_CAPITAL_J, 'codepoint, 0x1D0A);
6393put('LATIN_LETTER_SMALL_CAPITAL_K, 'codepoint, 0x1D0B);
6394put('LATIN_LETTER_SMALL_CAPITAL_L_WITH_STROKE, 'codepoint, 0x1D0C);
6395put('LATIN_LETTER_SMALL_CAPITAL_M, 'codepoint, 0x1D0D);
6396put('LATIN_LETTER_SMALL_CAPITAL_REVERSED_N, 'codepoint, 0x1D0E);
6397put('LATIN_LETTER_SMALL_CAPITAL_O, 'codepoint, 0x1D0F);
6398put('LATIN_LETTER_SMALL_CAPITAL_OPEN_O, 'codepoint, 0x1D10);
6399put('LATIN_SMALL_LETTER_SIDEWAYS_O, 'codepoint, 0x1D11);
6400put('LATIN_SMALL_LETTER_SIDEWAYS_OPEN_O, 'codepoint, 0x1D12);
6401put('LATIN_SMALL_LETTER_SIDEWAYS_O_WITH_STROKE, 'codepoint, 0x1D13);
6402put('LATIN_SMALL_LETTER_TURNED_OE, 'codepoint, 0x1D14);
6403put('LATIN_LETTER_SMALL_CAPITAL_OU, 'codepoint, 0x1D15);
6404put('LATIN_SMALL_LETTER_TOP_HALF_O, 'codepoint, 0x1D16);
6405put('LATIN_SMALL_LETTER_BOTTOM_HALF_O, 'codepoint, 0x1D17);
6406put('LATIN_LETTER_SMALL_CAPITAL_P, 'codepoint, 0x1D18);
6407put('LATIN_LETTER_SMALL_CAPITAL_REVERSED_R, 'codepoint, 0x1D19);
6408put('LATIN_LETTER_SMALL_CAPITAL_TURNED_R, 'codepoint, 0x1D1A);
6409put('LATIN_LETTER_SMALL_CAPITAL_T, 'codepoint, 0x1D1B);
6410put('LATIN_LETTER_SMALL_CAPITAL_U, 'codepoint, 0x1D1C);
6411put('LATIN_SMALL_LETTER_SIDEWAYS_U, 'codepoint, 0x1D1D);
6412put('LATIN_SMALL_LETTER_SIDEWAYS_DIAERESIZED_U, 'codepoint, 0x1D1E);
6413put('LATIN_SMALL_LETTER_SIDEWAYS_TURNED_M, 'codepoint, 0x1D1F);
6414put('LATIN_LETTER_SMALL_CAPITAL_V, 'codepoint, 0x1D20);
6415put('LATIN_LETTER_SMALL_CAPITAL_W, 'codepoint, 0x1D21);
6416put('LATIN_LETTER_SMALL_CAPITAL_Z, 'codepoint, 0x1D22);
6417put('LATIN_LETTER_SMALL_CAPITAL_EZH, 'codepoint, 0x1D23);
6418put('LATIN_LETTER_VOICED_LARYNGEAL_SPIRANT, 'codepoint, 0x1D24);
6419put('LATIN_LETTER_AIN, 'codepoint, 0x1D25);
6420put('GREEK_LETTER_SMALL_CAPITAL_GAMMA, 'codepoint, 0x1D26);
6421put('GREEK_LETTER_SMALL_CAPITAL_LAMDA, 'codepoint, 0x1D27);
6422put('GREEK_LETTER_SMALL_CAPITAL_PI, 'codepoint, 0x1D28);
6423put('GREEK_LETTER_SMALL_CAPITAL_RHO, 'codepoint, 0x1D29);
6424put('GREEK_LETTER_SMALL_CAPITAL_PSI, 'codepoint, 0x1D2A);
6425put('CYRILLIC_LETTER_SMALL_CAPITAL_EL, 'codepoint, 0x1D2B);
6426put('MODIFIER_LETTER_CAPITAL_A, 'codepoint, 0x1D2C);
6427put('MODIFIER_LETTER_CAPITAL_AE, 'codepoint, 0x1D2D);
6428put('MODIFIER_LETTER_CAPITAL_B, 'codepoint, 0x1D2E);
6429put('MODIFIER_LETTER_CAPITAL_BARRED_B, 'codepoint, 0x1D2F);
6430put('MODIFIER_LETTER_CAPITAL_D, 'codepoint, 0x1D30);
6431put('MODIFIER_LETTER_CAPITAL_E, 'codepoint, 0x1D31);
6432put('MODIFIER_LETTER_CAPITAL_REVERSED_E, 'codepoint, 0x1D32);
6433put('MODIFIER_LETTER_CAPITAL_G, 'codepoint, 0x1D33);
6434put('MODIFIER_LETTER_CAPITAL_H, 'codepoint, 0x1D34);
6435put('MODIFIER_LETTER_CAPITAL_I, 'codepoint, 0x1D35);
6436put('MODIFIER_LETTER_CAPITAL_J, 'codepoint, 0x1D36);
6437put('MODIFIER_LETTER_CAPITAL_K, 'codepoint, 0x1D37);
6438put('MODIFIER_LETTER_CAPITAL_L, 'codepoint, 0x1D38);
6439put('MODIFIER_LETTER_CAPITAL_M, 'codepoint, 0x1D39);
6440put('MODIFIER_LETTER_CAPITAL_N, 'codepoint, 0x1D3A);
6441put('MODIFIER_LETTER_CAPITAL_REVERSED_N, 'codepoint, 0x1D3B);
6442put('MODIFIER_LETTER_CAPITAL_O, 'codepoint, 0x1D3C);
6443put('MODIFIER_LETTER_CAPITAL_OU, 'codepoint, 0x1D3D);
6444put('MODIFIER_LETTER_CAPITAL_P, 'codepoint, 0x1D3E);
6445put('MODIFIER_LETTER_CAPITAL_R, 'codepoint, 0x1D3F);
6446put('MODIFIER_LETTER_CAPITAL_T, 'codepoint, 0x1D40);
6447put('MODIFIER_LETTER_CAPITAL_U, 'codepoint, 0x1D41);
6448put('MODIFIER_LETTER_CAPITAL_W, 'codepoint, 0x1D42);
6449put('MODIFIER_LETTER_SMALL_A, 'codepoint, 0x1D43);
6450put('MODIFIER_LETTER_SMALL_TURNED_A, 'codepoint, 0x1D44);
6451put('MODIFIER_LETTER_SMALL_ALPHA, 'codepoint, 0x1D45);
6452put('MODIFIER_LETTER_SMALL_TURNED_AE, 'codepoint, 0x1D46);
6453put('MODIFIER_LETTER_SMALL_B, 'codepoint, 0x1D47);
6454put('MODIFIER_LETTER_SMALL_D, 'codepoint, 0x1D48);
6455put('MODIFIER_LETTER_SMALL_E, 'codepoint, 0x1D49);
6456put('MODIFIER_LETTER_SMALL_SCHWA, 'codepoint, 0x1D4A);
6457put('MODIFIER_LETTER_SMALL_OPEN_E, 'codepoint, 0x1D4B);
6458put('MODIFIER_LETTER_SMALL_TURNED_OPEN_E, 'codepoint, 0x1D4C);
6459put('MODIFIER_LETTER_SMALL_G, 'codepoint, 0x1D4D);
6460put('MODIFIER_LETTER_SMALL_TURNED_I, 'codepoint, 0x1D4E);
6461put('MODIFIER_LETTER_SMALL_K, 'codepoint, 0x1D4F);
6462put('MODIFIER_LETTER_SMALL_M, 'codepoint, 0x1D50);
6463put('MODIFIER_LETTER_SMALL_ENG, 'codepoint, 0x1D51);
6464put('MODIFIER_LETTER_SMALL_O, 'codepoint, 0x1D52);
6465put('MODIFIER_LETTER_SMALL_OPEN_O, 'codepoint, 0x1D53);
6466put('MODIFIER_LETTER_SMALL_TOP_HALF_O, 'codepoint, 0x1D54);
6467put('MODIFIER_LETTER_SMALL_BOTTOM_HALF_O, 'codepoint, 0x1D55);
6468put('MODIFIER_LETTER_SMALL_P, 'codepoint, 0x1D56);
6469put('MODIFIER_LETTER_SMALL_T, 'codepoint, 0x1D57);
6470put('MODIFIER_LETTER_SMALL_U, 'codepoint, 0x1D58);
6471put('MODIFIER_LETTER_SMALL_SIDEWAYS_U, 'codepoint, 0x1D59);
6472put('MODIFIER_LETTER_SMALL_TURNED_M, 'codepoint, 0x1D5A);
6473put('MODIFIER_LETTER_SMALL_V, 'codepoint, 0x1D5B);
6474put('MODIFIER_LETTER_SMALL_AIN, 'codepoint, 0x1D5C);
6475put('MODIFIER_LETTER_SMALL_BETA, 'codepoint, 0x1D5D);
6476put('MODIFIER_LETTER_SMALL_GREEK_GAMMA, 'codepoint, 0x1D5E);
6477put('MODIFIER_LETTER_SMALL_DELTA, 'codepoint, 0x1D5F);
6478put('MODIFIER_LETTER_SMALL_GREEK_PHI, 'codepoint, 0x1D60);
6479put('MODIFIER_LETTER_SMALL_CHI, 'codepoint, 0x1D61);
6480put('LATIN_SUBSCRIPT_SMALL_LETTER_I, 'codepoint, 0x1D62);
6481put('LATIN_SUBSCRIPT_SMALL_LETTER_R, 'codepoint, 0x1D63);
6482put('LATIN_SUBSCRIPT_SMALL_LETTER_U, 'codepoint, 0x1D64);
6483put('LATIN_SUBSCRIPT_SMALL_LETTER_V, 'codepoint, 0x1D65);
6484put('GREEK_SUBSCRIPT_SMALL_LETTER_BETA, 'codepoint, 0x1D66);
6485put('GREEK_SUBSCRIPT_SMALL_LETTER_GAMMA, 'codepoint, 0x1D67);
6486put('GREEK_SUBSCRIPT_SMALL_LETTER_RHO, 'codepoint, 0x1D68);
6487put('GREEK_SUBSCRIPT_SMALL_LETTER_PHI, 'codepoint, 0x1D69);
6488put('GREEK_SUBSCRIPT_SMALL_LETTER_CHI, 'codepoint, 0x1D6A);
6489put('LATIN_SMALL_LETTER_UE, 'codepoint, 0x1D6B);
6490put('LATIN_SMALL_LETTER_B_WITH_MIDDLE_TILDE, 'codepoint, 0x1D6C);
6491put('LATIN_SMALL_LETTER_D_WITH_MIDDLE_TILDE, 'codepoint, 0x1D6D);
6492put('LATIN_SMALL_LETTER_F_WITH_MIDDLE_TILDE, 'codepoint, 0x1D6E);
6493put('LATIN_SMALL_LETTER_M_WITH_MIDDLE_TILDE, 'codepoint, 0x1D6F);
6494put('LATIN_SMALL_LETTER_N_WITH_MIDDLE_TILDE, 'codepoint, 0x1D70);
6495put('LATIN_SMALL_LETTER_P_WITH_MIDDLE_TILDE, 'codepoint, 0x1D71);
6496put('LATIN_SMALL_LETTER_R_WITH_MIDDLE_TILDE, 'codepoint, 0x1D72);
6497put('LATIN_SMALL_LETTER_R_WITH_FISHHOOK_AND_MIDDLE_TILDE, 'codepoint, 0x1D73);
6498put('LATIN_SMALL_LETTER_S_WITH_MIDDLE_TILDE, 'codepoint, 0x1D74);
6499put('LATIN_SMALL_LETTER_T_WITH_MIDDLE_TILDE, 'codepoint, 0x1D75);
6500put('LATIN_SMALL_LETTER_Z_WITH_MIDDLE_TILDE, 'codepoint, 0x1D76);
6501put('LATIN_SMALL_LETTER_TURNED_G, 'codepoint, 0x1D77);
6502put('MODIFIER_LETTER_CYRILLIC_EN, 'codepoint, 0x1D78);
6503put('LATIN_SMALL_LETTER_INSULAR_G, 'codepoint, 0x1D79);
6504put('LATIN_SMALL_LETTER_TH_WITH_STRIKETHROUGH, 'codepoint, 0x1D7A);
6505put('LATIN_SMALL_CAPITAL_LETTER_I_WITH_STROKE, 'codepoint, 0x1D7B);
6506put('LATIN_SMALL_LETTER_IOTA_WITH_STROKE, 'codepoint, 0x1D7C);
6507put('LATIN_SMALL_LETTER_P_WITH_STROKE, 'codepoint, 0x1D7D);
6508put('LATIN_SMALL_CAPITAL_LETTER_U_WITH_STROKE, 'codepoint, 0x1D7E);
6509put('LATIN_SMALL_LETTER_UPSILON_WITH_STROKE, 'codepoint, 0x1D7F);
6510put('LATIN_SMALL_LETTER_B_WITH_PALATAL_HOOK, 'codepoint, 0x1D80);
6511put('LATIN_SMALL_LETTER_D_WITH_PALATAL_HOOK, 'codepoint, 0x1D81);
6512put('LATIN_SMALL_LETTER_F_WITH_PALATAL_HOOK, 'codepoint, 0x1D82);
6513put('LATIN_SMALL_LETTER_G_WITH_PALATAL_HOOK, 'codepoint, 0x1D83);
6514put('LATIN_SMALL_LETTER_K_WITH_PALATAL_HOOK, 'codepoint, 0x1D84);
6515put('LATIN_SMALL_LETTER_L_WITH_PALATAL_HOOK, 'codepoint, 0x1D85);
6516put('LATIN_SMALL_LETTER_M_WITH_PALATAL_HOOK, 'codepoint, 0x1D86);
6517put('LATIN_SMALL_LETTER_N_WITH_PALATAL_HOOK, 'codepoint, 0x1D87);
6518put('LATIN_SMALL_LETTER_P_WITH_PALATAL_HOOK, 'codepoint, 0x1D88);
6519put('LATIN_SMALL_LETTER_R_WITH_PALATAL_HOOK, 'codepoint, 0x1D89);
6520put('LATIN_SMALL_LETTER_S_WITH_PALATAL_HOOK, 'codepoint, 0x1D8A);
6521put('LATIN_SMALL_LETTER_ESH_WITH_PALATAL_HOOK, 'codepoint, 0x1D8B);
6522put('LATIN_SMALL_LETTER_V_WITH_PALATAL_HOOK, 'codepoint, 0x1D8C);
6523put('LATIN_SMALL_LETTER_X_WITH_PALATAL_HOOK, 'codepoint, 0x1D8D);
6524put('LATIN_SMALL_LETTER_Z_WITH_PALATAL_HOOK, 'codepoint, 0x1D8E);
6525put('LATIN_SMALL_LETTER_A_WITH_RETROFLEX_HOOK, 'codepoint, 0x1D8F);
6526put('LATIN_SMALL_LETTER_ALPHA_WITH_RETROFLEX_HOOK, 'codepoint, 0x1D90);
6527put('LATIN_SMALL_LETTER_D_WITH_HOOK_AND_TAIL, 'codepoint, 0x1D91);
6528put('LATIN_SMALL_LETTER_E_WITH_RETROFLEX_HOOK, 'codepoint, 0x1D92);
6529put('LATIN_SMALL_LETTER_OPEN_E_WITH_RETROFLEX_HOOK, 'codepoint, 0x1D93);
6530put('LATIN_SMALL_LETTER_REVERSED_OPEN_E_WITH_RETROFLEX_HOOK, 'codepoint, 0x1D94);
6531put('LATIN_SMALL_LETTER_SCHWA_WITH_RETROFLEX_HOOK, 'codepoint, 0x1D95);
6532put('LATIN_SMALL_LETTER_I_WITH_RETROFLEX_HOOK, 'codepoint, 0x1D96);
6533put('LATIN_SMALL_LETTER_OPEN_O_WITH_RETROFLEX_HOOK, 'codepoint, 0x1D97);
6534put('LATIN_SMALL_LETTER_ESH_WITH_RETROFLEX_HOOK, 'codepoint, 0x1D98);
6535put('LATIN_SMALL_LETTER_U_WITH_RETROFLEX_HOOK, 'codepoint, 0x1D99);
6536put('LATIN_SMALL_LETTER_EZH_WITH_RETROFLEX_HOOK, 'codepoint, 0x1D9A);
6537put('MODIFIER_LETTER_SMALL_TURNED_ALPHA, 'codepoint, 0x1D9B);
6538put('MODIFIER_LETTER_SMALL_C, 'codepoint, 0x1D9C);
6539put('MODIFIER_LETTER_SMALL_C_WITH_CURL, 'codepoint, 0x1D9D);
6540put('MODIFIER_LETTER_SMALL_ETH, 'codepoint, 0x1D9E);
6541put('MODIFIER_LETTER_SMALL_REVERSED_OPEN_E, 'codepoint, 0x1D9F);
6542put('MODIFIER_LETTER_SMALL_F, 'codepoint, 0x1DA0);
6543put('MODIFIER_LETTER_SMALL_DOTLESS_J_WITH_STROKE, 'codepoint, 0x1DA1);
6544put('MODIFIER_LETTER_SMALL_SCRIPT_G, 'codepoint, 0x1DA2);
6545put('MODIFIER_LETTER_SMALL_TURNED_H, 'codepoint, 0x1DA3);
6546put('MODIFIER_LETTER_SMALL_I_WITH_STROKE, 'codepoint, 0x1DA4);
6547put('MODIFIER_LETTER_SMALL_IOTA, 'codepoint, 0x1DA5);
6548put('MODIFIER_LETTER_SMALL_CAPITAL_I, 'codepoint, 0x1DA6);
6549put('MODIFIER_LETTER_SMALL_CAPITAL_I_WITH_STROKE, 'codepoint, 0x1DA7);
6550put('MODIFIER_LETTER_SMALL_J_WITH_CROSSED_TAIL, 'codepoint, 0x1DA8);
6551put('MODIFIER_LETTER_SMALL_L_WITH_RETROFLEX_HOOK, 'codepoint, 0x1DA9);
6552put('MODIFIER_LETTER_SMALL_L_WITH_PALATAL_HOOK, 'codepoint, 0x1DAA);
6553put('MODIFIER_LETTER_SMALL_CAPITAL_L, 'codepoint, 0x1DAB);
6554put('MODIFIER_LETTER_SMALL_M_WITH_HOOK, 'codepoint, 0x1DAC);
6555put('MODIFIER_LETTER_SMALL_TURNED_M_WITH_LONG_LEG, 'codepoint, 0x1DAD);
6556put('MODIFIER_LETTER_SMALL_N_WITH_LEFT_HOOK, 'codepoint, 0x1DAE);
6557put('MODIFIER_LETTER_SMALL_N_WITH_RETROFLEX_HOOK, 'codepoint, 0x1DAF);
6558put('MODIFIER_LETTER_SMALL_CAPITAL_N, 'codepoint, 0x1DB0);
6559put('MODIFIER_LETTER_SMALL_BARRED_O, 'codepoint, 0x1DB1);
6560put('MODIFIER_LETTER_SMALL_PHI, 'codepoint, 0x1DB2);
6561put('MODIFIER_LETTER_SMALL_S_WITH_HOOK, 'codepoint, 0x1DB3);
6562put('MODIFIER_LETTER_SMALL_ESH, 'codepoint, 0x1DB4);
6563put('MODIFIER_LETTER_SMALL_T_WITH_PALATAL_HOOK, 'codepoint, 0x1DB5);
6564put('MODIFIER_LETTER_SMALL_U_BAR, 'codepoint, 0x1DB6);
6565put('MODIFIER_LETTER_SMALL_UPSILON, 'codepoint, 0x1DB7);
6566put('MODIFIER_LETTER_SMALL_CAPITAL_U, 'codepoint, 0x1DB8);
6567put('MODIFIER_LETTER_SMALL_V_WITH_HOOK, 'codepoint, 0x1DB9);
6568put('MODIFIER_LETTER_SMALL_TURNED_V, 'codepoint, 0x1DBA);
6569put('MODIFIER_LETTER_SMALL_Z, 'codepoint, 0x1DBB);
6570put('MODIFIER_LETTER_SMALL_Z_WITH_RETROFLEX_HOOK, 'codepoint, 0x1DBC);
6571put('MODIFIER_LETTER_SMALL_Z_WITH_CURL, 'codepoint, 0x1DBD);
6572put('MODIFIER_LETTER_SMALL_EZH, 'codepoint, 0x1DBE);
6573put('MODIFIER_LETTER_SMALL_THETA, 'codepoint, 0x1DBF);
6574put('COMBINING_DOTTED_GRAVE_ACCENT, 'codepoint, 0x1DC0);
6575put('COMBINING_DOTTED_ACUTE_ACCENT, 'codepoint, 0x1DC1);
6576put('COMBINING_SNAKE_BELOW, 'codepoint, 0x1DC2);
6577put('COMBINING_SUSPENSION_MARK, 'codepoint, 0x1DC3);
6578put('COMBINING_MACRON_ACUTE, 'codepoint, 0x1DC4);
6579put('COMBINING_GRAVE_MACRON, 'codepoint, 0x1DC5);
6580put('COMBINING_MACRON_GRAVE, 'codepoint, 0x1DC6);
6581put('COMBINING_ACUTE_MACRON, 'codepoint, 0x1DC7);
6582put('COMBINING_GRAVE_ACUTE_GRAVE, 'codepoint, 0x1DC8);
6583put('COMBINING_ACUTE_GRAVE_ACUTE, 'codepoint, 0x1DC9);
6584put('COMBINING_LATIN_SMALL_LETTER_R_BELOW, 'codepoint, 0x1DCA);
6585put('COMBINING_BREVE_MACRON, 'codepoint, 0x1DCB);
6586put('COMBINING_MACRON_BREVE, 'codepoint, 0x1DCC);
6587put('COMBINING_DOUBLE_CIRCUMFLEX_ABOVE, 'codepoint, 0x1DCD);
6588put('COMBINING_OGONEK_ABOVE, 'codepoint, 0x1DCE);
6589put('COMBINING_ZIGZAG_BELOW, 'codepoint, 0x1DCF);
6590put('COMBINING_IS_BELOW, 'codepoint, 0x1DD0);
6591put('COMBINING_UR_ABOVE, 'codepoint, 0x1DD1);
6592put('COMBINING_US_ABOVE, 'codepoint, 0x1DD2);
6593put('COMBINING_LATIN_SMALL_LETTER_FLATTENED_OPEN_A_ABOVE, 'codepoint, 0x1DD3);
6594put('COMBINING_LATIN_SMALL_LETTER_AE, 'codepoint, 0x1DD4);
6595put('COMBINING_LATIN_SMALL_LETTER_AO, 'codepoint, 0x1DD5);
6596put('COMBINING_LATIN_SMALL_LETTER_AV, 'codepoint, 0x1DD6);
6597put('COMBINING_LATIN_SMALL_LETTER_C_CEDILLA, 'codepoint, 0x1DD7);
6598put('COMBINING_LATIN_SMALL_LETTER_INSULAR_D, 'codepoint, 0x1DD8);
6599put('COMBINING_LATIN_SMALL_LETTER_ETH, 'codepoint, 0x1DD9);
6600put('COMBINING_LATIN_SMALL_LETTER_G, 'codepoint, 0x1DDA);
6601put('COMBINING_LATIN_LETTER_SMALL_CAPITAL_G, 'codepoint, 0x1DDB);
6602put('COMBINING_LATIN_SMALL_LETTER_K, 'codepoint, 0x1DDC);
6603put('COMBINING_LATIN_SMALL_LETTER_L, 'codepoint, 0x1DDD);
6604put('COMBINING_LATIN_LETTER_SMALL_CAPITAL_L, 'codepoint, 0x1DDE);
6605put('COMBINING_LATIN_LETTER_SMALL_CAPITAL_M, 'codepoint, 0x1DDF);
6606put('COMBINING_LATIN_SMALL_LETTER_N, 'codepoint, 0x1DE0);
6607put('COMBINING_LATIN_LETTER_SMALL_CAPITAL_N, 'codepoint, 0x1DE1);
6608put('COMBINING_LATIN_LETTER_SMALL_CAPITAL_R, 'codepoint, 0x1DE2);
6609put('COMBINING_LATIN_SMALL_LETTER_R_ROTUNDA, 'codepoint, 0x1DE3);
6610put('COMBINING_LATIN_SMALL_LETTER_S, 'codepoint, 0x1DE4);
6611put('COMBINING_LATIN_SMALL_LETTER_LONG_S, 'codepoint, 0x1DE5);
6612put('COMBINING_LATIN_SMALL_LETTER_Z, 'codepoint, 0x1DE6);
6613put('COMBINING_LATIN_SMALL_LETTER_ALPHA, 'codepoint, 0x1DE7);
6614put('COMBINING_LATIN_SMALL_LETTER_B, 'codepoint, 0x1DE8);
6615put('COMBINING_LATIN_SMALL_LETTER_BETA, 'codepoint, 0x1DE9);
6616put('COMBINING_LATIN_SMALL_LETTER_SCHWA, 'codepoint, 0x1DEA);
6617put('COMBINING_LATIN_SMALL_LETTER_F, 'codepoint, 0x1DEB);
6618put('COMBINING_LATIN_SMALL_LETTER_L_WITH_DOUBLE_MIDDLE_TILDE, 'codepoint, 0x1DEC);
6619put('COMBINING_LATIN_SMALL_LETTER_O_WITH_LIGHT_CENTRALIZATION_STROKE, 'codepoint, 0x1DED);
6620put('COMBINING_LATIN_SMALL_LETTER_P, 'codepoint, 0x1DEE);
6621put('COMBINING_LATIN_SMALL_LETTER_ESH, 'codepoint, 0x1DEF);
6622put('COMBINING_LATIN_SMALL_LETTER_U_WITH_LIGHT_CENTRALIZATION_STROKE, 'codepoint, 0x1DF0);
6623put('COMBINING_LATIN_SMALL_LETTER_W, 'codepoint, 0x1DF1);
6624put('COMBINING_LATIN_SMALL_LETTER_A_WITH_DIAERESIS, 'codepoint, 0x1DF2);
6625put('COMBINING_LATIN_SMALL_LETTER_O_WITH_DIAERESIS, 'codepoint, 0x1DF3);
6626put('COMBINING_LATIN_SMALL_LETTER_U_WITH_DIAERESIS, 'codepoint, 0x1DF4);
6627put('COMBINING_UP_TACK_ABOVE, 'codepoint, 0x1DF5);
6628put('COMBINING_DOUBLE_INVERTED_BREVE_BELOW, 'codepoint, 0x1DFC);
6629put('COMBINING_ALMOST_EQUAL_TO_BELOW, 'codepoint, 0x1DFD);
6630put('COMBINING_LEFT_ARROWHEAD_ABOVE, 'codepoint, 0x1DFE);
6631put('COMBINING_RIGHT_ARROWHEAD_AND_DOWN_ARROWHEAD_BELOW, 'codepoint, 0x1DFF);
6632put('LATIN_CAPITAL_LETTER_A_WITH_RING_BELOW, 'codepoint, 0x1E00);
6633put('LATIN_SMALL_LETTER_A_WITH_RING_BELOW, 'codepoint, 0x1E01);
6634put('LATIN_CAPITAL_LETTER_B_WITH_DOT_ABOVE, 'codepoint, 0x1E02);
6635put('LATIN_SMALL_LETTER_B_WITH_DOT_ABOVE, 'codepoint, 0x1E03);
6636put('LATIN_CAPITAL_LETTER_B_WITH_DOT_BELOW, 'codepoint, 0x1E04);
6637put('LATIN_SMALL_LETTER_B_WITH_DOT_BELOW, 'codepoint, 0x1E05);
6638put('LATIN_CAPITAL_LETTER_B_WITH_LINE_BELOW, 'codepoint, 0x1E06);
6639put('LATIN_SMALL_LETTER_B_WITH_LINE_BELOW, 'codepoint, 0x1E07);
6640put('LATIN_CAPITAL_LETTER_C_WITH_CEDILLA_AND_ACUTE, 'codepoint, 0x1E08);
6641put('LATIN_SMALL_LETTER_C_WITH_CEDILLA_AND_ACUTE, 'codepoint, 0x1E09);
6642put('LATIN_CAPITAL_LETTER_D_WITH_DOT_ABOVE, 'codepoint, 0x1E0A);
6643put('LATIN_SMALL_LETTER_D_WITH_DOT_ABOVE, 'codepoint, 0x1E0B);
6644put('LATIN_CAPITAL_LETTER_D_WITH_DOT_BELOW, 'codepoint, 0x1E0C);
6645put('LATIN_SMALL_LETTER_D_WITH_DOT_BELOW, 'codepoint, 0x1E0D);
6646put('LATIN_CAPITAL_LETTER_D_WITH_LINE_BELOW, 'codepoint, 0x1E0E);
6647put('LATIN_SMALL_LETTER_D_WITH_LINE_BELOW, 'codepoint, 0x1E0F);
6648put('LATIN_CAPITAL_LETTER_D_WITH_CEDILLA, 'codepoint, 0x1E10);
6649put('LATIN_SMALL_LETTER_D_WITH_CEDILLA, 'codepoint, 0x1E11);
6650put('LATIN_CAPITAL_LETTER_D_WITH_CIRCUMFLEX_BELOW, 'codepoint, 0x1E12);
6651put('LATIN_SMALL_LETTER_D_WITH_CIRCUMFLEX_BELOW, 'codepoint, 0x1E13);
6652put('LATIN_CAPITAL_LETTER_E_WITH_MACRON_AND_GRAVE, 'codepoint, 0x1E14);
6653put('LATIN_SMALL_LETTER_E_WITH_MACRON_AND_GRAVE, 'codepoint, 0x1E15);
6654put('LATIN_CAPITAL_LETTER_E_WITH_MACRON_AND_ACUTE, 'codepoint, 0x1E16);
6655put('LATIN_SMALL_LETTER_E_WITH_MACRON_AND_ACUTE, 'codepoint, 0x1E17);
6656put('LATIN_CAPITAL_LETTER_E_WITH_CIRCUMFLEX_BELOW, 'codepoint, 0x1E18);
6657put('LATIN_SMALL_LETTER_E_WITH_CIRCUMFLEX_BELOW, 'codepoint, 0x1E19);
6658put('LATIN_CAPITAL_LETTER_E_WITH_TILDE_BELOW, 'codepoint, 0x1E1A);
6659put('LATIN_SMALL_LETTER_E_WITH_TILDE_BELOW, 'codepoint, 0x1E1B);
6660put('LATIN_CAPITAL_LETTER_E_WITH_CEDILLA_AND_BREVE, 'codepoint, 0x1E1C);
6661put('LATIN_SMALL_LETTER_E_WITH_CEDILLA_AND_BREVE, 'codepoint, 0x1E1D);
6662put('LATIN_CAPITAL_LETTER_F_WITH_DOT_ABOVE, 'codepoint, 0x1E1E);
6663put('LATIN_SMALL_LETTER_F_WITH_DOT_ABOVE, 'codepoint, 0x1E1F);
6664put('LATIN_CAPITAL_LETTER_G_WITH_MACRON, 'codepoint, 0x1E20);
6665put('LATIN_SMALL_LETTER_G_WITH_MACRON, 'codepoint, 0x1E21);
6666put('LATIN_CAPITAL_LETTER_H_WITH_DOT_ABOVE, 'codepoint, 0x1E22);
6667put('LATIN_SMALL_LETTER_H_WITH_DOT_ABOVE, 'codepoint, 0x1E23);
6668put('LATIN_CAPITAL_LETTER_H_WITH_DOT_BELOW, 'codepoint, 0x1E24);
6669put('LATIN_SMALL_LETTER_H_WITH_DOT_BELOW, 'codepoint, 0x1E25);
6670put('LATIN_CAPITAL_LETTER_H_WITH_DIAERESIS, 'codepoint, 0x1E26);
6671put('LATIN_SMALL_LETTER_H_WITH_DIAERESIS, 'codepoint, 0x1E27);
6672put('LATIN_CAPITAL_LETTER_H_WITH_CEDILLA, 'codepoint, 0x1E28);
6673put('LATIN_SMALL_LETTER_H_WITH_CEDILLA, 'codepoint, 0x1E29);
6674put('LATIN_CAPITAL_LETTER_H_WITH_BREVE_BELOW, 'codepoint, 0x1E2A);
6675put('LATIN_SMALL_LETTER_H_WITH_BREVE_BELOW, 'codepoint, 0x1E2B);
6676put('LATIN_CAPITAL_LETTER_I_WITH_TILDE_BELOW, 'codepoint, 0x1E2C);
6677put('LATIN_SMALL_LETTER_I_WITH_TILDE_BELOW, 'codepoint, 0x1E2D);
6678put('LATIN_CAPITAL_LETTER_I_WITH_DIAERESIS_AND_ACUTE, 'codepoint, 0x1E2E);
6679put('LATIN_SMALL_LETTER_I_WITH_DIAERESIS_AND_ACUTE, 'codepoint, 0x1E2F);
6680put('LATIN_CAPITAL_LETTER_K_WITH_ACUTE, 'codepoint, 0x1E30);
6681put('LATIN_SMALL_LETTER_K_WITH_ACUTE, 'codepoint, 0x1E31);
6682put('LATIN_CAPITAL_LETTER_K_WITH_DOT_BELOW, 'codepoint, 0x1E32);
6683put('LATIN_SMALL_LETTER_K_WITH_DOT_BELOW, 'codepoint, 0x1E33);
6684put('LATIN_CAPITAL_LETTER_K_WITH_LINE_BELOW, 'codepoint, 0x1E34);
6685put('LATIN_SMALL_LETTER_K_WITH_LINE_BELOW, 'codepoint, 0x1E35);
6686put('LATIN_CAPITAL_LETTER_L_WITH_DOT_BELOW, 'codepoint, 0x1E36);
6687put('LATIN_SMALL_LETTER_L_WITH_DOT_BELOW, 'codepoint, 0x1E37);
6688put('LATIN_CAPITAL_LETTER_L_WITH_DOT_BELOW_AND_MACRON, 'codepoint, 0x1E38);
6689put('LATIN_SMALL_LETTER_L_WITH_DOT_BELOW_AND_MACRON, 'codepoint, 0x1E39);
6690put('LATIN_CAPITAL_LETTER_L_WITH_LINE_BELOW, 'codepoint, 0x1E3A);
6691put('LATIN_SMALL_LETTER_L_WITH_LINE_BELOW, 'codepoint, 0x1E3B);
6692put('LATIN_CAPITAL_LETTER_L_WITH_CIRCUMFLEX_BELOW, 'codepoint, 0x1E3C);
6693put('LATIN_SMALL_LETTER_L_WITH_CIRCUMFLEX_BELOW, 'codepoint, 0x1E3D);
6694put('LATIN_CAPITAL_LETTER_M_WITH_ACUTE, 'codepoint, 0x1E3E);
6695put('LATIN_SMALL_LETTER_M_WITH_ACUTE, 'codepoint, 0x1E3F);
6696put('LATIN_CAPITAL_LETTER_M_WITH_DOT_ABOVE, 'codepoint, 0x1E40);
6697put('LATIN_SMALL_LETTER_M_WITH_DOT_ABOVE, 'codepoint, 0x1E41);
6698put('LATIN_CAPITAL_LETTER_M_WITH_DOT_BELOW, 'codepoint, 0x1E42);
6699put('LATIN_SMALL_LETTER_M_WITH_DOT_BELOW, 'codepoint, 0x1E43);
6700put('LATIN_CAPITAL_LETTER_N_WITH_DOT_ABOVE, 'codepoint, 0x1E44);
6701put('LATIN_SMALL_LETTER_N_WITH_DOT_ABOVE, 'codepoint, 0x1E45);
6702put('LATIN_CAPITAL_LETTER_N_WITH_DOT_BELOW, 'codepoint, 0x1E46);
6703put('LATIN_SMALL_LETTER_N_WITH_DOT_BELOW, 'codepoint, 0x1E47);
6704put('LATIN_CAPITAL_LETTER_N_WITH_LINE_BELOW, 'codepoint, 0x1E48);
6705put('LATIN_SMALL_LETTER_N_WITH_LINE_BELOW, 'codepoint, 0x1E49);
6706put('LATIN_CAPITAL_LETTER_N_WITH_CIRCUMFLEX_BELOW, 'codepoint, 0x1E4A);
6707put('LATIN_SMALL_LETTER_N_WITH_CIRCUMFLEX_BELOW, 'codepoint, 0x1E4B);
6708put('LATIN_CAPITAL_LETTER_O_WITH_TILDE_AND_ACUTE, 'codepoint, 0x1E4C);
6709put('LATIN_SMALL_LETTER_O_WITH_TILDE_AND_ACUTE, 'codepoint, 0x1E4D);
6710put('LATIN_CAPITAL_LETTER_O_WITH_TILDE_AND_DIAERESIS, 'codepoint, 0x1E4E);
6711put('LATIN_SMALL_LETTER_O_WITH_TILDE_AND_DIAERESIS, 'codepoint, 0x1E4F);
6712put('LATIN_CAPITAL_LETTER_O_WITH_MACRON_AND_GRAVE, 'codepoint, 0x1E50);
6713put('LATIN_SMALL_LETTER_O_WITH_MACRON_AND_GRAVE, 'codepoint, 0x1E51);
6714put('LATIN_CAPITAL_LETTER_O_WITH_MACRON_AND_ACUTE, 'codepoint, 0x1E52);
6715put('LATIN_SMALL_LETTER_O_WITH_MACRON_AND_ACUTE, 'codepoint, 0x1E53);
6716put('LATIN_CAPITAL_LETTER_P_WITH_ACUTE, 'codepoint, 0x1E54);
6717put('LATIN_SMALL_LETTER_P_WITH_ACUTE, 'codepoint, 0x1E55);
6718put('LATIN_CAPITAL_LETTER_P_WITH_DOT_ABOVE, 'codepoint, 0x1E56);
6719put('LATIN_SMALL_LETTER_P_WITH_DOT_ABOVE, 'codepoint, 0x1E57);
6720put('LATIN_CAPITAL_LETTER_R_WITH_DOT_ABOVE, 'codepoint, 0x1E58);
6721put('LATIN_SMALL_LETTER_R_WITH_DOT_ABOVE, 'codepoint, 0x1E59);
6722put('LATIN_CAPITAL_LETTER_R_WITH_DOT_BELOW, 'codepoint, 0x1E5A);
6723put('LATIN_SMALL_LETTER_R_WITH_DOT_BELOW, 'codepoint, 0x1E5B);
6724put('LATIN_CAPITAL_LETTER_R_WITH_DOT_BELOW_AND_MACRON, 'codepoint, 0x1E5C);
6725put('LATIN_SMALL_LETTER_R_WITH_DOT_BELOW_AND_MACRON, 'codepoint, 0x1E5D);
6726put('LATIN_CAPITAL_LETTER_R_WITH_LINE_BELOW, 'codepoint, 0x1E5E);
6727put('LATIN_SMALL_LETTER_R_WITH_LINE_BELOW, 'codepoint, 0x1E5F);
6728put('LATIN_CAPITAL_LETTER_S_WITH_DOT_ABOVE, 'codepoint, 0x1E60);
6729put('LATIN_SMALL_LETTER_S_WITH_DOT_ABOVE, 'codepoint, 0x1E61);
6730put('LATIN_CAPITAL_LETTER_S_WITH_DOT_BELOW, 'codepoint, 0x1E62);
6731put('LATIN_SMALL_LETTER_S_WITH_DOT_BELOW, 'codepoint, 0x1E63);
6732put('LATIN_CAPITAL_LETTER_S_WITH_ACUTE_AND_DOT_ABOVE, 'codepoint, 0x1E64);
6733put('LATIN_SMALL_LETTER_S_WITH_ACUTE_AND_DOT_ABOVE, 'codepoint, 0x1E65);
6734put('LATIN_CAPITAL_LETTER_S_WITH_CARON_AND_DOT_ABOVE, 'codepoint, 0x1E66);
6735put('LATIN_SMALL_LETTER_S_WITH_CARON_AND_DOT_ABOVE, 'codepoint, 0x1E67);
6736put('LATIN_CAPITAL_LETTER_S_WITH_DOT_BELOW_AND_DOT_ABOVE, 'codepoint, 0x1E68);
6737put('LATIN_SMALL_LETTER_S_WITH_DOT_BELOW_AND_DOT_ABOVE, 'codepoint, 0x1E69);
6738put('LATIN_CAPITAL_LETTER_T_WITH_DOT_ABOVE, 'codepoint, 0x1E6A);
6739put('LATIN_SMALL_LETTER_T_WITH_DOT_ABOVE, 'codepoint, 0x1E6B);
6740put('LATIN_CAPITAL_LETTER_T_WITH_DOT_BELOW, 'codepoint, 0x1E6C);
6741put('LATIN_SMALL_LETTER_T_WITH_DOT_BELOW, 'codepoint, 0x1E6D);
6742put('LATIN_CAPITAL_LETTER_T_WITH_LINE_BELOW, 'codepoint, 0x1E6E);
6743put('LATIN_SMALL_LETTER_T_WITH_LINE_BELOW, 'codepoint, 0x1E6F);
6744put('LATIN_CAPITAL_LETTER_T_WITH_CIRCUMFLEX_BELOW, 'codepoint, 0x1E70);
6745put('LATIN_SMALL_LETTER_T_WITH_CIRCUMFLEX_BELOW, 'codepoint, 0x1E71);
6746put('LATIN_CAPITAL_LETTER_U_WITH_DIAERESIS_BELOW, 'codepoint, 0x1E72);
6747put('LATIN_SMALL_LETTER_U_WITH_DIAERESIS_BELOW, 'codepoint, 0x1E73);
6748put('LATIN_CAPITAL_LETTER_U_WITH_TILDE_BELOW, 'codepoint, 0x1E74);
6749put('LATIN_SMALL_LETTER_U_WITH_TILDE_BELOW, 'codepoint, 0x1E75);
6750put('LATIN_CAPITAL_LETTER_U_WITH_CIRCUMFLEX_BELOW, 'codepoint, 0x1E76);
6751put('LATIN_SMALL_LETTER_U_WITH_CIRCUMFLEX_BELOW, 'codepoint, 0x1E77);
6752put('LATIN_CAPITAL_LETTER_U_WITH_TILDE_AND_ACUTE, 'codepoint, 0x1E78);
6753put('LATIN_SMALL_LETTER_U_WITH_TILDE_AND_ACUTE, 'codepoint, 0x1E79);
6754put('LATIN_CAPITAL_LETTER_U_WITH_MACRON_AND_DIAERESIS, 'codepoint, 0x1E7A);
6755put('LATIN_SMALL_LETTER_U_WITH_MACRON_AND_DIAERESIS, 'codepoint, 0x1E7B);
6756put('LATIN_CAPITAL_LETTER_V_WITH_TILDE, 'codepoint, 0x1E7C);
6757put('LATIN_SMALL_LETTER_V_WITH_TILDE, 'codepoint, 0x1E7D);
6758put('LATIN_CAPITAL_LETTER_V_WITH_DOT_BELOW, 'codepoint, 0x1E7E);
6759put('LATIN_SMALL_LETTER_V_WITH_DOT_BELOW, 'codepoint, 0x1E7F);
6760put('LATIN_CAPITAL_LETTER_W_WITH_GRAVE, 'codepoint, 0x1E80);
6761put('LATIN_SMALL_LETTER_W_WITH_GRAVE, 'codepoint, 0x1E81);
6762put('LATIN_CAPITAL_LETTER_W_WITH_ACUTE, 'codepoint, 0x1E82);
6763put('LATIN_SMALL_LETTER_W_WITH_ACUTE, 'codepoint, 0x1E83);
6764put('LATIN_CAPITAL_LETTER_W_WITH_DIAERESIS, 'codepoint, 0x1E84);
6765put('LATIN_SMALL_LETTER_W_WITH_DIAERESIS, 'codepoint, 0x1E85);
6766put('LATIN_CAPITAL_LETTER_W_WITH_DOT_ABOVE, 'codepoint, 0x1E86);
6767put('LATIN_SMALL_LETTER_W_WITH_DOT_ABOVE, 'codepoint, 0x1E87);
6768put('LATIN_CAPITAL_LETTER_W_WITH_DOT_BELOW, 'codepoint, 0x1E88);
6769put('LATIN_SMALL_LETTER_W_WITH_DOT_BELOW, 'codepoint, 0x1E89);
6770put('LATIN_CAPITAL_LETTER_X_WITH_DOT_ABOVE, 'codepoint, 0x1E8A);
6771put('LATIN_SMALL_LETTER_X_WITH_DOT_ABOVE, 'codepoint, 0x1E8B);
6772put('LATIN_CAPITAL_LETTER_X_WITH_DIAERESIS, 'codepoint, 0x1E8C);
6773put('LATIN_SMALL_LETTER_X_WITH_DIAERESIS, 'codepoint, 0x1E8D);
6774put('LATIN_CAPITAL_LETTER_Y_WITH_DOT_ABOVE, 'codepoint, 0x1E8E);
6775put('LATIN_SMALL_LETTER_Y_WITH_DOT_ABOVE, 'codepoint, 0x1E8F);
6776put('LATIN_CAPITAL_LETTER_Z_WITH_CIRCUMFLEX, 'codepoint, 0x1E90);
6777put('LATIN_SMALL_LETTER_Z_WITH_CIRCUMFLEX, 'codepoint, 0x1E91);
6778put('LATIN_CAPITAL_LETTER_Z_WITH_DOT_BELOW, 'codepoint, 0x1E92);
6779put('LATIN_SMALL_LETTER_Z_WITH_DOT_BELOW, 'codepoint, 0x1E93);
6780put('LATIN_CAPITAL_LETTER_Z_WITH_LINE_BELOW, 'codepoint, 0x1E94);
6781put('LATIN_SMALL_LETTER_Z_WITH_LINE_BELOW, 'codepoint, 0x1E95);
6782put('LATIN_SMALL_LETTER_H_WITH_LINE_BELOW, 'codepoint, 0x1E96);
6783put('LATIN_SMALL_LETTER_T_WITH_DIAERESIS, 'codepoint, 0x1E97);
6784put('LATIN_SMALL_LETTER_W_WITH_RING_ABOVE, 'codepoint, 0x1E98);
6785put('LATIN_SMALL_LETTER_Y_WITH_RING_ABOVE, 'codepoint, 0x1E99);
6786put('LATIN_SMALL_LETTER_A_WITH_RIGHT_HALF_RING, 'codepoint, 0x1E9A);
6787put('LATIN_SMALL_LETTER_LONG_S_WITH_DOT_ABOVE, 'codepoint, 0x1E9B);
6788put('LATIN_SMALL_LETTER_LONG_S_WITH_DIAGONAL_STROKE, 'codepoint, 0x1E9C);
6789put('LATIN_SMALL_LETTER_LONG_S_WITH_HIGH_STROKE, 'codepoint, 0x1E9D);
6790put('LATIN_CAPITAL_LETTER_SHARP_S, 'codepoint, 0x1E9E);
6791put('LATIN_SMALL_LETTER_DELTA, 'codepoint, 0x1E9F);
6792put('LATIN_CAPITAL_LETTER_A_WITH_DOT_BELOW, 'codepoint, 0x1EA0);
6793put('LATIN_SMALL_LETTER_A_WITH_DOT_BELOW, 'codepoint, 0x1EA1);
6794put('LATIN_CAPITAL_LETTER_A_WITH_HOOK_ABOVE, 'codepoint, 0x1EA2);
6795put('LATIN_SMALL_LETTER_A_WITH_HOOK_ABOVE, 'codepoint, 0x1EA3);
6796put('LATIN_CAPITAL_LETTER_A_WITH_CIRCUMFLEX_AND_ACUTE, 'codepoint, 0x1EA4);
6797put('LATIN_SMALL_LETTER_A_WITH_CIRCUMFLEX_AND_ACUTE, 'codepoint, 0x1EA5);
6798put('LATIN_CAPITAL_LETTER_A_WITH_CIRCUMFLEX_AND_GRAVE, 'codepoint, 0x1EA6);
6799put('LATIN_SMALL_LETTER_A_WITH_CIRCUMFLEX_AND_GRAVE, 'codepoint, 0x1EA7);
6800put('LATIN_CAPITAL_LETTER_A_WITH_CIRCUMFLEX_AND_HOOK_ABOVE, 'codepoint, 0x1EA8);
6801put('LATIN_SMALL_LETTER_A_WITH_CIRCUMFLEX_AND_HOOK_ABOVE, 'codepoint, 0x1EA9);
6802put('LATIN_CAPITAL_LETTER_A_WITH_CIRCUMFLEX_AND_TILDE, 'codepoint, 0x1EAA);
6803put('LATIN_SMALL_LETTER_A_WITH_CIRCUMFLEX_AND_TILDE, 'codepoint, 0x1EAB);
6804put('LATIN_CAPITAL_LETTER_A_WITH_CIRCUMFLEX_AND_DOT_BELOW, 'codepoint, 0x1EAC);
6805put('LATIN_SMALL_LETTER_A_WITH_CIRCUMFLEX_AND_DOT_BELOW, 'codepoint, 0x1EAD);
6806put('LATIN_CAPITAL_LETTER_A_WITH_BREVE_AND_ACUTE, 'codepoint, 0x1EAE);
6807put('LATIN_SMALL_LETTER_A_WITH_BREVE_AND_ACUTE, 'codepoint, 0x1EAF);
6808put('LATIN_CAPITAL_LETTER_A_WITH_BREVE_AND_GRAVE, 'codepoint, 0x1EB0);
6809put('LATIN_SMALL_LETTER_A_WITH_BREVE_AND_GRAVE, 'codepoint, 0x1EB1);
6810put('LATIN_CAPITAL_LETTER_A_WITH_BREVE_AND_HOOK_ABOVE, 'codepoint, 0x1EB2);
6811put('LATIN_SMALL_LETTER_A_WITH_BREVE_AND_HOOK_ABOVE, 'codepoint, 0x1EB3);
6812put('LATIN_CAPITAL_LETTER_A_WITH_BREVE_AND_TILDE, 'codepoint, 0x1EB4);
6813put('LATIN_SMALL_LETTER_A_WITH_BREVE_AND_TILDE, 'codepoint, 0x1EB5);
6814put('LATIN_CAPITAL_LETTER_A_WITH_BREVE_AND_DOT_BELOW, 'codepoint, 0x1EB6);
6815put('LATIN_SMALL_LETTER_A_WITH_BREVE_AND_DOT_BELOW, 'codepoint, 0x1EB7);
6816put('LATIN_CAPITAL_LETTER_E_WITH_DOT_BELOW, 'codepoint, 0x1EB8);
6817put('LATIN_SMALL_LETTER_E_WITH_DOT_BELOW, 'codepoint, 0x1EB9);
6818put('LATIN_CAPITAL_LETTER_E_WITH_HOOK_ABOVE, 'codepoint, 0x1EBA);
6819put('LATIN_SMALL_LETTER_E_WITH_HOOK_ABOVE, 'codepoint, 0x1EBB);
6820put('LATIN_CAPITAL_LETTER_E_WITH_TILDE, 'codepoint, 0x1EBC);
6821put('LATIN_SMALL_LETTER_E_WITH_TILDE, 'codepoint, 0x1EBD);
6822put('LATIN_CAPITAL_LETTER_E_WITH_CIRCUMFLEX_AND_ACUTE, 'codepoint, 0x1EBE);
6823put('LATIN_SMALL_LETTER_E_WITH_CIRCUMFLEX_AND_ACUTE, 'codepoint, 0x1EBF);
6824put('LATIN_CAPITAL_LETTER_E_WITH_CIRCUMFLEX_AND_GRAVE, 'codepoint, 0x1EC0);
6825put('LATIN_SMALL_LETTER_E_WITH_CIRCUMFLEX_AND_GRAVE, 'codepoint, 0x1EC1);
6826put('LATIN_CAPITAL_LETTER_E_WITH_CIRCUMFLEX_AND_HOOK_ABOVE, 'codepoint, 0x1EC2);
6827put('LATIN_SMALL_LETTER_E_WITH_CIRCUMFLEX_AND_HOOK_ABOVE, 'codepoint, 0x1EC3);
6828put('LATIN_CAPITAL_LETTER_E_WITH_CIRCUMFLEX_AND_TILDE, 'codepoint, 0x1EC4);
6829put('LATIN_SMALL_LETTER_E_WITH_CIRCUMFLEX_AND_TILDE, 'codepoint, 0x1EC5);
6830put('LATIN_CAPITAL_LETTER_E_WITH_CIRCUMFLEX_AND_DOT_BELOW, 'codepoint, 0x1EC6);
6831put('LATIN_SMALL_LETTER_E_WITH_CIRCUMFLEX_AND_DOT_BELOW, 'codepoint, 0x1EC7);
6832put('LATIN_CAPITAL_LETTER_I_WITH_HOOK_ABOVE, 'codepoint, 0x1EC8);
6833put('LATIN_SMALL_LETTER_I_WITH_HOOK_ABOVE, 'codepoint, 0x1EC9);
6834put('LATIN_CAPITAL_LETTER_I_WITH_DOT_BELOW, 'codepoint, 0x1ECA);
6835put('LATIN_SMALL_LETTER_I_WITH_DOT_BELOW, 'codepoint, 0x1ECB);
6836put('LATIN_CAPITAL_LETTER_O_WITH_DOT_BELOW, 'codepoint, 0x1ECC);
6837put('LATIN_SMALL_LETTER_O_WITH_DOT_BELOW, 'codepoint, 0x1ECD);
6838put('LATIN_CAPITAL_LETTER_O_WITH_HOOK_ABOVE, 'codepoint, 0x1ECE);
6839put('LATIN_SMALL_LETTER_O_WITH_HOOK_ABOVE, 'codepoint, 0x1ECF);
6840put('LATIN_CAPITAL_LETTER_O_WITH_CIRCUMFLEX_AND_ACUTE, 'codepoint, 0x1ED0);
6841put('LATIN_SMALL_LETTER_O_WITH_CIRCUMFLEX_AND_ACUTE, 'codepoint, 0x1ED1);
6842put('LATIN_CAPITAL_LETTER_O_WITH_CIRCUMFLEX_AND_GRAVE, 'codepoint, 0x1ED2);
6843put('LATIN_SMALL_LETTER_O_WITH_CIRCUMFLEX_AND_GRAVE, 'codepoint, 0x1ED3);
6844put('LATIN_CAPITAL_LETTER_O_WITH_CIRCUMFLEX_AND_HOOK_ABOVE, 'codepoint, 0x1ED4);
6845put('LATIN_SMALL_LETTER_O_WITH_CIRCUMFLEX_AND_HOOK_ABOVE, 'codepoint, 0x1ED5);
6846put('LATIN_CAPITAL_LETTER_O_WITH_CIRCUMFLEX_AND_TILDE, 'codepoint, 0x1ED6);
6847put('LATIN_SMALL_LETTER_O_WITH_CIRCUMFLEX_AND_TILDE, 'codepoint, 0x1ED7);
6848put('LATIN_CAPITAL_LETTER_O_WITH_CIRCUMFLEX_AND_DOT_BELOW, 'codepoint, 0x1ED8);
6849put('LATIN_SMALL_LETTER_O_WITH_CIRCUMFLEX_AND_DOT_BELOW, 'codepoint, 0x1ED9);
6850put('LATIN_CAPITAL_LETTER_O_WITH_HORN_AND_ACUTE, 'codepoint, 0x1EDA);
6851put('LATIN_SMALL_LETTER_O_WITH_HORN_AND_ACUTE, 'codepoint, 0x1EDB);
6852put('LATIN_CAPITAL_LETTER_O_WITH_HORN_AND_GRAVE, 'codepoint, 0x1EDC);
6853put('LATIN_SMALL_LETTER_O_WITH_HORN_AND_GRAVE, 'codepoint, 0x1EDD);
6854put('LATIN_CAPITAL_LETTER_O_WITH_HORN_AND_HOOK_ABOVE, 'codepoint, 0x1EDE);
6855put('LATIN_SMALL_LETTER_O_WITH_HORN_AND_HOOK_ABOVE, 'codepoint, 0x1EDF);
6856put('LATIN_CAPITAL_LETTER_O_WITH_HORN_AND_TILDE, 'codepoint, 0x1EE0);
6857put('LATIN_SMALL_LETTER_O_WITH_HORN_AND_TILDE, 'codepoint, 0x1EE1);
6858put('LATIN_CAPITAL_LETTER_O_WITH_HORN_AND_DOT_BELOW, 'codepoint, 0x1EE2);
6859put('LATIN_SMALL_LETTER_O_WITH_HORN_AND_DOT_BELOW, 'codepoint, 0x1EE3);
6860put('LATIN_CAPITAL_LETTER_U_WITH_DOT_BELOW, 'codepoint, 0x1EE4);
6861put('LATIN_SMALL_LETTER_U_WITH_DOT_BELOW, 'codepoint, 0x1EE5);
6862put('LATIN_CAPITAL_LETTER_U_WITH_HOOK_ABOVE, 'codepoint, 0x1EE6);
6863put('LATIN_SMALL_LETTER_U_WITH_HOOK_ABOVE, 'codepoint, 0x1EE7);
6864put('LATIN_CAPITAL_LETTER_U_WITH_HORN_AND_ACUTE, 'codepoint, 0x1EE8);
6865put('LATIN_SMALL_LETTER_U_WITH_HORN_AND_ACUTE, 'codepoint, 0x1EE9);
6866put('LATIN_CAPITAL_LETTER_U_WITH_HORN_AND_GRAVE, 'codepoint, 0x1EEA);
6867put('LATIN_SMALL_LETTER_U_WITH_HORN_AND_GRAVE, 'codepoint, 0x1EEB);
6868put('LATIN_CAPITAL_LETTER_U_WITH_HORN_AND_HOOK_ABOVE, 'codepoint, 0x1EEC);
6869put('LATIN_SMALL_LETTER_U_WITH_HORN_AND_HOOK_ABOVE, 'codepoint, 0x1EED);
6870put('LATIN_CAPITAL_LETTER_U_WITH_HORN_AND_TILDE, 'codepoint, 0x1EEE);
6871put('LATIN_SMALL_LETTER_U_WITH_HORN_AND_TILDE, 'codepoint, 0x1EEF);
6872put('LATIN_CAPITAL_LETTER_U_WITH_HORN_AND_DOT_BELOW, 'codepoint, 0x1EF0);
6873put('LATIN_SMALL_LETTER_U_WITH_HORN_AND_DOT_BELOW, 'codepoint, 0x1EF1);
6874put('LATIN_CAPITAL_LETTER_Y_WITH_GRAVE, 'codepoint, 0x1EF2);
6875put('LATIN_SMALL_LETTER_Y_WITH_GRAVE, 'codepoint, 0x1EF3);
6876put('LATIN_CAPITAL_LETTER_Y_WITH_DOT_BELOW, 'codepoint, 0x1EF4);
6877put('LATIN_SMALL_LETTER_Y_WITH_DOT_BELOW, 'codepoint, 0x1EF5);
6878put('LATIN_CAPITAL_LETTER_Y_WITH_HOOK_ABOVE, 'codepoint, 0x1EF6);
6879put('LATIN_SMALL_LETTER_Y_WITH_HOOK_ABOVE, 'codepoint, 0x1EF7);
6880put('LATIN_CAPITAL_LETTER_Y_WITH_TILDE, 'codepoint, 0x1EF8);
6881put('LATIN_SMALL_LETTER_Y_WITH_TILDE, 'codepoint, 0x1EF9);
6882put('LATIN_CAPITAL_LETTER_MIDDLE_WELSH_LL, 'codepoint, 0x1EFA);
6883put('LATIN_SMALL_LETTER_MIDDLE_WELSH_LL, 'codepoint, 0x1EFB);
6884put('LATIN_CAPITAL_LETTER_MIDDLE_WELSH_V, 'codepoint, 0x1EFC);
6885put('LATIN_SMALL_LETTER_MIDDLE_WELSH_V, 'codepoint, 0x1EFD);
6886put('LATIN_CAPITAL_LETTER_Y_WITH_LOOP, 'codepoint, 0x1EFE);
6887put('LATIN_SMALL_LETTER_Y_WITH_LOOP, 'codepoint, 0x1EFF);
6888put('GREEK_SMALL_LETTER_ALPHA_WITH_PSILI, 'codepoint, 0x1F00);
6889put('GREEK_SMALL_LETTER_ALPHA_WITH_DASIA, 'codepoint, 0x1F01);
6890put('GREEK_SMALL_LETTER_ALPHA_WITH_PSILI_AND_VARIA, 'codepoint, 0x1F02);
6891put('GREEK_SMALL_LETTER_ALPHA_WITH_DASIA_AND_VARIA, 'codepoint, 0x1F03);
6892put('GREEK_SMALL_LETTER_ALPHA_WITH_PSILI_AND_OXIA, 'codepoint, 0x1F04);
6893put('GREEK_SMALL_LETTER_ALPHA_WITH_DASIA_AND_OXIA, 'codepoint, 0x1F05);
6894put('GREEK_SMALL_LETTER_ALPHA_WITH_PSILI_AND_PERISPOMENI, 'codepoint, 0x1F06);
6895put('GREEK_SMALL_LETTER_ALPHA_WITH_DASIA_AND_PERISPOMENI, 'codepoint, 0x1F07);
6896put('GREEK_CAPITAL_LETTER_ALPHA_WITH_PSILI, 'codepoint, 0x1F08);
6897put('GREEK_CAPITAL_LETTER_ALPHA_WITH_DASIA, 'codepoint, 0x1F09);
6898put('GREEK_CAPITAL_LETTER_ALPHA_WITH_PSILI_AND_VARIA, 'codepoint, 0x1F0A);
6899put('GREEK_CAPITAL_LETTER_ALPHA_WITH_DASIA_AND_VARIA, 'codepoint, 0x1F0B);
6900put('GREEK_CAPITAL_LETTER_ALPHA_WITH_PSILI_AND_OXIA, 'codepoint, 0x1F0C);
6901put('GREEK_CAPITAL_LETTER_ALPHA_WITH_DASIA_AND_OXIA, 'codepoint, 0x1F0D);
6902put('GREEK_CAPITAL_LETTER_ALPHA_WITH_PSILI_AND_PERISPOMENI, 'codepoint, 0x1F0E);
6903put('GREEK_CAPITAL_LETTER_ALPHA_WITH_DASIA_AND_PERISPOMENI, 'codepoint, 0x1F0F);
6904put('GREEK_SMALL_LETTER_EPSILON_WITH_PSILI, 'codepoint, 0x1F10);
6905put('GREEK_SMALL_LETTER_EPSILON_WITH_DASIA, 'codepoint, 0x1F11);
6906put('GREEK_SMALL_LETTER_EPSILON_WITH_PSILI_AND_VARIA, 'codepoint, 0x1F12);
6907put('GREEK_SMALL_LETTER_EPSILON_WITH_DASIA_AND_VARIA, 'codepoint, 0x1F13);
6908put('GREEK_SMALL_LETTER_EPSILON_WITH_PSILI_AND_OXIA, 'codepoint, 0x1F14);
6909put('GREEK_SMALL_LETTER_EPSILON_WITH_DASIA_AND_OXIA, 'codepoint, 0x1F15);
6910put('GREEK_CAPITAL_LETTER_EPSILON_WITH_PSILI, 'codepoint, 0x1F18);
6911put('GREEK_CAPITAL_LETTER_EPSILON_WITH_DASIA, 'codepoint, 0x1F19);
6912put('GREEK_CAPITAL_LETTER_EPSILON_WITH_PSILI_AND_VARIA, 'codepoint, 0x1F1A);
6913put('GREEK_CAPITAL_LETTER_EPSILON_WITH_DASIA_AND_VARIA, 'codepoint, 0x1F1B);
6914put('GREEK_CAPITAL_LETTER_EPSILON_WITH_PSILI_AND_OXIA, 'codepoint, 0x1F1C);
6915put('GREEK_CAPITAL_LETTER_EPSILON_WITH_DASIA_AND_OXIA, 'codepoint, 0x1F1D);
6916put('GREEK_SMALL_LETTER_ETA_WITH_PSILI, 'codepoint, 0x1F20);
6917put('GREEK_SMALL_LETTER_ETA_WITH_DASIA, 'codepoint, 0x1F21);
6918put('GREEK_SMALL_LETTER_ETA_WITH_PSILI_AND_VARIA, 'codepoint, 0x1F22);
6919put('GREEK_SMALL_LETTER_ETA_WITH_DASIA_AND_VARIA, 'codepoint, 0x1F23);
6920put('GREEK_SMALL_LETTER_ETA_WITH_PSILI_AND_OXIA, 'codepoint, 0x1F24);
6921put('GREEK_SMALL_LETTER_ETA_WITH_DASIA_AND_OXIA, 'codepoint, 0x1F25);
6922put('GREEK_SMALL_LETTER_ETA_WITH_PSILI_AND_PERISPOMENI, 'codepoint, 0x1F26);
6923put('GREEK_SMALL_LETTER_ETA_WITH_DASIA_AND_PERISPOMENI, 'codepoint, 0x1F27);
6924put('GREEK_CAPITAL_LETTER_ETA_WITH_PSILI, 'codepoint, 0x1F28);
6925put('GREEK_CAPITAL_LETTER_ETA_WITH_DASIA, 'codepoint, 0x1F29);
6926put('GREEK_CAPITAL_LETTER_ETA_WITH_PSILI_AND_VARIA, 'codepoint, 0x1F2A);
6927put('GREEK_CAPITAL_LETTER_ETA_WITH_DASIA_AND_VARIA, 'codepoint, 0x1F2B);
6928put('GREEK_CAPITAL_LETTER_ETA_WITH_PSILI_AND_OXIA, 'codepoint, 0x1F2C);
6929put('GREEK_CAPITAL_LETTER_ETA_WITH_DASIA_AND_OXIA, 'codepoint, 0x1F2D);
6930put('GREEK_CAPITAL_LETTER_ETA_WITH_PSILI_AND_PERISPOMENI, 'codepoint, 0x1F2E);
6931put('GREEK_CAPITAL_LETTER_ETA_WITH_DASIA_AND_PERISPOMENI, 'codepoint, 0x1F2F);
6932put('GREEK_SMALL_LETTER_IOTA_WITH_PSILI, 'codepoint, 0x1F30);
6933put('GREEK_SMALL_LETTER_IOTA_WITH_DASIA, 'codepoint, 0x1F31);
6934put('GREEK_SMALL_LETTER_IOTA_WITH_PSILI_AND_VARIA, 'codepoint, 0x1F32);
6935put('GREEK_SMALL_LETTER_IOTA_WITH_DASIA_AND_VARIA, 'codepoint, 0x1F33);
6936put('GREEK_SMALL_LETTER_IOTA_WITH_PSILI_AND_OXIA, 'codepoint, 0x1F34);
6937put('GREEK_SMALL_LETTER_IOTA_WITH_DASIA_AND_OXIA, 'codepoint, 0x1F35);
6938put('GREEK_SMALL_LETTER_IOTA_WITH_PSILI_AND_PERISPOMENI, 'codepoint, 0x1F36);
6939put('GREEK_SMALL_LETTER_IOTA_WITH_DASIA_AND_PERISPOMENI, 'codepoint, 0x1F37);
6940put('GREEK_CAPITAL_LETTER_IOTA_WITH_PSILI, 'codepoint, 0x1F38);
6941put('GREEK_CAPITAL_LETTER_IOTA_WITH_DASIA, 'codepoint, 0x1F39);
6942put('GREEK_CAPITAL_LETTER_IOTA_WITH_PSILI_AND_VARIA, 'codepoint, 0x1F3A);
6943put('GREEK_CAPITAL_LETTER_IOTA_WITH_DASIA_AND_VARIA, 'codepoint, 0x1F3B);
6944put('GREEK_CAPITAL_LETTER_IOTA_WITH_PSILI_AND_OXIA, 'codepoint, 0x1F3C);
6945put('GREEK_CAPITAL_LETTER_IOTA_WITH_DASIA_AND_OXIA, 'codepoint, 0x1F3D);
6946put('GREEK_CAPITAL_LETTER_IOTA_WITH_PSILI_AND_PERISPOMENI, 'codepoint, 0x1F3E);
6947put('GREEK_CAPITAL_LETTER_IOTA_WITH_DASIA_AND_PERISPOMENI, 'codepoint, 0x1F3F);
6948put('GREEK_SMALL_LETTER_OMICRON_WITH_PSILI, 'codepoint, 0x1F40);
6949put('GREEK_SMALL_LETTER_OMICRON_WITH_DASIA, 'codepoint, 0x1F41);
6950put('GREEK_SMALL_LETTER_OMICRON_WITH_PSILI_AND_VARIA, 'codepoint, 0x1F42);
6951put('GREEK_SMALL_LETTER_OMICRON_WITH_DASIA_AND_VARIA, 'codepoint, 0x1F43);
6952put('GREEK_SMALL_LETTER_OMICRON_WITH_PSILI_AND_OXIA, 'codepoint, 0x1F44);
6953put('GREEK_SMALL_LETTER_OMICRON_WITH_DASIA_AND_OXIA, 'codepoint, 0x1F45);
6954put('GREEK_CAPITAL_LETTER_OMICRON_WITH_PSILI, 'codepoint, 0x1F48);
6955put('GREEK_CAPITAL_LETTER_OMICRON_WITH_DASIA, 'codepoint, 0x1F49);
6956put('GREEK_CAPITAL_LETTER_OMICRON_WITH_PSILI_AND_VARIA, 'codepoint, 0x1F4A);
6957put('GREEK_CAPITAL_LETTER_OMICRON_WITH_DASIA_AND_VARIA, 'codepoint, 0x1F4B);
6958put('GREEK_CAPITAL_LETTER_OMICRON_WITH_PSILI_AND_OXIA, 'codepoint, 0x1F4C);
6959put('GREEK_CAPITAL_LETTER_OMICRON_WITH_DASIA_AND_OXIA, 'codepoint, 0x1F4D);
6960put('GREEK_SMALL_LETTER_UPSILON_WITH_PSILI, 'codepoint, 0x1F50);
6961put('GREEK_SMALL_LETTER_UPSILON_WITH_DASIA, 'codepoint, 0x1F51);
6962put('GREEK_SMALL_LETTER_UPSILON_WITH_PSILI_AND_VARIA, 'codepoint, 0x1F52);
6963put('GREEK_SMALL_LETTER_UPSILON_WITH_DASIA_AND_VARIA, 'codepoint, 0x1F53);
6964put('GREEK_SMALL_LETTER_UPSILON_WITH_PSILI_AND_OXIA, 'codepoint, 0x1F54);
6965put('GREEK_SMALL_LETTER_UPSILON_WITH_DASIA_AND_OXIA, 'codepoint, 0x1F55);
6966put('GREEK_SMALL_LETTER_UPSILON_WITH_PSILI_AND_PERISPOMENI, 'codepoint, 0x1F56);
6967put('GREEK_SMALL_LETTER_UPSILON_WITH_DASIA_AND_PERISPOMENI, 'codepoint, 0x1F57);
6968put('GREEK_CAPITAL_LETTER_UPSILON_WITH_DASIA, 'codepoint, 0x1F59);
6969put('GREEK_CAPITAL_LETTER_UPSILON_WITH_DASIA_AND_VARIA, 'codepoint, 0x1F5B);
6970put('GREEK_CAPITAL_LETTER_UPSILON_WITH_DASIA_AND_OXIA, 'codepoint, 0x1F5D);
6971put('GREEK_CAPITAL_LETTER_UPSILON_WITH_DASIA_AND_PERISPOMENI, 'codepoint, 0x1F5F);
6972put('GREEK_SMALL_LETTER_OMEGA_WITH_PSILI, 'codepoint, 0x1F60);
6973put('GREEK_SMALL_LETTER_OMEGA_WITH_DASIA, 'codepoint, 0x1F61);
6974put('GREEK_SMALL_LETTER_OMEGA_WITH_PSILI_AND_VARIA, 'codepoint, 0x1F62);
6975put('GREEK_SMALL_LETTER_OMEGA_WITH_DASIA_AND_VARIA, 'codepoint, 0x1F63);
6976put('GREEK_SMALL_LETTER_OMEGA_WITH_PSILI_AND_OXIA, 'codepoint, 0x1F64);
6977put('GREEK_SMALL_LETTER_OMEGA_WITH_DASIA_AND_OXIA, 'codepoint, 0x1F65);
6978put('GREEK_SMALL_LETTER_OMEGA_WITH_PSILI_AND_PERISPOMENI, 'codepoint, 0x1F66);
6979put('GREEK_SMALL_LETTER_OMEGA_WITH_DASIA_AND_PERISPOMENI, 'codepoint, 0x1F67);
6980put('GREEK_CAPITAL_LETTER_OMEGA_WITH_PSILI, 'codepoint, 0x1F68);
6981put('GREEK_CAPITAL_LETTER_OMEGA_WITH_DASIA, 'codepoint, 0x1F69);
6982put('GREEK_CAPITAL_LETTER_OMEGA_WITH_PSILI_AND_VARIA, 'codepoint, 0x1F6A);
6983put('GREEK_CAPITAL_LETTER_OMEGA_WITH_DASIA_AND_VARIA, 'codepoint, 0x1F6B);
6984put('GREEK_CAPITAL_LETTER_OMEGA_WITH_PSILI_AND_OXIA, 'codepoint, 0x1F6C);
6985put('GREEK_CAPITAL_LETTER_OMEGA_WITH_DASIA_AND_OXIA, 'codepoint, 0x1F6D);
6986put('GREEK_CAPITAL_LETTER_OMEGA_WITH_PSILI_AND_PERISPOMENI, 'codepoint, 0x1F6E);
6987put('GREEK_CAPITAL_LETTER_OMEGA_WITH_DASIA_AND_PERISPOMENI, 'codepoint, 0x1F6F);
6988put('GREEK_SMALL_LETTER_ALPHA_WITH_VARIA, 'codepoint, 0x1F70);
6989put('GREEK_SMALL_LETTER_ALPHA_WITH_OXIA, 'codepoint, 0x1F71);
6990put('GREEK_SMALL_LETTER_EPSILON_WITH_VARIA, 'codepoint, 0x1F72);
6991put('GREEK_SMALL_LETTER_EPSILON_WITH_OXIA, 'codepoint, 0x1F73);
6992put('GREEK_SMALL_LETTER_ETA_WITH_VARIA, 'codepoint, 0x1F74);
6993put('GREEK_SMALL_LETTER_ETA_WITH_OXIA, 'codepoint, 0x1F75);
6994put('GREEK_SMALL_LETTER_IOTA_WITH_VARIA, 'codepoint, 0x1F76);
6995put('GREEK_SMALL_LETTER_IOTA_WITH_OXIA, 'codepoint, 0x1F77);
6996put('GREEK_SMALL_LETTER_OMICRON_WITH_VARIA, 'codepoint, 0x1F78);
6997put('GREEK_SMALL_LETTER_OMICRON_WITH_OXIA, 'codepoint, 0x1F79);
6998put('GREEK_SMALL_LETTER_UPSILON_WITH_VARIA, 'codepoint, 0x1F7A);
6999put('GREEK_SMALL_LETTER_UPSILON_WITH_OXIA, 'codepoint, 0x1F7B);
7000put('GREEK_SMALL_LETTER_OMEGA_WITH_VARIA, 'codepoint, 0x1F7C);
7001put('GREEK_SMALL_LETTER_OMEGA_WITH_OXIA, 'codepoint, 0x1F7D);
7002put('GREEK_SMALL_LETTER_ALPHA_WITH_PSILI_AND_YPOGEGRAMMENI, 'codepoint, 0x1F80);
7003put('GREEK_SMALL_LETTER_ALPHA_WITH_DASIA_AND_YPOGEGRAMMENI, 'codepoint, 0x1F81);
7004put('GREEK_SMALL_LETTER_ALPHA_WITH_PSILI_AND_VARIA_AND_YPOGEGRAMMENI, 'codepoint, 0x1F82);
7005put('GREEK_SMALL_LETTER_ALPHA_WITH_DASIA_AND_VARIA_AND_YPOGEGRAMMENI, 'codepoint, 0x1F83);
7006put('GREEK_SMALL_LETTER_ALPHA_WITH_PSILI_AND_OXIA_AND_YPOGEGRAMMENI, 'codepoint, 0x1F84);
7007put('GREEK_SMALL_LETTER_ALPHA_WITH_DASIA_AND_OXIA_AND_YPOGEGRAMMENI, 'codepoint, 0x1F85);
7008put('GREEK_SMALL_LETTER_ALPHA_WITH_PSILI_AND_PERISPOMENI_AND_YPOGEGRAMMENI, 'codepoint, 0x1F86);
7009put('GREEK_SMALL_LETTER_ALPHA_WITH_DASIA_AND_PERISPOMENI_AND_YPOGEGRAMMENI, 'codepoint, 0x1F87);
7010put('GREEK_CAPITAL_LETTER_ALPHA_WITH_PSILI_AND_PROSGEGRAMMENI, 'codepoint, 0x1F88);
7011put('GREEK_CAPITAL_LETTER_ALPHA_WITH_DASIA_AND_PROSGEGRAMMENI, 'codepoint, 0x1F89);
7012put('GREEK_CAPITAL_LETTER_ALPHA_WITH_PSILI_AND_VARIA_AND_PROSGEGRAMMENI, 'codepoint, 0x1F8A);
7013put('GREEK_CAPITAL_LETTER_ALPHA_WITH_DASIA_AND_VARIA_AND_PROSGEGRAMMENI, 'codepoint, 0x1F8B);
7014put('GREEK_CAPITAL_LETTER_ALPHA_WITH_PSILI_AND_OXIA_AND_PROSGEGRAMMENI, 'codepoint, 0x1F8C);
7015put('GREEK_CAPITAL_LETTER_ALPHA_WITH_DASIA_AND_OXIA_AND_PROSGEGRAMMENI, 'codepoint, 0x1F8D);
7016put('GREEK_CAPITAL_LETTER_ALPHA_WITH_PSILI_AND_PERISPOMENI_AND_PROSGEGRAMMENI, 'codepoint, 0x1F8E);
7017put('GREEK_CAPITAL_LETTER_ALPHA_WITH_DASIA_AND_PERISPOMENI_AND_PROSGEGRAMMENI, 'codepoint, 0x1F8F);
7018put('GREEK_SMALL_LETTER_ETA_WITH_PSILI_AND_YPOGEGRAMMENI, 'codepoint, 0x1F90);
7019put('GREEK_SMALL_LETTER_ETA_WITH_DASIA_AND_YPOGEGRAMMENI, 'codepoint, 0x1F91);
7020put('GREEK_SMALL_LETTER_ETA_WITH_PSILI_AND_VARIA_AND_YPOGEGRAMMENI, 'codepoint, 0x1F92);
7021put('GREEK_SMALL_LETTER_ETA_WITH_DASIA_AND_VARIA_AND_YPOGEGRAMMENI, 'codepoint, 0x1F93);
7022put('GREEK_SMALL_LETTER_ETA_WITH_PSILI_AND_OXIA_AND_YPOGEGRAMMENI, 'codepoint, 0x1F94);
7023put('GREEK_SMALL_LETTER_ETA_WITH_DASIA_AND_OXIA_AND_YPOGEGRAMMENI, 'codepoint, 0x1F95);
7024put('GREEK_SMALL_LETTER_ETA_WITH_PSILI_AND_PERISPOMENI_AND_YPOGEGRAMMENI, 'codepoint, 0x1F96);
7025put('GREEK_SMALL_LETTER_ETA_WITH_DASIA_AND_PERISPOMENI_AND_YPOGEGRAMMENI, 'codepoint, 0x1F97);
7026put('GREEK_CAPITAL_LETTER_ETA_WITH_PSILI_AND_PROSGEGRAMMENI, 'codepoint, 0x1F98);
7027put('GREEK_CAPITAL_LETTER_ETA_WITH_DASIA_AND_PROSGEGRAMMENI, 'codepoint, 0x1F99);
7028put('GREEK_CAPITAL_LETTER_ETA_WITH_PSILI_AND_VARIA_AND_PROSGEGRAMMENI, 'codepoint, 0x1F9A);
7029put('GREEK_CAPITAL_LETTER_ETA_WITH_DASIA_AND_VARIA_AND_PROSGEGRAMMENI, 'codepoint, 0x1F9B);
7030put('GREEK_CAPITAL_LETTER_ETA_WITH_PSILI_AND_OXIA_AND_PROSGEGRAMMENI, 'codepoint, 0x1F9C);
7031put('GREEK_CAPITAL_LETTER_ETA_WITH_DASIA_AND_OXIA_AND_PROSGEGRAMMENI, 'codepoint, 0x1F9D);
7032put('GREEK_CAPITAL_LETTER_ETA_WITH_PSILI_AND_PERISPOMENI_AND_PROSGEGRAMMENI, 'codepoint, 0x1F9E);
7033put('GREEK_CAPITAL_LETTER_ETA_WITH_DASIA_AND_PERISPOMENI_AND_PROSGEGRAMMENI, 'codepoint, 0x1F9F);
7034put('GREEK_SMALL_LETTER_OMEGA_WITH_PSILI_AND_YPOGEGRAMMENI, 'codepoint, 0x1FA0);
7035put('GREEK_SMALL_LETTER_OMEGA_WITH_DASIA_AND_YPOGEGRAMMENI, 'codepoint, 0x1FA1);
7036put('GREEK_SMALL_LETTER_OMEGA_WITH_PSILI_AND_VARIA_AND_YPOGEGRAMMENI, 'codepoint, 0x1FA2);
7037put('GREEK_SMALL_LETTER_OMEGA_WITH_DASIA_AND_VARIA_AND_YPOGEGRAMMENI, 'codepoint, 0x1FA3);
7038put('GREEK_SMALL_LETTER_OMEGA_WITH_PSILI_AND_OXIA_AND_YPOGEGRAMMENI, 'codepoint, 0x1FA4);
7039put('GREEK_SMALL_LETTER_OMEGA_WITH_DASIA_AND_OXIA_AND_YPOGEGRAMMENI, 'codepoint, 0x1FA5);
7040put('GREEK_SMALL_LETTER_OMEGA_WITH_PSILI_AND_PERISPOMENI_AND_YPOGEGRAMMENI, 'codepoint, 0x1FA6);
7041put('GREEK_SMALL_LETTER_OMEGA_WITH_DASIA_AND_PERISPOMENI_AND_YPOGEGRAMMENI, 'codepoint, 0x1FA7);
7042put('GREEK_CAPITAL_LETTER_OMEGA_WITH_PSILI_AND_PROSGEGRAMMENI, 'codepoint, 0x1FA8);
7043put('GREEK_CAPITAL_LETTER_OMEGA_WITH_DASIA_AND_PROSGEGRAMMENI, 'codepoint, 0x1FA9);
7044put('GREEK_CAPITAL_LETTER_OMEGA_WITH_PSILI_AND_VARIA_AND_PROSGEGRAMMENI, 'codepoint, 0x1FAA);
7045put('GREEK_CAPITAL_LETTER_OMEGA_WITH_DASIA_AND_VARIA_AND_PROSGEGRAMMENI, 'codepoint, 0x1FAB);
7046put('GREEK_CAPITAL_LETTER_OMEGA_WITH_PSILI_AND_OXIA_AND_PROSGEGRAMMENI, 'codepoint, 0x1FAC);
7047put('GREEK_CAPITAL_LETTER_OMEGA_WITH_DASIA_AND_OXIA_AND_PROSGEGRAMMENI, 'codepoint, 0x1FAD);
7048put('GREEK_CAPITAL_LETTER_OMEGA_WITH_PSILI_AND_PERISPOMENI_AND_PROSGEGRAMMENI, 'codepoint, 0x1FAE);
7049put('GREEK_CAPITAL_LETTER_OMEGA_WITH_DASIA_AND_PERISPOMENI_AND_PROSGEGRAMMENI, 'codepoint, 0x1FAF);
7050put('GREEK_SMALL_LETTER_ALPHA_WITH_VRACHY, 'codepoint, 0x1FB0);
7051put('GREEK_SMALL_LETTER_ALPHA_WITH_MACRON, 'codepoint, 0x1FB1);
7052put('GREEK_SMALL_LETTER_ALPHA_WITH_VARIA_AND_YPOGEGRAMMENI, 'codepoint, 0x1FB2);
7053put('GREEK_SMALL_LETTER_ALPHA_WITH_YPOGEGRAMMENI, 'codepoint, 0x1FB3);
7054put('GREEK_SMALL_LETTER_ALPHA_WITH_OXIA_AND_YPOGEGRAMMENI, 'codepoint, 0x1FB4);
7055put('GREEK_SMALL_LETTER_ALPHA_WITH_PERISPOMENI, 'codepoint, 0x1FB6);
7056put('GREEK_SMALL_LETTER_ALPHA_WITH_PERISPOMENI_AND_YPOGEGRAMMENI, 'codepoint, 0x1FB7);
7057put('GREEK_CAPITAL_LETTER_ALPHA_WITH_VRACHY, 'codepoint, 0x1FB8);
7058put('GREEK_CAPITAL_LETTER_ALPHA_WITH_MACRON, 'codepoint, 0x1FB9);
7059put('GREEK_CAPITAL_LETTER_ALPHA_WITH_VARIA, 'codepoint, 0x1FBA);
7060put('GREEK_CAPITAL_LETTER_ALPHA_WITH_OXIA, 'codepoint, 0x1FBB);
7061put('GREEK_CAPITAL_LETTER_ALPHA_WITH_PROSGEGRAMMENI, 'codepoint, 0x1FBC);
7062put('GREEK_KORONIS, 'codepoint, 0x1FBD);
7063put('GREEK_PROSGEGRAMMENI, 'codepoint, 0x1FBE);
7064put('GREEK_PSILI, 'codepoint, 0x1FBF);
7065put('GREEK_PERISPOMENI, 'codepoint, 0x1FC0);
7066put('GREEK_DIALYTIKA_AND_PERISPOMENI, 'codepoint, 0x1FC1);
7067put('GREEK_SMALL_LETTER_ETA_WITH_VARIA_AND_YPOGEGRAMMENI, 'codepoint, 0x1FC2);
7068put('GREEK_SMALL_LETTER_ETA_WITH_YPOGEGRAMMENI, 'codepoint, 0x1FC3);
7069put('GREEK_SMALL_LETTER_ETA_WITH_OXIA_AND_YPOGEGRAMMENI, 'codepoint, 0x1FC4);
7070put('GREEK_SMALL_LETTER_ETA_WITH_PERISPOMENI, 'codepoint, 0x1FC6);
7071put('GREEK_SMALL_LETTER_ETA_WITH_PERISPOMENI_AND_YPOGEGRAMMENI, 'codepoint, 0x1FC7);
7072put('GREEK_CAPITAL_LETTER_EPSILON_WITH_VARIA, 'codepoint, 0x1FC8);
7073put('GREEK_CAPITAL_LETTER_EPSILON_WITH_OXIA, 'codepoint, 0x1FC9);
7074put('GREEK_CAPITAL_LETTER_ETA_WITH_VARIA, 'codepoint, 0x1FCA);
7075put('GREEK_CAPITAL_LETTER_ETA_WITH_OXIA, 'codepoint, 0x1FCB);
7076put('GREEK_CAPITAL_LETTER_ETA_WITH_PROSGEGRAMMENI, 'codepoint, 0x1FCC);
7077put('GREEK_PSILI_AND_VARIA, 'codepoint, 0x1FCD);
7078put('GREEK_PSILI_AND_OXIA, 'codepoint, 0x1FCE);
7079put('GREEK_PSILI_AND_PERISPOMENI, 'codepoint, 0x1FCF);
7080put('GREEK_SMALL_LETTER_IOTA_WITH_VRACHY, 'codepoint, 0x1FD0);
7081put('GREEK_SMALL_LETTER_IOTA_WITH_MACRON, 'codepoint, 0x1FD1);
7082put('GREEK_SMALL_LETTER_IOTA_WITH_DIALYTIKA_AND_VARIA, 'codepoint, 0x1FD2);
7083put('GREEK_SMALL_LETTER_IOTA_WITH_DIALYTIKA_AND_OXIA, 'codepoint, 0x1FD3);
7084put('GREEK_SMALL_LETTER_IOTA_WITH_PERISPOMENI, 'codepoint, 0x1FD6);
7085put('GREEK_SMALL_LETTER_IOTA_WITH_DIALYTIKA_AND_PERISPOMENI, 'codepoint, 0x1FD7);
7086put('GREEK_CAPITAL_LETTER_IOTA_WITH_VRACHY, 'codepoint, 0x1FD8);
7087put('GREEK_CAPITAL_LETTER_IOTA_WITH_MACRON, 'codepoint, 0x1FD9);
7088put('GREEK_CAPITAL_LETTER_IOTA_WITH_VARIA, 'codepoint, 0x1FDA);
7089put('GREEK_CAPITAL_LETTER_IOTA_WITH_OXIA, 'codepoint, 0x1FDB);
7090put('GREEK_DASIA_AND_VARIA, 'codepoint, 0x1FDD);
7091put('GREEK_DASIA_AND_OXIA, 'codepoint, 0x1FDE);
7092put('GREEK_DASIA_AND_PERISPOMENI, 'codepoint, 0x1FDF);
7093put('GREEK_SMALL_LETTER_UPSILON_WITH_VRACHY, 'codepoint, 0x1FE0);
7094put('GREEK_SMALL_LETTER_UPSILON_WITH_MACRON, 'codepoint, 0x1FE1);
7095put('GREEK_SMALL_LETTER_UPSILON_WITH_DIALYTIKA_AND_VARIA, 'codepoint, 0x1FE2);
7096put('GREEK_SMALL_LETTER_UPSILON_WITH_DIALYTIKA_AND_OXIA, 'codepoint, 0x1FE3);
7097put('GREEK_SMALL_LETTER_RHO_WITH_PSILI, 'codepoint, 0x1FE4);
7098put('GREEK_SMALL_LETTER_RHO_WITH_DASIA, 'codepoint, 0x1FE5);
7099put('GREEK_SMALL_LETTER_UPSILON_WITH_PERISPOMENI, 'codepoint, 0x1FE6);
7100put('GREEK_SMALL_LETTER_UPSILON_WITH_DIALYTIKA_AND_PERISPOMENI, 'codepoint, 0x1FE7);
7101put('GREEK_CAPITAL_LETTER_UPSILON_WITH_VRACHY, 'codepoint, 0x1FE8);
7102put('GREEK_CAPITAL_LETTER_UPSILON_WITH_MACRON, 'codepoint, 0x1FE9);
7103put('GREEK_CAPITAL_LETTER_UPSILON_WITH_VARIA, 'codepoint, 0x1FEA);
7104put('GREEK_CAPITAL_LETTER_UPSILON_WITH_OXIA, 'codepoint, 0x1FEB);
7105put('GREEK_CAPITAL_LETTER_RHO_WITH_DASIA, 'codepoint, 0x1FEC);
7106put('GREEK_DIALYTIKA_AND_VARIA, 'codepoint, 0x1FED);
7107put('GREEK_DIALYTIKA_AND_OXIA, 'codepoint, 0x1FEE);
7108put('GREEK_VARIA, 'codepoint, 0x1FEF);
7109put('GREEK_SMALL_LETTER_OMEGA_WITH_VARIA_AND_YPOGEGRAMMENI, 'codepoint, 0x1FF2);
7110put('GREEK_SMALL_LETTER_OMEGA_WITH_YPOGEGRAMMENI, 'codepoint, 0x1FF3);
7111put('GREEK_SMALL_LETTER_OMEGA_WITH_OXIA_AND_YPOGEGRAMMENI, 'codepoint, 0x1FF4);
7112put('GREEK_SMALL_LETTER_OMEGA_WITH_PERISPOMENI, 'codepoint, 0x1FF6);
7113put('GREEK_SMALL_LETTER_OMEGA_WITH_PERISPOMENI_AND_YPOGEGRAMMENI, 'codepoint, 0x1FF7);
7114put('GREEK_CAPITAL_LETTER_OMICRON_WITH_VARIA, 'codepoint, 0x1FF8);
7115put('GREEK_CAPITAL_LETTER_OMICRON_WITH_OXIA, 'codepoint, 0x1FF9);
7116put('GREEK_CAPITAL_LETTER_OMEGA_WITH_VARIA, 'codepoint, 0x1FFA);
7117put('GREEK_CAPITAL_LETTER_OMEGA_WITH_OXIA, 'codepoint, 0x1FFB);
7118put('GREEK_CAPITAL_LETTER_OMEGA_WITH_PROSGEGRAMMENI, 'codepoint, 0x1FFC);
7119put('GREEK_OXIA, 'codepoint, 0x1FFD);
7120put('GREEK_DASIA, 'codepoint, 0x1FFE);
7121put('EN_QUAD, 'codepoint, 0x2000);
7122put('EM_QUAD, 'codepoint, 0x2001);
7123put('EN_SPACE, 'codepoint, 0x2002);
7124put('EM_SPACE, 'codepoint, 0x2003);
7125put('THREE_PER_EM_SPACE, 'codepoint, 0x2004);
7126put('FOUR_PER_EM_SPACE, 'codepoint, 0x2005);
7127put('SIX_PER_EM_SPACE, 'codepoint, 0x2006);
7128put('FIGURE_SPACE, 'codepoint, 0x2007);
7129put('PUNCTUATION_SPACE, 'codepoint, 0x2008);
7130put('THIN_SPACE, 'codepoint, 0x2009);
7131put('HAIR_SPACE, 'codepoint, 0x200A);
7132put('ZERO_WIDTH_SPACE, 'codepoint, 0x200B);
7133put('ZERO_WIDTH_NON_JOINER, 'codepoint, 0x200C);
7134put('ZERO_WIDTH_JOINER, 'codepoint, 0x200D);
7135put('LEFT_TO_RIGHT_MARK, 'codepoint, 0x200E);
7136put('RIGHT_TO_LEFT_MARK, 'codepoint, 0x200F);
7137put('HYPHEN, 'codepoint, 0x2010);
7138put('NON_BREAKING_HYPHEN, 'codepoint, 0x2011);
7139put('FIGURE_DASH, 'codepoint, 0x2012);
7140put('EN_DASH, 'codepoint, 0x2013);
7141put('EM_DASH, 'codepoint, 0x2014);
7142put('HORIZONTAL_BAR, 'codepoint, 0x2015);
7143put('DOUBLE_VERTICAL_LINE, 'codepoint, 0x2016);
7144put('DOUBLE_LOW_LINE, 'codepoint, 0x2017);
7145put('LEFT_SINGLE_QUOTATION_MARK, 'codepoint, 0x2018);
7146put('RIGHT_SINGLE_QUOTATION_MARK, 'codepoint, 0x2019);
7147put('SINGLE_LOW_9_QUOTATION_MARK, 'codepoint, 0x201A);
7148put('SINGLE_HIGH_REVERSED_9_QUOTATION_MARK, 'codepoint, 0x201B);
7149put('LEFT_DOUBLE_QUOTATION_MARK, 'codepoint, 0x201C);
7150put('RIGHT_DOUBLE_QUOTATION_MARK, 'codepoint, 0x201D);
7151put('DOUBLE_LOW_9_QUOTATION_MARK, 'codepoint, 0x201E);
7152put('DOUBLE_HIGH_REVERSED_9_QUOTATION_MARK, 'codepoint, 0x201F);
7153put('DAGGER, 'codepoint, 0x2020);
7154put('DOUBLE_DAGGER, 'codepoint, 0x2021);
7155put('BULLET, 'codepoint, 0x2022);
7156put('TRIANGULAR_BULLET, 'codepoint, 0x2023);
7157put('ONE_DOT_LEADER, 'codepoint, 0x2024);
7158put('TWO_DOT_LEADER, 'codepoint, 0x2025);
7159put('HORIZONTAL_ELLIPSIS, 'codepoint, 0x2026);
7160put('HYPHENATION_POINT, 'codepoint, 0x2027);
7161put('LINE_SEPARATOR, 'codepoint, 0x2028);
7162put('PARAGRAPH_SEPARATOR, 'codepoint, 0x2029);
7163put('LEFT_TO_RIGHT_EMBEDDING, 'codepoint, 0x202A);
7164put('RIGHT_TO_LEFT_EMBEDDING, 'codepoint, 0x202B);
7165put('POP_DIRECTIONAL_FORMATTING, 'codepoint, 0x202C);
7166put('LEFT_TO_RIGHT_OVERRIDE, 'codepoint, 0x202D);
7167put('RIGHT_TO_LEFT_OVERRIDE, 'codepoint, 0x202E);
7168put('NARROW_NO_BREAK_SPACE, 'codepoint, 0x202F);
7169put('PER_MILLE_SIGN, 'codepoint, 0x2030);
7170put('PER_TEN_THOUSAND_SIGN, 'codepoint, 0x2031);
7171put('PRIME, 'codepoint, 0x2032);
7172put('DOUBLE_PRIME, 'codepoint, 0x2033);
7173put('TRIPLE_PRIME, 'codepoint, 0x2034);
7174put('REVERSED_PRIME, 'codepoint, 0x2035);
7175put('REVERSED_DOUBLE_PRIME, 'codepoint, 0x2036);
7176put('REVERSED_TRIPLE_PRIME, 'codepoint, 0x2037);
7177put('CARET, 'codepoint, 0x2038);
7178put('SINGLE_LEFT_POINTING_ANGLE_QUOTATION_MARK, 'codepoint, 0x2039);
7179put('SINGLE_RIGHT_POINTING_ANGLE_QUOTATION_MARK, 'codepoint, 0x203A);
7180put('REFERENCE_MARK, 'codepoint, 0x203B);
7181put('DOUBLE_EXCLAMATION_MARK, 'codepoint, 0x203C);
7182put('INTERROBANG, 'codepoint, 0x203D);
7183put('OVERLINE, 'codepoint, 0x203E);
7184put('UNDERTIE, 'codepoint, 0x203F);
7185put('CHARACTER_TIE, 'codepoint, 0x2040);
7186put('CARET_INSERTION_POINT, 'codepoint, 0x2041);
7187put('ASTERISM, 'codepoint, 0x2042);
7188put('HYPHEN_BULLET, 'codepoint, 0x2043);
7189put('FRACTION_SLASH, 'codepoint, 0x2044);
7190put('LEFT_SQUARE_BRACKET_WITH_QUILL, 'codepoint, 0x2045);
7191put('RIGHT_SQUARE_BRACKET_WITH_QUILL, 'codepoint, 0x2046);
7192put('DOUBLE_QUESTION_MARK, 'codepoint, 0x2047);
7193put('QUESTION_EXCLAMATION_MARK, 'codepoint, 0x2048);
7194put('EXCLAMATION_QUESTION_MARK, 'codepoint, 0x2049);
7195put('TIRONIAN_SIGN_ET, 'codepoint, 0x204A);
7196put('REVERSED_PILCROW_SIGN, 'codepoint, 0x204B);
7197put('BLACK_LEFTWARDS_BULLET, 'codepoint, 0x204C);
7198put('BLACK_RIGHTWARDS_BULLET, 'codepoint, 0x204D);
7199put('LOW_ASTERISK, 'codepoint, 0x204E);
7200put('REVERSED_SEMICOLON, 'codepoint, 0x204F);
7201put('CLOSE_UP, 'codepoint, 0x2050);
7202put('TWO_ASTERISKS_ALIGNED_VERTICALLY, 'codepoint, 0x2051);
7203put('COMMERCIAL_MINUS_SIGN, 'codepoint, 0x2052);
7204put('SWUNG_DASH, 'codepoint, 0x2053);
7205put('INVERTED_UNDERTIE, 'codepoint, 0x2054);
7206put('FLOWER_PUNCTUATION_MARK, 'codepoint, 0x2055);
7207put('THREE_DOT_PUNCTUATION, 'codepoint, 0x2056);
7208put('QUADRUPLE_PRIME, 'codepoint, 0x2057);
7209put('FOUR_DOT_PUNCTUATION, 'codepoint, 0x2058);
7210put('FIVE_DOT_PUNCTUATION, 'codepoint, 0x2059);
7211put('TWO_DOT_PUNCTUATION, 'codepoint, 0x205A);
7212put('FOUR_DOT_MARK, 'codepoint, 0x205B);
7213put('DOTTED_CROSS, 'codepoint, 0x205C);
7214put('TRICOLON, 'codepoint, 0x205D);
7215put('VERTICAL_FOUR_DOTS, 'codepoint, 0x205E);
7216put('MEDIUM_MATHEMATICAL_SPACE, 'codepoint, 0x205F);
7217put('WORD_JOINER, 'codepoint, 0x2060);
7218put('FUNCTION_APPLICATION, 'codepoint, 0x2061);
7219put('INVISIBLE_TIMES, 'codepoint, 0x2062);
7220put('INVISIBLE_SEPARATOR, 'codepoint, 0x2063);
7221put('INVISIBLE_PLUS, 'codepoint, 0x2064);
7222put('LEFT_TO_RIGHT_ISOLATE, 'codepoint, 0x2066);
7223put('RIGHT_TO_LEFT_ISOLATE, 'codepoint, 0x2067);
7224put('FIRST_STRONG_ISOLATE, 'codepoint, 0x2068);
7225put('POP_DIRECTIONAL_ISOLATE, 'codepoint, 0x2069);
7226put('INHIBIT_SYMMETRIC_SWAPPING, 'codepoint, 0x206A);
7227put('ACTIVATE_SYMMETRIC_SWAPPING, 'codepoint, 0x206B);
7228put('INHIBIT_ARABIC_FORM_SHAPING, 'codepoint, 0x206C);
7229put('ACTIVATE_ARABIC_FORM_SHAPING, 'codepoint, 0x206D);
7230put('NATIONAL_DIGIT_SHAPES, 'codepoint, 0x206E);
7231put('NOMINAL_DIGIT_SHAPES, 'codepoint, 0x206F);
7232put('SUPERSCRIPT_ZERO, 'codepoint, 0x2070);
7233put('SUPERSCRIPT_LATIN_SMALL_LETTER_I, 'codepoint, 0x2071);
7234put('SUPERSCRIPT_FOUR, 'codepoint, 0x2074);
7235put('SUPERSCRIPT_FIVE, 'codepoint, 0x2075);
7236put('SUPERSCRIPT_SIX, 'codepoint, 0x2076);
7237put('SUPERSCRIPT_SEVEN, 'codepoint, 0x2077);
7238put('SUPERSCRIPT_EIGHT, 'codepoint, 0x2078);
7239put('SUPERSCRIPT_NINE, 'codepoint, 0x2079);
7240put('SUPERSCRIPT_PLUS_SIGN, 'codepoint, 0x207A);
7241put('SUPERSCRIPT_MINUS, 'codepoint, 0x207B);
7242put('SUPERSCRIPT_EQUALS_SIGN, 'codepoint, 0x207C);
7243put('SUPERSCRIPT_LEFT_PARENTHESIS, 'codepoint, 0x207D);
7244put('SUPERSCRIPT_RIGHT_PARENTHESIS, 'codepoint, 0x207E);
7245put('SUPERSCRIPT_LATIN_SMALL_LETTER_N, 'codepoint, 0x207F);
7246put('SUBSCRIPT_ZERO, 'codepoint, 0x2080);
7247put('SUBSCRIPT_ONE, 'codepoint, 0x2081);
7248put('SUBSCRIPT_TWO, 'codepoint, 0x2082);
7249put('SUBSCRIPT_THREE, 'codepoint, 0x2083);
7250put('SUBSCRIPT_FOUR, 'codepoint, 0x2084);
7251put('SUBSCRIPT_FIVE, 'codepoint, 0x2085);
7252put('SUBSCRIPT_SIX, 'codepoint, 0x2086);
7253put('SUBSCRIPT_SEVEN, 'codepoint, 0x2087);
7254put('SUBSCRIPT_EIGHT, 'codepoint, 0x2088);
7255put('SUBSCRIPT_NINE, 'codepoint, 0x2089);
7256put('SUBSCRIPT_PLUS_SIGN, 'codepoint, 0x208A);
7257put('SUBSCRIPT_MINUS, 'codepoint, 0x208B);
7258put('SUBSCRIPT_EQUALS_SIGN, 'codepoint, 0x208C);
7259put('SUBSCRIPT_LEFT_PARENTHESIS, 'codepoint, 0x208D);
7260put('SUBSCRIPT_RIGHT_PARENTHESIS, 'codepoint, 0x208E);
7261put('LATIN_SUBSCRIPT_SMALL_LETTER_A, 'codepoint, 0x2090);
7262put('LATIN_SUBSCRIPT_SMALL_LETTER_E, 'codepoint, 0x2091);
7263put('LATIN_SUBSCRIPT_SMALL_LETTER_O, 'codepoint, 0x2092);
7264put('LATIN_SUBSCRIPT_SMALL_LETTER_X, 'codepoint, 0x2093);
7265put('LATIN_SUBSCRIPT_SMALL_LETTER_SCHWA, 'codepoint, 0x2094);
7266put('LATIN_SUBSCRIPT_SMALL_LETTER_H, 'codepoint, 0x2095);
7267put('LATIN_SUBSCRIPT_SMALL_LETTER_K, 'codepoint, 0x2096);
7268put('LATIN_SUBSCRIPT_SMALL_LETTER_L, 'codepoint, 0x2097);
7269put('LATIN_SUBSCRIPT_SMALL_LETTER_M, 'codepoint, 0x2098);
7270put('LATIN_SUBSCRIPT_SMALL_LETTER_N, 'codepoint, 0x2099);
7271put('LATIN_SUBSCRIPT_SMALL_LETTER_P, 'codepoint, 0x209A);
7272put('LATIN_SUBSCRIPT_SMALL_LETTER_S, 'codepoint, 0x209B);
7273put('LATIN_SUBSCRIPT_SMALL_LETTER_T, 'codepoint, 0x209C);
7274put('EURO_CURRENCY_SIGN, 'codepoint, 0x20A0);
7275put('COLON_SIGN, 'codepoint, 0x20A1);
7276put('CRUZEIRO_SIGN, 'codepoint, 0x20A2);
7277put('FRENCH_FRANC_SIGN, 'codepoint, 0x20A3);
7278put('LIRA_SIGN, 'codepoint, 0x20A4);
7279put('MILL_SIGN, 'codepoint, 0x20A5);
7280put('NAIRA_SIGN, 'codepoint, 0x20A6);
7281put('PESETA_SIGN, 'codepoint, 0x20A7);
7282put('RUPEE_SIGN, 'codepoint, 0x20A8);
7283put('WON_SIGN, 'codepoint, 0x20A9);
7284put('NEW_SHEQEL_SIGN, 'codepoint, 0x20AA);
7285put('DONG_SIGN, 'codepoint, 0x20AB);
7286put('EURO_SIGN, 'codepoint, 0x20AC);
7287put('KIP_SIGN, 'codepoint, 0x20AD);
7288put('TUGRIK_SIGN, 'codepoint, 0x20AE);
7289put('DRACHMA_SIGN, 'codepoint, 0x20AF);
7290put('GERMAN_PENNY_SIGN, 'codepoint, 0x20B0);
7291put('PESO_SIGN, 'codepoint, 0x20B1);
7292put('GUARANI_SIGN, 'codepoint, 0x20B2);
7293put('AUSTRAL_SIGN, 'codepoint, 0x20B3);
7294put('HRYVNIA_SIGN, 'codepoint, 0x20B4);
7295put('CEDI_SIGN, 'codepoint, 0x20B5);
7296put('LIVRE_TOURNOIS_SIGN, 'codepoint, 0x20B6);
7297put('SPESMILO_SIGN, 'codepoint, 0x20B7);
7298put('TENGE_SIGN, 'codepoint, 0x20B8);
7299put('INDIAN_RUPEE_SIGN, 'codepoint, 0x20B9);
7300put('TURKISH_LIRA_SIGN, 'codepoint, 0x20BA);
7301put('NORDIC_MARK_SIGN, 'codepoint, 0x20BB);
7302put('MANAT_SIGN, 'codepoint, 0x20BC);
7303put('RUBLE_SIGN, 'codepoint, 0x20BD);
7304put('COMBINING_LEFT_HARPOON_ABOVE, 'codepoint, 0x20D0);
7305put('COMBINING_RIGHT_HARPOON_ABOVE, 'codepoint, 0x20D1);
7306put('COMBINING_LONG_VERTICAL_LINE_OVERLAY, 'codepoint, 0x20D2);
7307put('COMBINING_SHORT_VERTICAL_LINE_OVERLAY, 'codepoint, 0x20D3);
7308put('COMBINING_ANTICLOCKWISE_ARROW_ABOVE, 'codepoint, 0x20D4);
7309put('COMBINING_CLOCKWISE_ARROW_ABOVE, 'codepoint, 0x20D5);
7310put('COMBINING_LEFT_ARROW_ABOVE, 'codepoint, 0x20D6);
7311put('COMBINING_RIGHT_ARROW_ABOVE, 'codepoint, 0x20D7);
7312put('COMBINING_RING_OVERLAY, 'codepoint, 0x20D8);
7313put('COMBINING_CLOCKWISE_RING_OVERLAY, 'codepoint, 0x20D9);
7314put('COMBINING_ANTICLOCKWISE_RING_OVERLAY, 'codepoint, 0x20DA);
7315put('COMBINING_THREE_DOTS_ABOVE, 'codepoint, 0x20DB);
7316put('COMBINING_FOUR_DOTS_ABOVE, 'codepoint, 0x20DC);
7317put('COMBINING_ENCLOSING_CIRCLE, 'codepoint, 0x20DD);
7318put('COMBINING_ENCLOSING_SQUARE, 'codepoint, 0x20DE);
7319put('COMBINING_ENCLOSING_DIAMOND, 'codepoint, 0x20DF);
7320put('COMBINING_ENCLOSING_CIRCLE_BACKSLASH, 'codepoint, 0x20E0);
7321put('COMBINING_LEFT_RIGHT_ARROW_ABOVE, 'codepoint, 0x20E1);
7322put('COMBINING_ENCLOSING_SCREEN, 'codepoint, 0x20E2);
7323put('COMBINING_ENCLOSING_KEYCAP, 'codepoint, 0x20E3);
7324put('COMBINING_ENCLOSING_UPWARD_POINTING_TRIANGLE, 'codepoint, 0x20E4);
7325put('COMBINING_REVERSE_SOLIDUS_OVERLAY, 'codepoint, 0x20E5);
7326put('COMBINING_DOUBLE_VERTICAL_STROKE_OVERLAY, 'codepoint, 0x20E6);
7327put('COMBINING_ANNUITY_SYMBOL, 'codepoint, 0x20E7);
7328put('COMBINING_TRIPLE_UNDERDOT, 'codepoint, 0x20E8);
7329put('COMBINING_WIDE_BRIDGE_ABOVE, 'codepoint, 0x20E9);
7330put('COMBINING_LEFTWARDS_ARROW_OVERLAY, 'codepoint, 0x20EA);
7331put('COMBINING_LONG_DOUBLE_SOLIDUS_OVERLAY, 'codepoint, 0x20EB);
7332put('COMBINING_RIGHTWARDS_HARPOON_WITH_BARB_DOWNWARDS, 'codepoint, 0x20EC);
7333put('COMBINING_LEFTWARDS_HARPOON_WITH_BARB_DOWNWARDS, 'codepoint, 0x20ED);
7334put('COMBINING_LEFT_ARROW_BELOW, 'codepoint, 0x20EE);
7335put('COMBINING_RIGHT_ARROW_BELOW, 'codepoint, 0x20EF);
7336put('COMBINING_ASTERISK_ABOVE, 'codepoint, 0x20F0);
7337put('ACCOUNT_OF, 'codepoint, 0x2100);
7338put('ADDRESSED_TO_THE_SUBJECT, 'codepoint, 0x2101);
7339put('DOUBLE_STRUCK_CAPITAL_C, 'codepoint, 0x2102);
7340put('DEGREE_CELSIUS, 'codepoint, 0x2103);
7341put('CENTRE_LINE_SYMBOL, 'codepoint, 0x2104);
7342put('CARE_OF, 'codepoint, 0x2105);
7343put('CADA_UNA, 'codepoint, 0x2106);
7344put('EULER_CONSTANT, 'codepoint, 0x2107);
7345put('SCRUPLE, 'codepoint, 0x2108);
7346put('DEGREE_FAHRENHEIT, 'codepoint, 0x2109);
7347put('SCRIPT_SMALL_G, 'codepoint, 0x210A);
7348put('SCRIPT_CAPITAL_H, 'codepoint, 0x210B);
7349put('BLACK_LETTER_CAPITAL_H, 'codepoint, 0x210C);
7350put('DOUBLE_STRUCK_CAPITAL_H, 'codepoint, 0x210D);
7351put('PLANCK_CONSTANT, 'codepoint, 0x210E);
7352put('PLANCK_CONSTANT_OVER_TWO_PI, 'codepoint, 0x210F);
7353put('SCRIPT_CAPITAL_I, 'codepoint, 0x2110);
7354put('BLACK_LETTER_CAPITAL_I, 'codepoint, 0x2111);
7355put('SCRIPT_CAPITAL_L, 'codepoint, 0x2112);
7356put('SCRIPT_SMALL_L, 'codepoint, 0x2113);
7357put('L_B_BAR_SYMBOL, 'codepoint, 0x2114);
7358put('DOUBLE_STRUCK_CAPITAL_N, 'codepoint, 0x2115);
7359put('NUMERO_SIGN, 'codepoint, 0x2116);
7360put('SOUND_RECORDING_COPYRIGHT, 'codepoint, 0x2117);
7361put('SCRIPT_CAPITAL_P, 'codepoint, 0x2118);
7362put('DOUBLE_STRUCK_CAPITAL_P, 'codepoint, 0x2119);
7363put('DOUBLE_STRUCK_CAPITAL_Q, 'codepoint, 0x211A);
7364put('SCRIPT_CAPITAL_R, 'codepoint, 0x211B);
7365put('BLACK_LETTER_CAPITAL_R, 'codepoint, 0x211C);
7366put('DOUBLE_STRUCK_CAPITAL_R, 'codepoint, 0x211D);
7367put('PRESCRIPTION_TAKE, 'codepoint, 0x211E);
7368put('RESPONSE, 'codepoint, 0x211F);
7369put('SERVICE_MARK, 'codepoint, 0x2120);
7370put('TELEPHONE_SIGN, 'codepoint, 0x2121);
7371put('TRADE_MARK_SIGN, 'codepoint, 0x2122);
7372put('VERSICLE, 'codepoint, 0x2123);
7373put('DOUBLE_STRUCK_CAPITAL_Z, 'codepoint, 0x2124);
7374put('OUNCE_SIGN, 'codepoint, 0x2125);
7375put('OHM_SIGN, 'codepoint, 0x2126);
7376put('INVERTED_OHM_SIGN, 'codepoint, 0x2127);
7377put('BLACK_LETTER_CAPITAL_Z, 'codepoint, 0x2128);
7378put('TURNED_GREEK_SMALL_LETTER_IOTA, 'codepoint, 0x2129);
7379put('KELVIN_SIGN, 'codepoint, 0x212A);
7380put('ANGSTROM_SIGN, 'codepoint, 0x212B);
7381put('SCRIPT_CAPITAL_B, 'codepoint, 0x212C);
7382put('BLACK_LETTER_CAPITAL_C, 'codepoint, 0x212D);
7383put('ESTIMATED_SYMBOL, 'codepoint, 0x212E);
7384put('SCRIPT_SMALL_E, 'codepoint, 0x212F);
7385put('SCRIPT_CAPITAL_E, 'codepoint, 0x2130);
7386put('SCRIPT_CAPITAL_F, 'codepoint, 0x2131);
7387put('TURNED_CAPITAL_F, 'codepoint, 0x2132);
7388put('SCRIPT_CAPITAL_M, 'codepoint, 0x2133);
7389put('SCRIPT_SMALL_O, 'codepoint, 0x2134);
7390put('ALEF_SYMBOL, 'codepoint, 0x2135);
7391put('BET_SYMBOL, 'codepoint, 0x2136);
7392put('GIMEL_SYMBOL, 'codepoint, 0x2137);
7393put('DALET_SYMBOL, 'codepoint, 0x2138);
7394put('INFORMATION_SOURCE, 'codepoint, 0x2139);
7395put('ROTATED_CAPITAL_Q, 'codepoint, 0x213A);
7396put('FACSIMILE_SIGN, 'codepoint, 0x213B);
7397put('DOUBLE_STRUCK_SMALL_PI, 'codepoint, 0x213C);
7398put('DOUBLE_STRUCK_SMALL_GAMMA, 'codepoint, 0x213D);
7399put('DOUBLE_STRUCK_CAPITAL_GAMMA, 'codepoint, 0x213E);
7400put('DOUBLE_STRUCK_CAPITAL_PI, 'codepoint, 0x213F);
7401put('DOUBLE_STRUCK_N_ARY_SUMMATION, 'codepoint, 0x2140);
7402put('TURNED_SANS_SERIF_CAPITAL_G, 'codepoint, 0x2141);
7403put('TURNED_SANS_SERIF_CAPITAL_L, 'codepoint, 0x2142);
7404put('REVERSED_SANS_SERIF_CAPITAL_L, 'codepoint, 0x2143);
7405put('TURNED_SANS_SERIF_CAPITAL_Y, 'codepoint, 0x2144);
7406put('DOUBLE_STRUCK_ITALIC_CAPITAL_D, 'codepoint, 0x2145);
7407put('DOUBLE_STRUCK_ITALIC_SMALL_D, 'codepoint, 0x2146);
7408put('DOUBLE_STRUCK_ITALIC_SMALL_E, 'codepoint, 0x2147);
7409put('DOUBLE_STRUCK_ITALIC_SMALL_I, 'codepoint, 0x2148);
7410put('DOUBLE_STRUCK_ITALIC_SMALL_J, 'codepoint, 0x2149);
7411put('PROPERTY_LINE, 'codepoint, 0x214A);
7412put('TURNED_AMPERSAND, 'codepoint, 0x214B);
7413put('PER_SIGN, 'codepoint, 0x214C);
7414put('AKTIESELSKAB, 'codepoint, 0x214D);
7415put('TURNED_SMALL_F, 'codepoint, 0x214E);
7416put('SYMBOL_FOR_SAMARITAN_SOURCE, 'codepoint, 0x214F);
7417put('VULGAR_FRACTION_ONE_SEVENTH, 'codepoint, 0x2150);
7418put('VULGAR_FRACTION_ONE_NINTH, 'codepoint, 0x2151);
7419put('VULGAR_FRACTION_ONE_TENTH, 'codepoint, 0x2152);
7420put('VULGAR_FRACTION_ONE_THIRD, 'codepoint, 0x2153);
7421put('VULGAR_FRACTION_TWO_THIRDS, 'codepoint, 0x2154);
7422put('VULGAR_FRACTION_ONE_FIFTH, 'codepoint, 0x2155);
7423put('VULGAR_FRACTION_TWO_FIFTHS, 'codepoint, 0x2156);
7424put('VULGAR_FRACTION_THREE_FIFTHS, 'codepoint, 0x2157);
7425put('VULGAR_FRACTION_FOUR_FIFTHS, 'codepoint, 0x2158);
7426put('VULGAR_FRACTION_ONE_SIXTH, 'codepoint, 0x2159);
7427put('VULGAR_FRACTION_FIVE_SIXTHS, 'codepoint, 0x215A);
7428put('VULGAR_FRACTION_ONE_EIGHTH, 'codepoint, 0x215B);
7429put('VULGAR_FRACTION_THREE_EIGHTHS, 'codepoint, 0x215C);
7430put('VULGAR_FRACTION_FIVE_EIGHTHS, 'codepoint, 0x215D);
7431put('VULGAR_FRACTION_SEVEN_EIGHTHS, 'codepoint, 0x215E);
7432put('FRACTION_NUMERATOR_ONE, 'codepoint, 0x215F);
7433put('ROMAN_NUMERAL_ONE, 'codepoint, 0x2160);
7434put('ROMAN_NUMERAL_TWO, 'codepoint, 0x2161);
7435put('ROMAN_NUMERAL_THREE, 'codepoint, 0x2162);
7436put('ROMAN_NUMERAL_FOUR, 'codepoint, 0x2163);
7437put('ROMAN_NUMERAL_FIVE, 'codepoint, 0x2164);
7438put('ROMAN_NUMERAL_SIX, 'codepoint, 0x2165);
7439put('ROMAN_NUMERAL_SEVEN, 'codepoint, 0x2166);
7440put('ROMAN_NUMERAL_EIGHT, 'codepoint, 0x2167);
7441put('ROMAN_NUMERAL_NINE, 'codepoint, 0x2168);
7442put('ROMAN_NUMERAL_TEN, 'codepoint, 0x2169);
7443put('ROMAN_NUMERAL_ELEVEN, 'codepoint, 0x216A);
7444put('ROMAN_NUMERAL_TWELVE, 'codepoint, 0x216B);
7445put('ROMAN_NUMERAL_FIFTY, 'codepoint, 0x216C);
7446put('ROMAN_NUMERAL_ONE_HUNDRED, 'codepoint, 0x216D);
7447put('ROMAN_NUMERAL_FIVE_HUNDRED, 'codepoint, 0x216E);
7448put('ROMAN_NUMERAL_ONE_THOUSAND, 'codepoint, 0x216F);
7449put('SMALL_ROMAN_NUMERAL_ONE, 'codepoint, 0x2170);
7450put('SMALL_ROMAN_NUMERAL_TWO, 'codepoint, 0x2171);
7451put('SMALL_ROMAN_NUMERAL_THREE, 'codepoint, 0x2172);
7452put('SMALL_ROMAN_NUMERAL_FOUR, 'codepoint, 0x2173);
7453put('SMALL_ROMAN_NUMERAL_FIVE, 'codepoint, 0x2174);
7454put('SMALL_ROMAN_NUMERAL_SIX, 'codepoint, 0x2175);
7455put('SMALL_ROMAN_NUMERAL_SEVEN, 'codepoint, 0x2176);
7456put('SMALL_ROMAN_NUMERAL_EIGHT, 'codepoint, 0x2177);
7457put('SMALL_ROMAN_NUMERAL_NINE, 'codepoint, 0x2178);
7458put('SMALL_ROMAN_NUMERAL_TEN, 'codepoint, 0x2179);
7459put('SMALL_ROMAN_NUMERAL_ELEVEN, 'codepoint, 0x217A);
7460put('SMALL_ROMAN_NUMERAL_TWELVE, 'codepoint, 0x217B);
7461put('SMALL_ROMAN_NUMERAL_FIFTY, 'codepoint, 0x217C);
7462put('SMALL_ROMAN_NUMERAL_ONE_HUNDRED, 'codepoint, 0x217D);
7463put('SMALL_ROMAN_NUMERAL_FIVE_HUNDRED, 'codepoint, 0x217E);
7464put('SMALL_ROMAN_NUMERAL_ONE_THOUSAND, 'codepoint, 0x217F);
7465put('ROMAN_NUMERAL_ONE_THOUSAND_C_D, 'codepoint, 0x2180);
7466put('ROMAN_NUMERAL_FIVE_THOUSAND, 'codepoint, 0x2181);
7467put('ROMAN_NUMERAL_TEN_THOUSAND, 'codepoint, 0x2182);
7468put('ROMAN_NUMERAL_REVERSED_ONE_HUNDRED, 'codepoint, 0x2183);
7469put('LATIN_SMALL_LETTER_REVERSED_C, 'codepoint, 0x2184);
7470put('ROMAN_NUMERAL_SIX_LATE_FORM, 'codepoint, 0x2185);
7471put('ROMAN_NUMERAL_FIFTY_EARLY_FORM, 'codepoint, 0x2186);
7472put('ROMAN_NUMERAL_FIFTY_THOUSAND, 'codepoint, 0x2187);
7473put('ROMAN_NUMERAL_ONE_HUNDRED_THOUSAND, 'codepoint, 0x2188);
7474put('VULGAR_FRACTION_ZERO_THIRDS, 'codepoint, 0x2189);
7475put('LEFTWARDS_ARROW, 'codepoint, 0x2190);
7476put('UPWARDS_ARROW, 'codepoint, 0x2191);
7477put('RIGHTWARDS_ARROW, 'codepoint, 0x2192);
7478put('DOWNWARDS_ARROW, 'codepoint, 0x2193);
7479put('LEFT_RIGHT_ARROW, 'codepoint, 0x2194);
7480put('UP_DOWN_ARROW, 'codepoint, 0x2195);
7481put('NORTH_WEST_ARROW, 'codepoint, 0x2196);
7482put('NORTH_EAST_ARROW, 'codepoint, 0x2197);
7483put('SOUTH_EAST_ARROW, 'codepoint, 0x2198);
7484put('SOUTH_WEST_ARROW, 'codepoint, 0x2199);
7485put('LEFTWARDS_ARROW_WITH_STROKE, 'codepoint, 0x219A);
7486put('RIGHTWARDS_ARROW_WITH_STROKE, 'codepoint, 0x219B);
7487put('LEFTWARDS_WAVE_ARROW, 'codepoint, 0x219C);
7488put('RIGHTWARDS_WAVE_ARROW, 'codepoint, 0x219D);
7489put('LEFTWARDS_TWO_HEADED_ARROW, 'codepoint, 0x219E);
7490put('UPWARDS_TWO_HEADED_ARROW, 'codepoint, 0x219F);
7491put('RIGHTWARDS_TWO_HEADED_ARROW, 'codepoint, 0x21A0);
7492put('DOWNWARDS_TWO_HEADED_ARROW, 'codepoint, 0x21A1);
7493put('LEFTWARDS_ARROW_WITH_TAIL, 'codepoint, 0x21A2);
7494put('RIGHTWARDS_ARROW_WITH_TAIL, 'codepoint, 0x21A3);
7495put('LEFTWARDS_ARROW_FROM_BAR, 'codepoint, 0x21A4);
7496put('UPWARDS_ARROW_FROM_BAR, 'codepoint, 0x21A5);
7497put('RIGHTWARDS_ARROW_FROM_BAR, 'codepoint, 0x21A6);
7498put('DOWNWARDS_ARROW_FROM_BAR, 'codepoint, 0x21A7);
7499put('UP_DOWN_ARROW_WITH_BASE, 'codepoint, 0x21A8);
7500put('LEFTWARDS_ARROW_WITH_HOOK, 'codepoint, 0x21A9);
7501put('RIGHTWARDS_ARROW_WITH_HOOK, 'codepoint, 0x21AA);
7502put('LEFTWARDS_ARROW_WITH_LOOP, 'codepoint, 0x21AB);
7503put('RIGHTWARDS_ARROW_WITH_LOOP, 'codepoint, 0x21AC);
7504put('LEFT_RIGHT_WAVE_ARROW, 'codepoint, 0x21AD);
7505put('LEFT_RIGHT_ARROW_WITH_STROKE, 'codepoint, 0x21AE);
7506put('DOWNWARDS_ZIGZAG_ARROW, 'codepoint, 0x21AF);
7507put('UPWARDS_ARROW_WITH_TIP_LEFTWARDS, 'codepoint, 0x21B0);
7508put('UPWARDS_ARROW_WITH_TIP_RIGHTWARDS, 'codepoint, 0x21B1);
7509put('DOWNWARDS_ARROW_WITH_TIP_LEFTWARDS, 'codepoint, 0x21B2);
7510put('DOWNWARDS_ARROW_WITH_TIP_RIGHTWARDS, 'codepoint, 0x21B3);
7511put('RIGHTWARDS_ARROW_WITH_CORNER_DOWNWARDS, 'codepoint, 0x21B4);
7512put('DOWNWARDS_ARROW_WITH_CORNER_LEFTWARDS, 'codepoint, 0x21B5);
7513put('ANTICLOCKWISE_TOP_SEMICIRCLE_ARROW, 'codepoint, 0x21B6);
7514put('CLOCKWISE_TOP_SEMICIRCLE_ARROW, 'codepoint, 0x21B7);
7515put('NORTH_WEST_ARROW_TO_LONG_BAR, 'codepoint, 0x21B8);
7516put('LEFTWARDS_ARROW_TO_BAR_OVER_RIGHTWARDS_ARROW_TO_BAR, 'codepoint, 0x21B9);
7517put('ANTICLOCKWISE_OPEN_CIRCLE_ARROW, 'codepoint, 0x21BA);
7518put('CLOCKWISE_OPEN_CIRCLE_ARROW, 'codepoint, 0x21BB);
7519put('LEFTWARDS_HARPOON_WITH_BARB_UPWARDS, 'codepoint, 0x21BC);
7520put('LEFTWARDS_HARPOON_WITH_BARB_DOWNWARDS, 'codepoint, 0x21BD);
7521put('UPWARDS_HARPOON_WITH_BARB_RIGHTWARDS, 'codepoint, 0x21BE);
7522put('UPWARDS_HARPOON_WITH_BARB_LEFTWARDS, 'codepoint, 0x21BF);
7523put('RIGHTWARDS_HARPOON_WITH_BARB_UPWARDS, 'codepoint, 0x21C0);
7524put('RIGHTWARDS_HARPOON_WITH_BARB_DOWNWARDS, 'codepoint, 0x21C1);
7525put('DOWNWARDS_HARPOON_WITH_BARB_RIGHTWARDS, 'codepoint, 0x21C2);
7526put('DOWNWARDS_HARPOON_WITH_BARB_LEFTWARDS, 'codepoint, 0x21C3);
7527put('RIGHTWARDS_ARROW_OVER_LEFTWARDS_ARROW, 'codepoint, 0x21C4);
7528put('UPWARDS_ARROW_LEFTWARDS_OF_DOWNWARDS_ARROW, 'codepoint, 0x21C5);
7529put('LEFTWARDS_ARROW_OVER_RIGHTWARDS_ARROW, 'codepoint, 0x21C6);
7530put('LEFTWARDS_PAIRED_ARROWS, 'codepoint, 0x21C7);
7531put('UPWARDS_PAIRED_ARROWS, 'codepoint, 0x21C8);
7532put('RIGHTWARDS_PAIRED_ARROWS, 'codepoint, 0x21C9);
7533put('DOWNWARDS_PAIRED_ARROWS, 'codepoint, 0x21CA);
7534put('LEFTWARDS_HARPOON_OVER_RIGHTWARDS_HARPOON, 'codepoint, 0x21CB);
7535put('RIGHTWARDS_HARPOON_OVER_LEFTWARDS_HARPOON, 'codepoint, 0x21CC);
7536put('LEFTWARDS_DOUBLE_ARROW_WITH_STROKE, 'codepoint, 0x21CD);
7537put('LEFT_RIGHT_DOUBLE_ARROW_WITH_STROKE, 'codepoint, 0x21CE);
7538put('RIGHTWARDS_DOUBLE_ARROW_WITH_STROKE, 'codepoint, 0x21CF);
7539put('LEFTWARDS_DOUBLE_ARROW, 'codepoint, 0x21D0);
7540put('UPWARDS_DOUBLE_ARROW, 'codepoint, 0x21D1);
7541put('RIGHTWARDS_DOUBLE_ARROW, 'codepoint, 0x21D2);
7542put('DOWNWARDS_DOUBLE_ARROW, 'codepoint, 0x21D3);
7543put('LEFT_RIGHT_DOUBLE_ARROW, 'codepoint, 0x21D4);
7544put('UP_DOWN_DOUBLE_ARROW, 'codepoint, 0x21D5);
7545put('NORTH_WEST_DOUBLE_ARROW, 'codepoint, 0x21D6);
7546put('NORTH_EAST_DOUBLE_ARROW, 'codepoint, 0x21D7);
7547put('SOUTH_EAST_DOUBLE_ARROW, 'codepoint, 0x21D8);
7548put('SOUTH_WEST_DOUBLE_ARROW, 'codepoint, 0x21D9);
7549put('LEFTWARDS_TRIPLE_ARROW, 'codepoint, 0x21DA);
7550put('RIGHTWARDS_TRIPLE_ARROW, 'codepoint, 0x21DB);
7551put('LEFTWARDS_SQUIGGLE_ARROW, 'codepoint, 0x21DC);
7552put('RIGHTWARDS_SQUIGGLE_ARROW, 'codepoint, 0x21DD);
7553put('UPWARDS_ARROW_WITH_DOUBLE_STROKE, 'codepoint, 0x21DE);
7554put('DOWNWARDS_ARROW_WITH_DOUBLE_STROKE, 'codepoint, 0x21DF);
7555put('LEFTWARDS_DASHED_ARROW, 'codepoint, 0x21E0);
7556put('UPWARDS_DASHED_ARROW, 'codepoint, 0x21E1);
7557put('RIGHTWARDS_DASHED_ARROW, 'codepoint, 0x21E2);
7558put('DOWNWARDS_DASHED_ARROW, 'codepoint, 0x21E3);
7559put('LEFTWARDS_ARROW_TO_BAR, 'codepoint, 0x21E4);
7560put('RIGHTWARDS_ARROW_TO_BAR, 'codepoint, 0x21E5);
7561put('LEFTWARDS_WHITE_ARROW, 'codepoint, 0x21E6);
7562put('UPWARDS_WHITE_ARROW, 'codepoint, 0x21E7);
7563put('RIGHTWARDS_WHITE_ARROW, 'codepoint, 0x21E8);
7564put('DOWNWARDS_WHITE_ARROW, 'codepoint, 0x21E9);
7565put('UPWARDS_WHITE_ARROW_FROM_BAR, 'codepoint, 0x21EA);
7566put('UPWARDS_WHITE_ARROW_ON_PEDESTAL, 'codepoint, 0x21EB);
7567put('UPWARDS_WHITE_ARROW_ON_PEDESTAL_WITH_HORIZONTAL_BAR, 'codepoint, 0x21EC);
7568put('UPWARDS_WHITE_ARROW_ON_PEDESTAL_WITH_VERTICAL_BAR, 'codepoint, 0x21ED);
7569put('UPWARDS_WHITE_DOUBLE_ARROW, 'codepoint, 0x21EE);
7570put('UPWARDS_WHITE_DOUBLE_ARROW_ON_PEDESTAL, 'codepoint, 0x21EF);
7571put('RIGHTWARDS_WHITE_ARROW_FROM_WALL, 'codepoint, 0x21F0);
7572put('NORTH_WEST_ARROW_TO_CORNER, 'codepoint, 0x21F1);
7573put('SOUTH_EAST_ARROW_TO_CORNER, 'codepoint, 0x21F2);
7574put('UP_DOWN_WHITE_ARROW, 'codepoint, 0x21F3);
7575put('RIGHT_ARROW_WITH_SMALL_CIRCLE, 'codepoint, 0x21F4);
7576put('DOWNWARDS_ARROW_LEFTWARDS_OF_UPWARDS_ARROW, 'codepoint, 0x21F5);
7577put('THREE_RIGHTWARDS_ARROWS, 'codepoint, 0x21F6);
7578put('LEFTWARDS_ARROW_WITH_VERTICAL_STROKE, 'codepoint, 0x21F7);
7579put('RIGHTWARDS_ARROW_WITH_VERTICAL_STROKE, 'codepoint, 0x21F8);
7580put('LEFT_RIGHT_ARROW_WITH_VERTICAL_STROKE, 'codepoint, 0x21F9);
7581put('LEFTWARDS_ARROW_WITH_DOUBLE_VERTICAL_STROKE, 'codepoint, 0x21FA);
7582put('RIGHTWARDS_ARROW_WITH_DOUBLE_VERTICAL_STROKE, 'codepoint, 0x21FB);
7583put('LEFT_RIGHT_ARROW_WITH_DOUBLE_VERTICAL_STROKE, 'codepoint, 0x21FC);
7584put('LEFTWARDS_OPEN_HEADED_ARROW, 'codepoint, 0x21FD);
7585put('RIGHTWARDS_OPEN_HEADED_ARROW, 'codepoint, 0x21FE);
7586put('LEFT_RIGHT_OPEN_HEADED_ARROW, 'codepoint, 0x21FF);
7587put('FOR_ALL, 'codepoint, 0x2200);
7588put('COMPLEMENT, 'codepoint, 0x2201);
7589put('PARTIAL_DIFFERENTIAL, 'codepoint, 0x2202);
7590put('THERE_EXISTS, 'codepoint, 0x2203);
7591put('THERE_DOES_NOT_EXIST, 'codepoint, 0x2204);
7592put('EMPTY_SET, 'codepoint, 0x2205);
7593put('INCREMENT, 'codepoint, 0x2206);
7594put('NABLA, 'codepoint, 0x2207);
7595put('ELEMENT_OF, 'codepoint, 0x2208);
7596put('NOT_AN_ELEMENT_OF, 'codepoint, 0x2209);
7597put('SMALL_ELEMENT_OF, 'codepoint, 0x220A);
7598put('CONTAINS_AS_MEMBER, 'codepoint, 0x220B);
7599put('DOES_NOT_CONTAIN_AS_MEMBER, 'codepoint, 0x220C);
7600put('SMALL_CONTAINS_AS_MEMBER, 'codepoint, 0x220D);
7601put('END_OF_PROOF, 'codepoint, 0x220E);
7602put('N_ARY_PRODUCT, 'codepoint, 0x220F);
7603put('N_ARY_COPRODUCT, 'codepoint, 0x2210);
7604put('N_ARY_SUMMATION, 'codepoint, 0x2211);
7605put('MINUS_SIGN, 'codepoint, 0x2212);
7606put('MINUS_OR_PLUS_SIGN, 'codepoint, 0x2213);
7607put('DOT_PLUS, 'codepoint, 0x2214);
7608put('DIVISION_SLASH, 'codepoint, 0x2215);
7609put('SET_MINUS, 'codepoint, 0x2216);
7610put('ASTERISK_OPERATOR, 'codepoint, 0x2217);
7611put('RING_OPERATOR, 'codepoint, 0x2218);
7612put('BULLET_OPERATOR, 'codepoint, 0x2219);
7613put('SQUARE_ROOT, 'codepoint, 0x221A);
7614put('CUBE_ROOT, 'codepoint, 0x221B);
7615put('FOURTH_ROOT, 'codepoint, 0x221C);
7616put('PROPORTIONAL_TO, 'codepoint, 0x221D);
7617put('INFINITY, 'codepoint, 0x221E);
7618put('RIGHT_ANGLE, 'codepoint, 0x221F);
7619put('ANGLE, 'codepoint, 0x2220);
7620put('MEASURED_ANGLE, 'codepoint, 0x2221);
7621put('SPHERICAL_ANGLE, 'codepoint, 0x2222);
7622put('DIVIDES, 'codepoint, 0x2223);
7623put('DOES_NOT_DIVIDE, 'codepoint, 0x2224);
7624put('PARALLEL_TO, 'codepoint, 0x2225);
7625put('NOT_PARALLEL_TO, 'codepoint, 0x2226);
7626put('LOGICAL_AND, 'codepoint, 0x2227);
7627put('LOGICAL_OR, 'codepoint, 0x2228);
7628put('INTERSECTION, 'codepoint, 0x2229);
7629put('UNION, 'codepoint, 0x222A);
7630put('INTEGRAL, 'codepoint, 0x222B);
7631put('DOUBLE_INTEGRAL, 'codepoint, 0x222C);
7632put('TRIPLE_INTEGRAL, 'codepoint, 0x222D);
7633put('CONTOUR_INTEGRAL, 'codepoint, 0x222E);
7634put('SURFACE_INTEGRAL, 'codepoint, 0x222F);
7635put('VOLUME_INTEGRAL, 'codepoint, 0x2230);
7636put('CLOCKWISE_INTEGRAL, 'codepoint, 0x2231);
7637put('CLOCKWISE_CONTOUR_INTEGRAL, 'codepoint, 0x2232);
7638put('ANTICLOCKWISE_CONTOUR_INTEGRAL, 'codepoint, 0x2233);
7639put('THEREFORE, 'codepoint, 0x2234);
7640put('BECAUSE, 'codepoint, 0x2235);
7641put('RATIO, 'codepoint, 0x2236);
7642put('PROPORTION, 'codepoint, 0x2237);
7643put('DOT_MINUS, 'codepoint, 0x2238);
7644put('EXCESS, 'codepoint, 0x2239);
7645put('GEOMETRIC_PROPORTION, 'codepoint, 0x223A);
7646put('HOMOTHETIC, 'codepoint, 0x223B);
7647put('TILDE_OPERATOR, 'codepoint, 0x223C);
7648put('REVERSED_TILDE, 'codepoint, 0x223D);
7649put('INVERTED_LAZY_S, 'codepoint, 0x223E);
7650put('SINE_WAVE, 'codepoint, 0x223F);
7651put('WREATH_PRODUCT, 'codepoint, 0x2240);
7652put('NOT_TILDE, 'codepoint, 0x2241);
7653put('MINUS_TILDE, 'codepoint, 0x2242);
7654put('ASYMPTOTICALLY_EQUAL_TO, 'codepoint, 0x2243);
7655put('NOT_ASYMPTOTICALLY_EQUAL_TO, 'codepoint, 0x2244);
7656put('APPROXIMATELY_EQUAL_TO, 'codepoint, 0x2245);
7657put('APPROXIMATELY_BUT_NOT_ACTUALLY_EQUAL_TO, 'codepoint, 0x2246);
7658put('NEITHER_APPROXIMATELY_NOR_ACTUALLY_EQUAL_TO, 'codepoint, 0x2247);
7659put('ALMOST_EQUAL_TO, 'codepoint, 0x2248);
7660put('NOT_ALMOST_EQUAL_TO, 'codepoint, 0x2249);
7661put('ALMOST_EQUAL_OR_EQUAL_TO, 'codepoint, 0x224A);
7662put('TRIPLE_TILDE, 'codepoint, 0x224B);
7663put('ALL_EQUAL_TO, 'codepoint, 0x224C);
7664put('EQUIVALENT_TO, 'codepoint, 0x224D);
7665put('GEOMETRICALLY_EQUIVALENT_TO, 'codepoint, 0x224E);
7666put('DIFFERENCE_BETWEEN, 'codepoint, 0x224F);
7667put('APPROACHES_THE_LIMIT, 'codepoint, 0x2250);
7668put('GEOMETRICALLY_EQUAL_TO, 'codepoint, 0x2251);
7669put('APPROXIMATELY_EQUAL_TO_OR_THE_IMAGE_OF, 'codepoint, 0x2252);
7670put('IMAGE_OF_OR_APPROXIMATELY_EQUAL_TO, 'codepoint, 0x2253);
7671put('COLON_EQUALS, 'codepoint, 0x2254);
7672put('EQUALS_COLON, 'codepoint, 0x2255);
7673put('RING_IN_EQUAL_TO, 'codepoint, 0x2256);
7674put('RING_EQUAL_TO, 'codepoint, 0x2257);
7675put('CORRESPONDS_TO, 'codepoint, 0x2258);
7676put('ESTIMATES, 'codepoint, 0x2259);
7677put('EQUIANGULAR_TO, 'codepoint, 0x225A);
7678put('STAR_EQUALS, 'codepoint, 0x225B);
7679put('DELTA_EQUAL_TO, 'codepoint, 0x225C);
7680put('EQUAL_TO_BY_DEFINITION, 'codepoint, 0x225D);
7681put('MEASURED_BY, 'codepoint, 0x225E);
7682put('QUESTIONED_EQUAL_TO, 'codepoint, 0x225F);
7683put('NOT_EQUAL_TO, 'codepoint, 0x2260);
7684put('IDENTICAL_TO, 'codepoint, 0x2261);
7685put('NOT_IDENTICAL_TO, 'codepoint, 0x2262);
7686put('STRICTLY_EQUIVALENT_TO, 'codepoint, 0x2263);
7687put('LESS_THAN_OR_EQUAL_TO, 'codepoint, 0x2264);
7688put('GREATER_THAN_OR_EQUAL_TO, 'codepoint, 0x2265);
7689put('LESS_THAN_OVER_EQUAL_TO, 'codepoint, 0x2266);
7690put('GREATER_THAN_OVER_EQUAL_TO, 'codepoint, 0x2267);
7691put('LESS_THAN_BUT_NOT_EQUAL_TO, 'codepoint, 0x2268);
7692put('GREATER_THAN_BUT_NOT_EQUAL_TO, 'codepoint, 0x2269);
7693put('MUCH_LESS_THAN, 'codepoint, 0x226A);
7694put('MUCH_GREATER_THAN, 'codepoint, 0x226B);
7695put('BETWEEN, 'codepoint, 0x226C);
7696put('NOT_EQUIVALENT_TO, 'codepoint, 0x226D);
7697put('NOT_LESS_THAN, 'codepoint, 0x226E);
7698put('NOT_GREATER_THAN, 'codepoint, 0x226F);
7699put('NEITHER_LESS_THAN_NOR_EQUAL_TO, 'codepoint, 0x2270);
7700put('NEITHER_GREATER_THAN_NOR_EQUAL_TO, 'codepoint, 0x2271);
7701put('LESS_THAN_OR_EQUIVALENT_TO, 'codepoint, 0x2272);
7702put('GREATER_THAN_OR_EQUIVALENT_TO, 'codepoint, 0x2273);
7703put('NEITHER_LESS_THAN_NOR_EQUIVALENT_TO, 'codepoint, 0x2274);
7704put('NEITHER_GREATER_THAN_NOR_EQUIVALENT_TO, 'codepoint, 0x2275);
7705put('LESS_THAN_OR_GREATER_THAN, 'codepoint, 0x2276);
7706put('GREATER_THAN_OR_LESS_THAN, 'codepoint, 0x2277);
7707put('NEITHER_LESS_THAN_NOR_GREATER_THAN, 'codepoint, 0x2278);
7708put('NEITHER_GREATER_THAN_NOR_LESS_THAN, 'codepoint, 0x2279);
7709put('PRECEDES, 'codepoint, 0x227A);
7710put('SUCCEEDS, 'codepoint, 0x227B);
7711put('PRECEDES_OR_EQUAL_TO, 'codepoint, 0x227C);
7712put('SUCCEEDS_OR_EQUAL_TO, 'codepoint, 0x227D);
7713put('PRECEDES_OR_EQUIVALENT_TO, 'codepoint, 0x227E);
7714put('SUCCEEDS_OR_EQUIVALENT_TO, 'codepoint, 0x227F);
7715put('DOES_NOT_PRECEDE, 'codepoint, 0x2280);
7716put('DOES_NOT_SUCCEED, 'codepoint, 0x2281);
7717put('SUBSET_OF, 'codepoint, 0x2282);
7718put('SUPERSET_OF, 'codepoint, 0x2283);
7719put('NOT_A_SUBSET_OF, 'codepoint, 0x2284);
7720put('NOT_A_SUPERSET_OF, 'codepoint, 0x2285);
7721put('SUBSET_OF_OR_EQUAL_TO, 'codepoint, 0x2286);
7722put('SUPERSET_OF_OR_EQUAL_TO, 'codepoint, 0x2287);
7723put('NEITHER_A_SUBSET_OF_NOR_EQUAL_TO, 'codepoint, 0x2288);
7724put('NEITHER_A_SUPERSET_OF_NOR_EQUAL_TO, 'codepoint, 0x2289);
7725put('SUBSET_OF_WITH_NOT_EQUAL_TO, 'codepoint, 0x228A);
7726put('SUPERSET_OF_WITH_NOT_EQUAL_TO, 'codepoint, 0x228B);
7727put('MULTISET, 'codepoint, 0x228C);
7728put('MULTISET_MULTIPLICATION, 'codepoint, 0x228D);
7729put('MULTISET_UNION, 'codepoint, 0x228E);
7730put('SQUARE_IMAGE_OF, 'codepoint, 0x228F);
7731put('SQUARE_ORIGINAL_OF, 'codepoint, 0x2290);
7732put('SQUARE_IMAGE_OF_OR_EQUAL_TO, 'codepoint, 0x2291);
7733put('SQUARE_ORIGINAL_OF_OR_EQUAL_TO, 'codepoint, 0x2292);
7734put('SQUARE_CAP, 'codepoint, 0x2293);
7735put('SQUARE_CUP, 'codepoint, 0x2294);
7736put('CIRCLED_PLUS, 'codepoint, 0x2295);
7737put('CIRCLED_MINUS, 'codepoint, 0x2296);
7738put('CIRCLED_TIMES, 'codepoint, 0x2297);
7739put('CIRCLED_DIVISION_SLASH, 'codepoint, 0x2298);
7740put('CIRCLED_DOT_OPERATOR, 'codepoint, 0x2299);
7741put('CIRCLED_RING_OPERATOR, 'codepoint, 0x229A);
7742put('CIRCLED_ASTERISK_OPERATOR, 'codepoint, 0x229B);
7743put('CIRCLED_EQUALS, 'codepoint, 0x229C);
7744put('CIRCLED_DASH, 'codepoint, 0x229D);
7745put('SQUARED_PLUS, 'codepoint, 0x229E);
7746put('SQUARED_MINUS, 'codepoint, 0x229F);
7747put('SQUARED_TIMES, 'codepoint, 0x22A0);
7748put('SQUARED_DOT_OPERATOR, 'codepoint, 0x22A1);
7749put('RIGHT_TACK, 'codepoint, 0x22A2);
7750put('LEFT_TACK, 'codepoint, 0x22A3);
7751put('DOWN_TACK, 'codepoint, 0x22A4);
7752put('UP_TACK, 'codepoint, 0x22A5);
7753put('ASSERTION, 'codepoint, 0x22A6);
7754put('MODELS, 'codepoint, 0x22A7);
7755put('TRUE, 'codepoint, 0x22A8);
7756put('FORCES, 'codepoint, 0x22A9);
7757put('TRIPLE_VERTICAL_BAR_RIGHT_TURNSTILE, 'codepoint, 0x22AA);
7758put('DOUBLE_VERTICAL_BAR_DOUBLE_RIGHT_TURNSTILE, 'codepoint, 0x22AB);
7759put('DOES_NOT_PROVE, 'codepoint, 0x22AC);
7760put('NOT_TRUE, 'codepoint, 0x22AD);
7761put('DOES_NOT_FORCE, 'codepoint, 0x22AE);
7762put('NEGATED_DOUBLE_VERTICAL_BAR_DOUBLE_RIGHT_TURNSTILE, 'codepoint, 0x22AF);
7763put('PRECEDES_UNDER_RELATION, 'codepoint, 0x22B0);
7764put('SUCCEEDS_UNDER_RELATION, 'codepoint, 0x22B1);
7765put('NORMAL_SUBGROUP_OF, 'codepoint, 0x22B2);
7766put('CONTAINS_AS_NORMAL_SUBGROUP, 'codepoint, 0x22B3);
7767put('NORMAL_SUBGROUP_OF_OR_EQUAL_TO, 'codepoint, 0x22B4);
7768put('CONTAINS_AS_NORMAL_SUBGROUP_OR_EQUAL_TO, 'codepoint, 0x22B5);
7769put('ORIGINAL_OF, 'codepoint, 0x22B6);
7770put('IMAGE_OF, 'codepoint, 0x22B7);
7771put('MULTIMAP, 'codepoint, 0x22B8);
7772put('HERMITIAN_CONJUGATE_MATRIX, 'codepoint, 0x22B9);
7773put('INTERCALATE, 'codepoint, 0x22BA);
7774put('XOR, 'codepoint, 0x22BB);
7775put('NAND, 'codepoint, 0x22BC);
7776put('NOR, 'codepoint, 0x22BD);
7777put('RIGHT_ANGLE_WITH_ARC, 'codepoint, 0x22BE);
7778put('RIGHT_TRIANGLE, 'codepoint, 0x22BF);
7779put('N_ARY_LOGICAL_AND, 'codepoint, 0x22C0);
7780put('N_ARY_LOGICAL_OR, 'codepoint, 0x22C1);
7781put('N_ARY_INTERSECTION, 'codepoint, 0x22C2);
7782put('N_ARY_UNION, 'codepoint, 0x22C3);
7783put('DIAMOND_OPERATOR, 'codepoint, 0x22C4);
7784put('DOT_OPERATOR, 'codepoint, 0x22C5);
7785put('STAR_OPERATOR, 'codepoint, 0x22C6);
7786put('DIVISION_TIMES, 'codepoint, 0x22C7);
7787put('BOWTIE, 'codepoint, 0x22C8);
7788put('LEFT_NORMAL_FACTOR_SEMIDIRECT_PRODUCT, 'codepoint, 0x22C9);
7789put('RIGHT_NORMAL_FACTOR_SEMIDIRECT_PRODUCT, 'codepoint, 0x22CA);
7790put('LEFT_SEMIDIRECT_PRODUCT, 'codepoint, 0x22CB);
7791put('RIGHT_SEMIDIRECT_PRODUCT, 'codepoint, 0x22CC);
7792put('REVERSED_TILDE_EQUALS, 'codepoint, 0x22CD);
7793put('CURLY_LOGICAL_OR, 'codepoint, 0x22CE);
7794put('CURLY_LOGICAL_AND, 'codepoint, 0x22CF);
7795put('DOUBLE_SUBSET, 'codepoint, 0x22D0);
7796put('DOUBLE_SUPERSET, 'codepoint, 0x22D1);
7797put('DOUBLE_INTERSECTION, 'codepoint, 0x22D2);
7798put('DOUBLE_UNION, 'codepoint, 0x22D3);
7799put('PITCHFORK, 'codepoint, 0x22D4);
7800put('EQUAL_AND_PARALLEL_TO, 'codepoint, 0x22D5);
7801put('LESS_THAN_WITH_DOT, 'codepoint, 0x22D6);
7802put('GREATER_THAN_WITH_DOT, 'codepoint, 0x22D7);
7803put('VERY_MUCH_LESS_THAN, 'codepoint, 0x22D8);
7804put('VERY_MUCH_GREATER_THAN, 'codepoint, 0x22D9);
7805put('LESS_THAN_EQUAL_TO_OR_GREATER_THAN, 'codepoint, 0x22DA);
7806put('GREATER_THAN_EQUAL_TO_OR_LESS_THAN, 'codepoint, 0x22DB);
7807put('EQUAL_TO_OR_LESS_THAN, 'codepoint, 0x22DC);
7808put('EQUAL_TO_OR_GREATER_THAN, 'codepoint, 0x22DD);
7809put('EQUAL_TO_OR_PRECEDES, 'codepoint, 0x22DE);
7810put('EQUAL_TO_OR_SUCCEEDS, 'codepoint, 0x22DF);
7811put('DOES_NOT_PRECEDE_OR_EQUAL, 'codepoint, 0x22E0);
7812put('DOES_NOT_SUCCEED_OR_EQUAL, 'codepoint, 0x22E1);
7813put('NOT_SQUARE_IMAGE_OF_OR_EQUAL_TO, 'codepoint, 0x22E2);
7814put('NOT_SQUARE_ORIGINAL_OF_OR_EQUAL_TO, 'codepoint, 0x22E3);
7815put('SQUARE_IMAGE_OF_OR_NOT_EQUAL_TO, 'codepoint, 0x22E4);
7816put('SQUARE_ORIGINAL_OF_OR_NOT_EQUAL_TO, 'codepoint, 0x22E5);
7817put('LESS_THAN_BUT_NOT_EQUIVALENT_TO, 'codepoint, 0x22E6);
7818put('GREATER_THAN_BUT_NOT_EQUIVALENT_TO, 'codepoint, 0x22E7);
7819put('PRECEDES_BUT_NOT_EQUIVALENT_TO, 'codepoint, 0x22E8);
7820put('SUCCEEDS_BUT_NOT_EQUIVALENT_TO, 'codepoint, 0x22E9);
7821put('NOT_NORMAL_SUBGROUP_OF, 'codepoint, 0x22EA);
7822put('DOES_NOT_CONTAIN_AS_NORMAL_SUBGROUP, 'codepoint, 0x22EB);
7823put('NOT_NORMAL_SUBGROUP_OF_OR_EQUAL_TO, 'codepoint, 0x22EC);
7824put('DOES_NOT_CONTAIN_AS_NORMAL_SUBGROUP_OR_EQUAL, 'codepoint, 0x22ED);
7825put('VERTICAL_ELLIPSIS, 'codepoint, 0x22EE);
7826put('MIDLINE_HORIZONTAL_ELLIPSIS, 'codepoint, 0x22EF);
7827put('UP_RIGHT_DIAGONAL_ELLIPSIS, 'codepoint, 0x22F0);
7828put('DOWN_RIGHT_DIAGONAL_ELLIPSIS, 'codepoint, 0x22F1);
7829put('ELEMENT_OF_WITH_LONG_HORIZONTAL_STROKE, 'codepoint, 0x22F2);
7830put('ELEMENT_OF_WITH_VERTICAL_BAR_AT_END_OF_HORIZONTAL_STROKE, 'codepoint, 0x22F3);
7831put('SMALL_ELEMENT_OF_WITH_VERTICAL_BAR_AT_END_OF_HORIZONTAL_STROKE, 'codepoint, 0x22F4);
7832put('ELEMENT_OF_WITH_DOT_ABOVE, 'codepoint, 0x22F5);
7833put('ELEMENT_OF_WITH_OVERBAR, 'codepoint, 0x22F6);
7834put('SMALL_ELEMENT_OF_WITH_OVERBAR, 'codepoint, 0x22F7);
7835put('ELEMENT_OF_WITH_UNDERBAR, 'codepoint, 0x22F8);
7836put('ELEMENT_OF_WITH_TWO_HORIZONTAL_STROKES, 'codepoint, 0x22F9);
7837put('CONTAINS_WITH_LONG_HORIZONTAL_STROKE, 'codepoint, 0x22FA);
7838put('CONTAINS_WITH_VERTICAL_BAR_AT_END_OF_HORIZONTAL_STROKE, 'codepoint, 0x22FB);
7839put('SMALL_CONTAINS_WITH_VERTICAL_BAR_AT_END_OF_HORIZONTAL_STROKE, 'codepoint, 0x22FC);
7840put('CONTAINS_WITH_OVERBAR, 'codepoint, 0x22FD);
7841put('SMALL_CONTAINS_WITH_OVERBAR, 'codepoint, 0x22FE);
7842put('Z_NOTATION_BAG_MEMBERSHIP, 'codepoint, 0x22FF);
7843put('DIAMETER_SIGN, 'codepoint, 0x2300);
7844put('ELECTRIC_ARROW, 'codepoint, 0x2301);
7845put('HOUSE, 'codepoint, 0x2302);
7846put('UP_ARROWHEAD, 'codepoint, 0x2303);
7847put('DOWN_ARROWHEAD, 'codepoint, 0x2304);
7848put('PROJECTIVE, 'codepoint, 0x2305);
7849put('PERSPECTIVE, 'codepoint, 0x2306);
7850put('WAVY_LINE, 'codepoint, 0x2307);
7851put('LEFT_CEILING, 'codepoint, 0x2308);
7852put('RIGHT_CEILING, 'codepoint, 0x2309);
7853put('LEFT_FLOOR, 'codepoint, 0x230A);
7854put('RIGHT_FLOOR, 'codepoint, 0x230B);
7855put('BOTTOM_RIGHT_CROP, 'codepoint, 0x230C);
7856put('BOTTOM_LEFT_CROP, 'codepoint, 0x230D);
7857put('TOP_RIGHT_CROP, 'codepoint, 0x230E);
7858put('TOP_LEFT_CROP, 'codepoint, 0x230F);
7859put('REVERSED_NOT_SIGN, 'codepoint, 0x2310);
7860put('SQUARE_LOZENGE, 'codepoint, 0x2311);
7861put('ARC, 'codepoint, 0x2312);
7862put('SEGMENT, 'codepoint, 0x2313);
7863put('SECTOR, 'codepoint, 0x2314);
7864put('TELEPHONE_RECORDER, 'codepoint, 0x2315);
7865put('POSITION_INDICATOR, 'codepoint, 0x2316);
7866put('VIEWDATA_SQUARE, 'codepoint, 0x2317);
7867put('PLACE_OF_INTEREST_SIGN, 'codepoint, 0x2318);
7868put('TURNED_NOT_SIGN, 'codepoint, 0x2319);
7869put('WATCH, 'codepoint, 0x231A);
7870put('HOURGLASS, 'codepoint, 0x231B);
7871put('TOP_LEFT_CORNER, 'codepoint, 0x231C);
7872put('TOP_RIGHT_CORNER, 'codepoint, 0x231D);
7873put('BOTTOM_LEFT_CORNER, 'codepoint, 0x231E);
7874put('BOTTOM_RIGHT_CORNER, 'codepoint, 0x231F);
7875put('TOP_HALF_INTEGRAL, 'codepoint, 0x2320);
7876put('BOTTOM_HALF_INTEGRAL, 'codepoint, 0x2321);
7877put('FROWN, 'codepoint, 0x2322);
7878put('SMILE, 'codepoint, 0x2323);
7879put('UP_ARROWHEAD_BETWEEN_TWO_HORIZONTAL_BARS, 'codepoint, 0x2324);
7880put('OPTION_KEY, 'codepoint, 0x2325);
7881put('ERASE_TO_THE_RIGHT, 'codepoint, 0x2326);
7882put('X_IN_A_RECTANGLE_BOX, 'codepoint, 0x2327);
7883put('KEYBOARD, 'codepoint, 0x2328);
7884put('LEFT_POINTING_ANGLE_BRACKET, 'codepoint, 0x2329);
7885put('RIGHT_POINTING_ANGLE_BRACKET, 'codepoint, 0x232A);
7886put('ERASE_TO_THE_LEFT, 'codepoint, 0x232B);
7887put('BENZENE_RING, 'codepoint, 0x232C);
7888put('CYLINDRICITY, 'codepoint, 0x232D);
7889put('ALL_AROUND_PROFILE, 'codepoint, 0x232E);
7890put('SYMMETRY, 'codepoint, 0x232F);
7891put('TOTAL_RUNOUT, 'codepoint, 0x2330);
7892put('DIMENSION_ORIGIN, 'codepoint, 0x2331);
7893put('CONICAL_TAPER, 'codepoint, 0x2332);
7894put('SLOPE, 'codepoint, 0x2333);
7895put('COUNTERBORE, 'codepoint, 0x2334);
7896put('COUNTERSINK, 'codepoint, 0x2335);
7897put('APL_FUNCTIONAL_SYMBOL_I_BEAM, 'codepoint, 0x2336);
7898put('APL_FUNCTIONAL_SYMBOL_SQUISH_QUAD, 'codepoint, 0x2337);
7899put('APL_FUNCTIONAL_SYMBOL_QUAD_EQUAL, 'codepoint, 0x2338);
7900put('APL_FUNCTIONAL_SYMBOL_QUAD_DIVIDE, 'codepoint, 0x2339);
7901put('APL_FUNCTIONAL_SYMBOL_QUAD_DIAMOND, 'codepoint, 0x233A);
7902put('APL_FUNCTIONAL_SYMBOL_QUAD_JOT, 'codepoint, 0x233B);
7903put('APL_FUNCTIONAL_SYMBOL_QUAD_CIRCLE, 'codepoint, 0x233C);
7904put('APL_FUNCTIONAL_SYMBOL_CIRCLE_STILE, 'codepoint, 0x233D);
7905put('APL_FUNCTIONAL_SYMBOL_CIRCLE_JOT, 'codepoint, 0x233E);
7906put('APL_FUNCTIONAL_SYMBOL_SLASH_BAR, 'codepoint, 0x233F);
7907put('APL_FUNCTIONAL_SYMBOL_BACKSLASH_BAR, 'codepoint, 0x2340);
7908put('APL_FUNCTIONAL_SYMBOL_QUAD_SLASH, 'codepoint, 0x2341);
7909put('APL_FUNCTIONAL_SYMBOL_QUAD_BACKSLASH, 'codepoint, 0x2342);
7910put('APL_FUNCTIONAL_SYMBOL_QUAD_LESS_THAN, 'codepoint, 0x2343);
7911put('APL_FUNCTIONAL_SYMBOL_QUAD_GREATER_THAN, 'codepoint, 0x2344);
7912put('APL_FUNCTIONAL_SYMBOL_LEFTWARDS_VANE, 'codepoint, 0x2345);
7913put('APL_FUNCTIONAL_SYMBOL_RIGHTWARDS_VANE, 'codepoint, 0x2346);
7914put('APL_FUNCTIONAL_SYMBOL_QUAD_LEFTWARDS_ARROW, 'codepoint, 0x2347);
7915put('APL_FUNCTIONAL_SYMBOL_QUAD_RIGHTWARDS_ARROW, 'codepoint, 0x2348);
7916put('APL_FUNCTIONAL_SYMBOL_CIRCLE_BACKSLASH, 'codepoint, 0x2349);
7917put('APL_FUNCTIONAL_SYMBOL_DOWN_TACK_UNDERBAR, 'codepoint, 0x234A);
7918put('APL_FUNCTIONAL_SYMBOL_DELTA_STILE, 'codepoint, 0x234B);
7919put('APL_FUNCTIONAL_SYMBOL_QUAD_DOWN_CARET, 'codepoint, 0x234C);
7920put('APL_FUNCTIONAL_SYMBOL_QUAD_DELTA, 'codepoint, 0x234D);
7921put('APL_FUNCTIONAL_SYMBOL_DOWN_TACK_JOT, 'codepoint, 0x234E);
7922put('APL_FUNCTIONAL_SYMBOL_UPWARDS_VANE, 'codepoint, 0x234F);
7923put('APL_FUNCTIONAL_SYMBOL_QUAD_UPWARDS_ARROW, 'codepoint, 0x2350);
7924put('APL_FUNCTIONAL_SYMBOL_UP_TACK_OVERBAR, 'codepoint, 0x2351);
7925put('APL_FUNCTIONAL_SYMBOL_DEL_STILE, 'codepoint, 0x2352);
7926put('APL_FUNCTIONAL_SYMBOL_QUAD_UP_CARET, 'codepoint, 0x2353);
7927put('APL_FUNCTIONAL_SYMBOL_QUAD_DEL, 'codepoint, 0x2354);
7928put('APL_FUNCTIONAL_SYMBOL_UP_TACK_JOT, 'codepoint, 0x2355);
7929put('APL_FUNCTIONAL_SYMBOL_DOWNWARDS_VANE, 'codepoint, 0x2356);
7930put('APL_FUNCTIONAL_SYMBOL_QUAD_DOWNWARDS_ARROW, 'codepoint, 0x2357);
7931put('APL_FUNCTIONAL_SYMBOL_QUOTE_UNDERBAR, 'codepoint, 0x2358);
7932put('APL_FUNCTIONAL_SYMBOL_DELTA_UNDERBAR, 'codepoint, 0x2359);
7933put('APL_FUNCTIONAL_SYMBOL_DIAMOND_UNDERBAR, 'codepoint, 0x235A);
7934put('APL_FUNCTIONAL_SYMBOL_JOT_UNDERBAR, 'codepoint, 0x235B);
7935put('APL_FUNCTIONAL_SYMBOL_CIRCLE_UNDERBAR, 'codepoint, 0x235C);
7936put('APL_FUNCTIONAL_SYMBOL_UP_SHOE_JOT, 'codepoint, 0x235D);
7937put('APL_FUNCTIONAL_SYMBOL_QUOTE_QUAD, 'codepoint, 0x235E);
7938put('APL_FUNCTIONAL_SYMBOL_CIRCLE_STAR, 'codepoint, 0x235F);
7939put('APL_FUNCTIONAL_SYMBOL_QUAD_COLON, 'codepoint, 0x2360);
7940put('APL_FUNCTIONAL_SYMBOL_UP_TACK_DIAERESIS, 'codepoint, 0x2361);
7941put('APL_FUNCTIONAL_SYMBOL_DEL_DIAERESIS, 'codepoint, 0x2362);
7942put('APL_FUNCTIONAL_SYMBOL_STAR_DIAERESIS, 'codepoint, 0x2363);
7943put('APL_FUNCTIONAL_SYMBOL_JOT_DIAERESIS, 'codepoint, 0x2364);
7944put('APL_FUNCTIONAL_SYMBOL_CIRCLE_DIAERESIS, 'codepoint, 0x2365);
7945put('APL_FUNCTIONAL_SYMBOL_DOWN_SHOE_STILE, 'codepoint, 0x2366);
7946put('APL_FUNCTIONAL_SYMBOL_LEFT_SHOE_STILE, 'codepoint, 0x2367);
7947put('APL_FUNCTIONAL_SYMBOL_TILDE_DIAERESIS, 'codepoint, 0x2368);
7948put('APL_FUNCTIONAL_SYMBOL_GREATER_THAN_DIAERESIS, 'codepoint, 0x2369);
7949put('APL_FUNCTIONAL_SYMBOL_COMMA_BAR, 'codepoint, 0x236A);
7950put('APL_FUNCTIONAL_SYMBOL_DEL_TILDE, 'codepoint, 0x236B);
7951put('APL_FUNCTIONAL_SYMBOL_ZILDE, 'codepoint, 0x236C);
7952put('APL_FUNCTIONAL_SYMBOL_STILE_TILDE, 'codepoint, 0x236D);
7953put('APL_FUNCTIONAL_SYMBOL_SEMICOLON_UNDERBAR, 'codepoint, 0x236E);
7954put('APL_FUNCTIONAL_SYMBOL_QUAD_NOT_EQUAL, 'codepoint, 0x236F);
7955put('APL_FUNCTIONAL_SYMBOL_QUAD_QUESTION, 'codepoint, 0x2370);
7956put('APL_FUNCTIONAL_SYMBOL_DOWN_CARET_TILDE, 'codepoint, 0x2371);
7957put('APL_FUNCTIONAL_SYMBOL_UP_CARET_TILDE, 'codepoint, 0x2372);
7958put('APL_FUNCTIONAL_SYMBOL_IOTA, 'codepoint, 0x2373);
7959put('APL_FUNCTIONAL_SYMBOL_RHO, 'codepoint, 0x2374);
7960put('APL_FUNCTIONAL_SYMBOL_OMEGA, 'codepoint, 0x2375);
7961put('APL_FUNCTIONAL_SYMBOL_ALPHA_UNDERBAR, 'codepoint, 0x2376);
7962put('APL_FUNCTIONAL_SYMBOL_EPSILON_UNDERBAR, 'codepoint, 0x2377);
7963put('APL_FUNCTIONAL_SYMBOL_IOTA_UNDERBAR, 'codepoint, 0x2378);
7964put('APL_FUNCTIONAL_SYMBOL_OMEGA_UNDERBAR, 'codepoint, 0x2379);
7965put('APL_FUNCTIONAL_SYMBOL_ALPHA, 'codepoint, 0x237A);
7966put('NOT_CHECK_MARK, 'codepoint, 0x237B);
7967put('RIGHT_ANGLE_WITH_DOWNWARDS_ZIGZAG_ARROW, 'codepoint, 0x237C);
7968put('SHOULDERED_OPEN_BOX, 'codepoint, 0x237D);
7969put('BELL_SYMBOL, 'codepoint, 0x237E);
7970put('VERTICAL_LINE_WITH_MIDDLE_DOT, 'codepoint, 0x237F);
7971put('INSERTION_SYMBOL, 'codepoint, 0x2380);
7972put('CONTINUOUS_UNDERLINE_SYMBOL, 'codepoint, 0x2381);
7973put('DISCONTINUOUS_UNDERLINE_SYMBOL, 'codepoint, 0x2382);
7974put('EMPHASIS_SYMBOL, 'codepoint, 0x2383);
7975put('COMPOSITION_SYMBOL, 'codepoint, 0x2384);
7976put('WHITE_SQUARE_WITH_CENTRE_VERTICAL_LINE, 'codepoint, 0x2385);
7977put('ENTER_SYMBOL, 'codepoint, 0x2386);
7978put('ALTERNATIVE_KEY_SYMBOL, 'codepoint, 0x2387);
7979put('HELM_SYMBOL, 'codepoint, 0x2388);
7980put('CIRCLED_HORIZONTAL_BAR_WITH_NOTCH, 'codepoint, 0x2389);
7981put('CIRCLED_TRIANGLE_DOWN, 'codepoint, 0x238A);
7982put('BROKEN_CIRCLE_WITH_NORTHWEST_ARROW, 'codepoint, 0x238B);
7983put('UNDO_SYMBOL, 'codepoint, 0x238C);
7984put('MONOSTABLE_SYMBOL, 'codepoint, 0x238D);
7985put('HYSTERESIS_SYMBOL, 'codepoint, 0x238E);
7986put('OPEN_CIRCUIT_OUTPUT_H_TYPE_SYMBOL, 'codepoint, 0x238F);
7987put('OPEN_CIRCUIT_OUTPUT_L_TYPE_SYMBOL, 'codepoint, 0x2390);
7988put('PASSIVE_PULL_DOWN_OUTPUT_SYMBOL, 'codepoint, 0x2391);
7989put('PASSIVE_PULL_UP_OUTPUT_SYMBOL, 'codepoint, 0x2392);
7990put('DIRECT_CURRENT_SYMBOL_FORM_TWO, 'codepoint, 0x2393);
7991put('SOFTWARE_FUNCTION_SYMBOL, 'codepoint, 0x2394);
7992put('APL_FUNCTIONAL_SYMBOL_QUAD, 'codepoint, 0x2395);
7993put('DECIMAL_SEPARATOR_KEY_SYMBOL, 'codepoint, 0x2396);
7994put('PREVIOUS_PAGE, 'codepoint, 0x2397);
7995put('NEXT_PAGE, 'codepoint, 0x2398);
7996put('PRINT_SCREEN_SYMBOL, 'codepoint, 0x2399);
7997put('CLEAR_SCREEN_SYMBOL, 'codepoint, 0x239A);
7998put('LEFT_PARENTHESIS_UPPER_HOOK, 'codepoint, 0x239B);
7999put('LEFT_PARENTHESIS_EXTENSION, 'codepoint, 0x239C);
8000put('LEFT_PARENTHESIS_LOWER_HOOK, 'codepoint, 0x239D);
8001put('RIGHT_PARENTHESIS_UPPER_HOOK, 'codepoint, 0x239E);
8002put('RIGHT_PARENTHESIS_EXTENSION, 'codepoint, 0x239F);
8003put('RIGHT_PARENTHESIS_LOWER_HOOK, 'codepoint, 0x23A0);
8004put('LEFT_SQUARE_BRACKET_UPPER_CORNER, 'codepoint, 0x23A1);
8005put('LEFT_SQUARE_BRACKET_EXTENSION, 'codepoint, 0x23A2);
8006put('LEFT_SQUARE_BRACKET_LOWER_CORNER, 'codepoint, 0x23A3);
8007put('RIGHT_SQUARE_BRACKET_UPPER_CORNER, 'codepoint, 0x23A4);
8008put('RIGHT_SQUARE_BRACKET_EXTENSION, 'codepoint, 0x23A5);
8009put('RIGHT_SQUARE_BRACKET_LOWER_CORNER, 'codepoint, 0x23A6);
8010put('LEFT_CURLY_BRACKET_UPPER_HOOK, 'codepoint, 0x23A7);
8011put('LEFT_CURLY_BRACKET_MIDDLE_PIECE, 'codepoint, 0x23A8);
8012put('LEFT_CURLY_BRACKET_LOWER_HOOK, 'codepoint, 0x23A9);
8013put('CURLY_BRACKET_EXTENSION, 'codepoint, 0x23AA);
8014put('RIGHT_CURLY_BRACKET_UPPER_HOOK, 'codepoint, 0x23AB);
8015put('RIGHT_CURLY_BRACKET_MIDDLE_PIECE, 'codepoint, 0x23AC);
8016put('RIGHT_CURLY_BRACKET_LOWER_HOOK, 'codepoint, 0x23AD);
8017put('INTEGRAL_EXTENSION, 'codepoint, 0x23AE);
8018put('HORIZONTAL_LINE_EXTENSION, 'codepoint, 0x23AF);
8019put('UPPER_LEFT_OR_LOWER_RIGHT_CURLY_BRACKET_SECTION, 'codepoint, 0x23B0);
8020put('UPPER_RIGHT_OR_LOWER_LEFT_CURLY_BRACKET_SECTION, 'codepoint, 0x23B1);
8021put('SUMMATION_TOP, 'codepoint, 0x23B2);
8022put('SUMMATION_BOTTOM, 'codepoint, 0x23B3);
8023put('TOP_SQUARE_BRACKET, 'codepoint, 0x23B4);
8024put('BOTTOM_SQUARE_BRACKET, 'codepoint, 0x23B5);
8025put('BOTTOM_SQUARE_BRACKET_OVER_TOP_SQUARE_BRACKET, 'codepoint, 0x23B6);
8026put('RADICAL_SYMBOL_BOTTOM, 'codepoint, 0x23B7);
8027put('LEFT_VERTICAL_BOX_LINE, 'codepoint, 0x23B8);
8028put('RIGHT_VERTICAL_BOX_LINE, 'codepoint, 0x23B9);
8029put('HORIZONTAL_SCAN_LINE_1, 'codepoint, 0x23BA);
8030put('HORIZONTAL_SCAN_LINE_3, 'codepoint, 0x23BB);
8031put('HORIZONTAL_SCAN_LINE_7, 'codepoint, 0x23BC);
8032put('HORIZONTAL_SCAN_LINE_9, 'codepoint, 0x23BD);
8033put('DENTISTRY_SYMBOL_LIGHT_VERTICAL_AND_TOP_RIGHT, 'codepoint, 0x23BE);
8034put('DENTISTRY_SYMBOL_LIGHT_VERTICAL_AND_BOTTOM_RIGHT, 'codepoint, 0x23BF);
8035put('DENTISTRY_SYMBOL_LIGHT_VERTICAL_WITH_CIRCLE, 'codepoint, 0x23C0);
8036put('DENTISTRY_SYMBOL_LIGHT_DOWN_AND_HORIZONTAL_WITH_CIRCLE, 'codepoint, 0x23C1);
8037put('DENTISTRY_SYMBOL_LIGHT_UP_AND_HORIZONTAL_WITH_CIRCLE, 'codepoint, 0x23C2);
8038put('DENTISTRY_SYMBOL_LIGHT_VERTICAL_WITH_TRIANGLE, 'codepoint, 0x23C3);
8039put('DENTISTRY_SYMBOL_LIGHT_DOWN_AND_HORIZONTAL_WITH_TRIANGLE, 'codepoint, 0x23C4);
8040put('DENTISTRY_SYMBOL_LIGHT_UP_AND_HORIZONTAL_WITH_TRIANGLE, 'codepoint, 0x23C5);
8041put('DENTISTRY_SYMBOL_LIGHT_VERTICAL_AND_WAVE, 'codepoint, 0x23C6);
8042put('DENTISTRY_SYMBOL_LIGHT_DOWN_AND_HORIZONTAL_WITH_WAVE, 'codepoint, 0x23C7);
8043put('DENTISTRY_SYMBOL_LIGHT_UP_AND_HORIZONTAL_WITH_WAVE, 'codepoint, 0x23C8);
8044put('DENTISTRY_SYMBOL_LIGHT_DOWN_AND_HORIZONTAL, 'codepoint, 0x23C9);
8045put('DENTISTRY_SYMBOL_LIGHT_UP_AND_HORIZONTAL, 'codepoint, 0x23CA);
8046put('DENTISTRY_SYMBOL_LIGHT_VERTICAL_AND_TOP_LEFT, 'codepoint, 0x23CB);
8047put('DENTISTRY_SYMBOL_LIGHT_VERTICAL_AND_BOTTOM_LEFT, 'codepoint, 0x23CC);
8048put('SQUARE_FOOT, 'codepoint, 0x23CD);
8049put('RETURN_SYMBOL, 'codepoint, 0x23CE);
8050put('EJECT_SYMBOL, 'codepoint, 0x23CF);
8051put('VERTICAL_LINE_EXTENSION, 'codepoint, 0x23D0);
8052put('METRICAL_BREVE, 'codepoint, 0x23D1);
8053put('METRICAL_LONG_OVER_SHORT, 'codepoint, 0x23D2);
8054put('METRICAL_SHORT_OVER_LONG, 'codepoint, 0x23D3);
8055put('METRICAL_LONG_OVER_TWO_SHORTS, 'codepoint, 0x23D4);
8056put('METRICAL_TWO_SHORTS_OVER_LONG, 'codepoint, 0x23D5);
8057put('METRICAL_TWO_SHORTS_JOINED, 'codepoint, 0x23D6);
8058put('METRICAL_TRISEME, 'codepoint, 0x23D7);
8059put('METRICAL_TETRASEME, 'codepoint, 0x23D8);
8060put('METRICAL_PENTASEME, 'codepoint, 0x23D9);
8061put('EARTH_GROUND, 'codepoint, 0x23DA);
8062put('FUSE, 'codepoint, 0x23DB);
8063put('TOP_PARENTHESIS, 'codepoint, 0x23DC);
8064put('BOTTOM_PARENTHESIS, 'codepoint, 0x23DD);
8065put('TOP_CURLY_BRACKET, 'codepoint, 0x23DE);
8066put('BOTTOM_CURLY_BRACKET, 'codepoint, 0x23DF);
8067put('TOP_TORTOISE_SHELL_BRACKET, 'codepoint, 0x23E0);
8068put('BOTTOM_TORTOISE_SHELL_BRACKET, 'codepoint, 0x23E1);
8069put('WHITE_TRAPEZIUM, 'codepoint, 0x23E2);
8070put('BENZENE_RING_WITH_CIRCLE, 'codepoint, 0x23E3);
8071put('STRAIGHTNESS, 'codepoint, 0x23E4);
8072put('FLATNESS, 'codepoint, 0x23E5);
8073put('AC_CURRENT, 'codepoint, 0x23E6);
8074put('ELECTRICAL_INTERSECTION, 'codepoint, 0x23E7);
8075put('DECIMAL_EXPONENT_SYMBOL, 'codepoint, 0x23E8);
8076put('BLACK_RIGHT_POINTING_DOUBLE_TRIANGLE, 'codepoint, 0x23E9);
8077put('BLACK_LEFT_POINTING_DOUBLE_TRIANGLE, 'codepoint, 0x23EA);
8078put('BLACK_UP_POINTING_DOUBLE_TRIANGLE, 'codepoint, 0x23EB);
8079put('BLACK_DOWN_POINTING_DOUBLE_TRIANGLE, 'codepoint, 0x23EC);
8080put('BLACK_RIGHT_POINTING_DOUBLE_TRIANGLE_WITH_VERTICAL_BAR, 'codepoint, 0x23ED);
8081put('BLACK_LEFT_POINTING_DOUBLE_TRIANGLE_WITH_VERTICAL_BAR, 'codepoint, 0x23EE);
8082put('BLACK_RIGHT_POINTING_TRIANGLE_WITH_DOUBLE_VERTICAL_BAR, 'codepoint, 0x23EF);
8083put('ALARM_CLOCK, 'codepoint, 0x23F0);
8084put('STOPWATCH, 'codepoint, 0x23F1);
8085put('TIMER_CLOCK, 'codepoint, 0x23F2);
8086put('HOURGLASS_WITH_FLOWING_SAND, 'codepoint, 0x23F3);
8087put('BLACK_MEDIUM_LEFT_POINTING_TRIANGLE, 'codepoint, 0x23F4);
8088put('BLACK_MEDIUM_RIGHT_POINTING_TRIANGLE, 'codepoint, 0x23F5);
8089put('BLACK_MEDIUM_UP_POINTING_TRIANGLE, 'codepoint, 0x23F6);
8090put('BLACK_MEDIUM_DOWN_POINTING_TRIANGLE, 'codepoint, 0x23F7);
8091put('DOUBLE_VERTICAL_BAR, 'codepoint, 0x23F8);
8092put('BLACK_SQUARE_FOR_STOP, 'codepoint, 0x23F9);
8093put('BLACK_CIRCLE_FOR_RECORD, 'codepoint, 0x23FA);
8094put('SYMBOL_FOR_NULL, 'codepoint, 0x2400);
8095put('SYMBOL_FOR_START_OF_HEADING, 'codepoint, 0x2401);
8096put('SYMBOL_FOR_START_OF_TEXT, 'codepoint, 0x2402);
8097put('SYMBOL_FOR_END_OF_TEXT, 'codepoint, 0x2403);
8098put('SYMBOL_FOR_END_OF_TRANSMISSION, 'codepoint, 0x2404);
8099put('SYMBOL_FOR_ENQUIRY, 'codepoint, 0x2405);
8100put('SYMBOL_FOR_ACKNOWLEDGE, 'codepoint, 0x2406);
8101put('SYMBOL_FOR_BELL, 'codepoint, 0x2407);
8102put('SYMBOL_FOR_BACKSPACE, 'codepoint, 0x2408);
8103put('SYMBOL_FOR_HORIZONTAL_TABULATION, 'codepoint, 0x2409);
8104put('SYMBOL_FOR_LINE_FEED, 'codepoint, 0x240A);
8105put('SYMBOL_FOR_VERTICAL_TABULATION, 'codepoint, 0x240B);
8106put('SYMBOL_FOR_FORM_FEED, 'codepoint, 0x240C);
8107put('SYMBOL_FOR_CARRIAGE_RETURN, 'codepoint, 0x240D);
8108put('SYMBOL_FOR_SHIFT_OUT, 'codepoint, 0x240E);
8109put('SYMBOL_FOR_SHIFT_IN, 'codepoint, 0x240F);
8110put('SYMBOL_FOR_DATA_LINK_ESCAPE, 'codepoint, 0x2410);
8111put('SYMBOL_FOR_DEVICE_CONTROL_ONE, 'codepoint, 0x2411);
8112put('SYMBOL_FOR_DEVICE_CONTROL_TWO, 'codepoint, 0x2412);
8113put('SYMBOL_FOR_DEVICE_CONTROL_THREE, 'codepoint, 0x2413);
8114put('SYMBOL_FOR_DEVICE_CONTROL_FOUR, 'codepoint, 0x2414);
8115put('SYMBOL_FOR_NEGATIVE_ACKNOWLEDGE, 'codepoint, 0x2415);
8116put('SYMBOL_FOR_SYNCHRONOUS_IDLE, 'codepoint, 0x2416);
8117put('SYMBOL_FOR_END_OF_TRANSMISSION_BLOCK, 'codepoint, 0x2417);
8118put('SYMBOL_FOR_CANCEL, 'codepoint, 0x2418);
8119put('SYMBOL_FOR_END_OF_MEDIUM, 'codepoint, 0x2419);
8120put('SYMBOL_FOR_SUBSTITUTE, 'codepoint, 0x241A);
8121put('SYMBOL_FOR_ESCAPE, 'codepoint, 0x241B);
8122put('SYMBOL_FOR_FILE_SEPARATOR, 'codepoint, 0x241C);
8123put('SYMBOL_FOR_GROUP_SEPARATOR, 'codepoint, 0x241D);
8124put('SYMBOL_FOR_RECORD_SEPARATOR, 'codepoint, 0x241E);
8125put('SYMBOL_FOR_UNIT_SEPARATOR, 'codepoint, 0x241F);
8126put('SYMBOL_FOR_SPACE, 'codepoint, 0x2420);
8127put('SYMBOL_FOR_DELETE, 'codepoint, 0x2421);
8128put('BLANK_SYMBOL, 'codepoint, 0x2422);
8129put('OPEN_BOX, 'codepoint, 0x2423);
8130put('SYMBOL_FOR_NEWLINE, 'codepoint, 0x2424);
8131put('SYMBOL_FOR_DELETE_FORM_TWO, 'codepoint, 0x2425);
8132put('SYMBOL_FOR_SUBSTITUTE_FORM_TWO, 'codepoint, 0x2426);
8133put('OCR_HOOK, 'codepoint, 0x2440);
8134put('OCR_CHAIR, 'codepoint, 0x2441);
8135put('OCR_FORK, 'codepoint, 0x2442);
8136put('OCR_INVERTED_FORK, 'codepoint, 0x2443);
8137put('OCR_BELT_BUCKLE, 'codepoint, 0x2444);
8138put('OCR_BOW_TIE, 'codepoint, 0x2445);
8139put('OCR_BRANCH_BANK_IDENTIFICATION, 'codepoint, 0x2446);
8140put('OCR_AMOUNT_OF_CHECK, 'codepoint, 0x2447);
8141put('OCR_DASH, 'codepoint, 0x2448);
8142put('OCR_CUSTOMER_ACCOUNT_NUMBER, 'codepoint, 0x2449);
8143put('OCR_DOUBLE_BACKSLASH, 'codepoint, 0x244A);
8144put('CIRCLED_DIGIT_ONE, 'codepoint, 0x2460);
8145put('CIRCLED_DIGIT_TWO, 'codepoint, 0x2461);
8146put('CIRCLED_DIGIT_THREE, 'codepoint, 0x2462);
8147put('CIRCLED_DIGIT_FOUR, 'codepoint, 0x2463);
8148put('CIRCLED_DIGIT_FIVE, 'codepoint, 0x2464);
8149put('CIRCLED_DIGIT_SIX, 'codepoint, 0x2465);
8150put('CIRCLED_DIGIT_SEVEN, 'codepoint, 0x2466);
8151put('CIRCLED_DIGIT_EIGHT, 'codepoint, 0x2467);
8152put('CIRCLED_DIGIT_NINE, 'codepoint, 0x2468);
8153put('CIRCLED_NUMBER_TEN, 'codepoint, 0x2469);
8154put('CIRCLED_NUMBER_ELEVEN, 'codepoint, 0x246A);
8155put('CIRCLED_NUMBER_TWELVE, 'codepoint, 0x246B);
8156put('CIRCLED_NUMBER_THIRTEEN, 'codepoint, 0x246C);
8157put('CIRCLED_NUMBER_FOURTEEN, 'codepoint, 0x246D);
8158put('CIRCLED_NUMBER_FIFTEEN, 'codepoint, 0x246E);
8159put('CIRCLED_NUMBER_SIXTEEN, 'codepoint, 0x246F);
8160put('CIRCLED_NUMBER_SEVENTEEN, 'codepoint, 0x2470);
8161put('CIRCLED_NUMBER_EIGHTEEN, 'codepoint, 0x2471);
8162put('CIRCLED_NUMBER_NINETEEN, 'codepoint, 0x2472);
8163put('CIRCLED_NUMBER_TWENTY, 'codepoint, 0x2473);
8164put('PARENTHESIZED_DIGIT_ONE, 'codepoint, 0x2474);
8165put('PARENTHESIZED_DIGIT_TWO, 'codepoint, 0x2475);
8166put('PARENTHESIZED_DIGIT_THREE, 'codepoint, 0x2476);
8167put('PARENTHESIZED_DIGIT_FOUR, 'codepoint, 0x2477);
8168put('PARENTHESIZED_DIGIT_FIVE, 'codepoint, 0x2478);
8169put('PARENTHESIZED_DIGIT_SIX, 'codepoint, 0x2479);
8170put('PARENTHESIZED_DIGIT_SEVEN, 'codepoint, 0x247A);
8171put('PARENTHESIZED_DIGIT_EIGHT, 'codepoint, 0x247B);
8172put('PARENTHESIZED_DIGIT_NINE, 'codepoint, 0x247C);
8173put('PARENTHESIZED_NUMBER_TEN, 'codepoint, 0x247D);
8174put('PARENTHESIZED_NUMBER_ELEVEN, 'codepoint, 0x247E);
8175put('PARENTHESIZED_NUMBER_TWELVE, 'codepoint, 0x247F);
8176put('PARENTHESIZED_NUMBER_THIRTEEN, 'codepoint, 0x2480);
8177put('PARENTHESIZED_NUMBER_FOURTEEN, 'codepoint, 0x2481);
8178put('PARENTHESIZED_NUMBER_FIFTEEN, 'codepoint, 0x2482);
8179put('PARENTHESIZED_NUMBER_SIXTEEN, 'codepoint, 0x2483);
8180put('PARENTHESIZED_NUMBER_SEVENTEEN, 'codepoint, 0x2484);
8181put('PARENTHESIZED_NUMBER_EIGHTEEN, 'codepoint, 0x2485);
8182put('PARENTHESIZED_NUMBER_NINETEEN, 'codepoint, 0x2486);
8183put('PARENTHESIZED_NUMBER_TWENTY, 'codepoint, 0x2487);
8184put('DIGIT_ONE_FULL_STOP, 'codepoint, 0x2488);
8185put('DIGIT_TWO_FULL_STOP, 'codepoint, 0x2489);
8186put('DIGIT_THREE_FULL_STOP, 'codepoint, 0x248A);
8187put('DIGIT_FOUR_FULL_STOP, 'codepoint, 0x248B);
8188put('DIGIT_FIVE_FULL_STOP, 'codepoint, 0x248C);
8189put('DIGIT_SIX_FULL_STOP, 'codepoint, 0x248D);
8190put('DIGIT_SEVEN_FULL_STOP, 'codepoint, 0x248E);
8191put('DIGIT_EIGHT_FULL_STOP, 'codepoint, 0x248F);
8192put('DIGIT_NINE_FULL_STOP, 'codepoint, 0x2490);
8193put('NUMBER_TEN_FULL_STOP, 'codepoint, 0x2491);
8194put('NUMBER_ELEVEN_FULL_STOP, 'codepoint, 0x2492);
8195put('NUMBER_TWELVE_FULL_STOP, 'codepoint, 0x2493);
8196put('NUMBER_THIRTEEN_FULL_STOP, 'codepoint, 0x2494);
8197put('NUMBER_FOURTEEN_FULL_STOP, 'codepoint, 0x2495);
8198put('NUMBER_FIFTEEN_FULL_STOP, 'codepoint, 0x2496);
8199put('NUMBER_SIXTEEN_FULL_STOP, 'codepoint, 0x2497);
8200put('NUMBER_SEVENTEEN_FULL_STOP, 'codepoint, 0x2498);
8201put('NUMBER_EIGHTEEN_FULL_STOP, 'codepoint, 0x2499);
8202put('NUMBER_NINETEEN_FULL_STOP, 'codepoint, 0x249A);
8203put('NUMBER_TWENTY_FULL_STOP, 'codepoint, 0x249B);
8204put('PARENTHESIZED_LATIN_SMALL_LETTER_A, 'codepoint, 0x249C);
8205put('PARENTHESIZED_LATIN_SMALL_LETTER_B, 'codepoint, 0x249D);
8206put('PARENTHESIZED_LATIN_SMALL_LETTER_C, 'codepoint, 0x249E);
8207put('PARENTHESIZED_LATIN_SMALL_LETTER_D, 'codepoint, 0x249F);
8208put('PARENTHESIZED_LATIN_SMALL_LETTER_E, 'codepoint, 0x24A0);
8209put('PARENTHESIZED_LATIN_SMALL_LETTER_F, 'codepoint, 0x24A1);
8210put('PARENTHESIZED_LATIN_SMALL_LETTER_G, 'codepoint, 0x24A2);
8211put('PARENTHESIZED_LATIN_SMALL_LETTER_H, 'codepoint, 0x24A3);
8212put('PARENTHESIZED_LATIN_SMALL_LETTER_I, 'codepoint, 0x24A4);
8213put('PARENTHESIZED_LATIN_SMALL_LETTER_J, 'codepoint, 0x24A5);
8214put('PARENTHESIZED_LATIN_SMALL_LETTER_K, 'codepoint, 0x24A6);
8215put('PARENTHESIZED_LATIN_SMALL_LETTER_L, 'codepoint, 0x24A7);
8216put('PARENTHESIZED_LATIN_SMALL_LETTER_M, 'codepoint, 0x24A8);
8217put('PARENTHESIZED_LATIN_SMALL_LETTER_N, 'codepoint, 0x24A9);
8218put('PARENTHESIZED_LATIN_SMALL_LETTER_O, 'codepoint, 0x24AA);
8219put('PARENTHESIZED_LATIN_SMALL_LETTER_P, 'codepoint, 0x24AB);
8220put('PARENTHESIZED_LATIN_SMALL_LETTER_Q, 'codepoint, 0x24AC);
8221put('PARENTHESIZED_LATIN_SMALL_LETTER_R, 'codepoint, 0x24AD);
8222put('PARENTHESIZED_LATIN_SMALL_LETTER_S, 'codepoint, 0x24AE);
8223put('PARENTHESIZED_LATIN_SMALL_LETTER_T, 'codepoint, 0x24AF);
8224put('PARENTHESIZED_LATIN_SMALL_LETTER_U, 'codepoint, 0x24B0);
8225put('PARENTHESIZED_LATIN_SMALL_LETTER_V, 'codepoint, 0x24B1);
8226put('PARENTHESIZED_LATIN_SMALL_LETTER_W, 'codepoint, 0x24B2);
8227put('PARENTHESIZED_LATIN_SMALL_LETTER_X, 'codepoint, 0x24B3);
8228put('PARENTHESIZED_LATIN_SMALL_LETTER_Y, 'codepoint, 0x24B4);
8229put('PARENTHESIZED_LATIN_SMALL_LETTER_Z, 'codepoint, 0x24B5);
8230put('CIRCLED_LATIN_CAPITAL_LETTER_A, 'codepoint, 0x24B6);
8231put('CIRCLED_LATIN_CAPITAL_LETTER_B, 'codepoint, 0x24B7);
8232put('CIRCLED_LATIN_CAPITAL_LETTER_C, 'codepoint, 0x24B8);
8233put('CIRCLED_LATIN_CAPITAL_LETTER_D, 'codepoint, 0x24B9);
8234put('CIRCLED_LATIN_CAPITAL_LETTER_E, 'codepoint, 0x24BA);
8235put('CIRCLED_LATIN_CAPITAL_LETTER_F, 'codepoint, 0x24BB);
8236put('CIRCLED_LATIN_CAPITAL_LETTER_G, 'codepoint, 0x24BC);
8237put('CIRCLED_LATIN_CAPITAL_LETTER_H, 'codepoint, 0x24BD);
8238put('CIRCLED_LATIN_CAPITAL_LETTER_I, 'codepoint, 0x24BE);
8239put('CIRCLED_LATIN_CAPITAL_LETTER_J, 'codepoint, 0x24BF);
8240put('CIRCLED_LATIN_CAPITAL_LETTER_K, 'codepoint, 0x24C0);
8241put('CIRCLED_LATIN_CAPITAL_LETTER_L, 'codepoint, 0x24C1);
8242put('CIRCLED_LATIN_CAPITAL_LETTER_M, 'codepoint, 0x24C2);
8243put('CIRCLED_LATIN_CAPITAL_LETTER_N, 'codepoint, 0x24C3);
8244put('CIRCLED_LATIN_CAPITAL_LETTER_O, 'codepoint, 0x24C4);
8245put('CIRCLED_LATIN_CAPITAL_LETTER_P, 'codepoint, 0x24C5);
8246put('CIRCLED_LATIN_CAPITAL_LETTER_Q, 'codepoint, 0x24C6);
8247put('CIRCLED_LATIN_CAPITAL_LETTER_R, 'codepoint, 0x24C7);
8248put('CIRCLED_LATIN_CAPITAL_LETTER_S, 'codepoint, 0x24C8);
8249put('CIRCLED_LATIN_CAPITAL_LETTER_T, 'codepoint, 0x24C9);
8250put('CIRCLED_LATIN_CAPITAL_LETTER_U, 'codepoint, 0x24CA);
8251put('CIRCLED_LATIN_CAPITAL_LETTER_V, 'codepoint, 0x24CB);
8252put('CIRCLED_LATIN_CAPITAL_LETTER_W, 'codepoint, 0x24CC);
8253put('CIRCLED_LATIN_CAPITAL_LETTER_X, 'codepoint, 0x24CD);
8254put('CIRCLED_LATIN_CAPITAL_LETTER_Y, 'codepoint, 0x24CE);
8255put('CIRCLED_LATIN_CAPITAL_LETTER_Z, 'codepoint, 0x24CF);
8256put('CIRCLED_LATIN_SMALL_LETTER_A, 'codepoint, 0x24D0);
8257put('CIRCLED_LATIN_SMALL_LETTER_B, 'codepoint, 0x24D1);
8258put('CIRCLED_LATIN_SMALL_LETTER_C, 'codepoint, 0x24D2);
8259put('CIRCLED_LATIN_SMALL_LETTER_D, 'codepoint, 0x24D3);
8260put('CIRCLED_LATIN_SMALL_LETTER_E, 'codepoint, 0x24D4);
8261put('CIRCLED_LATIN_SMALL_LETTER_F, 'codepoint, 0x24D5);
8262put('CIRCLED_LATIN_SMALL_LETTER_G, 'codepoint, 0x24D6);
8263put('CIRCLED_LATIN_SMALL_LETTER_H, 'codepoint, 0x24D7);
8264put('CIRCLED_LATIN_SMALL_LETTER_I, 'codepoint, 0x24D8);
8265put('CIRCLED_LATIN_SMALL_LETTER_J, 'codepoint, 0x24D9);
8266put('CIRCLED_LATIN_SMALL_LETTER_K, 'codepoint, 0x24DA);
8267put('CIRCLED_LATIN_SMALL_LETTER_L, 'codepoint, 0x24DB);
8268put('CIRCLED_LATIN_SMALL_LETTER_M, 'codepoint, 0x24DC);
8269put('CIRCLED_LATIN_SMALL_LETTER_N, 'codepoint, 0x24DD);
8270put('CIRCLED_LATIN_SMALL_LETTER_O, 'codepoint, 0x24DE);
8271put('CIRCLED_LATIN_SMALL_LETTER_P, 'codepoint, 0x24DF);
8272put('CIRCLED_LATIN_SMALL_LETTER_Q, 'codepoint, 0x24E0);
8273put('CIRCLED_LATIN_SMALL_LETTER_R, 'codepoint, 0x24E1);
8274put('CIRCLED_LATIN_SMALL_LETTER_S, 'codepoint, 0x24E2);
8275put('CIRCLED_LATIN_SMALL_LETTER_T, 'codepoint, 0x24E3);
8276put('CIRCLED_LATIN_SMALL_LETTER_U, 'codepoint, 0x24E4);
8277put('CIRCLED_LATIN_SMALL_LETTER_V, 'codepoint, 0x24E5);
8278put('CIRCLED_LATIN_SMALL_LETTER_W, 'codepoint, 0x24E6);
8279put('CIRCLED_LATIN_SMALL_LETTER_X, 'codepoint, 0x24E7);
8280put('CIRCLED_LATIN_SMALL_LETTER_Y, 'codepoint, 0x24E8);
8281put('CIRCLED_LATIN_SMALL_LETTER_Z, 'codepoint, 0x24E9);
8282put('CIRCLED_DIGIT_ZERO, 'codepoint, 0x24EA);
8283put('NEGATIVE_CIRCLED_NUMBER_ELEVEN, 'codepoint, 0x24EB);
8284put('NEGATIVE_CIRCLED_NUMBER_TWELVE, 'codepoint, 0x24EC);
8285put('NEGATIVE_CIRCLED_NUMBER_THIRTEEN, 'codepoint, 0x24ED);
8286put('NEGATIVE_CIRCLED_NUMBER_FOURTEEN, 'codepoint, 0x24EE);
8287put('NEGATIVE_CIRCLED_NUMBER_FIFTEEN, 'codepoint, 0x24EF);
8288put('NEGATIVE_CIRCLED_NUMBER_SIXTEEN, 'codepoint, 0x24F0);
8289put('NEGATIVE_CIRCLED_NUMBER_SEVENTEEN, 'codepoint, 0x24F1);
8290put('NEGATIVE_CIRCLED_NUMBER_EIGHTEEN, 'codepoint, 0x24F2);
8291put('NEGATIVE_CIRCLED_NUMBER_NINETEEN, 'codepoint, 0x24F3);
8292put('NEGATIVE_CIRCLED_NUMBER_TWENTY, 'codepoint, 0x24F4);
8293put('DOUBLE_CIRCLED_DIGIT_ONE, 'codepoint, 0x24F5);
8294put('DOUBLE_CIRCLED_DIGIT_TWO, 'codepoint, 0x24F6);
8295put('DOUBLE_CIRCLED_DIGIT_THREE, 'codepoint, 0x24F7);
8296put('DOUBLE_CIRCLED_DIGIT_FOUR, 'codepoint, 0x24F8);
8297put('DOUBLE_CIRCLED_DIGIT_FIVE, 'codepoint, 0x24F9);
8298put('DOUBLE_CIRCLED_DIGIT_SIX, 'codepoint, 0x24FA);
8299put('DOUBLE_CIRCLED_DIGIT_SEVEN, 'codepoint, 0x24FB);
8300put('DOUBLE_CIRCLED_DIGIT_EIGHT, 'codepoint, 0x24FC);
8301put('DOUBLE_CIRCLED_DIGIT_NINE, 'codepoint, 0x24FD);
8302put('DOUBLE_CIRCLED_NUMBER_TEN, 'codepoint, 0x24FE);
8303put('NEGATIVE_CIRCLED_DIGIT_ZERO, 'codepoint, 0x24FF);
8304put('BOX_DRAWINGS_LIGHT_HORIZONTAL, 'codepoint, 0x2500);
8305put('BOX_DRAWINGS_HEAVY_HORIZONTAL, 'codepoint, 0x2501);
8306put('BOX_DRAWINGS_LIGHT_VERTICAL, 'codepoint, 0x2502);
8307put('BOX_DRAWINGS_HEAVY_VERTICAL, 'codepoint, 0x2503);
8308put('BOX_DRAWINGS_LIGHT_TRIPLE_DASH_HORIZONTAL, 'codepoint, 0x2504);
8309put('BOX_DRAWINGS_HEAVY_TRIPLE_DASH_HORIZONTAL, 'codepoint, 0x2505);
8310put('BOX_DRAWINGS_LIGHT_TRIPLE_DASH_VERTICAL, 'codepoint, 0x2506);
8311put('BOX_DRAWINGS_HEAVY_TRIPLE_DASH_VERTICAL, 'codepoint, 0x2507);
8312put('BOX_DRAWINGS_LIGHT_QUADRUPLE_DASH_HORIZONTAL, 'codepoint, 0x2508);
8313put('BOX_DRAWINGS_HEAVY_QUADRUPLE_DASH_HORIZONTAL, 'codepoint, 0x2509);
8314put('BOX_DRAWINGS_LIGHT_QUADRUPLE_DASH_VERTICAL, 'codepoint, 0x250A);
8315put('BOX_DRAWINGS_HEAVY_QUADRUPLE_DASH_VERTICAL, 'codepoint, 0x250B);
8316put('BOX_DRAWINGS_LIGHT_DOWN_AND_RIGHT, 'codepoint, 0x250C);
8317put('BOX_DRAWINGS_DOWN_LIGHT_AND_RIGHT_HEAVY, 'codepoint, 0x250D);
8318put('BOX_DRAWINGS_DOWN_HEAVY_AND_RIGHT_LIGHT, 'codepoint, 0x250E);
8319put('BOX_DRAWINGS_HEAVY_DOWN_AND_RIGHT, 'codepoint, 0x250F);
8320put('BOX_DRAWINGS_LIGHT_DOWN_AND_LEFT, 'codepoint, 0x2510);
8321put('BOX_DRAWINGS_DOWN_LIGHT_AND_LEFT_HEAVY, 'codepoint, 0x2511);
8322put('BOX_DRAWINGS_DOWN_HEAVY_AND_LEFT_LIGHT, 'codepoint, 0x2512);
8323put('BOX_DRAWINGS_HEAVY_DOWN_AND_LEFT, 'codepoint, 0x2513);
8324put('BOX_DRAWINGS_LIGHT_UP_AND_RIGHT, 'codepoint, 0x2514);
8325put('BOX_DRAWINGS_UP_LIGHT_AND_RIGHT_HEAVY, 'codepoint, 0x2515);
8326put('BOX_DRAWINGS_UP_HEAVY_AND_RIGHT_LIGHT, 'codepoint, 0x2516);
8327put('BOX_DRAWINGS_HEAVY_UP_AND_RIGHT, 'codepoint, 0x2517);
8328put('BOX_DRAWINGS_LIGHT_UP_AND_LEFT, 'codepoint, 0x2518);
8329put('BOX_DRAWINGS_UP_LIGHT_AND_LEFT_HEAVY, 'codepoint, 0x2519);
8330put('BOX_DRAWINGS_UP_HEAVY_AND_LEFT_LIGHT, 'codepoint, 0x251A);
8331put('BOX_DRAWINGS_HEAVY_UP_AND_LEFT, 'codepoint, 0x251B);
8332put('BOX_DRAWINGS_LIGHT_VERTICAL_AND_RIGHT, 'codepoint, 0x251C);
8333put('BOX_DRAWINGS_VERTICAL_LIGHT_AND_RIGHT_HEAVY, 'codepoint, 0x251D);
8334put('BOX_DRAWINGS_UP_HEAVY_AND_RIGHT_DOWN_LIGHT, 'codepoint, 0x251E);
8335put('BOX_DRAWINGS_DOWN_HEAVY_AND_RIGHT_UP_LIGHT, 'codepoint, 0x251F);
8336put('BOX_DRAWINGS_VERTICAL_HEAVY_AND_RIGHT_LIGHT, 'codepoint, 0x2520);
8337put('BOX_DRAWINGS_DOWN_LIGHT_AND_RIGHT_UP_HEAVY, 'codepoint, 0x2521);
8338put('BOX_DRAWINGS_UP_LIGHT_AND_RIGHT_DOWN_HEAVY, 'codepoint, 0x2522);
8339put('BOX_DRAWINGS_HEAVY_VERTICAL_AND_RIGHT, 'codepoint, 0x2523);
8340put('BOX_DRAWINGS_LIGHT_VERTICAL_AND_LEFT, 'codepoint, 0x2524);
8341put('BOX_DRAWINGS_VERTICAL_LIGHT_AND_LEFT_HEAVY, 'codepoint, 0x2525);
8342put('BOX_DRAWINGS_UP_HEAVY_AND_LEFT_DOWN_LIGHT, 'codepoint, 0x2526);
8343put('BOX_DRAWINGS_DOWN_HEAVY_AND_LEFT_UP_LIGHT, 'codepoint, 0x2527);
8344put('BOX_DRAWINGS_VERTICAL_HEAVY_AND_LEFT_LIGHT, 'codepoint, 0x2528);
8345put('BOX_DRAWINGS_DOWN_LIGHT_AND_LEFT_UP_HEAVY, 'codepoint, 0x2529);
8346put('BOX_DRAWINGS_UP_LIGHT_AND_LEFT_DOWN_HEAVY, 'codepoint, 0x252A);
8347put('BOX_DRAWINGS_HEAVY_VERTICAL_AND_LEFT, 'codepoint, 0x252B);
8348put('BOX_DRAWINGS_LIGHT_DOWN_AND_HORIZONTAL, 'codepoint, 0x252C);
8349put('BOX_DRAWINGS_LEFT_HEAVY_AND_RIGHT_DOWN_LIGHT, 'codepoint, 0x252D);
8350put('BOX_DRAWINGS_RIGHT_HEAVY_AND_LEFT_DOWN_LIGHT, 'codepoint, 0x252E);
8351put('BOX_DRAWINGS_DOWN_LIGHT_AND_HORIZONTAL_HEAVY, 'codepoint, 0x252F);
8352put('BOX_DRAWINGS_DOWN_HEAVY_AND_HORIZONTAL_LIGHT, 'codepoint, 0x2530);
8353put('BOX_DRAWINGS_RIGHT_LIGHT_AND_LEFT_DOWN_HEAVY, 'codepoint, 0x2531);
8354put('BOX_DRAWINGS_LEFT_LIGHT_AND_RIGHT_DOWN_HEAVY, 'codepoint, 0x2532);
8355put('BOX_DRAWINGS_HEAVY_DOWN_AND_HORIZONTAL, 'codepoint, 0x2533);
8356put('BOX_DRAWINGS_LIGHT_UP_AND_HORIZONTAL, 'codepoint, 0x2534);
8357put('BOX_DRAWINGS_LEFT_HEAVY_AND_RIGHT_UP_LIGHT, 'codepoint, 0x2535);
8358put('BOX_DRAWINGS_RIGHT_HEAVY_AND_LEFT_UP_LIGHT, 'codepoint, 0x2536);
8359put('BOX_DRAWINGS_UP_LIGHT_AND_HORIZONTAL_HEAVY, 'codepoint, 0x2537);
8360put('BOX_DRAWINGS_UP_HEAVY_AND_HORIZONTAL_LIGHT, 'codepoint, 0x2538);
8361put('BOX_DRAWINGS_RIGHT_LIGHT_AND_LEFT_UP_HEAVY, 'codepoint, 0x2539);
8362put('BOX_DRAWINGS_LEFT_LIGHT_AND_RIGHT_UP_HEAVY, 'codepoint, 0x253A);
8363put('BOX_DRAWINGS_HEAVY_UP_AND_HORIZONTAL, 'codepoint, 0x253B);
8364put('BOX_DRAWINGS_LIGHT_VERTICAL_AND_HORIZONTAL, 'codepoint, 0x253C);
8365put('BOX_DRAWINGS_LEFT_HEAVY_AND_RIGHT_VERTICAL_LIGHT, 'codepoint, 0x253D);
8366put('BOX_DRAWINGS_RIGHT_HEAVY_AND_LEFT_VERTICAL_LIGHT, 'codepoint, 0x253E);
8367put('BOX_DRAWINGS_VERTICAL_LIGHT_AND_HORIZONTAL_HEAVY, 'codepoint, 0x253F);
8368put('BOX_DRAWINGS_UP_HEAVY_AND_DOWN_HORIZONTAL_LIGHT, 'codepoint, 0x2540);
8369put('BOX_DRAWINGS_DOWN_HEAVY_AND_UP_HORIZONTAL_LIGHT, 'codepoint, 0x2541);
8370put('BOX_DRAWINGS_VERTICAL_HEAVY_AND_HORIZONTAL_LIGHT, 'codepoint, 0x2542);
8371put('BOX_DRAWINGS_LEFT_UP_HEAVY_AND_RIGHT_DOWN_LIGHT, 'codepoint, 0x2543);
8372put('BOX_DRAWINGS_RIGHT_UP_HEAVY_AND_LEFT_DOWN_LIGHT, 'codepoint, 0x2544);
8373put('BOX_DRAWINGS_LEFT_DOWN_HEAVY_AND_RIGHT_UP_LIGHT, 'codepoint, 0x2545);
8374put('BOX_DRAWINGS_RIGHT_DOWN_HEAVY_AND_LEFT_UP_LIGHT, 'codepoint, 0x2546);
8375put('BOX_DRAWINGS_DOWN_LIGHT_AND_UP_HORIZONTAL_HEAVY, 'codepoint, 0x2547);
8376put('BOX_DRAWINGS_UP_LIGHT_AND_DOWN_HORIZONTAL_HEAVY, 'codepoint, 0x2548);
8377put('BOX_DRAWINGS_RIGHT_LIGHT_AND_LEFT_VERTICAL_HEAVY, 'codepoint, 0x2549);
8378put('BOX_DRAWINGS_LEFT_LIGHT_AND_RIGHT_VERTICAL_HEAVY, 'codepoint, 0x254A);
8379put('BOX_DRAWINGS_HEAVY_VERTICAL_AND_HORIZONTAL, 'codepoint, 0x254B);
8380put('BOX_DRAWINGS_LIGHT_DOUBLE_DASH_HORIZONTAL, 'codepoint, 0x254C);
8381put('BOX_DRAWINGS_HEAVY_DOUBLE_DASH_HORIZONTAL, 'codepoint, 0x254D);
8382put('BOX_DRAWINGS_LIGHT_DOUBLE_DASH_VERTICAL, 'codepoint, 0x254E);
8383put('BOX_DRAWINGS_HEAVY_DOUBLE_DASH_VERTICAL, 'codepoint, 0x254F);
8384put('BOX_DRAWINGS_DOUBLE_HORIZONTAL, 'codepoint, 0x2550);
8385put('BOX_DRAWINGS_DOUBLE_VERTICAL, 'codepoint, 0x2551);
8386put('BOX_DRAWINGS_DOWN_SINGLE_AND_RIGHT_DOUBLE, 'codepoint, 0x2552);
8387put('BOX_DRAWINGS_DOWN_DOUBLE_AND_RIGHT_SINGLE, 'codepoint, 0x2553);
8388put('BOX_DRAWINGS_DOUBLE_DOWN_AND_RIGHT, 'codepoint, 0x2554);
8389put('BOX_DRAWINGS_DOWN_SINGLE_AND_LEFT_DOUBLE, 'codepoint, 0x2555);
8390put('BOX_DRAWINGS_DOWN_DOUBLE_AND_LEFT_SINGLE, 'codepoint, 0x2556);
8391put('BOX_DRAWINGS_DOUBLE_DOWN_AND_LEFT, 'codepoint, 0x2557);
8392put('BOX_DRAWINGS_UP_SINGLE_AND_RIGHT_DOUBLE, 'codepoint, 0x2558);
8393put('BOX_DRAWINGS_UP_DOUBLE_AND_RIGHT_SINGLE, 'codepoint, 0x2559);
8394put('BOX_DRAWINGS_DOUBLE_UP_AND_RIGHT, 'codepoint, 0x255A);
8395put('BOX_DRAWINGS_UP_SINGLE_AND_LEFT_DOUBLE, 'codepoint, 0x255B);
8396put('BOX_DRAWINGS_UP_DOUBLE_AND_LEFT_SINGLE, 'codepoint, 0x255C);
8397put('BOX_DRAWINGS_DOUBLE_UP_AND_LEFT, 'codepoint, 0x255D);
8398put('BOX_DRAWINGS_VERTICAL_SINGLE_AND_RIGHT_DOUBLE, 'codepoint, 0x255E);
8399put('BOX_DRAWINGS_VERTICAL_DOUBLE_AND_RIGHT_SINGLE, 'codepoint, 0x255F);
8400put('BOX_DRAWINGS_DOUBLE_VERTICAL_AND_RIGHT, 'codepoint, 0x2560);
8401put('BOX_DRAWINGS_VERTICAL_SINGLE_AND_LEFT_DOUBLE, 'codepoint, 0x2561);
8402put('BOX_DRAWINGS_VERTICAL_DOUBLE_AND_LEFT_SINGLE, 'codepoint, 0x2562);
8403put('BOX_DRAWINGS_DOUBLE_VERTICAL_AND_LEFT, 'codepoint, 0x2563);
8404put('BOX_DRAWINGS_DOWN_SINGLE_AND_HORIZONTAL_DOUBLE, 'codepoint, 0x2564);
8405put('BOX_DRAWINGS_DOWN_DOUBLE_AND_HORIZONTAL_SINGLE, 'codepoint, 0x2565);
8406put('BOX_DRAWINGS_DOUBLE_DOWN_AND_HORIZONTAL, 'codepoint, 0x2566);
8407put('BOX_DRAWINGS_UP_SINGLE_AND_HORIZONTAL_DOUBLE, 'codepoint, 0x2567);
8408put('BOX_DRAWINGS_UP_DOUBLE_AND_HORIZONTAL_SINGLE, 'codepoint, 0x2568);
8409put('BOX_DRAWINGS_DOUBLE_UP_AND_HORIZONTAL, 'codepoint, 0x2569);
8410put('BOX_DRAWINGS_VERTICAL_SINGLE_AND_HORIZONTAL_DOUBLE, 'codepoint, 0x256A);
8411put('BOX_DRAWINGS_VERTICAL_DOUBLE_AND_HORIZONTAL_SINGLE, 'codepoint, 0x256B);
8412put('BOX_DRAWINGS_DOUBLE_VERTICAL_AND_HORIZONTAL, 'codepoint, 0x256C);
8413put('BOX_DRAWINGS_LIGHT_ARC_DOWN_AND_RIGHT, 'codepoint, 0x256D);
8414put('BOX_DRAWINGS_LIGHT_ARC_DOWN_AND_LEFT, 'codepoint, 0x256E);
8415put('BOX_DRAWINGS_LIGHT_ARC_UP_AND_LEFT, 'codepoint, 0x256F);
8416put('BOX_DRAWINGS_LIGHT_ARC_UP_AND_RIGHT, 'codepoint, 0x2570);
8417put('BOX_DRAWINGS_LIGHT_DIAGONAL_UPPER_RIGHT_TO_LOWER_LEFT, 'codepoint, 0x2571);
8418put('BOX_DRAWINGS_LIGHT_DIAGONAL_UPPER_LEFT_TO_LOWER_RIGHT, 'codepoint, 0x2572);
8419put('BOX_DRAWINGS_LIGHT_DIAGONAL_CROSS, 'codepoint, 0x2573);
8420put('BOX_DRAWINGS_LIGHT_LEFT, 'codepoint, 0x2574);
8421put('BOX_DRAWINGS_LIGHT_UP, 'codepoint, 0x2575);
8422put('BOX_DRAWINGS_LIGHT_RIGHT, 'codepoint, 0x2576);
8423put('BOX_DRAWINGS_LIGHT_DOWN, 'codepoint, 0x2577);
8424put('BOX_DRAWINGS_HEAVY_LEFT, 'codepoint, 0x2578);
8425put('BOX_DRAWINGS_HEAVY_UP, 'codepoint, 0x2579);
8426put('BOX_DRAWINGS_HEAVY_RIGHT, 'codepoint, 0x257A);
8427put('BOX_DRAWINGS_HEAVY_DOWN, 'codepoint, 0x257B);
8428put('BOX_DRAWINGS_LIGHT_LEFT_AND_HEAVY_RIGHT, 'codepoint, 0x257C);
8429put('BOX_DRAWINGS_LIGHT_UP_AND_HEAVY_DOWN, 'codepoint, 0x257D);
8430put('BOX_DRAWINGS_HEAVY_LEFT_AND_LIGHT_RIGHT, 'codepoint, 0x257E);
8431put('BOX_DRAWINGS_HEAVY_UP_AND_LIGHT_DOWN, 'codepoint, 0x257F);
8432put('UPPER_HALF_BLOCK, 'codepoint, 0x2580);
8433put('LOWER_ONE_EIGHTH_BLOCK, 'codepoint, 0x2581);
8434put('LOWER_ONE_QUARTER_BLOCK, 'codepoint, 0x2582);
8435put('LOWER_THREE_EIGHTHS_BLOCK, 'codepoint, 0x2583);
8436put('LOWER_HALF_BLOCK, 'codepoint, 0x2584);
8437put('LOWER_FIVE_EIGHTHS_BLOCK, 'codepoint, 0x2585);
8438put('LOWER_THREE_QUARTERS_BLOCK, 'codepoint, 0x2586);
8439put('LOWER_SEVEN_EIGHTHS_BLOCK, 'codepoint, 0x2587);
8440put('FULL_BLOCK, 'codepoint, 0x2588);
8441put('LEFT_SEVEN_EIGHTHS_BLOCK, 'codepoint, 0x2589);
8442put('LEFT_THREE_QUARTERS_BLOCK, 'codepoint, 0x258A);
8443put('LEFT_FIVE_EIGHTHS_BLOCK, 'codepoint, 0x258B);
8444put('LEFT_HALF_BLOCK, 'codepoint, 0x258C);
8445put('LEFT_THREE_EIGHTHS_BLOCK, 'codepoint, 0x258D);
8446put('LEFT_ONE_QUARTER_BLOCK, 'codepoint, 0x258E);
8447put('LEFT_ONE_EIGHTH_BLOCK, 'codepoint, 0x258F);
8448put('RIGHT_HALF_BLOCK, 'codepoint, 0x2590);
8449put('LIGHT_SHADE, 'codepoint, 0x2591);
8450put('MEDIUM_SHADE, 'codepoint, 0x2592);
8451put('DARK_SHADE, 'codepoint, 0x2593);
8452put('UPPER_ONE_EIGHTH_BLOCK, 'codepoint, 0x2594);
8453put('RIGHT_ONE_EIGHTH_BLOCK, 'codepoint, 0x2595);
8454put('QUADRANT_LOWER_LEFT, 'codepoint, 0x2596);
8455put('QUADRANT_LOWER_RIGHT, 'codepoint, 0x2597);
8456put('QUADRANT_UPPER_LEFT, 'codepoint, 0x2598);
8457put('QUADRANT_UPPER_LEFT_AND_LOWER_LEFT_AND_LOWER_RIGHT, 'codepoint, 0x2599);
8458put('QUADRANT_UPPER_LEFT_AND_LOWER_RIGHT, 'codepoint, 0x259A);
8459put('QUADRANT_UPPER_LEFT_AND_UPPER_RIGHT_AND_LOWER_LEFT, 'codepoint, 0x259B);
8460put('QUADRANT_UPPER_LEFT_AND_UPPER_RIGHT_AND_LOWER_RIGHT, 'codepoint, 0x259C);
8461put('QUADRANT_UPPER_RIGHT, 'codepoint, 0x259D);
8462put('QUADRANT_UPPER_RIGHT_AND_LOWER_LEFT, 'codepoint, 0x259E);
8463put('QUADRANT_UPPER_RIGHT_AND_LOWER_LEFT_AND_LOWER_RIGHT, 'codepoint, 0x259F);
8464put('BLACK_SQUARE, 'codepoint, 0x25A0);
8465put('WHITE_SQUARE, 'codepoint, 0x25A1);
8466put('WHITE_SQUARE_WITH_ROUNDED_CORNERS, 'codepoint, 0x25A2);
8467put('WHITE_SQUARE_CONTAINING_BLACK_SMALL_SQUARE, 'codepoint, 0x25A3);
8468put('SQUARE_WITH_HORIZONTAL_FILL, 'codepoint, 0x25A4);
8469put('SQUARE_WITH_VERTICAL_FILL, 'codepoint, 0x25A5);
8470put('SQUARE_WITH_ORTHOGONAL_CROSSHATCH_FILL, 'codepoint, 0x25A6);
8471put('SQUARE_WITH_UPPER_LEFT_TO_LOWER_RIGHT_FILL, 'codepoint, 0x25A7);
8472put('SQUARE_WITH_UPPER_RIGHT_TO_LOWER_LEFT_FILL, 'codepoint, 0x25A8);
8473put('SQUARE_WITH_DIAGONAL_CROSSHATCH_FILL, 'codepoint, 0x25A9);
8474put('BLACK_SMALL_SQUARE, 'codepoint, 0x25AA);
8475put('WHITE_SMALL_SQUARE, 'codepoint, 0x25AB);
8476put('BLACK_RECTANGLE, 'codepoint, 0x25AC);
8477put('WHITE_RECTANGLE, 'codepoint, 0x25AD);
8478put('BLACK_VERTICAL_RECTANGLE, 'codepoint, 0x25AE);
8479put('WHITE_VERTICAL_RECTANGLE, 'codepoint, 0x25AF);
8480put('BLACK_PARALLELOGRAM, 'codepoint, 0x25B0);
8481put('WHITE_PARALLELOGRAM, 'codepoint, 0x25B1);
8482put('BLACK_UP_POINTING_TRIANGLE, 'codepoint, 0x25B2);
8483put('WHITE_UP_POINTING_TRIANGLE, 'codepoint, 0x25B3);
8484put('BLACK_UP_POINTING_SMALL_TRIANGLE, 'codepoint, 0x25B4);
8485put('WHITE_UP_POINTING_SMALL_TRIANGLE, 'codepoint, 0x25B5);
8486put('BLACK_RIGHT_POINTING_TRIANGLE, 'codepoint, 0x25B6);
8487put('WHITE_RIGHT_POINTING_TRIANGLE, 'codepoint, 0x25B7);
8488put('BLACK_RIGHT_POINTING_SMALL_TRIANGLE, 'codepoint, 0x25B8);
8489put('WHITE_RIGHT_POINTING_SMALL_TRIANGLE, 'codepoint, 0x25B9);
8490put('BLACK_RIGHT_POINTING_POINTER, 'codepoint, 0x25BA);
8491put('WHITE_RIGHT_POINTING_POINTER, 'codepoint, 0x25BB);
8492put('BLACK_DOWN_POINTING_TRIANGLE, 'codepoint, 0x25BC);
8493put('WHITE_DOWN_POINTING_TRIANGLE, 'codepoint, 0x25BD);
8494put('BLACK_DOWN_POINTING_SMALL_TRIANGLE, 'codepoint, 0x25BE);
8495put('WHITE_DOWN_POINTING_SMALL_TRIANGLE, 'codepoint, 0x25BF);
8496put('BLACK_LEFT_POINTING_TRIANGLE, 'codepoint, 0x25C0);
8497put('WHITE_LEFT_POINTING_TRIANGLE, 'codepoint, 0x25C1);
8498put('BLACK_LEFT_POINTING_SMALL_TRIANGLE, 'codepoint, 0x25C2);
8499put('WHITE_LEFT_POINTING_SMALL_TRIANGLE, 'codepoint, 0x25C3);
8500put('BLACK_LEFT_POINTING_POINTER, 'codepoint, 0x25C4);
8501put('WHITE_LEFT_POINTING_POINTER, 'codepoint, 0x25C5);
8502put('BLACK_DIAMOND, 'codepoint, 0x25C6);
8503put('WHITE_DIAMOND, 'codepoint, 0x25C7);
8504put('WHITE_DIAMOND_CONTAINING_BLACK_SMALL_DIAMOND, 'codepoint, 0x25C8);
8505put('FISHEYE, 'codepoint, 0x25C9);
8506put('LOZENGE, 'codepoint, 0x25CA);
8507put('WHITE_CIRCLE, 'codepoint, 0x25CB);
8508put('DOTTED_CIRCLE, 'codepoint, 0x25CC);
8509put('CIRCLE_WITH_VERTICAL_FILL, 'codepoint, 0x25CD);
8510put('BULLSEYE, 'codepoint, 0x25CE);
8511put('BLACK_CIRCLE, 'codepoint, 0x25CF);
8512put('CIRCLE_WITH_LEFT_HALF_BLACK, 'codepoint, 0x25D0);
8513put('CIRCLE_WITH_RIGHT_HALF_BLACK, 'codepoint, 0x25D1);
8514put('CIRCLE_WITH_LOWER_HALF_BLACK, 'codepoint, 0x25D2);
8515put('CIRCLE_WITH_UPPER_HALF_BLACK, 'codepoint, 0x25D3);
8516put('CIRCLE_WITH_UPPER_RIGHT_QUADRANT_BLACK, 'codepoint, 0x25D4);
8517put('CIRCLE_WITH_ALL_BUT_UPPER_LEFT_QUADRANT_BLACK, 'codepoint, 0x25D5);
8518put('LEFT_HALF_BLACK_CIRCLE, 'codepoint, 0x25D6);
8519put('RIGHT_HALF_BLACK_CIRCLE, 'codepoint, 0x25D7);
8520put('INVERSE_BULLET, 'codepoint, 0x25D8);
8521put('INVERSE_WHITE_CIRCLE, 'codepoint, 0x25D9);
8522put('UPPER_HALF_INVERSE_WHITE_CIRCLE, 'codepoint, 0x25DA);
8523put('LOWER_HALF_INVERSE_WHITE_CIRCLE, 'codepoint, 0x25DB);
8524put('UPPER_LEFT_QUADRANT_CIRCULAR_ARC, 'codepoint, 0x25DC);
8525put('UPPER_RIGHT_QUADRANT_CIRCULAR_ARC, 'codepoint, 0x25DD);
8526put('LOWER_RIGHT_QUADRANT_CIRCULAR_ARC, 'codepoint, 0x25DE);
8527put('LOWER_LEFT_QUADRANT_CIRCULAR_ARC, 'codepoint, 0x25DF);
8528put('UPPER_HALF_CIRCLE, 'codepoint, 0x25E0);
8529put('LOWER_HALF_CIRCLE, 'codepoint, 0x25E1);
8530put('BLACK_LOWER_RIGHT_TRIANGLE, 'codepoint, 0x25E2);
8531put('BLACK_LOWER_LEFT_TRIANGLE, 'codepoint, 0x25E3);
8532put('BLACK_UPPER_LEFT_TRIANGLE, 'codepoint, 0x25E4);
8533put('BLACK_UPPER_RIGHT_TRIANGLE, 'codepoint, 0x25E5);
8534put('WHITE_BULLET, 'codepoint, 0x25E6);
8535put('SQUARE_WITH_LEFT_HALF_BLACK, 'codepoint, 0x25E7);
8536put('SQUARE_WITH_RIGHT_HALF_BLACK, 'codepoint, 0x25E8);
8537put('SQUARE_WITH_UPPER_LEFT_DIAGONAL_HALF_BLACK, 'codepoint, 0x25E9);
8538put('SQUARE_WITH_LOWER_RIGHT_DIAGONAL_HALF_BLACK, 'codepoint, 0x25EA);
8539put('WHITE_SQUARE_WITH_VERTICAL_BISECTING_LINE, 'codepoint, 0x25EB);
8540put('WHITE_UP_POINTING_TRIANGLE_WITH_DOT, 'codepoint, 0x25EC);
8541put('UP_POINTING_TRIANGLE_WITH_LEFT_HALF_BLACK, 'codepoint, 0x25ED);
8542put('UP_POINTING_TRIANGLE_WITH_RIGHT_HALF_BLACK, 'codepoint, 0x25EE);
8543put('LARGE_CIRCLE, 'codepoint, 0x25EF);
8544put('WHITE_SQUARE_WITH_UPPER_LEFT_QUADRANT, 'codepoint, 0x25F0);
8545put('WHITE_SQUARE_WITH_LOWER_LEFT_QUADRANT, 'codepoint, 0x25F1);
8546put('WHITE_SQUARE_WITH_LOWER_RIGHT_QUADRANT, 'codepoint, 0x25F2);
8547put('WHITE_SQUARE_WITH_UPPER_RIGHT_QUADRANT, 'codepoint, 0x25F3);
8548put('WHITE_CIRCLE_WITH_UPPER_LEFT_QUADRANT, 'codepoint, 0x25F4);
8549put('WHITE_CIRCLE_WITH_LOWER_LEFT_QUADRANT, 'codepoint, 0x25F5);
8550put('WHITE_CIRCLE_WITH_LOWER_RIGHT_QUADRANT, 'codepoint, 0x25F6);
8551put('WHITE_CIRCLE_WITH_UPPER_RIGHT_QUADRANT, 'codepoint, 0x25F7);
8552put('UPPER_LEFT_TRIANGLE, 'codepoint, 0x25F8);
8553put('UPPER_RIGHT_TRIANGLE, 'codepoint, 0x25F9);
8554put('LOWER_LEFT_TRIANGLE, 'codepoint, 0x25FA);
8555put('WHITE_MEDIUM_SQUARE, 'codepoint, 0x25FB);
8556put('BLACK_MEDIUM_SQUARE, 'codepoint, 0x25FC);
8557put('WHITE_MEDIUM_SMALL_SQUARE, 'codepoint, 0x25FD);
8558put('BLACK_MEDIUM_SMALL_SQUARE, 'codepoint, 0x25FE);
8559put('LOWER_RIGHT_TRIANGLE, 'codepoint, 0x25FF);
8560put('BLACK_SUN_WITH_RAYS, 'codepoint, 0x2600);
8561put('CLOUD, 'codepoint, 0x2601);
8562put('UMBRELLA, 'codepoint, 0x2602);
8563put('SNOWMAN, 'codepoint, 0x2603);
8564put('COMET, 'codepoint, 0x2604);
8565put('BLACK_STAR, 'codepoint, 0x2605);
8566put('WHITE_STAR, 'codepoint, 0x2606);
8567put('LIGHTNING, 'codepoint, 0x2607);
8568put('THUNDERSTORM, 'codepoint, 0x2608);
8569put('SUN, 'codepoint, 0x2609);
8570put('ASCENDING_NODE, 'codepoint, 0x260A);
8571put('DESCENDING_NODE, 'codepoint, 0x260B);
8572put('CONJUNCTION, 'codepoint, 0x260C);
8573put('OPPOSITION, 'codepoint, 0x260D);
8574put('BLACK_TELEPHONE, 'codepoint, 0x260E);
8575put('WHITE_TELEPHONE, 'codepoint, 0x260F);
8576put('BALLOT_BOX, 'codepoint, 0x2610);
8577put('BALLOT_BOX_WITH_CHECK, 'codepoint, 0x2611);
8578put('BALLOT_BOX_WITH_X, 'codepoint, 0x2612);
8579put('SALTIRE, 'codepoint, 0x2613);
8580put('UMBRELLA_WITH_RAIN_DROPS, 'codepoint, 0x2614);
8581put('HOT_BEVERAGE, 'codepoint, 0x2615);
8582put('WHITE_SHOGI_PIECE, 'codepoint, 0x2616);
8583put('BLACK_SHOGI_PIECE, 'codepoint, 0x2617);
8584put('SHAMROCK, 'codepoint, 0x2618);
8585put('REVERSED_ROTATED_FLORAL_HEART_BULLET, 'codepoint, 0x2619);
8586put('BLACK_LEFT_POINTING_INDEX, 'codepoint, 0x261A);
8587put('BLACK_RIGHT_POINTING_INDEX, 'codepoint, 0x261B);
8588put('WHITE_LEFT_POINTING_INDEX, 'codepoint, 0x261C);
8589put('WHITE_UP_POINTING_INDEX, 'codepoint, 0x261D);
8590put('WHITE_RIGHT_POINTING_INDEX, 'codepoint, 0x261E);
8591put('WHITE_DOWN_POINTING_INDEX, 'codepoint, 0x261F);
8592put('SKULL_AND_CROSSBONES, 'codepoint, 0x2620);
8593put('CAUTION_SIGN, 'codepoint, 0x2621);
8594put('RADIOACTIVE_SIGN, 'codepoint, 0x2622);
8595put('BIOHAZARD_SIGN, 'codepoint, 0x2623);
8596put('CADUCEUS, 'codepoint, 0x2624);
8597put('ANKH, 'codepoint, 0x2625);
8598put('ORTHODOX_CROSS, 'codepoint, 0x2626);
8599put('CHI_RHO, 'codepoint, 0x2627);
8600put('CROSS_OF_LORRAINE, 'codepoint, 0x2628);
8601put('CROSS_OF_JERUSALEM, 'codepoint, 0x2629);
8602put('STAR_AND_CRESCENT, 'codepoint, 0x262A);
8603put('FARSI_SYMBOL, 'codepoint, 0x262B);
8604put('ADI_SHAKTI, 'codepoint, 0x262C);
8605put('HAMMER_AND_SICKLE, 'codepoint, 0x262D);
8606put('PEACE_SYMBOL, 'codepoint, 0x262E);
8607put('YIN_YANG, 'codepoint, 0x262F);
8608put('TRIGRAM_FOR_HEAVEN, 'codepoint, 0x2630);
8609put('TRIGRAM_FOR_LAKE, 'codepoint, 0x2631);
8610put('TRIGRAM_FOR_FIRE, 'codepoint, 0x2632);
8611put('TRIGRAM_FOR_THUNDER, 'codepoint, 0x2633);
8612put('TRIGRAM_FOR_WIND, 'codepoint, 0x2634);
8613put('TRIGRAM_FOR_WATER, 'codepoint, 0x2635);
8614put('TRIGRAM_FOR_MOUNTAIN, 'codepoint, 0x2636);
8615put('TRIGRAM_FOR_EARTH, 'codepoint, 0x2637);
8616put('WHEEL_OF_DHARMA, 'codepoint, 0x2638);
8617put('WHITE_FROWNING_FACE, 'codepoint, 0x2639);
8618put('WHITE_SMILING_FACE, 'codepoint, 0x263A);
8619put('BLACK_SMILING_FACE, 'codepoint, 0x263B);
8620put('WHITE_SUN_WITH_RAYS, 'codepoint, 0x263C);
8621put('FIRST_QUARTER_MOON, 'codepoint, 0x263D);
8622put('LAST_QUARTER_MOON, 'codepoint, 0x263E);
8623put('MERCURY, 'codepoint, 0x263F);
8624put('FEMALE_SIGN, 'codepoint, 0x2640);
8625put('EARTH, 'codepoint, 0x2641);
8626put('MALE_SIGN, 'codepoint, 0x2642);
8627put('JUPITER, 'codepoint, 0x2643);
8628put('SATURN, 'codepoint, 0x2644);
8629put('URANUS, 'codepoint, 0x2645);
8630put('NEPTUNE, 'codepoint, 0x2646);
8631put('PLUTO, 'codepoint, 0x2647);
8632put('ARIES, 'codepoint, 0x2648);
8633put('TAURUS, 'codepoint, 0x2649);
8634put('GEMINI, 'codepoint, 0x264A);
8635put('CANCER, 'codepoint, 0x264B);
8636put('LEO, 'codepoint, 0x264C);
8637put('VIRGO, 'codepoint, 0x264D);
8638put('LIBRA, 'codepoint, 0x264E);
8639put('SCORPIUS, 'codepoint, 0x264F);
8640put('SAGITTARIUS, 'codepoint, 0x2650);
8641put('CAPRICORN, 'codepoint, 0x2651);
8642put('AQUARIUS, 'codepoint, 0x2652);
8643put('PISCES, 'codepoint, 0x2653);
8644put('WHITE_CHESS_KING, 'codepoint, 0x2654);
8645put('WHITE_CHESS_QUEEN, 'codepoint, 0x2655);
8646put('WHITE_CHESS_ROOK, 'codepoint, 0x2656);
8647put('WHITE_CHESS_BISHOP, 'codepoint, 0x2657);
8648put('WHITE_CHESS_KNIGHT, 'codepoint, 0x2658);
8649put('WHITE_CHESS_PAWN, 'codepoint, 0x2659);
8650put('BLACK_CHESS_KING, 'codepoint, 0x265A);
8651put('BLACK_CHESS_QUEEN, 'codepoint, 0x265B);
8652put('BLACK_CHESS_ROOK, 'codepoint, 0x265C);
8653put('BLACK_CHESS_BISHOP, 'codepoint, 0x265D);
8654put('BLACK_CHESS_KNIGHT, 'codepoint, 0x265E);
8655put('BLACK_CHESS_PAWN, 'codepoint, 0x265F);
8656put('BLACK_SPADE_SUIT, 'codepoint, 0x2660);
8657put('WHITE_HEART_SUIT, 'codepoint, 0x2661);
8658put('WHITE_DIAMOND_SUIT, 'codepoint, 0x2662);
8659put('BLACK_CLUB_SUIT, 'codepoint, 0x2663);
8660put('WHITE_SPADE_SUIT, 'codepoint, 0x2664);
8661put('BLACK_HEART_SUIT, 'codepoint, 0x2665);
8662put('BLACK_DIAMOND_SUIT, 'codepoint, 0x2666);
8663put('WHITE_CLUB_SUIT, 'codepoint, 0x2667);
8664put('HOT_SPRINGS, 'codepoint, 0x2668);
8665put('QUARTER_NOTE, 'codepoint, 0x2669);
8666put('EIGHTH_NOTE, 'codepoint, 0x266A);
8667put('BEAMED_EIGHTH_NOTES, 'codepoint, 0x266B);
8668put('BEAMED_SIXTEENTH_NOTES, 'codepoint, 0x266C);
8669put('MUSIC_FLAT_SIGN, 'codepoint, 0x266D);
8670put('MUSIC_NATURAL_SIGN, 'codepoint, 0x266E);
8671put('MUSIC_SHARP_SIGN, 'codepoint, 0x266F);
8672put('WEST_SYRIAC_CROSS, 'codepoint, 0x2670);
8673put('EAST_SYRIAC_CROSS, 'codepoint, 0x2671);
8674put('UNIVERSAL_RECYCLING_SYMBOL, 'codepoint, 0x2672);
8675put('RECYCLING_SYMBOL_FOR_TYPE_1_PLASTICS, 'codepoint, 0x2673);
8676put('RECYCLING_SYMBOL_FOR_TYPE_2_PLASTICS, 'codepoint, 0x2674);
8677put('RECYCLING_SYMBOL_FOR_TYPE_3_PLASTICS, 'codepoint, 0x2675);
8678put('RECYCLING_SYMBOL_FOR_TYPE_4_PLASTICS, 'codepoint, 0x2676);
8679put('RECYCLING_SYMBOL_FOR_TYPE_5_PLASTICS, 'codepoint, 0x2677);
8680put('RECYCLING_SYMBOL_FOR_TYPE_6_PLASTICS, 'codepoint, 0x2678);
8681put('RECYCLING_SYMBOL_FOR_TYPE_7_PLASTICS, 'codepoint, 0x2679);
8682put('RECYCLING_SYMBOL_FOR_GENERIC_MATERIALS, 'codepoint, 0x267A);
8683put('BLACK_UNIVERSAL_RECYCLING_SYMBOL, 'codepoint, 0x267B);
8684put('RECYCLED_PAPER_SYMBOL, 'codepoint, 0x267C);
8685put('PARTIALLY_RECYCLED_PAPER_SYMBOL, 'codepoint, 0x267D);
8686put('PERMANENT_PAPER_SIGN, 'codepoint, 0x267E);
8687put('WHEELCHAIR_SYMBOL, 'codepoint, 0x267F);
8688put('DIE_FACE_1, 'codepoint, 0x2680);
8689put('DIE_FACE_2, 'codepoint, 0x2681);
8690put('DIE_FACE_3, 'codepoint, 0x2682);
8691put('DIE_FACE_4, 'codepoint, 0x2683);
8692put('DIE_FACE_5, 'codepoint, 0x2684);
8693put('DIE_FACE_6, 'codepoint, 0x2685);
8694put('WHITE_CIRCLE_WITH_DOT_RIGHT, 'codepoint, 0x2686);
8695put('WHITE_CIRCLE_WITH_TWO_DOTS, 'codepoint, 0x2687);
8696put('BLACK_CIRCLE_WITH_WHITE_DOT_RIGHT, 'codepoint, 0x2688);
8697put('BLACK_CIRCLE_WITH_TWO_WHITE_DOTS, 'codepoint, 0x2689);
8698put('MONOGRAM_FOR_YANG, 'codepoint, 0x268A);
8699put('MONOGRAM_FOR_YIN, 'codepoint, 0x268B);
8700put('DIGRAM_FOR_GREATER_YANG, 'codepoint, 0x268C);
8701put('DIGRAM_FOR_LESSER_YIN, 'codepoint, 0x268D);
8702put('DIGRAM_FOR_LESSER_YANG, 'codepoint, 0x268E);
8703put('DIGRAM_FOR_GREATER_YIN, 'codepoint, 0x268F);
8704put('WHITE_FLAG, 'codepoint, 0x2690);
8705put('BLACK_FLAG, 'codepoint, 0x2691);
8706put('HAMMER_AND_PICK, 'codepoint, 0x2692);
8707put('ANCHOR, 'codepoint, 0x2693);
8708put('CROSSED_SWORDS, 'codepoint, 0x2694);
8709put('STAFF_OF_AESCULAPIUS, 'codepoint, 0x2695);
8710put('SCALES, 'codepoint, 0x2696);
8711put('ALEMBIC, 'codepoint, 0x2697);
8712put('FLOWER, 'codepoint, 0x2698);
8713put('GEAR, 'codepoint, 0x2699);
8714put('STAFF_OF_HERMES, 'codepoint, 0x269A);
8715put('ATOM_SYMBOL, 'codepoint, 0x269B);
8716put('FLEUR_DE_LIS, 'codepoint, 0x269C);
8717put('OUTLINED_WHITE_STAR, 'codepoint, 0x269D);
8718put('THREE_LINES_CONVERGING_RIGHT, 'codepoint, 0x269E);
8719put('THREE_LINES_CONVERGING_LEFT, 'codepoint, 0x269F);
8720put('WARNING_SIGN, 'codepoint, 0x26A0);
8721put('HIGH_VOLTAGE_SIGN, 'codepoint, 0x26A1);
8722put('DOUBLED_FEMALE_SIGN, 'codepoint, 0x26A2);
8723put('DOUBLED_MALE_SIGN, 'codepoint, 0x26A3);
8724put('INTERLOCKED_FEMALE_AND_MALE_SIGN, 'codepoint, 0x26A4);
8725put('MALE_AND_FEMALE_SIGN, 'codepoint, 0x26A5);
8726put('MALE_WITH_STROKE_SIGN, 'codepoint, 0x26A6);
8727put('MALE_WITH_STROKE_AND_MALE_AND_FEMALE_SIGN, 'codepoint, 0x26A7);
8728put('VERTICAL_MALE_WITH_STROKE_SIGN, 'codepoint, 0x26A8);
8729put('HORIZONTAL_MALE_WITH_STROKE_SIGN, 'codepoint, 0x26A9);
8730put('MEDIUM_WHITE_CIRCLE, 'codepoint, 0x26AA);
8731put('MEDIUM_BLACK_CIRCLE, 'codepoint, 0x26AB);
8732put('MEDIUM_SMALL_WHITE_CIRCLE, 'codepoint, 0x26AC);
8733put('MARRIAGE_SYMBOL, 'codepoint, 0x26AD);
8734put('DIVORCE_SYMBOL, 'codepoint, 0x26AE);
8735put('UNMARRIED_PARTNERSHIP_SYMBOL, 'codepoint, 0x26AF);
8736put('COFFIN, 'codepoint, 0x26B0);
8737put('FUNERAL_URN, 'codepoint, 0x26B1);
8738put('NEUTER, 'codepoint, 0x26B2);
8739put('CERES, 'codepoint, 0x26B3);
8740put('PALLAS, 'codepoint, 0x26B4);
8741put('JUNO, 'codepoint, 0x26B5);
8742put('VESTA, 'codepoint, 0x26B6);
8743put('CHIRON, 'codepoint, 0x26B7);
8744put('BLACK_MOON_LILITH, 'codepoint, 0x26B8);
8745put('SEXTILE, 'codepoint, 0x26B9);
8746put('SEMISEXTILE, 'codepoint, 0x26BA);
8747put('QUINCUNX, 'codepoint, 0x26BB);
8748put('SESQUIQUADRATE, 'codepoint, 0x26BC);
8749put('SOCCER_BALL, 'codepoint, 0x26BD);
8750put('BASEBALL, 'codepoint, 0x26BE);
8751put('SQUARED_KEY, 'codepoint, 0x26BF);
8752put('WHITE_DRAUGHTS_MAN, 'codepoint, 0x26C0);
8753put('WHITE_DRAUGHTS_KING, 'codepoint, 0x26C1);
8754put('BLACK_DRAUGHTS_MAN, 'codepoint, 0x26C2);
8755put('BLACK_DRAUGHTS_KING, 'codepoint, 0x26C3);
8756put('SNOWMAN_WITHOUT_SNOW, 'codepoint, 0x26C4);
8757put('SUN_BEHIND_CLOUD, 'codepoint, 0x26C5);
8758put('RAIN, 'codepoint, 0x26C6);
8759put('BLACK_SNOWMAN, 'codepoint, 0x26C7);
8760put('THUNDER_CLOUD_AND_RAIN, 'codepoint, 0x26C8);
8761put('TURNED_WHITE_SHOGI_PIECE, 'codepoint, 0x26C9);
8762put('TURNED_BLACK_SHOGI_PIECE, 'codepoint, 0x26CA);
8763put('WHITE_DIAMOND_IN_SQUARE, 'codepoint, 0x26CB);
8764put('CROSSING_LANES, 'codepoint, 0x26CC);
8765put('DISABLED_CAR, 'codepoint, 0x26CD);
8766put('OPHIUCHUS, 'codepoint, 0x26CE);
8767put('PICK, 'codepoint, 0x26CF);
8768put('CAR_SLIDING, 'codepoint, 0x26D0);
8769put('HELMET_WITH_WHITE_CROSS, 'codepoint, 0x26D1);
8770put('CIRCLED_CROSSING_LANES, 'codepoint, 0x26D2);
8771put('CHAINS, 'codepoint, 0x26D3);
8772put('NO_ENTRY, 'codepoint, 0x26D4);
8773put('ALTERNATE_ONE_WAY_LEFT_WAY_TRAFFIC, 'codepoint, 0x26D5);
8774put('BLACK_TWO_WAY_LEFT_WAY_TRAFFIC, 'codepoint, 0x26D6);
8775put('WHITE_TWO_WAY_LEFT_WAY_TRAFFIC, 'codepoint, 0x26D7);
8776put('BLACK_LEFT_LANE_MERGE, 'codepoint, 0x26D8);
8777put('WHITE_LEFT_LANE_MERGE, 'codepoint, 0x26D9);
8778put('DRIVE_SLOW_SIGN, 'codepoint, 0x26DA);
8779put('HEAVY_WHITE_DOWN_POINTING_TRIANGLE, 'codepoint, 0x26DB);
8780put('LEFT_CLOSED_ENTRY, 'codepoint, 0x26DC);
8781put('SQUARED_SALTIRE, 'codepoint, 0x26DD);
8782put('FALLING_DIAGONAL_IN_WHITE_CIRCLE_IN_BLACK_SQUARE, 'codepoint, 0x26DE);
8783put('BLACK_TRUCK, 'codepoint, 0x26DF);
8784put('RESTRICTED_LEFT_ENTRY_1, 'codepoint, 0x26E0);
8785put('RESTRICTED_LEFT_ENTRY_2, 'codepoint, 0x26E1);
8786put('ASTRONOMICAL_SYMBOL_FOR_URANUS, 'codepoint, 0x26E2);
8787put('HEAVY_CIRCLE_WITH_STROKE_AND_TWO_DOTS_ABOVE, 'codepoint, 0x26E3);
8788put('PENTAGRAM, 'codepoint, 0x26E4);
8789put('RIGHT_HANDED_INTERLACED_PENTAGRAM, 'codepoint, 0x26E5);
8790put('LEFT_HANDED_INTERLACED_PENTAGRAM, 'codepoint, 0x26E6);
8791put('INVERTED_PENTAGRAM, 'codepoint, 0x26E7);
8792put('BLACK_CROSS_ON_SHIELD, 'codepoint, 0x26E8);
8793put('SHINTO_SHRINE, 'codepoint, 0x26E9);
8794put('CHURCH, 'codepoint, 0x26EA);
8795put('CASTLE, 'codepoint, 0x26EB);
8796put('HISTORIC_SITE, 'codepoint, 0x26EC);
8797put('GEAR_WITHOUT_HUB, 'codepoint, 0x26ED);
8798put('GEAR_WITH_HANDLES, 'codepoint, 0x26EE);
8799put('MAP_SYMBOL_FOR_LIGHTHOUSE, 'codepoint, 0x26EF);
8800put('MOUNTAIN, 'codepoint, 0x26F0);
8801put('UMBRELLA_ON_GROUND, 'codepoint, 0x26F1);
8802put('FOUNTAIN, 'codepoint, 0x26F2);
8803put('FLAG_IN_HOLE, 'codepoint, 0x26F3);
8804put('FERRY, 'codepoint, 0x26F4);
8805put('SAILBOAT, 'codepoint, 0x26F5);
8806put('SQUARE_FOUR_CORNERS, 'codepoint, 0x26F6);
8807put('SKIER, 'codepoint, 0x26F7);
8808put('ICE_SKATE, 'codepoint, 0x26F8);
8809put('PERSON_WITH_BALL, 'codepoint, 0x26F9);
8810put('TENT, 'codepoint, 0x26FA);
8811put('JAPANESE_BANK_SYMBOL, 'codepoint, 0x26FB);
8812put('HEADSTONE_GRAVEYARD_SYMBOL, 'codepoint, 0x26FC);
8813put('FUEL_PUMP, 'codepoint, 0x26FD);
8814put('CUP_ON_BLACK_SQUARE, 'codepoint, 0x26FE);
8815put('WHITE_FLAG_WITH_HORIZONTAL_MIDDLE_BLACK_STRIPE, 'codepoint, 0x26FF);
8816put('BLACK_SAFETY_SCISSORS, 'codepoint, 0x2700);
8817put('UPPER_BLADE_SCISSORS, 'codepoint, 0x2701);
8818put('BLACK_SCISSORS, 'codepoint, 0x2702);
8819put('LOWER_BLADE_SCISSORS, 'codepoint, 0x2703);
8820put('WHITE_SCISSORS, 'codepoint, 0x2704);
8821put('WHITE_HEAVY_CHECK_MARK, 'codepoint, 0x2705);
8822put('TELEPHONE_LOCATION_SIGN, 'codepoint, 0x2706);
8823put('TAPE_DRIVE, 'codepoint, 0x2707);
8824put('AIRPLANE, 'codepoint, 0x2708);
8825put('ENVELOPE, 'codepoint, 0x2709);
8826put('RAISED_FIST, 'codepoint, 0x270A);
8827put('RAISED_HAND, 'codepoint, 0x270B);
8828put('VICTORY_HAND, 'codepoint, 0x270C);
8829put('WRITING_HAND, 'codepoint, 0x270D);
8830put('LOWER_RIGHT_PENCIL, 'codepoint, 0x270E);
8831put('PENCIL, 'codepoint, 0x270F);
8832put('UPPER_RIGHT_PENCIL, 'codepoint, 0x2710);
8833put('WHITE_NIB, 'codepoint, 0x2711);
8834put('BLACK_NIB, 'codepoint, 0x2712);
8835put('CHECK_MARK, 'codepoint, 0x2713);
8836put('HEAVY_CHECK_MARK, 'codepoint, 0x2714);
8837put('MULTIPLICATION_X, 'codepoint, 0x2715);
8838put('HEAVY_MULTIPLICATION_X, 'codepoint, 0x2716);
8839put('BALLOT_X, 'codepoint, 0x2717);
8840put('HEAVY_BALLOT_X, 'codepoint, 0x2718);
8841put('OUTLINED_GREEK_CROSS, 'codepoint, 0x2719);
8842put('HEAVY_GREEK_CROSS, 'codepoint, 0x271A);
8843put('OPEN_CENTRE_CROSS, 'codepoint, 0x271B);
8844put('HEAVY_OPEN_CENTRE_CROSS, 'codepoint, 0x271C);
8845put('LATIN_CROSS, 'codepoint, 0x271D);
8846put('SHADOWED_WHITE_LATIN_CROSS, 'codepoint, 0x271E);
8847put('OUTLINED_LATIN_CROSS, 'codepoint, 0x271F);
8848put('MALTESE_CROSS, 'codepoint, 0x2720);
8849put('STAR_OF_DAVID, 'codepoint, 0x2721);
8850put('FOUR_TEARDROP_SPOKED_ASTERISK, 'codepoint, 0x2722);
8851put('FOUR_BALLOON_SPOKED_ASTERISK, 'codepoint, 0x2723);
8852put('HEAVY_FOUR_BALLOON_SPOKED_ASTERISK, 'codepoint, 0x2724);
8853put('FOUR_CLUB_SPOKED_ASTERISK, 'codepoint, 0x2725);
8854put('BLACK_FOUR_POINTED_STAR, 'codepoint, 0x2726);
8855put('WHITE_FOUR_POINTED_STAR, 'codepoint, 0x2727);
8856put('SPARKLES, 'codepoint, 0x2728);
8857put('STRESS_OUTLINED_WHITE_STAR, 'codepoint, 0x2729);
8858put('CIRCLED_WHITE_STAR, 'codepoint, 0x272A);
8859put('OPEN_CENTRE_BLACK_STAR, 'codepoint, 0x272B);
8860put('BLACK_CENTRE_WHITE_STAR, 'codepoint, 0x272C);
8861put('OUTLINED_BLACK_STAR, 'codepoint, 0x272D);
8862put('HEAVY_OUTLINED_BLACK_STAR, 'codepoint, 0x272E);
8863put('PINWHEEL_STAR, 'codepoint, 0x272F);
8864put('SHADOWED_WHITE_STAR, 'codepoint, 0x2730);
8865put('HEAVY_ASTERISK, 'codepoint, 0x2731);
8866put('OPEN_CENTRE_ASTERISK, 'codepoint, 0x2732);
8867put('EIGHT_SPOKED_ASTERISK, 'codepoint, 0x2733);
8868put('EIGHT_POINTED_BLACK_STAR, 'codepoint, 0x2734);
8869put('EIGHT_POINTED_PINWHEEL_STAR, 'codepoint, 0x2735);
8870put('SIX_POINTED_BLACK_STAR, 'codepoint, 0x2736);
8871put('EIGHT_POINTED_RECTILINEAR_BLACK_STAR, 'codepoint, 0x2737);
8872put('HEAVY_EIGHT_POINTED_RECTILINEAR_BLACK_STAR, 'codepoint, 0x2738);
8873put('TWELVE_POINTED_BLACK_STAR, 'codepoint, 0x2739);
8874put('SIXTEEN_POINTED_ASTERISK, 'codepoint, 0x273A);
8875put('TEARDROP_SPOKED_ASTERISK, 'codepoint, 0x273B);
8876put('OPEN_CENTRE_TEARDROP_SPOKED_ASTERISK, 'codepoint, 0x273C);
8877put('HEAVY_TEARDROP_SPOKED_ASTERISK, 'codepoint, 0x273D);
8878put('SIX_PETALLED_BLACK_AND_WHITE_FLORETTE, 'codepoint, 0x273E);
8879put('BLACK_FLORETTE, 'codepoint, 0x273F);
8880put('WHITE_FLORETTE, 'codepoint, 0x2740);
8881put('EIGHT_PETALLED_OUTLINED_BLACK_FLORETTE, 'codepoint, 0x2741);
8882put('CIRCLED_OPEN_CENTRE_EIGHT_POINTED_STAR, 'codepoint, 0x2742);
8883put('HEAVY_TEARDROP_SPOKED_PINWHEEL_ASTERISK, 'codepoint, 0x2743);
8884put('SNOWFLAKE, 'codepoint, 0x2744);
8885put('TIGHT_TRIFOLIATE_SNOWFLAKE, 'codepoint, 0x2745);
8886put('HEAVY_CHEVRON_SNOWFLAKE, 'codepoint, 0x2746);
8887put('SPARKLE, 'codepoint, 0x2747);
8888put('HEAVY_SPARKLE, 'codepoint, 0x2748);
8889put('BALLOON_SPOKED_ASTERISK, 'codepoint, 0x2749);
8890put('EIGHT_TEARDROP_SPOKED_PROPELLER_ASTERISK, 'codepoint, 0x274A);
8891put('HEAVY_EIGHT_TEARDROP_SPOKED_PROPELLER_ASTERISK, 'codepoint, 0x274B);
8892put('CROSS_MARK, 'codepoint, 0x274C);
8893put('SHADOWED_WHITE_CIRCLE, 'codepoint, 0x274D);
8894put('NEGATIVE_SQUARED_CROSS_MARK, 'codepoint, 0x274E);
8895put('LOWER_RIGHT_DROP_SHADOWED_WHITE_SQUARE, 'codepoint, 0x274F);
8896put('UPPER_RIGHT_DROP_SHADOWED_WHITE_SQUARE, 'codepoint, 0x2750);
8897put('LOWER_RIGHT_SHADOWED_WHITE_SQUARE, 'codepoint, 0x2751);
8898put('UPPER_RIGHT_SHADOWED_WHITE_SQUARE, 'codepoint, 0x2752);
8899put('BLACK_QUESTION_MARK_ORNAMENT, 'codepoint, 0x2753);
8900put('WHITE_QUESTION_MARK_ORNAMENT, 'codepoint, 0x2754);
8901put('WHITE_EXCLAMATION_MARK_ORNAMENT, 'codepoint, 0x2755);
8902put('BLACK_DIAMOND_MINUS_WHITE_X, 'codepoint, 0x2756);
8903put('HEAVY_EXCLAMATION_MARK_SYMBOL, 'codepoint, 0x2757);
8904put('LIGHT_VERTICAL_BAR, 'codepoint, 0x2758);
8905put('MEDIUM_VERTICAL_BAR, 'codepoint, 0x2759);
8906put('HEAVY_VERTICAL_BAR, 'codepoint, 0x275A);
8907put('HEAVY_SINGLE_TURNED_COMMA_QUOTATION_MARK_ORNAMENT, 'codepoint, 0x275B);
8908put('HEAVY_SINGLE_COMMA_QUOTATION_MARK_ORNAMENT, 'codepoint, 0x275C);
8909put('HEAVY_DOUBLE_TURNED_COMMA_QUOTATION_MARK_ORNAMENT, 'codepoint, 0x275D);
8910put('HEAVY_DOUBLE_COMMA_QUOTATION_MARK_ORNAMENT, 'codepoint, 0x275E);
8911put('HEAVY_LOW_SINGLE_COMMA_QUOTATION_MARK_ORNAMENT, 'codepoint, 0x275F);
8912put('HEAVY_LOW_DOUBLE_COMMA_QUOTATION_MARK_ORNAMENT, 'codepoint, 0x2760);
8913put('CURVED_STEM_PARAGRAPH_SIGN_ORNAMENT, 'codepoint, 0x2761);
8914put('HEAVY_EXCLAMATION_MARK_ORNAMENT, 'codepoint, 0x2762);
8915put('HEAVY_HEART_EXCLAMATION_MARK_ORNAMENT, 'codepoint, 0x2763);
8916put('HEAVY_BLACK_HEART, 'codepoint, 0x2764);
8917put('ROTATED_HEAVY_BLACK_HEART_BULLET, 'codepoint, 0x2765);
8918put('FLORAL_HEART, 'codepoint, 0x2766);
8919put('ROTATED_FLORAL_HEART_BULLET, 'codepoint, 0x2767);
8920put('MEDIUM_LEFT_PARENTHESIS_ORNAMENT, 'codepoint, 0x2768);
8921put('MEDIUM_RIGHT_PARENTHESIS_ORNAMENT, 'codepoint, 0x2769);
8922put('MEDIUM_FLATTENED_LEFT_PARENTHESIS_ORNAMENT, 'codepoint, 0x276A);
8923put('MEDIUM_FLATTENED_RIGHT_PARENTHESIS_ORNAMENT, 'codepoint, 0x276B);
8924put('MEDIUM_LEFT_POINTING_ANGLE_BRACKET_ORNAMENT, 'codepoint, 0x276C);
8925put('MEDIUM_RIGHT_POINTING_ANGLE_BRACKET_ORNAMENT, 'codepoint, 0x276D);
8926put('HEAVY_LEFT_POINTING_ANGLE_QUOTATION_MARK_ORNAMENT, 'codepoint, 0x276E);
8927put('HEAVY_RIGHT_POINTING_ANGLE_QUOTATION_MARK_ORNAMENT, 'codepoint, 0x276F);
8928put('HEAVY_LEFT_POINTING_ANGLE_BRACKET_ORNAMENT, 'codepoint, 0x2770);
8929put('HEAVY_RIGHT_POINTING_ANGLE_BRACKET_ORNAMENT, 'codepoint, 0x2771);
8930put('LIGHT_LEFT_TORTOISE_SHELL_BRACKET_ORNAMENT, 'codepoint, 0x2772);
8931put('LIGHT_RIGHT_TORTOISE_SHELL_BRACKET_ORNAMENT, 'codepoint, 0x2773);
8932put('MEDIUM_LEFT_CURLY_BRACKET_ORNAMENT, 'codepoint, 0x2774);
8933put('MEDIUM_RIGHT_CURLY_BRACKET_ORNAMENT, 'codepoint, 0x2775);
8934put('DINGBAT_NEGATIVE_CIRCLED_DIGIT_ONE, 'codepoint, 0x2776);
8935put('DINGBAT_NEGATIVE_CIRCLED_DIGIT_TWO, 'codepoint, 0x2777);
8936put('DINGBAT_NEGATIVE_CIRCLED_DIGIT_THREE, 'codepoint, 0x2778);
8937put('DINGBAT_NEGATIVE_CIRCLED_DIGIT_FOUR, 'codepoint, 0x2779);
8938put('DINGBAT_NEGATIVE_CIRCLED_DIGIT_FIVE, 'codepoint, 0x277A);
8939put('DINGBAT_NEGATIVE_CIRCLED_DIGIT_SIX, 'codepoint, 0x277B);
8940put('DINGBAT_NEGATIVE_CIRCLED_DIGIT_SEVEN, 'codepoint, 0x277C);
8941put('DINGBAT_NEGATIVE_CIRCLED_DIGIT_EIGHT, 'codepoint, 0x277D);
8942put('DINGBAT_NEGATIVE_CIRCLED_DIGIT_NINE, 'codepoint, 0x277E);
8943put('DINGBAT_NEGATIVE_CIRCLED_NUMBER_TEN, 'codepoint, 0x277F);
8944put('DINGBAT_CIRCLED_SANS_SERIF_DIGIT_ONE, 'codepoint, 0x2780);
8945put('DINGBAT_CIRCLED_SANS_SERIF_DIGIT_TWO, 'codepoint, 0x2781);
8946put('DINGBAT_CIRCLED_SANS_SERIF_DIGIT_THREE, 'codepoint, 0x2782);
8947put('DINGBAT_CIRCLED_SANS_SERIF_DIGIT_FOUR, 'codepoint, 0x2783);
8948put('DINGBAT_CIRCLED_SANS_SERIF_DIGIT_FIVE, 'codepoint, 0x2784);
8949put('DINGBAT_CIRCLED_SANS_SERIF_DIGIT_SIX, 'codepoint, 0x2785);
8950put('DINGBAT_CIRCLED_SANS_SERIF_DIGIT_SEVEN, 'codepoint, 0x2786);
8951put('DINGBAT_CIRCLED_SANS_SERIF_DIGIT_EIGHT, 'codepoint, 0x2787);
8952put('DINGBAT_CIRCLED_SANS_SERIF_DIGIT_NINE, 'codepoint, 0x2788);
8953put('DINGBAT_CIRCLED_SANS_SERIF_NUMBER_TEN, 'codepoint, 0x2789);
8954put('DINGBAT_NEGATIVE_CIRCLED_SANS_SERIF_DIGIT_ONE, 'codepoint, 0x278A);
8955put('DINGBAT_NEGATIVE_CIRCLED_SANS_SERIF_DIGIT_TWO, 'codepoint, 0x278B);
8956put('DINGBAT_NEGATIVE_CIRCLED_SANS_SERIF_DIGIT_THREE, 'codepoint, 0x278C);
8957put('DINGBAT_NEGATIVE_CIRCLED_SANS_SERIF_DIGIT_FOUR, 'codepoint, 0x278D);
8958put('DINGBAT_NEGATIVE_CIRCLED_SANS_SERIF_DIGIT_FIVE, 'codepoint, 0x278E);
8959put('DINGBAT_NEGATIVE_CIRCLED_SANS_SERIF_DIGIT_SIX, 'codepoint, 0x278F);
8960put('DINGBAT_NEGATIVE_CIRCLED_SANS_SERIF_DIGIT_SEVEN, 'codepoint, 0x2790);
8961put('DINGBAT_NEGATIVE_CIRCLED_SANS_SERIF_DIGIT_EIGHT, 'codepoint, 0x2791);
8962put('DINGBAT_NEGATIVE_CIRCLED_SANS_SERIF_DIGIT_NINE, 'codepoint, 0x2792);
8963put('DINGBAT_NEGATIVE_CIRCLED_SANS_SERIF_NUMBER_TEN, 'codepoint, 0x2793);
8964put('HEAVY_WIDE_HEADED_RIGHTWARDS_ARROW, 'codepoint, 0x2794);
8965put('HEAVY_PLUS_SIGN, 'codepoint, 0x2795);
8966put('HEAVY_MINUS_SIGN, 'codepoint, 0x2796);
8967put('HEAVY_DIVISION_SIGN, 'codepoint, 0x2797);
8968put('HEAVY_SOUTH_EAST_ARROW, 'codepoint, 0x2798);
8969put('HEAVY_RIGHTWARDS_ARROW, 'codepoint, 0x2799);
8970put('HEAVY_NORTH_EAST_ARROW, 'codepoint, 0x279A);
8971put('DRAFTING_POINT_RIGHTWARDS_ARROW, 'codepoint, 0x279B);
8972put('HEAVY_ROUND_TIPPED_RIGHTWARDS_ARROW, 'codepoint, 0x279C);
8973put('TRIANGLE_HEADED_RIGHTWARDS_ARROW, 'codepoint, 0x279D);
8974put('HEAVY_TRIANGLE_HEADED_RIGHTWARDS_ARROW, 'codepoint, 0x279E);
8975put('DASHED_TRIANGLE_HEADED_RIGHTWARDS_ARROW, 'codepoint, 0x279F);
8976put('HEAVY_DASHED_TRIANGLE_HEADED_RIGHTWARDS_ARROW, 'codepoint, 0x27A0);
8977put('BLACK_RIGHTWARDS_ARROW, 'codepoint, 0x27A1);
8978put('THREE_D_TOP_LIGHTED_RIGHTWARDS_ARROWHEAD, 'codepoint, 0x27A2);
8979put('THREE_D_BOTTOM_LIGHTED_RIGHTWARDS_ARROWHEAD, 'codepoint, 0x27A3);
8980put('BLACK_RIGHTWARDS_ARROWHEAD, 'codepoint, 0x27A4);
8981put('HEAVY_BLACK_CURVED_DOWNWARDS_AND_RIGHTWARDS_ARROW, 'codepoint, 0x27A5);
8982put('HEAVY_BLACK_CURVED_UPWARDS_AND_RIGHTWARDS_ARROW, 'codepoint, 0x27A6);
8983put('SQUAT_BLACK_RIGHTWARDS_ARROW, 'codepoint, 0x27A7);
8984put('HEAVY_CONCAVE_POINTED_BLACK_RIGHTWARDS_ARROW, 'codepoint, 0x27A8);
8985put('RIGHT_SHADED_WHITE_RIGHTWARDS_ARROW, 'codepoint, 0x27A9);
8986put('LEFT_SHADED_WHITE_RIGHTWARDS_ARROW, 'codepoint, 0x27AA);
8987put('BACK_TILTED_SHADOWED_WHITE_RIGHTWARDS_ARROW, 'codepoint, 0x27AB);
8988put('FRONT_TILTED_SHADOWED_WHITE_RIGHTWARDS_ARROW, 'codepoint, 0x27AC);
8989put('HEAVY_LOWER_RIGHT_SHADOWED_WHITE_RIGHTWARDS_ARROW, 'codepoint, 0x27AD);
8990put('HEAVY_UPPER_RIGHT_SHADOWED_WHITE_RIGHTWARDS_ARROW, 'codepoint, 0x27AE);
8991put('NOTCHED_LOWER_RIGHT_SHADOWED_WHITE_RIGHTWARDS_ARROW, 'codepoint, 0x27AF);
8992put('CURLY_LOOP, 'codepoint, 0x27B0);
8993put('NOTCHED_UPPER_RIGHT_SHADOWED_WHITE_RIGHTWARDS_ARROW, 'codepoint, 0x27B1);
8994put('CIRCLED_HEAVY_WHITE_RIGHTWARDS_ARROW, 'codepoint, 0x27B2);
8995put('WHITE_FEATHERED_RIGHTWARDS_ARROW, 'codepoint, 0x27B3);
8996put('BLACK_FEATHERED_SOUTH_EAST_ARROW, 'codepoint, 0x27B4);
8997put('BLACK_FEATHERED_RIGHTWARDS_ARROW, 'codepoint, 0x27B5);
8998put('BLACK_FEATHERED_NORTH_EAST_ARROW, 'codepoint, 0x27B6);
8999put('HEAVY_BLACK_FEATHERED_SOUTH_EAST_ARROW, 'codepoint, 0x27B7);
9000put('HEAVY_BLACK_FEATHERED_RIGHTWARDS_ARROW, 'codepoint, 0x27B8);
9001put('HEAVY_BLACK_FEATHERED_NORTH_EAST_ARROW, 'codepoint, 0x27B9);
9002put('TEARDROP_BARBED_RIGHTWARDS_ARROW, 'codepoint, 0x27BA);
9003put('HEAVY_TEARDROP_SHANKED_RIGHTWARDS_ARROW, 'codepoint, 0x27BB);
9004put('WEDGE_TAILED_RIGHTWARDS_ARROW, 'codepoint, 0x27BC);
9005put('HEAVY_WEDGE_TAILED_RIGHTWARDS_ARROW, 'codepoint, 0x27BD);
9006put('OPEN_OUTLINED_RIGHTWARDS_ARROW, 'codepoint, 0x27BE);
9007put('DOUBLE_CURLY_LOOP, 'codepoint, 0x27BF);
9008put('THREE_DIMENSIONAL_ANGLE, 'codepoint, 0x27C0);
9009put('WHITE_TRIANGLE_CONTAINING_SMALL_WHITE_TRIANGLE, 'codepoint, 0x27C1);
9010put('PERPENDICULAR, 'codepoint, 0x27C2);
9011put('OPEN_SUBSET, 'codepoint, 0x27C3);
9012put('OPEN_SUPERSET, 'codepoint, 0x27C4);
9013put('LEFT_S_SHAPED_BAG_DELIMITER, 'codepoint, 0x27C5);
9014put('RIGHT_S_SHAPED_BAG_DELIMITER, 'codepoint, 0x27C6);
9015put('OR_WITH_DOT_INSIDE, 'codepoint, 0x27C7);
9016put('REVERSE_SOLIDUS_PRECEDING_SUBSET, 'codepoint, 0x27C8);
9017put('SUPERSET_PRECEDING_SOLIDUS, 'codepoint, 0x27C9);
9018put('VERTICAL_BAR_WITH_HORIZONTAL_STROKE, 'codepoint, 0x27CA);
9019put('MATHEMATICAL_RISING_DIAGONAL, 'codepoint, 0x27CB);
9020put('LONG_DIVISION, 'codepoint, 0x27CC);
9021put('MATHEMATICAL_FALLING_DIAGONAL, 'codepoint, 0x27CD);
9022put('SQUARED_LOGICAL_AND, 'codepoint, 0x27CE);
9023put('SQUARED_LOGICAL_OR, 'codepoint, 0x27CF);
9024put('WHITE_DIAMOND_WITH_CENTRED_DOT, 'codepoint, 0x27D0);
9025put('AND_WITH_DOT, 'codepoint, 0x27D1);
9026put('ELEMENT_OF_OPENING_UPWARDS, 'codepoint, 0x27D2);
9027put('LOWER_RIGHT_CORNER_WITH_DOT, 'codepoint, 0x27D3);
9028put('UPPER_LEFT_CORNER_WITH_DOT, 'codepoint, 0x27D4);
9029put('LEFT_OUTER_JOIN, 'codepoint, 0x27D5);
9030put('RIGHT_OUTER_JOIN, 'codepoint, 0x27D6);
9031put('FULL_OUTER_JOIN, 'codepoint, 0x27D7);
9032put('LARGE_UP_TACK, 'codepoint, 0x27D8);
9033put('LARGE_DOWN_TACK, 'codepoint, 0x27D9);
9034put('LEFT_AND_RIGHT_DOUBLE_TURNSTILE, 'codepoint, 0x27DA);
9035put('LEFT_AND_RIGHT_TACK, 'codepoint, 0x27DB);
9036put('LEFT_MULTIMAP, 'codepoint, 0x27DC);
9037put('LONG_RIGHT_TACK, 'codepoint, 0x27DD);
9038put('LONG_LEFT_TACK, 'codepoint, 0x27DE);
9039put('UP_TACK_WITH_CIRCLE_ABOVE, 'codepoint, 0x27DF);
9040put('LOZENGE_DIVIDED_BY_HORIZONTAL_RULE, 'codepoint, 0x27E0);
9041put('WHITE_CONCAVE_SIDED_DIAMOND, 'codepoint, 0x27E1);
9042put('WHITE_CONCAVE_SIDED_DIAMOND_WITH_LEFTWARDS_TICK, 'codepoint, 0x27E2);
9043put('WHITE_CONCAVE_SIDED_DIAMOND_WITH_RIGHTWARDS_TICK, 'codepoint, 0x27E3);
9044put('WHITE_SQUARE_WITH_LEFTWARDS_TICK, 'codepoint, 0x27E4);
9045put('WHITE_SQUARE_WITH_RIGHTWARDS_TICK, 'codepoint, 0x27E5);
9046put('MATHEMATICAL_LEFT_WHITE_SQUARE_BRACKET, 'codepoint, 0x27E6);
9047put('MATHEMATICAL_RIGHT_WHITE_SQUARE_BRACKET, 'codepoint, 0x27E7);
9048put('MATHEMATICAL_LEFT_ANGLE_BRACKET, 'codepoint, 0x27E8);
9049put('MATHEMATICAL_RIGHT_ANGLE_BRACKET, 'codepoint, 0x27E9);
9050put('MATHEMATICAL_LEFT_DOUBLE_ANGLE_BRACKET, 'codepoint, 0x27EA);
9051put('MATHEMATICAL_RIGHT_DOUBLE_ANGLE_BRACKET, 'codepoint, 0x27EB);
9052put('MATHEMATICAL_LEFT_WHITE_TORTOISE_SHELL_BRACKET, 'codepoint, 0x27EC);
9053put('MATHEMATICAL_RIGHT_WHITE_TORTOISE_SHELL_BRACKET, 'codepoint, 0x27ED);
9054put('MATHEMATICAL_LEFT_FLATTENED_PARENTHESIS, 'codepoint, 0x27EE);
9055put('MATHEMATICAL_RIGHT_FLATTENED_PARENTHESIS, 'codepoint, 0x27EF);
9056put('UPWARDS_QUADRUPLE_ARROW, 'codepoint, 0x27F0);
9057put('DOWNWARDS_QUADRUPLE_ARROW, 'codepoint, 0x27F1);
9058put('ANTICLOCKWISE_GAPPED_CIRCLE_ARROW, 'codepoint, 0x27F2);
9059put('CLOCKWISE_GAPPED_CIRCLE_ARROW, 'codepoint, 0x27F3);
9060put('RIGHT_ARROW_WITH_CIRCLED_PLUS, 'codepoint, 0x27F4);
9061put('LONG_LEFTWARDS_ARROW, 'codepoint, 0x27F5);
9062put('LONG_RIGHTWARDS_ARROW, 'codepoint, 0x27F6);
9063put('LONG_LEFT_RIGHT_ARROW, 'codepoint, 0x27F7);
9064put('LONG_LEFTWARDS_DOUBLE_ARROW, 'codepoint, 0x27F8);
9065put('LONG_RIGHTWARDS_DOUBLE_ARROW, 'codepoint, 0x27F9);
9066put('LONG_LEFT_RIGHT_DOUBLE_ARROW, 'codepoint, 0x27FA);
9067put('LONG_LEFTWARDS_ARROW_FROM_BAR, 'codepoint, 0x27FB);
9068put('LONG_RIGHTWARDS_ARROW_FROM_BAR, 'codepoint, 0x27FC);
9069put('LONG_LEFTWARDS_DOUBLE_ARROW_FROM_BAR, 'codepoint, 0x27FD);
9070put('LONG_RIGHTWARDS_DOUBLE_ARROW_FROM_BAR, 'codepoint, 0x27FE);
9071put('LONG_RIGHTWARDS_SQUIGGLE_ARROW, 'codepoint, 0x27FF);
9072put('BRAILLE_PATTERN_BLANK, 'codepoint, 0x2800);
9073put('BRAILLE_PATTERN_DOTS_1, 'codepoint, 0x2801);
9074put('BRAILLE_PATTERN_DOTS_2, 'codepoint, 0x2802);
9075put('BRAILLE_PATTERN_DOTS_12, 'codepoint, 0x2803);
9076put('BRAILLE_PATTERN_DOTS_3, 'codepoint, 0x2804);
9077put('BRAILLE_PATTERN_DOTS_13, 'codepoint, 0x2805);
9078put('BRAILLE_PATTERN_DOTS_23, 'codepoint, 0x2806);
9079put('BRAILLE_PATTERN_DOTS_123, 'codepoint, 0x2807);
9080put('BRAILLE_PATTERN_DOTS_4, 'codepoint, 0x2808);
9081put('BRAILLE_PATTERN_DOTS_14, 'codepoint, 0x2809);
9082put('BRAILLE_PATTERN_DOTS_24, 'codepoint, 0x280A);
9083put('BRAILLE_PATTERN_DOTS_124, 'codepoint, 0x280B);
9084put('BRAILLE_PATTERN_DOTS_34, 'codepoint, 0x280C);
9085put('BRAILLE_PATTERN_DOTS_134, 'codepoint, 0x280D);
9086put('BRAILLE_PATTERN_DOTS_234, 'codepoint, 0x280E);
9087put('BRAILLE_PATTERN_DOTS_1234, 'codepoint, 0x280F);
9088put('BRAILLE_PATTERN_DOTS_5, 'codepoint, 0x2810);
9089put('BRAILLE_PATTERN_DOTS_15, 'codepoint, 0x2811);
9090put('BRAILLE_PATTERN_DOTS_25, 'codepoint, 0x2812);
9091put('BRAILLE_PATTERN_DOTS_125, 'codepoint, 0x2813);
9092put('BRAILLE_PATTERN_DOTS_35, 'codepoint, 0x2814);
9093put('BRAILLE_PATTERN_DOTS_135, 'codepoint, 0x2815);
9094put('BRAILLE_PATTERN_DOTS_235, 'codepoint, 0x2816);
9095put('BRAILLE_PATTERN_DOTS_1235, 'codepoint, 0x2817);
9096put('BRAILLE_PATTERN_DOTS_45, 'codepoint, 0x2818);
9097put('BRAILLE_PATTERN_DOTS_145, 'codepoint, 0x2819);
9098put('BRAILLE_PATTERN_DOTS_245, 'codepoint, 0x281A);
9099put('BRAILLE_PATTERN_DOTS_1245, 'codepoint, 0x281B);
9100put('BRAILLE_PATTERN_DOTS_345, 'codepoint, 0x281C);
9101put('BRAILLE_PATTERN_DOTS_1345, 'codepoint, 0x281D);
9102put('BRAILLE_PATTERN_DOTS_2345, 'codepoint, 0x281E);
9103put('BRAILLE_PATTERN_DOTS_12345, 'codepoint, 0x281F);
9104put('BRAILLE_PATTERN_DOTS_6, 'codepoint, 0x2820);
9105put('BRAILLE_PATTERN_DOTS_16, 'codepoint, 0x2821);
9106put('BRAILLE_PATTERN_DOTS_26, 'codepoint, 0x2822);
9107put('BRAILLE_PATTERN_DOTS_126, 'codepoint, 0x2823);
9108put('BRAILLE_PATTERN_DOTS_36, 'codepoint, 0x2824);
9109put('BRAILLE_PATTERN_DOTS_136, 'codepoint, 0x2825);
9110put('BRAILLE_PATTERN_DOTS_236, 'codepoint, 0x2826);
9111put('BRAILLE_PATTERN_DOTS_1236, 'codepoint, 0x2827);
9112put('BRAILLE_PATTERN_DOTS_46, 'codepoint, 0x2828);
9113put('BRAILLE_PATTERN_DOTS_146, 'codepoint, 0x2829);
9114put('BRAILLE_PATTERN_DOTS_246, 'codepoint, 0x282A);
9115put('BRAILLE_PATTERN_DOTS_1246, 'codepoint, 0x282B);
9116put('BRAILLE_PATTERN_DOTS_346, 'codepoint, 0x282C);
9117put('BRAILLE_PATTERN_DOTS_1346, 'codepoint, 0x282D);
9118put('BRAILLE_PATTERN_DOTS_2346, 'codepoint, 0x282E);
9119put('BRAILLE_PATTERN_DOTS_12346, 'codepoint, 0x282F);
9120put('BRAILLE_PATTERN_DOTS_56, 'codepoint, 0x2830);
9121put('BRAILLE_PATTERN_DOTS_156, 'codepoint, 0x2831);
9122put('BRAILLE_PATTERN_DOTS_256, 'codepoint, 0x2832);
9123put('BRAILLE_PATTERN_DOTS_1256, 'codepoint, 0x2833);
9124put('BRAILLE_PATTERN_DOTS_356, 'codepoint, 0x2834);
9125put('BRAILLE_PATTERN_DOTS_1356, 'codepoint, 0x2835);
9126put('BRAILLE_PATTERN_DOTS_2356, 'codepoint, 0x2836);
9127put('BRAILLE_PATTERN_DOTS_12356, 'codepoint, 0x2837);
9128put('BRAILLE_PATTERN_DOTS_456, 'codepoint, 0x2838);
9129put('BRAILLE_PATTERN_DOTS_1456, 'codepoint, 0x2839);
9130put('BRAILLE_PATTERN_DOTS_2456, 'codepoint, 0x283A);
9131put('BRAILLE_PATTERN_DOTS_12456, 'codepoint, 0x283B);
9132put('BRAILLE_PATTERN_DOTS_3456, 'codepoint, 0x283C);
9133put('BRAILLE_PATTERN_DOTS_13456, 'codepoint, 0x283D);
9134put('BRAILLE_PATTERN_DOTS_23456, 'codepoint, 0x283E);
9135put('BRAILLE_PATTERN_DOTS_123456, 'codepoint, 0x283F);
9136put('BRAILLE_PATTERN_DOTS_7, 'codepoint, 0x2840);
9137put('BRAILLE_PATTERN_DOTS_17, 'codepoint, 0x2841);
9138put('BRAILLE_PATTERN_DOTS_27, 'codepoint, 0x2842);
9139put('BRAILLE_PATTERN_DOTS_127, 'codepoint, 0x2843);
9140put('BRAILLE_PATTERN_DOTS_37, 'codepoint, 0x2844);
9141put('BRAILLE_PATTERN_DOTS_137, 'codepoint, 0x2845);
9142put('BRAILLE_PATTERN_DOTS_237, 'codepoint, 0x2846);
9143put('BRAILLE_PATTERN_DOTS_1237, 'codepoint, 0x2847);
9144put('BRAILLE_PATTERN_DOTS_47, 'codepoint, 0x2848);
9145put('BRAILLE_PATTERN_DOTS_147, 'codepoint, 0x2849);
9146put('BRAILLE_PATTERN_DOTS_247, 'codepoint, 0x284A);
9147put('BRAILLE_PATTERN_DOTS_1247, 'codepoint, 0x284B);
9148put('BRAILLE_PATTERN_DOTS_347, 'codepoint, 0x284C);
9149put('BRAILLE_PATTERN_DOTS_1347, 'codepoint, 0x284D);
9150put('BRAILLE_PATTERN_DOTS_2347, 'codepoint, 0x284E);
9151put('BRAILLE_PATTERN_DOTS_12347, 'codepoint, 0x284F);
9152put('BRAILLE_PATTERN_DOTS_57, 'codepoint, 0x2850);
9153put('BRAILLE_PATTERN_DOTS_157, 'codepoint, 0x2851);
9154put('BRAILLE_PATTERN_DOTS_257, 'codepoint, 0x2852);
9155put('BRAILLE_PATTERN_DOTS_1257, 'codepoint, 0x2853);
9156put('BRAILLE_PATTERN_DOTS_357, 'codepoint, 0x2854);
9157put('BRAILLE_PATTERN_DOTS_1357, 'codepoint, 0x2855);
9158put('BRAILLE_PATTERN_DOTS_2357, 'codepoint, 0x2856);
9159put('BRAILLE_PATTERN_DOTS_12357, 'codepoint, 0x2857);
9160put('BRAILLE_PATTERN_DOTS_457, 'codepoint, 0x2858);
9161put('BRAILLE_PATTERN_DOTS_1457, 'codepoint, 0x2859);
9162put('BRAILLE_PATTERN_DOTS_2457, 'codepoint, 0x285A);
9163put('BRAILLE_PATTERN_DOTS_12457, 'codepoint, 0x285B);
9164put('BRAILLE_PATTERN_DOTS_3457, 'codepoint, 0x285C);
9165put('BRAILLE_PATTERN_DOTS_13457, 'codepoint, 0x285D);
9166put('BRAILLE_PATTERN_DOTS_23457, 'codepoint, 0x285E);
9167put('BRAILLE_PATTERN_DOTS_123457, 'codepoint, 0x285F);
9168put('BRAILLE_PATTERN_DOTS_67, 'codepoint, 0x2860);
9169put('BRAILLE_PATTERN_DOTS_167, 'codepoint, 0x2861);
9170put('BRAILLE_PATTERN_DOTS_267, 'codepoint, 0x2862);
9171put('BRAILLE_PATTERN_DOTS_1267, 'codepoint, 0x2863);
9172put('BRAILLE_PATTERN_DOTS_367, 'codepoint, 0x2864);
9173put('BRAILLE_PATTERN_DOTS_1367, 'codepoint, 0x2865);
9174put('BRAILLE_PATTERN_DOTS_2367, 'codepoint, 0x2866);
9175put('BRAILLE_PATTERN_DOTS_12367, 'codepoint, 0x2867);
9176put('BRAILLE_PATTERN_DOTS_467, 'codepoint, 0x2868);
9177put('BRAILLE_PATTERN_DOTS_1467, 'codepoint, 0x2869);
9178put('BRAILLE_PATTERN_DOTS_2467, 'codepoint, 0x286A);
9179put('BRAILLE_PATTERN_DOTS_12467, 'codepoint, 0x286B);
9180put('BRAILLE_PATTERN_DOTS_3467, 'codepoint, 0x286C);
9181put('BRAILLE_PATTERN_DOTS_13467, 'codepoint, 0x286D);
9182put('BRAILLE_PATTERN_DOTS_23467, 'codepoint, 0x286E);
9183put('BRAILLE_PATTERN_DOTS_123467, 'codepoint, 0x286F);
9184put('BRAILLE_PATTERN_DOTS_567, 'codepoint, 0x2870);
9185put('BRAILLE_PATTERN_DOTS_1567, 'codepoint, 0x2871);
9186put('BRAILLE_PATTERN_DOTS_2567, 'codepoint, 0x2872);
9187put('BRAILLE_PATTERN_DOTS_12567, 'codepoint, 0x2873);
9188put('BRAILLE_PATTERN_DOTS_3567, 'codepoint, 0x2874);
9189put('BRAILLE_PATTERN_DOTS_13567, 'codepoint, 0x2875);
9190put('BRAILLE_PATTERN_DOTS_23567, 'codepoint, 0x2876);
9191put('BRAILLE_PATTERN_DOTS_123567, 'codepoint, 0x2877);
9192put('BRAILLE_PATTERN_DOTS_4567, 'codepoint, 0x2878);
9193put('BRAILLE_PATTERN_DOTS_14567, 'codepoint, 0x2879);
9194put('BRAILLE_PATTERN_DOTS_24567, 'codepoint, 0x287A);
9195put('BRAILLE_PATTERN_DOTS_124567, 'codepoint, 0x287B);
9196put('BRAILLE_PATTERN_DOTS_34567, 'codepoint, 0x287C);
9197put('BRAILLE_PATTERN_DOTS_134567, 'codepoint, 0x287D);
9198put('BRAILLE_PATTERN_DOTS_234567, 'codepoint, 0x287E);
9199put('BRAILLE_PATTERN_DOTS_1234567, 'codepoint, 0x287F);
9200put('BRAILLE_PATTERN_DOTS_8, 'codepoint, 0x2880);
9201put('BRAILLE_PATTERN_DOTS_18, 'codepoint, 0x2881);
9202put('BRAILLE_PATTERN_DOTS_28, 'codepoint, 0x2882);
9203put('BRAILLE_PATTERN_DOTS_128, 'codepoint, 0x2883);
9204put('BRAILLE_PATTERN_DOTS_38, 'codepoint, 0x2884);
9205put('BRAILLE_PATTERN_DOTS_138, 'codepoint, 0x2885);
9206put('BRAILLE_PATTERN_DOTS_238, 'codepoint, 0x2886);
9207put('BRAILLE_PATTERN_DOTS_1238, 'codepoint, 0x2887);
9208put('BRAILLE_PATTERN_DOTS_48, 'codepoint, 0x2888);
9209put('BRAILLE_PATTERN_DOTS_148, 'codepoint, 0x2889);
9210put('BRAILLE_PATTERN_DOTS_248, 'codepoint, 0x288A);
9211put('BRAILLE_PATTERN_DOTS_1248, 'codepoint, 0x288B);
9212put('BRAILLE_PATTERN_DOTS_348, 'codepoint, 0x288C);
9213put('BRAILLE_PATTERN_DOTS_1348, 'codepoint, 0x288D);
9214put('BRAILLE_PATTERN_DOTS_2348, 'codepoint, 0x288E);
9215put('BRAILLE_PATTERN_DOTS_12348, 'codepoint, 0x288F);
9216put('BRAILLE_PATTERN_DOTS_58, 'codepoint, 0x2890);
9217put('BRAILLE_PATTERN_DOTS_158, 'codepoint, 0x2891);
9218put('BRAILLE_PATTERN_DOTS_258, 'codepoint, 0x2892);
9219put('BRAILLE_PATTERN_DOTS_1258, 'codepoint, 0x2893);
9220put('BRAILLE_PATTERN_DOTS_358, 'codepoint, 0x2894);
9221put('BRAILLE_PATTERN_DOTS_1358, 'codepoint, 0x2895);
9222put('BRAILLE_PATTERN_DOTS_2358, 'codepoint, 0x2896);
9223put('BRAILLE_PATTERN_DOTS_12358, 'codepoint, 0x2897);
9224put('BRAILLE_PATTERN_DOTS_458, 'codepoint, 0x2898);
9225put('BRAILLE_PATTERN_DOTS_1458, 'codepoint, 0x2899);
9226put('BRAILLE_PATTERN_DOTS_2458, 'codepoint, 0x289A);
9227put('BRAILLE_PATTERN_DOTS_12458, 'codepoint, 0x289B);
9228put('BRAILLE_PATTERN_DOTS_3458, 'codepoint, 0x289C);
9229put('BRAILLE_PATTERN_DOTS_13458, 'codepoint, 0x289D);
9230put('BRAILLE_PATTERN_DOTS_23458, 'codepoint, 0x289E);
9231put('BRAILLE_PATTERN_DOTS_123458, 'codepoint, 0x289F);
9232put('BRAILLE_PATTERN_DOTS_68, 'codepoint, 0x28A0);
9233put('BRAILLE_PATTERN_DOTS_168, 'codepoint, 0x28A1);
9234put('BRAILLE_PATTERN_DOTS_268, 'codepoint, 0x28A2);
9235put('BRAILLE_PATTERN_DOTS_1268, 'codepoint, 0x28A3);
9236put('BRAILLE_PATTERN_DOTS_368, 'codepoint, 0x28A4);
9237put('BRAILLE_PATTERN_DOTS_1368, 'codepoint, 0x28A5);
9238put('BRAILLE_PATTERN_DOTS_2368, 'codepoint, 0x28A6);
9239put('BRAILLE_PATTERN_DOTS_12368, 'codepoint, 0x28A7);
9240put('BRAILLE_PATTERN_DOTS_468, 'codepoint, 0x28A8);
9241put('BRAILLE_PATTERN_DOTS_1468, 'codepoint, 0x28A9);
9242put('BRAILLE_PATTERN_DOTS_2468, 'codepoint, 0x28AA);
9243put('BRAILLE_PATTERN_DOTS_12468, 'codepoint, 0x28AB);
9244put('BRAILLE_PATTERN_DOTS_3468, 'codepoint, 0x28AC);
9245put('BRAILLE_PATTERN_DOTS_13468, 'codepoint, 0x28AD);
9246put('BRAILLE_PATTERN_DOTS_23468, 'codepoint, 0x28AE);
9247put('BRAILLE_PATTERN_DOTS_123468, 'codepoint, 0x28AF);
9248put('BRAILLE_PATTERN_DOTS_568, 'codepoint, 0x28B0);
9249put('BRAILLE_PATTERN_DOTS_1568, 'codepoint, 0x28B1);
9250put('BRAILLE_PATTERN_DOTS_2568, 'codepoint, 0x28B2);
9251put('BRAILLE_PATTERN_DOTS_12568, 'codepoint, 0x28B3);
9252put('BRAILLE_PATTERN_DOTS_3568, 'codepoint, 0x28B4);
9253put('BRAILLE_PATTERN_DOTS_13568, 'codepoint, 0x28B5);
9254put('BRAILLE_PATTERN_DOTS_23568, 'codepoint, 0x28B6);
9255put('BRAILLE_PATTERN_DOTS_123568, 'codepoint, 0x28B7);
9256put('BRAILLE_PATTERN_DOTS_4568, 'codepoint, 0x28B8);
9257put('BRAILLE_PATTERN_DOTS_14568, 'codepoint, 0x28B9);
9258put('BRAILLE_PATTERN_DOTS_24568, 'codepoint, 0x28BA);
9259put('BRAILLE_PATTERN_DOTS_124568, 'codepoint, 0x28BB);
9260put('BRAILLE_PATTERN_DOTS_34568, 'codepoint, 0x28BC);
9261put('BRAILLE_PATTERN_DOTS_134568, 'codepoint, 0x28BD);
9262put('BRAILLE_PATTERN_DOTS_234568, 'codepoint, 0x28BE);
9263put('BRAILLE_PATTERN_DOTS_1234568, 'codepoint, 0x28BF);
9264put('BRAILLE_PATTERN_DOTS_78, 'codepoint, 0x28C0);
9265put('BRAILLE_PATTERN_DOTS_178, 'codepoint, 0x28C1);
9266put('BRAILLE_PATTERN_DOTS_278, 'codepoint, 0x28C2);
9267put('BRAILLE_PATTERN_DOTS_1278, 'codepoint, 0x28C3);
9268put('BRAILLE_PATTERN_DOTS_378, 'codepoint, 0x28C4);
9269put('BRAILLE_PATTERN_DOTS_1378, 'codepoint, 0x28C5);
9270put('BRAILLE_PATTERN_DOTS_2378, 'codepoint, 0x28C6);
9271put('BRAILLE_PATTERN_DOTS_12378, 'codepoint, 0x28C7);
9272put('BRAILLE_PATTERN_DOTS_478, 'codepoint, 0x28C8);
9273put('BRAILLE_PATTERN_DOTS_1478, 'codepoint, 0x28C9);
9274put('BRAILLE_PATTERN_DOTS_2478, 'codepoint, 0x28CA);
9275put('BRAILLE_PATTERN_DOTS_12478, 'codepoint, 0x28CB);
9276put('BRAILLE_PATTERN_DOTS_3478, 'codepoint, 0x28CC);
9277put('BRAILLE_PATTERN_DOTS_13478, 'codepoint, 0x28CD);
9278put('BRAILLE_PATTERN_DOTS_23478, 'codepoint, 0x28CE);
9279put('BRAILLE_PATTERN_DOTS_123478, 'codepoint, 0x28CF);
9280put('BRAILLE_PATTERN_DOTS_578, 'codepoint, 0x28D0);
9281put('BRAILLE_PATTERN_DOTS_1578, 'codepoint, 0x28D1);
9282put('BRAILLE_PATTERN_DOTS_2578, 'codepoint, 0x28D2);
9283put('BRAILLE_PATTERN_DOTS_12578, 'codepoint, 0x28D3);
9284put('BRAILLE_PATTERN_DOTS_3578, 'codepoint, 0x28D4);
9285put('BRAILLE_PATTERN_DOTS_13578, 'codepoint, 0x28D5);
9286put('BRAILLE_PATTERN_DOTS_23578, 'codepoint, 0x28D6);
9287put('BRAILLE_PATTERN_DOTS_123578, 'codepoint, 0x28D7);
9288put('BRAILLE_PATTERN_DOTS_4578, 'codepoint, 0x28D8);
9289put('BRAILLE_PATTERN_DOTS_14578, 'codepoint, 0x28D9);
9290put('BRAILLE_PATTERN_DOTS_24578, 'codepoint, 0x28DA);
9291put('BRAILLE_PATTERN_DOTS_124578, 'codepoint, 0x28DB);
9292put('BRAILLE_PATTERN_DOTS_34578, 'codepoint, 0x28DC);
9293put('BRAILLE_PATTERN_DOTS_134578, 'codepoint, 0x28DD);
9294put('BRAILLE_PATTERN_DOTS_234578, 'codepoint, 0x28DE);
9295put('BRAILLE_PATTERN_DOTS_1234578, 'codepoint, 0x28DF);
9296put('BRAILLE_PATTERN_DOTS_678, 'codepoint, 0x28E0);
9297put('BRAILLE_PATTERN_DOTS_1678, 'codepoint, 0x28E1);
9298put('BRAILLE_PATTERN_DOTS_2678, 'codepoint, 0x28E2);
9299put('BRAILLE_PATTERN_DOTS_12678, 'codepoint, 0x28E3);
9300put('BRAILLE_PATTERN_DOTS_3678, 'codepoint, 0x28E4);
9301put('BRAILLE_PATTERN_DOTS_13678, 'codepoint, 0x28E5);
9302put('BRAILLE_PATTERN_DOTS_23678, 'codepoint, 0x28E6);
9303put('BRAILLE_PATTERN_DOTS_123678, 'codepoint, 0x28E7);
9304put('BRAILLE_PATTERN_DOTS_4678, 'codepoint, 0x28E8);
9305put('BRAILLE_PATTERN_DOTS_14678, 'codepoint, 0x28E9);
9306put('BRAILLE_PATTERN_DOTS_24678, 'codepoint, 0x28EA);
9307put('BRAILLE_PATTERN_DOTS_124678, 'codepoint, 0x28EB);
9308put('BRAILLE_PATTERN_DOTS_34678, 'codepoint, 0x28EC);
9309put('BRAILLE_PATTERN_DOTS_134678, 'codepoint, 0x28ED);
9310put('BRAILLE_PATTERN_DOTS_234678, 'codepoint, 0x28EE);
9311put('BRAILLE_PATTERN_DOTS_1234678, 'codepoint, 0x28EF);
9312put('BRAILLE_PATTERN_DOTS_5678, 'codepoint, 0x28F0);
9313put('BRAILLE_PATTERN_DOTS_15678, 'codepoint, 0x28F1);
9314put('BRAILLE_PATTERN_DOTS_25678, 'codepoint, 0x28F2);
9315put('BRAILLE_PATTERN_DOTS_125678, 'codepoint, 0x28F3);
9316put('BRAILLE_PATTERN_DOTS_35678, 'codepoint, 0x28F4);
9317put('BRAILLE_PATTERN_DOTS_135678, 'codepoint, 0x28F5);
9318put('BRAILLE_PATTERN_DOTS_235678, 'codepoint, 0x28F6);
9319put('BRAILLE_PATTERN_DOTS_1235678, 'codepoint, 0x28F7);
9320put('BRAILLE_PATTERN_DOTS_45678, 'codepoint, 0x28F8);
9321put('BRAILLE_PATTERN_DOTS_145678, 'codepoint, 0x28F9);
9322put('BRAILLE_PATTERN_DOTS_245678, 'codepoint, 0x28FA);
9323put('BRAILLE_PATTERN_DOTS_1245678, 'codepoint, 0x28FB);
9324put('BRAILLE_PATTERN_DOTS_345678, 'codepoint, 0x28FC);
9325put('BRAILLE_PATTERN_DOTS_1345678, 'codepoint, 0x28FD);
9326put('BRAILLE_PATTERN_DOTS_2345678, 'codepoint, 0x28FE);
9327put('BRAILLE_PATTERN_DOTS_12345678, 'codepoint, 0x28FF);
9328put('RIGHTWARDS_TWO_HEADED_ARROW_WITH_VERTICAL_STROKE, 'codepoint, 0x2900);
9329put('RIGHTWARDS_TWO_HEADED_ARROW_WITH_DOUBLE_VERTICAL_STROKE, 'codepoint, 0x2901);
9330put('LEFTWARDS_DOUBLE_ARROW_WITH_VERTICAL_STROKE, 'codepoint, 0x2902);
9331put('RIGHTWARDS_DOUBLE_ARROW_WITH_VERTICAL_STROKE, 'codepoint, 0x2903);
9332put('LEFT_RIGHT_DOUBLE_ARROW_WITH_VERTICAL_STROKE, 'codepoint, 0x2904);
9333put('RIGHTWARDS_TWO_HEADED_ARROW_FROM_BAR, 'codepoint, 0x2905);
9334put('LEFTWARDS_DOUBLE_ARROW_FROM_BAR, 'codepoint, 0x2906);
9335put('RIGHTWARDS_DOUBLE_ARROW_FROM_BAR, 'codepoint, 0x2907);
9336put('DOWNWARDS_ARROW_WITH_HORIZONTAL_STROKE, 'codepoint, 0x2908);
9337put('UPWARDS_ARROW_WITH_HORIZONTAL_STROKE, 'codepoint, 0x2909);
9338put('UPWARDS_TRIPLE_ARROW, 'codepoint, 0x290A);
9339put('DOWNWARDS_TRIPLE_ARROW, 'codepoint, 0x290B);
9340put('LEFTWARDS_DOUBLE_DASH_ARROW, 'codepoint, 0x290C);
9341put('RIGHTWARDS_DOUBLE_DASH_ARROW, 'codepoint, 0x290D);
9342put('LEFTWARDS_TRIPLE_DASH_ARROW, 'codepoint, 0x290E);
9343put('RIGHTWARDS_TRIPLE_DASH_ARROW, 'codepoint, 0x290F);
9344put('RIGHTWARDS_TWO_HEADED_TRIPLE_DASH_ARROW, 'codepoint, 0x2910);
9345put('RIGHTWARDS_ARROW_WITH_DOTTED_STEM, 'codepoint, 0x2911);
9346put('UPWARDS_ARROW_TO_BAR, 'codepoint, 0x2912);
9347put('DOWNWARDS_ARROW_TO_BAR, 'codepoint, 0x2913);
9348put('RIGHTWARDS_ARROW_WITH_TAIL_WITH_VERTICAL_STROKE, 'codepoint, 0x2914);
9349put('RIGHTWARDS_ARROW_WITH_TAIL_WITH_DOUBLE_VERTICAL_STROKE, 'codepoint, 0x2915);
9350put('RIGHTWARDS_TWO_HEADED_ARROW_WITH_TAIL, 'codepoint, 0x2916);
9351put('RIGHTWARDS_TWO_HEADED_ARROW_WITH_TAIL_WITH_VERTICAL_STROKE, 'codepoint, 0x2917);
9352put('RIGHTWARDS_TWO_HEADED_ARROW_WITH_TAIL_WITH_DOUBLE_VERTICAL_STROKE, 'codepoint, 0x2918);
9353put('LEFTWARDS_ARROW_TAIL, 'codepoint, 0x2919);
9354put('RIGHTWARDS_ARROW_TAIL, 'codepoint, 0x291A);
9355put('LEFTWARDS_DOUBLE_ARROW_TAIL, 'codepoint, 0x291B);
9356put('RIGHTWARDS_DOUBLE_ARROW_TAIL, 'codepoint, 0x291C);
9357put('LEFTWARDS_ARROW_TO_BLACK_DIAMOND, 'codepoint, 0x291D);
9358put('RIGHTWARDS_ARROW_TO_BLACK_DIAMOND, 'codepoint, 0x291E);
9359put('LEFTWARDS_ARROW_FROM_BAR_TO_BLACK_DIAMOND, 'codepoint, 0x291F);
9360put('RIGHTWARDS_ARROW_FROM_BAR_TO_BLACK_DIAMOND, 'codepoint, 0x2920);
9361put('NORTH_WEST_AND_SOUTH_EAST_ARROW, 'codepoint, 0x2921);
9362put('NORTH_EAST_AND_SOUTH_WEST_ARROW, 'codepoint, 0x2922);
9363put('NORTH_WEST_ARROW_WITH_HOOK, 'codepoint, 0x2923);
9364put('NORTH_EAST_ARROW_WITH_HOOK, 'codepoint, 0x2924);
9365put('SOUTH_EAST_ARROW_WITH_HOOK, 'codepoint, 0x2925);
9366put('SOUTH_WEST_ARROW_WITH_HOOK, 'codepoint, 0x2926);
9367put('NORTH_WEST_ARROW_AND_NORTH_EAST_ARROW, 'codepoint, 0x2927);
9368put('NORTH_EAST_ARROW_AND_SOUTH_EAST_ARROW, 'codepoint, 0x2928);
9369put('SOUTH_EAST_ARROW_AND_SOUTH_WEST_ARROW, 'codepoint, 0x2929);
9370put('SOUTH_WEST_ARROW_AND_NORTH_WEST_ARROW, 'codepoint, 0x292A);
9371put('RISING_DIAGONAL_CROSSING_FALLING_DIAGONAL, 'codepoint, 0x292B);
9372put('FALLING_DIAGONAL_CROSSING_RISING_DIAGONAL, 'codepoint, 0x292C);
9373put('SOUTH_EAST_ARROW_CROSSING_NORTH_EAST_ARROW, 'codepoint, 0x292D);
9374put('NORTH_EAST_ARROW_CROSSING_SOUTH_EAST_ARROW, 'codepoint, 0x292E);
9375put('FALLING_DIAGONAL_CROSSING_NORTH_EAST_ARROW, 'codepoint, 0x292F);
9376put('RISING_DIAGONAL_CROSSING_SOUTH_EAST_ARROW, 'codepoint, 0x2930);
9377put('NORTH_EAST_ARROW_CROSSING_NORTH_WEST_ARROW, 'codepoint, 0x2931);
9378put('NORTH_WEST_ARROW_CROSSING_NORTH_EAST_ARROW, 'codepoint, 0x2932);
9379put('WAVE_ARROW_POINTING_DIRECTLY_RIGHT, 'codepoint, 0x2933);
9380put('ARROW_POINTING_RIGHTWARDS_THEN_CURVING_UPWARDS, 'codepoint, 0x2934);
9381put('ARROW_POINTING_RIGHTWARDS_THEN_CURVING_DOWNWARDS, 'codepoint, 0x2935);
9382put('ARROW_POINTING_DOWNWARDS_THEN_CURVING_LEFTWARDS, 'codepoint, 0x2936);
9383put('ARROW_POINTING_DOWNWARDS_THEN_CURVING_RIGHTWARDS, 'codepoint, 0x2937);
9384put('RIGHT_SIDE_ARC_CLOCKWISE_ARROW, 'codepoint, 0x2938);
9385put('LEFT_SIDE_ARC_ANTICLOCKWISE_ARROW, 'codepoint, 0x2939);
9386put('TOP_ARC_ANTICLOCKWISE_ARROW, 'codepoint, 0x293A);
9387put('BOTTOM_ARC_ANTICLOCKWISE_ARROW, 'codepoint, 0x293B);
9388put('TOP_ARC_CLOCKWISE_ARROW_WITH_MINUS, 'codepoint, 0x293C);
9389put('TOP_ARC_ANTICLOCKWISE_ARROW_WITH_PLUS, 'codepoint, 0x293D);
9390put('LOWER_RIGHT_SEMICIRCULAR_CLOCKWISE_ARROW, 'codepoint, 0x293E);
9391put('LOWER_LEFT_SEMICIRCULAR_ANTICLOCKWISE_ARROW, 'codepoint, 0x293F);
9392put('ANTICLOCKWISE_CLOSED_CIRCLE_ARROW, 'codepoint, 0x2940);
9393put('CLOCKWISE_CLOSED_CIRCLE_ARROW, 'codepoint, 0x2941);
9394put('RIGHTWARDS_ARROW_ABOVE_SHORT_LEFTWARDS_ARROW, 'codepoint, 0x2942);
9395put('LEFTWARDS_ARROW_ABOVE_SHORT_RIGHTWARDS_ARROW, 'codepoint, 0x2943);
9396put('SHORT_RIGHTWARDS_ARROW_ABOVE_LEFTWARDS_ARROW, 'codepoint, 0x2944);
9397put('RIGHTWARDS_ARROW_WITH_PLUS_BELOW, 'codepoint, 0x2945);
9398put('LEFTWARDS_ARROW_WITH_PLUS_BELOW, 'codepoint, 0x2946);
9399put('RIGHTWARDS_ARROW_THROUGH_X, 'codepoint, 0x2947);
9400put('LEFT_RIGHT_ARROW_THROUGH_SMALL_CIRCLE, 'codepoint, 0x2948);
9401put('UPWARDS_TWO_HEADED_ARROW_FROM_SMALL_CIRCLE, 'codepoint, 0x2949);
9402put('LEFT_BARB_UP_RIGHT_BARB_DOWN_HARPOON, 'codepoint, 0x294A);
9403put('LEFT_BARB_DOWN_RIGHT_BARB_UP_HARPOON, 'codepoint, 0x294B);
9404put('UP_BARB_RIGHT_DOWN_BARB_LEFT_HARPOON, 'codepoint, 0x294C);
9405put('UP_BARB_LEFT_DOWN_BARB_RIGHT_HARPOON, 'codepoint, 0x294D);
9406put('LEFT_BARB_UP_RIGHT_BARB_UP_HARPOON, 'codepoint, 0x294E);
9407put('UP_BARB_RIGHT_DOWN_BARB_RIGHT_HARPOON, 'codepoint, 0x294F);
9408put('LEFT_BARB_DOWN_RIGHT_BARB_DOWN_HARPOON, 'codepoint, 0x2950);
9409put('UP_BARB_LEFT_DOWN_BARB_LEFT_HARPOON, 'codepoint, 0x2951);
9410put('LEFTWARDS_HARPOON_WITH_BARB_UP_TO_BAR, 'codepoint, 0x2952);
9411put('RIGHTWARDS_HARPOON_WITH_BARB_UP_TO_BAR, 'codepoint, 0x2953);
9412put('UPWARDS_HARPOON_WITH_BARB_RIGHT_TO_BAR, 'codepoint, 0x2954);
9413put('DOWNWARDS_HARPOON_WITH_BARB_RIGHT_TO_BAR, 'codepoint, 0x2955);
9414put('LEFTWARDS_HARPOON_WITH_BARB_DOWN_TO_BAR, 'codepoint, 0x2956);
9415put('RIGHTWARDS_HARPOON_WITH_BARB_DOWN_TO_BAR, 'codepoint, 0x2957);
9416put('UPWARDS_HARPOON_WITH_BARB_LEFT_TO_BAR, 'codepoint, 0x2958);
9417put('DOWNWARDS_HARPOON_WITH_BARB_LEFT_TO_BAR, 'codepoint, 0x2959);
9418put('LEFTWARDS_HARPOON_WITH_BARB_UP_FROM_BAR, 'codepoint, 0x295A);
9419put('RIGHTWARDS_HARPOON_WITH_BARB_UP_FROM_BAR, 'codepoint, 0x295B);
9420put('UPWARDS_HARPOON_WITH_BARB_RIGHT_FROM_BAR, 'codepoint, 0x295C);
9421put('DOWNWARDS_HARPOON_WITH_BARB_RIGHT_FROM_BAR, 'codepoint, 0x295D);
9422put('LEFTWARDS_HARPOON_WITH_BARB_DOWN_FROM_BAR, 'codepoint, 0x295E);
9423put('RIGHTWARDS_HARPOON_WITH_BARB_DOWN_FROM_BAR, 'codepoint, 0x295F);
9424put('UPWARDS_HARPOON_WITH_BARB_LEFT_FROM_BAR, 'codepoint, 0x2960);
9425put('DOWNWARDS_HARPOON_WITH_BARB_LEFT_FROM_BAR, 'codepoint, 0x2961);
9426put('LEFTWARDS_HARPOON_WITH_BARB_UP_ABOVE_LEFTWARDS_HARPOON_WITH_BARB_DOWN, 'codepoint, 0x2962);
9427put('UPWARDS_HARPOON_WITH_BARB_LEFT_BESIDE_UPWARDS_HARPOON_WITH_BARB_RIGHT, 'codepoint, 0x2963);
9428put('RIGHTWARDS_HARPOON_WITH_BARB_UP_ABOVE_RIGHTWARDS_HARPOON_WITH_BARB_DOWN, 'codepoint, 0x2964);
9429put('DOWNWARDS_HARPOON_WITH_BARB_LEFT_BESIDE_DOWNWARDS_HARPOON_WITH_BARB_RIGHT, 'codepoint, 0x2965);
9430put('LEFTWARDS_HARPOON_WITH_BARB_UP_ABOVE_RIGHTWARDS_HARPOON_WITH_BARB_UP, 'codepoint, 0x2966);
9431put('LEFTWARDS_HARPOON_WITH_BARB_DOWN_ABOVE_RIGHTWARDS_HARPOON_WITH_BARB_DOWN, 'codepoint, 0x2967);
9432put('RIGHTWARDS_HARPOON_WITH_BARB_UP_ABOVE_LEFTWARDS_HARPOON_WITH_BARB_UP, 'codepoint, 0x2968);
9433put('RIGHTWARDS_HARPOON_WITH_BARB_DOWN_ABOVE_LEFTWARDS_HARPOON_WITH_BARB_DOWN, 'codepoint, 0x2969);
9434put('LEFTWARDS_HARPOON_WITH_BARB_UP_ABOVE_LONG_DASH, 'codepoint, 0x296A);
9435put('LEFTWARDS_HARPOON_WITH_BARB_DOWN_BELOW_LONG_DASH, 'codepoint, 0x296B);
9436put('RIGHTWARDS_HARPOON_WITH_BARB_UP_ABOVE_LONG_DASH, 'codepoint, 0x296C);
9437put('RIGHTWARDS_HARPOON_WITH_BARB_DOWN_BELOW_LONG_DASH, 'codepoint, 0x296D);
9438put('UPWARDS_HARPOON_WITH_BARB_LEFT_BESIDE_DOWNWARDS_HARPOON_WITH_BARB_RIGHT, 'codepoint, 0x296E);
9439put('DOWNWARDS_HARPOON_WITH_BARB_LEFT_BESIDE_UPWARDS_HARPOON_WITH_BARB_RIGHT, 'codepoint, 0x296F);
9440put('RIGHT_DOUBLE_ARROW_WITH_ROUNDED_HEAD, 'codepoint, 0x2970);
9441put('EQUALS_SIGN_ABOVE_RIGHTWARDS_ARROW, 'codepoint, 0x2971);
9442put('TILDE_OPERATOR_ABOVE_RIGHTWARDS_ARROW, 'codepoint, 0x2972);
9443put('LEFTWARDS_ARROW_ABOVE_TILDE_OPERATOR, 'codepoint, 0x2973);
9444put('RIGHTWARDS_ARROW_ABOVE_TILDE_OPERATOR, 'codepoint, 0x2974);
9445put('RIGHTWARDS_ARROW_ABOVE_ALMOST_EQUAL_TO, 'codepoint, 0x2975);
9446put('LESS_THAN_ABOVE_LEFTWARDS_ARROW, 'codepoint, 0x2976);
9447put('LEFTWARDS_ARROW_THROUGH_LESS_THAN, 'codepoint, 0x2977);
9448put('GREATER_THAN_ABOVE_RIGHTWARDS_ARROW, 'codepoint, 0x2978);
9449put('SUBSET_ABOVE_RIGHTWARDS_ARROW, 'codepoint, 0x2979);
9450put('LEFTWARDS_ARROW_THROUGH_SUBSET, 'codepoint, 0x297A);
9451put('SUPERSET_ABOVE_LEFTWARDS_ARROW, 'codepoint, 0x297B);
9452put('LEFT_FISH_TAIL, 'codepoint, 0x297C);
9453put('RIGHT_FISH_TAIL, 'codepoint, 0x297D);
9454put('UP_FISH_TAIL, 'codepoint, 0x297E);
9455put('DOWN_FISH_TAIL, 'codepoint, 0x297F);
9456put('TRIPLE_VERTICAL_BAR_DELIMITER, 'codepoint, 0x2980);
9457put('Z_NOTATION_SPOT, 'codepoint, 0x2981);
9458put('Z_NOTATION_TYPE_COLON, 'codepoint, 0x2982);
9459put('LEFT_WHITE_CURLY_BRACKET, 'codepoint, 0x2983);
9460put('RIGHT_WHITE_CURLY_BRACKET, 'codepoint, 0x2984);
9461put('LEFT_WHITE_PARENTHESIS, 'codepoint, 0x2985);
9462put('RIGHT_WHITE_PARENTHESIS, 'codepoint, 0x2986);
9463put('Z_NOTATION_LEFT_IMAGE_BRACKET, 'codepoint, 0x2987);
9464put('Z_NOTATION_RIGHT_IMAGE_BRACKET, 'codepoint, 0x2988);
9465put('Z_NOTATION_LEFT_BINDING_BRACKET, 'codepoint, 0x2989);
9466put('Z_NOTATION_RIGHT_BINDING_BRACKET, 'codepoint, 0x298A);
9467put('LEFT_SQUARE_BRACKET_WITH_UNDERBAR, 'codepoint, 0x298B);
9468put('RIGHT_SQUARE_BRACKET_WITH_UNDERBAR, 'codepoint, 0x298C);
9469put('LEFT_SQUARE_BRACKET_WITH_TICK_IN_TOP_CORNER, 'codepoint, 0x298D);
9470put('RIGHT_SQUARE_BRACKET_WITH_TICK_IN_BOTTOM_CORNER, 'codepoint, 0x298E);
9471put('LEFT_SQUARE_BRACKET_WITH_TICK_IN_BOTTOM_CORNER, 'codepoint, 0x298F);
9472put('RIGHT_SQUARE_BRACKET_WITH_TICK_IN_TOP_CORNER, 'codepoint, 0x2990);
9473put('LEFT_ANGLE_BRACKET_WITH_DOT, 'codepoint, 0x2991);
9474put('RIGHT_ANGLE_BRACKET_WITH_DOT, 'codepoint, 0x2992);
9475put('LEFT_ARC_LESS_THAN_BRACKET, 'codepoint, 0x2993);
9476put('RIGHT_ARC_GREATER_THAN_BRACKET, 'codepoint, 0x2994);
9477put('DOUBLE_LEFT_ARC_GREATER_THAN_BRACKET, 'codepoint, 0x2995);
9478put('DOUBLE_RIGHT_ARC_LESS_THAN_BRACKET, 'codepoint, 0x2996);
9479put('LEFT_BLACK_TORTOISE_SHELL_BRACKET, 'codepoint, 0x2997);
9480put('RIGHT_BLACK_TORTOISE_SHELL_BRACKET, 'codepoint, 0x2998);
9481put('DOTTED_FENCE, 'codepoint, 0x2999);
9482put('VERTICAL_ZIGZAG_LINE, 'codepoint, 0x299A);
9483put('MEASURED_ANGLE_OPENING_LEFT, 'codepoint, 0x299B);
9484put('RIGHT_ANGLE_VARIANT_WITH_SQUARE, 'codepoint, 0x299C);
9485put('MEASURED_RIGHT_ANGLE_WITH_DOT, 'codepoint, 0x299D);
9486put('ANGLE_WITH_S_INSIDE, 'codepoint, 0x299E);
9487put('ACUTE_ANGLE, 'codepoint, 0x299F);
9488put('SPHERICAL_ANGLE_OPENING_LEFT, 'codepoint, 0x29A0);
9489put('SPHERICAL_ANGLE_OPENING_UP, 'codepoint, 0x29A1);
9490put('TURNED_ANGLE, 'codepoint, 0x29A2);
9491put('REVERSED_ANGLE, 'codepoint, 0x29A3);
9492put('ANGLE_WITH_UNDERBAR, 'codepoint, 0x29A4);
9493put('REVERSED_ANGLE_WITH_UNDERBAR, 'codepoint, 0x29A5);
9494put('OBLIQUE_ANGLE_OPENING_UP, 'codepoint, 0x29A6);
9495put('OBLIQUE_ANGLE_OPENING_DOWN, 'codepoint, 0x29A7);
9496put('MEASURED_ANGLE_WITH_OPEN_ARM_ENDING_IN_ARROW_POINTING_UP_AND_RIGHT, 'codepoint, 0x29A8);
9497put('MEASURED_ANGLE_WITH_OPEN_ARM_ENDING_IN_ARROW_POINTING_UP_AND_LEFT, 'codepoint, 0x29A9);
9498put('MEASURED_ANGLE_WITH_OPEN_ARM_ENDING_IN_ARROW_POINTING_DOWN_AND_RIGHT, 'codepoint, 0x29AA);
9499put('MEASURED_ANGLE_WITH_OPEN_ARM_ENDING_IN_ARROW_POINTING_DOWN_AND_LEFT, 'codepoint, 0x29AB);
9500put('MEASURED_ANGLE_WITH_OPEN_ARM_ENDING_IN_ARROW_POINTING_RIGHT_AND_UP, 'codepoint, 0x29AC);
9501put('MEASURED_ANGLE_WITH_OPEN_ARM_ENDING_IN_ARROW_POINTING_LEFT_AND_UP, 'codepoint, 0x29AD);
9502put('MEASURED_ANGLE_WITH_OPEN_ARM_ENDING_IN_ARROW_POINTING_RIGHT_AND_DOWN, 'codepoint, 0x29AE);
9503put('MEASURED_ANGLE_WITH_OPEN_ARM_ENDING_IN_ARROW_POINTING_LEFT_AND_DOWN, 'codepoint, 0x29AF);
9504put('REVERSED_EMPTY_SET, 'codepoint, 0x29B0);
9505put('EMPTY_SET_WITH_OVERBAR, 'codepoint, 0x29B1);
9506put('EMPTY_SET_WITH_SMALL_CIRCLE_ABOVE, 'codepoint, 0x29B2);
9507put('EMPTY_SET_WITH_RIGHT_ARROW_ABOVE, 'codepoint, 0x29B3);
9508put('EMPTY_SET_WITH_LEFT_ARROW_ABOVE, 'codepoint, 0x29B4);
9509put('CIRCLE_WITH_HORIZONTAL_BAR, 'codepoint, 0x29B5);
9510put('CIRCLED_VERTICAL_BAR, 'codepoint, 0x29B6);
9511put('CIRCLED_PARALLEL, 'codepoint, 0x29B7);
9512put('CIRCLED_REVERSE_SOLIDUS, 'codepoint, 0x29B8);
9513put('CIRCLED_PERPENDICULAR, 'codepoint, 0x29B9);
9514put('CIRCLE_DIVIDED_BY_HORIZONTAL_BAR_AND_TOP_HALF_DIVIDED_BY_VERTICAL_BAR, 'codepoint, 0x29BA);
9515put('CIRCLE_WITH_SUPERIMPOSED_X, 'codepoint, 0x29BB);
9516put('CIRCLED_ANTICLOCKWISE_ROTATED_DIVISION_SIGN, 'codepoint, 0x29BC);
9517put('UP_ARROW_THROUGH_CIRCLE, 'codepoint, 0x29BD);
9518put('CIRCLED_WHITE_BULLET, 'codepoint, 0x29BE);
9519put('CIRCLED_BULLET, 'codepoint, 0x29BF);
9520put('CIRCLED_LESS_THAN, 'codepoint, 0x29C0);
9521put('CIRCLED_GREATER_THAN, 'codepoint, 0x29C1);
9522put('CIRCLE_WITH_SMALL_CIRCLE_TO_THE_RIGHT, 'codepoint, 0x29C2);
9523put('CIRCLE_WITH_TWO_HORIZONTAL_STROKES_TO_THE_RIGHT, 'codepoint, 0x29C3);
9524put('SQUARED_RISING_DIAGONAL_SLASH, 'codepoint, 0x29C4);
9525put('SQUARED_FALLING_DIAGONAL_SLASH, 'codepoint, 0x29C5);
9526put('SQUARED_ASTERISK, 'codepoint, 0x29C6);
9527put('SQUARED_SMALL_CIRCLE, 'codepoint, 0x29C7);
9528put('SQUARED_SQUARE, 'codepoint, 0x29C8);
9529put('TWO_JOINED_SQUARES, 'codepoint, 0x29C9);
9530put('TRIANGLE_WITH_DOT_ABOVE, 'codepoint, 0x29CA);
9531put('TRIANGLE_WITH_UNDERBAR, 'codepoint, 0x29CB);
9532put('S_IN_TRIANGLE, 'codepoint, 0x29CC);
9533put('TRIANGLE_WITH_SERIFS_AT_BOTTOM, 'codepoint, 0x29CD);
9534put('RIGHT_TRIANGLE_ABOVE_LEFT_TRIANGLE, 'codepoint, 0x29CE);
9535put('LEFT_TRIANGLE_BESIDE_VERTICAL_BAR, 'codepoint, 0x29CF);
9536put('VERTICAL_BAR_BESIDE_RIGHT_TRIANGLE, 'codepoint, 0x29D0);
9537put('BOWTIE_WITH_LEFT_HALF_BLACK, 'codepoint, 0x29D1);
9538put('BOWTIE_WITH_RIGHT_HALF_BLACK, 'codepoint, 0x29D2);
9539put('BLACK_BOWTIE, 'codepoint, 0x29D3);
9540put('TIMES_WITH_LEFT_HALF_BLACK, 'codepoint, 0x29D4);
9541put('TIMES_WITH_RIGHT_HALF_BLACK, 'codepoint, 0x29D5);
9542put('WHITE_HOURGLASS, 'codepoint, 0x29D6);
9543put('BLACK_HOURGLASS, 'codepoint, 0x29D7);
9544put('LEFT_WIGGLY_FENCE, 'codepoint, 0x29D8);
9545put('RIGHT_WIGGLY_FENCE, 'codepoint, 0x29D9);
9546put('LEFT_DOUBLE_WIGGLY_FENCE, 'codepoint, 0x29DA);
9547put('RIGHT_DOUBLE_WIGGLY_FENCE, 'codepoint, 0x29DB);
9548put('INCOMPLETE_INFINITY, 'codepoint, 0x29DC);
9549put('TIE_OVER_INFINITY, 'codepoint, 0x29DD);
9550put('INFINITY_NEGATED_WITH_VERTICAL_BAR, 'codepoint, 0x29DE);
9551put('DOUBLE_ENDED_MULTIMAP, 'codepoint, 0x29DF);
9552put('SQUARE_WITH_CONTOURED_OUTLINE, 'codepoint, 0x29E0);
9553put('INCREASES_AS, 'codepoint, 0x29E1);
9554put('SHUFFLE_PRODUCT, 'codepoint, 0x29E2);
9555put('EQUALS_SIGN_AND_SLANTED_PARALLEL, 'codepoint, 0x29E3);
9556put('EQUALS_SIGN_AND_SLANTED_PARALLEL_WITH_TILDE_ABOVE, 'codepoint, 0x29E4);
9557put('IDENTICAL_TO_AND_SLANTED_PARALLEL, 'codepoint, 0x29E5);
9558put('GLEICH_STARK, 'codepoint, 0x29E6);
9559put('THERMODYNAMIC, 'codepoint, 0x29E7);
9560put('DOWN_POINTING_TRIANGLE_WITH_LEFT_HALF_BLACK, 'codepoint, 0x29E8);
9561put('DOWN_POINTING_TRIANGLE_WITH_RIGHT_HALF_BLACK, 'codepoint, 0x29E9);
9562put('BLACK_DIAMOND_WITH_DOWN_ARROW, 'codepoint, 0x29EA);
9563put('BLACK_LOZENGE, 'codepoint, 0x29EB);
9564put('WHITE_CIRCLE_WITH_DOWN_ARROW, 'codepoint, 0x29EC);
9565put('BLACK_CIRCLE_WITH_DOWN_ARROW, 'codepoint, 0x29ED);
9566put('ERROR_BARRED_WHITE_SQUARE, 'codepoint, 0x29EE);
9567put('ERROR_BARRED_BLACK_SQUARE, 'codepoint, 0x29EF);
9568put('ERROR_BARRED_WHITE_DIAMOND, 'codepoint, 0x29F0);
9569put('ERROR_BARRED_BLACK_DIAMOND, 'codepoint, 0x29F1);
9570put('ERROR_BARRED_WHITE_CIRCLE, 'codepoint, 0x29F2);
9571put('ERROR_BARRED_BLACK_CIRCLE, 'codepoint, 0x29F3);
9572put('RULE_DELAYED, 'codepoint, 0x29F4);
9573put('REVERSE_SOLIDUS_OPERATOR, 'codepoint, 0x29F5);
9574put('SOLIDUS_WITH_OVERBAR, 'codepoint, 0x29F6);
9575put('REVERSE_SOLIDUS_WITH_HORIZONTAL_STROKE, 'codepoint, 0x29F7);
9576put('BIG_SOLIDUS, 'codepoint, 0x29F8);
9577put('BIG_REVERSE_SOLIDUS, 'codepoint, 0x29F9);
9578put('DOUBLE_PLUS, 'codepoint, 0x29FA);
9579put('TRIPLE_PLUS, 'codepoint, 0x29FB);
9580put('LEFT_POINTING_CURVED_ANGLE_BRACKET, 'codepoint, 0x29FC);
9581put('RIGHT_POINTING_CURVED_ANGLE_BRACKET, 'codepoint, 0x29FD);
9582put('TINY, 'codepoint, 0x29FE);
9583put('MINY, 'codepoint, 0x29FF);
9584put('N_ARY_CIRCLED_DOT_OPERATOR, 'codepoint, 0x2A00);
9585put('N_ARY_CIRCLED_PLUS_OPERATOR, 'codepoint, 0x2A01);
9586put('N_ARY_CIRCLED_TIMES_OPERATOR, 'codepoint, 0x2A02);
9587put('N_ARY_UNION_OPERATOR_WITH_DOT, 'codepoint, 0x2A03);
9588put('N_ARY_UNION_OPERATOR_WITH_PLUS, 'codepoint, 0x2A04);
9589put('N_ARY_SQUARE_INTERSECTION_OPERATOR, 'codepoint, 0x2A05);
9590put('N_ARY_SQUARE_UNION_OPERATOR, 'codepoint, 0x2A06);
9591put('TWO_LOGICAL_AND_OPERATOR, 'codepoint, 0x2A07);
9592put('TWO_LOGICAL_OR_OPERATOR, 'codepoint, 0x2A08);
9593put('N_ARY_TIMES_OPERATOR, 'codepoint, 0x2A09);
9594put('MODULO_TWO_SUM, 'codepoint, 0x2A0A);
9595put('SUMMATION_WITH_INTEGRAL, 'codepoint, 0x2A0B);
9596put('QUADRUPLE_INTEGRAL_OPERATOR, 'codepoint, 0x2A0C);
9597put('FINITE_PART_INTEGRAL, 'codepoint, 0x2A0D);
9598put('INTEGRAL_WITH_DOUBLE_STROKE, 'codepoint, 0x2A0E);
9599put('INTEGRAL_AVERAGE_WITH_SLASH, 'codepoint, 0x2A0F);
9600put('CIRCULATION_FUNCTION, 'codepoint, 0x2A10);
9601put('ANTICLOCKWISE_INTEGRATION, 'codepoint, 0x2A11);
9602put('LINE_INTEGRATION_WITH_RECTANGULAR_PATH_AROUND_POLE, 'codepoint, 0x2A12);
9603put('LINE_INTEGRATION_WITH_SEMICIRCULAR_PATH_AROUND_POLE, 'codepoint, 0x2A13);
9604put('LINE_INTEGRATION_NOT_INCLUDING_THE_POLE, 'codepoint, 0x2A14);
9605put('INTEGRAL_AROUND_A_POINT_OPERATOR, 'codepoint, 0x2A15);
9606put('QUATERNION_INTEGRAL_OPERATOR, 'codepoint, 0x2A16);
9607put('INTEGRAL_WITH_LEFTWARDS_ARROW_WITH_HOOK, 'codepoint, 0x2A17);
9608put('INTEGRAL_WITH_TIMES_SIGN, 'codepoint, 0x2A18);
9609put('INTEGRAL_WITH_INTERSECTION, 'codepoint, 0x2A19);
9610put('INTEGRAL_WITH_UNION, 'codepoint, 0x2A1A);
9611put('INTEGRAL_WITH_OVERBAR, 'codepoint, 0x2A1B);
9612put('INTEGRAL_WITH_UNDERBAR, 'codepoint, 0x2A1C);
9613put('JOIN, 'codepoint, 0x2A1D);
9614put('LARGE_LEFT_TRIANGLE_OPERATOR, 'codepoint, 0x2A1E);
9615put('Z_NOTATION_SCHEMA_COMPOSITION, 'codepoint, 0x2A1F);
9616put('Z_NOTATION_SCHEMA_PIPING, 'codepoint, 0x2A20);
9617put('Z_NOTATION_SCHEMA_PROJECTION, 'codepoint, 0x2A21);
9618put('PLUS_SIGN_WITH_SMALL_CIRCLE_ABOVE, 'codepoint, 0x2A22);
9619put('PLUS_SIGN_WITH_CIRCUMFLEX_ACCENT_ABOVE, 'codepoint, 0x2A23);
9620put('PLUS_SIGN_WITH_TILDE_ABOVE, 'codepoint, 0x2A24);
9621put('PLUS_SIGN_WITH_DOT_BELOW, 'codepoint, 0x2A25);
9622put('PLUS_SIGN_WITH_TILDE_BELOW, 'codepoint, 0x2A26);
9623put('PLUS_SIGN_WITH_SUBSCRIPT_TWO, 'codepoint, 0x2A27);
9624put('PLUS_SIGN_WITH_BLACK_TRIANGLE, 'codepoint, 0x2A28);
9625put('MINUS_SIGN_WITH_COMMA_ABOVE, 'codepoint, 0x2A29);
9626put('MINUS_SIGN_WITH_DOT_BELOW, 'codepoint, 0x2A2A);
9627put('MINUS_SIGN_WITH_FALLING_DOTS, 'codepoint, 0x2A2B);
9628put('MINUS_SIGN_WITH_RISING_DOTS, 'codepoint, 0x2A2C);
9629put('PLUS_SIGN_IN_LEFT_HALF_CIRCLE, 'codepoint, 0x2A2D);
9630put('PLUS_SIGN_IN_RIGHT_HALF_CIRCLE, 'codepoint, 0x2A2E);
9631put('VECTOR_OR_CROSS_PRODUCT, 'codepoint, 0x2A2F);
9632put('MULTIPLICATION_SIGN_WITH_DOT_ABOVE, 'codepoint, 0x2A30);
9633put('MULTIPLICATION_SIGN_WITH_UNDERBAR, 'codepoint, 0x2A31);
9634put('SEMIDIRECT_PRODUCT_WITH_BOTTOM_CLOSED, 'codepoint, 0x2A32);
9635put('SMASH_PRODUCT, 'codepoint, 0x2A33);
9636put('MULTIPLICATION_SIGN_IN_LEFT_HALF_CIRCLE, 'codepoint, 0x2A34);
9637put('MULTIPLICATION_SIGN_IN_RIGHT_HALF_CIRCLE, 'codepoint, 0x2A35);
9638put('CIRCLED_MULTIPLICATION_SIGN_WITH_CIRCUMFLEX_ACCENT, 'codepoint, 0x2A36);
9639put('MULTIPLICATION_SIGN_IN_DOUBLE_CIRCLE, 'codepoint, 0x2A37);
9640put('CIRCLED_DIVISION_SIGN, 'codepoint, 0x2A38);
9641put('PLUS_SIGN_IN_TRIANGLE, 'codepoint, 0x2A39);
9642put('MINUS_SIGN_IN_TRIANGLE, 'codepoint, 0x2A3A);
9643put('MULTIPLICATION_SIGN_IN_TRIANGLE, 'codepoint, 0x2A3B);
9644put('INTERIOR_PRODUCT, 'codepoint, 0x2A3C);
9645put('RIGHTHAND_INTERIOR_PRODUCT, 'codepoint, 0x2A3D);
9646put('Z_NOTATION_RELATIONAL_COMPOSITION, 'codepoint, 0x2A3E);
9647put('AMALGAMATION_OR_COPRODUCT, 'codepoint, 0x2A3F);
9648put('INTERSECTION_WITH_DOT, 'codepoint, 0x2A40);
9649put('UNION_WITH_MINUS_SIGN, 'codepoint, 0x2A41);
9650put('UNION_WITH_OVERBAR, 'codepoint, 0x2A42);
9651put('INTERSECTION_WITH_OVERBAR, 'codepoint, 0x2A43);
9652put('INTERSECTION_WITH_LOGICAL_AND, 'codepoint, 0x2A44);
9653put('UNION_WITH_LOGICAL_OR, 'codepoint, 0x2A45);
9654put('UNION_ABOVE_INTERSECTION, 'codepoint, 0x2A46);
9655put('INTERSECTION_ABOVE_UNION, 'codepoint, 0x2A47);
9656put('UNION_ABOVE_BAR_ABOVE_INTERSECTION, 'codepoint, 0x2A48);
9657put('INTERSECTION_ABOVE_BAR_ABOVE_UNION, 'codepoint, 0x2A49);
9658put('UNION_BESIDE_AND_JOINED_WITH_UNION, 'codepoint, 0x2A4A);
9659put('INTERSECTION_BESIDE_AND_JOINED_WITH_INTERSECTION, 'codepoint, 0x2A4B);
9660put('CLOSED_UNION_WITH_SERIFS, 'codepoint, 0x2A4C);
9661put('CLOSED_INTERSECTION_WITH_SERIFS, 'codepoint, 0x2A4D);
9662put('DOUBLE_SQUARE_INTERSECTION, 'codepoint, 0x2A4E);
9663put('DOUBLE_SQUARE_UNION, 'codepoint, 0x2A4F);
9664put('CLOSED_UNION_WITH_SERIFS_AND_SMASH_PRODUCT, 'codepoint, 0x2A50);
9665put('LOGICAL_AND_WITH_DOT_ABOVE, 'codepoint, 0x2A51);
9666put('LOGICAL_OR_WITH_DOT_ABOVE, 'codepoint, 0x2A52);
9667put('DOUBLE_LOGICAL_AND, 'codepoint, 0x2A53);
9668put('DOUBLE_LOGICAL_OR, 'codepoint, 0x2A54);
9669put('TWO_INTERSECTING_LOGICAL_AND, 'codepoint, 0x2A55);
9670put('TWO_INTERSECTING_LOGICAL_OR, 'codepoint, 0x2A56);
9671put('SLOPING_LARGE_OR, 'codepoint, 0x2A57);
9672put('SLOPING_LARGE_AND, 'codepoint, 0x2A58);
9673put('LOGICAL_OR_OVERLAPPING_LOGICAL_AND, 'codepoint, 0x2A59);
9674put('LOGICAL_AND_WITH_MIDDLE_STEM, 'codepoint, 0x2A5A);
9675put('LOGICAL_OR_WITH_MIDDLE_STEM, 'codepoint, 0x2A5B);
9676put('LOGICAL_AND_WITH_HORIZONTAL_DASH, 'codepoint, 0x2A5C);
9677put('LOGICAL_OR_WITH_HORIZONTAL_DASH, 'codepoint, 0x2A5D);
9678put('LOGICAL_AND_WITH_DOUBLE_OVERBAR, 'codepoint, 0x2A5E);
9679put('LOGICAL_AND_WITH_UNDERBAR, 'codepoint, 0x2A5F);
9680put('LOGICAL_AND_WITH_DOUBLE_UNDERBAR, 'codepoint, 0x2A60);
9681put('SMALL_VEE_WITH_UNDERBAR, 'codepoint, 0x2A61);
9682put('LOGICAL_OR_WITH_DOUBLE_OVERBAR, 'codepoint, 0x2A62);
9683put('LOGICAL_OR_WITH_DOUBLE_UNDERBAR, 'codepoint, 0x2A63);
9684put('Z_NOTATION_DOMAIN_ANTIRESTRICTION, 'codepoint, 0x2A64);
9685put('Z_NOTATION_RANGE_ANTIRESTRICTION, 'codepoint, 0x2A65);
9686put('EQUALS_SIGN_WITH_DOT_BELOW, 'codepoint, 0x2A66);
9687put('IDENTICAL_WITH_DOT_ABOVE, 'codepoint, 0x2A67);
9688put('TRIPLE_HORIZONTAL_BAR_WITH_DOUBLE_VERTICAL_STROKE, 'codepoint, 0x2A68);
9689put('TRIPLE_HORIZONTAL_BAR_WITH_TRIPLE_VERTICAL_STROKE, 'codepoint, 0x2A69);
9690put('TILDE_OPERATOR_WITH_DOT_ABOVE, 'codepoint, 0x2A6A);
9691put('TILDE_OPERATOR_WITH_RISING_DOTS, 'codepoint, 0x2A6B);
9692put('SIMILAR_MINUS_SIMILAR, 'codepoint, 0x2A6C);
9693put('CONGRUENT_WITH_DOT_ABOVE, 'codepoint, 0x2A6D);
9694put('EQUALS_WITH_ASTERISK, 'codepoint, 0x2A6E);
9695put('ALMOST_EQUAL_TO_WITH_CIRCUMFLEX_ACCENT, 'codepoint, 0x2A6F);
9696put('APPROXIMATELY_EQUAL_OR_EQUAL_TO, 'codepoint, 0x2A70);
9697put('EQUALS_SIGN_ABOVE_PLUS_SIGN, 'codepoint, 0x2A71);
9698put('PLUS_SIGN_ABOVE_EQUALS_SIGN, 'codepoint, 0x2A72);
9699put('EQUALS_SIGN_ABOVE_TILDE_OPERATOR, 'codepoint, 0x2A73);
9700put('DOUBLE_COLON_EQUAL, 'codepoint, 0x2A74);
9701put('TWO_CONSECUTIVE_EQUALS_SIGNS, 'codepoint, 0x2A75);
9702put('THREE_CONSECUTIVE_EQUALS_SIGNS, 'codepoint, 0x2A76);
9703put('EQUALS_SIGN_WITH_TWO_DOTS_ABOVE_AND_TWO_DOTS_BELOW, 'codepoint, 0x2A77);
9704put('EQUIVALENT_WITH_FOUR_DOTS_ABOVE, 'codepoint, 0x2A78);
9705put('LESS_THAN_WITH_CIRCLE_INSIDE, 'codepoint, 0x2A79);
9706put('GREATER_THAN_WITH_CIRCLE_INSIDE, 'codepoint, 0x2A7A);
9707put('LESS_THAN_WITH_QUESTION_MARK_ABOVE, 'codepoint, 0x2A7B);
9708put('GREATER_THAN_WITH_QUESTION_MARK_ABOVE, 'codepoint, 0x2A7C);
9709put('LESS_THAN_OR_SLANTED_EQUAL_TO, 'codepoint, 0x2A7D);
9710put('GREATER_THAN_OR_SLANTED_EQUAL_TO, 'codepoint, 0x2A7E);
9711put('LESS_THAN_OR_SLANTED_EQUAL_TO_WITH_DOT_INSIDE, 'codepoint, 0x2A7F);
9712put('GREATER_THAN_OR_SLANTED_EQUAL_TO_WITH_DOT_INSIDE, 'codepoint, 0x2A80);
9713put('LESS_THAN_OR_SLANTED_EQUAL_TO_WITH_DOT_ABOVE, 'codepoint, 0x2A81);
9714put('GREATER_THAN_OR_SLANTED_EQUAL_TO_WITH_DOT_ABOVE, 'codepoint, 0x2A82);
9715put('LESS_THAN_OR_SLANTED_EQUAL_TO_WITH_DOT_ABOVE_RIGHT, 'codepoint, 0x2A83);
9716put('GREATER_THAN_OR_SLANTED_EQUAL_TO_WITH_DOT_ABOVE_LEFT, 'codepoint, 0x2A84);
9717put('LESS_THAN_OR_APPROXIMATE, 'codepoint, 0x2A85);
9718put('GREATER_THAN_OR_APPROXIMATE, 'codepoint, 0x2A86);
9719put('LESS_THAN_AND_SINGLE_LINE_NOT_EQUAL_TO, 'codepoint, 0x2A87);
9720put('GREATER_THAN_AND_SINGLE_LINE_NOT_EQUAL_TO, 'codepoint, 0x2A88);
9721put('LESS_THAN_AND_NOT_APPROXIMATE, 'codepoint, 0x2A89);
9722put('GREATER_THAN_AND_NOT_APPROXIMATE, 'codepoint, 0x2A8A);
9723put('LESS_THAN_ABOVE_DOUBLE_LINE_EQUAL_ABOVE_GREATER_THAN, 'codepoint, 0x2A8B);
9724put('GREATER_THAN_ABOVE_DOUBLE_LINE_EQUAL_ABOVE_LESS_THAN, 'codepoint, 0x2A8C);
9725put('LESS_THAN_ABOVE_SIMILAR_OR_EQUAL, 'codepoint, 0x2A8D);
9726put('GREATER_THAN_ABOVE_SIMILAR_OR_EQUAL, 'codepoint, 0x2A8E);
9727put('LESS_THAN_ABOVE_SIMILAR_ABOVE_GREATER_THAN, 'codepoint, 0x2A8F);
9728put('GREATER_THAN_ABOVE_SIMILAR_ABOVE_LESS_THAN, 'codepoint, 0x2A90);
9729put('LESS_THAN_ABOVE_GREATER_THAN_ABOVE_DOUBLE_LINE_EQUAL, 'codepoint, 0x2A91);
9730put('GREATER_THAN_ABOVE_LESS_THAN_ABOVE_DOUBLE_LINE_EQUAL, 'codepoint, 0x2A92);
9731put('LESS_THAN_ABOVE_SLANTED_EQUAL_ABOVE_GREATER_THAN_ABOVE_SLANTED_EQUAL, 'codepoint, 0x2A93);
9732put('GREATER_THAN_ABOVE_SLANTED_EQUAL_ABOVE_LESS_THAN_ABOVE_SLANTED_EQUAL, 'codepoint, 0x2A94);
9733put('SLANTED_EQUAL_TO_OR_LESS_THAN, 'codepoint, 0x2A95);
9734put('SLANTED_EQUAL_TO_OR_GREATER_THAN, 'codepoint, 0x2A96);
9735put('SLANTED_EQUAL_TO_OR_LESS_THAN_WITH_DOT_INSIDE, 'codepoint, 0x2A97);
9736put('SLANTED_EQUAL_TO_OR_GREATER_THAN_WITH_DOT_INSIDE, 'codepoint, 0x2A98);
9737put('DOUBLE_LINE_EQUAL_TO_OR_LESS_THAN, 'codepoint, 0x2A99);
9738put('DOUBLE_LINE_EQUAL_TO_OR_GREATER_THAN, 'codepoint, 0x2A9A);
9739put('DOUBLE_LINE_SLANTED_EQUAL_TO_OR_LESS_THAN, 'codepoint, 0x2A9B);
9740put('DOUBLE_LINE_SLANTED_EQUAL_TO_OR_GREATER_THAN, 'codepoint, 0x2A9C);
9741put('SIMILAR_OR_LESS_THAN, 'codepoint, 0x2A9D);
9742put('SIMILAR_OR_GREATER_THAN, 'codepoint, 0x2A9E);
9743put('SIMILAR_ABOVE_LESS_THAN_ABOVE_EQUALS_SIGN, 'codepoint, 0x2A9F);
9744put('SIMILAR_ABOVE_GREATER_THAN_ABOVE_EQUALS_SIGN, 'codepoint, 0x2AA0);
9745put('DOUBLE_NESTED_LESS_THAN, 'codepoint, 0x2AA1);
9746put('DOUBLE_NESTED_GREATER_THAN, 'codepoint, 0x2AA2);
9747put('DOUBLE_NESTED_LESS_THAN_WITH_UNDERBAR, 'codepoint, 0x2AA3);
9748put('GREATER_THAN_OVERLAPPING_LESS_THAN, 'codepoint, 0x2AA4);
9749put('GREATER_THAN_BESIDE_LESS_THAN, 'codepoint, 0x2AA5);
9750put('LESS_THAN_CLOSED_BY_CURVE, 'codepoint, 0x2AA6);
9751put('GREATER_THAN_CLOSED_BY_CURVE, 'codepoint, 0x2AA7);
9752put('LESS_THAN_CLOSED_BY_CURVE_ABOVE_SLANTED_EQUAL, 'codepoint, 0x2AA8);
9753put('GREATER_THAN_CLOSED_BY_CURVE_ABOVE_SLANTED_EQUAL, 'codepoint, 0x2AA9);
9754put('SMALLER_THAN, 'codepoint, 0x2AAA);
9755put('LARGER_THAN, 'codepoint, 0x2AAB);
9756put('SMALLER_THAN_OR_EQUAL_TO, 'codepoint, 0x2AAC);
9757put('LARGER_THAN_OR_EQUAL_TO, 'codepoint, 0x2AAD);
9758put('EQUALS_SIGN_WITH_BUMPY_ABOVE, 'codepoint, 0x2AAE);
9759put('PRECEDES_ABOVE_SINGLE_LINE_EQUALS_SIGN, 'codepoint, 0x2AAF);
9760put('SUCCEEDS_ABOVE_SINGLE_LINE_EQUALS_SIGN, 'codepoint, 0x2AB0);
9761put('PRECEDES_ABOVE_SINGLE_LINE_NOT_EQUAL_TO, 'codepoint, 0x2AB1);
9762put('SUCCEEDS_ABOVE_SINGLE_LINE_NOT_EQUAL_TO, 'codepoint, 0x2AB2);
9763put('PRECEDES_ABOVE_EQUALS_SIGN, 'codepoint, 0x2AB3);
9764put('SUCCEEDS_ABOVE_EQUALS_SIGN, 'codepoint, 0x2AB4);
9765put('PRECEDES_ABOVE_NOT_EQUAL_TO, 'codepoint, 0x2AB5);
9766put('SUCCEEDS_ABOVE_NOT_EQUAL_TO, 'codepoint, 0x2AB6);
9767put('PRECEDES_ABOVE_ALMOST_EQUAL_TO, 'codepoint, 0x2AB7);
9768put('SUCCEEDS_ABOVE_ALMOST_EQUAL_TO, 'codepoint, 0x2AB8);
9769put('PRECEDES_ABOVE_NOT_ALMOST_EQUAL_TO, 'codepoint, 0x2AB9);
9770put('SUCCEEDS_ABOVE_NOT_ALMOST_EQUAL_TO, 'codepoint, 0x2ABA);
9771put('DOUBLE_PRECEDES, 'codepoint, 0x2ABB);
9772put('DOUBLE_SUCCEEDS, 'codepoint, 0x2ABC);
9773put('SUBSET_WITH_DOT, 'codepoint, 0x2ABD);
9774put('SUPERSET_WITH_DOT, 'codepoint, 0x2ABE);
9775put('SUBSET_WITH_PLUS_SIGN_BELOW, 'codepoint, 0x2ABF);
9776put('SUPERSET_WITH_PLUS_SIGN_BELOW, 'codepoint, 0x2AC0);
9777put('SUBSET_WITH_MULTIPLICATION_SIGN_BELOW, 'codepoint, 0x2AC1);
9778put('SUPERSET_WITH_MULTIPLICATION_SIGN_BELOW, 'codepoint, 0x2AC2);
9779put('SUBSET_OF_OR_EQUAL_TO_WITH_DOT_ABOVE, 'codepoint, 0x2AC3);
9780put('SUPERSET_OF_OR_EQUAL_TO_WITH_DOT_ABOVE, 'codepoint, 0x2AC4);
9781put('SUBSET_OF_ABOVE_EQUALS_SIGN, 'codepoint, 0x2AC5);
9782put('SUPERSET_OF_ABOVE_EQUALS_SIGN, 'codepoint, 0x2AC6);
9783put('SUBSET_OF_ABOVE_TILDE_OPERATOR, 'codepoint, 0x2AC7);
9784put('SUPERSET_OF_ABOVE_TILDE_OPERATOR, 'codepoint, 0x2AC8);
9785put('SUBSET_OF_ABOVE_ALMOST_EQUAL_TO, 'codepoint, 0x2AC9);
9786put('SUPERSET_OF_ABOVE_ALMOST_EQUAL_TO, 'codepoint, 0x2ACA);
9787put('SUBSET_OF_ABOVE_NOT_EQUAL_TO, 'codepoint, 0x2ACB);
9788put('SUPERSET_OF_ABOVE_NOT_EQUAL_TO, 'codepoint, 0x2ACC);
9789put('SQUARE_LEFT_OPEN_BOX_OPERATOR, 'codepoint, 0x2ACD);
9790put('SQUARE_RIGHT_OPEN_BOX_OPERATOR, 'codepoint, 0x2ACE);
9791put('CLOSED_SUBSET, 'codepoint, 0x2ACF);
9792put('CLOSED_SUPERSET, 'codepoint, 0x2AD0);
9793put('CLOSED_SUBSET_OR_EQUAL_TO, 'codepoint, 0x2AD1);
9794put('CLOSED_SUPERSET_OR_EQUAL_TO, 'codepoint, 0x2AD2);
9795put('SUBSET_ABOVE_SUPERSET, 'codepoint, 0x2AD3);
9796put('SUPERSET_ABOVE_SUBSET, 'codepoint, 0x2AD4);
9797put('SUBSET_ABOVE_SUBSET, 'codepoint, 0x2AD5);
9798put('SUPERSET_ABOVE_SUPERSET, 'codepoint, 0x2AD6);
9799put('SUPERSET_BESIDE_SUBSET, 'codepoint, 0x2AD7);
9800put('SUPERSET_BESIDE_AND_JOINED_BY_DASH_WITH_SUBSET, 'codepoint, 0x2AD8);
9801put('ELEMENT_OF_OPENING_DOWNWARDS, 'codepoint, 0x2AD9);
9802put('PITCHFORK_WITH_TEE_TOP, 'codepoint, 0x2ADA);
9803put('TRANSVERSAL_INTERSECTION, 'codepoint, 0x2ADB);
9804put('FORKING, 'codepoint, 0x2ADC);
9805put('NONFORKING, 'codepoint, 0x2ADD);
9806put('SHORT_LEFT_TACK, 'codepoint, 0x2ADE);
9807put('SHORT_DOWN_TACK, 'codepoint, 0x2ADF);
9808put('SHORT_UP_TACK, 'codepoint, 0x2AE0);
9809put('PERPENDICULAR_WITH_S, 'codepoint, 0x2AE1);
9810put('VERTICAL_BAR_TRIPLE_RIGHT_TURNSTILE, 'codepoint, 0x2AE2);
9811put('DOUBLE_VERTICAL_BAR_LEFT_TURNSTILE, 'codepoint, 0x2AE3);
9812put('VERTICAL_BAR_DOUBLE_LEFT_TURNSTILE, 'codepoint, 0x2AE4);
9813put('DOUBLE_VERTICAL_BAR_DOUBLE_LEFT_TURNSTILE, 'codepoint, 0x2AE5);
9814put('LONG_DASH_FROM_LEFT_MEMBER_OF_DOUBLE_VERTICAL, 'codepoint, 0x2AE6);
9815put('SHORT_DOWN_TACK_WITH_OVERBAR, 'codepoint, 0x2AE7);
9816put('SHORT_UP_TACK_WITH_UNDERBAR, 'codepoint, 0x2AE8);
9817put('SHORT_UP_TACK_ABOVE_SHORT_DOWN_TACK, 'codepoint, 0x2AE9);
9818put('DOUBLE_DOWN_TACK, 'codepoint, 0x2AEA);
9819put('DOUBLE_UP_TACK, 'codepoint, 0x2AEB);
9820put('DOUBLE_STROKE_NOT_SIGN, 'codepoint, 0x2AEC);
9821put('REVERSED_DOUBLE_STROKE_NOT_SIGN, 'codepoint, 0x2AED);
9822put('DOES_NOT_DIVIDE_WITH_REVERSED_NEGATION_SLASH, 'codepoint, 0x2AEE);
9823put('VERTICAL_LINE_WITH_CIRCLE_ABOVE, 'codepoint, 0x2AEF);
9824put('VERTICAL_LINE_WITH_CIRCLE_BELOW, 'codepoint, 0x2AF0);
9825put('DOWN_TACK_WITH_CIRCLE_BELOW, 'codepoint, 0x2AF1);
9826put('PARALLEL_WITH_HORIZONTAL_STROKE, 'codepoint, 0x2AF2);
9827put('PARALLEL_WITH_TILDE_OPERATOR, 'codepoint, 0x2AF3);
9828put('TRIPLE_VERTICAL_BAR_BINARY_RELATION, 'codepoint, 0x2AF4);
9829put('TRIPLE_VERTICAL_BAR_WITH_HORIZONTAL_STROKE, 'codepoint, 0x2AF5);
9830put('TRIPLE_COLON_OPERATOR, 'codepoint, 0x2AF6);
9831put('TRIPLE_NESTED_LESS_THAN, 'codepoint, 0x2AF7);
9832put('TRIPLE_NESTED_GREATER_THAN, 'codepoint, 0x2AF8);
9833put('DOUBLE_LINE_SLANTED_LESS_THAN_OR_EQUAL_TO, 'codepoint, 0x2AF9);
9834put('DOUBLE_LINE_SLANTED_GREATER_THAN_OR_EQUAL_TO, 'codepoint, 0x2AFA);
9835put('TRIPLE_SOLIDUS_BINARY_RELATION, 'codepoint, 0x2AFB);
9836put('LARGE_TRIPLE_VERTICAL_BAR_OPERATOR, 'codepoint, 0x2AFC);
9837put('DOUBLE_SOLIDUS_OPERATOR, 'codepoint, 0x2AFD);
9838put('WHITE_VERTICAL_BAR, 'codepoint, 0x2AFE);
9839put('N_ARY_WHITE_VERTICAL_BAR, 'codepoint, 0x2AFF);
9840put('NORTH_EAST_WHITE_ARROW, 'codepoint, 0x2B00);
9841put('NORTH_WEST_WHITE_ARROW, 'codepoint, 0x2B01);
9842put('SOUTH_EAST_WHITE_ARROW, 'codepoint, 0x2B02);
9843put('SOUTH_WEST_WHITE_ARROW, 'codepoint, 0x2B03);
9844put('LEFT_RIGHT_WHITE_ARROW, 'codepoint, 0x2B04);
9845put('LEFTWARDS_BLACK_ARROW, 'codepoint, 0x2B05);
9846put('UPWARDS_BLACK_ARROW, 'codepoint, 0x2B06);
9847put('DOWNWARDS_BLACK_ARROW, 'codepoint, 0x2B07);
9848put('NORTH_EAST_BLACK_ARROW, 'codepoint, 0x2B08);
9849put('NORTH_WEST_BLACK_ARROW, 'codepoint, 0x2B09);
9850put('SOUTH_EAST_BLACK_ARROW, 'codepoint, 0x2B0A);
9851put('SOUTH_WEST_BLACK_ARROW, 'codepoint, 0x2B0B);
9852put('LEFT_RIGHT_BLACK_ARROW, 'codepoint, 0x2B0C);
9853put('UP_DOWN_BLACK_ARROW, 'codepoint, 0x2B0D);
9854put('RIGHTWARDS_ARROW_WITH_TIP_DOWNWARDS, 'codepoint, 0x2B0E);
9855put('RIGHTWARDS_ARROW_WITH_TIP_UPWARDS, 'codepoint, 0x2B0F);
9856put('LEFTWARDS_ARROW_WITH_TIP_DOWNWARDS, 'codepoint, 0x2B10);
9857put('LEFTWARDS_ARROW_WITH_TIP_UPWARDS, 'codepoint, 0x2B11);
9858put('SQUARE_WITH_TOP_HALF_BLACK, 'codepoint, 0x2B12);
9859put('SQUARE_WITH_BOTTOM_HALF_BLACK, 'codepoint, 0x2B13);
9860put('SQUARE_WITH_UPPER_RIGHT_DIAGONAL_HALF_BLACK, 'codepoint, 0x2B14);
9861put('SQUARE_WITH_LOWER_LEFT_DIAGONAL_HALF_BLACK, 'codepoint, 0x2B15);
9862put('DIAMOND_WITH_LEFT_HALF_BLACK, 'codepoint, 0x2B16);
9863put('DIAMOND_WITH_RIGHT_HALF_BLACK, 'codepoint, 0x2B17);
9864put('DIAMOND_WITH_TOP_HALF_BLACK, 'codepoint, 0x2B18);
9865put('DIAMOND_WITH_BOTTOM_HALF_BLACK, 'codepoint, 0x2B19);
9866put('DOTTED_SQUARE, 'codepoint, 0x2B1A);
9867put('BLACK_LARGE_SQUARE, 'codepoint, 0x2B1B);
9868put('WHITE_LARGE_SQUARE, 'codepoint, 0x2B1C);
9869put('BLACK_VERY_SMALL_SQUARE, 'codepoint, 0x2B1D);
9870put('WHITE_VERY_SMALL_SQUARE, 'codepoint, 0x2B1E);
9871put('BLACK_PENTAGON, 'codepoint, 0x2B1F);
9872put('WHITE_PENTAGON, 'codepoint, 0x2B20);
9873put('WHITE_HEXAGON, 'codepoint, 0x2B21);
9874put('BLACK_HEXAGON, 'codepoint, 0x2B22);
9875put('HORIZONTAL_BLACK_HEXAGON, 'codepoint, 0x2B23);
9876put('BLACK_LARGE_CIRCLE, 'codepoint, 0x2B24);
9877put('BLACK_MEDIUM_DIAMOND, 'codepoint, 0x2B25);
9878put('WHITE_MEDIUM_DIAMOND, 'codepoint, 0x2B26);
9879put('BLACK_MEDIUM_LOZENGE, 'codepoint, 0x2B27);
9880put('WHITE_MEDIUM_LOZENGE, 'codepoint, 0x2B28);
9881put('BLACK_SMALL_DIAMOND, 'codepoint, 0x2B29);
9882put('BLACK_SMALL_LOZENGE, 'codepoint, 0x2B2A);
9883put('WHITE_SMALL_LOZENGE, 'codepoint, 0x2B2B);
9884put('BLACK_HORIZONTAL_ELLIPSE, 'codepoint, 0x2B2C);
9885put('WHITE_HORIZONTAL_ELLIPSE, 'codepoint, 0x2B2D);
9886put('BLACK_VERTICAL_ELLIPSE, 'codepoint, 0x2B2E);
9887put('WHITE_VERTICAL_ELLIPSE, 'codepoint, 0x2B2F);
9888put('LEFT_ARROW_WITH_SMALL_CIRCLE, 'codepoint, 0x2B30);
9889put('THREE_LEFTWARDS_ARROWS, 'codepoint, 0x2B31);
9890put('LEFT_ARROW_WITH_CIRCLED_PLUS, 'codepoint, 0x2B32);
9891put('LONG_LEFTWARDS_SQUIGGLE_ARROW, 'codepoint, 0x2B33);
9892put('LEFTWARDS_TWO_HEADED_ARROW_WITH_VERTICAL_STROKE, 'codepoint, 0x2B34);
9893put('LEFTWARDS_TWO_HEADED_ARROW_WITH_DOUBLE_VERTICAL_STROKE, 'codepoint, 0x2B35);
9894put('LEFTWARDS_TWO_HEADED_ARROW_FROM_BAR, 'codepoint, 0x2B36);
9895put('LEFTWARDS_TWO_HEADED_TRIPLE_DASH_ARROW, 'codepoint, 0x2B37);
9896put('LEFTWARDS_ARROW_WITH_DOTTED_STEM, 'codepoint, 0x2B38);
9897put('LEFTWARDS_ARROW_WITH_TAIL_WITH_VERTICAL_STROKE, 'codepoint, 0x2B39);
9898put('LEFTWARDS_ARROW_WITH_TAIL_WITH_DOUBLE_VERTICAL_STROKE, 'codepoint, 0x2B3A);
9899put('LEFTWARDS_TWO_HEADED_ARROW_WITH_TAIL, 'codepoint, 0x2B3B);
9900put('LEFTWARDS_TWO_HEADED_ARROW_WITH_TAIL_WITH_VERTICAL_STROKE, 'codepoint, 0x2B3C);
9901put('LEFTWARDS_TWO_HEADED_ARROW_WITH_TAIL_WITH_DOUBLE_VERTICAL_STROKE, 'codepoint, 0x2B3D);
9902put('LEFTWARDS_ARROW_THROUGH_X, 'codepoint, 0x2B3E);
9903put('WAVE_ARROW_POINTING_DIRECTLY_LEFT, 'codepoint, 0x2B3F);
9904put('EQUALS_SIGN_ABOVE_LEFTWARDS_ARROW, 'codepoint, 0x2B40);
9905put('REVERSE_TILDE_OPERATOR_ABOVE_LEFTWARDS_ARROW, 'codepoint, 0x2B41);
9906put('LEFTWARDS_ARROW_ABOVE_REVERSE_ALMOST_EQUAL_TO, 'codepoint, 0x2B42);
9907put('RIGHTWARDS_ARROW_THROUGH_GREATER_THAN, 'codepoint, 0x2B43);
9908put('RIGHTWARDS_ARROW_THROUGH_SUPERSET, 'codepoint, 0x2B44);
9909put('LEFTWARDS_QUADRUPLE_ARROW, 'codepoint, 0x2B45);
9910put('RIGHTWARDS_QUADRUPLE_ARROW, 'codepoint, 0x2B46);
9911put('REVERSE_TILDE_OPERATOR_ABOVE_RIGHTWARDS_ARROW, 'codepoint, 0x2B47);
9912put('RIGHTWARDS_ARROW_ABOVE_REVERSE_ALMOST_EQUAL_TO, 'codepoint, 0x2B48);
9913put('TILDE_OPERATOR_ABOVE_LEFTWARDS_ARROW, 'codepoint, 0x2B49);
9914put('LEFTWARDS_ARROW_ABOVE_ALMOST_EQUAL_TO, 'codepoint, 0x2B4A);
9915put('LEFTWARDS_ARROW_ABOVE_REVERSE_TILDE_OPERATOR, 'codepoint, 0x2B4B);
9916put('RIGHTWARDS_ARROW_ABOVE_REVERSE_TILDE_OPERATOR, 'codepoint, 0x2B4C);
9917put('DOWNWARDS_TRIANGLE_HEADED_ZIGZAG_ARROW, 'codepoint, 0x2B4D);
9918put('SHORT_SLANTED_NORTH_ARROW, 'codepoint, 0x2B4E);
9919put('SHORT_BACKSLANTED_SOUTH_ARROW, 'codepoint, 0x2B4F);
9920put('WHITE_MEDIUM_STAR, 'codepoint, 0x2B50);
9921put('BLACK_SMALL_STAR, 'codepoint, 0x2B51);
9922put('WHITE_SMALL_STAR, 'codepoint, 0x2B52);
9923put('BLACK_RIGHT_POINTING_PENTAGON, 'codepoint, 0x2B53);
9924put('WHITE_RIGHT_POINTING_PENTAGON, 'codepoint, 0x2B54);
9925put('HEAVY_LARGE_CIRCLE, 'codepoint, 0x2B55);
9926put('HEAVY_OVAL_WITH_OVAL_INSIDE, 'codepoint, 0x2B56);
9927put('HEAVY_CIRCLE_WITH_CIRCLE_INSIDE, 'codepoint, 0x2B57);
9928put('HEAVY_CIRCLE, 'codepoint, 0x2B58);
9929put('HEAVY_CIRCLED_SALTIRE, 'codepoint, 0x2B59);
9930put('SLANTED_NORTH_ARROW_WITH_HOOKED_HEAD, 'codepoint, 0x2B5A);
9931put('BACKSLANTED_SOUTH_ARROW_WITH_HOOKED_TAIL, 'codepoint, 0x2B5B);
9932put('SLANTED_NORTH_ARROW_WITH_HORIZONTAL_TAIL, 'codepoint, 0x2B5C);
9933put('BACKSLANTED_SOUTH_ARROW_WITH_HORIZONTAL_TAIL, 'codepoint, 0x2B5D);
9934put('BENT_ARROW_POINTING_DOWNWARDS_THEN_NORTH_EAST, 'codepoint, 0x2B5E);
9935put('SHORT_BENT_ARROW_POINTING_DOWNWARDS_THEN_NORTH_EAST, 'codepoint, 0x2B5F);
9936put('LEFTWARDS_TRIANGLE_HEADED_ARROW, 'codepoint, 0x2B60);
9937put('UPWARDS_TRIANGLE_HEADED_ARROW, 'codepoint, 0x2B61);
9938put('RIGHTWARDS_TRIANGLE_HEADED_ARROW, 'codepoint, 0x2B62);
9939put('DOWNWARDS_TRIANGLE_HEADED_ARROW, 'codepoint, 0x2B63);
9940put('LEFT_RIGHT_TRIANGLE_HEADED_ARROW, 'codepoint, 0x2B64);
9941put('UP_DOWN_TRIANGLE_HEADED_ARROW, 'codepoint, 0x2B65);
9942put('NORTH_WEST_TRIANGLE_HEADED_ARROW, 'codepoint, 0x2B66);
9943put('NORTH_EAST_TRIANGLE_HEADED_ARROW, 'codepoint, 0x2B67);
9944put('SOUTH_EAST_TRIANGLE_HEADED_ARROW, 'codepoint, 0x2B68);
9945put('SOUTH_WEST_TRIANGLE_HEADED_ARROW, 'codepoint, 0x2B69);
9946put('LEFTWARDS_TRIANGLE_HEADED_DASHED_ARROW, 'codepoint, 0x2B6A);
9947put('UPWARDS_TRIANGLE_HEADED_DASHED_ARROW, 'codepoint, 0x2B6B);
9948put('RIGHTWARDS_TRIANGLE_HEADED_DASHED_ARROW, 'codepoint, 0x2B6C);
9949put('DOWNWARDS_TRIANGLE_HEADED_DASHED_ARROW, 'codepoint, 0x2B6D);
9950put('CLOCKWISE_TRIANGLE_HEADED_OPEN_CIRCLE_ARROW, 'codepoint, 0x2B6E);
9951put('ANTICLOCKWISE_TRIANGLE_HEADED_OPEN_CIRCLE_ARROW, 'codepoint, 0x2B6F);
9952put('LEFTWARDS_TRIANGLE_HEADED_ARROW_TO_BAR, 'codepoint, 0x2B70);
9953put('UPWARDS_TRIANGLE_HEADED_ARROW_TO_BAR, 'codepoint, 0x2B71);
9954put('RIGHTWARDS_TRIANGLE_HEADED_ARROW_TO_BAR, 'codepoint, 0x2B72);
9955put('DOWNWARDS_TRIANGLE_HEADED_ARROW_TO_BAR, 'codepoint, 0x2B73);
9956put('NORTH_WEST_TRIANGLE_HEADED_ARROW_TO_BAR, 'codepoint, 0x2B76);
9957put('NORTH_EAST_TRIANGLE_HEADED_ARROW_TO_BAR, 'codepoint, 0x2B77);
9958put('SOUTH_EAST_TRIANGLE_HEADED_ARROW_TO_BAR, 'codepoint, 0x2B78);
9959put('SOUTH_WEST_TRIANGLE_HEADED_ARROW_TO_BAR, 'codepoint, 0x2B79);
9960put('LEFTWARDS_TRIANGLE_HEADED_ARROW_WITH_DOUBLE_HORIZONTAL_STROKE, 'codepoint, 0x2B7A);
9961put('UPWARDS_TRIANGLE_HEADED_ARROW_WITH_DOUBLE_HORIZONTAL_STROKE, 'codepoint, 0x2B7B);
9962put('RIGHTWARDS_TRIANGLE_HEADED_ARROW_WITH_DOUBLE_HORIZONTAL_STROKE, 'codepoint, 0x2B7C);
9963put('DOWNWARDS_TRIANGLE_HEADED_ARROW_WITH_DOUBLE_HORIZONTAL_STROKE, 'codepoint, 0x2B7D);
9964put('HORIZONTAL_TAB_KEY, 'codepoint, 0x2B7E);
9965put('VERTICAL_TAB_KEY, 'codepoint, 0x2B7F);
9966put('LEFTWARDS_TRIANGLE_HEADED_ARROW_OVER_RIGHTWARDS_TRIANGLE_HEADED_ARROW, 'codepoint, 0x2B80);
9967put('UPWARDS_TRIANGLE_HEADED_ARROW_LEFTWARDS_OF_DOWNWARDS_TRIANGLE_HEADED_ARROW, 'codepoint, 0x2B81);
9968put('RIGHTWARDS_TRIANGLE_HEADED_ARROW_OVER_LEFTWARDS_TRIANGLE_HEADED_ARROW, 'codepoint, 0x2B82);
9969put('DOWNWARDS_TRIANGLE_HEADED_ARROW_LEFTWARDS_OF_UPWARDS_TRIANGLE_HEADED_ARROW, 'codepoint, 0x2B83);
9970put('LEFTWARDS_TRIANGLE_HEADED_PAIRED_ARROWS, 'codepoint, 0x2B84);
9971put('UPWARDS_TRIANGLE_HEADED_PAIRED_ARROWS, 'codepoint, 0x2B85);
9972put('RIGHTWARDS_TRIANGLE_HEADED_PAIRED_ARROWS, 'codepoint, 0x2B86);
9973put('DOWNWARDS_TRIANGLE_HEADED_PAIRED_ARROWS, 'codepoint, 0x2B87);
9974put('LEFTWARDS_BLACK_CIRCLED_WHITE_ARROW, 'codepoint, 0x2B88);
9975put('UPWARDS_BLACK_CIRCLED_WHITE_ARROW, 'codepoint, 0x2B89);
9976put('RIGHTWARDS_BLACK_CIRCLED_WHITE_ARROW, 'codepoint, 0x2B8A);
9977put('DOWNWARDS_BLACK_CIRCLED_WHITE_ARROW, 'codepoint, 0x2B8B);
9978put('ANTICLOCKWISE_TRIANGLE_HEADED_RIGHT_U_SHAPED_ARROW, 'codepoint, 0x2B8C);
9979put('ANTICLOCKWISE_TRIANGLE_HEADED_BOTTOM_U_SHAPED_ARROW, 'codepoint, 0x2B8D);
9980put('ANTICLOCKWISE_TRIANGLE_HEADED_LEFT_U_SHAPED_ARROW, 'codepoint, 0x2B8E);
9981put('ANTICLOCKWISE_TRIANGLE_HEADED_TOP_U_SHAPED_ARROW, 'codepoint, 0x2B8F);
9982put('RETURN_LEFT, 'codepoint, 0x2B90);
9983put('RETURN_RIGHT, 'codepoint, 0x2B91);
9984put('NEWLINE_LEFT, 'codepoint, 0x2B92);
9985put('NEWLINE_RIGHT, 'codepoint, 0x2B93);
9986put('FOUR_CORNER_ARROWS_CIRCLING_ANTICLOCKWISE, 'codepoint, 0x2B94);
9987put('RIGHTWARDS_BLACK_ARROW, 'codepoint, 0x2B95);
9988put('THREE_D_TOP_LIGHTED_LEFTWARDS_EQUILATERAL_ARROWHEAD, 'codepoint, 0x2B98);
9989put('THREE_D_RIGHT_LIGHTED_UPWARDS_EQUILATERAL_ARROWHEAD, 'codepoint, 0x2B99);
9990put('THREE_D_TOP_LIGHTED_RIGHTWARDS_EQUILATERAL_ARROWHEAD, 'codepoint, 0x2B9A);
9991put('THREE_D_LEFT_LIGHTED_DOWNWARDS_EQUILATERAL_ARROWHEAD, 'codepoint, 0x2B9B);
9992put('BLACK_LEFTWARDS_EQUILATERAL_ARROWHEAD, 'codepoint, 0x2B9C);
9993put('BLACK_UPWARDS_EQUILATERAL_ARROWHEAD, 'codepoint, 0x2B9D);
9994put('BLACK_RIGHTWARDS_EQUILATERAL_ARROWHEAD, 'codepoint, 0x2B9E);
9995put('BLACK_DOWNWARDS_EQUILATERAL_ARROWHEAD, 'codepoint, 0x2B9F);
9996put('DOWNWARDS_TRIANGLE_HEADED_ARROW_WITH_LONG_TIP_LEFTWARDS, 'codepoint, 0x2BA0);
9997put('DOWNWARDS_TRIANGLE_HEADED_ARROW_WITH_LONG_TIP_RIGHTWARDS, 'codepoint, 0x2BA1);
9998put('UPWARDS_TRIANGLE_HEADED_ARROW_WITH_LONG_TIP_LEFTWARDS, 'codepoint, 0x2BA2);
9999put('UPWARDS_TRIANGLE_HEADED_ARROW_WITH_LONG_TIP_RIGHTWARDS, 'codepoint, 0x2BA3);
10000put('LEFTWARDS_TRIANGLE_HEADED_ARROW_WITH_LONG_TIP_UPWARDS, 'codepoint, 0x2BA4);
10001put('RIGHTWARDS_TRIANGLE_HEADED_ARROW_WITH_LONG_TIP_UPWARDS, 'codepoint, 0x2BA5);
10002put('LEFTWARDS_TRIANGLE_HEADED_ARROW_WITH_LONG_TIP_DOWNWARDS, 'codepoint, 0x2BA6);
10003put('RIGHTWARDS_TRIANGLE_HEADED_ARROW_WITH_LONG_TIP_DOWNWARDS, 'codepoint, 0x2BA7);
10004put('BLACK_CURVED_DOWNWARDS_AND_LEFTWARDS_ARROW, 'codepoint, 0x2BA8);
10005put('BLACK_CURVED_DOWNWARDS_AND_RIGHTWARDS_ARROW, 'codepoint, 0x2BA9);
10006put('BLACK_CURVED_UPWARDS_AND_LEFTWARDS_ARROW, 'codepoint, 0x2BAA);
10007put('BLACK_CURVED_UPWARDS_AND_RIGHTWARDS_ARROW, 'codepoint, 0x2BAB);
10008put('BLACK_CURVED_LEFTWARDS_AND_UPWARDS_ARROW, 'codepoint, 0x2BAC);
10009put('BLACK_CURVED_RIGHTWARDS_AND_UPWARDS_ARROW, 'codepoint, 0x2BAD);
10010put('BLACK_CURVED_LEFTWARDS_AND_DOWNWARDS_ARROW, 'codepoint, 0x2BAE);
10011put('BLACK_CURVED_RIGHTWARDS_AND_DOWNWARDS_ARROW, 'codepoint, 0x2BAF);
10012put('RIBBON_ARROW_DOWN_LEFT, 'codepoint, 0x2BB0);
10013put('RIBBON_ARROW_DOWN_RIGHT, 'codepoint, 0x2BB1);
10014put('RIBBON_ARROW_UP_LEFT, 'codepoint, 0x2BB2);
10015put('RIBBON_ARROW_UP_RIGHT, 'codepoint, 0x2BB3);
10016put('RIBBON_ARROW_LEFT_UP, 'codepoint, 0x2BB4);
10017put('RIBBON_ARROW_RIGHT_UP, 'codepoint, 0x2BB5);
10018put('RIBBON_ARROW_LEFT_DOWN, 'codepoint, 0x2BB6);
10019put('RIBBON_ARROW_RIGHT_DOWN, 'codepoint, 0x2BB7);
10020put('UPWARDS_WHITE_ARROW_FROM_BAR_WITH_HORIZONTAL_BAR, 'codepoint, 0x2BB8);
10021put('UP_ARROWHEAD_IN_A_RECTANGLE_BOX, 'codepoint, 0x2BB9);
10022put('BALLOT_BOX_WITH_LIGHT_X, 'codepoint, 0x2BBD);
10023put('CIRCLED_X, 'codepoint, 0x2BBE);
10024put('CIRCLED_BOLD_X, 'codepoint, 0x2BBF);
10025put('BLACK_SQUARE_CENTRED, 'codepoint, 0x2BC0);
10026put('BLACK_DIAMOND_CENTRED, 'codepoint, 0x2BC1);
10027put('TURNED_BLACK_PENTAGON, 'codepoint, 0x2BC2);
10028put('HORIZONTAL_BLACK_OCTAGON, 'codepoint, 0x2BC3);
10029put('BLACK_OCTAGON, 'codepoint, 0x2BC4);
10030put('BLACK_MEDIUM_UP_POINTING_TRIANGLE_CENTRED, 'codepoint, 0x2BC5);
10031put('BLACK_MEDIUM_DOWN_POINTING_TRIANGLE_CENTRED, 'codepoint, 0x2BC6);
10032put('BLACK_MEDIUM_LEFT_POINTING_TRIANGLE_CENTRED, 'codepoint, 0x2BC7);
10033put('BLACK_MEDIUM_RIGHT_POINTING_TRIANGLE_CENTRED, 'codepoint, 0x2BC8);
10034put('TOP_HALF_BLACK_CIRCLE, 'codepoint, 0x2BCA);
10035put('BOTTOM_HALF_BLACK_CIRCLE, 'codepoint, 0x2BCB);
10036put('LIGHT_FOUR_POINTED_BLACK_CUSP, 'codepoint, 0x2BCC);
10037put('ROTATED_LIGHT_FOUR_POINTED_BLACK_CUSP, 'codepoint, 0x2BCD);
10038put('WHITE_FOUR_POINTED_CUSP, 'codepoint, 0x2BCE);
10039put('ROTATED_WHITE_FOUR_POINTED_CUSP, 'codepoint, 0x2BCF);
10040put('SQUARE_POSITION_INDICATOR, 'codepoint, 0x2BD0);
10041put('UNCERTAINTY_SIGN, 'codepoint, 0x2BD1);
10042put('GLAGOLITIC_CAPITAL_LETTER_AZU, 'codepoint, 0x2C00);
10043put('GLAGOLITIC_CAPITAL_LETTER_BUKY, 'codepoint, 0x2C01);
10044put('GLAGOLITIC_CAPITAL_LETTER_VEDE, 'codepoint, 0x2C02);
10045put('GLAGOLITIC_CAPITAL_LETTER_GLAGOLI, 'codepoint, 0x2C03);
10046put('GLAGOLITIC_CAPITAL_LETTER_DOBRO, 'codepoint, 0x2C04);
10047put('GLAGOLITIC_CAPITAL_LETTER_YESTU, 'codepoint, 0x2C05);
10048put('GLAGOLITIC_CAPITAL_LETTER_ZHIVETE, 'codepoint, 0x2C06);
10049put('GLAGOLITIC_CAPITAL_LETTER_DZELO, 'codepoint, 0x2C07);
10050put('GLAGOLITIC_CAPITAL_LETTER_ZEMLJA, 'codepoint, 0x2C08);
10051put('GLAGOLITIC_CAPITAL_LETTER_IZHE, 'codepoint, 0x2C09);
10052put('GLAGOLITIC_CAPITAL_LETTER_INITIAL_IZHE, 'codepoint, 0x2C0A);
10053put('GLAGOLITIC_CAPITAL_LETTER_I, 'codepoint, 0x2C0B);
10054put('GLAGOLITIC_CAPITAL_LETTER_DJERVI, 'codepoint, 0x2C0C);
10055put('GLAGOLITIC_CAPITAL_LETTER_KAKO, 'codepoint, 0x2C0D);
10056put('GLAGOLITIC_CAPITAL_LETTER_LJUDIJE, 'codepoint, 0x2C0E);
10057put('GLAGOLITIC_CAPITAL_LETTER_MYSLITE, 'codepoint, 0x2C0F);
10058put('GLAGOLITIC_CAPITAL_LETTER_NASHI, 'codepoint, 0x2C10);
10059put('GLAGOLITIC_CAPITAL_LETTER_ONU, 'codepoint, 0x2C11);
10060put('GLAGOLITIC_CAPITAL_LETTER_POKOJI, 'codepoint, 0x2C12);
10061put('GLAGOLITIC_CAPITAL_LETTER_RITSI, 'codepoint, 0x2C13);
10062put('GLAGOLITIC_CAPITAL_LETTER_SLOVO, 'codepoint, 0x2C14);
10063put('GLAGOLITIC_CAPITAL_LETTER_TVRIDO, 'codepoint, 0x2C15);
10064put('GLAGOLITIC_CAPITAL_LETTER_UKU, 'codepoint, 0x2C16);
10065put('GLAGOLITIC_CAPITAL_LETTER_FRITU, 'codepoint, 0x2C17);
10066put('GLAGOLITIC_CAPITAL_LETTER_HERU, 'codepoint, 0x2C18);
10067put('GLAGOLITIC_CAPITAL_LETTER_OTU, 'codepoint, 0x2C19);
10068put('GLAGOLITIC_CAPITAL_LETTER_PE, 'codepoint, 0x2C1A);
10069put('GLAGOLITIC_CAPITAL_LETTER_SHTA, 'codepoint, 0x2C1B);
10070put('GLAGOLITIC_CAPITAL_LETTER_TSI, 'codepoint, 0x2C1C);
10071put('GLAGOLITIC_CAPITAL_LETTER_CHRIVI, 'codepoint, 0x2C1D);
10072put('GLAGOLITIC_CAPITAL_LETTER_SHA, 'codepoint, 0x2C1E);
10073put('GLAGOLITIC_CAPITAL_LETTER_YERU, 'codepoint, 0x2C1F);
10074put('GLAGOLITIC_CAPITAL_LETTER_YERI, 'codepoint, 0x2C20);
10075put('GLAGOLITIC_CAPITAL_LETTER_YATI, 'codepoint, 0x2C21);
10076put('GLAGOLITIC_CAPITAL_LETTER_SPIDERY_HA, 'codepoint, 0x2C22);
10077put('GLAGOLITIC_CAPITAL_LETTER_YU, 'codepoint, 0x2C23);
10078put('GLAGOLITIC_CAPITAL_LETTER_SMALL_YUS, 'codepoint, 0x2C24);
10079put('GLAGOLITIC_CAPITAL_LETTER_SMALL_YUS_WITH_TAIL, 'codepoint, 0x2C25);
10080put('GLAGOLITIC_CAPITAL_LETTER_YO, 'codepoint, 0x2C26);
10081put('GLAGOLITIC_CAPITAL_LETTER_IOTATED_SMALL_YUS, 'codepoint, 0x2C27);
10082put('GLAGOLITIC_CAPITAL_LETTER_BIG_YUS, 'codepoint, 0x2C28);
10083put('GLAGOLITIC_CAPITAL_LETTER_IOTATED_BIG_YUS, 'codepoint, 0x2C29);
10084put('GLAGOLITIC_CAPITAL_LETTER_FITA, 'codepoint, 0x2C2A);
10085put('GLAGOLITIC_CAPITAL_LETTER_IZHITSA, 'codepoint, 0x2C2B);
10086put('GLAGOLITIC_CAPITAL_LETTER_SHTAPIC, 'codepoint, 0x2C2C);
10087put('GLAGOLITIC_CAPITAL_LETTER_TROKUTASTI_A, 'codepoint, 0x2C2D);
10088put('GLAGOLITIC_CAPITAL_LETTER_LATINATE_MYSLITE, 'codepoint, 0x2C2E);
10089put('GLAGOLITIC_SMALL_LETTER_AZU, 'codepoint, 0x2C30);
10090put('GLAGOLITIC_SMALL_LETTER_BUKY, 'codepoint, 0x2C31);
10091put('GLAGOLITIC_SMALL_LETTER_VEDE, 'codepoint, 0x2C32);
10092put('GLAGOLITIC_SMALL_LETTER_GLAGOLI, 'codepoint, 0x2C33);
10093put('GLAGOLITIC_SMALL_LETTER_DOBRO, 'codepoint, 0x2C34);
10094put('GLAGOLITIC_SMALL_LETTER_YESTU, 'codepoint, 0x2C35);
10095put('GLAGOLITIC_SMALL_LETTER_ZHIVETE, 'codepoint, 0x2C36);
10096put('GLAGOLITIC_SMALL_LETTER_DZELO, 'codepoint, 0x2C37);
10097put('GLAGOLITIC_SMALL_LETTER_ZEMLJA, 'codepoint, 0x2C38);
10098put('GLAGOLITIC_SMALL_LETTER_IZHE, 'codepoint, 0x2C39);
10099put('GLAGOLITIC_SMALL_LETTER_INITIAL_IZHE, 'codepoint, 0x2C3A);
10100put('GLAGOLITIC_SMALL_LETTER_I, 'codepoint, 0x2C3B);
10101put('GLAGOLITIC_SMALL_LETTER_DJERVI, 'codepoint, 0x2C3C);
10102put('GLAGOLITIC_SMALL_LETTER_KAKO, 'codepoint, 0x2C3D);
10103put('GLAGOLITIC_SMALL_LETTER_LJUDIJE, 'codepoint, 0x2C3E);
10104put('GLAGOLITIC_SMALL_LETTER_MYSLITE, 'codepoint, 0x2C3F);
10105put('GLAGOLITIC_SMALL_LETTER_NASHI, 'codepoint, 0x2C40);
10106put('GLAGOLITIC_SMALL_LETTER_ONU, 'codepoint, 0x2C41);
10107put('GLAGOLITIC_SMALL_LETTER_POKOJI, 'codepoint, 0x2C42);
10108put('GLAGOLITIC_SMALL_LETTER_RITSI, 'codepoint, 0x2C43);
10109put('GLAGOLITIC_SMALL_LETTER_SLOVO, 'codepoint, 0x2C44);
10110put('GLAGOLITIC_SMALL_LETTER_TVRIDO, 'codepoint, 0x2C45);
10111put('GLAGOLITIC_SMALL_LETTER_UKU, 'codepoint, 0x2C46);
10112put('GLAGOLITIC_SMALL_LETTER_FRITU, 'codepoint, 0x2C47);
10113put('GLAGOLITIC_SMALL_LETTER_HERU, 'codepoint, 0x2C48);
10114put('GLAGOLITIC_SMALL_LETTER_OTU, 'codepoint, 0x2C49);
10115put('GLAGOLITIC_SMALL_LETTER_PE, 'codepoint, 0x2C4A);
10116put('GLAGOLITIC_SMALL_LETTER_SHTA, 'codepoint, 0x2C4B);
10117put('GLAGOLITIC_SMALL_LETTER_TSI, 'codepoint, 0x2C4C);
10118put('GLAGOLITIC_SMALL_LETTER_CHRIVI, 'codepoint, 0x2C4D);
10119put('GLAGOLITIC_SMALL_LETTER_SHA, 'codepoint, 0x2C4E);
10120put('GLAGOLITIC_SMALL_LETTER_YERU, 'codepoint, 0x2C4F);
10121put('GLAGOLITIC_SMALL_LETTER_YERI, 'codepoint, 0x2C50);
10122put('GLAGOLITIC_SMALL_LETTER_YATI, 'codepoint, 0x2C51);
10123put('GLAGOLITIC_SMALL_LETTER_SPIDERY_HA, 'codepoint, 0x2C52);
10124put('GLAGOLITIC_SMALL_LETTER_YU, 'codepoint, 0x2C53);
10125put('GLAGOLITIC_SMALL_LETTER_SMALL_YUS, 'codepoint, 0x2C54);
10126put('GLAGOLITIC_SMALL_LETTER_SMALL_YUS_WITH_TAIL, 'codepoint, 0x2C55);
10127put('GLAGOLITIC_SMALL_LETTER_YO, 'codepoint, 0x2C56);
10128put('GLAGOLITIC_SMALL_LETTER_IOTATED_SMALL_YUS, 'codepoint, 0x2C57);
10129put('GLAGOLITIC_SMALL_LETTER_BIG_YUS, 'codepoint, 0x2C58);
10130put('GLAGOLITIC_SMALL_LETTER_IOTATED_BIG_YUS, 'codepoint, 0x2C59);
10131put('GLAGOLITIC_SMALL_LETTER_FITA, 'codepoint, 0x2C5A);
10132put('GLAGOLITIC_SMALL_LETTER_IZHITSA, 'codepoint, 0x2C5B);
10133put('GLAGOLITIC_SMALL_LETTER_SHTAPIC, 'codepoint, 0x2C5C);
10134put('GLAGOLITIC_SMALL_LETTER_TROKUTASTI_A, 'codepoint, 0x2C5D);
10135put('GLAGOLITIC_SMALL_LETTER_LATINATE_MYSLITE, 'codepoint, 0x2C5E);
10136put('LATIN_CAPITAL_LETTER_L_WITH_DOUBLE_BAR, 'codepoint, 0x2C60);
10137put('LATIN_SMALL_LETTER_L_WITH_DOUBLE_BAR, 'codepoint, 0x2C61);
10138put('LATIN_CAPITAL_LETTER_L_WITH_MIDDLE_TILDE, 'codepoint, 0x2C62);
10139put('LATIN_CAPITAL_LETTER_P_WITH_STROKE, 'codepoint, 0x2C63);
10140put('LATIN_CAPITAL_LETTER_R_WITH_TAIL, 'codepoint, 0x2C64);
10141put('LATIN_SMALL_LETTER_A_WITH_STROKE, 'codepoint, 0x2C65);
10142put('LATIN_SMALL_LETTER_T_WITH_DIAGONAL_STROKE, 'codepoint, 0x2C66);
10143put('LATIN_CAPITAL_LETTER_H_WITH_DESCENDER, 'codepoint, 0x2C67);
10144put('LATIN_SMALL_LETTER_H_WITH_DESCENDER, 'codepoint, 0x2C68);
10145put('LATIN_CAPITAL_LETTER_K_WITH_DESCENDER, 'codepoint, 0x2C69);
10146put('LATIN_SMALL_LETTER_K_WITH_DESCENDER, 'codepoint, 0x2C6A);
10147put('LATIN_CAPITAL_LETTER_Z_WITH_DESCENDER, 'codepoint, 0x2C6B);
10148put('LATIN_SMALL_LETTER_Z_WITH_DESCENDER, 'codepoint, 0x2C6C);
10149put('LATIN_CAPITAL_LETTER_ALPHA, 'codepoint, 0x2C6D);
10150put('LATIN_CAPITAL_LETTER_M_WITH_HOOK, 'codepoint, 0x2C6E);
10151put('LATIN_CAPITAL_LETTER_TURNED_A, 'codepoint, 0x2C6F);
10152put('LATIN_CAPITAL_LETTER_TURNED_ALPHA, 'codepoint, 0x2C70);
10153put('LATIN_SMALL_LETTER_V_WITH_RIGHT_HOOK, 'codepoint, 0x2C71);
10154put('LATIN_CAPITAL_LETTER_W_WITH_HOOK, 'codepoint, 0x2C72);
10155put('LATIN_SMALL_LETTER_W_WITH_HOOK, 'codepoint, 0x2C73);
10156put('LATIN_SMALL_LETTER_V_WITH_CURL, 'codepoint, 0x2C74);
10157put('LATIN_CAPITAL_LETTER_HALF_H, 'codepoint, 0x2C75);
10158put('LATIN_SMALL_LETTER_HALF_H, 'codepoint, 0x2C76);
10159put('LATIN_SMALL_LETTER_TAILLESS_PHI, 'codepoint, 0x2C77);
10160put('LATIN_SMALL_LETTER_E_WITH_NOTCH, 'codepoint, 0x2C78);
10161put('LATIN_SMALL_LETTER_TURNED_R_WITH_TAIL, 'codepoint, 0x2C79);
10162put('LATIN_SMALL_LETTER_O_WITH_LOW_RING_INSIDE, 'codepoint, 0x2C7A);
10163put('LATIN_LETTER_SMALL_CAPITAL_TURNED_E, 'codepoint, 0x2C7B);
10164put('LATIN_SUBSCRIPT_SMALL_LETTER_J, 'codepoint, 0x2C7C);
10165put('MODIFIER_LETTER_CAPITAL_V, 'codepoint, 0x2C7D);
10166put('LATIN_CAPITAL_LETTER_S_WITH_SWASH_TAIL, 'codepoint, 0x2C7E);
10167put('LATIN_CAPITAL_LETTER_Z_WITH_SWASH_TAIL, 'codepoint, 0x2C7F);
10168put('COPTIC_CAPITAL_LETTER_ALFA, 'codepoint, 0x2C80);
10169put('COPTIC_SMALL_LETTER_ALFA, 'codepoint, 0x2C81);
10170put('COPTIC_CAPITAL_LETTER_VIDA, 'codepoint, 0x2C82);
10171put('COPTIC_SMALL_LETTER_VIDA, 'codepoint, 0x2C83);
10172put('COPTIC_CAPITAL_LETTER_GAMMA, 'codepoint, 0x2C84);
10173put('COPTIC_SMALL_LETTER_GAMMA, 'codepoint, 0x2C85);
10174put('COPTIC_CAPITAL_LETTER_DALDA, 'codepoint, 0x2C86);
10175put('COPTIC_SMALL_LETTER_DALDA, 'codepoint, 0x2C87);
10176put('COPTIC_CAPITAL_LETTER_EIE, 'codepoint, 0x2C88);
10177put('COPTIC_SMALL_LETTER_EIE, 'codepoint, 0x2C89);
10178put('COPTIC_CAPITAL_LETTER_SOU, 'codepoint, 0x2C8A);
10179put('COPTIC_SMALL_LETTER_SOU, 'codepoint, 0x2C8B);
10180put('COPTIC_CAPITAL_LETTER_ZATA, 'codepoint, 0x2C8C);
10181put('COPTIC_SMALL_LETTER_ZATA, 'codepoint, 0x2C8D);
10182put('COPTIC_CAPITAL_LETTER_HATE, 'codepoint, 0x2C8E);
10183put('COPTIC_SMALL_LETTER_HATE, 'codepoint, 0x2C8F);
10184put('COPTIC_CAPITAL_LETTER_THETHE, 'codepoint, 0x2C90);
10185put('COPTIC_SMALL_LETTER_THETHE, 'codepoint, 0x2C91);
10186put('COPTIC_CAPITAL_LETTER_IAUDA, 'codepoint, 0x2C92);
10187put('COPTIC_SMALL_LETTER_IAUDA, 'codepoint, 0x2C93);
10188put('COPTIC_CAPITAL_LETTER_KAPA, 'codepoint, 0x2C94);
10189put('COPTIC_SMALL_LETTER_KAPA, 'codepoint, 0x2C95);
10190put('COPTIC_CAPITAL_LETTER_LAULA, 'codepoint, 0x2C96);
10191put('COPTIC_SMALL_LETTER_LAULA, 'codepoint, 0x2C97);
10192put('COPTIC_CAPITAL_LETTER_MI, 'codepoint, 0x2C98);
10193put('COPTIC_SMALL_LETTER_MI, 'codepoint, 0x2C99);
10194put('COPTIC_CAPITAL_LETTER_NI, 'codepoint, 0x2C9A);
10195put('COPTIC_SMALL_LETTER_NI, 'codepoint, 0x2C9B);
10196put('COPTIC_CAPITAL_LETTER_KSI, 'codepoint, 0x2C9C);
10197put('COPTIC_SMALL_LETTER_KSI, 'codepoint, 0x2C9D);
10198put('COPTIC_CAPITAL_LETTER_O, 'codepoint, 0x2C9E);
10199put('COPTIC_SMALL_LETTER_O, 'codepoint, 0x2C9F);
10200put('COPTIC_CAPITAL_LETTER_PI, 'codepoint, 0x2CA0);
10201put('COPTIC_SMALL_LETTER_PI, 'codepoint, 0x2CA1);
10202put('COPTIC_CAPITAL_LETTER_RO, 'codepoint, 0x2CA2);
10203put('COPTIC_SMALL_LETTER_RO, 'codepoint, 0x2CA3);
10204put('COPTIC_CAPITAL_LETTER_SIMA, 'codepoint, 0x2CA4);
10205put('COPTIC_SMALL_LETTER_SIMA, 'codepoint, 0x2CA5);
10206put('COPTIC_CAPITAL_LETTER_TAU, 'codepoint, 0x2CA6);
10207put('COPTIC_SMALL_LETTER_TAU, 'codepoint, 0x2CA7);
10208put('COPTIC_CAPITAL_LETTER_UA, 'codepoint, 0x2CA8);
10209put('COPTIC_SMALL_LETTER_UA, 'codepoint, 0x2CA9);
10210put('COPTIC_CAPITAL_LETTER_FI, 'codepoint, 0x2CAA);
10211put('COPTIC_SMALL_LETTER_FI, 'codepoint, 0x2CAB);
10212put('COPTIC_CAPITAL_LETTER_KHI, 'codepoint, 0x2CAC);
10213put('COPTIC_SMALL_LETTER_KHI, 'codepoint, 0x2CAD);
10214put('COPTIC_CAPITAL_LETTER_PSI, 'codepoint, 0x2CAE);
10215put('COPTIC_SMALL_LETTER_PSI, 'codepoint, 0x2CAF);
10216put('COPTIC_CAPITAL_LETTER_OOU, 'codepoint, 0x2CB0);
10217put('COPTIC_SMALL_LETTER_OOU, 'codepoint, 0x2CB1);
10218put('COPTIC_CAPITAL_LETTER_DIALECT_P_ALEF, 'codepoint, 0x2CB2);
10219put('COPTIC_SMALL_LETTER_DIALECT_P_ALEF, 'codepoint, 0x2CB3);
10220put('COPTIC_CAPITAL_LETTER_OLD_COPTIC_AIN, 'codepoint, 0x2CB4);
10221put('COPTIC_SMALL_LETTER_OLD_COPTIC_AIN, 'codepoint, 0x2CB5);
10222put('COPTIC_CAPITAL_LETTER_CRYPTOGRAMMIC_EIE, 'codepoint, 0x2CB6);
10223put('COPTIC_SMALL_LETTER_CRYPTOGRAMMIC_EIE, 'codepoint, 0x2CB7);
10224put('COPTIC_CAPITAL_LETTER_DIALECT_P_KAPA, 'codepoint, 0x2CB8);
10225put('COPTIC_SMALL_LETTER_DIALECT_P_KAPA, 'codepoint, 0x2CB9);
10226put('COPTIC_CAPITAL_LETTER_DIALECT_P_NI, 'codepoint, 0x2CBA);
10227put('COPTIC_SMALL_LETTER_DIALECT_P_NI, 'codepoint, 0x2CBB);
10228put('COPTIC_CAPITAL_LETTER_CRYPTOGRAMMIC_NI, 'codepoint, 0x2CBC);
10229put('COPTIC_SMALL_LETTER_CRYPTOGRAMMIC_NI, 'codepoint, 0x2CBD);
10230put('COPTIC_CAPITAL_LETTER_OLD_COPTIC_OOU, 'codepoint, 0x2CBE);
10231put('COPTIC_SMALL_LETTER_OLD_COPTIC_OOU, 'codepoint, 0x2CBF);
10232put('COPTIC_CAPITAL_LETTER_SAMPI, 'codepoint, 0x2CC0);
10233put('COPTIC_SMALL_LETTER_SAMPI, 'codepoint, 0x2CC1);
10234put('COPTIC_CAPITAL_LETTER_CROSSED_SHEI, 'codepoint, 0x2CC2);
10235put('COPTIC_SMALL_LETTER_CROSSED_SHEI, 'codepoint, 0x2CC3);
10236put('COPTIC_CAPITAL_LETTER_OLD_COPTIC_SHEI, 'codepoint, 0x2CC4);
10237put('COPTIC_SMALL_LETTER_OLD_COPTIC_SHEI, 'codepoint, 0x2CC5);
10238put('COPTIC_CAPITAL_LETTER_OLD_COPTIC_ESH, 'codepoint, 0x2CC6);
10239put('COPTIC_SMALL_LETTER_OLD_COPTIC_ESH, 'codepoint, 0x2CC7);
10240put('COPTIC_CAPITAL_LETTER_AKHMIMIC_KHEI, 'codepoint, 0x2CC8);
10241put('COPTIC_SMALL_LETTER_AKHMIMIC_KHEI, 'codepoint, 0x2CC9);
10242put('COPTIC_CAPITAL_LETTER_DIALECT_P_HORI, 'codepoint, 0x2CCA);
10243put('COPTIC_SMALL_LETTER_DIALECT_P_HORI, 'codepoint, 0x2CCB);
10244put('COPTIC_CAPITAL_LETTER_OLD_COPTIC_HORI, 'codepoint, 0x2CCC);
10245put('COPTIC_SMALL_LETTER_OLD_COPTIC_HORI, 'codepoint, 0x2CCD);
10246put('COPTIC_CAPITAL_LETTER_OLD_COPTIC_HA, 'codepoint, 0x2CCE);
10247put('COPTIC_SMALL_LETTER_OLD_COPTIC_HA, 'codepoint, 0x2CCF);
10248put('COPTIC_CAPITAL_LETTER_L_SHAPED_HA, 'codepoint, 0x2CD0);
10249put('COPTIC_SMALL_LETTER_L_SHAPED_HA, 'codepoint, 0x2CD1);
10250put('COPTIC_CAPITAL_LETTER_OLD_COPTIC_HEI, 'codepoint, 0x2CD2);
10251put('COPTIC_SMALL_LETTER_OLD_COPTIC_HEI, 'codepoint, 0x2CD3);
10252put('COPTIC_CAPITAL_LETTER_OLD_COPTIC_HAT, 'codepoint, 0x2CD4);
10253put('COPTIC_SMALL_LETTER_OLD_COPTIC_HAT, 'codepoint, 0x2CD5);
10254put('COPTIC_CAPITAL_LETTER_OLD_COPTIC_GANGIA, 'codepoint, 0x2CD6);
10255put('COPTIC_SMALL_LETTER_OLD_COPTIC_GANGIA, 'codepoint, 0x2CD7);
10256put('COPTIC_CAPITAL_LETTER_OLD_COPTIC_DJA, 'codepoint, 0x2CD8);
10257put('COPTIC_SMALL_LETTER_OLD_COPTIC_DJA, 'codepoint, 0x2CD9);
10258put('COPTIC_CAPITAL_LETTER_OLD_COPTIC_SHIMA, 'codepoint, 0x2CDA);
10259put('COPTIC_SMALL_LETTER_OLD_COPTIC_SHIMA, 'codepoint, 0x2CDB);
10260put('COPTIC_CAPITAL_LETTER_OLD_NUBIAN_SHIMA, 'codepoint, 0x2CDC);
10261put('COPTIC_SMALL_LETTER_OLD_NUBIAN_SHIMA, 'codepoint, 0x2CDD);
10262put('COPTIC_CAPITAL_LETTER_OLD_NUBIAN_NGI, 'codepoint, 0x2CDE);
10263put('COPTIC_SMALL_LETTER_OLD_NUBIAN_NGI, 'codepoint, 0x2CDF);
10264put('COPTIC_CAPITAL_LETTER_OLD_NUBIAN_NYI, 'codepoint, 0x2CE0);
10265put('COPTIC_SMALL_LETTER_OLD_NUBIAN_NYI, 'codepoint, 0x2CE1);
10266put('COPTIC_CAPITAL_LETTER_OLD_NUBIAN_WAU, 'codepoint, 0x2CE2);
10267put('COPTIC_SMALL_LETTER_OLD_NUBIAN_WAU, 'codepoint, 0x2CE3);
10268put('COPTIC_SYMBOL_KAI, 'codepoint, 0x2CE4);
10269put('COPTIC_SYMBOL_MI_RO, 'codepoint, 0x2CE5);
10270put('COPTIC_SYMBOL_PI_RO, 'codepoint, 0x2CE6);
10271put('COPTIC_SYMBOL_STAUROS, 'codepoint, 0x2CE7);
10272put('COPTIC_SYMBOL_TAU_RO, 'codepoint, 0x2CE8);
10273put('COPTIC_SYMBOL_KHI_RO, 'codepoint, 0x2CE9);
10274put('COPTIC_SYMBOL_SHIMA_SIMA, 'codepoint, 0x2CEA);
10275put('COPTIC_CAPITAL_LETTER_CRYPTOGRAMMIC_SHEI, 'codepoint, 0x2CEB);
10276put('COPTIC_SMALL_LETTER_CRYPTOGRAMMIC_SHEI, 'codepoint, 0x2CEC);
10277put('COPTIC_CAPITAL_LETTER_CRYPTOGRAMMIC_GANGIA, 'codepoint, 0x2CED);
10278put('COPTIC_SMALL_LETTER_CRYPTOGRAMMIC_GANGIA, 'codepoint, 0x2CEE);
10279put('COPTIC_COMBINING_NI_ABOVE, 'codepoint, 0x2CEF);
10280put('COPTIC_COMBINING_SPIRITUS_ASPER, 'codepoint, 0x2CF0);
10281put('COPTIC_COMBINING_SPIRITUS_LENIS, 'codepoint, 0x2CF1);
10282put('COPTIC_CAPITAL_LETTER_BOHAIRIC_KHEI, 'codepoint, 0x2CF2);
10283put('COPTIC_SMALL_LETTER_BOHAIRIC_KHEI, 'codepoint, 0x2CF3);
10284put('COPTIC_OLD_NUBIAN_FULL_STOP, 'codepoint, 0x2CF9);
10285put('COPTIC_OLD_NUBIAN_DIRECT_QUESTION_MARK, 'codepoint, 0x2CFA);
10286put('COPTIC_OLD_NUBIAN_INDIRECT_QUESTION_MARK, 'codepoint, 0x2CFB);
10287put('COPTIC_OLD_NUBIAN_VERSE_DIVIDER, 'codepoint, 0x2CFC);
10288put('COPTIC_FRACTION_ONE_HALF, 'codepoint, 0x2CFD);
10289put('COPTIC_FULL_STOP, 'codepoint, 0x2CFE);
10290put('COPTIC_MORPHOLOGICAL_DIVIDER, 'codepoint, 0x2CFF);
10291put('GEORGIAN_SMALL_LETTER_AN, 'codepoint, 0x2D00);
10292put('GEORGIAN_SMALL_LETTER_BAN, 'codepoint, 0x2D01);
10293put('GEORGIAN_SMALL_LETTER_GAN, 'codepoint, 0x2D02);
10294put('GEORGIAN_SMALL_LETTER_DON, 'codepoint, 0x2D03);
10295put('GEORGIAN_SMALL_LETTER_EN, 'codepoint, 0x2D04);
10296put('GEORGIAN_SMALL_LETTER_VIN, 'codepoint, 0x2D05);
10297put('GEORGIAN_SMALL_LETTER_ZEN, 'codepoint, 0x2D06);
10298put('GEORGIAN_SMALL_LETTER_TAN, 'codepoint, 0x2D07);
10299put('GEORGIAN_SMALL_LETTER_IN, 'codepoint, 0x2D08);
10300put('GEORGIAN_SMALL_LETTER_KAN, 'codepoint, 0x2D09);
10301put('GEORGIAN_SMALL_LETTER_LAS, 'codepoint, 0x2D0A);
10302put('GEORGIAN_SMALL_LETTER_MAN, 'codepoint, 0x2D0B);
10303put('GEORGIAN_SMALL_LETTER_NAR, 'codepoint, 0x2D0C);
10304put('GEORGIAN_SMALL_LETTER_ON, 'codepoint, 0x2D0D);
10305put('GEORGIAN_SMALL_LETTER_PAR, 'codepoint, 0x2D0E);
10306put('GEORGIAN_SMALL_LETTER_ZHAR, 'codepoint, 0x2D0F);
10307put('GEORGIAN_SMALL_LETTER_RAE, 'codepoint, 0x2D10);
10308put('GEORGIAN_SMALL_LETTER_SAN, 'codepoint, 0x2D11);
10309put('GEORGIAN_SMALL_LETTER_TAR, 'codepoint, 0x2D12);
10310put('GEORGIAN_SMALL_LETTER_UN, 'codepoint, 0x2D13);
10311put('GEORGIAN_SMALL_LETTER_PHAR, 'codepoint, 0x2D14);
10312put('GEORGIAN_SMALL_LETTER_KHAR, 'codepoint, 0x2D15);
10313put('GEORGIAN_SMALL_LETTER_GHAN, 'codepoint, 0x2D16);
10314put('GEORGIAN_SMALL_LETTER_QAR, 'codepoint, 0x2D17);
10315put('GEORGIAN_SMALL_LETTER_SHIN, 'codepoint, 0x2D18);
10316put('GEORGIAN_SMALL_LETTER_CHIN, 'codepoint, 0x2D19);
10317put('GEORGIAN_SMALL_LETTER_CAN, 'codepoint, 0x2D1A);
10318put('GEORGIAN_SMALL_LETTER_JIL, 'codepoint, 0x2D1B);
10319put('GEORGIAN_SMALL_LETTER_CIL, 'codepoint, 0x2D1C);
10320put('GEORGIAN_SMALL_LETTER_CHAR, 'codepoint, 0x2D1D);
10321put('GEORGIAN_SMALL_LETTER_XAN, 'codepoint, 0x2D1E);
10322put('GEORGIAN_SMALL_LETTER_JHAN, 'codepoint, 0x2D1F);
10323put('GEORGIAN_SMALL_LETTER_HAE, 'codepoint, 0x2D20);
10324put('GEORGIAN_SMALL_LETTER_HE, 'codepoint, 0x2D21);
10325put('GEORGIAN_SMALL_LETTER_HIE, 'codepoint, 0x2D22);
10326put('GEORGIAN_SMALL_LETTER_WE, 'codepoint, 0x2D23);
10327put('GEORGIAN_SMALL_LETTER_HAR, 'codepoint, 0x2D24);
10328put('GEORGIAN_SMALL_LETTER_HOE, 'codepoint, 0x2D25);
10329put('GEORGIAN_SMALL_LETTER_YN, 'codepoint, 0x2D27);
10330put('GEORGIAN_SMALL_LETTER_AEN, 'codepoint, 0x2D2D);
10331put('TIFINAGH_LETTER_YA, 'codepoint, 0x2D30);
10332put('TIFINAGH_LETTER_YAB, 'codepoint, 0x2D31);
10333put('TIFINAGH_LETTER_YABH, 'codepoint, 0x2D32);
10334put('TIFINAGH_LETTER_YAG, 'codepoint, 0x2D33);
10335put('TIFINAGH_LETTER_YAGHH, 'codepoint, 0x2D34);
10336put('TIFINAGH_LETTER_BERBER_ACADEMY_YAJ, 'codepoint, 0x2D35);
10337put('TIFINAGH_LETTER_YAJ, 'codepoint, 0x2D36);
10338put('TIFINAGH_LETTER_YAD, 'codepoint, 0x2D37);
10339put('TIFINAGH_LETTER_YADH, 'codepoint, 0x2D38);
10340put('TIFINAGH_LETTER_YADD, 'codepoint, 0x2D39);
10341put('TIFINAGH_LETTER_YADDH, 'codepoint, 0x2D3A);
10342put('TIFINAGH_LETTER_YEY, 'codepoint, 0x2D3B);
10343put('TIFINAGH_LETTER_YAF, 'codepoint, 0x2D3C);
10344put('TIFINAGH_LETTER_YAK, 'codepoint, 0x2D3D);
10345put('TIFINAGH_LETTER_TUAREG_YAK, 'codepoint, 0x2D3E);
10346put('TIFINAGH_LETTER_YAKHH, 'codepoint, 0x2D3F);
10347put('TIFINAGH_LETTER_YAH, 'codepoint, 0x2D40);
10348put('TIFINAGH_LETTER_BERBER_ACADEMY_YAH, 'codepoint, 0x2D41);
10349put('TIFINAGH_LETTER_TUAREG_YAH, 'codepoint, 0x2D42);
10350put('TIFINAGH_LETTER_YAHH, 'codepoint, 0x2D43);
10351put('TIFINAGH_LETTER_YAA, 'codepoint, 0x2D44);
10352put('TIFINAGH_LETTER_YAKH, 'codepoint, 0x2D45);
10353put('TIFINAGH_LETTER_TUAREG_YAKH, 'codepoint, 0x2D46);
10354put('TIFINAGH_LETTER_YAQ, 'codepoint, 0x2D47);
10355put('TIFINAGH_LETTER_TUAREG_YAQ, 'codepoint, 0x2D48);
10356put('TIFINAGH_LETTER_YI, 'codepoint, 0x2D49);
10357put('TIFINAGH_LETTER_YAZH, 'codepoint, 0x2D4A);
10358put('TIFINAGH_LETTER_AHAGGAR_YAZH, 'codepoint, 0x2D4B);
10359put('TIFINAGH_LETTER_TUAREG_YAZH, 'codepoint, 0x2D4C);
10360put('TIFINAGH_LETTER_YAL, 'codepoint, 0x2D4D);
10361put('TIFINAGH_LETTER_YAM, 'codepoint, 0x2D4E);
10362put('TIFINAGH_LETTER_YAN, 'codepoint, 0x2D4F);
10363put('TIFINAGH_LETTER_TUAREG_YAGN, 'codepoint, 0x2D50);
10364put('TIFINAGH_LETTER_TUAREG_YANG, 'codepoint, 0x2D51);
10365put('TIFINAGH_LETTER_YAP, 'codepoint, 0x2D52);
10366put('TIFINAGH_LETTER_YU, 'codepoint, 0x2D53);
10367put('TIFINAGH_LETTER_YAR, 'codepoint, 0x2D54);
10368put('TIFINAGH_LETTER_YARR, 'codepoint, 0x2D55);
10369put('TIFINAGH_LETTER_YAGH, 'codepoint, 0x2D56);
10370put('TIFINAGH_LETTER_TUAREG_YAGH, 'codepoint, 0x2D57);
10371put('TIFINAGH_LETTER_AYER_YAGH, 'codepoint, 0x2D58);
10372put('TIFINAGH_LETTER_YAS, 'codepoint, 0x2D59);
10373put('TIFINAGH_LETTER_YASS, 'codepoint, 0x2D5A);
10374put('TIFINAGH_LETTER_YASH, 'codepoint, 0x2D5B);
10375put('TIFINAGH_LETTER_YAT, 'codepoint, 0x2D5C);
10376put('TIFINAGH_LETTER_YATH, 'codepoint, 0x2D5D);
10377put('TIFINAGH_LETTER_YACH, 'codepoint, 0x2D5E);
10378put('TIFINAGH_LETTER_YATT, 'codepoint, 0x2D5F);
10379put('TIFINAGH_LETTER_YAV, 'codepoint, 0x2D60);
10380put('TIFINAGH_LETTER_YAW, 'codepoint, 0x2D61);
10381put('TIFINAGH_LETTER_YAY, 'codepoint, 0x2D62);
10382put('TIFINAGH_LETTER_YAZ, 'codepoint, 0x2D63);
10383put('TIFINAGH_LETTER_TAWELLEMET_YAZ, 'codepoint, 0x2D64);
10384put('TIFINAGH_LETTER_YAZZ, 'codepoint, 0x2D65);
10385put('TIFINAGH_LETTER_YE, 'codepoint, 0x2D66);
10386put('TIFINAGH_LETTER_YO, 'codepoint, 0x2D67);
10387put('TIFINAGH_MODIFIER_LETTER_LABIALIZATION_MARK, 'codepoint, 0x2D6F);
10388put('TIFINAGH_SEPARATOR_MARK, 'codepoint, 0x2D70);
10389put('TIFINAGH_CONSONANT_JOINER, 'codepoint, 0x2D7F);
10390put('ETHIOPIC_SYLLABLE_LOA, 'codepoint, 0x2D80);
10391put('ETHIOPIC_SYLLABLE_MOA, 'codepoint, 0x2D81);
10392put('ETHIOPIC_SYLLABLE_ROA, 'codepoint, 0x2D82);
10393put('ETHIOPIC_SYLLABLE_SOA, 'codepoint, 0x2D83);
10394put('ETHIOPIC_SYLLABLE_SHOA, 'codepoint, 0x2D84);
10395put('ETHIOPIC_SYLLABLE_BOA, 'codepoint, 0x2D85);
10396put('ETHIOPIC_SYLLABLE_TOA, 'codepoint, 0x2D86);
10397put('ETHIOPIC_SYLLABLE_COA, 'codepoint, 0x2D87);
10398put('ETHIOPIC_SYLLABLE_NOA, 'codepoint, 0x2D88);
10399put('ETHIOPIC_SYLLABLE_NYOA, 'codepoint, 0x2D89);
10400put('ETHIOPIC_SYLLABLE_GLOTTAL_OA, 'codepoint, 0x2D8A);
10401put('ETHIOPIC_SYLLABLE_ZOA, 'codepoint, 0x2D8B);
10402put('ETHIOPIC_SYLLABLE_DOA, 'codepoint, 0x2D8C);
10403put('ETHIOPIC_SYLLABLE_DDOA, 'codepoint, 0x2D8D);
10404put('ETHIOPIC_SYLLABLE_JOA, 'codepoint, 0x2D8E);
10405put('ETHIOPIC_SYLLABLE_THOA, 'codepoint, 0x2D8F);
10406put('ETHIOPIC_SYLLABLE_CHOA, 'codepoint, 0x2D90);
10407put('ETHIOPIC_SYLLABLE_PHOA, 'codepoint, 0x2D91);
10408put('ETHIOPIC_SYLLABLE_POA, 'codepoint, 0x2D92);
10409put('ETHIOPIC_SYLLABLE_GGWA, 'codepoint, 0x2D93);
10410put('ETHIOPIC_SYLLABLE_GGWI, 'codepoint, 0x2D94);
10411put('ETHIOPIC_SYLLABLE_GGWEE, 'codepoint, 0x2D95);
10412put('ETHIOPIC_SYLLABLE_GGWE, 'codepoint, 0x2D96);
10413put('ETHIOPIC_SYLLABLE_SSA, 'codepoint, 0x2DA0);
10414put('ETHIOPIC_SYLLABLE_SSU, 'codepoint, 0x2DA1);
10415put('ETHIOPIC_SYLLABLE_SSI, 'codepoint, 0x2DA2);
10416put('ETHIOPIC_SYLLABLE_SSAA, 'codepoint, 0x2DA3);
10417put('ETHIOPIC_SYLLABLE_SSEE, 'codepoint, 0x2DA4);
10418put('ETHIOPIC_SYLLABLE_SSE, 'codepoint, 0x2DA5);
10419put('ETHIOPIC_SYLLABLE_SSO, 'codepoint, 0x2DA6);
10420put('ETHIOPIC_SYLLABLE_CCA, 'codepoint, 0x2DA8);
10421put('ETHIOPIC_SYLLABLE_CCU, 'codepoint, 0x2DA9);
10422put('ETHIOPIC_SYLLABLE_CCI, 'codepoint, 0x2DAA);
10423put('ETHIOPIC_SYLLABLE_CCAA, 'codepoint, 0x2DAB);
10424put('ETHIOPIC_SYLLABLE_CCEE, 'codepoint, 0x2DAC);
10425put('ETHIOPIC_SYLLABLE_CCE, 'codepoint, 0x2DAD);
10426put('ETHIOPIC_SYLLABLE_CCO, 'codepoint, 0x2DAE);
10427put('ETHIOPIC_SYLLABLE_ZZA, 'codepoint, 0x2DB0);
10428put('ETHIOPIC_SYLLABLE_ZZU, 'codepoint, 0x2DB1);
10429put('ETHIOPIC_SYLLABLE_ZZI, 'codepoint, 0x2DB2);
10430put('ETHIOPIC_SYLLABLE_ZZAA, 'codepoint, 0x2DB3);
10431put('ETHIOPIC_SYLLABLE_ZZEE, 'codepoint, 0x2DB4);
10432put('ETHIOPIC_SYLLABLE_ZZE, 'codepoint, 0x2DB5);
10433put('ETHIOPIC_SYLLABLE_ZZO, 'codepoint, 0x2DB6);
10434put('ETHIOPIC_SYLLABLE_CCHA, 'codepoint, 0x2DB8);
10435put('ETHIOPIC_SYLLABLE_CCHU, 'codepoint, 0x2DB9);
10436put('ETHIOPIC_SYLLABLE_CCHI, 'codepoint, 0x2DBA);
10437put('ETHIOPIC_SYLLABLE_CCHAA, 'codepoint, 0x2DBB);
10438put('ETHIOPIC_SYLLABLE_CCHEE, 'codepoint, 0x2DBC);
10439put('ETHIOPIC_SYLLABLE_CCHE, 'codepoint, 0x2DBD);
10440put('ETHIOPIC_SYLLABLE_CCHO, 'codepoint, 0x2DBE);
10441put('ETHIOPIC_SYLLABLE_QYA, 'codepoint, 0x2DC0);
10442put('ETHIOPIC_SYLLABLE_QYU, 'codepoint, 0x2DC1);
10443put('ETHIOPIC_SYLLABLE_QYI, 'codepoint, 0x2DC2);
10444put('ETHIOPIC_SYLLABLE_QYAA, 'codepoint, 0x2DC3);
10445put('ETHIOPIC_SYLLABLE_QYEE, 'codepoint, 0x2DC4);
10446put('ETHIOPIC_SYLLABLE_QYE, 'codepoint, 0x2DC5);
10447put('ETHIOPIC_SYLLABLE_QYO, 'codepoint, 0x2DC6);
10448put('ETHIOPIC_SYLLABLE_KYA, 'codepoint, 0x2DC8);
10449put('ETHIOPIC_SYLLABLE_KYU, 'codepoint, 0x2DC9);
10450put('ETHIOPIC_SYLLABLE_KYI, 'codepoint, 0x2DCA);
10451put('ETHIOPIC_SYLLABLE_KYAA, 'codepoint, 0x2DCB);
10452put('ETHIOPIC_SYLLABLE_KYEE, 'codepoint, 0x2DCC);
10453put('ETHIOPIC_SYLLABLE_KYE, 'codepoint, 0x2DCD);
10454put('ETHIOPIC_SYLLABLE_KYO, 'codepoint, 0x2DCE);
10455put('ETHIOPIC_SYLLABLE_XYA, 'codepoint, 0x2DD0);
10456put('ETHIOPIC_SYLLABLE_XYU, 'codepoint, 0x2DD1);
10457put('ETHIOPIC_SYLLABLE_XYI, 'codepoint, 0x2DD2);
10458put('ETHIOPIC_SYLLABLE_XYAA, 'codepoint, 0x2DD3);
10459put('ETHIOPIC_SYLLABLE_XYEE, 'codepoint, 0x2DD4);
10460put('ETHIOPIC_SYLLABLE_XYE, 'codepoint, 0x2DD5);
10461put('ETHIOPIC_SYLLABLE_XYO, 'codepoint, 0x2DD6);
10462put('ETHIOPIC_SYLLABLE_GYA, 'codepoint, 0x2DD8);
10463put('ETHIOPIC_SYLLABLE_GYU, 'codepoint, 0x2DD9);
10464put('ETHIOPIC_SYLLABLE_GYI, 'codepoint, 0x2DDA);
10465put('ETHIOPIC_SYLLABLE_GYAA, 'codepoint, 0x2DDB);
10466put('ETHIOPIC_SYLLABLE_GYEE, 'codepoint, 0x2DDC);
10467put('ETHIOPIC_SYLLABLE_GYE, 'codepoint, 0x2DDD);
10468put('ETHIOPIC_SYLLABLE_GYO, 'codepoint, 0x2DDE);
10469put('COMBINING_CYRILLIC_LETTER_BE, 'codepoint, 0x2DE0);
10470put('COMBINING_CYRILLIC_LETTER_VE, 'codepoint, 0x2DE1);
10471put('COMBINING_CYRILLIC_LETTER_GHE, 'codepoint, 0x2DE2);
10472put('COMBINING_CYRILLIC_LETTER_DE, 'codepoint, 0x2DE3);
10473put('COMBINING_CYRILLIC_LETTER_ZHE, 'codepoint, 0x2DE4);
10474put('COMBINING_CYRILLIC_LETTER_ZE, 'codepoint, 0x2DE5);
10475put('COMBINING_CYRILLIC_LETTER_KA, 'codepoint, 0x2DE6);
10476put('COMBINING_CYRILLIC_LETTER_EL, 'codepoint, 0x2DE7);
10477put('COMBINING_CYRILLIC_LETTER_EM, 'codepoint, 0x2DE8);
10478put('COMBINING_CYRILLIC_LETTER_EN, 'codepoint, 0x2DE9);
10479put('COMBINING_CYRILLIC_LETTER_O, 'codepoint, 0x2DEA);
10480put('COMBINING_CYRILLIC_LETTER_PE, 'codepoint, 0x2DEB);
10481put('COMBINING_CYRILLIC_LETTER_ER, 'codepoint, 0x2DEC);
10482put('COMBINING_CYRILLIC_LETTER_ES, 'codepoint, 0x2DED);
10483put('COMBINING_CYRILLIC_LETTER_TE, 'codepoint, 0x2DEE);
10484put('COMBINING_CYRILLIC_LETTER_HA, 'codepoint, 0x2DEF);
10485put('COMBINING_CYRILLIC_LETTER_TSE, 'codepoint, 0x2DF0);
10486put('COMBINING_CYRILLIC_LETTER_CHE, 'codepoint, 0x2DF1);
10487put('COMBINING_CYRILLIC_LETTER_SHA, 'codepoint, 0x2DF2);
10488put('COMBINING_CYRILLIC_LETTER_SHCHA, 'codepoint, 0x2DF3);
10489put('COMBINING_CYRILLIC_LETTER_FITA, 'codepoint, 0x2DF4);
10490put('COMBINING_CYRILLIC_LETTER_ES_TE, 'codepoint, 0x2DF5);
10491put('COMBINING_CYRILLIC_LETTER_A, 'codepoint, 0x2DF6);
10492put('COMBINING_CYRILLIC_LETTER_IE, 'codepoint, 0x2DF7);
10493put('COMBINING_CYRILLIC_LETTER_DJERV, 'codepoint, 0x2DF8);
10494put('COMBINING_CYRILLIC_LETTER_MONOGRAPH_UK, 'codepoint, 0x2DF9);
10495put('COMBINING_CYRILLIC_LETTER_YAT, 'codepoint, 0x2DFA);
10496put('COMBINING_CYRILLIC_LETTER_YU, 'codepoint, 0x2DFB);
10497put('COMBINING_CYRILLIC_LETTER_IOTIFIED_A, 'codepoint, 0x2DFC);
10498put('COMBINING_CYRILLIC_LETTER_LITTLE_YUS, 'codepoint, 0x2DFD);
10499put('COMBINING_CYRILLIC_LETTER_BIG_YUS, 'codepoint, 0x2DFE);
10500put('COMBINING_CYRILLIC_LETTER_IOTIFIED_BIG_YUS, 'codepoint, 0x2DFF);
10501put('RIGHT_ANGLE_SUBSTITUTION_MARKER, 'codepoint, 0x2E00);
10502put('RIGHT_ANGLE_DOTTED_SUBSTITUTION_MARKER, 'codepoint, 0x2E01);
10503put('LEFT_SUBSTITUTION_BRACKET, 'codepoint, 0x2E02);
10504put('RIGHT_SUBSTITUTION_BRACKET, 'codepoint, 0x2E03);
10505put('LEFT_DOTTED_SUBSTITUTION_BRACKET, 'codepoint, 0x2E04);
10506put('RIGHT_DOTTED_SUBSTITUTION_BRACKET, 'codepoint, 0x2E05);
10507put('RAISED_INTERPOLATION_MARKER, 'codepoint, 0x2E06);
10508put('RAISED_DOTTED_INTERPOLATION_MARKER, 'codepoint, 0x2E07);
10509put('DOTTED_TRANSPOSITION_MARKER, 'codepoint, 0x2E08);
10510put('LEFT_TRANSPOSITION_BRACKET, 'codepoint, 0x2E09);
10511put('RIGHT_TRANSPOSITION_BRACKET, 'codepoint, 0x2E0A);
10512put('RAISED_SQUARE, 'codepoint, 0x2E0B);
10513put('LEFT_RAISED_OMISSION_BRACKET, 'codepoint, 0x2E0C);
10514put('RIGHT_RAISED_OMISSION_BRACKET, 'codepoint, 0x2E0D);
10515put('EDITORIAL_CORONIS, 'codepoint, 0x2E0E);
10516put('PARAGRAPHOS, 'codepoint, 0x2E0F);
10517put('FORKED_PARAGRAPHOS, 'codepoint, 0x2E10);
10518put('REVERSED_FORKED_PARAGRAPHOS, 'codepoint, 0x2E11);
10519put('HYPODIASTOLE, 'codepoint, 0x2E12);
10520put('DOTTED_OBELOS, 'codepoint, 0x2E13);
10521put('DOWNWARDS_ANCORA, 'codepoint, 0x2E14);
10522put('UPWARDS_ANCORA, 'codepoint, 0x2E15);
10523put('DOTTED_RIGHT_POINTING_ANGLE, 'codepoint, 0x2E16);
10524put('DOUBLE_OBLIQUE_HYPHEN, 'codepoint, 0x2E17);
10525put('INVERTED_INTERROBANG, 'codepoint, 0x2E18);
10526put('PALM_BRANCH, 'codepoint, 0x2E19);
10527put('HYPHEN_WITH_DIAERESIS, 'codepoint, 0x2E1A);
10528put('TILDE_WITH_RING_ABOVE, 'codepoint, 0x2E1B);
10529put('LEFT_LOW_PARAPHRASE_BRACKET, 'codepoint, 0x2E1C);
10530put('RIGHT_LOW_PARAPHRASE_BRACKET, 'codepoint, 0x2E1D);
10531put('TILDE_WITH_DOT_ABOVE, 'codepoint, 0x2E1E);
10532put('TILDE_WITH_DOT_BELOW, 'codepoint, 0x2E1F);
10533put('LEFT_VERTICAL_BAR_WITH_QUILL, 'codepoint, 0x2E20);
10534put('RIGHT_VERTICAL_BAR_WITH_QUILL, 'codepoint, 0x2E21);
10535put('TOP_LEFT_HALF_BRACKET, 'codepoint, 0x2E22);
10536put('TOP_RIGHT_HALF_BRACKET, 'codepoint, 0x2E23);
10537put('BOTTOM_LEFT_HALF_BRACKET, 'codepoint, 0x2E24);
10538put('BOTTOM_RIGHT_HALF_BRACKET, 'codepoint, 0x2E25);
10539put('LEFT_SIDEWAYS_U_BRACKET, 'codepoint, 0x2E26);
10540put('RIGHT_SIDEWAYS_U_BRACKET, 'codepoint, 0x2E27);
10541put('LEFT_DOUBLE_PARENTHESIS, 'codepoint, 0x2E28);
10542put('RIGHT_DOUBLE_PARENTHESIS, 'codepoint, 0x2E29);
10543put('TWO_DOTS_OVER_ONE_DOT_PUNCTUATION, 'codepoint, 0x2E2A);
10544put('ONE_DOT_OVER_TWO_DOTS_PUNCTUATION, 'codepoint, 0x2E2B);
10545put('SQUARED_FOUR_DOT_PUNCTUATION, 'codepoint, 0x2E2C);
10546put('FIVE_DOT_MARK, 'codepoint, 0x2E2D);
10547put('REVERSED_QUESTION_MARK, 'codepoint, 0x2E2E);
10548put('VERTICAL_TILDE, 'codepoint, 0x2E2F);
10549put('RING_POINT, 'codepoint, 0x2E30);
10550put('WORD_SEPARATOR_MIDDLE_DOT, 'codepoint, 0x2E31);
10551put('TURNED_COMMA, 'codepoint, 0x2E32);
10552put('RAISED_DOT, 'codepoint, 0x2E33);
10553put('RAISED_COMMA, 'codepoint, 0x2E34);
10554put('TURNED_SEMICOLON, 'codepoint, 0x2E35);
10555put('DAGGER_WITH_LEFT_GUARD, 'codepoint, 0x2E36);
10556put('DAGGER_WITH_RIGHT_GUARD, 'codepoint, 0x2E37);
10557put('TURNED_DAGGER, 'codepoint, 0x2E38);
10558put('TOP_HALF_SECTION_SIGN, 'codepoint, 0x2E39);
10559put('TWO_EM_DASH, 'codepoint, 0x2E3A);
10560put('THREE_EM_DASH, 'codepoint, 0x2E3B);
10561put('STENOGRAPHIC_FULL_STOP, 'codepoint, 0x2E3C);
10562put('VERTICAL_SIX_DOTS, 'codepoint, 0x2E3D);
10563put('WIGGLY_VERTICAL_LINE, 'codepoint, 0x2E3E);
10564put('CAPITULUM, 'codepoint, 0x2E3F);
10565put('DOUBLE_HYPHEN, 'codepoint, 0x2E40);
10566put('REVERSED_COMMA, 'codepoint, 0x2E41);
10567put('DOUBLE_LOW_REVERSED_9_QUOTATION_MARK, 'codepoint, 0x2E42);
10568put('CJK_RADICAL_REPEAT, 'codepoint, 0x2E80);
10569put('CJK_RADICAL_CLIFF, 'codepoint, 0x2E81);
10570put('CJK_RADICAL_SECOND_ONE, 'codepoint, 0x2E82);
10571put('CJK_RADICAL_SECOND_TWO, 'codepoint, 0x2E83);
10572put('CJK_RADICAL_SECOND_THREE, 'codepoint, 0x2E84);
10573put('CJK_RADICAL_PERSON, 'codepoint, 0x2E85);
10574put('CJK_RADICAL_BOX, 'codepoint, 0x2E86);
10575put('CJK_RADICAL_TABLE, 'codepoint, 0x2E87);
10576put('CJK_RADICAL_KNIFE_ONE, 'codepoint, 0x2E88);
10577put('CJK_RADICAL_KNIFE_TWO, 'codepoint, 0x2E89);
10578put('CJK_RADICAL_DIVINATION, 'codepoint, 0x2E8A);
10579put('CJK_RADICAL_SEAL, 'codepoint, 0x2E8B);
10580put('CJK_RADICAL_SMALL_ONE, 'codepoint, 0x2E8C);
10581put('CJK_RADICAL_SMALL_TWO, 'codepoint, 0x2E8D);
10582put('CJK_RADICAL_LAME_ONE, 'codepoint, 0x2E8E);
10583put('CJK_RADICAL_LAME_TWO, 'codepoint, 0x2E8F);
10584put('CJK_RADICAL_LAME_THREE, 'codepoint, 0x2E90);
10585put('CJK_RADICAL_LAME_FOUR, 'codepoint, 0x2E91);
10586put('CJK_RADICAL_SNAKE, 'codepoint, 0x2E92);
10587put('CJK_RADICAL_THREAD, 'codepoint, 0x2E93);
10588put('CJK_RADICAL_SNOUT_ONE, 'codepoint, 0x2E94);
10589put('CJK_RADICAL_SNOUT_TWO, 'codepoint, 0x2E95);
10590put('CJK_RADICAL_HEART_ONE, 'codepoint, 0x2E96);
10591put('CJK_RADICAL_HEART_TWO, 'codepoint, 0x2E97);
10592put('CJK_RADICAL_HAND, 'codepoint, 0x2E98);
10593put('CJK_RADICAL_RAP, 'codepoint, 0x2E99);
10594put('CJK_RADICAL_CHOKE, 'codepoint, 0x2E9B);
10595put('CJK_RADICAL_SUN, 'codepoint, 0x2E9C);
10596put('CJK_RADICAL_MOON, 'codepoint, 0x2E9D);
10597put('CJK_RADICAL_DEATH, 'codepoint, 0x2E9E);
10598put('CJK_RADICAL_MOTHER, 'codepoint, 0x2E9F);
10599put('CJK_RADICAL_CIVILIAN, 'codepoint, 0x2EA0);
10600put('CJK_RADICAL_WATER_ONE, 'codepoint, 0x2EA1);
10601put('CJK_RADICAL_WATER_TWO, 'codepoint, 0x2EA2);
10602put('CJK_RADICAL_FIRE, 'codepoint, 0x2EA3);
10603put('CJK_RADICAL_PAW_ONE, 'codepoint, 0x2EA4);
10604put('CJK_RADICAL_PAW_TWO, 'codepoint, 0x2EA5);
10605put('CJK_RADICAL_SIMPLIFIED_HALF_TREE_TRUNK, 'codepoint, 0x2EA6);
10606put('CJK_RADICAL_COW, 'codepoint, 0x2EA7);
10607put('CJK_RADICAL_DOG, 'codepoint, 0x2EA8);
10608put('CJK_RADICAL_JADE, 'codepoint, 0x2EA9);
10609put('CJK_RADICAL_BOLT_OF_CLOTH, 'codepoint, 0x2EAA);
10610put('CJK_RADICAL_EYE, 'codepoint, 0x2EAB);
10611put('CJK_RADICAL_SPIRIT_ONE, 'codepoint, 0x2EAC);
10612put('CJK_RADICAL_SPIRIT_TWO, 'codepoint, 0x2EAD);
10613put('CJK_RADICAL_BAMBOO, 'codepoint, 0x2EAE);
10614put('CJK_RADICAL_SILK, 'codepoint, 0x2EAF);
10615put('CJK_RADICAL_C_SIMPLIFIED_SILK, 'codepoint, 0x2EB0);
10616put('CJK_RADICAL_NET_ONE, 'codepoint, 0x2EB1);
10617put('CJK_RADICAL_NET_TWO, 'codepoint, 0x2EB2);
10618put('CJK_RADICAL_NET_THREE, 'codepoint, 0x2EB3);
10619put('CJK_RADICAL_NET_FOUR, 'codepoint, 0x2EB4);
10620put('CJK_RADICAL_MESH, 'codepoint, 0x2EB5);
10621put('CJK_RADICAL_SHEEP, 'codepoint, 0x2EB6);
10622put('CJK_RADICAL_RAM, 'codepoint, 0x2EB7);
10623put('CJK_RADICAL_EWE, 'codepoint, 0x2EB8);
10624put('CJK_RADICAL_OLD, 'codepoint, 0x2EB9);
10625put('CJK_RADICAL_BRUSH_ONE, 'codepoint, 0x2EBA);
10626put('CJK_RADICAL_BRUSH_TWO, 'codepoint, 0x2EBB);
10627put('CJK_RADICAL_MEAT, 'codepoint, 0x2EBC);
10628put('CJK_RADICAL_MORTAR, 'codepoint, 0x2EBD);
10629put('CJK_RADICAL_GRASS_ONE, 'codepoint, 0x2EBE);
10630put('CJK_RADICAL_GRASS_TWO, 'codepoint, 0x2EBF);
10631put('CJK_RADICAL_GRASS_THREE, 'codepoint, 0x2EC0);
10632put('CJK_RADICAL_TIGER, 'codepoint, 0x2EC1);
10633put('CJK_RADICAL_CLOTHES, 'codepoint, 0x2EC2);
10634put('CJK_RADICAL_WEST_ONE, 'codepoint, 0x2EC3);
10635put('CJK_RADICAL_WEST_TWO, 'codepoint, 0x2EC4);
10636put('CJK_RADICAL_C_SIMPLIFIED_SEE, 'codepoint, 0x2EC5);
10637put('CJK_RADICAL_SIMPLIFIED_HORN, 'codepoint, 0x2EC6);
10638put('CJK_RADICAL_HORN, 'codepoint, 0x2EC7);
10639put('CJK_RADICAL_C_SIMPLIFIED_SPEECH, 'codepoint, 0x2EC8);
10640put('CJK_RADICAL_C_SIMPLIFIED_SHELL, 'codepoint, 0x2EC9);
10641put('CJK_RADICAL_FOOT, 'codepoint, 0x2ECA);
10642put('CJK_RADICAL_C_SIMPLIFIED_CART, 'codepoint, 0x2ECB);
10643put('CJK_RADICAL_SIMPLIFIED_WALK, 'codepoint, 0x2ECC);
10644put('CJK_RADICAL_WALK_ONE, 'codepoint, 0x2ECD);
10645put('CJK_RADICAL_WALK_TWO, 'codepoint, 0x2ECE);
10646put('CJK_RADICAL_CITY, 'codepoint, 0x2ECF);
10647put('CJK_RADICAL_C_SIMPLIFIED_GOLD, 'codepoint, 0x2ED0);
10648put('CJK_RADICAL_LONG_ONE, 'codepoint, 0x2ED1);
10649put('CJK_RADICAL_LONG_TWO, 'codepoint, 0x2ED2);
10650put('CJK_RADICAL_C_SIMPLIFIED_LONG, 'codepoint, 0x2ED3);
10651put('CJK_RADICAL_C_SIMPLIFIED_GATE, 'codepoint, 0x2ED4);
10652put('CJK_RADICAL_MOUND_ONE, 'codepoint, 0x2ED5);
10653put('CJK_RADICAL_MOUND_TWO, 'codepoint, 0x2ED6);
10654put('CJK_RADICAL_RAIN, 'codepoint, 0x2ED7);
10655put('CJK_RADICAL_BLUE, 'codepoint, 0x2ED8);
10656put('CJK_RADICAL_C_SIMPLIFIED_TANNED_LEATHER, 'codepoint, 0x2ED9);
10657put('CJK_RADICAL_C_SIMPLIFIED_LEAF, 'codepoint, 0x2EDA);
10658put('CJK_RADICAL_C_SIMPLIFIED_WIND, 'codepoint, 0x2EDB);
10659put('CJK_RADICAL_C_SIMPLIFIED_FLY, 'codepoint, 0x2EDC);
10660put('CJK_RADICAL_EAT_ONE, 'codepoint, 0x2EDD);
10661put('CJK_RADICAL_EAT_TWO, 'codepoint, 0x2EDE);
10662put('CJK_RADICAL_EAT_THREE, 'codepoint, 0x2EDF);
10663put('CJK_RADICAL_C_SIMPLIFIED_EAT, 'codepoint, 0x2EE0);
10664put('CJK_RADICAL_HEAD, 'codepoint, 0x2EE1);
10665put('CJK_RADICAL_C_SIMPLIFIED_HORSE, 'codepoint, 0x2EE2);
10666put('CJK_RADICAL_BONE, 'codepoint, 0x2EE3);
10667put('CJK_RADICAL_GHOST, 'codepoint, 0x2EE4);
10668put('CJK_RADICAL_C_SIMPLIFIED_FISH, 'codepoint, 0x2EE5);
10669put('CJK_RADICAL_C_SIMPLIFIED_BIRD, 'codepoint, 0x2EE6);
10670put('CJK_RADICAL_C_SIMPLIFIED_SALT, 'codepoint, 0x2EE7);
10671put('CJK_RADICAL_SIMPLIFIED_WHEAT, 'codepoint, 0x2EE8);
10672put('CJK_RADICAL_SIMPLIFIED_YELLOW, 'codepoint, 0x2EE9);
10673put('CJK_RADICAL_C_SIMPLIFIED_FROG, 'codepoint, 0x2EEA);
10674put('CJK_RADICAL_J_SIMPLIFIED_EVEN, 'codepoint, 0x2EEB);
10675put('CJK_RADICAL_C_SIMPLIFIED_EVEN, 'codepoint, 0x2EEC);
10676put('CJK_RADICAL_J_SIMPLIFIED_TOOTH, 'codepoint, 0x2EED);
10677put('CJK_RADICAL_C_SIMPLIFIED_TOOTH, 'codepoint, 0x2EEE);
10678put('CJK_RADICAL_J_SIMPLIFIED_DRAGON, 'codepoint, 0x2EEF);
10679put('CJK_RADICAL_C_SIMPLIFIED_DRAGON, 'codepoint, 0x2EF0);
10680put('CJK_RADICAL_TURTLE, 'codepoint, 0x2EF1);
10681put('CJK_RADICAL_J_SIMPLIFIED_TURTLE, 'codepoint, 0x2EF2);
10682put('CJK_RADICAL_C_SIMPLIFIED_TURTLE, 'codepoint, 0x2EF3);
10683put('KANGXI_RADICAL_ONE, 'codepoint, 0x2F00);
10684put('KANGXI_RADICAL_LINE, 'codepoint, 0x2F01);
10685put('KANGXI_RADICAL_DOT, 'codepoint, 0x2F02);
10686put('KANGXI_RADICAL_SLASH, 'codepoint, 0x2F03);
10687put('KANGXI_RADICAL_SECOND, 'codepoint, 0x2F04);
10688put('KANGXI_RADICAL_HOOK, 'codepoint, 0x2F05);
10689put('KANGXI_RADICAL_TWO, 'codepoint, 0x2F06);
10690put('KANGXI_RADICAL_LID, 'codepoint, 0x2F07);
10691put('KANGXI_RADICAL_MAN, 'codepoint, 0x2F08);
10692put('KANGXI_RADICAL_LEGS, 'codepoint, 0x2F09);
10693put('KANGXI_RADICAL_ENTER, 'codepoint, 0x2F0A);
10694put('KANGXI_RADICAL_EIGHT, 'codepoint, 0x2F0B);
10695put('KANGXI_RADICAL_DOWN_BOX, 'codepoint, 0x2F0C);
10696put('KANGXI_RADICAL_COVER, 'codepoint, 0x2F0D);
10697put('KANGXI_RADICAL_ICE, 'codepoint, 0x2F0E);
10698put('KANGXI_RADICAL_TABLE, 'codepoint, 0x2F0F);
10699put('KANGXI_RADICAL_OPEN_BOX, 'codepoint, 0x2F10);
10700put('KANGXI_RADICAL_KNIFE, 'codepoint, 0x2F11);
10701put('KANGXI_RADICAL_POWER, 'codepoint, 0x2F12);
10702put('KANGXI_RADICAL_WRAP, 'codepoint, 0x2F13);
10703put('KANGXI_RADICAL_SPOON, 'codepoint, 0x2F14);
10704put('KANGXI_RADICAL_RIGHT_OPEN_BOX, 'codepoint, 0x2F15);
10705put('KANGXI_RADICAL_HIDING_ENCLOSURE, 'codepoint, 0x2F16);
10706put('KANGXI_RADICAL_TEN, 'codepoint, 0x2F17);
10707put('KANGXI_RADICAL_DIVINATION, 'codepoint, 0x2F18);
10708put('KANGXI_RADICAL_SEAL, 'codepoint, 0x2F19);
10709put('KANGXI_RADICAL_CLIFF, 'codepoint, 0x2F1A);
10710put('KANGXI_RADICAL_PRIVATE, 'codepoint, 0x2F1B);
10711put('KANGXI_RADICAL_AGAIN, 'codepoint, 0x2F1C);
10712put('KANGXI_RADICAL_MOUTH, 'codepoint, 0x2F1D);
10713put('KANGXI_RADICAL_ENCLOSURE, 'codepoint, 0x2F1E);
10714put('KANGXI_RADICAL_EARTH, 'codepoint, 0x2F1F);
10715put('KANGXI_RADICAL_SCHOLAR, 'codepoint, 0x2F20);
10716put('KANGXI_RADICAL_GO, 'codepoint, 0x2F21);
10717put('KANGXI_RADICAL_GO_SLOWLY, 'codepoint, 0x2F22);
10718put('KANGXI_RADICAL_EVENING, 'codepoint, 0x2F23);
10719put('KANGXI_RADICAL_BIG, 'codepoint, 0x2F24);
10720put('KANGXI_RADICAL_WOMAN, 'codepoint, 0x2F25);
10721put('KANGXI_RADICAL_CHILD, 'codepoint, 0x2F26);
10722put('KANGXI_RADICAL_ROOF, 'codepoint, 0x2F27);
10723put('KANGXI_RADICAL_INCH, 'codepoint, 0x2F28);
10724put('KANGXI_RADICAL_SMALL, 'codepoint, 0x2F29);
10725put('KANGXI_RADICAL_LAME, 'codepoint, 0x2F2A);
10726put('KANGXI_RADICAL_CORPSE, 'codepoint, 0x2F2B);
10727put('KANGXI_RADICAL_SPROUT, 'codepoint, 0x2F2C);
10728put('KANGXI_RADICAL_MOUNTAIN, 'codepoint, 0x2F2D);
10729put('KANGXI_RADICAL_RIVER, 'codepoint, 0x2F2E);
10730put('KANGXI_RADICAL_WORK, 'codepoint, 0x2F2F);
10731put('KANGXI_RADICAL_ONESELF, 'codepoint, 0x2F30);
10732put('KANGXI_RADICAL_TURBAN, 'codepoint, 0x2F31);
10733put('KANGXI_RADICAL_DRY, 'codepoint, 0x2F32);
10734put('KANGXI_RADICAL_SHORT_THREAD, 'codepoint, 0x2F33);
10735put('KANGXI_RADICAL_DOTTED_CLIFF, 'codepoint, 0x2F34);
10736put('KANGXI_RADICAL_LONG_STRIDE, 'codepoint, 0x2F35);
10737put('KANGXI_RADICAL_TWO_HANDS, 'codepoint, 0x2F36);
10738put('KANGXI_RADICAL_SHOOT, 'codepoint, 0x2F37);
10739put('KANGXI_RADICAL_BOW, 'codepoint, 0x2F38);
10740put('KANGXI_RADICAL_SNOUT, 'codepoint, 0x2F39);
10741put('KANGXI_RADICAL_BRISTLE, 'codepoint, 0x2F3A);
10742put('KANGXI_RADICAL_STEP, 'codepoint, 0x2F3B);
10743put('KANGXI_RADICAL_HEART, 'codepoint, 0x2F3C);
10744put('KANGXI_RADICAL_HALBERD, 'codepoint, 0x2F3D);
10745put('KANGXI_RADICAL_DOOR, 'codepoint, 0x2F3E);
10746put('KANGXI_RADICAL_HAND, 'codepoint, 0x2F3F);
10747put('KANGXI_RADICAL_BRANCH, 'codepoint, 0x2F40);
10748put('KANGXI_RADICAL_RAP, 'codepoint, 0x2F41);
10749put('KANGXI_RADICAL_SCRIPT, 'codepoint, 0x2F42);
10750put('KANGXI_RADICAL_DIPPER, 'codepoint, 0x2F43);
10751put('KANGXI_RADICAL_AXE, 'codepoint, 0x2F44);
10752put('KANGXI_RADICAL_SQUARE, 'codepoint, 0x2F45);
10753put('KANGXI_RADICAL_NOT, 'codepoint, 0x2F46);
10754put('KANGXI_RADICAL_SUN, 'codepoint, 0x2F47);
10755put('KANGXI_RADICAL_SAY, 'codepoint, 0x2F48);
10756put('KANGXI_RADICAL_MOON, 'codepoint, 0x2F49);
10757put('KANGXI_RADICAL_TREE, 'codepoint, 0x2F4A);
10758put('KANGXI_RADICAL_LACK, 'codepoint, 0x2F4B);
10759put('KANGXI_RADICAL_STOP, 'codepoint, 0x2F4C);
10760put('KANGXI_RADICAL_DEATH, 'codepoint, 0x2F4D);
10761put('KANGXI_RADICAL_WEAPON, 'codepoint, 0x2F4E);
10762put('KANGXI_RADICAL_DO_NOT, 'codepoint, 0x2F4F);
10763put('KANGXI_RADICAL_COMPARE, 'codepoint, 0x2F50);
10764put('KANGXI_RADICAL_FUR, 'codepoint, 0x2F51);
10765put('KANGXI_RADICAL_CLAN, 'codepoint, 0x2F52);
10766put('KANGXI_RADICAL_STEAM, 'codepoint, 0x2F53);
10767put('KANGXI_RADICAL_WATER, 'codepoint, 0x2F54);
10768put('KANGXI_RADICAL_FIRE, 'codepoint, 0x2F55);
10769put('KANGXI_RADICAL_CLAW, 'codepoint, 0x2F56);
10770put('KANGXI_RADICAL_FATHER, 'codepoint, 0x2F57);
10771put('KANGXI_RADICAL_DOUBLE_X, 'codepoint, 0x2F58);
10772put('KANGXI_RADICAL_HALF_TREE_TRUNK, 'codepoint, 0x2F59);
10773put('KANGXI_RADICAL_SLICE, 'codepoint, 0x2F5A);
10774put('KANGXI_RADICAL_FANG, 'codepoint, 0x2F5B);
10775put('KANGXI_RADICAL_COW, 'codepoint, 0x2F5C);
10776put('KANGXI_RADICAL_DOG, 'codepoint, 0x2F5D);
10777put('KANGXI_RADICAL_PROFOUND, 'codepoint, 0x2F5E);
10778put('KANGXI_RADICAL_JADE, 'codepoint, 0x2F5F);
10779put('KANGXI_RADICAL_MELON, 'codepoint, 0x2F60);
10780put('KANGXI_RADICAL_TILE, 'codepoint, 0x2F61);
10781put('KANGXI_RADICAL_SWEET, 'codepoint, 0x2F62);
10782put('KANGXI_RADICAL_LIFE, 'codepoint, 0x2F63);
10783put('KANGXI_RADICAL_USE, 'codepoint, 0x2F64);
10784put('KANGXI_RADICAL_FIELD, 'codepoint, 0x2F65);
10785put('KANGXI_RADICAL_BOLT_OF_CLOTH, 'codepoint, 0x2F66);
10786put('KANGXI_RADICAL_SICKNESS, 'codepoint, 0x2F67);
10787put('KANGXI_RADICAL_DOTTED_TENT, 'codepoint, 0x2F68);
10788put('KANGXI_RADICAL_WHITE, 'codepoint, 0x2F69);
10789put('KANGXI_RADICAL_SKIN, 'codepoint, 0x2F6A);
10790put('KANGXI_RADICAL_DISH, 'codepoint, 0x2F6B);
10791put('KANGXI_RADICAL_EYE, 'codepoint, 0x2F6C);
10792put('KANGXI_RADICAL_SPEAR, 'codepoint, 0x2F6D);
10793put('KANGXI_RADICAL_ARROW, 'codepoint, 0x2F6E);
10794put('KANGXI_RADICAL_STONE, 'codepoint, 0x2F6F);
10795put('KANGXI_RADICAL_SPIRIT, 'codepoint, 0x2F70);
10796put('KANGXI_RADICAL_TRACK, 'codepoint, 0x2F71);
10797put('KANGXI_RADICAL_GRAIN, 'codepoint, 0x2F72);
10798put('KANGXI_RADICAL_CAVE, 'codepoint, 0x2F73);
10799put('KANGXI_RADICAL_STAND, 'codepoint, 0x2F74);
10800put('KANGXI_RADICAL_BAMBOO, 'codepoint, 0x2F75);
10801put('KANGXI_RADICAL_RICE, 'codepoint, 0x2F76);
10802put('KANGXI_RADICAL_SILK, 'codepoint, 0x2F77);
10803put('KANGXI_RADICAL_JAR, 'codepoint, 0x2F78);
10804put('KANGXI_RADICAL_NET, 'codepoint, 0x2F79);
10805put('KANGXI_RADICAL_SHEEP, 'codepoint, 0x2F7A);
10806put('KANGXI_RADICAL_FEATHER, 'codepoint, 0x2F7B);
10807put('KANGXI_RADICAL_OLD, 'codepoint, 0x2F7C);
10808put('KANGXI_RADICAL_AND, 'codepoint, 0x2F7D);
10809put('KANGXI_RADICAL_PLOW, 'codepoint, 0x2F7E);
10810put('KANGXI_RADICAL_EAR, 'codepoint, 0x2F7F);
10811put('KANGXI_RADICAL_BRUSH, 'codepoint, 0x2F80);
10812put('KANGXI_RADICAL_MEAT, 'codepoint, 0x2F81);
10813put('KANGXI_RADICAL_MINISTER, 'codepoint, 0x2F82);
10814put('KANGXI_RADICAL_SELF, 'codepoint, 0x2F83);
10815put('KANGXI_RADICAL_ARRIVE, 'codepoint, 0x2F84);
10816put('KANGXI_RADICAL_MORTAR, 'codepoint, 0x2F85);
10817put('KANGXI_RADICAL_TONGUE, 'codepoint, 0x2F86);
10818put('KANGXI_RADICAL_OPPOSE, 'codepoint, 0x2F87);
10819put('KANGXI_RADICAL_BOAT, 'codepoint, 0x2F88);
10820put('KANGXI_RADICAL_STOPPING, 'codepoint, 0x2F89);
10821put('KANGXI_RADICAL_COLOR, 'codepoint, 0x2F8A);
10822put('KANGXI_RADICAL_GRASS, 'codepoint, 0x2F8B);
10823put('KANGXI_RADICAL_TIGER, 'codepoint, 0x2F8C);
10824put('KANGXI_RADICAL_INSECT, 'codepoint, 0x2F8D);
10825put('KANGXI_RADICAL_BLOOD, 'codepoint, 0x2F8E);
10826put('KANGXI_RADICAL_WALK_ENCLOSURE, 'codepoint, 0x2F8F);
10827put('KANGXI_RADICAL_CLOTHES, 'codepoint, 0x2F90);
10828put('KANGXI_RADICAL_WEST, 'codepoint, 0x2F91);
10829put('KANGXI_RADICAL_SEE, 'codepoint, 0x2F92);
10830put('KANGXI_RADICAL_HORN, 'codepoint, 0x2F93);
10831put('KANGXI_RADICAL_SPEECH, 'codepoint, 0x2F94);
10832put('KANGXI_RADICAL_VALLEY, 'codepoint, 0x2F95);
10833put('KANGXI_RADICAL_BEAN, 'codepoint, 0x2F96);
10834put('KANGXI_RADICAL_PIG, 'codepoint, 0x2F97);
10835put('KANGXI_RADICAL_BADGER, 'codepoint, 0x2F98);
10836put('KANGXI_RADICAL_SHELL, 'codepoint, 0x2F99);
10837put('KANGXI_RADICAL_RED, 'codepoint, 0x2F9A);
10838put('KANGXI_RADICAL_RUN, 'codepoint, 0x2F9B);
10839put('KANGXI_RADICAL_FOOT, 'codepoint, 0x2F9C);
10840put('KANGXI_RADICAL_BODY, 'codepoint, 0x2F9D);
10841put('KANGXI_RADICAL_CART, 'codepoint, 0x2F9E);
10842put('KANGXI_RADICAL_BITTER, 'codepoint, 0x2F9F);
10843put('KANGXI_RADICAL_MORNING, 'codepoint, 0x2FA0);
10844put('KANGXI_RADICAL_WALK, 'codepoint, 0x2FA1);
10845put('KANGXI_RADICAL_CITY, 'codepoint, 0x2FA2);
10846put('KANGXI_RADICAL_WINE, 'codepoint, 0x2FA3);
10847put('KANGXI_RADICAL_DISTINGUISH, 'codepoint, 0x2FA4);
10848put('KANGXI_RADICAL_VILLAGE, 'codepoint, 0x2FA5);
10849put('KANGXI_RADICAL_GOLD, 'codepoint, 0x2FA6);
10850put('KANGXI_RADICAL_LONG, 'codepoint, 0x2FA7);
10851put('KANGXI_RADICAL_GATE, 'codepoint, 0x2FA8);
10852put('KANGXI_RADICAL_MOUND, 'codepoint, 0x2FA9);
10853put('KANGXI_RADICAL_SLAVE, 'codepoint, 0x2FAA);
10854put('KANGXI_RADICAL_SHORT_TAILED_BIRD, 'codepoint, 0x2FAB);
10855put('KANGXI_RADICAL_RAIN, 'codepoint, 0x2FAC);
10856put('KANGXI_RADICAL_BLUE, 'codepoint, 0x2FAD);
10857put('KANGXI_RADICAL_WRONG, 'codepoint, 0x2FAE);
10858put('KANGXI_RADICAL_FACE, 'codepoint, 0x2FAF);
10859put('KANGXI_RADICAL_LEATHER, 'codepoint, 0x2FB0);
10860put('KANGXI_RADICAL_TANNED_LEATHER, 'codepoint, 0x2FB1);
10861put('KANGXI_RADICAL_LEEK, 'codepoint, 0x2FB2);
10862put('KANGXI_RADICAL_SOUND, 'codepoint, 0x2FB3);
10863put('KANGXI_RADICAL_LEAF, 'codepoint, 0x2FB4);
10864put('KANGXI_RADICAL_WIND, 'codepoint, 0x2FB5);
10865put('KANGXI_RADICAL_FLY, 'codepoint, 0x2FB6);
10866put('KANGXI_RADICAL_EAT, 'codepoint, 0x2FB7);
10867put('KANGXI_RADICAL_HEAD, 'codepoint, 0x2FB8);
10868put('KANGXI_RADICAL_FRAGRANT, 'codepoint, 0x2FB9);
10869put('KANGXI_RADICAL_HORSE, 'codepoint, 0x2FBA);
10870put('KANGXI_RADICAL_BONE, 'codepoint, 0x2FBB);
10871put('KANGXI_RADICAL_TALL, 'codepoint, 0x2FBC);
10872put('KANGXI_RADICAL_HAIR, 'codepoint, 0x2FBD);
10873put('KANGXI_RADICAL_FIGHT, 'codepoint, 0x2FBE);
10874put('KANGXI_RADICAL_SACRIFICIAL_WINE, 'codepoint, 0x2FBF);
10875put('KANGXI_RADICAL_CAULDRON, 'codepoint, 0x2FC0);
10876put('KANGXI_RADICAL_GHOST, 'codepoint, 0x2FC1);
10877put('KANGXI_RADICAL_FISH, 'codepoint, 0x2FC2);
10878put('KANGXI_RADICAL_BIRD, 'codepoint, 0x2FC3);
10879put('KANGXI_RADICAL_SALT, 'codepoint, 0x2FC4);
10880put('KANGXI_RADICAL_DEER, 'codepoint, 0x2FC5);
10881put('KANGXI_RADICAL_WHEAT, 'codepoint, 0x2FC6);
10882put('KANGXI_RADICAL_HEMP, 'codepoint, 0x2FC7);
10883put('KANGXI_RADICAL_YELLOW, 'codepoint, 0x2FC8);
10884put('KANGXI_RADICAL_MILLET, 'codepoint, 0x2FC9);
10885put('KANGXI_RADICAL_BLACK, 'codepoint, 0x2FCA);
10886put('KANGXI_RADICAL_EMBROIDERY, 'codepoint, 0x2FCB);
10887put('KANGXI_RADICAL_FROG, 'codepoint, 0x2FCC);
10888put('KANGXI_RADICAL_TRIPOD, 'codepoint, 0x2FCD);
10889put('KANGXI_RADICAL_DRUM, 'codepoint, 0x2FCE);
10890put('KANGXI_RADICAL_RAT, 'codepoint, 0x2FCF);
10891put('KANGXI_RADICAL_NOSE, 'codepoint, 0x2FD0);
10892put('KANGXI_RADICAL_EVEN, 'codepoint, 0x2FD1);
10893put('KANGXI_RADICAL_TOOTH, 'codepoint, 0x2FD2);
10894put('KANGXI_RADICAL_DRAGON, 'codepoint, 0x2FD3);
10895put('KANGXI_RADICAL_TURTLE, 'codepoint, 0x2FD4);
10896put('KANGXI_RADICAL_FLUTE, 'codepoint, 0x2FD5);
10897put('IDEOGRAPHIC_DESCRIPTION_CHARACTER_LEFT_TO_RIGHT, 'codepoint, 0x2FF0);
10898put('IDEOGRAPHIC_DESCRIPTION_CHARACTER_ABOVE_TO_BELOW, 'codepoint, 0x2FF1);
10899put('IDEOGRAPHIC_DESCRIPTION_CHARACTER_LEFT_TO_MIDDLE_AND_RIGHT, 'codepoint, 0x2FF2);
10900put('IDEOGRAPHIC_DESCRIPTION_CHARACTER_ABOVE_TO_MIDDLE_AND_BELOW, 'codepoint, 0x2FF3);
10901put('IDEOGRAPHIC_DESCRIPTION_CHARACTER_FULL_SURROUND, 'codepoint, 0x2FF4);
10902put('IDEOGRAPHIC_DESCRIPTION_CHARACTER_SURROUND_FROM_ABOVE, 'codepoint, 0x2FF5);
10903put('IDEOGRAPHIC_DESCRIPTION_CHARACTER_SURROUND_FROM_BELOW, 'codepoint, 0x2FF6);
10904put('IDEOGRAPHIC_DESCRIPTION_CHARACTER_SURROUND_FROM_LEFT, 'codepoint, 0x2FF7);
10905put('IDEOGRAPHIC_DESCRIPTION_CHARACTER_SURROUND_FROM_UPPER_LEFT, 'codepoint, 0x2FF8);
10906put('IDEOGRAPHIC_DESCRIPTION_CHARACTER_SURROUND_FROM_UPPER_RIGHT, 'codepoint, 0x2FF9);
10907put('IDEOGRAPHIC_DESCRIPTION_CHARACTER_SURROUND_FROM_LOWER_LEFT, 'codepoint, 0x2FFA);
10908put('IDEOGRAPHIC_DESCRIPTION_CHARACTER_OVERLAID, 'codepoint, 0x2FFB);
10909put('IDEOGRAPHIC_SPACE, 'codepoint, 0x3000);
10910put('IDEOGRAPHIC_COMMA, 'codepoint, 0x3001);
10911put('IDEOGRAPHIC_FULL_STOP, 'codepoint, 0x3002);
10912put('DITTO_MARK, 'codepoint, 0x3003);
10913put('JAPANESE_INDUSTRIAL_STANDARD_SYMBOL, 'codepoint, 0x3004);
10914put('IDEOGRAPHIC_ITERATION_MARK, 'codepoint, 0x3005);
10915put('IDEOGRAPHIC_CLOSING_MARK, 'codepoint, 0x3006);
10916put('IDEOGRAPHIC_NUMBER_ZERO, 'codepoint, 0x3007);
10917put('LEFT_ANGLE_BRACKET, 'codepoint, 0x3008);
10918put('RIGHT_ANGLE_BRACKET, 'codepoint, 0x3009);
10919put('LEFT_DOUBLE_ANGLE_BRACKET, 'codepoint, 0x300A);
10920put('RIGHT_DOUBLE_ANGLE_BRACKET, 'codepoint, 0x300B);
10921put('LEFT_CORNER_BRACKET, 'codepoint, 0x300C);
10922put('RIGHT_CORNER_BRACKET, 'codepoint, 0x300D);
10923put('LEFT_WHITE_CORNER_BRACKET, 'codepoint, 0x300E);
10924put('RIGHT_WHITE_CORNER_BRACKET, 'codepoint, 0x300F);
10925put('LEFT_BLACK_LENTICULAR_BRACKET, 'codepoint, 0x3010);
10926put('RIGHT_BLACK_LENTICULAR_BRACKET, 'codepoint, 0x3011);
10927put('POSTAL_MARK, 'codepoint, 0x3012);
10928put('GETA_MARK, 'codepoint, 0x3013);
10929put('LEFT_TORTOISE_SHELL_BRACKET, 'codepoint, 0x3014);
10930put('RIGHT_TORTOISE_SHELL_BRACKET, 'codepoint, 0x3015);
10931put('LEFT_WHITE_LENTICULAR_BRACKET, 'codepoint, 0x3016);
10932put('RIGHT_WHITE_LENTICULAR_BRACKET, 'codepoint, 0x3017);
10933put('LEFT_WHITE_TORTOISE_SHELL_BRACKET, 'codepoint, 0x3018);
10934put('RIGHT_WHITE_TORTOISE_SHELL_BRACKET, 'codepoint, 0x3019);
10935put('LEFT_WHITE_SQUARE_BRACKET, 'codepoint, 0x301A);
10936put('RIGHT_WHITE_SQUARE_BRACKET, 'codepoint, 0x301B);
10937put('WAVE_DASH, 'codepoint, 0x301C);
10938put('REVERSED_DOUBLE_PRIME_QUOTATION_MARK, 'codepoint, 0x301D);
10939put('DOUBLE_PRIME_QUOTATION_MARK, 'codepoint, 0x301E);
10940put('LOW_DOUBLE_PRIME_QUOTATION_MARK, 'codepoint, 0x301F);
10941put('POSTAL_MARK_FACE, 'codepoint, 0x3020);
10942put('HANGZHOU_NUMERAL_ONE, 'codepoint, 0x3021);
10943put('HANGZHOU_NUMERAL_TWO, 'codepoint, 0x3022);
10944put('HANGZHOU_NUMERAL_THREE, 'codepoint, 0x3023);
10945put('HANGZHOU_NUMERAL_FOUR, 'codepoint, 0x3024);
10946put('HANGZHOU_NUMERAL_FIVE, 'codepoint, 0x3025);
10947put('HANGZHOU_NUMERAL_SIX, 'codepoint, 0x3026);
10948put('HANGZHOU_NUMERAL_SEVEN, 'codepoint, 0x3027);
10949put('HANGZHOU_NUMERAL_EIGHT, 'codepoint, 0x3028);
10950put('HANGZHOU_NUMERAL_NINE, 'codepoint, 0x3029);
10951put('IDEOGRAPHIC_LEVEL_TONE_MARK, 'codepoint, 0x302A);
10952put('IDEOGRAPHIC_RISING_TONE_MARK, 'codepoint, 0x302B);
10953put('IDEOGRAPHIC_DEPARTING_TONE_MARK, 'codepoint, 0x302C);
10954put('IDEOGRAPHIC_ENTERING_TONE_MARK, 'codepoint, 0x302D);
10955put('HANGUL_SINGLE_DOT_TONE_MARK, 'codepoint, 0x302E);
10956put('HANGUL_DOUBLE_DOT_TONE_MARK, 'codepoint, 0x302F);
10957put('WAVY_DASH, 'codepoint, 0x3030);
10958put('VERTICAL_KANA_REPEAT_MARK, 'codepoint, 0x3031);
10959put('VERTICAL_KANA_REPEAT_WITH_VOICED_SOUND_MARK, 'codepoint, 0x3032);
10960put('VERTICAL_KANA_REPEAT_MARK_UPPER_HALF, 'codepoint, 0x3033);
10961put('VERTICAL_KANA_REPEAT_WITH_VOICED_SOUND_MARK_UPPER_HALF, 'codepoint, 0x3034);
10962put('VERTICAL_KANA_REPEAT_MARK_LOWER_HALF, 'codepoint, 0x3035);
10963put('CIRCLED_POSTAL_MARK, 'codepoint, 0x3036);
10964put('IDEOGRAPHIC_TELEGRAPH_LINE_FEED_SEPARATOR_SYMBOL, 'codepoint, 0x3037);
10965put('HANGZHOU_NUMERAL_TEN, 'codepoint, 0x3038);
10966put('HANGZHOU_NUMERAL_TWENTY, 'codepoint, 0x3039);
10967put('HANGZHOU_NUMERAL_THIRTY, 'codepoint, 0x303A);
10968put('VERTICAL_IDEOGRAPHIC_ITERATION_MARK, 'codepoint, 0x303B);
10969put('MASU_MARK, 'codepoint, 0x303C);
10970put('PART_ALTERNATION_MARK, 'codepoint, 0x303D);
10971put('IDEOGRAPHIC_VARIATION_INDICATOR, 'codepoint, 0x303E);
10972put('IDEOGRAPHIC_HALF_FILL_SPACE, 'codepoint, 0x303F);
10973put('HIRAGANA_LETTER_SMALL_A, 'codepoint, 0x3041);
10974put('HIRAGANA_LETTER_A, 'codepoint, 0x3042);
10975put('HIRAGANA_LETTER_SMALL_I, 'codepoint, 0x3043);
10976put('HIRAGANA_LETTER_I, 'codepoint, 0x3044);
10977put('HIRAGANA_LETTER_SMALL_U, 'codepoint, 0x3045);
10978put('HIRAGANA_LETTER_U, 'codepoint, 0x3046);
10979put('HIRAGANA_LETTER_SMALL_E, 'codepoint, 0x3047);
10980put('HIRAGANA_LETTER_E, 'codepoint, 0x3048);
10981put('HIRAGANA_LETTER_SMALL_O, 'codepoint, 0x3049);
10982put('HIRAGANA_LETTER_O, 'codepoint, 0x304A);
10983put('HIRAGANA_LETTER_KA, 'codepoint, 0x304B);
10984put('HIRAGANA_LETTER_GA, 'codepoint, 0x304C);
10985put('HIRAGANA_LETTER_KI, 'codepoint, 0x304D);
10986put('HIRAGANA_LETTER_GI, 'codepoint, 0x304E);
10987put('HIRAGANA_LETTER_KU, 'codepoint, 0x304F);
10988put('HIRAGANA_LETTER_GU, 'codepoint, 0x3050);
10989put('HIRAGANA_LETTER_KE, 'codepoint, 0x3051);
10990put('HIRAGANA_LETTER_GE, 'codepoint, 0x3052);
10991put('HIRAGANA_LETTER_KO, 'codepoint, 0x3053);
10992put('HIRAGANA_LETTER_GO, 'codepoint, 0x3054);
10993put('HIRAGANA_LETTER_SA, 'codepoint, 0x3055);
10994put('HIRAGANA_LETTER_ZA, 'codepoint, 0x3056);
10995put('HIRAGANA_LETTER_SI, 'codepoint, 0x3057);
10996put('HIRAGANA_LETTER_ZI, 'codepoint, 0x3058);
10997put('HIRAGANA_LETTER_SU, 'codepoint, 0x3059);
10998put('HIRAGANA_LETTER_ZU, 'codepoint, 0x305A);
10999put('HIRAGANA_LETTER_SE, 'codepoint, 0x305B);
11000put('HIRAGANA_LETTER_ZE, 'codepoint, 0x305C);
11001put('HIRAGANA_LETTER_SO, 'codepoint, 0x305D);
11002put('HIRAGANA_LETTER_ZO, 'codepoint, 0x305E);
11003put('HIRAGANA_LETTER_TA, 'codepoint, 0x305F);
11004put('HIRAGANA_LETTER_DA, 'codepoint, 0x3060);
11005put('HIRAGANA_LETTER_TI, 'codepoint, 0x3061);
11006put('HIRAGANA_LETTER_DI, 'codepoint, 0x3062);
11007put('HIRAGANA_LETTER_SMALL_TU, 'codepoint, 0x3063);
11008put('HIRAGANA_LETTER_TU, 'codepoint, 0x3064);
11009put('HIRAGANA_LETTER_DU, 'codepoint, 0x3065);
11010put('HIRAGANA_LETTER_TE, 'codepoint, 0x3066);
11011put('HIRAGANA_LETTER_DE, 'codepoint, 0x3067);
11012put('HIRAGANA_LETTER_TO, 'codepoint, 0x3068);
11013put('HIRAGANA_LETTER_DO, 'codepoint, 0x3069);
11014put('HIRAGANA_LETTER_NA, 'codepoint, 0x306A);
11015put('HIRAGANA_LETTER_NI, 'codepoint, 0x306B);
11016put('HIRAGANA_LETTER_NU, 'codepoint, 0x306C);
11017put('HIRAGANA_LETTER_NE, 'codepoint, 0x306D);
11018put('HIRAGANA_LETTER_NO, 'codepoint, 0x306E);
11019put('HIRAGANA_LETTER_HA, 'codepoint, 0x306F);
11020put('HIRAGANA_LETTER_BA, 'codepoint, 0x3070);
11021put('HIRAGANA_LETTER_PA, 'codepoint, 0x3071);
11022put('HIRAGANA_LETTER_HI, 'codepoint, 0x3072);
11023put('HIRAGANA_LETTER_BI, 'codepoint, 0x3073);
11024put('HIRAGANA_LETTER_PI, 'codepoint, 0x3074);
11025put('HIRAGANA_LETTER_HU, 'codepoint, 0x3075);
11026put('HIRAGANA_LETTER_BU, 'codepoint, 0x3076);
11027put('HIRAGANA_LETTER_PU, 'codepoint, 0x3077);
11028put('HIRAGANA_LETTER_HE, 'codepoint, 0x3078);
11029put('HIRAGANA_LETTER_BE, 'codepoint, 0x3079);
11030put('HIRAGANA_LETTER_PE, 'codepoint, 0x307A);
11031put('HIRAGANA_LETTER_HO, 'codepoint, 0x307B);
11032put('HIRAGANA_LETTER_BO, 'codepoint, 0x307C);
11033put('HIRAGANA_LETTER_PO, 'codepoint, 0x307D);
11034put('HIRAGANA_LETTER_MA, 'codepoint, 0x307E);
11035put('HIRAGANA_LETTER_MI, 'codepoint, 0x307F);
11036put('HIRAGANA_LETTER_MU, 'codepoint, 0x3080);
11037put('HIRAGANA_LETTER_ME, 'codepoint, 0x3081);
11038put('HIRAGANA_LETTER_MO, 'codepoint, 0x3082);
11039put('HIRAGANA_LETTER_SMALL_YA, 'codepoint, 0x3083);
11040put('HIRAGANA_LETTER_YA, 'codepoint, 0x3084);
11041put('HIRAGANA_LETTER_SMALL_YU, 'codepoint, 0x3085);
11042put('HIRAGANA_LETTER_YU, 'codepoint, 0x3086);
11043put('HIRAGANA_LETTER_SMALL_YO, 'codepoint, 0x3087);
11044put('HIRAGANA_LETTER_YO, 'codepoint, 0x3088);
11045put('HIRAGANA_LETTER_RA, 'codepoint, 0x3089);
11046put('HIRAGANA_LETTER_RI, 'codepoint, 0x308A);
11047put('HIRAGANA_LETTER_RU, 'codepoint, 0x308B);
11048put('HIRAGANA_LETTER_RE, 'codepoint, 0x308C);
11049put('HIRAGANA_LETTER_RO, 'codepoint, 0x308D);
11050put('HIRAGANA_LETTER_SMALL_WA, 'codepoint, 0x308E);
11051put('HIRAGANA_LETTER_WA, 'codepoint, 0x308F);
11052put('HIRAGANA_LETTER_WI, 'codepoint, 0x3090);
11053put('HIRAGANA_LETTER_WE, 'codepoint, 0x3091);
11054put('HIRAGANA_LETTER_WO, 'codepoint, 0x3092);
11055put('HIRAGANA_LETTER_N, 'codepoint, 0x3093);
11056put('HIRAGANA_LETTER_VU, 'codepoint, 0x3094);
11057put('HIRAGANA_LETTER_SMALL_KA, 'codepoint, 0x3095);
11058put('HIRAGANA_LETTER_SMALL_KE, 'codepoint, 0x3096);
11059put('COMBINING_KATAKANA_HIRAGANA_VOICED_SOUND_MARK, 'codepoint, 0x3099);
11060put('COMBINING_KATAKANA_HIRAGANA_SEMI_VOICED_SOUND_MARK, 'codepoint, 0x309A);
11061put('KATAKANA_HIRAGANA_VOICED_SOUND_MARK, 'codepoint, 0x309B);
11062put('KATAKANA_HIRAGANA_SEMI_VOICED_SOUND_MARK, 'codepoint, 0x309C);
11063put('HIRAGANA_ITERATION_MARK, 'codepoint, 0x309D);
11064put('HIRAGANA_VOICED_ITERATION_MARK, 'codepoint, 0x309E);
11065put('HIRAGANA_DIGRAPH_YORI, 'codepoint, 0x309F);
11066put('KATAKANA_HIRAGANA_DOUBLE_HYPHEN, 'codepoint, 0x30A0);
11067put('KATAKANA_LETTER_SMALL_A, 'codepoint, 0x30A1);
11068put('KATAKANA_LETTER_A, 'codepoint, 0x30A2);
11069put('KATAKANA_LETTER_SMALL_I, 'codepoint, 0x30A3);
11070put('KATAKANA_LETTER_I, 'codepoint, 0x30A4);
11071put('KATAKANA_LETTER_SMALL_U, 'codepoint, 0x30A5);
11072put('KATAKANA_LETTER_U, 'codepoint, 0x30A6);
11073put('KATAKANA_LETTER_SMALL_E, 'codepoint, 0x30A7);
11074put('KATAKANA_LETTER_E, 'codepoint, 0x30A8);
11075put('KATAKANA_LETTER_SMALL_O, 'codepoint, 0x30A9);
11076put('KATAKANA_LETTER_O, 'codepoint, 0x30AA);
11077put('KATAKANA_LETTER_KA, 'codepoint, 0x30AB);
11078put('KATAKANA_LETTER_GA, 'codepoint, 0x30AC);
11079put('KATAKANA_LETTER_KI, 'codepoint, 0x30AD);
11080put('KATAKANA_LETTER_GI, 'codepoint, 0x30AE);
11081put('KATAKANA_LETTER_KU, 'codepoint, 0x30AF);
11082put('KATAKANA_LETTER_GU, 'codepoint, 0x30B0);
11083put('KATAKANA_LETTER_KE, 'codepoint, 0x30B1);
11084put('KATAKANA_LETTER_GE, 'codepoint, 0x30B2);
11085put('KATAKANA_LETTER_KO, 'codepoint, 0x30B3);
11086put('KATAKANA_LETTER_GO, 'codepoint, 0x30B4);
11087put('KATAKANA_LETTER_SA, 'codepoint, 0x30B5);
11088put('KATAKANA_LETTER_ZA, 'codepoint, 0x30B6);
11089put('KATAKANA_LETTER_SI, 'codepoint, 0x30B7);
11090put('KATAKANA_LETTER_ZI, 'codepoint, 0x30B8);
11091put('KATAKANA_LETTER_SU, 'codepoint, 0x30B9);
11092put('KATAKANA_LETTER_ZU, 'codepoint, 0x30BA);
11093put('KATAKANA_LETTER_SE, 'codepoint, 0x30BB);
11094put('KATAKANA_LETTER_ZE, 'codepoint, 0x30BC);
11095put('KATAKANA_LETTER_SO, 'codepoint, 0x30BD);
11096put('KATAKANA_LETTER_ZO, 'codepoint, 0x30BE);
11097put('KATAKANA_LETTER_TA, 'codepoint, 0x30BF);
11098put('KATAKANA_LETTER_DA, 'codepoint, 0x30C0);
11099put('KATAKANA_LETTER_TI, 'codepoint, 0x30C1);
11100put('KATAKANA_LETTER_DI, 'codepoint, 0x30C2);
11101put('KATAKANA_LETTER_SMALL_TU, 'codepoint, 0x30C3);
11102put('KATAKANA_LETTER_TU, 'codepoint, 0x30C4);
11103put('KATAKANA_LETTER_DU, 'codepoint, 0x30C5);
11104put('KATAKANA_LETTER_TE, 'codepoint, 0x30C6);
11105put('KATAKANA_LETTER_DE, 'codepoint, 0x30C7);
11106put('KATAKANA_LETTER_TO, 'codepoint, 0x30C8);
11107put('KATAKANA_LETTER_DO, 'codepoint, 0x30C9);
11108put('KATAKANA_LETTER_NA, 'codepoint, 0x30CA);
11109put('KATAKANA_LETTER_NI, 'codepoint, 0x30CB);
11110put('KATAKANA_LETTER_NU, 'codepoint, 0x30CC);
11111put('KATAKANA_LETTER_NE, 'codepoint, 0x30CD);
11112put('KATAKANA_LETTER_NO, 'codepoint, 0x30CE);
11113put('KATAKANA_LETTER_HA, 'codepoint, 0x30CF);
11114put('KATAKANA_LETTER_BA, 'codepoint, 0x30D0);
11115put('KATAKANA_LETTER_PA, 'codepoint, 0x30D1);
11116put('KATAKANA_LETTER_HI, 'codepoint, 0x30D2);
11117put('KATAKANA_LETTER_BI, 'codepoint, 0x30D3);
11118put('KATAKANA_LETTER_PI, 'codepoint, 0x30D4);
11119put('KATAKANA_LETTER_HU, 'codepoint, 0x30D5);
11120put('KATAKANA_LETTER_BU, 'codepoint, 0x30D6);
11121put('KATAKANA_LETTER_PU, 'codepoint, 0x30D7);
11122put('KATAKANA_LETTER_HE, 'codepoint, 0x30D8);
11123put('KATAKANA_LETTER_BE, 'codepoint, 0x30D9);
11124put('KATAKANA_LETTER_PE, 'codepoint, 0x30DA);
11125put('KATAKANA_LETTER_HO, 'codepoint, 0x30DB);
11126put('KATAKANA_LETTER_BO, 'codepoint, 0x30DC);
11127put('KATAKANA_LETTER_PO, 'codepoint, 0x30DD);
11128put('KATAKANA_LETTER_MA, 'codepoint, 0x30DE);
11129put('KATAKANA_LETTER_MI, 'codepoint, 0x30DF);
11130put('KATAKANA_LETTER_MU, 'codepoint, 0x30E0);
11131put('KATAKANA_LETTER_ME, 'codepoint, 0x30E1);
11132put('KATAKANA_LETTER_MO, 'codepoint, 0x30E2);
11133put('KATAKANA_LETTER_SMALL_YA, 'codepoint, 0x30E3);
11134put('KATAKANA_LETTER_YA, 'codepoint, 0x30E4);
11135put('KATAKANA_LETTER_SMALL_YU, 'codepoint, 0x30E5);
11136put('KATAKANA_LETTER_YU, 'codepoint, 0x30E6);
11137put('KATAKANA_LETTER_SMALL_YO, 'codepoint, 0x30E7);
11138put('KATAKANA_LETTER_YO, 'codepoint, 0x30E8);
11139put('KATAKANA_LETTER_RA, 'codepoint, 0x30E9);
11140put('KATAKANA_LETTER_RI, 'codepoint, 0x30EA);
11141put('KATAKANA_LETTER_RU, 'codepoint, 0x30EB);
11142put('KATAKANA_LETTER_RE, 'codepoint, 0x30EC);
11143put('KATAKANA_LETTER_RO, 'codepoint, 0x30ED);
11144put('KATAKANA_LETTER_SMALL_WA, 'codepoint, 0x30EE);
11145put('KATAKANA_LETTER_WA, 'codepoint, 0x30EF);
11146put('KATAKANA_LETTER_WI, 'codepoint, 0x30F0);
11147put('KATAKANA_LETTER_WE, 'codepoint, 0x30F1);
11148put('KATAKANA_LETTER_WO, 'codepoint, 0x30F2);
11149put('KATAKANA_LETTER_N, 'codepoint, 0x30F3);
11150put('KATAKANA_LETTER_VU, 'codepoint, 0x30F4);
11151put('KATAKANA_LETTER_SMALL_KA, 'codepoint, 0x30F5);
11152put('KATAKANA_LETTER_SMALL_KE, 'codepoint, 0x30F6);
11153put('KATAKANA_LETTER_VA, 'codepoint, 0x30F7);
11154put('KATAKANA_LETTER_VI, 'codepoint, 0x30F8);
11155put('KATAKANA_LETTER_VE, 'codepoint, 0x30F9);
11156put('KATAKANA_LETTER_VO, 'codepoint, 0x30FA);
11157put('KATAKANA_MIDDLE_DOT, 'codepoint, 0x30FB);
11158put('KATAKANA_HIRAGANA_PROLONGED_SOUND_MARK, 'codepoint, 0x30FC);
11159put('KATAKANA_ITERATION_MARK, 'codepoint, 0x30FD);
11160put('KATAKANA_VOICED_ITERATION_MARK, 'codepoint, 0x30FE);
11161put('KATAKANA_DIGRAPH_KOTO, 'codepoint, 0x30FF);
11162put('BOPOMOFO_LETTER_B, 'codepoint, 0x3105);
11163put('BOPOMOFO_LETTER_P, 'codepoint, 0x3106);
11164put('BOPOMOFO_LETTER_M, 'codepoint, 0x3107);
11165put('BOPOMOFO_LETTER_F, 'codepoint, 0x3108);
11166put('BOPOMOFO_LETTER_D, 'codepoint, 0x3109);
11167put('BOPOMOFO_LETTER_T, 'codepoint, 0x310A);
11168put('BOPOMOFO_LETTER_N, 'codepoint, 0x310B);
11169put('BOPOMOFO_LETTER_L, 'codepoint, 0x310C);
11170put('BOPOMOFO_LETTER_G, 'codepoint, 0x310D);
11171put('BOPOMOFO_LETTER_K, 'codepoint, 0x310E);
11172put('BOPOMOFO_LETTER_H, 'codepoint, 0x310F);
11173put('BOPOMOFO_LETTER_J, 'codepoint, 0x3110);
11174put('BOPOMOFO_LETTER_Q, 'codepoint, 0x3111);
11175put('BOPOMOFO_LETTER_X, 'codepoint, 0x3112);
11176put('BOPOMOFO_LETTER_ZH, 'codepoint, 0x3113);
11177put('BOPOMOFO_LETTER_CH, 'codepoint, 0x3114);
11178put('BOPOMOFO_LETTER_SH, 'codepoint, 0x3115);
11179put('BOPOMOFO_LETTER_R, 'codepoint, 0x3116);
11180put('BOPOMOFO_LETTER_Z, 'codepoint, 0x3117);
11181put('BOPOMOFO_LETTER_C, 'codepoint, 0x3118);
11182put('BOPOMOFO_LETTER_S, 'codepoint, 0x3119);
11183put('BOPOMOFO_LETTER_A, 'codepoint, 0x311A);
11184put('BOPOMOFO_LETTER_O, 'codepoint, 0x311B);
11185put('BOPOMOFO_LETTER_E, 'codepoint, 0x311C);
11186put('BOPOMOFO_LETTER_EH, 'codepoint, 0x311D);
11187put('BOPOMOFO_LETTER_AI, 'codepoint, 0x311E);
11188put('BOPOMOFO_LETTER_EI, 'codepoint, 0x311F);
11189put('BOPOMOFO_LETTER_AU, 'codepoint, 0x3120);
11190put('BOPOMOFO_LETTER_OU, 'codepoint, 0x3121);
11191put('BOPOMOFO_LETTER_AN, 'codepoint, 0x3122);
11192put('BOPOMOFO_LETTER_EN, 'codepoint, 0x3123);
11193put('BOPOMOFO_LETTER_ANG, 'codepoint, 0x3124);
11194put('BOPOMOFO_LETTER_ENG, 'codepoint, 0x3125);
11195put('BOPOMOFO_LETTER_ER, 'codepoint, 0x3126);
11196put('BOPOMOFO_LETTER_I, 'codepoint, 0x3127);
11197put('BOPOMOFO_LETTER_U, 'codepoint, 0x3128);
11198put('BOPOMOFO_LETTER_IU, 'codepoint, 0x3129);
11199put('BOPOMOFO_LETTER_V, 'codepoint, 0x312A);
11200put('BOPOMOFO_LETTER_NG, 'codepoint, 0x312B);
11201put('BOPOMOFO_LETTER_GN, 'codepoint, 0x312C);
11202put('BOPOMOFO_LETTER_IH, 'codepoint, 0x312D);
11203put('HANGUL_LETTER_KIYEOK, 'codepoint, 0x3131);
11204put('HANGUL_LETTER_SSANGKIYEOK, 'codepoint, 0x3132);
11205put('HANGUL_LETTER_KIYEOK_SIOS, 'codepoint, 0x3133);
11206put('HANGUL_LETTER_NIEUN, 'codepoint, 0x3134);
11207put('HANGUL_LETTER_NIEUN_CIEUC, 'codepoint, 0x3135);
11208put('HANGUL_LETTER_NIEUN_HIEUH, 'codepoint, 0x3136);
11209put('HANGUL_LETTER_TIKEUT, 'codepoint, 0x3137);
11210put('HANGUL_LETTER_SSANGTIKEUT, 'codepoint, 0x3138);
11211put('HANGUL_LETTER_RIEUL, 'codepoint, 0x3139);
11212put('HANGUL_LETTER_RIEUL_KIYEOK, 'codepoint, 0x313A);
11213put('HANGUL_LETTER_RIEUL_MIEUM, 'codepoint, 0x313B);
11214put('HANGUL_LETTER_RIEUL_PIEUP, 'codepoint, 0x313C);
11215put('HANGUL_LETTER_RIEUL_SIOS, 'codepoint, 0x313D);
11216put('HANGUL_LETTER_RIEUL_THIEUTH, 'codepoint, 0x313E);
11217put('HANGUL_LETTER_RIEUL_PHIEUPH, 'codepoint, 0x313F);
11218put('HANGUL_LETTER_RIEUL_HIEUH, 'codepoint, 0x3140);
11219put('HANGUL_LETTER_MIEUM, 'codepoint, 0x3141);
11220put('HANGUL_LETTER_PIEUP, 'codepoint, 0x3142);
11221put('HANGUL_LETTER_SSANGPIEUP, 'codepoint, 0x3143);
11222put('HANGUL_LETTER_PIEUP_SIOS, 'codepoint, 0x3144);
11223put('HANGUL_LETTER_SIOS, 'codepoint, 0x3145);
11224put('HANGUL_LETTER_SSANGSIOS, 'codepoint, 0x3146);
11225put('HANGUL_LETTER_IEUNG, 'codepoint, 0x3147);
11226put('HANGUL_LETTER_CIEUC, 'codepoint, 0x3148);
11227put('HANGUL_LETTER_SSANGCIEUC, 'codepoint, 0x3149);
11228put('HANGUL_LETTER_CHIEUCH, 'codepoint, 0x314A);
11229put('HANGUL_LETTER_KHIEUKH, 'codepoint, 0x314B);
11230put('HANGUL_LETTER_THIEUTH, 'codepoint, 0x314C);
11231put('HANGUL_LETTER_PHIEUPH, 'codepoint, 0x314D);
11232put('HANGUL_LETTER_HIEUH, 'codepoint, 0x314E);
11233put('HANGUL_LETTER_A, 'codepoint, 0x314F);
11234put('HANGUL_LETTER_AE, 'codepoint, 0x3150);
11235put('HANGUL_LETTER_YA, 'codepoint, 0x3151);
11236put('HANGUL_LETTER_YAE, 'codepoint, 0x3152);
11237put('HANGUL_LETTER_EO, 'codepoint, 0x3153);
11238put('HANGUL_LETTER_E, 'codepoint, 0x3154);
11239put('HANGUL_LETTER_YEO, 'codepoint, 0x3155);
11240put('HANGUL_LETTER_YE, 'codepoint, 0x3156);
11241put('HANGUL_LETTER_O, 'codepoint, 0x3157);
11242put('HANGUL_LETTER_WA, 'codepoint, 0x3158);
11243put('HANGUL_LETTER_WAE, 'codepoint, 0x3159);
11244put('HANGUL_LETTER_OE, 'codepoint, 0x315A);
11245put('HANGUL_LETTER_YO, 'codepoint, 0x315B);
11246put('HANGUL_LETTER_U, 'codepoint, 0x315C);
11247put('HANGUL_LETTER_WEO, 'codepoint, 0x315D);
11248put('HANGUL_LETTER_WE, 'codepoint, 0x315E);
11249put('HANGUL_LETTER_WI, 'codepoint, 0x315F);
11250put('HANGUL_LETTER_YU, 'codepoint, 0x3160);
11251put('HANGUL_LETTER_EU, 'codepoint, 0x3161);
11252put('HANGUL_LETTER_YI, 'codepoint, 0x3162);
11253put('HANGUL_LETTER_I, 'codepoint, 0x3163);
11254put('HANGUL_FILLER, 'codepoint, 0x3164);
11255put('HANGUL_LETTER_SSANGNIEUN, 'codepoint, 0x3165);
11256put('HANGUL_LETTER_NIEUN_TIKEUT, 'codepoint, 0x3166);
11257put('HANGUL_LETTER_NIEUN_SIOS, 'codepoint, 0x3167);
11258put('HANGUL_LETTER_NIEUN_PANSIOS, 'codepoint, 0x3168);
11259put('HANGUL_LETTER_RIEUL_KIYEOK_SIOS, 'codepoint, 0x3169);
11260put('HANGUL_LETTER_RIEUL_TIKEUT, 'codepoint, 0x316A);
11261put('HANGUL_LETTER_RIEUL_PIEUP_SIOS, 'codepoint, 0x316B);
11262put('HANGUL_LETTER_RIEUL_PANSIOS, 'codepoint, 0x316C);
11263put('HANGUL_LETTER_RIEUL_YEORINHIEUH, 'codepoint, 0x316D);
11264put('HANGUL_LETTER_MIEUM_PIEUP, 'codepoint, 0x316E);
11265put('HANGUL_LETTER_MIEUM_SIOS, 'codepoint, 0x316F);
11266put('HANGUL_LETTER_MIEUM_PANSIOS, 'codepoint, 0x3170);
11267put('HANGUL_LETTER_KAPYEOUNMIEUM, 'codepoint, 0x3171);
11268put('HANGUL_LETTER_PIEUP_KIYEOK, 'codepoint, 0x3172);
11269put('HANGUL_LETTER_PIEUP_TIKEUT, 'codepoint, 0x3173);
11270put('HANGUL_LETTER_PIEUP_SIOS_KIYEOK, 'codepoint, 0x3174);
11271put('HANGUL_LETTER_PIEUP_SIOS_TIKEUT, 'codepoint, 0x3175);
11272put('HANGUL_LETTER_PIEUP_CIEUC, 'codepoint, 0x3176);
11273put('HANGUL_LETTER_PIEUP_THIEUTH, 'codepoint, 0x3177);
11274put('HANGUL_LETTER_KAPYEOUNPIEUP, 'codepoint, 0x3178);
11275put('HANGUL_LETTER_KAPYEOUNSSANGPIEUP, 'codepoint, 0x3179);
11276put('HANGUL_LETTER_SIOS_KIYEOK, 'codepoint, 0x317A);
11277put('HANGUL_LETTER_SIOS_NIEUN, 'codepoint, 0x317B);
11278put('HANGUL_LETTER_SIOS_TIKEUT, 'codepoint, 0x317C);
11279put('HANGUL_LETTER_SIOS_PIEUP, 'codepoint, 0x317D);
11280put('HANGUL_LETTER_SIOS_CIEUC, 'codepoint, 0x317E);
11281put('HANGUL_LETTER_PANSIOS, 'codepoint, 0x317F);
11282put('HANGUL_LETTER_SSANGIEUNG, 'codepoint, 0x3180);
11283put('HANGUL_LETTER_YESIEUNG, 'codepoint, 0x3181);
11284put('HANGUL_LETTER_YESIEUNG_SIOS, 'codepoint, 0x3182);
11285put('HANGUL_LETTER_YESIEUNG_PANSIOS, 'codepoint, 0x3183);
11286put('HANGUL_LETTER_KAPYEOUNPHIEUPH, 'codepoint, 0x3184);
11287put('HANGUL_LETTER_SSANGHIEUH, 'codepoint, 0x3185);
11288put('HANGUL_LETTER_YEORINHIEUH, 'codepoint, 0x3186);
11289put('HANGUL_LETTER_YO_YA, 'codepoint, 0x3187);
11290put('HANGUL_LETTER_YO_YAE, 'codepoint, 0x3188);
11291put('HANGUL_LETTER_YO_I, 'codepoint, 0x3189);
11292put('HANGUL_LETTER_YU_YEO, 'codepoint, 0x318A);
11293put('HANGUL_LETTER_YU_YE, 'codepoint, 0x318B);
11294put('HANGUL_LETTER_YU_I, 'codepoint, 0x318C);
11295put('HANGUL_LETTER_ARAEA, 'codepoint, 0x318D);
11296put('HANGUL_LETTER_ARAEAE, 'codepoint, 0x318E);
11297put('IDEOGRAPHIC_ANNOTATION_LINKING_MARK, 'codepoint, 0x3190);
11298put('IDEOGRAPHIC_ANNOTATION_REVERSE_MARK, 'codepoint, 0x3191);
11299put('IDEOGRAPHIC_ANNOTATION_ONE_MARK, 'codepoint, 0x3192);
11300put('IDEOGRAPHIC_ANNOTATION_TWO_MARK, 'codepoint, 0x3193);
11301put('IDEOGRAPHIC_ANNOTATION_THREE_MARK, 'codepoint, 0x3194);
11302put('IDEOGRAPHIC_ANNOTATION_FOUR_MARK, 'codepoint, 0x3195);
11303put('IDEOGRAPHIC_ANNOTATION_TOP_MARK, 'codepoint, 0x3196);
11304put('IDEOGRAPHIC_ANNOTATION_MIDDLE_MARK, 'codepoint, 0x3197);
11305put('IDEOGRAPHIC_ANNOTATION_BOTTOM_MARK, 'codepoint, 0x3198);
11306put('IDEOGRAPHIC_ANNOTATION_FIRST_MARK, 'codepoint, 0x3199);
11307put('IDEOGRAPHIC_ANNOTATION_SECOND_MARK, 'codepoint, 0x319A);
11308put('IDEOGRAPHIC_ANNOTATION_THIRD_MARK, 'codepoint, 0x319B);
11309put('IDEOGRAPHIC_ANNOTATION_FOURTH_MARK, 'codepoint, 0x319C);
11310put('IDEOGRAPHIC_ANNOTATION_HEAVEN_MARK, 'codepoint, 0x319D);
11311put('IDEOGRAPHIC_ANNOTATION_EARTH_MARK, 'codepoint, 0x319E);
11312put('IDEOGRAPHIC_ANNOTATION_MAN_MARK, 'codepoint, 0x319F);
11313put('BOPOMOFO_LETTER_BU, 'codepoint, 0x31A0);
11314put('BOPOMOFO_LETTER_ZI, 'codepoint, 0x31A1);
11315put('BOPOMOFO_LETTER_JI, 'codepoint, 0x31A2);
11316put('BOPOMOFO_LETTER_GU, 'codepoint, 0x31A3);
11317put('BOPOMOFO_LETTER_EE, 'codepoint, 0x31A4);
11318put('BOPOMOFO_LETTER_ENN, 'codepoint, 0x31A5);
11319put('BOPOMOFO_LETTER_OO, 'codepoint, 0x31A6);
11320put('BOPOMOFO_LETTER_ONN, 'codepoint, 0x31A7);
11321put('BOPOMOFO_LETTER_IR, 'codepoint, 0x31A8);
11322put('BOPOMOFO_LETTER_ANN, 'codepoint, 0x31A9);
11323put('BOPOMOFO_LETTER_INN, 'codepoint, 0x31AA);
11324put('BOPOMOFO_LETTER_UNN, 'codepoint, 0x31AB);
11325put('BOPOMOFO_LETTER_IM, 'codepoint, 0x31AC);
11326put('BOPOMOFO_LETTER_NGG, 'codepoint, 0x31AD);
11327put('BOPOMOFO_LETTER_AINN, 'codepoint, 0x31AE);
11328put('BOPOMOFO_LETTER_AUNN, 'codepoint, 0x31AF);
11329put('BOPOMOFO_LETTER_AM, 'codepoint, 0x31B0);
11330put('BOPOMOFO_LETTER_OM, 'codepoint, 0x31B1);
11331put('BOPOMOFO_LETTER_ONG, 'codepoint, 0x31B2);
11332put('BOPOMOFO_LETTER_INNN, 'codepoint, 0x31B3);
11333put('BOPOMOFO_FINAL_LETTER_P, 'codepoint, 0x31B4);
11334put('BOPOMOFO_FINAL_LETTER_T, 'codepoint, 0x31B5);
11335put('BOPOMOFO_FINAL_LETTER_K, 'codepoint, 0x31B6);
11336put('BOPOMOFO_FINAL_LETTER_H, 'codepoint, 0x31B7);
11337put('BOPOMOFO_LETTER_GH, 'codepoint, 0x31B8);
11338put('BOPOMOFO_LETTER_LH, 'codepoint, 0x31B9);
11339put('BOPOMOFO_LETTER_ZY, 'codepoint, 0x31BA);
11340put('CJK_STROKE_T, 'codepoint, 0x31C0);
11341put('CJK_STROKE_WG, 'codepoint, 0x31C1);
11342put('CJK_STROKE_XG, 'codepoint, 0x31C2);
11343put('CJK_STROKE_BXG, 'codepoint, 0x31C3);
11344put('CJK_STROKE_SW, 'codepoint, 0x31C4);
11345put('CJK_STROKE_HZZ, 'codepoint, 0x31C5);
11346put('CJK_STROKE_HZG, 'codepoint, 0x31C6);
11347put('CJK_STROKE_HP, 'codepoint, 0x31C7);
11348put('CJK_STROKE_HZWG, 'codepoint, 0x31C8);
11349put('CJK_STROKE_SZWG, 'codepoint, 0x31C9);
11350put('CJK_STROKE_HZT, 'codepoint, 0x31CA);
11351put('CJK_STROKE_HZZP, 'codepoint, 0x31CB);
11352put('CJK_STROKE_HPWG, 'codepoint, 0x31CC);
11353put('CJK_STROKE_HZW, 'codepoint, 0x31CD);
11354put('CJK_STROKE_HZZZ, 'codepoint, 0x31CE);
11355put('CJK_STROKE_N, 'codepoint, 0x31CF);
11356put('CJK_STROKE_H, 'codepoint, 0x31D0);
11357put('CJK_STROKE_S, 'codepoint, 0x31D1);
11358put('CJK_STROKE_P, 'codepoint, 0x31D2);
11359put('CJK_STROKE_SP, 'codepoint, 0x31D3);
11360put('CJK_STROKE_D, 'codepoint, 0x31D4);
11361put('CJK_STROKE_HZ, 'codepoint, 0x31D5);
11362put('CJK_STROKE_HG, 'codepoint, 0x31D6);
11363put('CJK_STROKE_SZ, 'codepoint, 0x31D7);
11364put('CJK_STROKE_SWZ, 'codepoint, 0x31D8);
11365put('CJK_STROKE_ST, 'codepoint, 0x31D9);
11366put('CJK_STROKE_SG, 'codepoint, 0x31DA);
11367put('CJK_STROKE_PD, 'codepoint, 0x31DB);
11368put('CJK_STROKE_PZ, 'codepoint, 0x31DC);
11369put('CJK_STROKE_TN, 'codepoint, 0x31DD);
11370put('CJK_STROKE_SZZ, 'codepoint, 0x31DE);
11371put('CJK_STROKE_SWG, 'codepoint, 0x31DF);
11372put('CJK_STROKE_HXWG, 'codepoint, 0x31E0);
11373put('CJK_STROKE_HZZZG, 'codepoint, 0x31E1);
11374put('CJK_STROKE_PG, 'codepoint, 0x31E2);
11375put('CJK_STROKE_Q, 'codepoint, 0x31E3);
11376put('KATAKANA_LETTER_SMALL_KU, 'codepoint, 0x31F0);
11377put('KATAKANA_LETTER_SMALL_SI, 'codepoint, 0x31F1);
11378put('KATAKANA_LETTER_SMALL_SU, 'codepoint, 0x31F2);
11379put('KATAKANA_LETTER_SMALL_TO, 'codepoint, 0x31F3);
11380put('KATAKANA_LETTER_SMALL_NU, 'codepoint, 0x31F4);
11381put('KATAKANA_LETTER_SMALL_HA, 'codepoint, 0x31F5);
11382put('KATAKANA_LETTER_SMALL_HI, 'codepoint, 0x31F6);
11383put('KATAKANA_LETTER_SMALL_HU, 'codepoint, 0x31F7);
11384put('KATAKANA_LETTER_SMALL_HE, 'codepoint, 0x31F8);
11385put('KATAKANA_LETTER_SMALL_HO, 'codepoint, 0x31F9);
11386put('KATAKANA_LETTER_SMALL_MU, 'codepoint, 0x31FA);
11387put('KATAKANA_LETTER_SMALL_RA, 'codepoint, 0x31FB);
11388put('KATAKANA_LETTER_SMALL_RI, 'codepoint, 0x31FC);
11389put('KATAKANA_LETTER_SMALL_RU, 'codepoint, 0x31FD);
11390put('KATAKANA_LETTER_SMALL_RE, 'codepoint, 0x31FE);
11391put('KATAKANA_LETTER_SMALL_RO, 'codepoint, 0x31FF);
11392put('PARENTHESIZED_HANGUL_KIYEOK, 'codepoint, 0x3200);
11393put('PARENTHESIZED_HANGUL_NIEUN, 'codepoint, 0x3201);
11394put('PARENTHESIZED_HANGUL_TIKEUT, 'codepoint, 0x3202);
11395put('PARENTHESIZED_HANGUL_RIEUL, 'codepoint, 0x3203);
11396put('PARENTHESIZED_HANGUL_MIEUM, 'codepoint, 0x3204);
11397put('PARENTHESIZED_HANGUL_PIEUP, 'codepoint, 0x3205);
11398put('PARENTHESIZED_HANGUL_SIOS, 'codepoint, 0x3206);
11399put('PARENTHESIZED_HANGUL_IEUNG, 'codepoint, 0x3207);
11400put('PARENTHESIZED_HANGUL_CIEUC, 'codepoint, 0x3208);
11401put('PARENTHESIZED_HANGUL_CHIEUCH, 'codepoint, 0x3209);
11402put('PARENTHESIZED_HANGUL_KHIEUKH, 'codepoint, 0x320A);
11403put('PARENTHESIZED_HANGUL_THIEUTH, 'codepoint, 0x320B);
11404put('PARENTHESIZED_HANGUL_PHIEUPH, 'codepoint, 0x320C);
11405put('PARENTHESIZED_HANGUL_HIEUH, 'codepoint, 0x320D);
11406put('PARENTHESIZED_HANGUL_KIYEOK_A, 'codepoint, 0x320E);
11407put('PARENTHESIZED_HANGUL_NIEUN_A, 'codepoint, 0x320F);
11408put('PARENTHESIZED_HANGUL_TIKEUT_A, 'codepoint, 0x3210);
11409put('PARENTHESIZED_HANGUL_RIEUL_A, 'codepoint, 0x3211);
11410put('PARENTHESIZED_HANGUL_MIEUM_A, 'codepoint, 0x3212);
11411put('PARENTHESIZED_HANGUL_PIEUP_A, 'codepoint, 0x3213);
11412put('PARENTHESIZED_HANGUL_SIOS_A, 'codepoint, 0x3214);
11413put('PARENTHESIZED_HANGUL_IEUNG_A, 'codepoint, 0x3215);
11414put('PARENTHESIZED_HANGUL_CIEUC_A, 'codepoint, 0x3216);
11415put('PARENTHESIZED_HANGUL_CHIEUCH_A, 'codepoint, 0x3217);
11416put('PARENTHESIZED_HANGUL_KHIEUKH_A, 'codepoint, 0x3218);
11417put('PARENTHESIZED_HANGUL_THIEUTH_A, 'codepoint, 0x3219);
11418put('PARENTHESIZED_HANGUL_PHIEUPH_A, 'codepoint, 0x321A);
11419put('PARENTHESIZED_HANGUL_HIEUH_A, 'codepoint, 0x321B);
11420put('PARENTHESIZED_HANGUL_CIEUC_U, 'codepoint, 0x321C);
11421put('PARENTHESIZED_KOREAN_CHARACTER_OJEON, 'codepoint, 0x321D);
11422put('PARENTHESIZED_KOREAN_CHARACTER_O_HU, 'codepoint, 0x321E);
11423put('PARENTHESIZED_IDEOGRAPH_ONE, 'codepoint, 0x3220);
11424put('PARENTHESIZED_IDEOGRAPH_TWO, 'codepoint, 0x3221);
11425put('PARENTHESIZED_IDEOGRAPH_THREE, 'codepoint, 0x3222);
11426put('PARENTHESIZED_IDEOGRAPH_FOUR, 'codepoint, 0x3223);
11427put('PARENTHESIZED_IDEOGRAPH_FIVE, 'codepoint, 0x3224);
11428put('PARENTHESIZED_IDEOGRAPH_SIX, 'codepoint, 0x3225);
11429put('PARENTHESIZED_IDEOGRAPH_SEVEN, 'codepoint, 0x3226);
11430put('PARENTHESIZED_IDEOGRAPH_EIGHT, 'codepoint, 0x3227);
11431put('PARENTHESIZED_IDEOGRAPH_NINE, 'codepoint, 0x3228);
11432put('PARENTHESIZED_IDEOGRAPH_TEN, 'codepoint, 0x3229);
11433put('PARENTHESIZED_IDEOGRAPH_MOON, 'codepoint, 0x322A);
11434put('PARENTHESIZED_IDEOGRAPH_FIRE, 'codepoint, 0x322B);
11435put('PARENTHESIZED_IDEOGRAPH_WATER, 'codepoint, 0x322C);
11436put('PARENTHESIZED_IDEOGRAPH_WOOD, 'codepoint, 0x322D);
11437put('PARENTHESIZED_IDEOGRAPH_METAL, 'codepoint, 0x322E);
11438put('PARENTHESIZED_IDEOGRAPH_EARTH, 'codepoint, 0x322F);
11439put('PARENTHESIZED_IDEOGRAPH_SUN, 'codepoint, 0x3230);
11440put('PARENTHESIZED_IDEOGRAPH_STOCK, 'codepoint, 0x3231);
11441put('PARENTHESIZED_IDEOGRAPH_HAVE, 'codepoint, 0x3232);
11442put('PARENTHESIZED_IDEOGRAPH_SOCIETY, 'codepoint, 0x3233);
11443put('PARENTHESIZED_IDEOGRAPH_NAME, 'codepoint, 0x3234);
11444put('PARENTHESIZED_IDEOGRAPH_SPECIAL, 'codepoint, 0x3235);
11445put('PARENTHESIZED_IDEOGRAPH_FINANCIAL, 'codepoint, 0x3236);
11446put('PARENTHESIZED_IDEOGRAPH_CONGRATULATION, 'codepoint, 0x3237);
11447put('PARENTHESIZED_IDEOGRAPH_LABOR, 'codepoint, 0x3238);
11448put('PARENTHESIZED_IDEOGRAPH_REPRESENT, 'codepoint, 0x3239);
11449put('PARENTHESIZED_IDEOGRAPH_CALL, 'codepoint, 0x323A);
11450put('PARENTHESIZED_IDEOGRAPH_STUDY, 'codepoint, 0x323B);
11451put('PARENTHESIZED_IDEOGRAPH_SUPERVISE, 'codepoint, 0x323C);
11452put('PARENTHESIZED_IDEOGRAPH_ENTERPRISE, 'codepoint, 0x323D);
11453put('PARENTHESIZED_IDEOGRAPH_RESOURCE, 'codepoint, 0x323E);
11454put('PARENTHESIZED_IDEOGRAPH_ALLIANCE, 'codepoint, 0x323F);
11455put('PARENTHESIZED_IDEOGRAPH_FESTIVAL, 'codepoint, 0x3240);
11456put('PARENTHESIZED_IDEOGRAPH_REST, 'codepoint, 0x3241);
11457put('PARENTHESIZED_IDEOGRAPH_SELF, 'codepoint, 0x3242);
11458put('PARENTHESIZED_IDEOGRAPH_REACH, 'codepoint, 0x3243);
11459put('CIRCLED_IDEOGRAPH_QUESTION, 'codepoint, 0x3244);
11460put('CIRCLED_IDEOGRAPH_KINDERGARTEN, 'codepoint, 0x3245);
11461put('CIRCLED_IDEOGRAPH_SCHOOL, 'codepoint, 0x3246);
11462put('CIRCLED_IDEOGRAPH_KOTO, 'codepoint, 0x3247);
11463put('CIRCLED_NUMBER_TEN_ON_BLACK_SQUARE, 'codepoint, 0x3248);
11464put('CIRCLED_NUMBER_TWENTY_ON_BLACK_SQUARE, 'codepoint, 0x3249);
11465put('CIRCLED_NUMBER_THIRTY_ON_BLACK_SQUARE, 'codepoint, 0x324A);
11466put('CIRCLED_NUMBER_FORTY_ON_BLACK_SQUARE, 'codepoint, 0x324B);
11467put('CIRCLED_NUMBER_FIFTY_ON_BLACK_SQUARE, 'codepoint, 0x324C);
11468put('CIRCLED_NUMBER_SIXTY_ON_BLACK_SQUARE, 'codepoint, 0x324D);
11469put('CIRCLED_NUMBER_SEVENTY_ON_BLACK_SQUARE, 'codepoint, 0x324E);
11470put('CIRCLED_NUMBER_EIGHTY_ON_BLACK_SQUARE, 'codepoint, 0x324F);
11471put('PARTNERSHIP_SIGN, 'codepoint, 0x3250);
11472put('CIRCLED_NUMBER_TWENTY_ONE, 'codepoint, 0x3251);
11473put('CIRCLED_NUMBER_TWENTY_TWO, 'codepoint, 0x3252);
11474put('CIRCLED_NUMBER_TWENTY_THREE, 'codepoint, 0x3253);
11475put('CIRCLED_NUMBER_TWENTY_FOUR, 'codepoint, 0x3254);
11476put('CIRCLED_NUMBER_TWENTY_FIVE, 'codepoint, 0x3255);
11477put('CIRCLED_NUMBER_TWENTY_SIX, 'codepoint, 0x3256);
11478put('CIRCLED_NUMBER_TWENTY_SEVEN, 'codepoint, 0x3257);
11479put('CIRCLED_NUMBER_TWENTY_EIGHT, 'codepoint, 0x3258);
11480put('CIRCLED_NUMBER_TWENTY_NINE, 'codepoint, 0x3259);
11481put('CIRCLED_NUMBER_THIRTY, 'codepoint, 0x325A);
11482put('CIRCLED_NUMBER_THIRTY_ONE, 'codepoint, 0x325B);
11483put('CIRCLED_NUMBER_THIRTY_TWO, 'codepoint, 0x325C);
11484put('CIRCLED_NUMBER_THIRTY_THREE, 'codepoint, 0x325D);
11485put('CIRCLED_NUMBER_THIRTY_FOUR, 'codepoint, 0x325E);
11486put('CIRCLED_NUMBER_THIRTY_FIVE, 'codepoint, 0x325F);
11487put('CIRCLED_HANGUL_KIYEOK, 'codepoint, 0x3260);
11488put('CIRCLED_HANGUL_NIEUN, 'codepoint, 0x3261);
11489put('CIRCLED_HANGUL_TIKEUT, 'codepoint, 0x3262);
11490put('CIRCLED_HANGUL_RIEUL, 'codepoint, 0x3263);
11491put('CIRCLED_HANGUL_MIEUM, 'codepoint, 0x3264);
11492put('CIRCLED_HANGUL_PIEUP, 'codepoint, 0x3265);
11493put('CIRCLED_HANGUL_SIOS, 'codepoint, 0x3266);
11494put('CIRCLED_HANGUL_IEUNG, 'codepoint, 0x3267);
11495put('CIRCLED_HANGUL_CIEUC, 'codepoint, 0x3268);
11496put('CIRCLED_HANGUL_CHIEUCH, 'codepoint, 0x3269);
11497put('CIRCLED_HANGUL_KHIEUKH, 'codepoint, 0x326A);
11498put('CIRCLED_HANGUL_THIEUTH, 'codepoint, 0x326B);
11499put('CIRCLED_HANGUL_PHIEUPH, 'codepoint, 0x326C);
11500put('CIRCLED_HANGUL_HIEUH, 'codepoint, 0x326D);
11501put('CIRCLED_HANGUL_KIYEOK_A, 'codepoint, 0x326E);
11502put('CIRCLED_HANGUL_NIEUN_A, 'codepoint, 0x326F);
11503put('CIRCLED_HANGUL_TIKEUT_A, 'codepoint, 0x3270);
11504put('CIRCLED_HANGUL_RIEUL_A, 'codepoint, 0x3271);
11505put('CIRCLED_HANGUL_MIEUM_A, 'codepoint, 0x3272);
11506put('CIRCLED_HANGUL_PIEUP_A, 'codepoint, 0x3273);
11507put('CIRCLED_HANGUL_SIOS_A, 'codepoint, 0x3274);
11508put('CIRCLED_HANGUL_IEUNG_A, 'codepoint, 0x3275);
11509put('CIRCLED_HANGUL_CIEUC_A, 'codepoint, 0x3276);
11510put('CIRCLED_HANGUL_CHIEUCH_A, 'codepoint, 0x3277);
11511put('CIRCLED_HANGUL_KHIEUKH_A, 'codepoint, 0x3278);
11512put('CIRCLED_HANGUL_THIEUTH_A, 'codepoint, 0x3279);
11513put('CIRCLED_HANGUL_PHIEUPH_A, 'codepoint, 0x327A);
11514put('CIRCLED_HANGUL_HIEUH_A, 'codepoint, 0x327B);
11515put('CIRCLED_KOREAN_CHARACTER_CHAMKO, 'codepoint, 0x327C);
11516put('CIRCLED_KOREAN_CHARACTER_JUEUI, 'codepoint, 0x327D);
11517put('CIRCLED_HANGUL_IEUNG_U, 'codepoint, 0x327E);
11518put('KOREAN_STANDARD_SYMBOL, 'codepoint, 0x327F);
11519put('CIRCLED_IDEOGRAPH_ONE, 'codepoint, 0x3280);
11520put('CIRCLED_IDEOGRAPH_TWO, 'codepoint, 0x3281);
11521put('CIRCLED_IDEOGRAPH_THREE, 'codepoint, 0x3282);
11522put('CIRCLED_IDEOGRAPH_FOUR, 'codepoint, 0x3283);
11523put('CIRCLED_IDEOGRAPH_FIVE, 'codepoint, 0x3284);
11524put('CIRCLED_IDEOGRAPH_SIX, 'codepoint, 0x3285);
11525put('CIRCLED_IDEOGRAPH_SEVEN, 'codepoint, 0x3286);
11526put('CIRCLED_IDEOGRAPH_EIGHT, 'codepoint, 0x3287);
11527put('CIRCLED_IDEOGRAPH_NINE, 'codepoint, 0x3288);
11528put('CIRCLED_IDEOGRAPH_TEN, 'codepoint, 0x3289);
11529put('CIRCLED_IDEOGRAPH_MOON, 'codepoint, 0x328A);
11530put('CIRCLED_IDEOGRAPH_FIRE, 'codepoint, 0x328B);
11531put('CIRCLED_IDEOGRAPH_WATER, 'codepoint, 0x328C);
11532put('CIRCLED_IDEOGRAPH_WOOD, 'codepoint, 0x328D);
11533put('CIRCLED_IDEOGRAPH_METAL, 'codepoint, 0x328E);
11534put('CIRCLED_IDEOGRAPH_EARTH, 'codepoint, 0x328F);
11535put('CIRCLED_IDEOGRAPH_SUN, 'codepoint, 0x3290);
11536put('CIRCLED_IDEOGRAPH_STOCK, 'codepoint, 0x3291);
11537put('CIRCLED_IDEOGRAPH_HAVE, 'codepoint, 0x3292);
11538put('CIRCLED_IDEOGRAPH_SOCIETY, 'codepoint, 0x3293);
11539put('CIRCLED_IDEOGRAPH_NAME, 'codepoint, 0x3294);
11540put('CIRCLED_IDEOGRAPH_SPECIAL, 'codepoint, 0x3295);
11541put('CIRCLED_IDEOGRAPH_FINANCIAL, 'codepoint, 0x3296);
11542put('CIRCLED_IDEOGRAPH_CONGRATULATION, 'codepoint, 0x3297);
11543put('CIRCLED_IDEOGRAPH_LABOR, 'codepoint, 0x3298);
11544put('CIRCLED_IDEOGRAPH_SECRET, 'codepoint, 0x3299);
11545put('CIRCLED_IDEOGRAPH_MALE, 'codepoint, 0x329A);
11546put('CIRCLED_IDEOGRAPH_FEMALE, 'codepoint, 0x329B);
11547put('CIRCLED_IDEOGRAPH_SUITABLE, 'codepoint, 0x329C);
11548put('CIRCLED_IDEOGRAPH_EXCELLENT, 'codepoint, 0x329D);
11549put('CIRCLED_IDEOGRAPH_PRINT, 'codepoint, 0x329E);
11550put('CIRCLED_IDEOGRAPH_ATTENTION, 'codepoint, 0x329F);
11551put('CIRCLED_IDEOGRAPH_ITEM, 'codepoint, 0x32A0);
11552put('CIRCLED_IDEOGRAPH_REST, 'codepoint, 0x32A1);
11553put('CIRCLED_IDEOGRAPH_COPY, 'codepoint, 0x32A2);
11554put('CIRCLED_IDEOGRAPH_CORRECT, 'codepoint, 0x32A3);
11555put('CIRCLED_IDEOGRAPH_HIGH, 'codepoint, 0x32A4);
11556put('CIRCLED_IDEOGRAPH_CENTRE, 'codepoint, 0x32A5);
11557put('CIRCLED_IDEOGRAPH_LOW, 'codepoint, 0x32A6);
11558put('CIRCLED_IDEOGRAPH_LEFT, 'codepoint, 0x32A7);
11559put('CIRCLED_IDEOGRAPH_RIGHT, 'codepoint, 0x32A8);
11560put('CIRCLED_IDEOGRAPH_MEDICINE, 'codepoint, 0x32A9);
11561put('CIRCLED_IDEOGRAPH_RELIGION, 'codepoint, 0x32AA);
11562put('CIRCLED_IDEOGRAPH_STUDY, 'codepoint, 0x32AB);
11563put('CIRCLED_IDEOGRAPH_SUPERVISE, 'codepoint, 0x32AC);
11564put('CIRCLED_IDEOGRAPH_ENTERPRISE, 'codepoint, 0x32AD);
11565put('CIRCLED_IDEOGRAPH_RESOURCE, 'codepoint, 0x32AE);
11566put('CIRCLED_IDEOGRAPH_ALLIANCE, 'codepoint, 0x32AF);
11567put('CIRCLED_IDEOGRAPH_NIGHT, 'codepoint, 0x32B0);
11568put('CIRCLED_NUMBER_THIRTY_SIX, 'codepoint, 0x32B1);
11569put('CIRCLED_NUMBER_THIRTY_SEVEN, 'codepoint, 0x32B2);
11570put('CIRCLED_NUMBER_THIRTY_EIGHT, 'codepoint, 0x32B3);
11571put('CIRCLED_NUMBER_THIRTY_NINE, 'codepoint, 0x32B4);
11572put('CIRCLED_NUMBER_FORTY, 'codepoint, 0x32B5);
11573put('CIRCLED_NUMBER_FORTY_ONE, 'codepoint, 0x32B6);
11574put('CIRCLED_NUMBER_FORTY_TWO, 'codepoint, 0x32B7);
11575put('CIRCLED_NUMBER_FORTY_THREE, 'codepoint, 0x32B8);
11576put('CIRCLED_NUMBER_FORTY_FOUR, 'codepoint, 0x32B9);
11577put('CIRCLED_NUMBER_FORTY_FIVE, 'codepoint, 0x32BA);
11578put('CIRCLED_NUMBER_FORTY_SIX, 'codepoint, 0x32BB);
11579put('CIRCLED_NUMBER_FORTY_SEVEN, 'codepoint, 0x32BC);
11580put('CIRCLED_NUMBER_FORTY_EIGHT, 'codepoint, 0x32BD);
11581put('CIRCLED_NUMBER_FORTY_NINE, 'codepoint, 0x32BE);
11582put('CIRCLED_NUMBER_FIFTY, 'codepoint, 0x32BF);
11583put('IDEOGRAPHIC_TELEGRAPH_SYMBOL_FOR_JANUARY, 'codepoint, 0x32C0);
11584put('IDEOGRAPHIC_TELEGRAPH_SYMBOL_FOR_FEBRUARY, 'codepoint, 0x32C1);
11585put('IDEOGRAPHIC_TELEGRAPH_SYMBOL_FOR_MARCH, 'codepoint, 0x32C2);
11586put('IDEOGRAPHIC_TELEGRAPH_SYMBOL_FOR_APRIL, 'codepoint, 0x32C3);
11587put('IDEOGRAPHIC_TELEGRAPH_SYMBOL_FOR_MAY, 'codepoint, 0x32C4);
11588put('IDEOGRAPHIC_TELEGRAPH_SYMBOL_FOR_JUNE, 'codepoint, 0x32C5);
11589put('IDEOGRAPHIC_TELEGRAPH_SYMBOL_FOR_JULY, 'codepoint, 0x32C6);
11590put('IDEOGRAPHIC_TELEGRAPH_SYMBOL_FOR_AUGUST, 'codepoint, 0x32C7);
11591put('IDEOGRAPHIC_TELEGRAPH_SYMBOL_FOR_SEPTEMBER, 'codepoint, 0x32C8);
11592put('IDEOGRAPHIC_TELEGRAPH_SYMBOL_FOR_OCTOBER, 'codepoint, 0x32C9);
11593put('IDEOGRAPHIC_TELEGRAPH_SYMBOL_FOR_NOVEMBER, 'codepoint, 0x32CA);
11594put('IDEOGRAPHIC_TELEGRAPH_SYMBOL_FOR_DECEMBER, 'codepoint, 0x32CB);
11595put('SQUARE_HG, 'codepoint, 0x32CC);
11596put('SQUARE_ERG, 'codepoint, 0x32CD);
11597put('SQUARE_EV, 'codepoint, 0x32CE);
11598put('LIMITED_LIABILITY_SIGN, 'codepoint, 0x32CF);
11599put('CIRCLED_KATAKANA_A, 'codepoint, 0x32D0);
11600put('CIRCLED_KATAKANA_I, 'codepoint, 0x32D1);
11601put('CIRCLED_KATAKANA_U, 'codepoint, 0x32D2);
11602put('CIRCLED_KATAKANA_E, 'codepoint, 0x32D3);
11603put('CIRCLED_KATAKANA_O, 'codepoint, 0x32D4);
11604put('CIRCLED_KATAKANA_KA, 'codepoint, 0x32D5);
11605put('CIRCLED_KATAKANA_KI, 'codepoint, 0x32D6);
11606put('CIRCLED_KATAKANA_KU, 'codepoint, 0x32D7);
11607put('CIRCLED_KATAKANA_KE, 'codepoint, 0x32D8);
11608put('CIRCLED_KATAKANA_KO, 'codepoint, 0x32D9);
11609put('CIRCLED_KATAKANA_SA, 'codepoint, 0x32DA);
11610put('CIRCLED_KATAKANA_SI, 'codepoint, 0x32DB);
11611put('CIRCLED_KATAKANA_SU, 'codepoint, 0x32DC);
11612put('CIRCLED_KATAKANA_SE, 'codepoint, 0x32DD);
11613put('CIRCLED_KATAKANA_SO, 'codepoint, 0x32DE);
11614put('CIRCLED_KATAKANA_TA, 'codepoint, 0x32DF);
11615put('CIRCLED_KATAKANA_TI, 'codepoint, 0x32E0);
11616put('CIRCLED_KATAKANA_TU, 'codepoint, 0x32E1);
11617put('CIRCLED_KATAKANA_TE, 'codepoint, 0x32E2);
11618put('CIRCLED_KATAKANA_TO, 'codepoint, 0x32E3);
11619put('CIRCLED_KATAKANA_NA, 'codepoint, 0x32E4);
11620put('CIRCLED_KATAKANA_NI, 'codepoint, 0x32E5);
11621put('CIRCLED_KATAKANA_NU, 'codepoint, 0x32E6);
11622put('CIRCLED_KATAKANA_NE, 'codepoint, 0x32E7);
11623put('CIRCLED_KATAKANA_NO, 'codepoint, 0x32E8);
11624put('CIRCLED_KATAKANA_HA, 'codepoint, 0x32E9);
11625put('CIRCLED_KATAKANA_HI, 'codepoint, 0x32EA);
11626put('CIRCLED_KATAKANA_HU, 'codepoint, 0x32EB);
11627put('CIRCLED_KATAKANA_HE, 'codepoint, 0x32EC);
11628put('CIRCLED_KATAKANA_HO, 'codepoint, 0x32ED);
11629put('CIRCLED_KATAKANA_MA, 'codepoint, 0x32EE);
11630put('CIRCLED_KATAKANA_MI, 'codepoint, 0x32EF);
11631put('CIRCLED_KATAKANA_MU, 'codepoint, 0x32F0);
11632put('CIRCLED_KATAKANA_ME, 'codepoint, 0x32F1);
11633put('CIRCLED_KATAKANA_MO, 'codepoint, 0x32F2);
11634put('CIRCLED_KATAKANA_YA, 'codepoint, 0x32F3);
11635put('CIRCLED_KATAKANA_YU, 'codepoint, 0x32F4);
11636put('CIRCLED_KATAKANA_YO, 'codepoint, 0x32F5);
11637put('CIRCLED_KATAKANA_RA, 'codepoint, 0x32F6);
11638put('CIRCLED_KATAKANA_RI, 'codepoint, 0x32F7);
11639put('CIRCLED_KATAKANA_RU, 'codepoint, 0x32F8);
11640put('CIRCLED_KATAKANA_RE, 'codepoint, 0x32F9);
11641put('CIRCLED_KATAKANA_RO, 'codepoint, 0x32FA);
11642put('CIRCLED_KATAKANA_WA, 'codepoint, 0x32FB);
11643put('CIRCLED_KATAKANA_WI, 'codepoint, 0x32FC);
11644put('CIRCLED_KATAKANA_WE, 'codepoint, 0x32FD);
11645put('CIRCLED_KATAKANA_WO, 'codepoint, 0x32FE);
11646put('SQUARE_APAATO, 'codepoint, 0x3300);
11647put('SQUARE_ARUHUA, 'codepoint, 0x3301);
11648put('SQUARE_ANPEA, 'codepoint, 0x3302);
11649put('SQUARE_AARU, 'codepoint, 0x3303);
11650put('SQUARE_ININGU, 'codepoint, 0x3304);
11651put('SQUARE_INTI, 'codepoint, 0x3305);
11652put('SQUARE_UON, 'codepoint, 0x3306);
11653put('SQUARE_ESUKUUDO, 'codepoint, 0x3307);
11654put('SQUARE_EEKAA, 'codepoint, 0x3308);
11655put('SQUARE_ONSU, 'codepoint, 0x3309);
11656put('SQUARE_OOMU, 'codepoint, 0x330A);
11657put('SQUARE_KAIRI, 'codepoint, 0x330B);
11658put('SQUARE_KARATTO, 'codepoint, 0x330C);
11659put('SQUARE_KARORII, 'codepoint, 0x330D);
11660put('SQUARE_GARON, 'codepoint, 0x330E);
11661put('SQUARE_GANMA, 'codepoint, 0x330F);
11662put('SQUARE_GIGA, 'codepoint, 0x3310);
11663put('SQUARE_GINII, 'codepoint, 0x3311);
11664put('SQUARE_KYURII, 'codepoint, 0x3312);
11665put('SQUARE_GIRUDAA, 'codepoint, 0x3313);
11666put('SQUARE_KIRO, 'codepoint, 0x3314);
11667put('SQUARE_KIROGURAMU, 'codepoint, 0x3315);
11668put('SQUARE_KIROMEETORU, 'codepoint, 0x3316);
11669put('SQUARE_KIROWATTO, 'codepoint, 0x3317);
11670put('SQUARE_GURAMU, 'codepoint, 0x3318);
11671put('SQUARE_GURAMUTON, 'codepoint, 0x3319);
11672put('SQUARE_KURUZEIRO, 'codepoint, 0x331A);
11673put('SQUARE_KUROONE, 'codepoint, 0x331B);
11674put('SQUARE_KEESU, 'codepoint, 0x331C);
11675put('SQUARE_KORUNA, 'codepoint, 0x331D);
11676put('SQUARE_KOOPO, 'codepoint, 0x331E);
11677put('SQUARE_SAIKURU, 'codepoint, 0x331F);
11678put('SQUARE_SANTIIMU, 'codepoint, 0x3320);
11679put('SQUARE_SIRINGU, 'codepoint, 0x3321);
11680put('SQUARE_SENTI, 'codepoint, 0x3322);
11681put('SQUARE_SENTO, 'codepoint, 0x3323);
11682put('SQUARE_DAASU, 'codepoint, 0x3324);
11683put('SQUARE_DESI, 'codepoint, 0x3325);
11684put('SQUARE_DORU, 'codepoint, 0x3326);
11685put('SQUARE_TON, 'codepoint, 0x3327);
11686put('SQUARE_NANO, 'codepoint, 0x3328);
11687put('SQUARE_NOTTO, 'codepoint, 0x3329);
11688put('SQUARE_HAITU, 'codepoint, 0x332A);
11689put('SQUARE_PAASENTO, 'codepoint, 0x332B);
11690put('SQUARE_PAATU, 'codepoint, 0x332C);
11691put('SQUARE_BAARERU, 'codepoint, 0x332D);
11692put('SQUARE_PIASUTORU, 'codepoint, 0x332E);
11693put('SQUARE_PIKURU, 'codepoint, 0x332F);
11694put('SQUARE_PIKO, 'codepoint, 0x3330);
11695put('SQUARE_BIRU, 'codepoint, 0x3331);
11696put('SQUARE_HUARADDO, 'codepoint, 0x3332);
11697put('SQUARE_HUIITO, 'codepoint, 0x3333);
11698put('SQUARE_BUSSYERU, 'codepoint, 0x3334);
11699put('SQUARE_HURAN, 'codepoint, 0x3335);
11700put('SQUARE_HEKUTAARU, 'codepoint, 0x3336);
11701put('SQUARE_PESO, 'codepoint, 0x3337);
11702put('SQUARE_PENIHI, 'codepoint, 0x3338);
11703put('SQUARE_HERUTU, 'codepoint, 0x3339);
11704put('SQUARE_PENSU, 'codepoint, 0x333A);
11705put('SQUARE_PEEZI, 'codepoint, 0x333B);
11706put('SQUARE_BEETA, 'codepoint, 0x333C);
11707put('SQUARE_POINTO, 'codepoint, 0x333D);
11708put('SQUARE_BORUTO, 'codepoint, 0x333E);
11709put('SQUARE_HON, 'codepoint, 0x333F);
11710put('SQUARE_PONDO, 'codepoint, 0x3340);
11711put('SQUARE_HOORU, 'codepoint, 0x3341);
11712put('SQUARE_HOON, 'codepoint, 0x3342);
11713put('SQUARE_MAIKURO, 'codepoint, 0x3343);
11714put('SQUARE_MAIRU, 'codepoint, 0x3344);
11715put('SQUARE_MAHHA, 'codepoint, 0x3345);
11716put('SQUARE_MARUKU, 'codepoint, 0x3346);
11717put('SQUARE_MANSYON, 'codepoint, 0x3347);
11718put('SQUARE_MIKURON, 'codepoint, 0x3348);
11719put('SQUARE_MIRI, 'codepoint, 0x3349);
11720put('SQUARE_MIRIBAARU, 'codepoint, 0x334A);
11721put('SQUARE_MEGA, 'codepoint, 0x334B);
11722put('SQUARE_MEGATON, 'codepoint, 0x334C);
11723put('SQUARE_MEETORU, 'codepoint, 0x334D);
11724put('SQUARE_YAADO, 'codepoint, 0x334E);
11725put('SQUARE_YAARU, 'codepoint, 0x334F);
11726put('SQUARE_YUAN, 'codepoint, 0x3350);
11727put('SQUARE_RITTORU, 'codepoint, 0x3351);
11728put('SQUARE_RIRA, 'codepoint, 0x3352);
11729put('SQUARE_RUPII, 'codepoint, 0x3353);
11730put('SQUARE_RUUBURU, 'codepoint, 0x3354);
11731put('SQUARE_REMU, 'codepoint, 0x3355);
11732put('SQUARE_RENTOGEN, 'codepoint, 0x3356);
11733put('SQUARE_WATTO, 'codepoint, 0x3357);
11734put('IDEOGRAPHIC_TELEGRAPH_SYMBOL_FOR_HOUR_ZERO, 'codepoint, 0x3358);
11735put('IDEOGRAPHIC_TELEGRAPH_SYMBOL_FOR_HOUR_ONE, 'codepoint, 0x3359);
11736put('IDEOGRAPHIC_TELEGRAPH_SYMBOL_FOR_HOUR_TWO, 'codepoint, 0x335A);
11737put('IDEOGRAPHIC_TELEGRAPH_SYMBOL_FOR_HOUR_THREE, 'codepoint, 0x335B);
11738put('IDEOGRAPHIC_TELEGRAPH_SYMBOL_FOR_HOUR_FOUR, 'codepoint, 0x335C);
11739put('IDEOGRAPHIC_TELEGRAPH_SYMBOL_FOR_HOUR_FIVE, 'codepoint, 0x335D);
11740put('IDEOGRAPHIC_TELEGRAPH_SYMBOL_FOR_HOUR_SIX, 'codepoint, 0x335E);
11741put('IDEOGRAPHIC_TELEGRAPH_SYMBOL_FOR_HOUR_SEVEN, 'codepoint, 0x335F);
11742put('IDEOGRAPHIC_TELEGRAPH_SYMBOL_FOR_HOUR_EIGHT, 'codepoint, 0x3360);
11743put('IDEOGRAPHIC_TELEGRAPH_SYMBOL_FOR_HOUR_NINE, 'codepoint, 0x3361);
11744put('IDEOGRAPHIC_TELEGRAPH_SYMBOL_FOR_HOUR_TEN, 'codepoint, 0x3362);
11745put('IDEOGRAPHIC_TELEGRAPH_SYMBOL_FOR_HOUR_ELEVEN, 'codepoint, 0x3363);
11746put('IDEOGRAPHIC_TELEGRAPH_SYMBOL_FOR_HOUR_TWELVE, 'codepoint, 0x3364);
11747put('IDEOGRAPHIC_TELEGRAPH_SYMBOL_FOR_HOUR_THIRTEEN, 'codepoint, 0x3365);
11748put('IDEOGRAPHIC_TELEGRAPH_SYMBOL_FOR_HOUR_FOURTEEN, 'codepoint, 0x3366);
11749put('IDEOGRAPHIC_TELEGRAPH_SYMBOL_FOR_HOUR_FIFTEEN, 'codepoint, 0x3367);
11750put('IDEOGRAPHIC_TELEGRAPH_SYMBOL_FOR_HOUR_SIXTEEN, 'codepoint, 0x3368);
11751put('IDEOGRAPHIC_TELEGRAPH_SYMBOL_FOR_HOUR_SEVENTEEN, 'codepoint, 0x3369);
11752put('IDEOGRAPHIC_TELEGRAPH_SYMBOL_FOR_HOUR_EIGHTEEN, 'codepoint, 0x336A);
11753put('IDEOGRAPHIC_TELEGRAPH_SYMBOL_FOR_HOUR_NINETEEN, 'codepoint, 0x336B);
11754put('IDEOGRAPHIC_TELEGRAPH_SYMBOL_FOR_HOUR_TWENTY, 'codepoint, 0x336C);
11755put('IDEOGRAPHIC_TELEGRAPH_SYMBOL_FOR_HOUR_TWENTY_ONE, 'codepoint, 0x336D);
11756put('IDEOGRAPHIC_TELEGRAPH_SYMBOL_FOR_HOUR_TWENTY_TWO, 'codepoint, 0x336E);
11757put('IDEOGRAPHIC_TELEGRAPH_SYMBOL_FOR_HOUR_TWENTY_THREE, 'codepoint, 0x336F);
11758put('IDEOGRAPHIC_TELEGRAPH_SYMBOL_FOR_HOUR_TWENTY_FOUR, 'codepoint, 0x3370);
11759put('SQUARE_HPA, 'codepoint, 0x3371);
11760put('SQUARE_DA, 'codepoint, 0x3372);
11761put('SQUARE_AU, 'codepoint, 0x3373);
11762put('SQUARE_BAR, 'codepoint, 0x3374);
11763put('SQUARE_OV, 'codepoint, 0x3375);
11764put('SQUARE_PC, 'codepoint, 0x3376);
11765put('SQUARE_DM, 'codepoint, 0x3377);
11766put('SQUARE_DM_SQUARED, 'codepoint, 0x3378);
11767put('SQUARE_DM_CUBED, 'codepoint, 0x3379);
11768put('SQUARE_IU, 'codepoint, 0x337A);
11769put('SQUARE_ERA_NAME_HEISEI, 'codepoint, 0x337B);
11770put('SQUARE_ERA_NAME_SYOUWA, 'codepoint, 0x337C);
11771put('SQUARE_ERA_NAME_TAISYOU, 'codepoint, 0x337D);
11772put('SQUARE_ERA_NAME_MEIZI, 'codepoint, 0x337E);
11773put('SQUARE_CORPORATION, 'codepoint, 0x337F);
11774put('SQUARE_PA_AMPS, 'codepoint, 0x3380);
11775put('SQUARE_NA, 'codepoint, 0x3381);
11776put('SQUARE_MU_A, 'codepoint, 0x3382);
11777put('SQUARE_MA, 'codepoint, 0x3383);
11778put('SQUARE_KA, 'codepoint, 0x3384);
11779put('SQUARE_KB, 'codepoint, 0x3385);
11780put('SQUARE_MB, 'codepoint, 0x3386);
11781put('SQUARE_GB, 'codepoint, 0x3387);
11782put('SQUARE_CAL, 'codepoint, 0x3388);
11783put('SQUARE_KCAL, 'codepoint, 0x3389);
11784put('SQUARE_PF, 'codepoint, 0x338A);
11785put('SQUARE_NF, 'codepoint, 0x338B);
11786put('SQUARE_MU_F, 'codepoint, 0x338C);
11787put('SQUARE_MU_G, 'codepoint, 0x338D);
11788put('SQUARE_MG, 'codepoint, 0x338E);
11789put('SQUARE_KG, 'codepoint, 0x338F);
11790put('SQUARE_HZ, 'codepoint, 0x3390);
11791put('SQUARE_KHZ, 'codepoint, 0x3391);
11792put('SQUARE_MHZ, 'codepoint, 0x3392);
11793put('SQUARE_GHZ, 'codepoint, 0x3393);
11794put('SQUARE_THZ, 'codepoint, 0x3394);
11795put('SQUARE_MU_L, 'codepoint, 0x3395);
11796put('SQUARE_ML, 'codepoint, 0x3396);
11797put('SQUARE_DL, 'codepoint, 0x3397);
11798put('SQUARE_KL, 'codepoint, 0x3398);
11799put('SQUARE_FM, 'codepoint, 0x3399);
11800put('SQUARE_NM, 'codepoint, 0x339A);
11801put('SQUARE_MU_M, 'codepoint, 0x339B);
11802put('SQUARE_MM, 'codepoint, 0x339C);
11803put('SQUARE_CM, 'codepoint, 0x339D);
11804put('SQUARE_KM, 'codepoint, 0x339E);
11805put('SQUARE_MM_SQUARED, 'codepoint, 0x339F);
11806put('SQUARE_CM_SQUARED, 'codepoint, 0x33A0);
11807put('SQUARE_M_SQUARED, 'codepoint, 0x33A1);
11808put('SQUARE_KM_SQUARED, 'codepoint, 0x33A2);
11809put('SQUARE_MM_CUBED, 'codepoint, 0x33A3);
11810put('SQUARE_CM_CUBED, 'codepoint, 0x33A4);
11811put('SQUARE_M_CUBED, 'codepoint, 0x33A5);
11812put('SQUARE_KM_CUBED, 'codepoint, 0x33A6);
11813put('SQUARE_M_OVER_S, 'codepoint, 0x33A7);
11814put('SQUARE_M_OVER_S_SQUARED, 'codepoint, 0x33A8);
11815put('SQUARE_PA, 'codepoint, 0x33A9);
11816put('SQUARE_KPA, 'codepoint, 0x33AA);
11817put('SQUARE_MPA, 'codepoint, 0x33AB);
11818put('SQUARE_GPA, 'codepoint, 0x33AC);
11819put('SQUARE_RAD, 'codepoint, 0x33AD);
11820put('SQUARE_RAD_OVER_S, 'codepoint, 0x33AE);
11821put('SQUARE_RAD_OVER_S_SQUARED, 'codepoint, 0x33AF);
11822put('SQUARE_PS, 'codepoint, 0x33B0);
11823put('SQUARE_NS, 'codepoint, 0x33B1);
11824put('SQUARE_MU_S, 'codepoint, 0x33B2);
11825put('SQUARE_MS, 'codepoint, 0x33B3);
11826put('SQUARE_PV, 'codepoint, 0x33B4);
11827put('SQUARE_NV, 'codepoint, 0x33B5);
11828put('SQUARE_MU_V, 'codepoint, 0x33B6);
11829put('SQUARE_MV, 'codepoint, 0x33B7);
11830put('SQUARE_KV, 'codepoint, 0x33B8);
11831put('SQUARE_MV_MEGA, 'codepoint, 0x33B9);
11832put('SQUARE_PW, 'codepoint, 0x33BA);
11833put('SQUARE_NW, 'codepoint, 0x33BB);
11834put('SQUARE_MU_W, 'codepoint, 0x33BC);
11835put('SQUARE_MW, 'codepoint, 0x33BD);
11836put('SQUARE_KW, 'codepoint, 0x33BE);
11837put('SQUARE_MW_MEGA, 'codepoint, 0x33BF);
11838put('SQUARE_K_OHM, 'codepoint, 0x33C0);
11839put('SQUARE_M_OHM, 'codepoint, 0x33C1);
11840put('SQUARE_AM, 'codepoint, 0x33C2);
11841put('SQUARE_BQ, 'codepoint, 0x33C3);
11842put('SQUARE_CC, 'codepoint, 0x33C4);
11843put('SQUARE_CD, 'codepoint, 0x33C5);
11844put('SQUARE_C_OVER_KG, 'codepoint, 0x33C6);
11845put('SQUARE_CO, 'codepoint, 0x33C7);
11846put('SQUARE_DB, 'codepoint, 0x33C8);
11847put('SQUARE_GY, 'codepoint, 0x33C9);
11848put('SQUARE_HA, 'codepoint, 0x33CA);
11849put('SQUARE_HP, 'codepoint, 0x33CB);
11850put('SQUARE_IN, 'codepoint, 0x33CC);
11851put('SQUARE_KK, 'codepoint, 0x33CD);
11852put('SQUARE_KM_CAPITAL, 'codepoint, 0x33CE);
11853put('SQUARE_KT, 'codepoint, 0x33CF);
11854put('SQUARE_LM, 'codepoint, 0x33D0);
11855put('SQUARE_LN, 'codepoint, 0x33D1);
11856put('SQUARE_LOG, 'codepoint, 0x33D2);
11857put('SQUARE_LX, 'codepoint, 0x33D3);
11858put('SQUARE_MB_SMALL, 'codepoint, 0x33D4);
11859put('SQUARE_MIL, 'codepoint, 0x33D5);
11860put('SQUARE_MOL, 'codepoint, 0x33D6);
11861put('SQUARE_PH, 'codepoint, 0x33D7);
11862put('SQUARE_PM, 'codepoint, 0x33D8);
11863put('SQUARE_PPM, 'codepoint, 0x33D9);
11864put('SQUARE_PR, 'codepoint, 0x33DA);
11865put('SQUARE_SR, 'codepoint, 0x33DB);
11866put('SQUARE_SV, 'codepoint, 0x33DC);
11867put('SQUARE_WB, 'codepoint, 0x33DD);
11868put('SQUARE_V_OVER_M, 'codepoint, 0x33DE);
11869put('SQUARE_A_OVER_M, 'codepoint, 0x33DF);
11870put('IDEOGRAPHIC_TELEGRAPH_SYMBOL_FOR_DAY_ONE, 'codepoint, 0x33E0);
11871put('IDEOGRAPHIC_TELEGRAPH_SYMBOL_FOR_DAY_TWO, 'codepoint, 0x33E1);
11872put('IDEOGRAPHIC_TELEGRAPH_SYMBOL_FOR_DAY_THREE, 'codepoint, 0x33E2);
11873put('IDEOGRAPHIC_TELEGRAPH_SYMBOL_FOR_DAY_FOUR, 'codepoint, 0x33E3);
11874put('IDEOGRAPHIC_TELEGRAPH_SYMBOL_FOR_DAY_FIVE, 'codepoint, 0x33E4);
11875put('IDEOGRAPHIC_TELEGRAPH_SYMBOL_FOR_DAY_SIX, 'codepoint, 0x33E5);
11876put('IDEOGRAPHIC_TELEGRAPH_SYMBOL_FOR_DAY_SEVEN, 'codepoint, 0x33E6);
11877put('IDEOGRAPHIC_TELEGRAPH_SYMBOL_FOR_DAY_EIGHT, 'codepoint, 0x33E7);
11878put('IDEOGRAPHIC_TELEGRAPH_SYMBOL_FOR_DAY_NINE, 'codepoint, 0x33E8);
11879put('IDEOGRAPHIC_TELEGRAPH_SYMBOL_FOR_DAY_TEN, 'codepoint, 0x33E9);
11880put('IDEOGRAPHIC_TELEGRAPH_SYMBOL_FOR_DAY_ELEVEN, 'codepoint, 0x33EA);
11881put('IDEOGRAPHIC_TELEGRAPH_SYMBOL_FOR_DAY_TWELVE, 'codepoint, 0x33EB);
11882put('IDEOGRAPHIC_TELEGRAPH_SYMBOL_FOR_DAY_THIRTEEN, 'codepoint, 0x33EC);
11883put('IDEOGRAPHIC_TELEGRAPH_SYMBOL_FOR_DAY_FOURTEEN, 'codepoint, 0x33ED);
11884put('IDEOGRAPHIC_TELEGRAPH_SYMBOL_FOR_DAY_FIFTEEN, 'codepoint, 0x33EE);
11885put('IDEOGRAPHIC_TELEGRAPH_SYMBOL_FOR_DAY_SIXTEEN, 'codepoint, 0x33EF);
11886put('IDEOGRAPHIC_TELEGRAPH_SYMBOL_FOR_DAY_SEVENTEEN, 'codepoint, 0x33F0);
11887put('IDEOGRAPHIC_TELEGRAPH_SYMBOL_FOR_DAY_EIGHTEEN, 'codepoint, 0x33F1);
11888put('IDEOGRAPHIC_TELEGRAPH_SYMBOL_FOR_DAY_NINETEEN, 'codepoint, 0x33F2);
11889put('IDEOGRAPHIC_TELEGRAPH_SYMBOL_FOR_DAY_TWENTY, 'codepoint, 0x33F3);
11890put('IDEOGRAPHIC_TELEGRAPH_SYMBOL_FOR_DAY_TWENTY_ONE, 'codepoint, 0x33F4);
11891put('IDEOGRAPHIC_TELEGRAPH_SYMBOL_FOR_DAY_TWENTY_TWO, 'codepoint, 0x33F5);
11892put('IDEOGRAPHIC_TELEGRAPH_SYMBOL_FOR_DAY_TWENTY_THREE, 'codepoint, 0x33F6);
11893put('IDEOGRAPHIC_TELEGRAPH_SYMBOL_FOR_DAY_TWENTY_FOUR, 'codepoint, 0x33F7);
11894put('IDEOGRAPHIC_TELEGRAPH_SYMBOL_FOR_DAY_TWENTY_FIVE, 'codepoint, 0x33F8);
11895put('IDEOGRAPHIC_TELEGRAPH_SYMBOL_FOR_DAY_TWENTY_SIX, 'codepoint, 0x33F9);
11896put('IDEOGRAPHIC_TELEGRAPH_SYMBOL_FOR_DAY_TWENTY_SEVEN, 'codepoint, 0x33FA);
11897put('IDEOGRAPHIC_TELEGRAPH_SYMBOL_FOR_DAY_TWENTY_EIGHT, 'codepoint, 0x33FB);
11898put('IDEOGRAPHIC_TELEGRAPH_SYMBOL_FOR_DAY_TWENTY_NINE, 'codepoint, 0x33FC);
11899put('IDEOGRAPHIC_TELEGRAPH_SYMBOL_FOR_DAY_THIRTY, 'codepoint, 0x33FD);
11900put('IDEOGRAPHIC_TELEGRAPH_SYMBOL_FOR_DAY_THIRTY_ONE, 'codepoint, 0x33FE);
11901put('SQUARE_GAL, 'codepoint, 0x33FF);
11902put('CJK_Ideograph_Extension_A__First, 'codepoint, 0x3400);
11903put('CJK_Ideograph_Extension_A__Last, 'codepoint, 0x4DB5);
11904put('HEXAGRAM_FOR_THE_CREATIVE_HEAVEN, 'codepoint, 0x4DC0);
11905put('HEXAGRAM_FOR_THE_RECEPTIVE_EARTH, 'codepoint, 0x4DC1);
11906put('HEXAGRAM_FOR_DIFFICULTY_AT_THE_BEGINNING, 'codepoint, 0x4DC2);
11907put('HEXAGRAM_FOR_YOUTHFUL_FOLLY, 'codepoint, 0x4DC3);
11908put('HEXAGRAM_FOR_WAITING, 'codepoint, 0x4DC4);
11909put('HEXAGRAM_FOR_CONFLICT, 'codepoint, 0x4DC5);
11910put('HEXAGRAM_FOR_THE_ARMY, 'codepoint, 0x4DC6);
11911put('HEXAGRAM_FOR_HOLDING_TOGETHER, 'codepoint, 0x4DC7);
11912put('HEXAGRAM_FOR_SMALL_TAMING, 'codepoint, 0x4DC8);
11913put('HEXAGRAM_FOR_TREADING, 'codepoint, 0x4DC9);
11914put('HEXAGRAM_FOR_PEACE, 'codepoint, 0x4DCA);
11915put('HEXAGRAM_FOR_STANDSTILL, 'codepoint, 0x4DCB);
11916put('HEXAGRAM_FOR_FELLOWSHIP, 'codepoint, 0x4DCC);
11917put('HEXAGRAM_FOR_GREAT_POSSESSION, 'codepoint, 0x4DCD);
11918put('HEXAGRAM_FOR_MODESTY, 'codepoint, 0x4DCE);
11919put('HEXAGRAM_FOR_ENTHUSIASM, 'codepoint, 0x4DCF);
11920put('HEXAGRAM_FOR_FOLLOWING, 'codepoint, 0x4DD0);
11921put('HEXAGRAM_FOR_WORK_ON_THE_DECAYED, 'codepoint, 0x4DD1);
11922put('HEXAGRAM_FOR_APPROACH, 'codepoint, 0x4DD2);
11923put('HEXAGRAM_FOR_CONTEMPLATION, 'codepoint, 0x4DD3);
11924put('HEXAGRAM_FOR_BITING_THROUGH, 'codepoint, 0x4DD4);
11925put('HEXAGRAM_FOR_GRACE, 'codepoint, 0x4DD5);
11926put('HEXAGRAM_FOR_SPLITTING_APART, 'codepoint, 0x4DD6);
11927put('HEXAGRAM_FOR_RETURN, 'codepoint, 0x4DD7);
11928put('HEXAGRAM_FOR_INNOCENCE, 'codepoint, 0x4DD8);
11929put('HEXAGRAM_FOR_GREAT_TAMING, 'codepoint, 0x4DD9);
11930put('HEXAGRAM_FOR_MOUTH_CORNERS, 'codepoint, 0x4DDA);
11931put('HEXAGRAM_FOR_GREAT_PREPONDERANCE, 'codepoint, 0x4DDB);
11932put('HEXAGRAM_FOR_THE_ABYSMAL_WATER, 'codepoint, 0x4DDC);
11933put('HEXAGRAM_FOR_THE_CLINGING_FIRE, 'codepoint, 0x4DDD);
11934put('HEXAGRAM_FOR_INFLUENCE, 'codepoint, 0x4DDE);
11935put('HEXAGRAM_FOR_DURATION, 'codepoint, 0x4DDF);
11936put('HEXAGRAM_FOR_RETREAT, 'codepoint, 0x4DE0);
11937put('HEXAGRAM_FOR_GREAT_POWER, 'codepoint, 0x4DE1);
11938put('HEXAGRAM_FOR_PROGRESS, 'codepoint, 0x4DE2);
11939put('HEXAGRAM_FOR_DARKENING_OF_THE_LIGHT, 'codepoint, 0x4DE3);
11940put('HEXAGRAM_FOR_THE_FAMILY, 'codepoint, 0x4DE4);
11941put('HEXAGRAM_FOR_OPPOSITION, 'codepoint, 0x4DE5);
11942put('HEXAGRAM_FOR_OBSTRUCTION, 'codepoint, 0x4DE6);
11943put('HEXAGRAM_FOR_DELIVERANCE, 'codepoint, 0x4DE7);
11944put('HEXAGRAM_FOR_DECREASE, 'codepoint, 0x4DE8);
11945put('HEXAGRAM_FOR_INCREASE, 'codepoint, 0x4DE9);
11946put('HEXAGRAM_FOR_BREAKTHROUGH, 'codepoint, 0x4DEA);
11947put('HEXAGRAM_FOR_COMING_TO_MEET, 'codepoint, 0x4DEB);
11948put('HEXAGRAM_FOR_GATHERING_TOGETHER, 'codepoint, 0x4DEC);
11949put('HEXAGRAM_FOR_PUSHING_UPWARD, 'codepoint, 0x4DED);
11950put('HEXAGRAM_FOR_OPPRESSION, 'codepoint, 0x4DEE);
11951put('HEXAGRAM_FOR_THE_WELL, 'codepoint, 0x4DEF);
11952put('HEXAGRAM_FOR_REVOLUTION, 'codepoint, 0x4DF0);
11953put('HEXAGRAM_FOR_THE_CAULDRON, 'codepoint, 0x4DF1);
11954put('HEXAGRAM_FOR_THE_AROUSING_THUNDER, 'codepoint, 0x4DF2);
11955put('HEXAGRAM_FOR_THE_KEEPING_STILL_MOUNTAIN, 'codepoint, 0x4DF3);
11956put('HEXAGRAM_FOR_DEVELOPMENT, 'codepoint, 0x4DF4);
11957put('HEXAGRAM_FOR_THE_MARRYING_MAIDEN, 'codepoint, 0x4DF5);
11958put('HEXAGRAM_FOR_ABUNDANCE, 'codepoint, 0x4DF6);
11959put('HEXAGRAM_FOR_THE_WANDERER, 'codepoint, 0x4DF7);
11960put('HEXAGRAM_FOR_THE_GENTLE_WIND, 'codepoint, 0x4DF8);
11961put('HEXAGRAM_FOR_THE_JOYOUS_LAKE, 'codepoint, 0x4DF9);
11962put('HEXAGRAM_FOR_DISPERSION, 'codepoint, 0x4DFA);
11963put('HEXAGRAM_FOR_LIMITATION, 'codepoint, 0x4DFB);
11964put('HEXAGRAM_FOR_INNER_TRUTH, 'codepoint, 0x4DFC);
11965put('HEXAGRAM_FOR_SMALL_PREPONDERANCE, 'codepoint, 0x4DFD);
11966put('HEXAGRAM_FOR_AFTER_COMPLETION, 'codepoint, 0x4DFE);
11967put('HEXAGRAM_FOR_BEFORE_COMPLETION, 'codepoint, 0x4DFF);
11968put('CJK_Ideograph__First, 'codepoint, 0x4E00);
11969put('CJK_Ideograph__Last, 'codepoint, 0x9FCC);
11970put('YI_SYLLABLE_IT, 'codepoint, 0xA000);
11971put('YI_SYLLABLE_IX, 'codepoint, 0xA001);
11972put('YI_SYLLABLE_I, 'codepoint, 0xA002);
11973put('YI_SYLLABLE_IP, 'codepoint, 0xA003);
11974put('YI_SYLLABLE_IET, 'codepoint, 0xA004);
11975put('YI_SYLLABLE_IEX, 'codepoint, 0xA005);
11976put('YI_SYLLABLE_IE, 'codepoint, 0xA006);
11977put('YI_SYLLABLE_IEP, 'codepoint, 0xA007);
11978put('YI_SYLLABLE_AT, 'codepoint, 0xA008);
11979put('YI_SYLLABLE_AX, 'codepoint, 0xA009);
11980put('YI_SYLLABLE_A, 'codepoint, 0xA00A);
11981put('YI_SYLLABLE_AP, 'codepoint, 0xA00B);
11982put('YI_SYLLABLE_UOX, 'codepoint, 0xA00C);
11983put('YI_SYLLABLE_UO, 'codepoint, 0xA00D);
11984put('YI_SYLLABLE_UOP, 'codepoint, 0xA00E);
11985put('YI_SYLLABLE_OT, 'codepoint, 0xA00F);
11986put('YI_SYLLABLE_OX, 'codepoint, 0xA010);
11987put('YI_SYLLABLE_O, 'codepoint, 0xA011);
11988put('YI_SYLLABLE_OP, 'codepoint, 0xA012);
11989put('YI_SYLLABLE_EX, 'codepoint, 0xA013);
11990put('YI_SYLLABLE_E, 'codepoint, 0xA014);
11991put('YI_SYLLABLE_WU, 'codepoint, 0xA015);
11992put('YI_SYLLABLE_BIT, 'codepoint, 0xA016);
11993put('YI_SYLLABLE_BIX, 'codepoint, 0xA017);
11994put('YI_SYLLABLE_BI, 'codepoint, 0xA018);
11995put('YI_SYLLABLE_BIP, 'codepoint, 0xA019);
11996put('YI_SYLLABLE_BIET, 'codepoint, 0xA01A);
11997put('YI_SYLLABLE_BIEX, 'codepoint, 0xA01B);
11998put('YI_SYLLABLE_BIE, 'codepoint, 0xA01C);
11999put('YI_SYLLABLE_BIEP, 'codepoint, 0xA01D);
12000put('YI_SYLLABLE_BAT, 'codepoint, 0xA01E);
12001put('YI_SYLLABLE_BAX, 'codepoint, 0xA01F);
12002put('YI_SYLLABLE_BA, 'codepoint, 0xA020);
12003put('YI_SYLLABLE_BAP, 'codepoint, 0xA021);
12004put('YI_SYLLABLE_BUOX, 'codepoint, 0xA022);
12005put('YI_SYLLABLE_BUO, 'codepoint, 0xA023);
12006put('YI_SYLLABLE_BUOP, 'codepoint, 0xA024);
12007put('YI_SYLLABLE_BOT, 'codepoint, 0xA025);
12008put('YI_SYLLABLE_BOX, 'codepoint, 0xA026);
12009put('YI_SYLLABLE_BO, 'codepoint, 0xA027);
12010put('YI_SYLLABLE_BOP, 'codepoint, 0xA028);
12011put('YI_SYLLABLE_BEX, 'codepoint, 0xA029);
12012put('YI_SYLLABLE_BE, 'codepoint, 0xA02A);
12013put('YI_SYLLABLE_BEP, 'codepoint, 0xA02B);
12014put('YI_SYLLABLE_BUT, 'codepoint, 0xA02C);
12015put('YI_SYLLABLE_BUX, 'codepoint, 0xA02D);
12016put('YI_SYLLABLE_BU, 'codepoint, 0xA02E);
12017put('YI_SYLLABLE_BUP, 'codepoint, 0xA02F);
12018put('YI_SYLLABLE_BURX, 'codepoint, 0xA030);
12019put('YI_SYLLABLE_BUR, 'codepoint, 0xA031);
12020put('YI_SYLLABLE_BYT, 'codepoint, 0xA032);
12021put('YI_SYLLABLE_BYX, 'codepoint, 0xA033);
12022put('YI_SYLLABLE_BY, 'codepoint, 0xA034);
12023put('YI_SYLLABLE_BYP, 'codepoint, 0xA035);
12024put('YI_SYLLABLE_BYRX, 'codepoint, 0xA036);
12025put('YI_SYLLABLE_BYR, 'codepoint, 0xA037);
12026put('YI_SYLLABLE_PIT, 'codepoint, 0xA038);
12027put('YI_SYLLABLE_PIX, 'codepoint, 0xA039);
12028put('YI_SYLLABLE_PI, 'codepoint, 0xA03A);
12029put('YI_SYLLABLE_PIP, 'codepoint, 0xA03B);
12030put('YI_SYLLABLE_PIEX, 'codepoint, 0xA03C);
12031put('YI_SYLLABLE_PIE, 'codepoint, 0xA03D);
12032put('YI_SYLLABLE_PIEP, 'codepoint, 0xA03E);
12033put('YI_SYLLABLE_PAT, 'codepoint, 0xA03F);
12034put('YI_SYLLABLE_PAX, 'codepoint, 0xA040);
12035put('YI_SYLLABLE_PA, 'codepoint, 0xA041);
12036put('YI_SYLLABLE_PAP, 'codepoint, 0xA042);
12037put('YI_SYLLABLE_PUOX, 'codepoint, 0xA043);
12038put('YI_SYLLABLE_PUO, 'codepoint, 0xA044);
12039put('YI_SYLLABLE_PUOP, 'codepoint, 0xA045);
12040put('YI_SYLLABLE_POT, 'codepoint, 0xA046);
12041put('YI_SYLLABLE_POX, 'codepoint, 0xA047);
12042put('YI_SYLLABLE_PO, 'codepoint, 0xA048);
12043put('YI_SYLLABLE_POP, 'codepoint, 0xA049);
12044put('YI_SYLLABLE_PUT, 'codepoint, 0xA04A);
12045put('YI_SYLLABLE_PUX, 'codepoint, 0xA04B);
12046put('YI_SYLLABLE_PU, 'codepoint, 0xA04C);
12047put('YI_SYLLABLE_PUP, 'codepoint, 0xA04D);
12048put('YI_SYLLABLE_PURX, 'codepoint, 0xA04E);
12049put('YI_SYLLABLE_PUR, 'codepoint, 0xA04F);
12050put('YI_SYLLABLE_PYT, 'codepoint, 0xA050);
12051put('YI_SYLLABLE_PYX, 'codepoint, 0xA051);
12052put('YI_SYLLABLE_PY, 'codepoint, 0xA052);
12053put('YI_SYLLABLE_PYP, 'codepoint, 0xA053);
12054put('YI_SYLLABLE_PYRX, 'codepoint, 0xA054);
12055put('YI_SYLLABLE_PYR, 'codepoint, 0xA055);
12056put('YI_SYLLABLE_BBIT, 'codepoint, 0xA056);
12057put('YI_SYLLABLE_BBIX, 'codepoint, 0xA057);
12058put('YI_SYLLABLE_BBI, 'codepoint, 0xA058);
12059put('YI_SYLLABLE_BBIP, 'codepoint, 0xA059);
12060put('YI_SYLLABLE_BBIET, 'codepoint, 0xA05A);
12061put('YI_SYLLABLE_BBIEX, 'codepoint, 0xA05B);
12062put('YI_SYLLABLE_BBIE, 'codepoint, 0xA05C);
12063put('YI_SYLLABLE_BBIEP, 'codepoint, 0xA05D);
12064put('YI_SYLLABLE_BBAT, 'codepoint, 0xA05E);
12065put('YI_SYLLABLE_BBAX, 'codepoint, 0xA05F);
12066put('YI_SYLLABLE_BBA, 'codepoint, 0xA060);
12067put('YI_SYLLABLE_BBAP, 'codepoint, 0xA061);
12068put('YI_SYLLABLE_BBUOX, 'codepoint, 0xA062);
12069put('YI_SYLLABLE_BBUO, 'codepoint, 0xA063);
12070put('YI_SYLLABLE_BBUOP, 'codepoint, 0xA064);
12071put('YI_SYLLABLE_BBOT, 'codepoint, 0xA065);
12072put('YI_SYLLABLE_BBOX, 'codepoint, 0xA066);
12073put('YI_SYLLABLE_BBO, 'codepoint, 0xA067);
12074put('YI_SYLLABLE_BBOP, 'codepoint, 0xA068);
12075put('YI_SYLLABLE_BBEX, 'codepoint, 0xA069);
12076put('YI_SYLLABLE_BBE, 'codepoint, 0xA06A);
12077put('YI_SYLLABLE_BBEP, 'codepoint, 0xA06B);
12078put('YI_SYLLABLE_BBUT, 'codepoint, 0xA06C);
12079put('YI_SYLLABLE_BBUX, 'codepoint, 0xA06D);
12080put('YI_SYLLABLE_BBU, 'codepoint, 0xA06E);
12081put('YI_SYLLABLE_BBUP, 'codepoint, 0xA06F);
12082put('YI_SYLLABLE_BBURX, 'codepoint, 0xA070);
12083put('YI_SYLLABLE_BBUR, 'codepoint, 0xA071);
12084put('YI_SYLLABLE_BBYT, 'codepoint, 0xA072);
12085put('YI_SYLLABLE_BBYX, 'codepoint, 0xA073);
12086put('YI_SYLLABLE_BBY, 'codepoint, 0xA074);
12087put('YI_SYLLABLE_BBYP, 'codepoint, 0xA075);
12088put('YI_SYLLABLE_NBIT, 'codepoint, 0xA076);
12089put('YI_SYLLABLE_NBIX, 'codepoint, 0xA077);
12090put('YI_SYLLABLE_NBI, 'codepoint, 0xA078);
12091put('YI_SYLLABLE_NBIP, 'codepoint, 0xA079);
12092put('YI_SYLLABLE_NBIEX, 'codepoint, 0xA07A);
12093put('YI_SYLLABLE_NBIE, 'codepoint, 0xA07B);
12094put('YI_SYLLABLE_NBIEP, 'codepoint, 0xA07C);
12095put('YI_SYLLABLE_NBAT, 'codepoint, 0xA07D);
12096put('YI_SYLLABLE_NBAX, 'codepoint, 0xA07E);
12097put('YI_SYLLABLE_NBA, 'codepoint, 0xA07F);
12098put('YI_SYLLABLE_NBAP, 'codepoint, 0xA080);
12099put('YI_SYLLABLE_NBOT, 'codepoint, 0xA081);
12100put('YI_SYLLABLE_NBOX, 'codepoint, 0xA082);
12101put('YI_SYLLABLE_NBO, 'codepoint, 0xA083);
12102put('YI_SYLLABLE_NBOP, 'codepoint, 0xA084);
12103put('YI_SYLLABLE_NBUT, 'codepoint, 0xA085);
12104put('YI_SYLLABLE_NBUX, 'codepoint, 0xA086);
12105put('YI_SYLLABLE_NBU, 'codepoint, 0xA087);
12106put('YI_SYLLABLE_NBUP, 'codepoint, 0xA088);
12107put('YI_SYLLABLE_NBURX, 'codepoint, 0xA089);
12108put('YI_SYLLABLE_NBUR, 'codepoint, 0xA08A);
12109put('YI_SYLLABLE_NBYT, 'codepoint, 0xA08B);
12110put('YI_SYLLABLE_NBYX, 'codepoint, 0xA08C);
12111put('YI_SYLLABLE_NBY, 'codepoint, 0xA08D);
12112put('YI_SYLLABLE_NBYP, 'codepoint, 0xA08E);
12113put('YI_SYLLABLE_NBYRX, 'codepoint, 0xA08F);
12114put('YI_SYLLABLE_NBYR, 'codepoint, 0xA090);
12115put('YI_SYLLABLE_HMIT, 'codepoint, 0xA091);
12116put('YI_SYLLABLE_HMIX, 'codepoint, 0xA092);
12117put('YI_SYLLABLE_HMI, 'codepoint, 0xA093);
12118put('YI_SYLLABLE_HMIP, 'codepoint, 0xA094);
12119put('YI_SYLLABLE_HMIEX, 'codepoint, 0xA095);
12120put('YI_SYLLABLE_HMIE, 'codepoint, 0xA096);
12121put('YI_SYLLABLE_HMIEP, 'codepoint, 0xA097);
12122put('YI_SYLLABLE_HMAT, 'codepoint, 0xA098);
12123put('YI_SYLLABLE_HMAX, 'codepoint, 0xA099);
12124put('YI_SYLLABLE_HMA, 'codepoint, 0xA09A);
12125put('YI_SYLLABLE_HMAP, 'codepoint, 0xA09B);
12126put('YI_SYLLABLE_HMUOX, 'codepoint, 0xA09C);
12127put('YI_SYLLABLE_HMUO, 'codepoint, 0xA09D);
12128put('YI_SYLLABLE_HMUOP, 'codepoint, 0xA09E);
12129put('YI_SYLLABLE_HMOT, 'codepoint, 0xA09F);
12130put('YI_SYLLABLE_HMOX, 'codepoint, 0xA0A0);
12131put('YI_SYLLABLE_HMO, 'codepoint, 0xA0A1);
12132put('YI_SYLLABLE_HMOP, 'codepoint, 0xA0A2);
12133put('YI_SYLLABLE_HMUT, 'codepoint, 0xA0A3);
12134put('YI_SYLLABLE_HMUX, 'codepoint, 0xA0A4);
12135put('YI_SYLLABLE_HMU, 'codepoint, 0xA0A5);
12136put('YI_SYLLABLE_HMUP, 'codepoint, 0xA0A6);
12137put('YI_SYLLABLE_HMURX, 'codepoint, 0xA0A7);
12138put('YI_SYLLABLE_HMUR, 'codepoint, 0xA0A8);
12139put('YI_SYLLABLE_HMYX, 'codepoint, 0xA0A9);
12140put('YI_SYLLABLE_HMY, 'codepoint, 0xA0AA);
12141put('YI_SYLLABLE_HMYP, 'codepoint, 0xA0AB);
12142put('YI_SYLLABLE_HMYRX, 'codepoint, 0xA0AC);
12143put('YI_SYLLABLE_HMYR, 'codepoint, 0xA0AD);
12144put('YI_SYLLABLE_MIT, 'codepoint, 0xA0AE);
12145put('YI_SYLLABLE_MIX, 'codepoint, 0xA0AF);
12146put('YI_SYLLABLE_MI, 'codepoint, 0xA0B0);
12147put('YI_SYLLABLE_MIP, 'codepoint, 0xA0B1);
12148put('YI_SYLLABLE_MIEX, 'codepoint, 0xA0B2);
12149put('YI_SYLLABLE_MIE, 'codepoint, 0xA0B3);
12150put('YI_SYLLABLE_MIEP, 'codepoint, 0xA0B4);
12151put('YI_SYLLABLE_MAT, 'codepoint, 0xA0B5);
12152put('YI_SYLLABLE_MAX, 'codepoint, 0xA0B6);
12153put('YI_SYLLABLE_MA, 'codepoint, 0xA0B7);
12154put('YI_SYLLABLE_MAP, 'codepoint, 0xA0B8);
12155put('YI_SYLLABLE_MUOT, 'codepoint, 0xA0B9);
12156put('YI_SYLLABLE_MUOX, 'codepoint, 0xA0BA);
12157put('YI_SYLLABLE_MUO, 'codepoint, 0xA0BB);
12158put('YI_SYLLABLE_MUOP, 'codepoint, 0xA0BC);
12159put('YI_SYLLABLE_MOT, 'codepoint, 0xA0BD);
12160put('YI_SYLLABLE_MOX, 'codepoint, 0xA0BE);
12161put('YI_SYLLABLE_MO, 'codepoint, 0xA0BF);
12162put('YI_SYLLABLE_MOP, 'codepoint, 0xA0C0);
12163put('YI_SYLLABLE_MEX, 'codepoint, 0xA0C1);
12164put('YI_SYLLABLE_ME, 'codepoint, 0xA0C2);
12165put('YI_SYLLABLE_MUT, 'codepoint, 0xA0C3);
12166put('YI_SYLLABLE_MUX, 'codepoint, 0xA0C4);
12167put('YI_SYLLABLE_MU, 'codepoint, 0xA0C5);
12168put('YI_SYLLABLE_MUP, 'codepoint, 0xA0C6);
12169put('YI_SYLLABLE_MURX, 'codepoint, 0xA0C7);
12170put('YI_SYLLABLE_MUR, 'codepoint, 0xA0C8);
12171put('YI_SYLLABLE_MYT, 'codepoint, 0xA0C9);
12172put('YI_SYLLABLE_MYX, 'codepoint, 0xA0CA);
12173put('YI_SYLLABLE_MY, 'codepoint, 0xA0CB);
12174put('YI_SYLLABLE_MYP, 'codepoint, 0xA0CC);
12175put('YI_SYLLABLE_FIT, 'codepoint, 0xA0CD);
12176put('YI_SYLLABLE_FIX, 'codepoint, 0xA0CE);
12177put('YI_SYLLABLE_FI, 'codepoint, 0xA0CF);
12178put('YI_SYLLABLE_FIP, 'codepoint, 0xA0D0);
12179put('YI_SYLLABLE_FAT, 'codepoint, 0xA0D1);
12180put('YI_SYLLABLE_FAX, 'codepoint, 0xA0D2);
12181put('YI_SYLLABLE_FA, 'codepoint, 0xA0D3);
12182put('YI_SYLLABLE_FAP, 'codepoint, 0xA0D4);
12183put('YI_SYLLABLE_FOX, 'codepoint, 0xA0D5);
12184put('YI_SYLLABLE_FO, 'codepoint, 0xA0D6);
12185put('YI_SYLLABLE_FOP, 'codepoint, 0xA0D7);
12186put('YI_SYLLABLE_FUT, 'codepoint, 0xA0D8);
12187put('YI_SYLLABLE_FUX, 'codepoint, 0xA0D9);
12188put('YI_SYLLABLE_FU, 'codepoint, 0xA0DA);
12189put('YI_SYLLABLE_FUP, 'codepoint, 0xA0DB);
12190put('YI_SYLLABLE_FURX, 'codepoint, 0xA0DC);
12191put('YI_SYLLABLE_FUR, 'codepoint, 0xA0DD);
12192put('YI_SYLLABLE_FYT, 'codepoint, 0xA0DE);
12193put('YI_SYLLABLE_FYX, 'codepoint, 0xA0DF);
12194put('YI_SYLLABLE_FY, 'codepoint, 0xA0E0);
12195put('YI_SYLLABLE_FYP, 'codepoint, 0xA0E1);
12196put('YI_SYLLABLE_VIT, 'codepoint, 0xA0E2);
12197put('YI_SYLLABLE_VIX, 'codepoint, 0xA0E3);
12198put('YI_SYLLABLE_VI, 'codepoint, 0xA0E4);
12199put('YI_SYLLABLE_VIP, 'codepoint, 0xA0E5);
12200put('YI_SYLLABLE_VIET, 'codepoint, 0xA0E6);
12201put('YI_SYLLABLE_VIEX, 'codepoint, 0xA0E7);
12202put('YI_SYLLABLE_VIE, 'codepoint, 0xA0E8);
12203put('YI_SYLLABLE_VIEP, 'codepoint, 0xA0E9);
12204put('YI_SYLLABLE_VAT, 'codepoint, 0xA0EA);
12205put('YI_SYLLABLE_VAX, 'codepoint, 0xA0EB);
12206put('YI_SYLLABLE_VA, 'codepoint, 0xA0EC);
12207put('YI_SYLLABLE_VAP, 'codepoint, 0xA0ED);
12208put('YI_SYLLABLE_VOT, 'codepoint, 0xA0EE);
12209put('YI_SYLLABLE_VOX, 'codepoint, 0xA0EF);
12210put('YI_SYLLABLE_VO, 'codepoint, 0xA0F0);
12211put('YI_SYLLABLE_VOP, 'codepoint, 0xA0F1);
12212put('YI_SYLLABLE_VEX, 'codepoint, 0xA0F2);
12213put('YI_SYLLABLE_VEP, 'codepoint, 0xA0F3);
12214put('YI_SYLLABLE_VUT, 'codepoint, 0xA0F4);
12215put('YI_SYLLABLE_VUX, 'codepoint, 0xA0F5);
12216put('YI_SYLLABLE_VU, 'codepoint, 0xA0F6);
12217put('YI_SYLLABLE_VUP, 'codepoint, 0xA0F7);
12218put('YI_SYLLABLE_VURX, 'codepoint, 0xA0F8);
12219put('YI_SYLLABLE_VUR, 'codepoint, 0xA0F9);
12220put('YI_SYLLABLE_VYT, 'codepoint, 0xA0FA);
12221put('YI_SYLLABLE_VYX, 'codepoint, 0xA0FB);
12222put('YI_SYLLABLE_VY, 'codepoint, 0xA0FC);
12223put('YI_SYLLABLE_VYP, 'codepoint, 0xA0FD);
12224put('YI_SYLLABLE_VYRX, 'codepoint, 0xA0FE);
12225put('YI_SYLLABLE_VYR, 'codepoint, 0xA0FF);
12226put('YI_SYLLABLE_DIT, 'codepoint, 0xA100);
12227put('YI_SYLLABLE_DIX, 'codepoint, 0xA101);
12228put('YI_SYLLABLE_DI, 'codepoint, 0xA102);
12229put('YI_SYLLABLE_DIP, 'codepoint, 0xA103);
12230put('YI_SYLLABLE_DIEX, 'codepoint, 0xA104);
12231put('YI_SYLLABLE_DIE, 'codepoint, 0xA105);
12232put('YI_SYLLABLE_DIEP, 'codepoint, 0xA106);
12233put('YI_SYLLABLE_DAT, 'codepoint, 0xA107);
12234put('YI_SYLLABLE_DAX, 'codepoint, 0xA108);
12235put('YI_SYLLABLE_DA, 'codepoint, 0xA109);
12236put('YI_SYLLABLE_DAP, 'codepoint, 0xA10A);
12237put('YI_SYLLABLE_DUOX, 'codepoint, 0xA10B);
12238put('YI_SYLLABLE_DUO, 'codepoint, 0xA10C);
12239put('YI_SYLLABLE_DOT, 'codepoint, 0xA10D);
12240put('YI_SYLLABLE_DOX, 'codepoint, 0xA10E);
12241put('YI_SYLLABLE_DO, 'codepoint, 0xA10F);
12242put('YI_SYLLABLE_DOP, 'codepoint, 0xA110);
12243put('YI_SYLLABLE_DEX, 'codepoint, 0xA111);
12244put('YI_SYLLABLE_DE, 'codepoint, 0xA112);
12245put('YI_SYLLABLE_DEP, 'codepoint, 0xA113);
12246put('YI_SYLLABLE_DUT, 'codepoint, 0xA114);
12247put('YI_SYLLABLE_DUX, 'codepoint, 0xA115);
12248put('YI_SYLLABLE_DU, 'codepoint, 0xA116);
12249put('YI_SYLLABLE_DUP, 'codepoint, 0xA117);
12250put('YI_SYLLABLE_DURX, 'codepoint, 0xA118);
12251put('YI_SYLLABLE_DUR, 'codepoint, 0xA119);
12252put('YI_SYLLABLE_TIT, 'codepoint, 0xA11A);
12253put('YI_SYLLABLE_TIX, 'codepoint, 0xA11B);
12254put('YI_SYLLABLE_TI, 'codepoint, 0xA11C);
12255put('YI_SYLLABLE_TIP, 'codepoint, 0xA11D);
12256put('YI_SYLLABLE_TIEX, 'codepoint, 0xA11E);
12257put('YI_SYLLABLE_TIE, 'codepoint, 0xA11F);
12258put('YI_SYLLABLE_TIEP, 'codepoint, 0xA120);
12259put('YI_SYLLABLE_TAT, 'codepoint, 0xA121);
12260put('YI_SYLLABLE_TAX, 'codepoint, 0xA122);
12261put('YI_SYLLABLE_TA, 'codepoint, 0xA123);
12262put('YI_SYLLABLE_TAP, 'codepoint, 0xA124);
12263put('YI_SYLLABLE_TUOT, 'codepoint, 0xA125);
12264put('YI_SYLLABLE_TUOX, 'codepoint, 0xA126);
12265put('YI_SYLLABLE_TUO, 'codepoint, 0xA127);
12266put('YI_SYLLABLE_TUOP, 'codepoint, 0xA128);
12267put('YI_SYLLABLE_TOT, 'codepoint, 0xA129);
12268put('YI_SYLLABLE_TOX, 'codepoint, 0xA12A);
12269put('YI_SYLLABLE_TO, 'codepoint, 0xA12B);
12270put('YI_SYLLABLE_TOP, 'codepoint, 0xA12C);
12271put('YI_SYLLABLE_TEX, 'codepoint, 0xA12D);
12272put('YI_SYLLABLE_TE, 'codepoint, 0xA12E);
12273put('YI_SYLLABLE_TEP, 'codepoint, 0xA12F);
12274put('YI_SYLLABLE_TUT, 'codepoint, 0xA130);
12275put('YI_SYLLABLE_TUX, 'codepoint, 0xA131);
12276put('YI_SYLLABLE_TU, 'codepoint, 0xA132);
12277put('YI_SYLLABLE_TUP, 'codepoint, 0xA133);
12278put('YI_SYLLABLE_TURX, 'codepoint, 0xA134);
12279put('YI_SYLLABLE_TUR, 'codepoint, 0xA135);
12280put('YI_SYLLABLE_DDIT, 'codepoint, 0xA136);
12281put('YI_SYLLABLE_DDIX, 'codepoint, 0xA137);
12282put('YI_SYLLABLE_DDI, 'codepoint, 0xA138);
12283put('YI_SYLLABLE_DDIP, 'codepoint, 0xA139);
12284put('YI_SYLLABLE_DDIEX, 'codepoint, 0xA13A);
12285put('YI_SYLLABLE_DDIE, 'codepoint, 0xA13B);
12286put('YI_SYLLABLE_DDIEP, 'codepoint, 0xA13C);
12287put('YI_SYLLABLE_DDAT, 'codepoint, 0xA13D);
12288put('YI_SYLLABLE_DDAX, 'codepoint, 0xA13E);
12289put('YI_SYLLABLE_DDA, 'codepoint, 0xA13F);
12290put('YI_SYLLABLE_DDAP, 'codepoint, 0xA140);
12291put('YI_SYLLABLE_DDUOX, 'codepoint, 0xA141);
12292put('YI_SYLLABLE_DDUO, 'codepoint, 0xA142);
12293put('YI_SYLLABLE_DDUOP, 'codepoint, 0xA143);
12294put('YI_SYLLABLE_DDOT, 'codepoint, 0xA144);
12295put('YI_SYLLABLE_DDOX, 'codepoint, 0xA145);
12296put('YI_SYLLABLE_DDO, 'codepoint, 0xA146);
12297put('YI_SYLLABLE_DDOP, 'codepoint, 0xA147);
12298put('YI_SYLLABLE_DDEX, 'codepoint, 0xA148);
12299put('YI_SYLLABLE_DDE, 'codepoint, 0xA149);
12300put('YI_SYLLABLE_DDEP, 'codepoint, 0xA14A);
12301put('YI_SYLLABLE_DDUT, 'codepoint, 0xA14B);
12302put('YI_SYLLABLE_DDUX, 'codepoint, 0xA14C);
12303put('YI_SYLLABLE_DDU, 'codepoint, 0xA14D);
12304put('YI_SYLLABLE_DDUP, 'codepoint, 0xA14E);
12305put('YI_SYLLABLE_DDURX, 'codepoint, 0xA14F);
12306put('YI_SYLLABLE_DDUR, 'codepoint, 0xA150);
12307put('YI_SYLLABLE_NDIT, 'codepoint, 0xA151);
12308put('YI_SYLLABLE_NDIX, 'codepoint, 0xA152);
12309put('YI_SYLLABLE_NDI, 'codepoint, 0xA153);
12310put('YI_SYLLABLE_NDIP, 'codepoint, 0xA154);
12311put('YI_SYLLABLE_NDIEX, 'codepoint, 0xA155);
12312put('YI_SYLLABLE_NDIE, 'codepoint, 0xA156);
12313put('YI_SYLLABLE_NDAT, 'codepoint, 0xA157);
12314put('YI_SYLLABLE_NDAX, 'codepoint, 0xA158);
12315put('YI_SYLLABLE_NDA, 'codepoint, 0xA159);
12316put('YI_SYLLABLE_NDAP, 'codepoint, 0xA15A);
12317put('YI_SYLLABLE_NDOT, 'codepoint, 0xA15B);
12318put('YI_SYLLABLE_NDOX, 'codepoint, 0xA15C);
12319put('YI_SYLLABLE_NDO, 'codepoint, 0xA15D);
12320put('YI_SYLLABLE_NDOP, 'codepoint, 0xA15E);
12321put('YI_SYLLABLE_NDEX, 'codepoint, 0xA15F);
12322put('YI_SYLLABLE_NDE, 'codepoint, 0xA160);
12323put('YI_SYLLABLE_NDEP, 'codepoint, 0xA161);
12324put('YI_SYLLABLE_NDUT, 'codepoint, 0xA162);
12325put('YI_SYLLABLE_NDUX, 'codepoint, 0xA163);
12326put('YI_SYLLABLE_NDU, 'codepoint, 0xA164);
12327put('YI_SYLLABLE_NDUP, 'codepoint, 0xA165);
12328put('YI_SYLLABLE_NDURX, 'codepoint, 0xA166);
12329put('YI_SYLLABLE_NDUR, 'codepoint, 0xA167);
12330put('YI_SYLLABLE_HNIT, 'codepoint, 0xA168);
12331put('YI_SYLLABLE_HNIX, 'codepoint, 0xA169);
12332put('YI_SYLLABLE_HNI, 'codepoint, 0xA16A);
12333put('YI_SYLLABLE_HNIP, 'codepoint, 0xA16B);
12334put('YI_SYLLABLE_HNIET, 'codepoint, 0xA16C);
12335put('YI_SYLLABLE_HNIEX, 'codepoint, 0xA16D);
12336put('YI_SYLLABLE_HNIE, 'codepoint, 0xA16E);
12337put('YI_SYLLABLE_HNIEP, 'codepoint, 0xA16F);
12338put('YI_SYLLABLE_HNAT, 'codepoint, 0xA170);
12339put('YI_SYLLABLE_HNAX, 'codepoint, 0xA171);
12340put('YI_SYLLABLE_HNA, 'codepoint, 0xA172);
12341put('YI_SYLLABLE_HNAP, 'codepoint, 0xA173);
12342put('YI_SYLLABLE_HNUOX, 'codepoint, 0xA174);
12343put('YI_SYLLABLE_HNUO, 'codepoint, 0xA175);
12344put('YI_SYLLABLE_HNOT, 'codepoint, 0xA176);
12345put('YI_SYLLABLE_HNOX, 'codepoint, 0xA177);
12346put('YI_SYLLABLE_HNOP, 'codepoint, 0xA178);
12347put('YI_SYLLABLE_HNEX, 'codepoint, 0xA179);
12348put('YI_SYLLABLE_HNE, 'codepoint, 0xA17A);
12349put('YI_SYLLABLE_HNEP, 'codepoint, 0xA17B);
12350put('YI_SYLLABLE_HNUT, 'codepoint, 0xA17C);
12351put('YI_SYLLABLE_NIT, 'codepoint, 0xA17D);
12352put('YI_SYLLABLE_NIX, 'codepoint, 0xA17E);
12353put('YI_SYLLABLE_NI, 'codepoint, 0xA17F);
12354put('YI_SYLLABLE_NIP, 'codepoint, 0xA180);
12355put('YI_SYLLABLE_NIEX, 'codepoint, 0xA181);
12356put('YI_SYLLABLE_NIE, 'codepoint, 0xA182);
12357put('YI_SYLLABLE_NIEP, 'codepoint, 0xA183);
12358put('YI_SYLLABLE_NAX, 'codepoint, 0xA184);
12359put('YI_SYLLABLE_NA, 'codepoint, 0xA185);
12360put('YI_SYLLABLE_NAP, 'codepoint, 0xA186);
12361put('YI_SYLLABLE_NUOX, 'codepoint, 0xA187);
12362put('YI_SYLLABLE_NUO, 'codepoint, 0xA188);
12363put('YI_SYLLABLE_NUOP, 'codepoint, 0xA189);
12364put('YI_SYLLABLE_NOT, 'codepoint, 0xA18A);
12365put('YI_SYLLABLE_NOX, 'codepoint, 0xA18B);
12366put('YI_SYLLABLE_NO, 'codepoint, 0xA18C);
12367put('YI_SYLLABLE_NOP, 'codepoint, 0xA18D);
12368put('YI_SYLLABLE_NEX, 'codepoint, 0xA18E);
12369put('YI_SYLLABLE_NE, 'codepoint, 0xA18F);
12370put('YI_SYLLABLE_NEP, 'codepoint, 0xA190);
12371put('YI_SYLLABLE_NUT, 'codepoint, 0xA191);
12372put('YI_SYLLABLE_NUX, 'codepoint, 0xA192);
12373put('YI_SYLLABLE_NU, 'codepoint, 0xA193);
12374put('YI_SYLLABLE_NUP, 'codepoint, 0xA194);
12375put('YI_SYLLABLE_NURX, 'codepoint, 0xA195);
12376put('YI_SYLLABLE_NUR, 'codepoint, 0xA196);
12377put('YI_SYLLABLE_HLIT, 'codepoint, 0xA197);
12378put('YI_SYLLABLE_HLIX, 'codepoint, 0xA198);
12379put('YI_SYLLABLE_HLI, 'codepoint, 0xA199);
12380put('YI_SYLLABLE_HLIP, 'codepoint, 0xA19A);
12381put('YI_SYLLABLE_HLIEX, 'codepoint, 0xA19B);
12382put('YI_SYLLABLE_HLIE, 'codepoint, 0xA19C);
12383put('YI_SYLLABLE_HLIEP, 'codepoint, 0xA19D);
12384put('YI_SYLLABLE_HLAT, 'codepoint, 0xA19E);
12385put('YI_SYLLABLE_HLAX, 'codepoint, 0xA19F);
12386put('YI_SYLLABLE_HLA, 'codepoint, 0xA1A0);
12387put('YI_SYLLABLE_HLAP, 'codepoint, 0xA1A1);
12388put('YI_SYLLABLE_HLUOX, 'codepoint, 0xA1A2);
12389put('YI_SYLLABLE_HLUO, 'codepoint, 0xA1A3);
12390put('YI_SYLLABLE_HLUOP, 'codepoint, 0xA1A4);
12391put('YI_SYLLABLE_HLOX, 'codepoint, 0xA1A5);
12392put('YI_SYLLABLE_HLO, 'codepoint, 0xA1A6);
12393put('YI_SYLLABLE_HLOP, 'codepoint, 0xA1A7);
12394put('YI_SYLLABLE_HLEX, 'codepoint, 0xA1A8);
12395put('YI_SYLLABLE_HLE, 'codepoint, 0xA1A9);
12396put('YI_SYLLABLE_HLEP, 'codepoint, 0xA1AA);
12397put('YI_SYLLABLE_HLUT, 'codepoint, 0xA1AB);
12398put('YI_SYLLABLE_HLUX, 'codepoint, 0xA1AC);
12399put('YI_SYLLABLE_HLU, 'codepoint, 0xA1AD);
12400put('YI_SYLLABLE_HLUP, 'codepoint, 0xA1AE);
12401put('YI_SYLLABLE_HLURX, 'codepoint, 0xA1AF);
12402put('YI_SYLLABLE_HLUR, 'codepoint, 0xA1B0);
12403put('YI_SYLLABLE_HLYT, 'codepoint, 0xA1B1);
12404put('YI_SYLLABLE_HLYX, 'codepoint, 0xA1B2);
12405put('YI_SYLLABLE_HLY, 'codepoint, 0xA1B3);
12406put('YI_SYLLABLE_HLYP, 'codepoint, 0xA1B4);
12407put('YI_SYLLABLE_HLYRX, 'codepoint, 0xA1B5);
12408put('YI_SYLLABLE_HLYR, 'codepoint, 0xA1B6);
12409put('YI_SYLLABLE_LIT, 'codepoint, 0xA1B7);
12410put('YI_SYLLABLE_LIX, 'codepoint, 0xA1B8);
12411put('YI_SYLLABLE_LI, 'codepoint, 0xA1B9);
12412put('YI_SYLLABLE_LIP, 'codepoint, 0xA1BA);
12413put('YI_SYLLABLE_LIET, 'codepoint, 0xA1BB);
12414put('YI_SYLLABLE_LIEX, 'codepoint, 0xA1BC);
12415put('YI_SYLLABLE_LIE, 'codepoint, 0xA1BD);
12416put('YI_SYLLABLE_LIEP, 'codepoint, 0xA1BE);
12417put('YI_SYLLABLE_LAT, 'codepoint, 0xA1BF);
12418put('YI_SYLLABLE_LAX, 'codepoint, 0xA1C0);
12419put('YI_SYLLABLE_LA, 'codepoint, 0xA1C1);
12420put('YI_SYLLABLE_LAP, 'codepoint, 0xA1C2);
12421put('YI_SYLLABLE_LUOT, 'codepoint, 0xA1C3);
12422put('YI_SYLLABLE_LUOX, 'codepoint, 0xA1C4);
12423put('YI_SYLLABLE_LUO, 'codepoint, 0xA1C5);
12424put('YI_SYLLABLE_LUOP, 'codepoint, 0xA1C6);
12425put('YI_SYLLABLE_LOT, 'codepoint, 0xA1C7);
12426put('YI_SYLLABLE_LOX, 'codepoint, 0xA1C8);
12427put('YI_SYLLABLE_LO, 'codepoint, 0xA1C9);
12428put('YI_SYLLABLE_LOP, 'codepoint, 0xA1CA);
12429put('YI_SYLLABLE_LEX, 'codepoint, 0xA1CB);
12430put('YI_SYLLABLE_LE, 'codepoint, 0xA1CC);
12431put('YI_SYLLABLE_LEP, 'codepoint, 0xA1CD);
12432put('YI_SYLLABLE_LUT, 'codepoint, 0xA1CE);
12433put('YI_SYLLABLE_LUX, 'codepoint, 0xA1CF);
12434put('YI_SYLLABLE_LU, 'codepoint, 0xA1D0);
12435put('YI_SYLLABLE_LUP, 'codepoint, 0xA1D1);
12436put('YI_SYLLABLE_LURX, 'codepoint, 0xA1D2);
12437put('YI_SYLLABLE_LUR, 'codepoint, 0xA1D3);
12438put('YI_SYLLABLE_LYT, 'codepoint, 0xA1D4);
12439put('YI_SYLLABLE_LYX, 'codepoint, 0xA1D5);
12440put('YI_SYLLABLE_LY, 'codepoint, 0xA1D6);
12441put('YI_SYLLABLE_LYP, 'codepoint, 0xA1D7);
12442put('YI_SYLLABLE_LYRX, 'codepoint, 0xA1D8);
12443put('YI_SYLLABLE_LYR, 'codepoint, 0xA1D9);
12444put('YI_SYLLABLE_GIT, 'codepoint, 0xA1DA);
12445put('YI_SYLLABLE_GIX, 'codepoint, 0xA1DB);
12446put('YI_SYLLABLE_GI, 'codepoint, 0xA1DC);
12447put('YI_SYLLABLE_GIP, 'codepoint, 0xA1DD);
12448put('YI_SYLLABLE_GIET, 'codepoint, 0xA1DE);
12449put('YI_SYLLABLE_GIEX, 'codepoint, 0xA1DF);
12450put('YI_SYLLABLE_GIE, 'codepoint, 0xA1E0);
12451put('YI_SYLLABLE_GIEP, 'codepoint, 0xA1E1);
12452put('YI_SYLLABLE_GAT, 'codepoint, 0xA1E2);
12453put('YI_SYLLABLE_GAX, 'codepoint, 0xA1E3);
12454put('YI_SYLLABLE_GA, 'codepoint, 0xA1E4);
12455put('YI_SYLLABLE_GAP, 'codepoint, 0xA1E5);
12456put('YI_SYLLABLE_GUOT, 'codepoint, 0xA1E6);
12457put('YI_SYLLABLE_GUOX, 'codepoint, 0xA1E7);
12458put('YI_SYLLABLE_GUO, 'codepoint, 0xA1E8);
12459put('YI_SYLLABLE_GUOP, 'codepoint, 0xA1E9);
12460put('YI_SYLLABLE_GOT, 'codepoint, 0xA1EA);
12461put('YI_SYLLABLE_GOX, 'codepoint, 0xA1EB);
12462put('YI_SYLLABLE_GO, 'codepoint, 0xA1EC);
12463put('YI_SYLLABLE_GOP, 'codepoint, 0xA1ED);
12464put('YI_SYLLABLE_GET, 'codepoint, 0xA1EE);
12465put('YI_SYLLABLE_GEX, 'codepoint, 0xA1EF);
12466put('YI_SYLLABLE_GE, 'codepoint, 0xA1F0);
12467put('YI_SYLLABLE_GEP, 'codepoint, 0xA1F1);
12468put('YI_SYLLABLE_GUT, 'codepoint, 0xA1F2);
12469put('YI_SYLLABLE_GUX, 'codepoint, 0xA1F3);
12470put('YI_SYLLABLE_GU, 'codepoint, 0xA1F4);
12471put('YI_SYLLABLE_GUP, 'codepoint, 0xA1F5);
12472put('YI_SYLLABLE_GURX, 'codepoint, 0xA1F6);
12473put('YI_SYLLABLE_GUR, 'codepoint, 0xA1F7);
12474put('YI_SYLLABLE_KIT, 'codepoint, 0xA1F8);
12475put('YI_SYLLABLE_KIX, 'codepoint, 0xA1F9);
12476put('YI_SYLLABLE_KI, 'codepoint, 0xA1FA);
12477put('YI_SYLLABLE_KIP, 'codepoint, 0xA1FB);
12478put('YI_SYLLABLE_KIEX, 'codepoint, 0xA1FC);
12479put('YI_SYLLABLE_KIE, 'codepoint, 0xA1FD);
12480put('YI_SYLLABLE_KIEP, 'codepoint, 0xA1FE);
12481put('YI_SYLLABLE_KAT, 'codepoint, 0xA1FF);
12482put('YI_SYLLABLE_KAX, 'codepoint, 0xA200);
12483put('YI_SYLLABLE_KA, 'codepoint, 0xA201);
12484put('YI_SYLLABLE_KAP, 'codepoint, 0xA202);
12485put('YI_SYLLABLE_KUOX, 'codepoint, 0xA203);
12486put('YI_SYLLABLE_KUO, 'codepoint, 0xA204);
12487put('YI_SYLLABLE_KUOP, 'codepoint, 0xA205);
12488put('YI_SYLLABLE_KOT, 'codepoint, 0xA206);
12489put('YI_SYLLABLE_KOX, 'codepoint, 0xA207);
12490put('YI_SYLLABLE_KO, 'codepoint, 0xA208);
12491put('YI_SYLLABLE_KOP, 'codepoint, 0xA209);
12492put('YI_SYLLABLE_KET, 'codepoint, 0xA20A);
12493put('YI_SYLLABLE_KEX, 'codepoint, 0xA20B);
12494put('YI_SYLLABLE_KE, 'codepoint, 0xA20C);
12495put('YI_SYLLABLE_KEP, 'codepoint, 0xA20D);
12496put('YI_SYLLABLE_KUT, 'codepoint, 0xA20E);
12497put('YI_SYLLABLE_KUX, 'codepoint, 0xA20F);
12498put('YI_SYLLABLE_KU, 'codepoint, 0xA210);
12499put('YI_SYLLABLE_KUP, 'codepoint, 0xA211);
12500put('YI_SYLLABLE_KURX, 'codepoint, 0xA212);
12501put('YI_SYLLABLE_KUR, 'codepoint, 0xA213);
12502put('YI_SYLLABLE_GGIT, 'codepoint, 0xA214);
12503put('YI_SYLLABLE_GGIX, 'codepoint, 0xA215);
12504put('YI_SYLLABLE_GGI, 'codepoint, 0xA216);
12505put('YI_SYLLABLE_GGIEX, 'codepoint, 0xA217);
12506put('YI_SYLLABLE_GGIE, 'codepoint, 0xA218);
12507put('YI_SYLLABLE_GGIEP, 'codepoint, 0xA219);
12508put('YI_SYLLABLE_GGAT, 'codepoint, 0xA21A);
12509put('YI_SYLLABLE_GGAX, 'codepoint, 0xA21B);
12510put('YI_SYLLABLE_GGA, 'codepoint, 0xA21C);
12511put('YI_SYLLABLE_GGAP, 'codepoint, 0xA21D);
12512put('YI_SYLLABLE_GGUOT, 'codepoint, 0xA21E);
12513put('YI_SYLLABLE_GGUOX, 'codepoint, 0xA21F);
12514put('YI_SYLLABLE_GGUO, 'codepoint, 0xA220);
12515put('YI_SYLLABLE_GGUOP, 'codepoint, 0xA221);
12516put('YI_SYLLABLE_GGOT, 'codepoint, 0xA222);
12517put('YI_SYLLABLE_GGOX, 'codepoint, 0xA223);
12518put('YI_SYLLABLE_GGO, 'codepoint, 0xA224);
12519put('YI_SYLLABLE_GGOP, 'codepoint, 0xA225);
12520put('YI_SYLLABLE_GGET, 'codepoint, 0xA226);
12521put('YI_SYLLABLE_GGEX, 'codepoint, 0xA227);
12522put('YI_SYLLABLE_GGE, 'codepoint, 0xA228);
12523put('YI_SYLLABLE_GGEP, 'codepoint, 0xA229);
12524put('YI_SYLLABLE_GGUT, 'codepoint, 0xA22A);
12525put('YI_SYLLABLE_GGUX, 'codepoint, 0xA22B);
12526put('YI_SYLLABLE_GGU, 'codepoint, 0xA22C);
12527put('YI_SYLLABLE_GGUP, 'codepoint, 0xA22D);
12528put('YI_SYLLABLE_GGURX, 'codepoint, 0xA22E);
12529put('YI_SYLLABLE_GGUR, 'codepoint, 0xA22F);
12530put('YI_SYLLABLE_MGIEX, 'codepoint, 0xA230);
12531put('YI_SYLLABLE_MGIE, 'codepoint, 0xA231);
12532put('YI_SYLLABLE_MGAT, 'codepoint, 0xA232);
12533put('YI_SYLLABLE_MGAX, 'codepoint, 0xA233);
12534put('YI_SYLLABLE_MGA, 'codepoint, 0xA234);
12535put('YI_SYLLABLE_MGAP, 'codepoint, 0xA235);
12536put('YI_SYLLABLE_MGUOX, 'codepoint, 0xA236);
12537put('YI_SYLLABLE_MGUO, 'codepoint, 0xA237);
12538put('YI_SYLLABLE_MGUOP, 'codepoint, 0xA238);
12539put('YI_SYLLABLE_MGOT, 'codepoint, 0xA239);
12540put('YI_SYLLABLE_MGOX, 'codepoint, 0xA23A);
12541put('YI_SYLLABLE_MGO, 'codepoint, 0xA23B);
12542put('YI_SYLLABLE_MGOP, 'codepoint, 0xA23C);
12543put('YI_SYLLABLE_MGEX, 'codepoint, 0xA23D);
12544put('YI_SYLLABLE_MGE, 'codepoint, 0xA23E);
12545put('YI_SYLLABLE_MGEP, 'codepoint, 0xA23F);
12546put('YI_SYLLABLE_MGUT, 'codepoint, 0xA240);
12547put('YI_SYLLABLE_MGUX, 'codepoint, 0xA241);
12548put('YI_SYLLABLE_MGU, 'codepoint, 0xA242);
12549put('YI_SYLLABLE_MGUP, 'codepoint, 0xA243);
12550put('YI_SYLLABLE_MGURX, 'codepoint, 0xA244);
12551put('YI_SYLLABLE_MGUR, 'codepoint, 0xA245);
12552put('YI_SYLLABLE_HXIT, 'codepoint, 0xA246);
12553put('YI_SYLLABLE_HXIX, 'codepoint, 0xA247);
12554put('YI_SYLLABLE_HXI, 'codepoint, 0xA248);
12555put('YI_SYLLABLE_HXIP, 'codepoint, 0xA249);
12556put('YI_SYLLABLE_HXIET, 'codepoint, 0xA24A);
12557put('YI_SYLLABLE_HXIEX, 'codepoint, 0xA24B);
12558put('YI_SYLLABLE_HXIE, 'codepoint, 0xA24C);
12559put('YI_SYLLABLE_HXIEP, 'codepoint, 0xA24D);
12560put('YI_SYLLABLE_HXAT, 'codepoint, 0xA24E);
12561put('YI_SYLLABLE_HXAX, 'codepoint, 0xA24F);
12562put('YI_SYLLABLE_HXA, 'codepoint, 0xA250);
12563put('YI_SYLLABLE_HXAP, 'codepoint, 0xA251);
12564put('YI_SYLLABLE_HXUOT, 'codepoint, 0xA252);
12565put('YI_SYLLABLE_HXUOX, 'codepoint, 0xA253);
12566put('YI_SYLLABLE_HXUO, 'codepoint, 0xA254);
12567put('YI_SYLLABLE_HXUOP, 'codepoint, 0xA255);
12568put('YI_SYLLABLE_HXOT, 'codepoint, 0xA256);
12569put('YI_SYLLABLE_HXOX, 'codepoint, 0xA257);
12570put('YI_SYLLABLE_HXO, 'codepoint, 0xA258);
12571put('YI_SYLLABLE_HXOP, 'codepoint, 0xA259);
12572put('YI_SYLLABLE_HXEX, 'codepoint, 0xA25A);
12573put('YI_SYLLABLE_HXE, 'codepoint, 0xA25B);
12574put('YI_SYLLABLE_HXEP, 'codepoint, 0xA25C);
12575put('YI_SYLLABLE_NGIEX, 'codepoint, 0xA25D);
12576put('YI_SYLLABLE_NGIE, 'codepoint, 0xA25E);
12577put('YI_SYLLABLE_NGIEP, 'codepoint, 0xA25F);
12578put('YI_SYLLABLE_NGAT, 'codepoint, 0xA260);
12579put('YI_SYLLABLE_NGAX, 'codepoint, 0xA261);
12580put('YI_SYLLABLE_NGA, 'codepoint, 0xA262);
12581put('YI_SYLLABLE_NGAP, 'codepoint, 0xA263);
12582put('YI_SYLLABLE_NGUOT, 'codepoint, 0xA264);
12583put('YI_SYLLABLE_NGUOX, 'codepoint, 0xA265);
12584put('YI_SYLLABLE_NGUO, 'codepoint, 0xA266);
12585put('YI_SYLLABLE_NGOT, 'codepoint, 0xA267);
12586put('YI_SYLLABLE_NGOX, 'codepoint, 0xA268);
12587put('YI_SYLLABLE_NGO, 'codepoint, 0xA269);
12588put('YI_SYLLABLE_NGOP, 'codepoint, 0xA26A);
12589put('YI_SYLLABLE_NGEX, 'codepoint, 0xA26B);
12590put('YI_SYLLABLE_NGE, 'codepoint, 0xA26C);
12591put('YI_SYLLABLE_NGEP, 'codepoint, 0xA26D);
12592put('YI_SYLLABLE_HIT, 'codepoint, 0xA26E);
12593put('YI_SYLLABLE_HIEX, 'codepoint, 0xA26F);
12594put('YI_SYLLABLE_HIE, 'codepoint, 0xA270);
12595put('YI_SYLLABLE_HAT, 'codepoint, 0xA271);
12596put('YI_SYLLABLE_HAX, 'codepoint, 0xA272);
12597put('YI_SYLLABLE_HA, 'codepoint, 0xA273);
12598put('YI_SYLLABLE_HAP, 'codepoint, 0xA274);
12599put('YI_SYLLABLE_HUOT, 'codepoint, 0xA275);
12600put('YI_SYLLABLE_HUOX, 'codepoint, 0xA276);
12601put('YI_SYLLABLE_HUO, 'codepoint, 0xA277);
12602put('YI_SYLLABLE_HUOP, 'codepoint, 0xA278);
12603put('YI_SYLLABLE_HOT, 'codepoint, 0xA279);
12604put('YI_SYLLABLE_HOX, 'codepoint, 0xA27A);
12605put('YI_SYLLABLE_HO, 'codepoint, 0xA27B);
12606put('YI_SYLLABLE_HOP, 'codepoint, 0xA27C);
12607put('YI_SYLLABLE_HEX, 'codepoint, 0xA27D);
12608put('YI_SYLLABLE_HE, 'codepoint, 0xA27E);
12609put('YI_SYLLABLE_HEP, 'codepoint, 0xA27F);
12610put('YI_SYLLABLE_WAT, 'codepoint, 0xA280);
12611put('YI_SYLLABLE_WAX, 'codepoint, 0xA281);
12612put('YI_SYLLABLE_WA, 'codepoint, 0xA282);
12613put('YI_SYLLABLE_WAP, 'codepoint, 0xA283);
12614put('YI_SYLLABLE_WUOX, 'codepoint, 0xA284);
12615put('YI_SYLLABLE_WUO, 'codepoint, 0xA285);
12616put('YI_SYLLABLE_WUOP, 'codepoint, 0xA286);
12617put('YI_SYLLABLE_WOX, 'codepoint, 0xA287);
12618put('YI_SYLLABLE_WO, 'codepoint, 0xA288);
12619put('YI_SYLLABLE_WOP, 'codepoint, 0xA289);
12620put('YI_SYLLABLE_WEX, 'codepoint, 0xA28A);
12621put('YI_SYLLABLE_WE, 'codepoint, 0xA28B);
12622put('YI_SYLLABLE_WEP, 'codepoint, 0xA28C);
12623put('YI_SYLLABLE_ZIT, 'codepoint, 0xA28D);
12624put('YI_SYLLABLE_ZIX, 'codepoint, 0xA28E);
12625put('YI_SYLLABLE_ZI, 'codepoint, 0xA28F);
12626put('YI_SYLLABLE_ZIP, 'codepoint, 0xA290);
12627put('YI_SYLLABLE_ZIEX, 'codepoint, 0xA291);
12628put('YI_SYLLABLE_ZIE, 'codepoint, 0xA292);
12629put('YI_SYLLABLE_ZIEP, 'codepoint, 0xA293);
12630put('YI_SYLLABLE_ZAT, 'codepoint, 0xA294);
12631put('YI_SYLLABLE_ZAX, 'codepoint, 0xA295);
12632put('YI_SYLLABLE_ZA, 'codepoint, 0xA296);
12633put('YI_SYLLABLE_ZAP, 'codepoint, 0xA297);
12634put('YI_SYLLABLE_ZUOX, 'codepoint, 0xA298);
12635put('YI_SYLLABLE_ZUO, 'codepoint, 0xA299);
12636put('YI_SYLLABLE_ZUOP, 'codepoint, 0xA29A);
12637put('YI_SYLLABLE_ZOT, 'codepoint, 0xA29B);
12638put('YI_SYLLABLE_ZOX, 'codepoint, 0xA29C);
12639put('YI_SYLLABLE_ZO, 'codepoint, 0xA29D);
12640put('YI_SYLLABLE_ZOP, 'codepoint, 0xA29E);
12641put('YI_SYLLABLE_ZEX, 'codepoint, 0xA29F);
12642put('YI_SYLLABLE_ZE, 'codepoint, 0xA2A0);
12643put('YI_SYLLABLE_ZEP, 'codepoint, 0xA2A1);
12644put('YI_SYLLABLE_ZUT, 'codepoint, 0xA2A2);
12645put('YI_SYLLABLE_ZUX, 'codepoint, 0xA2A3);
12646put('YI_SYLLABLE_ZU, 'codepoint, 0xA2A4);
12647put('YI_SYLLABLE_ZUP, 'codepoint, 0xA2A5);
12648put('YI_SYLLABLE_ZURX, 'codepoint, 0xA2A6);
12649put('YI_SYLLABLE_ZUR, 'codepoint, 0xA2A7);
12650put('YI_SYLLABLE_ZYT, 'codepoint, 0xA2A8);
12651put('YI_SYLLABLE_ZYX, 'codepoint, 0xA2A9);
12652put('YI_SYLLABLE_ZY, 'codepoint, 0xA2AA);
12653put('YI_SYLLABLE_ZYP, 'codepoint, 0xA2AB);
12654put('YI_SYLLABLE_ZYRX, 'codepoint, 0xA2AC);
12655put('YI_SYLLABLE_ZYR, 'codepoint, 0xA2AD);
12656put('YI_SYLLABLE_CIT, 'codepoint, 0xA2AE);
12657put('YI_SYLLABLE_CIX, 'codepoint, 0xA2AF);
12658put('YI_SYLLABLE_CI, 'codepoint, 0xA2B0);
12659put('YI_SYLLABLE_CIP, 'codepoint, 0xA2B1);
12660put('YI_SYLLABLE_CIET, 'codepoint, 0xA2B2);
12661put('YI_SYLLABLE_CIEX, 'codepoint, 0xA2B3);
12662put('YI_SYLLABLE_CIE, 'codepoint, 0xA2B4);
12663put('YI_SYLLABLE_CIEP, 'codepoint, 0xA2B5);
12664put('YI_SYLLABLE_CAT, 'codepoint, 0xA2B6);
12665put('YI_SYLLABLE_CAX, 'codepoint, 0xA2B7);
12666put('YI_SYLLABLE_CA, 'codepoint, 0xA2B8);
12667put('YI_SYLLABLE_CAP, 'codepoint, 0xA2B9);
12668put('YI_SYLLABLE_CUOX, 'codepoint, 0xA2BA);
12669put('YI_SYLLABLE_CUO, 'codepoint, 0xA2BB);
12670put('YI_SYLLABLE_CUOP, 'codepoint, 0xA2BC);
12671put('YI_SYLLABLE_COT, 'codepoint, 0xA2BD);
12672put('YI_SYLLABLE_COX, 'codepoint, 0xA2BE);
12673put('YI_SYLLABLE_CO, 'codepoint, 0xA2BF);
12674put('YI_SYLLABLE_COP, 'codepoint, 0xA2C0);
12675put('YI_SYLLABLE_CEX, 'codepoint, 0xA2C1);
12676put('YI_SYLLABLE_CE, 'codepoint, 0xA2C2);
12677put('YI_SYLLABLE_CEP, 'codepoint, 0xA2C3);
12678put('YI_SYLLABLE_CUT, 'codepoint, 0xA2C4);
12679put('YI_SYLLABLE_CUX, 'codepoint, 0xA2C5);
12680put('YI_SYLLABLE_CU, 'codepoint, 0xA2C6);
12681put('YI_SYLLABLE_CUP, 'codepoint, 0xA2C7);
12682put('YI_SYLLABLE_CURX, 'codepoint, 0xA2C8);
12683put('YI_SYLLABLE_CUR, 'codepoint, 0xA2C9);
12684put('YI_SYLLABLE_CYT, 'codepoint, 0xA2CA);
12685put('YI_SYLLABLE_CYX, 'codepoint, 0xA2CB);
12686put('YI_SYLLABLE_CY, 'codepoint, 0xA2CC);
12687put('YI_SYLLABLE_CYP, 'codepoint, 0xA2CD);
12688put('YI_SYLLABLE_CYRX, 'codepoint, 0xA2CE);
12689put('YI_SYLLABLE_CYR, 'codepoint, 0xA2CF);
12690put('YI_SYLLABLE_ZZIT, 'codepoint, 0xA2D0);
12691put('YI_SYLLABLE_ZZIX, 'codepoint, 0xA2D1);
12692put('YI_SYLLABLE_ZZI, 'codepoint, 0xA2D2);
12693put('YI_SYLLABLE_ZZIP, 'codepoint, 0xA2D3);
12694put('YI_SYLLABLE_ZZIET, 'codepoint, 0xA2D4);
12695put('YI_SYLLABLE_ZZIEX, 'codepoint, 0xA2D5);
12696put('YI_SYLLABLE_ZZIE, 'codepoint, 0xA2D6);
12697put('YI_SYLLABLE_ZZIEP, 'codepoint, 0xA2D7);
12698put('YI_SYLLABLE_ZZAT, 'codepoint, 0xA2D8);
12699put('YI_SYLLABLE_ZZAX, 'codepoint, 0xA2D9);
12700put('YI_SYLLABLE_ZZA, 'codepoint, 0xA2DA);
12701put('YI_SYLLABLE_ZZAP, 'codepoint, 0xA2DB);
12702put('YI_SYLLABLE_ZZOX, 'codepoint, 0xA2DC);
12703put('YI_SYLLABLE_ZZO, 'codepoint, 0xA2DD);
12704put('YI_SYLLABLE_ZZOP, 'codepoint, 0xA2DE);
12705put('YI_SYLLABLE_ZZEX, 'codepoint, 0xA2DF);
12706put('YI_SYLLABLE_ZZE, 'codepoint, 0xA2E0);
12707put('YI_SYLLABLE_ZZEP, 'codepoint, 0xA2E1);
12708put('YI_SYLLABLE_ZZUX, 'codepoint, 0xA2E2);
12709put('YI_SYLLABLE_ZZU, 'codepoint, 0xA2E3);
12710put('YI_SYLLABLE_ZZUP, 'codepoint, 0xA2E4);
12711put('YI_SYLLABLE_ZZURX, 'codepoint, 0xA2E5);
12712put('YI_SYLLABLE_ZZUR, 'codepoint, 0xA2E6);
12713put('YI_SYLLABLE_ZZYT, 'codepoint, 0xA2E7);
12714put('YI_SYLLABLE_ZZYX, 'codepoint, 0xA2E8);
12715put('YI_SYLLABLE_ZZY, 'codepoint, 0xA2E9);
12716put('YI_SYLLABLE_ZZYP, 'codepoint, 0xA2EA);
12717put('YI_SYLLABLE_ZZYRX, 'codepoint, 0xA2EB);
12718put('YI_SYLLABLE_ZZYR, 'codepoint, 0xA2EC);
12719put('YI_SYLLABLE_NZIT, 'codepoint, 0xA2ED);
12720put('YI_SYLLABLE_NZIX, 'codepoint, 0xA2EE);
12721put('YI_SYLLABLE_NZI, 'codepoint, 0xA2EF);
12722put('YI_SYLLABLE_NZIP, 'codepoint, 0xA2F0);
12723put('YI_SYLLABLE_NZIEX, 'codepoint, 0xA2F1);
12724put('YI_SYLLABLE_NZIE, 'codepoint, 0xA2F2);
12725put('YI_SYLLABLE_NZIEP, 'codepoint, 0xA2F3);
12726put('YI_SYLLABLE_NZAT, 'codepoint, 0xA2F4);
12727put('YI_SYLLABLE_NZAX, 'codepoint, 0xA2F5);
12728put('YI_SYLLABLE_NZA, 'codepoint, 0xA2F6);
12729put('YI_SYLLABLE_NZAP, 'codepoint, 0xA2F7);
12730put('YI_SYLLABLE_NZUOX, 'codepoint, 0xA2F8);
12731put('YI_SYLLABLE_NZUO, 'codepoint, 0xA2F9);
12732put('YI_SYLLABLE_NZOX, 'codepoint, 0xA2FA);
12733put('YI_SYLLABLE_NZOP, 'codepoint, 0xA2FB);
12734put('YI_SYLLABLE_NZEX, 'codepoint, 0xA2FC);
12735put('YI_SYLLABLE_NZE, 'codepoint, 0xA2FD);
12736put('YI_SYLLABLE_NZUX, 'codepoint, 0xA2FE);
12737put('YI_SYLLABLE_NZU, 'codepoint, 0xA2FF);
12738put('YI_SYLLABLE_NZUP, 'codepoint, 0xA300);
12739put('YI_SYLLABLE_NZURX, 'codepoint, 0xA301);
12740put('YI_SYLLABLE_NZUR, 'codepoint, 0xA302);
12741put('YI_SYLLABLE_NZYT, 'codepoint, 0xA303);
12742put('YI_SYLLABLE_NZYX, 'codepoint, 0xA304);
12743put('YI_SYLLABLE_NZY, 'codepoint, 0xA305);
12744put('YI_SYLLABLE_NZYP, 'codepoint, 0xA306);
12745put('YI_SYLLABLE_NZYRX, 'codepoint, 0xA307);
12746put('YI_SYLLABLE_NZYR, 'codepoint, 0xA308);
12747put('YI_SYLLABLE_SIT, 'codepoint, 0xA309);
12748put('YI_SYLLABLE_SIX, 'codepoint, 0xA30A);
12749put('YI_SYLLABLE_SI, 'codepoint, 0xA30B);
12750put('YI_SYLLABLE_SIP, 'codepoint, 0xA30C);
12751put('YI_SYLLABLE_SIEX, 'codepoint, 0xA30D);
12752put('YI_SYLLABLE_SIE, 'codepoint, 0xA30E);
12753put('YI_SYLLABLE_SIEP, 'codepoint, 0xA30F);
12754put('YI_SYLLABLE_SAT, 'codepoint, 0xA310);
12755put('YI_SYLLABLE_SAX, 'codepoint, 0xA311);
12756put('YI_SYLLABLE_SA, 'codepoint, 0xA312);
12757put('YI_SYLLABLE_SAP, 'codepoint, 0xA313);
12758put('YI_SYLLABLE_SUOX, 'codepoint, 0xA314);
12759put('YI_SYLLABLE_SUO, 'codepoint, 0xA315);
12760put('YI_SYLLABLE_SUOP, 'codepoint, 0xA316);
12761put('YI_SYLLABLE_SOT, 'codepoint, 0xA317);
12762put('YI_SYLLABLE_SOX, 'codepoint, 0xA318);
12763put('YI_SYLLABLE_SO, 'codepoint, 0xA319);
12764put('YI_SYLLABLE_SOP, 'codepoint, 0xA31A);
12765put('YI_SYLLABLE_SEX, 'codepoint, 0xA31B);
12766put('YI_SYLLABLE_SE, 'codepoint, 0xA31C);
12767put('YI_SYLLABLE_SEP, 'codepoint, 0xA31D);
12768put('YI_SYLLABLE_SUT, 'codepoint, 0xA31E);
12769put('YI_SYLLABLE_SUX, 'codepoint, 0xA31F);
12770put('YI_SYLLABLE_SU, 'codepoint, 0xA320);
12771put('YI_SYLLABLE_SUP, 'codepoint, 0xA321);
12772put('YI_SYLLABLE_SURX, 'codepoint, 0xA322);
12773put('YI_SYLLABLE_SUR, 'codepoint, 0xA323);
12774put('YI_SYLLABLE_SYT, 'codepoint, 0xA324);
12775put('YI_SYLLABLE_SYX, 'codepoint, 0xA325);
12776put('YI_SYLLABLE_SY, 'codepoint, 0xA326);
12777put('YI_SYLLABLE_SYP, 'codepoint, 0xA327);
12778put('YI_SYLLABLE_SYRX, 'codepoint, 0xA328);
12779put('YI_SYLLABLE_SYR, 'codepoint, 0xA329);
12780put('YI_SYLLABLE_SSIT, 'codepoint, 0xA32A);
12781put('YI_SYLLABLE_SSIX, 'codepoint, 0xA32B);
12782put('YI_SYLLABLE_SSI, 'codepoint, 0xA32C);
12783put('YI_SYLLABLE_SSIP, 'codepoint, 0xA32D);
12784put('YI_SYLLABLE_SSIEX, 'codepoint, 0xA32E);
12785put('YI_SYLLABLE_SSIE, 'codepoint, 0xA32F);
12786put('YI_SYLLABLE_SSIEP, 'codepoint, 0xA330);
12787put('YI_SYLLABLE_SSAT, 'codepoint, 0xA331);
12788put('YI_SYLLABLE_SSAX, 'codepoint, 0xA332);
12789put('YI_SYLLABLE_SSA, 'codepoint, 0xA333);
12790put('YI_SYLLABLE_SSAP, 'codepoint, 0xA334);
12791put('YI_SYLLABLE_SSOT, 'codepoint, 0xA335);
12792put('YI_SYLLABLE_SSOX, 'codepoint, 0xA336);
12793put('YI_SYLLABLE_SSO, 'codepoint, 0xA337);
12794put('YI_SYLLABLE_SSOP, 'codepoint, 0xA338);
12795put('YI_SYLLABLE_SSEX, 'codepoint, 0xA339);
12796put('YI_SYLLABLE_SSE, 'codepoint, 0xA33A);
12797put('YI_SYLLABLE_SSEP, 'codepoint, 0xA33B);
12798put('YI_SYLLABLE_SSUT, 'codepoint, 0xA33C);
12799put('YI_SYLLABLE_SSUX, 'codepoint, 0xA33D);
12800put('YI_SYLLABLE_SSU, 'codepoint, 0xA33E);
12801put('YI_SYLLABLE_SSUP, 'codepoint, 0xA33F);
12802put('YI_SYLLABLE_SSYT, 'codepoint, 0xA340);
12803put('YI_SYLLABLE_SSYX, 'codepoint, 0xA341);
12804put('YI_SYLLABLE_SSY, 'codepoint, 0xA342);
12805put('YI_SYLLABLE_SSYP, 'codepoint, 0xA343);
12806put('YI_SYLLABLE_SSYRX, 'codepoint, 0xA344);
12807put('YI_SYLLABLE_SSYR, 'codepoint, 0xA345);
12808put('YI_SYLLABLE_ZHAT, 'codepoint, 0xA346);
12809put('YI_SYLLABLE_ZHAX, 'codepoint, 0xA347);
12810put('YI_SYLLABLE_ZHA, 'codepoint, 0xA348);
12811put('YI_SYLLABLE_ZHAP, 'codepoint, 0xA349);
12812put('YI_SYLLABLE_ZHUOX, 'codepoint, 0xA34A);
12813put('YI_SYLLABLE_ZHUO, 'codepoint, 0xA34B);
12814put('YI_SYLLABLE_ZHUOP, 'codepoint, 0xA34C);
12815put('YI_SYLLABLE_ZHOT, 'codepoint, 0xA34D);
12816put('YI_SYLLABLE_ZHOX, 'codepoint, 0xA34E);
12817put('YI_SYLLABLE_ZHO, 'codepoint, 0xA34F);
12818put('YI_SYLLABLE_ZHOP, 'codepoint, 0xA350);
12819put('YI_SYLLABLE_ZHET, 'codepoint, 0xA351);
12820put('YI_SYLLABLE_ZHEX, 'codepoint, 0xA352);
12821put('YI_SYLLABLE_ZHE, 'codepoint, 0xA353);
12822put('YI_SYLLABLE_ZHEP, 'codepoint, 0xA354);
12823put('YI_SYLLABLE_ZHUT, 'codepoint, 0xA355);
12824put('YI_SYLLABLE_ZHUX, 'codepoint, 0xA356);
12825put('YI_SYLLABLE_ZHU, 'codepoint, 0xA357);
12826put('YI_SYLLABLE_ZHUP, 'codepoint, 0xA358);
12827put('YI_SYLLABLE_ZHURX, 'codepoint, 0xA359);
12828put('YI_SYLLABLE_ZHUR, 'codepoint, 0xA35A);
12829put('YI_SYLLABLE_ZHYT, 'codepoint, 0xA35B);
12830put('YI_SYLLABLE_ZHYX, 'codepoint, 0xA35C);
12831put('YI_SYLLABLE_ZHY, 'codepoint, 0xA35D);
12832put('YI_SYLLABLE_ZHYP, 'codepoint, 0xA35E);
12833put('YI_SYLLABLE_ZHYRX, 'codepoint, 0xA35F);
12834put('YI_SYLLABLE_ZHYR, 'codepoint, 0xA360);
12835put('YI_SYLLABLE_CHAT, 'codepoint, 0xA361);
12836put('YI_SYLLABLE_CHAX, 'codepoint, 0xA362);
12837put('YI_SYLLABLE_CHA, 'codepoint, 0xA363);
12838put('YI_SYLLABLE_CHAP, 'codepoint, 0xA364);
12839put('YI_SYLLABLE_CHUOT, 'codepoint, 0xA365);
12840put('YI_SYLLABLE_CHUOX, 'codepoint, 0xA366);
12841put('YI_SYLLABLE_CHUO, 'codepoint, 0xA367);
12842put('YI_SYLLABLE_CHUOP, 'codepoint, 0xA368);
12843put('YI_SYLLABLE_CHOT, 'codepoint, 0xA369);
12844put('YI_SYLLABLE_CHOX, 'codepoint, 0xA36A);
12845put('YI_SYLLABLE_CHO, 'codepoint, 0xA36B);
12846put('YI_SYLLABLE_CHOP, 'codepoint, 0xA36C);
12847put('YI_SYLLABLE_CHET, 'codepoint, 0xA36D);
12848put('YI_SYLLABLE_CHEX, 'codepoint, 0xA36E);
12849put('YI_SYLLABLE_CHE, 'codepoint, 0xA36F);
12850put('YI_SYLLABLE_CHEP, 'codepoint, 0xA370);
12851put('YI_SYLLABLE_CHUX, 'codepoint, 0xA371);
12852put('YI_SYLLABLE_CHU, 'codepoint, 0xA372);
12853put('YI_SYLLABLE_CHUP, 'codepoint, 0xA373);
12854put('YI_SYLLABLE_CHURX, 'codepoint, 0xA374);
12855put('YI_SYLLABLE_CHUR, 'codepoint, 0xA375);
12856put('YI_SYLLABLE_CHYT, 'codepoint, 0xA376);
12857put('YI_SYLLABLE_CHYX, 'codepoint, 0xA377);
12858put('YI_SYLLABLE_CHY, 'codepoint, 0xA378);
12859put('YI_SYLLABLE_CHYP, 'codepoint, 0xA379);
12860put('YI_SYLLABLE_CHYRX, 'codepoint, 0xA37A);
12861put('YI_SYLLABLE_CHYR, 'codepoint, 0xA37B);
12862put('YI_SYLLABLE_RRAX, 'codepoint, 0xA37C);
12863put('YI_SYLLABLE_RRA, 'codepoint, 0xA37D);
12864put('YI_SYLLABLE_RRUOX, 'codepoint, 0xA37E);
12865put('YI_SYLLABLE_RRUO, 'codepoint, 0xA37F);
12866put('YI_SYLLABLE_RROT, 'codepoint, 0xA380);
12867put('YI_SYLLABLE_RROX, 'codepoint, 0xA381);
12868put('YI_SYLLABLE_RRO, 'codepoint, 0xA382);
12869put('YI_SYLLABLE_RROP, 'codepoint, 0xA383);
12870put('YI_SYLLABLE_RRET, 'codepoint, 0xA384);
12871put('YI_SYLLABLE_RREX, 'codepoint, 0xA385);
12872put('YI_SYLLABLE_RRE, 'codepoint, 0xA386);
12873put('YI_SYLLABLE_RREP, 'codepoint, 0xA387);
12874put('YI_SYLLABLE_RRUT, 'codepoint, 0xA388);
12875put('YI_SYLLABLE_RRUX, 'codepoint, 0xA389);
12876put('YI_SYLLABLE_RRU, 'codepoint, 0xA38A);
12877put('YI_SYLLABLE_RRUP, 'codepoint, 0xA38B);
12878put('YI_SYLLABLE_RRURX, 'codepoint, 0xA38C);
12879put('YI_SYLLABLE_RRUR, 'codepoint, 0xA38D);
12880put('YI_SYLLABLE_RRYT, 'codepoint, 0xA38E);
12881put('YI_SYLLABLE_RRYX, 'codepoint, 0xA38F);
12882put('YI_SYLLABLE_RRY, 'codepoint, 0xA390);
12883put('YI_SYLLABLE_RRYP, 'codepoint, 0xA391);
12884put('YI_SYLLABLE_RRYRX, 'codepoint, 0xA392);
12885put('YI_SYLLABLE_RRYR, 'codepoint, 0xA393);
12886put('YI_SYLLABLE_NRAT, 'codepoint, 0xA394);
12887put('YI_SYLLABLE_NRAX, 'codepoint, 0xA395);
12888put('YI_SYLLABLE_NRA, 'codepoint, 0xA396);
12889put('YI_SYLLABLE_NRAP, 'codepoint, 0xA397);
12890put('YI_SYLLABLE_NROX, 'codepoint, 0xA398);
12891put('YI_SYLLABLE_NRO, 'codepoint, 0xA399);
12892put('YI_SYLLABLE_NROP, 'codepoint, 0xA39A);
12893put('YI_SYLLABLE_NRET, 'codepoint, 0xA39B);
12894put('YI_SYLLABLE_NREX, 'codepoint, 0xA39C);
12895put('YI_SYLLABLE_NRE, 'codepoint, 0xA39D);
12896put('YI_SYLLABLE_NREP, 'codepoint, 0xA39E);
12897put('YI_SYLLABLE_NRUT, 'codepoint, 0xA39F);
12898put('YI_SYLLABLE_NRUX, 'codepoint, 0xA3A0);
12899put('YI_SYLLABLE_NRU, 'codepoint, 0xA3A1);
12900put('YI_SYLLABLE_NRUP, 'codepoint, 0xA3A2);
12901put('YI_SYLLABLE_NRURX, 'codepoint, 0xA3A3);
12902put('YI_SYLLABLE_NRUR, 'codepoint, 0xA3A4);
12903put('YI_SYLLABLE_NRYT, 'codepoint, 0xA3A5);
12904put('YI_SYLLABLE_NRYX, 'codepoint, 0xA3A6);
12905put('YI_SYLLABLE_NRY, 'codepoint, 0xA3A7);
12906put('YI_SYLLABLE_NRYP, 'codepoint, 0xA3A8);
12907put('YI_SYLLABLE_NRYRX, 'codepoint, 0xA3A9);
12908put('YI_SYLLABLE_NRYR, 'codepoint, 0xA3AA);
12909put('YI_SYLLABLE_SHAT, 'codepoint, 0xA3AB);
12910put('YI_SYLLABLE_SHAX, 'codepoint, 0xA3AC);
12911put('YI_SYLLABLE_SHA, 'codepoint, 0xA3AD);
12912put('YI_SYLLABLE_SHAP, 'codepoint, 0xA3AE);
12913put('YI_SYLLABLE_SHUOX, 'codepoint, 0xA3AF);
12914put('YI_SYLLABLE_SHUO, 'codepoint, 0xA3B0);
12915put('YI_SYLLABLE_SHUOP, 'codepoint, 0xA3B1);
12916put('YI_SYLLABLE_SHOT, 'codepoint, 0xA3B2);
12917put('YI_SYLLABLE_SHOX, 'codepoint, 0xA3B3);
12918put('YI_SYLLABLE_SHO, 'codepoint, 0xA3B4);
12919put('YI_SYLLABLE_SHOP, 'codepoint, 0xA3B5);
12920put('YI_SYLLABLE_SHET, 'codepoint, 0xA3B6);
12921put('YI_SYLLABLE_SHEX, 'codepoint, 0xA3B7);
12922put('YI_SYLLABLE_SHE, 'codepoint, 0xA3B8);
12923put('YI_SYLLABLE_SHEP, 'codepoint, 0xA3B9);
12924put('YI_SYLLABLE_SHUT, 'codepoint, 0xA3BA);
12925put('YI_SYLLABLE_SHUX, 'codepoint, 0xA3BB);
12926put('YI_SYLLABLE_SHU, 'codepoint, 0xA3BC);
12927put('YI_SYLLABLE_SHUP, 'codepoint, 0xA3BD);
12928put('YI_SYLLABLE_SHURX, 'codepoint, 0xA3BE);
12929put('YI_SYLLABLE_SHUR, 'codepoint, 0xA3BF);
12930put('YI_SYLLABLE_SHYT, 'codepoint, 0xA3C0);
12931put('YI_SYLLABLE_SHYX, 'codepoint, 0xA3C1);
12932put('YI_SYLLABLE_SHY, 'codepoint, 0xA3C2);
12933put('YI_SYLLABLE_SHYP, 'codepoint, 0xA3C3);
12934put('YI_SYLLABLE_SHYRX, 'codepoint, 0xA3C4);
12935put('YI_SYLLABLE_SHYR, 'codepoint, 0xA3C5);
12936put('YI_SYLLABLE_RAT, 'codepoint, 0xA3C6);
12937put('YI_SYLLABLE_RAX, 'codepoint, 0xA3C7);
12938put('YI_SYLLABLE_RA, 'codepoint, 0xA3C8);
12939put('YI_SYLLABLE_RAP, 'codepoint, 0xA3C9);
12940put('YI_SYLLABLE_RUOX, 'codepoint, 0xA3CA);
12941put('YI_SYLLABLE_RUO, 'codepoint, 0xA3CB);
12942put('YI_SYLLABLE_RUOP, 'codepoint, 0xA3CC);
12943put('YI_SYLLABLE_ROT, 'codepoint, 0xA3CD);
12944put('YI_SYLLABLE_ROX, 'codepoint, 0xA3CE);
12945put('YI_SYLLABLE_RO, 'codepoint, 0xA3CF);
12946put('YI_SYLLABLE_ROP, 'codepoint, 0xA3D0);
12947put('YI_SYLLABLE_REX, 'codepoint, 0xA3D1);
12948put('YI_SYLLABLE_RE, 'codepoint, 0xA3D2);
12949put('YI_SYLLABLE_REP, 'codepoint, 0xA3D3);
12950put('YI_SYLLABLE_RUT, 'codepoint, 0xA3D4);
12951put('YI_SYLLABLE_RUX, 'codepoint, 0xA3D5);
12952put('YI_SYLLABLE_RU, 'codepoint, 0xA3D6);
12953put('YI_SYLLABLE_RUP, 'codepoint, 0xA3D7);
12954put('YI_SYLLABLE_RURX, 'codepoint, 0xA3D8);
12955put('YI_SYLLABLE_RUR, 'codepoint, 0xA3D9);
12956put('YI_SYLLABLE_RYT, 'codepoint, 0xA3DA);
12957put('YI_SYLLABLE_RYX, 'codepoint, 0xA3DB);
12958put('YI_SYLLABLE_RY, 'codepoint, 0xA3DC);
12959put('YI_SYLLABLE_RYP, 'codepoint, 0xA3DD);
12960put('YI_SYLLABLE_RYRX, 'codepoint, 0xA3DE);
12961put('YI_SYLLABLE_RYR, 'codepoint, 0xA3DF);
12962put('YI_SYLLABLE_JIT, 'codepoint, 0xA3E0);
12963put('YI_SYLLABLE_JIX, 'codepoint, 0xA3E1);
12964put('YI_SYLLABLE_JI, 'codepoint, 0xA3E2);
12965put('YI_SYLLABLE_JIP, 'codepoint, 0xA3E3);
12966put('YI_SYLLABLE_JIET, 'codepoint, 0xA3E4);
12967put('YI_SYLLABLE_JIEX, 'codepoint, 0xA3E5);
12968put('YI_SYLLABLE_JIE, 'codepoint, 0xA3E6);
12969put('YI_SYLLABLE_JIEP, 'codepoint, 0xA3E7);
12970put('YI_SYLLABLE_JUOT, 'codepoint, 0xA3E8);
12971put('YI_SYLLABLE_JUOX, 'codepoint, 0xA3E9);
12972put('YI_SYLLABLE_JUO, 'codepoint, 0xA3EA);
12973put('YI_SYLLABLE_JUOP, 'codepoint, 0xA3EB);
12974put('YI_SYLLABLE_JOT, 'codepoint, 0xA3EC);
12975put('YI_SYLLABLE_JOX, 'codepoint, 0xA3ED);
12976put('YI_SYLLABLE_JO, 'codepoint, 0xA3EE);
12977put('YI_SYLLABLE_JOP, 'codepoint, 0xA3EF);
12978put('YI_SYLLABLE_JUT, 'codepoint, 0xA3F0);
12979put('YI_SYLLABLE_JUX, 'codepoint, 0xA3F1);
12980put('YI_SYLLABLE_JU, 'codepoint, 0xA3F2);
12981put('YI_SYLLABLE_JUP, 'codepoint, 0xA3F3);
12982put('YI_SYLLABLE_JURX, 'codepoint, 0xA3F4);
12983put('YI_SYLLABLE_JUR, 'codepoint, 0xA3F5);
12984put('YI_SYLLABLE_JYT, 'codepoint, 0xA3F6);
12985put('YI_SYLLABLE_JYX, 'codepoint, 0xA3F7);
12986put('YI_SYLLABLE_JY, 'codepoint, 0xA3F8);
12987put('YI_SYLLABLE_JYP, 'codepoint, 0xA3F9);
12988put('YI_SYLLABLE_JYRX, 'codepoint, 0xA3FA);
12989put('YI_SYLLABLE_JYR, 'codepoint, 0xA3FB);
12990put('YI_SYLLABLE_QIT, 'codepoint, 0xA3FC);
12991put('YI_SYLLABLE_QIX, 'codepoint, 0xA3FD);
12992put('YI_SYLLABLE_QI, 'codepoint, 0xA3FE);
12993put('YI_SYLLABLE_QIP, 'codepoint, 0xA3FF);
12994put('YI_SYLLABLE_QIET, 'codepoint, 0xA400);
12995put('YI_SYLLABLE_QIEX, 'codepoint, 0xA401);
12996put('YI_SYLLABLE_QIE, 'codepoint, 0xA402);
12997put('YI_SYLLABLE_QIEP, 'codepoint, 0xA403);
12998put('YI_SYLLABLE_QUOT, 'codepoint, 0xA404);
12999put('YI_SYLLABLE_QUOX, 'codepoint, 0xA405);
13000put('YI_SYLLABLE_QUO, 'codepoint, 0xA406);
13001put('YI_SYLLABLE_QUOP, 'codepoint, 0xA407);
13002put('YI_SYLLABLE_QOT, 'codepoint, 0xA408);
13003put('YI_SYLLABLE_QOX, 'codepoint, 0xA409);
13004put('YI_SYLLABLE_QO, 'codepoint, 0xA40A);
13005put('YI_SYLLABLE_QOP, 'codepoint, 0xA40B);
13006put('YI_SYLLABLE_QUT, 'codepoint, 0xA40C);
13007put('YI_SYLLABLE_QUX, 'codepoint, 0xA40D);
13008put('YI_SYLLABLE_QU, 'codepoint, 0xA40E);
13009put('YI_SYLLABLE_QUP, 'codepoint, 0xA40F);
13010put('YI_SYLLABLE_QURX, 'codepoint, 0xA410);
13011put('YI_SYLLABLE_QUR, 'codepoint, 0xA411);
13012put('YI_SYLLABLE_QYT, 'codepoint, 0xA412);
13013put('YI_SYLLABLE_QYX, 'codepoint, 0xA413);
13014put('YI_SYLLABLE_QY, 'codepoint, 0xA414);
13015put('YI_SYLLABLE_QYP, 'codepoint, 0xA415);
13016put('YI_SYLLABLE_QYRX, 'codepoint, 0xA416);
13017put('YI_SYLLABLE_QYR, 'codepoint, 0xA417);
13018put('YI_SYLLABLE_JJIT, 'codepoint, 0xA418);
13019put('YI_SYLLABLE_JJIX, 'codepoint, 0xA419);
13020put('YI_SYLLABLE_JJI, 'codepoint, 0xA41A);
13021put('YI_SYLLABLE_JJIP, 'codepoint, 0xA41B);
13022put('YI_SYLLABLE_JJIET, 'codepoint, 0xA41C);
13023put('YI_SYLLABLE_JJIEX, 'codepoint, 0xA41D);
13024put('YI_SYLLABLE_JJIE, 'codepoint, 0xA41E);
13025put('YI_SYLLABLE_JJIEP, 'codepoint, 0xA41F);
13026put('YI_SYLLABLE_JJUOX, 'codepoint, 0xA420);
13027put('YI_SYLLABLE_JJUO, 'codepoint, 0xA421);
13028put('YI_SYLLABLE_JJUOP, 'codepoint, 0xA422);
13029put('YI_SYLLABLE_JJOT, 'codepoint, 0xA423);
13030put('YI_SYLLABLE_JJOX, 'codepoint, 0xA424);
13031put('YI_SYLLABLE_JJO, 'codepoint, 0xA425);
13032put('YI_SYLLABLE_JJOP, 'codepoint, 0xA426);
13033put('YI_SYLLABLE_JJUT, 'codepoint, 0xA427);
13034put('YI_SYLLABLE_JJUX, 'codepoint, 0xA428);
13035put('YI_SYLLABLE_JJU, 'codepoint, 0xA429);
13036put('YI_SYLLABLE_JJUP, 'codepoint, 0xA42A);
13037put('YI_SYLLABLE_JJURX, 'codepoint, 0xA42B);
13038put('YI_SYLLABLE_JJUR, 'codepoint, 0xA42C);
13039put('YI_SYLLABLE_JJYT, 'codepoint, 0xA42D);
13040put('YI_SYLLABLE_JJYX, 'codepoint, 0xA42E);
13041put('YI_SYLLABLE_JJY, 'codepoint, 0xA42F);
13042put('YI_SYLLABLE_JJYP, 'codepoint, 0xA430);
13043put('YI_SYLLABLE_NJIT, 'codepoint, 0xA431);
13044put('YI_SYLLABLE_NJIX, 'codepoint, 0xA432);
13045put('YI_SYLLABLE_NJI, 'codepoint, 0xA433);
13046put('YI_SYLLABLE_NJIP, 'codepoint, 0xA434);
13047put('YI_SYLLABLE_NJIET, 'codepoint, 0xA435);
13048put('YI_SYLLABLE_NJIEX, 'codepoint, 0xA436);
13049put('YI_SYLLABLE_NJIE, 'codepoint, 0xA437);
13050put('YI_SYLLABLE_NJIEP, 'codepoint, 0xA438);
13051put('YI_SYLLABLE_NJUOX, 'codepoint, 0xA439);
13052put('YI_SYLLABLE_NJUO, 'codepoint, 0xA43A);
13053put('YI_SYLLABLE_NJOT, 'codepoint, 0xA43B);
13054put('YI_SYLLABLE_NJOX, 'codepoint, 0xA43C);
13055put('YI_SYLLABLE_NJO, 'codepoint, 0xA43D);
13056put('YI_SYLLABLE_NJOP, 'codepoint, 0xA43E);
13057put('YI_SYLLABLE_NJUX, 'codepoint, 0xA43F);
13058put('YI_SYLLABLE_NJU, 'codepoint, 0xA440);
13059put('YI_SYLLABLE_NJUP, 'codepoint, 0xA441);
13060put('YI_SYLLABLE_NJURX, 'codepoint, 0xA442);
13061put('YI_SYLLABLE_NJUR, 'codepoint, 0xA443);
13062put('YI_SYLLABLE_NJYT, 'codepoint, 0xA444);
13063put('YI_SYLLABLE_NJYX, 'codepoint, 0xA445);
13064put('YI_SYLLABLE_NJY, 'codepoint, 0xA446);
13065put('YI_SYLLABLE_NJYP, 'codepoint, 0xA447);
13066put('YI_SYLLABLE_NJYRX, 'codepoint, 0xA448);
13067put('YI_SYLLABLE_NJYR, 'codepoint, 0xA449);
13068put('YI_SYLLABLE_NYIT, 'codepoint, 0xA44A);
13069put('YI_SYLLABLE_NYIX, 'codepoint, 0xA44B);
13070put('YI_SYLLABLE_NYI, 'codepoint, 0xA44C);
13071put('YI_SYLLABLE_NYIP, 'codepoint, 0xA44D);
13072put('YI_SYLLABLE_NYIET, 'codepoint, 0xA44E);
13073put('YI_SYLLABLE_NYIEX, 'codepoint, 0xA44F);
13074put('YI_SYLLABLE_NYIE, 'codepoint, 0xA450);
13075put('YI_SYLLABLE_NYIEP, 'codepoint, 0xA451);
13076put('YI_SYLLABLE_NYUOX, 'codepoint, 0xA452);
13077put('YI_SYLLABLE_NYUO, 'codepoint, 0xA453);
13078put('YI_SYLLABLE_NYUOP, 'codepoint, 0xA454);
13079put('YI_SYLLABLE_NYOT, 'codepoint, 0xA455);
13080put('YI_SYLLABLE_NYOX, 'codepoint, 0xA456);
13081put('YI_SYLLABLE_NYO, 'codepoint, 0xA457);
13082put('YI_SYLLABLE_NYOP, 'codepoint, 0xA458);
13083put('YI_SYLLABLE_NYUT, 'codepoint, 0xA459);
13084put('YI_SYLLABLE_NYUX, 'codepoint, 0xA45A);
13085put('YI_SYLLABLE_NYU, 'codepoint, 0xA45B);
13086put('YI_SYLLABLE_NYUP, 'codepoint, 0xA45C);
13087put('YI_SYLLABLE_XIT, 'codepoint, 0xA45D);
13088put('YI_SYLLABLE_XIX, 'codepoint, 0xA45E);
13089put('YI_SYLLABLE_XI, 'codepoint, 0xA45F);
13090put('YI_SYLLABLE_XIP, 'codepoint, 0xA460);
13091put('YI_SYLLABLE_XIET, 'codepoint, 0xA461);
13092put('YI_SYLLABLE_XIEX, 'codepoint, 0xA462);
13093put('YI_SYLLABLE_XIE, 'codepoint, 0xA463);
13094put('YI_SYLLABLE_XIEP, 'codepoint, 0xA464);
13095put('YI_SYLLABLE_XUOX, 'codepoint, 0xA465);
13096put('YI_SYLLABLE_XUO, 'codepoint, 0xA466);
13097put('YI_SYLLABLE_XOT, 'codepoint, 0xA467);
13098put('YI_SYLLABLE_XOX, 'codepoint, 0xA468);
13099put('YI_SYLLABLE_XO, 'codepoint, 0xA469);
13100put('YI_SYLLABLE_XOP, 'codepoint, 0xA46A);
13101put('YI_SYLLABLE_XYT, 'codepoint, 0xA46B);
13102put('YI_SYLLABLE_XYX, 'codepoint, 0xA46C);
13103put('YI_SYLLABLE_XY, 'codepoint, 0xA46D);
13104put('YI_SYLLABLE_XYP, 'codepoint, 0xA46E);
13105put('YI_SYLLABLE_XYRX, 'codepoint, 0xA46F);
13106put('YI_SYLLABLE_XYR, 'codepoint, 0xA470);
13107put('YI_SYLLABLE_YIT, 'codepoint, 0xA471);
13108put('YI_SYLLABLE_YIX, 'codepoint, 0xA472);
13109put('YI_SYLLABLE_YI, 'codepoint, 0xA473);
13110put('YI_SYLLABLE_YIP, 'codepoint, 0xA474);
13111put('YI_SYLLABLE_YIET, 'codepoint, 0xA475);
13112put('YI_SYLLABLE_YIEX, 'codepoint, 0xA476);
13113put('YI_SYLLABLE_YIE, 'codepoint, 0xA477);
13114put('YI_SYLLABLE_YIEP, 'codepoint, 0xA478);
13115put('YI_SYLLABLE_YUOT, 'codepoint, 0xA479);
13116put('YI_SYLLABLE_YUOX, 'codepoint, 0xA47A);
13117put('YI_SYLLABLE_YUO, 'codepoint, 0xA47B);
13118put('YI_SYLLABLE_YUOP, 'codepoint, 0xA47C);
13119put('YI_SYLLABLE_YOT, 'codepoint, 0xA47D);
13120put('YI_SYLLABLE_YOX, 'codepoint, 0xA47E);
13121put('YI_SYLLABLE_YO, 'codepoint, 0xA47F);
13122put('YI_SYLLABLE_YOP, 'codepoint, 0xA480);
13123put('YI_SYLLABLE_YUT, 'codepoint, 0xA481);
13124put('YI_SYLLABLE_YUX, 'codepoint, 0xA482);
13125put('YI_SYLLABLE_YU, 'codepoint, 0xA483);
13126put('YI_SYLLABLE_YUP, 'codepoint, 0xA484);
13127put('YI_SYLLABLE_YURX, 'codepoint, 0xA485);
13128put('YI_SYLLABLE_YUR, 'codepoint, 0xA486);
13129put('YI_SYLLABLE_YYT, 'codepoint, 0xA487);
13130put('YI_SYLLABLE_YYX, 'codepoint, 0xA488);
13131put('YI_SYLLABLE_YY, 'codepoint, 0xA489);
13132put('YI_SYLLABLE_YYP, 'codepoint, 0xA48A);
13133put('YI_SYLLABLE_YYRX, 'codepoint, 0xA48B);
13134put('YI_SYLLABLE_YYR, 'codepoint, 0xA48C);
13135put('YI_RADICAL_QOT, 'codepoint, 0xA490);
13136put('YI_RADICAL_LI, 'codepoint, 0xA491);
13137put('YI_RADICAL_KIT, 'codepoint, 0xA492);
13138put('YI_RADICAL_NYIP, 'codepoint, 0xA493);
13139put('YI_RADICAL_CYP, 'codepoint, 0xA494);
13140put('YI_RADICAL_SSI, 'codepoint, 0xA495);
13141put('YI_RADICAL_GGOP, 'codepoint, 0xA496);
13142put('YI_RADICAL_GEP, 'codepoint, 0xA497);
13143put('YI_RADICAL_MI, 'codepoint, 0xA498);
13144put('YI_RADICAL_HXIT, 'codepoint, 0xA499);
13145put('YI_RADICAL_LYR, 'codepoint, 0xA49A);
13146put('YI_RADICAL_BBUT, 'codepoint, 0xA49B);
13147put('YI_RADICAL_MOP, 'codepoint, 0xA49C);
13148put('YI_RADICAL_YO, 'codepoint, 0xA49D);
13149put('YI_RADICAL_PUT, 'codepoint, 0xA49E);
13150put('YI_RADICAL_HXUO, 'codepoint, 0xA49F);
13151put('YI_RADICAL_TAT, 'codepoint, 0xA4A0);
13152put('YI_RADICAL_GA, 'codepoint, 0xA4A1);
13153put('YI_RADICAL_ZUP, 'codepoint, 0xA4A2);
13154put('YI_RADICAL_CYT, 'codepoint, 0xA4A3);
13155put('YI_RADICAL_DDUR, 'codepoint, 0xA4A4);
13156put('YI_RADICAL_BUR, 'codepoint, 0xA4A5);
13157put('YI_RADICAL_GGUO, 'codepoint, 0xA4A6);
13158put('YI_RADICAL_NYOP, 'codepoint, 0xA4A7);
13159put('YI_RADICAL_TU, 'codepoint, 0xA4A8);
13160put('YI_RADICAL_OP, 'codepoint, 0xA4A9);
13161put('YI_RADICAL_JJUT, 'codepoint, 0xA4AA);
13162put('YI_RADICAL_ZOT, 'codepoint, 0xA4AB);
13163put('YI_RADICAL_PYT, 'codepoint, 0xA4AC);
13164put('YI_RADICAL_HMO, 'codepoint, 0xA4AD);
13165put('YI_RADICAL_YIT, 'codepoint, 0xA4AE);
13166put('YI_RADICAL_VUR, 'codepoint, 0xA4AF);
13167put('YI_RADICAL_SHY, 'codepoint, 0xA4B0);
13168put('YI_RADICAL_VEP, 'codepoint, 0xA4B1);
13169put('YI_RADICAL_ZA, 'codepoint, 0xA4B2);
13170put('YI_RADICAL_JO, 'codepoint, 0xA4B3);
13171put('YI_RADICAL_NZUP, 'codepoint, 0xA4B4);
13172put('YI_RADICAL_JJY, 'codepoint, 0xA4B5);
13173put('YI_RADICAL_GOT, 'codepoint, 0xA4B6);
13174put('YI_RADICAL_JJIE, 'codepoint, 0xA4B7);
13175put('YI_RADICAL_WO, 'codepoint, 0xA4B8);
13176put('YI_RADICAL_DU, 'codepoint, 0xA4B9);
13177put('YI_RADICAL_SHUR, 'codepoint, 0xA4BA);
13178put('YI_RADICAL_LIE, 'codepoint, 0xA4BB);
13179put('YI_RADICAL_CY, 'codepoint, 0xA4BC);
13180put('YI_RADICAL_CUOP, 'codepoint, 0xA4BD);
13181put('YI_RADICAL_CIP, 'codepoint, 0xA4BE);
13182put('YI_RADICAL_HXOP, 'codepoint, 0xA4BF);
13183put('YI_RADICAL_SHAT, 'codepoint, 0xA4C0);
13184put('YI_RADICAL_ZUR, 'codepoint, 0xA4C1);
13185put('YI_RADICAL_SHOP, 'codepoint, 0xA4C2);
13186put('YI_RADICAL_CHE, 'codepoint, 0xA4C3);
13187put('YI_RADICAL_ZZIET, 'codepoint, 0xA4C4);
13188put('YI_RADICAL_NBIE, 'codepoint, 0xA4C5);
13189put('YI_RADICAL_KE, 'codepoint, 0xA4C6);
13190put('LISU_LETTER_BA, 'codepoint, 0xA4D0);
13191put('LISU_LETTER_PA, 'codepoint, 0xA4D1);
13192put('LISU_LETTER_PHA, 'codepoint, 0xA4D2);
13193put('LISU_LETTER_DA, 'codepoint, 0xA4D3);
13194put('LISU_LETTER_TA, 'codepoint, 0xA4D4);
13195put('LISU_LETTER_THA, 'codepoint, 0xA4D5);
13196put('LISU_LETTER_GA, 'codepoint, 0xA4D6);
13197put('LISU_LETTER_KA, 'codepoint, 0xA4D7);
13198put('LISU_LETTER_KHA, 'codepoint, 0xA4D8);
13199put('LISU_LETTER_JA, 'codepoint, 0xA4D9);
13200put('LISU_LETTER_CA, 'codepoint, 0xA4DA);
13201put('LISU_LETTER_CHA, 'codepoint, 0xA4DB);
13202put('LISU_LETTER_DZA, 'codepoint, 0xA4DC);
13203put('LISU_LETTER_TSA, 'codepoint, 0xA4DD);
13204put('LISU_LETTER_TSHA, 'codepoint, 0xA4DE);
13205put('LISU_LETTER_MA, 'codepoint, 0xA4DF);
13206put('LISU_LETTER_NA, 'codepoint, 0xA4E0);
13207put('LISU_LETTER_LA, 'codepoint, 0xA4E1);
13208put('LISU_LETTER_SA, 'codepoint, 0xA4E2);
13209put('LISU_LETTER_ZHA, 'codepoint, 0xA4E3);
13210put('LISU_LETTER_ZA, 'codepoint, 0xA4E4);
13211put('LISU_LETTER_NGA, 'codepoint, 0xA4E5);
13212put('LISU_LETTER_HA, 'codepoint, 0xA4E6);
13213put('LISU_LETTER_XA, 'codepoint, 0xA4E7);
13214put('LISU_LETTER_HHA, 'codepoint, 0xA4E8);
13215put('LISU_LETTER_FA, 'codepoint, 0xA4E9);
13216put('LISU_LETTER_WA, 'codepoint, 0xA4EA);
13217put('LISU_LETTER_SHA, 'codepoint, 0xA4EB);
13218put('LISU_LETTER_YA, 'codepoint, 0xA4EC);
13219put('LISU_LETTER_GHA, 'codepoint, 0xA4ED);
13220put('LISU_LETTER_A, 'codepoint, 0xA4EE);
13221put('LISU_LETTER_AE, 'codepoint, 0xA4EF);
13222put('LISU_LETTER_E, 'codepoint, 0xA4F0);
13223put('LISU_LETTER_EU, 'codepoint, 0xA4F1);
13224put('LISU_LETTER_I, 'codepoint, 0xA4F2);
13225put('LISU_LETTER_O, 'codepoint, 0xA4F3);
13226put('LISU_LETTER_U, 'codepoint, 0xA4F4);
13227put('LISU_LETTER_UE, 'codepoint, 0xA4F5);
13228put('LISU_LETTER_UH, 'codepoint, 0xA4F6);
13229put('LISU_LETTER_OE, 'codepoint, 0xA4F7);
13230put('LISU_LETTER_TONE_MYA_TI, 'codepoint, 0xA4F8);
13231put('LISU_LETTER_TONE_NA_PO, 'codepoint, 0xA4F9);
13232put('LISU_LETTER_TONE_MYA_CYA, 'codepoint, 0xA4FA);
13233put('LISU_LETTER_TONE_MYA_BO, 'codepoint, 0xA4FB);
13234put('LISU_LETTER_TONE_MYA_NA, 'codepoint, 0xA4FC);
13235put('LISU_LETTER_TONE_MYA_JEU, 'codepoint, 0xA4FD);
13236put('LISU_PUNCTUATION_COMMA, 'codepoint, 0xA4FE);
13237put('LISU_PUNCTUATION_FULL_STOP, 'codepoint, 0xA4FF);
13238put('VAI_SYLLABLE_EE, 'codepoint, 0xA500);
13239put('VAI_SYLLABLE_EEN, 'codepoint, 0xA501);
13240put('VAI_SYLLABLE_HEE, 'codepoint, 0xA502);
13241put('VAI_SYLLABLE_WEE, 'codepoint, 0xA503);
13242put('VAI_SYLLABLE_WEEN, 'codepoint, 0xA504);
13243put('VAI_SYLLABLE_PEE, 'codepoint, 0xA505);
13244put('VAI_SYLLABLE_BHEE, 'codepoint, 0xA506);
13245put('VAI_SYLLABLE_BEE, 'codepoint, 0xA507);
13246put('VAI_SYLLABLE_MBEE, 'codepoint, 0xA508);
13247put('VAI_SYLLABLE_KPEE, 'codepoint, 0xA509);
13248put('VAI_SYLLABLE_MGBEE, 'codepoint, 0xA50A);
13249put('VAI_SYLLABLE_GBEE, 'codepoint, 0xA50B);
13250put('VAI_SYLLABLE_FEE, 'codepoint, 0xA50C);
13251put('VAI_SYLLABLE_VEE, 'codepoint, 0xA50D);
13252put('VAI_SYLLABLE_TEE, 'codepoint, 0xA50E);
13253put('VAI_SYLLABLE_THEE, 'codepoint, 0xA50F);
13254put('VAI_SYLLABLE_DHEE, 'codepoint, 0xA510);
13255put('VAI_SYLLABLE_DHHEE, 'codepoint, 0xA511);
13256put('VAI_SYLLABLE_LEE, 'codepoint, 0xA512);
13257put('VAI_SYLLABLE_REE, 'codepoint, 0xA513);
13258put('VAI_SYLLABLE_DEE, 'codepoint, 0xA514);
13259put('VAI_SYLLABLE_NDEE, 'codepoint, 0xA515);
13260put('VAI_SYLLABLE_SEE, 'codepoint, 0xA516);
13261put('VAI_SYLLABLE_SHEE, 'codepoint, 0xA517);
13262put('VAI_SYLLABLE_ZEE, 'codepoint, 0xA518);
13263put('VAI_SYLLABLE_ZHEE, 'codepoint, 0xA519);
13264put('VAI_SYLLABLE_CEE, 'codepoint, 0xA51A);
13265put('VAI_SYLLABLE_JEE, 'codepoint, 0xA51B);
13266put('VAI_SYLLABLE_NJEE, 'codepoint, 0xA51C);
13267put('VAI_SYLLABLE_YEE, 'codepoint, 0xA51D);
13268put('VAI_SYLLABLE_KEE, 'codepoint, 0xA51E);
13269put('VAI_SYLLABLE_NGGEE, 'codepoint, 0xA51F);
13270put('VAI_SYLLABLE_GEE, 'codepoint, 0xA520);
13271put('VAI_SYLLABLE_MEE, 'codepoint, 0xA521);
13272put('VAI_SYLLABLE_NEE, 'codepoint, 0xA522);
13273put('VAI_SYLLABLE_NYEE, 'codepoint, 0xA523);
13274put('VAI_SYLLABLE_I, 'codepoint, 0xA524);
13275put('VAI_SYLLABLE_IN, 'codepoint, 0xA525);
13276put('VAI_SYLLABLE_HI, 'codepoint, 0xA526);
13277put('VAI_SYLLABLE_HIN, 'codepoint, 0xA527);
13278put('VAI_SYLLABLE_WI, 'codepoint, 0xA528);
13279put('VAI_SYLLABLE_WIN, 'codepoint, 0xA529);
13280put('VAI_SYLLABLE_PI, 'codepoint, 0xA52A);
13281put('VAI_SYLLABLE_BHI, 'codepoint, 0xA52B);
13282put('VAI_SYLLABLE_BI, 'codepoint, 0xA52C);
13283put('VAI_SYLLABLE_MBI, 'codepoint, 0xA52D);
13284put('VAI_SYLLABLE_KPI, 'codepoint, 0xA52E);
13285put('VAI_SYLLABLE_MGBI, 'codepoint, 0xA52F);
13286put('VAI_SYLLABLE_GBI, 'codepoint, 0xA530);
13287put('VAI_SYLLABLE_FI, 'codepoint, 0xA531);
13288put('VAI_SYLLABLE_VI, 'codepoint, 0xA532);
13289put('VAI_SYLLABLE_TI, 'codepoint, 0xA533);
13290put('VAI_SYLLABLE_THI, 'codepoint, 0xA534);
13291put('VAI_SYLLABLE_DHI, 'codepoint, 0xA535);
13292put('VAI_SYLLABLE_DHHI, 'codepoint, 0xA536);
13293put('VAI_SYLLABLE_LI, 'codepoint, 0xA537);
13294put('VAI_SYLLABLE_RI, 'codepoint, 0xA538);
13295put('VAI_SYLLABLE_DI, 'codepoint, 0xA539);
13296put('VAI_SYLLABLE_NDI, 'codepoint, 0xA53A);
13297put('VAI_SYLLABLE_SI, 'codepoint, 0xA53B);
13298put('VAI_SYLLABLE_SHI, 'codepoint, 0xA53C);
13299put('VAI_SYLLABLE_ZI, 'codepoint, 0xA53D);
13300put('VAI_SYLLABLE_ZHI, 'codepoint, 0xA53E);
13301put('VAI_SYLLABLE_CI, 'codepoint, 0xA53F);
13302put('VAI_SYLLABLE_JI, 'codepoint, 0xA540);
13303put('VAI_SYLLABLE_NJI, 'codepoint, 0xA541);
13304put('VAI_SYLLABLE_YI, 'codepoint, 0xA542);
13305put('VAI_SYLLABLE_KI, 'codepoint, 0xA543);
13306put('VAI_SYLLABLE_NGGI, 'codepoint, 0xA544);
13307put('VAI_SYLLABLE_GI, 'codepoint, 0xA545);
13308put('VAI_SYLLABLE_MI, 'codepoint, 0xA546);
13309put('VAI_SYLLABLE_NI, 'codepoint, 0xA547);
13310put('VAI_SYLLABLE_NYI, 'codepoint, 0xA548);
13311put('VAI_SYLLABLE_A, 'codepoint, 0xA549);
13312put('VAI_SYLLABLE_AN, 'codepoint, 0xA54A);
13313put('VAI_SYLLABLE_NGAN, 'codepoint, 0xA54B);
13314put('VAI_SYLLABLE_HA, 'codepoint, 0xA54C);
13315put('VAI_SYLLABLE_HAN, 'codepoint, 0xA54D);
13316put('VAI_SYLLABLE_WA, 'codepoint, 0xA54E);
13317put('VAI_SYLLABLE_WAN, 'codepoint, 0xA54F);
13318put('VAI_SYLLABLE_PA, 'codepoint, 0xA550);
13319put('VAI_SYLLABLE_BHA, 'codepoint, 0xA551);
13320put('VAI_SYLLABLE_BA, 'codepoint, 0xA552);
13321put('VAI_SYLLABLE_MBA, 'codepoint, 0xA553);
13322put('VAI_SYLLABLE_KPA, 'codepoint, 0xA554);
13323put('VAI_SYLLABLE_KPAN, 'codepoint, 0xA555);
13324put('VAI_SYLLABLE_MGBA, 'codepoint, 0xA556);
13325put('VAI_SYLLABLE_GBA, 'codepoint, 0xA557);
13326put('VAI_SYLLABLE_FA, 'codepoint, 0xA558);
13327put('VAI_SYLLABLE_VA, 'codepoint, 0xA559);
13328put('VAI_SYLLABLE_TA, 'codepoint, 0xA55A);
13329put('VAI_SYLLABLE_THA, 'codepoint, 0xA55B);
13330put('VAI_SYLLABLE_DHA, 'codepoint, 0xA55C);
13331put('VAI_SYLLABLE_DHHA, 'codepoint, 0xA55D);
13332put('VAI_SYLLABLE_LA, 'codepoint, 0xA55E);
13333put('VAI_SYLLABLE_RA, 'codepoint, 0xA55F);
13334put('VAI_SYLLABLE_DA, 'codepoint, 0xA560);
13335put('VAI_SYLLABLE_NDA, 'codepoint, 0xA561);
13336put('VAI_SYLLABLE_SA, 'codepoint, 0xA562);
13337put('VAI_SYLLABLE_SHA, 'codepoint, 0xA563);
13338put('VAI_SYLLABLE_ZA, 'codepoint, 0xA564);
13339put('VAI_SYLLABLE_ZHA, 'codepoint, 0xA565);
13340put('VAI_SYLLABLE_CA, 'codepoint, 0xA566);
13341put('VAI_SYLLABLE_JA, 'codepoint, 0xA567);
13342put('VAI_SYLLABLE_NJA, 'codepoint, 0xA568);
13343put('VAI_SYLLABLE_YA, 'codepoint, 0xA569);
13344put('VAI_SYLLABLE_KA, 'codepoint, 0xA56A);
13345put('VAI_SYLLABLE_KAN, 'codepoint, 0xA56B);
13346put('VAI_SYLLABLE_NGGA, 'codepoint, 0xA56C);
13347put('VAI_SYLLABLE_GA, 'codepoint, 0xA56D);
13348put('VAI_SYLLABLE_MA, 'codepoint, 0xA56E);
13349put('VAI_SYLLABLE_NA, 'codepoint, 0xA56F);
13350put('VAI_SYLLABLE_NYA, 'codepoint, 0xA570);
13351put('VAI_SYLLABLE_OO, 'codepoint, 0xA571);
13352put('VAI_SYLLABLE_OON, 'codepoint, 0xA572);
13353put('VAI_SYLLABLE_HOO, 'codepoint, 0xA573);
13354put('VAI_SYLLABLE_WOO, 'codepoint, 0xA574);
13355put('VAI_SYLLABLE_WOON, 'codepoint, 0xA575);
13356put('VAI_SYLLABLE_POO, 'codepoint, 0xA576);
13357put('VAI_SYLLABLE_BHOO, 'codepoint, 0xA577);
13358put('VAI_SYLLABLE_BOO, 'codepoint, 0xA578);
13359put('VAI_SYLLABLE_MBOO, 'codepoint, 0xA579);
13360put('VAI_SYLLABLE_KPOO, 'codepoint, 0xA57A);
13361put('VAI_SYLLABLE_MGBOO, 'codepoint, 0xA57B);
13362put('VAI_SYLLABLE_GBOO, 'codepoint, 0xA57C);
13363put('VAI_SYLLABLE_FOO, 'codepoint, 0xA57D);
13364put('VAI_SYLLABLE_VOO, 'codepoint, 0xA57E);
13365put('VAI_SYLLABLE_TOO, 'codepoint, 0xA57F);
13366put('VAI_SYLLABLE_THOO, 'codepoint, 0xA580);
13367put('VAI_SYLLABLE_DHOO, 'codepoint, 0xA581);
13368put('VAI_SYLLABLE_DHHOO, 'codepoint, 0xA582);
13369put('VAI_SYLLABLE_LOO, 'codepoint, 0xA583);
13370put('VAI_SYLLABLE_ROO, 'codepoint, 0xA584);
13371put('VAI_SYLLABLE_DOO, 'codepoint, 0xA585);
13372put('VAI_SYLLABLE_NDOO, 'codepoint, 0xA586);
13373put('VAI_SYLLABLE_SOO, 'codepoint, 0xA587);
13374put('VAI_SYLLABLE_SHOO, 'codepoint, 0xA588);
13375put('VAI_SYLLABLE_ZOO, 'codepoint, 0xA589);
13376put('VAI_SYLLABLE_ZHOO, 'codepoint, 0xA58A);
13377put('VAI_SYLLABLE_COO, 'codepoint, 0xA58B);
13378put('VAI_SYLLABLE_JOO, 'codepoint, 0xA58C);
13379put('VAI_SYLLABLE_NJOO, 'codepoint, 0xA58D);
13380put('VAI_SYLLABLE_YOO, 'codepoint, 0xA58E);
13381put('VAI_SYLLABLE_KOO, 'codepoint, 0xA58F);
13382put('VAI_SYLLABLE_NGGOO, 'codepoint, 0xA590);
13383put('VAI_SYLLABLE_GOO, 'codepoint, 0xA591);
13384put('VAI_SYLLABLE_MOO, 'codepoint, 0xA592);
13385put('VAI_SYLLABLE_NOO, 'codepoint, 0xA593);
13386put('VAI_SYLLABLE_NYOO, 'codepoint, 0xA594);
13387put('VAI_SYLLABLE_U, 'codepoint, 0xA595);
13388put('VAI_SYLLABLE_UN, 'codepoint, 0xA596);
13389put('VAI_SYLLABLE_HU, 'codepoint, 0xA597);
13390put('VAI_SYLLABLE_HUN, 'codepoint, 0xA598);
13391put('VAI_SYLLABLE_WU, 'codepoint, 0xA599);
13392put('VAI_SYLLABLE_WUN, 'codepoint, 0xA59A);
13393put('VAI_SYLLABLE_PU, 'codepoint, 0xA59B);
13394put('VAI_SYLLABLE_BHU, 'codepoint, 0xA59C);
13395put('VAI_SYLLABLE_BU, 'codepoint, 0xA59D);
13396put('VAI_SYLLABLE_MBU, 'codepoint, 0xA59E);
13397put('VAI_SYLLABLE_KPU, 'codepoint, 0xA59F);
13398put('VAI_SYLLABLE_MGBU, 'codepoint, 0xA5A0);
13399put('VAI_SYLLABLE_GBU, 'codepoint, 0xA5A1);
13400put('VAI_SYLLABLE_FU, 'codepoint, 0xA5A2);
13401put('VAI_SYLLABLE_VU, 'codepoint, 0xA5A3);
13402put('VAI_SYLLABLE_TU, 'codepoint, 0xA5A4);
13403put('VAI_SYLLABLE_THU, 'codepoint, 0xA5A5);
13404put('VAI_SYLLABLE_DHU, 'codepoint, 0xA5A6);
13405put('VAI_SYLLABLE_DHHU, 'codepoint, 0xA5A7);
13406put('VAI_SYLLABLE_LU, 'codepoint, 0xA5A8);
13407put('VAI_SYLLABLE_RU, 'codepoint, 0xA5A9);
13408put('VAI_SYLLABLE_DU, 'codepoint, 0xA5AA);
13409put('VAI_SYLLABLE_NDU, 'codepoint, 0xA5AB);
13410put('VAI_SYLLABLE_SU, 'codepoint, 0xA5AC);
13411put('VAI_SYLLABLE_SHU, 'codepoint, 0xA5AD);
13412put('VAI_SYLLABLE_ZU, 'codepoint, 0xA5AE);
13413put('VAI_SYLLABLE_ZHU, 'codepoint, 0xA5AF);
13414put('VAI_SYLLABLE_CU, 'codepoint, 0xA5B0);
13415put('VAI_SYLLABLE_JU, 'codepoint, 0xA5B1);
13416put('VAI_SYLLABLE_NJU, 'codepoint, 0xA5B2);
13417put('VAI_SYLLABLE_YU, 'codepoint, 0xA5B3);
13418put('VAI_SYLLABLE_KU, 'codepoint, 0xA5B4);
13419put('VAI_SYLLABLE_NGGU, 'codepoint, 0xA5B5);
13420put('VAI_SYLLABLE_GU, 'codepoint, 0xA5B6);
13421put('VAI_SYLLABLE_MU, 'codepoint, 0xA5B7);
13422put('VAI_SYLLABLE_NU, 'codepoint, 0xA5B8);
13423put('VAI_SYLLABLE_NYU, 'codepoint, 0xA5B9);
13424put('VAI_SYLLABLE_O, 'codepoint, 0xA5BA);
13425put('VAI_SYLLABLE_ON, 'codepoint, 0xA5BB);
13426put('VAI_SYLLABLE_NGON, 'codepoint, 0xA5BC);
13427put('VAI_SYLLABLE_HO, 'codepoint, 0xA5BD);
13428put('VAI_SYLLABLE_HON, 'codepoint, 0xA5BE);
13429put('VAI_SYLLABLE_WO, 'codepoint, 0xA5BF);
13430put('VAI_SYLLABLE_WON, 'codepoint, 0xA5C0);
13431put('VAI_SYLLABLE_PO, 'codepoint, 0xA5C1);
13432put('VAI_SYLLABLE_BHO, 'codepoint, 0xA5C2);
13433put('VAI_SYLLABLE_BO, 'codepoint, 0xA5C3);
13434put('VAI_SYLLABLE_MBO, 'codepoint, 0xA5C4);
13435put('VAI_SYLLABLE_KPO, 'codepoint, 0xA5C5);
13436put('VAI_SYLLABLE_MGBO, 'codepoint, 0xA5C6);
13437put('VAI_SYLLABLE_GBO, 'codepoint, 0xA5C7);
13438put('VAI_SYLLABLE_GBON, 'codepoint, 0xA5C8);
13439put('VAI_SYLLABLE_FO, 'codepoint, 0xA5C9);
13440put('VAI_SYLLABLE_VO, 'codepoint, 0xA5CA);
13441put('VAI_SYLLABLE_TO, 'codepoint, 0xA5CB);
13442put('VAI_SYLLABLE_THO, 'codepoint, 0xA5CC);
13443put('VAI_SYLLABLE_DHO, 'codepoint, 0xA5CD);
13444put('VAI_SYLLABLE_DHHO, 'codepoint, 0xA5CE);
13445put('VAI_SYLLABLE_LO, 'codepoint, 0xA5CF);
13446put('VAI_SYLLABLE_RO, 'codepoint, 0xA5D0);
13447put('VAI_SYLLABLE_DO, 'codepoint, 0xA5D1);
13448put('VAI_SYLLABLE_NDO, 'codepoint, 0xA5D2);
13449put('VAI_SYLLABLE_SO, 'codepoint, 0xA5D3);
13450put('VAI_SYLLABLE_SHO, 'codepoint, 0xA5D4);
13451put('VAI_SYLLABLE_ZO, 'codepoint, 0xA5D5);
13452put('VAI_SYLLABLE_ZHO, 'codepoint, 0xA5D6);
13453put('VAI_SYLLABLE_CO, 'codepoint, 0xA5D7);
13454put('VAI_SYLLABLE_JO, 'codepoint, 0xA5D8);
13455put('VAI_SYLLABLE_NJO, 'codepoint, 0xA5D9);
13456put('VAI_SYLLABLE_YO, 'codepoint, 0xA5DA);
13457put('VAI_SYLLABLE_KO, 'codepoint, 0xA5DB);
13458put('VAI_SYLLABLE_NGGO, 'codepoint, 0xA5DC);
13459put('VAI_SYLLABLE_GO, 'codepoint, 0xA5DD);
13460put('VAI_SYLLABLE_MO, 'codepoint, 0xA5DE);
13461put('VAI_SYLLABLE_NO, 'codepoint, 0xA5DF);
13462put('VAI_SYLLABLE_NYO, 'codepoint, 0xA5E0);
13463put('VAI_SYLLABLE_E, 'codepoint, 0xA5E1);
13464put('VAI_SYLLABLE_EN, 'codepoint, 0xA5E2);
13465put('VAI_SYLLABLE_NGEN, 'codepoint, 0xA5E3);
13466put('VAI_SYLLABLE_HE, 'codepoint, 0xA5E4);
13467put('VAI_SYLLABLE_HEN, 'codepoint, 0xA5E5);
13468put('VAI_SYLLABLE_WE, 'codepoint, 0xA5E6);
13469put('VAI_SYLLABLE_WEN, 'codepoint, 0xA5E7);
13470put('VAI_SYLLABLE_PE, 'codepoint, 0xA5E8);
13471put('VAI_SYLLABLE_BHE, 'codepoint, 0xA5E9);
13472put('VAI_SYLLABLE_BE, 'codepoint, 0xA5EA);
13473put('VAI_SYLLABLE_MBE, 'codepoint, 0xA5EB);
13474put('VAI_SYLLABLE_KPE, 'codepoint, 0xA5EC);
13475put('VAI_SYLLABLE_KPEN, 'codepoint, 0xA5ED);
13476put('VAI_SYLLABLE_MGBE, 'codepoint, 0xA5EE);
13477put('VAI_SYLLABLE_GBE, 'codepoint, 0xA5EF);
13478put('VAI_SYLLABLE_GBEN, 'codepoint, 0xA5F0);
13479put('VAI_SYLLABLE_FE, 'codepoint, 0xA5F1);
13480put('VAI_SYLLABLE_VE, 'codepoint, 0xA5F2);
13481put('VAI_SYLLABLE_TE, 'codepoint, 0xA5F3);
13482put('VAI_SYLLABLE_THE, 'codepoint, 0xA5F4);
13483put('VAI_SYLLABLE_DHE, 'codepoint, 0xA5F5);
13484put('VAI_SYLLABLE_DHHE, 'codepoint, 0xA5F6);
13485put('VAI_SYLLABLE_LE, 'codepoint, 0xA5F7);
13486put('VAI_SYLLABLE_RE, 'codepoint, 0xA5F8);
13487put('VAI_SYLLABLE_DE, 'codepoint, 0xA5F9);
13488put('VAI_SYLLABLE_NDE, 'codepoint, 0xA5FA);
13489put('VAI_SYLLABLE_SE, 'codepoint, 0xA5FB);
13490put('VAI_SYLLABLE_SHE, 'codepoint, 0xA5FC);
13491put('VAI_SYLLABLE_ZE, 'codepoint, 0xA5FD);
13492put('VAI_SYLLABLE_ZHE, 'codepoint, 0xA5FE);
13493put('VAI_SYLLABLE_CE, 'codepoint, 0xA5FF);
13494put('VAI_SYLLABLE_JE, 'codepoint, 0xA600);
13495put('VAI_SYLLABLE_NJE, 'codepoint, 0xA601);
13496put('VAI_SYLLABLE_YE, 'codepoint, 0xA602);
13497put('VAI_SYLLABLE_KE, 'codepoint, 0xA603);
13498put('VAI_SYLLABLE_NGGE, 'codepoint, 0xA604);
13499put('VAI_SYLLABLE_NGGEN, 'codepoint, 0xA605);
13500put('VAI_SYLLABLE_GE, 'codepoint, 0xA606);
13501put('VAI_SYLLABLE_GEN, 'codepoint, 0xA607);
13502put('VAI_SYLLABLE_ME, 'codepoint, 0xA608);
13503put('VAI_SYLLABLE_NE, 'codepoint, 0xA609);
13504put('VAI_SYLLABLE_NYE, 'codepoint, 0xA60A);
13505put('VAI_SYLLABLE_NG, 'codepoint, 0xA60B);
13506put('VAI_SYLLABLE_LENGTHENER, 'codepoint, 0xA60C);
13507put('VAI_COMMA, 'codepoint, 0xA60D);
13508put('VAI_FULL_STOP, 'codepoint, 0xA60E);
13509put('VAI_QUESTION_MARK, 'codepoint, 0xA60F);
13510put('VAI_SYLLABLE_NDOLE_FA, 'codepoint, 0xA610);
13511put('VAI_SYLLABLE_NDOLE_KA, 'codepoint, 0xA611);
13512put('VAI_SYLLABLE_NDOLE_SOO, 'codepoint, 0xA612);
13513put('VAI_SYMBOL_FEENG, 'codepoint, 0xA613);
13514put('VAI_SYMBOL_KEENG, 'codepoint, 0xA614);
13515put('VAI_SYMBOL_TING, 'codepoint, 0xA615);
13516put('VAI_SYMBOL_NII, 'codepoint, 0xA616);
13517put('VAI_SYMBOL_BANG, 'codepoint, 0xA617);
13518put('VAI_SYMBOL_FAA, 'codepoint, 0xA618);
13519put('VAI_SYMBOL_TAA, 'codepoint, 0xA619);
13520put('VAI_SYMBOL_DANG, 'codepoint, 0xA61A);
13521put('VAI_SYMBOL_DOONG, 'codepoint, 0xA61B);
13522put('VAI_SYMBOL_KUNG, 'codepoint, 0xA61C);
13523put('VAI_SYMBOL_TONG, 'codepoint, 0xA61D);
13524put('VAI_SYMBOL_DO_O, 'codepoint, 0xA61E);
13525put('VAI_SYMBOL_JONG, 'codepoint, 0xA61F);
13526put('VAI_DIGIT_ZERO, 'codepoint, 0xA620);
13527put('VAI_DIGIT_ONE, 'codepoint, 0xA621);
13528put('VAI_DIGIT_TWO, 'codepoint, 0xA622);
13529put('VAI_DIGIT_THREE, 'codepoint, 0xA623);
13530put('VAI_DIGIT_FOUR, 'codepoint, 0xA624);
13531put('VAI_DIGIT_FIVE, 'codepoint, 0xA625);
13532put('VAI_DIGIT_SIX, 'codepoint, 0xA626);
13533put('VAI_DIGIT_SEVEN, 'codepoint, 0xA627);
13534put('VAI_DIGIT_EIGHT, 'codepoint, 0xA628);
13535put('VAI_DIGIT_NINE, 'codepoint, 0xA629);
13536put('VAI_SYLLABLE_NDOLE_MA, 'codepoint, 0xA62A);
13537put('VAI_SYLLABLE_NDOLE_DO, 'codepoint, 0xA62B);
13538put('CYRILLIC_CAPITAL_LETTER_ZEMLYA, 'codepoint, 0xA640);
13539put('CYRILLIC_SMALL_LETTER_ZEMLYA, 'codepoint, 0xA641);
13540put('CYRILLIC_CAPITAL_LETTER_DZELO, 'codepoint, 0xA642);
13541put('CYRILLIC_SMALL_LETTER_DZELO, 'codepoint, 0xA643);
13542put('CYRILLIC_CAPITAL_LETTER_REVERSED_DZE, 'codepoint, 0xA644);
13543put('CYRILLIC_SMALL_LETTER_REVERSED_DZE, 'codepoint, 0xA645);
13544put('CYRILLIC_CAPITAL_LETTER_IOTA, 'codepoint, 0xA646);
13545put('CYRILLIC_SMALL_LETTER_IOTA, 'codepoint, 0xA647);
13546put('CYRILLIC_CAPITAL_LETTER_DJERV, 'codepoint, 0xA648);
13547put('CYRILLIC_SMALL_LETTER_DJERV, 'codepoint, 0xA649);
13548put('CYRILLIC_CAPITAL_LETTER_MONOGRAPH_UK, 'codepoint, 0xA64A);
13549put('CYRILLIC_SMALL_LETTER_MONOGRAPH_UK, 'codepoint, 0xA64B);
13550put('CYRILLIC_CAPITAL_LETTER_BROAD_OMEGA, 'codepoint, 0xA64C);
13551put('CYRILLIC_SMALL_LETTER_BROAD_OMEGA, 'codepoint, 0xA64D);
13552put('CYRILLIC_CAPITAL_LETTER_NEUTRAL_YER, 'codepoint, 0xA64E);
13553put('CYRILLIC_SMALL_LETTER_NEUTRAL_YER, 'codepoint, 0xA64F);
13554put('CYRILLIC_CAPITAL_LETTER_YERU_WITH_BACK_YER, 'codepoint, 0xA650);
13555put('CYRILLIC_SMALL_LETTER_YERU_WITH_BACK_YER, 'codepoint, 0xA651);
13556put('CYRILLIC_CAPITAL_LETTER_IOTIFIED_YAT, 'codepoint, 0xA652);
13557put('CYRILLIC_SMALL_LETTER_IOTIFIED_YAT, 'codepoint, 0xA653);
13558put('CYRILLIC_CAPITAL_LETTER_REVERSED_YU, 'codepoint, 0xA654);
13559put('CYRILLIC_SMALL_LETTER_REVERSED_YU, 'codepoint, 0xA655);
13560put('CYRILLIC_CAPITAL_LETTER_IOTIFIED_A, 'codepoint, 0xA656);
13561put('CYRILLIC_SMALL_LETTER_IOTIFIED_A, 'codepoint, 0xA657);
13562put('CYRILLIC_CAPITAL_LETTER_CLOSED_LITTLE_YUS, 'codepoint, 0xA658);
13563put('CYRILLIC_SMALL_LETTER_CLOSED_LITTLE_YUS, 'codepoint, 0xA659);
13564put('CYRILLIC_CAPITAL_LETTER_BLENDED_YUS, 'codepoint, 0xA65A);
13565put('CYRILLIC_SMALL_LETTER_BLENDED_YUS, 'codepoint, 0xA65B);
13566put('CYRILLIC_CAPITAL_LETTER_IOTIFIED_CLOSED_LITTLE_YUS, 'codepoint, 0xA65C);
13567put('CYRILLIC_SMALL_LETTER_IOTIFIED_CLOSED_LITTLE_YUS, 'codepoint, 0xA65D);
13568put('CYRILLIC_CAPITAL_LETTER_YN, 'codepoint, 0xA65E);
13569put('CYRILLIC_SMALL_LETTER_YN, 'codepoint, 0xA65F);
13570put('CYRILLIC_CAPITAL_LETTER_REVERSED_TSE, 'codepoint, 0xA660);
13571put('CYRILLIC_SMALL_LETTER_REVERSED_TSE, 'codepoint, 0xA661);
13572put('CYRILLIC_CAPITAL_LETTER_SOFT_DE, 'codepoint, 0xA662);
13573put('CYRILLIC_SMALL_LETTER_SOFT_DE, 'codepoint, 0xA663);
13574put('CYRILLIC_CAPITAL_LETTER_SOFT_EL, 'codepoint, 0xA664);
13575put('CYRILLIC_SMALL_LETTER_SOFT_EL, 'codepoint, 0xA665);
13576put('CYRILLIC_CAPITAL_LETTER_SOFT_EM, 'codepoint, 0xA666);
13577put('CYRILLIC_SMALL_LETTER_SOFT_EM, 'codepoint, 0xA667);
13578put('CYRILLIC_CAPITAL_LETTER_MONOCULAR_O, 'codepoint, 0xA668);
13579put('CYRILLIC_SMALL_LETTER_MONOCULAR_O, 'codepoint, 0xA669);
13580put('CYRILLIC_CAPITAL_LETTER_BINOCULAR_O, 'codepoint, 0xA66A);
13581put('CYRILLIC_SMALL_LETTER_BINOCULAR_O, 'codepoint, 0xA66B);
13582put('CYRILLIC_CAPITAL_LETTER_DOUBLE_MONOCULAR_O, 'codepoint, 0xA66C);
13583put('CYRILLIC_SMALL_LETTER_DOUBLE_MONOCULAR_O, 'codepoint, 0xA66D);
13584put('CYRILLIC_LETTER_MULTIOCULAR_O, 'codepoint, 0xA66E);
13585put('COMBINING_CYRILLIC_VZMET, 'codepoint, 0xA66F);
13586put('COMBINING_CYRILLIC_TEN_MILLIONS_SIGN, 'codepoint, 0xA670);
13587put('COMBINING_CYRILLIC_HUNDRED_MILLIONS_SIGN, 'codepoint, 0xA671);
13588put('COMBINING_CYRILLIC_THOUSAND_MILLIONS_SIGN, 'codepoint, 0xA672);
13589put('SLAVONIC_ASTERISK, 'codepoint, 0xA673);
13590put('COMBINING_CYRILLIC_LETTER_UKRAINIAN_IE, 'codepoint, 0xA674);
13591put('COMBINING_CYRILLIC_LETTER_I, 'codepoint, 0xA675);
13592put('COMBINING_CYRILLIC_LETTER_YI, 'codepoint, 0xA676);
13593put('COMBINING_CYRILLIC_LETTER_U, 'codepoint, 0xA677);
13594put('COMBINING_CYRILLIC_LETTER_HARD_SIGN, 'codepoint, 0xA678);
13595put('COMBINING_CYRILLIC_LETTER_YERU, 'codepoint, 0xA679);
13596put('COMBINING_CYRILLIC_LETTER_SOFT_SIGN, 'codepoint, 0xA67A);
13597put('COMBINING_CYRILLIC_LETTER_OMEGA, 'codepoint, 0xA67B);
13598put('COMBINING_CYRILLIC_KAVYKA, 'codepoint, 0xA67C);
13599put('COMBINING_CYRILLIC_PAYEROK, 'codepoint, 0xA67D);
13600put('CYRILLIC_KAVYKA, 'codepoint, 0xA67E);
13601put('CYRILLIC_PAYEROK, 'codepoint, 0xA67F);
13602put('CYRILLIC_CAPITAL_LETTER_DWE, 'codepoint, 0xA680);
13603put('CYRILLIC_SMALL_LETTER_DWE, 'codepoint, 0xA681);
13604put('CYRILLIC_CAPITAL_LETTER_DZWE, 'codepoint, 0xA682);
13605put('CYRILLIC_SMALL_LETTER_DZWE, 'codepoint, 0xA683);
13606put('CYRILLIC_CAPITAL_LETTER_ZHWE, 'codepoint, 0xA684);
13607put('CYRILLIC_SMALL_LETTER_ZHWE, 'codepoint, 0xA685);
13608put('CYRILLIC_CAPITAL_LETTER_CCHE, 'codepoint, 0xA686);
13609put('CYRILLIC_SMALL_LETTER_CCHE, 'codepoint, 0xA687);
13610put('CYRILLIC_CAPITAL_LETTER_DZZE, 'codepoint, 0xA688);
13611put('CYRILLIC_SMALL_LETTER_DZZE, 'codepoint, 0xA689);
13612put('CYRILLIC_CAPITAL_LETTER_TE_WITH_MIDDLE_HOOK, 'codepoint, 0xA68A);
13613put('CYRILLIC_SMALL_LETTER_TE_WITH_MIDDLE_HOOK, 'codepoint, 0xA68B);
13614put('CYRILLIC_CAPITAL_LETTER_TWE, 'codepoint, 0xA68C);
13615put('CYRILLIC_SMALL_LETTER_TWE, 'codepoint, 0xA68D);
13616put('CYRILLIC_CAPITAL_LETTER_TSWE, 'codepoint, 0xA68E);
13617put('CYRILLIC_SMALL_LETTER_TSWE, 'codepoint, 0xA68F);
13618put('CYRILLIC_CAPITAL_LETTER_TSSE, 'codepoint, 0xA690);
13619put('CYRILLIC_SMALL_LETTER_TSSE, 'codepoint, 0xA691);
13620put('CYRILLIC_CAPITAL_LETTER_TCHE, 'codepoint, 0xA692);
13621put('CYRILLIC_SMALL_LETTER_TCHE, 'codepoint, 0xA693);
13622put('CYRILLIC_CAPITAL_LETTER_HWE, 'codepoint, 0xA694);
13623put('CYRILLIC_SMALL_LETTER_HWE, 'codepoint, 0xA695);
13624put('CYRILLIC_CAPITAL_LETTER_SHWE, 'codepoint, 0xA696);
13625put('CYRILLIC_SMALL_LETTER_SHWE, 'codepoint, 0xA697);
13626put('CYRILLIC_CAPITAL_LETTER_DOUBLE_O, 'codepoint, 0xA698);
13627put('CYRILLIC_SMALL_LETTER_DOUBLE_O, 'codepoint, 0xA699);
13628put('CYRILLIC_CAPITAL_LETTER_CROSSED_O, 'codepoint, 0xA69A);
13629put('CYRILLIC_SMALL_LETTER_CROSSED_O, 'codepoint, 0xA69B);
13630put('MODIFIER_LETTER_CYRILLIC_HARD_SIGN, 'codepoint, 0xA69C);
13631put('MODIFIER_LETTER_CYRILLIC_SOFT_SIGN, 'codepoint, 0xA69D);
13632put('COMBINING_CYRILLIC_LETTER_IOTIFIED_E, 'codepoint, 0xA69F);
13633put('BAMUM_LETTER_A, 'codepoint, 0xA6A0);
13634put('BAMUM_LETTER_KA, 'codepoint, 0xA6A1);
13635put('BAMUM_LETTER_U, 'codepoint, 0xA6A2);
13636put('BAMUM_LETTER_KU, 'codepoint, 0xA6A3);
13637put('BAMUM_LETTER_EE, 'codepoint, 0xA6A4);
13638put('BAMUM_LETTER_REE, 'codepoint, 0xA6A5);
13639put('BAMUM_LETTER_TAE, 'codepoint, 0xA6A6);
13640put('BAMUM_LETTER_O, 'codepoint, 0xA6A7);
13641put('BAMUM_LETTER_NYI, 'codepoint, 0xA6A8);
13642put('BAMUM_LETTER_I, 'codepoint, 0xA6A9);
13643put('BAMUM_LETTER_LA, 'codepoint, 0xA6AA);
13644put('BAMUM_LETTER_PA, 'codepoint, 0xA6AB);
13645put('BAMUM_LETTER_RII, 'codepoint, 0xA6AC);
13646put('BAMUM_LETTER_RIEE, 'codepoint, 0xA6AD);
13647put('BAMUM_LETTER_LEEEE, 'codepoint, 0xA6AE);
13648put('BAMUM_LETTER_MEEEE, 'codepoint, 0xA6AF);
13649put('BAMUM_LETTER_TAA, 'codepoint, 0xA6B0);
13650put('BAMUM_LETTER_NDAA, 'codepoint, 0xA6B1);
13651put('BAMUM_LETTER_NJAEM, 'codepoint, 0xA6B2);
13652put('BAMUM_LETTER_M, 'codepoint, 0xA6B3);
13653put('BAMUM_LETTER_SUU, 'codepoint, 0xA6B4);
13654put('BAMUM_LETTER_MU, 'codepoint, 0xA6B5);
13655put('BAMUM_LETTER_SHII, 'codepoint, 0xA6B6);
13656put('BAMUM_LETTER_SI, 'codepoint, 0xA6B7);
13657put('BAMUM_LETTER_SHEUX, 'codepoint, 0xA6B8);
13658put('BAMUM_LETTER_SEUX, 'codepoint, 0xA6B9);
13659put('BAMUM_LETTER_KYEE, 'codepoint, 0xA6BA);
13660put('BAMUM_LETTER_KET, 'codepoint, 0xA6BB);
13661put('BAMUM_LETTER_NUAE, 'codepoint, 0xA6BC);
13662put('BAMUM_LETTER_NU, 'codepoint, 0xA6BD);
13663put('BAMUM_LETTER_NJUAE, 'codepoint, 0xA6BE);
13664put('BAMUM_LETTER_YOQ, 'codepoint, 0xA6BF);
13665put('BAMUM_LETTER_SHU, 'codepoint, 0xA6C0);
13666put('BAMUM_LETTER_YUQ, 'codepoint, 0xA6C1);
13667put('BAMUM_LETTER_YA, 'codepoint, 0xA6C2);
13668put('BAMUM_LETTER_NSHA, 'codepoint, 0xA6C3);
13669put('BAMUM_LETTER_KEUX, 'codepoint, 0xA6C4);
13670put('BAMUM_LETTER_PEUX, 'codepoint, 0xA6C5);
13671put('BAMUM_LETTER_NJEE, 'codepoint, 0xA6C6);
13672put('BAMUM_LETTER_NTEE, 'codepoint, 0xA6C7);
13673put('BAMUM_LETTER_PUE, 'codepoint, 0xA6C8);
13674put('BAMUM_LETTER_WUE, 'codepoint, 0xA6C9);
13675put('BAMUM_LETTER_PEE, 'codepoint, 0xA6CA);
13676put('BAMUM_LETTER_FEE, 'codepoint, 0xA6CB);
13677put('BAMUM_LETTER_RU, 'codepoint, 0xA6CC);
13678put('BAMUM_LETTER_LU, 'codepoint, 0xA6CD);
13679put('BAMUM_LETTER_MI, 'codepoint, 0xA6CE);
13680put('BAMUM_LETTER_NI, 'codepoint, 0xA6CF);
13681put('BAMUM_LETTER_REUX, 'codepoint, 0xA6D0);
13682put('BAMUM_LETTER_RAE, 'codepoint, 0xA6D1);
13683put('BAMUM_LETTER_KEN, 'codepoint, 0xA6D2);
13684put('BAMUM_LETTER_NGKWAEN, 'codepoint, 0xA6D3);
13685put('BAMUM_LETTER_NGGA, 'codepoint, 0xA6D4);
13686put('BAMUM_LETTER_NGA, 'codepoint, 0xA6D5);
13687put('BAMUM_LETTER_SHO, 'codepoint, 0xA6D6);
13688put('BAMUM_LETTER_PUAE, 'codepoint, 0xA6D7);
13689put('BAMUM_LETTER_FU, 'codepoint, 0xA6D8);
13690put('BAMUM_LETTER_FOM, 'codepoint, 0xA6D9);
13691put('BAMUM_LETTER_WA, 'codepoint, 0xA6DA);
13692put('BAMUM_LETTER_NA, 'codepoint, 0xA6DB);
13693put('BAMUM_LETTER_LI, 'codepoint, 0xA6DC);
13694put('BAMUM_LETTER_PI, 'codepoint, 0xA6DD);
13695put('BAMUM_LETTER_LOQ, 'codepoint, 0xA6DE);
13696put('BAMUM_LETTER_KO, 'codepoint, 0xA6DF);
13697put('BAMUM_LETTER_MBEN, 'codepoint, 0xA6E0);
13698put('BAMUM_LETTER_REN, 'codepoint, 0xA6E1);
13699put('BAMUM_LETTER_MEN, 'codepoint, 0xA6E2);
13700put('BAMUM_LETTER_MA, 'codepoint, 0xA6E3);
13701put('BAMUM_LETTER_TI, 'codepoint, 0xA6E4);
13702put('BAMUM_LETTER_KI, 'codepoint, 0xA6E5);
13703put('BAMUM_LETTER_MO, 'codepoint, 0xA6E6);
13704put('BAMUM_LETTER_MBAA, 'codepoint, 0xA6E7);
13705put('BAMUM_LETTER_TET, 'codepoint, 0xA6E8);
13706put('BAMUM_LETTER_KPA, 'codepoint, 0xA6E9);
13707put('BAMUM_LETTER_TEN, 'codepoint, 0xA6EA);
13708put('BAMUM_LETTER_NTUU, 'codepoint, 0xA6EB);
13709put('BAMUM_LETTER_SAMBA, 'codepoint, 0xA6EC);
13710put('BAMUM_LETTER_FAAMAE, 'codepoint, 0xA6ED);
13711put('BAMUM_LETTER_KOVUU, 'codepoint, 0xA6EE);
13712put('BAMUM_LETTER_KOGHOM, 'codepoint, 0xA6EF);
13713put('BAMUM_COMBINING_MARK_KOQNDON, 'codepoint, 0xA6F0);
13714put('BAMUM_COMBINING_MARK_TUKWENTIS, 'codepoint, 0xA6F1);
13715put('BAMUM_NJAEMLI, 'codepoint, 0xA6F2);
13716put('BAMUM_FULL_STOP, 'codepoint, 0xA6F3);
13717put('BAMUM_COLON, 'codepoint, 0xA6F4);
13718put('BAMUM_COMMA, 'codepoint, 0xA6F5);
13719put('BAMUM_SEMICOLON, 'codepoint, 0xA6F6);
13720put('BAMUM_QUESTION_MARK, 'codepoint, 0xA6F7);
13721put('MODIFIER_LETTER_CHINESE_TONE_YIN_PING, 'codepoint, 0xA700);
13722put('MODIFIER_LETTER_CHINESE_TONE_YANG_PING, 'codepoint, 0xA701);
13723put('MODIFIER_LETTER_CHINESE_TONE_YIN_SHANG, 'codepoint, 0xA702);
13724put('MODIFIER_LETTER_CHINESE_TONE_YANG_SHANG, 'codepoint, 0xA703);
13725put('MODIFIER_LETTER_CHINESE_TONE_YIN_QU, 'codepoint, 0xA704);
13726put('MODIFIER_LETTER_CHINESE_TONE_YANG_QU, 'codepoint, 0xA705);
13727put('MODIFIER_LETTER_CHINESE_TONE_YIN_RU, 'codepoint, 0xA706);
13728put('MODIFIER_LETTER_CHINESE_TONE_YANG_RU, 'codepoint, 0xA707);
13729put('MODIFIER_LETTER_EXTRA_HIGH_DOTTED_TONE_BAR, 'codepoint, 0xA708);
13730put('MODIFIER_LETTER_HIGH_DOTTED_TONE_BAR, 'codepoint, 0xA709);
13731put('MODIFIER_LETTER_MID_DOTTED_TONE_BAR, 'codepoint, 0xA70A);
13732put('MODIFIER_LETTER_LOW_DOTTED_TONE_BAR, 'codepoint, 0xA70B);
13733put('MODIFIER_LETTER_EXTRA_LOW_DOTTED_TONE_BAR, 'codepoint, 0xA70C);
13734put('MODIFIER_LETTER_EXTRA_HIGH_DOTTED_LEFT_STEM_TONE_BAR, 'codepoint, 0xA70D);
13735put('MODIFIER_LETTER_HIGH_DOTTED_LEFT_STEM_TONE_BAR, 'codepoint, 0xA70E);
13736put('MODIFIER_LETTER_MID_DOTTED_LEFT_STEM_TONE_BAR, 'codepoint, 0xA70F);
13737put('MODIFIER_LETTER_LOW_DOTTED_LEFT_STEM_TONE_BAR, 'codepoint, 0xA710);
13738put('MODIFIER_LETTER_EXTRA_LOW_DOTTED_LEFT_STEM_TONE_BAR, 'codepoint, 0xA711);
13739put('MODIFIER_LETTER_EXTRA_HIGH_LEFT_STEM_TONE_BAR, 'codepoint, 0xA712);
13740put('MODIFIER_LETTER_HIGH_LEFT_STEM_TONE_BAR, 'codepoint, 0xA713);
13741put('MODIFIER_LETTER_MID_LEFT_STEM_TONE_BAR, 'codepoint, 0xA714);
13742put('MODIFIER_LETTER_LOW_LEFT_STEM_TONE_BAR, 'codepoint, 0xA715);
13743put('MODIFIER_LETTER_EXTRA_LOW_LEFT_STEM_TONE_BAR, 'codepoint, 0xA716);
13744put('MODIFIER_LETTER_DOT_VERTICAL_BAR, 'codepoint, 0xA717);
13745put('MODIFIER_LETTER_DOT_SLASH, 'codepoint, 0xA718);
13746put('MODIFIER_LETTER_DOT_HORIZONTAL_BAR, 'codepoint, 0xA719);
13747put('MODIFIER_LETTER_LOWER_RIGHT_CORNER_ANGLE, 'codepoint, 0xA71A);
13748put('MODIFIER_LETTER_RAISED_UP_ARROW, 'codepoint, 0xA71B);
13749put('MODIFIER_LETTER_RAISED_DOWN_ARROW, 'codepoint, 0xA71C);
13750put('MODIFIER_LETTER_RAISED_EXCLAMATION_MARK, 'codepoint, 0xA71D);
13751put('MODIFIER_LETTER_RAISED_INVERTED_EXCLAMATION_MARK, 'codepoint, 0xA71E);
13752put('MODIFIER_LETTER_LOW_INVERTED_EXCLAMATION_MARK, 'codepoint, 0xA71F);
13753put('MODIFIER_LETTER_STRESS_AND_HIGH_TONE, 'codepoint, 0xA720);
13754put('MODIFIER_LETTER_STRESS_AND_LOW_TONE, 'codepoint, 0xA721);
13755put('LATIN_CAPITAL_LETTER_EGYPTOLOGICAL_ALEF, 'codepoint, 0xA722);
13756put('LATIN_SMALL_LETTER_EGYPTOLOGICAL_ALEF, 'codepoint, 0xA723);
13757put('LATIN_CAPITAL_LETTER_EGYPTOLOGICAL_AIN, 'codepoint, 0xA724);
13758put('LATIN_SMALL_LETTER_EGYPTOLOGICAL_AIN, 'codepoint, 0xA725);
13759put('LATIN_CAPITAL_LETTER_HENG, 'codepoint, 0xA726);
13760put('LATIN_SMALL_LETTER_HENG, 'codepoint, 0xA727);
13761put('LATIN_CAPITAL_LETTER_TZ, 'codepoint, 0xA728);
13762put('LATIN_SMALL_LETTER_TZ, 'codepoint, 0xA729);
13763put('LATIN_CAPITAL_LETTER_TRESILLO, 'codepoint, 0xA72A);
13764put('LATIN_SMALL_LETTER_TRESILLO, 'codepoint, 0xA72B);
13765put('LATIN_CAPITAL_LETTER_CUATRILLO, 'codepoint, 0xA72C);
13766put('LATIN_SMALL_LETTER_CUATRILLO, 'codepoint, 0xA72D);
13767put('LATIN_CAPITAL_LETTER_CUATRILLO_WITH_COMMA, 'codepoint, 0xA72E);
13768put('LATIN_SMALL_LETTER_CUATRILLO_WITH_COMMA, 'codepoint, 0xA72F);
13769put('LATIN_LETTER_SMALL_CAPITAL_F, 'codepoint, 0xA730);
13770put('LATIN_LETTER_SMALL_CAPITAL_S, 'codepoint, 0xA731);
13771put('LATIN_CAPITAL_LETTER_AA, 'codepoint, 0xA732);
13772put('LATIN_SMALL_LETTER_AA, 'codepoint, 0xA733);
13773put('LATIN_CAPITAL_LETTER_AO, 'codepoint, 0xA734);
13774put('LATIN_SMALL_LETTER_AO, 'codepoint, 0xA735);
13775put('LATIN_CAPITAL_LETTER_AU, 'codepoint, 0xA736);
13776put('LATIN_SMALL_LETTER_AU, 'codepoint, 0xA737);
13777put('LATIN_CAPITAL_LETTER_AV, 'codepoint, 0xA738);
13778put('LATIN_SMALL_LETTER_AV, 'codepoint, 0xA739);
13779put('LATIN_CAPITAL_LETTER_AV_WITH_HORIZONTAL_BAR, 'codepoint, 0xA73A);
13780put('LATIN_SMALL_LETTER_AV_WITH_HORIZONTAL_BAR, 'codepoint, 0xA73B);
13781put('LATIN_CAPITAL_LETTER_AY, 'codepoint, 0xA73C);
13782put('LATIN_SMALL_LETTER_AY, 'codepoint, 0xA73D);
13783put('LATIN_CAPITAL_LETTER_REVERSED_C_WITH_DOT, 'codepoint, 0xA73E);
13784put('LATIN_SMALL_LETTER_REVERSED_C_WITH_DOT, 'codepoint, 0xA73F);
13785put('LATIN_CAPITAL_LETTER_K_WITH_STROKE, 'codepoint, 0xA740);
13786put('LATIN_SMALL_LETTER_K_WITH_STROKE, 'codepoint, 0xA741);
13787put('LATIN_CAPITAL_LETTER_K_WITH_DIAGONAL_STROKE, 'codepoint, 0xA742);
13788put('LATIN_SMALL_LETTER_K_WITH_DIAGONAL_STROKE, 'codepoint, 0xA743);
13789put('LATIN_CAPITAL_LETTER_K_WITH_STROKE_AND_DIAGONAL_STROKE, 'codepoint, 0xA744);
13790put('LATIN_SMALL_LETTER_K_WITH_STROKE_AND_DIAGONAL_STROKE, 'codepoint, 0xA745);
13791put('LATIN_CAPITAL_LETTER_BROKEN_L, 'codepoint, 0xA746);
13792put('LATIN_SMALL_LETTER_BROKEN_L, 'codepoint, 0xA747);
13793put('LATIN_CAPITAL_LETTER_L_WITH_HIGH_STROKE, 'codepoint, 0xA748);
13794put('LATIN_SMALL_LETTER_L_WITH_HIGH_STROKE, 'codepoint, 0xA749);
13795put('LATIN_CAPITAL_LETTER_O_WITH_LONG_STROKE_OVERLAY, 'codepoint, 0xA74A);
13796put('LATIN_SMALL_LETTER_O_WITH_LONG_STROKE_OVERLAY, 'codepoint, 0xA74B);
13797put('LATIN_CAPITAL_LETTER_O_WITH_LOOP, 'codepoint, 0xA74C);
13798put('LATIN_SMALL_LETTER_O_WITH_LOOP, 'codepoint, 0xA74D);
13799put('LATIN_CAPITAL_LETTER_OO, 'codepoint, 0xA74E);
13800put('LATIN_SMALL_LETTER_OO, 'codepoint, 0xA74F);
13801put('LATIN_CAPITAL_LETTER_P_WITH_STROKE_THROUGH_DESCENDER, 'codepoint, 0xA750);
13802put('LATIN_SMALL_LETTER_P_WITH_STROKE_THROUGH_DESCENDER, 'codepoint, 0xA751);
13803put('LATIN_CAPITAL_LETTER_P_WITH_FLOURISH, 'codepoint, 0xA752);
13804put('LATIN_SMALL_LETTER_P_WITH_FLOURISH, 'codepoint, 0xA753);
13805put('LATIN_CAPITAL_LETTER_P_WITH_SQUIRREL_TAIL, 'codepoint, 0xA754);
13806put('LATIN_SMALL_LETTER_P_WITH_SQUIRREL_TAIL, 'codepoint, 0xA755);
13807put('LATIN_CAPITAL_LETTER_Q_WITH_STROKE_THROUGH_DESCENDER, 'codepoint, 0xA756);
13808put('LATIN_SMALL_LETTER_Q_WITH_STROKE_THROUGH_DESCENDER, 'codepoint, 0xA757);
13809put('LATIN_CAPITAL_LETTER_Q_WITH_DIAGONAL_STROKE, 'codepoint, 0xA758);
13810put('LATIN_SMALL_LETTER_Q_WITH_DIAGONAL_STROKE, 'codepoint, 0xA759);
13811put('LATIN_CAPITAL_LETTER_R_ROTUNDA, 'codepoint, 0xA75A);
13812put('LATIN_SMALL_LETTER_R_ROTUNDA, 'codepoint, 0xA75B);
13813put('LATIN_CAPITAL_LETTER_RUM_ROTUNDA, 'codepoint, 0xA75C);
13814put('LATIN_SMALL_LETTER_RUM_ROTUNDA, 'codepoint, 0xA75D);
13815put('LATIN_CAPITAL_LETTER_V_WITH_DIAGONAL_STROKE, 'codepoint, 0xA75E);
13816put('LATIN_SMALL_LETTER_V_WITH_DIAGONAL_STROKE, 'codepoint, 0xA75F);
13817put('LATIN_CAPITAL_LETTER_VY, 'codepoint, 0xA760);
13818put('LATIN_SMALL_LETTER_VY, 'codepoint, 0xA761);
13819put('LATIN_CAPITAL_LETTER_VISIGOTHIC_Z, 'codepoint, 0xA762);
13820put('LATIN_SMALL_LETTER_VISIGOTHIC_Z, 'codepoint, 0xA763);
13821put('LATIN_CAPITAL_LETTER_THORN_WITH_STROKE, 'codepoint, 0xA764);
13822put('LATIN_SMALL_LETTER_THORN_WITH_STROKE, 'codepoint, 0xA765);
13823put('LATIN_CAPITAL_LETTER_THORN_WITH_STROKE_THROUGH_DESCENDER, 'codepoint, 0xA766);
13824put('LATIN_SMALL_LETTER_THORN_WITH_STROKE_THROUGH_DESCENDER, 'codepoint, 0xA767);
13825put('LATIN_CAPITAL_LETTER_VEND, 'codepoint, 0xA768);
13826put('LATIN_SMALL_LETTER_VEND, 'codepoint, 0xA769);
13827put('LATIN_CAPITAL_LETTER_ET, 'codepoint, 0xA76A);
13828put('LATIN_SMALL_LETTER_ET, 'codepoint, 0xA76B);
13829put('LATIN_CAPITAL_LETTER_IS, 'codepoint, 0xA76C);
13830put('LATIN_SMALL_LETTER_IS, 'codepoint, 0xA76D);
13831put('LATIN_CAPITAL_LETTER_CON, 'codepoint, 0xA76E);
13832put('LATIN_SMALL_LETTER_CON, 'codepoint, 0xA76F);
13833put('MODIFIER_LETTER_US, 'codepoint, 0xA770);
13834put('LATIN_SMALL_LETTER_DUM, 'codepoint, 0xA771);
13835put('LATIN_SMALL_LETTER_LUM, 'codepoint, 0xA772);
13836put('LATIN_SMALL_LETTER_MUM, 'codepoint, 0xA773);
13837put('LATIN_SMALL_LETTER_NUM, 'codepoint, 0xA774);
13838put('LATIN_SMALL_LETTER_RUM, 'codepoint, 0xA775);
13839put('LATIN_LETTER_SMALL_CAPITAL_RUM, 'codepoint, 0xA776);
13840put('LATIN_SMALL_LETTER_TUM, 'codepoint, 0xA777);
13841put('LATIN_SMALL_LETTER_UM, 'codepoint, 0xA778);
13842put('LATIN_CAPITAL_LETTER_INSULAR_D, 'codepoint, 0xA779);
13843put('LATIN_SMALL_LETTER_INSULAR_D, 'codepoint, 0xA77A);
13844put('LATIN_CAPITAL_LETTER_INSULAR_F, 'codepoint, 0xA77B);
13845put('LATIN_SMALL_LETTER_INSULAR_F, 'codepoint, 0xA77C);
13846put('LATIN_CAPITAL_LETTER_INSULAR_G, 'codepoint, 0xA77D);
13847put('LATIN_CAPITAL_LETTER_TURNED_INSULAR_G, 'codepoint, 0xA77E);
13848put('LATIN_SMALL_LETTER_TURNED_INSULAR_G, 'codepoint, 0xA77F);
13849put('LATIN_CAPITAL_LETTER_TURNED_L, 'codepoint, 0xA780);
13850put('LATIN_SMALL_LETTER_TURNED_L, 'codepoint, 0xA781);
13851put('LATIN_CAPITAL_LETTER_INSULAR_R, 'codepoint, 0xA782);
13852put('LATIN_SMALL_LETTER_INSULAR_R, 'codepoint, 0xA783);
13853put('LATIN_CAPITAL_LETTER_INSULAR_S, 'codepoint, 0xA784);
13854put('LATIN_SMALL_LETTER_INSULAR_S, 'codepoint, 0xA785);
13855put('LATIN_CAPITAL_LETTER_INSULAR_T, 'codepoint, 0xA786);
13856put('LATIN_SMALL_LETTER_INSULAR_T, 'codepoint, 0xA787);
13857put('MODIFIER_LETTER_LOW_CIRCUMFLEX_ACCENT, 'codepoint, 0xA788);
13858put('MODIFIER_LETTER_COLON, 'codepoint, 0xA789);
13859put('MODIFIER_LETTER_SHORT_EQUALS_SIGN, 'codepoint, 0xA78A);
13860put('LATIN_CAPITAL_LETTER_SALTILLO, 'codepoint, 0xA78B);
13861put('LATIN_SMALL_LETTER_SALTILLO, 'codepoint, 0xA78C);
13862put('LATIN_CAPITAL_LETTER_TURNED_H, 'codepoint, 0xA78D);
13863put('LATIN_SMALL_LETTER_L_WITH_RETROFLEX_HOOK_AND_BELT, 'codepoint, 0xA78E);
13864put('LATIN_CAPITAL_LETTER_N_WITH_DESCENDER, 'codepoint, 0xA790);
13865put('LATIN_SMALL_LETTER_N_WITH_DESCENDER, 'codepoint, 0xA791);
13866put('LATIN_CAPITAL_LETTER_C_WITH_BAR, 'codepoint, 0xA792);
13867put('LATIN_SMALL_LETTER_C_WITH_BAR, 'codepoint, 0xA793);
13868put('LATIN_SMALL_LETTER_C_WITH_PALATAL_HOOK, 'codepoint, 0xA794);
13869put('LATIN_SMALL_LETTER_H_WITH_PALATAL_HOOK, 'codepoint, 0xA795);
13870put('LATIN_CAPITAL_LETTER_B_WITH_FLOURISH, 'codepoint, 0xA796);
13871put('LATIN_SMALL_LETTER_B_WITH_FLOURISH, 'codepoint, 0xA797);
13872put('LATIN_CAPITAL_LETTER_F_WITH_STROKE, 'codepoint, 0xA798);
13873put('LATIN_SMALL_LETTER_F_WITH_STROKE, 'codepoint, 0xA799);
13874put('LATIN_CAPITAL_LETTER_VOLAPUK_AE, 'codepoint, 0xA79A);
13875put('LATIN_SMALL_LETTER_VOLAPUK_AE, 'codepoint, 0xA79B);
13876put('LATIN_CAPITAL_LETTER_VOLAPUK_OE, 'codepoint, 0xA79C);
13877put('LATIN_SMALL_LETTER_VOLAPUK_OE, 'codepoint, 0xA79D);
13878put('LATIN_CAPITAL_LETTER_VOLAPUK_UE, 'codepoint, 0xA79E);
13879put('LATIN_SMALL_LETTER_VOLAPUK_UE, 'codepoint, 0xA79F);
13880put('LATIN_CAPITAL_LETTER_G_WITH_OBLIQUE_STROKE, 'codepoint, 0xA7A0);
13881put('LATIN_SMALL_LETTER_G_WITH_OBLIQUE_STROKE, 'codepoint, 0xA7A1);
13882put('LATIN_CAPITAL_LETTER_K_WITH_OBLIQUE_STROKE, 'codepoint, 0xA7A2);
13883put('LATIN_SMALL_LETTER_K_WITH_OBLIQUE_STROKE, 'codepoint, 0xA7A3);
13884put('LATIN_CAPITAL_LETTER_N_WITH_OBLIQUE_STROKE, 'codepoint, 0xA7A4);
13885put('LATIN_SMALL_LETTER_N_WITH_OBLIQUE_STROKE, 'codepoint, 0xA7A5);
13886put('LATIN_CAPITAL_LETTER_R_WITH_OBLIQUE_STROKE, 'codepoint, 0xA7A6);
13887put('LATIN_SMALL_LETTER_R_WITH_OBLIQUE_STROKE, 'codepoint, 0xA7A7);
13888put('LATIN_CAPITAL_LETTER_S_WITH_OBLIQUE_STROKE, 'codepoint, 0xA7A8);
13889put('LATIN_SMALL_LETTER_S_WITH_OBLIQUE_STROKE, 'codepoint, 0xA7A9);
13890put('LATIN_CAPITAL_LETTER_H_WITH_HOOK, 'codepoint, 0xA7AA);
13891put('LATIN_CAPITAL_LETTER_REVERSED_OPEN_E, 'codepoint, 0xA7AB);
13892put('LATIN_CAPITAL_LETTER_SCRIPT_G, 'codepoint, 0xA7AC);
13893put('LATIN_CAPITAL_LETTER_L_WITH_BELT, 'codepoint, 0xA7AD);
13894put('LATIN_CAPITAL_LETTER_TURNED_K, 'codepoint, 0xA7B0);
13895put('LATIN_CAPITAL_LETTER_TURNED_T, 'codepoint, 0xA7B1);
13896put('LATIN_EPIGRAPHIC_LETTER_SIDEWAYS_I, 'codepoint, 0xA7F7);
13897put('MODIFIER_LETTER_CAPITAL_H_WITH_STROKE, 'codepoint, 0xA7F8);
13898put('MODIFIER_LETTER_SMALL_LIGATURE_OE, 'codepoint, 0xA7F9);
13899put('LATIN_LETTER_SMALL_CAPITAL_TURNED_M, 'codepoint, 0xA7FA);
13900put('LATIN_EPIGRAPHIC_LETTER_REVERSED_F, 'codepoint, 0xA7FB);
13901put('LATIN_EPIGRAPHIC_LETTER_REVERSED_P, 'codepoint, 0xA7FC);
13902put('LATIN_EPIGRAPHIC_LETTER_INVERTED_M, 'codepoint, 0xA7FD);
13903put('LATIN_EPIGRAPHIC_LETTER_I_LONGA, 'codepoint, 0xA7FE);
13904put('LATIN_EPIGRAPHIC_LETTER_ARCHAIC_M, 'codepoint, 0xA7FF);
13905put('SYLOTI_NAGRI_LETTER_A, 'codepoint, 0xA800);
13906put('SYLOTI_NAGRI_LETTER_I, 'codepoint, 0xA801);
13907put('SYLOTI_NAGRI_SIGN_DVISVARA, 'codepoint, 0xA802);
13908put('SYLOTI_NAGRI_LETTER_U, 'codepoint, 0xA803);
13909put('SYLOTI_NAGRI_LETTER_E, 'codepoint, 0xA804);
13910put('SYLOTI_NAGRI_LETTER_O, 'codepoint, 0xA805);
13911put('SYLOTI_NAGRI_SIGN_HASANTA, 'codepoint, 0xA806);
13912put('SYLOTI_NAGRI_LETTER_KO, 'codepoint, 0xA807);
13913put('SYLOTI_NAGRI_LETTER_KHO, 'codepoint, 0xA808);
13914put('SYLOTI_NAGRI_LETTER_GO, 'codepoint, 0xA809);
13915put('SYLOTI_NAGRI_LETTER_GHO, 'codepoint, 0xA80A);
13916put('SYLOTI_NAGRI_SIGN_ANUSVARA, 'codepoint, 0xA80B);
13917put('SYLOTI_NAGRI_LETTER_CO, 'codepoint, 0xA80C);
13918put('SYLOTI_NAGRI_LETTER_CHO, 'codepoint, 0xA80D);
13919put('SYLOTI_NAGRI_LETTER_JO, 'codepoint, 0xA80E);
13920put('SYLOTI_NAGRI_LETTER_JHO, 'codepoint, 0xA80F);
13921put('SYLOTI_NAGRI_LETTER_TTO, 'codepoint, 0xA810);
13922put('SYLOTI_NAGRI_LETTER_TTHO, 'codepoint, 0xA811);
13923put('SYLOTI_NAGRI_LETTER_DDO, 'codepoint, 0xA812);
13924put('SYLOTI_NAGRI_LETTER_DDHO, 'codepoint, 0xA813);
13925put('SYLOTI_NAGRI_LETTER_TO, 'codepoint, 0xA814);
13926put('SYLOTI_NAGRI_LETTER_THO, 'codepoint, 0xA815);
13927put('SYLOTI_NAGRI_LETTER_DO, 'codepoint, 0xA816);
13928put('SYLOTI_NAGRI_LETTER_DHO, 'codepoint, 0xA817);
13929put('SYLOTI_NAGRI_LETTER_NO, 'codepoint, 0xA818);
13930put('SYLOTI_NAGRI_LETTER_PO, 'codepoint, 0xA819);
13931put('SYLOTI_NAGRI_LETTER_PHO, 'codepoint, 0xA81A);
13932put('SYLOTI_NAGRI_LETTER_BO, 'codepoint, 0xA81B);
13933put('SYLOTI_NAGRI_LETTER_BHO, 'codepoint, 0xA81C);
13934put('SYLOTI_NAGRI_LETTER_MO, 'codepoint, 0xA81D);
13935put('SYLOTI_NAGRI_LETTER_RO, 'codepoint, 0xA81E);
13936put('SYLOTI_NAGRI_LETTER_LO, 'codepoint, 0xA81F);
13937put('SYLOTI_NAGRI_LETTER_RRO, 'codepoint, 0xA820);
13938put('SYLOTI_NAGRI_LETTER_SO, 'codepoint, 0xA821);
13939put('SYLOTI_NAGRI_LETTER_HO, 'codepoint, 0xA822);
13940put('SYLOTI_NAGRI_VOWEL_SIGN_A, 'codepoint, 0xA823);
13941put('SYLOTI_NAGRI_VOWEL_SIGN_I, 'codepoint, 0xA824);
13942put('SYLOTI_NAGRI_VOWEL_SIGN_U, 'codepoint, 0xA825);
13943put('SYLOTI_NAGRI_VOWEL_SIGN_E, 'codepoint, 0xA826);
13944put('SYLOTI_NAGRI_VOWEL_SIGN_OO, 'codepoint, 0xA827);
13945put('SYLOTI_NAGRI_POETRY_MARK_1, 'codepoint, 0xA828);
13946put('SYLOTI_NAGRI_POETRY_MARK_2, 'codepoint, 0xA829);
13947put('SYLOTI_NAGRI_POETRY_MARK_3, 'codepoint, 0xA82A);
13948put('SYLOTI_NAGRI_POETRY_MARK_4, 'codepoint, 0xA82B);
13949put('NORTH_INDIC_FRACTION_ONE_QUARTER, 'codepoint, 0xA830);
13950put('NORTH_INDIC_FRACTION_ONE_HALF, 'codepoint, 0xA831);
13951put('NORTH_INDIC_FRACTION_THREE_QUARTERS, 'codepoint, 0xA832);
13952put('NORTH_INDIC_FRACTION_ONE_SIXTEENTH, 'codepoint, 0xA833);
13953put('NORTH_INDIC_FRACTION_ONE_EIGHTH, 'codepoint, 0xA834);
13954put('NORTH_INDIC_FRACTION_THREE_SIXTEENTHS, 'codepoint, 0xA835);
13955put('NORTH_INDIC_QUARTER_MARK, 'codepoint, 0xA836);
13956put('NORTH_INDIC_PLACEHOLDER_MARK, 'codepoint, 0xA837);
13957put('NORTH_INDIC_RUPEE_MARK, 'codepoint, 0xA838);
13958put('NORTH_INDIC_QUANTITY_MARK, 'codepoint, 0xA839);
13959put('PHAGS_PA_LETTER_KA, 'codepoint, 0xA840);
13960put('PHAGS_PA_LETTER_KHA, 'codepoint, 0xA841);
13961put('PHAGS_PA_LETTER_GA, 'codepoint, 0xA842);
13962put('PHAGS_PA_LETTER_NGA, 'codepoint, 0xA843);
13963put('PHAGS_PA_LETTER_CA, 'codepoint, 0xA844);
13964put('PHAGS_PA_LETTER_CHA, 'codepoint, 0xA845);
13965put('PHAGS_PA_LETTER_JA, 'codepoint, 0xA846);
13966put('PHAGS_PA_LETTER_NYA, 'codepoint, 0xA847);
13967put('PHAGS_PA_LETTER_TA, 'codepoint, 0xA848);
13968put('PHAGS_PA_LETTER_THA, 'codepoint, 0xA849);
13969put('PHAGS_PA_LETTER_DA, 'codepoint, 0xA84A);
13970put('PHAGS_PA_LETTER_NA, 'codepoint, 0xA84B);
13971put('PHAGS_PA_LETTER_PA, 'codepoint, 0xA84C);
13972put('PHAGS_PA_LETTER_PHA, 'codepoint, 0xA84D);
13973put('PHAGS_PA_LETTER_BA, 'codepoint, 0xA84E);
13974put('PHAGS_PA_LETTER_MA, 'codepoint, 0xA84F);
13975put('PHAGS_PA_LETTER_TSA, 'codepoint, 0xA850);
13976put('PHAGS_PA_LETTER_TSHA, 'codepoint, 0xA851);
13977put('PHAGS_PA_LETTER_DZA, 'codepoint, 0xA852);
13978put('PHAGS_PA_LETTER_WA, 'codepoint, 0xA853);
13979put('PHAGS_PA_LETTER_ZHA, 'codepoint, 0xA854);
13980put('PHAGS_PA_LETTER_ZA, 'codepoint, 0xA855);
13981put('PHAGS_PA_LETTER_SMALL_A, 'codepoint, 0xA856);
13982put('PHAGS_PA_LETTER_YA, 'codepoint, 0xA857);
13983put('PHAGS_PA_LETTER_RA, 'codepoint, 0xA858);
13984put('PHAGS_PA_LETTER_LA, 'codepoint, 0xA859);
13985put('PHAGS_PA_LETTER_SHA, 'codepoint, 0xA85A);
13986put('PHAGS_PA_LETTER_SA, 'codepoint, 0xA85B);
13987put('PHAGS_PA_LETTER_HA, 'codepoint, 0xA85C);
13988put('PHAGS_PA_LETTER_A, 'codepoint, 0xA85D);
13989put('PHAGS_PA_LETTER_I, 'codepoint, 0xA85E);
13990put('PHAGS_PA_LETTER_U, 'codepoint, 0xA85F);
13991put('PHAGS_PA_LETTER_E, 'codepoint, 0xA860);
13992put('PHAGS_PA_LETTER_O, 'codepoint, 0xA861);
13993put('PHAGS_PA_LETTER_QA, 'codepoint, 0xA862);
13994put('PHAGS_PA_LETTER_XA, 'codepoint, 0xA863);
13995put('PHAGS_PA_LETTER_FA, 'codepoint, 0xA864);
13996put('PHAGS_PA_LETTER_GGA, 'codepoint, 0xA865);
13997put('PHAGS_PA_LETTER_EE, 'codepoint, 0xA866);
13998put('PHAGS_PA_SUBJOINED_LETTER_WA, 'codepoint, 0xA867);
13999put('PHAGS_PA_SUBJOINED_LETTER_YA, 'codepoint, 0xA868);
14000put('PHAGS_PA_LETTER_TTA, 'codepoint, 0xA869);
14001put('PHAGS_PA_LETTER_TTHA, 'codepoint, 0xA86A);
14002put('PHAGS_PA_LETTER_DDA, 'codepoint, 0xA86B);
14003put('PHAGS_PA_LETTER_NNA, 'codepoint, 0xA86C);
14004put('PHAGS_PA_LETTER_ALTERNATE_YA, 'codepoint, 0xA86D);
14005put('PHAGS_PA_LETTER_VOICELESS_SHA, 'codepoint, 0xA86E);
14006put('PHAGS_PA_LETTER_VOICED_HA, 'codepoint, 0xA86F);
14007put('PHAGS_PA_LETTER_ASPIRATED_FA, 'codepoint, 0xA870);
14008put('PHAGS_PA_SUBJOINED_LETTER_RA, 'codepoint, 0xA871);
14009put('PHAGS_PA_SUPERFIXED_LETTER_RA, 'codepoint, 0xA872);
14010put('PHAGS_PA_LETTER_CANDRABINDU, 'codepoint, 0xA873);
14011put('PHAGS_PA_SINGLE_HEAD_MARK, 'codepoint, 0xA874);
14012put('PHAGS_PA_DOUBLE_HEAD_MARK, 'codepoint, 0xA875);
14013put('PHAGS_PA_MARK_SHAD, 'codepoint, 0xA876);
14014put('PHAGS_PA_MARK_DOUBLE_SHAD, 'codepoint, 0xA877);
14015put('SAURASHTRA_SIGN_ANUSVARA, 'codepoint, 0xA880);
14016put('SAURASHTRA_SIGN_VISARGA, 'codepoint, 0xA881);
14017put('SAURASHTRA_LETTER_A, 'codepoint, 0xA882);
14018put('SAURASHTRA_LETTER_AA, 'codepoint, 0xA883);
14019put('SAURASHTRA_LETTER_I, 'codepoint, 0xA884);
14020put('SAURASHTRA_LETTER_II, 'codepoint, 0xA885);
14021put('SAURASHTRA_LETTER_U, 'codepoint, 0xA886);
14022put('SAURASHTRA_LETTER_UU, 'codepoint, 0xA887);
14023put('SAURASHTRA_LETTER_VOCALIC_R, 'codepoint, 0xA888);
14024put('SAURASHTRA_LETTER_VOCALIC_RR, 'codepoint, 0xA889);
14025put('SAURASHTRA_LETTER_VOCALIC_L, 'codepoint, 0xA88A);
14026put('SAURASHTRA_LETTER_VOCALIC_LL, 'codepoint, 0xA88B);
14027put('SAURASHTRA_LETTER_E, 'codepoint, 0xA88C);
14028put('SAURASHTRA_LETTER_EE, 'codepoint, 0xA88D);
14029put('SAURASHTRA_LETTER_AI, 'codepoint, 0xA88E);
14030put('SAURASHTRA_LETTER_O, 'codepoint, 0xA88F);
14031put('SAURASHTRA_LETTER_OO, 'codepoint, 0xA890);
14032put('SAURASHTRA_LETTER_AU, 'codepoint, 0xA891);
14033put('SAURASHTRA_LETTER_KA, 'codepoint, 0xA892);
14034put('SAURASHTRA_LETTER_KHA, 'codepoint, 0xA893);
14035put('SAURASHTRA_LETTER_GA, 'codepoint, 0xA894);
14036put('SAURASHTRA_LETTER_GHA, 'codepoint, 0xA895);
14037put('SAURASHTRA_LETTER_NGA, 'codepoint, 0xA896);
14038put('SAURASHTRA_LETTER_CA, 'codepoint, 0xA897);
14039put('SAURASHTRA_LETTER_CHA, 'codepoint, 0xA898);
14040put('SAURASHTRA_LETTER_JA, 'codepoint, 0xA899);
14041put('SAURASHTRA_LETTER_JHA, 'codepoint, 0xA89A);
14042put('SAURASHTRA_LETTER_NYA, 'codepoint, 0xA89B);
14043put('SAURASHTRA_LETTER_TTA, 'codepoint, 0xA89C);
14044put('SAURASHTRA_LETTER_TTHA, 'codepoint, 0xA89D);
14045put('SAURASHTRA_LETTER_DDA, 'codepoint, 0xA89E);
14046put('SAURASHTRA_LETTER_DDHA, 'codepoint, 0xA89F);
14047put('SAURASHTRA_LETTER_NNA, 'codepoint, 0xA8A0);
14048put('SAURASHTRA_LETTER_TA, 'codepoint, 0xA8A1);
14049put('SAURASHTRA_LETTER_THA, 'codepoint, 0xA8A2);
14050put('SAURASHTRA_LETTER_DA, 'codepoint, 0xA8A3);
14051put('SAURASHTRA_LETTER_DHA, 'codepoint, 0xA8A4);
14052put('SAURASHTRA_LETTER_NA, 'codepoint, 0xA8A5);
14053put('SAURASHTRA_LETTER_PA, 'codepoint, 0xA8A6);
14054put('SAURASHTRA_LETTER_PHA, 'codepoint, 0xA8A7);
14055put('SAURASHTRA_LETTER_BA, 'codepoint, 0xA8A8);
14056put('SAURASHTRA_LETTER_BHA, 'codepoint, 0xA8A9);
14057put('SAURASHTRA_LETTER_MA, 'codepoint, 0xA8AA);
14058put('SAURASHTRA_LETTER_YA, 'codepoint, 0xA8AB);
14059put('SAURASHTRA_LETTER_RA, 'codepoint, 0xA8AC);
14060put('SAURASHTRA_LETTER_LA, 'codepoint, 0xA8AD);
14061put('SAURASHTRA_LETTER_VA, 'codepoint, 0xA8AE);
14062put('SAURASHTRA_LETTER_SHA, 'codepoint, 0xA8AF);
14063put('SAURASHTRA_LETTER_SSA, 'codepoint, 0xA8B0);
14064put('SAURASHTRA_LETTER_SA, 'codepoint, 0xA8B1);
14065put('SAURASHTRA_LETTER_HA, 'codepoint, 0xA8B2);
14066put('SAURASHTRA_LETTER_LLA, 'codepoint, 0xA8B3);
14067put('SAURASHTRA_CONSONANT_SIGN_HAARU, 'codepoint, 0xA8B4);
14068put('SAURASHTRA_VOWEL_SIGN_AA, 'codepoint, 0xA8B5);
14069put('SAURASHTRA_VOWEL_SIGN_I, 'codepoint, 0xA8B6);
14070put('SAURASHTRA_VOWEL_SIGN_II, 'codepoint, 0xA8B7);
14071put('SAURASHTRA_VOWEL_SIGN_U, 'codepoint, 0xA8B8);
14072put('SAURASHTRA_VOWEL_SIGN_UU, 'codepoint, 0xA8B9);
14073put('SAURASHTRA_VOWEL_SIGN_VOCALIC_R, 'codepoint, 0xA8BA);
14074put('SAURASHTRA_VOWEL_SIGN_VOCALIC_RR, 'codepoint, 0xA8BB);
14075put('SAURASHTRA_VOWEL_SIGN_VOCALIC_L, 'codepoint, 0xA8BC);
14076put('SAURASHTRA_VOWEL_SIGN_VOCALIC_LL, 'codepoint, 0xA8BD);
14077put('SAURASHTRA_VOWEL_SIGN_E, 'codepoint, 0xA8BE);
14078put('SAURASHTRA_VOWEL_SIGN_EE, 'codepoint, 0xA8BF);
14079put('SAURASHTRA_VOWEL_SIGN_AI, 'codepoint, 0xA8C0);
14080put('SAURASHTRA_VOWEL_SIGN_O, 'codepoint, 0xA8C1);
14081put('SAURASHTRA_VOWEL_SIGN_OO, 'codepoint, 0xA8C2);
14082put('SAURASHTRA_VOWEL_SIGN_AU, 'codepoint, 0xA8C3);
14083put('SAURASHTRA_SIGN_VIRAMA, 'codepoint, 0xA8C4);
14084put('SAURASHTRA_DANDA, 'codepoint, 0xA8CE);
14085put('SAURASHTRA_DOUBLE_DANDA, 'codepoint, 0xA8CF);
14086put('SAURASHTRA_DIGIT_ZERO, 'codepoint, 0xA8D0);
14087put('SAURASHTRA_DIGIT_ONE, 'codepoint, 0xA8D1);
14088put('SAURASHTRA_DIGIT_TWO, 'codepoint, 0xA8D2);
14089put('SAURASHTRA_DIGIT_THREE, 'codepoint, 0xA8D3);
14090put('SAURASHTRA_DIGIT_FOUR, 'codepoint, 0xA8D4);
14091put('SAURASHTRA_DIGIT_FIVE, 'codepoint, 0xA8D5);
14092put('SAURASHTRA_DIGIT_SIX, 'codepoint, 0xA8D6);
14093put('SAURASHTRA_DIGIT_SEVEN, 'codepoint, 0xA8D7);
14094put('SAURASHTRA_DIGIT_EIGHT, 'codepoint, 0xA8D8);
14095put('SAURASHTRA_DIGIT_NINE, 'codepoint, 0xA8D9);
14096put('COMBINING_DEVANAGARI_DIGIT_ZERO, 'codepoint, 0xA8E0);
14097put('COMBINING_DEVANAGARI_DIGIT_ONE, 'codepoint, 0xA8E1);
14098put('COMBINING_DEVANAGARI_DIGIT_TWO, 'codepoint, 0xA8E2);
14099put('COMBINING_DEVANAGARI_DIGIT_THREE, 'codepoint, 0xA8E3);
14100put('COMBINING_DEVANAGARI_DIGIT_FOUR, 'codepoint, 0xA8E4);
14101put('COMBINING_DEVANAGARI_DIGIT_FIVE, 'codepoint, 0xA8E5);
14102put('COMBINING_DEVANAGARI_DIGIT_SIX, 'codepoint, 0xA8E6);
14103put('COMBINING_DEVANAGARI_DIGIT_SEVEN, 'codepoint, 0xA8E7);
14104put('COMBINING_DEVANAGARI_DIGIT_EIGHT, 'codepoint, 0xA8E8);
14105put('COMBINING_DEVANAGARI_DIGIT_NINE, 'codepoint, 0xA8E9);
14106put('COMBINING_DEVANAGARI_LETTER_A, 'codepoint, 0xA8EA);
14107put('COMBINING_DEVANAGARI_LETTER_U, 'codepoint, 0xA8EB);
14108put('COMBINING_DEVANAGARI_LETTER_KA, 'codepoint, 0xA8EC);
14109put('COMBINING_DEVANAGARI_LETTER_NA, 'codepoint, 0xA8ED);
14110put('COMBINING_DEVANAGARI_LETTER_PA, 'codepoint, 0xA8EE);
14111put('COMBINING_DEVANAGARI_LETTER_RA, 'codepoint, 0xA8EF);
14112put('COMBINING_DEVANAGARI_LETTER_VI, 'codepoint, 0xA8F0);
14113put('COMBINING_DEVANAGARI_SIGN_AVAGRAHA, 'codepoint, 0xA8F1);
14114put('DEVANAGARI_SIGN_SPACING_CANDRABINDU, 'codepoint, 0xA8F2);
14115put('DEVANAGARI_SIGN_CANDRABINDU_VIRAMA, 'codepoint, 0xA8F3);
14116put('DEVANAGARI_SIGN_DOUBLE_CANDRABINDU_VIRAMA, 'codepoint, 0xA8F4);
14117put('DEVANAGARI_SIGN_CANDRABINDU_TWO, 'codepoint, 0xA8F5);
14118put('DEVANAGARI_SIGN_CANDRABINDU_THREE, 'codepoint, 0xA8F6);
14119put('DEVANAGARI_SIGN_CANDRABINDU_AVAGRAHA, 'codepoint, 0xA8F7);
14120put('DEVANAGARI_SIGN_PUSHPIKA, 'codepoint, 0xA8F8);
14121put('DEVANAGARI_GAP_FILLER, 'codepoint, 0xA8F9);
14122put('DEVANAGARI_CARET, 'codepoint, 0xA8FA);
14123put('DEVANAGARI_HEADSTROKE, 'codepoint, 0xA8FB);
14124put('KAYAH_LI_DIGIT_ZERO, 'codepoint, 0xA900);
14125put('KAYAH_LI_DIGIT_ONE, 'codepoint, 0xA901);
14126put('KAYAH_LI_DIGIT_TWO, 'codepoint, 0xA902);
14127put('KAYAH_LI_DIGIT_THREE, 'codepoint, 0xA903);
14128put('KAYAH_LI_DIGIT_FOUR, 'codepoint, 0xA904);
14129put('KAYAH_LI_DIGIT_FIVE, 'codepoint, 0xA905);
14130put('KAYAH_LI_DIGIT_SIX, 'codepoint, 0xA906);
14131put('KAYAH_LI_DIGIT_SEVEN, 'codepoint, 0xA907);
14132put('KAYAH_LI_DIGIT_EIGHT, 'codepoint, 0xA908);
14133put('KAYAH_LI_DIGIT_NINE, 'codepoint, 0xA909);
14134put('KAYAH_LI_LETTER_KA, 'codepoint, 0xA90A);
14135put('KAYAH_LI_LETTER_KHA, 'codepoint, 0xA90B);
14136put('KAYAH_LI_LETTER_GA, 'codepoint, 0xA90C);
14137put('KAYAH_LI_LETTER_NGA, 'codepoint, 0xA90D);
14138put('KAYAH_LI_LETTER_SA, 'codepoint, 0xA90E);
14139put('KAYAH_LI_LETTER_SHA, 'codepoint, 0xA90F);
14140put('KAYAH_LI_LETTER_ZA, 'codepoint, 0xA910);
14141put('KAYAH_LI_LETTER_NYA, 'codepoint, 0xA911);
14142put('KAYAH_LI_LETTER_TA, 'codepoint, 0xA912);
14143put('KAYAH_LI_LETTER_HTA, 'codepoint, 0xA913);
14144put('KAYAH_LI_LETTER_NA, 'codepoint, 0xA914);
14145put('KAYAH_LI_LETTER_PA, 'codepoint, 0xA915);
14146put('KAYAH_LI_LETTER_PHA, 'codepoint, 0xA916);
14147put('KAYAH_LI_LETTER_MA, 'codepoint, 0xA917);
14148put('KAYAH_LI_LETTER_DA, 'codepoint, 0xA918);
14149put('KAYAH_LI_LETTER_BA, 'codepoint, 0xA919);
14150put('KAYAH_LI_LETTER_RA, 'codepoint, 0xA91A);
14151put('KAYAH_LI_LETTER_YA, 'codepoint, 0xA91B);
14152put('KAYAH_LI_LETTER_LA, 'codepoint, 0xA91C);
14153put('KAYAH_LI_LETTER_WA, 'codepoint, 0xA91D);
14154put('KAYAH_LI_LETTER_THA, 'codepoint, 0xA91E);
14155put('KAYAH_LI_LETTER_HA, 'codepoint, 0xA91F);
14156put('KAYAH_LI_LETTER_VA, 'codepoint, 0xA920);
14157put('KAYAH_LI_LETTER_CA, 'codepoint, 0xA921);
14158put('KAYAH_LI_LETTER_A, 'codepoint, 0xA922);
14159put('KAYAH_LI_LETTER_OE, 'codepoint, 0xA923);
14160put('KAYAH_LI_LETTER_I, 'codepoint, 0xA924);
14161put('KAYAH_LI_LETTER_OO, 'codepoint, 0xA925);
14162put('KAYAH_LI_VOWEL_UE, 'codepoint, 0xA926);
14163put('KAYAH_LI_VOWEL_E, 'codepoint, 0xA927);
14164put('KAYAH_LI_VOWEL_U, 'codepoint, 0xA928);
14165put('KAYAH_LI_VOWEL_EE, 'codepoint, 0xA929);
14166put('KAYAH_LI_VOWEL_O, 'codepoint, 0xA92A);
14167put('KAYAH_LI_TONE_PLOPHU, 'codepoint, 0xA92B);
14168put('KAYAH_LI_TONE_CALYA, 'codepoint, 0xA92C);
14169put('KAYAH_LI_TONE_CALYA_PLOPHU, 'codepoint, 0xA92D);
14170put('KAYAH_LI_SIGN_CWI, 'codepoint, 0xA92E);
14171put('KAYAH_LI_SIGN_SHYA, 'codepoint, 0xA92F);
14172put('REJANG_LETTER_KA, 'codepoint, 0xA930);
14173put('REJANG_LETTER_GA, 'codepoint, 0xA931);
14174put('REJANG_LETTER_NGA, 'codepoint, 0xA932);
14175put('REJANG_LETTER_TA, 'codepoint, 0xA933);
14176put('REJANG_LETTER_DA, 'codepoint, 0xA934);
14177put('REJANG_LETTER_NA, 'codepoint, 0xA935);
14178put('REJANG_LETTER_PA, 'codepoint, 0xA936);
14179put('REJANG_LETTER_BA, 'codepoint, 0xA937);
14180put('REJANG_LETTER_MA, 'codepoint, 0xA938);
14181put('REJANG_LETTER_CA, 'codepoint, 0xA939);
14182put('REJANG_LETTER_JA, 'codepoint, 0xA93A);
14183put('REJANG_LETTER_NYA, 'codepoint, 0xA93B);
14184put('REJANG_LETTER_SA, 'codepoint, 0xA93C);
14185put('REJANG_LETTER_RA, 'codepoint, 0xA93D);
14186put('REJANG_LETTER_LA, 'codepoint, 0xA93E);
14187put('REJANG_LETTER_YA, 'codepoint, 0xA93F);
14188put('REJANG_LETTER_WA, 'codepoint, 0xA940);
14189put('REJANG_LETTER_HA, 'codepoint, 0xA941);
14190put('REJANG_LETTER_MBA, 'codepoint, 0xA942);
14191put('REJANG_LETTER_NGGA, 'codepoint, 0xA943);
14192put('REJANG_LETTER_NDA, 'codepoint, 0xA944);
14193put('REJANG_LETTER_NYJA, 'codepoint, 0xA945);
14194put('REJANG_LETTER_A, 'codepoint, 0xA946);
14195put('REJANG_VOWEL_SIGN_I, 'codepoint, 0xA947);
14196put('REJANG_VOWEL_SIGN_U, 'codepoint, 0xA948);
14197put('REJANG_VOWEL_SIGN_E, 'codepoint, 0xA949);
14198put('REJANG_VOWEL_SIGN_AI, 'codepoint, 0xA94A);
14199put('REJANG_VOWEL_SIGN_O, 'codepoint, 0xA94B);
14200put('REJANG_VOWEL_SIGN_AU, 'codepoint, 0xA94C);
14201put('REJANG_VOWEL_SIGN_EU, 'codepoint, 0xA94D);
14202put('REJANG_VOWEL_SIGN_EA, 'codepoint, 0xA94E);
14203put('REJANG_CONSONANT_SIGN_NG, 'codepoint, 0xA94F);
14204put('REJANG_CONSONANT_SIGN_N, 'codepoint, 0xA950);
14205put('REJANG_CONSONANT_SIGN_R, 'codepoint, 0xA951);
14206put('REJANG_CONSONANT_SIGN_H, 'codepoint, 0xA952);
14207put('REJANG_VIRAMA, 'codepoint, 0xA953);
14208put('REJANG_SECTION_MARK, 'codepoint, 0xA95F);
14209put('HANGUL_CHOSEONG_TIKEUT_MIEUM, 'codepoint, 0xA960);
14210put('HANGUL_CHOSEONG_TIKEUT_PIEUP, 'codepoint, 0xA961);
14211put('HANGUL_CHOSEONG_TIKEUT_SIOS, 'codepoint, 0xA962);
14212put('HANGUL_CHOSEONG_TIKEUT_CIEUC, 'codepoint, 0xA963);
14213put('HANGUL_CHOSEONG_RIEUL_KIYEOK, 'codepoint, 0xA964);
14214put('HANGUL_CHOSEONG_RIEUL_SSANGKIYEOK, 'codepoint, 0xA965);
14215put('HANGUL_CHOSEONG_RIEUL_TIKEUT, 'codepoint, 0xA966);
14216put('HANGUL_CHOSEONG_RIEUL_SSANGTIKEUT, 'codepoint, 0xA967);
14217put('HANGUL_CHOSEONG_RIEUL_MIEUM, 'codepoint, 0xA968);
14218put('HANGUL_CHOSEONG_RIEUL_PIEUP, 'codepoint, 0xA969);
14219put('HANGUL_CHOSEONG_RIEUL_SSANGPIEUP, 'codepoint, 0xA96A);
14220put('HANGUL_CHOSEONG_RIEUL_KAPYEOUNPIEUP, 'codepoint, 0xA96B);
14221put('HANGUL_CHOSEONG_RIEUL_SIOS, 'codepoint, 0xA96C);
14222put('HANGUL_CHOSEONG_RIEUL_CIEUC, 'codepoint, 0xA96D);
14223put('HANGUL_CHOSEONG_RIEUL_KHIEUKH, 'codepoint, 0xA96E);
14224put('HANGUL_CHOSEONG_MIEUM_KIYEOK, 'codepoint, 0xA96F);
14225put('HANGUL_CHOSEONG_MIEUM_TIKEUT, 'codepoint, 0xA970);
14226put('HANGUL_CHOSEONG_MIEUM_SIOS, 'codepoint, 0xA971);
14227put('HANGUL_CHOSEONG_PIEUP_SIOS_THIEUTH, 'codepoint, 0xA972);
14228put('HANGUL_CHOSEONG_PIEUP_KHIEUKH, 'codepoint, 0xA973);
14229put('HANGUL_CHOSEONG_PIEUP_HIEUH, 'codepoint, 0xA974);
14230put('HANGUL_CHOSEONG_SSANGSIOS_PIEUP, 'codepoint, 0xA975);
14231put('HANGUL_CHOSEONG_IEUNG_RIEUL, 'codepoint, 0xA976);
14232put('HANGUL_CHOSEONG_IEUNG_HIEUH, 'codepoint, 0xA977);
14233put('HANGUL_CHOSEONG_SSANGCIEUC_HIEUH, 'codepoint, 0xA978);
14234put('HANGUL_CHOSEONG_SSANGTHIEUTH, 'codepoint, 0xA979);
14235put('HANGUL_CHOSEONG_PHIEUPH_HIEUH, 'codepoint, 0xA97A);
14236put('HANGUL_CHOSEONG_HIEUH_SIOS, 'codepoint, 0xA97B);
14237put('HANGUL_CHOSEONG_SSANGYEORINHIEUH, 'codepoint, 0xA97C);
14238put('JAVANESE_SIGN_PANYANGGA, 'codepoint, 0xA980);
14239put('JAVANESE_SIGN_CECAK, 'codepoint, 0xA981);
14240put('JAVANESE_SIGN_LAYAR, 'codepoint, 0xA982);
14241put('JAVANESE_SIGN_WIGNYAN, 'codepoint, 0xA983);
14242put('JAVANESE_LETTER_A, 'codepoint, 0xA984);
14243put('JAVANESE_LETTER_I_KAWI, 'codepoint, 0xA985);
14244put('JAVANESE_LETTER_I, 'codepoint, 0xA986);
14245put('JAVANESE_LETTER_II, 'codepoint, 0xA987);
14246put('JAVANESE_LETTER_U, 'codepoint, 0xA988);
14247put('JAVANESE_LETTER_PA_CEREK, 'codepoint, 0xA989);
14248put('JAVANESE_LETTER_NGA_LELET, 'codepoint, 0xA98A);
14249put('JAVANESE_LETTER_NGA_LELET_RASWADI, 'codepoint, 0xA98B);
14250put('JAVANESE_LETTER_E, 'codepoint, 0xA98C);
14251put('JAVANESE_LETTER_AI, 'codepoint, 0xA98D);
14252put('JAVANESE_LETTER_O, 'codepoint, 0xA98E);
14253put('JAVANESE_LETTER_KA, 'codepoint, 0xA98F);
14254put('JAVANESE_LETTER_KA_SASAK, 'codepoint, 0xA990);
14255put('JAVANESE_LETTER_KA_MURDA, 'codepoint, 0xA991);
14256put('JAVANESE_LETTER_GA, 'codepoint, 0xA992);
14257put('JAVANESE_LETTER_GA_MURDA, 'codepoint, 0xA993);
14258put('JAVANESE_LETTER_NGA, 'codepoint, 0xA994);
14259put('JAVANESE_LETTER_CA, 'codepoint, 0xA995);
14260put('JAVANESE_LETTER_CA_MURDA, 'codepoint, 0xA996);
14261put('JAVANESE_LETTER_JA, 'codepoint, 0xA997);
14262put('JAVANESE_LETTER_NYA_MURDA, 'codepoint, 0xA998);
14263put('JAVANESE_LETTER_JA_MAHAPRANA, 'codepoint, 0xA999);
14264put('JAVANESE_LETTER_NYA, 'codepoint, 0xA99A);
14265put('JAVANESE_LETTER_TTA, 'codepoint, 0xA99B);
14266put('JAVANESE_LETTER_TTA_MAHAPRANA, 'codepoint, 0xA99C);
14267put('JAVANESE_LETTER_DDA, 'codepoint, 0xA99D);
14268put('JAVANESE_LETTER_DDA_MAHAPRANA, 'codepoint, 0xA99E);
14269put('JAVANESE_LETTER_NA_MURDA, 'codepoint, 0xA99F);
14270put('JAVANESE_LETTER_TA, 'codepoint, 0xA9A0);
14271put('JAVANESE_LETTER_TA_MURDA, 'codepoint, 0xA9A1);
14272put('JAVANESE_LETTER_DA, 'codepoint, 0xA9A2);
14273put('JAVANESE_LETTER_DA_MAHAPRANA, 'codepoint, 0xA9A3);
14274put('JAVANESE_LETTER_NA, 'codepoint, 0xA9A4);
14275put('JAVANESE_LETTER_PA, 'codepoint, 0xA9A5);
14276put('JAVANESE_LETTER_PA_MURDA, 'codepoint, 0xA9A6);
14277put('JAVANESE_LETTER_BA, 'codepoint, 0xA9A7);
14278put('JAVANESE_LETTER_BA_MURDA, 'codepoint, 0xA9A8);
14279put('JAVANESE_LETTER_MA, 'codepoint, 0xA9A9);
14280put('JAVANESE_LETTER_YA, 'codepoint, 0xA9AA);
14281put('JAVANESE_LETTER_RA, 'codepoint, 0xA9AB);
14282put('JAVANESE_LETTER_RA_AGUNG, 'codepoint, 0xA9AC);
14283put('JAVANESE_LETTER_LA, 'codepoint, 0xA9AD);
14284put('JAVANESE_LETTER_WA, 'codepoint, 0xA9AE);
14285put('JAVANESE_LETTER_SA_MURDA, 'codepoint, 0xA9AF);
14286put('JAVANESE_LETTER_SA_MAHAPRANA, 'codepoint, 0xA9B0);
14287put('JAVANESE_LETTER_SA, 'codepoint, 0xA9B1);
14288put('JAVANESE_LETTER_HA, 'codepoint, 0xA9B2);
14289put('JAVANESE_SIGN_CECAK_TELU, 'codepoint, 0xA9B3);
14290put('JAVANESE_VOWEL_SIGN_TARUNG, 'codepoint, 0xA9B4);
14291put('JAVANESE_VOWEL_SIGN_TOLONG, 'codepoint, 0xA9B5);
14292put('JAVANESE_VOWEL_SIGN_WULU, 'codepoint, 0xA9B6);
14293put('JAVANESE_VOWEL_SIGN_WULU_MELIK, 'codepoint, 0xA9B7);
14294put('JAVANESE_VOWEL_SIGN_SUKU, 'codepoint, 0xA9B8);
14295put('JAVANESE_VOWEL_SIGN_SUKU_MENDUT, 'codepoint, 0xA9B9);
14296put('JAVANESE_VOWEL_SIGN_TALING, 'codepoint, 0xA9BA);
14297put('JAVANESE_VOWEL_SIGN_DIRGA_MURE, 'codepoint, 0xA9BB);
14298put('JAVANESE_VOWEL_SIGN_PEPET, 'codepoint, 0xA9BC);
14299put('JAVANESE_CONSONANT_SIGN_KERET, 'codepoint, 0xA9BD);
14300put('JAVANESE_CONSONANT_SIGN_PENGKAL, 'codepoint, 0xA9BE);
14301put('JAVANESE_CONSONANT_SIGN_CAKRA, 'codepoint, 0xA9BF);
14302put('JAVANESE_PANGKON, 'codepoint, 0xA9C0);
14303put('JAVANESE_LEFT_RERENGGAN, 'codepoint, 0xA9C1);
14304put('JAVANESE_RIGHT_RERENGGAN, 'codepoint, 0xA9C2);
14305put('JAVANESE_PADA_ANDAP, 'codepoint, 0xA9C3);
14306put('JAVANESE_PADA_MADYA, 'codepoint, 0xA9C4);
14307put('JAVANESE_PADA_LUHUR, 'codepoint, 0xA9C5);
14308put('JAVANESE_PADA_WINDU, 'codepoint, 0xA9C6);
14309put('JAVANESE_PADA_PANGKAT, 'codepoint, 0xA9C7);
14310put('JAVANESE_PADA_LINGSA, 'codepoint, 0xA9C8);
14311put('JAVANESE_PADA_LUNGSI, 'codepoint, 0xA9C9);
14312put('JAVANESE_PADA_ADEG, 'codepoint, 0xA9CA);
14313put('JAVANESE_PADA_ADEG_ADEG, 'codepoint, 0xA9CB);
14314put('JAVANESE_PADA_PISELEH, 'codepoint, 0xA9CC);
14315put('JAVANESE_TURNED_PADA_PISELEH, 'codepoint, 0xA9CD);
14316put('JAVANESE_PANGRANGKEP, 'codepoint, 0xA9CF);
14317put('JAVANESE_DIGIT_ZERO, 'codepoint, 0xA9D0);
14318put('JAVANESE_DIGIT_ONE, 'codepoint, 0xA9D1);
14319put('JAVANESE_DIGIT_TWO, 'codepoint, 0xA9D2);
14320put('JAVANESE_DIGIT_THREE, 'codepoint, 0xA9D3);
14321put('JAVANESE_DIGIT_FOUR, 'codepoint, 0xA9D4);
14322put('JAVANESE_DIGIT_FIVE, 'codepoint, 0xA9D5);
14323put('JAVANESE_DIGIT_SIX, 'codepoint, 0xA9D6);
14324put('JAVANESE_DIGIT_SEVEN, 'codepoint, 0xA9D7);
14325put('JAVANESE_DIGIT_EIGHT, 'codepoint, 0xA9D8);
14326put('JAVANESE_DIGIT_NINE, 'codepoint, 0xA9D9);
14327put('JAVANESE_PADA_TIRTA_TUMETES, 'codepoint, 0xA9DE);
14328put('JAVANESE_PADA_ISEN_ISEN, 'codepoint, 0xA9DF);
14329put('MYANMAR_LETTER_SHAN_GHA, 'codepoint, 0xA9E0);
14330put('MYANMAR_LETTER_SHAN_CHA, 'codepoint, 0xA9E1);
14331put('MYANMAR_LETTER_SHAN_JHA, 'codepoint, 0xA9E2);
14332put('MYANMAR_LETTER_SHAN_NNA, 'codepoint, 0xA9E3);
14333put('MYANMAR_LETTER_SHAN_BHA, 'codepoint, 0xA9E4);
14334put('MYANMAR_SIGN_SHAN_SAW, 'codepoint, 0xA9E5);
14335put('MYANMAR_MODIFIER_LETTER_SHAN_REDUPLICATION, 'codepoint, 0xA9E6);
14336put('MYANMAR_LETTER_TAI_LAING_NYA, 'codepoint, 0xA9E7);
14337put('MYANMAR_LETTER_TAI_LAING_FA, 'codepoint, 0xA9E8);
14338put('MYANMAR_LETTER_TAI_LAING_GA, 'codepoint, 0xA9E9);
14339put('MYANMAR_LETTER_TAI_LAING_GHA, 'codepoint, 0xA9EA);
14340put('MYANMAR_LETTER_TAI_LAING_JA, 'codepoint, 0xA9EB);
14341put('MYANMAR_LETTER_TAI_LAING_JHA, 'codepoint, 0xA9EC);
14342put('MYANMAR_LETTER_TAI_LAING_DDA, 'codepoint, 0xA9ED);
14343put('MYANMAR_LETTER_TAI_LAING_DDHA, 'codepoint, 0xA9EE);
14344put('MYANMAR_LETTER_TAI_LAING_NNA, 'codepoint, 0xA9EF);
14345put('MYANMAR_TAI_LAING_DIGIT_ZERO, 'codepoint, 0xA9F0);
14346put('MYANMAR_TAI_LAING_DIGIT_ONE, 'codepoint, 0xA9F1);
14347put('MYANMAR_TAI_LAING_DIGIT_TWO, 'codepoint, 0xA9F2);
14348put('MYANMAR_TAI_LAING_DIGIT_THREE, 'codepoint, 0xA9F3);
14349put('MYANMAR_TAI_LAING_DIGIT_FOUR, 'codepoint, 0xA9F4);
14350put('MYANMAR_TAI_LAING_DIGIT_FIVE, 'codepoint, 0xA9F5);
14351put('MYANMAR_TAI_LAING_DIGIT_SIX, 'codepoint, 0xA9F6);
14352put('MYANMAR_TAI_LAING_DIGIT_SEVEN, 'codepoint, 0xA9F7);
14353put('MYANMAR_TAI_LAING_DIGIT_EIGHT, 'codepoint, 0xA9F8);
14354put('MYANMAR_TAI_LAING_DIGIT_NINE, 'codepoint, 0xA9F9);
14355put('MYANMAR_LETTER_TAI_LAING_LLA, 'codepoint, 0xA9FA);
14356put('MYANMAR_LETTER_TAI_LAING_DA, 'codepoint, 0xA9FB);
14357put('MYANMAR_LETTER_TAI_LAING_DHA, 'codepoint, 0xA9FC);
14358put('MYANMAR_LETTER_TAI_LAING_BA, 'codepoint, 0xA9FD);
14359put('MYANMAR_LETTER_TAI_LAING_BHA, 'codepoint, 0xA9FE);
14360put('CHAM_LETTER_A, 'codepoint, 0xAA00);
14361put('CHAM_LETTER_I, 'codepoint, 0xAA01);
14362put('CHAM_LETTER_U, 'codepoint, 0xAA02);
14363put('CHAM_LETTER_E, 'codepoint, 0xAA03);
14364put('CHAM_LETTER_AI, 'codepoint, 0xAA04);
14365put('CHAM_LETTER_O, 'codepoint, 0xAA05);
14366put('CHAM_LETTER_KA, 'codepoint, 0xAA06);
14367put('CHAM_LETTER_KHA, 'codepoint, 0xAA07);
14368put('CHAM_LETTER_GA, 'codepoint, 0xAA08);
14369put('CHAM_LETTER_GHA, 'codepoint, 0xAA09);
14370put('CHAM_LETTER_NGUE, 'codepoint, 0xAA0A);
14371put('CHAM_LETTER_NGA, 'codepoint, 0xAA0B);
14372put('CHAM_LETTER_CHA, 'codepoint, 0xAA0C);
14373put('CHAM_LETTER_CHHA, 'codepoint, 0xAA0D);
14374put('CHAM_LETTER_JA, 'codepoint, 0xAA0E);
14375put('CHAM_LETTER_JHA, 'codepoint, 0xAA0F);
14376put('CHAM_LETTER_NHUE, 'codepoint, 0xAA10);
14377put('CHAM_LETTER_NHA, 'codepoint, 0xAA11);
14378put('CHAM_LETTER_NHJA, 'codepoint, 0xAA12);
14379put('CHAM_LETTER_TA, 'codepoint, 0xAA13);
14380put('CHAM_LETTER_THA, 'codepoint, 0xAA14);
14381put('CHAM_LETTER_DA, 'codepoint, 0xAA15);
14382put('CHAM_LETTER_DHA, 'codepoint, 0xAA16);
14383put('CHAM_LETTER_NUE, 'codepoint, 0xAA17);
14384put('CHAM_LETTER_NA, 'codepoint, 0xAA18);
14385put('CHAM_LETTER_DDA, 'codepoint, 0xAA19);
14386put('CHAM_LETTER_PA, 'codepoint, 0xAA1A);
14387put('CHAM_LETTER_PPA, 'codepoint, 0xAA1B);
14388put('CHAM_LETTER_PHA, 'codepoint, 0xAA1C);
14389put('CHAM_LETTER_BA, 'codepoint, 0xAA1D);
14390put('CHAM_LETTER_BHA, 'codepoint, 0xAA1E);
14391put('CHAM_LETTER_MUE, 'codepoint, 0xAA1F);
14392put('CHAM_LETTER_MA, 'codepoint, 0xAA20);
14393put('CHAM_LETTER_BBA, 'codepoint, 0xAA21);
14394put('CHAM_LETTER_YA, 'codepoint, 0xAA22);
14395put('CHAM_LETTER_RA, 'codepoint, 0xAA23);
14396put('CHAM_LETTER_LA, 'codepoint, 0xAA24);
14397put('CHAM_LETTER_VA, 'codepoint, 0xAA25);
14398put('CHAM_LETTER_SSA, 'codepoint, 0xAA26);
14399put('CHAM_LETTER_SA, 'codepoint, 0xAA27);
14400put('CHAM_LETTER_HA, 'codepoint, 0xAA28);
14401put('CHAM_VOWEL_SIGN_AA, 'codepoint, 0xAA29);
14402put('CHAM_VOWEL_SIGN_I, 'codepoint, 0xAA2A);
14403put('CHAM_VOWEL_SIGN_II, 'codepoint, 0xAA2B);
14404put('CHAM_VOWEL_SIGN_EI, 'codepoint, 0xAA2C);
14405put('CHAM_VOWEL_SIGN_U, 'codepoint, 0xAA2D);
14406put('CHAM_VOWEL_SIGN_OE, 'codepoint, 0xAA2E);
14407put('CHAM_VOWEL_SIGN_O, 'codepoint, 0xAA2F);
14408put('CHAM_VOWEL_SIGN_AI, 'codepoint, 0xAA30);
14409put('CHAM_VOWEL_SIGN_AU, 'codepoint, 0xAA31);
14410put('CHAM_VOWEL_SIGN_UE, 'codepoint, 0xAA32);
14411put('CHAM_CONSONANT_SIGN_YA, 'codepoint, 0xAA33);
14412put('CHAM_CONSONANT_SIGN_RA, 'codepoint, 0xAA34);
14413put('CHAM_CONSONANT_SIGN_LA, 'codepoint, 0xAA35);
14414put('CHAM_CONSONANT_SIGN_WA, 'codepoint, 0xAA36);
14415put('CHAM_LETTER_FINAL_K, 'codepoint, 0xAA40);
14416put('CHAM_LETTER_FINAL_G, 'codepoint, 0xAA41);
14417put('CHAM_LETTER_FINAL_NG, 'codepoint, 0xAA42);
14418put('CHAM_CONSONANT_SIGN_FINAL_NG, 'codepoint, 0xAA43);
14419put('CHAM_LETTER_FINAL_CH, 'codepoint, 0xAA44);
14420put('CHAM_LETTER_FINAL_T, 'codepoint, 0xAA45);
14421put('CHAM_LETTER_FINAL_N, 'codepoint, 0xAA46);
14422put('CHAM_LETTER_FINAL_P, 'codepoint, 0xAA47);
14423put('CHAM_LETTER_FINAL_Y, 'codepoint, 0xAA48);
14424put('CHAM_LETTER_FINAL_R, 'codepoint, 0xAA49);
14425put('CHAM_LETTER_FINAL_L, 'codepoint, 0xAA4A);
14426put('CHAM_LETTER_FINAL_SS, 'codepoint, 0xAA4B);
14427put('CHAM_CONSONANT_SIGN_FINAL_M, 'codepoint, 0xAA4C);
14428put('CHAM_CONSONANT_SIGN_FINAL_H, 'codepoint, 0xAA4D);
14429put('CHAM_DIGIT_ZERO, 'codepoint, 0xAA50);
14430put('CHAM_DIGIT_ONE, 'codepoint, 0xAA51);
14431put('CHAM_DIGIT_TWO, 'codepoint, 0xAA52);
14432put('CHAM_DIGIT_THREE, 'codepoint, 0xAA53);
14433put('CHAM_DIGIT_FOUR, 'codepoint, 0xAA54);
14434put('CHAM_DIGIT_FIVE, 'codepoint, 0xAA55);
14435put('CHAM_DIGIT_SIX, 'codepoint, 0xAA56);
14436put('CHAM_DIGIT_SEVEN, 'codepoint, 0xAA57);
14437put('CHAM_DIGIT_EIGHT, 'codepoint, 0xAA58);
14438put('CHAM_DIGIT_NINE, 'codepoint, 0xAA59);
14439put('CHAM_PUNCTUATION_SPIRAL, 'codepoint, 0xAA5C);
14440put('CHAM_PUNCTUATION_DANDA, 'codepoint, 0xAA5D);
14441put('CHAM_PUNCTUATION_DOUBLE_DANDA, 'codepoint, 0xAA5E);
14442put('CHAM_PUNCTUATION_TRIPLE_DANDA, 'codepoint, 0xAA5F);
14443put('MYANMAR_LETTER_KHAMTI_GA, 'codepoint, 0xAA60);
14444put('MYANMAR_LETTER_KHAMTI_CA, 'codepoint, 0xAA61);
14445put('MYANMAR_LETTER_KHAMTI_CHA, 'codepoint, 0xAA62);
14446put('MYANMAR_LETTER_KHAMTI_JA, 'codepoint, 0xAA63);
14447put('MYANMAR_LETTER_KHAMTI_JHA, 'codepoint, 0xAA64);
14448put('MYANMAR_LETTER_KHAMTI_NYA, 'codepoint, 0xAA65);
14449put('MYANMAR_LETTER_KHAMTI_TTA, 'codepoint, 0xAA66);
14450put('MYANMAR_LETTER_KHAMTI_TTHA, 'codepoint, 0xAA67);
14451put('MYANMAR_LETTER_KHAMTI_DDA, 'codepoint, 0xAA68);
14452put('MYANMAR_LETTER_KHAMTI_DDHA, 'codepoint, 0xAA69);
14453put('MYANMAR_LETTER_KHAMTI_DHA, 'codepoint, 0xAA6A);
14454put('MYANMAR_LETTER_KHAMTI_NA, 'codepoint, 0xAA6B);
14455put('MYANMAR_LETTER_KHAMTI_SA, 'codepoint, 0xAA6C);
14456put('MYANMAR_LETTER_KHAMTI_HA, 'codepoint, 0xAA6D);
14457put('MYANMAR_LETTER_KHAMTI_HHA, 'codepoint, 0xAA6E);
14458put('MYANMAR_LETTER_KHAMTI_FA, 'codepoint, 0xAA6F);
14459put('MYANMAR_MODIFIER_LETTER_KHAMTI_REDUPLICATION, 'codepoint, 0xAA70);
14460put('MYANMAR_LETTER_KHAMTI_XA, 'codepoint, 0xAA71);
14461put('MYANMAR_LETTER_KHAMTI_ZA, 'codepoint, 0xAA72);
14462put('MYANMAR_LETTER_KHAMTI_RA, 'codepoint, 0xAA73);
14463put('MYANMAR_LOGOGRAM_KHAMTI_OAY, 'codepoint, 0xAA74);
14464put('MYANMAR_LOGOGRAM_KHAMTI_QN, 'codepoint, 0xAA75);
14465put('MYANMAR_LOGOGRAM_KHAMTI_HM, 'codepoint, 0xAA76);
14466put('MYANMAR_SYMBOL_AITON_EXCLAMATION, 'codepoint, 0xAA77);
14467put('MYANMAR_SYMBOL_AITON_ONE, 'codepoint, 0xAA78);
14468put('MYANMAR_SYMBOL_AITON_TWO, 'codepoint, 0xAA79);
14469put('MYANMAR_LETTER_AITON_RA, 'codepoint, 0xAA7A);
14470put('MYANMAR_SIGN_PAO_KAREN_TONE, 'codepoint, 0xAA7B);
14471put('MYANMAR_SIGN_TAI_LAING_TONE_2, 'codepoint, 0xAA7C);
14472put('MYANMAR_SIGN_TAI_LAING_TONE_5, 'codepoint, 0xAA7D);
14473put('MYANMAR_LETTER_SHWE_PALAUNG_CHA, 'codepoint, 0xAA7E);
14474put('MYANMAR_LETTER_SHWE_PALAUNG_SHA, 'codepoint, 0xAA7F);
14475put('TAI_VIET_LETTER_LOW_KO, 'codepoint, 0xAA80);
14476put('TAI_VIET_LETTER_HIGH_KO, 'codepoint, 0xAA81);
14477put('TAI_VIET_LETTER_LOW_KHO, 'codepoint, 0xAA82);
14478put('TAI_VIET_LETTER_HIGH_KHO, 'codepoint, 0xAA83);
14479put('TAI_VIET_LETTER_LOW_KHHO, 'codepoint, 0xAA84);
14480put('TAI_VIET_LETTER_HIGH_KHHO, 'codepoint, 0xAA85);
14481put('TAI_VIET_LETTER_LOW_GO, 'codepoint, 0xAA86);
14482put('TAI_VIET_LETTER_HIGH_GO, 'codepoint, 0xAA87);
14483put('TAI_VIET_LETTER_LOW_NGO, 'codepoint, 0xAA88);
14484put('TAI_VIET_LETTER_HIGH_NGO, 'codepoint, 0xAA89);
14485put('TAI_VIET_LETTER_LOW_CO, 'codepoint, 0xAA8A);
14486put('TAI_VIET_LETTER_HIGH_CO, 'codepoint, 0xAA8B);
14487put('TAI_VIET_LETTER_LOW_CHO, 'codepoint, 0xAA8C);
14488put('TAI_VIET_LETTER_HIGH_CHO, 'codepoint, 0xAA8D);
14489put('TAI_VIET_LETTER_LOW_SO, 'codepoint, 0xAA8E);
14490put('TAI_VIET_LETTER_HIGH_SO, 'codepoint, 0xAA8F);
14491put('TAI_VIET_LETTER_LOW_NYO, 'codepoint, 0xAA90);
14492put('TAI_VIET_LETTER_HIGH_NYO, 'codepoint, 0xAA91);
14493put('TAI_VIET_LETTER_LOW_DO, 'codepoint, 0xAA92);
14494put('TAI_VIET_LETTER_HIGH_DO, 'codepoint, 0xAA93);
14495put('TAI_VIET_LETTER_LOW_TO, 'codepoint, 0xAA94);
14496put('TAI_VIET_LETTER_HIGH_TO, 'codepoint, 0xAA95);
14497put('TAI_VIET_LETTER_LOW_THO, 'codepoint, 0xAA96);
14498put('TAI_VIET_LETTER_HIGH_THO, 'codepoint, 0xAA97);
14499put('TAI_VIET_LETTER_LOW_NO, 'codepoint, 0xAA98);
14500put('TAI_VIET_LETTER_HIGH_NO, 'codepoint, 0xAA99);
14501put('TAI_VIET_LETTER_LOW_BO, 'codepoint, 0xAA9A);
14502put('TAI_VIET_LETTER_HIGH_BO, 'codepoint, 0xAA9B);
14503put('TAI_VIET_LETTER_LOW_PO, 'codepoint, 0xAA9C);
14504put('TAI_VIET_LETTER_HIGH_PO, 'codepoint, 0xAA9D);
14505put('TAI_VIET_LETTER_LOW_PHO, 'codepoint, 0xAA9E);
14506put('TAI_VIET_LETTER_HIGH_PHO, 'codepoint, 0xAA9F);
14507put('TAI_VIET_LETTER_LOW_FO, 'codepoint, 0xAAA0);
14508put('TAI_VIET_LETTER_HIGH_FO, 'codepoint, 0xAAA1);
14509put('TAI_VIET_LETTER_LOW_MO, 'codepoint, 0xAAA2);
14510put('TAI_VIET_LETTER_HIGH_MO, 'codepoint, 0xAAA3);
14511put('TAI_VIET_LETTER_LOW_YO, 'codepoint, 0xAAA4);
14512put('TAI_VIET_LETTER_HIGH_YO, 'codepoint, 0xAAA5);
14513put('TAI_VIET_LETTER_LOW_RO, 'codepoint, 0xAAA6);
14514put('TAI_VIET_LETTER_HIGH_RO, 'codepoint, 0xAAA7);
14515put('TAI_VIET_LETTER_LOW_LO, 'codepoint, 0xAAA8);
14516put('TAI_VIET_LETTER_HIGH_LO, 'codepoint, 0xAAA9);
14517put('TAI_VIET_LETTER_LOW_VO, 'codepoint, 0xAAAA);
14518put('TAI_VIET_LETTER_HIGH_VO, 'codepoint, 0xAAAB);
14519put('TAI_VIET_LETTER_LOW_HO, 'codepoint, 0xAAAC);
14520put('TAI_VIET_LETTER_HIGH_HO, 'codepoint, 0xAAAD);
14521put('TAI_VIET_LETTER_LOW_O, 'codepoint, 0xAAAE);
14522put('TAI_VIET_LETTER_HIGH_O, 'codepoint, 0xAAAF);
14523put('TAI_VIET_MAI_KANG, 'codepoint, 0xAAB0);
14524put('TAI_VIET_VOWEL_AA, 'codepoint, 0xAAB1);
14525put('TAI_VIET_VOWEL_I, 'codepoint, 0xAAB2);
14526put('TAI_VIET_VOWEL_UE, 'codepoint, 0xAAB3);
14527put('TAI_VIET_VOWEL_U, 'codepoint, 0xAAB4);
14528put('TAI_VIET_VOWEL_E, 'codepoint, 0xAAB5);
14529put('TAI_VIET_VOWEL_O, 'codepoint, 0xAAB6);
14530put('TAI_VIET_MAI_KHIT, 'codepoint, 0xAAB7);
14531put('TAI_VIET_VOWEL_IA, 'codepoint, 0xAAB8);
14532put('TAI_VIET_VOWEL_UEA, 'codepoint, 0xAAB9);
14533put('TAI_VIET_VOWEL_UA, 'codepoint, 0xAABA);
14534put('TAI_VIET_VOWEL_AUE, 'codepoint, 0xAABB);
14535put('TAI_VIET_VOWEL_AY, 'codepoint, 0xAABC);
14536put('TAI_VIET_VOWEL_AN, 'codepoint, 0xAABD);
14537put('TAI_VIET_VOWEL_AM, 'codepoint, 0xAABE);
14538put('TAI_VIET_TONE_MAI_EK, 'codepoint, 0xAABF);
14539put('TAI_VIET_TONE_MAI_NUENG, 'codepoint, 0xAAC0);
14540put('TAI_VIET_TONE_MAI_THO, 'codepoint, 0xAAC1);
14541put('TAI_VIET_TONE_MAI_SONG, 'codepoint, 0xAAC2);
14542put('TAI_VIET_SYMBOL_KON, 'codepoint, 0xAADB);
14543put('TAI_VIET_SYMBOL_NUENG, 'codepoint, 0xAADC);
14544put('TAI_VIET_SYMBOL_SAM, 'codepoint, 0xAADD);
14545put('TAI_VIET_SYMBOL_HO_HOI, 'codepoint, 0xAADE);
14546put('TAI_VIET_SYMBOL_KOI_KOI, 'codepoint, 0xAADF);
14547put('MEETEI_MAYEK_LETTER_E, 'codepoint, 0xAAE0);
14548put('MEETEI_MAYEK_LETTER_O, 'codepoint, 0xAAE1);
14549put('MEETEI_MAYEK_LETTER_CHA, 'codepoint, 0xAAE2);
14550put('MEETEI_MAYEK_LETTER_NYA, 'codepoint, 0xAAE3);
14551put('MEETEI_MAYEK_LETTER_TTA, 'codepoint, 0xAAE4);
14552put('MEETEI_MAYEK_LETTER_TTHA, 'codepoint, 0xAAE5);
14553put('MEETEI_MAYEK_LETTER_DDA, 'codepoint, 0xAAE6);
14554put('MEETEI_MAYEK_LETTER_DDHA, 'codepoint, 0xAAE7);
14555put('MEETEI_MAYEK_LETTER_NNA, 'codepoint, 0xAAE8);
14556put('MEETEI_MAYEK_LETTER_SHA, 'codepoint, 0xAAE9);
14557put('MEETEI_MAYEK_LETTER_SSA, 'codepoint, 0xAAEA);
14558put('MEETEI_MAYEK_VOWEL_SIGN_II, 'codepoint, 0xAAEB);
14559put('MEETEI_MAYEK_VOWEL_SIGN_UU, 'codepoint, 0xAAEC);
14560put('MEETEI_MAYEK_VOWEL_SIGN_AAI, 'codepoint, 0xAAED);
14561put('MEETEI_MAYEK_VOWEL_SIGN_AU, 'codepoint, 0xAAEE);
14562put('MEETEI_MAYEK_VOWEL_SIGN_AAU, 'codepoint, 0xAAEF);
14563put('MEETEI_MAYEK_CHEIKHAN, 'codepoint, 0xAAF0);
14564put('MEETEI_MAYEK_AHANG_KHUDAM, 'codepoint, 0xAAF1);
14565put('MEETEI_MAYEK_ANJI, 'codepoint, 0xAAF2);
14566put('MEETEI_MAYEK_SYLLABLE_REPETITION_MARK, 'codepoint, 0xAAF3);
14567put('MEETEI_MAYEK_WORD_REPETITION_MARK, 'codepoint, 0xAAF4);
14568put('MEETEI_MAYEK_VOWEL_SIGN_VISARGA, 'codepoint, 0xAAF5);
14569put('MEETEI_MAYEK_VIRAMA, 'codepoint, 0xAAF6);
14570put('ETHIOPIC_SYLLABLE_TTHU, 'codepoint, 0xAB01);
14571put('ETHIOPIC_SYLLABLE_TTHI, 'codepoint, 0xAB02);
14572put('ETHIOPIC_SYLLABLE_TTHAA, 'codepoint, 0xAB03);
14573put('ETHIOPIC_SYLLABLE_TTHEE, 'codepoint, 0xAB04);
14574put('ETHIOPIC_SYLLABLE_TTHE, 'codepoint, 0xAB05);
14575put('ETHIOPIC_SYLLABLE_TTHO, 'codepoint, 0xAB06);
14576put('ETHIOPIC_SYLLABLE_DDHU, 'codepoint, 0xAB09);
14577put('ETHIOPIC_SYLLABLE_DDHI, 'codepoint, 0xAB0A);
14578put('ETHIOPIC_SYLLABLE_DDHAA, 'codepoint, 0xAB0B);
14579put('ETHIOPIC_SYLLABLE_DDHEE, 'codepoint, 0xAB0C);
14580put('ETHIOPIC_SYLLABLE_DDHE, 'codepoint, 0xAB0D);
14581put('ETHIOPIC_SYLLABLE_DDHO, 'codepoint, 0xAB0E);
14582put('ETHIOPIC_SYLLABLE_DZU, 'codepoint, 0xAB11);
14583put('ETHIOPIC_SYLLABLE_DZI, 'codepoint, 0xAB12);
14584put('ETHIOPIC_SYLLABLE_DZAA, 'codepoint, 0xAB13);
14585put('ETHIOPIC_SYLLABLE_DZEE, 'codepoint, 0xAB14);
14586put('ETHIOPIC_SYLLABLE_DZE, 'codepoint, 0xAB15);
14587put('ETHIOPIC_SYLLABLE_DZO, 'codepoint, 0xAB16);
14588put('ETHIOPIC_SYLLABLE_CCHHA, 'codepoint, 0xAB20);
14589put('ETHIOPIC_SYLLABLE_CCHHU, 'codepoint, 0xAB21);
14590put('ETHIOPIC_SYLLABLE_CCHHI, 'codepoint, 0xAB22);
14591put('ETHIOPIC_SYLLABLE_CCHHAA, 'codepoint, 0xAB23);
14592put('ETHIOPIC_SYLLABLE_CCHHEE, 'codepoint, 0xAB24);
14593put('ETHIOPIC_SYLLABLE_CCHHE, 'codepoint, 0xAB25);
14594put('ETHIOPIC_SYLLABLE_CCHHO, 'codepoint, 0xAB26);
14595put('ETHIOPIC_SYLLABLE_BBA, 'codepoint, 0xAB28);
14596put('ETHIOPIC_SYLLABLE_BBU, 'codepoint, 0xAB29);
14597put('ETHIOPIC_SYLLABLE_BBI, 'codepoint, 0xAB2A);
14598put('ETHIOPIC_SYLLABLE_BBAA, 'codepoint, 0xAB2B);
14599put('ETHIOPIC_SYLLABLE_BBEE, 'codepoint, 0xAB2C);
14600put('ETHIOPIC_SYLLABLE_BBE, 'codepoint, 0xAB2D);
14601put('ETHIOPIC_SYLLABLE_BBO, 'codepoint, 0xAB2E);
14602put('LATIN_SMALL_LETTER_BARRED_ALPHA, 'codepoint, 0xAB30);
14603put('LATIN_SMALL_LETTER_A_REVERSED_SCHWA, 'codepoint, 0xAB31);
14604put('LATIN_SMALL_LETTER_BLACKLETTER_E, 'codepoint, 0xAB32);
14605put('LATIN_SMALL_LETTER_BARRED_E, 'codepoint, 0xAB33);
14606put('LATIN_SMALL_LETTER_E_WITH_FLOURISH, 'codepoint, 0xAB34);
14607put('LATIN_SMALL_LETTER_LENIS_F, 'codepoint, 0xAB35);
14608put('LATIN_SMALL_LETTER_SCRIPT_G_WITH_CROSSED_TAIL, 'codepoint, 0xAB36);
14609put('LATIN_SMALL_LETTER_L_WITH_INVERTED_LAZY_S, 'codepoint, 0xAB37);
14610put('LATIN_SMALL_LETTER_L_WITH_DOUBLE_MIDDLE_TILDE, 'codepoint, 0xAB38);
14611put('LATIN_SMALL_LETTER_L_WITH_MIDDLE_RING, 'codepoint, 0xAB39);
14612put('LATIN_SMALL_LETTER_M_WITH_CROSSED_TAIL, 'codepoint, 0xAB3A);
14613put('LATIN_SMALL_LETTER_N_WITH_CROSSED_TAIL, 'codepoint, 0xAB3B);
14614put('LATIN_SMALL_LETTER_ENG_WITH_CROSSED_TAIL, 'codepoint, 0xAB3C);
14615put('LATIN_SMALL_LETTER_BLACKLETTER_O, 'codepoint, 0xAB3D);
14616put('LATIN_SMALL_LETTER_BLACKLETTER_O_WITH_STROKE, 'codepoint, 0xAB3E);
14617put('LATIN_SMALL_LETTER_OPEN_O_WITH_STROKE, 'codepoint, 0xAB3F);
14618put('LATIN_SMALL_LETTER_INVERTED_OE, 'codepoint, 0xAB40);
14619put('LATIN_SMALL_LETTER_TURNED_OE_WITH_STROKE, 'codepoint, 0xAB41);
14620put('LATIN_SMALL_LETTER_TURNED_OE_WITH_HORIZONTAL_STROKE, 'codepoint, 0xAB42);
14621put('LATIN_SMALL_LETTER_TURNED_O_OPEN_O, 'codepoint, 0xAB43);
14622put('LATIN_SMALL_LETTER_TURNED_O_OPEN_O_WITH_STROKE, 'codepoint, 0xAB44);
14623put('LATIN_SMALL_LETTER_STIRRUP_R, 'codepoint, 0xAB45);
14624put('LATIN_LETTER_SMALL_CAPITAL_R_WITH_RIGHT_LEG, 'codepoint, 0xAB46);
14625put('LATIN_SMALL_LETTER_R_WITHOUT_HANDLE, 'codepoint, 0xAB47);
14626put('LATIN_SMALL_LETTER_DOUBLE_R, 'codepoint, 0xAB48);
14627put('LATIN_SMALL_LETTER_R_WITH_CROSSED_TAIL, 'codepoint, 0xAB49);
14628put('LATIN_SMALL_LETTER_DOUBLE_R_WITH_CROSSED_TAIL, 'codepoint, 0xAB4A);
14629put('LATIN_SMALL_LETTER_SCRIPT_R, 'codepoint, 0xAB4B);
14630put('LATIN_SMALL_LETTER_SCRIPT_R_WITH_RING, 'codepoint, 0xAB4C);
14631put('LATIN_SMALL_LETTER_BASELINE_ESH, 'codepoint, 0xAB4D);
14632put('LATIN_SMALL_LETTER_U_WITH_SHORT_RIGHT_LEG, 'codepoint, 0xAB4E);
14633put('LATIN_SMALL_LETTER_U_BAR_WITH_SHORT_RIGHT_LEG, 'codepoint, 0xAB4F);
14634put('LATIN_SMALL_LETTER_UI, 'codepoint, 0xAB50);
14635put('LATIN_SMALL_LETTER_TURNED_UI, 'codepoint, 0xAB51);
14636put('LATIN_SMALL_LETTER_U_WITH_LEFT_HOOK, 'codepoint, 0xAB52);
14637put('LATIN_SMALL_LETTER_CHI, 'codepoint, 0xAB53);
14638put('LATIN_SMALL_LETTER_CHI_WITH_LOW_RIGHT_RING, 'codepoint, 0xAB54);
14639put('LATIN_SMALL_LETTER_CHI_WITH_LOW_LEFT_SERIF, 'codepoint, 0xAB55);
14640put('LATIN_SMALL_LETTER_X_WITH_LOW_RIGHT_RING, 'codepoint, 0xAB56);
14641put('LATIN_SMALL_LETTER_X_WITH_LONG_LEFT_LEG, 'codepoint, 0xAB57);
14642put('LATIN_SMALL_LETTER_X_WITH_LONG_LEFT_LEG_AND_LOW_RIGHT_RING, 'codepoint, 0xAB58);
14643put('LATIN_SMALL_LETTER_X_WITH_LONG_LEFT_LEG_WITH_SERIF, 'codepoint, 0xAB59);
14644put('LATIN_SMALL_LETTER_Y_WITH_SHORT_RIGHT_LEG, 'codepoint, 0xAB5A);
14645put('MODIFIER_BREVE_WITH_INVERTED_BREVE, 'codepoint, 0xAB5B);
14646put('MODIFIER_LETTER_SMALL_HENG, 'codepoint, 0xAB5C);
14647put('MODIFIER_LETTER_SMALL_L_WITH_INVERTED_LAZY_S, 'codepoint, 0xAB5D);
14648put('MODIFIER_LETTER_SMALL_L_WITH_MIDDLE_TILDE, 'codepoint, 0xAB5E);
14649put('MODIFIER_LETTER_SMALL_U_WITH_LEFT_HOOK, 'codepoint, 0xAB5F);
14650put('LATIN_SMALL_LETTER_INVERTED_ALPHA, 'codepoint, 0xAB64);
14651put('GREEK_LETTER_SMALL_CAPITAL_OMEGA, 'codepoint, 0xAB65);
14652put('MEETEI_MAYEK_LETTER_KOK, 'codepoint, 0xABC0);
14653put('MEETEI_MAYEK_LETTER_SAM, 'codepoint, 0xABC1);
14654put('MEETEI_MAYEK_LETTER_LAI, 'codepoint, 0xABC2);
14655put('MEETEI_MAYEK_LETTER_MIT, 'codepoint, 0xABC3);
14656put('MEETEI_MAYEK_LETTER_PA, 'codepoint, 0xABC4);
14657put('MEETEI_MAYEK_LETTER_NA, 'codepoint, 0xABC5);
14658put('MEETEI_MAYEK_LETTER_CHIL, 'codepoint, 0xABC6);
14659put('MEETEI_MAYEK_LETTER_TIL, 'codepoint, 0xABC7);
14660put('MEETEI_MAYEK_LETTER_KHOU, 'codepoint, 0xABC8);
14661put('MEETEI_MAYEK_LETTER_NGOU, 'codepoint, 0xABC9);
14662put('MEETEI_MAYEK_LETTER_THOU, 'codepoint, 0xABCA);
14663put('MEETEI_MAYEK_LETTER_WAI, 'codepoint, 0xABCB);
14664put('MEETEI_MAYEK_LETTER_YANG, 'codepoint, 0xABCC);
14665put('MEETEI_MAYEK_LETTER_HUK, 'codepoint, 0xABCD);
14666put('MEETEI_MAYEK_LETTER_UN, 'codepoint, 0xABCE);
14667put('MEETEI_MAYEK_LETTER_I, 'codepoint, 0xABCF);
14668put('MEETEI_MAYEK_LETTER_PHAM, 'codepoint, 0xABD0);
14669put('MEETEI_MAYEK_LETTER_ATIYA, 'codepoint, 0xABD1);
14670put('MEETEI_MAYEK_LETTER_GOK, 'codepoint, 0xABD2);
14671put('MEETEI_MAYEK_LETTER_JHAM, 'codepoint, 0xABD3);
14672put('MEETEI_MAYEK_LETTER_RAI, 'codepoint, 0xABD4);
14673put('MEETEI_MAYEK_LETTER_BA, 'codepoint, 0xABD5);
14674put('MEETEI_MAYEK_LETTER_JIL, 'codepoint, 0xABD6);
14675put('MEETEI_MAYEK_LETTER_DIL, 'codepoint, 0xABD7);
14676put('MEETEI_MAYEK_LETTER_GHOU, 'codepoint, 0xABD8);
14677put('MEETEI_MAYEK_LETTER_DHOU, 'codepoint, 0xABD9);
14678put('MEETEI_MAYEK_LETTER_BHAM, 'codepoint, 0xABDA);
14679put('MEETEI_MAYEK_LETTER_KOK_LONSUM, 'codepoint, 0xABDB);
14680put('MEETEI_MAYEK_LETTER_LAI_LONSUM, 'codepoint, 0xABDC);
14681put('MEETEI_MAYEK_LETTER_MIT_LONSUM, 'codepoint, 0xABDD);
14682put('MEETEI_MAYEK_LETTER_PA_LONSUM, 'codepoint, 0xABDE);
14683put('MEETEI_MAYEK_LETTER_NA_LONSUM, 'codepoint, 0xABDF);
14684put('MEETEI_MAYEK_LETTER_TIL_LONSUM, 'codepoint, 0xABE0);
14685put('MEETEI_MAYEK_LETTER_NGOU_LONSUM, 'codepoint, 0xABE1);
14686put('MEETEI_MAYEK_LETTER_I_LONSUM, 'codepoint, 0xABE2);
14687put('MEETEI_MAYEK_VOWEL_SIGN_ONAP, 'codepoint, 0xABE3);
14688put('MEETEI_MAYEK_VOWEL_SIGN_INAP, 'codepoint, 0xABE4);
14689put('MEETEI_MAYEK_VOWEL_SIGN_ANAP, 'codepoint, 0xABE5);
14690put('MEETEI_MAYEK_VOWEL_SIGN_YENAP, 'codepoint, 0xABE6);
14691put('MEETEI_MAYEK_VOWEL_SIGN_SOUNAP, 'codepoint, 0xABE7);
14692put('MEETEI_MAYEK_VOWEL_SIGN_UNAP, 'codepoint, 0xABE8);
14693put('MEETEI_MAYEK_VOWEL_SIGN_CHEINAP, 'codepoint, 0xABE9);
14694put('MEETEI_MAYEK_VOWEL_SIGN_NUNG, 'codepoint, 0xABEA);
14695put('MEETEI_MAYEK_CHEIKHEI, 'codepoint, 0xABEB);
14696put('MEETEI_MAYEK_LUM_IYEK, 'codepoint, 0xABEC);
14697put('MEETEI_MAYEK_APUN_IYEK, 'codepoint, 0xABED);
14698put('MEETEI_MAYEK_DIGIT_ZERO, 'codepoint, 0xABF0);
14699put('MEETEI_MAYEK_DIGIT_ONE, 'codepoint, 0xABF1);
14700put('MEETEI_MAYEK_DIGIT_TWO, 'codepoint, 0xABF2);
14701put('MEETEI_MAYEK_DIGIT_THREE, 'codepoint, 0xABF3);
14702put('MEETEI_MAYEK_DIGIT_FOUR, 'codepoint, 0xABF4);
14703put('MEETEI_MAYEK_DIGIT_FIVE, 'codepoint, 0xABF5);
14704put('MEETEI_MAYEK_DIGIT_SIX, 'codepoint, 0xABF6);
14705put('MEETEI_MAYEK_DIGIT_SEVEN, 'codepoint, 0xABF7);
14706put('MEETEI_MAYEK_DIGIT_EIGHT, 'codepoint, 0xABF8);
14707put('MEETEI_MAYEK_DIGIT_NINE, 'codepoint, 0xABF9);
14708put('Hangul_Syllable__First, 'codepoint, 0xAC00);
14709put('Hangul_Syllable__Last, 'codepoint, 0xD7A3);
14710put('HANGUL_JUNGSEONG_O_YEO, 'codepoint, 0xD7B0);
14711put('HANGUL_JUNGSEONG_O_O_I, 'codepoint, 0xD7B1);
14712put('HANGUL_JUNGSEONG_YO_A, 'codepoint, 0xD7B2);
14713put('HANGUL_JUNGSEONG_YO_AE, 'codepoint, 0xD7B3);
14714put('HANGUL_JUNGSEONG_YO_EO, 'codepoint, 0xD7B4);
14715put('HANGUL_JUNGSEONG_U_YEO, 'codepoint, 0xD7B5);
14716put('HANGUL_JUNGSEONG_U_I_I, 'codepoint, 0xD7B6);
14717put('HANGUL_JUNGSEONG_YU_AE, 'codepoint, 0xD7B7);
14718put('HANGUL_JUNGSEONG_YU_O, 'codepoint, 0xD7B8);
14719put('HANGUL_JUNGSEONG_EU_A, 'codepoint, 0xD7B9);
14720put('HANGUL_JUNGSEONG_EU_EO, 'codepoint, 0xD7BA);
14721put('HANGUL_JUNGSEONG_EU_E, 'codepoint, 0xD7BB);
14722put('HANGUL_JUNGSEONG_EU_O, 'codepoint, 0xD7BC);
14723put('HANGUL_JUNGSEONG_I_YA_O, 'codepoint, 0xD7BD);
14724put('HANGUL_JUNGSEONG_I_YAE, 'codepoint, 0xD7BE);
14725put('HANGUL_JUNGSEONG_I_YEO, 'codepoint, 0xD7BF);
14726put('HANGUL_JUNGSEONG_I_YE, 'codepoint, 0xD7C0);
14727put('HANGUL_JUNGSEONG_I_O_I, 'codepoint, 0xD7C1);
14728put('HANGUL_JUNGSEONG_I_YO, 'codepoint, 0xD7C2);
14729put('HANGUL_JUNGSEONG_I_YU, 'codepoint, 0xD7C3);
14730put('HANGUL_JUNGSEONG_I_I, 'codepoint, 0xD7C4);
14731put('HANGUL_JUNGSEONG_ARAEA_A, 'codepoint, 0xD7C5);
14732put('HANGUL_JUNGSEONG_ARAEA_E, 'codepoint, 0xD7C6);
14733put('HANGUL_JONGSEONG_NIEUN_RIEUL, 'codepoint, 0xD7CB);
14734put('HANGUL_JONGSEONG_NIEUN_CHIEUCH, 'codepoint, 0xD7CC);
14735put('HANGUL_JONGSEONG_SSANGTIKEUT, 'codepoint, 0xD7CD);
14736put('HANGUL_JONGSEONG_SSANGTIKEUT_PIEUP, 'codepoint, 0xD7CE);
14737put('HANGUL_JONGSEONG_TIKEUT_PIEUP, 'codepoint, 0xD7CF);
14738put('HANGUL_JONGSEONG_TIKEUT_SIOS, 'codepoint, 0xD7D0);
14739put('HANGUL_JONGSEONG_TIKEUT_SIOS_KIYEOK, 'codepoint, 0xD7D1);
14740put('HANGUL_JONGSEONG_TIKEUT_CIEUC, 'codepoint, 0xD7D2);
14741put('HANGUL_JONGSEONG_TIKEUT_CHIEUCH, 'codepoint, 0xD7D3);
14742put('HANGUL_JONGSEONG_TIKEUT_THIEUTH, 'codepoint, 0xD7D4);
14743put('HANGUL_JONGSEONG_RIEUL_SSANGKIYEOK, 'codepoint, 0xD7D5);
14744put('HANGUL_JONGSEONG_RIEUL_KIYEOK_HIEUH, 'codepoint, 0xD7D6);
14745put('HANGUL_JONGSEONG_SSANGRIEUL_KHIEUKH, 'codepoint, 0xD7D7);
14746put('HANGUL_JONGSEONG_RIEUL_MIEUM_HIEUH, 'codepoint, 0xD7D8);
14747put('HANGUL_JONGSEONG_RIEUL_PIEUP_TIKEUT, 'codepoint, 0xD7D9);
14748put('HANGUL_JONGSEONG_RIEUL_PIEUP_PHIEUPH, 'codepoint, 0xD7DA);
14749put('HANGUL_JONGSEONG_RIEUL_YESIEUNG, 'codepoint, 0xD7DB);
14750put('HANGUL_JONGSEONG_RIEUL_YEORINHIEUH_HIEUH, 'codepoint, 0xD7DC);
14751put('HANGUL_JONGSEONG_KAPYEOUNRIEUL, 'codepoint, 0xD7DD);
14752put('HANGUL_JONGSEONG_MIEUM_NIEUN, 'codepoint, 0xD7DE);
14753put('HANGUL_JONGSEONG_MIEUM_SSANGNIEUN, 'codepoint, 0xD7DF);
14754put('HANGUL_JONGSEONG_SSANGMIEUM, 'codepoint, 0xD7E0);
14755put('HANGUL_JONGSEONG_MIEUM_PIEUP_SIOS, 'codepoint, 0xD7E1);
14756put('HANGUL_JONGSEONG_MIEUM_CIEUC, 'codepoint, 0xD7E2);
14757put('HANGUL_JONGSEONG_PIEUP_TIKEUT, 'codepoint, 0xD7E3);
14758put('HANGUL_JONGSEONG_PIEUP_RIEUL_PHIEUPH, 'codepoint, 0xD7E4);
14759put('HANGUL_JONGSEONG_PIEUP_MIEUM, 'codepoint, 0xD7E5);
14760put('HANGUL_JONGSEONG_SSANGPIEUP, 'codepoint, 0xD7E6);
14761put('HANGUL_JONGSEONG_PIEUP_SIOS_TIKEUT, 'codepoint, 0xD7E7);
14762put('HANGUL_JONGSEONG_PIEUP_CIEUC, 'codepoint, 0xD7E8);
14763put('HANGUL_JONGSEONG_PIEUP_CHIEUCH, 'codepoint, 0xD7E9);
14764put('HANGUL_JONGSEONG_SIOS_MIEUM, 'codepoint, 0xD7EA);
14765put('HANGUL_JONGSEONG_SIOS_KAPYEOUNPIEUP, 'codepoint, 0xD7EB);
14766put('HANGUL_JONGSEONG_SSANGSIOS_KIYEOK, 'codepoint, 0xD7EC);
14767put('HANGUL_JONGSEONG_SSANGSIOS_TIKEUT, 'codepoint, 0xD7ED);
14768put('HANGUL_JONGSEONG_SIOS_PANSIOS, 'codepoint, 0xD7EE);
14769put('HANGUL_JONGSEONG_SIOS_CIEUC, 'codepoint, 0xD7EF);
14770put('HANGUL_JONGSEONG_SIOS_CHIEUCH, 'codepoint, 0xD7F0);
14771put('HANGUL_JONGSEONG_SIOS_THIEUTH, 'codepoint, 0xD7F1);
14772put('HANGUL_JONGSEONG_SIOS_HIEUH, 'codepoint, 0xD7F2);
14773put('HANGUL_JONGSEONG_PANSIOS_PIEUP, 'codepoint, 0xD7F3);
14774put('HANGUL_JONGSEONG_PANSIOS_KAPYEOUNPIEUP, 'codepoint, 0xD7F4);
14775put('HANGUL_JONGSEONG_YESIEUNG_MIEUM, 'codepoint, 0xD7F5);
14776put('HANGUL_JONGSEONG_YESIEUNG_HIEUH, 'codepoint, 0xD7F6);
14777put('HANGUL_JONGSEONG_CIEUC_PIEUP, 'codepoint, 0xD7F7);
14778put('HANGUL_JONGSEONG_CIEUC_SSANGPIEUP, 'codepoint, 0xD7F8);
14779put('HANGUL_JONGSEONG_SSANGCIEUC, 'codepoint, 0xD7F9);
14780put('HANGUL_JONGSEONG_PHIEUPH_SIOS, 'codepoint, 0xD7FA);
14781put('HANGUL_JONGSEONG_PHIEUPH_THIEUTH, 'codepoint, 0xD7FB);
14782put('Non_Private_Use_High_Surrogate__First, 'codepoint, 0xD800);
14783put('Non_Private_Use_High_Surrogate__Last, 'codepoint, 0xDB7F);
14784put('Private_Use_High_Surrogate__First, 'codepoint, 0xDB80);
14785put('Private_Use_High_Surrogate__Last, 'codepoint, 0xDBFF);
14786put('Low_Surrogate__First, 'codepoint, 0xDC00);
14787put('Low_Surrogate__Last, 'codepoint, 0xDFFF);
14788put('Private_Use__First, 'codepoint, 0xE000);
14789put('Private_Use__Last, 'codepoint, 0xF8FF);
14790put('CJK_COMPATIBILITY_IDEOGRAPH_F900, 'codepoint, 0xF900);
14791put('CJK_COMPATIBILITY_IDEOGRAPH_F901, 'codepoint, 0xF901);
14792put('CJK_COMPATIBILITY_IDEOGRAPH_F902, 'codepoint, 0xF902);
14793put('CJK_COMPATIBILITY_IDEOGRAPH_F903, 'codepoint, 0xF903);
14794put('CJK_COMPATIBILITY_IDEOGRAPH_F904, 'codepoint, 0xF904);
14795put('CJK_COMPATIBILITY_IDEOGRAPH_F905, 'codepoint, 0xF905);
14796put('CJK_COMPATIBILITY_IDEOGRAPH_F906, 'codepoint, 0xF906);
14797put('CJK_COMPATIBILITY_IDEOGRAPH_F907, 'codepoint, 0xF907);
14798put('CJK_COMPATIBILITY_IDEOGRAPH_F908, 'codepoint, 0xF908);
14799put('CJK_COMPATIBILITY_IDEOGRAPH_F909, 'codepoint, 0xF909);
14800put('CJK_COMPATIBILITY_IDEOGRAPH_F90A, 'codepoint, 0xF90A);
14801put('CJK_COMPATIBILITY_IDEOGRAPH_F90B, 'codepoint, 0xF90B);
14802put('CJK_COMPATIBILITY_IDEOGRAPH_F90C, 'codepoint, 0xF90C);
14803put('CJK_COMPATIBILITY_IDEOGRAPH_F90D, 'codepoint, 0xF90D);
14804put('CJK_COMPATIBILITY_IDEOGRAPH_F90E, 'codepoint, 0xF90E);
14805put('CJK_COMPATIBILITY_IDEOGRAPH_F90F, 'codepoint, 0xF90F);
14806put('CJK_COMPATIBILITY_IDEOGRAPH_F910, 'codepoint, 0xF910);
14807put('CJK_COMPATIBILITY_IDEOGRAPH_F911, 'codepoint, 0xF911);
14808put('CJK_COMPATIBILITY_IDEOGRAPH_F912, 'codepoint, 0xF912);
14809put('CJK_COMPATIBILITY_IDEOGRAPH_F913, 'codepoint, 0xF913);
14810put('CJK_COMPATIBILITY_IDEOGRAPH_F914, 'codepoint, 0xF914);
14811put('CJK_COMPATIBILITY_IDEOGRAPH_F915, 'codepoint, 0xF915);
14812put('CJK_COMPATIBILITY_IDEOGRAPH_F916, 'codepoint, 0xF916);
14813put('CJK_COMPATIBILITY_IDEOGRAPH_F917, 'codepoint, 0xF917);
14814put('CJK_COMPATIBILITY_IDEOGRAPH_F918, 'codepoint, 0xF918);
14815put('CJK_COMPATIBILITY_IDEOGRAPH_F919, 'codepoint, 0xF919);
14816put('CJK_COMPATIBILITY_IDEOGRAPH_F91A, 'codepoint, 0xF91A);
14817put('CJK_COMPATIBILITY_IDEOGRAPH_F91B, 'codepoint, 0xF91B);
14818put('CJK_COMPATIBILITY_IDEOGRAPH_F91C, 'codepoint, 0xF91C);
14819put('CJK_COMPATIBILITY_IDEOGRAPH_F91D, 'codepoint, 0xF91D);
14820put('CJK_COMPATIBILITY_IDEOGRAPH_F91E, 'codepoint, 0xF91E);
14821put('CJK_COMPATIBILITY_IDEOGRAPH_F91F, 'codepoint, 0xF91F);
14822put('CJK_COMPATIBILITY_IDEOGRAPH_F920, 'codepoint, 0xF920);
14823put('CJK_COMPATIBILITY_IDEOGRAPH_F921, 'codepoint, 0xF921);
14824put('CJK_COMPATIBILITY_IDEOGRAPH_F922, 'codepoint, 0xF922);
14825put('CJK_COMPATIBILITY_IDEOGRAPH_F923, 'codepoint, 0xF923);
14826put('CJK_COMPATIBILITY_IDEOGRAPH_F924, 'codepoint, 0xF924);
14827put('CJK_COMPATIBILITY_IDEOGRAPH_F925, 'codepoint, 0xF925);
14828put('CJK_COMPATIBILITY_IDEOGRAPH_F926, 'codepoint, 0xF926);
14829put('CJK_COMPATIBILITY_IDEOGRAPH_F927, 'codepoint, 0xF927);
14830put('CJK_COMPATIBILITY_IDEOGRAPH_F928, 'codepoint, 0xF928);
14831put('CJK_COMPATIBILITY_IDEOGRAPH_F929, 'codepoint, 0xF929);
14832put('CJK_COMPATIBILITY_IDEOGRAPH_F92A, 'codepoint, 0xF92A);
14833put('CJK_COMPATIBILITY_IDEOGRAPH_F92B, 'codepoint, 0xF92B);
14834put('CJK_COMPATIBILITY_IDEOGRAPH_F92C, 'codepoint, 0xF92C);
14835put('CJK_COMPATIBILITY_IDEOGRAPH_F92D, 'codepoint, 0xF92D);
14836put('CJK_COMPATIBILITY_IDEOGRAPH_F92E, 'codepoint, 0xF92E);
14837put('CJK_COMPATIBILITY_IDEOGRAPH_F92F, 'codepoint, 0xF92F);
14838put('CJK_COMPATIBILITY_IDEOGRAPH_F930, 'codepoint, 0xF930);
14839put('CJK_COMPATIBILITY_IDEOGRAPH_F931, 'codepoint, 0xF931);
14840put('CJK_COMPATIBILITY_IDEOGRAPH_F932, 'codepoint, 0xF932);
14841put('CJK_COMPATIBILITY_IDEOGRAPH_F933, 'codepoint, 0xF933);
14842put('CJK_COMPATIBILITY_IDEOGRAPH_F934, 'codepoint, 0xF934);
14843put('CJK_COMPATIBILITY_IDEOGRAPH_F935, 'codepoint, 0xF935);
14844put('CJK_COMPATIBILITY_IDEOGRAPH_F936, 'codepoint, 0xF936);
14845put('CJK_COMPATIBILITY_IDEOGRAPH_F937, 'codepoint, 0xF937);
14846put('CJK_COMPATIBILITY_IDEOGRAPH_F938, 'codepoint, 0xF938);
14847put('CJK_COMPATIBILITY_IDEOGRAPH_F939, 'codepoint, 0xF939);
14848put('CJK_COMPATIBILITY_IDEOGRAPH_F93A, 'codepoint, 0xF93A);
14849put('CJK_COMPATIBILITY_IDEOGRAPH_F93B, 'codepoint, 0xF93B);
14850put('CJK_COMPATIBILITY_IDEOGRAPH_F93C, 'codepoint, 0xF93C);
14851put('CJK_COMPATIBILITY_IDEOGRAPH_F93D, 'codepoint, 0xF93D);
14852put('CJK_COMPATIBILITY_IDEOGRAPH_F93E, 'codepoint, 0xF93E);
14853put('CJK_COMPATIBILITY_IDEOGRAPH_F93F, 'codepoint, 0xF93F);
14854put('CJK_COMPATIBILITY_IDEOGRAPH_F940, 'codepoint, 0xF940);
14855put('CJK_COMPATIBILITY_IDEOGRAPH_F941, 'codepoint, 0xF941);
14856put('CJK_COMPATIBILITY_IDEOGRAPH_F942, 'codepoint, 0xF942);
14857put('CJK_COMPATIBILITY_IDEOGRAPH_F943, 'codepoint, 0xF943);
14858put('CJK_COMPATIBILITY_IDEOGRAPH_F944, 'codepoint, 0xF944);
14859put('CJK_COMPATIBILITY_IDEOGRAPH_F945, 'codepoint, 0xF945);
14860put('CJK_COMPATIBILITY_IDEOGRAPH_F946, 'codepoint, 0xF946);
14861put('CJK_COMPATIBILITY_IDEOGRAPH_F947, 'codepoint, 0xF947);
14862put('CJK_COMPATIBILITY_IDEOGRAPH_F948, 'codepoint, 0xF948);
14863put('CJK_COMPATIBILITY_IDEOGRAPH_F949, 'codepoint, 0xF949);
14864put('CJK_COMPATIBILITY_IDEOGRAPH_F94A, 'codepoint, 0xF94A);
14865put('CJK_COMPATIBILITY_IDEOGRAPH_F94B, 'codepoint, 0xF94B);
14866put('CJK_COMPATIBILITY_IDEOGRAPH_F94C, 'codepoint, 0xF94C);
14867put('CJK_COMPATIBILITY_IDEOGRAPH_F94D, 'codepoint, 0xF94D);
14868put('CJK_COMPATIBILITY_IDEOGRAPH_F94E, 'codepoint, 0xF94E);
14869put('CJK_COMPATIBILITY_IDEOGRAPH_F94F, 'codepoint, 0xF94F);
14870put('CJK_COMPATIBILITY_IDEOGRAPH_F950, 'codepoint, 0xF950);
14871put('CJK_COMPATIBILITY_IDEOGRAPH_F951, 'codepoint, 0xF951);
14872put('CJK_COMPATIBILITY_IDEOGRAPH_F952, 'codepoint, 0xF952);
14873put('CJK_COMPATIBILITY_IDEOGRAPH_F953, 'codepoint, 0xF953);
14874put('CJK_COMPATIBILITY_IDEOGRAPH_F954, 'codepoint, 0xF954);
14875put('CJK_COMPATIBILITY_IDEOGRAPH_F955, 'codepoint, 0xF955);
14876put('CJK_COMPATIBILITY_IDEOGRAPH_F956, 'codepoint, 0xF956);
14877put('CJK_COMPATIBILITY_IDEOGRAPH_F957, 'codepoint, 0xF957);
14878put('CJK_COMPATIBILITY_IDEOGRAPH_F958, 'codepoint, 0xF958);
14879put('CJK_COMPATIBILITY_IDEOGRAPH_F959, 'codepoint, 0xF959);
14880put('CJK_COMPATIBILITY_IDEOGRAPH_F95A, 'codepoint, 0xF95A);
14881put('CJK_COMPATIBILITY_IDEOGRAPH_F95B, 'codepoint, 0xF95B);
14882put('CJK_COMPATIBILITY_IDEOGRAPH_F95C, 'codepoint, 0xF95C);
14883put('CJK_COMPATIBILITY_IDEOGRAPH_F95D, 'codepoint, 0xF95D);
14884put('CJK_COMPATIBILITY_IDEOGRAPH_F95E, 'codepoint, 0xF95E);
14885put('CJK_COMPATIBILITY_IDEOGRAPH_F95F, 'codepoint, 0xF95F);
14886put('CJK_COMPATIBILITY_IDEOGRAPH_F960, 'codepoint, 0xF960);
14887put('CJK_COMPATIBILITY_IDEOGRAPH_F961, 'codepoint, 0xF961);
14888put('CJK_COMPATIBILITY_IDEOGRAPH_F962, 'codepoint, 0xF962);
14889put('CJK_COMPATIBILITY_IDEOGRAPH_F963, 'codepoint, 0xF963);
14890put('CJK_COMPATIBILITY_IDEOGRAPH_F964, 'codepoint, 0xF964);
14891put('CJK_COMPATIBILITY_IDEOGRAPH_F965, 'codepoint, 0xF965);
14892put('CJK_COMPATIBILITY_IDEOGRAPH_F966, 'codepoint, 0xF966);
14893put('CJK_COMPATIBILITY_IDEOGRAPH_F967, 'codepoint, 0xF967);
14894put('CJK_COMPATIBILITY_IDEOGRAPH_F968, 'codepoint, 0xF968);
14895put('CJK_COMPATIBILITY_IDEOGRAPH_F969, 'codepoint, 0xF969);
14896put('CJK_COMPATIBILITY_IDEOGRAPH_F96A, 'codepoint, 0xF96A);
14897put('CJK_COMPATIBILITY_IDEOGRAPH_F96B, 'codepoint, 0xF96B);
14898put('CJK_COMPATIBILITY_IDEOGRAPH_F96C, 'codepoint, 0xF96C);
14899put('CJK_COMPATIBILITY_IDEOGRAPH_F96D, 'codepoint, 0xF96D);
14900put('CJK_COMPATIBILITY_IDEOGRAPH_F96E, 'codepoint, 0xF96E);
14901put('CJK_COMPATIBILITY_IDEOGRAPH_F96F, 'codepoint, 0xF96F);
14902put('CJK_COMPATIBILITY_IDEOGRAPH_F970, 'codepoint, 0xF970);
14903put('CJK_COMPATIBILITY_IDEOGRAPH_F971, 'codepoint, 0xF971);
14904put('CJK_COMPATIBILITY_IDEOGRAPH_F972, 'codepoint, 0xF972);
14905put('CJK_COMPATIBILITY_IDEOGRAPH_F973, 'codepoint, 0xF973);
14906put('CJK_COMPATIBILITY_IDEOGRAPH_F974, 'codepoint, 0xF974);
14907put('CJK_COMPATIBILITY_IDEOGRAPH_F975, 'codepoint, 0xF975);
14908put('CJK_COMPATIBILITY_IDEOGRAPH_F976, 'codepoint, 0xF976);
14909put('CJK_COMPATIBILITY_IDEOGRAPH_F977, 'codepoint, 0xF977);
14910put('CJK_COMPATIBILITY_IDEOGRAPH_F978, 'codepoint, 0xF978);
14911put('CJK_COMPATIBILITY_IDEOGRAPH_F979, 'codepoint, 0xF979);
14912put('CJK_COMPATIBILITY_IDEOGRAPH_F97A, 'codepoint, 0xF97A);
14913put('CJK_COMPATIBILITY_IDEOGRAPH_F97B, 'codepoint, 0xF97B);
14914put('CJK_COMPATIBILITY_IDEOGRAPH_F97C, 'codepoint, 0xF97C);
14915put('CJK_COMPATIBILITY_IDEOGRAPH_F97D, 'codepoint, 0xF97D);
14916put('CJK_COMPATIBILITY_IDEOGRAPH_F97E, 'codepoint, 0xF97E);
14917put('CJK_COMPATIBILITY_IDEOGRAPH_F97F, 'codepoint, 0xF97F);
14918put('CJK_COMPATIBILITY_IDEOGRAPH_F980, 'codepoint, 0xF980);
14919put('CJK_COMPATIBILITY_IDEOGRAPH_F981, 'codepoint, 0xF981);
14920put('CJK_COMPATIBILITY_IDEOGRAPH_F982, 'codepoint, 0xF982);
14921put('CJK_COMPATIBILITY_IDEOGRAPH_F983, 'codepoint, 0xF983);
14922put('CJK_COMPATIBILITY_IDEOGRAPH_F984, 'codepoint, 0xF984);
14923put('CJK_COMPATIBILITY_IDEOGRAPH_F985, 'codepoint, 0xF985);
14924put('CJK_COMPATIBILITY_IDEOGRAPH_F986, 'codepoint, 0xF986);
14925put('CJK_COMPATIBILITY_IDEOGRAPH_F987, 'codepoint, 0xF987);
14926put('CJK_COMPATIBILITY_IDEOGRAPH_F988, 'codepoint, 0xF988);
14927put('CJK_COMPATIBILITY_IDEOGRAPH_F989, 'codepoint, 0xF989);
14928put('CJK_COMPATIBILITY_IDEOGRAPH_F98A, 'codepoint, 0xF98A);
14929put('CJK_COMPATIBILITY_IDEOGRAPH_F98B, 'codepoint, 0xF98B);
14930put('CJK_COMPATIBILITY_IDEOGRAPH_F98C, 'codepoint, 0xF98C);
14931put('CJK_COMPATIBILITY_IDEOGRAPH_F98D, 'codepoint, 0xF98D);
14932put('CJK_COMPATIBILITY_IDEOGRAPH_F98E, 'codepoint, 0xF98E);
14933put('CJK_COMPATIBILITY_IDEOGRAPH_F98F, 'codepoint, 0xF98F);
14934put('CJK_COMPATIBILITY_IDEOGRAPH_F990, 'codepoint, 0xF990);
14935put('CJK_COMPATIBILITY_IDEOGRAPH_F991, 'codepoint, 0xF991);
14936put('CJK_COMPATIBILITY_IDEOGRAPH_F992, 'codepoint, 0xF992);
14937put('CJK_COMPATIBILITY_IDEOGRAPH_F993, 'codepoint, 0xF993);
14938put('CJK_COMPATIBILITY_IDEOGRAPH_F994, 'codepoint, 0xF994);
14939put('CJK_COMPATIBILITY_IDEOGRAPH_F995, 'codepoint, 0xF995);
14940put('CJK_COMPATIBILITY_IDEOGRAPH_F996, 'codepoint, 0xF996);
14941put('CJK_COMPATIBILITY_IDEOGRAPH_F997, 'codepoint, 0xF997);
14942put('CJK_COMPATIBILITY_IDEOGRAPH_F998, 'codepoint, 0xF998);
14943put('CJK_COMPATIBILITY_IDEOGRAPH_F999, 'codepoint, 0xF999);
14944put('CJK_COMPATIBILITY_IDEOGRAPH_F99A, 'codepoint, 0xF99A);
14945put('CJK_COMPATIBILITY_IDEOGRAPH_F99B, 'codepoint, 0xF99B);
14946put('CJK_COMPATIBILITY_IDEOGRAPH_F99C, 'codepoint, 0xF99C);
14947put('CJK_COMPATIBILITY_IDEOGRAPH_F99D, 'codepoint, 0xF99D);
14948put('CJK_COMPATIBILITY_IDEOGRAPH_F99E, 'codepoint, 0xF99E);
14949put('CJK_COMPATIBILITY_IDEOGRAPH_F99F, 'codepoint, 0xF99F);
14950put('CJK_COMPATIBILITY_IDEOGRAPH_F9A0, 'codepoint, 0xF9A0);
14951put('CJK_COMPATIBILITY_IDEOGRAPH_F9A1, 'codepoint, 0xF9A1);
14952put('CJK_COMPATIBILITY_IDEOGRAPH_F9A2, 'codepoint, 0xF9A2);
14953put('CJK_COMPATIBILITY_IDEOGRAPH_F9A3, 'codepoint, 0xF9A3);
14954put('CJK_COMPATIBILITY_IDEOGRAPH_F9A4, 'codepoint, 0xF9A4);
14955put('CJK_COMPATIBILITY_IDEOGRAPH_F9A5, 'codepoint, 0xF9A5);
14956put('CJK_COMPATIBILITY_IDEOGRAPH_F9A6, 'codepoint, 0xF9A6);
14957put('CJK_COMPATIBILITY_IDEOGRAPH_F9A7, 'codepoint, 0xF9A7);
14958put('CJK_COMPATIBILITY_IDEOGRAPH_F9A8, 'codepoint, 0xF9A8);
14959put('CJK_COMPATIBILITY_IDEOGRAPH_F9A9, 'codepoint, 0xF9A9);
14960put('CJK_COMPATIBILITY_IDEOGRAPH_F9AA, 'codepoint, 0xF9AA);
14961put('CJK_COMPATIBILITY_IDEOGRAPH_F9AB, 'codepoint, 0xF9AB);
14962put('CJK_COMPATIBILITY_IDEOGRAPH_F9AC, 'codepoint, 0xF9AC);
14963put('CJK_COMPATIBILITY_IDEOGRAPH_F9AD, 'codepoint, 0xF9AD);
14964put('CJK_COMPATIBILITY_IDEOGRAPH_F9AE, 'codepoint, 0xF9AE);
14965put('CJK_COMPATIBILITY_IDEOGRAPH_F9AF, 'codepoint, 0xF9AF);
14966put('CJK_COMPATIBILITY_IDEOGRAPH_F9B0, 'codepoint, 0xF9B0);
14967put('CJK_COMPATIBILITY_IDEOGRAPH_F9B1, 'codepoint, 0xF9B1);
14968put('CJK_COMPATIBILITY_IDEOGRAPH_F9B2, 'codepoint, 0xF9B2);
14969put('CJK_COMPATIBILITY_IDEOGRAPH_F9B3, 'codepoint, 0xF9B3);
14970put('CJK_COMPATIBILITY_IDEOGRAPH_F9B4, 'codepoint, 0xF9B4);
14971put('CJK_COMPATIBILITY_IDEOGRAPH_F9B5, 'codepoint, 0xF9B5);
14972put('CJK_COMPATIBILITY_IDEOGRAPH_F9B6, 'codepoint, 0xF9B6);
14973put('CJK_COMPATIBILITY_IDEOGRAPH_F9B7, 'codepoint, 0xF9B7);
14974put('CJK_COMPATIBILITY_IDEOGRAPH_F9B8, 'codepoint, 0xF9B8);
14975put('CJK_COMPATIBILITY_IDEOGRAPH_F9B9, 'codepoint, 0xF9B9);
14976put('CJK_COMPATIBILITY_IDEOGRAPH_F9BA, 'codepoint, 0xF9BA);
14977put('CJK_COMPATIBILITY_IDEOGRAPH_F9BB, 'codepoint, 0xF9BB);
14978put('CJK_COMPATIBILITY_IDEOGRAPH_F9BC, 'codepoint, 0xF9BC);
14979put('CJK_COMPATIBILITY_IDEOGRAPH_F9BD, 'codepoint, 0xF9BD);
14980put('CJK_COMPATIBILITY_IDEOGRAPH_F9BE, 'codepoint, 0xF9BE);
14981put('CJK_COMPATIBILITY_IDEOGRAPH_F9BF, 'codepoint, 0xF9BF);
14982put('CJK_COMPATIBILITY_IDEOGRAPH_F9C0, 'codepoint, 0xF9C0);
14983put('CJK_COMPATIBILITY_IDEOGRAPH_F9C1, 'codepoint, 0xF9C1);
14984put('CJK_COMPATIBILITY_IDEOGRAPH_F9C2, 'codepoint, 0xF9C2);
14985put('CJK_COMPATIBILITY_IDEOGRAPH_F9C3, 'codepoint, 0xF9C3);
14986put('CJK_COMPATIBILITY_IDEOGRAPH_F9C4, 'codepoint, 0xF9C4);
14987put('CJK_COMPATIBILITY_IDEOGRAPH_F9C5, 'codepoint, 0xF9C5);
14988put('CJK_COMPATIBILITY_IDEOGRAPH_F9C6, 'codepoint, 0xF9C6);
14989put('CJK_COMPATIBILITY_IDEOGRAPH_F9C7, 'codepoint, 0xF9C7);
14990put('CJK_COMPATIBILITY_IDEOGRAPH_F9C8, 'codepoint, 0xF9C8);
14991put('CJK_COMPATIBILITY_IDEOGRAPH_F9C9, 'codepoint, 0xF9C9);
14992put('CJK_COMPATIBILITY_IDEOGRAPH_F9CA, 'codepoint, 0xF9CA);
14993put('CJK_COMPATIBILITY_IDEOGRAPH_F9CB, 'codepoint, 0xF9CB);
14994put('CJK_COMPATIBILITY_IDEOGRAPH_F9CC, 'codepoint, 0xF9CC);
14995put('CJK_COMPATIBILITY_IDEOGRAPH_F9CD, 'codepoint, 0xF9CD);
14996put('CJK_COMPATIBILITY_IDEOGRAPH_F9CE, 'codepoint, 0xF9CE);
14997put('CJK_COMPATIBILITY_IDEOGRAPH_F9CF, 'codepoint, 0xF9CF);
14998put('CJK_COMPATIBILITY_IDEOGRAPH_F9D0, 'codepoint, 0xF9D0);
14999put('CJK_COMPATIBILITY_IDEOGRAPH_F9D1, 'codepoint, 0xF9D1);
15000put('CJK_COMPATIBILITY_IDEOGRAPH_F9D2, 'codepoint, 0xF9D2);
15001put('CJK_COMPATIBILITY_IDEOGRAPH_F9D3, 'codepoint, 0xF9D3);
15002put('CJK_COMPATIBILITY_IDEOGRAPH_F9D4, 'codepoint, 0xF9D4);
15003put('CJK_COMPATIBILITY_IDEOGRAPH_F9D5, 'codepoint, 0xF9D5);
15004put('CJK_COMPATIBILITY_IDEOGRAPH_F9D6, 'codepoint, 0xF9D6);
15005put('CJK_COMPATIBILITY_IDEOGRAPH_F9D7, 'codepoint, 0xF9D7);
15006put('CJK_COMPATIBILITY_IDEOGRAPH_F9D8, 'codepoint, 0xF9D8);
15007put('CJK_COMPATIBILITY_IDEOGRAPH_F9D9, 'codepoint, 0xF9D9);
15008put('CJK_COMPATIBILITY_IDEOGRAPH_F9DA, 'codepoint, 0xF9DA);
15009put('CJK_COMPATIBILITY_IDEOGRAPH_F9DB, 'codepoint, 0xF9DB);
15010put('CJK_COMPATIBILITY_IDEOGRAPH_F9DC, 'codepoint, 0xF9DC);
15011put('CJK_COMPATIBILITY_IDEOGRAPH_F9DD, 'codepoint, 0xF9DD);
15012put('CJK_COMPATIBILITY_IDEOGRAPH_F9DE, 'codepoint, 0xF9DE);
15013put('CJK_COMPATIBILITY_IDEOGRAPH_F9DF, 'codepoint, 0xF9DF);
15014put('CJK_COMPATIBILITY_IDEOGRAPH_F9E0, 'codepoint, 0xF9E0);
15015put('CJK_COMPATIBILITY_IDEOGRAPH_F9E1, 'codepoint, 0xF9E1);
15016put('CJK_COMPATIBILITY_IDEOGRAPH_F9E2, 'codepoint, 0xF9E2);
15017put('CJK_COMPATIBILITY_IDEOGRAPH_F9E3, 'codepoint, 0xF9E3);
15018put('CJK_COMPATIBILITY_IDEOGRAPH_F9E4, 'codepoint, 0xF9E4);
15019put('CJK_COMPATIBILITY_IDEOGRAPH_F9E5, 'codepoint, 0xF9E5);
15020put('CJK_COMPATIBILITY_IDEOGRAPH_F9E6, 'codepoint, 0xF9E6);
15021put('CJK_COMPATIBILITY_IDEOGRAPH_F9E7, 'codepoint, 0xF9E7);
15022put('CJK_COMPATIBILITY_IDEOGRAPH_F9E8, 'codepoint, 0xF9E8);
15023put('CJK_COMPATIBILITY_IDEOGRAPH_F9E9, 'codepoint, 0xF9E9);
15024put('CJK_COMPATIBILITY_IDEOGRAPH_F9EA, 'codepoint, 0xF9EA);
15025put('CJK_COMPATIBILITY_IDEOGRAPH_F9EB, 'codepoint, 0xF9EB);
15026put('CJK_COMPATIBILITY_IDEOGRAPH_F9EC, 'codepoint, 0xF9EC);
15027put('CJK_COMPATIBILITY_IDEOGRAPH_F9ED, 'codepoint, 0xF9ED);
15028put('CJK_COMPATIBILITY_IDEOGRAPH_F9EE, 'codepoint, 0xF9EE);
15029put('CJK_COMPATIBILITY_IDEOGRAPH_F9EF, 'codepoint, 0xF9EF);
15030put('CJK_COMPATIBILITY_IDEOGRAPH_F9F0, 'codepoint, 0xF9F0);
15031put('CJK_COMPATIBILITY_IDEOGRAPH_F9F1, 'codepoint, 0xF9F1);
15032put('CJK_COMPATIBILITY_IDEOGRAPH_F9F2, 'codepoint, 0xF9F2);
15033put('CJK_COMPATIBILITY_IDEOGRAPH_F9F3, 'codepoint, 0xF9F3);
15034put('CJK_COMPATIBILITY_IDEOGRAPH_F9F4, 'codepoint, 0xF9F4);
15035put('CJK_COMPATIBILITY_IDEOGRAPH_F9F5, 'codepoint, 0xF9F5);
15036put('CJK_COMPATIBILITY_IDEOGRAPH_F9F6, 'codepoint, 0xF9F6);
15037put('CJK_COMPATIBILITY_IDEOGRAPH_F9F7, 'codepoint, 0xF9F7);
15038put('CJK_COMPATIBILITY_IDEOGRAPH_F9F8, 'codepoint, 0xF9F8);
15039put('CJK_COMPATIBILITY_IDEOGRAPH_F9F9, 'codepoint, 0xF9F9);
15040put('CJK_COMPATIBILITY_IDEOGRAPH_F9FA, 'codepoint, 0xF9FA);
15041put('CJK_COMPATIBILITY_IDEOGRAPH_F9FB, 'codepoint, 0xF9FB);
15042put('CJK_COMPATIBILITY_IDEOGRAPH_F9FC, 'codepoint, 0xF9FC);
15043put('CJK_COMPATIBILITY_IDEOGRAPH_F9FD, 'codepoint, 0xF9FD);
15044put('CJK_COMPATIBILITY_IDEOGRAPH_F9FE, 'codepoint, 0xF9FE);
15045put('CJK_COMPATIBILITY_IDEOGRAPH_F9FF, 'codepoint, 0xF9FF);
15046put('CJK_COMPATIBILITY_IDEOGRAPH_FA00, 'codepoint, 0xFA00);
15047put('CJK_COMPATIBILITY_IDEOGRAPH_FA01, 'codepoint, 0xFA01);
15048put('CJK_COMPATIBILITY_IDEOGRAPH_FA02, 'codepoint, 0xFA02);
15049put('CJK_COMPATIBILITY_IDEOGRAPH_FA03, 'codepoint, 0xFA03);
15050put('CJK_COMPATIBILITY_IDEOGRAPH_FA04, 'codepoint, 0xFA04);
15051put('CJK_COMPATIBILITY_IDEOGRAPH_FA05, 'codepoint, 0xFA05);
15052put('CJK_COMPATIBILITY_IDEOGRAPH_FA06, 'codepoint, 0xFA06);
15053put('CJK_COMPATIBILITY_IDEOGRAPH_FA07, 'codepoint, 0xFA07);
15054put('CJK_COMPATIBILITY_IDEOGRAPH_FA08, 'codepoint, 0xFA08);
15055put('CJK_COMPATIBILITY_IDEOGRAPH_FA09, 'codepoint, 0xFA09);
15056put('CJK_COMPATIBILITY_IDEOGRAPH_FA0A, 'codepoint, 0xFA0A);
15057put('CJK_COMPATIBILITY_IDEOGRAPH_FA0B, 'codepoint, 0xFA0B);
15058put('CJK_COMPATIBILITY_IDEOGRAPH_FA0C, 'codepoint, 0xFA0C);
15059put('CJK_COMPATIBILITY_IDEOGRAPH_FA0D, 'codepoint, 0xFA0D);
15060put('CJK_COMPATIBILITY_IDEOGRAPH_FA0E, 'codepoint, 0xFA0E);
15061put('CJK_COMPATIBILITY_IDEOGRAPH_FA0F, 'codepoint, 0xFA0F);
15062put('CJK_COMPATIBILITY_IDEOGRAPH_FA10, 'codepoint, 0xFA10);
15063put('CJK_COMPATIBILITY_IDEOGRAPH_FA11, 'codepoint, 0xFA11);
15064put('CJK_COMPATIBILITY_IDEOGRAPH_FA12, 'codepoint, 0xFA12);
15065put('CJK_COMPATIBILITY_IDEOGRAPH_FA13, 'codepoint, 0xFA13);
15066put('CJK_COMPATIBILITY_IDEOGRAPH_FA14, 'codepoint, 0xFA14);
15067put('CJK_COMPATIBILITY_IDEOGRAPH_FA15, 'codepoint, 0xFA15);
15068put('CJK_COMPATIBILITY_IDEOGRAPH_FA16, 'codepoint, 0xFA16);
15069put('CJK_COMPATIBILITY_IDEOGRAPH_FA17, 'codepoint, 0xFA17);
15070put('CJK_COMPATIBILITY_IDEOGRAPH_FA18, 'codepoint, 0xFA18);
15071put('CJK_COMPATIBILITY_IDEOGRAPH_FA19, 'codepoint, 0xFA19);
15072put('CJK_COMPATIBILITY_IDEOGRAPH_FA1A, 'codepoint, 0xFA1A);
15073put('CJK_COMPATIBILITY_IDEOGRAPH_FA1B, 'codepoint, 0xFA1B);
15074put('CJK_COMPATIBILITY_IDEOGRAPH_FA1C, 'codepoint, 0xFA1C);
15075put('CJK_COMPATIBILITY_IDEOGRAPH_FA1D, 'codepoint, 0xFA1D);
15076put('CJK_COMPATIBILITY_IDEOGRAPH_FA1E, 'codepoint, 0xFA1E);
15077put('CJK_COMPATIBILITY_IDEOGRAPH_FA1F, 'codepoint, 0xFA1F);
15078put('CJK_COMPATIBILITY_IDEOGRAPH_FA20, 'codepoint, 0xFA20);
15079put('CJK_COMPATIBILITY_IDEOGRAPH_FA21, 'codepoint, 0xFA21);
15080put('CJK_COMPATIBILITY_IDEOGRAPH_FA22, 'codepoint, 0xFA22);
15081put('CJK_COMPATIBILITY_IDEOGRAPH_FA23, 'codepoint, 0xFA23);
15082put('CJK_COMPATIBILITY_IDEOGRAPH_FA24, 'codepoint, 0xFA24);
15083put('CJK_COMPATIBILITY_IDEOGRAPH_FA25, 'codepoint, 0xFA25);
15084put('CJK_COMPATIBILITY_IDEOGRAPH_FA26, 'codepoint, 0xFA26);
15085put('CJK_COMPATIBILITY_IDEOGRAPH_FA27, 'codepoint, 0xFA27);
15086put('CJK_COMPATIBILITY_IDEOGRAPH_FA28, 'codepoint, 0xFA28);
15087put('CJK_COMPATIBILITY_IDEOGRAPH_FA29, 'codepoint, 0xFA29);
15088put('CJK_COMPATIBILITY_IDEOGRAPH_FA2A, 'codepoint, 0xFA2A);
15089put('CJK_COMPATIBILITY_IDEOGRAPH_FA2B, 'codepoint, 0xFA2B);
15090put('CJK_COMPATIBILITY_IDEOGRAPH_FA2C, 'codepoint, 0xFA2C);
15091put('CJK_COMPATIBILITY_IDEOGRAPH_FA2D, 'codepoint, 0xFA2D);
15092put('CJK_COMPATIBILITY_IDEOGRAPH_FA2E, 'codepoint, 0xFA2E);
15093put('CJK_COMPATIBILITY_IDEOGRAPH_FA2F, 'codepoint, 0xFA2F);
15094put('CJK_COMPATIBILITY_IDEOGRAPH_FA30, 'codepoint, 0xFA30);
15095put('CJK_COMPATIBILITY_IDEOGRAPH_FA31, 'codepoint, 0xFA31);
15096put('CJK_COMPATIBILITY_IDEOGRAPH_FA32, 'codepoint, 0xFA32);
15097put('CJK_COMPATIBILITY_IDEOGRAPH_FA33, 'codepoint, 0xFA33);
15098put('CJK_COMPATIBILITY_IDEOGRAPH_FA34, 'codepoint, 0xFA34);
15099put('CJK_COMPATIBILITY_IDEOGRAPH_FA35, 'codepoint, 0xFA35);
15100put('CJK_COMPATIBILITY_IDEOGRAPH_FA36, 'codepoint, 0xFA36);
15101put('CJK_COMPATIBILITY_IDEOGRAPH_FA37, 'codepoint, 0xFA37);
15102put('CJK_COMPATIBILITY_IDEOGRAPH_FA38, 'codepoint, 0xFA38);
15103put('CJK_COMPATIBILITY_IDEOGRAPH_FA39, 'codepoint, 0xFA39);
15104put('CJK_COMPATIBILITY_IDEOGRAPH_FA3A, 'codepoint, 0xFA3A);
15105put('CJK_COMPATIBILITY_IDEOGRAPH_FA3B, 'codepoint, 0xFA3B);
15106put('CJK_COMPATIBILITY_IDEOGRAPH_FA3C, 'codepoint, 0xFA3C);
15107put('CJK_COMPATIBILITY_IDEOGRAPH_FA3D, 'codepoint, 0xFA3D);
15108put('CJK_COMPATIBILITY_IDEOGRAPH_FA3E, 'codepoint, 0xFA3E);
15109put('CJK_COMPATIBILITY_IDEOGRAPH_FA3F, 'codepoint, 0xFA3F);
15110put('CJK_COMPATIBILITY_IDEOGRAPH_FA40, 'codepoint, 0xFA40);
15111put('CJK_COMPATIBILITY_IDEOGRAPH_FA41, 'codepoint, 0xFA41);
15112put('CJK_COMPATIBILITY_IDEOGRAPH_FA42, 'codepoint, 0xFA42);
15113put('CJK_COMPATIBILITY_IDEOGRAPH_FA43, 'codepoint, 0xFA43);
15114put('CJK_COMPATIBILITY_IDEOGRAPH_FA44, 'codepoint, 0xFA44);
15115put('CJK_COMPATIBILITY_IDEOGRAPH_FA45, 'codepoint, 0xFA45);
15116put('CJK_COMPATIBILITY_IDEOGRAPH_FA46, 'codepoint, 0xFA46);
15117put('CJK_COMPATIBILITY_IDEOGRAPH_FA47, 'codepoint, 0xFA47);
15118put('CJK_COMPATIBILITY_IDEOGRAPH_FA48, 'codepoint, 0xFA48);
15119put('CJK_COMPATIBILITY_IDEOGRAPH_FA49, 'codepoint, 0xFA49);
15120put('CJK_COMPATIBILITY_IDEOGRAPH_FA4A, 'codepoint, 0xFA4A);
15121put('CJK_COMPATIBILITY_IDEOGRAPH_FA4B, 'codepoint, 0xFA4B);
15122put('CJK_COMPATIBILITY_IDEOGRAPH_FA4C, 'codepoint, 0xFA4C);
15123put('CJK_COMPATIBILITY_IDEOGRAPH_FA4D, 'codepoint, 0xFA4D);
15124put('CJK_COMPATIBILITY_IDEOGRAPH_FA4E, 'codepoint, 0xFA4E);
15125put('CJK_COMPATIBILITY_IDEOGRAPH_FA4F, 'codepoint, 0xFA4F);
15126put('CJK_COMPATIBILITY_IDEOGRAPH_FA50, 'codepoint, 0xFA50);
15127put('CJK_COMPATIBILITY_IDEOGRAPH_FA51, 'codepoint, 0xFA51);
15128put('CJK_COMPATIBILITY_IDEOGRAPH_FA52, 'codepoint, 0xFA52);
15129put('CJK_COMPATIBILITY_IDEOGRAPH_FA53, 'codepoint, 0xFA53);
15130put('CJK_COMPATIBILITY_IDEOGRAPH_FA54, 'codepoint, 0xFA54);
15131put('CJK_COMPATIBILITY_IDEOGRAPH_FA55, 'codepoint, 0xFA55);
15132put('CJK_COMPATIBILITY_IDEOGRAPH_FA56, 'codepoint, 0xFA56);
15133put('CJK_COMPATIBILITY_IDEOGRAPH_FA57, 'codepoint, 0xFA57);
15134put('CJK_COMPATIBILITY_IDEOGRAPH_FA58, 'codepoint, 0xFA58);
15135put('CJK_COMPATIBILITY_IDEOGRAPH_FA59, 'codepoint, 0xFA59);
15136put('CJK_COMPATIBILITY_IDEOGRAPH_FA5A, 'codepoint, 0xFA5A);
15137put('CJK_COMPATIBILITY_IDEOGRAPH_FA5B, 'codepoint, 0xFA5B);
15138put('CJK_COMPATIBILITY_IDEOGRAPH_FA5C, 'codepoint, 0xFA5C);
15139put('CJK_COMPATIBILITY_IDEOGRAPH_FA5D, 'codepoint, 0xFA5D);
15140put('CJK_COMPATIBILITY_IDEOGRAPH_FA5E, 'codepoint, 0xFA5E);
15141put('CJK_COMPATIBILITY_IDEOGRAPH_FA5F, 'codepoint, 0xFA5F);
15142put('CJK_COMPATIBILITY_IDEOGRAPH_FA60, 'codepoint, 0xFA60);
15143put('CJK_COMPATIBILITY_IDEOGRAPH_FA61, 'codepoint, 0xFA61);
15144put('CJK_COMPATIBILITY_IDEOGRAPH_FA62, 'codepoint, 0xFA62);
15145put('CJK_COMPATIBILITY_IDEOGRAPH_FA63, 'codepoint, 0xFA63);
15146put('CJK_COMPATIBILITY_IDEOGRAPH_FA64, 'codepoint, 0xFA64);
15147put('CJK_COMPATIBILITY_IDEOGRAPH_FA65, 'codepoint, 0xFA65);
15148put('CJK_COMPATIBILITY_IDEOGRAPH_FA66, 'codepoint, 0xFA66);
15149put('CJK_COMPATIBILITY_IDEOGRAPH_FA67, 'codepoint, 0xFA67);
15150put('CJK_COMPATIBILITY_IDEOGRAPH_FA68, 'codepoint, 0xFA68);
15151put('CJK_COMPATIBILITY_IDEOGRAPH_FA69, 'codepoint, 0xFA69);
15152put('CJK_COMPATIBILITY_IDEOGRAPH_FA6A, 'codepoint, 0xFA6A);
15153put('CJK_COMPATIBILITY_IDEOGRAPH_FA6B, 'codepoint, 0xFA6B);
15154put('CJK_COMPATIBILITY_IDEOGRAPH_FA6C, 'codepoint, 0xFA6C);
15155put('CJK_COMPATIBILITY_IDEOGRAPH_FA6D, 'codepoint, 0xFA6D);
15156put('CJK_COMPATIBILITY_IDEOGRAPH_FA70, 'codepoint, 0xFA70);
15157put('CJK_COMPATIBILITY_IDEOGRAPH_FA71, 'codepoint, 0xFA71);
15158put('CJK_COMPATIBILITY_IDEOGRAPH_FA72, 'codepoint, 0xFA72);
15159put('CJK_COMPATIBILITY_IDEOGRAPH_FA73, 'codepoint, 0xFA73);
15160put('CJK_COMPATIBILITY_IDEOGRAPH_FA74, 'codepoint, 0xFA74);
15161put('CJK_COMPATIBILITY_IDEOGRAPH_FA75, 'codepoint, 0xFA75);
15162put('CJK_COMPATIBILITY_IDEOGRAPH_FA76, 'codepoint, 0xFA76);
15163put('CJK_COMPATIBILITY_IDEOGRAPH_FA77, 'codepoint, 0xFA77);
15164put('CJK_COMPATIBILITY_IDEOGRAPH_FA78, 'codepoint, 0xFA78);
15165put('CJK_COMPATIBILITY_IDEOGRAPH_FA79, 'codepoint, 0xFA79);
15166put('CJK_COMPATIBILITY_IDEOGRAPH_FA7A, 'codepoint, 0xFA7A);
15167put('CJK_COMPATIBILITY_IDEOGRAPH_FA7B, 'codepoint, 0xFA7B);
15168put('CJK_COMPATIBILITY_IDEOGRAPH_FA7C, 'codepoint, 0xFA7C);
15169put('CJK_COMPATIBILITY_IDEOGRAPH_FA7D, 'codepoint, 0xFA7D);
15170put('CJK_COMPATIBILITY_IDEOGRAPH_FA7E, 'codepoint, 0xFA7E);
15171put('CJK_COMPATIBILITY_IDEOGRAPH_FA7F, 'codepoint, 0xFA7F);
15172put('CJK_COMPATIBILITY_IDEOGRAPH_FA80, 'codepoint, 0xFA80);
15173put('CJK_COMPATIBILITY_IDEOGRAPH_FA81, 'codepoint, 0xFA81);
15174put('CJK_COMPATIBILITY_IDEOGRAPH_FA82, 'codepoint, 0xFA82);
15175put('CJK_COMPATIBILITY_IDEOGRAPH_FA83, 'codepoint, 0xFA83);
15176put('CJK_COMPATIBILITY_IDEOGRAPH_FA84, 'codepoint, 0xFA84);
15177put('CJK_COMPATIBILITY_IDEOGRAPH_FA85, 'codepoint, 0xFA85);
15178put('CJK_COMPATIBILITY_IDEOGRAPH_FA86, 'codepoint, 0xFA86);
15179put('CJK_COMPATIBILITY_IDEOGRAPH_FA87, 'codepoint, 0xFA87);
15180put('CJK_COMPATIBILITY_IDEOGRAPH_FA88, 'codepoint, 0xFA88);
15181put('CJK_COMPATIBILITY_IDEOGRAPH_FA89, 'codepoint, 0xFA89);
15182put('CJK_COMPATIBILITY_IDEOGRAPH_FA8A, 'codepoint, 0xFA8A);
15183put('CJK_COMPATIBILITY_IDEOGRAPH_FA8B, 'codepoint, 0xFA8B);
15184put('CJK_COMPATIBILITY_IDEOGRAPH_FA8C, 'codepoint, 0xFA8C);
15185put('CJK_COMPATIBILITY_IDEOGRAPH_FA8D, 'codepoint, 0xFA8D);
15186put('CJK_COMPATIBILITY_IDEOGRAPH_FA8E, 'codepoint, 0xFA8E);
15187put('CJK_COMPATIBILITY_IDEOGRAPH_FA8F, 'codepoint, 0xFA8F);
15188put('CJK_COMPATIBILITY_IDEOGRAPH_FA90, 'codepoint, 0xFA90);
15189put('CJK_COMPATIBILITY_IDEOGRAPH_FA91, 'codepoint, 0xFA91);
15190put('CJK_COMPATIBILITY_IDEOGRAPH_FA92, 'codepoint, 0xFA92);
15191put('CJK_COMPATIBILITY_IDEOGRAPH_FA93, 'codepoint, 0xFA93);
15192put('CJK_COMPATIBILITY_IDEOGRAPH_FA94, 'codepoint, 0xFA94);
15193put('CJK_COMPATIBILITY_IDEOGRAPH_FA95, 'codepoint, 0xFA95);
15194put('CJK_COMPATIBILITY_IDEOGRAPH_FA96, 'codepoint, 0xFA96);
15195put('CJK_COMPATIBILITY_IDEOGRAPH_FA97, 'codepoint, 0xFA97);
15196put('CJK_COMPATIBILITY_IDEOGRAPH_FA98, 'codepoint, 0xFA98);
15197put('CJK_COMPATIBILITY_IDEOGRAPH_FA99, 'codepoint, 0xFA99);
15198put('CJK_COMPATIBILITY_IDEOGRAPH_FA9A, 'codepoint, 0xFA9A);
15199put('CJK_COMPATIBILITY_IDEOGRAPH_FA9B, 'codepoint, 0xFA9B);
15200put('CJK_COMPATIBILITY_IDEOGRAPH_FA9C, 'codepoint, 0xFA9C);
15201put('CJK_COMPATIBILITY_IDEOGRAPH_FA9D, 'codepoint, 0xFA9D);
15202put('CJK_COMPATIBILITY_IDEOGRAPH_FA9E, 'codepoint, 0xFA9E);
15203put('CJK_COMPATIBILITY_IDEOGRAPH_FA9F, 'codepoint, 0xFA9F);
15204put('CJK_COMPATIBILITY_IDEOGRAPH_FAA0, 'codepoint, 0xFAA0);
15205put('CJK_COMPATIBILITY_IDEOGRAPH_FAA1, 'codepoint, 0xFAA1);
15206put('CJK_COMPATIBILITY_IDEOGRAPH_FAA2, 'codepoint, 0xFAA2);
15207put('CJK_COMPATIBILITY_IDEOGRAPH_FAA3, 'codepoint, 0xFAA3);
15208put('CJK_COMPATIBILITY_IDEOGRAPH_FAA4, 'codepoint, 0xFAA4);
15209put('CJK_COMPATIBILITY_IDEOGRAPH_FAA5, 'codepoint, 0xFAA5);
15210put('CJK_COMPATIBILITY_IDEOGRAPH_FAA6, 'codepoint, 0xFAA6);
15211put('CJK_COMPATIBILITY_IDEOGRAPH_FAA7, 'codepoint, 0xFAA7);
15212put('CJK_COMPATIBILITY_IDEOGRAPH_FAA8, 'codepoint, 0xFAA8);
15213put('CJK_COMPATIBILITY_IDEOGRAPH_FAA9, 'codepoint, 0xFAA9);
15214put('CJK_COMPATIBILITY_IDEOGRAPH_FAAA, 'codepoint, 0xFAAA);
15215put('CJK_COMPATIBILITY_IDEOGRAPH_FAAB, 'codepoint, 0xFAAB);
15216put('CJK_COMPATIBILITY_IDEOGRAPH_FAAC, 'codepoint, 0xFAAC);
15217put('CJK_COMPATIBILITY_IDEOGRAPH_FAAD, 'codepoint, 0xFAAD);
15218put('CJK_COMPATIBILITY_IDEOGRAPH_FAAE, 'codepoint, 0xFAAE);
15219put('CJK_COMPATIBILITY_IDEOGRAPH_FAAF, 'codepoint, 0xFAAF);
15220put('CJK_COMPATIBILITY_IDEOGRAPH_FAB0, 'codepoint, 0xFAB0);
15221put('CJK_COMPATIBILITY_IDEOGRAPH_FAB1, 'codepoint, 0xFAB1);
15222put('CJK_COMPATIBILITY_IDEOGRAPH_FAB2, 'codepoint, 0xFAB2);
15223put('CJK_COMPATIBILITY_IDEOGRAPH_FAB3, 'codepoint, 0xFAB3);
15224put('CJK_COMPATIBILITY_IDEOGRAPH_FAB4, 'codepoint, 0xFAB4);
15225put('CJK_COMPATIBILITY_IDEOGRAPH_FAB5, 'codepoint, 0xFAB5);
15226put('CJK_COMPATIBILITY_IDEOGRAPH_FAB6, 'codepoint, 0xFAB6);
15227put('CJK_COMPATIBILITY_IDEOGRAPH_FAB7, 'codepoint, 0xFAB7);
15228put('CJK_COMPATIBILITY_IDEOGRAPH_FAB8, 'codepoint, 0xFAB8);
15229put('CJK_COMPATIBILITY_IDEOGRAPH_FAB9, 'codepoint, 0xFAB9);
15230put('CJK_COMPATIBILITY_IDEOGRAPH_FABA, 'codepoint, 0xFABA);
15231put('CJK_COMPATIBILITY_IDEOGRAPH_FABB, 'codepoint, 0xFABB);
15232put('CJK_COMPATIBILITY_IDEOGRAPH_FABC, 'codepoint, 0xFABC);
15233put('CJK_COMPATIBILITY_IDEOGRAPH_FABD, 'codepoint, 0xFABD);
15234put('CJK_COMPATIBILITY_IDEOGRAPH_FABE, 'codepoint, 0xFABE);
15235put('CJK_COMPATIBILITY_IDEOGRAPH_FABF, 'codepoint, 0xFABF);
15236put('CJK_COMPATIBILITY_IDEOGRAPH_FAC0, 'codepoint, 0xFAC0);
15237put('CJK_COMPATIBILITY_IDEOGRAPH_FAC1, 'codepoint, 0xFAC1);
15238put('CJK_COMPATIBILITY_IDEOGRAPH_FAC2, 'codepoint, 0xFAC2);
15239put('CJK_COMPATIBILITY_IDEOGRAPH_FAC3, 'codepoint, 0xFAC3);
15240put('CJK_COMPATIBILITY_IDEOGRAPH_FAC4, 'codepoint, 0xFAC4);
15241put('CJK_COMPATIBILITY_IDEOGRAPH_FAC5, 'codepoint, 0xFAC5);
15242put('CJK_COMPATIBILITY_IDEOGRAPH_FAC6, 'codepoint, 0xFAC6);
15243put('CJK_COMPATIBILITY_IDEOGRAPH_FAC7, 'codepoint, 0xFAC7);
15244put('CJK_COMPATIBILITY_IDEOGRAPH_FAC8, 'codepoint, 0xFAC8);
15245put('CJK_COMPATIBILITY_IDEOGRAPH_FAC9, 'codepoint, 0xFAC9);
15246put('CJK_COMPATIBILITY_IDEOGRAPH_FACA, 'codepoint, 0xFACA);
15247put('CJK_COMPATIBILITY_IDEOGRAPH_FACB, 'codepoint, 0xFACB);
15248put('CJK_COMPATIBILITY_IDEOGRAPH_FACC, 'codepoint, 0xFACC);
15249put('CJK_COMPATIBILITY_IDEOGRAPH_FACD, 'codepoint, 0xFACD);
15250put('CJK_COMPATIBILITY_IDEOGRAPH_FACE, 'codepoint, 0xFACE);
15251put('CJK_COMPATIBILITY_IDEOGRAPH_FACF, 'codepoint, 0xFACF);
15252put('CJK_COMPATIBILITY_IDEOGRAPH_FAD0, 'codepoint, 0xFAD0);
15253put('CJK_COMPATIBILITY_IDEOGRAPH_FAD1, 'codepoint, 0xFAD1);
15254put('CJK_COMPATIBILITY_IDEOGRAPH_FAD2, 'codepoint, 0xFAD2);
15255put('CJK_COMPATIBILITY_IDEOGRAPH_FAD3, 'codepoint, 0xFAD3);
15256put('CJK_COMPATIBILITY_IDEOGRAPH_FAD4, 'codepoint, 0xFAD4);
15257put('CJK_COMPATIBILITY_IDEOGRAPH_FAD5, 'codepoint, 0xFAD5);
15258put('CJK_COMPATIBILITY_IDEOGRAPH_FAD6, 'codepoint, 0xFAD6);
15259put('CJK_COMPATIBILITY_IDEOGRAPH_FAD7, 'codepoint, 0xFAD7);
15260put('CJK_COMPATIBILITY_IDEOGRAPH_FAD8, 'codepoint, 0xFAD8);
15261put('CJK_COMPATIBILITY_IDEOGRAPH_FAD9, 'codepoint, 0xFAD9);
15262put('LATIN_SMALL_LIGATURE_FF, 'codepoint, 0xFB00);
15263put('LATIN_SMALL_LIGATURE_FI, 'codepoint, 0xFB01);
15264put('LATIN_SMALL_LIGATURE_FL, 'codepoint, 0xFB02);
15265put('LATIN_SMALL_LIGATURE_FFI, 'codepoint, 0xFB03);
15266put('LATIN_SMALL_LIGATURE_FFL, 'codepoint, 0xFB04);
15267put('LATIN_SMALL_LIGATURE_LONG_S_T, 'codepoint, 0xFB05);
15268put('LATIN_SMALL_LIGATURE_ST, 'codepoint, 0xFB06);
15269put('ARMENIAN_SMALL_LIGATURE_MEN_NOW, 'codepoint, 0xFB13);
15270put('ARMENIAN_SMALL_LIGATURE_MEN_ECH, 'codepoint, 0xFB14);
15271put('ARMENIAN_SMALL_LIGATURE_MEN_INI, 'codepoint, 0xFB15);
15272put('ARMENIAN_SMALL_LIGATURE_VEW_NOW, 'codepoint, 0xFB16);
15273put('ARMENIAN_SMALL_LIGATURE_MEN_XEH, 'codepoint, 0xFB17);
15274put('HEBREW_LETTER_YOD_WITH_HIRIQ, 'codepoint, 0xFB1D);
15275put('HEBREW_POINT_JUDEO_SPANISH_VARIKA, 'codepoint, 0xFB1E);
15276put('HEBREW_LIGATURE_YIDDISH_YOD_YOD_PATAH, 'codepoint, 0xFB1F);
15277put('HEBREW_LETTER_ALTERNATIVE_AYIN, 'codepoint, 0xFB20);
15278put('HEBREW_LETTER_WIDE_ALEF, 'codepoint, 0xFB21);
15279put('HEBREW_LETTER_WIDE_DALET, 'codepoint, 0xFB22);
15280put('HEBREW_LETTER_WIDE_HE, 'codepoint, 0xFB23);
15281put('HEBREW_LETTER_WIDE_KAF, 'codepoint, 0xFB24);
15282put('HEBREW_LETTER_WIDE_LAMED, 'codepoint, 0xFB25);
15283put('HEBREW_LETTER_WIDE_FINAL_MEM, 'codepoint, 0xFB26);
15284put('HEBREW_LETTER_WIDE_RESH, 'codepoint, 0xFB27);
15285put('HEBREW_LETTER_WIDE_TAV, 'codepoint, 0xFB28);
15286put('HEBREW_LETTER_ALTERNATIVE_PLUS_SIGN, 'codepoint, 0xFB29);
15287put('HEBREW_LETTER_SHIN_WITH_SHIN_DOT, 'codepoint, 0xFB2A);
15288put('HEBREW_LETTER_SHIN_WITH_SIN_DOT, 'codepoint, 0xFB2B);
15289put('HEBREW_LETTER_SHIN_WITH_DAGESH_AND_SHIN_DOT, 'codepoint, 0xFB2C);
15290put('HEBREW_LETTER_SHIN_WITH_DAGESH_AND_SIN_DOT, 'codepoint, 0xFB2D);
15291put('HEBREW_LETTER_ALEF_WITH_PATAH, 'codepoint, 0xFB2E);
15292put('HEBREW_LETTER_ALEF_WITH_QAMATS, 'codepoint, 0xFB2F);
15293put('HEBREW_LETTER_ALEF_WITH_MAPIQ, 'codepoint, 0xFB30);
15294put('HEBREW_LETTER_BET_WITH_DAGESH, 'codepoint, 0xFB31);
15295put('HEBREW_LETTER_GIMEL_WITH_DAGESH, 'codepoint, 0xFB32);
15296put('HEBREW_LETTER_DALET_WITH_DAGESH, 'codepoint, 0xFB33);
15297put('HEBREW_LETTER_HE_WITH_MAPIQ, 'codepoint, 0xFB34);
15298put('HEBREW_LETTER_VAV_WITH_DAGESH, 'codepoint, 0xFB35);
15299put('HEBREW_LETTER_ZAYIN_WITH_DAGESH, 'codepoint, 0xFB36);
15300put('HEBREW_LETTER_TET_WITH_DAGESH, 'codepoint, 0xFB38);
15301put('HEBREW_LETTER_YOD_WITH_DAGESH, 'codepoint, 0xFB39);
15302put('HEBREW_LETTER_FINAL_KAF_WITH_DAGESH, 'codepoint, 0xFB3A);
15303put('HEBREW_LETTER_KAF_WITH_DAGESH, 'codepoint, 0xFB3B);
15304put('HEBREW_LETTER_LAMED_WITH_DAGESH, 'codepoint, 0xFB3C);
15305put('HEBREW_LETTER_MEM_WITH_DAGESH, 'codepoint, 0xFB3E);
15306put('HEBREW_LETTER_NUN_WITH_DAGESH, 'codepoint, 0xFB40);
15307put('HEBREW_LETTER_SAMEKH_WITH_DAGESH, 'codepoint, 0xFB41);
15308put('HEBREW_LETTER_FINAL_PE_WITH_DAGESH, 'codepoint, 0xFB43);
15309put('HEBREW_LETTER_PE_WITH_DAGESH, 'codepoint, 0xFB44);
15310put('HEBREW_LETTER_TSADI_WITH_DAGESH, 'codepoint, 0xFB46);
15311put('HEBREW_LETTER_QOF_WITH_DAGESH, 'codepoint, 0xFB47);
15312put('HEBREW_LETTER_RESH_WITH_DAGESH, 'codepoint, 0xFB48);
15313put('HEBREW_LETTER_SHIN_WITH_DAGESH, 'codepoint, 0xFB49);
15314put('HEBREW_LETTER_TAV_WITH_DAGESH, 'codepoint, 0xFB4A);
15315put('HEBREW_LETTER_VAV_WITH_HOLAM, 'codepoint, 0xFB4B);
15316put('HEBREW_LETTER_BET_WITH_RAFE, 'codepoint, 0xFB4C);
15317put('HEBREW_LETTER_KAF_WITH_RAFE, 'codepoint, 0xFB4D);
15318put('HEBREW_LETTER_PE_WITH_RAFE, 'codepoint, 0xFB4E);
15319put('HEBREW_LIGATURE_ALEF_LAMED, 'codepoint, 0xFB4F);
15320put('ARABIC_LETTER_ALEF_WASLA_ISOLATED_FORM, 'codepoint, 0xFB50);
15321put('ARABIC_LETTER_ALEF_WASLA_FINAL_FORM, 'codepoint, 0xFB51);
15322put('ARABIC_LETTER_BEEH_ISOLATED_FORM, 'codepoint, 0xFB52);
15323put('ARABIC_LETTER_BEEH_FINAL_FORM, 'codepoint, 0xFB53);
15324put('ARABIC_LETTER_BEEH_INITIAL_FORM, 'codepoint, 0xFB54);
15325put('ARABIC_LETTER_BEEH_MEDIAL_FORM, 'codepoint, 0xFB55);
15326put('ARABIC_LETTER_PEH_ISOLATED_FORM, 'codepoint, 0xFB56);
15327put('ARABIC_LETTER_PEH_FINAL_FORM, 'codepoint, 0xFB57);
15328put('ARABIC_LETTER_PEH_INITIAL_FORM, 'codepoint, 0xFB58);
15329put('ARABIC_LETTER_PEH_MEDIAL_FORM, 'codepoint, 0xFB59);
15330put('ARABIC_LETTER_BEHEH_ISOLATED_FORM, 'codepoint, 0xFB5A);
15331put('ARABIC_LETTER_BEHEH_FINAL_FORM, 'codepoint, 0xFB5B);
15332put('ARABIC_LETTER_BEHEH_INITIAL_FORM, 'codepoint, 0xFB5C);
15333put('ARABIC_LETTER_BEHEH_MEDIAL_FORM, 'codepoint, 0xFB5D);
15334put('ARABIC_LETTER_TTEHEH_ISOLATED_FORM, 'codepoint, 0xFB5E);
15335put('ARABIC_LETTER_TTEHEH_FINAL_FORM, 'codepoint, 0xFB5F);
15336put('ARABIC_LETTER_TTEHEH_INITIAL_FORM, 'codepoint, 0xFB60);
15337put('ARABIC_LETTER_TTEHEH_MEDIAL_FORM, 'codepoint, 0xFB61);
15338put('ARABIC_LETTER_TEHEH_ISOLATED_FORM, 'codepoint, 0xFB62);
15339put('ARABIC_LETTER_TEHEH_FINAL_FORM, 'codepoint, 0xFB63);
15340put('ARABIC_LETTER_TEHEH_INITIAL_FORM, 'codepoint, 0xFB64);
15341put('ARABIC_LETTER_TEHEH_MEDIAL_FORM, 'codepoint, 0xFB65);
15342put('ARABIC_LETTER_TTEH_ISOLATED_FORM, 'codepoint, 0xFB66);
15343put('ARABIC_LETTER_TTEH_FINAL_FORM, 'codepoint, 0xFB67);
15344put('ARABIC_LETTER_TTEH_INITIAL_FORM, 'codepoint, 0xFB68);
15345put('ARABIC_LETTER_TTEH_MEDIAL_FORM, 'codepoint, 0xFB69);
15346put('ARABIC_LETTER_VEH_ISOLATED_FORM, 'codepoint, 0xFB6A);
15347put('ARABIC_LETTER_VEH_FINAL_FORM, 'codepoint, 0xFB6B);
15348put('ARABIC_LETTER_VEH_INITIAL_FORM, 'codepoint, 0xFB6C);
15349put('ARABIC_LETTER_VEH_MEDIAL_FORM, 'codepoint, 0xFB6D);
15350put('ARABIC_LETTER_PEHEH_ISOLATED_FORM, 'codepoint, 0xFB6E);
15351put('ARABIC_LETTER_PEHEH_FINAL_FORM, 'codepoint, 0xFB6F);
15352put('ARABIC_LETTER_PEHEH_INITIAL_FORM, 'codepoint, 0xFB70);
15353put('ARABIC_LETTER_PEHEH_MEDIAL_FORM, 'codepoint, 0xFB71);
15354put('ARABIC_LETTER_DYEH_ISOLATED_FORM, 'codepoint, 0xFB72);
15355put('ARABIC_LETTER_DYEH_FINAL_FORM, 'codepoint, 0xFB73);
15356put('ARABIC_LETTER_DYEH_INITIAL_FORM, 'codepoint, 0xFB74);
15357put('ARABIC_LETTER_DYEH_MEDIAL_FORM, 'codepoint, 0xFB75);
15358put('ARABIC_LETTER_NYEH_ISOLATED_FORM, 'codepoint, 0xFB76);
15359put('ARABIC_LETTER_NYEH_FINAL_FORM, 'codepoint, 0xFB77);
15360put('ARABIC_LETTER_NYEH_INITIAL_FORM, 'codepoint, 0xFB78);
15361put('ARABIC_LETTER_NYEH_MEDIAL_FORM, 'codepoint, 0xFB79);
15362put('ARABIC_LETTER_TCHEH_ISOLATED_FORM, 'codepoint, 0xFB7A);
15363put('ARABIC_LETTER_TCHEH_FINAL_FORM, 'codepoint, 0xFB7B);
15364put('ARABIC_LETTER_TCHEH_INITIAL_FORM, 'codepoint, 0xFB7C);
15365put('ARABIC_LETTER_TCHEH_MEDIAL_FORM, 'codepoint, 0xFB7D);
15366put('ARABIC_LETTER_TCHEHEH_ISOLATED_FORM, 'codepoint, 0xFB7E);
15367put('ARABIC_LETTER_TCHEHEH_FINAL_FORM, 'codepoint, 0xFB7F);
15368put('ARABIC_LETTER_TCHEHEH_INITIAL_FORM, 'codepoint, 0xFB80);
15369put('ARABIC_LETTER_TCHEHEH_MEDIAL_FORM, 'codepoint, 0xFB81);
15370put('ARABIC_LETTER_DDAHAL_ISOLATED_FORM, 'codepoint, 0xFB82);
15371put('ARABIC_LETTER_DDAHAL_FINAL_FORM, 'codepoint, 0xFB83);
15372put('ARABIC_LETTER_DAHAL_ISOLATED_FORM, 'codepoint, 0xFB84);
15373put('ARABIC_LETTER_DAHAL_FINAL_FORM, 'codepoint, 0xFB85);
15374put('ARABIC_LETTER_DUL_ISOLATED_FORM, 'codepoint, 0xFB86);
15375put('ARABIC_LETTER_DUL_FINAL_FORM, 'codepoint, 0xFB87);
15376put('ARABIC_LETTER_DDAL_ISOLATED_FORM, 'codepoint, 0xFB88);
15377put('ARABIC_LETTER_DDAL_FINAL_FORM, 'codepoint, 0xFB89);
15378put('ARABIC_LETTER_JEH_ISOLATED_FORM, 'codepoint, 0xFB8A);
15379put('ARABIC_LETTER_JEH_FINAL_FORM, 'codepoint, 0xFB8B);
15380put('ARABIC_LETTER_RREH_ISOLATED_FORM, 'codepoint, 0xFB8C);
15381put('ARABIC_LETTER_RREH_FINAL_FORM, 'codepoint, 0xFB8D);
15382put('ARABIC_LETTER_KEHEH_ISOLATED_FORM, 'codepoint, 0xFB8E);
15383put('ARABIC_LETTER_KEHEH_FINAL_FORM, 'codepoint, 0xFB8F);
15384put('ARABIC_LETTER_KEHEH_INITIAL_FORM, 'codepoint, 0xFB90);
15385put('ARABIC_LETTER_KEHEH_MEDIAL_FORM, 'codepoint, 0xFB91);
15386put('ARABIC_LETTER_GAF_ISOLATED_FORM, 'codepoint, 0xFB92);
15387put('ARABIC_LETTER_GAF_FINAL_FORM, 'codepoint, 0xFB93);
15388put('ARABIC_LETTER_GAF_INITIAL_FORM, 'codepoint, 0xFB94);
15389put('ARABIC_LETTER_GAF_MEDIAL_FORM, 'codepoint, 0xFB95);
15390put('ARABIC_LETTER_GUEH_ISOLATED_FORM, 'codepoint, 0xFB96);
15391put('ARABIC_LETTER_GUEH_FINAL_FORM, 'codepoint, 0xFB97);
15392put('ARABIC_LETTER_GUEH_INITIAL_FORM, 'codepoint, 0xFB98);
15393put('ARABIC_LETTER_GUEH_MEDIAL_FORM, 'codepoint, 0xFB99);
15394put('ARABIC_LETTER_NGOEH_ISOLATED_FORM, 'codepoint, 0xFB9A);
15395put('ARABIC_LETTER_NGOEH_FINAL_FORM, 'codepoint, 0xFB9B);
15396put('ARABIC_LETTER_NGOEH_INITIAL_FORM, 'codepoint, 0xFB9C);
15397put('ARABIC_LETTER_NGOEH_MEDIAL_FORM, 'codepoint, 0xFB9D);
15398put('ARABIC_LETTER_NOON_GHUNNA_ISOLATED_FORM, 'codepoint, 0xFB9E);
15399put('ARABIC_LETTER_NOON_GHUNNA_FINAL_FORM, 'codepoint, 0xFB9F);
15400put('ARABIC_LETTER_RNOON_ISOLATED_FORM, 'codepoint, 0xFBA0);
15401put('ARABIC_LETTER_RNOON_FINAL_FORM, 'codepoint, 0xFBA1);
15402put('ARABIC_LETTER_RNOON_INITIAL_FORM, 'codepoint, 0xFBA2);
15403put('ARABIC_LETTER_RNOON_MEDIAL_FORM, 'codepoint, 0xFBA3);
15404put('ARABIC_LETTER_HEH_WITH_YEH_ABOVE_ISOLATED_FORM, 'codepoint, 0xFBA4);
15405put('ARABIC_LETTER_HEH_WITH_YEH_ABOVE_FINAL_FORM, 'codepoint, 0xFBA5);
15406put('ARABIC_LETTER_HEH_GOAL_ISOLATED_FORM, 'codepoint, 0xFBA6);
15407put('ARABIC_LETTER_HEH_GOAL_FINAL_FORM, 'codepoint, 0xFBA7);
15408put('ARABIC_LETTER_HEH_GOAL_INITIAL_FORM, 'codepoint, 0xFBA8);
15409put('ARABIC_LETTER_HEH_GOAL_MEDIAL_FORM, 'codepoint, 0xFBA9);
15410put('ARABIC_LETTER_HEH_DOACHASHMEE_ISOLATED_FORM, 'codepoint, 0xFBAA);
15411put('ARABIC_LETTER_HEH_DOACHASHMEE_FINAL_FORM, 'codepoint, 0xFBAB);
15412put('ARABIC_LETTER_HEH_DOACHASHMEE_INITIAL_FORM, 'codepoint, 0xFBAC);
15413put('ARABIC_LETTER_HEH_DOACHASHMEE_MEDIAL_FORM, 'codepoint, 0xFBAD);
15414put('ARABIC_LETTER_YEH_BARREE_ISOLATED_FORM, 'codepoint, 0xFBAE);
15415put('ARABIC_LETTER_YEH_BARREE_FINAL_FORM, 'codepoint, 0xFBAF);
15416put('ARABIC_LETTER_YEH_BARREE_WITH_HAMZA_ABOVE_ISOLATED_FORM, 'codepoint, 0xFBB0);
15417put('ARABIC_LETTER_YEH_BARREE_WITH_HAMZA_ABOVE_FINAL_FORM, 'codepoint, 0xFBB1);
15418put('ARABIC_SYMBOL_DOT_ABOVE, 'codepoint, 0xFBB2);
15419put('ARABIC_SYMBOL_DOT_BELOW, 'codepoint, 0xFBB3);
15420put('ARABIC_SYMBOL_TWO_DOTS_ABOVE, 'codepoint, 0xFBB4);
15421put('ARABIC_SYMBOL_TWO_DOTS_BELOW, 'codepoint, 0xFBB5);
15422put('ARABIC_SYMBOL_THREE_DOTS_ABOVE, 'codepoint, 0xFBB6);
15423put('ARABIC_SYMBOL_THREE_DOTS_BELOW, 'codepoint, 0xFBB7);
15424put('ARABIC_SYMBOL_THREE_DOTS_POINTING_DOWNWARDS_ABOVE, 'codepoint, 0xFBB8);
15425put('ARABIC_SYMBOL_THREE_DOTS_POINTING_DOWNWARDS_BELOW, 'codepoint, 0xFBB9);
15426put('ARABIC_SYMBOL_FOUR_DOTS_ABOVE, 'codepoint, 0xFBBA);
15427put('ARABIC_SYMBOL_FOUR_DOTS_BELOW, 'codepoint, 0xFBBB);
15428put('ARABIC_SYMBOL_DOUBLE_VERTICAL_BAR_BELOW, 'codepoint, 0xFBBC);
15429put('ARABIC_SYMBOL_TWO_DOTS_VERTICALLY_ABOVE, 'codepoint, 0xFBBD);
15430put('ARABIC_SYMBOL_TWO_DOTS_VERTICALLY_BELOW, 'codepoint, 0xFBBE);
15431put('ARABIC_SYMBOL_RING, 'codepoint, 0xFBBF);
15432put('ARABIC_SYMBOL_SMALL_TAH_ABOVE, 'codepoint, 0xFBC0);
15433put('ARABIC_SYMBOL_SMALL_TAH_BELOW, 'codepoint, 0xFBC1);
15434put('ARABIC_LETTER_NG_ISOLATED_FORM, 'codepoint, 0xFBD3);
15435put('ARABIC_LETTER_NG_FINAL_FORM, 'codepoint, 0xFBD4);
15436put('ARABIC_LETTER_NG_INITIAL_FORM, 'codepoint, 0xFBD5);
15437put('ARABIC_LETTER_NG_MEDIAL_FORM, 'codepoint, 0xFBD6);
15438put('ARABIC_LETTER_U_ISOLATED_FORM, 'codepoint, 0xFBD7);
15439put('ARABIC_LETTER_U_FINAL_FORM, 'codepoint, 0xFBD8);
15440put('ARABIC_LETTER_OE_ISOLATED_FORM, 'codepoint, 0xFBD9);
15441put('ARABIC_LETTER_OE_FINAL_FORM, 'codepoint, 0xFBDA);
15442put('ARABIC_LETTER_YU_ISOLATED_FORM, 'codepoint, 0xFBDB);
15443put('ARABIC_LETTER_YU_FINAL_FORM, 'codepoint, 0xFBDC);
15444put('ARABIC_LETTER_U_WITH_HAMZA_ABOVE_ISOLATED_FORM, 'codepoint, 0xFBDD);
15445put('ARABIC_LETTER_VE_ISOLATED_FORM, 'codepoint, 0xFBDE);
15446put('ARABIC_LETTER_VE_FINAL_FORM, 'codepoint, 0xFBDF);
15447put('ARABIC_LETTER_KIRGHIZ_OE_ISOLATED_FORM, 'codepoint, 0xFBE0);
15448put('ARABIC_LETTER_KIRGHIZ_OE_FINAL_FORM, 'codepoint, 0xFBE1);
15449put('ARABIC_LETTER_KIRGHIZ_YU_ISOLATED_FORM, 'codepoint, 0xFBE2);
15450put('ARABIC_LETTER_KIRGHIZ_YU_FINAL_FORM, 'codepoint, 0xFBE3);
15451put('ARABIC_LETTER_E_ISOLATED_FORM, 'codepoint, 0xFBE4);
15452put('ARABIC_LETTER_E_FINAL_FORM, 'codepoint, 0xFBE5);
15453put('ARABIC_LETTER_E_INITIAL_FORM, 'codepoint, 0xFBE6);
15454put('ARABIC_LETTER_E_MEDIAL_FORM, 'codepoint, 0xFBE7);
15455put('ARABIC_LETTER_UIGHUR_KAZAKH_KIRGHIZ_ALEF_MAKSURA_INITIAL_FORM, 'codepoint, 0xFBE8);
15456put('ARABIC_LETTER_UIGHUR_KAZAKH_KIRGHIZ_ALEF_MAKSURA_MEDIAL_FORM, 'codepoint, 0xFBE9);
15457put('ARABIC_LIGATURE_YEH_WITH_HAMZA_ABOVE_WITH_ALEF_ISOLATED_FORM, 'codepoint, 0xFBEA);
15458put('ARABIC_LIGATURE_YEH_WITH_HAMZA_ABOVE_WITH_ALEF_FINAL_FORM, 'codepoint, 0xFBEB);
15459put('ARABIC_LIGATURE_YEH_WITH_HAMZA_ABOVE_WITH_AE_ISOLATED_FORM, 'codepoint, 0xFBEC);
15460put('ARABIC_LIGATURE_YEH_WITH_HAMZA_ABOVE_WITH_AE_FINAL_FORM, 'codepoint, 0xFBED);
15461put('ARABIC_LIGATURE_YEH_WITH_HAMZA_ABOVE_WITH_WAW_ISOLATED_FORM, 'codepoint, 0xFBEE);
15462put('ARABIC_LIGATURE_YEH_WITH_HAMZA_ABOVE_WITH_WAW_FINAL_FORM, 'codepoint, 0xFBEF);
15463put('ARABIC_LIGATURE_YEH_WITH_HAMZA_ABOVE_WITH_U_ISOLATED_FORM, 'codepoint, 0xFBF0);
15464put('ARABIC_LIGATURE_YEH_WITH_HAMZA_ABOVE_WITH_U_FINAL_FORM, 'codepoint, 0xFBF1);
15465put('ARABIC_LIGATURE_YEH_WITH_HAMZA_ABOVE_WITH_OE_ISOLATED_FORM, 'codepoint, 0xFBF2);
15466put('ARABIC_LIGATURE_YEH_WITH_HAMZA_ABOVE_WITH_OE_FINAL_FORM, 'codepoint, 0xFBF3);
15467put('ARABIC_LIGATURE_YEH_WITH_HAMZA_ABOVE_WITH_YU_ISOLATED_FORM, 'codepoint, 0xFBF4);
15468put('ARABIC_LIGATURE_YEH_WITH_HAMZA_ABOVE_WITH_YU_FINAL_FORM, 'codepoint, 0xFBF5);
15469put('ARABIC_LIGATURE_YEH_WITH_HAMZA_ABOVE_WITH_E_ISOLATED_FORM, 'codepoint, 0xFBF6);
15470put('ARABIC_LIGATURE_YEH_WITH_HAMZA_ABOVE_WITH_E_FINAL_FORM, 'codepoint, 0xFBF7);
15471put('ARABIC_LIGATURE_YEH_WITH_HAMZA_ABOVE_WITH_E_INITIAL_FORM, 'codepoint, 0xFBF8);
15472put('ARABIC_LIGATURE_UIGHUR_KIRGHIZ_YEH_WITH_HAMZA_ABOVE_WITH_ALEF_MAKSURA_ISOLATED_FORM, 'codepoint, 0xFBF9);
15473put('ARABIC_LIGATURE_UIGHUR_KIRGHIZ_YEH_WITH_HAMZA_ABOVE_WITH_ALEF_MAKSURA_FINAL_FORM, 'codepoint, 0xFBFA);
15474put('ARABIC_LIGATURE_UIGHUR_KIRGHIZ_YEH_WITH_HAMZA_ABOVE_WITH_ALEF_MAKSURA_INITIAL_FORM, 'codepoint, 0xFBFB);
15475put('ARABIC_LETTER_FARSI_YEH_ISOLATED_FORM, 'codepoint, 0xFBFC);
15476put('ARABIC_LETTER_FARSI_YEH_FINAL_FORM, 'codepoint, 0xFBFD);
15477put('ARABIC_LETTER_FARSI_YEH_INITIAL_FORM, 'codepoint, 0xFBFE);
15478put('ARABIC_LETTER_FARSI_YEH_MEDIAL_FORM, 'codepoint, 0xFBFF);
15479put('ARABIC_LIGATURE_YEH_WITH_HAMZA_ABOVE_WITH_JEEM_ISOLATED_FORM, 'codepoint, 0xFC00);
15480put('ARABIC_LIGATURE_YEH_WITH_HAMZA_ABOVE_WITH_HAH_ISOLATED_FORM, 'codepoint, 0xFC01);
15481put('ARABIC_LIGATURE_YEH_WITH_HAMZA_ABOVE_WITH_MEEM_ISOLATED_FORM, 'codepoint, 0xFC02);
15482put('ARABIC_LIGATURE_YEH_WITH_HAMZA_ABOVE_WITH_ALEF_MAKSURA_ISOLATED_FORM, 'codepoint, 0xFC03);
15483put('ARABIC_LIGATURE_YEH_WITH_HAMZA_ABOVE_WITH_YEH_ISOLATED_FORM, 'codepoint, 0xFC04);
15484put('ARABIC_LIGATURE_BEH_WITH_JEEM_ISOLATED_FORM, 'codepoint, 0xFC05);
15485put('ARABIC_LIGATURE_BEH_WITH_HAH_ISOLATED_FORM, 'codepoint, 0xFC06);
15486put('ARABIC_LIGATURE_BEH_WITH_KHAH_ISOLATED_FORM, 'codepoint, 0xFC07);
15487put('ARABIC_LIGATURE_BEH_WITH_MEEM_ISOLATED_FORM, 'codepoint, 0xFC08);
15488put('ARABIC_LIGATURE_BEH_WITH_ALEF_MAKSURA_ISOLATED_FORM, 'codepoint, 0xFC09);
15489put('ARABIC_LIGATURE_BEH_WITH_YEH_ISOLATED_FORM, 'codepoint, 0xFC0A);
15490put('ARABIC_LIGATURE_TEH_WITH_JEEM_ISOLATED_FORM, 'codepoint, 0xFC0B);
15491put('ARABIC_LIGATURE_TEH_WITH_HAH_ISOLATED_FORM, 'codepoint, 0xFC0C);
15492put('ARABIC_LIGATURE_TEH_WITH_KHAH_ISOLATED_FORM, 'codepoint, 0xFC0D);
15493put('ARABIC_LIGATURE_TEH_WITH_MEEM_ISOLATED_FORM, 'codepoint, 0xFC0E);
15494put('ARABIC_LIGATURE_TEH_WITH_ALEF_MAKSURA_ISOLATED_FORM, 'codepoint, 0xFC0F);
15495put('ARABIC_LIGATURE_TEH_WITH_YEH_ISOLATED_FORM, 'codepoint, 0xFC10);
15496put('ARABIC_LIGATURE_THEH_WITH_JEEM_ISOLATED_FORM, 'codepoint, 0xFC11);
15497put('ARABIC_LIGATURE_THEH_WITH_MEEM_ISOLATED_FORM, 'codepoint, 0xFC12);
15498put('ARABIC_LIGATURE_THEH_WITH_ALEF_MAKSURA_ISOLATED_FORM, 'codepoint, 0xFC13);
15499put('ARABIC_LIGATURE_THEH_WITH_YEH_ISOLATED_FORM, 'codepoint, 0xFC14);
15500put('ARABIC_LIGATURE_JEEM_WITH_HAH_ISOLATED_FORM, 'codepoint, 0xFC15);
15501put('ARABIC_LIGATURE_JEEM_WITH_MEEM_ISOLATED_FORM, 'codepoint, 0xFC16);
15502put('ARABIC_LIGATURE_HAH_WITH_JEEM_ISOLATED_FORM, 'codepoint, 0xFC17);
15503put('ARABIC_LIGATURE_HAH_WITH_MEEM_ISOLATED_FORM, 'codepoint, 0xFC18);
15504put('ARABIC_LIGATURE_KHAH_WITH_JEEM_ISOLATED_FORM, 'codepoint, 0xFC19);
15505put('ARABIC_LIGATURE_KHAH_WITH_HAH_ISOLATED_FORM, 'codepoint, 0xFC1A);
15506put('ARABIC_LIGATURE_KHAH_WITH_MEEM_ISOLATED_FORM, 'codepoint, 0xFC1B);
15507put('ARABIC_LIGATURE_SEEN_WITH_JEEM_ISOLATED_FORM, 'codepoint, 0xFC1C);
15508put('ARABIC_LIGATURE_SEEN_WITH_HAH_ISOLATED_FORM, 'codepoint, 0xFC1D);
15509put('ARABIC_LIGATURE_SEEN_WITH_KHAH_ISOLATED_FORM, 'codepoint, 0xFC1E);
15510put('ARABIC_LIGATURE_SEEN_WITH_MEEM_ISOLATED_FORM, 'codepoint, 0xFC1F);
15511put('ARABIC_LIGATURE_SAD_WITH_HAH_ISOLATED_FORM, 'codepoint, 0xFC20);
15512put('ARABIC_LIGATURE_SAD_WITH_MEEM_ISOLATED_FORM, 'codepoint, 0xFC21);
15513put('ARABIC_LIGATURE_DAD_WITH_JEEM_ISOLATED_FORM, 'codepoint, 0xFC22);
15514put('ARABIC_LIGATURE_DAD_WITH_HAH_ISOLATED_FORM, 'codepoint, 0xFC23);
15515put('ARABIC_LIGATURE_DAD_WITH_KHAH_ISOLATED_FORM, 'codepoint, 0xFC24);
15516put('ARABIC_LIGATURE_DAD_WITH_MEEM_ISOLATED_FORM, 'codepoint, 0xFC25);
15517put('ARABIC_LIGATURE_TAH_WITH_HAH_ISOLATED_FORM, 'codepoint, 0xFC26);
15518put('ARABIC_LIGATURE_TAH_WITH_MEEM_ISOLATED_FORM, 'codepoint, 0xFC27);
15519put('ARABIC_LIGATURE_ZAH_WITH_MEEM_ISOLATED_FORM, 'codepoint, 0xFC28);
15520put('ARABIC_LIGATURE_AIN_WITH_JEEM_ISOLATED_FORM, 'codepoint, 0xFC29);
15521put('ARABIC_LIGATURE_AIN_WITH_MEEM_ISOLATED_FORM, 'codepoint, 0xFC2A);
15522put('ARABIC_LIGATURE_GHAIN_WITH_JEEM_ISOLATED_FORM, 'codepoint, 0xFC2B);
15523put('ARABIC_LIGATURE_GHAIN_WITH_MEEM_ISOLATED_FORM, 'codepoint, 0xFC2C);
15524put('ARABIC_LIGATURE_FEH_WITH_JEEM_ISOLATED_FORM, 'codepoint, 0xFC2D);
15525put('ARABIC_LIGATURE_FEH_WITH_HAH_ISOLATED_FORM, 'codepoint, 0xFC2E);
15526put('ARABIC_LIGATURE_FEH_WITH_KHAH_ISOLATED_FORM, 'codepoint, 0xFC2F);
15527put('ARABIC_LIGATURE_FEH_WITH_MEEM_ISOLATED_FORM, 'codepoint, 0xFC30);
15528put('ARABIC_LIGATURE_FEH_WITH_ALEF_MAKSURA_ISOLATED_FORM, 'codepoint, 0xFC31);
15529put('ARABIC_LIGATURE_FEH_WITH_YEH_ISOLATED_FORM, 'codepoint, 0xFC32);
15530put('ARABIC_LIGATURE_QAF_WITH_HAH_ISOLATED_FORM, 'codepoint, 0xFC33);
15531put('ARABIC_LIGATURE_QAF_WITH_MEEM_ISOLATED_FORM, 'codepoint, 0xFC34);
15532put('ARABIC_LIGATURE_QAF_WITH_ALEF_MAKSURA_ISOLATED_FORM, 'codepoint, 0xFC35);
15533put('ARABIC_LIGATURE_QAF_WITH_YEH_ISOLATED_FORM, 'codepoint, 0xFC36);
15534put('ARABIC_LIGATURE_KAF_WITH_ALEF_ISOLATED_FORM, 'codepoint, 0xFC37);
15535put('ARABIC_LIGATURE_KAF_WITH_JEEM_ISOLATED_FORM, 'codepoint, 0xFC38);
15536put('ARABIC_LIGATURE_KAF_WITH_HAH_ISOLATED_FORM, 'codepoint, 0xFC39);
15537put('ARABIC_LIGATURE_KAF_WITH_KHAH_ISOLATED_FORM, 'codepoint, 0xFC3A);
15538put('ARABIC_LIGATURE_KAF_WITH_LAM_ISOLATED_FORM, 'codepoint, 0xFC3B);
15539put('ARABIC_LIGATURE_KAF_WITH_MEEM_ISOLATED_FORM, 'codepoint, 0xFC3C);
15540put('ARABIC_LIGATURE_KAF_WITH_ALEF_MAKSURA_ISOLATED_FORM, 'codepoint, 0xFC3D);
15541put('ARABIC_LIGATURE_KAF_WITH_YEH_ISOLATED_FORM, 'codepoint, 0xFC3E);
15542put('ARABIC_LIGATURE_LAM_WITH_JEEM_ISOLATED_FORM, 'codepoint, 0xFC3F);
15543put('ARABIC_LIGATURE_LAM_WITH_HAH_ISOLATED_FORM, 'codepoint, 0xFC40);
15544put('ARABIC_LIGATURE_LAM_WITH_KHAH_ISOLATED_FORM, 'codepoint, 0xFC41);
15545put('ARABIC_LIGATURE_LAM_WITH_MEEM_ISOLATED_FORM, 'codepoint, 0xFC42);
15546put('ARABIC_LIGATURE_LAM_WITH_ALEF_MAKSURA_ISOLATED_FORM, 'codepoint, 0xFC43);
15547put('ARABIC_LIGATURE_LAM_WITH_YEH_ISOLATED_FORM, 'codepoint, 0xFC44);
15548put('ARABIC_LIGATURE_MEEM_WITH_JEEM_ISOLATED_FORM, 'codepoint, 0xFC45);
15549put('ARABIC_LIGATURE_MEEM_WITH_HAH_ISOLATED_FORM, 'codepoint, 0xFC46);
15550put('ARABIC_LIGATURE_MEEM_WITH_KHAH_ISOLATED_FORM, 'codepoint, 0xFC47);
15551put('ARABIC_LIGATURE_MEEM_WITH_MEEM_ISOLATED_FORM, 'codepoint, 0xFC48);
15552put('ARABIC_LIGATURE_MEEM_WITH_ALEF_MAKSURA_ISOLATED_FORM, 'codepoint, 0xFC49);
15553put('ARABIC_LIGATURE_MEEM_WITH_YEH_ISOLATED_FORM, 'codepoint, 0xFC4A);
15554put('ARABIC_LIGATURE_NOON_WITH_JEEM_ISOLATED_FORM, 'codepoint, 0xFC4B);
15555put('ARABIC_LIGATURE_NOON_WITH_HAH_ISOLATED_FORM, 'codepoint, 0xFC4C);
15556put('ARABIC_LIGATURE_NOON_WITH_KHAH_ISOLATED_FORM, 'codepoint, 0xFC4D);
15557put('ARABIC_LIGATURE_NOON_WITH_MEEM_ISOLATED_FORM, 'codepoint, 0xFC4E);
15558put('ARABIC_LIGATURE_NOON_WITH_ALEF_MAKSURA_ISOLATED_FORM, 'codepoint, 0xFC4F);
15559put('ARABIC_LIGATURE_NOON_WITH_YEH_ISOLATED_FORM, 'codepoint, 0xFC50);
15560put('ARABIC_LIGATURE_HEH_WITH_JEEM_ISOLATED_FORM, 'codepoint, 0xFC51);
15561put('ARABIC_LIGATURE_HEH_WITH_MEEM_ISOLATED_FORM, 'codepoint, 0xFC52);
15562put('ARABIC_LIGATURE_HEH_WITH_ALEF_MAKSURA_ISOLATED_FORM, 'codepoint, 0xFC53);
15563put('ARABIC_LIGATURE_HEH_WITH_YEH_ISOLATED_FORM, 'codepoint, 0xFC54);
15564put('ARABIC_LIGATURE_YEH_WITH_JEEM_ISOLATED_FORM, 'codepoint, 0xFC55);
15565put('ARABIC_LIGATURE_YEH_WITH_HAH_ISOLATED_FORM, 'codepoint, 0xFC56);
15566put('ARABIC_LIGATURE_YEH_WITH_KHAH_ISOLATED_FORM, 'codepoint, 0xFC57);
15567put('ARABIC_LIGATURE_YEH_WITH_MEEM_ISOLATED_FORM, 'codepoint, 0xFC58);
15568put('ARABIC_LIGATURE_YEH_WITH_ALEF_MAKSURA_ISOLATED_FORM, 'codepoint, 0xFC59);
15569put('ARABIC_LIGATURE_YEH_WITH_YEH_ISOLATED_FORM, 'codepoint, 0xFC5A);
15570put('ARABIC_LIGATURE_THAL_WITH_SUPERSCRIPT_ALEF_ISOLATED_FORM, 'codepoint, 0xFC5B);
15571put('ARABIC_LIGATURE_REH_WITH_SUPERSCRIPT_ALEF_ISOLATED_FORM, 'codepoint, 0xFC5C);
15572put('ARABIC_LIGATURE_ALEF_MAKSURA_WITH_SUPERSCRIPT_ALEF_ISOLATED_FORM, 'codepoint, 0xFC5D);
15573put('ARABIC_LIGATURE_SHADDA_WITH_DAMMATAN_ISOLATED_FORM, 'codepoint, 0xFC5E);
15574put('ARABIC_LIGATURE_SHADDA_WITH_KASRATAN_ISOLATED_FORM, 'codepoint, 0xFC5F);
15575put('ARABIC_LIGATURE_SHADDA_WITH_FATHA_ISOLATED_FORM, 'codepoint, 0xFC60);
15576put('ARABIC_LIGATURE_SHADDA_WITH_DAMMA_ISOLATED_FORM, 'codepoint, 0xFC61);
15577put('ARABIC_LIGATURE_SHADDA_WITH_KASRA_ISOLATED_FORM, 'codepoint, 0xFC62);
15578put('ARABIC_LIGATURE_SHADDA_WITH_SUPERSCRIPT_ALEF_ISOLATED_FORM, 'codepoint, 0xFC63);
15579put('ARABIC_LIGATURE_YEH_WITH_HAMZA_ABOVE_WITH_REH_FINAL_FORM, 'codepoint, 0xFC64);
15580put('ARABIC_LIGATURE_YEH_WITH_HAMZA_ABOVE_WITH_ZAIN_FINAL_FORM, 'codepoint, 0xFC65);
15581put('ARABIC_LIGATURE_YEH_WITH_HAMZA_ABOVE_WITH_MEEM_FINAL_FORM, 'codepoint, 0xFC66);
15582put('ARABIC_LIGATURE_YEH_WITH_HAMZA_ABOVE_WITH_NOON_FINAL_FORM, 'codepoint, 0xFC67);
15583put('ARABIC_LIGATURE_YEH_WITH_HAMZA_ABOVE_WITH_ALEF_MAKSURA_FINAL_FORM, 'codepoint, 0xFC68);
15584put('ARABIC_LIGATURE_YEH_WITH_HAMZA_ABOVE_WITH_YEH_FINAL_FORM, 'codepoint, 0xFC69);
15585put('ARABIC_LIGATURE_BEH_WITH_REH_FINAL_FORM, 'codepoint, 0xFC6A);
15586put('ARABIC_LIGATURE_BEH_WITH_ZAIN_FINAL_FORM, 'codepoint, 0xFC6B);
15587put('ARABIC_LIGATURE_BEH_WITH_MEEM_FINAL_FORM, 'codepoint, 0xFC6C);
15588put('ARABIC_LIGATURE_BEH_WITH_NOON_FINAL_FORM, 'codepoint, 0xFC6D);
15589put('ARABIC_LIGATURE_BEH_WITH_ALEF_MAKSURA_FINAL_FORM, 'codepoint, 0xFC6E);
15590put('ARABIC_LIGATURE_BEH_WITH_YEH_FINAL_FORM, 'codepoint, 0xFC6F);
15591put('ARABIC_LIGATURE_TEH_WITH_REH_FINAL_FORM, 'codepoint, 0xFC70);
15592put('ARABIC_LIGATURE_TEH_WITH_ZAIN_FINAL_FORM, 'codepoint, 0xFC71);
15593put('ARABIC_LIGATURE_TEH_WITH_MEEM_FINAL_FORM, 'codepoint, 0xFC72);
15594put('ARABIC_LIGATURE_TEH_WITH_NOON_FINAL_FORM, 'codepoint, 0xFC73);
15595put('ARABIC_LIGATURE_TEH_WITH_ALEF_MAKSURA_FINAL_FORM, 'codepoint, 0xFC74);
15596put('ARABIC_LIGATURE_TEH_WITH_YEH_FINAL_FORM, 'codepoint, 0xFC75);
15597put('ARABIC_LIGATURE_THEH_WITH_REH_FINAL_FORM, 'codepoint, 0xFC76);
15598put('ARABIC_LIGATURE_THEH_WITH_ZAIN_FINAL_FORM, 'codepoint, 0xFC77);
15599put('ARABIC_LIGATURE_THEH_WITH_MEEM_FINAL_FORM, 'codepoint, 0xFC78);
15600put('ARABIC_LIGATURE_THEH_WITH_NOON_FINAL_FORM, 'codepoint, 0xFC79);
15601put('ARABIC_LIGATURE_THEH_WITH_ALEF_MAKSURA_FINAL_FORM, 'codepoint, 0xFC7A);
15602put('ARABIC_LIGATURE_THEH_WITH_YEH_FINAL_FORM, 'codepoint, 0xFC7B);
15603put('ARABIC_LIGATURE_FEH_WITH_ALEF_MAKSURA_FINAL_FORM, 'codepoint, 0xFC7C);
15604put('ARABIC_LIGATURE_FEH_WITH_YEH_FINAL_FORM, 'codepoint, 0xFC7D);
15605put('ARABIC_LIGATURE_QAF_WITH_ALEF_MAKSURA_FINAL_FORM, 'codepoint, 0xFC7E);
15606put('ARABIC_LIGATURE_QAF_WITH_YEH_FINAL_FORM, 'codepoint, 0xFC7F);
15607put('ARABIC_LIGATURE_KAF_WITH_ALEF_FINAL_FORM, 'codepoint, 0xFC80);
15608put('ARABIC_LIGATURE_KAF_WITH_LAM_FINAL_FORM, 'codepoint, 0xFC81);
15609put('ARABIC_LIGATURE_KAF_WITH_MEEM_FINAL_FORM, 'codepoint, 0xFC82);
15610put('ARABIC_LIGATURE_KAF_WITH_ALEF_MAKSURA_FINAL_FORM, 'codepoint, 0xFC83);
15611put('ARABIC_LIGATURE_KAF_WITH_YEH_FINAL_FORM, 'codepoint, 0xFC84);
15612put('ARABIC_LIGATURE_LAM_WITH_MEEM_FINAL_FORM, 'codepoint, 0xFC85);
15613put('ARABIC_LIGATURE_LAM_WITH_ALEF_MAKSURA_FINAL_FORM, 'codepoint, 0xFC86);
15614put('ARABIC_LIGATURE_LAM_WITH_YEH_FINAL_FORM, 'codepoint, 0xFC87);
15615put('ARABIC_LIGATURE_MEEM_WITH_ALEF_FINAL_FORM, 'codepoint, 0xFC88);
15616put('ARABIC_LIGATURE_MEEM_WITH_MEEM_FINAL_FORM, 'codepoint, 0xFC89);
15617put('ARABIC_LIGATURE_NOON_WITH_REH_FINAL_FORM, 'codepoint, 0xFC8A);
15618put('ARABIC_LIGATURE_NOON_WITH_ZAIN_FINAL_FORM, 'codepoint, 0xFC8B);
15619put('ARABIC_LIGATURE_NOON_WITH_MEEM_FINAL_FORM, 'codepoint, 0xFC8C);
15620put('ARABIC_LIGATURE_NOON_WITH_NOON_FINAL_FORM, 'codepoint, 0xFC8D);
15621put('ARABIC_LIGATURE_NOON_WITH_ALEF_MAKSURA_FINAL_FORM, 'codepoint, 0xFC8E);
15622put('ARABIC_LIGATURE_NOON_WITH_YEH_FINAL_FORM, 'codepoint, 0xFC8F);
15623put('ARABIC_LIGATURE_ALEF_MAKSURA_WITH_SUPERSCRIPT_ALEF_FINAL_FORM, 'codepoint, 0xFC90);
15624put('ARABIC_LIGATURE_YEH_WITH_REH_FINAL_FORM, 'codepoint, 0xFC91);
15625put('ARABIC_LIGATURE_YEH_WITH_ZAIN_FINAL_FORM, 'codepoint, 0xFC92);
15626put('ARABIC_LIGATURE_YEH_WITH_MEEM_FINAL_FORM, 'codepoint, 0xFC93);
15627put('ARABIC_LIGATURE_YEH_WITH_NOON_FINAL_FORM, 'codepoint, 0xFC94);
15628put('ARABIC_LIGATURE_YEH_WITH_ALEF_MAKSURA_FINAL_FORM, 'codepoint, 0xFC95);
15629put('ARABIC_LIGATURE_YEH_WITH_YEH_FINAL_FORM, 'codepoint, 0xFC96);
15630put('ARABIC_LIGATURE_YEH_WITH_HAMZA_ABOVE_WITH_JEEM_INITIAL_FORM, 'codepoint, 0xFC97);
15631put('ARABIC_LIGATURE_YEH_WITH_HAMZA_ABOVE_WITH_HAH_INITIAL_FORM, 'codepoint, 0xFC98);
15632put('ARABIC_LIGATURE_YEH_WITH_HAMZA_ABOVE_WITH_KHAH_INITIAL_FORM, 'codepoint, 0xFC99);
15633put('ARABIC_LIGATURE_YEH_WITH_HAMZA_ABOVE_WITH_MEEM_INITIAL_FORM, 'codepoint, 0xFC9A);
15634put('ARABIC_LIGATURE_YEH_WITH_HAMZA_ABOVE_WITH_HEH_INITIAL_FORM, 'codepoint, 0xFC9B);
15635put('ARABIC_LIGATURE_BEH_WITH_JEEM_INITIAL_FORM, 'codepoint, 0xFC9C);
15636put('ARABIC_LIGATURE_BEH_WITH_HAH_INITIAL_FORM, 'codepoint, 0xFC9D);
15637put('ARABIC_LIGATURE_BEH_WITH_KHAH_INITIAL_FORM, 'codepoint, 0xFC9E);
15638put('ARABIC_LIGATURE_BEH_WITH_MEEM_INITIAL_FORM, 'codepoint, 0xFC9F);
15639put('ARABIC_LIGATURE_BEH_WITH_HEH_INITIAL_FORM, 'codepoint, 0xFCA0);
15640put('ARABIC_LIGATURE_TEH_WITH_JEEM_INITIAL_FORM, 'codepoint, 0xFCA1);
15641put('ARABIC_LIGATURE_TEH_WITH_HAH_INITIAL_FORM, 'codepoint, 0xFCA2);
15642put('ARABIC_LIGATURE_TEH_WITH_KHAH_INITIAL_FORM, 'codepoint, 0xFCA3);
15643put('ARABIC_LIGATURE_TEH_WITH_MEEM_INITIAL_FORM, 'codepoint, 0xFCA4);
15644put('ARABIC_LIGATURE_TEH_WITH_HEH_INITIAL_FORM, 'codepoint, 0xFCA5);
15645put('ARABIC_LIGATURE_THEH_WITH_MEEM_INITIAL_FORM, 'codepoint, 0xFCA6);
15646put('ARABIC_LIGATURE_JEEM_WITH_HAH_INITIAL_FORM, 'codepoint, 0xFCA7);
15647put('ARABIC_LIGATURE_JEEM_WITH_MEEM_INITIAL_FORM, 'codepoint, 0xFCA8);
15648put('ARABIC_LIGATURE_HAH_WITH_JEEM_INITIAL_FORM, 'codepoint, 0xFCA9);
15649put('ARABIC_LIGATURE_HAH_WITH_MEEM_INITIAL_FORM, 'codepoint, 0xFCAA);
15650put('ARABIC_LIGATURE_KHAH_WITH_JEEM_INITIAL_FORM, 'codepoint, 0xFCAB);
15651put('ARABIC_LIGATURE_KHAH_WITH_MEEM_INITIAL_FORM, 'codepoint, 0xFCAC);
15652put('ARABIC_LIGATURE_SEEN_WITH_JEEM_INITIAL_FORM, 'codepoint, 0xFCAD);
15653put('ARABIC_LIGATURE_SEEN_WITH_HAH_INITIAL_FORM, 'codepoint, 0xFCAE);
15654put('ARABIC_LIGATURE_SEEN_WITH_KHAH_INITIAL_FORM, 'codepoint, 0xFCAF);
15655put('ARABIC_LIGATURE_SEEN_WITH_MEEM_INITIAL_FORM, 'codepoint, 0xFCB0);
15656put('ARABIC_LIGATURE_SAD_WITH_HAH_INITIAL_FORM, 'codepoint, 0xFCB1);
15657put('ARABIC_LIGATURE_SAD_WITH_KHAH_INITIAL_FORM, 'codepoint, 0xFCB2);
15658put('ARABIC_LIGATURE_SAD_WITH_MEEM_INITIAL_FORM, 'codepoint, 0xFCB3);
15659put('ARABIC_LIGATURE_DAD_WITH_JEEM_INITIAL_FORM, 'codepoint, 0xFCB4);
15660put('ARABIC_LIGATURE_DAD_WITH_HAH_INITIAL_FORM, 'codepoint, 0xFCB5);
15661put('ARABIC_LIGATURE_DAD_WITH_KHAH_INITIAL_FORM, 'codepoint, 0xFCB6);
15662put('ARABIC_LIGATURE_DAD_WITH_MEEM_INITIAL_FORM, 'codepoint, 0xFCB7);
15663put('ARABIC_LIGATURE_TAH_WITH_HAH_INITIAL_FORM, 'codepoint, 0xFCB8);
15664put('ARABIC_LIGATURE_ZAH_WITH_MEEM_INITIAL_FORM, 'codepoint, 0xFCB9);
15665put('ARABIC_LIGATURE_AIN_WITH_JEEM_INITIAL_FORM, 'codepoint, 0xFCBA);
15666put('ARABIC_LIGATURE_AIN_WITH_MEEM_INITIAL_FORM, 'codepoint, 0xFCBB);
15667put('ARABIC_LIGATURE_GHAIN_WITH_JEEM_INITIAL_FORM, 'codepoint, 0xFCBC);
15668put('ARABIC_LIGATURE_GHAIN_WITH_MEEM_INITIAL_FORM, 'codepoint, 0xFCBD);
15669put('ARABIC_LIGATURE_FEH_WITH_JEEM_INITIAL_FORM, 'codepoint, 0xFCBE);
15670put('ARABIC_LIGATURE_FEH_WITH_HAH_INITIAL_FORM, 'codepoint, 0xFCBF);
15671put('ARABIC_LIGATURE_FEH_WITH_KHAH_INITIAL_FORM, 'codepoint, 0xFCC0);
15672put('ARABIC_LIGATURE_FEH_WITH_MEEM_INITIAL_FORM, 'codepoint, 0xFCC1);
15673put('ARABIC_LIGATURE_QAF_WITH_HAH_INITIAL_FORM, 'codepoint, 0xFCC2);
15674put('ARABIC_LIGATURE_QAF_WITH_MEEM_INITIAL_FORM, 'codepoint, 0xFCC3);
15675put('ARABIC_LIGATURE_KAF_WITH_JEEM_INITIAL_FORM, 'codepoint, 0xFCC4);
15676put('ARABIC_LIGATURE_KAF_WITH_HAH_INITIAL_FORM, 'codepoint, 0xFCC5);
15677put('ARABIC_LIGATURE_KAF_WITH_KHAH_INITIAL_FORM, 'codepoint, 0xFCC6);
15678put('ARABIC_LIGATURE_KAF_WITH_LAM_INITIAL_FORM, 'codepoint, 0xFCC7);
15679put('ARABIC_LIGATURE_KAF_WITH_MEEM_INITIAL_FORM, 'codepoint, 0xFCC8);
15680put('ARABIC_LIGATURE_LAM_WITH_JEEM_INITIAL_FORM, 'codepoint, 0xFCC9);
15681put('ARABIC_LIGATURE_LAM_WITH_HAH_INITIAL_FORM, 'codepoint, 0xFCCA);
15682put('ARABIC_LIGATURE_LAM_WITH_KHAH_INITIAL_FORM, 'codepoint, 0xFCCB);
15683put('ARABIC_LIGATURE_LAM_WITH_MEEM_INITIAL_FORM, 'codepoint, 0xFCCC);
15684put('ARABIC_LIGATURE_LAM_WITH_HEH_INITIAL_FORM, 'codepoint, 0xFCCD);
15685put('ARABIC_LIGATURE_MEEM_WITH_JEEM_INITIAL_FORM, 'codepoint, 0xFCCE);
15686put('ARABIC_LIGATURE_MEEM_WITH_HAH_INITIAL_FORM, 'codepoint, 0xFCCF);
15687put('ARABIC_LIGATURE_MEEM_WITH_KHAH_INITIAL_FORM, 'codepoint, 0xFCD0);
15688put('ARABIC_LIGATURE_MEEM_WITH_MEEM_INITIAL_FORM, 'codepoint, 0xFCD1);
15689put('ARABIC_LIGATURE_NOON_WITH_JEEM_INITIAL_FORM, 'codepoint, 0xFCD2);
15690put('ARABIC_LIGATURE_NOON_WITH_HAH_INITIAL_FORM, 'codepoint, 0xFCD3);
15691put('ARABIC_LIGATURE_NOON_WITH_KHAH_INITIAL_FORM, 'codepoint, 0xFCD4);
15692put('ARABIC_LIGATURE_NOON_WITH_MEEM_INITIAL_FORM, 'codepoint, 0xFCD5);
15693put('ARABIC_LIGATURE_NOON_WITH_HEH_INITIAL_FORM, 'codepoint, 0xFCD6);
15694put('ARABIC_LIGATURE_HEH_WITH_JEEM_INITIAL_FORM, 'codepoint, 0xFCD7);
15695put('ARABIC_LIGATURE_HEH_WITH_MEEM_INITIAL_FORM, 'codepoint, 0xFCD8);
15696put('ARABIC_LIGATURE_HEH_WITH_SUPERSCRIPT_ALEF_INITIAL_FORM, 'codepoint, 0xFCD9);
15697put('ARABIC_LIGATURE_YEH_WITH_JEEM_INITIAL_FORM, 'codepoint, 0xFCDA);
15698put('ARABIC_LIGATURE_YEH_WITH_HAH_INITIAL_FORM, 'codepoint, 0xFCDB);
15699put('ARABIC_LIGATURE_YEH_WITH_KHAH_INITIAL_FORM, 'codepoint, 0xFCDC);
15700put('ARABIC_LIGATURE_YEH_WITH_MEEM_INITIAL_FORM, 'codepoint, 0xFCDD);
15701put('ARABIC_LIGATURE_YEH_WITH_HEH_INITIAL_FORM, 'codepoint, 0xFCDE);
15702put('ARABIC_LIGATURE_YEH_WITH_HAMZA_ABOVE_WITH_MEEM_MEDIAL_FORM, 'codepoint, 0xFCDF);
15703put('ARABIC_LIGATURE_YEH_WITH_HAMZA_ABOVE_WITH_HEH_MEDIAL_FORM, 'codepoint, 0xFCE0);
15704put('ARABIC_LIGATURE_BEH_WITH_MEEM_MEDIAL_FORM, 'codepoint, 0xFCE1);
15705put('ARABIC_LIGATURE_BEH_WITH_HEH_MEDIAL_FORM, 'codepoint, 0xFCE2);
15706put('ARABIC_LIGATURE_TEH_WITH_MEEM_MEDIAL_FORM, 'codepoint, 0xFCE3);
15707put('ARABIC_LIGATURE_TEH_WITH_HEH_MEDIAL_FORM, 'codepoint, 0xFCE4);
15708put('ARABIC_LIGATURE_THEH_WITH_MEEM_MEDIAL_FORM, 'codepoint, 0xFCE5);
15709put('ARABIC_LIGATURE_THEH_WITH_HEH_MEDIAL_FORM, 'codepoint, 0xFCE6);
15710put('ARABIC_LIGATURE_SEEN_WITH_MEEM_MEDIAL_FORM, 'codepoint, 0xFCE7);
15711put('ARABIC_LIGATURE_SEEN_WITH_HEH_MEDIAL_FORM, 'codepoint, 0xFCE8);
15712put('ARABIC_LIGATURE_SHEEN_WITH_MEEM_MEDIAL_FORM, 'codepoint, 0xFCE9);
15713put('ARABIC_LIGATURE_SHEEN_WITH_HEH_MEDIAL_FORM, 'codepoint, 0xFCEA);
15714put('ARABIC_LIGATURE_KAF_WITH_LAM_MEDIAL_FORM, 'codepoint, 0xFCEB);
15715put('ARABIC_LIGATURE_KAF_WITH_MEEM_MEDIAL_FORM, 'codepoint, 0xFCEC);
15716put('ARABIC_LIGATURE_LAM_WITH_MEEM_MEDIAL_FORM, 'codepoint, 0xFCED);
15717put('ARABIC_LIGATURE_NOON_WITH_MEEM_MEDIAL_FORM, 'codepoint, 0xFCEE);
15718put('ARABIC_LIGATURE_NOON_WITH_HEH_MEDIAL_FORM, 'codepoint, 0xFCEF);
15719put('ARABIC_LIGATURE_YEH_WITH_MEEM_MEDIAL_FORM, 'codepoint, 0xFCF0);
15720put('ARABIC_LIGATURE_YEH_WITH_HEH_MEDIAL_FORM, 'codepoint, 0xFCF1);
15721put('ARABIC_LIGATURE_SHADDA_WITH_FATHA_MEDIAL_FORM, 'codepoint, 0xFCF2);
15722put('ARABIC_LIGATURE_SHADDA_WITH_DAMMA_MEDIAL_FORM, 'codepoint, 0xFCF3);
15723put('ARABIC_LIGATURE_SHADDA_WITH_KASRA_MEDIAL_FORM, 'codepoint, 0xFCF4);
15724put('ARABIC_LIGATURE_TAH_WITH_ALEF_MAKSURA_ISOLATED_FORM, 'codepoint, 0xFCF5);
15725put('ARABIC_LIGATURE_TAH_WITH_YEH_ISOLATED_FORM, 'codepoint, 0xFCF6);
15726put('ARABIC_LIGATURE_AIN_WITH_ALEF_MAKSURA_ISOLATED_FORM, 'codepoint, 0xFCF7);
15727put('ARABIC_LIGATURE_AIN_WITH_YEH_ISOLATED_FORM, 'codepoint, 0xFCF8);
15728put('ARABIC_LIGATURE_GHAIN_WITH_ALEF_MAKSURA_ISOLATED_FORM, 'codepoint, 0xFCF9);
15729put('ARABIC_LIGATURE_GHAIN_WITH_YEH_ISOLATED_FORM, 'codepoint, 0xFCFA);
15730put('ARABIC_LIGATURE_SEEN_WITH_ALEF_MAKSURA_ISOLATED_FORM, 'codepoint, 0xFCFB);
15731put('ARABIC_LIGATURE_SEEN_WITH_YEH_ISOLATED_FORM, 'codepoint, 0xFCFC);
15732put('ARABIC_LIGATURE_SHEEN_WITH_ALEF_MAKSURA_ISOLATED_FORM, 'codepoint, 0xFCFD);
15733put('ARABIC_LIGATURE_SHEEN_WITH_YEH_ISOLATED_FORM, 'codepoint, 0xFCFE);
15734put('ARABIC_LIGATURE_HAH_WITH_ALEF_MAKSURA_ISOLATED_FORM, 'codepoint, 0xFCFF);
15735put('ARABIC_LIGATURE_HAH_WITH_YEH_ISOLATED_FORM, 'codepoint, 0xFD00);
15736put('ARABIC_LIGATURE_JEEM_WITH_ALEF_MAKSURA_ISOLATED_FORM, 'codepoint, 0xFD01);
15737put('ARABIC_LIGATURE_JEEM_WITH_YEH_ISOLATED_FORM, 'codepoint, 0xFD02);
15738put('ARABIC_LIGATURE_KHAH_WITH_ALEF_MAKSURA_ISOLATED_FORM, 'codepoint, 0xFD03);
15739put('ARABIC_LIGATURE_KHAH_WITH_YEH_ISOLATED_FORM, 'codepoint, 0xFD04);
15740put('ARABIC_LIGATURE_SAD_WITH_ALEF_MAKSURA_ISOLATED_FORM, 'codepoint, 0xFD05);
15741put('ARABIC_LIGATURE_SAD_WITH_YEH_ISOLATED_FORM, 'codepoint, 0xFD06);
15742put('ARABIC_LIGATURE_DAD_WITH_ALEF_MAKSURA_ISOLATED_FORM, 'codepoint, 0xFD07);
15743put('ARABIC_LIGATURE_DAD_WITH_YEH_ISOLATED_FORM, 'codepoint, 0xFD08);
15744put('ARABIC_LIGATURE_SHEEN_WITH_JEEM_ISOLATED_FORM, 'codepoint, 0xFD09);
15745put('ARABIC_LIGATURE_SHEEN_WITH_HAH_ISOLATED_FORM, 'codepoint, 0xFD0A);
15746put('ARABIC_LIGATURE_SHEEN_WITH_KHAH_ISOLATED_FORM, 'codepoint, 0xFD0B);
15747put('ARABIC_LIGATURE_SHEEN_WITH_MEEM_ISOLATED_FORM, 'codepoint, 0xFD0C);
15748put('ARABIC_LIGATURE_SHEEN_WITH_REH_ISOLATED_FORM, 'codepoint, 0xFD0D);
15749put('ARABIC_LIGATURE_SEEN_WITH_REH_ISOLATED_FORM, 'codepoint, 0xFD0E);
15750put('ARABIC_LIGATURE_SAD_WITH_REH_ISOLATED_FORM, 'codepoint, 0xFD0F);
15751put('ARABIC_LIGATURE_DAD_WITH_REH_ISOLATED_FORM, 'codepoint, 0xFD10);
15752put('ARABIC_LIGATURE_TAH_WITH_ALEF_MAKSURA_FINAL_FORM, 'codepoint, 0xFD11);
15753put('ARABIC_LIGATURE_TAH_WITH_YEH_FINAL_FORM, 'codepoint, 0xFD12);
15754put('ARABIC_LIGATURE_AIN_WITH_ALEF_MAKSURA_FINAL_FORM, 'codepoint, 0xFD13);
15755put('ARABIC_LIGATURE_AIN_WITH_YEH_FINAL_FORM, 'codepoint, 0xFD14);
15756put('ARABIC_LIGATURE_GHAIN_WITH_ALEF_MAKSURA_FINAL_FORM, 'codepoint, 0xFD15);
15757put('ARABIC_LIGATURE_GHAIN_WITH_YEH_FINAL_FORM, 'codepoint, 0xFD16);
15758put('ARABIC_LIGATURE_SEEN_WITH_ALEF_MAKSURA_FINAL_FORM, 'codepoint, 0xFD17);
15759put('ARABIC_LIGATURE_SEEN_WITH_YEH_FINAL_FORM, 'codepoint, 0xFD18);
15760put('ARABIC_LIGATURE_SHEEN_WITH_ALEF_MAKSURA_FINAL_FORM, 'codepoint, 0xFD19);
15761put('ARABIC_LIGATURE_SHEEN_WITH_YEH_FINAL_FORM, 'codepoint, 0xFD1A);
15762put('ARABIC_LIGATURE_HAH_WITH_ALEF_MAKSURA_FINAL_FORM, 'codepoint, 0xFD1B);
15763put('ARABIC_LIGATURE_HAH_WITH_YEH_FINAL_FORM, 'codepoint, 0xFD1C);
15764put('ARABIC_LIGATURE_JEEM_WITH_ALEF_MAKSURA_FINAL_FORM, 'codepoint, 0xFD1D);
15765put('ARABIC_LIGATURE_JEEM_WITH_YEH_FINAL_FORM, 'codepoint, 0xFD1E);
15766put('ARABIC_LIGATURE_KHAH_WITH_ALEF_MAKSURA_FINAL_FORM, 'codepoint, 0xFD1F);
15767put('ARABIC_LIGATURE_KHAH_WITH_YEH_FINAL_FORM, 'codepoint, 0xFD20);
15768put('ARABIC_LIGATURE_SAD_WITH_ALEF_MAKSURA_FINAL_FORM, 'codepoint, 0xFD21);
15769put('ARABIC_LIGATURE_SAD_WITH_YEH_FINAL_FORM, 'codepoint, 0xFD22);
15770put('ARABIC_LIGATURE_DAD_WITH_ALEF_MAKSURA_FINAL_FORM, 'codepoint, 0xFD23);
15771put('ARABIC_LIGATURE_DAD_WITH_YEH_FINAL_FORM, 'codepoint, 0xFD24);
15772put('ARABIC_LIGATURE_SHEEN_WITH_JEEM_FINAL_FORM, 'codepoint, 0xFD25);
15773put('ARABIC_LIGATURE_SHEEN_WITH_HAH_FINAL_FORM, 'codepoint, 0xFD26);
15774put('ARABIC_LIGATURE_SHEEN_WITH_KHAH_FINAL_FORM, 'codepoint, 0xFD27);
15775put('ARABIC_LIGATURE_SHEEN_WITH_MEEM_FINAL_FORM, 'codepoint, 0xFD28);
15776put('ARABIC_LIGATURE_SHEEN_WITH_REH_FINAL_FORM, 'codepoint, 0xFD29);
15777put('ARABIC_LIGATURE_SEEN_WITH_REH_FINAL_FORM, 'codepoint, 0xFD2A);
15778put('ARABIC_LIGATURE_SAD_WITH_REH_FINAL_FORM, 'codepoint, 0xFD2B);
15779put('ARABIC_LIGATURE_DAD_WITH_REH_FINAL_FORM, 'codepoint, 0xFD2C);
15780put('ARABIC_LIGATURE_SHEEN_WITH_JEEM_INITIAL_FORM, 'codepoint, 0xFD2D);
15781put('ARABIC_LIGATURE_SHEEN_WITH_HAH_INITIAL_FORM, 'codepoint, 0xFD2E);
15782put('ARABIC_LIGATURE_SHEEN_WITH_KHAH_INITIAL_FORM, 'codepoint, 0xFD2F);
15783put('ARABIC_LIGATURE_SHEEN_WITH_MEEM_INITIAL_FORM, 'codepoint, 0xFD30);
15784put('ARABIC_LIGATURE_SEEN_WITH_HEH_INITIAL_FORM, 'codepoint, 0xFD31);
15785put('ARABIC_LIGATURE_SHEEN_WITH_HEH_INITIAL_FORM, 'codepoint, 0xFD32);
15786put('ARABIC_LIGATURE_TAH_WITH_MEEM_INITIAL_FORM, 'codepoint, 0xFD33);
15787put('ARABIC_LIGATURE_SEEN_WITH_JEEM_MEDIAL_FORM, 'codepoint, 0xFD34);
15788put('ARABIC_LIGATURE_SEEN_WITH_HAH_MEDIAL_FORM, 'codepoint, 0xFD35);
15789put('ARABIC_LIGATURE_SEEN_WITH_KHAH_MEDIAL_FORM, 'codepoint, 0xFD36);
15790put('ARABIC_LIGATURE_SHEEN_WITH_JEEM_MEDIAL_FORM, 'codepoint, 0xFD37);
15791put('ARABIC_LIGATURE_SHEEN_WITH_HAH_MEDIAL_FORM, 'codepoint, 0xFD38);
15792put('ARABIC_LIGATURE_SHEEN_WITH_KHAH_MEDIAL_FORM, 'codepoint, 0xFD39);
15793put('ARABIC_LIGATURE_TAH_WITH_MEEM_MEDIAL_FORM, 'codepoint, 0xFD3A);
15794put('ARABIC_LIGATURE_ZAH_WITH_MEEM_MEDIAL_FORM, 'codepoint, 0xFD3B);
15795put('ARABIC_LIGATURE_ALEF_WITH_FATHATAN_FINAL_FORM, 'codepoint, 0xFD3C);
15796put('ARABIC_LIGATURE_ALEF_WITH_FATHATAN_ISOLATED_FORM, 'codepoint, 0xFD3D);
15797put('ORNATE_LEFT_PARENTHESIS, 'codepoint, 0xFD3E);
15798put('ORNATE_RIGHT_PARENTHESIS, 'codepoint, 0xFD3F);
15799put('ARABIC_LIGATURE_TEH_WITH_JEEM_WITH_MEEM_INITIAL_FORM, 'codepoint, 0xFD50);
15800put('ARABIC_LIGATURE_TEH_WITH_HAH_WITH_JEEM_FINAL_FORM, 'codepoint, 0xFD51);
15801put('ARABIC_LIGATURE_TEH_WITH_HAH_WITH_JEEM_INITIAL_FORM, 'codepoint, 0xFD52);
15802put('ARABIC_LIGATURE_TEH_WITH_HAH_WITH_MEEM_INITIAL_FORM, 'codepoint, 0xFD53);
15803put('ARABIC_LIGATURE_TEH_WITH_KHAH_WITH_MEEM_INITIAL_FORM, 'codepoint, 0xFD54);
15804put('ARABIC_LIGATURE_TEH_WITH_MEEM_WITH_JEEM_INITIAL_FORM, 'codepoint, 0xFD55);
15805put('ARABIC_LIGATURE_TEH_WITH_MEEM_WITH_HAH_INITIAL_FORM, 'codepoint, 0xFD56);
15806put('ARABIC_LIGATURE_TEH_WITH_MEEM_WITH_KHAH_INITIAL_FORM, 'codepoint, 0xFD57);
15807put('ARABIC_LIGATURE_JEEM_WITH_MEEM_WITH_HAH_FINAL_FORM, 'codepoint, 0xFD58);
15808put('ARABIC_LIGATURE_JEEM_WITH_MEEM_WITH_HAH_INITIAL_FORM, 'codepoint, 0xFD59);
15809put('ARABIC_LIGATURE_HAH_WITH_MEEM_WITH_YEH_FINAL_FORM, 'codepoint, 0xFD5A);
15810put('ARABIC_LIGATURE_HAH_WITH_MEEM_WITH_ALEF_MAKSURA_FINAL_FORM, 'codepoint, 0xFD5B);
15811put('ARABIC_LIGATURE_SEEN_WITH_HAH_WITH_JEEM_INITIAL_FORM, 'codepoint, 0xFD5C);
15812put('ARABIC_LIGATURE_SEEN_WITH_JEEM_WITH_HAH_INITIAL_FORM, 'codepoint, 0xFD5D);
15813put('ARABIC_LIGATURE_SEEN_WITH_JEEM_WITH_ALEF_MAKSURA_FINAL_FORM, 'codepoint, 0xFD5E);
15814put('ARABIC_LIGATURE_SEEN_WITH_MEEM_WITH_HAH_FINAL_FORM, 'codepoint, 0xFD5F);
15815put('ARABIC_LIGATURE_SEEN_WITH_MEEM_WITH_HAH_INITIAL_FORM, 'codepoint, 0xFD60);
15816put('ARABIC_LIGATURE_SEEN_WITH_MEEM_WITH_JEEM_INITIAL_FORM, 'codepoint, 0xFD61);
15817put('ARABIC_LIGATURE_SEEN_WITH_MEEM_WITH_MEEM_FINAL_FORM, 'codepoint, 0xFD62);
15818put('ARABIC_LIGATURE_SEEN_WITH_MEEM_WITH_MEEM_INITIAL_FORM, 'codepoint, 0xFD63);
15819put('ARABIC_LIGATURE_SAD_WITH_HAH_WITH_HAH_FINAL_FORM, 'codepoint, 0xFD64);
15820put('ARABIC_LIGATURE_SAD_WITH_HAH_WITH_HAH_INITIAL_FORM, 'codepoint, 0xFD65);
15821put('ARABIC_LIGATURE_SAD_WITH_MEEM_WITH_MEEM_FINAL_FORM, 'codepoint, 0xFD66);
15822put('ARABIC_LIGATURE_SHEEN_WITH_HAH_WITH_MEEM_FINAL_FORM, 'codepoint, 0xFD67);
15823put('ARABIC_LIGATURE_SHEEN_WITH_HAH_WITH_MEEM_INITIAL_FORM, 'codepoint, 0xFD68);
15824put('ARABIC_LIGATURE_SHEEN_WITH_JEEM_WITH_YEH_FINAL_FORM, 'codepoint, 0xFD69);
15825put('ARABIC_LIGATURE_SHEEN_WITH_MEEM_WITH_KHAH_FINAL_FORM, 'codepoint, 0xFD6A);
15826put('ARABIC_LIGATURE_SHEEN_WITH_MEEM_WITH_KHAH_INITIAL_FORM, 'codepoint, 0xFD6B);
15827put('ARABIC_LIGATURE_SHEEN_WITH_MEEM_WITH_MEEM_FINAL_FORM, 'codepoint, 0xFD6C);
15828put('ARABIC_LIGATURE_SHEEN_WITH_MEEM_WITH_MEEM_INITIAL_FORM, 'codepoint, 0xFD6D);
15829put('ARABIC_LIGATURE_DAD_WITH_HAH_WITH_ALEF_MAKSURA_FINAL_FORM, 'codepoint, 0xFD6E);
15830put('ARABIC_LIGATURE_DAD_WITH_KHAH_WITH_MEEM_FINAL_FORM, 'codepoint, 0xFD6F);
15831put('ARABIC_LIGATURE_DAD_WITH_KHAH_WITH_MEEM_INITIAL_FORM, 'codepoint, 0xFD70);
15832put('ARABIC_LIGATURE_TAH_WITH_MEEM_WITH_HAH_FINAL_FORM, 'codepoint, 0xFD71);
15833put('ARABIC_LIGATURE_TAH_WITH_MEEM_WITH_HAH_INITIAL_FORM, 'codepoint, 0xFD72);
15834put('ARABIC_LIGATURE_TAH_WITH_MEEM_WITH_MEEM_INITIAL_FORM, 'codepoint, 0xFD73);
15835put('ARABIC_LIGATURE_TAH_WITH_MEEM_WITH_YEH_FINAL_FORM, 'codepoint, 0xFD74);
15836put('ARABIC_LIGATURE_AIN_WITH_JEEM_WITH_MEEM_FINAL_FORM, 'codepoint, 0xFD75);
15837put('ARABIC_LIGATURE_AIN_WITH_MEEM_WITH_MEEM_FINAL_FORM, 'codepoint, 0xFD76);
15838put('ARABIC_LIGATURE_AIN_WITH_MEEM_WITH_MEEM_INITIAL_FORM, 'codepoint, 0xFD77);
15839put('ARABIC_LIGATURE_AIN_WITH_MEEM_WITH_ALEF_MAKSURA_FINAL_FORM, 'codepoint, 0xFD78);
15840put('ARABIC_LIGATURE_GHAIN_WITH_MEEM_WITH_MEEM_FINAL_FORM, 'codepoint, 0xFD79);
15841put('ARABIC_LIGATURE_GHAIN_WITH_MEEM_WITH_YEH_FINAL_FORM, 'codepoint, 0xFD7A);
15842put('ARABIC_LIGATURE_GHAIN_WITH_MEEM_WITH_ALEF_MAKSURA_FINAL_FORM, 'codepoint, 0xFD7B);
15843put('ARABIC_LIGATURE_FEH_WITH_KHAH_WITH_MEEM_FINAL_FORM, 'codepoint, 0xFD7C);
15844put('ARABIC_LIGATURE_FEH_WITH_KHAH_WITH_MEEM_INITIAL_FORM, 'codepoint, 0xFD7D);
15845put('ARABIC_LIGATURE_QAF_WITH_MEEM_WITH_HAH_FINAL_FORM, 'codepoint, 0xFD7E);
15846put('ARABIC_LIGATURE_QAF_WITH_MEEM_WITH_MEEM_FINAL_FORM, 'codepoint, 0xFD7F);
15847put('ARABIC_LIGATURE_LAM_WITH_HAH_WITH_MEEM_FINAL_FORM, 'codepoint, 0xFD80);
15848put('ARABIC_LIGATURE_LAM_WITH_HAH_WITH_YEH_FINAL_FORM, 'codepoint, 0xFD81);
15849put('ARABIC_LIGATURE_LAM_WITH_HAH_WITH_ALEF_MAKSURA_FINAL_FORM, 'codepoint, 0xFD82);
15850put('ARABIC_LIGATURE_LAM_WITH_JEEM_WITH_JEEM_INITIAL_FORM, 'codepoint, 0xFD83);
15851put('ARABIC_LIGATURE_LAM_WITH_JEEM_WITH_JEEM_FINAL_FORM, 'codepoint, 0xFD84);
15852put('ARABIC_LIGATURE_LAM_WITH_KHAH_WITH_MEEM_FINAL_FORM, 'codepoint, 0xFD85);
15853put('ARABIC_LIGATURE_LAM_WITH_KHAH_WITH_MEEM_INITIAL_FORM, 'codepoint, 0xFD86);
15854put('ARABIC_LIGATURE_LAM_WITH_MEEM_WITH_HAH_FINAL_FORM, 'codepoint, 0xFD87);
15855put('ARABIC_LIGATURE_LAM_WITH_MEEM_WITH_HAH_INITIAL_FORM, 'codepoint, 0xFD88);
15856put('ARABIC_LIGATURE_MEEM_WITH_HAH_WITH_JEEM_INITIAL_FORM, 'codepoint, 0xFD89);
15857put('ARABIC_LIGATURE_MEEM_WITH_HAH_WITH_MEEM_INITIAL_FORM, 'codepoint, 0xFD8A);
15858put('ARABIC_LIGATURE_MEEM_WITH_HAH_WITH_YEH_FINAL_FORM, 'codepoint, 0xFD8B);
15859put('ARABIC_LIGATURE_MEEM_WITH_JEEM_WITH_HAH_INITIAL_FORM, 'codepoint, 0xFD8C);
15860put('ARABIC_LIGATURE_MEEM_WITH_JEEM_WITH_MEEM_INITIAL_FORM, 'codepoint, 0xFD8D);
15861put('ARABIC_LIGATURE_MEEM_WITH_KHAH_WITH_JEEM_INITIAL_FORM, 'codepoint, 0xFD8E);
15862put('ARABIC_LIGATURE_MEEM_WITH_KHAH_WITH_MEEM_INITIAL_FORM, 'codepoint, 0xFD8F);
15863put('ARABIC_LIGATURE_MEEM_WITH_JEEM_WITH_KHAH_INITIAL_FORM, 'codepoint, 0xFD92);
15864put('ARABIC_LIGATURE_HEH_WITH_MEEM_WITH_JEEM_INITIAL_FORM, 'codepoint, 0xFD93);
15865put('ARABIC_LIGATURE_HEH_WITH_MEEM_WITH_MEEM_INITIAL_FORM, 'codepoint, 0xFD94);
15866put('ARABIC_LIGATURE_NOON_WITH_HAH_WITH_MEEM_INITIAL_FORM, 'codepoint, 0xFD95);
15867put('ARABIC_LIGATURE_NOON_WITH_HAH_WITH_ALEF_MAKSURA_FINAL_FORM, 'codepoint, 0xFD96);
15868put('ARABIC_LIGATURE_NOON_WITH_JEEM_WITH_MEEM_FINAL_FORM, 'codepoint, 0xFD97);
15869put('ARABIC_LIGATURE_NOON_WITH_JEEM_WITH_MEEM_INITIAL_FORM, 'codepoint, 0xFD98);
15870put('ARABIC_LIGATURE_NOON_WITH_JEEM_WITH_ALEF_MAKSURA_FINAL_FORM, 'codepoint, 0xFD99);
15871put('ARABIC_LIGATURE_NOON_WITH_MEEM_WITH_YEH_FINAL_FORM, 'codepoint, 0xFD9A);
15872put('ARABIC_LIGATURE_NOON_WITH_MEEM_WITH_ALEF_MAKSURA_FINAL_FORM, 'codepoint, 0xFD9B);
15873put('ARABIC_LIGATURE_YEH_WITH_MEEM_WITH_MEEM_FINAL_FORM, 'codepoint, 0xFD9C);
15874put('ARABIC_LIGATURE_YEH_WITH_MEEM_WITH_MEEM_INITIAL_FORM, 'codepoint, 0xFD9D);
15875put('ARABIC_LIGATURE_BEH_WITH_KHAH_WITH_YEH_FINAL_FORM, 'codepoint, 0xFD9E);
15876put('ARABIC_LIGATURE_TEH_WITH_JEEM_WITH_YEH_FINAL_FORM, 'codepoint, 0xFD9F);
15877put('ARABIC_LIGATURE_TEH_WITH_JEEM_WITH_ALEF_MAKSURA_FINAL_FORM, 'codepoint, 0xFDA0);
15878put('ARABIC_LIGATURE_TEH_WITH_KHAH_WITH_YEH_FINAL_FORM, 'codepoint, 0xFDA1);
15879put('ARABIC_LIGATURE_TEH_WITH_KHAH_WITH_ALEF_MAKSURA_FINAL_FORM, 'codepoint, 0xFDA2);
15880put('ARABIC_LIGATURE_TEH_WITH_MEEM_WITH_YEH_FINAL_FORM, 'codepoint, 0xFDA3);
15881put('ARABIC_LIGATURE_TEH_WITH_MEEM_WITH_ALEF_MAKSURA_FINAL_FORM, 'codepoint, 0xFDA4);
15882put('ARABIC_LIGATURE_JEEM_WITH_MEEM_WITH_YEH_FINAL_FORM, 'codepoint, 0xFDA5);
15883put('ARABIC_LIGATURE_JEEM_WITH_HAH_WITH_ALEF_MAKSURA_FINAL_FORM, 'codepoint, 0xFDA6);
15884put('ARABIC_LIGATURE_JEEM_WITH_MEEM_WITH_ALEF_MAKSURA_FINAL_FORM, 'codepoint, 0xFDA7);
15885put('ARABIC_LIGATURE_SEEN_WITH_KHAH_WITH_ALEF_MAKSURA_FINAL_FORM, 'codepoint, 0xFDA8);
15886put('ARABIC_LIGATURE_SAD_WITH_HAH_WITH_YEH_FINAL_FORM, 'codepoint, 0xFDA9);
15887put('ARABIC_LIGATURE_SHEEN_WITH_HAH_WITH_YEH_FINAL_FORM, 'codepoint, 0xFDAA);
15888put('ARABIC_LIGATURE_DAD_WITH_HAH_WITH_YEH_FINAL_FORM, 'codepoint, 0xFDAB);
15889put('ARABIC_LIGATURE_LAM_WITH_JEEM_WITH_YEH_FINAL_FORM, 'codepoint, 0xFDAC);
15890put('ARABIC_LIGATURE_LAM_WITH_MEEM_WITH_YEH_FINAL_FORM, 'codepoint, 0xFDAD);
15891put('ARABIC_LIGATURE_YEH_WITH_HAH_WITH_YEH_FINAL_FORM, 'codepoint, 0xFDAE);
15892put('ARABIC_LIGATURE_YEH_WITH_JEEM_WITH_YEH_FINAL_FORM, 'codepoint, 0xFDAF);
15893put('ARABIC_LIGATURE_YEH_WITH_MEEM_WITH_YEH_FINAL_FORM, 'codepoint, 0xFDB0);
15894put('ARABIC_LIGATURE_MEEM_WITH_MEEM_WITH_YEH_FINAL_FORM, 'codepoint, 0xFDB1);
15895put('ARABIC_LIGATURE_QAF_WITH_MEEM_WITH_YEH_FINAL_FORM, 'codepoint, 0xFDB2);
15896put('ARABIC_LIGATURE_NOON_WITH_HAH_WITH_YEH_FINAL_FORM, 'codepoint, 0xFDB3);
15897put('ARABIC_LIGATURE_QAF_WITH_MEEM_WITH_HAH_INITIAL_FORM, 'codepoint, 0xFDB4);
15898put('ARABIC_LIGATURE_LAM_WITH_HAH_WITH_MEEM_INITIAL_FORM, 'codepoint, 0xFDB5);
15899put('ARABIC_LIGATURE_AIN_WITH_MEEM_WITH_YEH_FINAL_FORM, 'codepoint, 0xFDB6);
15900put('ARABIC_LIGATURE_KAF_WITH_MEEM_WITH_YEH_FINAL_FORM, 'codepoint, 0xFDB7);
15901put('ARABIC_LIGATURE_NOON_WITH_JEEM_WITH_HAH_INITIAL_FORM, 'codepoint, 0xFDB8);
15902put('ARABIC_LIGATURE_MEEM_WITH_KHAH_WITH_YEH_FINAL_FORM, 'codepoint, 0xFDB9);
15903put('ARABIC_LIGATURE_LAM_WITH_JEEM_WITH_MEEM_INITIAL_FORM, 'codepoint, 0xFDBA);
15904put('ARABIC_LIGATURE_KAF_WITH_MEEM_WITH_MEEM_FINAL_FORM, 'codepoint, 0xFDBB);
15905put('ARABIC_LIGATURE_LAM_WITH_JEEM_WITH_MEEM_FINAL_FORM, 'codepoint, 0xFDBC);
15906put('ARABIC_LIGATURE_NOON_WITH_JEEM_WITH_HAH_FINAL_FORM, 'codepoint, 0xFDBD);
15907put('ARABIC_LIGATURE_JEEM_WITH_HAH_WITH_YEH_FINAL_FORM, 'codepoint, 0xFDBE);
15908put('ARABIC_LIGATURE_HAH_WITH_JEEM_WITH_YEH_FINAL_FORM, 'codepoint, 0xFDBF);
15909put('ARABIC_LIGATURE_MEEM_WITH_JEEM_WITH_YEH_FINAL_FORM, 'codepoint, 0xFDC0);
15910put('ARABIC_LIGATURE_FEH_WITH_MEEM_WITH_YEH_FINAL_FORM, 'codepoint, 0xFDC1);
15911put('ARABIC_LIGATURE_BEH_WITH_HAH_WITH_YEH_FINAL_FORM, 'codepoint, 0xFDC2);
15912put('ARABIC_LIGATURE_KAF_WITH_MEEM_WITH_MEEM_INITIAL_FORM, 'codepoint, 0xFDC3);
15913put('ARABIC_LIGATURE_AIN_WITH_JEEM_WITH_MEEM_INITIAL_FORM, 'codepoint, 0xFDC4);
15914put('ARABIC_LIGATURE_SAD_WITH_MEEM_WITH_MEEM_INITIAL_FORM, 'codepoint, 0xFDC5);
15915put('ARABIC_LIGATURE_SEEN_WITH_KHAH_WITH_YEH_FINAL_FORM, 'codepoint, 0xFDC6);
15916put('ARABIC_LIGATURE_NOON_WITH_JEEM_WITH_YEH_FINAL_FORM, 'codepoint, 0xFDC7);
15917put('ARABIC_LIGATURE_SALLA_USED_AS_KORANIC_STOP_SIGN_ISOLATED_FORM, 'codepoint, 0xFDF0);
15918put('ARABIC_LIGATURE_QALA_USED_AS_KORANIC_STOP_SIGN_ISOLATED_FORM, 'codepoint, 0xFDF1);
15919put('ARABIC_LIGATURE_ALLAH_ISOLATED_FORM, 'codepoint, 0xFDF2);
15920put('ARABIC_LIGATURE_AKBAR_ISOLATED_FORM, 'codepoint, 0xFDF3);
15921put('ARABIC_LIGATURE_MOHAMMAD_ISOLATED_FORM, 'codepoint, 0xFDF4);
15922put('ARABIC_LIGATURE_SALAM_ISOLATED_FORM, 'codepoint, 0xFDF5);
15923put('ARABIC_LIGATURE_RASOUL_ISOLATED_FORM, 'codepoint, 0xFDF6);
15924put('ARABIC_LIGATURE_ALAYHE_ISOLATED_FORM, 'codepoint, 0xFDF7);
15925put('ARABIC_LIGATURE_WASALLAM_ISOLATED_FORM, 'codepoint, 0xFDF8);
15926put('ARABIC_LIGATURE_SALLA_ISOLATED_FORM, 'codepoint, 0xFDF9);
15927put('ARABIC_LIGATURE_SALLALLAHOU_ALAYHE_WASALLAM, 'codepoint, 0xFDFA);
15928put('ARABIC_LIGATURE_JALLAJALALOUHOU, 'codepoint, 0xFDFB);
15929put('RIAL_SIGN, 'codepoint, 0xFDFC);
15930put('ARABIC_LIGATURE_BISMILLAH_AR_RAHMAN_AR_RAHEEM, 'codepoint, 0xFDFD);
15931put('VARIATION_SELECTOR_1, 'codepoint, 0xFE00);
15932put('VARIATION_SELECTOR_2, 'codepoint, 0xFE01);
15933put('VARIATION_SELECTOR_3, 'codepoint, 0xFE02);
15934put('VARIATION_SELECTOR_4, 'codepoint, 0xFE03);
15935put('VARIATION_SELECTOR_5, 'codepoint, 0xFE04);
15936put('VARIATION_SELECTOR_6, 'codepoint, 0xFE05);
15937put('VARIATION_SELECTOR_7, 'codepoint, 0xFE06);
15938put('VARIATION_SELECTOR_8, 'codepoint, 0xFE07);
15939put('VARIATION_SELECTOR_9, 'codepoint, 0xFE08);
15940put('VARIATION_SELECTOR_10, 'codepoint, 0xFE09);
15941put('VARIATION_SELECTOR_11, 'codepoint, 0xFE0A);
15942put('VARIATION_SELECTOR_12, 'codepoint, 0xFE0B);
15943put('VARIATION_SELECTOR_13, 'codepoint, 0xFE0C);
15944put('VARIATION_SELECTOR_14, 'codepoint, 0xFE0D);
15945put('VARIATION_SELECTOR_15, 'codepoint, 0xFE0E);
15946put('VARIATION_SELECTOR_16, 'codepoint, 0xFE0F);
15947put('PRESENTATION_FORM_FOR_VERTICAL_COMMA, 'codepoint, 0xFE10);
15948put('PRESENTATION_FORM_FOR_VERTICAL_IDEOGRAPHIC_COMMA, 'codepoint, 0xFE11);
15949put('PRESENTATION_FORM_FOR_VERTICAL_IDEOGRAPHIC_FULL_STOP, 'codepoint, 0xFE12);
15950put('PRESENTATION_FORM_FOR_VERTICAL_COLON, 'codepoint, 0xFE13);
15951put('PRESENTATION_FORM_FOR_VERTICAL_SEMICOLON, 'codepoint, 0xFE14);
15952put('PRESENTATION_FORM_FOR_VERTICAL_EXCLAMATION_MARK, 'codepoint, 0xFE15);
15953put('PRESENTATION_FORM_FOR_VERTICAL_QUESTION_MARK, 'codepoint, 0xFE16);
15954put('PRESENTATION_FORM_FOR_VERTICAL_LEFT_WHITE_LENTICULAR_BRACKET, 'codepoint, 0xFE17);
15955put('PRESENTATION_FORM_FOR_VERTICAL_RIGHT_WHITE_LENTICULAR_BRAKCET, 'codepoint, 0xFE18);
15956put('PRESENTATION_FORM_FOR_VERTICAL_HORIZONTAL_ELLIPSIS, 'codepoint, 0xFE19);
15957put('COMBINING_LIGATURE_LEFT_HALF, 'codepoint, 0xFE20);
15958put('COMBINING_LIGATURE_RIGHT_HALF, 'codepoint, 0xFE21);
15959put('COMBINING_DOUBLE_TILDE_LEFT_HALF, 'codepoint, 0xFE22);
15960put('COMBINING_DOUBLE_TILDE_RIGHT_HALF, 'codepoint, 0xFE23);
15961put('COMBINING_MACRON_LEFT_HALF, 'codepoint, 0xFE24);
15962put('COMBINING_MACRON_RIGHT_HALF, 'codepoint, 0xFE25);
15963put('COMBINING_CONJOINING_MACRON, 'codepoint, 0xFE26);
15964put('COMBINING_LIGATURE_LEFT_HALF_BELOW, 'codepoint, 0xFE27);
15965put('COMBINING_LIGATURE_RIGHT_HALF_BELOW, 'codepoint, 0xFE28);
15966put('COMBINING_TILDE_LEFT_HALF_BELOW, 'codepoint, 0xFE29);
15967put('COMBINING_TILDE_RIGHT_HALF_BELOW, 'codepoint, 0xFE2A);
15968put('COMBINING_MACRON_LEFT_HALF_BELOW, 'codepoint, 0xFE2B);
15969put('COMBINING_MACRON_RIGHT_HALF_BELOW, 'codepoint, 0xFE2C);
15970put('COMBINING_CONJOINING_MACRON_BELOW, 'codepoint, 0xFE2D);
15971put('PRESENTATION_FORM_FOR_VERTICAL_TWO_DOT_LEADER, 'codepoint, 0xFE30);
15972put('PRESENTATION_FORM_FOR_VERTICAL_EM_DASH, 'codepoint, 0xFE31);
15973put('PRESENTATION_FORM_FOR_VERTICAL_EN_DASH, 'codepoint, 0xFE32);
15974put('PRESENTATION_FORM_FOR_VERTICAL_LOW_LINE, 'codepoint, 0xFE33);
15975put('PRESENTATION_FORM_FOR_VERTICAL_WAVY_LOW_LINE, 'codepoint, 0xFE34);
15976put('PRESENTATION_FORM_FOR_VERTICAL_LEFT_PARENTHESIS, 'codepoint, 0xFE35);
15977put('PRESENTATION_FORM_FOR_VERTICAL_RIGHT_PARENTHESIS, 'codepoint, 0xFE36);
15978put('PRESENTATION_FORM_FOR_VERTICAL_LEFT_CURLY_BRACKET, 'codepoint, 0xFE37);
15979put('PRESENTATION_FORM_FOR_VERTICAL_RIGHT_CURLY_BRACKET, 'codepoint, 0xFE38);
15980put('PRESENTATION_FORM_FOR_VERTICAL_LEFT_TORTOISE_SHELL_BRACKET, 'codepoint, 0xFE39);
15981put('PRESENTATION_FORM_FOR_VERTICAL_RIGHT_TORTOISE_SHELL_BRACKET, 'codepoint, 0xFE3A);
15982put('PRESENTATION_FORM_FOR_VERTICAL_LEFT_BLACK_LENTICULAR_BRACKET, 'codepoint, 0xFE3B);
15983put('PRESENTATION_FORM_FOR_VERTICAL_RIGHT_BLACK_LENTICULAR_BRACKET, 'codepoint, 0xFE3C);
15984put('PRESENTATION_FORM_FOR_VERTICAL_LEFT_DOUBLE_ANGLE_BRACKET, 'codepoint, 0xFE3D);
15985put('PRESENTATION_FORM_FOR_VERTICAL_RIGHT_DOUBLE_ANGLE_BRACKET, 'codepoint, 0xFE3E);
15986put('PRESENTATION_FORM_FOR_VERTICAL_LEFT_ANGLE_BRACKET, 'codepoint, 0xFE3F);
15987put('PRESENTATION_FORM_FOR_VERTICAL_RIGHT_ANGLE_BRACKET, 'codepoint, 0xFE40);
15988put('PRESENTATION_FORM_FOR_VERTICAL_LEFT_CORNER_BRACKET, 'codepoint, 0xFE41);
15989put('PRESENTATION_FORM_FOR_VERTICAL_RIGHT_CORNER_BRACKET, 'codepoint, 0xFE42);
15990put('PRESENTATION_FORM_FOR_VERTICAL_LEFT_WHITE_CORNER_BRACKET, 'codepoint, 0xFE43);
15991put('PRESENTATION_FORM_FOR_VERTICAL_RIGHT_WHITE_CORNER_BRACKET, 'codepoint, 0xFE44);
15992put('SESAME_DOT, 'codepoint, 0xFE45);
15993put('WHITE_SESAME_DOT, 'codepoint, 0xFE46);
15994put('PRESENTATION_FORM_FOR_VERTICAL_LEFT_SQUARE_BRACKET, 'codepoint, 0xFE47);
15995put('PRESENTATION_FORM_FOR_VERTICAL_RIGHT_SQUARE_BRACKET, 'codepoint, 0xFE48);
15996put('DASHED_OVERLINE, 'codepoint, 0xFE49);
15997put('CENTRELINE_OVERLINE, 'codepoint, 0xFE4A);
15998put('WAVY_OVERLINE, 'codepoint, 0xFE4B);
15999put('DOUBLE_WAVY_OVERLINE, 'codepoint, 0xFE4C);
16000put('DASHED_LOW_LINE, 'codepoint, 0xFE4D);
16001put('CENTRELINE_LOW_LINE, 'codepoint, 0xFE4E);
16002put('WAVY_LOW_LINE, 'codepoint, 0xFE4F);
16003put('SMALL_COMMA, 'codepoint, 0xFE50);
16004put('SMALL_IDEOGRAPHIC_COMMA, 'codepoint, 0xFE51);
16005put('SMALL_FULL_STOP, 'codepoint, 0xFE52);
16006put('SMALL_SEMICOLON, 'codepoint, 0xFE54);
16007put('SMALL_COLON, 'codepoint, 0xFE55);
16008put('SMALL_QUESTION_MARK, 'codepoint, 0xFE56);
16009put('SMALL_EXCLAMATION_MARK, 'codepoint, 0xFE57);
16010put('SMALL_EM_DASH, 'codepoint, 0xFE58);
16011put('SMALL_LEFT_PARENTHESIS, 'codepoint, 0xFE59);
16012put('SMALL_RIGHT_PARENTHESIS, 'codepoint, 0xFE5A);
16013put('SMALL_LEFT_CURLY_BRACKET, 'codepoint, 0xFE5B);
16014put('SMALL_RIGHT_CURLY_BRACKET, 'codepoint, 0xFE5C);
16015put('SMALL_LEFT_TORTOISE_SHELL_BRACKET, 'codepoint, 0xFE5D);
16016put('SMALL_RIGHT_TORTOISE_SHELL_BRACKET, 'codepoint, 0xFE5E);
16017put('SMALL_NUMBER_SIGN, 'codepoint, 0xFE5F);
16018put('SMALL_AMPERSAND, 'codepoint, 0xFE60);
16019put('SMALL_ASTERISK, 'codepoint, 0xFE61);
16020put('SMALL_PLUS_SIGN, 'codepoint, 0xFE62);
16021put('SMALL_HYPHEN_MINUS, 'codepoint, 0xFE63);
16022put('SMALL_LESS_THAN_SIGN, 'codepoint, 0xFE64);
16023put('SMALL_GREATER_THAN_SIGN, 'codepoint, 0xFE65);
16024put('SMALL_EQUALS_SIGN, 'codepoint, 0xFE66);
16025put('SMALL_REVERSE_SOLIDUS, 'codepoint, 0xFE68);
16026put('SMALL_DOLLAR_SIGN, 'codepoint, 0xFE69);
16027put('SMALL_PERCENT_SIGN, 'codepoint, 0xFE6A);
16028put('SMALL_COMMERCIAL_AT, 'codepoint, 0xFE6B);
16029put('ARABIC_FATHATAN_ISOLATED_FORM, 'codepoint, 0xFE70);
16030put('ARABIC_TATWEEL_WITH_FATHATAN_ABOVE, 'codepoint, 0xFE71);
16031put('ARABIC_DAMMATAN_ISOLATED_FORM, 'codepoint, 0xFE72);
16032put('ARABIC_TAIL_FRAGMENT, 'codepoint, 0xFE73);
16033put('ARABIC_KASRATAN_ISOLATED_FORM, 'codepoint, 0xFE74);
16034put('ARABIC_FATHA_ISOLATED_FORM, 'codepoint, 0xFE76);
16035put('ARABIC_FATHA_MEDIAL_FORM, 'codepoint, 0xFE77);
16036put('ARABIC_DAMMA_ISOLATED_FORM, 'codepoint, 0xFE78);
16037put('ARABIC_DAMMA_MEDIAL_FORM, 'codepoint, 0xFE79);
16038put('ARABIC_KASRA_ISOLATED_FORM, 'codepoint, 0xFE7A);
16039put('ARABIC_KASRA_MEDIAL_FORM, 'codepoint, 0xFE7B);
16040put('ARABIC_SHADDA_ISOLATED_FORM, 'codepoint, 0xFE7C);
16041put('ARABIC_SHADDA_MEDIAL_FORM, 'codepoint, 0xFE7D);
16042put('ARABIC_SUKUN_ISOLATED_FORM, 'codepoint, 0xFE7E);
16043put('ARABIC_SUKUN_MEDIAL_FORM, 'codepoint, 0xFE7F);
16044put('ARABIC_LETTER_HAMZA_ISOLATED_FORM, 'codepoint, 0xFE80);
16045put('ARABIC_LETTER_ALEF_WITH_MADDA_ABOVE_ISOLATED_FORM, 'codepoint, 0xFE81);
16046put('ARABIC_LETTER_ALEF_WITH_MADDA_ABOVE_FINAL_FORM, 'codepoint, 0xFE82);
16047put('ARABIC_LETTER_ALEF_WITH_HAMZA_ABOVE_ISOLATED_FORM, 'codepoint, 0xFE83);
16048put('ARABIC_LETTER_ALEF_WITH_HAMZA_ABOVE_FINAL_FORM, 'codepoint, 0xFE84);
16049put('ARABIC_LETTER_WAW_WITH_HAMZA_ABOVE_ISOLATED_FORM, 'codepoint, 0xFE85);
16050put('ARABIC_LETTER_WAW_WITH_HAMZA_ABOVE_FINAL_FORM, 'codepoint, 0xFE86);
16051put('ARABIC_LETTER_ALEF_WITH_HAMZA_BELOW_ISOLATED_FORM, 'codepoint, 0xFE87);
16052put('ARABIC_LETTER_ALEF_WITH_HAMZA_BELOW_FINAL_FORM, 'codepoint, 0xFE88);
16053put('ARABIC_LETTER_YEH_WITH_HAMZA_ABOVE_ISOLATED_FORM, 'codepoint, 0xFE89);
16054put('ARABIC_LETTER_YEH_WITH_HAMZA_ABOVE_FINAL_FORM, 'codepoint, 0xFE8A);
16055put('ARABIC_LETTER_YEH_WITH_HAMZA_ABOVE_INITIAL_FORM, 'codepoint, 0xFE8B);
16056put('ARABIC_LETTER_YEH_WITH_HAMZA_ABOVE_MEDIAL_FORM, 'codepoint, 0xFE8C);
16057put('ARABIC_LETTER_ALEF_ISOLATED_FORM, 'codepoint, 0xFE8D);
16058put('ARABIC_LETTER_ALEF_FINAL_FORM, 'codepoint, 0xFE8E);
16059put('ARABIC_LETTER_BEH_ISOLATED_FORM, 'codepoint, 0xFE8F);
16060put('ARABIC_LETTER_BEH_FINAL_FORM, 'codepoint, 0xFE90);
16061put('ARABIC_LETTER_BEH_INITIAL_FORM, 'codepoint, 0xFE91);
16062put('ARABIC_LETTER_BEH_MEDIAL_FORM, 'codepoint, 0xFE92);
16063put('ARABIC_LETTER_TEH_MARBUTA_ISOLATED_FORM, 'codepoint, 0xFE93);
16064put('ARABIC_LETTER_TEH_MARBUTA_FINAL_FORM, 'codepoint, 0xFE94);
16065put('ARABIC_LETTER_TEH_ISOLATED_FORM, 'codepoint, 0xFE95);
16066put('ARABIC_LETTER_TEH_FINAL_FORM, 'codepoint, 0xFE96);
16067put('ARABIC_LETTER_TEH_INITIAL_FORM, 'codepoint, 0xFE97);
16068put('ARABIC_LETTER_TEH_MEDIAL_FORM, 'codepoint, 0xFE98);
16069put('ARABIC_LETTER_THEH_ISOLATED_FORM, 'codepoint, 0xFE99);
16070put('ARABIC_LETTER_THEH_FINAL_FORM, 'codepoint, 0xFE9A);
16071put('ARABIC_LETTER_THEH_INITIAL_FORM, 'codepoint, 0xFE9B);
16072put('ARABIC_LETTER_THEH_MEDIAL_FORM, 'codepoint, 0xFE9C);
16073put('ARABIC_LETTER_JEEM_ISOLATED_FORM, 'codepoint, 0xFE9D);
16074put('ARABIC_LETTER_JEEM_FINAL_FORM, 'codepoint, 0xFE9E);
16075put('ARABIC_LETTER_JEEM_INITIAL_FORM, 'codepoint, 0xFE9F);
16076put('ARABIC_LETTER_JEEM_MEDIAL_FORM, 'codepoint, 0xFEA0);
16077put('ARABIC_LETTER_HAH_ISOLATED_FORM, 'codepoint, 0xFEA1);
16078put('ARABIC_LETTER_HAH_FINAL_FORM, 'codepoint, 0xFEA2);
16079put('ARABIC_LETTER_HAH_INITIAL_FORM, 'codepoint, 0xFEA3);
16080put('ARABIC_LETTER_HAH_MEDIAL_FORM, 'codepoint, 0xFEA4);
16081put('ARABIC_LETTER_KHAH_ISOLATED_FORM, 'codepoint, 0xFEA5);
16082put('ARABIC_LETTER_KHAH_FINAL_FORM, 'codepoint, 0xFEA6);
16083put('ARABIC_LETTER_KHAH_INITIAL_FORM, 'codepoint, 0xFEA7);
16084put('ARABIC_LETTER_KHAH_MEDIAL_FORM, 'codepoint, 0xFEA8);
16085put('ARABIC_LETTER_DAL_ISOLATED_FORM, 'codepoint, 0xFEA9);
16086put('ARABIC_LETTER_DAL_FINAL_FORM, 'codepoint, 0xFEAA);
16087put('ARABIC_LETTER_THAL_ISOLATED_FORM, 'codepoint, 0xFEAB);
16088put('ARABIC_LETTER_THAL_FINAL_FORM, 'codepoint, 0xFEAC);
16089put('ARABIC_LETTER_REH_ISOLATED_FORM, 'codepoint, 0xFEAD);
16090put('ARABIC_LETTER_REH_FINAL_FORM, 'codepoint, 0xFEAE);
16091put('ARABIC_LETTER_ZAIN_ISOLATED_FORM, 'codepoint, 0xFEAF);
16092put('ARABIC_LETTER_ZAIN_FINAL_FORM, 'codepoint, 0xFEB0);
16093put('ARABIC_LETTER_SEEN_ISOLATED_FORM, 'codepoint, 0xFEB1);
16094put('ARABIC_LETTER_SEEN_FINAL_FORM, 'codepoint, 0xFEB2);
16095put('ARABIC_LETTER_SEEN_INITIAL_FORM, 'codepoint, 0xFEB3);
16096put('ARABIC_LETTER_SEEN_MEDIAL_FORM, 'codepoint, 0xFEB4);
16097put('ARABIC_LETTER_SHEEN_ISOLATED_FORM, 'codepoint, 0xFEB5);
16098put('ARABIC_LETTER_SHEEN_FINAL_FORM, 'codepoint, 0xFEB6);
16099put('ARABIC_LETTER_SHEEN_INITIAL_FORM, 'codepoint, 0xFEB7);
16100put('ARABIC_LETTER_SHEEN_MEDIAL_FORM, 'codepoint, 0xFEB8);
16101put('ARABIC_LETTER_SAD_ISOLATED_FORM, 'codepoint, 0xFEB9);
16102put('ARABIC_LETTER_SAD_FINAL_FORM, 'codepoint, 0xFEBA);
16103put('ARABIC_LETTER_SAD_INITIAL_FORM, 'codepoint, 0xFEBB);
16104put('ARABIC_LETTER_SAD_MEDIAL_FORM, 'codepoint, 0xFEBC);
16105put('ARABIC_LETTER_DAD_ISOLATED_FORM, 'codepoint, 0xFEBD);
16106put('ARABIC_LETTER_DAD_FINAL_FORM, 'codepoint, 0xFEBE);
16107put('ARABIC_LETTER_DAD_INITIAL_FORM, 'codepoint, 0xFEBF);
16108put('ARABIC_LETTER_DAD_MEDIAL_FORM, 'codepoint, 0xFEC0);
16109put('ARABIC_LETTER_TAH_ISOLATED_FORM, 'codepoint, 0xFEC1);
16110put('ARABIC_LETTER_TAH_FINAL_FORM, 'codepoint, 0xFEC2);
16111put('ARABIC_LETTER_TAH_INITIAL_FORM, 'codepoint, 0xFEC3);
16112put('ARABIC_LETTER_TAH_MEDIAL_FORM, 'codepoint, 0xFEC4);
16113put('ARABIC_LETTER_ZAH_ISOLATED_FORM, 'codepoint, 0xFEC5);
16114put('ARABIC_LETTER_ZAH_FINAL_FORM, 'codepoint, 0xFEC6);
16115put('ARABIC_LETTER_ZAH_INITIAL_FORM, 'codepoint, 0xFEC7);
16116put('ARABIC_LETTER_ZAH_MEDIAL_FORM, 'codepoint, 0xFEC8);
16117put('ARABIC_LETTER_AIN_ISOLATED_FORM, 'codepoint, 0xFEC9);
16118put('ARABIC_LETTER_AIN_FINAL_FORM, 'codepoint, 0xFECA);
16119put('ARABIC_LETTER_AIN_INITIAL_FORM, 'codepoint, 0xFECB);
16120put('ARABIC_LETTER_AIN_MEDIAL_FORM, 'codepoint, 0xFECC);
16121put('ARABIC_LETTER_GHAIN_ISOLATED_FORM, 'codepoint, 0xFECD);
16122put('ARABIC_LETTER_GHAIN_FINAL_FORM, 'codepoint, 0xFECE);
16123put('ARABIC_LETTER_GHAIN_INITIAL_FORM, 'codepoint, 0xFECF);
16124put('ARABIC_LETTER_GHAIN_MEDIAL_FORM, 'codepoint, 0xFED0);
16125put('ARABIC_LETTER_FEH_ISOLATED_FORM, 'codepoint, 0xFED1);
16126put('ARABIC_LETTER_FEH_FINAL_FORM, 'codepoint, 0xFED2);
16127put('ARABIC_LETTER_FEH_INITIAL_FORM, 'codepoint, 0xFED3);
16128put('ARABIC_LETTER_FEH_MEDIAL_FORM, 'codepoint, 0xFED4);
16129put('ARABIC_LETTER_QAF_ISOLATED_FORM, 'codepoint, 0xFED5);
16130put('ARABIC_LETTER_QAF_FINAL_FORM, 'codepoint, 0xFED6);
16131put('ARABIC_LETTER_QAF_INITIAL_FORM, 'codepoint, 0xFED7);
16132put('ARABIC_LETTER_QAF_MEDIAL_FORM, 'codepoint, 0xFED8);
16133put('ARABIC_LETTER_KAF_ISOLATED_FORM, 'codepoint, 0xFED9);
16134put('ARABIC_LETTER_KAF_FINAL_FORM, 'codepoint, 0xFEDA);
16135put('ARABIC_LETTER_KAF_INITIAL_FORM, 'codepoint, 0xFEDB);
16136put('ARABIC_LETTER_KAF_MEDIAL_FORM, 'codepoint, 0xFEDC);
16137put('ARABIC_LETTER_LAM_ISOLATED_FORM, 'codepoint, 0xFEDD);
16138put('ARABIC_LETTER_LAM_FINAL_FORM, 'codepoint, 0xFEDE);
16139put('ARABIC_LETTER_LAM_INITIAL_FORM, 'codepoint, 0xFEDF);
16140put('ARABIC_LETTER_LAM_MEDIAL_FORM, 'codepoint, 0xFEE0);
16141put('ARABIC_LETTER_MEEM_ISOLATED_FORM, 'codepoint, 0xFEE1);
16142put('ARABIC_LETTER_MEEM_FINAL_FORM, 'codepoint, 0xFEE2);
16143put('ARABIC_LETTER_MEEM_INITIAL_FORM, 'codepoint, 0xFEE3);
16144put('ARABIC_LETTER_MEEM_MEDIAL_FORM, 'codepoint, 0xFEE4);
16145put('ARABIC_LETTER_NOON_ISOLATED_FORM, 'codepoint, 0xFEE5);
16146put('ARABIC_LETTER_NOON_FINAL_FORM, 'codepoint, 0xFEE6);
16147put('ARABIC_LETTER_NOON_INITIAL_FORM, 'codepoint, 0xFEE7);
16148put('ARABIC_LETTER_NOON_MEDIAL_FORM, 'codepoint, 0xFEE8);
16149put('ARABIC_LETTER_HEH_ISOLATED_FORM, 'codepoint, 0xFEE9);
16150put('ARABIC_LETTER_HEH_FINAL_FORM, 'codepoint, 0xFEEA);
16151put('ARABIC_LETTER_HEH_INITIAL_FORM, 'codepoint, 0xFEEB);
16152put('ARABIC_LETTER_HEH_MEDIAL_FORM, 'codepoint, 0xFEEC);
16153put('ARABIC_LETTER_WAW_ISOLATED_FORM, 'codepoint, 0xFEED);
16154put('ARABIC_LETTER_WAW_FINAL_FORM, 'codepoint, 0xFEEE);
16155put('ARABIC_LETTER_ALEF_MAKSURA_ISOLATED_FORM, 'codepoint, 0xFEEF);
16156put('ARABIC_LETTER_ALEF_MAKSURA_FINAL_FORM, 'codepoint, 0xFEF0);
16157put('ARABIC_LETTER_YEH_ISOLATED_FORM, 'codepoint, 0xFEF1);
16158put('ARABIC_LETTER_YEH_FINAL_FORM, 'codepoint, 0xFEF2);
16159put('ARABIC_LETTER_YEH_INITIAL_FORM, 'codepoint, 0xFEF3);
16160put('ARABIC_LETTER_YEH_MEDIAL_FORM, 'codepoint, 0xFEF4);
16161put('ARABIC_LIGATURE_LAM_WITH_ALEF_WITH_MADDA_ABOVE_ISOLATED_FORM, 'codepoint, 0xFEF5);
16162put('ARABIC_LIGATURE_LAM_WITH_ALEF_WITH_MADDA_ABOVE_FINAL_FORM, 'codepoint, 0xFEF6);
16163put('ARABIC_LIGATURE_LAM_WITH_ALEF_WITH_HAMZA_ABOVE_ISOLATED_FORM, 'codepoint, 0xFEF7);
16164put('ARABIC_LIGATURE_LAM_WITH_ALEF_WITH_HAMZA_ABOVE_FINAL_FORM, 'codepoint, 0xFEF8);
16165put('ARABIC_LIGATURE_LAM_WITH_ALEF_WITH_HAMZA_BELOW_ISOLATED_FORM, 'codepoint, 0xFEF9);
16166put('ARABIC_LIGATURE_LAM_WITH_ALEF_WITH_HAMZA_BELOW_FINAL_FORM, 'codepoint, 0xFEFA);
16167put('ARABIC_LIGATURE_LAM_WITH_ALEF_ISOLATED_FORM, 'codepoint, 0xFEFB);
16168put('ARABIC_LIGATURE_LAM_WITH_ALEF_FINAL_FORM, 'codepoint, 0xFEFC);
16169put('ZERO_WIDTH_NO_BREAK_SPACE, 'codepoint, 0xFEFF);
16170put('FULLWIDTH_EXCLAMATION_MARK, 'codepoint, 0xFF01);
16171put('FULLWIDTH_QUOTATION_MARK, 'codepoint, 0xFF02);
16172put('FULLWIDTH_NUMBER_SIGN, 'codepoint, 0xFF03);
16173put('FULLWIDTH_DOLLAR_SIGN, 'codepoint, 0xFF04);
16174put('FULLWIDTH_PERCENT_SIGN, 'codepoint, 0xFF05);
16175put('FULLWIDTH_AMPERSAND, 'codepoint, 0xFF06);
16176put('FULLWIDTH_APOSTROPHE, 'codepoint, 0xFF07);
16177put('FULLWIDTH_LEFT_PARENTHESIS, 'codepoint, 0xFF08);
16178put('FULLWIDTH_RIGHT_PARENTHESIS, 'codepoint, 0xFF09);
16179put('FULLWIDTH_ASTERISK, 'codepoint, 0xFF0A);
16180put('FULLWIDTH_PLUS_SIGN, 'codepoint, 0xFF0B);
16181put('FULLWIDTH_COMMA, 'codepoint, 0xFF0C);
16182put('FULLWIDTH_HYPHEN_MINUS, 'codepoint, 0xFF0D);
16183put('FULLWIDTH_FULL_STOP, 'codepoint, 0xFF0E);
16184put('FULLWIDTH_SOLIDUS, 'codepoint, 0xFF0F);
16185put('FULLWIDTH_DIGIT_ZERO, 'codepoint, 0xFF10);
16186put('FULLWIDTH_DIGIT_ONE, 'codepoint, 0xFF11);
16187put('FULLWIDTH_DIGIT_TWO, 'codepoint, 0xFF12);
16188put('FULLWIDTH_DIGIT_THREE, 'codepoint, 0xFF13);
16189put('FULLWIDTH_DIGIT_FOUR, 'codepoint, 0xFF14);
16190put('FULLWIDTH_DIGIT_FIVE, 'codepoint, 0xFF15);
16191put('FULLWIDTH_DIGIT_SIX, 'codepoint, 0xFF16);
16192put('FULLWIDTH_DIGIT_SEVEN, 'codepoint, 0xFF17);
16193put('FULLWIDTH_DIGIT_EIGHT, 'codepoint, 0xFF18);
16194put('FULLWIDTH_DIGIT_NINE, 'codepoint, 0xFF19);
16195put('FULLWIDTH_COLON, 'codepoint, 0xFF1A);
16196put('FULLWIDTH_SEMICOLON, 'codepoint, 0xFF1B);
16197put('FULLWIDTH_LESS_THAN_SIGN, 'codepoint, 0xFF1C);
16198put('FULLWIDTH_EQUALS_SIGN, 'codepoint, 0xFF1D);
16199put('FULLWIDTH_GREATER_THAN_SIGN, 'codepoint, 0xFF1E);
16200put('FULLWIDTH_QUESTION_MARK, 'codepoint, 0xFF1F);
16201put('FULLWIDTH_COMMERCIAL_AT, 'codepoint, 0xFF20);
16202put('FULLWIDTH_LATIN_CAPITAL_LETTER_A, 'codepoint, 0xFF21);
16203put('FULLWIDTH_LATIN_CAPITAL_LETTER_B, 'codepoint, 0xFF22);
16204put('FULLWIDTH_LATIN_CAPITAL_LETTER_C, 'codepoint, 0xFF23);
16205put('FULLWIDTH_LATIN_CAPITAL_LETTER_D, 'codepoint, 0xFF24);
16206put('FULLWIDTH_LATIN_CAPITAL_LETTER_E, 'codepoint, 0xFF25);
16207put('FULLWIDTH_LATIN_CAPITAL_LETTER_F, 'codepoint, 0xFF26);
16208put('FULLWIDTH_LATIN_CAPITAL_LETTER_G, 'codepoint, 0xFF27);
16209put('FULLWIDTH_LATIN_CAPITAL_LETTER_H, 'codepoint, 0xFF28);
16210put('FULLWIDTH_LATIN_CAPITAL_LETTER_I, 'codepoint, 0xFF29);
16211put('FULLWIDTH_LATIN_CAPITAL_LETTER_J, 'codepoint, 0xFF2A);
16212put('FULLWIDTH_LATIN_CAPITAL_LETTER_K, 'codepoint, 0xFF2B);
16213put('FULLWIDTH_LATIN_CAPITAL_LETTER_L, 'codepoint, 0xFF2C);
16214put('FULLWIDTH_LATIN_CAPITAL_LETTER_M, 'codepoint, 0xFF2D);
16215put('FULLWIDTH_LATIN_CAPITAL_LETTER_N, 'codepoint, 0xFF2E);
16216put('FULLWIDTH_LATIN_CAPITAL_LETTER_O, 'codepoint, 0xFF2F);
16217put('FULLWIDTH_LATIN_CAPITAL_LETTER_P, 'codepoint, 0xFF30);
16218put('FULLWIDTH_LATIN_CAPITAL_LETTER_Q, 'codepoint, 0xFF31);
16219put('FULLWIDTH_LATIN_CAPITAL_LETTER_R, 'codepoint, 0xFF32);
16220put('FULLWIDTH_LATIN_CAPITAL_LETTER_S, 'codepoint, 0xFF33);
16221put('FULLWIDTH_LATIN_CAPITAL_LETTER_T, 'codepoint, 0xFF34);
16222put('FULLWIDTH_LATIN_CAPITAL_LETTER_U, 'codepoint, 0xFF35);
16223put('FULLWIDTH_LATIN_CAPITAL_LETTER_V, 'codepoint, 0xFF36);
16224put('FULLWIDTH_LATIN_CAPITAL_LETTER_W, 'codepoint, 0xFF37);
16225put('FULLWIDTH_LATIN_CAPITAL_LETTER_X, 'codepoint, 0xFF38);
16226put('FULLWIDTH_LATIN_CAPITAL_LETTER_Y, 'codepoint, 0xFF39);
16227put('FULLWIDTH_LATIN_CAPITAL_LETTER_Z, 'codepoint, 0xFF3A);
16228put('FULLWIDTH_LEFT_SQUARE_BRACKET, 'codepoint, 0xFF3B);
16229put('FULLWIDTH_REVERSE_SOLIDUS, 'codepoint, 0xFF3C);
16230put('FULLWIDTH_RIGHT_SQUARE_BRACKET, 'codepoint, 0xFF3D);
16231put('FULLWIDTH_CIRCUMFLEX_ACCENT, 'codepoint, 0xFF3E);
16232put('FULLWIDTH_LOW_LINE, 'codepoint, 0xFF3F);
16233put('FULLWIDTH_GRAVE_ACCENT, 'codepoint, 0xFF40);
16234put('FULLWIDTH_LATIN_SMALL_LETTER_A, 'codepoint, 0xFF41);
16235put('FULLWIDTH_LATIN_SMALL_LETTER_B, 'codepoint, 0xFF42);
16236put('FULLWIDTH_LATIN_SMALL_LETTER_C, 'codepoint, 0xFF43);
16237put('FULLWIDTH_LATIN_SMALL_LETTER_D, 'codepoint, 0xFF44);
16238put('FULLWIDTH_LATIN_SMALL_LETTER_E, 'codepoint, 0xFF45);
16239put('FULLWIDTH_LATIN_SMALL_LETTER_F, 'codepoint, 0xFF46);
16240put('FULLWIDTH_LATIN_SMALL_LETTER_G, 'codepoint, 0xFF47);
16241put('FULLWIDTH_LATIN_SMALL_LETTER_H, 'codepoint, 0xFF48);
16242put('FULLWIDTH_LATIN_SMALL_LETTER_I, 'codepoint, 0xFF49);
16243put('FULLWIDTH_LATIN_SMALL_LETTER_J, 'codepoint, 0xFF4A);
16244put('FULLWIDTH_LATIN_SMALL_LETTER_K, 'codepoint, 0xFF4B);
16245put('FULLWIDTH_LATIN_SMALL_LETTER_L, 'codepoint, 0xFF4C);
16246put('FULLWIDTH_LATIN_SMALL_LETTER_M, 'codepoint, 0xFF4D);
16247put('FULLWIDTH_LATIN_SMALL_LETTER_N, 'codepoint, 0xFF4E);
16248put('FULLWIDTH_LATIN_SMALL_LETTER_O, 'codepoint, 0xFF4F);
16249put('FULLWIDTH_LATIN_SMALL_LETTER_P, 'codepoint, 0xFF50);
16250put('FULLWIDTH_LATIN_SMALL_LETTER_Q, 'codepoint, 0xFF51);
16251put('FULLWIDTH_LATIN_SMALL_LETTER_R, 'codepoint, 0xFF52);
16252put('FULLWIDTH_LATIN_SMALL_LETTER_S, 'codepoint, 0xFF53);
16253put('FULLWIDTH_LATIN_SMALL_LETTER_T, 'codepoint, 0xFF54);
16254put('FULLWIDTH_LATIN_SMALL_LETTER_U, 'codepoint, 0xFF55);
16255put('FULLWIDTH_LATIN_SMALL_LETTER_V, 'codepoint, 0xFF56);
16256put('FULLWIDTH_LATIN_SMALL_LETTER_W, 'codepoint, 0xFF57);
16257put('FULLWIDTH_LATIN_SMALL_LETTER_X, 'codepoint, 0xFF58);
16258put('FULLWIDTH_LATIN_SMALL_LETTER_Y, 'codepoint, 0xFF59);
16259put('FULLWIDTH_LATIN_SMALL_LETTER_Z, 'codepoint, 0xFF5A);
16260put('FULLWIDTH_LEFT_CURLY_BRACKET, 'codepoint, 0xFF5B);
16261put('FULLWIDTH_VERTICAL_LINE, 'codepoint, 0xFF5C);
16262put('FULLWIDTH_RIGHT_CURLY_BRACKET, 'codepoint, 0xFF5D);
16263put('FULLWIDTH_TILDE, 'codepoint, 0xFF5E);
16264put('FULLWIDTH_LEFT_WHITE_PARENTHESIS, 'codepoint, 0xFF5F);
16265put('FULLWIDTH_RIGHT_WHITE_PARENTHESIS, 'codepoint, 0xFF60);
16266put('HALFWIDTH_IDEOGRAPHIC_FULL_STOP, 'codepoint, 0xFF61);
16267put('HALFWIDTH_LEFT_CORNER_BRACKET, 'codepoint, 0xFF62);
16268put('HALFWIDTH_RIGHT_CORNER_BRACKET, 'codepoint, 0xFF63);
16269put('HALFWIDTH_IDEOGRAPHIC_COMMA, 'codepoint, 0xFF64);
16270put('HALFWIDTH_KATAKANA_MIDDLE_DOT, 'codepoint, 0xFF65);
16271put('HALFWIDTH_KATAKANA_LETTER_WO, 'codepoint, 0xFF66);
16272put('HALFWIDTH_KATAKANA_LETTER_SMALL_A, 'codepoint, 0xFF67);
16273put('HALFWIDTH_KATAKANA_LETTER_SMALL_I, 'codepoint, 0xFF68);
16274put('HALFWIDTH_KATAKANA_LETTER_SMALL_U, 'codepoint, 0xFF69);
16275put('HALFWIDTH_KATAKANA_LETTER_SMALL_E, 'codepoint, 0xFF6A);
16276put('HALFWIDTH_KATAKANA_LETTER_SMALL_O, 'codepoint, 0xFF6B);
16277put('HALFWIDTH_KATAKANA_LETTER_SMALL_YA, 'codepoint, 0xFF6C);
16278put('HALFWIDTH_KATAKANA_LETTER_SMALL_YU, 'codepoint, 0xFF6D);
16279put('HALFWIDTH_KATAKANA_LETTER_SMALL_YO, 'codepoint, 0xFF6E);
16280put('HALFWIDTH_KATAKANA_LETTER_SMALL_TU, 'codepoint, 0xFF6F);
16281put('HALFWIDTH_KATAKANA_HIRAGANA_PROLONGED_SOUND_MARK, 'codepoint, 0xFF70);
16282put('HALFWIDTH_KATAKANA_LETTER_A, 'codepoint, 0xFF71);
16283put('HALFWIDTH_KATAKANA_LETTER_I, 'codepoint, 0xFF72);
16284put('HALFWIDTH_KATAKANA_LETTER_U, 'codepoint, 0xFF73);
16285put('HALFWIDTH_KATAKANA_LETTER_E, 'codepoint, 0xFF74);
16286put('HALFWIDTH_KATAKANA_LETTER_O, 'codepoint, 0xFF75);
16287put('HALFWIDTH_KATAKANA_LETTER_KA, 'codepoint, 0xFF76);
16288put('HALFWIDTH_KATAKANA_LETTER_KI, 'codepoint, 0xFF77);
16289put('HALFWIDTH_KATAKANA_LETTER_KU, 'codepoint, 0xFF78);
16290put('HALFWIDTH_KATAKANA_LETTER_KE, 'codepoint, 0xFF79);
16291put('HALFWIDTH_KATAKANA_LETTER_KO, 'codepoint, 0xFF7A);
16292put('HALFWIDTH_KATAKANA_LETTER_SA, 'codepoint, 0xFF7B);
16293put('HALFWIDTH_KATAKANA_LETTER_SI, 'codepoint, 0xFF7C);
16294put('HALFWIDTH_KATAKANA_LETTER_SU, 'codepoint, 0xFF7D);
16295put('HALFWIDTH_KATAKANA_LETTER_SE, 'codepoint, 0xFF7E);
16296put('HALFWIDTH_KATAKANA_LETTER_SO, 'codepoint, 0xFF7F);
16297put('HALFWIDTH_KATAKANA_LETTER_TA, 'codepoint, 0xFF80);
16298put('HALFWIDTH_KATAKANA_LETTER_TI, 'codepoint, 0xFF81);
16299put('HALFWIDTH_KATAKANA_LETTER_TU, 'codepoint, 0xFF82);
16300put('HALFWIDTH_KATAKANA_LETTER_TE, 'codepoint, 0xFF83);
16301put('HALFWIDTH_KATAKANA_LETTER_TO, 'codepoint, 0xFF84);
16302put('HALFWIDTH_KATAKANA_LETTER_NA, 'codepoint, 0xFF85);
16303put('HALFWIDTH_KATAKANA_LETTER_NI, 'codepoint, 0xFF86);
16304put('HALFWIDTH_KATAKANA_LETTER_NU, 'codepoint, 0xFF87);
16305put('HALFWIDTH_KATAKANA_LETTER_NE, 'codepoint, 0xFF88);
16306put('HALFWIDTH_KATAKANA_LETTER_NO, 'codepoint, 0xFF89);
16307put('HALFWIDTH_KATAKANA_LETTER_HA, 'codepoint, 0xFF8A);
16308put('HALFWIDTH_KATAKANA_LETTER_HI, 'codepoint, 0xFF8B);
16309put('HALFWIDTH_KATAKANA_LETTER_HU, 'codepoint, 0xFF8C);
16310put('HALFWIDTH_KATAKANA_LETTER_HE, 'codepoint, 0xFF8D);
16311put('HALFWIDTH_KATAKANA_LETTER_HO, 'codepoint, 0xFF8E);
16312put('HALFWIDTH_KATAKANA_LETTER_MA, 'codepoint, 0xFF8F);
16313put('HALFWIDTH_KATAKANA_LETTER_MI, 'codepoint, 0xFF90);
16314put('HALFWIDTH_KATAKANA_LETTER_MU, 'codepoint, 0xFF91);
16315put('HALFWIDTH_KATAKANA_LETTER_ME, 'codepoint, 0xFF92);
16316put('HALFWIDTH_KATAKANA_LETTER_MO, 'codepoint, 0xFF93);
16317put('HALFWIDTH_KATAKANA_LETTER_YA, 'codepoint, 0xFF94);
16318put('HALFWIDTH_KATAKANA_LETTER_YU, 'codepoint, 0xFF95);
16319put('HALFWIDTH_KATAKANA_LETTER_YO, 'codepoint, 0xFF96);
16320put('HALFWIDTH_KATAKANA_LETTER_RA, 'codepoint, 0xFF97);
16321put('HALFWIDTH_KATAKANA_LETTER_RI, 'codepoint, 0xFF98);
16322put('HALFWIDTH_KATAKANA_LETTER_RU, 'codepoint, 0xFF99);
16323put('HALFWIDTH_KATAKANA_LETTER_RE, 'codepoint, 0xFF9A);
16324put('HALFWIDTH_KATAKANA_LETTER_RO, 'codepoint, 0xFF9B);
16325put('HALFWIDTH_KATAKANA_LETTER_WA, 'codepoint, 0xFF9C);
16326put('HALFWIDTH_KATAKANA_LETTER_N, 'codepoint, 0xFF9D);
16327put('HALFWIDTH_KATAKANA_VOICED_SOUND_MARK, 'codepoint, 0xFF9E);
16328put('HALFWIDTH_KATAKANA_SEMI_VOICED_SOUND_MARK, 'codepoint, 0xFF9F);
16329put('HALFWIDTH_HANGUL_FILLER, 'codepoint, 0xFFA0);
16330put('HALFWIDTH_HANGUL_LETTER_KIYEOK, 'codepoint, 0xFFA1);
16331put('HALFWIDTH_HANGUL_LETTER_SSANGKIYEOK, 'codepoint, 0xFFA2);
16332put('HALFWIDTH_HANGUL_LETTER_KIYEOK_SIOS, 'codepoint, 0xFFA3);
16333put('HALFWIDTH_HANGUL_LETTER_NIEUN, 'codepoint, 0xFFA4);
16334put('HALFWIDTH_HANGUL_LETTER_NIEUN_CIEUC, 'codepoint, 0xFFA5);
16335put('HALFWIDTH_HANGUL_LETTER_NIEUN_HIEUH, 'codepoint, 0xFFA6);
16336put('HALFWIDTH_HANGUL_LETTER_TIKEUT, 'codepoint, 0xFFA7);
16337put('HALFWIDTH_HANGUL_LETTER_SSANGTIKEUT, 'codepoint, 0xFFA8);
16338put('HALFWIDTH_HANGUL_LETTER_RIEUL, 'codepoint, 0xFFA9);
16339put('HALFWIDTH_HANGUL_LETTER_RIEUL_KIYEOK, 'codepoint, 0xFFAA);
16340put('HALFWIDTH_HANGUL_LETTER_RIEUL_MIEUM, 'codepoint, 0xFFAB);
16341put('HALFWIDTH_HANGUL_LETTER_RIEUL_PIEUP, 'codepoint, 0xFFAC);
16342put('HALFWIDTH_HANGUL_LETTER_RIEUL_SIOS, 'codepoint, 0xFFAD);
16343put('HALFWIDTH_HANGUL_LETTER_RIEUL_THIEUTH, 'codepoint, 0xFFAE);
16344put('HALFWIDTH_HANGUL_LETTER_RIEUL_PHIEUPH, 'codepoint, 0xFFAF);
16345put('HALFWIDTH_HANGUL_LETTER_RIEUL_HIEUH, 'codepoint, 0xFFB0);
16346put('HALFWIDTH_HANGUL_LETTER_MIEUM, 'codepoint, 0xFFB1);
16347put('HALFWIDTH_HANGUL_LETTER_PIEUP, 'codepoint, 0xFFB2);
16348put('HALFWIDTH_HANGUL_LETTER_SSANGPIEUP, 'codepoint, 0xFFB3);
16349put('HALFWIDTH_HANGUL_LETTER_PIEUP_SIOS, 'codepoint, 0xFFB4);
16350put('HALFWIDTH_HANGUL_LETTER_SIOS, 'codepoint, 0xFFB5);
16351put('HALFWIDTH_HANGUL_LETTER_SSANGSIOS, 'codepoint, 0xFFB6);
16352put('HALFWIDTH_HANGUL_LETTER_IEUNG, 'codepoint, 0xFFB7);
16353put('HALFWIDTH_HANGUL_LETTER_CIEUC, 'codepoint, 0xFFB8);
16354put('HALFWIDTH_HANGUL_LETTER_SSANGCIEUC, 'codepoint, 0xFFB9);
16355put('HALFWIDTH_HANGUL_LETTER_CHIEUCH, 'codepoint, 0xFFBA);
16356put('HALFWIDTH_HANGUL_LETTER_KHIEUKH, 'codepoint, 0xFFBB);
16357put('HALFWIDTH_HANGUL_LETTER_THIEUTH, 'codepoint, 0xFFBC);
16358put('HALFWIDTH_HANGUL_LETTER_PHIEUPH, 'codepoint, 0xFFBD);
16359put('HALFWIDTH_HANGUL_LETTER_HIEUH, 'codepoint, 0xFFBE);
16360put('HALFWIDTH_HANGUL_LETTER_A, 'codepoint, 0xFFC2);
16361put('HALFWIDTH_HANGUL_LETTER_AE, 'codepoint, 0xFFC3);
16362put('HALFWIDTH_HANGUL_LETTER_YA, 'codepoint, 0xFFC4);
16363put('HALFWIDTH_HANGUL_LETTER_YAE, 'codepoint, 0xFFC5);
16364put('HALFWIDTH_HANGUL_LETTER_EO, 'codepoint, 0xFFC6);
16365put('HALFWIDTH_HANGUL_LETTER_E, 'codepoint, 0xFFC7);
16366put('HALFWIDTH_HANGUL_LETTER_YEO, 'codepoint, 0xFFCA);
16367put('HALFWIDTH_HANGUL_LETTER_YE, 'codepoint, 0xFFCB);
16368put('HALFWIDTH_HANGUL_LETTER_O, 'codepoint, 0xFFCC);
16369put('HALFWIDTH_HANGUL_LETTER_WA, 'codepoint, 0xFFCD);
16370put('HALFWIDTH_HANGUL_LETTER_WAE, 'codepoint, 0xFFCE);
16371put('HALFWIDTH_HANGUL_LETTER_OE, 'codepoint, 0xFFCF);
16372put('HALFWIDTH_HANGUL_LETTER_YO, 'codepoint, 0xFFD2);
16373put('HALFWIDTH_HANGUL_LETTER_U, 'codepoint, 0xFFD3);
16374put('HALFWIDTH_HANGUL_LETTER_WEO, 'codepoint, 0xFFD4);
16375put('HALFWIDTH_HANGUL_LETTER_WE, 'codepoint, 0xFFD5);
16376put('HALFWIDTH_HANGUL_LETTER_WI, 'codepoint, 0xFFD6);
16377put('HALFWIDTH_HANGUL_LETTER_YU, 'codepoint, 0xFFD7);
16378put('HALFWIDTH_HANGUL_LETTER_EU, 'codepoint, 0xFFDA);
16379put('HALFWIDTH_HANGUL_LETTER_YI, 'codepoint, 0xFFDB);
16380put('HALFWIDTH_HANGUL_LETTER_I, 'codepoint, 0xFFDC);
16381put('FULLWIDTH_CENT_SIGN, 'codepoint, 0xFFE0);
16382put('FULLWIDTH_POUND_SIGN, 'codepoint, 0xFFE1);
16383put('FULLWIDTH_NOT_SIGN, 'codepoint, 0xFFE2);
16384put('FULLWIDTH_MACRON, 'codepoint, 0xFFE3);
16385put('FULLWIDTH_BROKEN_BAR, 'codepoint, 0xFFE4);
16386put('FULLWIDTH_YEN_SIGN, 'codepoint, 0xFFE5);
16387put('FULLWIDTH_WON_SIGN, 'codepoint, 0xFFE6);
16388put('HALFWIDTH_FORMS_LIGHT_VERTICAL, 'codepoint, 0xFFE8);
16389put('HALFWIDTH_LEFTWARDS_ARROW, 'codepoint, 0xFFE9);
16390put('HALFWIDTH_UPWARDS_ARROW, 'codepoint, 0xFFEA);
16391put('HALFWIDTH_RIGHTWARDS_ARROW, 'codepoint, 0xFFEB);
16392put('HALFWIDTH_DOWNWARDS_ARROW, 'codepoint, 0xFFEC);
16393put('HALFWIDTH_BLACK_SQUARE, 'codepoint, 0xFFED);
16394put('HALFWIDTH_WHITE_CIRCLE, 'codepoint, 0xFFEE);
16395put('INTERLINEAR_ANNOTATION_ANCHOR, 'codepoint, 0xFFF9);
16396put('INTERLINEAR_ANNOTATION_SEPARATOR, 'codepoint, 0xFFFA);
16397put('INTERLINEAR_ANNOTATION_TERMINATOR, 'codepoint, 0xFFFB);
16398put('OBJECT_REPLACEMENT_CHARACTER, 'codepoint, 0xFFFC);
16399put('REPLACEMENT_CHARACTER, 'codepoint, 0xFFFD);
16400put('LINEAR_B_SYLLABLE_B008_A, 'codepoint, 0x10000);
16401put('LINEAR_B_SYLLABLE_B038_E, 'codepoint, 0x10001);
16402put('LINEAR_B_SYLLABLE_B028_I, 'codepoint, 0x10002);
16403put('LINEAR_B_SYLLABLE_B061_O, 'codepoint, 0x10003);
16404put('LINEAR_B_SYLLABLE_B010_U, 'codepoint, 0x10004);
16405put('LINEAR_B_SYLLABLE_B001_DA, 'codepoint, 0x10005);
16406put('LINEAR_B_SYLLABLE_B045_DE, 'codepoint, 0x10006);
16407put('LINEAR_B_SYLLABLE_B007_DI, 'codepoint, 0x10007);
16408put('LINEAR_B_SYLLABLE_B014_DO, 'codepoint, 0x10008);
16409put('LINEAR_B_SYLLABLE_B051_DU, 'codepoint, 0x10009);
16410put('LINEAR_B_SYLLABLE_B057_JA, 'codepoint, 0x1000A);
16411put('LINEAR_B_SYLLABLE_B046_JE, 'codepoint, 0x1000B);
16412put('LINEAR_B_SYLLABLE_B036_JO, 'codepoint, 0x1000D);
16413put('LINEAR_B_SYLLABLE_B065_JU, 'codepoint, 0x1000E);
16414put('LINEAR_B_SYLLABLE_B077_KA, 'codepoint, 0x1000F);
16415put('LINEAR_B_SYLLABLE_B044_KE, 'codepoint, 0x10010);
16416put('LINEAR_B_SYLLABLE_B067_KI, 'codepoint, 0x10011);
16417put('LINEAR_B_SYLLABLE_B070_KO, 'codepoint, 0x10012);
16418put('LINEAR_B_SYLLABLE_B081_KU, 'codepoint, 0x10013);
16419put('LINEAR_B_SYLLABLE_B080_MA, 'codepoint, 0x10014);
16420put('LINEAR_B_SYLLABLE_B013_ME, 'codepoint, 0x10015);
16421put('LINEAR_B_SYLLABLE_B073_MI, 'codepoint, 0x10016);
16422put('LINEAR_B_SYLLABLE_B015_MO, 'codepoint, 0x10017);
16423put('LINEAR_B_SYLLABLE_B023_MU, 'codepoint, 0x10018);
16424put('LINEAR_B_SYLLABLE_B006_NA, 'codepoint, 0x10019);
16425put('LINEAR_B_SYLLABLE_B024_NE, 'codepoint, 0x1001A);
16426put('LINEAR_B_SYLLABLE_B030_NI, 'codepoint, 0x1001B);
16427put('LINEAR_B_SYLLABLE_B052_NO, 'codepoint, 0x1001C);
16428put('LINEAR_B_SYLLABLE_B055_NU, 'codepoint, 0x1001D);
16429put('LINEAR_B_SYLLABLE_B003_PA, 'codepoint, 0x1001E);
16430put('LINEAR_B_SYLLABLE_B072_PE, 'codepoint, 0x1001F);
16431put('LINEAR_B_SYLLABLE_B039_PI, 'codepoint, 0x10020);
16432put('LINEAR_B_SYLLABLE_B011_PO, 'codepoint, 0x10021);
16433put('LINEAR_B_SYLLABLE_B050_PU, 'codepoint, 0x10022);
16434put('LINEAR_B_SYLLABLE_B016_QA, 'codepoint, 0x10023);
16435put('LINEAR_B_SYLLABLE_B078_QE, 'codepoint, 0x10024);
16436put('LINEAR_B_SYLLABLE_B021_QI, 'codepoint, 0x10025);
16437put('LINEAR_B_SYLLABLE_B032_QO, 'codepoint, 0x10026);
16438put('LINEAR_B_SYLLABLE_B060_RA, 'codepoint, 0x10028);
16439put('LINEAR_B_SYLLABLE_B027_RE, 'codepoint, 0x10029);
16440put('LINEAR_B_SYLLABLE_B053_RI, 'codepoint, 0x1002A);
16441put('LINEAR_B_SYLLABLE_B002_RO, 'codepoint, 0x1002B);
16442put('LINEAR_B_SYLLABLE_B026_RU, 'codepoint, 0x1002C);
16443put('LINEAR_B_SYLLABLE_B031_SA, 'codepoint, 0x1002D);
16444put('LINEAR_B_SYLLABLE_B009_SE, 'codepoint, 0x1002E);
16445put('LINEAR_B_SYLLABLE_B041_SI, 'codepoint, 0x1002F);
16446put('LINEAR_B_SYLLABLE_B012_SO, 'codepoint, 0x10030);
16447put('LINEAR_B_SYLLABLE_B058_SU, 'codepoint, 0x10031);
16448put('LINEAR_B_SYLLABLE_B059_TA, 'codepoint, 0x10032);
16449put('LINEAR_B_SYLLABLE_B004_TE, 'codepoint, 0x10033);
16450put('LINEAR_B_SYLLABLE_B037_TI, 'codepoint, 0x10034);
16451put('LINEAR_B_SYLLABLE_B005_TO, 'codepoint, 0x10035);
16452put('LINEAR_B_SYLLABLE_B069_TU, 'codepoint, 0x10036);
16453put('LINEAR_B_SYLLABLE_B054_WA, 'codepoint, 0x10037);
16454put('LINEAR_B_SYLLABLE_B075_WE, 'codepoint, 0x10038);
16455put('LINEAR_B_SYLLABLE_B040_WI, 'codepoint, 0x10039);
16456put('LINEAR_B_SYLLABLE_B042_WO, 'codepoint, 0x1003A);
16457put('LINEAR_B_SYLLABLE_B017_ZA, 'codepoint, 0x1003C);
16458put('LINEAR_B_SYLLABLE_B074_ZE, 'codepoint, 0x1003D);
16459put('LINEAR_B_SYLLABLE_B020_ZO, 'codepoint, 0x1003F);
16460put('LINEAR_B_SYLLABLE_B025_A2, 'codepoint, 0x10040);
16461put('LINEAR_B_SYLLABLE_B043_A3, 'codepoint, 0x10041);
16462put('LINEAR_B_SYLLABLE_B085_AU, 'codepoint, 0x10042);
16463put('LINEAR_B_SYLLABLE_B071_DWE, 'codepoint, 0x10043);
16464put('LINEAR_B_SYLLABLE_B090_DWO, 'codepoint, 0x10044);
16465put('LINEAR_B_SYLLABLE_B048_NWA, 'codepoint, 0x10045);
16466put('LINEAR_B_SYLLABLE_B029_PU2, 'codepoint, 0x10046);
16467put('LINEAR_B_SYLLABLE_B062_PTE, 'codepoint, 0x10047);
16468put('LINEAR_B_SYLLABLE_B076_RA2, 'codepoint, 0x10048);
16469put('LINEAR_B_SYLLABLE_B033_RA3, 'codepoint, 0x10049);
16470put('LINEAR_B_SYLLABLE_B068_RO2, 'codepoint, 0x1004A);
16471put('LINEAR_B_SYLLABLE_B066_TA2, 'codepoint, 0x1004B);
16472put('LINEAR_B_SYLLABLE_B087_TWE, 'codepoint, 0x1004C);
16473put('LINEAR_B_SYLLABLE_B091_TWO, 'codepoint, 0x1004D);
16474put('LINEAR_B_SYMBOL_B018, 'codepoint, 0x10050);
16475put('LINEAR_B_SYMBOL_B019, 'codepoint, 0x10051);
16476put('LINEAR_B_SYMBOL_B022, 'codepoint, 0x10052);
16477put('LINEAR_B_SYMBOL_B034, 'codepoint, 0x10053);
16478put('LINEAR_B_SYMBOL_B047, 'codepoint, 0x10054);
16479put('LINEAR_B_SYMBOL_B049, 'codepoint, 0x10055);
16480put('LINEAR_B_SYMBOL_B056, 'codepoint, 0x10056);
16481put('LINEAR_B_SYMBOL_B063, 'codepoint, 0x10057);
16482put('LINEAR_B_SYMBOL_B064, 'codepoint, 0x10058);
16483put('LINEAR_B_SYMBOL_B079, 'codepoint, 0x10059);
16484put('LINEAR_B_SYMBOL_B082, 'codepoint, 0x1005A);
16485put('LINEAR_B_SYMBOL_B083, 'codepoint, 0x1005B);
16486put('LINEAR_B_SYMBOL_B086, 'codepoint, 0x1005C);
16487put('LINEAR_B_SYMBOL_B089, 'codepoint, 0x1005D);
16488put('LINEAR_B_IDEOGRAM_B100_MAN, 'codepoint, 0x10080);
16489put('LINEAR_B_IDEOGRAM_B102_WOMAN, 'codepoint, 0x10081);
16490put('LINEAR_B_IDEOGRAM_B104_DEER, 'codepoint, 0x10082);
16491put('LINEAR_B_IDEOGRAM_B105_EQUID, 'codepoint, 0x10083);
16492put('LINEAR_B_IDEOGRAM_B105F_MARE, 'codepoint, 0x10084);
16493put('LINEAR_B_IDEOGRAM_B105M_STALLION, 'codepoint, 0x10085);
16494put('LINEAR_B_IDEOGRAM_B106F_EWE, 'codepoint, 0x10086);
16495put('LINEAR_B_IDEOGRAM_B106M_RAM, 'codepoint, 0x10087);
16496put('LINEAR_B_IDEOGRAM_B107F_SHE_GOAT, 'codepoint, 0x10088);
16497put('LINEAR_B_IDEOGRAM_B107M_HE_GOAT, 'codepoint, 0x10089);
16498put('LINEAR_B_IDEOGRAM_B108F_SOW, 'codepoint, 0x1008A);
16499put('LINEAR_B_IDEOGRAM_B108M_BOAR, 'codepoint, 0x1008B);
16500put('LINEAR_B_IDEOGRAM_B109F_COW, 'codepoint, 0x1008C);
16501put('LINEAR_B_IDEOGRAM_B109M_BULL, 'codepoint, 0x1008D);
16502put('LINEAR_B_IDEOGRAM_B120_WHEAT, 'codepoint, 0x1008E);
16503put('LINEAR_B_IDEOGRAM_B121_BARLEY, 'codepoint, 0x1008F);
16504put('LINEAR_B_IDEOGRAM_B122_OLIVE, 'codepoint, 0x10090);
16505put('LINEAR_B_IDEOGRAM_B123_SPICE, 'codepoint, 0x10091);
16506put('LINEAR_B_IDEOGRAM_B125_CYPERUS, 'codepoint, 0x10092);
16507put('LINEAR_B_MONOGRAM_B127_KAPO, 'codepoint, 0x10093);
16508put('LINEAR_B_MONOGRAM_B128_KANAKO, 'codepoint, 0x10094);
16509put('LINEAR_B_IDEOGRAM_B130_OIL, 'codepoint, 0x10095);
16510put('LINEAR_B_IDEOGRAM_B131_WINE, 'codepoint, 0x10096);
16511put('LINEAR_B_IDEOGRAM_B132, 'codepoint, 0x10097);
16512put('LINEAR_B_MONOGRAM_B133_AREPA, 'codepoint, 0x10098);
16513put('LINEAR_B_MONOGRAM_B135_MERI, 'codepoint, 0x10099);
16514put('LINEAR_B_IDEOGRAM_B140_BRONZE, 'codepoint, 0x1009A);
16515put('LINEAR_B_IDEOGRAM_B141_GOLD, 'codepoint, 0x1009B);
16516put('LINEAR_B_IDEOGRAM_B142, 'codepoint, 0x1009C);
16517put('LINEAR_B_IDEOGRAM_B145_WOOL, 'codepoint, 0x1009D);
16518put('LINEAR_B_IDEOGRAM_B146, 'codepoint, 0x1009E);
16519put('LINEAR_B_IDEOGRAM_B150, 'codepoint, 0x1009F);
16520put('LINEAR_B_IDEOGRAM_B151_HORN, 'codepoint, 0x100A0);
16521put('LINEAR_B_IDEOGRAM_B152, 'codepoint, 0x100A1);
16522put('LINEAR_B_IDEOGRAM_B153, 'codepoint, 0x100A2);
16523put('LINEAR_B_IDEOGRAM_B154, 'codepoint, 0x100A3);
16524put('LINEAR_B_MONOGRAM_B156_TURO2, 'codepoint, 0x100A4);
16525put('LINEAR_B_IDEOGRAM_B157, 'codepoint, 0x100A5);
16526put('LINEAR_B_IDEOGRAM_B158, 'codepoint, 0x100A6);
16527put('LINEAR_B_IDEOGRAM_B159_CLOTH, 'codepoint, 0x100A7);
16528put('LINEAR_B_IDEOGRAM_B160, 'codepoint, 0x100A8);
16529put('LINEAR_B_IDEOGRAM_B161, 'codepoint, 0x100A9);
16530put('LINEAR_B_IDEOGRAM_B162_GARMENT, 'codepoint, 0x100AA);
16531put('LINEAR_B_IDEOGRAM_B163_ARMOUR, 'codepoint, 0x100AB);
16532put('LINEAR_B_IDEOGRAM_B164, 'codepoint, 0x100AC);
16533put('LINEAR_B_IDEOGRAM_B165, 'codepoint, 0x100AD);
16534put('LINEAR_B_IDEOGRAM_B166, 'codepoint, 0x100AE);
16535put('LINEAR_B_IDEOGRAM_B167, 'codepoint, 0x100AF);
16536put('LINEAR_B_IDEOGRAM_B168, 'codepoint, 0x100B0);
16537put('LINEAR_B_IDEOGRAM_B169, 'codepoint, 0x100B1);
16538put('LINEAR_B_IDEOGRAM_B170, 'codepoint, 0x100B2);
16539put('LINEAR_B_IDEOGRAM_B171, 'codepoint, 0x100B3);
16540put('LINEAR_B_IDEOGRAM_B172, 'codepoint, 0x100B4);
16541put('LINEAR_B_IDEOGRAM_B173_MONTH, 'codepoint, 0x100B5);
16542put('LINEAR_B_IDEOGRAM_B174, 'codepoint, 0x100B6);
16543put('LINEAR_B_IDEOGRAM_B176_TREE, 'codepoint, 0x100B7);
16544put('LINEAR_B_IDEOGRAM_B177, 'codepoint, 0x100B8);
16545put('LINEAR_B_IDEOGRAM_B178, 'codepoint, 0x100B9);
16546put('LINEAR_B_IDEOGRAM_B179, 'codepoint, 0x100BA);
16547put('LINEAR_B_IDEOGRAM_B180, 'codepoint, 0x100BB);
16548put('LINEAR_B_IDEOGRAM_B181, 'codepoint, 0x100BC);
16549put('LINEAR_B_IDEOGRAM_B182, 'codepoint, 0x100BD);
16550put('LINEAR_B_IDEOGRAM_B183, 'codepoint, 0x100BE);
16551put('LINEAR_B_IDEOGRAM_B184, 'codepoint, 0x100BF);
16552put('LINEAR_B_IDEOGRAM_B185, 'codepoint, 0x100C0);
16553put('LINEAR_B_IDEOGRAM_B189, 'codepoint, 0x100C1);
16554put('LINEAR_B_IDEOGRAM_B190, 'codepoint, 0x100C2);
16555put('LINEAR_B_IDEOGRAM_B191_HELMET, 'codepoint, 0x100C3);
16556put('LINEAR_B_IDEOGRAM_B220_FOOTSTOOL, 'codepoint, 0x100C4);
16557put('LINEAR_B_IDEOGRAM_B225_BATHTUB, 'codepoint, 0x100C5);
16558put('LINEAR_B_IDEOGRAM_B230_SPEAR, 'codepoint, 0x100C6);
16559put('LINEAR_B_IDEOGRAM_B231_ARROW, 'codepoint, 0x100C7);
16560put('LINEAR_B_IDEOGRAM_B232, 'codepoint, 0x100C8);
16561put('LINEAR_B_IDEOGRAM_B233_SWORD, 'codepoint, 0x100C9);
16562put('LINEAR_B_IDEOGRAM_B234, 'codepoint, 0x100CA);
16563put('LINEAR_B_IDEOGRAM_B236, 'codepoint, 0x100CB);
16564put('LINEAR_B_IDEOGRAM_B240_WHEELED_CHARIOT, 'codepoint, 0x100CC);
16565put('LINEAR_B_IDEOGRAM_B241_CHARIOT, 'codepoint, 0x100CD);
16566put('LINEAR_B_IDEOGRAM_B242_CHARIOT_FRAME, 'codepoint, 0x100CE);
16567put('LINEAR_B_IDEOGRAM_B243_WHEEL, 'codepoint, 0x100CF);
16568put('LINEAR_B_IDEOGRAM_B245, 'codepoint, 0x100D0);
16569put('LINEAR_B_IDEOGRAM_B246, 'codepoint, 0x100D1);
16570put('LINEAR_B_MONOGRAM_B247_DIPTE, 'codepoint, 0x100D2);
16571put('LINEAR_B_IDEOGRAM_B248, 'codepoint, 0x100D3);
16572put('LINEAR_B_IDEOGRAM_B249, 'codepoint, 0x100D4);
16573put('LINEAR_B_IDEOGRAM_B251, 'codepoint, 0x100D5);
16574put('LINEAR_B_IDEOGRAM_B252, 'codepoint, 0x100D6);
16575put('LINEAR_B_IDEOGRAM_B253, 'codepoint, 0x100D7);
16576put('LINEAR_B_IDEOGRAM_B254_DART, 'codepoint, 0x100D8);
16577put('LINEAR_B_IDEOGRAM_B255, 'codepoint, 0x100D9);
16578put('LINEAR_B_IDEOGRAM_B256, 'codepoint, 0x100DA);
16579put('LINEAR_B_IDEOGRAM_B257, 'codepoint, 0x100DB);
16580put('LINEAR_B_IDEOGRAM_B258, 'codepoint, 0x100DC);
16581put('LINEAR_B_IDEOGRAM_B259, 'codepoint, 0x100DD);
16582put('LINEAR_B_IDEOGRAM_VESSEL_B155, 'codepoint, 0x100DE);
16583put('LINEAR_B_IDEOGRAM_VESSEL_B200, 'codepoint, 0x100DF);
16584put('LINEAR_B_IDEOGRAM_VESSEL_B201, 'codepoint, 0x100E0);
16585put('LINEAR_B_IDEOGRAM_VESSEL_B202, 'codepoint, 0x100E1);
16586put('LINEAR_B_IDEOGRAM_VESSEL_B203, 'codepoint, 0x100E2);
16587put('LINEAR_B_IDEOGRAM_VESSEL_B204, 'codepoint, 0x100E3);
16588put('LINEAR_B_IDEOGRAM_VESSEL_B205, 'codepoint, 0x100E4);
16589put('LINEAR_B_IDEOGRAM_VESSEL_B206, 'codepoint, 0x100E5);
16590put('LINEAR_B_IDEOGRAM_VESSEL_B207, 'codepoint, 0x100E6);
16591put('LINEAR_B_IDEOGRAM_VESSEL_B208, 'codepoint, 0x100E7);
16592put('LINEAR_B_IDEOGRAM_VESSEL_B209, 'codepoint, 0x100E8);
16593put('LINEAR_B_IDEOGRAM_VESSEL_B210, 'codepoint, 0x100E9);
16594put('LINEAR_B_IDEOGRAM_VESSEL_B211, 'codepoint, 0x100EA);
16595put('LINEAR_B_IDEOGRAM_VESSEL_B212, 'codepoint, 0x100EB);
16596put('LINEAR_B_IDEOGRAM_VESSEL_B213, 'codepoint, 0x100EC);
16597put('LINEAR_B_IDEOGRAM_VESSEL_B214, 'codepoint, 0x100ED);
16598put('LINEAR_B_IDEOGRAM_VESSEL_B215, 'codepoint, 0x100EE);
16599put('LINEAR_B_IDEOGRAM_VESSEL_B216, 'codepoint, 0x100EF);
16600put('LINEAR_B_IDEOGRAM_VESSEL_B217, 'codepoint, 0x100F0);
16601put('LINEAR_B_IDEOGRAM_VESSEL_B218, 'codepoint, 0x100F1);
16602put('LINEAR_B_IDEOGRAM_VESSEL_B219, 'codepoint, 0x100F2);
16603put('LINEAR_B_IDEOGRAM_VESSEL_B221, 'codepoint, 0x100F3);
16604put('LINEAR_B_IDEOGRAM_VESSEL_B222, 'codepoint, 0x100F4);
16605put('LINEAR_B_IDEOGRAM_VESSEL_B226, 'codepoint, 0x100F5);
16606put('LINEAR_B_IDEOGRAM_VESSEL_B227, 'codepoint, 0x100F6);
16607put('LINEAR_B_IDEOGRAM_VESSEL_B228, 'codepoint, 0x100F7);
16608put('LINEAR_B_IDEOGRAM_VESSEL_B229, 'codepoint, 0x100F8);
16609put('LINEAR_B_IDEOGRAM_VESSEL_B250, 'codepoint, 0x100F9);
16610put('LINEAR_B_IDEOGRAM_VESSEL_B305, 'codepoint, 0x100FA);
16611put('AEGEAN_WORD_SEPARATOR_LINE, 'codepoint, 0x10100);
16612put('AEGEAN_WORD_SEPARATOR_DOT, 'codepoint, 0x10101);
16613put('AEGEAN_CHECK_MARK, 'codepoint, 0x10102);
16614put('AEGEAN_NUMBER_ONE, 'codepoint, 0x10107);
16615put('AEGEAN_NUMBER_TWO, 'codepoint, 0x10108);
16616put('AEGEAN_NUMBER_THREE, 'codepoint, 0x10109);
16617put('AEGEAN_NUMBER_FOUR, 'codepoint, 0x1010A);
16618put('AEGEAN_NUMBER_FIVE, 'codepoint, 0x1010B);
16619put('AEGEAN_NUMBER_SIX, 'codepoint, 0x1010C);
16620put('AEGEAN_NUMBER_SEVEN, 'codepoint, 0x1010D);
16621put('AEGEAN_NUMBER_EIGHT, 'codepoint, 0x1010E);
16622put('AEGEAN_NUMBER_NINE, 'codepoint, 0x1010F);
16623put('AEGEAN_NUMBER_TEN, 'codepoint, 0x10110);
16624put('AEGEAN_NUMBER_TWENTY, 'codepoint, 0x10111);
16625put('AEGEAN_NUMBER_THIRTY, 'codepoint, 0x10112);
16626put('AEGEAN_NUMBER_FORTY, 'codepoint, 0x10113);
16627put('AEGEAN_NUMBER_FIFTY, 'codepoint, 0x10114);
16628put('AEGEAN_NUMBER_SIXTY, 'codepoint, 0x10115);
16629put('AEGEAN_NUMBER_SEVENTY, 'codepoint, 0x10116);
16630put('AEGEAN_NUMBER_EIGHTY, 'codepoint, 0x10117);
16631put('AEGEAN_NUMBER_NINETY, 'codepoint, 0x10118);
16632put('AEGEAN_NUMBER_ONE_HUNDRED, 'codepoint, 0x10119);
16633put('AEGEAN_NUMBER_TWO_HUNDRED, 'codepoint, 0x1011A);
16634put('AEGEAN_NUMBER_THREE_HUNDRED, 'codepoint, 0x1011B);
16635put('AEGEAN_NUMBER_FOUR_HUNDRED, 'codepoint, 0x1011C);
16636put('AEGEAN_NUMBER_FIVE_HUNDRED, 'codepoint, 0x1011D);
16637put('AEGEAN_NUMBER_SIX_HUNDRED, 'codepoint, 0x1011E);
16638put('AEGEAN_NUMBER_SEVEN_HUNDRED, 'codepoint, 0x1011F);
16639put('AEGEAN_NUMBER_EIGHT_HUNDRED, 'codepoint, 0x10120);
16640put('AEGEAN_NUMBER_NINE_HUNDRED, 'codepoint, 0x10121);
16641put('AEGEAN_NUMBER_ONE_THOUSAND, 'codepoint, 0x10122);
16642put('AEGEAN_NUMBER_TWO_THOUSAND, 'codepoint, 0x10123);
16643put('AEGEAN_NUMBER_THREE_THOUSAND, 'codepoint, 0x10124);
16644put('AEGEAN_NUMBER_FOUR_THOUSAND, 'codepoint, 0x10125);
16645put('AEGEAN_NUMBER_FIVE_THOUSAND, 'codepoint, 0x10126);
16646put('AEGEAN_NUMBER_SIX_THOUSAND, 'codepoint, 0x10127);
16647put('AEGEAN_NUMBER_SEVEN_THOUSAND, 'codepoint, 0x10128);
16648put('AEGEAN_NUMBER_EIGHT_THOUSAND, 'codepoint, 0x10129);
16649put('AEGEAN_NUMBER_NINE_THOUSAND, 'codepoint, 0x1012A);
16650put('AEGEAN_NUMBER_TEN_THOUSAND, 'codepoint, 0x1012B);
16651put('AEGEAN_NUMBER_TWENTY_THOUSAND, 'codepoint, 0x1012C);
16652put('AEGEAN_NUMBER_THIRTY_THOUSAND, 'codepoint, 0x1012D);
16653put('AEGEAN_NUMBER_FORTY_THOUSAND, 'codepoint, 0x1012E);
16654put('AEGEAN_NUMBER_FIFTY_THOUSAND, 'codepoint, 0x1012F);
16655put('AEGEAN_NUMBER_SIXTY_THOUSAND, 'codepoint, 0x10130);
16656put('AEGEAN_NUMBER_SEVENTY_THOUSAND, 'codepoint, 0x10131);
16657put('AEGEAN_NUMBER_EIGHTY_THOUSAND, 'codepoint, 0x10132);
16658put('AEGEAN_NUMBER_NINETY_THOUSAND, 'codepoint, 0x10133);
16659put('AEGEAN_WEIGHT_BASE_UNIT, 'codepoint, 0x10137);
16660put('AEGEAN_WEIGHT_FIRST_SUBUNIT, 'codepoint, 0x10138);
16661put('AEGEAN_WEIGHT_SECOND_SUBUNIT, 'codepoint, 0x10139);
16662put('AEGEAN_WEIGHT_THIRD_SUBUNIT, 'codepoint, 0x1013A);
16663put('AEGEAN_WEIGHT_FOURTH_SUBUNIT, 'codepoint, 0x1013B);
16664put('AEGEAN_DRY_MEASURE_FIRST_SUBUNIT, 'codepoint, 0x1013C);
16665put('AEGEAN_LIQUID_MEASURE_FIRST_SUBUNIT, 'codepoint, 0x1013D);
16666put('AEGEAN_MEASURE_SECOND_SUBUNIT, 'codepoint, 0x1013E);
16667put('AEGEAN_MEASURE_THIRD_SUBUNIT, 'codepoint, 0x1013F);
16668put('GREEK_ACROPHONIC_ATTIC_ONE_QUARTER, 'codepoint, 0x10140);
16669put('GREEK_ACROPHONIC_ATTIC_ONE_HALF, 'codepoint, 0x10141);
16670put('GREEK_ACROPHONIC_ATTIC_ONE_DRACHMA, 'codepoint, 0x10142);
16671put('GREEK_ACROPHONIC_ATTIC_FIVE, 'codepoint, 0x10143);
16672put('GREEK_ACROPHONIC_ATTIC_FIFTY, 'codepoint, 0x10144);
16673put('GREEK_ACROPHONIC_ATTIC_FIVE_HUNDRED, 'codepoint, 0x10145);
16674put('GREEK_ACROPHONIC_ATTIC_FIVE_THOUSAND, 'codepoint, 0x10146);
16675put('GREEK_ACROPHONIC_ATTIC_FIFTY_THOUSAND, 'codepoint, 0x10147);
16676put('GREEK_ACROPHONIC_ATTIC_FIVE_TALENTS, 'codepoint, 0x10148);
16677put('GREEK_ACROPHONIC_ATTIC_TEN_TALENTS, 'codepoint, 0x10149);
16678put('GREEK_ACROPHONIC_ATTIC_FIFTY_TALENTS, 'codepoint, 0x1014A);
16679put('GREEK_ACROPHONIC_ATTIC_ONE_HUNDRED_TALENTS, 'codepoint, 0x1014B);
16680put('GREEK_ACROPHONIC_ATTIC_FIVE_HUNDRED_TALENTS, 'codepoint, 0x1014C);
16681put('GREEK_ACROPHONIC_ATTIC_ONE_THOUSAND_TALENTS, 'codepoint, 0x1014D);
16682put('GREEK_ACROPHONIC_ATTIC_FIVE_THOUSAND_TALENTS, 'codepoint, 0x1014E);
16683put('GREEK_ACROPHONIC_ATTIC_FIVE_STATERS, 'codepoint, 0x1014F);
16684put('GREEK_ACROPHONIC_ATTIC_TEN_STATERS, 'codepoint, 0x10150);
16685put('GREEK_ACROPHONIC_ATTIC_FIFTY_STATERS, 'codepoint, 0x10151);
16686put('GREEK_ACROPHONIC_ATTIC_ONE_HUNDRED_STATERS, 'codepoint, 0x10152);
16687put('GREEK_ACROPHONIC_ATTIC_FIVE_HUNDRED_STATERS, 'codepoint, 0x10153);
16688put('GREEK_ACROPHONIC_ATTIC_ONE_THOUSAND_STATERS, 'codepoint, 0x10154);
16689put('GREEK_ACROPHONIC_ATTIC_TEN_THOUSAND_STATERS, 'codepoint, 0x10155);
16690put('GREEK_ACROPHONIC_ATTIC_FIFTY_THOUSAND_STATERS, 'codepoint, 0x10156);
16691put('GREEK_ACROPHONIC_ATTIC_TEN_MNAS, 'codepoint, 0x10157);
16692put('GREEK_ACROPHONIC_HERAEUM_ONE_PLETHRON, 'codepoint, 0x10158);
16693put('GREEK_ACROPHONIC_THESPIAN_ONE, 'codepoint, 0x10159);
16694put('GREEK_ACROPHONIC_HERMIONIAN_ONE, 'codepoint, 0x1015A);
16695put('GREEK_ACROPHONIC_EPIDAUREAN_TWO, 'codepoint, 0x1015B);
16696put('GREEK_ACROPHONIC_THESPIAN_TWO, 'codepoint, 0x1015C);
16697put('GREEK_ACROPHONIC_CYRENAIC_TWO_DRACHMAS, 'codepoint, 0x1015D);
16698put('GREEK_ACROPHONIC_EPIDAUREAN_TWO_DRACHMAS, 'codepoint, 0x1015E);
16699put('GREEK_ACROPHONIC_TROEZENIAN_FIVE, 'codepoint, 0x1015F);
16700put('GREEK_ACROPHONIC_TROEZENIAN_TEN, 'codepoint, 0x10160);
16701put('GREEK_ACROPHONIC_TROEZENIAN_TEN_ALTERNATE_FORM, 'codepoint, 0x10161);
16702put('GREEK_ACROPHONIC_HERMIONIAN_TEN, 'codepoint, 0x10162);
16703put('GREEK_ACROPHONIC_MESSENIAN_TEN, 'codepoint, 0x10163);
16704put('GREEK_ACROPHONIC_THESPIAN_TEN, 'codepoint, 0x10164);
16705put('GREEK_ACROPHONIC_THESPIAN_THIRTY, 'codepoint, 0x10165);
16706put('GREEK_ACROPHONIC_TROEZENIAN_FIFTY, 'codepoint, 0x10166);
16707put('GREEK_ACROPHONIC_TROEZENIAN_FIFTY_ALTERNATE_FORM, 'codepoint, 0x10167);
16708put('GREEK_ACROPHONIC_HERMIONIAN_FIFTY, 'codepoint, 0x10168);
16709put('GREEK_ACROPHONIC_THESPIAN_FIFTY, 'codepoint, 0x10169);
16710put('GREEK_ACROPHONIC_THESPIAN_ONE_HUNDRED, 'codepoint, 0x1016A);
16711put('GREEK_ACROPHONIC_THESPIAN_THREE_HUNDRED, 'codepoint, 0x1016B);
16712put('GREEK_ACROPHONIC_EPIDAUREAN_FIVE_HUNDRED, 'codepoint, 0x1016C);
16713put('GREEK_ACROPHONIC_TROEZENIAN_FIVE_HUNDRED, 'codepoint, 0x1016D);
16714put('GREEK_ACROPHONIC_THESPIAN_FIVE_HUNDRED, 'codepoint, 0x1016E);
16715put('GREEK_ACROPHONIC_CARYSTIAN_FIVE_HUNDRED, 'codepoint, 0x1016F);
16716put('GREEK_ACROPHONIC_NAXIAN_FIVE_HUNDRED, 'codepoint, 0x10170);
16717put('GREEK_ACROPHONIC_THESPIAN_ONE_THOUSAND, 'codepoint, 0x10171);
16718put('GREEK_ACROPHONIC_THESPIAN_FIVE_THOUSAND, 'codepoint, 0x10172);
16719put('GREEK_ACROPHONIC_DELPHIC_FIVE_MNAS, 'codepoint, 0x10173);
16720put('GREEK_ACROPHONIC_STRATIAN_FIFTY_MNAS, 'codepoint, 0x10174);
16721put('GREEK_ONE_HALF_SIGN, 'codepoint, 0x10175);
16722put('GREEK_ONE_HALF_SIGN_ALTERNATE_FORM, 'codepoint, 0x10176);
16723put('GREEK_TWO_THIRDS_SIGN, 'codepoint, 0x10177);
16724put('GREEK_THREE_QUARTERS_SIGN, 'codepoint, 0x10178);
16725put('GREEK_YEAR_SIGN, 'codepoint, 0x10179);
16726put('GREEK_TALENT_SIGN, 'codepoint, 0x1017A);
16727put('GREEK_DRACHMA_SIGN, 'codepoint, 0x1017B);
16728put('GREEK_OBOL_SIGN, 'codepoint, 0x1017C);
16729put('GREEK_TWO_OBOLS_SIGN, 'codepoint, 0x1017D);
16730put('GREEK_THREE_OBOLS_SIGN, 'codepoint, 0x1017E);
16731put('GREEK_FOUR_OBOLS_SIGN, 'codepoint, 0x1017F);
16732put('GREEK_FIVE_OBOLS_SIGN, 'codepoint, 0x10180);
16733put('GREEK_METRETES_SIGN, 'codepoint, 0x10181);
16734put('GREEK_KYATHOS_BASE_SIGN, 'codepoint, 0x10182);
16735put('GREEK_LITRA_SIGN, 'codepoint, 0x10183);
16736put('GREEK_OUNKIA_SIGN, 'codepoint, 0x10184);
16737put('GREEK_XESTES_SIGN, 'codepoint, 0x10185);
16738put('GREEK_ARTABE_SIGN, 'codepoint, 0x10186);
16739put('GREEK_AROURA_SIGN, 'codepoint, 0x10187);
16740put('GREEK_GRAMMA_SIGN, 'codepoint, 0x10188);
16741put('GREEK_TRYBLION_BASE_SIGN, 'codepoint, 0x10189);
16742put('GREEK_ZERO_SIGN, 'codepoint, 0x1018A);
16743put('GREEK_ONE_QUARTER_SIGN, 'codepoint, 0x1018B);
16744put('GREEK_SINUSOID_SIGN, 'codepoint, 0x1018C);
16745put('ROMAN_SEXTANS_SIGN, 'codepoint, 0x10190);
16746put('ROMAN_UNCIA_SIGN, 'codepoint, 0x10191);
16747put('ROMAN_SEMUNCIA_SIGN, 'codepoint, 0x10192);
16748put('ROMAN_SEXTULA_SIGN, 'codepoint, 0x10193);
16749put('ROMAN_DIMIDIA_SEXTULA_SIGN, 'codepoint, 0x10194);
16750put('ROMAN_SILIQUA_SIGN, 'codepoint, 0x10195);
16751put('ROMAN_DENARIUS_SIGN, 'codepoint, 0x10196);
16752put('ROMAN_QUINARIUS_SIGN, 'codepoint, 0x10197);
16753put('ROMAN_SESTERTIUS_SIGN, 'codepoint, 0x10198);
16754put('ROMAN_DUPONDIUS_SIGN, 'codepoint, 0x10199);
16755put('ROMAN_AS_SIGN, 'codepoint, 0x1019A);
16756put('ROMAN_CENTURIAL_SIGN, 'codepoint, 0x1019B);
16757put('GREEK_SYMBOL_TAU_RHO, 'codepoint, 0x101A0);
16758put('PHAISTOS_DISC_SIGN_PEDESTRIAN, 'codepoint, 0x101D0);
16759put('PHAISTOS_DISC_SIGN_PLUMED_HEAD, 'codepoint, 0x101D1);
16760put('PHAISTOS_DISC_SIGN_TATTOOED_HEAD, 'codepoint, 0x101D2);
16761put('PHAISTOS_DISC_SIGN_CAPTIVE, 'codepoint, 0x101D3);
16762put('PHAISTOS_DISC_SIGN_CHILD, 'codepoint, 0x101D4);
16763put('PHAISTOS_DISC_SIGN_WOMAN, 'codepoint, 0x101D5);
16764put('PHAISTOS_DISC_SIGN_HELMET, 'codepoint, 0x101D6);
16765put('PHAISTOS_DISC_SIGN_GAUNTLET, 'codepoint, 0x101D7);
16766put('PHAISTOS_DISC_SIGN_TIARA, 'codepoint, 0x101D8);
16767put('PHAISTOS_DISC_SIGN_ARROW, 'codepoint, 0x101D9);
16768put('PHAISTOS_DISC_SIGN_BOW, 'codepoint, 0x101DA);
16769put('PHAISTOS_DISC_SIGN_SHIELD, 'codepoint, 0x101DB);
16770put('PHAISTOS_DISC_SIGN_CLUB, 'codepoint, 0x101DC);
16771put('PHAISTOS_DISC_SIGN_MANACLES, 'codepoint, 0x101DD);
16772put('PHAISTOS_DISC_SIGN_MATTOCK, 'codepoint, 0x101DE);
16773put('PHAISTOS_DISC_SIGN_SAW, 'codepoint, 0x101DF);
16774put('PHAISTOS_DISC_SIGN_LID, 'codepoint, 0x101E0);
16775put('PHAISTOS_DISC_SIGN_BOOMERANG, 'codepoint, 0x101E1);
16776put('PHAISTOS_DISC_SIGN_CARPENTRY_PLANE, 'codepoint, 0x101E2);
16777put('PHAISTOS_DISC_SIGN_DOLIUM, 'codepoint, 0x101E3);
16778put('PHAISTOS_DISC_SIGN_COMB, 'codepoint, 0x101E4);
16779put('PHAISTOS_DISC_SIGN_SLING, 'codepoint, 0x101E5);
16780put('PHAISTOS_DISC_SIGN_COLUMN, 'codepoint, 0x101E6);
16781put('PHAISTOS_DISC_SIGN_BEEHIVE, 'codepoint, 0x101E7);
16782put('PHAISTOS_DISC_SIGN_SHIP, 'codepoint, 0x101E8);
16783put('PHAISTOS_DISC_SIGN_HORN, 'codepoint, 0x101E9);
16784put('PHAISTOS_DISC_SIGN_HIDE, 'codepoint, 0x101EA);
16785put('PHAISTOS_DISC_SIGN_BULLS_LEG, 'codepoint, 0x101EB);
16786put('PHAISTOS_DISC_SIGN_CAT, 'codepoint, 0x101EC);
16787put('PHAISTOS_DISC_SIGN_RAM, 'codepoint, 0x101ED);
16788put('PHAISTOS_DISC_SIGN_EAGLE, 'codepoint, 0x101EE);
16789put('PHAISTOS_DISC_SIGN_DOVE, 'codepoint, 0x101EF);
16790put('PHAISTOS_DISC_SIGN_TUNNY, 'codepoint, 0x101F0);
16791put('PHAISTOS_DISC_SIGN_BEE, 'codepoint, 0x101F1);
16792put('PHAISTOS_DISC_SIGN_PLANE_TREE, 'codepoint, 0x101F2);
16793put('PHAISTOS_DISC_SIGN_VINE, 'codepoint, 0x101F3);
16794put('PHAISTOS_DISC_SIGN_PAPYRUS, 'codepoint, 0x101F4);
16795put('PHAISTOS_DISC_SIGN_ROSETTE, 'codepoint, 0x101F5);
16796put('PHAISTOS_DISC_SIGN_LILY, 'codepoint, 0x101F6);
16797put('PHAISTOS_DISC_SIGN_OX_BACK, 'codepoint, 0x101F7);
16798put('PHAISTOS_DISC_SIGN_FLUTE, 'codepoint, 0x101F8);
16799put('PHAISTOS_DISC_SIGN_GRATER, 'codepoint, 0x101F9);
16800put('PHAISTOS_DISC_SIGN_STRAINER, 'codepoint, 0x101FA);
16801put('PHAISTOS_DISC_SIGN_SMALL_AXE, 'codepoint, 0x101FB);
16802put('PHAISTOS_DISC_SIGN_WAVY_BAND, 'codepoint, 0x101FC);
16803put('PHAISTOS_DISC_SIGN_COMBINING_OBLIQUE_STROKE, 'codepoint, 0x101FD);
16804put('LYCIAN_LETTER_A, 'codepoint, 0x10280);
16805put('LYCIAN_LETTER_E, 'codepoint, 0x10281);
16806put('LYCIAN_LETTER_B, 'codepoint, 0x10282);
16807put('LYCIAN_LETTER_BH, 'codepoint, 0x10283);
16808put('LYCIAN_LETTER_G, 'codepoint, 0x10284);
16809put('LYCIAN_LETTER_D, 'codepoint, 0x10285);
16810put('LYCIAN_LETTER_I, 'codepoint, 0x10286);
16811put('LYCIAN_LETTER_W, 'codepoint, 0x10287);
16812put('LYCIAN_LETTER_Z, 'codepoint, 0x10288);
16813put('LYCIAN_LETTER_TH, 'codepoint, 0x10289);
16814put('LYCIAN_LETTER_J, 'codepoint, 0x1028A);
16815put('LYCIAN_LETTER_K, 'codepoint, 0x1028B);
16816put('LYCIAN_LETTER_Q, 'codepoint, 0x1028C);
16817put('LYCIAN_LETTER_L, 'codepoint, 0x1028D);
16818put('LYCIAN_LETTER_M, 'codepoint, 0x1028E);
16819put('LYCIAN_LETTER_N, 'codepoint, 0x1028F);
16820put('LYCIAN_LETTER_MM, 'codepoint, 0x10290);
16821put('LYCIAN_LETTER_NN, 'codepoint, 0x10291);
16822put('LYCIAN_LETTER_U, 'codepoint, 0x10292);
16823put('LYCIAN_LETTER_P, 'codepoint, 0x10293);
16824put('LYCIAN_LETTER_KK, 'codepoint, 0x10294);
16825put('LYCIAN_LETTER_R, 'codepoint, 0x10295);
16826put('LYCIAN_LETTER_S, 'codepoint, 0x10296);
16827put('LYCIAN_LETTER_T, 'codepoint, 0x10297);
16828put('LYCIAN_LETTER_TT, 'codepoint, 0x10298);
16829put('LYCIAN_LETTER_AN, 'codepoint, 0x10299);
16830put('LYCIAN_LETTER_EN, 'codepoint, 0x1029A);
16831put('LYCIAN_LETTER_H, 'codepoint, 0x1029B);
16832put('LYCIAN_LETTER_X, 'codepoint, 0x1029C);
16833put('CARIAN_LETTER_A, 'codepoint, 0x102A0);
16834put('CARIAN_LETTER_P2, 'codepoint, 0x102A1);
16835put('CARIAN_LETTER_D, 'codepoint, 0x102A2);
16836put('CARIAN_LETTER_L, 'codepoint, 0x102A3);
16837put('CARIAN_LETTER_UUU, 'codepoint, 0x102A4);
16838put('CARIAN_LETTER_R, 'codepoint, 0x102A5);
16839put('CARIAN_LETTER_LD, 'codepoint, 0x102A6);
16840put('CARIAN_LETTER_A2, 'codepoint, 0x102A7);
16841put('CARIAN_LETTER_Q, 'codepoint, 0x102A8);
16842put('CARIAN_LETTER_B, 'codepoint, 0x102A9);
16843put('CARIAN_LETTER_M, 'codepoint, 0x102AA);
16844put('CARIAN_LETTER_O, 'codepoint, 0x102AB);
16845put('CARIAN_LETTER_D2, 'codepoint, 0x102AC);
16846put('CARIAN_LETTER_T, 'codepoint, 0x102AD);
16847put('CARIAN_LETTER_SH, 'codepoint, 0x102AE);
16848put('CARIAN_LETTER_SH2, 'codepoint, 0x102AF);
16849put('CARIAN_LETTER_S, 'codepoint, 0x102B0);
16850put('CARIAN_LETTER_C_18, 'codepoint, 0x102B1);
16851put('CARIAN_LETTER_U, 'codepoint, 0x102B2);
16852put('CARIAN_LETTER_NN, 'codepoint, 0x102B3);
16853put('CARIAN_LETTER_X, 'codepoint, 0x102B4);
16854put('CARIAN_LETTER_N, 'codepoint, 0x102B5);
16855put('CARIAN_LETTER_TT2, 'codepoint, 0x102B6);
16856put('CARIAN_LETTER_P, 'codepoint, 0x102B7);
16857put('CARIAN_LETTER_SS, 'codepoint, 0x102B8);
16858put('CARIAN_LETTER_I, 'codepoint, 0x102B9);
16859put('CARIAN_LETTER_E, 'codepoint, 0x102BA);
16860put('CARIAN_LETTER_UUUU, 'codepoint, 0x102BB);
16861put('CARIAN_LETTER_K, 'codepoint, 0x102BC);
16862put('CARIAN_LETTER_K2, 'codepoint, 0x102BD);
16863put('CARIAN_LETTER_ND, 'codepoint, 0x102BE);
16864put('CARIAN_LETTER_UU, 'codepoint, 0x102BF);
16865put('CARIAN_LETTER_G, 'codepoint, 0x102C0);
16866put('CARIAN_LETTER_G2, 'codepoint, 0x102C1);
16867put('CARIAN_LETTER_ST, 'codepoint, 0x102C2);
16868put('CARIAN_LETTER_ST2, 'codepoint, 0x102C3);
16869put('CARIAN_LETTER_NG, 'codepoint, 0x102C4);
16870put('CARIAN_LETTER_II, 'codepoint, 0x102C5);
16871put('CARIAN_LETTER_C_39, 'codepoint, 0x102C6);
16872put('CARIAN_LETTER_TT, 'codepoint, 0x102C7);
16873put('CARIAN_LETTER_UUU2, 'codepoint, 0x102C8);
16874put('CARIAN_LETTER_RR, 'codepoint, 0x102C9);
16875put('CARIAN_LETTER_MB, 'codepoint, 0x102CA);
16876put('CARIAN_LETTER_MB2, 'codepoint, 0x102CB);
16877put('CARIAN_LETTER_MB3, 'codepoint, 0x102CC);
16878put('CARIAN_LETTER_MB4, 'codepoint, 0x102CD);
16879put('CARIAN_LETTER_LD2, 'codepoint, 0x102CE);
16880put('CARIAN_LETTER_E2, 'codepoint, 0x102CF);
16881put('CARIAN_LETTER_UUU3, 'codepoint, 0x102D0);
16882put('COPTIC_EPACT_THOUSANDS_MARK, 'codepoint, 0x102E0);
16883put('COPTIC_EPACT_DIGIT_ONE, 'codepoint, 0x102E1);
16884put('COPTIC_EPACT_DIGIT_TWO, 'codepoint, 0x102E2);
16885put('COPTIC_EPACT_DIGIT_THREE, 'codepoint, 0x102E3);
16886put('COPTIC_EPACT_DIGIT_FOUR, 'codepoint, 0x102E4);
16887put('COPTIC_EPACT_DIGIT_FIVE, 'codepoint, 0x102E5);
16888put('COPTIC_EPACT_DIGIT_SIX, 'codepoint, 0x102E6);
16889put('COPTIC_EPACT_DIGIT_SEVEN, 'codepoint, 0x102E7);
16890put('COPTIC_EPACT_DIGIT_EIGHT, 'codepoint, 0x102E8);
16891put('COPTIC_EPACT_DIGIT_NINE, 'codepoint, 0x102E9);
16892put('COPTIC_EPACT_NUMBER_TEN, 'codepoint, 0x102EA);
16893put('COPTIC_EPACT_NUMBER_TWENTY, 'codepoint, 0x102EB);
16894put('COPTIC_EPACT_NUMBER_THIRTY, 'codepoint, 0x102EC);
16895put('COPTIC_EPACT_NUMBER_FORTY, 'codepoint, 0x102ED);
16896put('COPTIC_EPACT_NUMBER_FIFTY, 'codepoint, 0x102EE);
16897put('COPTIC_EPACT_NUMBER_SIXTY, 'codepoint, 0x102EF);
16898put('COPTIC_EPACT_NUMBER_SEVENTY, 'codepoint, 0x102F0);
16899put('COPTIC_EPACT_NUMBER_EIGHTY, 'codepoint, 0x102F1);
16900put('COPTIC_EPACT_NUMBER_NINETY, 'codepoint, 0x102F2);
16901put('COPTIC_EPACT_NUMBER_ONE_HUNDRED, 'codepoint, 0x102F3);
16902put('COPTIC_EPACT_NUMBER_TWO_HUNDRED, 'codepoint, 0x102F4);
16903put('COPTIC_EPACT_NUMBER_THREE_HUNDRED, 'codepoint, 0x102F5);
16904put('COPTIC_EPACT_NUMBER_FOUR_HUNDRED, 'codepoint, 0x102F6);
16905put('COPTIC_EPACT_NUMBER_FIVE_HUNDRED, 'codepoint, 0x102F7);
16906put('COPTIC_EPACT_NUMBER_SIX_HUNDRED, 'codepoint, 0x102F8);
16907put('COPTIC_EPACT_NUMBER_SEVEN_HUNDRED, 'codepoint, 0x102F9);
16908put('COPTIC_EPACT_NUMBER_EIGHT_HUNDRED, 'codepoint, 0x102FA);
16909put('COPTIC_EPACT_NUMBER_NINE_HUNDRED, 'codepoint, 0x102FB);
16910put('OLD_ITALIC_LETTER_A, 'codepoint, 0x10300);
16911put('OLD_ITALIC_LETTER_BE, 'codepoint, 0x10301);
16912put('OLD_ITALIC_LETTER_KE, 'codepoint, 0x10302);
16913put('OLD_ITALIC_LETTER_DE, 'codepoint, 0x10303);
16914put('OLD_ITALIC_LETTER_E, 'codepoint, 0x10304);
16915put('OLD_ITALIC_LETTER_VE, 'codepoint, 0x10305);
16916put('OLD_ITALIC_LETTER_ZE, 'codepoint, 0x10306);
16917put('OLD_ITALIC_LETTER_HE, 'codepoint, 0x10307);
16918put('OLD_ITALIC_LETTER_THE, 'codepoint, 0x10308);
16919put('OLD_ITALIC_LETTER_I, 'codepoint, 0x10309);
16920put('OLD_ITALIC_LETTER_KA, 'codepoint, 0x1030A);
16921put('OLD_ITALIC_LETTER_EL, 'codepoint, 0x1030B);
16922put('OLD_ITALIC_LETTER_EM, 'codepoint, 0x1030C);
16923put('OLD_ITALIC_LETTER_EN, 'codepoint, 0x1030D);
16924put('OLD_ITALIC_LETTER_ESH, 'codepoint, 0x1030E);
16925put('OLD_ITALIC_LETTER_O, 'codepoint, 0x1030F);
16926put('OLD_ITALIC_LETTER_PE, 'codepoint, 0x10310);
16927put('OLD_ITALIC_LETTER_SHE, 'codepoint, 0x10311);
16928put('OLD_ITALIC_LETTER_KU, 'codepoint, 0x10312);
16929put('OLD_ITALIC_LETTER_ER, 'codepoint, 0x10313);
16930put('OLD_ITALIC_LETTER_ES, 'codepoint, 0x10314);
16931put('OLD_ITALIC_LETTER_TE, 'codepoint, 0x10315);
16932put('OLD_ITALIC_LETTER_U, 'codepoint, 0x10316);
16933put('OLD_ITALIC_LETTER_EKS, 'codepoint, 0x10317);
16934put('OLD_ITALIC_LETTER_PHE, 'codepoint, 0x10318);
16935put('OLD_ITALIC_LETTER_KHE, 'codepoint, 0x10319);
16936put('OLD_ITALIC_LETTER_EF, 'codepoint, 0x1031A);
16937put('OLD_ITALIC_LETTER_ERS, 'codepoint, 0x1031B);
16938put('OLD_ITALIC_LETTER_CHE, 'codepoint, 0x1031C);
16939put('OLD_ITALIC_LETTER_II, 'codepoint, 0x1031D);
16940put('OLD_ITALIC_LETTER_UU, 'codepoint, 0x1031E);
16941put('OLD_ITALIC_LETTER_ESS, 'codepoint, 0x1031F);
16942put('OLD_ITALIC_NUMERAL_ONE, 'codepoint, 0x10320);
16943put('OLD_ITALIC_NUMERAL_FIVE, 'codepoint, 0x10321);
16944put('OLD_ITALIC_NUMERAL_TEN, 'codepoint, 0x10322);
16945put('OLD_ITALIC_NUMERAL_FIFTY, 'codepoint, 0x10323);
16946put('GOTHIC_LETTER_AHSA, 'codepoint, 0x10330);
16947put('GOTHIC_LETTER_BAIRKAN, 'codepoint, 0x10331);
16948put('GOTHIC_LETTER_GIBA, 'codepoint, 0x10332);
16949put('GOTHIC_LETTER_DAGS, 'codepoint, 0x10333);
16950put('GOTHIC_LETTER_AIHVUS, 'codepoint, 0x10334);
16951put('GOTHIC_LETTER_QAIRTHRA, 'codepoint, 0x10335);
16952put('GOTHIC_LETTER_IUJA, 'codepoint, 0x10336);
16953put('GOTHIC_LETTER_HAGL, 'codepoint, 0x10337);
16954put('GOTHIC_LETTER_THIUTH, 'codepoint, 0x10338);
16955put('GOTHIC_LETTER_EIS, 'codepoint, 0x10339);
16956put('GOTHIC_LETTER_KUSMA, 'codepoint, 0x1033A);
16957put('GOTHIC_LETTER_LAGUS, 'codepoint, 0x1033B);
16958put('GOTHIC_LETTER_MANNA, 'codepoint, 0x1033C);
16959put('GOTHIC_LETTER_NAUTHS, 'codepoint, 0x1033D);
16960put('GOTHIC_LETTER_JER, 'codepoint, 0x1033E);
16961put('GOTHIC_LETTER_URUS, 'codepoint, 0x1033F);
16962put('GOTHIC_LETTER_PAIRTHRA, 'codepoint, 0x10340);
16963put('GOTHIC_LETTER_NINETY, 'codepoint, 0x10341);
16964put('GOTHIC_LETTER_RAIDA, 'codepoint, 0x10342);
16965put('GOTHIC_LETTER_SAUIL, 'codepoint, 0x10343);
16966put('GOTHIC_LETTER_TEIWS, 'codepoint, 0x10344);
16967put('GOTHIC_LETTER_WINJA, 'codepoint, 0x10345);
16968put('GOTHIC_LETTER_FAIHU, 'codepoint, 0x10346);
16969put('GOTHIC_LETTER_IGGWS, 'codepoint, 0x10347);
16970put('GOTHIC_LETTER_HWAIR, 'codepoint, 0x10348);
16971put('GOTHIC_LETTER_OTHAL, 'codepoint, 0x10349);
16972put('GOTHIC_LETTER_NINE_HUNDRED, 'codepoint, 0x1034A);
16973put('OLD_PERMIC_LETTER_AN, 'codepoint, 0x10350);
16974put('OLD_PERMIC_LETTER_BUR, 'codepoint, 0x10351);
16975put('OLD_PERMIC_LETTER_GAI, 'codepoint, 0x10352);
16976put('OLD_PERMIC_LETTER_DOI, 'codepoint, 0x10353);
16977put('OLD_PERMIC_LETTER_E, 'codepoint, 0x10354);
16978put('OLD_PERMIC_LETTER_ZHOI, 'codepoint, 0x10355);
16979put('OLD_PERMIC_LETTER_DZHOI, 'codepoint, 0x10356);
16980put('OLD_PERMIC_LETTER_ZATA, 'codepoint, 0x10357);
16981put('OLD_PERMIC_LETTER_DZITA, 'codepoint, 0x10358);
16982put('OLD_PERMIC_LETTER_I, 'codepoint, 0x10359);
16983put('OLD_PERMIC_LETTER_KOKE, 'codepoint, 0x1035A);
16984put('OLD_PERMIC_LETTER_LEI, 'codepoint, 0x1035B);
16985put('OLD_PERMIC_LETTER_MENOE, 'codepoint, 0x1035C);
16986put('OLD_PERMIC_LETTER_NENOE, 'codepoint, 0x1035D);
16987put('OLD_PERMIC_LETTER_VOOI, 'codepoint, 0x1035E);
16988put('OLD_PERMIC_LETTER_PEEI, 'codepoint, 0x1035F);
16989put('OLD_PERMIC_LETTER_REI, 'codepoint, 0x10360);
16990put('OLD_PERMIC_LETTER_SII, 'codepoint, 0x10361);
16991put('OLD_PERMIC_LETTER_TAI, 'codepoint, 0x10362);
16992put('OLD_PERMIC_LETTER_U, 'codepoint, 0x10363);
16993put('OLD_PERMIC_LETTER_CHERY, 'codepoint, 0x10364);
16994put('OLD_PERMIC_LETTER_SHOOI, 'codepoint, 0x10365);
16995put('OLD_PERMIC_LETTER_SHCHOOI, 'codepoint, 0x10366);
16996put('OLD_PERMIC_LETTER_YRY, 'codepoint, 0x10367);
16997put('OLD_PERMIC_LETTER_YERU, 'codepoint, 0x10368);
16998put('OLD_PERMIC_LETTER_O, 'codepoint, 0x10369);
16999put('OLD_PERMIC_LETTER_OO, 'codepoint, 0x1036A);
17000put('OLD_PERMIC_LETTER_EF, 'codepoint, 0x1036B);
17001put('OLD_PERMIC_LETTER_HA, 'codepoint, 0x1036C);
17002put('OLD_PERMIC_LETTER_TSIU, 'codepoint, 0x1036D);
17003put('OLD_PERMIC_LETTER_VER, 'codepoint, 0x1036E);
17004put('OLD_PERMIC_LETTER_YER, 'codepoint, 0x1036F);
17005put('OLD_PERMIC_LETTER_YERI, 'codepoint, 0x10370);
17006put('OLD_PERMIC_LETTER_YAT, 'codepoint, 0x10371);
17007put('OLD_PERMIC_LETTER_IE, 'codepoint, 0x10372);
17008put('OLD_PERMIC_LETTER_YU, 'codepoint, 0x10373);
17009put('OLD_PERMIC_LETTER_YA, 'codepoint, 0x10374);
17010put('OLD_PERMIC_LETTER_IA, 'codepoint, 0x10375);
17011put('COMBINING_OLD_PERMIC_LETTER_AN, 'codepoint, 0x10376);
17012put('COMBINING_OLD_PERMIC_LETTER_DOI, 'codepoint, 0x10377);
17013put('COMBINING_OLD_PERMIC_LETTER_ZATA, 'codepoint, 0x10378);
17014put('COMBINING_OLD_PERMIC_LETTER_NENOE, 'codepoint, 0x10379);
17015put('COMBINING_OLD_PERMIC_LETTER_SII, 'codepoint, 0x1037A);
17016put('UGARITIC_LETTER_ALPA, 'codepoint, 0x10380);
17017put('UGARITIC_LETTER_BETA, 'codepoint, 0x10381);
17018put('UGARITIC_LETTER_GAMLA, 'codepoint, 0x10382);
17019put('UGARITIC_LETTER_KHA, 'codepoint, 0x10383);
17020put('UGARITIC_LETTER_DELTA, 'codepoint, 0x10384);
17021put('UGARITIC_LETTER_HO, 'codepoint, 0x10385);
17022put('UGARITIC_LETTER_WO, 'codepoint, 0x10386);
17023put('UGARITIC_LETTER_ZETA, 'codepoint, 0x10387);
17024put('UGARITIC_LETTER_HOTA, 'codepoint, 0x10388);
17025put('UGARITIC_LETTER_TET, 'codepoint, 0x10389);
17026put('UGARITIC_LETTER_YOD, 'codepoint, 0x1038A);
17027put('UGARITIC_LETTER_KAF, 'codepoint, 0x1038B);
17028put('UGARITIC_LETTER_SHIN, 'codepoint, 0x1038C);
17029put('UGARITIC_LETTER_LAMDA, 'codepoint, 0x1038D);
17030put('UGARITIC_LETTER_MEM, 'codepoint, 0x1038E);
17031put('UGARITIC_LETTER_DHAL, 'codepoint, 0x1038F);
17032put('UGARITIC_LETTER_NUN, 'codepoint, 0x10390);
17033put('UGARITIC_LETTER_ZU, 'codepoint, 0x10391);
17034put('UGARITIC_LETTER_SAMKA, 'codepoint, 0x10392);
17035put('UGARITIC_LETTER_AIN, 'codepoint, 0x10393);
17036put('UGARITIC_LETTER_PU, 'codepoint, 0x10394);
17037put('UGARITIC_LETTER_SADE, 'codepoint, 0x10395);
17038put('UGARITIC_LETTER_QOPA, 'codepoint, 0x10396);
17039put('UGARITIC_LETTER_RASHA, 'codepoint, 0x10397);
17040put('UGARITIC_LETTER_THANNA, 'codepoint, 0x10398);
17041put('UGARITIC_LETTER_GHAIN, 'codepoint, 0x10399);
17042put('UGARITIC_LETTER_TO, 'codepoint, 0x1039A);
17043put('UGARITIC_LETTER_I, 'codepoint, 0x1039B);
17044put('UGARITIC_LETTER_U, 'codepoint, 0x1039C);
17045put('UGARITIC_LETTER_SSU, 'codepoint, 0x1039D);
17046put('UGARITIC_WORD_DIVIDER, 'codepoint, 0x1039F);
17047put('OLD_PERSIAN_SIGN_A, 'codepoint, 0x103A0);
17048put('OLD_PERSIAN_SIGN_I, 'codepoint, 0x103A1);
17049put('OLD_PERSIAN_SIGN_U, 'codepoint, 0x103A2);
17050put('OLD_PERSIAN_SIGN_KA, 'codepoint, 0x103A3);
17051put('OLD_PERSIAN_SIGN_KU, 'codepoint, 0x103A4);
17052put('OLD_PERSIAN_SIGN_GA, 'codepoint, 0x103A5);
17053put('OLD_PERSIAN_SIGN_GU, 'codepoint, 0x103A6);
17054put('OLD_PERSIAN_SIGN_XA, 'codepoint, 0x103A7);
17055put('OLD_PERSIAN_SIGN_CA, 'codepoint, 0x103A8);
17056put('OLD_PERSIAN_SIGN_JA, 'codepoint, 0x103A9);
17057put('OLD_PERSIAN_SIGN_JI, 'codepoint, 0x103AA);
17058put('OLD_PERSIAN_SIGN_TA, 'codepoint, 0x103AB);
17059put('OLD_PERSIAN_SIGN_TU, 'codepoint, 0x103AC);
17060put('OLD_PERSIAN_SIGN_DA, 'codepoint, 0x103AD);
17061put('OLD_PERSIAN_SIGN_DI, 'codepoint, 0x103AE);
17062put('OLD_PERSIAN_SIGN_DU, 'codepoint, 0x103AF);
17063put('OLD_PERSIAN_SIGN_THA, 'codepoint, 0x103B0);
17064put('OLD_PERSIAN_SIGN_PA, 'codepoint, 0x103B1);
17065put('OLD_PERSIAN_SIGN_BA, 'codepoint, 0x103B2);
17066put('OLD_PERSIAN_SIGN_FA, 'codepoint, 0x103B3);
17067put('OLD_PERSIAN_SIGN_NA, 'codepoint, 0x103B4);
17068put('OLD_PERSIAN_SIGN_NU, 'codepoint, 0x103B5);
17069put('OLD_PERSIAN_SIGN_MA, 'codepoint, 0x103B6);
17070put('OLD_PERSIAN_SIGN_MI, 'codepoint, 0x103B7);
17071put('OLD_PERSIAN_SIGN_MU, 'codepoint, 0x103B8);
17072put('OLD_PERSIAN_SIGN_YA, 'codepoint, 0x103B9);
17073put('OLD_PERSIAN_SIGN_VA, 'codepoint, 0x103BA);
17074put('OLD_PERSIAN_SIGN_VI, 'codepoint, 0x103BB);
17075put('OLD_PERSIAN_SIGN_RA, 'codepoint, 0x103BC);
17076put('OLD_PERSIAN_SIGN_RU, 'codepoint, 0x103BD);
17077put('OLD_PERSIAN_SIGN_LA, 'codepoint, 0x103BE);
17078put('OLD_PERSIAN_SIGN_SA, 'codepoint, 0x103BF);
17079put('OLD_PERSIAN_SIGN_ZA, 'codepoint, 0x103C0);
17080put('OLD_PERSIAN_SIGN_SHA, 'codepoint, 0x103C1);
17081put('OLD_PERSIAN_SIGN_SSA, 'codepoint, 0x103C2);
17082put('OLD_PERSIAN_SIGN_HA, 'codepoint, 0x103C3);
17083put('OLD_PERSIAN_SIGN_AURAMAZDAA, 'codepoint, 0x103C8);
17084put('OLD_PERSIAN_SIGN_AURAMAZDAA_2, 'codepoint, 0x103C9);
17085put('OLD_PERSIAN_SIGN_AURAMAZDAAHA, 'codepoint, 0x103CA);
17086put('OLD_PERSIAN_SIGN_XSHAAYATHIYA, 'codepoint, 0x103CB);
17087put('OLD_PERSIAN_SIGN_DAHYAAUSH, 'codepoint, 0x103CC);
17088put('OLD_PERSIAN_SIGN_DAHYAAUSH_2, 'codepoint, 0x103CD);
17089put('OLD_PERSIAN_SIGN_BAGA, 'codepoint, 0x103CE);
17090put('OLD_PERSIAN_SIGN_BUUMISH, 'codepoint, 0x103CF);
17091put('OLD_PERSIAN_WORD_DIVIDER, 'codepoint, 0x103D0);
17092put('OLD_PERSIAN_NUMBER_ONE, 'codepoint, 0x103D1);
17093put('OLD_PERSIAN_NUMBER_TWO, 'codepoint, 0x103D2);
17094put('OLD_PERSIAN_NUMBER_TEN, 'codepoint, 0x103D3);
17095put('OLD_PERSIAN_NUMBER_TWENTY, 'codepoint, 0x103D4);
17096put('OLD_PERSIAN_NUMBER_HUNDRED, 'codepoint, 0x103D5);
17097put('DESERET_CAPITAL_LETTER_LONG_I, 'codepoint, 0x10400);
17098put('DESERET_CAPITAL_LETTER_LONG_E, 'codepoint, 0x10401);
17099put('DESERET_CAPITAL_LETTER_LONG_A, 'codepoint, 0x10402);
17100put('DESERET_CAPITAL_LETTER_LONG_AH, 'codepoint, 0x10403);
17101put('DESERET_CAPITAL_LETTER_LONG_O, 'codepoint, 0x10404);
17102put('DESERET_CAPITAL_LETTER_LONG_OO, 'codepoint, 0x10405);
17103put('DESERET_CAPITAL_LETTER_SHORT_I, 'codepoint, 0x10406);
17104put('DESERET_CAPITAL_LETTER_SHORT_E, 'codepoint, 0x10407);
17105put('DESERET_CAPITAL_LETTER_SHORT_A, 'codepoint, 0x10408);
17106put('DESERET_CAPITAL_LETTER_SHORT_AH, 'codepoint, 0x10409);
17107put('DESERET_CAPITAL_LETTER_SHORT_O, 'codepoint, 0x1040A);
17108put('DESERET_CAPITAL_LETTER_SHORT_OO, 'codepoint, 0x1040B);
17109put('DESERET_CAPITAL_LETTER_AY, 'codepoint, 0x1040C);
17110put('DESERET_CAPITAL_LETTER_OW, 'codepoint, 0x1040D);
17111put('DESERET_CAPITAL_LETTER_WU, 'codepoint, 0x1040E);
17112put('DESERET_CAPITAL_LETTER_YEE, 'codepoint, 0x1040F);
17113put('DESERET_CAPITAL_LETTER_H, 'codepoint, 0x10410);
17114put('DESERET_CAPITAL_LETTER_PEE, 'codepoint, 0x10411);
17115put('DESERET_CAPITAL_LETTER_BEE, 'codepoint, 0x10412);
17116put('DESERET_CAPITAL_LETTER_TEE, 'codepoint, 0x10413);
17117put('DESERET_CAPITAL_LETTER_DEE, 'codepoint, 0x10414);
17118put('DESERET_CAPITAL_LETTER_CHEE, 'codepoint, 0x10415);
17119put('DESERET_CAPITAL_LETTER_JEE, 'codepoint, 0x10416);
17120put('DESERET_CAPITAL_LETTER_KAY, 'codepoint, 0x10417);
17121put('DESERET_CAPITAL_LETTER_GAY, 'codepoint, 0x10418);
17122put('DESERET_CAPITAL_LETTER_EF, 'codepoint, 0x10419);
17123put('DESERET_CAPITAL_LETTER_VEE, 'codepoint, 0x1041A);
17124put('DESERET_CAPITAL_LETTER_ETH, 'codepoint, 0x1041B);
17125put('DESERET_CAPITAL_LETTER_THEE, 'codepoint, 0x1041C);
17126put('DESERET_CAPITAL_LETTER_ES, 'codepoint, 0x1041D);
17127put('DESERET_CAPITAL_LETTER_ZEE, 'codepoint, 0x1041E);
17128put('DESERET_CAPITAL_LETTER_ESH, 'codepoint, 0x1041F);
17129put('DESERET_CAPITAL_LETTER_ZHEE, 'codepoint, 0x10420);
17130put('DESERET_CAPITAL_LETTER_ER, 'codepoint, 0x10421);
17131put('DESERET_CAPITAL_LETTER_EL, 'codepoint, 0x10422);
17132put('DESERET_CAPITAL_LETTER_EM, 'codepoint, 0x10423);
17133put('DESERET_CAPITAL_LETTER_EN, 'codepoint, 0x10424);
17134put('DESERET_CAPITAL_LETTER_ENG, 'codepoint, 0x10425);
17135put('DESERET_CAPITAL_LETTER_OI, 'codepoint, 0x10426);
17136put('DESERET_CAPITAL_LETTER_EW, 'codepoint, 0x10427);
17137put('DESERET_SMALL_LETTER_LONG_I, 'codepoint, 0x10428);
17138put('DESERET_SMALL_LETTER_LONG_E, 'codepoint, 0x10429);
17139put('DESERET_SMALL_LETTER_LONG_A, 'codepoint, 0x1042A);
17140put('DESERET_SMALL_LETTER_LONG_AH, 'codepoint, 0x1042B);
17141put('DESERET_SMALL_LETTER_LONG_O, 'codepoint, 0x1042C);
17142put('DESERET_SMALL_LETTER_LONG_OO, 'codepoint, 0x1042D);
17143put('DESERET_SMALL_LETTER_SHORT_I, 'codepoint, 0x1042E);
17144put('DESERET_SMALL_LETTER_SHORT_E, 'codepoint, 0x1042F);
17145put('DESERET_SMALL_LETTER_SHORT_A, 'codepoint, 0x10430);
17146put('DESERET_SMALL_LETTER_SHORT_AH, 'codepoint, 0x10431);
17147put('DESERET_SMALL_LETTER_SHORT_O, 'codepoint, 0x10432);
17148put('DESERET_SMALL_LETTER_SHORT_OO, 'codepoint, 0x10433);
17149put('DESERET_SMALL_LETTER_AY, 'codepoint, 0x10434);
17150put('DESERET_SMALL_LETTER_OW, 'codepoint, 0x10435);
17151put('DESERET_SMALL_LETTER_WU, 'codepoint, 0x10436);
17152put('DESERET_SMALL_LETTER_YEE, 'codepoint, 0x10437);
17153put('DESERET_SMALL_LETTER_H, 'codepoint, 0x10438);
17154put('DESERET_SMALL_LETTER_PEE, 'codepoint, 0x10439);
17155put('DESERET_SMALL_LETTER_BEE, 'codepoint, 0x1043A);
17156put('DESERET_SMALL_LETTER_TEE, 'codepoint, 0x1043B);
17157put('DESERET_SMALL_LETTER_DEE, 'codepoint, 0x1043C);
17158put('DESERET_SMALL_LETTER_CHEE, 'codepoint, 0x1043D);
17159put('DESERET_SMALL_LETTER_JEE, 'codepoint, 0x1043E);
17160put('DESERET_SMALL_LETTER_KAY, 'codepoint, 0x1043F);
17161put('DESERET_SMALL_LETTER_GAY, 'codepoint, 0x10440);
17162put('DESERET_SMALL_LETTER_EF, 'codepoint, 0x10441);
17163put('DESERET_SMALL_LETTER_VEE, 'codepoint, 0x10442);
17164put('DESERET_SMALL_LETTER_ETH, 'codepoint, 0x10443);
17165put('DESERET_SMALL_LETTER_THEE, 'codepoint, 0x10444);
17166put('DESERET_SMALL_LETTER_ES, 'codepoint, 0x10445);
17167put('DESERET_SMALL_LETTER_ZEE, 'codepoint, 0x10446);
17168put('DESERET_SMALL_LETTER_ESH, 'codepoint, 0x10447);
17169put('DESERET_SMALL_LETTER_ZHEE, 'codepoint, 0x10448);
17170put('DESERET_SMALL_LETTER_ER, 'codepoint, 0x10449);
17171put('DESERET_SMALL_LETTER_EL, 'codepoint, 0x1044A);
17172put('DESERET_SMALL_LETTER_EM, 'codepoint, 0x1044B);
17173put('DESERET_SMALL_LETTER_EN, 'codepoint, 0x1044C);
17174put('DESERET_SMALL_LETTER_ENG, 'codepoint, 0x1044D);
17175put('DESERET_SMALL_LETTER_OI, 'codepoint, 0x1044E);
17176put('DESERET_SMALL_LETTER_EW, 'codepoint, 0x1044F);
17177put('SHAVIAN_LETTER_PEEP, 'codepoint, 0x10450);
17178put('SHAVIAN_LETTER_TOT, 'codepoint, 0x10451);
17179put('SHAVIAN_LETTER_KICK, 'codepoint, 0x10452);
17180put('SHAVIAN_LETTER_FEE, 'codepoint, 0x10453);
17181put('SHAVIAN_LETTER_THIGH, 'codepoint, 0x10454);
17182put('SHAVIAN_LETTER_SO, 'codepoint, 0x10455);
17183put('SHAVIAN_LETTER_SURE, 'codepoint, 0x10456);
17184put('SHAVIAN_LETTER_CHURCH, 'codepoint, 0x10457);
17185put('SHAVIAN_LETTER_YEA, 'codepoint, 0x10458);
17186put('SHAVIAN_LETTER_HUNG, 'codepoint, 0x10459);
17187put('SHAVIAN_LETTER_BIB, 'codepoint, 0x1045A);
17188put('SHAVIAN_LETTER_DEAD, 'codepoint, 0x1045B);
17189put('SHAVIAN_LETTER_GAG, 'codepoint, 0x1045C);
17190put('SHAVIAN_LETTER_VOW, 'codepoint, 0x1045D);
17191put('SHAVIAN_LETTER_THEY, 'codepoint, 0x1045E);
17192put('SHAVIAN_LETTER_ZOO, 'codepoint, 0x1045F);
17193put('SHAVIAN_LETTER_MEASURE, 'codepoint, 0x10460);
17194put('SHAVIAN_LETTER_JUDGE, 'codepoint, 0x10461);
17195put('SHAVIAN_LETTER_WOE, 'codepoint, 0x10462);
17196put('SHAVIAN_LETTER_HA_HA, 'codepoint, 0x10463);
17197put('SHAVIAN_LETTER_LOLL, 'codepoint, 0x10464);
17198put('SHAVIAN_LETTER_MIME, 'codepoint, 0x10465);
17199put('SHAVIAN_LETTER_IF, 'codepoint, 0x10466);
17200put('SHAVIAN_LETTER_EGG, 'codepoint, 0x10467);
17201put('SHAVIAN_LETTER_ASH, 'codepoint, 0x10468);
17202put('SHAVIAN_LETTER_ADO, 'codepoint, 0x10469);
17203put('SHAVIAN_LETTER_ON, 'codepoint, 0x1046A);
17204put('SHAVIAN_LETTER_WOOL, 'codepoint, 0x1046B);
17205put('SHAVIAN_LETTER_OUT, 'codepoint, 0x1046C);
17206put('SHAVIAN_LETTER_AH, 'codepoint, 0x1046D);
17207put('SHAVIAN_LETTER_ROAR, 'codepoint, 0x1046E);
17208put('SHAVIAN_LETTER_NUN, 'codepoint, 0x1046F);
17209put('SHAVIAN_LETTER_EAT, 'codepoint, 0x10470);
17210put('SHAVIAN_LETTER_AGE, 'codepoint, 0x10471);
17211put('SHAVIAN_LETTER_ICE, 'codepoint, 0x10472);
17212put('SHAVIAN_LETTER_UP, 'codepoint, 0x10473);
17213put('SHAVIAN_LETTER_OAK, 'codepoint, 0x10474);
17214put('SHAVIAN_LETTER_OOZE, 'codepoint, 0x10475);
17215put('SHAVIAN_LETTER_OIL, 'codepoint, 0x10476);
17216put('SHAVIAN_LETTER_AWE, 'codepoint, 0x10477);
17217put('SHAVIAN_LETTER_ARE, 'codepoint, 0x10478);
17218put('SHAVIAN_LETTER_OR, 'codepoint, 0x10479);
17219put('SHAVIAN_LETTER_AIR, 'codepoint, 0x1047A);
17220put('SHAVIAN_LETTER_ERR, 'codepoint, 0x1047B);
17221put('SHAVIAN_LETTER_ARRAY, 'codepoint, 0x1047C);
17222put('SHAVIAN_LETTER_EAR, 'codepoint, 0x1047D);
17223put('SHAVIAN_LETTER_IAN, 'codepoint, 0x1047E);
17224put('SHAVIAN_LETTER_YEW, 'codepoint, 0x1047F);
17225put('OSMANYA_LETTER_ALEF, 'codepoint, 0x10480);
17226put('OSMANYA_LETTER_BA, 'codepoint, 0x10481);
17227put('OSMANYA_LETTER_TA, 'codepoint, 0x10482);
17228put('OSMANYA_LETTER_JA, 'codepoint, 0x10483);
17229put('OSMANYA_LETTER_XA, 'codepoint, 0x10484);
17230put('OSMANYA_LETTER_KHA, 'codepoint, 0x10485);
17231put('OSMANYA_LETTER_DEEL, 'codepoint, 0x10486);
17232put('OSMANYA_LETTER_RA, 'codepoint, 0x10487);
17233put('OSMANYA_LETTER_SA, 'codepoint, 0x10488);
17234put('OSMANYA_LETTER_SHIIN, 'codepoint, 0x10489);
17235put('OSMANYA_LETTER_DHA, 'codepoint, 0x1048A);
17236put('OSMANYA_LETTER_CAYN, 'codepoint, 0x1048B);
17237put('OSMANYA_LETTER_GA, 'codepoint, 0x1048C);
17238put('OSMANYA_LETTER_FA, 'codepoint, 0x1048D);
17239put('OSMANYA_LETTER_QAAF, 'codepoint, 0x1048E);
17240put('OSMANYA_LETTER_KAAF, 'codepoint, 0x1048F);
17241put('OSMANYA_LETTER_LAAN, 'codepoint, 0x10490);
17242put('OSMANYA_LETTER_MIIN, 'codepoint, 0x10491);
17243put('OSMANYA_LETTER_NUUN, 'codepoint, 0x10492);
17244put('OSMANYA_LETTER_WAW, 'codepoint, 0x10493);
17245put('OSMANYA_LETTER_HA, 'codepoint, 0x10494);
17246put('OSMANYA_LETTER_YA, 'codepoint, 0x10495);
17247put('OSMANYA_LETTER_A, 'codepoint, 0x10496);
17248put('OSMANYA_LETTER_E, 'codepoint, 0x10497);
17249put('OSMANYA_LETTER_I, 'codepoint, 0x10498);
17250put('OSMANYA_LETTER_O, 'codepoint, 0x10499);
17251put('OSMANYA_LETTER_U, 'codepoint, 0x1049A);
17252put('OSMANYA_LETTER_AA, 'codepoint, 0x1049B);
17253put('OSMANYA_LETTER_EE, 'codepoint, 0x1049C);
17254put('OSMANYA_LETTER_OO, 'codepoint, 0x1049D);
17255put('OSMANYA_DIGIT_ZERO, 'codepoint, 0x104A0);
17256put('OSMANYA_DIGIT_ONE, 'codepoint, 0x104A1);
17257put('OSMANYA_DIGIT_TWO, 'codepoint, 0x104A2);
17258put('OSMANYA_DIGIT_THREE, 'codepoint, 0x104A3);
17259put('OSMANYA_DIGIT_FOUR, 'codepoint, 0x104A4);
17260put('OSMANYA_DIGIT_FIVE, 'codepoint, 0x104A5);
17261put('OSMANYA_DIGIT_SIX, 'codepoint, 0x104A6);
17262put('OSMANYA_DIGIT_SEVEN, 'codepoint, 0x104A7);
17263put('OSMANYA_DIGIT_EIGHT, 'codepoint, 0x104A8);
17264put('OSMANYA_DIGIT_NINE, 'codepoint, 0x104A9);
17265put('ELBASAN_LETTER_A, 'codepoint, 0x10500);
17266put('ELBASAN_LETTER_BE, 'codepoint, 0x10501);
17267put('ELBASAN_LETTER_CE, 'codepoint, 0x10502);
17268put('ELBASAN_LETTER_CHE, 'codepoint, 0x10503);
17269put('ELBASAN_LETTER_DE, 'codepoint, 0x10504);
17270put('ELBASAN_LETTER_NDE, 'codepoint, 0x10505);
17271put('ELBASAN_LETTER_DHE, 'codepoint, 0x10506);
17272put('ELBASAN_LETTER_EI, 'codepoint, 0x10507);
17273put('ELBASAN_LETTER_E, 'codepoint, 0x10508);
17274put('ELBASAN_LETTER_FE, 'codepoint, 0x10509);
17275put('ELBASAN_LETTER_GE, 'codepoint, 0x1050A);
17276put('ELBASAN_LETTER_GJE, 'codepoint, 0x1050B);
17277put('ELBASAN_LETTER_HE, 'codepoint, 0x1050C);
17278put('ELBASAN_LETTER_I, 'codepoint, 0x1050D);
17279put('ELBASAN_LETTER_JE, 'codepoint, 0x1050E);
17280put('ELBASAN_LETTER_KE, 'codepoint, 0x1050F);
17281put('ELBASAN_LETTER_LE, 'codepoint, 0x10510);
17282put('ELBASAN_LETTER_LLE, 'codepoint, 0x10511);
17283put('ELBASAN_LETTER_ME, 'codepoint, 0x10512);
17284put('ELBASAN_LETTER_NE, 'codepoint, 0x10513);
17285put('ELBASAN_LETTER_NA, 'codepoint, 0x10514);
17286put('ELBASAN_LETTER_NJE, 'codepoint, 0x10515);
17287put('ELBASAN_LETTER_O, 'codepoint, 0x10516);
17288put('ELBASAN_LETTER_PE, 'codepoint, 0x10517);
17289put('ELBASAN_LETTER_QE, 'codepoint, 0x10518);
17290put('ELBASAN_LETTER_RE, 'codepoint, 0x10519);
17291put('ELBASAN_LETTER_RRE, 'codepoint, 0x1051A);
17292put('ELBASAN_LETTER_SE, 'codepoint, 0x1051B);
17293put('ELBASAN_LETTER_SHE, 'codepoint, 0x1051C);
17294put('ELBASAN_LETTER_TE, 'codepoint, 0x1051D);
17295put('ELBASAN_LETTER_THE, 'codepoint, 0x1051E);
17296put('ELBASAN_LETTER_U, 'codepoint, 0x1051F);
17297put('ELBASAN_LETTER_VE, 'codepoint, 0x10520);
17298put('ELBASAN_LETTER_XE, 'codepoint, 0x10521);
17299put('ELBASAN_LETTER_Y, 'codepoint, 0x10522);
17300put('ELBASAN_LETTER_ZE, 'codepoint, 0x10523);
17301put('ELBASAN_LETTER_ZHE, 'codepoint, 0x10524);
17302put('ELBASAN_LETTER_GHE, 'codepoint, 0x10525);
17303put('ELBASAN_LETTER_GHAMMA, 'codepoint, 0x10526);
17304put('ELBASAN_LETTER_KHE, 'codepoint, 0x10527);
17305put('CAUCASIAN_ALBANIAN_LETTER_ALT, 'codepoint, 0x10530);
17306put('CAUCASIAN_ALBANIAN_LETTER_BET, 'codepoint, 0x10531);
17307put('CAUCASIAN_ALBANIAN_LETTER_GIM, 'codepoint, 0x10532);
17308put('CAUCASIAN_ALBANIAN_LETTER_DAT, 'codepoint, 0x10533);
17309put('CAUCASIAN_ALBANIAN_LETTER_EB, 'codepoint, 0x10534);
17310put('CAUCASIAN_ALBANIAN_LETTER_ZARL, 'codepoint, 0x10535);
17311put('CAUCASIAN_ALBANIAN_LETTER_EYN, 'codepoint, 0x10536);
17312put('CAUCASIAN_ALBANIAN_LETTER_ZHIL, 'codepoint, 0x10537);
17313put('CAUCASIAN_ALBANIAN_LETTER_TAS, 'codepoint, 0x10538);
17314put('CAUCASIAN_ALBANIAN_LETTER_CHA, 'codepoint, 0x10539);
17315put('CAUCASIAN_ALBANIAN_LETTER_YOWD, 'codepoint, 0x1053A);
17316put('CAUCASIAN_ALBANIAN_LETTER_ZHA, 'codepoint, 0x1053B);
17317put('CAUCASIAN_ALBANIAN_LETTER_IRB, 'codepoint, 0x1053C);
17318put('CAUCASIAN_ALBANIAN_LETTER_SHA, 'codepoint, 0x1053D);
17319put('CAUCASIAN_ALBANIAN_LETTER_LAN, 'codepoint, 0x1053E);
17320put('CAUCASIAN_ALBANIAN_LETTER_INYA, 'codepoint, 0x1053F);
17321put('CAUCASIAN_ALBANIAN_LETTER_XEYN, 'codepoint, 0x10540);
17322put('CAUCASIAN_ALBANIAN_LETTER_DYAN, 'codepoint, 0x10541);
17323put('CAUCASIAN_ALBANIAN_LETTER_CAR, 'codepoint, 0x10542);
17324put('CAUCASIAN_ALBANIAN_LETTER_JHOX, 'codepoint, 0x10543);
17325put('CAUCASIAN_ALBANIAN_LETTER_KAR, 'codepoint, 0x10544);
17326put('CAUCASIAN_ALBANIAN_LETTER_LYIT, 'codepoint, 0x10545);
17327put('CAUCASIAN_ALBANIAN_LETTER_HEYT, 'codepoint, 0x10546);
17328put('CAUCASIAN_ALBANIAN_LETTER_QAY, 'codepoint, 0x10547);
17329put('CAUCASIAN_ALBANIAN_LETTER_AOR, 'codepoint, 0x10548);
17330put('CAUCASIAN_ALBANIAN_LETTER_CHOY, 'codepoint, 0x10549);
17331put('CAUCASIAN_ALBANIAN_LETTER_CHI, 'codepoint, 0x1054A);
17332put('CAUCASIAN_ALBANIAN_LETTER_CYAY, 'codepoint, 0x1054B);
17333put('CAUCASIAN_ALBANIAN_LETTER_MAQ, 'codepoint, 0x1054C);
17334put('CAUCASIAN_ALBANIAN_LETTER_QAR, 'codepoint, 0x1054D);
17335put('CAUCASIAN_ALBANIAN_LETTER_NOWC, 'codepoint, 0x1054E);
17336put('CAUCASIAN_ALBANIAN_LETTER_DZYAY, 'codepoint, 0x1054F);
17337put('CAUCASIAN_ALBANIAN_LETTER_SHAK, 'codepoint, 0x10550);
17338put('CAUCASIAN_ALBANIAN_LETTER_JAYN, 'codepoint, 0x10551);
17339put('CAUCASIAN_ALBANIAN_LETTER_ON, 'codepoint, 0x10552);
17340put('CAUCASIAN_ALBANIAN_LETTER_TYAY, 'codepoint, 0x10553);
17341put('CAUCASIAN_ALBANIAN_LETTER_FAM, 'codepoint, 0x10554);
17342put('CAUCASIAN_ALBANIAN_LETTER_DZAY, 'codepoint, 0x10555);
17343put('CAUCASIAN_ALBANIAN_LETTER_CHAT, 'codepoint, 0x10556);
17344put('CAUCASIAN_ALBANIAN_LETTER_PEN, 'codepoint, 0x10557);
17345put('CAUCASIAN_ALBANIAN_LETTER_GHEYS, 'codepoint, 0x10558);
17346put('CAUCASIAN_ALBANIAN_LETTER_RAT, 'codepoint, 0x10559);
17347put('CAUCASIAN_ALBANIAN_LETTER_SEYK, 'codepoint, 0x1055A);
17348put('CAUCASIAN_ALBANIAN_LETTER_VEYZ, 'codepoint, 0x1055B);
17349put('CAUCASIAN_ALBANIAN_LETTER_TIWR, 'codepoint, 0x1055C);
17350put('CAUCASIAN_ALBANIAN_LETTER_SHOY, 'codepoint, 0x1055D);
17351put('CAUCASIAN_ALBANIAN_LETTER_IWN, 'codepoint, 0x1055E);
17352put('CAUCASIAN_ALBANIAN_LETTER_CYAW, 'codepoint, 0x1055F);
17353put('CAUCASIAN_ALBANIAN_LETTER_CAYN, 'codepoint, 0x10560);
17354put('CAUCASIAN_ALBANIAN_LETTER_YAYD, 'codepoint, 0x10561);
17355put('CAUCASIAN_ALBANIAN_LETTER_PIWR, 'codepoint, 0x10562);
17356put('CAUCASIAN_ALBANIAN_LETTER_KIW, 'codepoint, 0x10563);
17357put('CAUCASIAN_ALBANIAN_CITATION_MARK, 'codepoint, 0x1056F);
17358put('LINEAR_A_SIGN_AB001, 'codepoint, 0x10600);
17359put('LINEAR_A_SIGN_AB002, 'codepoint, 0x10601);
17360put('LINEAR_A_SIGN_AB003, 'codepoint, 0x10602);
17361put('LINEAR_A_SIGN_AB004, 'codepoint, 0x10603);
17362put('LINEAR_A_SIGN_AB005, 'codepoint, 0x10604);
17363put('LINEAR_A_SIGN_AB006, 'codepoint, 0x10605);
17364put('LINEAR_A_SIGN_AB007, 'codepoint, 0x10606);
17365put('LINEAR_A_SIGN_AB008, 'codepoint, 0x10607);
17366put('LINEAR_A_SIGN_AB009, 'codepoint, 0x10608);
17367put('LINEAR_A_SIGN_AB010, 'codepoint, 0x10609);
17368put('LINEAR_A_SIGN_AB011, 'codepoint, 0x1060A);
17369put('LINEAR_A_SIGN_AB013, 'codepoint, 0x1060B);
17370put('LINEAR_A_SIGN_AB016, 'codepoint, 0x1060C);
17371put('LINEAR_A_SIGN_AB017, 'codepoint, 0x1060D);
17372put('LINEAR_A_SIGN_AB020, 'codepoint, 0x1060E);
17373put('LINEAR_A_SIGN_AB021, 'codepoint, 0x1060F);
17374put('LINEAR_A_SIGN_AB021F, 'codepoint, 0x10610);
17375put('LINEAR_A_SIGN_AB021M, 'codepoint, 0x10611);
17376put('LINEAR_A_SIGN_AB022, 'codepoint, 0x10612);
17377put('LINEAR_A_SIGN_AB022F, 'codepoint, 0x10613);
17378put('LINEAR_A_SIGN_AB022M, 'codepoint, 0x10614);
17379put('LINEAR_A_SIGN_AB023, 'codepoint, 0x10615);
17380put('LINEAR_A_SIGN_AB023M, 'codepoint, 0x10616);
17381put('LINEAR_A_SIGN_AB024, 'codepoint, 0x10617);
17382put('LINEAR_A_SIGN_AB026, 'codepoint, 0x10618);
17383put('LINEAR_A_SIGN_AB027, 'codepoint, 0x10619);
17384put('LINEAR_A_SIGN_AB028, 'codepoint, 0x1061A);
17385put('LINEAR_A_SIGN_A028B, 'codepoint, 0x1061B);
17386put('LINEAR_A_SIGN_AB029, 'codepoint, 0x1061C);
17387put('LINEAR_A_SIGN_AB030, 'codepoint, 0x1061D);
17388put('LINEAR_A_SIGN_AB031, 'codepoint, 0x1061E);
17389put('LINEAR_A_SIGN_AB034, 'codepoint, 0x1061F);
17390put('LINEAR_A_SIGN_AB037, 'codepoint, 0x10620);
17391put('LINEAR_A_SIGN_AB038, 'codepoint, 0x10621);
17392put('LINEAR_A_SIGN_AB039, 'codepoint, 0x10622);
17393put('LINEAR_A_SIGN_AB040, 'codepoint, 0x10623);
17394put('LINEAR_A_SIGN_AB041, 'codepoint, 0x10624);
17395put('LINEAR_A_SIGN_AB044, 'codepoint, 0x10625);
17396put('LINEAR_A_SIGN_AB045, 'codepoint, 0x10626);
17397put('LINEAR_A_SIGN_AB046, 'codepoint, 0x10627);
17398put('LINEAR_A_SIGN_AB047, 'codepoint, 0x10628);
17399put('LINEAR_A_SIGN_AB048, 'codepoint, 0x10629);
17400put('LINEAR_A_SIGN_AB049, 'codepoint, 0x1062A);
17401put('LINEAR_A_SIGN_AB050, 'codepoint, 0x1062B);
17402put('LINEAR_A_SIGN_AB051, 'codepoint, 0x1062C);
17403put('LINEAR_A_SIGN_AB053, 'codepoint, 0x1062D);
17404put('LINEAR_A_SIGN_AB054, 'codepoint, 0x1062E);
17405put('LINEAR_A_SIGN_AB055, 'codepoint, 0x1062F);
17406put('LINEAR_A_SIGN_AB056, 'codepoint, 0x10630);
17407put('LINEAR_A_SIGN_AB057, 'codepoint, 0x10631);
17408put('LINEAR_A_SIGN_AB058, 'codepoint, 0x10632);
17409put('LINEAR_A_SIGN_AB059, 'codepoint, 0x10633);
17410put('LINEAR_A_SIGN_AB060, 'codepoint, 0x10634);
17411put('LINEAR_A_SIGN_AB061, 'codepoint, 0x10635);
17412put('LINEAR_A_SIGN_AB065, 'codepoint, 0x10636);
17413put('LINEAR_A_SIGN_AB066, 'codepoint, 0x10637);
17414put('LINEAR_A_SIGN_AB067, 'codepoint, 0x10638);
17415put('LINEAR_A_SIGN_AB069, 'codepoint, 0x10639);
17416put('LINEAR_A_SIGN_AB070, 'codepoint, 0x1063A);
17417put('LINEAR_A_SIGN_AB073, 'codepoint, 0x1063B);
17418put('LINEAR_A_SIGN_AB074, 'codepoint, 0x1063C);
17419put('LINEAR_A_SIGN_AB076, 'codepoint, 0x1063D);
17420put('LINEAR_A_SIGN_AB077, 'codepoint, 0x1063E);
17421put('LINEAR_A_SIGN_AB078, 'codepoint, 0x1063F);
17422put('LINEAR_A_SIGN_AB079, 'codepoint, 0x10640);
17423put('LINEAR_A_SIGN_AB080, 'codepoint, 0x10641);
17424put('LINEAR_A_SIGN_AB081, 'codepoint, 0x10642);
17425put('LINEAR_A_SIGN_AB082, 'codepoint, 0x10643);
17426put('LINEAR_A_SIGN_AB085, 'codepoint, 0x10644);
17427put('LINEAR_A_SIGN_AB086, 'codepoint, 0x10645);
17428put('LINEAR_A_SIGN_AB087, 'codepoint, 0x10646);
17429put('LINEAR_A_SIGN_A100_102, 'codepoint, 0x10647);
17430put('LINEAR_A_SIGN_AB118, 'codepoint, 0x10648);
17431put('LINEAR_A_SIGN_AB120, 'codepoint, 0x10649);
17432put('LINEAR_A_SIGN_A120B, 'codepoint, 0x1064A);
17433put('LINEAR_A_SIGN_AB122, 'codepoint, 0x1064B);
17434put('LINEAR_A_SIGN_AB123, 'codepoint, 0x1064C);
17435put('LINEAR_A_SIGN_AB131A, 'codepoint, 0x1064D);
17436put('LINEAR_A_SIGN_AB131B, 'codepoint, 0x1064E);
17437put('LINEAR_A_SIGN_A131C, 'codepoint, 0x1064F);
17438put('LINEAR_A_SIGN_AB164, 'codepoint, 0x10650);
17439put('LINEAR_A_SIGN_AB171, 'codepoint, 0x10651);
17440put('LINEAR_A_SIGN_AB180, 'codepoint, 0x10652);
17441put('LINEAR_A_SIGN_AB188, 'codepoint, 0x10653);
17442put('LINEAR_A_SIGN_AB191, 'codepoint, 0x10654);
17443put('LINEAR_A_SIGN_A301, 'codepoint, 0x10655);
17444put('LINEAR_A_SIGN_A302, 'codepoint, 0x10656);
17445put('LINEAR_A_SIGN_A303, 'codepoint, 0x10657);
17446put('LINEAR_A_SIGN_A304, 'codepoint, 0x10658);
17447put('LINEAR_A_SIGN_A305, 'codepoint, 0x10659);
17448put('LINEAR_A_SIGN_A306, 'codepoint, 0x1065A);
17449put('LINEAR_A_SIGN_A307, 'codepoint, 0x1065B);
17450put('LINEAR_A_SIGN_A308, 'codepoint, 0x1065C);
17451put('LINEAR_A_SIGN_A309A, 'codepoint, 0x1065D);
17452put('LINEAR_A_SIGN_A309B, 'codepoint, 0x1065E);
17453put('LINEAR_A_SIGN_A309C, 'codepoint, 0x1065F);
17454put('LINEAR_A_SIGN_A310, 'codepoint, 0x10660);
17455put('LINEAR_A_SIGN_A311, 'codepoint, 0x10661);
17456put('LINEAR_A_SIGN_A312, 'codepoint, 0x10662);
17457put('LINEAR_A_SIGN_A313A, 'codepoint, 0x10663);
17458put('LINEAR_A_SIGN_A313B, 'codepoint, 0x10664);
17459put('LINEAR_A_SIGN_A313C, 'codepoint, 0x10665);
17460put('LINEAR_A_SIGN_A314, 'codepoint, 0x10666);
17461put('LINEAR_A_SIGN_A315, 'codepoint, 0x10667);
17462put('LINEAR_A_SIGN_A316, 'codepoint, 0x10668);
17463put('LINEAR_A_SIGN_A317, 'codepoint, 0x10669);
17464put('LINEAR_A_SIGN_A318, 'codepoint, 0x1066A);
17465put('LINEAR_A_SIGN_A319, 'codepoint, 0x1066B);
17466put('LINEAR_A_SIGN_A320, 'codepoint, 0x1066C);
17467put('LINEAR_A_SIGN_A321, 'codepoint, 0x1066D);
17468put('LINEAR_A_SIGN_A322, 'codepoint, 0x1066E);
17469put('LINEAR_A_SIGN_A323, 'codepoint, 0x1066F);
17470put('LINEAR_A_SIGN_A324, 'codepoint, 0x10670);
17471put('LINEAR_A_SIGN_A325, 'codepoint, 0x10671);
17472put('LINEAR_A_SIGN_A326, 'codepoint, 0x10672);
17473put('LINEAR_A_SIGN_A327, 'codepoint, 0x10673);
17474put('LINEAR_A_SIGN_A328, 'codepoint, 0x10674);
17475put('LINEAR_A_SIGN_A329, 'codepoint, 0x10675);
17476put('LINEAR_A_SIGN_A330, 'codepoint, 0x10676);
17477put('LINEAR_A_SIGN_A331, 'codepoint, 0x10677);
17478put('LINEAR_A_SIGN_A332, 'codepoint, 0x10678);
17479put('LINEAR_A_SIGN_A333, 'codepoint, 0x10679);
17480put('LINEAR_A_SIGN_A334, 'codepoint, 0x1067A);
17481put('LINEAR_A_SIGN_A335, 'codepoint, 0x1067B);
17482put('LINEAR_A_SIGN_A336, 'codepoint, 0x1067C);
17483put('LINEAR_A_SIGN_A337, 'codepoint, 0x1067D);
17484put('LINEAR_A_SIGN_A338, 'codepoint, 0x1067E);
17485put('LINEAR_A_SIGN_A339, 'codepoint, 0x1067F);
17486put('LINEAR_A_SIGN_A340, 'codepoint, 0x10680);
17487put('LINEAR_A_SIGN_A341, 'codepoint, 0x10681);
17488put('LINEAR_A_SIGN_A342, 'codepoint, 0x10682);
17489put('LINEAR_A_SIGN_A343, 'codepoint, 0x10683);
17490put('LINEAR_A_SIGN_A344, 'codepoint, 0x10684);
17491put('LINEAR_A_SIGN_A345, 'codepoint, 0x10685);
17492put('LINEAR_A_SIGN_A346, 'codepoint, 0x10686);
17493put('LINEAR_A_SIGN_A347, 'codepoint, 0x10687);
17494put('LINEAR_A_SIGN_A348, 'codepoint, 0x10688);
17495put('LINEAR_A_SIGN_A349, 'codepoint, 0x10689);
17496put('LINEAR_A_SIGN_A350, 'codepoint, 0x1068A);
17497put('LINEAR_A_SIGN_A351, 'codepoint, 0x1068B);
17498put('LINEAR_A_SIGN_A352, 'codepoint, 0x1068C);
17499put('LINEAR_A_SIGN_A353, 'codepoint, 0x1068D);
17500put('LINEAR_A_SIGN_A354, 'codepoint, 0x1068E);
17501put('LINEAR_A_SIGN_A355, 'codepoint, 0x1068F);
17502put('LINEAR_A_SIGN_A356, 'codepoint, 0x10690);
17503put('LINEAR_A_SIGN_A357, 'codepoint, 0x10691);
17504put('LINEAR_A_SIGN_A358, 'codepoint, 0x10692);
17505put('LINEAR_A_SIGN_A359, 'codepoint, 0x10693);
17506put('LINEAR_A_SIGN_A360, 'codepoint, 0x10694);
17507put('LINEAR_A_SIGN_A361, 'codepoint, 0x10695);
17508put('LINEAR_A_SIGN_A362, 'codepoint, 0x10696);
17509put('LINEAR_A_SIGN_A363, 'codepoint, 0x10697);
17510put('LINEAR_A_SIGN_A364, 'codepoint, 0x10698);
17511put('LINEAR_A_SIGN_A365, 'codepoint, 0x10699);
17512put('LINEAR_A_SIGN_A366, 'codepoint, 0x1069A);
17513put('LINEAR_A_SIGN_A367, 'codepoint, 0x1069B);
17514put('LINEAR_A_SIGN_A368, 'codepoint, 0x1069C);
17515put('LINEAR_A_SIGN_A369, 'codepoint, 0x1069D);
17516put('LINEAR_A_SIGN_A370, 'codepoint, 0x1069E);
17517put('LINEAR_A_SIGN_A371, 'codepoint, 0x1069F);
17518put('LINEAR_A_SIGN_A400_VAS, 'codepoint, 0x106A0);
17519put('LINEAR_A_SIGN_A401_VAS, 'codepoint, 0x106A1);
17520put('LINEAR_A_SIGN_A402_VAS, 'codepoint, 0x106A2);
17521put('LINEAR_A_SIGN_A403_VAS, 'codepoint, 0x106A3);
17522put('LINEAR_A_SIGN_A404_VAS, 'codepoint, 0x106A4);
17523put('LINEAR_A_SIGN_A405_VAS, 'codepoint, 0x106A5);
17524put('LINEAR_A_SIGN_A406_VAS, 'codepoint, 0x106A6);
17525put('LINEAR_A_SIGN_A407_VAS, 'codepoint, 0x106A7);
17526put('LINEAR_A_SIGN_A408_VAS, 'codepoint, 0x106A8);
17527put('LINEAR_A_SIGN_A409_VAS, 'codepoint, 0x106A9);
17528put('LINEAR_A_SIGN_A410_VAS, 'codepoint, 0x106AA);
17529put('LINEAR_A_SIGN_A411_VAS, 'codepoint, 0x106AB);
17530put('LINEAR_A_SIGN_A412_VAS, 'codepoint, 0x106AC);
17531put('LINEAR_A_SIGN_A413_VAS, 'codepoint, 0x106AD);
17532put('LINEAR_A_SIGN_A414_VAS, 'codepoint, 0x106AE);
17533put('LINEAR_A_SIGN_A415_VAS, 'codepoint, 0x106AF);
17534put('LINEAR_A_SIGN_A416_VAS, 'codepoint, 0x106B0);
17535put('LINEAR_A_SIGN_A417_VAS, 'codepoint, 0x106B1);
17536put('LINEAR_A_SIGN_A418_VAS, 'codepoint, 0x106B2);
17537put('LINEAR_A_SIGN_A501, 'codepoint, 0x106B3);
17538put('LINEAR_A_SIGN_A502, 'codepoint, 0x106B4);
17539put('LINEAR_A_SIGN_A503, 'codepoint, 0x106B5);
17540put('LINEAR_A_SIGN_A504, 'codepoint, 0x106B6);
17541put('LINEAR_A_SIGN_A505, 'codepoint, 0x106B7);
17542put('LINEAR_A_SIGN_A506, 'codepoint, 0x106B8);
17543put('LINEAR_A_SIGN_A508, 'codepoint, 0x106B9);
17544put('LINEAR_A_SIGN_A509, 'codepoint, 0x106BA);
17545put('LINEAR_A_SIGN_A510, 'codepoint, 0x106BB);
17546put('LINEAR_A_SIGN_A511, 'codepoint, 0x106BC);
17547put('LINEAR_A_SIGN_A512, 'codepoint, 0x106BD);
17548put('LINEAR_A_SIGN_A513, 'codepoint, 0x106BE);
17549put('LINEAR_A_SIGN_A515, 'codepoint, 0x106BF);
17550put('LINEAR_A_SIGN_A516, 'codepoint, 0x106C0);
17551put('LINEAR_A_SIGN_A520, 'codepoint, 0x106C1);
17552put('LINEAR_A_SIGN_A521, 'codepoint, 0x106C2);
17553put('LINEAR_A_SIGN_A523, 'codepoint, 0x106C3);
17554put('LINEAR_A_SIGN_A524, 'codepoint, 0x106C4);
17555put('LINEAR_A_SIGN_A525, 'codepoint, 0x106C5);
17556put('LINEAR_A_SIGN_A526, 'codepoint, 0x106C6);
17557put('LINEAR_A_SIGN_A527, 'codepoint, 0x106C7);
17558put('LINEAR_A_SIGN_A528, 'codepoint, 0x106C8);
17559put('LINEAR_A_SIGN_A529, 'codepoint, 0x106C9);
17560put('LINEAR_A_SIGN_A530, 'codepoint, 0x106CA);
17561put('LINEAR_A_SIGN_A531, 'codepoint, 0x106CB);
17562put('LINEAR_A_SIGN_A532, 'codepoint, 0x106CC);
17563put('LINEAR_A_SIGN_A534, 'codepoint, 0x106CD);
17564put('LINEAR_A_SIGN_A535, 'codepoint, 0x106CE);
17565put('LINEAR_A_SIGN_A536, 'codepoint, 0x106CF);
17566put('LINEAR_A_SIGN_A537, 'codepoint, 0x106D0);
17567put('LINEAR_A_SIGN_A538, 'codepoint, 0x106D1);
17568put('LINEAR_A_SIGN_A539, 'codepoint, 0x106D2);
17569put('LINEAR_A_SIGN_A540, 'codepoint, 0x106D3);
17570put('LINEAR_A_SIGN_A541, 'codepoint, 0x106D4);
17571put('LINEAR_A_SIGN_A542, 'codepoint, 0x106D5);
17572put('LINEAR_A_SIGN_A545, 'codepoint, 0x106D6);
17573put('LINEAR_A_SIGN_A547, 'codepoint, 0x106D7);
17574put('LINEAR_A_SIGN_A548, 'codepoint, 0x106D8);
17575put('LINEAR_A_SIGN_A549, 'codepoint, 0x106D9);
17576put('LINEAR_A_SIGN_A550, 'codepoint, 0x106DA);
17577put('LINEAR_A_SIGN_A551, 'codepoint, 0x106DB);
17578put('LINEAR_A_SIGN_A552, 'codepoint, 0x106DC);
17579put('LINEAR_A_SIGN_A553, 'codepoint, 0x106DD);
17580put('LINEAR_A_SIGN_A554, 'codepoint, 0x106DE);
17581put('LINEAR_A_SIGN_A555, 'codepoint, 0x106DF);
17582put('LINEAR_A_SIGN_A556, 'codepoint, 0x106E0);
17583put('LINEAR_A_SIGN_A557, 'codepoint, 0x106E1);
17584put('LINEAR_A_SIGN_A559, 'codepoint, 0x106E2);
17585put('LINEAR_A_SIGN_A563, 'codepoint, 0x106E3);
17586put('LINEAR_A_SIGN_A564, 'codepoint, 0x106E4);
17587put('LINEAR_A_SIGN_A565, 'codepoint, 0x106E5);
17588put('LINEAR_A_SIGN_A566, 'codepoint, 0x106E6);
17589put('LINEAR_A_SIGN_A568, 'codepoint, 0x106E7);
17590put('LINEAR_A_SIGN_A569, 'codepoint, 0x106E8);
17591put('LINEAR_A_SIGN_A570, 'codepoint, 0x106E9);
17592put('LINEAR_A_SIGN_A571, 'codepoint, 0x106EA);
17593put('LINEAR_A_SIGN_A572, 'codepoint, 0x106EB);
17594put('LINEAR_A_SIGN_A573, 'codepoint, 0x106EC);
17595put('LINEAR_A_SIGN_A574, 'codepoint, 0x106ED);
17596put('LINEAR_A_SIGN_A575, 'codepoint, 0x106EE);
17597put('LINEAR_A_SIGN_A576, 'codepoint, 0x106EF);
17598put('LINEAR_A_SIGN_A577, 'codepoint, 0x106F0);
17599put('LINEAR_A_SIGN_A578, 'codepoint, 0x106F1);
17600put('LINEAR_A_SIGN_A579, 'codepoint, 0x106F2);
17601put('LINEAR_A_SIGN_A580, 'codepoint, 0x106F3);
17602put('LINEAR_A_SIGN_A581, 'codepoint, 0x106F4);
17603put('LINEAR_A_SIGN_A582, 'codepoint, 0x106F5);
17604put('LINEAR_A_SIGN_A583, 'codepoint, 0x106F6);
17605put('LINEAR_A_SIGN_A584, 'codepoint, 0x106F7);
17606put('LINEAR_A_SIGN_A585, 'codepoint, 0x106F8);
17607put('LINEAR_A_SIGN_A586, 'codepoint, 0x106F9);
17608put('LINEAR_A_SIGN_A587, 'codepoint, 0x106FA);
17609put('LINEAR_A_SIGN_A588, 'codepoint, 0x106FB);
17610put('LINEAR_A_SIGN_A589, 'codepoint, 0x106FC);
17611put('LINEAR_A_SIGN_A591, 'codepoint, 0x106FD);
17612put('LINEAR_A_SIGN_A592, 'codepoint, 0x106FE);
17613put('LINEAR_A_SIGN_A594, 'codepoint, 0x106FF);
17614put('LINEAR_A_SIGN_A595, 'codepoint, 0x10700);
17615put('LINEAR_A_SIGN_A596, 'codepoint, 0x10701);
17616put('LINEAR_A_SIGN_A598, 'codepoint, 0x10702);
17617put('LINEAR_A_SIGN_A600, 'codepoint, 0x10703);
17618put('LINEAR_A_SIGN_A601, 'codepoint, 0x10704);
17619put('LINEAR_A_SIGN_A602, 'codepoint, 0x10705);
17620put('LINEAR_A_SIGN_A603, 'codepoint, 0x10706);
17621put('LINEAR_A_SIGN_A604, 'codepoint, 0x10707);
17622put('LINEAR_A_SIGN_A606, 'codepoint, 0x10708);
17623put('LINEAR_A_SIGN_A608, 'codepoint, 0x10709);
17624put('LINEAR_A_SIGN_A609, 'codepoint, 0x1070A);
17625put('LINEAR_A_SIGN_A610, 'codepoint, 0x1070B);
17626put('LINEAR_A_SIGN_A611, 'codepoint, 0x1070C);
17627put('LINEAR_A_SIGN_A612, 'codepoint, 0x1070D);
17628put('LINEAR_A_SIGN_A613, 'codepoint, 0x1070E);
17629put('LINEAR_A_SIGN_A614, 'codepoint, 0x1070F);
17630put('LINEAR_A_SIGN_A615, 'codepoint, 0x10710);
17631put('LINEAR_A_SIGN_A616, 'codepoint, 0x10711);
17632put('LINEAR_A_SIGN_A617, 'codepoint, 0x10712);
17633put('LINEAR_A_SIGN_A618, 'codepoint, 0x10713);
17634put('LINEAR_A_SIGN_A619, 'codepoint, 0x10714);
17635put('LINEAR_A_SIGN_A620, 'codepoint, 0x10715);
17636put('LINEAR_A_SIGN_A621, 'codepoint, 0x10716);
17637put('LINEAR_A_SIGN_A622, 'codepoint, 0x10717);
17638put('LINEAR_A_SIGN_A623, 'codepoint, 0x10718);
17639put('LINEAR_A_SIGN_A624, 'codepoint, 0x10719);
17640put('LINEAR_A_SIGN_A626, 'codepoint, 0x1071A);
17641put('LINEAR_A_SIGN_A627, 'codepoint, 0x1071B);
17642put('LINEAR_A_SIGN_A628, 'codepoint, 0x1071C);
17643put('LINEAR_A_SIGN_A629, 'codepoint, 0x1071D);
17644put('LINEAR_A_SIGN_A634, 'codepoint, 0x1071E);
17645put('LINEAR_A_SIGN_A637, 'codepoint, 0x1071F);
17646put('LINEAR_A_SIGN_A638, 'codepoint, 0x10720);
17647put('LINEAR_A_SIGN_A640, 'codepoint, 0x10721);
17648put('LINEAR_A_SIGN_A642, 'codepoint, 0x10722);
17649put('LINEAR_A_SIGN_A643, 'codepoint, 0x10723);
17650put('LINEAR_A_SIGN_A644, 'codepoint, 0x10724);
17651put('LINEAR_A_SIGN_A645, 'codepoint, 0x10725);
17652put('LINEAR_A_SIGN_A646, 'codepoint, 0x10726);
17653put('LINEAR_A_SIGN_A648, 'codepoint, 0x10727);
17654put('LINEAR_A_SIGN_A649, 'codepoint, 0x10728);
17655put('LINEAR_A_SIGN_A651, 'codepoint, 0x10729);
17656put('LINEAR_A_SIGN_A652, 'codepoint, 0x1072A);
17657put('LINEAR_A_SIGN_A653, 'codepoint, 0x1072B);
17658put('LINEAR_A_SIGN_A654, 'codepoint, 0x1072C);
17659put('LINEAR_A_SIGN_A655, 'codepoint, 0x1072D);
17660put('LINEAR_A_SIGN_A656, 'codepoint, 0x1072E);
17661put('LINEAR_A_SIGN_A657, 'codepoint, 0x1072F);
17662put('LINEAR_A_SIGN_A658, 'codepoint, 0x10730);
17663put('LINEAR_A_SIGN_A659, 'codepoint, 0x10731);
17664put('LINEAR_A_SIGN_A660, 'codepoint, 0x10732);
17665put('LINEAR_A_SIGN_A661, 'codepoint, 0x10733);
17666put('LINEAR_A_SIGN_A662, 'codepoint, 0x10734);
17667put('LINEAR_A_SIGN_A663, 'codepoint, 0x10735);
17668put('LINEAR_A_SIGN_A664, 'codepoint, 0x10736);
17669put('LINEAR_A_SIGN_A701_A, 'codepoint, 0x10740);
17670put('LINEAR_A_SIGN_A702_B, 'codepoint, 0x10741);
17671put('LINEAR_A_SIGN_A703_D, 'codepoint, 0x10742);
17672put('LINEAR_A_SIGN_A704_E, 'codepoint, 0x10743);
17673put('LINEAR_A_SIGN_A705_F, 'codepoint, 0x10744);
17674put('LINEAR_A_SIGN_A706_H, 'codepoint, 0x10745);
17675put('LINEAR_A_SIGN_A707_J, 'codepoint, 0x10746);
17676put('LINEAR_A_SIGN_A708_K, 'codepoint, 0x10747);
17677put('LINEAR_A_SIGN_A709_L, 'codepoint, 0x10748);
17678put('LINEAR_A_SIGN_A709_2_L2, 'codepoint, 0x10749);
17679put('LINEAR_A_SIGN_A709_3_L3, 'codepoint, 0x1074A);
17680put('LINEAR_A_SIGN_A709_4_L4, 'codepoint, 0x1074B);
17681put('LINEAR_A_SIGN_A709_6_L6, 'codepoint, 0x1074C);
17682put('LINEAR_A_SIGN_A710_W, 'codepoint, 0x1074D);
17683put('LINEAR_A_SIGN_A711_X, 'codepoint, 0x1074E);
17684put('LINEAR_A_SIGN_A712_Y, 'codepoint, 0x1074F);
17685put('LINEAR_A_SIGN_A713_OMEGA, 'codepoint, 0x10750);
17686put('LINEAR_A_SIGN_A714_ABB, 'codepoint, 0x10751);
17687put('LINEAR_A_SIGN_A715_BB, 'codepoint, 0x10752);
17688put('LINEAR_A_SIGN_A717_DD, 'codepoint, 0x10753);
17689put('LINEAR_A_SIGN_A726_EYYY, 'codepoint, 0x10754);
17690put('LINEAR_A_SIGN_A732_JE, 'codepoint, 0x10755);
17691put('LINEAR_A_SIGN_A800, 'codepoint, 0x10760);
17692put('LINEAR_A_SIGN_A801, 'codepoint, 0x10761);
17693put('LINEAR_A_SIGN_A802, 'codepoint, 0x10762);
17694put('LINEAR_A_SIGN_A803, 'codepoint, 0x10763);
17695put('LINEAR_A_SIGN_A804, 'codepoint, 0x10764);
17696put('LINEAR_A_SIGN_A805, 'codepoint, 0x10765);
17697put('LINEAR_A_SIGN_A806, 'codepoint, 0x10766);
17698put('LINEAR_A_SIGN_A807, 'codepoint, 0x10767);
17699put('CYPRIOT_SYLLABLE_A, 'codepoint, 0x10800);
17700put('CYPRIOT_SYLLABLE_E, 'codepoint, 0x10801);
17701put('CYPRIOT_SYLLABLE_I, 'codepoint, 0x10802);
17702put('CYPRIOT_SYLLABLE_O, 'codepoint, 0x10803);
17703put('CYPRIOT_SYLLABLE_U, 'codepoint, 0x10804);
17704put('CYPRIOT_SYLLABLE_JA, 'codepoint, 0x10805);
17705put('CYPRIOT_SYLLABLE_JO, 'codepoint, 0x10808);
17706put('CYPRIOT_SYLLABLE_KA, 'codepoint, 0x1080A);
17707put('CYPRIOT_SYLLABLE_KE, 'codepoint, 0x1080B);
17708put('CYPRIOT_SYLLABLE_KI, 'codepoint, 0x1080C);
17709put('CYPRIOT_SYLLABLE_KO, 'codepoint, 0x1080D);
17710put('CYPRIOT_SYLLABLE_KU, 'codepoint, 0x1080E);
17711put('CYPRIOT_SYLLABLE_LA, 'codepoint, 0x1080F);
17712put('CYPRIOT_SYLLABLE_LE, 'codepoint, 0x10810);
17713put('CYPRIOT_SYLLABLE_LI, 'codepoint, 0x10811);
17714put('CYPRIOT_SYLLABLE_LO, 'codepoint, 0x10812);
17715put('CYPRIOT_SYLLABLE_LU, 'codepoint, 0x10813);
17716put('CYPRIOT_SYLLABLE_MA, 'codepoint, 0x10814);
17717put('CYPRIOT_SYLLABLE_ME, 'codepoint, 0x10815);
17718put('CYPRIOT_SYLLABLE_MI, 'codepoint, 0x10816);
17719put('CYPRIOT_SYLLABLE_MO, 'codepoint, 0x10817);
17720put('CYPRIOT_SYLLABLE_MU, 'codepoint, 0x10818);
17721put('CYPRIOT_SYLLABLE_NA, 'codepoint, 0x10819);
17722put('CYPRIOT_SYLLABLE_NE, 'codepoint, 0x1081A);
17723put('CYPRIOT_SYLLABLE_NI, 'codepoint, 0x1081B);
17724put('CYPRIOT_SYLLABLE_NO, 'codepoint, 0x1081C);
17725put('CYPRIOT_SYLLABLE_NU, 'codepoint, 0x1081D);
17726put('CYPRIOT_SYLLABLE_PA, 'codepoint, 0x1081E);
17727put('CYPRIOT_SYLLABLE_PE, 'codepoint, 0x1081F);
17728put('CYPRIOT_SYLLABLE_PI, 'codepoint, 0x10820);
17729put('CYPRIOT_SYLLABLE_PO, 'codepoint, 0x10821);
17730put('CYPRIOT_SYLLABLE_PU, 'codepoint, 0x10822);
17731put('CYPRIOT_SYLLABLE_RA, 'codepoint, 0x10823);
17732put('CYPRIOT_SYLLABLE_RE, 'codepoint, 0x10824);
17733put('CYPRIOT_SYLLABLE_RI, 'codepoint, 0x10825);
17734put('CYPRIOT_SYLLABLE_RO, 'codepoint, 0x10826);
17735put('CYPRIOT_SYLLABLE_RU, 'codepoint, 0x10827);
17736put('CYPRIOT_SYLLABLE_SA, 'codepoint, 0x10828);
17737put('CYPRIOT_SYLLABLE_SE, 'codepoint, 0x10829);
17738put('CYPRIOT_SYLLABLE_SI, 'codepoint, 0x1082A);
17739put('CYPRIOT_SYLLABLE_SO, 'codepoint, 0x1082B);
17740put('CYPRIOT_SYLLABLE_SU, 'codepoint, 0x1082C);
17741put('CYPRIOT_SYLLABLE_TA, 'codepoint, 0x1082D);
17742put('CYPRIOT_SYLLABLE_TE, 'codepoint, 0x1082E);
17743put('CYPRIOT_SYLLABLE_TI, 'codepoint, 0x1082F);
17744put('CYPRIOT_SYLLABLE_TO, 'codepoint, 0x10830);
17745put('CYPRIOT_SYLLABLE_TU, 'codepoint, 0x10831);
17746put('CYPRIOT_SYLLABLE_WA, 'codepoint, 0x10832);
17747put('CYPRIOT_SYLLABLE_WE, 'codepoint, 0x10833);
17748put('CYPRIOT_SYLLABLE_WI, 'codepoint, 0x10834);
17749put('CYPRIOT_SYLLABLE_WO, 'codepoint, 0x10835);
17750put('CYPRIOT_SYLLABLE_XA, 'codepoint, 0x10837);
17751put('CYPRIOT_SYLLABLE_XE, 'codepoint, 0x10838);
17752put('CYPRIOT_SYLLABLE_ZA, 'codepoint, 0x1083C);
17753put('CYPRIOT_SYLLABLE_ZO, 'codepoint, 0x1083F);
17754put('IMPERIAL_ARAMAIC_LETTER_ALEPH, 'codepoint, 0x10840);
17755put('IMPERIAL_ARAMAIC_LETTER_BETH, 'codepoint, 0x10841);
17756put('IMPERIAL_ARAMAIC_LETTER_GIMEL, 'codepoint, 0x10842);
17757put('IMPERIAL_ARAMAIC_LETTER_DALETH, 'codepoint, 0x10843);
17758put('IMPERIAL_ARAMAIC_LETTER_HE, 'codepoint, 0x10844);
17759put('IMPERIAL_ARAMAIC_LETTER_WAW, 'codepoint, 0x10845);
17760put('IMPERIAL_ARAMAIC_LETTER_ZAYIN, 'codepoint, 0x10846);
17761put('IMPERIAL_ARAMAIC_LETTER_HETH, 'codepoint, 0x10847);
17762put('IMPERIAL_ARAMAIC_LETTER_TETH, 'codepoint, 0x10848);
17763put('IMPERIAL_ARAMAIC_LETTER_YODH, 'codepoint, 0x10849);
17764put('IMPERIAL_ARAMAIC_LETTER_KAPH, 'codepoint, 0x1084A);
17765put('IMPERIAL_ARAMAIC_LETTER_LAMEDH, 'codepoint, 0x1084B);
17766put('IMPERIAL_ARAMAIC_LETTER_MEM, 'codepoint, 0x1084C);
17767put('IMPERIAL_ARAMAIC_LETTER_NUN, 'codepoint, 0x1084D);
17768put('IMPERIAL_ARAMAIC_LETTER_SAMEKH, 'codepoint, 0x1084E);
17769put('IMPERIAL_ARAMAIC_LETTER_AYIN, 'codepoint, 0x1084F);
17770put('IMPERIAL_ARAMAIC_LETTER_PE, 'codepoint, 0x10850);
17771put('IMPERIAL_ARAMAIC_LETTER_SADHE, 'codepoint, 0x10851);
17772put('IMPERIAL_ARAMAIC_LETTER_QOPH, 'codepoint, 0x10852);
17773put('IMPERIAL_ARAMAIC_LETTER_RESH, 'codepoint, 0x10853);
17774put('IMPERIAL_ARAMAIC_LETTER_SHIN, 'codepoint, 0x10854);
17775put('IMPERIAL_ARAMAIC_LETTER_TAW, 'codepoint, 0x10855);
17776put('IMPERIAL_ARAMAIC_SECTION_SIGN, 'codepoint, 0x10857);
17777put('IMPERIAL_ARAMAIC_NUMBER_ONE, 'codepoint, 0x10858);
17778put('IMPERIAL_ARAMAIC_NUMBER_TWO, 'codepoint, 0x10859);
17779put('IMPERIAL_ARAMAIC_NUMBER_THREE, 'codepoint, 0x1085A);
17780put('IMPERIAL_ARAMAIC_NUMBER_TEN, 'codepoint, 0x1085B);
17781put('IMPERIAL_ARAMAIC_NUMBER_TWENTY, 'codepoint, 0x1085C);
17782put('IMPERIAL_ARAMAIC_NUMBER_ONE_HUNDRED, 'codepoint, 0x1085D);
17783put('IMPERIAL_ARAMAIC_NUMBER_ONE_THOUSAND, 'codepoint, 0x1085E);
17784put('IMPERIAL_ARAMAIC_NUMBER_TEN_THOUSAND, 'codepoint, 0x1085F);
17785put('PALMYRENE_LETTER_ALEPH, 'codepoint, 0x10860);
17786put('PALMYRENE_LETTER_BETH, 'codepoint, 0x10861);
17787put('PALMYRENE_LETTER_GIMEL, 'codepoint, 0x10862);
17788put('PALMYRENE_LETTER_DALETH, 'codepoint, 0x10863);
17789put('PALMYRENE_LETTER_HE, 'codepoint, 0x10864);
17790put('PALMYRENE_LETTER_WAW, 'codepoint, 0x10865);
17791put('PALMYRENE_LETTER_ZAYIN, 'codepoint, 0x10866);
17792put('PALMYRENE_LETTER_HETH, 'codepoint, 0x10867);
17793put('PALMYRENE_LETTER_TETH, 'codepoint, 0x10868);
17794put('PALMYRENE_LETTER_YODH, 'codepoint, 0x10869);
17795put('PALMYRENE_LETTER_KAPH, 'codepoint, 0x1086A);
17796put('PALMYRENE_LETTER_LAMEDH, 'codepoint, 0x1086B);
17797put('PALMYRENE_LETTER_MEM, 'codepoint, 0x1086C);
17798put('PALMYRENE_LETTER_FINAL_NUN, 'codepoint, 0x1086D);
17799put('PALMYRENE_LETTER_NUN, 'codepoint, 0x1086E);
17800put('PALMYRENE_LETTER_SAMEKH, 'codepoint, 0x1086F);
17801put('PALMYRENE_LETTER_AYIN, 'codepoint, 0x10870);
17802put('PALMYRENE_LETTER_PE, 'codepoint, 0x10871);
17803put('PALMYRENE_LETTER_SADHE, 'codepoint, 0x10872);
17804put('PALMYRENE_LETTER_QOPH, 'codepoint, 0x10873);
17805put('PALMYRENE_LETTER_RESH, 'codepoint, 0x10874);
17806put('PALMYRENE_LETTER_SHIN, 'codepoint, 0x10875);
17807put('PALMYRENE_LETTER_TAW, 'codepoint, 0x10876);
17808put('PALMYRENE_LEFT_POINTING_FLEURON, 'codepoint, 0x10877);
17809put('PALMYRENE_RIGHT_POINTING_FLEURON, 'codepoint, 0x10878);
17810put('PALMYRENE_NUMBER_ONE, 'codepoint, 0x10879);
17811put('PALMYRENE_NUMBER_TWO, 'codepoint, 0x1087A);
17812put('PALMYRENE_NUMBER_THREE, 'codepoint, 0x1087B);
17813put('PALMYRENE_NUMBER_FOUR, 'codepoint, 0x1087C);
17814put('PALMYRENE_NUMBER_FIVE, 'codepoint, 0x1087D);
17815put('PALMYRENE_NUMBER_TEN, 'codepoint, 0x1087E);
17816put('PALMYRENE_NUMBER_TWENTY, 'codepoint, 0x1087F);
17817put('NABATAEAN_LETTER_FINAL_ALEPH, 'codepoint, 0x10880);
17818put('NABATAEAN_LETTER_ALEPH, 'codepoint, 0x10881);
17819put('NABATAEAN_LETTER_FINAL_BETH, 'codepoint, 0x10882);
17820put('NABATAEAN_LETTER_BETH, 'codepoint, 0x10883);
17821put('NABATAEAN_LETTER_GIMEL, 'codepoint, 0x10884);
17822put('NABATAEAN_LETTER_DALETH, 'codepoint, 0x10885);
17823put('NABATAEAN_LETTER_FINAL_HE, 'codepoint, 0x10886);
17824put('NABATAEAN_LETTER_HE, 'codepoint, 0x10887);
17825put('NABATAEAN_LETTER_WAW, 'codepoint, 0x10888);
17826put('NABATAEAN_LETTER_ZAYIN, 'codepoint, 0x10889);
17827put('NABATAEAN_LETTER_HETH, 'codepoint, 0x1088A);
17828put('NABATAEAN_LETTER_TETH, 'codepoint, 0x1088B);
17829put('NABATAEAN_LETTER_FINAL_YODH, 'codepoint, 0x1088C);
17830put('NABATAEAN_LETTER_YODH, 'codepoint, 0x1088D);
17831put('NABATAEAN_LETTER_FINAL_KAPH, 'codepoint, 0x1088E);
17832put('NABATAEAN_LETTER_KAPH, 'codepoint, 0x1088F);
17833put('NABATAEAN_LETTER_FINAL_LAMEDH, 'codepoint, 0x10890);
17834put('NABATAEAN_LETTER_LAMEDH, 'codepoint, 0x10891);
17835put('NABATAEAN_LETTER_FINAL_MEM, 'codepoint, 0x10892);
17836put('NABATAEAN_LETTER_MEM, 'codepoint, 0x10893);
17837put('NABATAEAN_LETTER_FINAL_NUN, 'codepoint, 0x10894);
17838put('NABATAEAN_LETTER_NUN, 'codepoint, 0x10895);
17839put('NABATAEAN_LETTER_SAMEKH, 'codepoint, 0x10896);
17840put('NABATAEAN_LETTER_AYIN, 'codepoint, 0x10897);
17841put('NABATAEAN_LETTER_PE, 'codepoint, 0x10898);
17842put('NABATAEAN_LETTER_SADHE, 'codepoint, 0x10899);
17843put('NABATAEAN_LETTER_QOPH, 'codepoint, 0x1089A);
17844put('NABATAEAN_LETTER_RESH, 'codepoint, 0x1089B);
17845put('NABATAEAN_LETTER_FINAL_SHIN, 'codepoint, 0x1089C);
17846put('NABATAEAN_LETTER_SHIN, 'codepoint, 0x1089D);
17847put('NABATAEAN_LETTER_TAW, 'codepoint, 0x1089E);
17848put('NABATAEAN_NUMBER_ONE, 'codepoint, 0x108A7);
17849put('NABATAEAN_NUMBER_TWO, 'codepoint, 0x108A8);
17850put('NABATAEAN_NUMBER_THREE, 'codepoint, 0x108A9);
17851put('NABATAEAN_NUMBER_FOUR, 'codepoint, 0x108AA);
17852put('NABATAEAN_CRUCIFORM_NUMBER_FOUR, 'codepoint, 0x108AB);
17853put('NABATAEAN_NUMBER_FIVE, 'codepoint, 0x108AC);
17854put('NABATAEAN_NUMBER_TEN, 'codepoint, 0x108AD);
17855put('NABATAEAN_NUMBER_TWENTY, 'codepoint, 0x108AE);
17856put('NABATAEAN_NUMBER_ONE_HUNDRED, 'codepoint, 0x108AF);
17857put('PHOENICIAN_LETTER_ALF, 'codepoint, 0x10900);
17858put('PHOENICIAN_LETTER_BET, 'codepoint, 0x10901);
17859put('PHOENICIAN_LETTER_GAML, 'codepoint, 0x10902);
17860put('PHOENICIAN_LETTER_DELT, 'codepoint, 0x10903);
17861put('PHOENICIAN_LETTER_HE, 'codepoint, 0x10904);
17862put('PHOENICIAN_LETTER_WAU, 'codepoint, 0x10905);
17863put('PHOENICIAN_LETTER_ZAI, 'codepoint, 0x10906);
17864put('PHOENICIAN_LETTER_HET, 'codepoint, 0x10907);
17865put('PHOENICIAN_LETTER_TET, 'codepoint, 0x10908);
17866put('PHOENICIAN_LETTER_YOD, 'codepoint, 0x10909);
17867put('PHOENICIAN_LETTER_KAF, 'codepoint, 0x1090A);
17868put('PHOENICIAN_LETTER_LAMD, 'codepoint, 0x1090B);
17869put('PHOENICIAN_LETTER_MEM, 'codepoint, 0x1090C);
17870put('PHOENICIAN_LETTER_NUN, 'codepoint, 0x1090D);
17871put('PHOENICIAN_LETTER_SEMK, 'codepoint, 0x1090E);
17872put('PHOENICIAN_LETTER_AIN, 'codepoint, 0x1090F);
17873put('PHOENICIAN_LETTER_PE, 'codepoint, 0x10910);
17874put('PHOENICIAN_LETTER_SADE, 'codepoint, 0x10911);
17875put('PHOENICIAN_LETTER_QOF, 'codepoint, 0x10912);
17876put('PHOENICIAN_LETTER_ROSH, 'codepoint, 0x10913);
17877put('PHOENICIAN_LETTER_SHIN, 'codepoint, 0x10914);
17878put('PHOENICIAN_LETTER_TAU, 'codepoint, 0x10915);
17879put('PHOENICIAN_NUMBER_ONE, 'codepoint, 0x10916);
17880put('PHOENICIAN_NUMBER_TEN, 'codepoint, 0x10917);
17881put('PHOENICIAN_NUMBER_TWENTY, 'codepoint, 0x10918);
17882put('PHOENICIAN_NUMBER_ONE_HUNDRED, 'codepoint, 0x10919);
17883put('PHOENICIAN_NUMBER_TWO, 'codepoint, 0x1091A);
17884put('PHOENICIAN_NUMBER_THREE, 'codepoint, 0x1091B);
17885put('PHOENICIAN_WORD_SEPARATOR, 'codepoint, 0x1091F);
17886put('LYDIAN_LETTER_A, 'codepoint, 0x10920);
17887put('LYDIAN_LETTER_B, 'codepoint, 0x10921);
17888put('LYDIAN_LETTER_G, 'codepoint, 0x10922);
17889put('LYDIAN_LETTER_D, 'codepoint, 0x10923);
17890put('LYDIAN_LETTER_E, 'codepoint, 0x10924);
17891put('LYDIAN_LETTER_V, 'codepoint, 0x10925);
17892put('LYDIAN_LETTER_I, 'codepoint, 0x10926);
17893put('LYDIAN_LETTER_Y, 'codepoint, 0x10927);
17894put('LYDIAN_LETTER_K, 'codepoint, 0x10928);
17895put('LYDIAN_LETTER_L, 'codepoint, 0x10929);
17896put('LYDIAN_LETTER_M, 'codepoint, 0x1092A);
17897put('LYDIAN_LETTER_N, 'codepoint, 0x1092B);
17898put('LYDIAN_LETTER_O, 'codepoint, 0x1092C);
17899put('LYDIAN_LETTER_R, 'codepoint, 0x1092D);
17900put('LYDIAN_LETTER_SS, 'codepoint, 0x1092E);
17901put('LYDIAN_LETTER_T, 'codepoint, 0x1092F);
17902put('LYDIAN_LETTER_U, 'codepoint, 0x10930);
17903put('LYDIAN_LETTER_F, 'codepoint, 0x10931);
17904put('LYDIAN_LETTER_Q, 'codepoint, 0x10932);
17905put('LYDIAN_LETTER_S, 'codepoint, 0x10933);
17906put('LYDIAN_LETTER_TT, 'codepoint, 0x10934);
17907put('LYDIAN_LETTER_AN, 'codepoint, 0x10935);
17908put('LYDIAN_LETTER_EN, 'codepoint, 0x10936);
17909put('LYDIAN_LETTER_LY, 'codepoint, 0x10937);
17910put('LYDIAN_LETTER_NN, 'codepoint, 0x10938);
17911put('LYDIAN_LETTER_C, 'codepoint, 0x10939);
17912put('LYDIAN_TRIANGULAR_MARK, 'codepoint, 0x1093F);
17913put('MEROITIC_HIEROGLYPHIC_LETTER_A, 'codepoint, 0x10980);
17914put('MEROITIC_HIEROGLYPHIC_LETTER_E, 'codepoint, 0x10981);
17915put('MEROITIC_HIEROGLYPHIC_LETTER_I, 'codepoint, 0x10982);
17916put('MEROITIC_HIEROGLYPHIC_LETTER_O, 'codepoint, 0x10983);
17917put('MEROITIC_HIEROGLYPHIC_LETTER_YA, 'codepoint, 0x10984);
17918put('MEROITIC_HIEROGLYPHIC_LETTER_WA, 'codepoint, 0x10985);
17919put('MEROITIC_HIEROGLYPHIC_LETTER_BA, 'codepoint, 0x10986);
17920put('MEROITIC_HIEROGLYPHIC_LETTER_BA_2, 'codepoint, 0x10987);
17921put('MEROITIC_HIEROGLYPHIC_LETTER_PA, 'codepoint, 0x10988);
17922put('MEROITIC_HIEROGLYPHIC_LETTER_MA, 'codepoint, 0x10989);
17923put('MEROITIC_HIEROGLYPHIC_LETTER_NA, 'codepoint, 0x1098A);
17924put('MEROITIC_HIEROGLYPHIC_LETTER_NA_2, 'codepoint, 0x1098B);
17925put('MEROITIC_HIEROGLYPHIC_LETTER_NE, 'codepoint, 0x1098C);
17926put('MEROITIC_HIEROGLYPHIC_LETTER_NE_2, 'codepoint, 0x1098D);
17927put('MEROITIC_HIEROGLYPHIC_LETTER_RA, 'codepoint, 0x1098E);
17928put('MEROITIC_HIEROGLYPHIC_LETTER_RA_2, 'codepoint, 0x1098F);
17929put('MEROITIC_HIEROGLYPHIC_LETTER_LA, 'codepoint, 0x10990);
17930put('MEROITIC_HIEROGLYPHIC_LETTER_KHA, 'codepoint, 0x10991);
17931put('MEROITIC_HIEROGLYPHIC_LETTER_HHA, 'codepoint, 0x10992);
17932put('MEROITIC_HIEROGLYPHIC_LETTER_SA, 'codepoint, 0x10993);
17933put('MEROITIC_HIEROGLYPHIC_LETTER_SA_2, 'codepoint, 0x10994);
17934put('MEROITIC_HIEROGLYPHIC_LETTER_SE, 'codepoint, 0x10995);
17935put('MEROITIC_HIEROGLYPHIC_LETTER_KA, 'codepoint, 0x10996);
17936put('MEROITIC_HIEROGLYPHIC_LETTER_QA, 'codepoint, 0x10997);
17937put('MEROITIC_HIEROGLYPHIC_LETTER_TA, 'codepoint, 0x10998);
17938put('MEROITIC_HIEROGLYPHIC_LETTER_TA_2, 'codepoint, 0x10999);
17939put('MEROITIC_HIEROGLYPHIC_LETTER_TE, 'codepoint, 0x1099A);
17940put('MEROITIC_HIEROGLYPHIC_LETTER_TE_2, 'codepoint, 0x1099B);
17941put('MEROITIC_HIEROGLYPHIC_LETTER_TO, 'codepoint, 0x1099C);
17942put('MEROITIC_HIEROGLYPHIC_LETTER_DA, 'codepoint, 0x1099D);
17943put('MEROITIC_HIEROGLYPHIC_SYMBOL_VIDJ, 'codepoint, 0x1099E);
17944put('MEROITIC_HIEROGLYPHIC_SYMBOL_VIDJ_2, 'codepoint, 0x1099F);
17945put('MEROITIC_CURSIVE_LETTER_A, 'codepoint, 0x109A0);
17946put('MEROITIC_CURSIVE_LETTER_E, 'codepoint, 0x109A1);
17947put('MEROITIC_CURSIVE_LETTER_I, 'codepoint, 0x109A2);
17948put('MEROITIC_CURSIVE_LETTER_O, 'codepoint, 0x109A3);
17949put('MEROITIC_CURSIVE_LETTER_YA, 'codepoint, 0x109A4);
17950put('MEROITIC_CURSIVE_LETTER_WA, 'codepoint, 0x109A5);
17951put('MEROITIC_CURSIVE_LETTER_BA, 'codepoint, 0x109A6);
17952put('MEROITIC_CURSIVE_LETTER_PA, 'codepoint, 0x109A7);
17953put('MEROITIC_CURSIVE_LETTER_MA, 'codepoint, 0x109A8);
17954put('MEROITIC_CURSIVE_LETTER_NA, 'codepoint, 0x109A9);
17955put('MEROITIC_CURSIVE_LETTER_NE, 'codepoint, 0x109AA);
17956put('MEROITIC_CURSIVE_LETTER_RA, 'codepoint, 0x109AB);
17957put('MEROITIC_CURSIVE_LETTER_LA, 'codepoint, 0x109AC);
17958put('MEROITIC_CURSIVE_LETTER_KHA, 'codepoint, 0x109AD);
17959put('MEROITIC_CURSIVE_LETTER_HHA, 'codepoint, 0x109AE);
17960put('MEROITIC_CURSIVE_LETTER_SA, 'codepoint, 0x109AF);
17961put('MEROITIC_CURSIVE_LETTER_ARCHAIC_SA, 'codepoint, 0x109B0);
17962put('MEROITIC_CURSIVE_LETTER_SE, 'codepoint, 0x109B1);
17963put('MEROITIC_CURSIVE_LETTER_KA, 'codepoint, 0x109B2);
17964put('MEROITIC_CURSIVE_LETTER_QA, 'codepoint, 0x109B3);
17965put('MEROITIC_CURSIVE_LETTER_TA, 'codepoint, 0x109B4);
17966put('MEROITIC_CURSIVE_LETTER_TE, 'codepoint, 0x109B5);
17967put('MEROITIC_CURSIVE_LETTER_TO, 'codepoint, 0x109B6);
17968put('MEROITIC_CURSIVE_LETTER_DA, 'codepoint, 0x109B7);
17969put('MEROITIC_CURSIVE_LOGOGRAM_RMT, 'codepoint, 0x109BE);
17970put('MEROITIC_CURSIVE_LOGOGRAM_IMN, 'codepoint, 0x109BF);
17971put('KHAROSHTHI_LETTER_A, 'codepoint, 0x10A00);
17972put('KHAROSHTHI_VOWEL_SIGN_I, 'codepoint, 0x10A01);
17973put('KHAROSHTHI_VOWEL_SIGN_U, 'codepoint, 0x10A02);
17974put('KHAROSHTHI_VOWEL_SIGN_VOCALIC_R, 'codepoint, 0x10A03);
17975put('KHAROSHTHI_VOWEL_SIGN_E, 'codepoint, 0x10A05);
17976put('KHAROSHTHI_VOWEL_SIGN_O, 'codepoint, 0x10A06);
17977put('KHAROSHTHI_VOWEL_LENGTH_MARK, 'codepoint, 0x10A0C);
17978put('KHAROSHTHI_SIGN_DOUBLE_RING_BELOW, 'codepoint, 0x10A0D);
17979put('KHAROSHTHI_SIGN_ANUSVARA, 'codepoint, 0x10A0E);
17980put('KHAROSHTHI_SIGN_VISARGA, 'codepoint, 0x10A0F);
17981put('KHAROSHTHI_LETTER_KA, 'codepoint, 0x10A10);
17982put('KHAROSHTHI_LETTER_KHA, 'codepoint, 0x10A11);
17983put('KHAROSHTHI_LETTER_GA, 'codepoint, 0x10A12);
17984put('KHAROSHTHI_LETTER_GHA, 'codepoint, 0x10A13);
17985put('KHAROSHTHI_LETTER_CA, 'codepoint, 0x10A15);
17986put('KHAROSHTHI_LETTER_CHA, 'codepoint, 0x10A16);
17987put('KHAROSHTHI_LETTER_JA, 'codepoint, 0x10A17);
17988put('KHAROSHTHI_LETTER_NYA, 'codepoint, 0x10A19);
17989put('KHAROSHTHI_LETTER_TTA, 'codepoint, 0x10A1A);
17990put('KHAROSHTHI_LETTER_TTHA, 'codepoint, 0x10A1B);
17991put('KHAROSHTHI_LETTER_DDA, 'codepoint, 0x10A1C);
17992put('KHAROSHTHI_LETTER_DDHA, 'codepoint, 0x10A1D);
17993put('KHAROSHTHI_LETTER_NNA, 'codepoint, 0x10A1E);
17994put('KHAROSHTHI_LETTER_TA, 'codepoint, 0x10A1F);
17995put('KHAROSHTHI_LETTER_THA, 'codepoint, 0x10A20);
17996put('KHAROSHTHI_LETTER_DA, 'codepoint, 0x10A21);
17997put('KHAROSHTHI_LETTER_DHA, 'codepoint, 0x10A22);
17998put('KHAROSHTHI_LETTER_NA, 'codepoint, 0x10A23);
17999put('KHAROSHTHI_LETTER_PA, 'codepoint, 0x10A24);
18000put('KHAROSHTHI_LETTER_PHA, 'codepoint, 0x10A25);
18001put('KHAROSHTHI_LETTER_BA, 'codepoint, 0x10A26);
18002put('KHAROSHTHI_LETTER_BHA, 'codepoint, 0x10A27);
18003put('KHAROSHTHI_LETTER_MA, 'codepoint, 0x10A28);
18004put('KHAROSHTHI_LETTER_YA, 'codepoint, 0x10A29);
18005put('KHAROSHTHI_LETTER_RA, 'codepoint, 0x10A2A);
18006put('KHAROSHTHI_LETTER_LA, 'codepoint, 0x10A2B);
18007put('KHAROSHTHI_LETTER_VA, 'codepoint, 0x10A2C);
18008put('KHAROSHTHI_LETTER_SHA, 'codepoint, 0x10A2D);
18009put('KHAROSHTHI_LETTER_SSA, 'codepoint, 0x10A2E);
18010put('KHAROSHTHI_LETTER_SA, 'codepoint, 0x10A2F);
18011put('KHAROSHTHI_LETTER_ZA, 'codepoint, 0x10A30);
18012put('KHAROSHTHI_LETTER_HA, 'codepoint, 0x10A31);
18013put('KHAROSHTHI_LETTER_KKA, 'codepoint, 0x10A32);
18014put('KHAROSHTHI_LETTER_TTTHA, 'codepoint, 0x10A33);
18015put('KHAROSHTHI_SIGN_BAR_ABOVE, 'codepoint, 0x10A38);
18016put('KHAROSHTHI_SIGN_CAUDA, 'codepoint, 0x10A39);
18017put('KHAROSHTHI_SIGN_DOT_BELOW, 'codepoint, 0x10A3A);
18018put('KHAROSHTHI_VIRAMA, 'codepoint, 0x10A3F);
18019put('KHAROSHTHI_DIGIT_ONE, 'codepoint, 0x10A40);
18020put('KHAROSHTHI_DIGIT_TWO, 'codepoint, 0x10A41);
18021put('KHAROSHTHI_DIGIT_THREE, 'codepoint, 0x10A42);
18022put('KHAROSHTHI_DIGIT_FOUR, 'codepoint, 0x10A43);
18023put('KHAROSHTHI_NUMBER_TEN, 'codepoint, 0x10A44);
18024put('KHAROSHTHI_NUMBER_TWENTY, 'codepoint, 0x10A45);
18025put('KHAROSHTHI_NUMBER_ONE_HUNDRED, 'codepoint, 0x10A46);
18026put('KHAROSHTHI_NUMBER_ONE_THOUSAND, 'codepoint, 0x10A47);
18027put('KHAROSHTHI_PUNCTUATION_DOT, 'codepoint, 0x10A50);
18028put('KHAROSHTHI_PUNCTUATION_SMALL_CIRCLE, 'codepoint, 0x10A51);
18029put('KHAROSHTHI_PUNCTUATION_CIRCLE, 'codepoint, 0x10A52);
18030put('KHAROSHTHI_PUNCTUATION_CRESCENT_BAR, 'codepoint, 0x10A53);
18031put('KHAROSHTHI_PUNCTUATION_MANGALAM, 'codepoint, 0x10A54);
18032put('KHAROSHTHI_PUNCTUATION_LOTUS, 'codepoint, 0x10A55);
18033put('KHAROSHTHI_PUNCTUATION_DANDA, 'codepoint, 0x10A56);
18034put('KHAROSHTHI_PUNCTUATION_DOUBLE_DANDA, 'codepoint, 0x10A57);
18035put('KHAROSHTHI_PUNCTUATION_LINES, 'codepoint, 0x10A58);
18036put('OLD_SOUTH_ARABIAN_LETTER_HE, 'codepoint, 0x10A60);
18037put('OLD_SOUTH_ARABIAN_LETTER_LAMEDH, 'codepoint, 0x10A61);
18038put('OLD_SOUTH_ARABIAN_LETTER_HETH, 'codepoint, 0x10A62);
18039put('OLD_SOUTH_ARABIAN_LETTER_MEM, 'codepoint, 0x10A63);
18040put('OLD_SOUTH_ARABIAN_LETTER_QOPH, 'codepoint, 0x10A64);
18041put('OLD_SOUTH_ARABIAN_LETTER_WAW, 'codepoint, 0x10A65);
18042put('OLD_SOUTH_ARABIAN_LETTER_SHIN, 'codepoint, 0x10A66);
18043put('OLD_SOUTH_ARABIAN_LETTER_RESH, 'codepoint, 0x10A67);
18044put('OLD_SOUTH_ARABIAN_LETTER_BETH, 'codepoint, 0x10A68);
18045put('OLD_SOUTH_ARABIAN_LETTER_TAW, 'codepoint, 0x10A69);
18046put('OLD_SOUTH_ARABIAN_LETTER_SAT, 'codepoint, 0x10A6A);
18047put('OLD_SOUTH_ARABIAN_LETTER_KAPH, 'codepoint, 0x10A6B);
18048put('OLD_SOUTH_ARABIAN_LETTER_NUN, 'codepoint, 0x10A6C);
18049put('OLD_SOUTH_ARABIAN_LETTER_KHETH, 'codepoint, 0x10A6D);
18050put('OLD_SOUTH_ARABIAN_LETTER_SADHE, 'codepoint, 0x10A6E);
18051put('OLD_SOUTH_ARABIAN_LETTER_SAMEKH, 'codepoint, 0x10A6F);
18052put('OLD_SOUTH_ARABIAN_LETTER_FE, 'codepoint, 0x10A70);
18053put('OLD_SOUTH_ARABIAN_LETTER_ALEF, 'codepoint, 0x10A71);
18054put('OLD_SOUTH_ARABIAN_LETTER_AYN, 'codepoint, 0x10A72);
18055put('OLD_SOUTH_ARABIAN_LETTER_DHADHE, 'codepoint, 0x10A73);
18056put('OLD_SOUTH_ARABIAN_LETTER_GIMEL, 'codepoint, 0x10A74);
18057put('OLD_SOUTH_ARABIAN_LETTER_DALETH, 'codepoint, 0x10A75);
18058put('OLD_SOUTH_ARABIAN_LETTER_GHAYN, 'codepoint, 0x10A76);
18059put('OLD_SOUTH_ARABIAN_LETTER_TETH, 'codepoint, 0x10A77);
18060put('OLD_SOUTH_ARABIAN_LETTER_ZAYN, 'codepoint, 0x10A78);
18061put('OLD_SOUTH_ARABIAN_LETTER_DHALETH, 'codepoint, 0x10A79);
18062put('OLD_SOUTH_ARABIAN_LETTER_YODH, 'codepoint, 0x10A7A);
18063put('OLD_SOUTH_ARABIAN_LETTER_THAW, 'codepoint, 0x10A7B);
18064put('OLD_SOUTH_ARABIAN_LETTER_THETH, 'codepoint, 0x10A7C);
18065put('OLD_SOUTH_ARABIAN_NUMBER_ONE, 'codepoint, 0x10A7D);
18066put('OLD_SOUTH_ARABIAN_NUMBER_FIFTY, 'codepoint, 0x10A7E);
18067put('OLD_SOUTH_ARABIAN_NUMERIC_INDICATOR, 'codepoint, 0x10A7F);
18068put('OLD_NORTH_ARABIAN_LETTER_HEH, 'codepoint, 0x10A80);
18069put('OLD_NORTH_ARABIAN_LETTER_LAM, 'codepoint, 0x10A81);
18070put('OLD_NORTH_ARABIAN_LETTER_HAH, 'codepoint, 0x10A82);
18071put('OLD_NORTH_ARABIAN_LETTER_MEEM, 'codepoint, 0x10A83);
18072put('OLD_NORTH_ARABIAN_LETTER_QAF, 'codepoint, 0x10A84);
18073put('OLD_NORTH_ARABIAN_LETTER_WAW, 'codepoint, 0x10A85);
18074put('OLD_NORTH_ARABIAN_LETTER_ES_2, 'codepoint, 0x10A86);
18075put('OLD_NORTH_ARABIAN_LETTER_REH, 'codepoint, 0x10A87);
18076put('OLD_NORTH_ARABIAN_LETTER_BEH, 'codepoint, 0x10A88);
18077put('OLD_NORTH_ARABIAN_LETTER_TEH, 'codepoint, 0x10A89);
18078put('OLD_NORTH_ARABIAN_LETTER_ES_1, 'codepoint, 0x10A8A);
18079put('OLD_NORTH_ARABIAN_LETTER_KAF, 'codepoint, 0x10A8B);
18080put('OLD_NORTH_ARABIAN_LETTER_NOON, 'codepoint, 0x10A8C);
18081put('OLD_NORTH_ARABIAN_LETTER_KHAH, 'codepoint, 0x10A8D);
18082put('OLD_NORTH_ARABIAN_LETTER_SAD, 'codepoint, 0x10A8E);
18083put('OLD_NORTH_ARABIAN_LETTER_ES_3, 'codepoint, 0x10A8F);
18084put('OLD_NORTH_ARABIAN_LETTER_FEH, 'codepoint, 0x10A90);
18085put('OLD_NORTH_ARABIAN_LETTER_ALEF, 'codepoint, 0x10A91);
18086put('OLD_NORTH_ARABIAN_LETTER_AIN, 'codepoint, 0x10A92);
18087put('OLD_NORTH_ARABIAN_LETTER_DAD, 'codepoint, 0x10A93);
18088put('OLD_NORTH_ARABIAN_LETTER_GEEM, 'codepoint, 0x10A94);
18089put('OLD_NORTH_ARABIAN_LETTER_DAL, 'codepoint, 0x10A95);
18090put('OLD_NORTH_ARABIAN_LETTER_GHAIN, 'codepoint, 0x10A96);
18091put('OLD_NORTH_ARABIAN_LETTER_TAH, 'codepoint, 0x10A97);
18092put('OLD_NORTH_ARABIAN_LETTER_ZAIN, 'codepoint, 0x10A98);
18093put('OLD_NORTH_ARABIAN_LETTER_THAL, 'codepoint, 0x10A99);
18094put('OLD_NORTH_ARABIAN_LETTER_YEH, 'codepoint, 0x10A9A);
18095put('OLD_NORTH_ARABIAN_LETTER_THEH, 'codepoint, 0x10A9B);
18096put('OLD_NORTH_ARABIAN_LETTER_ZAH, 'codepoint, 0x10A9C);
18097put('OLD_NORTH_ARABIAN_NUMBER_ONE, 'codepoint, 0x10A9D);
18098put('OLD_NORTH_ARABIAN_NUMBER_TEN, 'codepoint, 0x10A9E);
18099put('OLD_NORTH_ARABIAN_NUMBER_TWENTY, 'codepoint, 0x10A9F);
18100put('MANICHAEAN_LETTER_ALEPH, 'codepoint, 0x10AC0);
18101put('MANICHAEAN_LETTER_BETH, 'codepoint, 0x10AC1);
18102put('MANICHAEAN_LETTER_BHETH, 'codepoint, 0x10AC2);
18103put('MANICHAEAN_LETTER_GIMEL, 'codepoint, 0x10AC3);
18104put('MANICHAEAN_LETTER_GHIMEL, 'codepoint, 0x10AC4);
18105put('MANICHAEAN_LETTER_DALETH, 'codepoint, 0x10AC5);
18106put('MANICHAEAN_LETTER_HE, 'codepoint, 0x10AC6);
18107put('MANICHAEAN_LETTER_WAW, 'codepoint, 0x10AC7);
18108put('MANICHAEAN_SIGN_UD, 'codepoint, 0x10AC8);
18109put('MANICHAEAN_LETTER_ZAYIN, 'codepoint, 0x10AC9);
18110put('MANICHAEAN_LETTER_ZHAYIN, 'codepoint, 0x10ACA);
18111put('MANICHAEAN_LETTER_JAYIN, 'codepoint, 0x10ACB);
18112put('MANICHAEAN_LETTER_JHAYIN, 'codepoint, 0x10ACC);
18113put('MANICHAEAN_LETTER_HETH, 'codepoint, 0x10ACD);
18114put('MANICHAEAN_LETTER_TETH, 'codepoint, 0x10ACE);
18115put('MANICHAEAN_LETTER_YODH, 'codepoint, 0x10ACF);
18116put('MANICHAEAN_LETTER_KAPH, 'codepoint, 0x10AD0);
18117put('MANICHAEAN_LETTER_XAPH, 'codepoint, 0x10AD1);
18118put('MANICHAEAN_LETTER_KHAPH, 'codepoint, 0x10AD2);
18119put('MANICHAEAN_LETTER_LAMEDH, 'codepoint, 0x10AD3);
18120put('MANICHAEAN_LETTER_DHAMEDH, 'codepoint, 0x10AD4);
18121put('MANICHAEAN_LETTER_THAMEDH, 'codepoint, 0x10AD5);
18122put('MANICHAEAN_LETTER_MEM, 'codepoint, 0x10AD6);
18123put('MANICHAEAN_LETTER_NUN, 'codepoint, 0x10AD7);
18124put('MANICHAEAN_LETTER_SAMEKH, 'codepoint, 0x10AD8);
18125put('MANICHAEAN_LETTER_AYIN, 'codepoint, 0x10AD9);
18126put('MANICHAEAN_LETTER_AAYIN, 'codepoint, 0x10ADA);
18127put('MANICHAEAN_LETTER_PE, 'codepoint, 0x10ADB);
18128put('MANICHAEAN_LETTER_FE, 'codepoint, 0x10ADC);
18129put('MANICHAEAN_LETTER_SADHE, 'codepoint, 0x10ADD);
18130put('MANICHAEAN_LETTER_QOPH, 'codepoint, 0x10ADE);
18131put('MANICHAEAN_LETTER_XOPH, 'codepoint, 0x10ADF);
18132put('MANICHAEAN_LETTER_QHOPH, 'codepoint, 0x10AE0);
18133put('MANICHAEAN_LETTER_RESH, 'codepoint, 0x10AE1);
18134put('MANICHAEAN_LETTER_SHIN, 'codepoint, 0x10AE2);
18135put('MANICHAEAN_LETTER_SSHIN, 'codepoint, 0x10AE3);
18136put('MANICHAEAN_LETTER_TAW, 'codepoint, 0x10AE4);
18137put('MANICHAEAN_ABBREVIATION_MARK_ABOVE, 'codepoint, 0x10AE5);
18138put('MANICHAEAN_ABBREVIATION_MARK_BELOW, 'codepoint, 0x10AE6);
18139put('MANICHAEAN_NUMBER_ONE, 'codepoint, 0x10AEB);
18140put('MANICHAEAN_NUMBER_FIVE, 'codepoint, 0x10AEC);
18141put('MANICHAEAN_NUMBER_TEN, 'codepoint, 0x10AED);
18142put('MANICHAEAN_NUMBER_TWENTY, 'codepoint, 0x10AEE);
18143put('MANICHAEAN_NUMBER_ONE_HUNDRED, 'codepoint, 0x10AEF);
18144put('MANICHAEAN_PUNCTUATION_STAR, 'codepoint, 0x10AF0);
18145put('MANICHAEAN_PUNCTUATION_FLEURON, 'codepoint, 0x10AF1);
18146put('MANICHAEAN_PUNCTUATION_DOUBLE_DOT_WITHIN_DOT, 'codepoint, 0x10AF2);
18147put('MANICHAEAN_PUNCTUATION_DOT_WITHIN_DOT, 'codepoint, 0x10AF3);
18148put('MANICHAEAN_PUNCTUATION_DOT, 'codepoint, 0x10AF4);
18149put('MANICHAEAN_PUNCTUATION_TWO_DOTS, 'codepoint, 0x10AF5);
18150put('MANICHAEAN_PUNCTUATION_LINE_FILLER, 'codepoint, 0x10AF6);
18151put('AVESTAN_LETTER_A, 'codepoint, 0x10B00);
18152put('AVESTAN_LETTER_AA, 'codepoint, 0x10B01);
18153put('AVESTAN_LETTER_AO, 'codepoint, 0x10B02);
18154put('AVESTAN_LETTER_AAO, 'codepoint, 0x10B03);
18155put('AVESTAN_LETTER_AN, 'codepoint, 0x10B04);
18156put('AVESTAN_LETTER_AAN, 'codepoint, 0x10B05);
18157put('AVESTAN_LETTER_AE, 'codepoint, 0x10B06);
18158put('AVESTAN_LETTER_AEE, 'codepoint, 0x10B07);
18159put('AVESTAN_LETTER_E, 'codepoint, 0x10B08);
18160put('AVESTAN_LETTER_EE, 'codepoint, 0x10B09);
18161put('AVESTAN_LETTER_O, 'codepoint, 0x10B0A);
18162put('AVESTAN_LETTER_OO, 'codepoint, 0x10B0B);
18163put('AVESTAN_LETTER_I, 'codepoint, 0x10B0C);
18164put('AVESTAN_LETTER_II, 'codepoint, 0x10B0D);
18165put('AVESTAN_LETTER_U, 'codepoint, 0x10B0E);
18166put('AVESTAN_LETTER_UU, 'codepoint, 0x10B0F);
18167put('AVESTAN_LETTER_KE, 'codepoint, 0x10B10);
18168put('AVESTAN_LETTER_XE, 'codepoint, 0x10B11);
18169put('AVESTAN_LETTER_XYE, 'codepoint, 0x10B12);
18170put('AVESTAN_LETTER_XVE, 'codepoint, 0x10B13);
18171put('AVESTAN_LETTER_GE, 'codepoint, 0x10B14);
18172put('AVESTAN_LETTER_GGE, 'codepoint, 0x10B15);
18173put('AVESTAN_LETTER_GHE, 'codepoint, 0x10B16);
18174put('AVESTAN_LETTER_CE, 'codepoint, 0x10B17);
18175put('AVESTAN_LETTER_JE, 'codepoint, 0x10B18);
18176put('AVESTAN_LETTER_TE, 'codepoint, 0x10B19);
18177put('AVESTAN_LETTER_THE, 'codepoint, 0x10B1A);
18178put('AVESTAN_LETTER_DE, 'codepoint, 0x10B1B);
18179put('AVESTAN_LETTER_DHE, 'codepoint, 0x10B1C);
18180put('AVESTAN_LETTER_TTE, 'codepoint, 0x10B1D);
18181put('AVESTAN_LETTER_PE, 'codepoint, 0x10B1E);
18182put('AVESTAN_LETTER_FE, 'codepoint, 0x10B1F);
18183put('AVESTAN_LETTER_BE, 'codepoint, 0x10B20);
18184put('AVESTAN_LETTER_BHE, 'codepoint, 0x10B21);
18185put('AVESTAN_LETTER_NGE, 'codepoint, 0x10B22);
18186put('AVESTAN_LETTER_NGYE, 'codepoint, 0x10B23);
18187put('AVESTAN_LETTER_NGVE, 'codepoint, 0x10B24);
18188put('AVESTAN_LETTER_NE, 'codepoint, 0x10B25);
18189put('AVESTAN_LETTER_NYE, 'codepoint, 0x10B26);
18190put('AVESTAN_LETTER_NNE, 'codepoint, 0x10B27);
18191put('AVESTAN_LETTER_ME, 'codepoint, 0x10B28);
18192put('AVESTAN_LETTER_HME, 'codepoint, 0x10B29);
18193put('AVESTAN_LETTER_YYE, 'codepoint, 0x10B2A);
18194put('AVESTAN_LETTER_YE, 'codepoint, 0x10B2B);
18195put('AVESTAN_LETTER_VE, 'codepoint, 0x10B2C);
18196put('AVESTAN_LETTER_RE, 'codepoint, 0x10B2D);
18197put('AVESTAN_LETTER_LE, 'codepoint, 0x10B2E);
18198put('AVESTAN_LETTER_SE, 'codepoint, 0x10B2F);
18199put('AVESTAN_LETTER_ZE, 'codepoint, 0x10B30);
18200put('AVESTAN_LETTER_SHE, 'codepoint, 0x10B31);
18201put('AVESTAN_LETTER_ZHE, 'codepoint, 0x10B32);
18202put('AVESTAN_LETTER_SHYE, 'codepoint, 0x10B33);
18203put('AVESTAN_LETTER_SSHE, 'codepoint, 0x10B34);
18204put('AVESTAN_LETTER_HE, 'codepoint, 0x10B35);
18205put('AVESTAN_ABBREVIATION_MARK, 'codepoint, 0x10B39);
18206put('TINY_TWO_DOTS_OVER_ONE_DOT_PUNCTUATION, 'codepoint, 0x10B3A);
18207put('SMALL_TWO_DOTS_OVER_ONE_DOT_PUNCTUATION, 'codepoint, 0x10B3B);
18208put('LARGE_TWO_DOTS_OVER_ONE_DOT_PUNCTUATION, 'codepoint, 0x10B3C);
18209put('LARGE_ONE_DOT_OVER_TWO_DOTS_PUNCTUATION, 'codepoint, 0x10B3D);
18210put('LARGE_TWO_RINGS_OVER_ONE_RING_PUNCTUATION, 'codepoint, 0x10B3E);
18211put('LARGE_ONE_RING_OVER_TWO_RINGS_PUNCTUATION, 'codepoint, 0x10B3F);
18212put('INSCRIPTIONAL_PARTHIAN_LETTER_ALEPH, 'codepoint, 0x10B40);
18213put('INSCRIPTIONAL_PARTHIAN_LETTER_BETH, 'codepoint, 0x10B41);
18214put('INSCRIPTIONAL_PARTHIAN_LETTER_GIMEL, 'codepoint, 0x10B42);
18215put('INSCRIPTIONAL_PARTHIAN_LETTER_DALETH, 'codepoint, 0x10B43);
18216put('INSCRIPTIONAL_PARTHIAN_LETTER_HE, 'codepoint, 0x10B44);
18217put('INSCRIPTIONAL_PARTHIAN_LETTER_WAW, 'codepoint, 0x10B45);
18218put('INSCRIPTIONAL_PARTHIAN_LETTER_ZAYIN, 'codepoint, 0x10B46);
18219put('INSCRIPTIONAL_PARTHIAN_LETTER_HETH, 'codepoint, 0x10B47);
18220put('INSCRIPTIONAL_PARTHIAN_LETTER_TETH, 'codepoint, 0x10B48);
18221put('INSCRIPTIONAL_PARTHIAN_LETTER_YODH, 'codepoint, 0x10B49);
18222put('INSCRIPTIONAL_PARTHIAN_LETTER_KAPH, 'codepoint, 0x10B4A);
18223put('INSCRIPTIONAL_PARTHIAN_LETTER_LAMEDH, 'codepoint, 0x10B4B);
18224put('INSCRIPTIONAL_PARTHIAN_LETTER_MEM, 'codepoint, 0x10B4C);
18225put('INSCRIPTIONAL_PARTHIAN_LETTER_NUN, 'codepoint, 0x10B4D);
18226put('INSCRIPTIONAL_PARTHIAN_LETTER_SAMEKH, 'codepoint, 0x10B4E);
18227put('INSCRIPTIONAL_PARTHIAN_LETTER_AYIN, 'codepoint, 0x10B4F);
18228put('INSCRIPTIONAL_PARTHIAN_LETTER_PE, 'codepoint, 0x10B50);
18229put('INSCRIPTIONAL_PARTHIAN_LETTER_SADHE, 'codepoint, 0x10B51);
18230put('INSCRIPTIONAL_PARTHIAN_LETTER_QOPH, 'codepoint, 0x10B52);
18231put('INSCRIPTIONAL_PARTHIAN_LETTER_RESH, 'codepoint, 0x10B53);
18232put('INSCRIPTIONAL_PARTHIAN_LETTER_SHIN, 'codepoint, 0x10B54);
18233put('INSCRIPTIONAL_PARTHIAN_LETTER_TAW, 'codepoint, 0x10B55);
18234put('INSCRIPTIONAL_PARTHIAN_NUMBER_ONE, 'codepoint, 0x10B58);
18235put('INSCRIPTIONAL_PARTHIAN_NUMBER_TWO, 'codepoint, 0x10B59);
18236put('INSCRIPTIONAL_PARTHIAN_NUMBER_THREE, 'codepoint, 0x10B5A);
18237put('INSCRIPTIONAL_PARTHIAN_NUMBER_FOUR, 'codepoint, 0x10B5B);
18238put('INSCRIPTIONAL_PARTHIAN_NUMBER_TEN, 'codepoint, 0x10B5C);
18239put('INSCRIPTIONAL_PARTHIAN_NUMBER_TWENTY, 'codepoint, 0x10B5D);
18240put('INSCRIPTIONAL_PARTHIAN_NUMBER_ONE_HUNDRED, 'codepoint, 0x10B5E);
18241put('INSCRIPTIONAL_PARTHIAN_NUMBER_ONE_THOUSAND, 'codepoint, 0x10B5F);
18242put('INSCRIPTIONAL_PAHLAVI_LETTER_ALEPH, 'codepoint, 0x10B60);
18243put('INSCRIPTIONAL_PAHLAVI_LETTER_BETH, 'codepoint, 0x10B61);
18244put('INSCRIPTIONAL_PAHLAVI_LETTER_GIMEL, 'codepoint, 0x10B62);
18245put('INSCRIPTIONAL_PAHLAVI_LETTER_DALETH, 'codepoint, 0x10B63);
18246put('INSCRIPTIONAL_PAHLAVI_LETTER_HE, 'codepoint, 0x10B64);
18247put('INSCRIPTIONAL_PAHLAVI_LETTER_WAW_AYIN_RESH, 'codepoint, 0x10B65);
18248put('INSCRIPTIONAL_PAHLAVI_LETTER_ZAYIN, 'codepoint, 0x10B66);
18249put('INSCRIPTIONAL_PAHLAVI_LETTER_HETH, 'codepoint, 0x10B67);
18250put('INSCRIPTIONAL_PAHLAVI_LETTER_TETH, 'codepoint, 0x10B68);
18251put('INSCRIPTIONAL_PAHLAVI_LETTER_YODH, 'codepoint, 0x10B69);
18252put('INSCRIPTIONAL_PAHLAVI_LETTER_KAPH, 'codepoint, 0x10B6A);
18253put('INSCRIPTIONAL_PAHLAVI_LETTER_LAMEDH, 'codepoint, 0x10B6B);
18254put('INSCRIPTIONAL_PAHLAVI_LETTER_MEM_QOPH, 'codepoint, 0x10B6C);
18255put('INSCRIPTIONAL_PAHLAVI_LETTER_NUN, 'codepoint, 0x10B6D);
18256put('INSCRIPTIONAL_PAHLAVI_LETTER_SAMEKH, 'codepoint, 0x10B6E);
18257put('INSCRIPTIONAL_PAHLAVI_LETTER_PE, 'codepoint, 0x10B6F);
18258put('INSCRIPTIONAL_PAHLAVI_LETTER_SADHE, 'codepoint, 0x10B70);
18259put('INSCRIPTIONAL_PAHLAVI_LETTER_SHIN, 'codepoint, 0x10B71);
18260put('INSCRIPTIONAL_PAHLAVI_LETTER_TAW, 'codepoint, 0x10B72);
18261put('INSCRIPTIONAL_PAHLAVI_NUMBER_ONE, 'codepoint, 0x10B78);
18262put('INSCRIPTIONAL_PAHLAVI_NUMBER_TWO, 'codepoint, 0x10B79);
18263put('INSCRIPTIONAL_PAHLAVI_NUMBER_THREE, 'codepoint, 0x10B7A);
18264put('INSCRIPTIONAL_PAHLAVI_NUMBER_FOUR, 'codepoint, 0x10B7B);
18265put('INSCRIPTIONAL_PAHLAVI_NUMBER_TEN, 'codepoint, 0x10B7C);
18266put('INSCRIPTIONAL_PAHLAVI_NUMBER_TWENTY, 'codepoint, 0x10B7D);
18267put('INSCRIPTIONAL_PAHLAVI_NUMBER_ONE_HUNDRED, 'codepoint, 0x10B7E);
18268put('INSCRIPTIONAL_PAHLAVI_NUMBER_ONE_THOUSAND, 'codepoint, 0x10B7F);
18269put('PSALTER_PAHLAVI_LETTER_ALEPH, 'codepoint, 0x10B80);
18270put('PSALTER_PAHLAVI_LETTER_BETH, 'codepoint, 0x10B81);
18271put('PSALTER_PAHLAVI_LETTER_GIMEL, 'codepoint, 0x10B82);
18272put('PSALTER_PAHLAVI_LETTER_DALETH, 'codepoint, 0x10B83);
18273put('PSALTER_PAHLAVI_LETTER_HE, 'codepoint, 0x10B84);
18274put('PSALTER_PAHLAVI_LETTER_WAW_AYIN_RESH, 'codepoint, 0x10B85);
18275put('PSALTER_PAHLAVI_LETTER_ZAYIN, 'codepoint, 0x10B86);
18276put('PSALTER_PAHLAVI_LETTER_HETH, 'codepoint, 0x10B87);
18277put('PSALTER_PAHLAVI_LETTER_YODH, 'codepoint, 0x10B88);
18278put('PSALTER_PAHLAVI_LETTER_KAPH, 'codepoint, 0x10B89);
18279put('PSALTER_PAHLAVI_LETTER_LAMEDH, 'codepoint, 0x10B8A);
18280put('PSALTER_PAHLAVI_LETTER_MEM_QOPH, 'codepoint, 0x10B8B);
18281put('PSALTER_PAHLAVI_LETTER_NUN, 'codepoint, 0x10B8C);
18282put('PSALTER_PAHLAVI_LETTER_SAMEKH, 'codepoint, 0x10B8D);
18283put('PSALTER_PAHLAVI_LETTER_PE, 'codepoint, 0x10B8E);
18284put('PSALTER_PAHLAVI_LETTER_SADHE, 'codepoint, 0x10B8F);
18285put('PSALTER_PAHLAVI_LETTER_SHIN, 'codepoint, 0x10B90);
18286put('PSALTER_PAHLAVI_LETTER_TAW, 'codepoint, 0x10B91);
18287put('PSALTER_PAHLAVI_SECTION_MARK, 'codepoint, 0x10B99);
18288put('PSALTER_PAHLAVI_TURNED_SECTION_MARK, 'codepoint, 0x10B9A);
18289put('PSALTER_PAHLAVI_FOUR_DOTS_WITH_CROSS, 'codepoint, 0x10B9B);
18290put('PSALTER_PAHLAVI_FOUR_DOTS_WITH_DOT, 'codepoint, 0x10B9C);
18291put('PSALTER_PAHLAVI_NUMBER_ONE, 'codepoint, 0x10BA9);
18292put('PSALTER_PAHLAVI_NUMBER_TWO, 'codepoint, 0x10BAA);
18293put('PSALTER_PAHLAVI_NUMBER_THREE, 'codepoint, 0x10BAB);
18294put('PSALTER_PAHLAVI_NUMBER_FOUR, 'codepoint, 0x10BAC);
18295put('PSALTER_PAHLAVI_NUMBER_TEN, 'codepoint, 0x10BAD);
18296put('PSALTER_PAHLAVI_NUMBER_TWENTY, 'codepoint, 0x10BAE);
18297put('PSALTER_PAHLAVI_NUMBER_ONE_HUNDRED, 'codepoint, 0x10BAF);
18298put('OLD_TURKIC_LETTER_ORKHON_A, 'codepoint, 0x10C00);
18299put('OLD_TURKIC_LETTER_YENISEI_A, 'codepoint, 0x10C01);
18300put('OLD_TURKIC_LETTER_YENISEI_AE, 'codepoint, 0x10C02);
18301put('OLD_TURKIC_LETTER_ORKHON_I, 'codepoint, 0x10C03);
18302put('OLD_TURKIC_LETTER_YENISEI_I, 'codepoint, 0x10C04);
18303put('OLD_TURKIC_LETTER_YENISEI_E, 'codepoint, 0x10C05);
18304put('OLD_TURKIC_LETTER_ORKHON_O, 'codepoint, 0x10C06);
18305put('OLD_TURKIC_LETTER_ORKHON_OE, 'codepoint, 0x10C07);
18306put('OLD_TURKIC_LETTER_YENISEI_OE, 'codepoint, 0x10C08);
18307put('OLD_TURKIC_LETTER_ORKHON_AB, 'codepoint, 0x10C09);
18308put('OLD_TURKIC_LETTER_YENISEI_AB, 'codepoint, 0x10C0A);
18309put('OLD_TURKIC_LETTER_ORKHON_AEB, 'codepoint, 0x10C0B);
18310put('OLD_TURKIC_LETTER_YENISEI_AEB, 'codepoint, 0x10C0C);
18311put('OLD_TURKIC_LETTER_ORKHON_AG, 'codepoint, 0x10C0D);
18312put('OLD_TURKIC_LETTER_YENISEI_AG, 'codepoint, 0x10C0E);
18313put('OLD_TURKIC_LETTER_ORKHON_AEG, 'codepoint, 0x10C0F);
18314put('OLD_TURKIC_LETTER_YENISEI_AEG, 'codepoint, 0x10C10);
18315put('OLD_TURKIC_LETTER_ORKHON_AD, 'codepoint, 0x10C11);
18316put('OLD_TURKIC_LETTER_YENISEI_AD, 'codepoint, 0x10C12);
18317put('OLD_TURKIC_LETTER_ORKHON_AED, 'codepoint, 0x10C13);
18318put('OLD_TURKIC_LETTER_ORKHON_EZ, 'codepoint, 0x10C14);
18319put('OLD_TURKIC_LETTER_YENISEI_EZ, 'codepoint, 0x10C15);
18320put('OLD_TURKIC_LETTER_ORKHON_AY, 'codepoint, 0x10C16);
18321put('OLD_TURKIC_LETTER_YENISEI_AY, 'codepoint, 0x10C17);
18322put('OLD_TURKIC_LETTER_ORKHON_AEY, 'codepoint, 0x10C18);
18323put('OLD_TURKIC_LETTER_YENISEI_AEY, 'codepoint, 0x10C19);
18324put('OLD_TURKIC_LETTER_ORKHON_AEK, 'codepoint, 0x10C1A);
18325put('OLD_TURKIC_LETTER_YENISEI_AEK, 'codepoint, 0x10C1B);
18326put('OLD_TURKIC_LETTER_ORKHON_OEK, 'codepoint, 0x10C1C);
18327put('OLD_TURKIC_LETTER_YENISEI_OEK, 'codepoint, 0x10C1D);
18328put('OLD_TURKIC_LETTER_ORKHON_AL, 'codepoint, 0x10C1E);
18329put('OLD_TURKIC_LETTER_YENISEI_AL, 'codepoint, 0x10C1F);
18330put('OLD_TURKIC_LETTER_ORKHON_AEL, 'codepoint, 0x10C20);
18331put('OLD_TURKIC_LETTER_ORKHON_ELT, 'codepoint, 0x10C21);
18332put('OLD_TURKIC_LETTER_ORKHON_EM, 'codepoint, 0x10C22);
18333put('OLD_TURKIC_LETTER_ORKHON_AN, 'codepoint, 0x10C23);
18334put('OLD_TURKIC_LETTER_ORKHON_AEN, 'codepoint, 0x10C24);
18335put('OLD_TURKIC_LETTER_YENISEI_AEN, 'codepoint, 0x10C25);
18336put('OLD_TURKIC_LETTER_ORKHON_ENT, 'codepoint, 0x10C26);
18337put('OLD_TURKIC_LETTER_YENISEI_ENT, 'codepoint, 0x10C27);
18338put('OLD_TURKIC_LETTER_ORKHON_ENC, 'codepoint, 0x10C28);
18339put('OLD_TURKIC_LETTER_YENISEI_ENC, 'codepoint, 0x10C29);
18340put('OLD_TURKIC_LETTER_ORKHON_ENY, 'codepoint, 0x10C2A);
18341put('OLD_TURKIC_LETTER_YENISEI_ENY, 'codepoint, 0x10C2B);
18342put('OLD_TURKIC_LETTER_YENISEI_ANG, 'codepoint, 0x10C2C);
18343put('OLD_TURKIC_LETTER_ORKHON_ENG, 'codepoint, 0x10C2D);
18344put('OLD_TURKIC_LETTER_YENISEI_AENG, 'codepoint, 0x10C2E);
18345put('OLD_TURKIC_LETTER_ORKHON_EP, 'codepoint, 0x10C2F);
18346put('OLD_TURKIC_LETTER_ORKHON_OP, 'codepoint, 0x10C30);
18347put('OLD_TURKIC_LETTER_ORKHON_IC, 'codepoint, 0x10C31);
18348put('OLD_TURKIC_LETTER_ORKHON_EC, 'codepoint, 0x10C32);
18349put('OLD_TURKIC_LETTER_YENISEI_EC, 'codepoint, 0x10C33);
18350put('OLD_TURKIC_LETTER_ORKHON_AQ, 'codepoint, 0x10C34);
18351put('OLD_TURKIC_LETTER_YENISEI_AQ, 'codepoint, 0x10C35);
18352put('OLD_TURKIC_LETTER_ORKHON_IQ, 'codepoint, 0x10C36);
18353put('OLD_TURKIC_LETTER_YENISEI_IQ, 'codepoint, 0x10C37);
18354put('OLD_TURKIC_LETTER_ORKHON_OQ, 'codepoint, 0x10C38);
18355put('OLD_TURKIC_LETTER_YENISEI_OQ, 'codepoint, 0x10C39);
18356put('OLD_TURKIC_LETTER_ORKHON_AR, 'codepoint, 0x10C3A);
18357put('OLD_TURKIC_LETTER_YENISEI_AR, 'codepoint, 0x10C3B);
18358put('OLD_TURKIC_LETTER_ORKHON_AER, 'codepoint, 0x10C3C);
18359put('OLD_TURKIC_LETTER_ORKHON_AS, 'codepoint, 0x10C3D);
18360put('OLD_TURKIC_LETTER_ORKHON_AES, 'codepoint, 0x10C3E);
18361put('OLD_TURKIC_LETTER_ORKHON_ASH, 'codepoint, 0x10C3F);
18362put('OLD_TURKIC_LETTER_YENISEI_ASH, 'codepoint, 0x10C40);
18363put('OLD_TURKIC_LETTER_ORKHON_ESH, 'codepoint, 0x10C41);
18364put('OLD_TURKIC_LETTER_YENISEI_ESH, 'codepoint, 0x10C42);
18365put('OLD_TURKIC_LETTER_ORKHON_AT, 'codepoint, 0x10C43);
18366put('OLD_TURKIC_LETTER_YENISEI_AT, 'codepoint, 0x10C44);
18367put('OLD_TURKIC_LETTER_ORKHON_AET, 'codepoint, 0x10C45);
18368put('OLD_TURKIC_LETTER_YENISEI_AET, 'codepoint, 0x10C46);
18369put('OLD_TURKIC_LETTER_ORKHON_OT, 'codepoint, 0x10C47);
18370put('OLD_TURKIC_LETTER_ORKHON_BASH, 'codepoint, 0x10C48);
18371put('RUMI_DIGIT_ONE, 'codepoint, 0x10E60);
18372put('RUMI_DIGIT_TWO, 'codepoint, 0x10E61);
18373put('RUMI_DIGIT_THREE, 'codepoint, 0x10E62);
18374put('RUMI_DIGIT_FOUR, 'codepoint, 0x10E63);
18375put('RUMI_DIGIT_FIVE, 'codepoint, 0x10E64);
18376put('RUMI_DIGIT_SIX, 'codepoint, 0x10E65);
18377put('RUMI_DIGIT_SEVEN, 'codepoint, 0x10E66);
18378put('RUMI_DIGIT_EIGHT, 'codepoint, 0x10E67);
18379put('RUMI_DIGIT_NINE, 'codepoint, 0x10E68);
18380put('RUMI_NUMBER_TEN, 'codepoint, 0x10E69);
18381put('RUMI_NUMBER_TWENTY, 'codepoint, 0x10E6A);
18382put('RUMI_NUMBER_THIRTY, 'codepoint, 0x10E6B);
18383put('RUMI_NUMBER_FORTY, 'codepoint, 0x10E6C);
18384put('RUMI_NUMBER_FIFTY, 'codepoint, 0x10E6D);
18385put('RUMI_NUMBER_SIXTY, 'codepoint, 0x10E6E);
18386put('RUMI_NUMBER_SEVENTY, 'codepoint, 0x10E6F);
18387put('RUMI_NUMBER_EIGHTY, 'codepoint, 0x10E70);
18388put('RUMI_NUMBER_NINETY, 'codepoint, 0x10E71);
18389put('RUMI_NUMBER_ONE_HUNDRED, 'codepoint, 0x10E72);
18390put('RUMI_NUMBER_TWO_HUNDRED, 'codepoint, 0x10E73);
18391put('RUMI_NUMBER_THREE_HUNDRED, 'codepoint, 0x10E74);
18392put('RUMI_NUMBER_FOUR_HUNDRED, 'codepoint, 0x10E75);
18393put('RUMI_NUMBER_FIVE_HUNDRED, 'codepoint, 0x10E76);
18394put('RUMI_NUMBER_SIX_HUNDRED, 'codepoint, 0x10E77);
18395put('RUMI_NUMBER_SEVEN_HUNDRED, 'codepoint, 0x10E78);
18396put('RUMI_NUMBER_EIGHT_HUNDRED, 'codepoint, 0x10E79);
18397put('RUMI_NUMBER_NINE_HUNDRED, 'codepoint, 0x10E7A);
18398put('RUMI_FRACTION_ONE_HALF, 'codepoint, 0x10E7B);
18399put('RUMI_FRACTION_ONE_QUARTER, 'codepoint, 0x10E7C);
18400put('RUMI_FRACTION_ONE_THIRD, 'codepoint, 0x10E7D);
18401put('RUMI_FRACTION_TWO_THIRDS, 'codepoint, 0x10E7E);
18402put('BRAHMI_SIGN_CANDRABINDU, 'codepoint, 0x11000);
18403put('BRAHMI_SIGN_ANUSVARA, 'codepoint, 0x11001);
18404put('BRAHMI_SIGN_VISARGA, 'codepoint, 0x11002);
18405put('BRAHMI_SIGN_JIHVAMULIYA, 'codepoint, 0x11003);
18406put('BRAHMI_SIGN_UPADHMANIYA, 'codepoint, 0x11004);
18407put('BRAHMI_LETTER_A, 'codepoint, 0x11005);
18408put('BRAHMI_LETTER_AA, 'codepoint, 0x11006);
18409put('BRAHMI_LETTER_I, 'codepoint, 0x11007);
18410put('BRAHMI_LETTER_II, 'codepoint, 0x11008);
18411put('BRAHMI_LETTER_U, 'codepoint, 0x11009);
18412put('BRAHMI_LETTER_UU, 'codepoint, 0x1100A);
18413put('BRAHMI_LETTER_VOCALIC_R, 'codepoint, 0x1100B);
18414put('BRAHMI_LETTER_VOCALIC_RR, 'codepoint, 0x1100C);
18415put('BRAHMI_LETTER_VOCALIC_L, 'codepoint, 0x1100D);
18416put('BRAHMI_LETTER_VOCALIC_LL, 'codepoint, 0x1100E);
18417put('BRAHMI_LETTER_E, 'codepoint, 0x1100F);
18418put('BRAHMI_LETTER_AI, 'codepoint, 0x11010);
18419put('BRAHMI_LETTER_O, 'codepoint, 0x11011);
18420put('BRAHMI_LETTER_AU, 'codepoint, 0x11012);
18421put('BRAHMI_LETTER_KA, 'codepoint, 0x11013);
18422put('BRAHMI_LETTER_KHA, 'codepoint, 0x11014);
18423put('BRAHMI_LETTER_GA, 'codepoint, 0x11015);
18424put('BRAHMI_LETTER_GHA, 'codepoint, 0x11016);
18425put('BRAHMI_LETTER_NGA, 'codepoint, 0x11017);
18426put('BRAHMI_LETTER_CA, 'codepoint, 0x11018);
18427put('BRAHMI_LETTER_CHA, 'codepoint, 0x11019);
18428put('BRAHMI_LETTER_JA, 'codepoint, 0x1101A);
18429put('BRAHMI_LETTER_JHA, 'codepoint, 0x1101B);
18430put('BRAHMI_LETTER_NYA, 'codepoint, 0x1101C);
18431put('BRAHMI_LETTER_TTA, 'codepoint, 0x1101D);
18432put('BRAHMI_LETTER_TTHA, 'codepoint, 0x1101E);
18433put('BRAHMI_LETTER_DDA, 'codepoint, 0x1101F);
18434put('BRAHMI_LETTER_DDHA, 'codepoint, 0x11020);
18435put('BRAHMI_LETTER_NNA, 'codepoint, 0x11021);
18436put('BRAHMI_LETTER_TA, 'codepoint, 0x11022);
18437put('BRAHMI_LETTER_THA, 'codepoint, 0x11023);
18438put('BRAHMI_LETTER_DA, 'codepoint, 0x11024);
18439put('BRAHMI_LETTER_DHA, 'codepoint, 0x11025);
18440put('BRAHMI_LETTER_NA, 'codepoint, 0x11026);
18441put('BRAHMI_LETTER_PA, 'codepoint, 0x11027);
18442put('BRAHMI_LETTER_PHA, 'codepoint, 0x11028);
18443put('BRAHMI_LETTER_BA, 'codepoint, 0x11029);
18444put('BRAHMI_LETTER_BHA, 'codepoint, 0x1102A);
18445put('BRAHMI_LETTER_MA, 'codepoint, 0x1102B);
18446put('BRAHMI_LETTER_YA, 'codepoint, 0x1102C);
18447put('BRAHMI_LETTER_RA, 'codepoint, 0x1102D);
18448put('BRAHMI_LETTER_LA, 'codepoint, 0x1102E);
18449put('BRAHMI_LETTER_VA, 'codepoint, 0x1102F);
18450put('BRAHMI_LETTER_SHA, 'codepoint, 0x11030);
18451put('BRAHMI_LETTER_SSA, 'codepoint, 0x11031);
18452put('BRAHMI_LETTER_SA, 'codepoint, 0x11032);
18453put('BRAHMI_LETTER_HA, 'codepoint, 0x11033);
18454put('BRAHMI_LETTER_LLA, 'codepoint, 0x11034);
18455put('BRAHMI_LETTER_OLD_TAMIL_LLLA, 'codepoint, 0x11035);
18456put('BRAHMI_LETTER_OLD_TAMIL_RRA, 'codepoint, 0x11036);
18457put('BRAHMI_LETTER_OLD_TAMIL_NNNA, 'codepoint, 0x11037);
18458put('BRAHMI_VOWEL_SIGN_AA, 'codepoint, 0x11038);
18459put('BRAHMI_VOWEL_SIGN_BHATTIPROLU_AA, 'codepoint, 0x11039);
18460put('BRAHMI_VOWEL_SIGN_I, 'codepoint, 0x1103A);
18461put('BRAHMI_VOWEL_SIGN_II, 'codepoint, 0x1103B);
18462put('BRAHMI_VOWEL_SIGN_U, 'codepoint, 0x1103C);
18463put('BRAHMI_VOWEL_SIGN_UU, 'codepoint, 0x1103D);
18464put('BRAHMI_VOWEL_SIGN_VOCALIC_R, 'codepoint, 0x1103E);
18465put('BRAHMI_VOWEL_SIGN_VOCALIC_RR, 'codepoint, 0x1103F);
18466put('BRAHMI_VOWEL_SIGN_VOCALIC_L, 'codepoint, 0x11040);
18467put('BRAHMI_VOWEL_SIGN_VOCALIC_LL, 'codepoint, 0x11041);
18468put('BRAHMI_VOWEL_SIGN_E, 'codepoint, 0x11042);
18469put('BRAHMI_VOWEL_SIGN_AI, 'codepoint, 0x11043);
18470put('BRAHMI_VOWEL_SIGN_O, 'codepoint, 0x11044);
18471put('BRAHMI_VOWEL_SIGN_AU, 'codepoint, 0x11045);
18472put('BRAHMI_VIRAMA, 'codepoint, 0x11046);
18473put('BRAHMI_DANDA, 'codepoint, 0x11047);
18474put('BRAHMI_DOUBLE_DANDA, 'codepoint, 0x11048);
18475put('BRAHMI_PUNCTUATION_DOT, 'codepoint, 0x11049);
18476put('BRAHMI_PUNCTUATION_DOUBLE_DOT, 'codepoint, 0x1104A);
18477put('BRAHMI_PUNCTUATION_LINE, 'codepoint, 0x1104B);
18478put('BRAHMI_PUNCTUATION_CRESCENT_BAR, 'codepoint, 0x1104C);
18479put('BRAHMI_PUNCTUATION_LOTUS, 'codepoint, 0x1104D);
18480put('BRAHMI_NUMBER_ONE, 'codepoint, 0x11052);
18481put('BRAHMI_NUMBER_TWO, 'codepoint, 0x11053);
18482put('BRAHMI_NUMBER_THREE, 'codepoint, 0x11054);
18483put('BRAHMI_NUMBER_FOUR, 'codepoint, 0x11055);
18484put('BRAHMI_NUMBER_FIVE, 'codepoint, 0x11056);
18485put('BRAHMI_NUMBER_SIX, 'codepoint, 0x11057);
18486put('BRAHMI_NUMBER_SEVEN, 'codepoint, 0x11058);
18487put('BRAHMI_NUMBER_EIGHT, 'codepoint, 0x11059);
18488put('BRAHMI_NUMBER_NINE, 'codepoint, 0x1105A);
18489put('BRAHMI_NUMBER_TEN, 'codepoint, 0x1105B);
18490put('BRAHMI_NUMBER_TWENTY, 'codepoint, 0x1105C);
18491put('BRAHMI_NUMBER_THIRTY, 'codepoint, 0x1105D);
18492put('BRAHMI_NUMBER_FORTY, 'codepoint, 0x1105E);
18493put('BRAHMI_NUMBER_FIFTY, 'codepoint, 0x1105F);
18494put('BRAHMI_NUMBER_SIXTY, 'codepoint, 0x11060);
18495put('BRAHMI_NUMBER_SEVENTY, 'codepoint, 0x11061);
18496put('BRAHMI_NUMBER_EIGHTY, 'codepoint, 0x11062);
18497put('BRAHMI_NUMBER_NINETY, 'codepoint, 0x11063);
18498put('BRAHMI_NUMBER_ONE_HUNDRED, 'codepoint, 0x11064);
18499put('BRAHMI_NUMBER_ONE_THOUSAND, 'codepoint, 0x11065);
18500put('BRAHMI_DIGIT_ZERO, 'codepoint, 0x11066);
18501put('BRAHMI_DIGIT_ONE, 'codepoint, 0x11067);
18502put('BRAHMI_DIGIT_TWO, 'codepoint, 0x11068);
18503put('BRAHMI_DIGIT_THREE, 'codepoint, 0x11069);
18504put('BRAHMI_DIGIT_FOUR, 'codepoint, 0x1106A);
18505put('BRAHMI_DIGIT_FIVE, 'codepoint, 0x1106B);
18506put('BRAHMI_DIGIT_SIX, 'codepoint, 0x1106C);
18507put('BRAHMI_DIGIT_SEVEN, 'codepoint, 0x1106D);
18508put('BRAHMI_DIGIT_EIGHT, 'codepoint, 0x1106E);
18509put('BRAHMI_DIGIT_NINE, 'codepoint, 0x1106F);
18510put('BRAHMI_NUMBER_JOINER, 'codepoint, 0x1107F);
18511put('KAITHI_SIGN_CANDRABINDU, 'codepoint, 0x11080);
18512put('KAITHI_SIGN_ANUSVARA, 'codepoint, 0x11081);
18513put('KAITHI_SIGN_VISARGA, 'codepoint, 0x11082);
18514put('KAITHI_LETTER_A, 'codepoint, 0x11083);
18515put('KAITHI_LETTER_AA, 'codepoint, 0x11084);
18516put('KAITHI_LETTER_I, 'codepoint, 0x11085);
18517put('KAITHI_LETTER_II, 'codepoint, 0x11086);
18518put('KAITHI_LETTER_U, 'codepoint, 0x11087);
18519put('KAITHI_LETTER_UU, 'codepoint, 0x11088);
18520put('KAITHI_LETTER_E, 'codepoint, 0x11089);
18521put('KAITHI_LETTER_AI, 'codepoint, 0x1108A);
18522put('KAITHI_LETTER_O, 'codepoint, 0x1108B);
18523put('KAITHI_LETTER_AU, 'codepoint, 0x1108C);
18524put('KAITHI_LETTER_KA, 'codepoint, 0x1108D);
18525put('KAITHI_LETTER_KHA, 'codepoint, 0x1108E);
18526put('KAITHI_LETTER_GA, 'codepoint, 0x1108F);
18527put('KAITHI_LETTER_GHA, 'codepoint, 0x11090);
18528put('KAITHI_LETTER_NGA, 'codepoint, 0x11091);
18529put('KAITHI_LETTER_CA, 'codepoint, 0x11092);
18530put('KAITHI_LETTER_CHA, 'codepoint, 0x11093);
18531put('KAITHI_LETTER_JA, 'codepoint, 0x11094);
18532put('KAITHI_LETTER_JHA, 'codepoint, 0x11095);
18533put('KAITHI_LETTER_NYA, 'codepoint, 0x11096);
18534put('KAITHI_LETTER_TTA, 'codepoint, 0x11097);
18535put('KAITHI_LETTER_TTHA, 'codepoint, 0x11098);
18536put('KAITHI_LETTER_DDA, 'codepoint, 0x11099);
18537put('KAITHI_LETTER_DDDHA, 'codepoint, 0x1109A);
18538put('KAITHI_LETTER_DDHA, 'codepoint, 0x1109B);
18539put('KAITHI_LETTER_RHA, 'codepoint, 0x1109C);
18540put('KAITHI_LETTER_NNA, 'codepoint, 0x1109D);
18541put('KAITHI_LETTER_TA, 'codepoint, 0x1109E);
18542put('KAITHI_LETTER_THA, 'codepoint, 0x1109F);
18543put('KAITHI_LETTER_DA, 'codepoint, 0x110A0);
18544put('KAITHI_LETTER_DHA, 'codepoint, 0x110A1);
18545put('KAITHI_LETTER_NA, 'codepoint, 0x110A2);
18546put('KAITHI_LETTER_PA, 'codepoint, 0x110A3);
18547put('KAITHI_LETTER_PHA, 'codepoint, 0x110A4);
18548put('KAITHI_LETTER_BA, 'codepoint, 0x110A5);
18549put('KAITHI_LETTER_BHA, 'codepoint, 0x110A6);
18550put('KAITHI_LETTER_MA, 'codepoint, 0x110A7);
18551put('KAITHI_LETTER_YA, 'codepoint, 0x110A8);
18552put('KAITHI_LETTER_RA, 'codepoint, 0x110A9);
18553put('KAITHI_LETTER_LA, 'codepoint, 0x110AA);
18554put('KAITHI_LETTER_VA, 'codepoint, 0x110AB);
18555put('KAITHI_LETTER_SHA, 'codepoint, 0x110AC);
18556put('KAITHI_LETTER_SSA, 'codepoint, 0x110AD);
18557put('KAITHI_LETTER_SA, 'codepoint, 0x110AE);
18558put('KAITHI_LETTER_HA, 'codepoint, 0x110AF);
18559put('KAITHI_VOWEL_SIGN_AA, 'codepoint, 0x110B0);
18560put('KAITHI_VOWEL_SIGN_I, 'codepoint, 0x110B1);
18561put('KAITHI_VOWEL_SIGN_II, 'codepoint, 0x110B2);
18562put('KAITHI_VOWEL_SIGN_U, 'codepoint, 0x110B3);
18563put('KAITHI_VOWEL_SIGN_UU, 'codepoint, 0x110B4);
18564put('KAITHI_VOWEL_SIGN_E, 'codepoint, 0x110B5);
18565put('KAITHI_VOWEL_SIGN_AI, 'codepoint, 0x110B6);
18566put('KAITHI_VOWEL_SIGN_O, 'codepoint, 0x110B7);
18567put('KAITHI_VOWEL_SIGN_AU, 'codepoint, 0x110B8);
18568put('KAITHI_SIGN_VIRAMA, 'codepoint, 0x110B9);
18569put('KAITHI_SIGN_NUKTA, 'codepoint, 0x110BA);
18570put('KAITHI_ABBREVIATION_SIGN, 'codepoint, 0x110BB);
18571put('KAITHI_ENUMERATION_SIGN, 'codepoint, 0x110BC);
18572put('KAITHI_NUMBER_SIGN, 'codepoint, 0x110BD);
18573put('KAITHI_SECTION_MARK, 'codepoint, 0x110BE);
18574put('KAITHI_DOUBLE_SECTION_MARK, 'codepoint, 0x110BF);
18575put('KAITHI_DANDA, 'codepoint, 0x110C0);
18576put('KAITHI_DOUBLE_DANDA, 'codepoint, 0x110C1);
18577put('SORA_SOMPENG_LETTER_SAH, 'codepoint, 0x110D0);
18578put('SORA_SOMPENG_LETTER_TAH, 'codepoint, 0x110D1);
18579put('SORA_SOMPENG_LETTER_BAH, 'codepoint, 0x110D2);
18580put('SORA_SOMPENG_LETTER_CAH, 'codepoint, 0x110D3);
18581put('SORA_SOMPENG_LETTER_DAH, 'codepoint, 0x110D4);
18582put('SORA_SOMPENG_LETTER_GAH, 'codepoint, 0x110D5);
18583put('SORA_SOMPENG_LETTER_MAH, 'codepoint, 0x110D6);
18584put('SORA_SOMPENG_LETTER_NGAH, 'codepoint, 0x110D7);
18585put('SORA_SOMPENG_LETTER_LAH, 'codepoint, 0x110D8);
18586put('SORA_SOMPENG_LETTER_NAH, 'codepoint, 0x110D9);
18587put('SORA_SOMPENG_LETTER_VAH, 'codepoint, 0x110DA);
18588put('SORA_SOMPENG_LETTER_PAH, 'codepoint, 0x110DB);
18589put('SORA_SOMPENG_LETTER_YAH, 'codepoint, 0x110DC);
18590put('SORA_SOMPENG_LETTER_RAH, 'codepoint, 0x110DD);
18591put('SORA_SOMPENG_LETTER_HAH, 'codepoint, 0x110DE);
18592put('SORA_SOMPENG_LETTER_KAH, 'codepoint, 0x110DF);
18593put('SORA_SOMPENG_LETTER_JAH, 'codepoint, 0x110E0);
18594put('SORA_SOMPENG_LETTER_NYAH, 'codepoint, 0x110E1);
18595put('SORA_SOMPENG_LETTER_AH, 'codepoint, 0x110E2);
18596put('SORA_SOMPENG_LETTER_EEH, 'codepoint, 0x110E3);
18597put('SORA_SOMPENG_LETTER_IH, 'codepoint, 0x110E4);
18598put('SORA_SOMPENG_LETTER_UH, 'codepoint, 0x110E5);
18599put('SORA_SOMPENG_LETTER_OH, 'codepoint, 0x110E6);
18600put('SORA_SOMPENG_LETTER_EH, 'codepoint, 0x110E7);
18601put('SORA_SOMPENG_LETTER_MAE, 'codepoint, 0x110E8);
18602put('SORA_SOMPENG_DIGIT_ZERO, 'codepoint, 0x110F0);
18603put('SORA_SOMPENG_DIGIT_ONE, 'codepoint, 0x110F1);
18604put('SORA_SOMPENG_DIGIT_TWO, 'codepoint, 0x110F2);
18605put('SORA_SOMPENG_DIGIT_THREE, 'codepoint, 0x110F3);
18606put('SORA_SOMPENG_DIGIT_FOUR, 'codepoint, 0x110F4);
18607put('SORA_SOMPENG_DIGIT_FIVE, 'codepoint, 0x110F5);
18608put('SORA_SOMPENG_DIGIT_SIX, 'codepoint, 0x110F6);
18609put('SORA_SOMPENG_DIGIT_SEVEN, 'codepoint, 0x110F7);
18610put('SORA_SOMPENG_DIGIT_EIGHT, 'codepoint, 0x110F8);
18611put('SORA_SOMPENG_DIGIT_NINE, 'codepoint, 0x110F9);
18612put('CHAKMA_SIGN_CANDRABINDU, 'codepoint, 0x11100);
18613put('CHAKMA_SIGN_ANUSVARA, 'codepoint, 0x11101);
18614put('CHAKMA_SIGN_VISARGA, 'codepoint, 0x11102);
18615put('CHAKMA_LETTER_AA, 'codepoint, 0x11103);
18616put('CHAKMA_LETTER_I, 'codepoint, 0x11104);
18617put('CHAKMA_LETTER_U, 'codepoint, 0x11105);
18618put('CHAKMA_LETTER_E, 'codepoint, 0x11106);
18619put('CHAKMA_LETTER_KAA, 'codepoint, 0x11107);
18620put('CHAKMA_LETTER_KHAA, 'codepoint, 0x11108);
18621put('CHAKMA_LETTER_GAA, 'codepoint, 0x11109);
18622put('CHAKMA_LETTER_GHAA, 'codepoint, 0x1110A);
18623put('CHAKMA_LETTER_NGAA, 'codepoint, 0x1110B);
18624put('CHAKMA_LETTER_CAA, 'codepoint, 0x1110C);
18625put('CHAKMA_LETTER_CHAA, 'codepoint, 0x1110D);
18626put('CHAKMA_LETTER_JAA, 'codepoint, 0x1110E);
18627put('CHAKMA_LETTER_JHAA, 'codepoint, 0x1110F);
18628put('CHAKMA_LETTER_NYAA, 'codepoint, 0x11110);
18629put('CHAKMA_LETTER_TTAA, 'codepoint, 0x11111);
18630put('CHAKMA_LETTER_TTHAA, 'codepoint, 0x11112);
18631put('CHAKMA_LETTER_DDAA, 'codepoint, 0x11113);
18632put('CHAKMA_LETTER_DDHAA, 'codepoint, 0x11114);
18633put('CHAKMA_LETTER_NNAA, 'codepoint, 0x11115);
18634put('CHAKMA_LETTER_TAA, 'codepoint, 0x11116);
18635put('CHAKMA_LETTER_THAA, 'codepoint, 0x11117);
18636put('CHAKMA_LETTER_DAA, 'codepoint, 0x11118);
18637put('CHAKMA_LETTER_DHAA, 'codepoint, 0x11119);
18638put('CHAKMA_LETTER_NAA, 'codepoint, 0x1111A);
18639put('CHAKMA_LETTER_PAA, 'codepoint, 0x1111B);
18640put('CHAKMA_LETTER_PHAA, 'codepoint, 0x1111C);
18641put('CHAKMA_LETTER_BAA, 'codepoint, 0x1111D);
18642put('CHAKMA_LETTER_BHAA, 'codepoint, 0x1111E);
18643put('CHAKMA_LETTER_MAA, 'codepoint, 0x1111F);
18644put('CHAKMA_LETTER_YYAA, 'codepoint, 0x11120);
18645put('CHAKMA_LETTER_YAA, 'codepoint, 0x11121);
18646put('CHAKMA_LETTER_RAA, 'codepoint, 0x11122);
18647put('CHAKMA_LETTER_LAA, 'codepoint, 0x11123);
18648put('CHAKMA_LETTER_WAA, 'codepoint, 0x11124);
18649put('CHAKMA_LETTER_SAA, 'codepoint, 0x11125);
18650put('CHAKMA_LETTER_HAA, 'codepoint, 0x11126);
18651put('CHAKMA_VOWEL_SIGN_A, 'codepoint, 0x11127);
18652put('CHAKMA_VOWEL_SIGN_I, 'codepoint, 0x11128);
18653put('CHAKMA_VOWEL_SIGN_II, 'codepoint, 0x11129);
18654put('CHAKMA_VOWEL_SIGN_U, 'codepoint, 0x1112A);
18655put('CHAKMA_VOWEL_SIGN_UU, 'codepoint, 0x1112B);
18656put('CHAKMA_VOWEL_SIGN_E, 'codepoint, 0x1112C);
18657put('CHAKMA_VOWEL_SIGN_AI, 'codepoint, 0x1112D);
18658put('CHAKMA_VOWEL_SIGN_O, 'codepoint, 0x1112E);
18659put('CHAKMA_VOWEL_SIGN_AU, 'codepoint, 0x1112F);
18660put('CHAKMA_VOWEL_SIGN_OI, 'codepoint, 0x11130);
18661put('CHAKMA_O_MARK, 'codepoint, 0x11131);
18662put('CHAKMA_AU_MARK, 'codepoint, 0x11132);
18663put('CHAKMA_VIRAMA, 'codepoint, 0x11133);
18664put('CHAKMA_MAAYYAA, 'codepoint, 0x11134);
18665put('CHAKMA_DIGIT_ZERO, 'codepoint, 0x11136);
18666put('CHAKMA_DIGIT_ONE, 'codepoint, 0x11137);
18667put('CHAKMA_DIGIT_TWO, 'codepoint, 0x11138);
18668put('CHAKMA_DIGIT_THREE, 'codepoint, 0x11139);
18669put('CHAKMA_DIGIT_FOUR, 'codepoint, 0x1113A);
18670put('CHAKMA_DIGIT_FIVE, 'codepoint, 0x1113B);
18671put('CHAKMA_DIGIT_SIX, 'codepoint, 0x1113C);
18672put('CHAKMA_DIGIT_SEVEN, 'codepoint, 0x1113D);
18673put('CHAKMA_DIGIT_EIGHT, 'codepoint, 0x1113E);
18674put('CHAKMA_DIGIT_NINE, 'codepoint, 0x1113F);
18675put('CHAKMA_SECTION_MARK, 'codepoint, 0x11140);
18676put('CHAKMA_DANDA, 'codepoint, 0x11141);
18677put('CHAKMA_DOUBLE_DANDA, 'codepoint, 0x11142);
18678put('CHAKMA_QUESTION_MARK, 'codepoint, 0x11143);
18679put('MAHAJANI_LETTER_A, 'codepoint, 0x11150);
18680put('MAHAJANI_LETTER_I, 'codepoint, 0x11151);
18681put('MAHAJANI_LETTER_U, 'codepoint, 0x11152);
18682put('MAHAJANI_LETTER_E, 'codepoint, 0x11153);
18683put('MAHAJANI_LETTER_O, 'codepoint, 0x11154);
18684put('MAHAJANI_LETTER_KA, 'codepoint, 0x11155);
18685put('MAHAJANI_LETTER_KHA, 'codepoint, 0x11156);
18686put('MAHAJANI_LETTER_GA, 'codepoint, 0x11157);
18687put('MAHAJANI_LETTER_GHA, 'codepoint, 0x11158);
18688put('MAHAJANI_LETTER_CA, 'codepoint, 0x11159);
18689put('MAHAJANI_LETTER_CHA, 'codepoint, 0x1115A);
18690put('MAHAJANI_LETTER_JA, 'codepoint, 0x1115B);
18691put('MAHAJANI_LETTER_JHA, 'codepoint, 0x1115C);
18692put('MAHAJANI_LETTER_NYA, 'codepoint, 0x1115D);
18693put('MAHAJANI_LETTER_TTA, 'codepoint, 0x1115E);
18694put('MAHAJANI_LETTER_TTHA, 'codepoint, 0x1115F);
18695put('MAHAJANI_LETTER_DDA, 'codepoint, 0x11160);
18696put('MAHAJANI_LETTER_DDHA, 'codepoint, 0x11161);
18697put('MAHAJANI_LETTER_NNA, 'codepoint, 0x11162);
18698put('MAHAJANI_LETTER_TA, 'codepoint, 0x11163);
18699put('MAHAJANI_LETTER_THA, 'codepoint, 0x11164);
18700put('MAHAJANI_LETTER_DA, 'codepoint, 0x11165);
18701put('MAHAJANI_LETTER_DHA, 'codepoint, 0x11166);
18702put('MAHAJANI_LETTER_NA, 'codepoint, 0x11167);
18703put('MAHAJANI_LETTER_PA, 'codepoint, 0x11168);
18704put('MAHAJANI_LETTER_PHA, 'codepoint, 0x11169);
18705put('MAHAJANI_LETTER_BA, 'codepoint, 0x1116A);
18706put('MAHAJANI_LETTER_BHA, 'codepoint, 0x1116B);
18707put('MAHAJANI_LETTER_MA, 'codepoint, 0x1116C);
18708put('MAHAJANI_LETTER_RA, 'codepoint, 0x1116D);
18709put('MAHAJANI_LETTER_LA, 'codepoint, 0x1116E);
18710put('MAHAJANI_LETTER_VA, 'codepoint, 0x1116F);
18711put('MAHAJANI_LETTER_SA, 'codepoint, 0x11170);
18712put('MAHAJANI_LETTER_HA, 'codepoint, 0x11171);
18713put('MAHAJANI_LETTER_RRA, 'codepoint, 0x11172);
18714put('MAHAJANI_SIGN_NUKTA, 'codepoint, 0x11173);
18715put('MAHAJANI_ABBREVIATION_SIGN, 'codepoint, 0x11174);
18716put('MAHAJANI_SECTION_MARK, 'codepoint, 0x11175);
18717put('MAHAJANI_LIGATURE_SHRI, 'codepoint, 0x11176);
18718put('SHARADA_SIGN_CANDRABINDU, 'codepoint, 0x11180);
18719put('SHARADA_SIGN_ANUSVARA, 'codepoint, 0x11181);
18720put('SHARADA_SIGN_VISARGA, 'codepoint, 0x11182);
18721put('SHARADA_LETTER_A, 'codepoint, 0x11183);
18722put('SHARADA_LETTER_AA, 'codepoint, 0x11184);
18723put('SHARADA_LETTER_I, 'codepoint, 0x11185);
18724put('SHARADA_LETTER_II, 'codepoint, 0x11186);
18725put('SHARADA_LETTER_U, 'codepoint, 0x11187);
18726put('SHARADA_LETTER_UU, 'codepoint, 0x11188);
18727put('SHARADA_LETTER_VOCALIC_R, 'codepoint, 0x11189);
18728put('SHARADA_LETTER_VOCALIC_RR, 'codepoint, 0x1118A);
18729put('SHARADA_LETTER_VOCALIC_L, 'codepoint, 0x1118B);
18730put('SHARADA_LETTER_VOCALIC_LL, 'codepoint, 0x1118C);
18731put('SHARADA_LETTER_E, 'codepoint, 0x1118D);
18732put('SHARADA_LETTER_AI, 'codepoint, 0x1118E);
18733put('SHARADA_LETTER_O, 'codepoint, 0x1118F);
18734put('SHARADA_LETTER_AU, 'codepoint, 0x11190);
18735put('SHARADA_LETTER_KA, 'codepoint, 0x11191);
18736put('SHARADA_LETTER_KHA, 'codepoint, 0x11192);
18737put('SHARADA_LETTER_GA, 'codepoint, 0x11193);
18738put('SHARADA_LETTER_GHA, 'codepoint, 0x11194);
18739put('SHARADA_LETTER_NGA, 'codepoint, 0x11195);
18740put('SHARADA_LETTER_CA, 'codepoint, 0x11196);
18741put('SHARADA_LETTER_CHA, 'codepoint, 0x11197);
18742put('SHARADA_LETTER_JA, 'codepoint, 0x11198);
18743put('SHARADA_LETTER_JHA, 'codepoint, 0x11199);
18744put('SHARADA_LETTER_NYA, 'codepoint, 0x1119A);
18745put('SHARADA_LETTER_TTA, 'codepoint, 0x1119B);
18746put('SHARADA_LETTER_TTHA, 'codepoint, 0x1119C);
18747put('SHARADA_LETTER_DDA, 'codepoint, 0x1119D);
18748put('SHARADA_LETTER_DDHA, 'codepoint, 0x1119E);
18749put('SHARADA_LETTER_NNA, 'codepoint, 0x1119F);
18750put('SHARADA_LETTER_TA, 'codepoint, 0x111A0);
18751put('SHARADA_LETTER_THA, 'codepoint, 0x111A1);
18752put('SHARADA_LETTER_DA, 'codepoint, 0x111A2);
18753put('SHARADA_LETTER_DHA, 'codepoint, 0x111A3);
18754put('SHARADA_LETTER_NA, 'codepoint, 0x111A4);
18755put('SHARADA_LETTER_PA, 'codepoint, 0x111A5);
18756put('SHARADA_LETTER_PHA, 'codepoint, 0x111A6);
18757put('SHARADA_LETTER_BA, 'codepoint, 0x111A7);
18758put('SHARADA_LETTER_BHA, 'codepoint, 0x111A8);
18759put('SHARADA_LETTER_MA, 'codepoint, 0x111A9);
18760put('SHARADA_LETTER_YA, 'codepoint, 0x111AA);
18761put('SHARADA_LETTER_RA, 'codepoint, 0x111AB);
18762put('SHARADA_LETTER_LA, 'codepoint, 0x111AC);
18763put('SHARADA_LETTER_LLA, 'codepoint, 0x111AD);
18764put('SHARADA_LETTER_VA, 'codepoint, 0x111AE);
18765put('SHARADA_LETTER_SHA, 'codepoint, 0x111AF);
18766put('SHARADA_LETTER_SSA, 'codepoint, 0x111B0);
18767put('SHARADA_LETTER_SA, 'codepoint, 0x111B1);
18768put('SHARADA_LETTER_HA, 'codepoint, 0x111B2);
18769put('SHARADA_VOWEL_SIGN_AA, 'codepoint, 0x111B3);
18770put('SHARADA_VOWEL_SIGN_I, 'codepoint, 0x111B4);
18771put('SHARADA_VOWEL_SIGN_II, 'codepoint, 0x111B5);
18772put('SHARADA_VOWEL_SIGN_U, 'codepoint, 0x111B6);
18773put('SHARADA_VOWEL_SIGN_UU, 'codepoint, 0x111B7);
18774put('SHARADA_VOWEL_SIGN_VOCALIC_R, 'codepoint, 0x111B8);
18775put('SHARADA_VOWEL_SIGN_VOCALIC_RR, 'codepoint, 0x111B9);
18776put('SHARADA_VOWEL_SIGN_VOCALIC_L, 'codepoint, 0x111BA);
18777put('SHARADA_VOWEL_SIGN_VOCALIC_LL, 'codepoint, 0x111BB);
18778put('SHARADA_VOWEL_SIGN_E, 'codepoint, 0x111BC);
18779put('SHARADA_VOWEL_SIGN_AI, 'codepoint, 0x111BD);
18780put('SHARADA_VOWEL_SIGN_O, 'codepoint, 0x111BE);
18781put('SHARADA_VOWEL_SIGN_AU, 'codepoint, 0x111BF);
18782put('SHARADA_SIGN_VIRAMA, 'codepoint, 0x111C0);
18783put('SHARADA_SIGN_AVAGRAHA, 'codepoint, 0x111C1);
18784put('SHARADA_SIGN_JIHVAMULIYA, 'codepoint, 0x111C2);
18785put('SHARADA_SIGN_UPADHMANIYA, 'codepoint, 0x111C3);
18786put('SHARADA_OM, 'codepoint, 0x111C4);
18787put('SHARADA_DANDA, 'codepoint, 0x111C5);
18788put('SHARADA_DOUBLE_DANDA, 'codepoint, 0x111C6);
18789put('SHARADA_ABBREVIATION_SIGN, 'codepoint, 0x111C7);
18790put('SHARADA_SEPARATOR, 'codepoint, 0x111C8);
18791put('SHARADA_SUTRA_MARK, 'codepoint, 0x111CD);
18792put('SHARADA_DIGIT_ZERO, 'codepoint, 0x111D0);
18793put('SHARADA_DIGIT_ONE, 'codepoint, 0x111D1);
18794put('SHARADA_DIGIT_TWO, 'codepoint, 0x111D2);
18795put('SHARADA_DIGIT_THREE, 'codepoint, 0x111D3);
18796put('SHARADA_DIGIT_FOUR, 'codepoint, 0x111D4);
18797put('SHARADA_DIGIT_FIVE, 'codepoint, 0x111D5);
18798put('SHARADA_DIGIT_SIX, 'codepoint, 0x111D6);
18799put('SHARADA_DIGIT_SEVEN, 'codepoint, 0x111D7);
18800put('SHARADA_DIGIT_EIGHT, 'codepoint, 0x111D8);
18801put('SHARADA_DIGIT_NINE, 'codepoint, 0x111D9);
18802put('SHARADA_EKAM, 'codepoint, 0x111DA);
18803put('SINHALA_ARCHAIC_DIGIT_ONE, 'codepoint, 0x111E1);
18804put('SINHALA_ARCHAIC_DIGIT_TWO, 'codepoint, 0x111E2);
18805put('SINHALA_ARCHAIC_DIGIT_THREE, 'codepoint, 0x111E3);
18806put('SINHALA_ARCHAIC_DIGIT_FOUR, 'codepoint, 0x111E4);
18807put('SINHALA_ARCHAIC_DIGIT_FIVE, 'codepoint, 0x111E5);
18808put('SINHALA_ARCHAIC_DIGIT_SIX, 'codepoint, 0x111E6);
18809put('SINHALA_ARCHAIC_DIGIT_SEVEN, 'codepoint, 0x111E7);
18810put('SINHALA_ARCHAIC_DIGIT_EIGHT, 'codepoint, 0x111E8);
18811put('SINHALA_ARCHAIC_DIGIT_NINE, 'codepoint, 0x111E9);
18812put('SINHALA_ARCHAIC_NUMBER_TEN, 'codepoint, 0x111EA);
18813put('SINHALA_ARCHAIC_NUMBER_TWENTY, 'codepoint, 0x111EB);
18814put('SINHALA_ARCHAIC_NUMBER_THIRTY, 'codepoint, 0x111EC);
18815put('SINHALA_ARCHAIC_NUMBER_FORTY, 'codepoint, 0x111ED);
18816put('SINHALA_ARCHAIC_NUMBER_FIFTY, 'codepoint, 0x111EE);
18817put('SINHALA_ARCHAIC_NUMBER_SIXTY, 'codepoint, 0x111EF);
18818put('SINHALA_ARCHAIC_NUMBER_SEVENTY, 'codepoint, 0x111F0);
18819put('SINHALA_ARCHAIC_NUMBER_EIGHTY, 'codepoint, 0x111F1);
18820put('SINHALA_ARCHAIC_NUMBER_NINETY, 'codepoint, 0x111F2);
18821put('SINHALA_ARCHAIC_NUMBER_ONE_HUNDRED, 'codepoint, 0x111F3);
18822put('SINHALA_ARCHAIC_NUMBER_ONE_THOUSAND, 'codepoint, 0x111F4);
18823put('KHOJKI_LETTER_A, 'codepoint, 0x11200);
18824put('KHOJKI_LETTER_AA, 'codepoint, 0x11201);
18825put('KHOJKI_LETTER_I, 'codepoint, 0x11202);
18826put('KHOJKI_LETTER_U, 'codepoint, 0x11203);
18827put('KHOJKI_LETTER_E, 'codepoint, 0x11204);
18828put('KHOJKI_LETTER_AI, 'codepoint, 0x11205);
18829put('KHOJKI_LETTER_O, 'codepoint, 0x11206);
18830put('KHOJKI_LETTER_AU, 'codepoint, 0x11207);
18831put('KHOJKI_LETTER_KA, 'codepoint, 0x11208);
18832put('KHOJKI_LETTER_KHA, 'codepoint, 0x11209);
18833put('KHOJKI_LETTER_GA, 'codepoint, 0x1120A);
18834put('KHOJKI_LETTER_GGA, 'codepoint, 0x1120B);
18835put('KHOJKI_LETTER_GHA, 'codepoint, 0x1120C);
18836put('KHOJKI_LETTER_NGA, 'codepoint, 0x1120D);
18837put('KHOJKI_LETTER_CA, 'codepoint, 0x1120E);
18838put('KHOJKI_LETTER_CHA, 'codepoint, 0x1120F);
18839put('KHOJKI_LETTER_JA, 'codepoint, 0x11210);
18840put('KHOJKI_LETTER_JJA, 'codepoint, 0x11211);
18841put('KHOJKI_LETTER_NYA, 'codepoint, 0x11213);
18842put('KHOJKI_LETTER_TTA, 'codepoint, 0x11214);
18843put('KHOJKI_LETTER_TTHA, 'codepoint, 0x11215);
18844put('KHOJKI_LETTER_DDA, 'codepoint, 0x11216);
18845put('KHOJKI_LETTER_DDHA, 'codepoint, 0x11217);
18846put('KHOJKI_LETTER_NNA, 'codepoint, 0x11218);
18847put('KHOJKI_LETTER_TA, 'codepoint, 0x11219);
18848put('KHOJKI_LETTER_THA, 'codepoint, 0x1121A);
18849put('KHOJKI_LETTER_DA, 'codepoint, 0x1121B);
18850put('KHOJKI_LETTER_DDDA, 'codepoint, 0x1121C);
18851put('KHOJKI_LETTER_DHA, 'codepoint, 0x1121D);
18852put('KHOJKI_LETTER_NA, 'codepoint, 0x1121E);
18853put('KHOJKI_LETTER_PA, 'codepoint, 0x1121F);
18854put('KHOJKI_LETTER_PHA, 'codepoint, 0x11220);
18855put('KHOJKI_LETTER_BA, 'codepoint, 0x11221);
18856put('KHOJKI_LETTER_BBA, 'codepoint, 0x11222);
18857put('KHOJKI_LETTER_BHA, 'codepoint, 0x11223);
18858put('KHOJKI_LETTER_MA, 'codepoint, 0x11224);
18859put('KHOJKI_LETTER_YA, 'codepoint, 0x11225);
18860put('KHOJKI_LETTER_RA, 'codepoint, 0x11226);
18861put('KHOJKI_LETTER_LA, 'codepoint, 0x11227);
18862put('KHOJKI_LETTER_VA, 'codepoint, 0x11228);
18863put('KHOJKI_LETTER_SA, 'codepoint, 0x11229);
18864put('KHOJKI_LETTER_HA, 'codepoint, 0x1122A);
18865put('KHOJKI_LETTER_LLA, 'codepoint, 0x1122B);
18866put('KHOJKI_VOWEL_SIGN_AA, 'codepoint, 0x1122C);
18867put('KHOJKI_VOWEL_SIGN_I, 'codepoint, 0x1122D);
18868put('KHOJKI_VOWEL_SIGN_II, 'codepoint, 0x1122E);
18869put('KHOJKI_VOWEL_SIGN_U, 'codepoint, 0x1122F);
18870put('KHOJKI_VOWEL_SIGN_E, 'codepoint, 0x11230);
18871put('KHOJKI_VOWEL_SIGN_AI, 'codepoint, 0x11231);
18872put('KHOJKI_VOWEL_SIGN_O, 'codepoint, 0x11232);
18873put('KHOJKI_VOWEL_SIGN_AU, 'codepoint, 0x11233);
18874put('KHOJKI_SIGN_ANUSVARA, 'codepoint, 0x11234);
18875put('KHOJKI_SIGN_VIRAMA, 'codepoint, 0x11235);
18876put('KHOJKI_SIGN_NUKTA, 'codepoint, 0x11236);
18877put('KHOJKI_SIGN_SHADDA, 'codepoint, 0x11237);
18878put('KHOJKI_DANDA, 'codepoint, 0x11238);
18879put('KHOJKI_DOUBLE_DANDA, 'codepoint, 0x11239);
18880put('KHOJKI_WORD_SEPARATOR, 'codepoint, 0x1123A);
18881put('KHOJKI_SECTION_MARK, 'codepoint, 0x1123B);
18882put('KHOJKI_DOUBLE_SECTION_MARK, 'codepoint, 0x1123C);
18883put('KHOJKI_ABBREVIATION_SIGN, 'codepoint, 0x1123D);
18884put('KHUDAWADI_LETTER_A, 'codepoint, 0x112B0);
18885put('KHUDAWADI_LETTER_AA, 'codepoint, 0x112B1);
18886put('KHUDAWADI_LETTER_I, 'codepoint, 0x112B2);
18887put('KHUDAWADI_LETTER_II, 'codepoint, 0x112B3);
18888put('KHUDAWADI_LETTER_U, 'codepoint, 0x112B4);
18889put('KHUDAWADI_LETTER_UU, 'codepoint, 0x112B5);
18890put('KHUDAWADI_LETTER_E, 'codepoint, 0x112B6);
18891put('KHUDAWADI_LETTER_AI, 'codepoint, 0x112B7);
18892put('KHUDAWADI_LETTER_O, 'codepoint, 0x112B8);
18893put('KHUDAWADI_LETTER_AU, 'codepoint, 0x112B9);
18894put('KHUDAWADI_LETTER_KA, 'codepoint, 0x112BA);
18895put('KHUDAWADI_LETTER_KHA, 'codepoint, 0x112BB);
18896put('KHUDAWADI_LETTER_GA, 'codepoint, 0x112BC);
18897put('KHUDAWADI_LETTER_GGA, 'codepoint, 0x112BD);
18898put('KHUDAWADI_LETTER_GHA, 'codepoint, 0x112BE);
18899put('KHUDAWADI_LETTER_NGA, 'codepoint, 0x112BF);
18900put('KHUDAWADI_LETTER_CA, 'codepoint, 0x112C0);
18901put('KHUDAWADI_LETTER_CHA, 'codepoint, 0x112C1);
18902put('KHUDAWADI_LETTER_JA, 'codepoint, 0x112C2);
18903put('KHUDAWADI_LETTER_JJA, 'codepoint, 0x112C3);
18904put('KHUDAWADI_LETTER_JHA, 'codepoint, 0x112C4);
18905put('KHUDAWADI_LETTER_NYA, 'codepoint, 0x112C5);
18906put('KHUDAWADI_LETTER_TTA, 'codepoint, 0x112C6);
18907put('KHUDAWADI_LETTER_TTHA, 'codepoint, 0x112C7);
18908put('KHUDAWADI_LETTER_DDA, 'codepoint, 0x112C8);
18909put('KHUDAWADI_LETTER_DDDA, 'codepoint, 0x112C9);
18910put('KHUDAWADI_LETTER_RRA, 'codepoint, 0x112CA);
18911put('KHUDAWADI_LETTER_DDHA, 'codepoint, 0x112CB);
18912put('KHUDAWADI_LETTER_NNA, 'codepoint, 0x112CC);
18913put('KHUDAWADI_LETTER_TA, 'codepoint, 0x112CD);
18914put('KHUDAWADI_LETTER_THA, 'codepoint, 0x112CE);
18915put('KHUDAWADI_LETTER_DA, 'codepoint, 0x112CF);
18916put('KHUDAWADI_LETTER_DHA, 'codepoint, 0x112D0);
18917put('KHUDAWADI_LETTER_NA, 'codepoint, 0x112D1);
18918put('KHUDAWADI_LETTER_PA, 'codepoint, 0x112D2);
18919put('KHUDAWADI_LETTER_PHA, 'codepoint, 0x112D3);
18920put('KHUDAWADI_LETTER_BA, 'codepoint, 0x112D4);
18921put('KHUDAWADI_LETTER_BBA, 'codepoint, 0x112D5);
18922put('KHUDAWADI_LETTER_BHA, 'codepoint, 0x112D6);
18923put('KHUDAWADI_LETTER_MA, 'codepoint, 0x112D7);
18924put('KHUDAWADI_LETTER_YA, 'codepoint, 0x112D8);
18925put('KHUDAWADI_LETTER_RA, 'codepoint, 0x112D9);
18926put('KHUDAWADI_LETTER_LA, 'codepoint, 0x112DA);
18927put('KHUDAWADI_LETTER_VA, 'codepoint, 0x112DB);
18928put('KHUDAWADI_LETTER_SHA, 'codepoint, 0x112DC);
18929put('KHUDAWADI_LETTER_SA, 'codepoint, 0x112DD);
18930put('KHUDAWADI_LETTER_HA, 'codepoint, 0x112DE);
18931put('KHUDAWADI_SIGN_ANUSVARA, 'codepoint, 0x112DF);
18932put('KHUDAWADI_VOWEL_SIGN_AA, 'codepoint, 0x112E0);
18933put('KHUDAWADI_VOWEL_SIGN_I, 'codepoint, 0x112E1);
18934put('KHUDAWADI_VOWEL_SIGN_II, 'codepoint, 0x112E2);
18935put('KHUDAWADI_VOWEL_SIGN_U, 'codepoint, 0x112E3);
18936put('KHUDAWADI_VOWEL_SIGN_UU, 'codepoint, 0x112E4);
18937put('KHUDAWADI_VOWEL_SIGN_E, 'codepoint, 0x112E5);
18938put('KHUDAWADI_VOWEL_SIGN_AI, 'codepoint, 0x112E6);
18939put('KHUDAWADI_VOWEL_SIGN_O, 'codepoint, 0x112E7);
18940put('KHUDAWADI_VOWEL_SIGN_AU, 'codepoint, 0x112E8);
18941put('KHUDAWADI_SIGN_NUKTA, 'codepoint, 0x112E9);
18942put('KHUDAWADI_SIGN_VIRAMA, 'codepoint, 0x112EA);
18943put('KHUDAWADI_DIGIT_ZERO, 'codepoint, 0x112F0);
18944put('KHUDAWADI_DIGIT_ONE, 'codepoint, 0x112F1);
18945put('KHUDAWADI_DIGIT_TWO, 'codepoint, 0x112F2);
18946put('KHUDAWADI_DIGIT_THREE, 'codepoint, 0x112F3);
18947put('KHUDAWADI_DIGIT_FOUR, 'codepoint, 0x112F4);
18948put('KHUDAWADI_DIGIT_FIVE, 'codepoint, 0x112F5);
18949put('KHUDAWADI_DIGIT_SIX, 'codepoint, 0x112F6);
18950put('KHUDAWADI_DIGIT_SEVEN, 'codepoint, 0x112F7);
18951put('KHUDAWADI_DIGIT_EIGHT, 'codepoint, 0x112F8);
18952put('KHUDAWADI_DIGIT_NINE, 'codepoint, 0x112F9);
18953put('GRANTHA_SIGN_CANDRABINDU, 'codepoint, 0x11301);
18954put('GRANTHA_SIGN_ANUSVARA, 'codepoint, 0x11302);
18955put('GRANTHA_SIGN_VISARGA, 'codepoint, 0x11303);
18956put('GRANTHA_LETTER_A, 'codepoint, 0x11305);
18957put('GRANTHA_LETTER_AA, 'codepoint, 0x11306);
18958put('GRANTHA_LETTER_I, 'codepoint, 0x11307);
18959put('GRANTHA_LETTER_II, 'codepoint, 0x11308);
18960put('GRANTHA_LETTER_U, 'codepoint, 0x11309);
18961put('GRANTHA_LETTER_UU, 'codepoint, 0x1130A);
18962put('GRANTHA_LETTER_VOCALIC_R, 'codepoint, 0x1130B);
18963put('GRANTHA_LETTER_VOCALIC_L, 'codepoint, 0x1130C);
18964put('GRANTHA_LETTER_EE, 'codepoint, 0x1130F);
18965put('GRANTHA_LETTER_AI, 'codepoint, 0x11310);
18966put('GRANTHA_LETTER_OO, 'codepoint, 0x11313);
18967put('GRANTHA_LETTER_AU, 'codepoint, 0x11314);
18968put('GRANTHA_LETTER_KA, 'codepoint, 0x11315);
18969put('GRANTHA_LETTER_KHA, 'codepoint, 0x11316);
18970put('GRANTHA_LETTER_GA, 'codepoint, 0x11317);
18971put('GRANTHA_LETTER_GHA, 'codepoint, 0x11318);
18972put('GRANTHA_LETTER_NGA, 'codepoint, 0x11319);
18973put('GRANTHA_LETTER_CA, 'codepoint, 0x1131A);
18974put('GRANTHA_LETTER_CHA, 'codepoint, 0x1131B);
18975put('GRANTHA_LETTER_JA, 'codepoint, 0x1131C);
18976put('GRANTHA_LETTER_JHA, 'codepoint, 0x1131D);
18977put('GRANTHA_LETTER_NYA, 'codepoint, 0x1131E);
18978put('GRANTHA_LETTER_TTA, 'codepoint, 0x1131F);
18979put('GRANTHA_LETTER_TTHA, 'codepoint, 0x11320);
18980put('GRANTHA_LETTER_DDA, 'codepoint, 0x11321);
18981put('GRANTHA_LETTER_DDHA, 'codepoint, 0x11322);
18982put('GRANTHA_LETTER_NNA, 'codepoint, 0x11323);
18983put('GRANTHA_LETTER_TA, 'codepoint, 0x11324);
18984put('GRANTHA_LETTER_THA, 'codepoint, 0x11325);
18985put('GRANTHA_LETTER_DA, 'codepoint, 0x11326);
18986put('GRANTHA_LETTER_DHA, 'codepoint, 0x11327);
18987put('GRANTHA_LETTER_NA, 'codepoint, 0x11328);
18988put('GRANTHA_LETTER_PA, 'codepoint, 0x1132A);
18989put('GRANTHA_LETTER_PHA, 'codepoint, 0x1132B);
18990put('GRANTHA_LETTER_BA, 'codepoint, 0x1132C);
18991put('GRANTHA_LETTER_BHA, 'codepoint, 0x1132D);
18992put('GRANTHA_LETTER_MA, 'codepoint, 0x1132E);
18993put('GRANTHA_LETTER_YA, 'codepoint, 0x1132F);
18994put('GRANTHA_LETTER_RA, 'codepoint, 0x11330);
18995put('GRANTHA_LETTER_LA, 'codepoint, 0x11332);
18996put('GRANTHA_LETTER_LLA, 'codepoint, 0x11333);
18997put('GRANTHA_LETTER_VA, 'codepoint, 0x11335);
18998put('GRANTHA_LETTER_SHA, 'codepoint, 0x11336);
18999put('GRANTHA_LETTER_SSA, 'codepoint, 0x11337);
19000put('GRANTHA_LETTER_SA, 'codepoint, 0x11338);
19001put('GRANTHA_LETTER_HA, 'codepoint, 0x11339);
19002put('GRANTHA_SIGN_NUKTA, 'codepoint, 0x1133C);
19003put('GRANTHA_SIGN_AVAGRAHA, 'codepoint, 0x1133D);
19004put('GRANTHA_VOWEL_SIGN_AA, 'codepoint, 0x1133E);
19005put('GRANTHA_VOWEL_SIGN_I, 'codepoint, 0x1133F);
19006put('GRANTHA_VOWEL_SIGN_II, 'codepoint, 0x11340);
19007put('GRANTHA_VOWEL_SIGN_U, 'codepoint, 0x11341);
19008put('GRANTHA_VOWEL_SIGN_UU, 'codepoint, 0x11342);
19009put('GRANTHA_VOWEL_SIGN_VOCALIC_R, 'codepoint, 0x11343);
19010put('GRANTHA_VOWEL_SIGN_VOCALIC_RR, 'codepoint, 0x11344);
19011put('GRANTHA_VOWEL_SIGN_EE, 'codepoint, 0x11347);
19012put('GRANTHA_VOWEL_SIGN_AI, 'codepoint, 0x11348);
19013put('GRANTHA_VOWEL_SIGN_OO, 'codepoint, 0x1134B);
19014put('GRANTHA_VOWEL_SIGN_AU, 'codepoint, 0x1134C);
19015put('GRANTHA_SIGN_VIRAMA, 'codepoint, 0x1134D);
19016put('GRANTHA_AU_LENGTH_MARK, 'codepoint, 0x11357);
19017put('GRANTHA_SIGN_PLUTA, 'codepoint, 0x1135D);
19018put('GRANTHA_LETTER_VEDIC_ANUSVARA, 'codepoint, 0x1135E);
19019put('GRANTHA_LETTER_VEDIC_DOUBLE_ANUSVARA, 'codepoint, 0x1135F);
19020put('GRANTHA_LETTER_VOCALIC_RR, 'codepoint, 0x11360);
19021put('GRANTHA_LETTER_VOCALIC_LL, 'codepoint, 0x11361);
19022put('GRANTHA_VOWEL_SIGN_VOCALIC_L, 'codepoint, 0x11362);
19023put('GRANTHA_VOWEL_SIGN_VOCALIC_LL, 'codepoint, 0x11363);
19024put('COMBINING_GRANTHA_DIGIT_ZERO, 'codepoint, 0x11366);
19025put('COMBINING_GRANTHA_DIGIT_ONE, 'codepoint, 0x11367);
19026put('COMBINING_GRANTHA_DIGIT_TWO, 'codepoint, 0x11368);
19027put('COMBINING_GRANTHA_DIGIT_THREE, 'codepoint, 0x11369);
19028put('COMBINING_GRANTHA_DIGIT_FOUR, 'codepoint, 0x1136A);
19029put('COMBINING_GRANTHA_DIGIT_FIVE, 'codepoint, 0x1136B);
19030put('COMBINING_GRANTHA_DIGIT_SIX, 'codepoint, 0x1136C);
19031put('COMBINING_GRANTHA_LETTER_A, 'codepoint, 0x11370);
19032put('COMBINING_GRANTHA_LETTER_KA, 'codepoint, 0x11371);
19033put('COMBINING_GRANTHA_LETTER_NA, 'codepoint, 0x11372);
19034put('COMBINING_GRANTHA_LETTER_VI, 'codepoint, 0x11373);
19035put('COMBINING_GRANTHA_LETTER_PA, 'codepoint, 0x11374);
19036put('TIRHUTA_ANJI, 'codepoint, 0x11480);
19037put('TIRHUTA_LETTER_A, 'codepoint, 0x11481);
19038put('TIRHUTA_LETTER_AA, 'codepoint, 0x11482);
19039put('TIRHUTA_LETTER_I, 'codepoint, 0x11483);
19040put('TIRHUTA_LETTER_II, 'codepoint, 0x11484);
19041put('TIRHUTA_LETTER_U, 'codepoint, 0x11485);
19042put('TIRHUTA_LETTER_UU, 'codepoint, 0x11486);
19043put('TIRHUTA_LETTER_VOCALIC_R, 'codepoint, 0x11487);
19044put('TIRHUTA_LETTER_VOCALIC_RR, 'codepoint, 0x11488);
19045put('TIRHUTA_LETTER_VOCALIC_L, 'codepoint, 0x11489);
19046put('TIRHUTA_LETTER_VOCALIC_LL, 'codepoint, 0x1148A);
19047put('TIRHUTA_LETTER_E, 'codepoint, 0x1148B);
19048put('TIRHUTA_LETTER_AI, 'codepoint, 0x1148C);
19049put('TIRHUTA_LETTER_O, 'codepoint, 0x1148D);
19050put('TIRHUTA_LETTER_AU, 'codepoint, 0x1148E);
19051put('TIRHUTA_LETTER_KA, 'codepoint, 0x1148F);
19052put('TIRHUTA_LETTER_KHA, 'codepoint, 0x11490);
19053put('TIRHUTA_LETTER_GA, 'codepoint, 0x11491);
19054put('TIRHUTA_LETTER_GHA, 'codepoint, 0x11492);
19055put('TIRHUTA_LETTER_NGA, 'codepoint, 0x11493);
19056put('TIRHUTA_LETTER_CA, 'codepoint, 0x11494);
19057put('TIRHUTA_LETTER_CHA, 'codepoint, 0x11495);
19058put('TIRHUTA_LETTER_JA, 'codepoint, 0x11496);
19059put('TIRHUTA_LETTER_JHA, 'codepoint, 0x11497);
19060put('TIRHUTA_LETTER_NYA, 'codepoint, 0x11498);
19061put('TIRHUTA_LETTER_TTA, 'codepoint, 0x11499);
19062put('TIRHUTA_LETTER_TTHA, 'codepoint, 0x1149A);
19063put('TIRHUTA_LETTER_DDA, 'codepoint, 0x1149B);
19064put('TIRHUTA_LETTER_DDHA, 'codepoint, 0x1149C);
19065put('TIRHUTA_LETTER_NNA, 'codepoint, 0x1149D);
19066put('TIRHUTA_LETTER_TA, 'codepoint, 0x1149E);
19067put('TIRHUTA_LETTER_THA, 'codepoint, 0x1149F);
19068put('TIRHUTA_LETTER_DA, 'codepoint, 0x114A0);
19069put('TIRHUTA_LETTER_DHA, 'codepoint, 0x114A1);
19070put('TIRHUTA_LETTER_NA, 'codepoint, 0x114A2);
19071put('TIRHUTA_LETTER_PA, 'codepoint, 0x114A3);
19072put('TIRHUTA_LETTER_PHA, 'codepoint, 0x114A4);
19073put('TIRHUTA_LETTER_BA, 'codepoint, 0x114A5);
19074put('TIRHUTA_LETTER_BHA, 'codepoint, 0x114A6);
19075put('TIRHUTA_LETTER_MA, 'codepoint, 0x114A7);
19076put('TIRHUTA_LETTER_YA, 'codepoint, 0x114A8);
19077put('TIRHUTA_LETTER_RA, 'codepoint, 0x114A9);
19078put('TIRHUTA_LETTER_LA, 'codepoint, 0x114AA);
19079put('TIRHUTA_LETTER_VA, 'codepoint, 0x114AB);
19080put('TIRHUTA_LETTER_SHA, 'codepoint, 0x114AC);
19081put('TIRHUTA_LETTER_SSA, 'codepoint, 0x114AD);
19082put('TIRHUTA_LETTER_SA, 'codepoint, 0x114AE);
19083put('TIRHUTA_LETTER_HA, 'codepoint, 0x114AF);
19084put('TIRHUTA_VOWEL_SIGN_AA, 'codepoint, 0x114B0);
19085put('TIRHUTA_VOWEL_SIGN_I, 'codepoint, 0x114B1);
19086put('TIRHUTA_VOWEL_SIGN_II, 'codepoint, 0x114B2);
19087put('TIRHUTA_VOWEL_SIGN_U, 'codepoint, 0x114B3);
19088put('TIRHUTA_VOWEL_SIGN_UU, 'codepoint, 0x114B4);
19089put('TIRHUTA_VOWEL_SIGN_VOCALIC_R, 'codepoint, 0x114B5);
19090put('TIRHUTA_VOWEL_SIGN_VOCALIC_RR, 'codepoint, 0x114B6);
19091put('TIRHUTA_VOWEL_SIGN_VOCALIC_L, 'codepoint, 0x114B7);
19092put('TIRHUTA_VOWEL_SIGN_VOCALIC_LL, 'codepoint, 0x114B8);
19093put('TIRHUTA_VOWEL_SIGN_E, 'codepoint, 0x114B9);
19094put('TIRHUTA_VOWEL_SIGN_SHORT_E, 'codepoint, 0x114BA);
19095put('TIRHUTA_VOWEL_SIGN_AI, 'codepoint, 0x114BB);
19096put('TIRHUTA_VOWEL_SIGN_O, 'codepoint, 0x114BC);
19097put('TIRHUTA_VOWEL_SIGN_SHORT_O, 'codepoint, 0x114BD);
19098put('TIRHUTA_VOWEL_SIGN_AU, 'codepoint, 0x114BE);
19099put('TIRHUTA_SIGN_CANDRABINDU, 'codepoint, 0x114BF);
19100put('TIRHUTA_SIGN_ANUSVARA, 'codepoint, 0x114C0);
19101put('TIRHUTA_SIGN_VISARGA, 'codepoint, 0x114C1);
19102put('TIRHUTA_SIGN_VIRAMA, 'codepoint, 0x114C2);
19103put('TIRHUTA_SIGN_NUKTA, 'codepoint, 0x114C3);
19104put('TIRHUTA_SIGN_AVAGRAHA, 'codepoint, 0x114C4);
19105put('TIRHUTA_GVANG, 'codepoint, 0x114C5);
19106put('TIRHUTA_ABBREVIATION_SIGN, 'codepoint, 0x114C6);
19107put('TIRHUTA_OM, 'codepoint, 0x114C7);
19108put('TIRHUTA_DIGIT_ZERO, 'codepoint, 0x114D0);
19109put('TIRHUTA_DIGIT_ONE, 'codepoint, 0x114D1);
19110put('TIRHUTA_DIGIT_TWO, 'codepoint, 0x114D2);
19111put('TIRHUTA_DIGIT_THREE, 'codepoint, 0x114D3);
19112put('TIRHUTA_DIGIT_FOUR, 'codepoint, 0x114D4);
19113put('TIRHUTA_DIGIT_FIVE, 'codepoint, 0x114D5);
19114put('TIRHUTA_DIGIT_SIX, 'codepoint, 0x114D6);
19115put('TIRHUTA_DIGIT_SEVEN, 'codepoint, 0x114D7);
19116put('TIRHUTA_DIGIT_EIGHT, 'codepoint, 0x114D8);
19117put('TIRHUTA_DIGIT_NINE, 'codepoint, 0x114D9);
19118put('SIDDHAM_LETTER_A, 'codepoint, 0x11580);
19119put('SIDDHAM_LETTER_AA, 'codepoint, 0x11581);
19120put('SIDDHAM_LETTER_I, 'codepoint, 0x11582);
19121put('SIDDHAM_LETTER_II, 'codepoint, 0x11583);
19122put('SIDDHAM_LETTER_U, 'codepoint, 0x11584);
19123put('SIDDHAM_LETTER_UU, 'codepoint, 0x11585);
19124put('SIDDHAM_LETTER_VOCALIC_R, 'codepoint, 0x11586);
19125put('SIDDHAM_LETTER_VOCALIC_RR, 'codepoint, 0x11587);
19126put('SIDDHAM_LETTER_VOCALIC_L, 'codepoint, 0x11588);
19127put('SIDDHAM_LETTER_VOCALIC_LL, 'codepoint, 0x11589);
19128put('SIDDHAM_LETTER_E, 'codepoint, 0x1158A);
19129put('SIDDHAM_LETTER_AI, 'codepoint, 0x1158B);
19130put('SIDDHAM_LETTER_O, 'codepoint, 0x1158C);
19131put('SIDDHAM_LETTER_AU, 'codepoint, 0x1158D);
19132put('SIDDHAM_LETTER_KA, 'codepoint, 0x1158E);
19133put('SIDDHAM_LETTER_KHA, 'codepoint, 0x1158F);
19134put('SIDDHAM_LETTER_GA, 'codepoint, 0x11590);
19135put('SIDDHAM_LETTER_GHA, 'codepoint, 0x11591);
19136put('SIDDHAM_LETTER_NGA, 'codepoint, 0x11592);
19137put('SIDDHAM_LETTER_CA, 'codepoint, 0x11593);
19138put('SIDDHAM_LETTER_CHA, 'codepoint, 0x11594);
19139put('SIDDHAM_LETTER_JA, 'codepoint, 0x11595);
19140put('SIDDHAM_LETTER_JHA, 'codepoint, 0x11596);
19141put('SIDDHAM_LETTER_NYA, 'codepoint, 0x11597);
19142put('SIDDHAM_LETTER_TTA, 'codepoint, 0x11598);
19143put('SIDDHAM_LETTER_TTHA, 'codepoint, 0x11599);
19144put('SIDDHAM_LETTER_DDA, 'codepoint, 0x1159A);
19145put('SIDDHAM_LETTER_DDHA, 'codepoint, 0x1159B);
19146put('SIDDHAM_LETTER_NNA, 'codepoint, 0x1159C);
19147put('SIDDHAM_LETTER_TA, 'codepoint, 0x1159D);
19148put('SIDDHAM_LETTER_THA, 'codepoint, 0x1159E);
19149put('SIDDHAM_LETTER_DA, 'codepoint, 0x1159F);
19150put('SIDDHAM_LETTER_DHA, 'codepoint, 0x115A0);
19151put('SIDDHAM_LETTER_NA, 'codepoint, 0x115A1);
19152put('SIDDHAM_LETTER_PA, 'codepoint, 0x115A2);
19153put('SIDDHAM_LETTER_PHA, 'codepoint, 0x115A3);
19154put('SIDDHAM_LETTER_BA, 'codepoint, 0x115A4);
19155put('SIDDHAM_LETTER_BHA, 'codepoint, 0x115A5);
19156put('SIDDHAM_LETTER_MA, 'codepoint, 0x115A6);
19157put('SIDDHAM_LETTER_YA, 'codepoint, 0x115A7);
19158put('SIDDHAM_LETTER_RA, 'codepoint, 0x115A8);
19159put('SIDDHAM_LETTER_LA, 'codepoint, 0x115A9);
19160put('SIDDHAM_LETTER_VA, 'codepoint, 0x115AA);
19161put('SIDDHAM_LETTER_SHA, 'codepoint, 0x115AB);
19162put('SIDDHAM_LETTER_SSA, 'codepoint, 0x115AC);
19163put('SIDDHAM_LETTER_SA, 'codepoint, 0x115AD);
19164put('SIDDHAM_LETTER_HA, 'codepoint, 0x115AE);
19165put('SIDDHAM_VOWEL_SIGN_AA, 'codepoint, 0x115AF);
19166put('SIDDHAM_VOWEL_SIGN_I, 'codepoint, 0x115B0);
19167put('SIDDHAM_VOWEL_SIGN_II, 'codepoint, 0x115B1);
19168put('SIDDHAM_VOWEL_SIGN_U, 'codepoint, 0x115B2);
19169put('SIDDHAM_VOWEL_SIGN_UU, 'codepoint, 0x115B3);
19170put('SIDDHAM_VOWEL_SIGN_VOCALIC_R, 'codepoint, 0x115B4);
19171put('SIDDHAM_VOWEL_SIGN_VOCALIC_RR, 'codepoint, 0x115B5);
19172put('SIDDHAM_VOWEL_SIGN_E, 'codepoint, 0x115B8);
19173put('SIDDHAM_VOWEL_SIGN_AI, 'codepoint, 0x115B9);
19174put('SIDDHAM_VOWEL_SIGN_O, 'codepoint, 0x115BA);
19175put('SIDDHAM_VOWEL_SIGN_AU, 'codepoint, 0x115BB);
19176put('SIDDHAM_SIGN_CANDRABINDU, 'codepoint, 0x115BC);
19177put('SIDDHAM_SIGN_ANUSVARA, 'codepoint, 0x115BD);
19178put('SIDDHAM_SIGN_VISARGA, 'codepoint, 0x115BE);
19179put('SIDDHAM_SIGN_VIRAMA, 'codepoint, 0x115BF);
19180put('SIDDHAM_SIGN_NUKTA, 'codepoint, 0x115C0);
19181put('SIDDHAM_SIGN_SIDDHAM, 'codepoint, 0x115C1);
19182put('SIDDHAM_DANDA, 'codepoint, 0x115C2);
19183put('SIDDHAM_DOUBLE_DANDA, 'codepoint, 0x115C3);
19184put('SIDDHAM_SEPARATOR_DOT, 'codepoint, 0x115C4);
19185put('SIDDHAM_SEPARATOR_BAR, 'codepoint, 0x115C5);
19186put('SIDDHAM_REPETITION_MARK_1, 'codepoint, 0x115C6);
19187put('SIDDHAM_REPETITION_MARK_2, 'codepoint, 0x115C7);
19188put('SIDDHAM_REPETITION_MARK_3, 'codepoint, 0x115C8);
19189put('SIDDHAM_END_OF_TEXT_MARK, 'codepoint, 0x115C9);
19190put('MODI_LETTER_A, 'codepoint, 0x11600);
19191put('MODI_LETTER_AA, 'codepoint, 0x11601);
19192put('MODI_LETTER_I, 'codepoint, 0x11602);
19193put('MODI_LETTER_II, 'codepoint, 0x11603);
19194put('MODI_LETTER_U, 'codepoint, 0x11604);
19195put('MODI_LETTER_UU, 'codepoint, 0x11605);
19196put('MODI_LETTER_VOCALIC_R, 'codepoint, 0x11606);
19197put('MODI_LETTER_VOCALIC_RR, 'codepoint, 0x11607);
19198put('MODI_LETTER_VOCALIC_L, 'codepoint, 0x11608);
19199put('MODI_LETTER_VOCALIC_LL, 'codepoint, 0x11609);
19200put('MODI_LETTER_E, 'codepoint, 0x1160A);
19201put('MODI_LETTER_AI, 'codepoint, 0x1160B);
19202put('MODI_LETTER_O, 'codepoint, 0x1160C);
19203put('MODI_LETTER_AU, 'codepoint, 0x1160D);
19204put('MODI_LETTER_KA, 'codepoint, 0x1160E);
19205put('MODI_LETTER_KHA, 'codepoint, 0x1160F);
19206put('MODI_LETTER_GA, 'codepoint, 0x11610);
19207put('MODI_LETTER_GHA, 'codepoint, 0x11611);
19208put('MODI_LETTER_NGA, 'codepoint, 0x11612);
19209put('MODI_LETTER_CA, 'codepoint, 0x11613);
19210put('MODI_LETTER_CHA, 'codepoint, 0x11614);
19211put('MODI_LETTER_JA, 'codepoint, 0x11615);
19212put('MODI_LETTER_JHA, 'codepoint, 0x11616);
19213put('MODI_LETTER_NYA, 'codepoint, 0x11617);
19214put('MODI_LETTER_TTA, 'codepoint, 0x11618);
19215put('MODI_LETTER_TTHA, 'codepoint, 0x11619);
19216put('MODI_LETTER_DDA, 'codepoint, 0x1161A);
19217put('MODI_LETTER_DDHA, 'codepoint, 0x1161B);
19218put('MODI_LETTER_NNA, 'codepoint, 0x1161C);
19219put('MODI_LETTER_TA, 'codepoint, 0x1161D);
19220put('MODI_LETTER_THA, 'codepoint, 0x1161E);
19221put('MODI_LETTER_DA, 'codepoint, 0x1161F);
19222put('MODI_LETTER_DHA, 'codepoint, 0x11620);
19223put('MODI_LETTER_NA, 'codepoint, 0x11621);
19224put('MODI_LETTER_PA, 'codepoint, 0x11622);
19225put('MODI_LETTER_PHA, 'codepoint, 0x11623);
19226put('MODI_LETTER_BA, 'codepoint, 0x11624);
19227put('MODI_LETTER_BHA, 'codepoint, 0x11625);
19228put('MODI_LETTER_MA, 'codepoint, 0x11626);
19229put('MODI_LETTER_YA, 'codepoint, 0x11627);
19230put('MODI_LETTER_RA, 'codepoint, 0x11628);
19231put('MODI_LETTER_LA, 'codepoint, 0x11629);
19232put('MODI_LETTER_VA, 'codepoint, 0x1162A);
19233put('MODI_LETTER_SHA, 'codepoint, 0x1162B);
19234put('MODI_LETTER_SSA, 'codepoint, 0x1162C);
19235put('MODI_LETTER_SA, 'codepoint, 0x1162D);
19236put('MODI_LETTER_HA, 'codepoint, 0x1162E);
19237put('MODI_LETTER_LLA, 'codepoint, 0x1162F);
19238put('MODI_VOWEL_SIGN_AA, 'codepoint, 0x11630);
19239put('MODI_VOWEL_SIGN_I, 'codepoint, 0x11631);
19240put('MODI_VOWEL_SIGN_II, 'codepoint, 0x11632);
19241put('MODI_VOWEL_SIGN_U, 'codepoint, 0x11633);
19242put('MODI_VOWEL_SIGN_UU, 'codepoint, 0x11634);
19243put('MODI_VOWEL_SIGN_VOCALIC_R, 'codepoint, 0x11635);
19244put('MODI_VOWEL_SIGN_VOCALIC_RR, 'codepoint, 0x11636);
19245put('MODI_VOWEL_SIGN_VOCALIC_L, 'codepoint, 0x11637);
19246put('MODI_VOWEL_SIGN_VOCALIC_LL, 'codepoint, 0x11638);
19247put('MODI_VOWEL_SIGN_E, 'codepoint, 0x11639);
19248put('MODI_VOWEL_SIGN_AI, 'codepoint, 0x1163A);
19249put('MODI_VOWEL_SIGN_O, 'codepoint, 0x1163B);
19250put('MODI_VOWEL_SIGN_AU, 'codepoint, 0x1163C);
19251put('MODI_SIGN_ANUSVARA, 'codepoint, 0x1163D);
19252put('MODI_SIGN_VISARGA, 'codepoint, 0x1163E);
19253put('MODI_SIGN_VIRAMA, 'codepoint, 0x1163F);
19254put('MODI_SIGN_ARDHACANDRA, 'codepoint, 0x11640);
19255put('MODI_DANDA, 'codepoint, 0x11641);
19256put('MODI_DOUBLE_DANDA, 'codepoint, 0x11642);
19257put('MODI_ABBREVIATION_SIGN, 'codepoint, 0x11643);
19258put('MODI_SIGN_HUVA, 'codepoint, 0x11644);
19259put('MODI_DIGIT_ZERO, 'codepoint, 0x11650);
19260put('MODI_DIGIT_ONE, 'codepoint, 0x11651);
19261put('MODI_DIGIT_TWO, 'codepoint, 0x11652);
19262put('MODI_DIGIT_THREE, 'codepoint, 0x11653);
19263put('MODI_DIGIT_FOUR, 'codepoint, 0x11654);
19264put('MODI_DIGIT_FIVE, 'codepoint, 0x11655);
19265put('MODI_DIGIT_SIX, 'codepoint, 0x11656);
19266put('MODI_DIGIT_SEVEN, 'codepoint, 0x11657);
19267put('MODI_DIGIT_EIGHT, 'codepoint, 0x11658);
19268put('MODI_DIGIT_NINE, 'codepoint, 0x11659);
19269put('TAKRI_LETTER_A, 'codepoint, 0x11680);
19270put('TAKRI_LETTER_AA, 'codepoint, 0x11681);
19271put('TAKRI_LETTER_I, 'codepoint, 0x11682);
19272put('TAKRI_LETTER_II, 'codepoint, 0x11683);
19273put('TAKRI_LETTER_U, 'codepoint, 0x11684);
19274put('TAKRI_LETTER_UU, 'codepoint, 0x11685);
19275put('TAKRI_LETTER_E, 'codepoint, 0x11686);
19276put('TAKRI_LETTER_AI, 'codepoint, 0x11687);
19277put('TAKRI_LETTER_O, 'codepoint, 0x11688);
19278put('TAKRI_LETTER_AU, 'codepoint, 0x11689);
19279put('TAKRI_LETTER_KA, 'codepoint, 0x1168A);
19280put('TAKRI_LETTER_KHA, 'codepoint, 0x1168B);
19281put('TAKRI_LETTER_GA, 'codepoint, 0x1168C);
19282put('TAKRI_LETTER_GHA, 'codepoint, 0x1168D);
19283put('TAKRI_LETTER_NGA, 'codepoint, 0x1168E);
19284put('TAKRI_LETTER_CA, 'codepoint, 0x1168F);
19285put('TAKRI_LETTER_CHA, 'codepoint, 0x11690);
19286put('TAKRI_LETTER_JA, 'codepoint, 0x11691);
19287put('TAKRI_LETTER_JHA, 'codepoint, 0x11692);
19288put('TAKRI_LETTER_NYA, 'codepoint, 0x11693);
19289put('TAKRI_LETTER_TTA, 'codepoint, 0x11694);
19290put('TAKRI_LETTER_TTHA, 'codepoint, 0x11695);
19291put('TAKRI_LETTER_DDA, 'codepoint, 0x11696);
19292put('TAKRI_LETTER_DDHA, 'codepoint, 0x11697);
19293put('TAKRI_LETTER_NNA, 'codepoint, 0x11698);
19294put('TAKRI_LETTER_TA, 'codepoint, 0x11699);
19295put('TAKRI_LETTER_THA, 'codepoint, 0x1169A);
19296put('TAKRI_LETTER_DA, 'codepoint, 0x1169B);
19297put('TAKRI_LETTER_DHA, 'codepoint, 0x1169C);
19298put('TAKRI_LETTER_NA, 'codepoint, 0x1169D);
19299put('TAKRI_LETTER_PA, 'codepoint, 0x1169E);
19300put('TAKRI_LETTER_PHA, 'codepoint, 0x1169F);
19301put('TAKRI_LETTER_BA, 'codepoint, 0x116A0);
19302put('TAKRI_LETTER_BHA, 'codepoint, 0x116A1);
19303put('TAKRI_LETTER_MA, 'codepoint, 0x116A2);
19304put('TAKRI_LETTER_YA, 'codepoint, 0x116A3);
19305put('TAKRI_LETTER_RA, 'codepoint, 0x116A4);
19306put('TAKRI_LETTER_LA, 'codepoint, 0x116A5);
19307put('TAKRI_LETTER_VA, 'codepoint, 0x116A6);
19308put('TAKRI_LETTER_SHA, 'codepoint, 0x116A7);
19309put('TAKRI_LETTER_SA, 'codepoint, 0x116A8);
19310put('TAKRI_LETTER_HA, 'codepoint, 0x116A9);
19311put('TAKRI_LETTER_RRA, 'codepoint, 0x116AA);
19312put('TAKRI_SIGN_ANUSVARA, 'codepoint, 0x116AB);
19313put('TAKRI_SIGN_VISARGA, 'codepoint, 0x116AC);
19314put('TAKRI_VOWEL_SIGN_AA, 'codepoint, 0x116AD);
19315put('TAKRI_VOWEL_SIGN_I, 'codepoint, 0x116AE);
19316put('TAKRI_VOWEL_SIGN_II, 'codepoint, 0x116AF);
19317put('TAKRI_VOWEL_SIGN_U, 'codepoint, 0x116B0);
19318put('TAKRI_VOWEL_SIGN_UU, 'codepoint, 0x116B1);
19319put('TAKRI_VOWEL_SIGN_E, 'codepoint, 0x116B2);
19320put('TAKRI_VOWEL_SIGN_AI, 'codepoint, 0x116B3);
19321put('TAKRI_VOWEL_SIGN_O, 'codepoint, 0x116B4);
19322put('TAKRI_VOWEL_SIGN_AU, 'codepoint, 0x116B5);
19323put('TAKRI_SIGN_VIRAMA, 'codepoint, 0x116B6);
19324put('TAKRI_SIGN_NUKTA, 'codepoint, 0x116B7);
19325put('TAKRI_DIGIT_ZERO, 'codepoint, 0x116C0);
19326put('TAKRI_DIGIT_ONE, 'codepoint, 0x116C1);
19327put('TAKRI_DIGIT_TWO, 'codepoint, 0x116C2);
19328put('TAKRI_DIGIT_THREE, 'codepoint, 0x116C3);
19329put('TAKRI_DIGIT_FOUR, 'codepoint, 0x116C4);
19330put('TAKRI_DIGIT_FIVE, 'codepoint, 0x116C5);
19331put('TAKRI_DIGIT_SIX, 'codepoint, 0x116C6);
19332put('TAKRI_DIGIT_SEVEN, 'codepoint, 0x116C7);
19333put('TAKRI_DIGIT_EIGHT, 'codepoint, 0x116C8);
19334put('TAKRI_DIGIT_NINE, 'codepoint, 0x116C9);
19335put('WARANG_CITI_CAPITAL_LETTER_NGAA, 'codepoint, 0x118A0);
19336put('WARANG_CITI_CAPITAL_LETTER_A, 'codepoint, 0x118A1);
19337put('WARANG_CITI_CAPITAL_LETTER_WI, 'codepoint, 0x118A2);
19338put('WARANG_CITI_CAPITAL_LETTER_YU, 'codepoint, 0x118A3);
19339put('WARANG_CITI_CAPITAL_LETTER_YA, 'codepoint, 0x118A4);
19340put('WARANG_CITI_CAPITAL_LETTER_YO, 'codepoint, 0x118A5);
19341put('WARANG_CITI_CAPITAL_LETTER_II, 'codepoint, 0x118A6);
19342put('WARANG_CITI_CAPITAL_LETTER_UU, 'codepoint, 0x118A7);
19343put('WARANG_CITI_CAPITAL_LETTER_E, 'codepoint, 0x118A8);
19344put('WARANG_CITI_CAPITAL_LETTER_O, 'codepoint, 0x118A9);
19345put('WARANG_CITI_CAPITAL_LETTER_ANG, 'codepoint, 0x118AA);
19346put('WARANG_CITI_CAPITAL_LETTER_GA, 'codepoint, 0x118AB);
19347put('WARANG_CITI_CAPITAL_LETTER_KO, 'codepoint, 0x118AC);
19348put('WARANG_CITI_CAPITAL_LETTER_ENY, 'codepoint, 0x118AD);
19349put('WARANG_CITI_CAPITAL_LETTER_YUJ, 'codepoint, 0x118AE);
19350put('WARANG_CITI_CAPITAL_LETTER_UC, 'codepoint, 0x118AF);
19351put('WARANG_CITI_CAPITAL_LETTER_ENN, 'codepoint, 0x118B0);
19352put('WARANG_CITI_CAPITAL_LETTER_ODD, 'codepoint, 0x118B1);
19353put('WARANG_CITI_CAPITAL_LETTER_TTE, 'codepoint, 0x118B2);
19354put('WARANG_CITI_CAPITAL_LETTER_NUNG, 'codepoint, 0x118B3);
19355put('WARANG_CITI_CAPITAL_LETTER_DA, 'codepoint, 0x118B4);
19356put('WARANG_CITI_CAPITAL_LETTER_AT, 'codepoint, 0x118B5);
19357put('WARANG_CITI_CAPITAL_LETTER_AM, 'codepoint, 0x118B6);
19358put('WARANG_CITI_CAPITAL_LETTER_BU, 'codepoint, 0x118B7);
19359put('WARANG_CITI_CAPITAL_LETTER_PU, 'codepoint, 0x118B8);
19360put('WARANG_CITI_CAPITAL_LETTER_HIYO, 'codepoint, 0x118B9);
19361put('WARANG_CITI_CAPITAL_LETTER_HOLO, 'codepoint, 0x118BA);
19362put('WARANG_CITI_CAPITAL_LETTER_HORR, 'codepoint, 0x118BB);
19363put('WARANG_CITI_CAPITAL_LETTER_HAR, 'codepoint, 0x118BC);
19364put('WARANG_CITI_CAPITAL_LETTER_SSUU, 'codepoint, 0x118BD);
19365put('WARANG_CITI_CAPITAL_LETTER_SII, 'codepoint, 0x118BE);
19366put('WARANG_CITI_CAPITAL_LETTER_VIYO, 'codepoint, 0x118BF);
19367put('WARANG_CITI_SMALL_LETTER_NGAA, 'codepoint, 0x118C0);
19368put('WARANG_CITI_SMALL_LETTER_A, 'codepoint, 0x118C1);
19369put('WARANG_CITI_SMALL_LETTER_WI, 'codepoint, 0x118C2);
19370put('WARANG_CITI_SMALL_LETTER_YU, 'codepoint, 0x118C3);
19371put('WARANG_CITI_SMALL_LETTER_YA, 'codepoint, 0x118C4);
19372put('WARANG_CITI_SMALL_LETTER_YO, 'codepoint, 0x118C5);
19373put('WARANG_CITI_SMALL_LETTER_II, 'codepoint, 0x118C6);
19374put('WARANG_CITI_SMALL_LETTER_UU, 'codepoint, 0x118C7);
19375put('WARANG_CITI_SMALL_LETTER_E, 'codepoint, 0x118C8);
19376put('WARANG_CITI_SMALL_LETTER_O, 'codepoint, 0x118C9);
19377put('WARANG_CITI_SMALL_LETTER_ANG, 'codepoint, 0x118CA);
19378put('WARANG_CITI_SMALL_LETTER_GA, 'codepoint, 0x118CB);
19379put('WARANG_CITI_SMALL_LETTER_KO, 'codepoint, 0x118CC);
19380put('WARANG_CITI_SMALL_LETTER_ENY, 'codepoint, 0x118CD);
19381put('WARANG_CITI_SMALL_LETTER_YUJ, 'codepoint, 0x118CE);
19382put('WARANG_CITI_SMALL_LETTER_UC, 'codepoint, 0x118CF);
19383put('WARANG_CITI_SMALL_LETTER_ENN, 'codepoint, 0x118D0);
19384put('WARANG_CITI_SMALL_LETTER_ODD, 'codepoint, 0x118D1);
19385put('WARANG_CITI_SMALL_LETTER_TTE, 'codepoint, 0x118D2);
19386put('WARANG_CITI_SMALL_LETTER_NUNG, 'codepoint, 0x118D3);
19387put('WARANG_CITI_SMALL_LETTER_DA, 'codepoint, 0x118D4);
19388put('WARANG_CITI_SMALL_LETTER_AT, 'codepoint, 0x118D5);
19389put('WARANG_CITI_SMALL_LETTER_AM, 'codepoint, 0x118D6);
19390put('WARANG_CITI_SMALL_LETTER_BU, 'codepoint, 0x118D7);
19391put('WARANG_CITI_SMALL_LETTER_PU, 'codepoint, 0x118D8);
19392put('WARANG_CITI_SMALL_LETTER_HIYO, 'codepoint, 0x118D9);
19393put('WARANG_CITI_SMALL_LETTER_HOLO, 'codepoint, 0x118DA);
19394put('WARANG_CITI_SMALL_LETTER_HORR, 'codepoint, 0x118DB);
19395put('WARANG_CITI_SMALL_LETTER_HAR, 'codepoint, 0x118DC);
19396put('WARANG_CITI_SMALL_LETTER_SSUU, 'codepoint, 0x118DD);
19397put('WARANG_CITI_SMALL_LETTER_SII, 'codepoint, 0x118DE);
19398put('WARANG_CITI_SMALL_LETTER_VIYO, 'codepoint, 0x118DF);
19399put('WARANG_CITI_DIGIT_ZERO, 'codepoint, 0x118E0);
19400put('WARANG_CITI_DIGIT_ONE, 'codepoint, 0x118E1);
19401put('WARANG_CITI_DIGIT_TWO, 'codepoint, 0x118E2);
19402put('WARANG_CITI_DIGIT_THREE, 'codepoint, 0x118E3);
19403put('WARANG_CITI_DIGIT_FOUR, 'codepoint, 0x118E4);
19404put('WARANG_CITI_DIGIT_FIVE, 'codepoint, 0x118E5);
19405put('WARANG_CITI_DIGIT_SIX, 'codepoint, 0x118E6);
19406put('WARANG_CITI_DIGIT_SEVEN, 'codepoint, 0x118E7);
19407put('WARANG_CITI_DIGIT_EIGHT, 'codepoint, 0x118E8);
19408put('WARANG_CITI_DIGIT_NINE, 'codepoint, 0x118E9);
19409put('WARANG_CITI_NUMBER_TEN, 'codepoint, 0x118EA);
19410put('WARANG_CITI_NUMBER_TWENTY, 'codepoint, 0x118EB);
19411put('WARANG_CITI_NUMBER_THIRTY, 'codepoint, 0x118EC);
19412put('WARANG_CITI_NUMBER_FORTY, 'codepoint, 0x118ED);
19413put('WARANG_CITI_NUMBER_FIFTY, 'codepoint, 0x118EE);
19414put('WARANG_CITI_NUMBER_SIXTY, 'codepoint, 0x118EF);
19415put('WARANG_CITI_NUMBER_SEVENTY, 'codepoint, 0x118F0);
19416put('WARANG_CITI_NUMBER_EIGHTY, 'codepoint, 0x118F1);
19417put('WARANG_CITI_NUMBER_NINETY, 'codepoint, 0x118F2);
19418put('WARANG_CITI_OM, 'codepoint, 0x118FF);
19419put('PAU_CIN_HAU_LETTER_PA, 'codepoint, 0x11AC0);
19420put('PAU_CIN_HAU_LETTER_KA, 'codepoint, 0x11AC1);
19421put('PAU_CIN_HAU_LETTER_LA, 'codepoint, 0x11AC2);
19422put('PAU_CIN_HAU_LETTER_MA, 'codepoint, 0x11AC3);
19423put('PAU_CIN_HAU_LETTER_DA, 'codepoint, 0x11AC4);
19424put('PAU_CIN_HAU_LETTER_ZA, 'codepoint, 0x11AC5);
19425put('PAU_CIN_HAU_LETTER_VA, 'codepoint, 0x11AC6);
19426put('PAU_CIN_HAU_LETTER_NGA, 'codepoint, 0x11AC7);
19427put('PAU_CIN_HAU_LETTER_HA, 'codepoint, 0x11AC8);
19428put('PAU_CIN_HAU_LETTER_GA, 'codepoint, 0x11AC9);
19429put('PAU_CIN_HAU_LETTER_KHA, 'codepoint, 0x11ACA);
19430put('PAU_CIN_HAU_LETTER_SA, 'codepoint, 0x11ACB);
19431put('PAU_CIN_HAU_LETTER_BA, 'codepoint, 0x11ACC);
19432put('PAU_CIN_HAU_LETTER_CA, 'codepoint, 0x11ACD);
19433put('PAU_CIN_HAU_LETTER_TA, 'codepoint, 0x11ACE);
19434put('PAU_CIN_HAU_LETTER_THA, 'codepoint, 0x11ACF);
19435put('PAU_CIN_HAU_LETTER_NA, 'codepoint, 0x11AD0);
19436put('PAU_CIN_HAU_LETTER_PHA, 'codepoint, 0x11AD1);
19437put('PAU_CIN_HAU_LETTER_RA, 'codepoint, 0x11AD2);
19438put('PAU_CIN_HAU_LETTER_FA, 'codepoint, 0x11AD3);
19439put('PAU_CIN_HAU_LETTER_CHA, 'codepoint, 0x11AD4);
19440put('PAU_CIN_HAU_LETTER_A, 'codepoint, 0x11AD5);
19441put('PAU_CIN_HAU_LETTER_E, 'codepoint, 0x11AD6);
19442put('PAU_CIN_HAU_LETTER_I, 'codepoint, 0x11AD7);
19443put('PAU_CIN_HAU_LETTER_O, 'codepoint, 0x11AD8);
19444put('PAU_CIN_HAU_LETTER_U, 'codepoint, 0x11AD9);
19445put('PAU_CIN_HAU_LETTER_UA, 'codepoint, 0x11ADA);
19446put('PAU_CIN_HAU_LETTER_IA, 'codepoint, 0x11ADB);
19447put('PAU_CIN_HAU_LETTER_FINAL_P, 'codepoint, 0x11ADC);
19448put('PAU_CIN_HAU_LETTER_FINAL_K, 'codepoint, 0x11ADD);
19449put('PAU_CIN_HAU_LETTER_FINAL_T, 'codepoint, 0x11ADE);
19450put('PAU_CIN_HAU_LETTER_FINAL_M, 'codepoint, 0x11ADF);
19451put('PAU_CIN_HAU_LETTER_FINAL_N, 'codepoint, 0x11AE0);
19452put('PAU_CIN_HAU_LETTER_FINAL_L, 'codepoint, 0x11AE1);
19453put('PAU_CIN_HAU_LETTER_FINAL_W, 'codepoint, 0x11AE2);
19454put('PAU_CIN_HAU_LETTER_FINAL_NG, 'codepoint, 0x11AE3);
19455put('PAU_CIN_HAU_LETTER_FINAL_Y, 'codepoint, 0x11AE4);
19456put('PAU_CIN_HAU_RISING_TONE_LONG, 'codepoint, 0x11AE5);
19457put('PAU_CIN_HAU_RISING_TONE, 'codepoint, 0x11AE6);
19458put('PAU_CIN_HAU_SANDHI_GLOTTAL_STOP, 'codepoint, 0x11AE7);
19459put('PAU_CIN_HAU_RISING_TONE_LONG_FINAL, 'codepoint, 0x11AE8);
19460put('PAU_CIN_HAU_RISING_TONE_FINAL, 'codepoint, 0x11AE9);
19461put('PAU_CIN_HAU_SANDHI_GLOTTAL_STOP_FINAL, 'codepoint, 0x11AEA);
19462put('PAU_CIN_HAU_SANDHI_TONE_LONG, 'codepoint, 0x11AEB);
19463put('PAU_CIN_HAU_SANDHI_TONE, 'codepoint, 0x11AEC);
19464put('PAU_CIN_HAU_SANDHI_TONE_LONG_FINAL, 'codepoint, 0x11AED);
19465put('PAU_CIN_HAU_SANDHI_TONE_FINAL, 'codepoint, 0x11AEE);
19466put('PAU_CIN_HAU_MID_LEVEL_TONE, 'codepoint, 0x11AEF);
19467put('PAU_CIN_HAU_GLOTTAL_STOP_VARIANT, 'codepoint, 0x11AF0);
19468put('PAU_CIN_HAU_MID_LEVEL_TONE_LONG_FINAL, 'codepoint, 0x11AF1);
19469put('PAU_CIN_HAU_MID_LEVEL_TONE_FINAL, 'codepoint, 0x11AF2);
19470put('PAU_CIN_HAU_LOW_FALLING_TONE_LONG, 'codepoint, 0x11AF3);
19471put('PAU_CIN_HAU_LOW_FALLING_TONE, 'codepoint, 0x11AF4);
19472put('PAU_CIN_HAU_GLOTTAL_STOP, 'codepoint, 0x11AF5);
19473put('PAU_CIN_HAU_LOW_FALLING_TONE_LONG_FINAL, 'codepoint, 0x11AF6);
19474put('PAU_CIN_HAU_LOW_FALLING_TONE_FINAL, 'codepoint, 0x11AF7);
19475put('PAU_CIN_HAU_GLOTTAL_STOP_FINAL, 'codepoint, 0x11AF8);
19476put('CUNEIFORM_SIGN_A, 'codepoint, 0x12000);
19477put('CUNEIFORM_SIGN_A_TIMES_A, 'codepoint, 0x12001);
19478put('CUNEIFORM_SIGN_A_TIMES_BAD, 'codepoint, 0x12002);
19479put('CUNEIFORM_SIGN_A_TIMES_GAN2_TENU, 'codepoint, 0x12003);
19480put('CUNEIFORM_SIGN_A_TIMES_HA, 'codepoint, 0x12004);
19481put('CUNEIFORM_SIGN_A_TIMES_IGI, 'codepoint, 0x12005);
19482put('CUNEIFORM_SIGN_A_TIMES_LAGAR_GUNU, 'codepoint, 0x12006);
19483put('CUNEIFORM_SIGN_A_TIMES_MUSH, 'codepoint, 0x12007);
19484put('CUNEIFORM_SIGN_A_TIMES_SAG, 'codepoint, 0x12008);
19485put('CUNEIFORM_SIGN_A2, 'codepoint, 0x12009);
19486put('CUNEIFORM_SIGN_AB, 'codepoint, 0x1200A);
19487put('CUNEIFORM_SIGN_AB_TIMES_ASH2, 'codepoint, 0x1200B);
19488put('CUNEIFORM_SIGN_AB_TIMES_DUN3_GUNU, 'codepoint, 0x1200C);
19489put('CUNEIFORM_SIGN_AB_TIMES_GAL, 'codepoint, 0x1200D);
19490put('CUNEIFORM_SIGN_AB_TIMES_GAN2_TENU, 'codepoint, 0x1200E);
19491put('CUNEIFORM_SIGN_AB_TIMES_HA, 'codepoint, 0x1200F);
19492put('CUNEIFORM_SIGN_AB_TIMES_IGI_GUNU, 'codepoint, 0x12010);
19493put('CUNEIFORM_SIGN_AB_TIMES_IMIN, 'codepoint, 0x12011);
19494put('CUNEIFORM_SIGN_AB_TIMES_LAGAB, 'codepoint, 0x12012);
19495put('CUNEIFORM_SIGN_AB_TIMES_SHESH, 'codepoint, 0x12013);
19496put('CUNEIFORM_SIGN_AB_TIMES_U_PLUS_U_PLUS_U, 'codepoint, 0x12014);
19497put('CUNEIFORM_SIGN_AB_GUNU, 'codepoint, 0x12015);
19498put('CUNEIFORM_SIGN_AB2, 'codepoint, 0x12016);
19499put('CUNEIFORM_SIGN_AB2_TIMES_BALAG, 'codepoint, 0x12017);
19500put('CUNEIFORM_SIGN_AB2_TIMES_GAN2_TENU, 'codepoint, 0x12018);
19501put('CUNEIFORM_SIGN_AB2_TIMES_ME_PLUS_EN, 'codepoint, 0x12019);
19502put('CUNEIFORM_SIGN_AB2_TIMES_SHA3, 'codepoint, 0x1201A);
19503put('CUNEIFORM_SIGN_AB2_TIMES_TAK4, 'codepoint, 0x1201B);
19504put('CUNEIFORM_SIGN_AD, 'codepoint, 0x1201C);
19505put('CUNEIFORM_SIGN_AK, 'codepoint, 0x1201D);
19506put('CUNEIFORM_SIGN_AK_TIMES_ERIN2, 'codepoint, 0x1201E);
19507put('CUNEIFORM_SIGN_AK_TIMES_SHITA_PLUS_GISH, 'codepoint, 0x1201F);
19508put('CUNEIFORM_SIGN_AL, 'codepoint, 0x12020);
19509put('CUNEIFORM_SIGN_AL_TIMES_AL, 'codepoint, 0x12021);
19510put('CUNEIFORM_SIGN_AL_TIMES_DIM2, 'codepoint, 0x12022);
19511put('CUNEIFORM_SIGN_AL_TIMES_GISH, 'codepoint, 0x12023);
19512put('CUNEIFORM_SIGN_AL_TIMES_HA, 'codepoint, 0x12024);
19513put('CUNEIFORM_SIGN_AL_TIMES_KAD3, 'codepoint, 0x12025);
19514put('CUNEIFORM_SIGN_AL_TIMES_KI, 'codepoint, 0x12026);
19515put('CUNEIFORM_SIGN_AL_TIMES_SHE, 'codepoint, 0x12027);
19516put('CUNEIFORM_SIGN_AL_TIMES_USH, 'codepoint, 0x12028);
19517put('CUNEIFORM_SIGN_ALAN, 'codepoint, 0x12029);
19518put('CUNEIFORM_SIGN_ALEPH, 'codepoint, 0x1202A);
19519put('CUNEIFORM_SIGN_AMAR, 'codepoint, 0x1202B);
19520put('CUNEIFORM_SIGN_AMAR_TIMES_SHE, 'codepoint, 0x1202C);
19521put('CUNEIFORM_SIGN_AN, 'codepoint, 0x1202D);
19522put('CUNEIFORM_SIGN_AN_OVER_AN, 'codepoint, 0x1202E);
19523put('CUNEIFORM_SIGN_AN_THREE_TIMES, 'codepoint, 0x1202F);
19524put('CUNEIFORM_SIGN_AN_PLUS_NAGA_OPPOSING_AN_PLUS_NAGA, 'codepoint, 0x12030);
19525put('CUNEIFORM_SIGN_AN_PLUS_NAGA_SQUARED, 'codepoint, 0x12031);
19526put('CUNEIFORM_SIGN_ANSHE, 'codepoint, 0x12032);
19527put('CUNEIFORM_SIGN_APIN, 'codepoint, 0x12033);
19528put('CUNEIFORM_SIGN_ARAD, 'codepoint, 0x12034);
19529put('CUNEIFORM_SIGN_ARAD_TIMES_KUR, 'codepoint, 0x12035);
19530put('CUNEIFORM_SIGN_ARKAB, 'codepoint, 0x12036);
19531put('CUNEIFORM_SIGN_ASAL2, 'codepoint, 0x12037);
19532put('CUNEIFORM_SIGN_ASH, 'codepoint, 0x12038);
19533put('CUNEIFORM_SIGN_ASH_ZIDA_TENU, 'codepoint, 0x12039);
19534put('CUNEIFORM_SIGN_ASH_KABA_TENU, 'codepoint, 0x1203A);
19535put('CUNEIFORM_SIGN_ASH_OVER_ASH_TUG2_OVER_TUG2_TUG2_OVER_TUG2_PAP, 'codepoint, 0x1203B);
19536put('CUNEIFORM_SIGN_ASH_OVER_ASH_OVER_ASH, 'codepoint, 0x1203C);
19537put('CUNEIFORM_SIGN_ASH_OVER_ASH_OVER_ASH_CROSSING_ASH_OVER_ASH_OVER_ASH, 'codepoint, 0x1203D);
19538put('CUNEIFORM_SIGN_ASH2, 'codepoint, 0x1203E);
19539put('CUNEIFORM_SIGN_ASHGAB, 'codepoint, 0x1203F);
19540put('CUNEIFORM_SIGN_BA, 'codepoint, 0x12040);
19541put('CUNEIFORM_SIGN_BAD, 'codepoint, 0x12041);
19542put('CUNEIFORM_SIGN_BAG3, 'codepoint, 0x12042);
19543put('CUNEIFORM_SIGN_BAHAR2, 'codepoint, 0x12043);
19544put('CUNEIFORM_SIGN_BAL, 'codepoint, 0x12044);
19545put('CUNEIFORM_SIGN_BAL_OVER_BAL, 'codepoint, 0x12045);
19546put('CUNEIFORM_SIGN_BALAG, 'codepoint, 0x12046);
19547put('CUNEIFORM_SIGN_BAR, 'codepoint, 0x12047);
19548put('CUNEIFORM_SIGN_BARA2, 'codepoint, 0x12048);
19549put('CUNEIFORM_SIGN_BI, 'codepoint, 0x12049);
19550put('CUNEIFORM_SIGN_BI_TIMES_A, 'codepoint, 0x1204A);
19551put('CUNEIFORM_SIGN_BI_TIMES_GAR, 'codepoint, 0x1204B);
19552put('CUNEIFORM_SIGN_BI_TIMES_IGI_GUNU, 'codepoint, 0x1204C);
19553put('CUNEIFORM_SIGN_BU, 'codepoint, 0x1204D);
19554put('CUNEIFORM_SIGN_BU_OVER_BU_AB, 'codepoint, 0x1204E);
19555put('CUNEIFORM_SIGN_BU_OVER_BU_UN, 'codepoint, 0x1204F);
19556put('CUNEIFORM_SIGN_BU_CROSSING_BU, 'codepoint, 0x12050);
19557put('CUNEIFORM_SIGN_BULUG, 'codepoint, 0x12051);
19558put('CUNEIFORM_SIGN_BULUG_OVER_BULUG, 'codepoint, 0x12052);
19559put('CUNEIFORM_SIGN_BUR, 'codepoint, 0x12053);
19560put('CUNEIFORM_SIGN_BUR2, 'codepoint, 0x12054);
19561put('CUNEIFORM_SIGN_DA, 'codepoint, 0x12055);
19562put('CUNEIFORM_SIGN_DAG, 'codepoint, 0x12056);
19563put('CUNEIFORM_SIGN_DAG_KISIM5_TIMES_A_PLUS_MASH, 'codepoint, 0x12057);
19564put('CUNEIFORM_SIGN_DAG_KISIM5_TIMES_AMAR, 'codepoint, 0x12058);
19565put('CUNEIFORM_SIGN_DAG_KISIM5_TIMES_BALAG, 'codepoint, 0x12059);
19566put('CUNEIFORM_SIGN_DAG_KISIM5_TIMES_BI, 'codepoint, 0x1205A);
19567put('CUNEIFORM_SIGN_DAG_KISIM5_TIMES_GA, 'codepoint, 0x1205B);
19568put('CUNEIFORM_SIGN_DAG_KISIM5_TIMES_GA_PLUS_MASH, 'codepoint, 0x1205C);
19569put('CUNEIFORM_SIGN_DAG_KISIM5_TIMES_GI, 'codepoint, 0x1205D);
19570put('CUNEIFORM_SIGN_DAG_KISIM5_TIMES_GIR2, 'codepoint, 0x1205E);
19571put('CUNEIFORM_SIGN_DAG_KISIM5_TIMES_GUD, 'codepoint, 0x1205F);
19572put('CUNEIFORM_SIGN_DAG_KISIM5_TIMES_HA, 'codepoint, 0x12060);
19573put('CUNEIFORM_SIGN_DAG_KISIM5_TIMES_IR, 'codepoint, 0x12061);
19574put('CUNEIFORM_SIGN_DAG_KISIM5_TIMES_IR_PLUS_LU, 'codepoint, 0x12062);
19575put('CUNEIFORM_SIGN_DAG_KISIM5_TIMES_KAK, 'codepoint, 0x12063);
19576put('CUNEIFORM_SIGN_DAG_KISIM5_TIMES_LA, 'codepoint, 0x12064);
19577put('CUNEIFORM_SIGN_DAG_KISIM5_TIMES_LU, 'codepoint, 0x12065);
19578put('CUNEIFORM_SIGN_DAG_KISIM5_TIMES_LU_PLUS_MASH2, 'codepoint, 0x12066);
19579put('CUNEIFORM_SIGN_DAG_KISIM5_TIMES_LUM, 'codepoint, 0x12067);
19580put('CUNEIFORM_SIGN_DAG_KISIM5_TIMES_NE, 'codepoint, 0x12068);
19581put('CUNEIFORM_SIGN_DAG_KISIM5_TIMES_PAP_PLUS_PAP, 'codepoint, 0x12069);
19582put('CUNEIFORM_SIGN_DAG_KISIM5_TIMES_SI, 'codepoint, 0x1206A);
19583put('CUNEIFORM_SIGN_DAG_KISIM5_TIMES_TAK4, 'codepoint, 0x1206B);
19584put('CUNEIFORM_SIGN_DAG_KISIM5_TIMES_U2_PLUS_GIR2, 'codepoint, 0x1206C);
19585put('CUNEIFORM_SIGN_DAG_KISIM5_TIMES_USH, 'codepoint, 0x1206D);
19586put('CUNEIFORM_SIGN_DAM, 'codepoint, 0x1206E);
19587put('CUNEIFORM_SIGN_DAR, 'codepoint, 0x1206F);
19588put('CUNEIFORM_SIGN_DARA3, 'codepoint, 0x12070);
19589put('CUNEIFORM_SIGN_DARA4, 'codepoint, 0x12071);
19590put('CUNEIFORM_SIGN_DI, 'codepoint, 0x12072);
19591put('CUNEIFORM_SIGN_DIB, 'codepoint, 0x12073);
19592put('CUNEIFORM_SIGN_DIM, 'codepoint, 0x12074);
19593put('CUNEIFORM_SIGN_DIM_TIMES_SHE, 'codepoint, 0x12075);
19594put('CUNEIFORM_SIGN_DIM2, 'codepoint, 0x12076);
19595put('CUNEIFORM_SIGN_DIN, 'codepoint, 0x12077);
19596put('CUNEIFORM_SIGN_DIN_KASKAL_U_GUNU_DISH, 'codepoint, 0x12078);
19597put('CUNEIFORM_SIGN_DISH, 'codepoint, 0x12079);
19598put('CUNEIFORM_SIGN_DU, 'codepoint, 0x1207A);
19599put('CUNEIFORM_SIGN_DU_OVER_DU, 'codepoint, 0x1207B);
19600put('CUNEIFORM_SIGN_DU_GUNU, 'codepoint, 0x1207C);
19601put('CUNEIFORM_SIGN_DU_SHESHIG, 'codepoint, 0x1207D);
19602put('CUNEIFORM_SIGN_DUB, 'codepoint, 0x1207E);
19603put('CUNEIFORM_SIGN_DUB_TIMES_ESH2, 'codepoint, 0x1207F);
19604put('CUNEIFORM_SIGN_DUB2, 'codepoint, 0x12080);
19605put('CUNEIFORM_SIGN_DUG, 'codepoint, 0x12081);
19606put('CUNEIFORM_SIGN_DUGUD, 'codepoint, 0x12082);
19607put('CUNEIFORM_SIGN_DUH, 'codepoint, 0x12083);
19608put('CUNEIFORM_SIGN_DUN, 'codepoint, 0x12084);
19609put('CUNEIFORM_SIGN_DUN3, 'codepoint, 0x12085);
19610put('CUNEIFORM_SIGN_DUN3_GUNU, 'codepoint, 0x12086);
19611put('CUNEIFORM_SIGN_DUN3_GUNU_GUNU, 'codepoint, 0x12087);
19612put('CUNEIFORM_SIGN_DUN4, 'codepoint, 0x12088);
19613put('CUNEIFORM_SIGN_DUR2, 'codepoint, 0x12089);
19614put('CUNEIFORM_SIGN_E, 'codepoint, 0x1208A);
19615put('CUNEIFORM_SIGN_E_TIMES_PAP, 'codepoint, 0x1208B);
19616put('CUNEIFORM_SIGN_E_OVER_E_NUN_OVER_NUN, 'codepoint, 0x1208C);
19617put('CUNEIFORM_SIGN_E2, 'codepoint, 0x1208D);
19618put('CUNEIFORM_SIGN_E2_TIMES_A_PLUS_HA_PLUS_DA, 'codepoint, 0x1208E);
19619put('CUNEIFORM_SIGN_E2_TIMES_GAR, 'codepoint, 0x1208F);
19620put('CUNEIFORM_SIGN_E2_TIMES_MI, 'codepoint, 0x12090);
19621put('CUNEIFORM_SIGN_E2_TIMES_SAL, 'codepoint, 0x12091);
19622put('CUNEIFORM_SIGN_E2_TIMES_SHE, 'codepoint, 0x12092);
19623put('CUNEIFORM_SIGN_E2_TIMES_U, 'codepoint, 0x12093);
19624put('CUNEIFORM_SIGN_EDIN, 'codepoint, 0x12094);
19625put('CUNEIFORM_SIGN_EGIR, 'codepoint, 0x12095);
19626put('CUNEIFORM_SIGN_EL, 'codepoint, 0x12096);
19627put('CUNEIFORM_SIGN_EN, 'codepoint, 0x12097);
19628put('CUNEIFORM_SIGN_EN_TIMES_GAN2, 'codepoint, 0x12098);
19629put('CUNEIFORM_SIGN_EN_TIMES_GAN2_TENU, 'codepoint, 0x12099);
19630put('CUNEIFORM_SIGN_EN_TIMES_ME, 'codepoint, 0x1209A);
19631put('CUNEIFORM_SIGN_EN_CROSSING_EN, 'codepoint, 0x1209B);
19632put('CUNEIFORM_SIGN_EN_OPPOSING_EN, 'codepoint, 0x1209C);
19633put('CUNEIFORM_SIGN_EN_SQUARED, 'codepoint, 0x1209D);
19634put('CUNEIFORM_SIGN_EREN, 'codepoint, 0x1209E);
19635put('CUNEIFORM_SIGN_ERIN2, 'codepoint, 0x1209F);
19636put('CUNEIFORM_SIGN_ESH2, 'codepoint, 0x120A0);
19637put('CUNEIFORM_SIGN_EZEN, 'codepoint, 0x120A1);
19638put('CUNEIFORM_SIGN_EZEN_TIMES_A, 'codepoint, 0x120A2);
19639put('CUNEIFORM_SIGN_EZEN_TIMES_A_PLUS_LAL, 'codepoint, 0x120A3);
19640put('CUNEIFORM_SIGN_EZEN_TIMES_A_PLUS_LAL_TIMES_LAL, 'codepoint, 0x120A4);
19641put('CUNEIFORM_SIGN_EZEN_TIMES_AN, 'codepoint, 0x120A5);
19642put('CUNEIFORM_SIGN_EZEN_TIMES_BAD, 'codepoint, 0x120A6);
19643put('CUNEIFORM_SIGN_EZEN_TIMES_DUN3_GUNU, 'codepoint, 0x120A7);
19644put('CUNEIFORM_SIGN_EZEN_TIMES_DUN3_GUNU_GUNU, 'codepoint, 0x120A8);
19645put('CUNEIFORM_SIGN_EZEN_TIMES_HA, 'codepoint, 0x120A9);
19646put('CUNEIFORM_SIGN_EZEN_TIMES_HA_GUNU, 'codepoint, 0x120AA);
19647put('CUNEIFORM_SIGN_EZEN_TIMES_IGI_GUNU, 'codepoint, 0x120AB);
19648put('CUNEIFORM_SIGN_EZEN_TIMES_KASKAL, 'codepoint, 0x120AC);
19649put('CUNEIFORM_SIGN_EZEN_TIMES_KASKAL_SQUARED, 'codepoint, 0x120AD);
19650put('CUNEIFORM_SIGN_EZEN_TIMES_KU3, 'codepoint, 0x120AE);
19651put('CUNEIFORM_SIGN_EZEN_TIMES_LA, 'codepoint, 0x120AF);
19652put('CUNEIFORM_SIGN_EZEN_TIMES_LAL_TIMES_LAL, 'codepoint, 0x120B0);
19653put('CUNEIFORM_SIGN_EZEN_TIMES_LI, 'codepoint, 0x120B1);
19654put('CUNEIFORM_SIGN_EZEN_TIMES_LU, 'codepoint, 0x120B2);
19655put('CUNEIFORM_SIGN_EZEN_TIMES_U2, 'codepoint, 0x120B3);
19656put('CUNEIFORM_SIGN_EZEN_TIMES_UD, 'codepoint, 0x120B4);
19657put('CUNEIFORM_SIGN_GA, 'codepoint, 0x120B5);
19658put('CUNEIFORM_SIGN_GA_GUNU, 'codepoint, 0x120B6);
19659put('CUNEIFORM_SIGN_GA2, 'codepoint, 0x120B7);
19660put('CUNEIFORM_SIGN_GA2_TIMES_A_PLUS_DA_PLUS_HA, 'codepoint, 0x120B8);
19661put('CUNEIFORM_SIGN_GA2_TIMES_A_PLUS_HA, 'codepoint, 0x120B9);
19662put('CUNEIFORM_SIGN_GA2_TIMES_A_PLUS_IGI, 'codepoint, 0x120BA);
19663put('CUNEIFORM_SIGN_GA2_TIMES_AB2_TENU_PLUS_TAB, 'codepoint, 0x120BB);
19664put('CUNEIFORM_SIGN_GA2_TIMES_AN, 'codepoint, 0x120BC);
19665put('CUNEIFORM_SIGN_GA2_TIMES_ASH, 'codepoint, 0x120BD);
19666put('CUNEIFORM_SIGN_GA2_TIMES_ASH2_PLUS_GAL, 'codepoint, 0x120BE);
19667put('CUNEIFORM_SIGN_GA2_TIMES_BAD, 'codepoint, 0x120BF);
19668put('CUNEIFORM_SIGN_GA2_TIMES_BAR_PLUS_RA, 'codepoint, 0x120C0);
19669put('CUNEIFORM_SIGN_GA2_TIMES_BUR, 'codepoint, 0x120C1);
19670put('CUNEIFORM_SIGN_GA2_TIMES_BUR_PLUS_RA, 'codepoint, 0x120C2);
19671put('CUNEIFORM_SIGN_GA2_TIMES_DA, 'codepoint, 0x120C3);
19672put('CUNEIFORM_SIGN_GA2_TIMES_DI, 'codepoint, 0x120C4);
19673put('CUNEIFORM_SIGN_GA2_TIMES_DIM_TIMES_SHE, 'codepoint, 0x120C5);
19674put('CUNEIFORM_SIGN_GA2_TIMES_DUB, 'codepoint, 0x120C6);
19675put('CUNEIFORM_SIGN_GA2_TIMES_EL, 'codepoint, 0x120C7);
19676put('CUNEIFORM_SIGN_GA2_TIMES_EL_PLUS_LA, 'codepoint, 0x120C8);
19677put('CUNEIFORM_SIGN_GA2_TIMES_EN, 'codepoint, 0x120C9);
19678put('CUNEIFORM_SIGN_GA2_TIMES_EN_TIMES_GAN2_TENU, 'codepoint, 0x120CA);
19679put('CUNEIFORM_SIGN_GA2_TIMES_GAN2_TENU, 'codepoint, 0x120CB);
19680put('CUNEIFORM_SIGN_GA2_TIMES_GAR, 'codepoint, 0x120CC);
19681put('CUNEIFORM_SIGN_GA2_TIMES_GI, 'codepoint, 0x120CD);
19682put('CUNEIFORM_SIGN_GA2_TIMES_GI4, 'codepoint, 0x120CE);
19683put('CUNEIFORM_SIGN_GA2_TIMES_GI4_PLUS_A, 'codepoint, 0x120CF);
19684put('CUNEIFORM_SIGN_GA2_TIMES_GIR2_PLUS_SU, 'codepoint, 0x120D0);
19685put('CUNEIFORM_SIGN_GA2_TIMES_HA_PLUS_LU_PLUS_ESH2, 'codepoint, 0x120D1);
19686put('CUNEIFORM_SIGN_GA2_TIMES_HAL, 'codepoint, 0x120D2);
19687put('CUNEIFORM_SIGN_GA2_TIMES_HAL_PLUS_LA, 'codepoint, 0x120D3);
19688put('CUNEIFORM_SIGN_GA2_TIMES_HI_PLUS_LI, 'codepoint, 0x120D4);
19689put('CUNEIFORM_SIGN_GA2_TIMES_HUB2, 'codepoint, 0x120D5);
19690put('CUNEIFORM_SIGN_GA2_TIMES_IGI_GUNU, 'codepoint, 0x120D6);
19691put('CUNEIFORM_SIGN_GA2_TIMES_ISH_PLUS_HU_PLUS_ASH, 'codepoint, 0x120D7);
19692put('CUNEIFORM_SIGN_GA2_TIMES_KAK, 'codepoint, 0x120D8);
19693put('CUNEIFORM_SIGN_GA2_TIMES_KASKAL, 'codepoint, 0x120D9);
19694put('CUNEIFORM_SIGN_GA2_TIMES_KID, 'codepoint, 0x120DA);
19695put('CUNEIFORM_SIGN_GA2_TIMES_KID_PLUS_LAL, 'codepoint, 0x120DB);
19696put('CUNEIFORM_SIGN_GA2_TIMES_KU3_PLUS_AN, 'codepoint, 0x120DC);
19697put('CUNEIFORM_SIGN_GA2_TIMES_LA, 'codepoint, 0x120DD);
19698put('CUNEIFORM_SIGN_GA2_TIMES_ME_PLUS_EN, 'codepoint, 0x120DE);
19699put('CUNEIFORM_SIGN_GA2_TIMES_MI, 'codepoint, 0x120DF);
19700put('CUNEIFORM_SIGN_GA2_TIMES_NUN, 'codepoint, 0x120E0);
19701put('CUNEIFORM_SIGN_GA2_TIMES_NUN_OVER_NUN, 'codepoint, 0x120E1);
19702put('CUNEIFORM_SIGN_GA2_TIMES_PA, 'codepoint, 0x120E2);
19703put('CUNEIFORM_SIGN_GA2_TIMES_SAL, 'codepoint, 0x120E3);
19704put('CUNEIFORM_SIGN_GA2_TIMES_SAR, 'codepoint, 0x120E4);
19705put('CUNEIFORM_SIGN_GA2_TIMES_SHE, 'codepoint, 0x120E5);
19706put('CUNEIFORM_SIGN_GA2_TIMES_SHE_PLUS_TUR, 'codepoint, 0x120E6);
19707put('CUNEIFORM_SIGN_GA2_TIMES_SHID, 'codepoint, 0x120E7);
19708put('CUNEIFORM_SIGN_GA2_TIMES_SUM, 'codepoint, 0x120E8);
19709put('CUNEIFORM_SIGN_GA2_TIMES_TAK4, 'codepoint, 0x120E9);
19710put('CUNEIFORM_SIGN_GA2_TIMES_U, 'codepoint, 0x120EA);
19711put('CUNEIFORM_SIGN_GA2_TIMES_UD, 'codepoint, 0x120EB);
19712put('CUNEIFORM_SIGN_GA2_TIMES_UD_PLUS_DU, 'codepoint, 0x120EC);
19713put('CUNEIFORM_SIGN_GA2_OVER_GA2, 'codepoint, 0x120ED);
19714put('CUNEIFORM_SIGN_GABA, 'codepoint, 0x120EE);
19715put('CUNEIFORM_SIGN_GABA_CROSSING_GABA, 'codepoint, 0x120EF);
19716put('CUNEIFORM_SIGN_GAD, 'codepoint, 0x120F0);
19717put('CUNEIFORM_SIGN_GAD_OVER_GAD_GAR_OVER_GAR, 'codepoint, 0x120F1);
19718put('CUNEIFORM_SIGN_GAL, 'codepoint, 0x120F2);
19719put('CUNEIFORM_SIGN_GAL_GAD_OVER_GAD_GAR_OVER_GAR, 'codepoint, 0x120F3);
19720put('CUNEIFORM_SIGN_GALAM, 'codepoint, 0x120F4);
19721put('CUNEIFORM_SIGN_GAM, 'codepoint, 0x120F5);
19722put('CUNEIFORM_SIGN_GAN, 'codepoint, 0x120F6);
19723put('CUNEIFORM_SIGN_GAN2, 'codepoint, 0x120F7);
19724put('CUNEIFORM_SIGN_GAN2_TENU, 'codepoint, 0x120F8);
19725put('CUNEIFORM_SIGN_GAN2_OVER_GAN2, 'codepoint, 0x120F9);
19726put('CUNEIFORM_SIGN_GAN2_CROSSING_GAN2, 'codepoint, 0x120FA);
19727put('CUNEIFORM_SIGN_GAR, 'codepoint, 0x120FB);
19728put('CUNEIFORM_SIGN_GAR3, 'codepoint, 0x120FC);
19729put('CUNEIFORM_SIGN_GASHAN, 'codepoint, 0x120FD);
19730put('CUNEIFORM_SIGN_GESHTIN, 'codepoint, 0x120FE);
19731put('CUNEIFORM_SIGN_GESHTIN_TIMES_KUR, 'codepoint, 0x120FF);
19732put('CUNEIFORM_SIGN_GI, 'codepoint, 0x12100);
19733put('CUNEIFORM_SIGN_GI_TIMES_E, 'codepoint, 0x12101);
19734put('CUNEIFORM_SIGN_GI_TIMES_U, 'codepoint, 0x12102);
19735put('CUNEIFORM_SIGN_GI_CROSSING_GI, 'codepoint, 0x12103);
19736put('CUNEIFORM_SIGN_GI4, 'codepoint, 0x12104);
19737put('CUNEIFORM_SIGN_GI4_OVER_GI4, 'codepoint, 0x12105);
19738put('CUNEIFORM_SIGN_GI4_CROSSING_GI4, 'codepoint, 0x12106);
19739put('CUNEIFORM_SIGN_GIDIM, 'codepoint, 0x12107);
19740put('CUNEIFORM_SIGN_GIR2, 'codepoint, 0x12108);
19741put('CUNEIFORM_SIGN_GIR2_GUNU, 'codepoint, 0x12109);
19742put('CUNEIFORM_SIGN_GIR3, 'codepoint, 0x1210A);
19743put('CUNEIFORM_SIGN_GIR3_TIMES_A_PLUS_IGI, 'codepoint, 0x1210B);
19744put('CUNEIFORM_SIGN_GIR3_TIMES_GAN2_TENU, 'codepoint, 0x1210C);
19745put('CUNEIFORM_SIGN_GIR3_TIMES_IGI, 'codepoint, 0x1210D);
19746put('CUNEIFORM_SIGN_GIR3_TIMES_LU_PLUS_IGI, 'codepoint, 0x1210E);
19747put('CUNEIFORM_SIGN_GIR3_TIMES_PA, 'codepoint, 0x1210F);
19748put('CUNEIFORM_SIGN_GISAL, 'codepoint, 0x12110);
19749put('CUNEIFORM_SIGN_GISH, 'codepoint, 0x12111);
19750put('CUNEIFORM_SIGN_GISH_CROSSING_GISH, 'codepoint, 0x12112);
19751put('CUNEIFORM_SIGN_GISH_TIMES_BAD, 'codepoint, 0x12113);
19752put('CUNEIFORM_SIGN_GISH_TIMES_TAK4, 'codepoint, 0x12114);
19753put('CUNEIFORM_SIGN_GISH_TENU, 'codepoint, 0x12115);
19754put('CUNEIFORM_SIGN_GU, 'codepoint, 0x12116);
19755put('CUNEIFORM_SIGN_GU_CROSSING_GU, 'codepoint, 0x12117);
19756put('CUNEIFORM_SIGN_GU2, 'codepoint, 0x12118);
19757put('CUNEIFORM_SIGN_GU2_TIMES_KAK, 'codepoint, 0x12119);
19758put('CUNEIFORM_SIGN_GU2_TIMES_KAK_TIMES_IGI_GUNU, 'codepoint, 0x1211A);
19759put('CUNEIFORM_SIGN_GU2_TIMES_NUN, 'codepoint, 0x1211B);
19760put('CUNEIFORM_SIGN_GU2_TIMES_SAL_PLUS_TUG2, 'codepoint, 0x1211C);
19761put('CUNEIFORM_SIGN_GU2_GUNU, 'codepoint, 0x1211D);
19762put('CUNEIFORM_SIGN_GUD, 'codepoint, 0x1211E);
19763put('CUNEIFORM_SIGN_GUD_TIMES_A_PLUS_KUR, 'codepoint, 0x1211F);
19764put('CUNEIFORM_SIGN_GUD_TIMES_KUR, 'codepoint, 0x12120);
19765put('CUNEIFORM_SIGN_GUD_OVER_GUD_LUGAL, 'codepoint, 0x12121);
19766put('CUNEIFORM_SIGN_GUL, 'codepoint, 0x12122);
19767put('CUNEIFORM_SIGN_GUM, 'codepoint, 0x12123);
19768put('CUNEIFORM_SIGN_GUM_TIMES_SHE, 'codepoint, 0x12124);
19769put('CUNEIFORM_SIGN_GUR, 'codepoint, 0x12125);
19770put('CUNEIFORM_SIGN_GUR7, 'codepoint, 0x12126);
19771put('CUNEIFORM_SIGN_GURUN, 'codepoint, 0x12127);
19772put('CUNEIFORM_SIGN_GURUSH, 'codepoint, 0x12128);
19773put('CUNEIFORM_SIGN_HA, 'codepoint, 0x12129);
19774put('CUNEIFORM_SIGN_HA_TENU, 'codepoint, 0x1212A);
19775put('CUNEIFORM_SIGN_HA_GUNU, 'codepoint, 0x1212B);
19776put('CUNEIFORM_SIGN_HAL, 'codepoint, 0x1212C);
19777put('CUNEIFORM_SIGN_HI, 'codepoint, 0x1212D);
19778put('CUNEIFORM_SIGN_HI_TIMES_ASH, 'codepoint, 0x1212E);
19779put('CUNEIFORM_SIGN_HI_TIMES_ASH2, 'codepoint, 0x1212F);
19780put('CUNEIFORM_SIGN_HI_TIMES_BAD, 'codepoint, 0x12130);
19781put('CUNEIFORM_SIGN_HI_TIMES_DISH, 'codepoint, 0x12131);
19782put('CUNEIFORM_SIGN_HI_TIMES_GAD, 'codepoint, 0x12132);
19783put('CUNEIFORM_SIGN_HI_TIMES_KIN, 'codepoint, 0x12133);
19784put('CUNEIFORM_SIGN_HI_TIMES_NUN, 'codepoint, 0x12134);
19785put('CUNEIFORM_SIGN_HI_TIMES_SHE, 'codepoint, 0x12135);
19786put('CUNEIFORM_SIGN_HI_TIMES_U, 'codepoint, 0x12136);
19787put('CUNEIFORM_SIGN_HU, 'codepoint, 0x12137);
19788put('CUNEIFORM_SIGN_HUB2, 'codepoint, 0x12138);
19789put('CUNEIFORM_SIGN_HUB2_TIMES_AN, 'codepoint, 0x12139);
19790put('CUNEIFORM_SIGN_HUB2_TIMES_HAL, 'codepoint, 0x1213A);
19791put('CUNEIFORM_SIGN_HUB2_TIMES_KASKAL, 'codepoint, 0x1213B);
19792put('CUNEIFORM_SIGN_HUB2_TIMES_LISH, 'codepoint, 0x1213C);
19793put('CUNEIFORM_SIGN_HUB2_TIMES_UD, 'codepoint, 0x1213D);
19794put('CUNEIFORM_SIGN_HUL2, 'codepoint, 0x1213E);
19795put('CUNEIFORM_SIGN_I, 'codepoint, 0x1213F);
19796put('CUNEIFORM_SIGN_I_A, 'codepoint, 0x12140);
19797put('CUNEIFORM_SIGN_IB, 'codepoint, 0x12141);
19798put('CUNEIFORM_SIGN_IDIM, 'codepoint, 0x12142);
19799put('CUNEIFORM_SIGN_IDIM_OVER_IDIM_BUR, 'codepoint, 0x12143);
19800put('CUNEIFORM_SIGN_IDIM_OVER_IDIM_SQUARED, 'codepoint, 0x12144);
19801put('CUNEIFORM_SIGN_IG, 'codepoint, 0x12145);
19802put('CUNEIFORM_SIGN_IGI, 'codepoint, 0x12146);
19803put('CUNEIFORM_SIGN_IGI_DIB, 'codepoint, 0x12147);
19804put('CUNEIFORM_SIGN_IGI_RI, 'codepoint, 0x12148);
19805put('CUNEIFORM_SIGN_IGI_OVER_IGI_SHIR_OVER_SHIR_UD_OVER_UD, 'codepoint, 0x12149);
19806put('CUNEIFORM_SIGN_IGI_GUNU, 'codepoint, 0x1214A);
19807put('CUNEIFORM_SIGN_IL, 'codepoint, 0x1214B);
19808put('CUNEIFORM_SIGN_IL_TIMES_GAN2_TENU, 'codepoint, 0x1214C);
19809put('CUNEIFORM_SIGN_IL2, 'codepoint, 0x1214D);
19810put('CUNEIFORM_SIGN_IM, 'codepoint, 0x1214E);
19811put('CUNEIFORM_SIGN_IM_TIMES_TAK4, 'codepoint, 0x1214F);
19812put('CUNEIFORM_SIGN_IM_CROSSING_IM, 'codepoint, 0x12150);
19813put('CUNEIFORM_SIGN_IM_OPPOSING_IM, 'codepoint, 0x12151);
19814put('CUNEIFORM_SIGN_IM_SQUARED, 'codepoint, 0x12152);
19815put('CUNEIFORM_SIGN_IMIN, 'codepoint, 0x12153);
19816put('CUNEIFORM_SIGN_IN, 'codepoint, 0x12154);
19817put('CUNEIFORM_SIGN_IR, 'codepoint, 0x12155);
19818put('CUNEIFORM_SIGN_ISH, 'codepoint, 0x12156);
19819put('CUNEIFORM_SIGN_KA, 'codepoint, 0x12157);
19820put('CUNEIFORM_SIGN_KA_TIMES_A, 'codepoint, 0x12158);
19821put('CUNEIFORM_SIGN_KA_TIMES_AD, 'codepoint, 0x12159);
19822put('CUNEIFORM_SIGN_KA_TIMES_AD_PLUS_KU3, 'codepoint, 0x1215A);
19823put('CUNEIFORM_SIGN_KA_TIMES_ASH2, 'codepoint, 0x1215B);
19824put('CUNEIFORM_SIGN_KA_TIMES_BAD, 'codepoint, 0x1215C);
19825put('CUNEIFORM_SIGN_KA_TIMES_BALAG, 'codepoint, 0x1215D);
19826put('CUNEIFORM_SIGN_KA_TIMES_BAR, 'codepoint, 0x1215E);
19827put('CUNEIFORM_SIGN_KA_TIMES_BI, 'codepoint, 0x1215F);
19828put('CUNEIFORM_SIGN_KA_TIMES_ERIN2, 'codepoint, 0x12160);
19829put('CUNEIFORM_SIGN_KA_TIMES_ESH2, 'codepoint, 0x12161);
19830put('CUNEIFORM_SIGN_KA_TIMES_GA, 'codepoint, 0x12162);
19831put('CUNEIFORM_SIGN_KA_TIMES_GAL, 'codepoint, 0x12163);
19832put('CUNEIFORM_SIGN_KA_TIMES_GAN2_TENU, 'codepoint, 0x12164);
19833put('CUNEIFORM_SIGN_KA_TIMES_GAR, 'codepoint, 0x12165);
19834put('CUNEIFORM_SIGN_KA_TIMES_GAR_PLUS_SHA3_PLUS_A, 'codepoint, 0x12166);
19835put('CUNEIFORM_SIGN_KA_TIMES_GI, 'codepoint, 0x12167);
19836put('CUNEIFORM_SIGN_KA_TIMES_GIR2, 'codepoint, 0x12168);
19837put('CUNEIFORM_SIGN_KA_TIMES_GISH_PLUS_SAR, 'codepoint, 0x12169);
19838put('CUNEIFORM_SIGN_KA_TIMES_GISH_CROSSING_GISH, 'codepoint, 0x1216A);
19839put('CUNEIFORM_SIGN_KA_TIMES_GU, 'codepoint, 0x1216B);
19840put('CUNEIFORM_SIGN_KA_TIMES_GUR7, 'codepoint, 0x1216C);
19841put('CUNEIFORM_SIGN_KA_TIMES_IGI, 'codepoint, 0x1216D);
19842put('CUNEIFORM_SIGN_KA_TIMES_IM, 'codepoint, 0x1216E);
19843put('CUNEIFORM_SIGN_KA_TIMES_KAK, 'codepoint, 0x1216F);
19844put('CUNEIFORM_SIGN_KA_TIMES_KI, 'codepoint, 0x12170);
19845put('CUNEIFORM_SIGN_KA_TIMES_KID, 'codepoint, 0x12171);
19846put('CUNEIFORM_SIGN_KA_TIMES_LI, 'codepoint, 0x12172);
19847put('CUNEIFORM_SIGN_KA_TIMES_LU, 'codepoint, 0x12173);
19848put('CUNEIFORM_SIGN_KA_TIMES_ME, 'codepoint, 0x12174);
19849put('CUNEIFORM_SIGN_KA_TIMES_ME_PLUS_DU, 'codepoint, 0x12175);
19850put('CUNEIFORM_SIGN_KA_TIMES_ME_PLUS_GI, 'codepoint, 0x12176);
19851put('CUNEIFORM_SIGN_KA_TIMES_ME_PLUS_TE, 'codepoint, 0x12177);
19852put('CUNEIFORM_SIGN_KA_TIMES_MI, 'codepoint, 0x12178);
19853put('CUNEIFORM_SIGN_KA_TIMES_MI_PLUS_NUNUZ, 'codepoint, 0x12179);
19854put('CUNEIFORM_SIGN_KA_TIMES_NE, 'codepoint, 0x1217A);
19855put('CUNEIFORM_SIGN_KA_TIMES_NUN, 'codepoint, 0x1217B);
19856put('CUNEIFORM_SIGN_KA_TIMES_PI, 'codepoint, 0x1217C);
19857put('CUNEIFORM_SIGN_KA_TIMES_RU, 'codepoint, 0x1217D);
19858put('CUNEIFORM_SIGN_KA_TIMES_SA, 'codepoint, 0x1217E);
19859put('CUNEIFORM_SIGN_KA_TIMES_SAR, 'codepoint, 0x1217F);
19860put('CUNEIFORM_SIGN_KA_TIMES_SHA, 'codepoint, 0x12180);
19861put('CUNEIFORM_SIGN_KA_TIMES_SHE, 'codepoint, 0x12181);
19862put('CUNEIFORM_SIGN_KA_TIMES_SHID, 'codepoint, 0x12182);
19863put('CUNEIFORM_SIGN_KA_TIMES_SHU, 'codepoint, 0x12183);
19864put('CUNEIFORM_SIGN_KA_TIMES_SIG, 'codepoint, 0x12184);
19865put('CUNEIFORM_SIGN_KA_TIMES_SUHUR, 'codepoint, 0x12185);
19866put('CUNEIFORM_SIGN_KA_TIMES_TAR, 'codepoint, 0x12186);
19867put('CUNEIFORM_SIGN_KA_TIMES_U, 'codepoint, 0x12187);
19868put('CUNEIFORM_SIGN_KA_TIMES_U2, 'codepoint, 0x12188);
19869put('CUNEIFORM_SIGN_KA_TIMES_UD, 'codepoint, 0x12189);
19870put('CUNEIFORM_SIGN_KA_TIMES_UMUM_TIMES_PA, 'codepoint, 0x1218A);
19871put('CUNEIFORM_SIGN_KA_TIMES_USH, 'codepoint, 0x1218B);
19872put('CUNEIFORM_SIGN_KA_TIMES_ZI, 'codepoint, 0x1218C);
19873put('CUNEIFORM_SIGN_KA2, 'codepoint, 0x1218D);
19874put('CUNEIFORM_SIGN_KA2_CROSSING_KA2, 'codepoint, 0x1218E);
19875put('CUNEIFORM_SIGN_KAB, 'codepoint, 0x1218F);
19876put('CUNEIFORM_SIGN_KAD2, 'codepoint, 0x12190);
19877put('CUNEIFORM_SIGN_KAD3, 'codepoint, 0x12191);
19878put('CUNEIFORM_SIGN_KAD4, 'codepoint, 0x12192);
19879put('CUNEIFORM_SIGN_KAD5, 'codepoint, 0x12193);
19880put('CUNEIFORM_SIGN_KAD5_OVER_KAD5, 'codepoint, 0x12194);
19881put('CUNEIFORM_SIGN_KAK, 'codepoint, 0x12195);
19882put('CUNEIFORM_SIGN_KAK_TIMES_IGI_GUNU, 'codepoint, 0x12196);
19883put('CUNEIFORM_SIGN_KAL, 'codepoint, 0x12197);
19884put('CUNEIFORM_SIGN_KAL_TIMES_BAD, 'codepoint, 0x12198);
19885put('CUNEIFORM_SIGN_KAL_CROSSING_KAL, 'codepoint, 0x12199);
19886put('CUNEIFORM_SIGN_KAM2, 'codepoint, 0x1219A);
19887put('CUNEIFORM_SIGN_KAM4, 'codepoint, 0x1219B);
19888put('CUNEIFORM_SIGN_KASKAL, 'codepoint, 0x1219C);
19889put('CUNEIFORM_SIGN_KASKAL_LAGAB_TIMES_U_OVER_LAGAB_TIMES_U, 'codepoint, 0x1219D);
19890put('CUNEIFORM_SIGN_KASKAL_OVER_KASKAL_LAGAB_TIMES_U_OVER_LAGAB_TIMES_U, 'codepoint, 0x1219E);
19891put('CUNEIFORM_SIGN_KESH2, 'codepoint, 0x1219F);
19892put('CUNEIFORM_SIGN_KI, 'codepoint, 0x121A0);
19893put('CUNEIFORM_SIGN_KI_TIMES_BAD, 'codepoint, 0x121A1);
19894put('CUNEIFORM_SIGN_KI_TIMES_U, 'codepoint, 0x121A2);
19895put('CUNEIFORM_SIGN_KI_TIMES_UD, 'codepoint, 0x121A3);
19896put('CUNEIFORM_SIGN_KID, 'codepoint, 0x121A4);
19897put('CUNEIFORM_SIGN_KIN, 'codepoint, 0x121A5);
19898put('CUNEIFORM_SIGN_KISAL, 'codepoint, 0x121A6);
19899put('CUNEIFORM_SIGN_KISH, 'codepoint, 0x121A7);
19900put('CUNEIFORM_SIGN_KISIM5, 'codepoint, 0x121A8);
19901put('CUNEIFORM_SIGN_KISIM5_OVER_KISIM5, 'codepoint, 0x121A9);
19902put('CUNEIFORM_SIGN_KU, 'codepoint, 0x121AA);
19903put('CUNEIFORM_SIGN_KU_OVER_HI_TIMES_ASH2_KU_OVER_HI_TIMES_ASH2, 'codepoint, 0x121AB);
19904put('CUNEIFORM_SIGN_KU3, 'codepoint, 0x121AC);
19905put('CUNEIFORM_SIGN_KU4, 'codepoint, 0x121AD);
19906put('CUNEIFORM_SIGN_KU4_VARIANT_FORM, 'codepoint, 0x121AE);
19907put('CUNEIFORM_SIGN_KU7, 'codepoint, 0x121AF);
19908put('CUNEIFORM_SIGN_KUL, 'codepoint, 0x121B0);
19909put('CUNEIFORM_SIGN_KUL_GUNU, 'codepoint, 0x121B1);
19910put('CUNEIFORM_SIGN_KUN, 'codepoint, 0x121B2);
19911put('CUNEIFORM_SIGN_KUR, 'codepoint, 0x121B3);
19912put('CUNEIFORM_SIGN_KUR_OPPOSING_KUR, 'codepoint, 0x121B4);
19913put('CUNEIFORM_SIGN_KUSHU2, 'codepoint, 0x121B5);
19914put('CUNEIFORM_SIGN_KWU318, 'codepoint, 0x121B6);
19915put('CUNEIFORM_SIGN_LA, 'codepoint, 0x121B7);
19916put('CUNEIFORM_SIGN_LAGAB, 'codepoint, 0x121B8);
19917put('CUNEIFORM_SIGN_LAGAB_TIMES_A, 'codepoint, 0x121B9);
19918put('CUNEIFORM_SIGN_LAGAB_TIMES_A_PLUS_DA_PLUS_HA, 'codepoint, 0x121BA);
19919put('CUNEIFORM_SIGN_LAGAB_TIMES_A_PLUS_GAR, 'codepoint, 0x121BB);
19920put('CUNEIFORM_SIGN_LAGAB_TIMES_A_PLUS_LAL, 'codepoint, 0x121BC);
19921put('CUNEIFORM_SIGN_LAGAB_TIMES_AL, 'codepoint, 0x121BD);
19922put('CUNEIFORM_SIGN_LAGAB_TIMES_AN, 'codepoint, 0x121BE);
19923put('CUNEIFORM_SIGN_LAGAB_TIMES_ASH_ZIDA_TENU, 'codepoint, 0x121BF);
19924put('CUNEIFORM_SIGN_LAGAB_TIMES_BAD, 'codepoint, 0x121C0);
19925put('CUNEIFORM_SIGN_LAGAB_TIMES_BI, 'codepoint, 0x121C1);
19926put('CUNEIFORM_SIGN_LAGAB_TIMES_DAR, 'codepoint, 0x121C2);
19927put('CUNEIFORM_SIGN_LAGAB_TIMES_EN, 'codepoint, 0x121C3);
19928put('CUNEIFORM_SIGN_LAGAB_TIMES_GA, 'codepoint, 0x121C4);
19929put('CUNEIFORM_SIGN_LAGAB_TIMES_GAR, 'codepoint, 0x121C5);
19930put('CUNEIFORM_SIGN_LAGAB_TIMES_GUD, 'codepoint, 0x121C6);
19931put('CUNEIFORM_SIGN_LAGAB_TIMES_GUD_PLUS_GUD, 'codepoint, 0x121C7);
19932put('CUNEIFORM_SIGN_LAGAB_TIMES_HA, 'codepoint, 0x121C8);
19933put('CUNEIFORM_SIGN_LAGAB_TIMES_HAL, 'codepoint, 0x121C9);
19934put('CUNEIFORM_SIGN_LAGAB_TIMES_HI_TIMES_NUN, 'codepoint, 0x121CA);
19935put('CUNEIFORM_SIGN_LAGAB_TIMES_IGI_GUNU, 'codepoint, 0x121CB);
19936put('CUNEIFORM_SIGN_LAGAB_TIMES_IM, 'codepoint, 0x121CC);
19937put('CUNEIFORM_SIGN_LAGAB_TIMES_IM_PLUS_HA, 'codepoint, 0x121CD);
19938put('CUNEIFORM_SIGN_LAGAB_TIMES_IM_PLUS_LU, 'codepoint, 0x121CE);
19939put('CUNEIFORM_SIGN_LAGAB_TIMES_KI, 'codepoint, 0x121CF);
19940put('CUNEIFORM_SIGN_LAGAB_TIMES_KIN, 'codepoint, 0x121D0);
19941put('CUNEIFORM_SIGN_LAGAB_TIMES_KU3, 'codepoint, 0x121D1);
19942put('CUNEIFORM_SIGN_LAGAB_TIMES_KUL, 'codepoint, 0x121D2);
19943put('CUNEIFORM_SIGN_LAGAB_TIMES_KUL_PLUS_HI_PLUS_A, 'codepoint, 0x121D3);
19944put('CUNEIFORM_SIGN_LAGAB_TIMES_LAGAB, 'codepoint, 0x121D4);
19945put('CUNEIFORM_SIGN_LAGAB_TIMES_LISH, 'codepoint, 0x121D5);
19946put('CUNEIFORM_SIGN_LAGAB_TIMES_LU, 'codepoint, 0x121D6);
19947put('CUNEIFORM_SIGN_LAGAB_TIMES_LUL, 'codepoint, 0x121D7);
19948put('CUNEIFORM_SIGN_LAGAB_TIMES_ME, 'codepoint, 0x121D8);
19949put('CUNEIFORM_SIGN_LAGAB_TIMES_ME_PLUS_EN, 'codepoint, 0x121D9);
19950put('CUNEIFORM_SIGN_LAGAB_TIMES_MUSH, 'codepoint, 0x121DA);
19951put('CUNEIFORM_SIGN_LAGAB_TIMES_NE, 'codepoint, 0x121DB);
19952put('CUNEIFORM_SIGN_LAGAB_TIMES_SHE_PLUS_SUM, 'codepoint, 0x121DC);
19953put('CUNEIFORM_SIGN_LAGAB_TIMES_SHITA_PLUS_GISH_PLUS_ERIN2, 'codepoint, 0x121DD);
19954put('CUNEIFORM_SIGN_LAGAB_TIMES_SHITA_PLUS_GISH_TENU, 'codepoint, 0x121DE);
19955put('CUNEIFORM_SIGN_LAGAB_TIMES_SHU2, 'codepoint, 0x121DF);
19956put('CUNEIFORM_SIGN_LAGAB_TIMES_SHU2_PLUS_SHU2, 'codepoint, 0x121E0);
19957put('CUNEIFORM_SIGN_LAGAB_TIMES_SUM, 'codepoint, 0x121E1);
19958put('CUNEIFORM_SIGN_LAGAB_TIMES_TAG, 'codepoint, 0x121E2);
19959put('CUNEIFORM_SIGN_LAGAB_TIMES_TAK4, 'codepoint, 0x121E3);
19960put('CUNEIFORM_SIGN_LAGAB_TIMES_TE_PLUS_A_PLUS_SU_PLUS_NA, 'codepoint, 0x121E4);
19961put('CUNEIFORM_SIGN_LAGAB_TIMES_U, 'codepoint, 0x121E5);
19962put('CUNEIFORM_SIGN_LAGAB_TIMES_U_PLUS_A, 'codepoint, 0x121E6);
19963put('CUNEIFORM_SIGN_LAGAB_TIMES_U_PLUS_U_PLUS_U, 'codepoint, 0x121E7);
19964put('CUNEIFORM_SIGN_LAGAB_TIMES_U2_PLUS_ASH, 'codepoint, 0x121E8);
19965put('CUNEIFORM_SIGN_LAGAB_TIMES_UD, 'codepoint, 0x121E9);
19966put('CUNEIFORM_SIGN_LAGAB_TIMES_USH, 'codepoint, 0x121EA);
19967put('CUNEIFORM_SIGN_LAGAB_SQUARED, 'codepoint, 0x121EB);
19968put('CUNEIFORM_SIGN_LAGAR, 'codepoint, 0x121EC);
19969put('CUNEIFORM_SIGN_LAGAR_TIMES_SHE, 'codepoint, 0x121ED);
19970put('CUNEIFORM_SIGN_LAGAR_TIMES_SHE_PLUS_SUM, 'codepoint, 0x121EE);
19971put('CUNEIFORM_SIGN_LAGAR_GUNU, 'codepoint, 0x121EF);
19972put('CUNEIFORM_SIGN_LAGAR_GUNU_OVER_LAGAR_GUNU_SHE, 'codepoint, 0x121F0);
19973put('CUNEIFORM_SIGN_LAHSHU, 'codepoint, 0x121F1);
19974put('CUNEIFORM_SIGN_LAL, 'codepoint, 0x121F2);
19975put('CUNEIFORM_SIGN_LAL_TIMES_LAL, 'codepoint, 0x121F3);
19976put('CUNEIFORM_SIGN_LAM, 'codepoint, 0x121F4);
19977put('CUNEIFORM_SIGN_LAM_TIMES_KUR, 'codepoint, 0x121F5);
19978put('CUNEIFORM_SIGN_LAM_TIMES_KUR_PLUS_RU, 'codepoint, 0x121F6);
19979put('CUNEIFORM_SIGN_LI, 'codepoint, 0x121F7);
19980put('CUNEIFORM_SIGN_LIL, 'codepoint, 0x121F8);
19981put('CUNEIFORM_SIGN_LIMMU2, 'codepoint, 0x121F9);
19982put('CUNEIFORM_SIGN_LISH, 'codepoint, 0x121FA);
19983put('CUNEIFORM_SIGN_LU, 'codepoint, 0x121FB);
19984put('CUNEIFORM_SIGN_LU_TIMES_BAD, 'codepoint, 0x121FC);
19985put('CUNEIFORM_SIGN_LU2, 'codepoint, 0x121FD);
19986put('CUNEIFORM_SIGN_LU2_TIMES_AL, 'codepoint, 0x121FE);
19987put('CUNEIFORM_SIGN_LU2_TIMES_BAD, 'codepoint, 0x121FF);
19988put('CUNEIFORM_SIGN_LU2_TIMES_ESH2, 'codepoint, 0x12200);
19989put('CUNEIFORM_SIGN_LU2_TIMES_ESH2_TENU, 'codepoint, 0x12201);
19990put('CUNEIFORM_SIGN_LU2_TIMES_GAN2_TENU, 'codepoint, 0x12202);
19991put('CUNEIFORM_SIGN_LU2_TIMES_HI_TIMES_BAD, 'codepoint, 0x12203);
19992put('CUNEIFORM_SIGN_LU2_TIMES_IM, 'codepoint, 0x12204);
19993put('CUNEIFORM_SIGN_LU2_TIMES_KAD2, 'codepoint, 0x12205);
19994put('CUNEIFORM_SIGN_LU2_TIMES_KAD3, 'codepoint, 0x12206);
19995put('CUNEIFORM_SIGN_LU2_TIMES_KAD3_PLUS_ASH, 'codepoint, 0x12207);
19996put('CUNEIFORM_SIGN_LU2_TIMES_KI, 'codepoint, 0x12208);
19997put('CUNEIFORM_SIGN_LU2_TIMES_LA_PLUS_ASH, 'codepoint, 0x12209);
19998put('CUNEIFORM_SIGN_LU2_TIMES_LAGAB, 'codepoint, 0x1220A);
19999put('CUNEIFORM_SIGN_LU2_TIMES_ME_PLUS_EN, 'codepoint, 0x1220B);
20000put('CUNEIFORM_SIGN_LU2_TIMES_NE, 'codepoint, 0x1220C);
20001put('CUNEIFORM_SIGN_LU2_TIMES_NU, 'codepoint, 0x1220D);
20002put('CUNEIFORM_SIGN_LU2_TIMES_SI_PLUS_ASH, 'codepoint, 0x1220E);
20003put('CUNEIFORM_SIGN_LU2_TIMES_SIK2_PLUS_BU, 'codepoint, 0x1220F);
20004put('CUNEIFORM_SIGN_LU2_TIMES_TUG2, 'codepoint, 0x12210);
20005put('CUNEIFORM_SIGN_LU2_TENU, 'codepoint, 0x12211);
20006put('CUNEIFORM_SIGN_LU2_CROSSING_LU2, 'codepoint, 0x12212);
20007put('CUNEIFORM_SIGN_LU2_OPPOSING_LU2, 'codepoint, 0x12213);
20008put('CUNEIFORM_SIGN_LU2_SQUARED, 'codepoint, 0x12214);
20009put('CUNEIFORM_SIGN_LU2_SHESHIG, 'codepoint, 0x12215);
20010put('CUNEIFORM_SIGN_LU3, 'codepoint, 0x12216);
20011put('CUNEIFORM_SIGN_LUGAL, 'codepoint, 0x12217);
20012put('CUNEIFORM_SIGN_LUGAL_OVER_LUGAL, 'codepoint, 0x12218);
20013put('CUNEIFORM_SIGN_LUGAL_OPPOSING_LUGAL, 'codepoint, 0x12219);
20014put('CUNEIFORM_SIGN_LUGAL_SHESHIG, 'codepoint, 0x1221A);
20015put('CUNEIFORM_SIGN_LUH, 'codepoint, 0x1221B);
20016put('CUNEIFORM_SIGN_LUL, 'codepoint, 0x1221C);
20017put('CUNEIFORM_SIGN_LUM, 'codepoint, 0x1221D);
20018put('CUNEIFORM_SIGN_LUM_OVER_LUM, 'codepoint, 0x1221E);
20019put('CUNEIFORM_SIGN_LUM_OVER_LUM_GAR_OVER_GAR, 'codepoint, 0x1221F);
20020put('CUNEIFORM_SIGN_MA, 'codepoint, 0x12220);
20021put('CUNEIFORM_SIGN_MA_TIMES_TAK4, 'codepoint, 0x12221);
20022put('CUNEIFORM_SIGN_MA_GUNU, 'codepoint, 0x12222);
20023put('CUNEIFORM_SIGN_MA2, 'codepoint, 0x12223);
20024put('CUNEIFORM_SIGN_MAH, 'codepoint, 0x12224);
20025put('CUNEIFORM_SIGN_MAR, 'codepoint, 0x12225);
20026put('CUNEIFORM_SIGN_MASH, 'codepoint, 0x12226);
20027put('CUNEIFORM_SIGN_MASH2, 'codepoint, 0x12227);
20028put('CUNEIFORM_SIGN_ME, 'codepoint, 0x12228);
20029put('CUNEIFORM_SIGN_MES, 'codepoint, 0x12229);
20030put('CUNEIFORM_SIGN_MI, 'codepoint, 0x1222A);
20031put('CUNEIFORM_SIGN_MIN, 'codepoint, 0x1222B);
20032put('CUNEIFORM_SIGN_MU, 'codepoint, 0x1222C);
20033put('CUNEIFORM_SIGN_MU_OVER_MU, 'codepoint, 0x1222D);
20034put('CUNEIFORM_SIGN_MUG, 'codepoint, 0x1222E);
20035put('CUNEIFORM_SIGN_MUG_GUNU, 'codepoint, 0x1222F);
20036put('CUNEIFORM_SIGN_MUNSUB, 'codepoint, 0x12230);
20037put('CUNEIFORM_SIGN_MURGU2, 'codepoint, 0x12231);
20038put('CUNEIFORM_SIGN_MUSH, 'codepoint, 0x12232);
20039put('CUNEIFORM_SIGN_MUSH_TIMES_A, 'codepoint, 0x12233);
20040put('CUNEIFORM_SIGN_MUSH_TIMES_KUR, 'codepoint, 0x12234);
20041put('CUNEIFORM_SIGN_MUSH_TIMES_ZA, 'codepoint, 0x12235);
20042put('CUNEIFORM_SIGN_MUSH_OVER_MUSH, 'codepoint, 0x12236);
20043put('CUNEIFORM_SIGN_MUSH_OVER_MUSH_TIMES_A_PLUS_NA, 'codepoint, 0x12237);
20044put('CUNEIFORM_SIGN_MUSH_CROSSING_MUSH, 'codepoint, 0x12238);
20045put('CUNEIFORM_SIGN_MUSH3, 'codepoint, 0x12239);
20046put('CUNEIFORM_SIGN_MUSH3_TIMES_A, 'codepoint, 0x1223A);
20047put('CUNEIFORM_SIGN_MUSH3_TIMES_A_PLUS_DI, 'codepoint, 0x1223B);
20048put('CUNEIFORM_SIGN_MUSH3_TIMES_DI, 'codepoint, 0x1223C);
20049put('CUNEIFORM_SIGN_MUSH3_GUNU, 'codepoint, 0x1223D);
20050put('CUNEIFORM_SIGN_NA, 'codepoint, 0x1223E);
20051put('CUNEIFORM_SIGN_NA2, 'codepoint, 0x1223F);
20052put('CUNEIFORM_SIGN_NAGA, 'codepoint, 0x12240);
20053put('CUNEIFORM_SIGN_NAGA_INVERTED, 'codepoint, 0x12241);
20054put('CUNEIFORM_SIGN_NAGA_TIMES_SHU_TENU, 'codepoint, 0x12242);
20055put('CUNEIFORM_SIGN_NAGA_OPPOSING_NAGA, 'codepoint, 0x12243);
20056put('CUNEIFORM_SIGN_NAGAR, 'codepoint, 0x12244);
20057put('CUNEIFORM_SIGN_NAM_NUTILLU, 'codepoint, 0x12245);
20058put('CUNEIFORM_SIGN_NAM, 'codepoint, 0x12246);
20059put('CUNEIFORM_SIGN_NAM2, 'codepoint, 0x12247);
20060put('CUNEIFORM_SIGN_NE, 'codepoint, 0x12248);
20061put('CUNEIFORM_SIGN_NE_TIMES_A, 'codepoint, 0x12249);
20062put('CUNEIFORM_SIGN_NE_TIMES_UD, 'codepoint, 0x1224A);
20063put('CUNEIFORM_SIGN_NE_SHESHIG, 'codepoint, 0x1224B);
20064put('CUNEIFORM_SIGN_NI, 'codepoint, 0x1224C);
20065put('CUNEIFORM_SIGN_NI_TIMES_E, 'codepoint, 0x1224D);
20066put('CUNEIFORM_SIGN_NI2, 'codepoint, 0x1224E);
20067put('CUNEIFORM_SIGN_NIM, 'codepoint, 0x1224F);
20068put('CUNEIFORM_SIGN_NIM_TIMES_GAN2_TENU, 'codepoint, 0x12250);
20069put('CUNEIFORM_SIGN_NIM_TIMES_GAR_PLUS_GAN2_TENU, 'codepoint, 0x12251);
20070put('CUNEIFORM_SIGN_NINDA2, 'codepoint, 0x12252);
20071put('CUNEIFORM_SIGN_NINDA2_TIMES_AN, 'codepoint, 0x12253);
20072put('CUNEIFORM_SIGN_NINDA2_TIMES_ASH, 'codepoint, 0x12254);
20073put('CUNEIFORM_SIGN_NINDA2_TIMES_ASH_PLUS_ASH, 'codepoint, 0x12255);
20074put('CUNEIFORM_SIGN_NINDA2_TIMES_GUD, 'codepoint, 0x12256);
20075put('CUNEIFORM_SIGN_NINDA2_TIMES_ME_PLUS_GAN2_TENU, 'codepoint, 0x12257);
20076put('CUNEIFORM_SIGN_NINDA2_TIMES_NE, 'codepoint, 0x12258);
20077put('CUNEIFORM_SIGN_NINDA2_TIMES_NUN, 'codepoint, 0x12259);
20078put('CUNEIFORM_SIGN_NINDA2_TIMES_SHE, 'codepoint, 0x1225A);
20079put('CUNEIFORM_SIGN_NINDA2_TIMES_SHE_PLUS_A_AN, 'codepoint, 0x1225B);
20080put('CUNEIFORM_SIGN_NINDA2_TIMES_SHE_PLUS_ASH, 'codepoint, 0x1225C);
20081put('CUNEIFORM_SIGN_NINDA2_TIMES_SHE_PLUS_ASH_PLUS_ASH, 'codepoint, 0x1225D);
20082put('CUNEIFORM_SIGN_NINDA2_TIMES_U2_PLUS_ASH, 'codepoint, 0x1225E);
20083put('CUNEIFORM_SIGN_NINDA2_TIMES_USH, 'codepoint, 0x1225F);
20084put('CUNEIFORM_SIGN_NISAG, 'codepoint, 0x12260);
20085put('CUNEIFORM_SIGN_NU, 'codepoint, 0x12261);
20086put('CUNEIFORM_SIGN_NU11, 'codepoint, 0x12262);
20087put('CUNEIFORM_SIGN_NUN, 'codepoint, 0x12263);
20088put('CUNEIFORM_SIGN_NUN_LAGAR_TIMES_GAR, 'codepoint, 0x12264);
20089put('CUNEIFORM_SIGN_NUN_LAGAR_TIMES_MASH, 'codepoint, 0x12265);
20090put('CUNEIFORM_SIGN_NUN_LAGAR_TIMES_SAL, 'codepoint, 0x12266);
20091put('CUNEIFORM_SIGN_NUN_LAGAR_TIMES_SAL_OVER_NUN_LAGAR_TIMES_SAL, 'codepoint, 0x12267);
20092put('CUNEIFORM_SIGN_NUN_LAGAR_TIMES_USH, 'codepoint, 0x12268);
20093put('CUNEIFORM_SIGN_NUN_TENU, 'codepoint, 0x12269);
20094put('CUNEIFORM_SIGN_NUN_OVER_NUN, 'codepoint, 0x1226A);
20095put('CUNEIFORM_SIGN_NUN_CROSSING_NUN, 'codepoint, 0x1226B);
20096put('CUNEIFORM_SIGN_NUN_CROSSING_NUN_LAGAR_OVER_LAGAR, 'codepoint, 0x1226C);
20097put('CUNEIFORM_SIGN_NUNUZ, 'codepoint, 0x1226D);
20098put('CUNEIFORM_SIGN_NUNUZ_AB2_TIMES_ASHGAB, 'codepoint, 0x1226E);
20099put('CUNEIFORM_SIGN_NUNUZ_AB2_TIMES_BI, 'codepoint, 0x1226F);
20100put('CUNEIFORM_SIGN_NUNUZ_AB2_TIMES_DUG, 'codepoint, 0x12270);
20101put('CUNEIFORM_SIGN_NUNUZ_AB2_TIMES_GUD, 'codepoint, 0x12271);
20102put('CUNEIFORM_SIGN_NUNUZ_AB2_TIMES_IGI_GUNU, 'codepoint, 0x12272);
20103put('CUNEIFORM_SIGN_NUNUZ_AB2_TIMES_KAD3, 'codepoint, 0x12273);
20104put('CUNEIFORM_SIGN_NUNUZ_AB2_TIMES_LA, 'codepoint, 0x12274);
20105put('CUNEIFORM_SIGN_NUNUZ_AB2_TIMES_NE, 'codepoint, 0x12275);
20106put('CUNEIFORM_SIGN_NUNUZ_AB2_TIMES_SILA3, 'codepoint, 0x12276);
20107put('CUNEIFORM_SIGN_NUNUZ_AB2_TIMES_U2, 'codepoint, 0x12277);
20108put('CUNEIFORM_SIGN_NUNUZ_KISIM5_TIMES_BI, 'codepoint, 0x12278);
20109put('CUNEIFORM_SIGN_NUNUZ_KISIM5_TIMES_BI_U, 'codepoint, 0x12279);
20110put('CUNEIFORM_SIGN_PA, 'codepoint, 0x1227A);
20111put('CUNEIFORM_SIGN_PAD, 'codepoint, 0x1227B);
20112put('CUNEIFORM_SIGN_PAN, 'codepoint, 0x1227C);
20113put('CUNEIFORM_SIGN_PAP, 'codepoint, 0x1227D);
20114put('CUNEIFORM_SIGN_PESH2, 'codepoint, 0x1227E);
20115put('CUNEIFORM_SIGN_PI, 'codepoint, 0x1227F);
20116put('CUNEIFORM_SIGN_PI_TIMES_A, 'codepoint, 0x12280);
20117put('CUNEIFORM_SIGN_PI_TIMES_AB, 'codepoint, 0x12281);
20118put('CUNEIFORM_SIGN_PI_TIMES_BI, 'codepoint, 0x12282);
20119put('CUNEIFORM_SIGN_PI_TIMES_BU, 'codepoint, 0x12283);
20120put('CUNEIFORM_SIGN_PI_TIMES_E, 'codepoint, 0x12284);
20121put('CUNEIFORM_SIGN_PI_TIMES_I, 'codepoint, 0x12285);
20122put('CUNEIFORM_SIGN_PI_TIMES_IB, 'codepoint, 0x12286);
20123put('CUNEIFORM_SIGN_PI_TIMES_U, 'codepoint, 0x12287);
20124put('CUNEIFORM_SIGN_PI_TIMES_U2, 'codepoint, 0x12288);
20125put('CUNEIFORM_SIGN_PI_CROSSING_PI, 'codepoint, 0x12289);
20126put('CUNEIFORM_SIGN_PIRIG, 'codepoint, 0x1228A);
20127put('CUNEIFORM_SIGN_PIRIG_TIMES_KAL, 'codepoint, 0x1228B);
20128put('CUNEIFORM_SIGN_PIRIG_TIMES_UD, 'codepoint, 0x1228C);
20129put('CUNEIFORM_SIGN_PIRIG_TIMES_ZA, 'codepoint, 0x1228D);
20130put('CUNEIFORM_SIGN_PIRIG_OPPOSING_PIRIG, 'codepoint, 0x1228E);
20131put('CUNEIFORM_SIGN_RA, 'codepoint, 0x1228F);
20132put('CUNEIFORM_SIGN_RAB, 'codepoint, 0x12290);
20133put('CUNEIFORM_SIGN_RI, 'codepoint, 0x12291);
20134put('CUNEIFORM_SIGN_RU, 'codepoint, 0x12292);
20135put('CUNEIFORM_SIGN_SA, 'codepoint, 0x12293);
20136put('CUNEIFORM_SIGN_SAG_NUTILLU, 'codepoint, 0x12294);
20137put('CUNEIFORM_SIGN_SAG, 'codepoint, 0x12295);
20138put('CUNEIFORM_SIGN_SAG_TIMES_A, 'codepoint, 0x12296);
20139put('CUNEIFORM_SIGN_SAG_TIMES_DU, 'codepoint, 0x12297);
20140put('CUNEIFORM_SIGN_SAG_TIMES_DUB, 'codepoint, 0x12298);
20141put('CUNEIFORM_SIGN_SAG_TIMES_HA, 'codepoint, 0x12299);
20142put('CUNEIFORM_SIGN_SAG_TIMES_KAK, 'codepoint, 0x1229A);
20143put('CUNEIFORM_SIGN_SAG_TIMES_KUR, 'codepoint, 0x1229B);
20144put('CUNEIFORM_SIGN_SAG_TIMES_LUM, 'codepoint, 0x1229C);
20145put('CUNEIFORM_SIGN_SAG_TIMES_MI, 'codepoint, 0x1229D);
20146put('CUNEIFORM_SIGN_SAG_TIMES_NUN, 'codepoint, 0x1229E);
20147put('CUNEIFORM_SIGN_SAG_TIMES_SAL, 'codepoint, 0x1229F);
20148put('CUNEIFORM_SIGN_SAG_TIMES_SHID, 'codepoint, 0x122A0);
20149put('CUNEIFORM_SIGN_SAG_TIMES_TAB, 'codepoint, 0x122A1);
20150put('CUNEIFORM_SIGN_SAG_TIMES_U2, 'codepoint, 0x122A2);
20151put('CUNEIFORM_SIGN_SAG_TIMES_UB, 'codepoint, 0x122A3);
20152put('CUNEIFORM_SIGN_SAG_TIMES_UM, 'codepoint, 0x122A4);
20153put('CUNEIFORM_SIGN_SAG_TIMES_UR, 'codepoint, 0x122A5);
20154put('CUNEIFORM_SIGN_SAG_TIMES_USH, 'codepoint, 0x122A6);
20155put('CUNEIFORM_SIGN_SAG_OVER_SAG, 'codepoint, 0x122A7);
20156put('CUNEIFORM_SIGN_SAG_GUNU, 'codepoint, 0x122A8);
20157put('CUNEIFORM_SIGN_SAL, 'codepoint, 0x122A9);
20158put('CUNEIFORM_SIGN_SAL_LAGAB_TIMES_ASH2, 'codepoint, 0x122AA);
20159put('CUNEIFORM_SIGN_SANGA2, 'codepoint, 0x122AB);
20160put('CUNEIFORM_SIGN_SAR, 'codepoint, 0x122AC);
20161put('CUNEIFORM_SIGN_SHA, 'codepoint, 0x122AD);
20162put('CUNEIFORM_SIGN_SHA3, 'codepoint, 0x122AE);
20163put('CUNEIFORM_SIGN_SHA3_TIMES_A, 'codepoint, 0x122AF);
20164put('CUNEIFORM_SIGN_SHA3_TIMES_BAD, 'codepoint, 0x122B0);
20165put('CUNEIFORM_SIGN_SHA3_TIMES_GISH, 'codepoint, 0x122B1);
20166put('CUNEIFORM_SIGN_SHA3_TIMES_NE, 'codepoint, 0x122B2);
20167put('CUNEIFORM_SIGN_SHA3_TIMES_SHU2, 'codepoint, 0x122B3);
20168put('CUNEIFORM_SIGN_SHA3_TIMES_TUR, 'codepoint, 0x122B4);
20169put('CUNEIFORM_SIGN_SHA3_TIMES_U, 'codepoint, 0x122B5);
20170put('CUNEIFORM_SIGN_SHA3_TIMES_U_PLUS_A, 'codepoint, 0x122B6);
20171put('CUNEIFORM_SIGN_SHA6, 'codepoint, 0x122B7);
20172put('CUNEIFORM_SIGN_SHAB6, 'codepoint, 0x122B8);
20173put('CUNEIFORM_SIGN_SHAR2, 'codepoint, 0x122B9);
20174put('CUNEIFORM_SIGN_SHE, 'codepoint, 0x122BA);
20175put('CUNEIFORM_SIGN_SHE_HU, 'codepoint, 0x122BB);
20176put('CUNEIFORM_SIGN_SHE_OVER_SHE_GAD_OVER_GAD_GAR_OVER_GAR, 'codepoint, 0x122BC);
20177put('CUNEIFORM_SIGN_SHE_OVER_SHE_TAB_OVER_TAB_GAR_OVER_GAR, 'codepoint, 0x122BD);
20178put('CUNEIFORM_SIGN_SHEG9, 'codepoint, 0x122BE);
20179put('CUNEIFORM_SIGN_SHEN, 'codepoint, 0x122BF);
20180put('CUNEIFORM_SIGN_SHESH, 'codepoint, 0x122C0);
20181put('CUNEIFORM_SIGN_SHESH2, 'codepoint, 0x122C1);
20182put('CUNEIFORM_SIGN_SHESHLAM, 'codepoint, 0x122C2);
20183put('CUNEIFORM_SIGN_SHID, 'codepoint, 0x122C3);
20184put('CUNEIFORM_SIGN_SHID_TIMES_A, 'codepoint, 0x122C4);
20185put('CUNEIFORM_SIGN_SHID_TIMES_IM, 'codepoint, 0x122C5);
20186put('CUNEIFORM_SIGN_SHIM, 'codepoint, 0x122C6);
20187put('CUNEIFORM_SIGN_SHIM_TIMES_A, 'codepoint, 0x122C7);
20188put('CUNEIFORM_SIGN_SHIM_TIMES_BAL, 'codepoint, 0x122C8);
20189put('CUNEIFORM_SIGN_SHIM_TIMES_BULUG, 'codepoint, 0x122C9);
20190put('CUNEIFORM_SIGN_SHIM_TIMES_DIN, 'codepoint, 0x122CA);
20191put('CUNEIFORM_SIGN_SHIM_TIMES_GAR, 'codepoint, 0x122CB);
20192put('CUNEIFORM_SIGN_SHIM_TIMES_IGI, 'codepoint, 0x122CC);
20193put('CUNEIFORM_SIGN_SHIM_TIMES_IGI_GUNU, 'codepoint, 0x122CD);
20194put('CUNEIFORM_SIGN_SHIM_TIMES_KUSHU2, 'codepoint, 0x122CE);
20195put('CUNEIFORM_SIGN_SHIM_TIMES_LUL, 'codepoint, 0x122CF);
20196put('CUNEIFORM_SIGN_SHIM_TIMES_MUG, 'codepoint, 0x122D0);
20197put('CUNEIFORM_SIGN_SHIM_TIMES_SAL, 'codepoint, 0x122D1);
20198put('CUNEIFORM_SIGN_SHINIG, 'codepoint, 0x122D2);
20199put('CUNEIFORM_SIGN_SHIR, 'codepoint, 0x122D3);
20200put('CUNEIFORM_SIGN_SHIR_TENU, 'codepoint, 0x122D4);
20201put('CUNEIFORM_SIGN_SHIR_OVER_SHIR_BUR_OVER_BUR, 'codepoint, 0x122D5);
20202put('CUNEIFORM_SIGN_SHITA, 'codepoint, 0x122D6);
20203put('CUNEIFORM_SIGN_SHU, 'codepoint, 0x122D7);
20204put('CUNEIFORM_SIGN_SHU_OVER_INVERTED_SHU, 'codepoint, 0x122D8);
20205put('CUNEIFORM_SIGN_SHU2, 'codepoint, 0x122D9);
20206put('CUNEIFORM_SIGN_SHUBUR, 'codepoint, 0x122DA);
20207put('CUNEIFORM_SIGN_SI, 'codepoint, 0x122DB);
20208put('CUNEIFORM_SIGN_SI_GUNU, 'codepoint, 0x122DC);
20209put('CUNEIFORM_SIGN_SIG, 'codepoint, 0x122DD);
20210put('CUNEIFORM_SIGN_SIG4, 'codepoint, 0x122DE);
20211put('CUNEIFORM_SIGN_SIG4_OVER_SIG4_SHU2, 'codepoint, 0x122DF);
20212put('CUNEIFORM_SIGN_SIK2, 'codepoint, 0x122E0);
20213put('CUNEIFORM_SIGN_SILA3, 'codepoint, 0x122E1);
20214put('CUNEIFORM_SIGN_SU, 'codepoint, 0x122E2);
20215put('CUNEIFORM_SIGN_SU_OVER_SU, 'codepoint, 0x122E3);
20216put('CUNEIFORM_SIGN_SUD, 'codepoint, 0x122E4);
20217put('CUNEIFORM_SIGN_SUD2, 'codepoint, 0x122E5);
20218put('CUNEIFORM_SIGN_SUHUR, 'codepoint, 0x122E6);
20219put('CUNEIFORM_SIGN_SUM, 'codepoint, 0x122E7);
20220put('CUNEIFORM_SIGN_SUMASH, 'codepoint, 0x122E8);
20221put('CUNEIFORM_SIGN_SUR, 'codepoint, 0x122E9);
20222put('CUNEIFORM_SIGN_SUR9, 'codepoint, 0x122EA);
20223put('CUNEIFORM_SIGN_TA, 'codepoint, 0x122EB);
20224put('CUNEIFORM_SIGN_TA_ASTERISK, 'codepoint, 0x122EC);
20225put('CUNEIFORM_SIGN_TA_TIMES_HI, 'codepoint, 0x122ED);
20226put('CUNEIFORM_SIGN_TA_TIMES_MI, 'codepoint, 0x122EE);
20227put('CUNEIFORM_SIGN_TA_GUNU, 'codepoint, 0x122EF);
20228put('CUNEIFORM_SIGN_TAB, 'codepoint, 0x122F0);
20229put('CUNEIFORM_SIGN_TAB_OVER_TAB_NI_OVER_NI_DISH_OVER_DISH, 'codepoint, 0x122F1);
20230put('CUNEIFORM_SIGN_TAB_SQUARED, 'codepoint, 0x122F2);
20231put('CUNEIFORM_SIGN_TAG, 'codepoint, 0x122F3);
20232put('CUNEIFORM_SIGN_TAG_TIMES_BI, 'codepoint, 0x122F4);
20233put('CUNEIFORM_SIGN_TAG_TIMES_GUD, 'codepoint, 0x122F5);
20234put('CUNEIFORM_SIGN_TAG_TIMES_SHE, 'codepoint, 0x122F6);
20235put('CUNEIFORM_SIGN_TAG_TIMES_SHU, 'codepoint, 0x122F7);
20236put('CUNEIFORM_SIGN_TAG_TIMES_TUG2, 'codepoint, 0x122F8);
20237put('CUNEIFORM_SIGN_TAG_TIMES_UD, 'codepoint, 0x122F9);
20238put('CUNEIFORM_SIGN_TAK4, 'codepoint, 0x122FA);
20239put('CUNEIFORM_SIGN_TAR, 'codepoint, 0x122FB);
20240put('CUNEIFORM_SIGN_TE, 'codepoint, 0x122FC);
20241put('CUNEIFORM_SIGN_TE_GUNU, 'codepoint, 0x122FD);
20242put('CUNEIFORM_SIGN_TI, 'codepoint, 0x122FE);
20243put('CUNEIFORM_SIGN_TI_TENU, 'codepoint, 0x122FF);
20244put('CUNEIFORM_SIGN_TIL, 'codepoint, 0x12300);
20245put('CUNEIFORM_SIGN_TIR, 'codepoint, 0x12301);
20246put('CUNEIFORM_SIGN_TIR_TIMES_TAK4, 'codepoint, 0x12302);
20247put('CUNEIFORM_SIGN_TIR_OVER_TIR, 'codepoint, 0x12303);
20248put('CUNEIFORM_SIGN_TIR_OVER_TIR_GAD_OVER_GAD_GAR_OVER_GAR, 'codepoint, 0x12304);
20249put('CUNEIFORM_SIGN_TU, 'codepoint, 0x12305);
20250put('CUNEIFORM_SIGN_TUG2, 'codepoint, 0x12306);
20251put('CUNEIFORM_SIGN_TUK, 'codepoint, 0x12307);
20252put('CUNEIFORM_SIGN_TUM, 'codepoint, 0x12308);
20253put('CUNEIFORM_SIGN_TUR, 'codepoint, 0x12309);
20254put('CUNEIFORM_SIGN_TUR_OVER_TUR_ZA_OVER_ZA, 'codepoint, 0x1230A);
20255put('CUNEIFORM_SIGN_U, 'codepoint, 0x1230B);
20256put('CUNEIFORM_SIGN_U_GUD, 'codepoint, 0x1230C);
20257put('CUNEIFORM_SIGN_U_U_U, 'codepoint, 0x1230D);
20258put('CUNEIFORM_SIGN_U_OVER_U_PA_OVER_PA_GAR_OVER_GAR, 'codepoint, 0x1230E);
20259put('CUNEIFORM_SIGN_U_OVER_U_SUR_OVER_SUR, 'codepoint, 0x1230F);
20260put('CUNEIFORM_SIGN_U_OVER_U_U_REVERSED_OVER_U_REVERSED, 'codepoint, 0x12310);
20261put('CUNEIFORM_SIGN_U2, 'codepoint, 0x12311);
20262put('CUNEIFORM_SIGN_UB, 'codepoint, 0x12312);
20263put('CUNEIFORM_SIGN_UD, 'codepoint, 0x12313);
20264put('CUNEIFORM_SIGN_UD_KUSHU2, 'codepoint, 0x12314);
20265put('CUNEIFORM_SIGN_UD_TIMES_BAD, 'codepoint, 0x12315);
20266put('CUNEIFORM_SIGN_UD_TIMES_MI, 'codepoint, 0x12316);
20267put('CUNEIFORM_SIGN_UD_TIMES_U_PLUS_U_PLUS_U, 'codepoint, 0x12317);
20268put('CUNEIFORM_SIGN_UD_TIMES_U_PLUS_U_PLUS_U_GUNU, 'codepoint, 0x12318);
20269put('CUNEIFORM_SIGN_UD_GUNU, 'codepoint, 0x12319);
20270put('CUNEIFORM_SIGN_UD_SHESHIG, 'codepoint, 0x1231A);
20271put('CUNEIFORM_SIGN_UD_SHESHIG_TIMES_BAD, 'codepoint, 0x1231B);
20272put('CUNEIFORM_SIGN_UDUG, 'codepoint, 0x1231C);
20273put('CUNEIFORM_SIGN_UM, 'codepoint, 0x1231D);
20274put('CUNEIFORM_SIGN_UM_TIMES_LAGAB, 'codepoint, 0x1231E);
20275put('CUNEIFORM_SIGN_UM_TIMES_ME_PLUS_DA, 'codepoint, 0x1231F);
20276put('CUNEIFORM_SIGN_UM_TIMES_SHA3, 'codepoint, 0x12320);
20277put('CUNEIFORM_SIGN_UM_TIMES_U, 'codepoint, 0x12321);
20278put('CUNEIFORM_SIGN_UMBIN, 'codepoint, 0x12322);
20279put('CUNEIFORM_SIGN_UMUM, 'codepoint, 0x12323);
20280put('CUNEIFORM_SIGN_UMUM_TIMES_KASKAL, 'codepoint, 0x12324);
20281put('CUNEIFORM_SIGN_UMUM_TIMES_PA, 'codepoint, 0x12325);
20282put('CUNEIFORM_SIGN_UN, 'codepoint, 0x12326);
20283put('CUNEIFORM_SIGN_UN_GUNU, 'codepoint, 0x12327);
20284put('CUNEIFORM_SIGN_UR, 'codepoint, 0x12328);
20285put('CUNEIFORM_SIGN_UR_CROSSING_UR, 'codepoint, 0x12329);
20286put('CUNEIFORM_SIGN_UR_SHESHIG, 'codepoint, 0x1232A);
20287put('CUNEIFORM_SIGN_UR2, 'codepoint, 0x1232B);
20288put('CUNEIFORM_SIGN_UR2_TIMES_A_PLUS_HA, 'codepoint, 0x1232C);
20289put('CUNEIFORM_SIGN_UR2_TIMES_A_PLUS_NA, 'codepoint, 0x1232D);
20290put('CUNEIFORM_SIGN_UR2_TIMES_AL, 'codepoint, 0x1232E);
20291put('CUNEIFORM_SIGN_UR2_TIMES_HA, 'codepoint, 0x1232F);
20292put('CUNEIFORM_SIGN_UR2_TIMES_NUN, 'codepoint, 0x12330);
20293put('CUNEIFORM_SIGN_UR2_TIMES_U2, 'codepoint, 0x12331);
20294put('CUNEIFORM_SIGN_UR2_TIMES_U2_PLUS_ASH, 'codepoint, 0x12332);
20295put('CUNEIFORM_SIGN_UR2_TIMES_U2_PLUS_BI, 'codepoint, 0x12333);
20296put('CUNEIFORM_SIGN_UR4, 'codepoint, 0x12334);
20297put('CUNEIFORM_SIGN_URI, 'codepoint, 0x12335);
20298put('CUNEIFORM_SIGN_URI3, 'codepoint, 0x12336);
20299put('CUNEIFORM_SIGN_URU, 'codepoint, 0x12337);
20300put('CUNEIFORM_SIGN_URU_TIMES_A, 'codepoint, 0x12338);
20301put('CUNEIFORM_SIGN_URU_TIMES_ASHGAB, 'codepoint, 0x12339);
20302put('CUNEIFORM_SIGN_URU_TIMES_BAR, 'codepoint, 0x1233A);
20303put('CUNEIFORM_SIGN_URU_TIMES_DUN, 'codepoint, 0x1233B);
20304put('CUNEIFORM_SIGN_URU_TIMES_GA, 'codepoint, 0x1233C);
20305put('CUNEIFORM_SIGN_URU_TIMES_GAL, 'codepoint, 0x1233D);
20306put('CUNEIFORM_SIGN_URU_TIMES_GAN2_TENU, 'codepoint, 0x1233E);
20307put('CUNEIFORM_SIGN_URU_TIMES_GAR, 'codepoint, 0x1233F);
20308put('CUNEIFORM_SIGN_URU_TIMES_GU, 'codepoint, 0x12340);
20309put('CUNEIFORM_SIGN_URU_TIMES_HA, 'codepoint, 0x12341);
20310put('CUNEIFORM_SIGN_URU_TIMES_IGI, 'codepoint, 0x12342);
20311put('CUNEIFORM_SIGN_URU_TIMES_IM, 'codepoint, 0x12343);
20312put('CUNEIFORM_SIGN_URU_TIMES_ISH, 'codepoint, 0x12344);
20313put('CUNEIFORM_SIGN_URU_TIMES_KI, 'codepoint, 0x12345);
20314put('CUNEIFORM_SIGN_URU_TIMES_LUM, 'codepoint, 0x12346);
20315put('CUNEIFORM_SIGN_URU_TIMES_MIN, 'codepoint, 0x12347);
20316put('CUNEIFORM_SIGN_URU_TIMES_PA, 'codepoint, 0x12348);
20317put('CUNEIFORM_SIGN_URU_TIMES_SHE, 'codepoint, 0x12349);
20318put('CUNEIFORM_SIGN_URU_TIMES_SIG4, 'codepoint, 0x1234A);
20319put('CUNEIFORM_SIGN_URU_TIMES_TU, 'codepoint, 0x1234B);
20320put('CUNEIFORM_SIGN_URU_TIMES_U_PLUS_GUD, 'codepoint, 0x1234C);
20321put('CUNEIFORM_SIGN_URU_TIMES_UD, 'codepoint, 0x1234D);
20322put('CUNEIFORM_SIGN_URU_TIMES_URUDA, 'codepoint, 0x1234E);
20323put('CUNEIFORM_SIGN_URUDA, 'codepoint, 0x1234F);
20324put('CUNEIFORM_SIGN_URUDA_TIMES_U, 'codepoint, 0x12350);
20325put('CUNEIFORM_SIGN_USH, 'codepoint, 0x12351);
20326put('CUNEIFORM_SIGN_USH_TIMES_A, 'codepoint, 0x12352);
20327put('CUNEIFORM_SIGN_USH_TIMES_KU, 'codepoint, 0x12353);
20328put('CUNEIFORM_SIGN_USH_TIMES_KUR, 'codepoint, 0x12354);
20329put('CUNEIFORM_SIGN_USH_TIMES_TAK4, 'codepoint, 0x12355);
20330put('CUNEIFORM_SIGN_USHX, 'codepoint, 0x12356);
20331put('CUNEIFORM_SIGN_USH2, 'codepoint, 0x12357);
20332put('CUNEIFORM_SIGN_USHUMX, 'codepoint, 0x12358);
20333put('CUNEIFORM_SIGN_UTUKI, 'codepoint, 0x12359);
20334put('CUNEIFORM_SIGN_UZ3, 'codepoint, 0x1235A);
20335put('CUNEIFORM_SIGN_UZ3_TIMES_KASKAL, 'codepoint, 0x1235B);
20336put('CUNEIFORM_SIGN_UZU, 'codepoint, 0x1235C);
20337put('CUNEIFORM_SIGN_ZA, 'codepoint, 0x1235D);
20338put('CUNEIFORM_SIGN_ZA_TENU, 'codepoint, 0x1235E);
20339put('CUNEIFORM_SIGN_ZA_SQUARED_TIMES_KUR, 'codepoint, 0x1235F);
20340put('CUNEIFORM_SIGN_ZAG, 'codepoint, 0x12360);
20341put('CUNEIFORM_SIGN_ZAMX, 'codepoint, 0x12361);
20342put('CUNEIFORM_SIGN_ZE2, 'codepoint, 0x12362);
20343put('CUNEIFORM_SIGN_ZI, 'codepoint, 0x12363);
20344put('CUNEIFORM_SIGN_ZI_OVER_ZI, 'codepoint, 0x12364);
20345put('CUNEIFORM_SIGN_ZI3, 'codepoint, 0x12365);
20346put('CUNEIFORM_SIGN_ZIB, 'codepoint, 0x12366);
20347put('CUNEIFORM_SIGN_ZIB_KABA_TENU, 'codepoint, 0x12367);
20348put('CUNEIFORM_SIGN_ZIG, 'codepoint, 0x12368);
20349put('CUNEIFORM_SIGN_ZIZ2, 'codepoint, 0x12369);
20350put('CUNEIFORM_SIGN_ZU, 'codepoint, 0x1236A);
20351put('CUNEIFORM_SIGN_ZU5, 'codepoint, 0x1236B);
20352put('CUNEIFORM_SIGN_ZU5_TIMES_A, 'codepoint, 0x1236C);
20353put('CUNEIFORM_SIGN_ZUBUR, 'codepoint, 0x1236D);
20354put('CUNEIFORM_SIGN_ZUM, 'codepoint, 0x1236E);
20355put('CUNEIFORM_SIGN_KAP_ELAMITE, 'codepoint, 0x1236F);
20356put('CUNEIFORM_SIGN_AB_TIMES_NUN, 'codepoint, 0x12370);
20357put('CUNEIFORM_SIGN_AB2_TIMES_A, 'codepoint, 0x12371);
20358put('CUNEIFORM_SIGN_AMAR_TIMES_KUG, 'codepoint, 0x12372);
20359put('CUNEIFORM_SIGN_DAG_KISIM5_TIMES_U2_PLUS_MASH, 'codepoint, 0x12373);
20360put('CUNEIFORM_SIGN_DAG3, 'codepoint, 0x12374);
20361put('CUNEIFORM_SIGN_DISH_PLUS_SHU, 'codepoint, 0x12375);
20362put('CUNEIFORM_SIGN_DUB_TIMES_SHE, 'codepoint, 0x12376);
20363put('CUNEIFORM_SIGN_EZEN_TIMES_GUD, 'codepoint, 0x12377);
20364put('CUNEIFORM_SIGN_EZEN_TIMES_SHE, 'codepoint, 0x12378);
20365put('CUNEIFORM_SIGN_GA2_TIMES_AN_PLUS_KAK_PLUS_A, 'codepoint, 0x12379);
20366put('CUNEIFORM_SIGN_GA2_TIMES_ASH2, 'codepoint, 0x1237A);
20367put('CUNEIFORM_SIGN_GE22, 'codepoint, 0x1237B);
20368put('CUNEIFORM_SIGN_GIG, 'codepoint, 0x1237C);
20369put('CUNEIFORM_SIGN_HUSH, 'codepoint, 0x1237D);
20370put('CUNEIFORM_SIGN_KA_TIMES_ANSHE, 'codepoint, 0x1237E);
20371put('CUNEIFORM_SIGN_KA_TIMES_ASH3, 'codepoint, 0x1237F);
20372put('CUNEIFORM_SIGN_KA_TIMES_GISH, 'codepoint, 0x12380);
20373put('CUNEIFORM_SIGN_KA_TIMES_GUD, 'codepoint, 0x12381);
20374put('CUNEIFORM_SIGN_KA_TIMES_HI_TIMES_ASH2, 'codepoint, 0x12382);
20375put('CUNEIFORM_SIGN_KA_TIMES_LUM, 'codepoint, 0x12383);
20376put('CUNEIFORM_SIGN_KA_TIMES_PA, 'codepoint, 0x12384);
20377put('CUNEIFORM_SIGN_KA_TIMES_SHUL, 'codepoint, 0x12385);
20378put('CUNEIFORM_SIGN_KA_TIMES_TU, 'codepoint, 0x12386);
20379put('CUNEIFORM_SIGN_KA_TIMES_UR2, 'codepoint, 0x12387);
20380put('CUNEIFORM_SIGN_LAGAB_TIMES_GI, 'codepoint, 0x12388);
20381put('CUNEIFORM_SIGN_LU2_SHESHIG_TIMES_BAD, 'codepoint, 0x12389);
20382put('CUNEIFORM_SIGN_LU2_TIMES_ESH2_PLUS_LAL, 'codepoint, 0x1238A);
20383put('CUNEIFORM_SIGN_LU2_TIMES_SHU, 'codepoint, 0x1238B);
20384put('CUNEIFORM_SIGN_MESH, 'codepoint, 0x1238C);
20385put('CUNEIFORM_SIGN_MUSH3_TIMES_ZA, 'codepoint, 0x1238D);
20386put('CUNEIFORM_SIGN_NA4, 'codepoint, 0x1238E);
20387put('CUNEIFORM_SIGN_NIN, 'codepoint, 0x1238F);
20388put('CUNEIFORM_SIGN_NIN9, 'codepoint, 0x12390);
20389put('CUNEIFORM_SIGN_NINDA2_TIMES_BAL, 'codepoint, 0x12391);
20390put('CUNEIFORM_SIGN_NINDA2_TIMES_GI, 'codepoint, 0x12392);
20391put('CUNEIFORM_SIGN_NU11_ROTATED_NINETY_DEGREES, 'codepoint, 0x12393);
20392put('CUNEIFORM_SIGN_PESH2_ASTERISK, 'codepoint, 0x12394);
20393put('CUNEIFORM_SIGN_PIR2, 'codepoint, 0x12395);
20394put('CUNEIFORM_SIGN_SAG_TIMES_IGI_GUNU, 'codepoint, 0x12396);
20395put('CUNEIFORM_SIGN_TI2, 'codepoint, 0x12397);
20396put('CUNEIFORM_SIGN_UM_TIMES_ME, 'codepoint, 0x12398);
20397put('CUNEIFORM_NUMERIC_SIGN_TWO_ASH, 'codepoint, 0x12400);
20398put('CUNEIFORM_NUMERIC_SIGN_THREE_ASH, 'codepoint, 0x12401);
20399put('CUNEIFORM_NUMERIC_SIGN_FOUR_ASH, 'codepoint, 0x12402);
20400put('CUNEIFORM_NUMERIC_SIGN_FIVE_ASH, 'codepoint, 0x12403);
20401put('CUNEIFORM_NUMERIC_SIGN_SIX_ASH, 'codepoint, 0x12404);
20402put('CUNEIFORM_NUMERIC_SIGN_SEVEN_ASH, 'codepoint, 0x12405);
20403put('CUNEIFORM_NUMERIC_SIGN_EIGHT_ASH, 'codepoint, 0x12406);
20404put('CUNEIFORM_NUMERIC_SIGN_NINE_ASH, 'codepoint, 0x12407);
20405put('CUNEIFORM_NUMERIC_SIGN_THREE_DISH, 'codepoint, 0x12408);
20406put('CUNEIFORM_NUMERIC_SIGN_FOUR_DISH, 'codepoint, 0x12409);
20407put('CUNEIFORM_NUMERIC_SIGN_FIVE_DISH, 'codepoint, 0x1240A);
20408put('CUNEIFORM_NUMERIC_SIGN_SIX_DISH, 'codepoint, 0x1240B);
20409put('CUNEIFORM_NUMERIC_SIGN_SEVEN_DISH, 'codepoint, 0x1240C);
20410put('CUNEIFORM_NUMERIC_SIGN_EIGHT_DISH, 'codepoint, 0x1240D);
20411put('CUNEIFORM_NUMERIC_SIGN_NINE_DISH, 'codepoint, 0x1240E);
20412put('CUNEIFORM_NUMERIC_SIGN_FOUR_U, 'codepoint, 0x1240F);
20413put('CUNEIFORM_NUMERIC_SIGN_FIVE_U, 'codepoint, 0x12410);
20414put('CUNEIFORM_NUMERIC_SIGN_SIX_U, 'codepoint, 0x12411);
20415put('CUNEIFORM_NUMERIC_SIGN_SEVEN_U, 'codepoint, 0x12412);
20416put('CUNEIFORM_NUMERIC_SIGN_EIGHT_U, 'codepoint, 0x12413);
20417put('CUNEIFORM_NUMERIC_SIGN_NINE_U, 'codepoint, 0x12414);
20418put('CUNEIFORM_NUMERIC_SIGN_ONE_GESH2, 'codepoint, 0x12415);
20419put('CUNEIFORM_NUMERIC_SIGN_TWO_GESH2, 'codepoint, 0x12416);
20420put('CUNEIFORM_NUMERIC_SIGN_THREE_GESH2, 'codepoint, 0x12417);
20421put('CUNEIFORM_NUMERIC_SIGN_FOUR_GESH2, 'codepoint, 0x12418);
20422put('CUNEIFORM_NUMERIC_SIGN_FIVE_GESH2, 'codepoint, 0x12419);
20423put('CUNEIFORM_NUMERIC_SIGN_SIX_GESH2, 'codepoint, 0x1241A);
20424put('CUNEIFORM_NUMERIC_SIGN_SEVEN_GESH2, 'codepoint, 0x1241B);
20425put('CUNEIFORM_NUMERIC_SIGN_EIGHT_GESH2, 'codepoint, 0x1241C);
20426put('CUNEIFORM_NUMERIC_SIGN_NINE_GESH2, 'codepoint, 0x1241D);
20427put('CUNEIFORM_NUMERIC_SIGN_ONE_GESHU, 'codepoint, 0x1241E);
20428put('CUNEIFORM_NUMERIC_SIGN_TWO_GESHU, 'codepoint, 0x1241F);
20429put('CUNEIFORM_NUMERIC_SIGN_THREE_GESHU, 'codepoint, 0x12420);
20430put('CUNEIFORM_NUMERIC_SIGN_FOUR_GESHU, 'codepoint, 0x12421);
20431put('CUNEIFORM_NUMERIC_SIGN_FIVE_GESHU, 'codepoint, 0x12422);
20432put('CUNEIFORM_NUMERIC_SIGN_TWO_SHAR2, 'codepoint, 0x12423);
20433put('CUNEIFORM_NUMERIC_SIGN_THREE_SHAR2, 'codepoint, 0x12424);
20434put('CUNEIFORM_NUMERIC_SIGN_THREE_SHAR2_VARIANT_FORM, 'codepoint, 0x12425);
20435put('CUNEIFORM_NUMERIC_SIGN_FOUR_SHAR2, 'codepoint, 0x12426);
20436put('CUNEIFORM_NUMERIC_SIGN_FIVE_SHAR2, 'codepoint, 0x12427);
20437put('CUNEIFORM_NUMERIC_SIGN_SIX_SHAR2, 'codepoint, 0x12428);
20438put('CUNEIFORM_NUMERIC_SIGN_SEVEN_SHAR2, 'codepoint, 0x12429);
20439put('CUNEIFORM_NUMERIC_SIGN_EIGHT_SHAR2, 'codepoint, 0x1242A);
20440put('CUNEIFORM_NUMERIC_SIGN_NINE_SHAR2, 'codepoint, 0x1242B);
20441put('CUNEIFORM_NUMERIC_SIGN_ONE_SHARU, 'codepoint, 0x1242C);
20442put('CUNEIFORM_NUMERIC_SIGN_TWO_SHARU, 'codepoint, 0x1242D);
20443put('CUNEIFORM_NUMERIC_SIGN_THREE_SHARU, 'codepoint, 0x1242E);
20444put('CUNEIFORM_NUMERIC_SIGN_THREE_SHARU_VARIANT_FORM, 'codepoint, 0x1242F);
20445put('CUNEIFORM_NUMERIC_SIGN_FOUR_SHARU, 'codepoint, 0x12430);
20446put('CUNEIFORM_NUMERIC_SIGN_FIVE_SHARU, 'codepoint, 0x12431);
20447put('CUNEIFORM_NUMERIC_SIGN_SHAR2_TIMES_GAL_PLUS_DISH, 'codepoint, 0x12432);
20448put('CUNEIFORM_NUMERIC_SIGN_SHAR2_TIMES_GAL_PLUS_MIN, 'codepoint, 0x12433);
20449put('CUNEIFORM_NUMERIC_SIGN_ONE_BURU, 'codepoint, 0x12434);
20450put('CUNEIFORM_NUMERIC_SIGN_TWO_BURU, 'codepoint, 0x12435);
20451put('CUNEIFORM_NUMERIC_SIGN_THREE_BURU, 'codepoint, 0x12436);
20452put('CUNEIFORM_NUMERIC_SIGN_THREE_BURU_VARIANT_FORM, 'codepoint, 0x12437);
20453put('CUNEIFORM_NUMERIC_SIGN_FOUR_BURU, 'codepoint, 0x12438);
20454put('CUNEIFORM_NUMERIC_SIGN_FIVE_BURU, 'codepoint, 0x12439);
20455put('CUNEIFORM_NUMERIC_SIGN_THREE_VARIANT_FORM_ESH16, 'codepoint, 0x1243A);
20456put('CUNEIFORM_NUMERIC_SIGN_THREE_VARIANT_FORM_ESH21, 'codepoint, 0x1243B);
20457put('CUNEIFORM_NUMERIC_SIGN_FOUR_VARIANT_FORM_LIMMU, 'codepoint, 0x1243C);
20458put('CUNEIFORM_NUMERIC_SIGN_FOUR_VARIANT_FORM_LIMMU4, 'codepoint, 0x1243D);
20459put('CUNEIFORM_NUMERIC_SIGN_FOUR_VARIANT_FORM_LIMMU_A, 'codepoint, 0x1243E);
20460put('CUNEIFORM_NUMERIC_SIGN_FOUR_VARIANT_FORM_LIMMU_B, 'codepoint, 0x1243F);
20461put('CUNEIFORM_NUMERIC_SIGN_SIX_VARIANT_FORM_ASH9, 'codepoint, 0x12440);
20462put('CUNEIFORM_NUMERIC_SIGN_SEVEN_VARIANT_FORM_IMIN3, 'codepoint, 0x12441);
20463put('CUNEIFORM_NUMERIC_SIGN_SEVEN_VARIANT_FORM_IMIN_A, 'codepoint, 0x12442);
20464put('CUNEIFORM_NUMERIC_SIGN_SEVEN_VARIANT_FORM_IMIN_B, 'codepoint, 0x12443);
20465put('CUNEIFORM_NUMERIC_SIGN_EIGHT_VARIANT_FORM_USSU, 'codepoint, 0x12444);
20466put('CUNEIFORM_NUMERIC_SIGN_EIGHT_VARIANT_FORM_USSU3, 'codepoint, 0x12445);
20467put('CUNEIFORM_NUMERIC_SIGN_NINE_VARIANT_FORM_ILIMMU, 'codepoint, 0x12446);
20468put('CUNEIFORM_NUMERIC_SIGN_NINE_VARIANT_FORM_ILIMMU3, 'codepoint, 0x12447);
20469put('CUNEIFORM_NUMERIC_SIGN_NINE_VARIANT_FORM_ILIMMU4, 'codepoint, 0x12448);
20470put('CUNEIFORM_NUMERIC_SIGN_NINE_VARIANT_FORM_ILIMMU_A, 'codepoint, 0x12449);
20471put('CUNEIFORM_NUMERIC_SIGN_TWO_ASH_TENU, 'codepoint, 0x1244A);
20472put('CUNEIFORM_NUMERIC_SIGN_THREE_ASH_TENU, 'codepoint, 0x1244B);
20473put('CUNEIFORM_NUMERIC_SIGN_FOUR_ASH_TENU, 'codepoint, 0x1244C);
20474put('CUNEIFORM_NUMERIC_SIGN_FIVE_ASH_TENU, 'codepoint, 0x1244D);
20475put('CUNEIFORM_NUMERIC_SIGN_SIX_ASH_TENU, 'codepoint, 0x1244E);
20476put('CUNEIFORM_NUMERIC_SIGN_ONE_BAN2, 'codepoint, 0x1244F);
20477put('CUNEIFORM_NUMERIC_SIGN_TWO_BAN2, 'codepoint, 0x12450);
20478put('CUNEIFORM_NUMERIC_SIGN_THREE_BAN2, 'codepoint, 0x12451);
20479put('CUNEIFORM_NUMERIC_SIGN_FOUR_BAN2, 'codepoint, 0x12452);
20480put('CUNEIFORM_NUMERIC_SIGN_FOUR_BAN2_VARIANT_FORM, 'codepoint, 0x12453);
20481put('CUNEIFORM_NUMERIC_SIGN_FIVE_BAN2, 'codepoint, 0x12454);
20482put('CUNEIFORM_NUMERIC_SIGN_FIVE_BAN2_VARIANT_FORM, 'codepoint, 0x12455);
20483put('CUNEIFORM_NUMERIC_SIGN_NIGIDAMIN, 'codepoint, 0x12456);
20484put('CUNEIFORM_NUMERIC_SIGN_NIGIDAESH, 'codepoint, 0x12457);
20485put('CUNEIFORM_NUMERIC_SIGN_ONE_ESHE3, 'codepoint, 0x12458);
20486put('CUNEIFORM_NUMERIC_SIGN_TWO_ESHE3, 'codepoint, 0x12459);
20487put('CUNEIFORM_NUMERIC_SIGN_ONE_THIRD_DISH, 'codepoint, 0x1245A);
20488put('CUNEIFORM_NUMERIC_SIGN_TWO_THIRDS_DISH, 'codepoint, 0x1245B);
20489put('CUNEIFORM_NUMERIC_SIGN_FIVE_SIXTHS_DISH, 'codepoint, 0x1245C);
20490put('CUNEIFORM_NUMERIC_SIGN_ONE_THIRD_VARIANT_FORM_A, 'codepoint, 0x1245D);
20491put('CUNEIFORM_NUMERIC_SIGN_TWO_THIRDS_VARIANT_FORM_A, 'codepoint, 0x1245E);
20492put('CUNEIFORM_NUMERIC_SIGN_ONE_EIGHTH_ASH, 'codepoint, 0x1245F);
20493put('CUNEIFORM_NUMERIC_SIGN_ONE_QUARTER_ASH, 'codepoint, 0x12460);
20494put('CUNEIFORM_NUMERIC_SIGN_OLD_ASSYRIAN_ONE_SIXTH, 'codepoint, 0x12461);
20495put('CUNEIFORM_NUMERIC_SIGN_OLD_ASSYRIAN_ONE_QUARTER, 'codepoint, 0x12462);
20496put('CUNEIFORM_NUMERIC_SIGN_ONE_QUARTER_GUR, 'codepoint, 0x12463);
20497put('CUNEIFORM_NUMERIC_SIGN_ONE_HALF_GUR, 'codepoint, 0x12464);
20498put('CUNEIFORM_NUMERIC_SIGN_ELAMITE_ONE_THIRD, 'codepoint, 0x12465);
20499put('CUNEIFORM_NUMERIC_SIGN_ELAMITE_TWO_THIRDS, 'codepoint, 0x12466);
20500put('CUNEIFORM_NUMERIC_SIGN_ELAMITE_FORTY, 'codepoint, 0x12467);
20501put('CUNEIFORM_NUMERIC_SIGN_ELAMITE_FIFTY, 'codepoint, 0x12468);
20502put('CUNEIFORM_NUMERIC_SIGN_FOUR_U_VARIANT_FORM, 'codepoint, 0x12469);
20503put('CUNEIFORM_NUMERIC_SIGN_FIVE_U_VARIANT_FORM, 'codepoint, 0x1246A);
20504put('CUNEIFORM_NUMERIC_SIGN_SIX_U_VARIANT_FORM, 'codepoint, 0x1246B);
20505put('CUNEIFORM_NUMERIC_SIGN_SEVEN_U_VARIANT_FORM, 'codepoint, 0x1246C);
20506put('CUNEIFORM_NUMERIC_SIGN_EIGHT_U_VARIANT_FORM, 'codepoint, 0x1246D);
20507put('CUNEIFORM_NUMERIC_SIGN_NINE_U_VARIANT_FORM, 'codepoint, 0x1246E);
20508put('CUNEIFORM_PUNCTUATION_SIGN_OLD_ASSYRIAN_WORD_DIVIDER, 'codepoint, 0x12470);
20509put('CUNEIFORM_PUNCTUATION_SIGN_VERTICAL_COLON, 'codepoint, 0x12471);
20510put('CUNEIFORM_PUNCTUATION_SIGN_DIAGONAL_COLON, 'codepoint, 0x12472);
20511put('CUNEIFORM_PUNCTUATION_SIGN_DIAGONAL_TRICOLON, 'codepoint, 0x12473);
20512put('CUNEIFORM_PUNCTUATION_SIGN_DIAGONAL_QUADCOLON, 'codepoint, 0x12474);
20513put('EGYPTIAN_HIEROGLYPH_A001, 'codepoint, 0x13000);
20514put('EGYPTIAN_HIEROGLYPH_A002, 'codepoint, 0x13001);
20515put('EGYPTIAN_HIEROGLYPH_A003, 'codepoint, 0x13002);
20516put('EGYPTIAN_HIEROGLYPH_A004, 'codepoint, 0x13003);
20517put('EGYPTIAN_HIEROGLYPH_A005, 'codepoint, 0x13004);
20518put('EGYPTIAN_HIEROGLYPH_A005A, 'codepoint, 0x13005);
20519put('EGYPTIAN_HIEROGLYPH_A006, 'codepoint, 0x13006);
20520put('EGYPTIAN_HIEROGLYPH_A006A, 'codepoint, 0x13007);
20521put('EGYPTIAN_HIEROGLYPH_A006B, 'codepoint, 0x13008);
20522put('EGYPTIAN_HIEROGLYPH_A007, 'codepoint, 0x13009);
20523put('EGYPTIAN_HIEROGLYPH_A008, 'codepoint, 0x1300A);
20524put('EGYPTIAN_HIEROGLYPH_A009, 'codepoint, 0x1300B);
20525put('EGYPTIAN_HIEROGLYPH_A010, 'codepoint, 0x1300C);
20526put('EGYPTIAN_HIEROGLYPH_A011, 'codepoint, 0x1300D);
20527put('EGYPTIAN_HIEROGLYPH_A012, 'codepoint, 0x1300E);
20528put('EGYPTIAN_HIEROGLYPH_A013, 'codepoint, 0x1300F);
20529put('EGYPTIAN_HIEROGLYPH_A014, 'codepoint, 0x13010);
20530put('EGYPTIAN_HIEROGLYPH_A014A, 'codepoint, 0x13011);
20531put('EGYPTIAN_HIEROGLYPH_A015, 'codepoint, 0x13012);
20532put('EGYPTIAN_HIEROGLYPH_A016, 'codepoint, 0x13013);
20533put('EGYPTIAN_HIEROGLYPH_A017, 'codepoint, 0x13014);
20534put('EGYPTIAN_HIEROGLYPH_A017A, 'codepoint, 0x13015);
20535put('EGYPTIAN_HIEROGLYPH_A018, 'codepoint, 0x13016);
20536put('EGYPTIAN_HIEROGLYPH_A019, 'codepoint, 0x13017);
20537put('EGYPTIAN_HIEROGLYPH_A020, 'codepoint, 0x13018);
20538put('EGYPTIAN_HIEROGLYPH_A021, 'codepoint, 0x13019);
20539put('EGYPTIAN_HIEROGLYPH_A022, 'codepoint, 0x1301A);
20540put('EGYPTIAN_HIEROGLYPH_A023, 'codepoint, 0x1301B);
20541put('EGYPTIAN_HIEROGLYPH_A024, 'codepoint, 0x1301C);
20542put('EGYPTIAN_HIEROGLYPH_A025, 'codepoint, 0x1301D);
20543put('EGYPTIAN_HIEROGLYPH_A026, 'codepoint, 0x1301E);
20544put('EGYPTIAN_HIEROGLYPH_A027, 'codepoint, 0x1301F);
20545put('EGYPTIAN_HIEROGLYPH_A028, 'codepoint, 0x13020);
20546put('EGYPTIAN_HIEROGLYPH_A029, 'codepoint, 0x13021);
20547put('EGYPTIAN_HIEROGLYPH_A030, 'codepoint, 0x13022);
20548put('EGYPTIAN_HIEROGLYPH_A031, 'codepoint, 0x13023);
20549put('EGYPTIAN_HIEROGLYPH_A032, 'codepoint, 0x13024);
20550put('EGYPTIAN_HIEROGLYPH_A032A, 'codepoint, 0x13025);
20551put('EGYPTIAN_HIEROGLYPH_A033, 'codepoint, 0x13026);
20552put('EGYPTIAN_HIEROGLYPH_A034, 'codepoint, 0x13027);
20553put('EGYPTIAN_HIEROGLYPH_A035, 'codepoint, 0x13028);
20554put('EGYPTIAN_HIEROGLYPH_A036, 'codepoint, 0x13029);
20555put('EGYPTIAN_HIEROGLYPH_A037, 'codepoint, 0x1302A);
20556put('EGYPTIAN_HIEROGLYPH_A038, 'codepoint, 0x1302B);
20557put('EGYPTIAN_HIEROGLYPH_A039, 'codepoint, 0x1302C);
20558put('EGYPTIAN_HIEROGLYPH_A040, 'codepoint, 0x1302D);
20559put('EGYPTIAN_HIEROGLYPH_A040A, 'codepoint, 0x1302E);
20560put('EGYPTIAN_HIEROGLYPH_A041, 'codepoint, 0x1302F);
20561put('EGYPTIAN_HIEROGLYPH_A042, 'codepoint, 0x13030);
20562put('EGYPTIAN_HIEROGLYPH_A042A, 'codepoint, 0x13031);
20563put('EGYPTIAN_HIEROGLYPH_A043, 'codepoint, 0x13032);
20564put('EGYPTIAN_HIEROGLYPH_A043A, 'codepoint, 0x13033);
20565put('EGYPTIAN_HIEROGLYPH_A044, 'codepoint, 0x13034);
20566put('EGYPTIAN_HIEROGLYPH_A045, 'codepoint, 0x13035);
20567put('EGYPTIAN_HIEROGLYPH_A045A, 'codepoint, 0x13036);
20568put('EGYPTIAN_HIEROGLYPH_A046, 'codepoint, 0x13037);
20569put('EGYPTIAN_HIEROGLYPH_A047, 'codepoint, 0x13038);
20570put('EGYPTIAN_HIEROGLYPH_A048, 'codepoint, 0x13039);
20571put('EGYPTIAN_HIEROGLYPH_A049, 'codepoint, 0x1303A);
20572put('EGYPTIAN_HIEROGLYPH_A050, 'codepoint, 0x1303B);
20573put('EGYPTIAN_HIEROGLYPH_A051, 'codepoint, 0x1303C);
20574put('EGYPTIAN_HIEROGLYPH_A052, 'codepoint, 0x1303D);
20575put('EGYPTIAN_HIEROGLYPH_A053, 'codepoint, 0x1303E);
20576put('EGYPTIAN_HIEROGLYPH_A054, 'codepoint, 0x1303F);
20577put('EGYPTIAN_HIEROGLYPH_A055, 'codepoint, 0x13040);
20578put('EGYPTIAN_HIEROGLYPH_A056, 'codepoint, 0x13041);
20579put('EGYPTIAN_HIEROGLYPH_A057, 'codepoint, 0x13042);
20580put('EGYPTIAN_HIEROGLYPH_A058, 'codepoint, 0x13043);
20581put('EGYPTIAN_HIEROGLYPH_A059, 'codepoint, 0x13044);
20582put('EGYPTIAN_HIEROGLYPH_A060, 'codepoint, 0x13045);
20583put('EGYPTIAN_HIEROGLYPH_A061, 'codepoint, 0x13046);
20584put('EGYPTIAN_HIEROGLYPH_A062, 'codepoint, 0x13047);
20585put('EGYPTIAN_HIEROGLYPH_A063, 'codepoint, 0x13048);
20586put('EGYPTIAN_HIEROGLYPH_A064, 'codepoint, 0x13049);
20587put('EGYPTIAN_HIEROGLYPH_A065, 'codepoint, 0x1304A);
20588put('EGYPTIAN_HIEROGLYPH_A066, 'codepoint, 0x1304B);
20589put('EGYPTIAN_HIEROGLYPH_A067, 'codepoint, 0x1304C);
20590put('EGYPTIAN_HIEROGLYPH_A068, 'codepoint, 0x1304D);
20591put('EGYPTIAN_HIEROGLYPH_A069, 'codepoint, 0x1304E);
20592put('EGYPTIAN_HIEROGLYPH_A070, 'codepoint, 0x1304F);
20593put('EGYPTIAN_HIEROGLYPH_B001, 'codepoint, 0x13050);
20594put('EGYPTIAN_HIEROGLYPH_B002, 'codepoint, 0x13051);
20595put('EGYPTIAN_HIEROGLYPH_B003, 'codepoint, 0x13052);
20596put('EGYPTIAN_HIEROGLYPH_B004, 'codepoint, 0x13053);
20597put('EGYPTIAN_HIEROGLYPH_B005, 'codepoint, 0x13054);
20598put('EGYPTIAN_HIEROGLYPH_B005A, 'codepoint, 0x13055);
20599put('EGYPTIAN_HIEROGLYPH_B006, 'codepoint, 0x13056);
20600put('EGYPTIAN_HIEROGLYPH_B007, 'codepoint, 0x13057);
20601put('EGYPTIAN_HIEROGLYPH_B008, 'codepoint, 0x13058);
20602put('EGYPTIAN_HIEROGLYPH_B009, 'codepoint, 0x13059);
20603put('EGYPTIAN_HIEROGLYPH_C001, 'codepoint, 0x1305A);
20604put('EGYPTIAN_HIEROGLYPH_C002, 'codepoint, 0x1305B);
20605put('EGYPTIAN_HIEROGLYPH_C002A, 'codepoint, 0x1305C);
20606put('EGYPTIAN_HIEROGLYPH_C002B, 'codepoint, 0x1305D);
20607put('EGYPTIAN_HIEROGLYPH_C002C, 'codepoint, 0x1305E);
20608put('EGYPTIAN_HIEROGLYPH_C003, 'codepoint, 0x1305F);
20609put('EGYPTIAN_HIEROGLYPH_C004, 'codepoint, 0x13060);
20610put('EGYPTIAN_HIEROGLYPH_C005, 'codepoint, 0x13061);
20611put('EGYPTIAN_HIEROGLYPH_C006, 'codepoint, 0x13062);
20612put('EGYPTIAN_HIEROGLYPH_C007, 'codepoint, 0x13063);
20613put('EGYPTIAN_HIEROGLYPH_C008, 'codepoint, 0x13064);
20614put('EGYPTIAN_HIEROGLYPH_C009, 'codepoint, 0x13065);
20615put('EGYPTIAN_HIEROGLYPH_C010, 'codepoint, 0x13066);
20616put('EGYPTIAN_HIEROGLYPH_C010A, 'codepoint, 0x13067);
20617put('EGYPTIAN_HIEROGLYPH_C011, 'codepoint, 0x13068);
20618put('EGYPTIAN_HIEROGLYPH_C012, 'codepoint, 0x13069);
20619put('EGYPTIAN_HIEROGLYPH_C013, 'codepoint, 0x1306A);
20620put('EGYPTIAN_HIEROGLYPH_C014, 'codepoint, 0x1306B);
20621put('EGYPTIAN_HIEROGLYPH_C015, 'codepoint, 0x1306C);
20622put('EGYPTIAN_HIEROGLYPH_C016, 'codepoint, 0x1306D);
20623put('EGYPTIAN_HIEROGLYPH_C017, 'codepoint, 0x1306E);
20624put('EGYPTIAN_HIEROGLYPH_C018, 'codepoint, 0x1306F);
20625put('EGYPTIAN_HIEROGLYPH_C019, 'codepoint, 0x13070);
20626put('EGYPTIAN_HIEROGLYPH_C020, 'codepoint, 0x13071);
20627put('EGYPTIAN_HIEROGLYPH_C021, 'codepoint, 0x13072);
20628put('EGYPTIAN_HIEROGLYPH_C022, 'codepoint, 0x13073);
20629put('EGYPTIAN_HIEROGLYPH_C023, 'codepoint, 0x13074);
20630put('EGYPTIAN_HIEROGLYPH_C024, 'codepoint, 0x13075);
20631put('EGYPTIAN_HIEROGLYPH_D001, 'codepoint, 0x13076);
20632put('EGYPTIAN_HIEROGLYPH_D002, 'codepoint, 0x13077);
20633put('EGYPTIAN_HIEROGLYPH_D003, 'codepoint, 0x13078);
20634put('EGYPTIAN_HIEROGLYPH_D004, 'codepoint, 0x13079);
20635put('EGYPTIAN_HIEROGLYPH_D005, 'codepoint, 0x1307A);
20636put('EGYPTIAN_HIEROGLYPH_D006, 'codepoint, 0x1307B);
20637put('EGYPTIAN_HIEROGLYPH_D007, 'codepoint, 0x1307C);
20638put('EGYPTIAN_HIEROGLYPH_D008, 'codepoint, 0x1307D);
20639put('EGYPTIAN_HIEROGLYPH_D008A, 'codepoint, 0x1307E);
20640put('EGYPTIAN_HIEROGLYPH_D009, 'codepoint, 0x1307F);
20641put('EGYPTIAN_HIEROGLYPH_D010, 'codepoint, 0x13080);
20642put('EGYPTIAN_HIEROGLYPH_D011, 'codepoint, 0x13081);
20643put('EGYPTIAN_HIEROGLYPH_D012, 'codepoint, 0x13082);
20644put('EGYPTIAN_HIEROGLYPH_D013, 'codepoint, 0x13083);
20645put('EGYPTIAN_HIEROGLYPH_D014, 'codepoint, 0x13084);
20646put('EGYPTIAN_HIEROGLYPH_D015, 'codepoint, 0x13085);
20647put('EGYPTIAN_HIEROGLYPH_D016, 'codepoint, 0x13086);
20648put('EGYPTIAN_HIEROGLYPH_D017, 'codepoint, 0x13087);
20649put('EGYPTIAN_HIEROGLYPH_D018, 'codepoint, 0x13088);
20650put('EGYPTIAN_HIEROGLYPH_D019, 'codepoint, 0x13089);
20651put('EGYPTIAN_HIEROGLYPH_D020, 'codepoint, 0x1308A);
20652put('EGYPTIAN_HIEROGLYPH_D021, 'codepoint, 0x1308B);
20653put('EGYPTIAN_HIEROGLYPH_D022, 'codepoint, 0x1308C);
20654put('EGYPTIAN_HIEROGLYPH_D023, 'codepoint, 0x1308D);
20655put('EGYPTIAN_HIEROGLYPH_D024, 'codepoint, 0x1308E);
20656put('EGYPTIAN_HIEROGLYPH_D025, 'codepoint, 0x1308F);
20657put('EGYPTIAN_HIEROGLYPH_D026, 'codepoint, 0x13090);
20658put('EGYPTIAN_HIEROGLYPH_D027, 'codepoint, 0x13091);
20659put('EGYPTIAN_HIEROGLYPH_D027A, 'codepoint, 0x13092);
20660put('EGYPTIAN_HIEROGLYPH_D028, 'codepoint, 0x13093);
20661put('EGYPTIAN_HIEROGLYPH_D029, 'codepoint, 0x13094);
20662put('EGYPTIAN_HIEROGLYPH_D030, 'codepoint, 0x13095);
20663put('EGYPTIAN_HIEROGLYPH_D031, 'codepoint, 0x13096);
20664put('EGYPTIAN_HIEROGLYPH_D031A, 'codepoint, 0x13097);
20665put('EGYPTIAN_HIEROGLYPH_D032, 'codepoint, 0x13098);
20666put('EGYPTIAN_HIEROGLYPH_D033, 'codepoint, 0x13099);
20667put('EGYPTIAN_HIEROGLYPH_D034, 'codepoint, 0x1309A);
20668put('EGYPTIAN_HIEROGLYPH_D034A, 'codepoint, 0x1309B);
20669put('EGYPTIAN_HIEROGLYPH_D035, 'codepoint, 0x1309C);
20670put('EGYPTIAN_HIEROGLYPH_D036, 'codepoint, 0x1309D);
20671put('EGYPTIAN_HIEROGLYPH_D037, 'codepoint, 0x1309E);
20672put('EGYPTIAN_HIEROGLYPH_D038, 'codepoint, 0x1309F);
20673put('EGYPTIAN_HIEROGLYPH_D039, 'codepoint, 0x130A0);
20674put('EGYPTIAN_HIEROGLYPH_D040, 'codepoint, 0x130A1);
20675put('EGYPTIAN_HIEROGLYPH_D041, 'codepoint, 0x130A2);
20676put('EGYPTIAN_HIEROGLYPH_D042, 'codepoint, 0x130A3);
20677put('EGYPTIAN_HIEROGLYPH_D043, 'codepoint, 0x130A4);
20678put('EGYPTIAN_HIEROGLYPH_D044, 'codepoint, 0x130A5);
20679put('EGYPTIAN_HIEROGLYPH_D045, 'codepoint, 0x130A6);
20680put('EGYPTIAN_HIEROGLYPH_D046, 'codepoint, 0x130A7);
20681put('EGYPTIAN_HIEROGLYPH_D046A, 'codepoint, 0x130A8);
20682put('EGYPTIAN_HIEROGLYPH_D047, 'codepoint, 0x130A9);
20683put('EGYPTIAN_HIEROGLYPH_D048, 'codepoint, 0x130AA);
20684put('EGYPTIAN_HIEROGLYPH_D048A, 'codepoint, 0x130AB);
20685put('EGYPTIAN_HIEROGLYPH_D049, 'codepoint, 0x130AC);
20686put('EGYPTIAN_HIEROGLYPH_D050, 'codepoint, 0x130AD);
20687put('EGYPTIAN_HIEROGLYPH_D050A, 'codepoint, 0x130AE);
20688put('EGYPTIAN_HIEROGLYPH_D050B, 'codepoint, 0x130AF);
20689put('EGYPTIAN_HIEROGLYPH_D050C, 'codepoint, 0x130B0);
20690put('EGYPTIAN_HIEROGLYPH_D050D, 'codepoint, 0x130B1);
20691put('EGYPTIAN_HIEROGLYPH_D050E, 'codepoint, 0x130B2);
20692put('EGYPTIAN_HIEROGLYPH_D050F, 'codepoint, 0x130B3);
20693put('EGYPTIAN_HIEROGLYPH_D050G, 'codepoint, 0x130B4);
20694put('EGYPTIAN_HIEROGLYPH_D050H, 'codepoint, 0x130B5);
20695put('EGYPTIAN_HIEROGLYPH_D050I, 'codepoint, 0x130B6);
20696put('EGYPTIAN_HIEROGLYPH_D051, 'codepoint, 0x130B7);
20697put('EGYPTIAN_HIEROGLYPH_D052, 'codepoint, 0x130B8);
20698put('EGYPTIAN_HIEROGLYPH_D052A, 'codepoint, 0x130B9);
20699put('EGYPTIAN_HIEROGLYPH_D053, 'codepoint, 0x130BA);
20700put('EGYPTIAN_HIEROGLYPH_D054, 'codepoint, 0x130BB);
20701put('EGYPTIAN_HIEROGLYPH_D054A, 'codepoint, 0x130BC);
20702put('EGYPTIAN_HIEROGLYPH_D055, 'codepoint, 0x130BD);
20703put('EGYPTIAN_HIEROGLYPH_D056, 'codepoint, 0x130BE);
20704put('EGYPTIAN_HIEROGLYPH_D057, 'codepoint, 0x130BF);
20705put('EGYPTIAN_HIEROGLYPH_D058, 'codepoint, 0x130C0);
20706put('EGYPTIAN_HIEROGLYPH_D059, 'codepoint, 0x130C1);
20707put('EGYPTIAN_HIEROGLYPH_D060, 'codepoint, 0x130C2);
20708put('EGYPTIAN_HIEROGLYPH_D061, 'codepoint, 0x130C3);
20709put('EGYPTIAN_HIEROGLYPH_D062, 'codepoint, 0x130C4);
20710put('EGYPTIAN_HIEROGLYPH_D063, 'codepoint, 0x130C5);
20711put('EGYPTIAN_HIEROGLYPH_D064, 'codepoint, 0x130C6);
20712put('EGYPTIAN_HIEROGLYPH_D065, 'codepoint, 0x130C7);
20713put('EGYPTIAN_HIEROGLYPH_D066, 'codepoint, 0x130C8);
20714put('EGYPTIAN_HIEROGLYPH_D067, 'codepoint, 0x130C9);
20715put('EGYPTIAN_HIEROGLYPH_D067A, 'codepoint, 0x130CA);
20716put('EGYPTIAN_HIEROGLYPH_D067B, 'codepoint, 0x130CB);
20717put('EGYPTIAN_HIEROGLYPH_D067C, 'codepoint, 0x130CC);
20718put('EGYPTIAN_HIEROGLYPH_D067D, 'codepoint, 0x130CD);
20719put('EGYPTIAN_HIEROGLYPH_D067E, 'codepoint, 0x130CE);
20720put('EGYPTIAN_HIEROGLYPH_D067F, 'codepoint, 0x130CF);
20721put('EGYPTIAN_HIEROGLYPH_D067G, 'codepoint, 0x130D0);
20722put('EGYPTIAN_HIEROGLYPH_D067H, 'codepoint, 0x130D1);
20723put('EGYPTIAN_HIEROGLYPH_E001, 'codepoint, 0x130D2);
20724put('EGYPTIAN_HIEROGLYPH_E002, 'codepoint, 0x130D3);
20725put('EGYPTIAN_HIEROGLYPH_E003, 'codepoint, 0x130D4);
20726put('EGYPTIAN_HIEROGLYPH_E004, 'codepoint, 0x130D5);
20727put('EGYPTIAN_HIEROGLYPH_E005, 'codepoint, 0x130D6);
20728put('EGYPTIAN_HIEROGLYPH_E006, 'codepoint, 0x130D7);
20729put('EGYPTIAN_HIEROGLYPH_E007, 'codepoint, 0x130D8);
20730put('EGYPTIAN_HIEROGLYPH_E008, 'codepoint, 0x130D9);
20731put('EGYPTIAN_HIEROGLYPH_E008A, 'codepoint, 0x130DA);
20732put('EGYPTIAN_HIEROGLYPH_E009, 'codepoint, 0x130DB);
20733put('EGYPTIAN_HIEROGLYPH_E009A, 'codepoint, 0x130DC);
20734put('EGYPTIAN_HIEROGLYPH_E010, 'codepoint, 0x130DD);
20735put('EGYPTIAN_HIEROGLYPH_E011, 'codepoint, 0x130DE);
20736put('EGYPTIAN_HIEROGLYPH_E012, 'codepoint, 0x130DF);
20737put('EGYPTIAN_HIEROGLYPH_E013, 'codepoint, 0x130E0);
20738put('EGYPTIAN_HIEROGLYPH_E014, 'codepoint, 0x130E1);
20739put('EGYPTIAN_HIEROGLYPH_E015, 'codepoint, 0x130E2);
20740put('EGYPTIAN_HIEROGLYPH_E016, 'codepoint, 0x130E3);
20741put('EGYPTIAN_HIEROGLYPH_E016A, 'codepoint, 0x130E4);
20742put('EGYPTIAN_HIEROGLYPH_E017, 'codepoint, 0x130E5);
20743put('EGYPTIAN_HIEROGLYPH_E017A, 'codepoint, 0x130E6);
20744put('EGYPTIAN_HIEROGLYPH_E018, 'codepoint, 0x130E7);
20745put('EGYPTIAN_HIEROGLYPH_E019, 'codepoint, 0x130E8);
20746put('EGYPTIAN_HIEROGLYPH_E020, 'codepoint, 0x130E9);
20747put('EGYPTIAN_HIEROGLYPH_E020A, 'codepoint, 0x130EA);
20748put('EGYPTIAN_HIEROGLYPH_E021, 'codepoint, 0x130EB);
20749put('EGYPTIAN_HIEROGLYPH_E022, 'codepoint, 0x130EC);
20750put('EGYPTIAN_HIEROGLYPH_E023, 'codepoint, 0x130ED);
20751put('EGYPTIAN_HIEROGLYPH_E024, 'codepoint, 0x130EE);
20752put('EGYPTIAN_HIEROGLYPH_E025, 'codepoint, 0x130EF);
20753put('EGYPTIAN_HIEROGLYPH_E026, 'codepoint, 0x130F0);
20754put('EGYPTIAN_HIEROGLYPH_E027, 'codepoint, 0x130F1);
20755put('EGYPTIAN_HIEROGLYPH_E028, 'codepoint, 0x130F2);
20756put('EGYPTIAN_HIEROGLYPH_E028A, 'codepoint, 0x130F3);
20757put('EGYPTIAN_HIEROGLYPH_E029, 'codepoint, 0x130F4);
20758put('EGYPTIAN_HIEROGLYPH_E030, 'codepoint, 0x130F5);
20759put('EGYPTIAN_HIEROGLYPH_E031, 'codepoint, 0x130F6);
20760put('EGYPTIAN_HIEROGLYPH_E032, 'codepoint, 0x130F7);
20761put('EGYPTIAN_HIEROGLYPH_E033, 'codepoint, 0x130F8);
20762put('EGYPTIAN_HIEROGLYPH_E034, 'codepoint, 0x130F9);
20763put('EGYPTIAN_HIEROGLYPH_E034A, 'codepoint, 0x130FA);
20764put('EGYPTIAN_HIEROGLYPH_E036, 'codepoint, 0x130FB);
20765put('EGYPTIAN_HIEROGLYPH_E037, 'codepoint, 0x130FC);
20766put('EGYPTIAN_HIEROGLYPH_E038, 'codepoint, 0x130FD);
20767put('EGYPTIAN_HIEROGLYPH_F001, 'codepoint, 0x130FE);
20768put('EGYPTIAN_HIEROGLYPH_F001A, 'codepoint, 0x130FF);
20769put('EGYPTIAN_HIEROGLYPH_F002, 'codepoint, 0x13100);
20770put('EGYPTIAN_HIEROGLYPH_F003, 'codepoint, 0x13101);
20771put('EGYPTIAN_HIEROGLYPH_F004, 'codepoint, 0x13102);
20772put('EGYPTIAN_HIEROGLYPH_F005, 'codepoint, 0x13103);
20773put('EGYPTIAN_HIEROGLYPH_F006, 'codepoint, 0x13104);
20774put('EGYPTIAN_HIEROGLYPH_F007, 'codepoint, 0x13105);
20775put('EGYPTIAN_HIEROGLYPH_F008, 'codepoint, 0x13106);
20776put('EGYPTIAN_HIEROGLYPH_F009, 'codepoint, 0x13107);
20777put('EGYPTIAN_HIEROGLYPH_F010, 'codepoint, 0x13108);
20778put('EGYPTIAN_HIEROGLYPH_F011, 'codepoint, 0x13109);
20779put('EGYPTIAN_HIEROGLYPH_F012, 'codepoint, 0x1310A);
20780put('EGYPTIAN_HIEROGLYPH_F013, 'codepoint, 0x1310B);
20781put('EGYPTIAN_HIEROGLYPH_F013A, 'codepoint, 0x1310C);
20782put('EGYPTIAN_HIEROGLYPH_F014, 'codepoint, 0x1310D);
20783put('EGYPTIAN_HIEROGLYPH_F015, 'codepoint, 0x1310E);
20784put('EGYPTIAN_HIEROGLYPH_F016, 'codepoint, 0x1310F);
20785put('EGYPTIAN_HIEROGLYPH_F017, 'codepoint, 0x13110);
20786put('EGYPTIAN_HIEROGLYPH_F018, 'codepoint, 0x13111);
20787put('EGYPTIAN_HIEROGLYPH_F019, 'codepoint, 0x13112);
20788put('EGYPTIAN_HIEROGLYPH_F020, 'codepoint, 0x13113);
20789put('EGYPTIAN_HIEROGLYPH_F021, 'codepoint, 0x13114);
20790put('EGYPTIAN_HIEROGLYPH_F021A, 'codepoint, 0x13115);
20791put('EGYPTIAN_HIEROGLYPH_F022, 'codepoint, 0x13116);
20792put('EGYPTIAN_HIEROGLYPH_F023, 'codepoint, 0x13117);
20793put('EGYPTIAN_HIEROGLYPH_F024, 'codepoint, 0x13118);
20794put('EGYPTIAN_HIEROGLYPH_F025, 'codepoint, 0x13119);
20795put('EGYPTIAN_HIEROGLYPH_F026, 'codepoint, 0x1311A);
20796put('EGYPTIAN_HIEROGLYPH_F027, 'codepoint, 0x1311B);
20797put('EGYPTIAN_HIEROGLYPH_F028, 'codepoint, 0x1311C);
20798put('EGYPTIAN_HIEROGLYPH_F029, 'codepoint, 0x1311D);
20799put('EGYPTIAN_HIEROGLYPH_F030, 'codepoint, 0x1311E);
20800put('EGYPTIAN_HIEROGLYPH_F031, 'codepoint, 0x1311F);
20801put('EGYPTIAN_HIEROGLYPH_F031A, 'codepoint, 0x13120);
20802put('EGYPTIAN_HIEROGLYPH_F032, 'codepoint, 0x13121);
20803put('EGYPTIAN_HIEROGLYPH_F033, 'codepoint, 0x13122);
20804put('EGYPTIAN_HIEROGLYPH_F034, 'codepoint, 0x13123);
20805put('EGYPTIAN_HIEROGLYPH_F035, 'codepoint, 0x13124);
20806put('EGYPTIAN_HIEROGLYPH_F036, 'codepoint, 0x13125);
20807put('EGYPTIAN_HIEROGLYPH_F037, 'codepoint, 0x13126);
20808put('EGYPTIAN_HIEROGLYPH_F037A, 'codepoint, 0x13127);
20809put('EGYPTIAN_HIEROGLYPH_F038, 'codepoint, 0x13128);
20810put('EGYPTIAN_HIEROGLYPH_F038A, 'codepoint, 0x13129);
20811put('EGYPTIAN_HIEROGLYPH_F039, 'codepoint, 0x1312A);
20812put('EGYPTIAN_HIEROGLYPH_F040, 'codepoint, 0x1312B);
20813put('EGYPTIAN_HIEROGLYPH_F041, 'codepoint, 0x1312C);
20814put('EGYPTIAN_HIEROGLYPH_F042, 'codepoint, 0x1312D);
20815put('EGYPTIAN_HIEROGLYPH_F043, 'codepoint, 0x1312E);
20816put('EGYPTIAN_HIEROGLYPH_F044, 'codepoint, 0x1312F);
20817put('EGYPTIAN_HIEROGLYPH_F045, 'codepoint, 0x13130);
20818put('EGYPTIAN_HIEROGLYPH_F045A, 'codepoint, 0x13131);
20819put('EGYPTIAN_HIEROGLYPH_F046, 'codepoint, 0x13132);
20820put('EGYPTIAN_HIEROGLYPH_F046A, 'codepoint, 0x13133);
20821put('EGYPTIAN_HIEROGLYPH_F047, 'codepoint, 0x13134);
20822put('EGYPTIAN_HIEROGLYPH_F047A, 'codepoint, 0x13135);
20823put('EGYPTIAN_HIEROGLYPH_F048, 'codepoint, 0x13136);
20824put('EGYPTIAN_HIEROGLYPH_F049, 'codepoint, 0x13137);
20825put('EGYPTIAN_HIEROGLYPH_F050, 'codepoint, 0x13138);
20826put('EGYPTIAN_HIEROGLYPH_F051, 'codepoint, 0x13139);
20827put('EGYPTIAN_HIEROGLYPH_F051A, 'codepoint, 0x1313A);
20828put('EGYPTIAN_HIEROGLYPH_F051B, 'codepoint, 0x1313B);
20829put('EGYPTIAN_HIEROGLYPH_F051C, 'codepoint, 0x1313C);
20830put('EGYPTIAN_HIEROGLYPH_F052, 'codepoint, 0x1313D);
20831put('EGYPTIAN_HIEROGLYPH_F053, 'codepoint, 0x1313E);
20832put('EGYPTIAN_HIEROGLYPH_G001, 'codepoint, 0x1313F);
20833put('EGYPTIAN_HIEROGLYPH_G002, 'codepoint, 0x13140);
20834put('EGYPTIAN_HIEROGLYPH_G003, 'codepoint, 0x13141);
20835put('EGYPTIAN_HIEROGLYPH_G004, 'codepoint, 0x13142);
20836put('EGYPTIAN_HIEROGLYPH_G005, 'codepoint, 0x13143);
20837put('EGYPTIAN_HIEROGLYPH_G006, 'codepoint, 0x13144);
20838put('EGYPTIAN_HIEROGLYPH_G006A, 'codepoint, 0x13145);
20839put('EGYPTIAN_HIEROGLYPH_G007, 'codepoint, 0x13146);
20840put('EGYPTIAN_HIEROGLYPH_G007A, 'codepoint, 0x13147);
20841put('EGYPTIAN_HIEROGLYPH_G007B, 'codepoint, 0x13148);
20842put('EGYPTIAN_HIEROGLYPH_G008, 'codepoint, 0x13149);
20843put('EGYPTIAN_HIEROGLYPH_G009, 'codepoint, 0x1314A);
20844put('EGYPTIAN_HIEROGLYPH_G010, 'codepoint, 0x1314B);
20845put('EGYPTIAN_HIEROGLYPH_G011, 'codepoint, 0x1314C);
20846put('EGYPTIAN_HIEROGLYPH_G011A, 'codepoint, 0x1314D);
20847put('EGYPTIAN_HIEROGLYPH_G012, 'codepoint, 0x1314E);
20848put('EGYPTIAN_HIEROGLYPH_G013, 'codepoint, 0x1314F);
20849put('EGYPTIAN_HIEROGLYPH_G014, 'codepoint, 0x13150);
20850put('EGYPTIAN_HIEROGLYPH_G015, 'codepoint, 0x13151);
20851put('EGYPTIAN_HIEROGLYPH_G016, 'codepoint, 0x13152);
20852put('EGYPTIAN_HIEROGLYPH_G017, 'codepoint, 0x13153);
20853put('EGYPTIAN_HIEROGLYPH_G018, 'codepoint, 0x13154);
20854put('EGYPTIAN_HIEROGLYPH_G019, 'codepoint, 0x13155);
20855put('EGYPTIAN_HIEROGLYPH_G020, 'codepoint, 0x13156);
20856put('EGYPTIAN_HIEROGLYPH_G020A, 'codepoint, 0x13157);
20857put('EGYPTIAN_HIEROGLYPH_G021, 'codepoint, 0x13158);
20858put('EGYPTIAN_HIEROGLYPH_G022, 'codepoint, 0x13159);
20859put('EGYPTIAN_HIEROGLYPH_G023, 'codepoint, 0x1315A);
20860put('EGYPTIAN_HIEROGLYPH_G024, 'codepoint, 0x1315B);
20861put('EGYPTIAN_HIEROGLYPH_G025, 'codepoint, 0x1315C);
20862put('EGYPTIAN_HIEROGLYPH_G026, 'codepoint, 0x1315D);
20863put('EGYPTIAN_HIEROGLYPH_G026A, 'codepoint, 0x1315E);
20864put('EGYPTIAN_HIEROGLYPH_G027, 'codepoint, 0x1315F);
20865put('EGYPTIAN_HIEROGLYPH_G028, 'codepoint, 0x13160);
20866put('EGYPTIAN_HIEROGLYPH_G029, 'codepoint, 0x13161);
20867put('EGYPTIAN_HIEROGLYPH_G030, 'codepoint, 0x13162);
20868put('EGYPTIAN_HIEROGLYPH_G031, 'codepoint, 0x13163);
20869put('EGYPTIAN_HIEROGLYPH_G032, 'codepoint, 0x13164);
20870put('EGYPTIAN_HIEROGLYPH_G033, 'codepoint, 0x13165);
20871put('EGYPTIAN_HIEROGLYPH_G034, 'codepoint, 0x13166);
20872put('EGYPTIAN_HIEROGLYPH_G035, 'codepoint, 0x13167);
20873put('EGYPTIAN_HIEROGLYPH_G036, 'codepoint, 0x13168);
20874put('EGYPTIAN_HIEROGLYPH_G036A, 'codepoint, 0x13169);
20875put('EGYPTIAN_HIEROGLYPH_G037, 'codepoint, 0x1316A);
20876put('EGYPTIAN_HIEROGLYPH_G037A, 'codepoint, 0x1316B);
20877put('EGYPTIAN_HIEROGLYPH_G038, 'codepoint, 0x1316C);
20878put('EGYPTIAN_HIEROGLYPH_G039, 'codepoint, 0x1316D);
20879put('EGYPTIAN_HIEROGLYPH_G040, 'codepoint, 0x1316E);
20880put('EGYPTIAN_HIEROGLYPH_G041, 'codepoint, 0x1316F);
20881put('EGYPTIAN_HIEROGLYPH_G042, 'codepoint, 0x13170);
20882put('EGYPTIAN_HIEROGLYPH_G043, 'codepoint, 0x13171);
20883put('EGYPTIAN_HIEROGLYPH_G043A, 'codepoint, 0x13172);
20884put('EGYPTIAN_HIEROGLYPH_G044, 'codepoint, 0x13173);
20885put('EGYPTIAN_HIEROGLYPH_G045, 'codepoint, 0x13174);
20886put('EGYPTIAN_HIEROGLYPH_G045A, 'codepoint, 0x13175);
20887put('EGYPTIAN_HIEROGLYPH_G046, 'codepoint, 0x13176);
20888put('EGYPTIAN_HIEROGLYPH_G047, 'codepoint, 0x13177);
20889put('EGYPTIAN_HIEROGLYPH_G048, 'codepoint, 0x13178);
20890put('EGYPTIAN_HIEROGLYPH_G049, 'codepoint, 0x13179);
20891put('EGYPTIAN_HIEROGLYPH_G050, 'codepoint, 0x1317A);
20892put('EGYPTIAN_HIEROGLYPH_G051, 'codepoint, 0x1317B);
20893put('EGYPTIAN_HIEROGLYPH_G052, 'codepoint, 0x1317C);
20894put('EGYPTIAN_HIEROGLYPH_G053, 'codepoint, 0x1317D);
20895put('EGYPTIAN_HIEROGLYPH_G054, 'codepoint, 0x1317E);
20896put('EGYPTIAN_HIEROGLYPH_H001, 'codepoint, 0x1317F);
20897put('EGYPTIAN_HIEROGLYPH_H002, 'codepoint, 0x13180);
20898put('EGYPTIAN_HIEROGLYPH_H003, 'codepoint, 0x13181);
20899put('EGYPTIAN_HIEROGLYPH_H004, 'codepoint, 0x13182);
20900put('EGYPTIAN_HIEROGLYPH_H005, 'codepoint, 0x13183);
20901put('EGYPTIAN_HIEROGLYPH_H006, 'codepoint, 0x13184);
20902put('EGYPTIAN_HIEROGLYPH_H006A, 'codepoint, 0x13185);
20903put('EGYPTIAN_HIEROGLYPH_H007, 'codepoint, 0x13186);
20904put('EGYPTIAN_HIEROGLYPH_H008, 'codepoint, 0x13187);
20905put('EGYPTIAN_HIEROGLYPH_I001, 'codepoint, 0x13188);
20906put('EGYPTIAN_HIEROGLYPH_I002, 'codepoint, 0x13189);
20907put('EGYPTIAN_HIEROGLYPH_I003, 'codepoint, 0x1318A);
20908put('EGYPTIAN_HIEROGLYPH_I004, 'codepoint, 0x1318B);
20909put('EGYPTIAN_HIEROGLYPH_I005, 'codepoint, 0x1318C);
20910put('EGYPTIAN_HIEROGLYPH_I005A, 'codepoint, 0x1318D);
20911put('EGYPTIAN_HIEROGLYPH_I006, 'codepoint, 0x1318E);
20912put('EGYPTIAN_HIEROGLYPH_I007, 'codepoint, 0x1318F);
20913put('EGYPTIAN_HIEROGLYPH_I008, 'codepoint, 0x13190);
20914put('EGYPTIAN_HIEROGLYPH_I009, 'codepoint, 0x13191);
20915put('EGYPTIAN_HIEROGLYPH_I009A, 'codepoint, 0x13192);
20916put('EGYPTIAN_HIEROGLYPH_I010, 'codepoint, 0x13193);
20917put('EGYPTIAN_HIEROGLYPH_I010A, 'codepoint, 0x13194);
20918put('EGYPTIAN_HIEROGLYPH_I011, 'codepoint, 0x13195);
20919put('EGYPTIAN_HIEROGLYPH_I011A, 'codepoint, 0x13196);
20920put('EGYPTIAN_HIEROGLYPH_I012, 'codepoint, 0x13197);
20921put('EGYPTIAN_HIEROGLYPH_I013, 'codepoint, 0x13198);
20922put('EGYPTIAN_HIEROGLYPH_I014, 'codepoint, 0x13199);
20923put('EGYPTIAN_HIEROGLYPH_I015, 'codepoint, 0x1319A);
20924put('EGYPTIAN_HIEROGLYPH_K001, 'codepoint, 0x1319B);
20925put('EGYPTIAN_HIEROGLYPH_K002, 'codepoint, 0x1319C);
20926put('EGYPTIAN_HIEROGLYPH_K003, 'codepoint, 0x1319D);
20927put('EGYPTIAN_HIEROGLYPH_K004, 'codepoint, 0x1319E);
20928put('EGYPTIAN_HIEROGLYPH_K005, 'codepoint, 0x1319F);
20929put('EGYPTIAN_HIEROGLYPH_K006, 'codepoint, 0x131A0);
20930put('EGYPTIAN_HIEROGLYPH_K007, 'codepoint, 0x131A1);
20931put('EGYPTIAN_HIEROGLYPH_K008, 'codepoint, 0x131A2);
20932put('EGYPTIAN_HIEROGLYPH_L001, 'codepoint, 0x131A3);
20933put('EGYPTIAN_HIEROGLYPH_L002, 'codepoint, 0x131A4);
20934put('EGYPTIAN_HIEROGLYPH_L002A, 'codepoint, 0x131A5);
20935put('EGYPTIAN_HIEROGLYPH_L003, 'codepoint, 0x131A6);
20936put('EGYPTIAN_HIEROGLYPH_L004, 'codepoint, 0x131A7);
20937put('EGYPTIAN_HIEROGLYPH_L005, 'codepoint, 0x131A8);
20938put('EGYPTIAN_HIEROGLYPH_L006, 'codepoint, 0x131A9);
20939put('EGYPTIAN_HIEROGLYPH_L006A, 'codepoint, 0x131AA);
20940put('EGYPTIAN_HIEROGLYPH_L007, 'codepoint, 0x131AB);
20941put('EGYPTIAN_HIEROGLYPH_L008, 'codepoint, 0x131AC);
20942put('EGYPTIAN_HIEROGLYPH_M001, 'codepoint, 0x131AD);
20943put('EGYPTIAN_HIEROGLYPH_M001A, 'codepoint, 0x131AE);
20944put('EGYPTIAN_HIEROGLYPH_M001B, 'codepoint, 0x131AF);
20945put('EGYPTIAN_HIEROGLYPH_M002, 'codepoint, 0x131B0);
20946put('EGYPTIAN_HIEROGLYPH_M003, 'codepoint, 0x131B1);
20947put('EGYPTIAN_HIEROGLYPH_M003A, 'codepoint, 0x131B2);
20948put('EGYPTIAN_HIEROGLYPH_M004, 'codepoint, 0x131B3);
20949put('EGYPTIAN_HIEROGLYPH_M005, 'codepoint, 0x131B4);
20950put('EGYPTIAN_HIEROGLYPH_M006, 'codepoint, 0x131B5);
20951put('EGYPTIAN_HIEROGLYPH_M007, 'codepoint, 0x131B6);
20952put('EGYPTIAN_HIEROGLYPH_M008, 'codepoint, 0x131B7);
20953put('EGYPTIAN_HIEROGLYPH_M009, 'codepoint, 0x131B8);
20954put('EGYPTIAN_HIEROGLYPH_M010, 'codepoint, 0x131B9);
20955put('EGYPTIAN_HIEROGLYPH_M010A, 'codepoint, 0x131BA);
20956put('EGYPTIAN_HIEROGLYPH_M011, 'codepoint, 0x131BB);
20957put('EGYPTIAN_HIEROGLYPH_M012, 'codepoint, 0x131BC);
20958put('EGYPTIAN_HIEROGLYPH_M012A, 'codepoint, 0x131BD);
20959put('EGYPTIAN_HIEROGLYPH_M012B, 'codepoint, 0x131BE);
20960put('EGYPTIAN_HIEROGLYPH_M012C, 'codepoint, 0x131BF);
20961put('EGYPTIAN_HIEROGLYPH_M012D, 'codepoint, 0x131C0);
20962put('EGYPTIAN_HIEROGLYPH_M012E, 'codepoint, 0x131C1);
20963put('EGYPTIAN_HIEROGLYPH_M012F, 'codepoint, 0x131C2);
20964put('EGYPTIAN_HIEROGLYPH_M012G, 'codepoint, 0x131C3);
20965put('EGYPTIAN_HIEROGLYPH_M012H, 'codepoint, 0x131C4);
20966put('EGYPTIAN_HIEROGLYPH_M013, 'codepoint, 0x131C5);
20967put('EGYPTIAN_HIEROGLYPH_M014, 'codepoint, 0x131C6);
20968put('EGYPTIAN_HIEROGLYPH_M015, 'codepoint, 0x131C7);
20969put('EGYPTIAN_HIEROGLYPH_M015A, 'codepoint, 0x131C8);
20970put('EGYPTIAN_HIEROGLYPH_M016, 'codepoint, 0x131C9);
20971put('EGYPTIAN_HIEROGLYPH_M016A, 'codepoint, 0x131CA);
20972put('EGYPTIAN_HIEROGLYPH_M017, 'codepoint, 0x131CB);
20973put('EGYPTIAN_HIEROGLYPH_M017A, 'codepoint, 0x131CC);
20974put('EGYPTIAN_HIEROGLYPH_M018, 'codepoint, 0x131CD);
20975put('EGYPTIAN_HIEROGLYPH_M019, 'codepoint, 0x131CE);
20976put('EGYPTIAN_HIEROGLYPH_M020, 'codepoint, 0x131CF);
20977put('EGYPTIAN_HIEROGLYPH_M021, 'codepoint, 0x131D0);
20978put('EGYPTIAN_HIEROGLYPH_M022, 'codepoint, 0x131D1);
20979put('EGYPTIAN_HIEROGLYPH_M022A, 'codepoint, 0x131D2);
20980put('EGYPTIAN_HIEROGLYPH_M023, 'codepoint, 0x131D3);
20981put('EGYPTIAN_HIEROGLYPH_M024, 'codepoint, 0x131D4);
20982put('EGYPTIAN_HIEROGLYPH_M024A, 'codepoint, 0x131D5);
20983put('EGYPTIAN_HIEROGLYPH_M025, 'codepoint, 0x131D6);
20984put('EGYPTIAN_HIEROGLYPH_M026, 'codepoint, 0x131D7);
20985put('EGYPTIAN_HIEROGLYPH_M027, 'codepoint, 0x131D8);
20986put('EGYPTIAN_HIEROGLYPH_M028, 'codepoint, 0x131D9);
20987put('EGYPTIAN_HIEROGLYPH_M028A, 'codepoint, 0x131DA);
20988put('EGYPTIAN_HIEROGLYPH_M029, 'codepoint, 0x131DB);
20989put('EGYPTIAN_HIEROGLYPH_M030, 'codepoint, 0x131DC);
20990put('EGYPTIAN_HIEROGLYPH_M031, 'codepoint, 0x131DD);
20991put('EGYPTIAN_HIEROGLYPH_M031A, 'codepoint, 0x131DE);
20992put('EGYPTIAN_HIEROGLYPH_M032, 'codepoint, 0x131DF);
20993put('EGYPTIAN_HIEROGLYPH_M033, 'codepoint, 0x131E0);
20994put('EGYPTIAN_HIEROGLYPH_M033A, 'codepoint, 0x131E1);
20995put('EGYPTIAN_HIEROGLYPH_M033B, 'codepoint, 0x131E2);
20996put('EGYPTIAN_HIEROGLYPH_M034, 'codepoint, 0x131E3);
20997put('EGYPTIAN_HIEROGLYPH_M035, 'codepoint, 0x131E4);
20998put('EGYPTIAN_HIEROGLYPH_M036, 'codepoint, 0x131E5);
20999put('EGYPTIAN_HIEROGLYPH_M037, 'codepoint, 0x131E6);
21000put('EGYPTIAN_HIEROGLYPH_M038, 'codepoint, 0x131E7);
21001put('EGYPTIAN_HIEROGLYPH_M039, 'codepoint, 0x131E8);
21002put('EGYPTIAN_HIEROGLYPH_M040, 'codepoint, 0x131E9);
21003put('EGYPTIAN_HIEROGLYPH_M040A, 'codepoint, 0x131EA);
21004put('EGYPTIAN_HIEROGLYPH_M041, 'codepoint, 0x131EB);
21005put('EGYPTIAN_HIEROGLYPH_M042, 'codepoint, 0x131EC);
21006put('EGYPTIAN_HIEROGLYPH_M043, 'codepoint, 0x131ED);
21007put('EGYPTIAN_HIEROGLYPH_M044, 'codepoint, 0x131EE);
21008put('EGYPTIAN_HIEROGLYPH_N001, 'codepoint, 0x131EF);
21009put('EGYPTIAN_HIEROGLYPH_N002, 'codepoint, 0x131F0);
21010put('EGYPTIAN_HIEROGLYPH_N003, 'codepoint, 0x131F1);
21011put('EGYPTIAN_HIEROGLYPH_N004, 'codepoint, 0x131F2);
21012put('EGYPTIAN_HIEROGLYPH_N005, 'codepoint, 0x131F3);
21013put('EGYPTIAN_HIEROGLYPH_N006, 'codepoint, 0x131F4);
21014put('EGYPTIAN_HIEROGLYPH_N007, 'codepoint, 0x131F5);
21015put('EGYPTIAN_HIEROGLYPH_N008, 'codepoint, 0x131F6);
21016put('EGYPTIAN_HIEROGLYPH_N009, 'codepoint, 0x131F7);
21017put('EGYPTIAN_HIEROGLYPH_N010, 'codepoint, 0x131F8);
21018put('EGYPTIAN_HIEROGLYPH_N011, 'codepoint, 0x131F9);
21019put('EGYPTIAN_HIEROGLYPH_N012, 'codepoint, 0x131FA);
21020put('EGYPTIAN_HIEROGLYPH_N013, 'codepoint, 0x131FB);
21021put('EGYPTIAN_HIEROGLYPH_N014, 'codepoint, 0x131FC);
21022put('EGYPTIAN_HIEROGLYPH_N015, 'codepoint, 0x131FD);
21023put('EGYPTIAN_HIEROGLYPH_N016, 'codepoint, 0x131FE);
21024put('EGYPTIAN_HIEROGLYPH_N017, 'codepoint, 0x131FF);
21025put('EGYPTIAN_HIEROGLYPH_N018, 'codepoint, 0x13200);
21026put('EGYPTIAN_HIEROGLYPH_N018A, 'codepoint, 0x13201);
21027put('EGYPTIAN_HIEROGLYPH_N018B, 'codepoint, 0x13202);
21028put('EGYPTIAN_HIEROGLYPH_N019, 'codepoint, 0x13203);
21029put('EGYPTIAN_HIEROGLYPH_N020, 'codepoint, 0x13204);
21030put('EGYPTIAN_HIEROGLYPH_N021, 'codepoint, 0x13205);
21031put('EGYPTIAN_HIEROGLYPH_N022, 'codepoint, 0x13206);
21032put('EGYPTIAN_HIEROGLYPH_N023, 'codepoint, 0x13207);
21033put('EGYPTIAN_HIEROGLYPH_N024, 'codepoint, 0x13208);
21034put('EGYPTIAN_HIEROGLYPH_N025, 'codepoint, 0x13209);
21035put('EGYPTIAN_HIEROGLYPH_N025A, 'codepoint, 0x1320A);
21036put('EGYPTIAN_HIEROGLYPH_N026, 'codepoint, 0x1320B);
21037put('EGYPTIAN_HIEROGLYPH_N027, 'codepoint, 0x1320C);
21038put('EGYPTIAN_HIEROGLYPH_N028, 'codepoint, 0x1320D);
21039put('EGYPTIAN_HIEROGLYPH_N029, 'codepoint, 0x1320E);
21040put('EGYPTIAN_HIEROGLYPH_N030, 'codepoint, 0x1320F);
21041put('EGYPTIAN_HIEROGLYPH_N031, 'codepoint, 0x13210);
21042put('EGYPTIAN_HIEROGLYPH_N032, 'codepoint, 0x13211);
21043put('EGYPTIAN_HIEROGLYPH_N033, 'codepoint, 0x13212);
21044put('EGYPTIAN_HIEROGLYPH_N033A, 'codepoint, 0x13213);
21045put('EGYPTIAN_HIEROGLYPH_N034, 'codepoint, 0x13214);
21046put('EGYPTIAN_HIEROGLYPH_N034A, 'codepoint, 0x13215);
21047put('EGYPTIAN_HIEROGLYPH_N035, 'codepoint, 0x13216);
21048put('EGYPTIAN_HIEROGLYPH_N035A, 'codepoint, 0x13217);
21049put('EGYPTIAN_HIEROGLYPH_N036, 'codepoint, 0x13218);
21050put('EGYPTIAN_HIEROGLYPH_N037, 'codepoint, 0x13219);
21051put('EGYPTIAN_HIEROGLYPH_N037A, 'codepoint, 0x1321A);
21052put('EGYPTIAN_HIEROGLYPH_N038, 'codepoint, 0x1321B);
21053put('EGYPTIAN_HIEROGLYPH_N039, 'codepoint, 0x1321C);
21054put('EGYPTIAN_HIEROGLYPH_N040, 'codepoint, 0x1321D);
21055put('EGYPTIAN_HIEROGLYPH_N041, 'codepoint, 0x1321E);
21056put('EGYPTIAN_HIEROGLYPH_N042, 'codepoint, 0x1321F);
21057put('EGYPTIAN_HIEROGLYPH_NL001, 'codepoint, 0x13220);
21058put('EGYPTIAN_HIEROGLYPH_NL002, 'codepoint, 0x13221);
21059put('EGYPTIAN_HIEROGLYPH_NL003, 'codepoint, 0x13222);
21060put('EGYPTIAN_HIEROGLYPH_NL004, 'codepoint, 0x13223);
21061put('EGYPTIAN_HIEROGLYPH_NL005, 'codepoint, 0x13224);
21062put('EGYPTIAN_HIEROGLYPH_NL005A, 'codepoint, 0x13225);
21063put('EGYPTIAN_HIEROGLYPH_NL006, 'codepoint, 0x13226);
21064put('EGYPTIAN_HIEROGLYPH_NL007, 'codepoint, 0x13227);
21065put('EGYPTIAN_HIEROGLYPH_NL008, 'codepoint, 0x13228);
21066put('EGYPTIAN_HIEROGLYPH_NL009, 'codepoint, 0x13229);
21067put('EGYPTIAN_HIEROGLYPH_NL010, 'codepoint, 0x1322A);
21068put('EGYPTIAN_HIEROGLYPH_NL011, 'codepoint, 0x1322B);
21069put('EGYPTIAN_HIEROGLYPH_NL012, 'codepoint, 0x1322C);
21070put('EGYPTIAN_HIEROGLYPH_NL013, 'codepoint, 0x1322D);
21071put('EGYPTIAN_HIEROGLYPH_NL014, 'codepoint, 0x1322E);
21072put('EGYPTIAN_HIEROGLYPH_NL015, 'codepoint, 0x1322F);
21073put('EGYPTIAN_HIEROGLYPH_NL016, 'codepoint, 0x13230);
21074put('EGYPTIAN_HIEROGLYPH_NL017, 'codepoint, 0x13231);
21075put('EGYPTIAN_HIEROGLYPH_NL017A, 'codepoint, 0x13232);
21076put('EGYPTIAN_HIEROGLYPH_NL018, 'codepoint, 0x13233);
21077put('EGYPTIAN_HIEROGLYPH_NL019, 'codepoint, 0x13234);
21078put('EGYPTIAN_HIEROGLYPH_NL020, 'codepoint, 0x13235);
21079put('EGYPTIAN_HIEROGLYPH_NU001, 'codepoint, 0x13236);
21080put('EGYPTIAN_HIEROGLYPH_NU002, 'codepoint, 0x13237);
21081put('EGYPTIAN_HIEROGLYPH_NU003, 'codepoint, 0x13238);
21082put('EGYPTIAN_HIEROGLYPH_NU004, 'codepoint, 0x13239);
21083put('EGYPTIAN_HIEROGLYPH_NU005, 'codepoint, 0x1323A);
21084put('EGYPTIAN_HIEROGLYPH_NU006, 'codepoint, 0x1323B);
21085put('EGYPTIAN_HIEROGLYPH_NU007, 'codepoint, 0x1323C);
21086put('EGYPTIAN_HIEROGLYPH_NU008, 'codepoint, 0x1323D);
21087put('EGYPTIAN_HIEROGLYPH_NU009, 'codepoint, 0x1323E);
21088put('EGYPTIAN_HIEROGLYPH_NU010, 'codepoint, 0x1323F);
21089put('EGYPTIAN_HIEROGLYPH_NU010A, 'codepoint, 0x13240);
21090put('EGYPTIAN_HIEROGLYPH_NU011, 'codepoint, 0x13241);
21091put('EGYPTIAN_HIEROGLYPH_NU011A, 'codepoint, 0x13242);
21092put('EGYPTIAN_HIEROGLYPH_NU012, 'codepoint, 0x13243);
21093put('EGYPTIAN_HIEROGLYPH_NU013, 'codepoint, 0x13244);
21094put('EGYPTIAN_HIEROGLYPH_NU014, 'codepoint, 0x13245);
21095put('EGYPTIAN_HIEROGLYPH_NU015, 'codepoint, 0x13246);
21096put('EGYPTIAN_HIEROGLYPH_NU016, 'codepoint, 0x13247);
21097put('EGYPTIAN_HIEROGLYPH_NU017, 'codepoint, 0x13248);
21098put('EGYPTIAN_HIEROGLYPH_NU018, 'codepoint, 0x13249);
21099put('EGYPTIAN_HIEROGLYPH_NU018A, 'codepoint, 0x1324A);
21100put('EGYPTIAN_HIEROGLYPH_NU019, 'codepoint, 0x1324B);
21101put('EGYPTIAN_HIEROGLYPH_NU020, 'codepoint, 0x1324C);
21102put('EGYPTIAN_HIEROGLYPH_NU021, 'codepoint, 0x1324D);
21103put('EGYPTIAN_HIEROGLYPH_NU022, 'codepoint, 0x1324E);
21104put('EGYPTIAN_HIEROGLYPH_NU022A, 'codepoint, 0x1324F);
21105put('EGYPTIAN_HIEROGLYPH_O001, 'codepoint, 0x13250);
21106put('EGYPTIAN_HIEROGLYPH_O001A, 'codepoint, 0x13251);
21107put('EGYPTIAN_HIEROGLYPH_O002, 'codepoint, 0x13252);
21108put('EGYPTIAN_HIEROGLYPH_O003, 'codepoint, 0x13253);
21109put('EGYPTIAN_HIEROGLYPH_O004, 'codepoint, 0x13254);
21110put('EGYPTIAN_HIEROGLYPH_O005, 'codepoint, 0x13255);
21111put('EGYPTIAN_HIEROGLYPH_O005A, 'codepoint, 0x13256);
21112put('EGYPTIAN_HIEROGLYPH_O006, 'codepoint, 0x13257);
21113put('EGYPTIAN_HIEROGLYPH_O006A, 'codepoint, 0x13258);
21114put('EGYPTIAN_HIEROGLYPH_O006B, 'codepoint, 0x13259);
21115put('EGYPTIAN_HIEROGLYPH_O006C, 'codepoint, 0x1325A);
21116put('EGYPTIAN_HIEROGLYPH_O006D, 'codepoint, 0x1325B);
21117put('EGYPTIAN_HIEROGLYPH_O006E, 'codepoint, 0x1325C);
21118put('EGYPTIAN_HIEROGLYPH_O006F, 'codepoint, 0x1325D);
21119put('EGYPTIAN_HIEROGLYPH_O007, 'codepoint, 0x1325E);
21120put('EGYPTIAN_HIEROGLYPH_O008, 'codepoint, 0x1325F);
21121put('EGYPTIAN_HIEROGLYPH_O009, 'codepoint, 0x13260);
21122put('EGYPTIAN_HIEROGLYPH_O010, 'codepoint, 0x13261);
21123put('EGYPTIAN_HIEROGLYPH_O010A, 'codepoint, 0x13262);
21124put('EGYPTIAN_HIEROGLYPH_O010B, 'codepoint, 0x13263);
21125put('EGYPTIAN_HIEROGLYPH_O010C, 'codepoint, 0x13264);
21126put('EGYPTIAN_HIEROGLYPH_O011, 'codepoint, 0x13265);
21127put('EGYPTIAN_HIEROGLYPH_O012, 'codepoint, 0x13266);
21128put('EGYPTIAN_HIEROGLYPH_O013, 'codepoint, 0x13267);
21129put('EGYPTIAN_HIEROGLYPH_O014, 'codepoint, 0x13268);
21130put('EGYPTIAN_HIEROGLYPH_O015, 'codepoint, 0x13269);
21131put('EGYPTIAN_HIEROGLYPH_O016, 'codepoint, 0x1326A);
21132put('EGYPTIAN_HIEROGLYPH_O017, 'codepoint, 0x1326B);
21133put('EGYPTIAN_HIEROGLYPH_O018, 'codepoint, 0x1326C);
21134put('EGYPTIAN_HIEROGLYPH_O019, 'codepoint, 0x1326D);
21135put('EGYPTIAN_HIEROGLYPH_O019A, 'codepoint, 0x1326E);
21136put('EGYPTIAN_HIEROGLYPH_O020, 'codepoint, 0x1326F);
21137put('EGYPTIAN_HIEROGLYPH_O020A, 'codepoint, 0x13270);
21138put('EGYPTIAN_HIEROGLYPH_O021, 'codepoint, 0x13271);
21139put('EGYPTIAN_HIEROGLYPH_O022, 'codepoint, 0x13272);
21140put('EGYPTIAN_HIEROGLYPH_O023, 'codepoint, 0x13273);
21141put('EGYPTIAN_HIEROGLYPH_O024, 'codepoint, 0x13274);
21142put('EGYPTIAN_HIEROGLYPH_O024A, 'codepoint, 0x13275);
21143put('EGYPTIAN_HIEROGLYPH_O025, 'codepoint, 0x13276);
21144put('EGYPTIAN_HIEROGLYPH_O025A, 'codepoint, 0x13277);
21145put('EGYPTIAN_HIEROGLYPH_O026, 'codepoint, 0x13278);
21146put('EGYPTIAN_HIEROGLYPH_O027, 'codepoint, 0x13279);
21147put('EGYPTIAN_HIEROGLYPH_O028, 'codepoint, 0x1327A);
21148put('EGYPTIAN_HIEROGLYPH_O029, 'codepoint, 0x1327B);
21149put('EGYPTIAN_HIEROGLYPH_O029A, 'codepoint, 0x1327C);
21150put('EGYPTIAN_HIEROGLYPH_O030, 'codepoint, 0x1327D);
21151put('EGYPTIAN_HIEROGLYPH_O030A, 'codepoint, 0x1327E);
21152put('EGYPTIAN_HIEROGLYPH_O031, 'codepoint, 0x1327F);
21153put('EGYPTIAN_HIEROGLYPH_O032, 'codepoint, 0x13280);
21154put('EGYPTIAN_HIEROGLYPH_O033, 'codepoint, 0x13281);
21155put('EGYPTIAN_HIEROGLYPH_O033A, 'codepoint, 0x13282);
21156put('EGYPTIAN_HIEROGLYPH_O034, 'codepoint, 0x13283);
21157put('EGYPTIAN_HIEROGLYPH_O035, 'codepoint, 0x13284);
21158put('EGYPTIAN_HIEROGLYPH_O036, 'codepoint, 0x13285);
21159put('EGYPTIAN_HIEROGLYPH_O036A, 'codepoint, 0x13286);
21160put('EGYPTIAN_HIEROGLYPH_O036B, 'codepoint, 0x13287);
21161put('EGYPTIAN_HIEROGLYPH_O036C, 'codepoint, 0x13288);
21162put('EGYPTIAN_HIEROGLYPH_O036D, 'codepoint, 0x13289);
21163put('EGYPTIAN_HIEROGLYPH_O037, 'codepoint, 0x1328A);
21164put('EGYPTIAN_HIEROGLYPH_O038, 'codepoint, 0x1328B);
21165put('EGYPTIAN_HIEROGLYPH_O039, 'codepoint, 0x1328C);
21166put('EGYPTIAN_HIEROGLYPH_O040, 'codepoint, 0x1328D);
21167put('EGYPTIAN_HIEROGLYPH_O041, 'codepoint, 0x1328E);
21168put('EGYPTIAN_HIEROGLYPH_O042, 'codepoint, 0x1328F);
21169put('EGYPTIAN_HIEROGLYPH_O043, 'codepoint, 0x13290);
21170put('EGYPTIAN_HIEROGLYPH_O044, 'codepoint, 0x13291);
21171put('EGYPTIAN_HIEROGLYPH_O045, 'codepoint, 0x13292);
21172put('EGYPTIAN_HIEROGLYPH_O046, 'codepoint, 0x13293);
21173put('EGYPTIAN_HIEROGLYPH_O047, 'codepoint, 0x13294);
21174put('EGYPTIAN_HIEROGLYPH_O048, 'codepoint, 0x13295);
21175put('EGYPTIAN_HIEROGLYPH_O049, 'codepoint, 0x13296);
21176put('EGYPTIAN_HIEROGLYPH_O050, 'codepoint, 0x13297);
21177put('EGYPTIAN_HIEROGLYPH_O050A, 'codepoint, 0x13298);
21178put('EGYPTIAN_HIEROGLYPH_O050B, 'codepoint, 0x13299);
21179put('EGYPTIAN_HIEROGLYPH_O051, 'codepoint, 0x1329A);
21180put('EGYPTIAN_HIEROGLYPH_P001, 'codepoint, 0x1329B);
21181put('EGYPTIAN_HIEROGLYPH_P001A, 'codepoint, 0x1329C);
21182put('EGYPTIAN_HIEROGLYPH_P002, 'codepoint, 0x1329D);
21183put('EGYPTIAN_HIEROGLYPH_P003, 'codepoint, 0x1329E);
21184put('EGYPTIAN_HIEROGLYPH_P003A, 'codepoint, 0x1329F);
21185put('EGYPTIAN_HIEROGLYPH_P004, 'codepoint, 0x132A0);
21186put('EGYPTIAN_HIEROGLYPH_P005, 'codepoint, 0x132A1);
21187put('EGYPTIAN_HIEROGLYPH_P006, 'codepoint, 0x132A2);
21188put('EGYPTIAN_HIEROGLYPH_P007, 'codepoint, 0x132A3);
21189put('EGYPTIAN_HIEROGLYPH_P008, 'codepoint, 0x132A4);
21190put('EGYPTIAN_HIEROGLYPH_P009, 'codepoint, 0x132A5);
21191put('EGYPTIAN_HIEROGLYPH_P010, 'codepoint, 0x132A6);
21192put('EGYPTIAN_HIEROGLYPH_P011, 'codepoint, 0x132A7);
21193put('EGYPTIAN_HIEROGLYPH_Q001, 'codepoint, 0x132A8);
21194put('EGYPTIAN_HIEROGLYPH_Q002, 'codepoint, 0x132A9);
21195put('EGYPTIAN_HIEROGLYPH_Q003, 'codepoint, 0x132AA);
21196put('EGYPTIAN_HIEROGLYPH_Q004, 'codepoint, 0x132AB);
21197put('EGYPTIAN_HIEROGLYPH_Q005, 'codepoint, 0x132AC);
21198put('EGYPTIAN_HIEROGLYPH_Q006, 'codepoint, 0x132AD);
21199put('EGYPTIAN_HIEROGLYPH_Q007, 'codepoint, 0x132AE);
21200put('EGYPTIAN_HIEROGLYPH_R001, 'codepoint, 0x132AF);
21201put('EGYPTIAN_HIEROGLYPH_R002, 'codepoint, 0x132B0);
21202put('EGYPTIAN_HIEROGLYPH_R002A, 'codepoint, 0x132B1);
21203put('EGYPTIAN_HIEROGLYPH_R003, 'codepoint, 0x132B2);
21204put('EGYPTIAN_HIEROGLYPH_R003A, 'codepoint, 0x132B3);
21205put('EGYPTIAN_HIEROGLYPH_R003B, 'codepoint, 0x132B4);
21206put('EGYPTIAN_HIEROGLYPH_R004, 'codepoint, 0x132B5);
21207put('EGYPTIAN_HIEROGLYPH_R005, 'codepoint, 0x132B6);
21208put('EGYPTIAN_HIEROGLYPH_R006, 'codepoint, 0x132B7);
21209put('EGYPTIAN_HIEROGLYPH_R007, 'codepoint, 0x132B8);
21210put('EGYPTIAN_HIEROGLYPH_R008, 'codepoint, 0x132B9);
21211put('EGYPTIAN_HIEROGLYPH_R009, 'codepoint, 0x132BA);
21212put('EGYPTIAN_HIEROGLYPH_R010, 'codepoint, 0x132BB);
21213put('EGYPTIAN_HIEROGLYPH_R010A, 'codepoint, 0x132BC);
21214put('EGYPTIAN_HIEROGLYPH_R011, 'codepoint, 0x132BD);
21215put('EGYPTIAN_HIEROGLYPH_R012, 'codepoint, 0x132BE);
21216put('EGYPTIAN_HIEROGLYPH_R013, 'codepoint, 0x132BF);
21217put('EGYPTIAN_HIEROGLYPH_R014, 'codepoint, 0x132C0);
21218put('EGYPTIAN_HIEROGLYPH_R015, 'codepoint, 0x132C1);
21219put('EGYPTIAN_HIEROGLYPH_R016, 'codepoint, 0x132C2);
21220put('EGYPTIAN_HIEROGLYPH_R016A, 'codepoint, 0x132C3);
21221put('EGYPTIAN_HIEROGLYPH_R017, 'codepoint, 0x132C4);
21222put('EGYPTIAN_HIEROGLYPH_R018, 'codepoint, 0x132C5);
21223put('EGYPTIAN_HIEROGLYPH_R019, 'codepoint, 0x132C6);
21224put('EGYPTIAN_HIEROGLYPH_R020, 'codepoint, 0x132C7);
21225put('EGYPTIAN_HIEROGLYPH_R021, 'codepoint, 0x132C8);
21226put('EGYPTIAN_HIEROGLYPH_R022, 'codepoint, 0x132C9);
21227put('EGYPTIAN_HIEROGLYPH_R023, 'codepoint, 0x132CA);
21228put('EGYPTIAN_HIEROGLYPH_R024, 'codepoint, 0x132CB);
21229put('EGYPTIAN_HIEROGLYPH_R025, 'codepoint, 0x132CC);
21230put('EGYPTIAN_HIEROGLYPH_R026, 'codepoint, 0x132CD);
21231put('EGYPTIAN_HIEROGLYPH_R027, 'codepoint, 0x132CE);
21232put('EGYPTIAN_HIEROGLYPH_R028, 'codepoint, 0x132CF);
21233put('EGYPTIAN_HIEROGLYPH_R029, 'codepoint, 0x132D0);
21234put('EGYPTIAN_HIEROGLYPH_S001, 'codepoint, 0x132D1);
21235put('EGYPTIAN_HIEROGLYPH_S002, 'codepoint, 0x132D2);
21236put('EGYPTIAN_HIEROGLYPH_S002A, 'codepoint, 0x132D3);
21237put('EGYPTIAN_HIEROGLYPH_S003, 'codepoint, 0x132D4);
21238put('EGYPTIAN_HIEROGLYPH_S004, 'codepoint, 0x132D5);
21239put('EGYPTIAN_HIEROGLYPH_S005, 'codepoint, 0x132D6);
21240put('EGYPTIAN_HIEROGLYPH_S006, 'codepoint, 0x132D7);
21241put('EGYPTIAN_HIEROGLYPH_S006A, 'codepoint, 0x132D8);
21242put('EGYPTIAN_HIEROGLYPH_S007, 'codepoint, 0x132D9);
21243put('EGYPTIAN_HIEROGLYPH_S008, 'codepoint, 0x132DA);
21244put('EGYPTIAN_HIEROGLYPH_S009, 'codepoint, 0x132DB);
21245put('EGYPTIAN_HIEROGLYPH_S010, 'codepoint, 0x132DC);
21246put('EGYPTIAN_HIEROGLYPH_S011, 'codepoint, 0x132DD);
21247put('EGYPTIAN_HIEROGLYPH_S012, 'codepoint, 0x132DE);
21248put('EGYPTIAN_HIEROGLYPH_S013, 'codepoint, 0x132DF);
21249put('EGYPTIAN_HIEROGLYPH_S014, 'codepoint, 0x132E0);
21250put('EGYPTIAN_HIEROGLYPH_S014A, 'codepoint, 0x132E1);
21251put('EGYPTIAN_HIEROGLYPH_S014B, 'codepoint, 0x132E2);
21252put('EGYPTIAN_HIEROGLYPH_S015, 'codepoint, 0x132E3);
21253put('EGYPTIAN_HIEROGLYPH_S016, 'codepoint, 0x132E4);
21254put('EGYPTIAN_HIEROGLYPH_S017, 'codepoint, 0x132E5);
21255put('EGYPTIAN_HIEROGLYPH_S017A, 'codepoint, 0x132E6);
21256put('EGYPTIAN_HIEROGLYPH_S018, 'codepoint, 0x132E7);
21257put('EGYPTIAN_HIEROGLYPH_S019, 'codepoint, 0x132E8);
21258put('EGYPTIAN_HIEROGLYPH_S020, 'codepoint, 0x132E9);
21259put('EGYPTIAN_HIEROGLYPH_S021, 'codepoint, 0x132EA);
21260put('EGYPTIAN_HIEROGLYPH_S022, 'codepoint, 0x132EB);
21261put('EGYPTIAN_HIEROGLYPH_S023, 'codepoint, 0x132EC);
21262put('EGYPTIAN_HIEROGLYPH_S024, 'codepoint, 0x132ED);
21263put('EGYPTIAN_HIEROGLYPH_S025, 'codepoint, 0x132EE);
21264put('EGYPTIAN_HIEROGLYPH_S026, 'codepoint, 0x132EF);
21265put('EGYPTIAN_HIEROGLYPH_S026A, 'codepoint, 0x132F0);
21266put('EGYPTIAN_HIEROGLYPH_S026B, 'codepoint, 0x132F1);
21267put('EGYPTIAN_HIEROGLYPH_S027, 'codepoint, 0x132F2);
21268put('EGYPTIAN_HIEROGLYPH_S028, 'codepoint, 0x132F3);
21269put('EGYPTIAN_HIEROGLYPH_S029, 'codepoint, 0x132F4);
21270put('EGYPTIAN_HIEROGLYPH_S030, 'codepoint, 0x132F5);
21271put('EGYPTIAN_HIEROGLYPH_S031, 'codepoint, 0x132F6);
21272put('EGYPTIAN_HIEROGLYPH_S032, 'codepoint, 0x132F7);
21273put('EGYPTIAN_HIEROGLYPH_S033, 'codepoint, 0x132F8);
21274put('EGYPTIAN_HIEROGLYPH_S034, 'codepoint, 0x132F9);
21275put('EGYPTIAN_HIEROGLYPH_S035, 'codepoint, 0x132FA);
21276put('EGYPTIAN_HIEROGLYPH_S035A, 'codepoint, 0x132FB);
21277put('EGYPTIAN_HIEROGLYPH_S036, 'codepoint, 0x132FC);
21278put('EGYPTIAN_HIEROGLYPH_S037, 'codepoint, 0x132FD);
21279put('EGYPTIAN_HIEROGLYPH_S038, 'codepoint, 0x132FE);
21280put('EGYPTIAN_HIEROGLYPH_S039, 'codepoint, 0x132FF);
21281put('EGYPTIAN_HIEROGLYPH_S040, 'codepoint, 0x13300);
21282put('EGYPTIAN_HIEROGLYPH_S041, 'codepoint, 0x13301);
21283put('EGYPTIAN_HIEROGLYPH_S042, 'codepoint, 0x13302);
21284put('EGYPTIAN_HIEROGLYPH_S043, 'codepoint, 0x13303);
21285put('EGYPTIAN_HIEROGLYPH_S044, 'codepoint, 0x13304);
21286put('EGYPTIAN_HIEROGLYPH_S045, 'codepoint, 0x13305);
21287put('EGYPTIAN_HIEROGLYPH_S046, 'codepoint, 0x13306);
21288put('EGYPTIAN_HIEROGLYPH_T001, 'codepoint, 0x13307);
21289put('EGYPTIAN_HIEROGLYPH_T002, 'codepoint, 0x13308);
21290put('EGYPTIAN_HIEROGLYPH_T003, 'codepoint, 0x13309);
21291put('EGYPTIAN_HIEROGLYPH_T003A, 'codepoint, 0x1330A);
21292put('EGYPTIAN_HIEROGLYPH_T004, 'codepoint, 0x1330B);
21293put('EGYPTIAN_HIEROGLYPH_T005, 'codepoint, 0x1330C);
21294put('EGYPTIAN_HIEROGLYPH_T006, 'codepoint, 0x1330D);
21295put('EGYPTIAN_HIEROGLYPH_T007, 'codepoint, 0x1330E);
21296put('EGYPTIAN_HIEROGLYPH_T007A, 'codepoint, 0x1330F);
21297put('EGYPTIAN_HIEROGLYPH_T008, 'codepoint, 0x13310);
21298put('EGYPTIAN_HIEROGLYPH_T008A, 'codepoint, 0x13311);
21299put('EGYPTIAN_HIEROGLYPH_T009, 'codepoint, 0x13312);
21300put('EGYPTIAN_HIEROGLYPH_T009A, 'codepoint, 0x13313);
21301put('EGYPTIAN_HIEROGLYPH_T010, 'codepoint, 0x13314);
21302put('EGYPTIAN_HIEROGLYPH_T011, 'codepoint, 0x13315);
21303put('EGYPTIAN_HIEROGLYPH_T011A, 'codepoint, 0x13316);
21304put('EGYPTIAN_HIEROGLYPH_T012, 'codepoint, 0x13317);
21305put('EGYPTIAN_HIEROGLYPH_T013, 'codepoint, 0x13318);
21306put('EGYPTIAN_HIEROGLYPH_T014, 'codepoint, 0x13319);
21307put('EGYPTIAN_HIEROGLYPH_T015, 'codepoint, 0x1331A);
21308put('EGYPTIAN_HIEROGLYPH_T016, 'codepoint, 0x1331B);
21309put('EGYPTIAN_HIEROGLYPH_T016A, 'codepoint, 0x1331C);
21310put('EGYPTIAN_HIEROGLYPH_T017, 'codepoint, 0x1331D);
21311put('EGYPTIAN_HIEROGLYPH_T018, 'codepoint, 0x1331E);
21312put('EGYPTIAN_HIEROGLYPH_T019, 'codepoint, 0x1331F);
21313put('EGYPTIAN_HIEROGLYPH_T020, 'codepoint, 0x13320);
21314put('EGYPTIAN_HIEROGLYPH_T021, 'codepoint, 0x13321);
21315put('EGYPTIAN_HIEROGLYPH_T022, 'codepoint, 0x13322);
21316put('EGYPTIAN_HIEROGLYPH_T023, 'codepoint, 0x13323);
21317put('EGYPTIAN_HIEROGLYPH_T024, 'codepoint, 0x13324);
21318put('EGYPTIAN_HIEROGLYPH_T025, 'codepoint, 0x13325);
21319put('EGYPTIAN_HIEROGLYPH_T026, 'codepoint, 0x13326);
21320put('EGYPTIAN_HIEROGLYPH_T027, 'codepoint, 0x13327);
21321put('EGYPTIAN_HIEROGLYPH_T028, 'codepoint, 0x13328);
21322put('EGYPTIAN_HIEROGLYPH_T029, 'codepoint, 0x13329);
21323put('EGYPTIAN_HIEROGLYPH_T030, 'codepoint, 0x1332A);
21324put('EGYPTIAN_HIEROGLYPH_T031, 'codepoint, 0x1332B);
21325put('EGYPTIAN_HIEROGLYPH_T032, 'codepoint, 0x1332C);
21326put('EGYPTIAN_HIEROGLYPH_T032A, 'codepoint, 0x1332D);
21327put('EGYPTIAN_HIEROGLYPH_T033, 'codepoint, 0x1332E);
21328put('EGYPTIAN_HIEROGLYPH_T033A, 'codepoint, 0x1332F);
21329put('EGYPTIAN_HIEROGLYPH_T034, 'codepoint, 0x13330);
21330put('EGYPTIAN_HIEROGLYPH_T035, 'codepoint, 0x13331);
21331put('EGYPTIAN_HIEROGLYPH_T036, 'codepoint, 0x13332);
21332put('EGYPTIAN_HIEROGLYPH_U001, 'codepoint, 0x13333);
21333put('EGYPTIAN_HIEROGLYPH_U002, 'codepoint, 0x13334);
21334put('EGYPTIAN_HIEROGLYPH_U003, 'codepoint, 0x13335);
21335put('EGYPTIAN_HIEROGLYPH_U004, 'codepoint, 0x13336);
21336put('EGYPTIAN_HIEROGLYPH_U005, 'codepoint, 0x13337);
21337put('EGYPTIAN_HIEROGLYPH_U006, 'codepoint, 0x13338);
21338put('EGYPTIAN_HIEROGLYPH_U006A, 'codepoint, 0x13339);
21339put('EGYPTIAN_HIEROGLYPH_U006B, 'codepoint, 0x1333A);
21340put('EGYPTIAN_HIEROGLYPH_U007, 'codepoint, 0x1333B);
21341put('EGYPTIAN_HIEROGLYPH_U008, 'codepoint, 0x1333C);
21342put('EGYPTIAN_HIEROGLYPH_U009, 'codepoint, 0x1333D);
21343put('EGYPTIAN_HIEROGLYPH_U010, 'codepoint, 0x1333E);
21344put('EGYPTIAN_HIEROGLYPH_U011, 'codepoint, 0x1333F);
21345put('EGYPTIAN_HIEROGLYPH_U012, 'codepoint, 0x13340);
21346put('EGYPTIAN_HIEROGLYPH_U013, 'codepoint, 0x13341);
21347put('EGYPTIAN_HIEROGLYPH_U014, 'codepoint, 0x13342);
21348put('EGYPTIAN_HIEROGLYPH_U015, 'codepoint, 0x13343);
21349put('EGYPTIAN_HIEROGLYPH_U016, 'codepoint, 0x13344);
21350put('EGYPTIAN_HIEROGLYPH_U017, 'codepoint, 0x13345);
21351put('EGYPTIAN_HIEROGLYPH_U018, 'codepoint, 0x13346);
21352put('EGYPTIAN_HIEROGLYPH_U019, 'codepoint, 0x13347);
21353put('EGYPTIAN_HIEROGLYPH_U020, 'codepoint, 0x13348);
21354put('EGYPTIAN_HIEROGLYPH_U021, 'codepoint, 0x13349);
21355put('EGYPTIAN_HIEROGLYPH_U022, 'codepoint, 0x1334A);
21356put('EGYPTIAN_HIEROGLYPH_U023, 'codepoint, 0x1334B);
21357put('EGYPTIAN_HIEROGLYPH_U023A, 'codepoint, 0x1334C);
21358put('EGYPTIAN_HIEROGLYPH_U024, 'codepoint, 0x1334D);
21359put('EGYPTIAN_HIEROGLYPH_U025, 'codepoint, 0x1334E);
21360put('EGYPTIAN_HIEROGLYPH_U026, 'codepoint, 0x1334F);
21361put('EGYPTIAN_HIEROGLYPH_U027, 'codepoint, 0x13350);
21362put('EGYPTIAN_HIEROGLYPH_U028, 'codepoint, 0x13351);
21363put('EGYPTIAN_HIEROGLYPH_U029, 'codepoint, 0x13352);
21364put('EGYPTIAN_HIEROGLYPH_U029A, 'codepoint, 0x13353);
21365put('EGYPTIAN_HIEROGLYPH_U030, 'codepoint, 0x13354);
21366put('EGYPTIAN_HIEROGLYPH_U031, 'codepoint, 0x13355);
21367put('EGYPTIAN_HIEROGLYPH_U032, 'codepoint, 0x13356);
21368put('EGYPTIAN_HIEROGLYPH_U032A, 'codepoint, 0x13357);
21369put('EGYPTIAN_HIEROGLYPH_U033, 'codepoint, 0x13358);
21370put('EGYPTIAN_HIEROGLYPH_U034, 'codepoint, 0x13359);
21371put('EGYPTIAN_HIEROGLYPH_U035, 'codepoint, 0x1335A);
21372put('EGYPTIAN_HIEROGLYPH_U036, 'codepoint, 0x1335B);
21373put('EGYPTIAN_HIEROGLYPH_U037, 'codepoint, 0x1335C);
21374put('EGYPTIAN_HIEROGLYPH_U038, 'codepoint, 0x1335D);
21375put('EGYPTIAN_HIEROGLYPH_U039, 'codepoint, 0x1335E);
21376put('EGYPTIAN_HIEROGLYPH_U040, 'codepoint, 0x1335F);
21377put('EGYPTIAN_HIEROGLYPH_U041, 'codepoint, 0x13360);
21378put('EGYPTIAN_HIEROGLYPH_U042, 'codepoint, 0x13361);
21379put('EGYPTIAN_HIEROGLYPH_V001, 'codepoint, 0x13362);
21380put('EGYPTIAN_HIEROGLYPH_V001A, 'codepoint, 0x13363);
21381put('EGYPTIAN_HIEROGLYPH_V001B, 'codepoint, 0x13364);
21382put('EGYPTIAN_HIEROGLYPH_V001C, 'codepoint, 0x13365);
21383put('EGYPTIAN_HIEROGLYPH_V001D, 'codepoint, 0x13366);
21384put('EGYPTIAN_HIEROGLYPH_V001E, 'codepoint, 0x13367);
21385put('EGYPTIAN_HIEROGLYPH_V001F, 'codepoint, 0x13368);
21386put('EGYPTIAN_HIEROGLYPH_V001G, 'codepoint, 0x13369);
21387put('EGYPTIAN_HIEROGLYPH_V001H, 'codepoint, 0x1336A);
21388put('EGYPTIAN_HIEROGLYPH_V001I, 'codepoint, 0x1336B);
21389put('EGYPTIAN_HIEROGLYPH_V002, 'codepoint, 0x1336C);
21390put('EGYPTIAN_HIEROGLYPH_V002A, 'codepoint, 0x1336D);
21391put('EGYPTIAN_HIEROGLYPH_V003, 'codepoint, 0x1336E);
21392put('EGYPTIAN_HIEROGLYPH_V004, 'codepoint, 0x1336F);
21393put('EGYPTIAN_HIEROGLYPH_V005, 'codepoint, 0x13370);
21394put('EGYPTIAN_HIEROGLYPH_V006, 'codepoint, 0x13371);
21395put('EGYPTIAN_HIEROGLYPH_V007, 'codepoint, 0x13372);
21396put('EGYPTIAN_HIEROGLYPH_V007A, 'codepoint, 0x13373);
21397put('EGYPTIAN_HIEROGLYPH_V007B, 'codepoint, 0x13374);
21398put('EGYPTIAN_HIEROGLYPH_V008, 'codepoint, 0x13375);
21399put('EGYPTIAN_HIEROGLYPH_V009, 'codepoint, 0x13376);
21400put('EGYPTIAN_HIEROGLYPH_V010, 'codepoint, 0x13377);
21401put('EGYPTIAN_HIEROGLYPH_V011, 'codepoint, 0x13378);
21402put('EGYPTIAN_HIEROGLYPH_V011A, 'codepoint, 0x13379);
21403put('EGYPTIAN_HIEROGLYPH_V011B, 'codepoint, 0x1337A);
21404put('EGYPTIAN_HIEROGLYPH_V011C, 'codepoint, 0x1337B);
21405put('EGYPTIAN_HIEROGLYPH_V012, 'codepoint, 0x1337C);
21406put('EGYPTIAN_HIEROGLYPH_V012A, 'codepoint, 0x1337D);
21407put('EGYPTIAN_HIEROGLYPH_V012B, 'codepoint, 0x1337E);
21408put('EGYPTIAN_HIEROGLYPH_V013, 'codepoint, 0x1337F);
21409put('EGYPTIAN_HIEROGLYPH_V014, 'codepoint, 0x13380);
21410put('EGYPTIAN_HIEROGLYPH_V015, 'codepoint, 0x13381);
21411put('EGYPTIAN_HIEROGLYPH_V016, 'codepoint, 0x13382);
21412put('EGYPTIAN_HIEROGLYPH_V017, 'codepoint, 0x13383);
21413put('EGYPTIAN_HIEROGLYPH_V018, 'codepoint, 0x13384);
21414put('EGYPTIAN_HIEROGLYPH_V019, 'codepoint, 0x13385);
21415put('EGYPTIAN_HIEROGLYPH_V020, 'codepoint, 0x13386);
21416put('EGYPTIAN_HIEROGLYPH_V020A, 'codepoint, 0x13387);
21417put('EGYPTIAN_HIEROGLYPH_V020B, 'codepoint, 0x13388);
21418put('EGYPTIAN_HIEROGLYPH_V020C, 'codepoint, 0x13389);
21419put('EGYPTIAN_HIEROGLYPH_V020D, 'codepoint, 0x1338A);
21420put('EGYPTIAN_HIEROGLYPH_V020E, 'codepoint, 0x1338B);
21421put('EGYPTIAN_HIEROGLYPH_V020F, 'codepoint, 0x1338C);
21422put('EGYPTIAN_HIEROGLYPH_V020G, 'codepoint, 0x1338D);
21423put('EGYPTIAN_HIEROGLYPH_V020H, 'codepoint, 0x1338E);
21424put('EGYPTIAN_HIEROGLYPH_V020I, 'codepoint, 0x1338F);
21425put('EGYPTIAN_HIEROGLYPH_V020J, 'codepoint, 0x13390);
21426put('EGYPTIAN_HIEROGLYPH_V020K, 'codepoint, 0x13391);
21427put('EGYPTIAN_HIEROGLYPH_V020L, 'codepoint, 0x13392);
21428put('EGYPTIAN_HIEROGLYPH_V021, 'codepoint, 0x13393);
21429put('EGYPTIAN_HIEROGLYPH_V022, 'codepoint, 0x13394);
21430put('EGYPTIAN_HIEROGLYPH_V023, 'codepoint, 0x13395);
21431put('EGYPTIAN_HIEROGLYPH_V023A, 'codepoint, 0x13396);
21432put('EGYPTIAN_HIEROGLYPH_V024, 'codepoint, 0x13397);
21433put('EGYPTIAN_HIEROGLYPH_V025, 'codepoint, 0x13398);
21434put('EGYPTIAN_HIEROGLYPH_V026, 'codepoint, 0x13399);
21435put('EGYPTIAN_HIEROGLYPH_V027, 'codepoint, 0x1339A);
21436put('EGYPTIAN_HIEROGLYPH_V028, 'codepoint, 0x1339B);
21437put('EGYPTIAN_HIEROGLYPH_V028A, 'codepoint, 0x1339C);
21438put('EGYPTIAN_HIEROGLYPH_V029, 'codepoint, 0x1339D);
21439put('EGYPTIAN_HIEROGLYPH_V029A, 'codepoint, 0x1339E);
21440put('EGYPTIAN_HIEROGLYPH_V030, 'codepoint, 0x1339F);
21441put('EGYPTIAN_HIEROGLYPH_V030A, 'codepoint, 0x133A0);
21442put('EGYPTIAN_HIEROGLYPH_V031, 'codepoint, 0x133A1);
21443put('EGYPTIAN_HIEROGLYPH_V031A, 'codepoint, 0x133A2);
21444put('EGYPTIAN_HIEROGLYPH_V032, 'codepoint, 0x133A3);
21445put('EGYPTIAN_HIEROGLYPH_V033, 'codepoint, 0x133A4);
21446put('EGYPTIAN_HIEROGLYPH_V033A, 'codepoint, 0x133A5);
21447put('EGYPTIAN_HIEROGLYPH_V034, 'codepoint, 0x133A6);
21448put('EGYPTIAN_HIEROGLYPH_V035, 'codepoint, 0x133A7);
21449put('EGYPTIAN_HIEROGLYPH_V036, 'codepoint, 0x133A8);
21450put('EGYPTIAN_HIEROGLYPH_V037, 'codepoint, 0x133A9);
21451put('EGYPTIAN_HIEROGLYPH_V037A, 'codepoint, 0x133AA);
21452put('EGYPTIAN_HIEROGLYPH_V038, 'codepoint, 0x133AB);
21453put('EGYPTIAN_HIEROGLYPH_V039, 'codepoint, 0x133AC);
21454put('EGYPTIAN_HIEROGLYPH_V040, 'codepoint, 0x133AD);
21455put('EGYPTIAN_HIEROGLYPH_V040A, 'codepoint, 0x133AE);
21456put('EGYPTIAN_HIEROGLYPH_W001, 'codepoint, 0x133AF);
21457put('EGYPTIAN_HIEROGLYPH_W002, 'codepoint, 0x133B0);
21458put('EGYPTIAN_HIEROGLYPH_W003, 'codepoint, 0x133B1);
21459put('EGYPTIAN_HIEROGLYPH_W003A, 'codepoint, 0x133B2);
21460put('EGYPTIAN_HIEROGLYPH_W004, 'codepoint, 0x133B3);
21461put('EGYPTIAN_HIEROGLYPH_W005, 'codepoint, 0x133B4);
21462put('EGYPTIAN_HIEROGLYPH_W006, 'codepoint, 0x133B5);
21463put('EGYPTIAN_HIEROGLYPH_W007, 'codepoint, 0x133B6);
21464put('EGYPTIAN_HIEROGLYPH_W008, 'codepoint, 0x133B7);
21465put('EGYPTIAN_HIEROGLYPH_W009, 'codepoint, 0x133B8);
21466put('EGYPTIAN_HIEROGLYPH_W009A, 'codepoint, 0x133B9);
21467put('EGYPTIAN_HIEROGLYPH_W010, 'codepoint, 0x133BA);
21468put('EGYPTIAN_HIEROGLYPH_W010A, 'codepoint, 0x133BB);
21469put('EGYPTIAN_HIEROGLYPH_W011, 'codepoint, 0x133BC);
21470put('EGYPTIAN_HIEROGLYPH_W012, 'codepoint, 0x133BD);
21471put('EGYPTIAN_HIEROGLYPH_W013, 'codepoint, 0x133BE);
21472put('EGYPTIAN_HIEROGLYPH_W014, 'codepoint, 0x133BF);
21473put('EGYPTIAN_HIEROGLYPH_W014A, 'codepoint, 0x133C0);
21474put('EGYPTIAN_HIEROGLYPH_W015, 'codepoint, 0x133C1);
21475put('EGYPTIAN_HIEROGLYPH_W016, 'codepoint, 0x133C2);
21476put('EGYPTIAN_HIEROGLYPH_W017, 'codepoint, 0x133C3);
21477put('EGYPTIAN_HIEROGLYPH_W017A, 'codepoint, 0x133C4);
21478put('EGYPTIAN_HIEROGLYPH_W018, 'codepoint, 0x133C5);
21479put('EGYPTIAN_HIEROGLYPH_W018A, 'codepoint, 0x133C6);
21480put('EGYPTIAN_HIEROGLYPH_W019, 'codepoint, 0x133C7);
21481put('EGYPTIAN_HIEROGLYPH_W020, 'codepoint, 0x133C8);
21482put('EGYPTIAN_HIEROGLYPH_W021, 'codepoint, 0x133C9);
21483put('EGYPTIAN_HIEROGLYPH_W022, 'codepoint, 0x133CA);
21484put('EGYPTIAN_HIEROGLYPH_W023, 'codepoint, 0x133CB);
21485put('EGYPTIAN_HIEROGLYPH_W024, 'codepoint, 0x133CC);
21486put('EGYPTIAN_HIEROGLYPH_W024A, 'codepoint, 0x133CD);
21487put('EGYPTIAN_HIEROGLYPH_W025, 'codepoint, 0x133CE);
21488put('EGYPTIAN_HIEROGLYPH_X001, 'codepoint, 0x133CF);
21489put('EGYPTIAN_HIEROGLYPH_X002, 'codepoint, 0x133D0);
21490put('EGYPTIAN_HIEROGLYPH_X003, 'codepoint, 0x133D1);
21491put('EGYPTIAN_HIEROGLYPH_X004, 'codepoint, 0x133D2);
21492put('EGYPTIAN_HIEROGLYPH_X004A, 'codepoint, 0x133D3);
21493put('EGYPTIAN_HIEROGLYPH_X004B, 'codepoint, 0x133D4);
21494put('EGYPTIAN_HIEROGLYPH_X005, 'codepoint, 0x133D5);
21495put('EGYPTIAN_HIEROGLYPH_X006, 'codepoint, 0x133D6);
21496put('EGYPTIAN_HIEROGLYPH_X006A, 'codepoint, 0x133D7);
21497put('EGYPTIAN_HIEROGLYPH_X007, 'codepoint, 0x133D8);
21498put('EGYPTIAN_HIEROGLYPH_X008, 'codepoint, 0x133D9);
21499put('EGYPTIAN_HIEROGLYPH_X008A, 'codepoint, 0x133DA);
21500put('EGYPTIAN_HIEROGLYPH_Y001, 'codepoint, 0x133DB);
21501put('EGYPTIAN_HIEROGLYPH_Y001A, 'codepoint, 0x133DC);
21502put('EGYPTIAN_HIEROGLYPH_Y002, 'codepoint, 0x133DD);
21503put('EGYPTIAN_HIEROGLYPH_Y003, 'codepoint, 0x133DE);
21504put('EGYPTIAN_HIEROGLYPH_Y004, 'codepoint, 0x133DF);
21505put('EGYPTIAN_HIEROGLYPH_Y005, 'codepoint, 0x133E0);
21506put('EGYPTIAN_HIEROGLYPH_Y006, 'codepoint, 0x133E1);
21507put('EGYPTIAN_HIEROGLYPH_Y007, 'codepoint, 0x133E2);
21508put('EGYPTIAN_HIEROGLYPH_Y008, 'codepoint, 0x133E3);
21509put('EGYPTIAN_HIEROGLYPH_Z001, 'codepoint, 0x133E4);
21510put('EGYPTIAN_HIEROGLYPH_Z002, 'codepoint, 0x133E5);
21511put('EGYPTIAN_HIEROGLYPH_Z002A, 'codepoint, 0x133E6);
21512put('EGYPTIAN_HIEROGLYPH_Z002B, 'codepoint, 0x133E7);
21513put('EGYPTIAN_HIEROGLYPH_Z002C, 'codepoint, 0x133E8);
21514put('EGYPTIAN_HIEROGLYPH_Z002D, 'codepoint, 0x133E9);
21515put('EGYPTIAN_HIEROGLYPH_Z003, 'codepoint, 0x133EA);
21516put('EGYPTIAN_HIEROGLYPH_Z003A, 'codepoint, 0x133EB);
21517put('EGYPTIAN_HIEROGLYPH_Z003B, 'codepoint, 0x133EC);
21518put('EGYPTIAN_HIEROGLYPH_Z004, 'codepoint, 0x133ED);
21519put('EGYPTIAN_HIEROGLYPH_Z004A, 'codepoint, 0x133EE);
21520put('EGYPTIAN_HIEROGLYPH_Z005, 'codepoint, 0x133EF);
21521put('EGYPTIAN_HIEROGLYPH_Z005A, 'codepoint, 0x133F0);
21522put('EGYPTIAN_HIEROGLYPH_Z006, 'codepoint, 0x133F1);
21523put('EGYPTIAN_HIEROGLYPH_Z007, 'codepoint, 0x133F2);
21524put('EGYPTIAN_HIEROGLYPH_Z008, 'codepoint, 0x133F3);
21525put('EGYPTIAN_HIEROGLYPH_Z009, 'codepoint, 0x133F4);
21526put('EGYPTIAN_HIEROGLYPH_Z010, 'codepoint, 0x133F5);
21527put('EGYPTIAN_HIEROGLYPH_Z011, 'codepoint, 0x133F6);
21528put('EGYPTIAN_HIEROGLYPH_Z012, 'codepoint, 0x133F7);
21529put('EGYPTIAN_HIEROGLYPH_Z013, 'codepoint, 0x133F8);
21530put('EGYPTIAN_HIEROGLYPH_Z014, 'codepoint, 0x133F9);
21531put('EGYPTIAN_HIEROGLYPH_Z015, 'codepoint, 0x133FA);
21532put('EGYPTIAN_HIEROGLYPH_Z015A, 'codepoint, 0x133FB);
21533put('EGYPTIAN_HIEROGLYPH_Z015B, 'codepoint, 0x133FC);
21534put('EGYPTIAN_HIEROGLYPH_Z015C, 'codepoint, 0x133FD);
21535put('EGYPTIAN_HIEROGLYPH_Z015D, 'codepoint, 0x133FE);
21536put('EGYPTIAN_HIEROGLYPH_Z015E, 'codepoint, 0x133FF);
21537put('EGYPTIAN_HIEROGLYPH_Z015F, 'codepoint, 0x13400);
21538put('EGYPTIAN_HIEROGLYPH_Z015G, 'codepoint, 0x13401);
21539put('EGYPTIAN_HIEROGLYPH_Z015H, 'codepoint, 0x13402);
21540put('EGYPTIAN_HIEROGLYPH_Z015I, 'codepoint, 0x13403);
21541put('EGYPTIAN_HIEROGLYPH_Z016, 'codepoint, 0x13404);
21542put('EGYPTIAN_HIEROGLYPH_Z016A, 'codepoint, 0x13405);
21543put('EGYPTIAN_HIEROGLYPH_Z016B, 'codepoint, 0x13406);
21544put('EGYPTIAN_HIEROGLYPH_Z016C, 'codepoint, 0x13407);
21545put('EGYPTIAN_HIEROGLYPH_Z016D, 'codepoint, 0x13408);
21546put('EGYPTIAN_HIEROGLYPH_Z016E, 'codepoint, 0x13409);
21547put('EGYPTIAN_HIEROGLYPH_Z016F, 'codepoint, 0x1340A);
21548put('EGYPTIAN_HIEROGLYPH_Z016G, 'codepoint, 0x1340B);
21549put('EGYPTIAN_HIEROGLYPH_Z016H, 'codepoint, 0x1340C);
21550put('EGYPTIAN_HIEROGLYPH_AA001, 'codepoint, 0x1340D);
21551put('EGYPTIAN_HIEROGLYPH_AA002, 'codepoint, 0x1340E);
21552put('EGYPTIAN_HIEROGLYPH_AA003, 'codepoint, 0x1340F);
21553put('EGYPTIAN_HIEROGLYPH_AA004, 'codepoint, 0x13410);
21554put('EGYPTIAN_HIEROGLYPH_AA005, 'codepoint, 0x13411);
21555put('EGYPTIAN_HIEROGLYPH_AA006, 'codepoint, 0x13412);
21556put('EGYPTIAN_HIEROGLYPH_AA007, 'codepoint, 0x13413);
21557put('EGYPTIAN_HIEROGLYPH_AA007A, 'codepoint, 0x13414);
21558put('EGYPTIAN_HIEROGLYPH_AA007B, 'codepoint, 0x13415);
21559put('EGYPTIAN_HIEROGLYPH_AA008, 'codepoint, 0x13416);
21560put('EGYPTIAN_HIEROGLYPH_AA009, 'codepoint, 0x13417);
21561put('EGYPTIAN_HIEROGLYPH_AA010, 'codepoint, 0x13418);
21562put('EGYPTIAN_HIEROGLYPH_AA011, 'codepoint, 0x13419);
21563put('EGYPTIAN_HIEROGLYPH_AA012, 'codepoint, 0x1341A);
21564put('EGYPTIAN_HIEROGLYPH_AA013, 'codepoint, 0x1341B);
21565put('EGYPTIAN_HIEROGLYPH_AA014, 'codepoint, 0x1341C);
21566put('EGYPTIAN_HIEROGLYPH_AA015, 'codepoint, 0x1341D);
21567put('EGYPTIAN_HIEROGLYPH_AA016, 'codepoint, 0x1341E);
21568put('EGYPTIAN_HIEROGLYPH_AA017, 'codepoint, 0x1341F);
21569put('EGYPTIAN_HIEROGLYPH_AA018, 'codepoint, 0x13420);
21570put('EGYPTIAN_HIEROGLYPH_AA019, 'codepoint, 0x13421);
21571put('EGYPTIAN_HIEROGLYPH_AA020, 'codepoint, 0x13422);
21572put('EGYPTIAN_HIEROGLYPH_AA021, 'codepoint, 0x13423);
21573put('EGYPTIAN_HIEROGLYPH_AA022, 'codepoint, 0x13424);
21574put('EGYPTIAN_HIEROGLYPH_AA023, 'codepoint, 0x13425);
21575put('EGYPTIAN_HIEROGLYPH_AA024, 'codepoint, 0x13426);
21576put('EGYPTIAN_HIEROGLYPH_AA025, 'codepoint, 0x13427);
21577put('EGYPTIAN_HIEROGLYPH_AA026, 'codepoint, 0x13428);
21578put('EGYPTIAN_HIEROGLYPH_AA027, 'codepoint, 0x13429);
21579put('EGYPTIAN_HIEROGLYPH_AA028, 'codepoint, 0x1342A);
21580put('EGYPTIAN_HIEROGLYPH_AA029, 'codepoint, 0x1342B);
21581put('EGYPTIAN_HIEROGLYPH_AA030, 'codepoint, 0x1342C);
21582put('EGYPTIAN_HIEROGLYPH_AA031, 'codepoint, 0x1342D);
21583put('EGYPTIAN_HIEROGLYPH_AA032, 'codepoint, 0x1342E);
21584put('BAMUM_LETTER_PHASE_A_NGKUE_MFON, 'codepoint, 0x16800);
21585put('BAMUM_LETTER_PHASE_A_GBIEE_FON, 'codepoint, 0x16801);
21586put('BAMUM_LETTER_PHASE_A_PON_MFON_PIPAEMGBIEE, 'codepoint, 0x16802);
21587put('BAMUM_LETTER_PHASE_A_PON_MFON_PIPAEMBA, 'codepoint, 0x16803);
21588put('BAMUM_LETTER_PHASE_A_NAA_MFON, 'codepoint, 0x16804);
21589put('BAMUM_LETTER_PHASE_A_SHUENSHUET, 'codepoint, 0x16805);
21590put('BAMUM_LETTER_PHASE_A_TITA_MFON, 'codepoint, 0x16806);
21591put('BAMUM_LETTER_PHASE_A_NZA_MFON, 'codepoint, 0x16807);
21592put('BAMUM_LETTER_PHASE_A_SHINDA_PA_NJI, 'codepoint, 0x16808);
21593put('BAMUM_LETTER_PHASE_A_PON_PA_NJI_PIPAEMGBIEE, 'codepoint, 0x16809);
21594put('BAMUM_LETTER_PHASE_A_PON_PA_NJI_PIPAEMBA, 'codepoint, 0x1680A);
21595put('BAMUM_LETTER_PHASE_A_MAEMBGBIEE, 'codepoint, 0x1680B);
21596put('BAMUM_LETTER_PHASE_A_TU_MAEMBA, 'codepoint, 0x1680C);
21597put('BAMUM_LETTER_PHASE_A_NGANGU, 'codepoint, 0x1680D);
21598put('BAMUM_LETTER_PHASE_A_MAEMVEUX, 'codepoint, 0x1680E);
21599put('BAMUM_LETTER_PHASE_A_MANSUAE, 'codepoint, 0x1680F);
21600put('BAMUM_LETTER_PHASE_A_MVEUAENGAM, 'codepoint, 0x16810);
21601put('BAMUM_LETTER_PHASE_A_SEUNYAM, 'codepoint, 0x16811);
21602put('BAMUM_LETTER_PHASE_A_NTOQPEN, 'codepoint, 0x16812);
21603put('BAMUM_LETTER_PHASE_A_KEUKEUTNDA, 'codepoint, 0x16813);
21604put('BAMUM_LETTER_PHASE_A_NKINDI, 'codepoint, 0x16814);
21605put('BAMUM_LETTER_PHASE_A_SUU, 'codepoint, 0x16815);
21606put('BAMUM_LETTER_PHASE_A_NGKUENZEUM, 'codepoint, 0x16816);
21607put('BAMUM_LETTER_PHASE_A_LAPAQ, 'codepoint, 0x16817);
21608put('BAMUM_LETTER_PHASE_A_LET_KUT, 'codepoint, 0x16818);
21609put('BAMUM_LETTER_PHASE_A_NTAP_MFAA, 'codepoint, 0x16819);
21610put('BAMUM_LETTER_PHASE_A_MAEKEUP, 'codepoint, 0x1681A);
21611put('BAMUM_LETTER_PHASE_A_PASHAE, 'codepoint, 0x1681B);
21612put('BAMUM_LETTER_PHASE_A_GHEUAERAE, 'codepoint, 0x1681C);
21613put('BAMUM_LETTER_PHASE_A_PAMSHAE, 'codepoint, 0x1681D);
21614put('BAMUM_LETTER_PHASE_A_MON_NGGEUAET, 'codepoint, 0x1681E);
21615put('BAMUM_LETTER_PHASE_A_NZUN_MEUT, 'codepoint, 0x1681F);
21616put('BAMUM_LETTER_PHASE_A_U_YUQ_NAE, 'codepoint, 0x16820);
21617put('BAMUM_LETTER_PHASE_A_GHEUAEGHEUAE, 'codepoint, 0x16821);
21618put('BAMUM_LETTER_PHASE_A_NTAP_NTAA, 'codepoint, 0x16822);
21619put('BAMUM_LETTER_PHASE_A_SISA, 'codepoint, 0x16823);
21620put('BAMUM_LETTER_PHASE_A_MGBASA, 'codepoint, 0x16824);
21621put('BAMUM_LETTER_PHASE_A_MEUNJOMNDEUQ, 'codepoint, 0x16825);
21622put('BAMUM_LETTER_PHASE_A_MOOMPUQ, 'codepoint, 0x16826);
21623put('BAMUM_LETTER_PHASE_A_KAFA, 'codepoint, 0x16827);
21624put('BAMUM_LETTER_PHASE_A_PA_LEERAEWA, 'codepoint, 0x16828);
21625put('BAMUM_LETTER_PHASE_A_NDA_LEERAEWA, 'codepoint, 0x16829);
21626put('BAMUM_LETTER_PHASE_A_PET, 'codepoint, 0x1682A);
21627put('BAMUM_LETTER_PHASE_A_MAEMKPEN, 'codepoint, 0x1682B);
21628put('BAMUM_LETTER_PHASE_A_NIKA, 'codepoint, 0x1682C);
21629put('BAMUM_LETTER_PHASE_A_PUP, 'codepoint, 0x1682D);
21630put('BAMUM_LETTER_PHASE_A_TUAEP, 'codepoint, 0x1682E);
21631put('BAMUM_LETTER_PHASE_A_LUAEP, 'codepoint, 0x1682F);
21632put('BAMUM_LETTER_PHASE_A_SONJAM, 'codepoint, 0x16830);
21633put('BAMUM_LETTER_PHASE_A_TEUTEUWEN, 'codepoint, 0x16831);
21634put('BAMUM_LETTER_PHASE_A_MAENYI, 'codepoint, 0x16832);
21635put('BAMUM_LETTER_PHASE_A_KET, 'codepoint, 0x16833);
21636put('BAMUM_LETTER_PHASE_A_NDAANGGEUAET, 'codepoint, 0x16834);
21637put('BAMUM_LETTER_PHASE_A_KUOQ, 'codepoint, 0x16835);
21638put('BAMUM_LETTER_PHASE_A_MOOMEUT, 'codepoint, 0x16836);
21639put('BAMUM_LETTER_PHASE_A_SHUM, 'codepoint, 0x16837);
21640put('BAMUM_LETTER_PHASE_A_LOMMAE, 'codepoint, 0x16838);
21641put('BAMUM_LETTER_PHASE_A_FIRI, 'codepoint, 0x16839);
21642put('BAMUM_LETTER_PHASE_A_ROM, 'codepoint, 0x1683A);
21643put('BAMUM_LETTER_PHASE_A_KPOQ, 'codepoint, 0x1683B);
21644put('BAMUM_LETTER_PHASE_A_SOQ, 'codepoint, 0x1683C);
21645put('BAMUM_LETTER_PHASE_A_MAP_PIEET, 'codepoint, 0x1683D);
21646put('BAMUM_LETTER_PHASE_A_SHIRAE, 'codepoint, 0x1683E);
21647put('BAMUM_LETTER_PHASE_A_NTAP, 'codepoint, 0x1683F);
21648put('BAMUM_LETTER_PHASE_A_SHOQ_NSHUT_YUM, 'codepoint, 0x16840);
21649put('BAMUM_LETTER_PHASE_A_NYIT_MONGKEUAEQ, 'codepoint, 0x16841);
21650put('BAMUM_LETTER_PHASE_A_PAARAE, 'codepoint, 0x16842);
21651put('BAMUM_LETTER_PHASE_A_NKAARAE, 'codepoint, 0x16843);
21652put('BAMUM_LETTER_PHASE_A_UNKNOWN, 'codepoint, 0x16844);
21653put('BAMUM_LETTER_PHASE_A_NGGEN, 'codepoint, 0x16845);
21654put('BAMUM_LETTER_PHASE_A_MAESI, 'codepoint, 0x16846);
21655put('BAMUM_LETTER_PHASE_A_NJAM, 'codepoint, 0x16847);
21656put('BAMUM_LETTER_PHASE_A_MBANYI, 'codepoint, 0x16848);
21657put('BAMUM_LETTER_PHASE_A_NYET, 'codepoint, 0x16849);
21658put('BAMUM_LETTER_PHASE_A_TEUAEN, 'codepoint, 0x1684A);
21659put('BAMUM_LETTER_PHASE_A_SOT, 'codepoint, 0x1684B);
21660put('BAMUM_LETTER_PHASE_A_PAAM, 'codepoint, 0x1684C);
21661put('BAMUM_LETTER_PHASE_A_NSHIEE, 'codepoint, 0x1684D);
21662put('BAMUM_LETTER_PHASE_A_MAEM, 'codepoint, 0x1684E);
21663put('BAMUM_LETTER_PHASE_A_NYI, 'codepoint, 0x1684F);
21664put('BAMUM_LETTER_PHASE_A_KAQ, 'codepoint, 0x16850);
21665put('BAMUM_LETTER_PHASE_A_NSHA, 'codepoint, 0x16851);
21666put('BAMUM_LETTER_PHASE_A_VEE, 'codepoint, 0x16852);
21667put('BAMUM_LETTER_PHASE_A_LU, 'codepoint, 0x16853);
21668put('BAMUM_LETTER_PHASE_A_NEN, 'codepoint, 0x16854);
21669put('BAMUM_LETTER_PHASE_A_NAQ, 'codepoint, 0x16855);
21670put('BAMUM_LETTER_PHASE_A_MBAQ, 'codepoint, 0x16856);
21671put('BAMUM_LETTER_PHASE_B_NSHUET, 'codepoint, 0x16857);
21672put('BAMUM_LETTER_PHASE_B_TU_MAEMGBIEE, 'codepoint, 0x16858);
21673put('BAMUM_LETTER_PHASE_B_SIEE, 'codepoint, 0x16859);
21674put('BAMUM_LETTER_PHASE_B_SET_TU, 'codepoint, 0x1685A);
21675put('BAMUM_LETTER_PHASE_B_LOM_NTEUM, 'codepoint, 0x1685B);
21676put('BAMUM_LETTER_PHASE_B_MBA_MAELEE, 'codepoint, 0x1685C);
21677put('BAMUM_LETTER_PHASE_B_KIEEM, 'codepoint, 0x1685D);
21678put('BAMUM_LETTER_PHASE_B_YEURAE, 'codepoint, 0x1685E);
21679put('BAMUM_LETTER_PHASE_B_MBAARAE, 'codepoint, 0x1685F);
21680put('BAMUM_LETTER_PHASE_B_KAM, 'codepoint, 0x16860);
21681put('BAMUM_LETTER_PHASE_B_PEESHI, 'codepoint, 0x16861);
21682put('BAMUM_LETTER_PHASE_B_YAFU_LEERAEWA, 'codepoint, 0x16862);
21683put('BAMUM_LETTER_PHASE_B_LAM_NSHUT_NYAM, 'codepoint, 0x16863);
21684put('BAMUM_LETTER_PHASE_B_NTIEE_SHEUOQ, 'codepoint, 0x16864);
21685put('BAMUM_LETTER_PHASE_B_NDU_NJAA, 'codepoint, 0x16865);
21686put('BAMUM_LETTER_PHASE_B_GHEUGHEUAEM, 'codepoint, 0x16866);
21687put('BAMUM_LETTER_PHASE_B_PIT, 'codepoint, 0x16867);
21688put('BAMUM_LETTER_PHASE_B_TU_NSIEE, 'codepoint, 0x16868);
21689put('BAMUM_LETTER_PHASE_B_SHET_NJAQ, 'codepoint, 0x16869);
21690put('BAMUM_LETTER_PHASE_B_SHEUAEQTU, 'codepoint, 0x1686A);
21691put('BAMUM_LETTER_PHASE_B_MFON_TEUAEQ, 'codepoint, 0x1686B);
21692put('BAMUM_LETTER_PHASE_B_MBIT_MBAAKET, 'codepoint, 0x1686C);
21693put('BAMUM_LETTER_PHASE_B_NYI_NTEUM, 'codepoint, 0x1686D);
21694put('BAMUM_LETTER_PHASE_B_KEUPUQ, 'codepoint, 0x1686E);
21695put('BAMUM_LETTER_PHASE_B_GHEUGHEN, 'codepoint, 0x1686F);
21696put('BAMUM_LETTER_PHASE_B_KEUYEUX, 'codepoint, 0x16870);
21697put('BAMUM_LETTER_PHASE_B_LAANAE, 'codepoint, 0x16871);
21698put('BAMUM_LETTER_PHASE_B_PARUM, 'codepoint, 0x16872);
21699put('BAMUM_LETTER_PHASE_B_VEUM, 'codepoint, 0x16873);
21700put('BAMUM_LETTER_PHASE_B_NGKINDI_MVOP, 'codepoint, 0x16874);
21701put('BAMUM_LETTER_PHASE_B_NGGEU_MBU, 'codepoint, 0x16875);
21702put('BAMUM_LETTER_PHASE_B_WUAET, 'codepoint, 0x16876);
21703put('BAMUM_LETTER_PHASE_B_SAKEUAE, 'codepoint, 0x16877);
21704put('BAMUM_LETTER_PHASE_B_TAAM, 'codepoint, 0x16878);
21705put('BAMUM_LETTER_PHASE_B_MEUQ, 'codepoint, 0x16879);
21706put('BAMUM_LETTER_PHASE_B_NGGUOQ, 'codepoint, 0x1687A);
21707put('BAMUM_LETTER_PHASE_B_NGGUOQ_LARGE, 'codepoint, 0x1687B);
21708put('BAMUM_LETTER_PHASE_B_MFIYAQ, 'codepoint, 0x1687C);
21709put('BAMUM_LETTER_PHASE_B_SUE, 'codepoint, 0x1687D);
21710put('BAMUM_LETTER_PHASE_B_MBEURI, 'codepoint, 0x1687E);
21711put('BAMUM_LETTER_PHASE_B_MONTIEEN, 'codepoint, 0x1687F);
21712put('BAMUM_LETTER_PHASE_B_NYAEMAE, 'codepoint, 0x16880);
21713put('BAMUM_LETTER_PHASE_B_PUNGAAM, 'codepoint, 0x16881);
21714put('BAMUM_LETTER_PHASE_B_MEUT_NGGEET, 'codepoint, 0x16882);
21715put('BAMUM_LETTER_PHASE_B_FEUX, 'codepoint, 0x16883);
21716put('BAMUM_LETTER_PHASE_B_MBUOQ, 'codepoint, 0x16884);
21717put('BAMUM_LETTER_PHASE_B_FEE, 'codepoint, 0x16885);
21718put('BAMUM_LETTER_PHASE_B_KEUAEM, 'codepoint, 0x16886);
21719put('BAMUM_LETTER_PHASE_B_MA_NJEUAENA, 'codepoint, 0x16887);
21720put('BAMUM_LETTER_PHASE_B_MA_NJUQA, 'codepoint, 0x16888);
21721put('BAMUM_LETTER_PHASE_B_LET, 'codepoint, 0x16889);
21722put('BAMUM_LETTER_PHASE_B_NGGAAM, 'codepoint, 0x1688A);
21723put('BAMUM_LETTER_PHASE_B_NSEN, 'codepoint, 0x1688B);
21724put('BAMUM_LETTER_PHASE_B_MA, 'codepoint, 0x1688C);
21725put('BAMUM_LETTER_PHASE_B_KIQ, 'codepoint, 0x1688D);
21726put('BAMUM_LETTER_PHASE_B_NGOM, 'codepoint, 0x1688E);
21727put('BAMUM_LETTER_PHASE_C_NGKUE_MAEMBA, 'codepoint, 0x1688F);
21728put('BAMUM_LETTER_PHASE_C_NZA, 'codepoint, 0x16890);
21729put('BAMUM_LETTER_PHASE_C_YUM, 'codepoint, 0x16891);
21730put('BAMUM_LETTER_PHASE_C_WANGKUOQ, 'codepoint, 0x16892);
21731put('BAMUM_LETTER_PHASE_C_NGGEN, 'codepoint, 0x16893);
21732put('BAMUM_LETTER_PHASE_C_NDEUAEREE, 'codepoint, 0x16894);
21733put('BAMUM_LETTER_PHASE_C_NGKAQ, 'codepoint, 0x16895);
21734put('BAMUM_LETTER_PHASE_C_GHARAE, 'codepoint, 0x16896);
21735put('BAMUM_LETTER_PHASE_C_MBEEKEET, 'codepoint, 0x16897);
21736put('BAMUM_LETTER_PHASE_C_GBAYI, 'codepoint, 0x16898);
21737put('BAMUM_LETTER_PHASE_C_NYIR_MKPARAQ_MEUN, 'codepoint, 0x16899);
21738put('BAMUM_LETTER_PHASE_C_NTU_MBIT, 'codepoint, 0x1689A);
21739put('BAMUM_LETTER_PHASE_C_MBEUM, 'codepoint, 0x1689B);
21740put('BAMUM_LETTER_PHASE_C_PIRIEEN, 'codepoint, 0x1689C);
21741put('BAMUM_LETTER_PHASE_C_NDOMBU, 'codepoint, 0x1689D);
21742put('BAMUM_LETTER_PHASE_C_MBAA_CABBAGE_TREE, 'codepoint, 0x1689E);
21743put('BAMUM_LETTER_PHASE_C_KEUSHEUAEP, 'codepoint, 0x1689F);
21744put('BAMUM_LETTER_PHASE_C_GHAP, 'codepoint, 0x168A0);
21745put('BAMUM_LETTER_PHASE_C_KEUKAQ, 'codepoint, 0x168A1);
21746put('BAMUM_LETTER_PHASE_C_YU_MUOMAE, 'codepoint, 0x168A2);
21747put('BAMUM_LETTER_PHASE_C_NZEUM, 'codepoint, 0x168A3);
21748put('BAMUM_LETTER_PHASE_C_MBUE, 'codepoint, 0x168A4);
21749put('BAMUM_LETTER_PHASE_C_NSEUAEN, 'codepoint, 0x168A5);
21750put('BAMUM_LETTER_PHASE_C_MBIT, 'codepoint, 0x168A6);
21751put('BAMUM_LETTER_PHASE_C_YEUQ, 'codepoint, 0x168A7);
21752put('BAMUM_LETTER_PHASE_C_KPARAQ, 'codepoint, 0x168A8);
21753put('BAMUM_LETTER_PHASE_C_KAA, 'codepoint, 0x168A9);
21754put('BAMUM_LETTER_PHASE_C_SEUX, 'codepoint, 0x168AA);
21755put('BAMUM_LETTER_PHASE_C_NDIDA, 'codepoint, 0x168AB);
21756put('BAMUM_LETTER_PHASE_C_TAASHAE, 'codepoint, 0x168AC);
21757put('BAMUM_LETTER_PHASE_C_NJUEQ, 'codepoint, 0x168AD);
21758put('BAMUM_LETTER_PHASE_C_TITA_YUE, 'codepoint, 0x168AE);
21759put('BAMUM_LETTER_PHASE_C_SUAET, 'codepoint, 0x168AF);
21760put('BAMUM_LETTER_PHASE_C_NGGUAEN_NYAM, 'codepoint, 0x168B0);
21761put('BAMUM_LETTER_PHASE_C_VEUX, 'codepoint, 0x168B1);
21762put('BAMUM_LETTER_PHASE_C_NANSANAQ, 'codepoint, 0x168B2);
21763put('BAMUM_LETTER_PHASE_C_MA_KEUAERI, 'codepoint, 0x168B3);
21764put('BAMUM_LETTER_PHASE_C_NTAA, 'codepoint, 0x168B4);
21765put('BAMUM_LETTER_PHASE_C_NGGUON, 'codepoint, 0x168B5);
21766put('BAMUM_LETTER_PHASE_C_LAP, 'codepoint, 0x168B6);
21767put('BAMUM_LETTER_PHASE_C_MBIRIEEN, 'codepoint, 0x168B7);
21768put('BAMUM_LETTER_PHASE_C_MGBASAQ, 'codepoint, 0x168B8);
21769put('BAMUM_LETTER_PHASE_C_NTEUNGBA, 'codepoint, 0x168B9);
21770put('BAMUM_LETTER_PHASE_C_TEUTEUX, 'codepoint, 0x168BA);
21771put('BAMUM_LETTER_PHASE_C_NGGUM, 'codepoint, 0x168BB);
21772put('BAMUM_LETTER_PHASE_C_FUE, 'codepoint, 0x168BC);
21773put('BAMUM_LETTER_PHASE_C_NDEUT, 'codepoint, 0x168BD);
21774put('BAMUM_LETTER_PHASE_C_NSA, 'codepoint, 0x168BE);
21775put('BAMUM_LETTER_PHASE_C_NSHAQ, 'codepoint, 0x168BF);
21776put('BAMUM_LETTER_PHASE_C_BUNG, 'codepoint, 0x168C0);
21777put('BAMUM_LETTER_PHASE_C_VEUAEPEN, 'codepoint, 0x168C1);
21778put('BAMUM_LETTER_PHASE_C_MBERAE, 'codepoint, 0x168C2);
21779put('BAMUM_LETTER_PHASE_C_RU, 'codepoint, 0x168C3);
21780put('BAMUM_LETTER_PHASE_C_NJAEM, 'codepoint, 0x168C4);
21781put('BAMUM_LETTER_PHASE_C_LAM, 'codepoint, 0x168C5);
21782put('BAMUM_LETTER_PHASE_C_TITUAEP, 'codepoint, 0x168C6);
21783put('BAMUM_LETTER_PHASE_C_NSUOT_NGOM, 'codepoint, 0x168C7);
21784put('BAMUM_LETTER_PHASE_C_NJEEEE, 'codepoint, 0x168C8);
21785put('BAMUM_LETTER_PHASE_C_KET, 'codepoint, 0x168C9);
21786put('BAMUM_LETTER_PHASE_C_NGGU, 'codepoint, 0x168CA);
21787put('BAMUM_LETTER_PHASE_C_MAESI, 'codepoint, 0x168CB);
21788put('BAMUM_LETTER_PHASE_C_MBUAEM, 'codepoint, 0x168CC);
21789put('BAMUM_LETTER_PHASE_C_LU, 'codepoint, 0x168CD);
21790put('BAMUM_LETTER_PHASE_C_KUT, 'codepoint, 0x168CE);
21791put('BAMUM_LETTER_PHASE_C_NJAM, 'codepoint, 0x168CF);
21792put('BAMUM_LETTER_PHASE_C_NGOM, 'codepoint, 0x168D0);
21793put('BAMUM_LETTER_PHASE_C_WUP, 'codepoint, 0x168D1);
21794put('BAMUM_LETTER_PHASE_C_NGGUEET, 'codepoint, 0x168D2);
21795put('BAMUM_LETTER_PHASE_C_NSOM, 'codepoint, 0x168D3);
21796put('BAMUM_LETTER_PHASE_C_NTEN, 'codepoint, 0x168D4);
21797put('BAMUM_LETTER_PHASE_C_KUOP_NKAARAE, 'codepoint, 0x168D5);
21798put('BAMUM_LETTER_PHASE_C_NSUN, 'codepoint, 0x168D6);
21799put('BAMUM_LETTER_PHASE_C_NDAM, 'codepoint, 0x168D7);
21800put('BAMUM_LETTER_PHASE_C_MA_NSIEE, 'codepoint, 0x168D8);
21801put('BAMUM_LETTER_PHASE_C_YAA, 'codepoint, 0x168D9);
21802put('BAMUM_LETTER_PHASE_C_NDAP, 'codepoint, 0x168DA);
21803put('BAMUM_LETTER_PHASE_C_SHUEQ, 'codepoint, 0x168DB);
21804put('BAMUM_LETTER_PHASE_C_SETFON, 'codepoint, 0x168DC);
21805put('BAMUM_LETTER_PHASE_C_MBI, 'codepoint, 0x168DD);
21806put('BAMUM_LETTER_PHASE_C_MAEMBA, 'codepoint, 0x168DE);
21807put('BAMUM_LETTER_PHASE_C_MBANYI, 'codepoint, 0x168DF);
21808put('BAMUM_LETTER_PHASE_C_KEUSEUX, 'codepoint, 0x168E0);
21809put('BAMUM_LETTER_PHASE_C_MBEUX, 'codepoint, 0x168E1);
21810put('BAMUM_LETTER_PHASE_C_KEUM, 'codepoint, 0x168E2);
21811put('BAMUM_LETTER_PHASE_C_MBAA_PICKET, 'codepoint, 0x168E3);
21812put('BAMUM_LETTER_PHASE_C_YUWOQ, 'codepoint, 0x168E4);
21813put('BAMUM_LETTER_PHASE_C_NJEUX, 'codepoint, 0x168E5);
21814put('BAMUM_LETTER_PHASE_C_MIEE, 'codepoint, 0x168E6);
21815put('BAMUM_LETTER_PHASE_C_MUAE, 'codepoint, 0x168E7);
21816put('BAMUM_LETTER_PHASE_C_SHIQ, 'codepoint, 0x168E8);
21817put('BAMUM_LETTER_PHASE_C_KEN_LAW, 'codepoint, 0x168E9);
21818put('BAMUM_LETTER_PHASE_C_KEN_FATIGUE, 'codepoint, 0x168EA);
21819put('BAMUM_LETTER_PHASE_C_NGAQ, 'codepoint, 0x168EB);
21820put('BAMUM_LETTER_PHASE_C_NAQ, 'codepoint, 0x168EC);
21821put('BAMUM_LETTER_PHASE_C_LIQ, 'codepoint, 0x168ED);
21822put('BAMUM_LETTER_PHASE_C_PIN, 'codepoint, 0x168EE);
21823put('BAMUM_LETTER_PHASE_C_PEN, 'codepoint, 0x168EF);
21824put('BAMUM_LETTER_PHASE_C_TET, 'codepoint, 0x168F0);
21825put('BAMUM_LETTER_PHASE_D_MBUO, 'codepoint, 0x168F1);
21826put('BAMUM_LETTER_PHASE_D_WAP, 'codepoint, 0x168F2);
21827put('BAMUM_LETTER_PHASE_D_NJI, 'codepoint, 0x168F3);
21828put('BAMUM_LETTER_PHASE_D_MFON, 'codepoint, 0x168F4);
21829put('BAMUM_LETTER_PHASE_D_NJIEE, 'codepoint, 0x168F5);
21830put('BAMUM_LETTER_PHASE_D_LIEE, 'codepoint, 0x168F6);
21831put('BAMUM_LETTER_PHASE_D_NJEUT, 'codepoint, 0x168F7);
21832put('BAMUM_LETTER_PHASE_D_NSHEE, 'codepoint, 0x168F8);
21833put('BAMUM_LETTER_PHASE_D_NGGAAMAE, 'codepoint, 0x168F9);
21834put('BAMUM_LETTER_PHASE_D_NYAM, 'codepoint, 0x168FA);
21835put('BAMUM_LETTER_PHASE_D_WUAEN, 'codepoint, 0x168FB);
21836put('BAMUM_LETTER_PHASE_D_NGKUN, 'codepoint, 0x168FC);
21837put('BAMUM_LETTER_PHASE_D_SHEE, 'codepoint, 0x168FD);
21838put('BAMUM_LETTER_PHASE_D_NGKAP, 'codepoint, 0x168FE);
21839put('BAMUM_LETTER_PHASE_D_KEUAETMEUN, 'codepoint, 0x168FF);
21840put('BAMUM_LETTER_PHASE_D_TEUT, 'codepoint, 0x16900);
21841put('BAMUM_LETTER_PHASE_D_SHEUAE, 'codepoint, 0x16901);
21842put('BAMUM_LETTER_PHASE_D_NJAP, 'codepoint, 0x16902);
21843put('BAMUM_LETTER_PHASE_D_SUE, 'codepoint, 0x16903);
21844put('BAMUM_LETTER_PHASE_D_KET, 'codepoint, 0x16904);
21845put('BAMUM_LETTER_PHASE_D_YAEMMAE, 'codepoint, 0x16905);
21846put('BAMUM_LETTER_PHASE_D_KUOM, 'codepoint, 0x16906);
21847put('BAMUM_LETTER_PHASE_D_SAP, 'codepoint, 0x16907);
21848put('BAMUM_LETTER_PHASE_D_MFEUT, 'codepoint, 0x16908);
21849put('BAMUM_LETTER_PHASE_D_NDEUX, 'codepoint, 0x16909);
21850put('BAMUM_LETTER_PHASE_D_MALEERI, 'codepoint, 0x1690A);
21851put('BAMUM_LETTER_PHASE_D_MEUT, 'codepoint, 0x1690B);
21852put('BAMUM_LETTER_PHASE_D_SEUAEQ, 'codepoint, 0x1690C);
21853put('BAMUM_LETTER_PHASE_D_YEN, 'codepoint, 0x1690D);
21854put('BAMUM_LETTER_PHASE_D_NJEUAEM, 'codepoint, 0x1690E);
21855put('BAMUM_LETTER_PHASE_D_KEUOT_MBUAE, 'codepoint, 0x1690F);
21856put('BAMUM_LETTER_PHASE_D_NGKEURI, 'codepoint, 0x16910);
21857put('BAMUM_LETTER_PHASE_D_TU, 'codepoint, 0x16911);
21858put('BAMUM_LETTER_PHASE_D_GHAA, 'codepoint, 0x16912);
21859put('BAMUM_LETTER_PHASE_D_NGKYEE, 'codepoint, 0x16913);
21860put('BAMUM_LETTER_PHASE_D_FEUFEUAET, 'codepoint, 0x16914);
21861put('BAMUM_LETTER_PHASE_D_NDEE, 'codepoint, 0x16915);
21862put('BAMUM_LETTER_PHASE_D_MGBOFUM, 'codepoint, 0x16916);
21863put('BAMUM_LETTER_PHASE_D_LEUAEP, 'codepoint, 0x16917);
21864put('BAMUM_LETTER_PHASE_D_NDON, 'codepoint, 0x16918);
21865put('BAMUM_LETTER_PHASE_D_MONI, 'codepoint, 0x16919);
21866put('BAMUM_LETTER_PHASE_D_MGBEUN, 'codepoint, 0x1691A);
21867put('BAMUM_LETTER_PHASE_D_PUUT, 'codepoint, 0x1691B);
21868put('BAMUM_LETTER_PHASE_D_MGBIEE, 'codepoint, 0x1691C);
21869put('BAMUM_LETTER_PHASE_D_MFO, 'codepoint, 0x1691D);
21870put('BAMUM_LETTER_PHASE_D_LUM, 'codepoint, 0x1691E);
21871put('BAMUM_LETTER_PHASE_D_NSIEEP, 'codepoint, 0x1691F);
21872put('BAMUM_LETTER_PHASE_D_MBAA, 'codepoint, 0x16920);
21873put('BAMUM_LETTER_PHASE_D_KWAET, 'codepoint, 0x16921);
21874put('BAMUM_LETTER_PHASE_D_NYET, 'codepoint, 0x16922);
21875put('BAMUM_LETTER_PHASE_D_TEUAEN, 'codepoint, 0x16923);
21876put('BAMUM_LETTER_PHASE_D_SOT, 'codepoint, 0x16924);
21877put('BAMUM_LETTER_PHASE_D_YUWOQ, 'codepoint, 0x16925);
21878put('BAMUM_LETTER_PHASE_D_KEUM, 'codepoint, 0x16926);
21879put('BAMUM_LETTER_PHASE_D_RAEM, 'codepoint, 0x16927);
21880put('BAMUM_LETTER_PHASE_D_TEEEE, 'codepoint, 0x16928);
21881put('BAMUM_LETTER_PHASE_D_NGKEUAEQ, 'codepoint, 0x16929);
21882put('BAMUM_LETTER_PHASE_D_MFEUAE, 'codepoint, 0x1692A);
21883put('BAMUM_LETTER_PHASE_D_NSIEET, 'codepoint, 0x1692B);
21884put('BAMUM_LETTER_PHASE_D_KEUP, 'codepoint, 0x1692C);
21885put('BAMUM_LETTER_PHASE_D_PIP, 'codepoint, 0x1692D);
21886put('BAMUM_LETTER_PHASE_D_PEUTAE, 'codepoint, 0x1692E);
21887put('BAMUM_LETTER_PHASE_D_NYUE, 'codepoint, 0x1692F);
21888put('BAMUM_LETTER_PHASE_D_LET, 'codepoint, 0x16930);
21889put('BAMUM_LETTER_PHASE_D_NGGAAM, 'codepoint, 0x16931);
21890put('BAMUM_LETTER_PHASE_D_MFIEE, 'codepoint, 0x16932);
21891put('BAMUM_LETTER_PHASE_D_NGGWAEN, 'codepoint, 0x16933);
21892put('BAMUM_LETTER_PHASE_D_YUOM, 'codepoint, 0x16934);
21893put('BAMUM_LETTER_PHASE_D_PAP, 'codepoint, 0x16935);
21894put('BAMUM_LETTER_PHASE_D_YUOP, 'codepoint, 0x16936);
21895put('BAMUM_LETTER_PHASE_D_NDAM, 'codepoint, 0x16937);
21896put('BAMUM_LETTER_PHASE_D_NTEUM, 'codepoint, 0x16938);
21897put('BAMUM_LETTER_PHASE_D_SUAE, 'codepoint, 0x16939);
21898put('BAMUM_LETTER_PHASE_D_KUN, 'codepoint, 0x1693A);
21899put('BAMUM_LETTER_PHASE_D_NGGEUX, 'codepoint, 0x1693B);
21900put('BAMUM_LETTER_PHASE_D_NGKIEE, 'codepoint, 0x1693C);
21901put('BAMUM_LETTER_PHASE_D_TUOT, 'codepoint, 0x1693D);
21902put('BAMUM_LETTER_PHASE_D_MEUN, 'codepoint, 0x1693E);
21903put('BAMUM_LETTER_PHASE_D_KUQ, 'codepoint, 0x1693F);
21904put('BAMUM_LETTER_PHASE_D_NSUM, 'codepoint, 0x16940);
21905put('BAMUM_LETTER_PHASE_D_TEUN, 'codepoint, 0x16941);
21906put('BAMUM_LETTER_PHASE_D_MAENJET, 'codepoint, 0x16942);
21907put('BAMUM_LETTER_PHASE_D_NGGAP, 'codepoint, 0x16943);
21908put('BAMUM_LETTER_PHASE_D_LEUM, 'codepoint, 0x16944);
21909put('BAMUM_LETTER_PHASE_D_NGGUOM, 'codepoint, 0x16945);
21910put('BAMUM_LETTER_PHASE_D_NSHUT, 'codepoint, 0x16946);
21911put('BAMUM_LETTER_PHASE_D_NJUEQ, 'codepoint, 0x16947);
21912put('BAMUM_LETTER_PHASE_D_GHEUAE, 'codepoint, 0x16948);
21913put('BAMUM_LETTER_PHASE_D_KU, 'codepoint, 0x16949);
21914put('BAMUM_LETTER_PHASE_D_REN_OLD, 'codepoint, 0x1694A);
21915put('BAMUM_LETTER_PHASE_D_TAE, 'codepoint, 0x1694B);
21916put('BAMUM_LETTER_PHASE_D_TOQ, 'codepoint, 0x1694C);
21917put('BAMUM_LETTER_PHASE_D_NYI, 'codepoint, 0x1694D);
21918put('BAMUM_LETTER_PHASE_D_RII, 'codepoint, 0x1694E);
21919put('BAMUM_LETTER_PHASE_D_LEEEE, 'codepoint, 0x1694F);
21920put('BAMUM_LETTER_PHASE_D_MEEEE, 'codepoint, 0x16950);
21921put('BAMUM_LETTER_PHASE_D_M, 'codepoint, 0x16951);
21922put('BAMUM_LETTER_PHASE_D_SUU, 'codepoint, 0x16952);
21923put('BAMUM_LETTER_PHASE_D_MU, 'codepoint, 0x16953);
21924put('BAMUM_LETTER_PHASE_D_SHII, 'codepoint, 0x16954);
21925put('BAMUM_LETTER_PHASE_D_SHEUX, 'codepoint, 0x16955);
21926put('BAMUM_LETTER_PHASE_D_KYEE, 'codepoint, 0x16956);
21927put('BAMUM_LETTER_PHASE_D_NU, 'codepoint, 0x16957);
21928put('BAMUM_LETTER_PHASE_D_SHU, 'codepoint, 0x16958);
21929put('BAMUM_LETTER_PHASE_D_NTEE, 'codepoint, 0x16959);
21930put('BAMUM_LETTER_PHASE_D_PEE, 'codepoint, 0x1695A);
21931put('BAMUM_LETTER_PHASE_D_NI, 'codepoint, 0x1695B);
21932put('BAMUM_LETTER_PHASE_D_SHOQ, 'codepoint, 0x1695C);
21933put('BAMUM_LETTER_PHASE_D_PUQ, 'codepoint, 0x1695D);
21934put('BAMUM_LETTER_PHASE_D_MVOP, 'codepoint, 0x1695E);
21935put('BAMUM_LETTER_PHASE_D_LOQ, 'codepoint, 0x1695F);
21936put('BAMUM_LETTER_PHASE_D_REN_MUCH, 'codepoint, 0x16960);
21937put('BAMUM_LETTER_PHASE_D_TI, 'codepoint, 0x16961);
21938put('BAMUM_LETTER_PHASE_D_NTUU, 'codepoint, 0x16962);
21939put('BAMUM_LETTER_PHASE_D_MBAA_SEVEN, 'codepoint, 0x16963);
21940put('BAMUM_LETTER_PHASE_D_SAQ, 'codepoint, 0x16964);
21941put('BAMUM_LETTER_PHASE_D_FAA, 'codepoint, 0x16965);
21942put('BAMUM_LETTER_PHASE_E_NDAP, 'codepoint, 0x16966);
21943put('BAMUM_LETTER_PHASE_E_TOON, 'codepoint, 0x16967);
21944put('BAMUM_LETTER_PHASE_E_MBEUM, 'codepoint, 0x16968);
21945put('BAMUM_LETTER_PHASE_E_LAP, 'codepoint, 0x16969);
21946put('BAMUM_LETTER_PHASE_E_VOM, 'codepoint, 0x1696A);
21947put('BAMUM_LETTER_PHASE_E_LOON, 'codepoint, 0x1696B);
21948put('BAMUM_LETTER_PHASE_E_PAA, 'codepoint, 0x1696C);
21949put('BAMUM_LETTER_PHASE_E_SOM, 'codepoint, 0x1696D);
21950put('BAMUM_LETTER_PHASE_E_RAQ, 'codepoint, 0x1696E);
21951put('BAMUM_LETTER_PHASE_E_NSHUOP, 'codepoint, 0x1696F);
21952put('BAMUM_LETTER_PHASE_E_NDUN, 'codepoint, 0x16970);
21953put('BAMUM_LETTER_PHASE_E_PUAE, 'codepoint, 0x16971);
21954put('BAMUM_LETTER_PHASE_E_TAM, 'codepoint, 0x16972);
21955put('BAMUM_LETTER_PHASE_E_NGKA, 'codepoint, 0x16973);
21956put('BAMUM_LETTER_PHASE_E_KPEUX, 'codepoint, 0x16974);
21957put('BAMUM_LETTER_PHASE_E_WUO, 'codepoint, 0x16975);
21958put('BAMUM_LETTER_PHASE_E_SEE, 'codepoint, 0x16976);
21959put('BAMUM_LETTER_PHASE_E_NGGEUAET, 'codepoint, 0x16977);
21960put('BAMUM_LETTER_PHASE_E_PAAM, 'codepoint, 0x16978);
21961put('BAMUM_LETTER_PHASE_E_TOO, 'codepoint, 0x16979);
21962put('BAMUM_LETTER_PHASE_E_KUOP, 'codepoint, 0x1697A);
21963put('BAMUM_LETTER_PHASE_E_LOM, 'codepoint, 0x1697B);
21964put('BAMUM_LETTER_PHASE_E_NSHIEE, 'codepoint, 0x1697C);
21965put('BAMUM_LETTER_PHASE_E_NGOP, 'codepoint, 0x1697D);
21966put('BAMUM_LETTER_PHASE_E_MAEM, 'codepoint, 0x1697E);
21967put('BAMUM_LETTER_PHASE_E_NGKEUX, 'codepoint, 0x1697F);
21968put('BAMUM_LETTER_PHASE_E_NGOQ, 'codepoint, 0x16980);
21969put('BAMUM_LETTER_PHASE_E_NSHUE, 'codepoint, 0x16981);
21970put('BAMUM_LETTER_PHASE_E_RIMGBA, 'codepoint, 0x16982);
21971put('BAMUM_LETTER_PHASE_E_NJEUX, 'codepoint, 0x16983);
21972put('BAMUM_LETTER_PHASE_E_PEEM, 'codepoint, 0x16984);
21973put('BAMUM_LETTER_PHASE_E_SAA, 'codepoint, 0x16985);
21974put('BAMUM_LETTER_PHASE_E_NGGURAE, 'codepoint, 0x16986);
21975put('BAMUM_LETTER_PHASE_E_MGBA, 'codepoint, 0x16987);
21976put('BAMUM_LETTER_PHASE_E_GHEUX, 'codepoint, 0x16988);
21977put('BAMUM_LETTER_PHASE_E_NGKEUAEM, 'codepoint, 0x16989);
21978put('BAMUM_LETTER_PHASE_E_NJAEMLI, 'codepoint, 0x1698A);
21979put('BAMUM_LETTER_PHASE_E_MAP, 'codepoint, 0x1698B);
21980put('BAMUM_LETTER_PHASE_E_LOOT, 'codepoint, 0x1698C);
21981put('BAMUM_LETTER_PHASE_E_NGGEEEE, 'codepoint, 0x1698D);
21982put('BAMUM_LETTER_PHASE_E_NDIQ, 'codepoint, 0x1698E);
21983put('BAMUM_LETTER_PHASE_E_TAEN_NTEUM, 'codepoint, 0x1698F);
21984put('BAMUM_LETTER_PHASE_E_SET, 'codepoint, 0x16990);
21985put('BAMUM_LETTER_PHASE_E_PUM, 'codepoint, 0x16991);
21986put('BAMUM_LETTER_PHASE_E_NDAA_SOFTNESS, 'codepoint, 0x16992);
21987put('BAMUM_LETTER_PHASE_E_NGGUAESHAE_NYAM, 'codepoint, 0x16993);
21988put('BAMUM_LETTER_PHASE_E_YIEE, 'codepoint, 0x16994);
21989put('BAMUM_LETTER_PHASE_E_GHEUN, 'codepoint, 0x16995);
21990put('BAMUM_LETTER_PHASE_E_TUAE, 'codepoint, 0x16996);
21991put('BAMUM_LETTER_PHASE_E_YEUAE, 'codepoint, 0x16997);
21992put('BAMUM_LETTER_PHASE_E_PO, 'codepoint, 0x16998);
21993put('BAMUM_LETTER_PHASE_E_TUMAE, 'codepoint, 0x16999);
21994put('BAMUM_LETTER_PHASE_E_KEUAE, 'codepoint, 0x1699A);
21995put('BAMUM_LETTER_PHASE_E_SUAEN, 'codepoint, 0x1699B);
21996put('BAMUM_LETTER_PHASE_E_TEUAEQ, 'codepoint, 0x1699C);
21997put('BAMUM_LETTER_PHASE_E_VEUAE, 'codepoint, 0x1699D);
21998put('BAMUM_LETTER_PHASE_E_WEUX, 'codepoint, 0x1699E);
21999put('BAMUM_LETTER_PHASE_E_LAAM, 'codepoint, 0x1699F);
22000put('BAMUM_LETTER_PHASE_E_PU, 'codepoint, 0x169A0);
22001put('BAMUM_LETTER_PHASE_E_TAAQ, 'codepoint, 0x169A1);
22002put('BAMUM_LETTER_PHASE_E_GHAAMAE, 'codepoint, 0x169A2);
22003put('BAMUM_LETTER_PHASE_E_NGEUREUT, 'codepoint, 0x169A3);
22004put('BAMUM_LETTER_PHASE_E_SHEUAEQ, 'codepoint, 0x169A4);
22005put('BAMUM_LETTER_PHASE_E_MGBEN, 'codepoint, 0x169A5);
22006put('BAMUM_LETTER_PHASE_E_MBEE, 'codepoint, 0x169A6);
22007put('BAMUM_LETTER_PHASE_E_NZAQ, 'codepoint, 0x169A7);
22008put('BAMUM_LETTER_PHASE_E_NKOM, 'codepoint, 0x169A8);
22009put('BAMUM_LETTER_PHASE_E_GBET, 'codepoint, 0x169A9);
22010put('BAMUM_LETTER_PHASE_E_TUM, 'codepoint, 0x169AA);
22011put('BAMUM_LETTER_PHASE_E_KUET, 'codepoint, 0x169AB);
22012put('BAMUM_LETTER_PHASE_E_YAP, 'codepoint, 0x169AC);
22013put('BAMUM_LETTER_PHASE_E_NYI_CLEAVER, 'codepoint, 0x169AD);
22014put('BAMUM_LETTER_PHASE_E_YIT, 'codepoint, 0x169AE);
22015put('BAMUM_LETTER_PHASE_E_MFEUQ, 'codepoint, 0x169AF);
22016put('BAMUM_LETTER_PHASE_E_NDIAQ, 'codepoint, 0x169B0);
22017put('BAMUM_LETTER_PHASE_E_PIEEQ, 'codepoint, 0x169B1);
22018put('BAMUM_LETTER_PHASE_E_YUEQ, 'codepoint, 0x169B2);
22019put('BAMUM_LETTER_PHASE_E_LEUAEM, 'codepoint, 0x169B3);
22020put('BAMUM_LETTER_PHASE_E_FUE, 'codepoint, 0x169B4);
22021put('BAMUM_LETTER_PHASE_E_GBEUX, 'codepoint, 0x169B5);
22022put('BAMUM_LETTER_PHASE_E_NGKUP, 'codepoint, 0x169B6);
22023put('BAMUM_LETTER_PHASE_E_KET, 'codepoint, 0x169B7);
22024put('BAMUM_LETTER_PHASE_E_MAE, 'codepoint, 0x169B8);
22025put('BAMUM_LETTER_PHASE_E_NGKAAMI, 'codepoint, 0x169B9);
22026put('BAMUM_LETTER_PHASE_E_GHET, 'codepoint, 0x169BA);
22027put('BAMUM_LETTER_PHASE_E_FA, 'codepoint, 0x169BB);
22028put('BAMUM_LETTER_PHASE_E_NTUM, 'codepoint, 0x169BC);
22029put('BAMUM_LETTER_PHASE_E_PEUT, 'codepoint, 0x169BD);
22030put('BAMUM_LETTER_PHASE_E_YEUM, 'codepoint, 0x169BE);
22031put('BAMUM_LETTER_PHASE_E_NGGEUAE, 'codepoint, 0x169BF);
22032put('BAMUM_LETTER_PHASE_E_NYI_BETWEEN, 'codepoint, 0x169C0);
22033put('BAMUM_LETTER_PHASE_E_NZUQ, 'codepoint, 0x169C1);
22034put('BAMUM_LETTER_PHASE_E_POON, 'codepoint, 0x169C2);
22035put('BAMUM_LETTER_PHASE_E_MIEE, 'codepoint, 0x169C3);
22036put('BAMUM_LETTER_PHASE_E_FUET, 'codepoint, 0x169C4);
22037put('BAMUM_LETTER_PHASE_E_NAE, 'codepoint, 0x169C5);
22038put('BAMUM_LETTER_PHASE_E_MUAE, 'codepoint, 0x169C6);
22039put('BAMUM_LETTER_PHASE_E_GHEUAE, 'codepoint, 0x169C7);
22040put('BAMUM_LETTER_PHASE_E_FU_I, 'codepoint, 0x169C8);
22041put('BAMUM_LETTER_PHASE_E_MVI, 'codepoint, 0x169C9);
22042put('BAMUM_LETTER_PHASE_E_PUAQ, 'codepoint, 0x169CA);
22043put('BAMUM_LETTER_PHASE_E_NGKUM, 'codepoint, 0x169CB);
22044put('BAMUM_LETTER_PHASE_E_KUT, 'codepoint, 0x169CC);
22045put('BAMUM_LETTER_PHASE_E_PIET, 'codepoint, 0x169CD);
22046put('BAMUM_LETTER_PHASE_E_NTAP, 'codepoint, 0x169CE);
22047put('BAMUM_LETTER_PHASE_E_YEUAET, 'codepoint, 0x169CF);
22048put('BAMUM_LETTER_PHASE_E_NGGUP, 'codepoint, 0x169D0);
22049put('BAMUM_LETTER_PHASE_E_PA_PEOPLE, 'codepoint, 0x169D1);
22050put('BAMUM_LETTER_PHASE_E_FU_CALL, 'codepoint, 0x169D2);
22051put('BAMUM_LETTER_PHASE_E_FOM, 'codepoint, 0x169D3);
22052put('BAMUM_LETTER_PHASE_E_NJEE, 'codepoint, 0x169D4);
22053put('BAMUM_LETTER_PHASE_E_A, 'codepoint, 0x169D5);
22054put('BAMUM_LETTER_PHASE_E_TOQ, 'codepoint, 0x169D6);
22055put('BAMUM_LETTER_PHASE_E_O, 'codepoint, 0x169D7);
22056put('BAMUM_LETTER_PHASE_E_I, 'codepoint, 0x169D8);
22057put('BAMUM_LETTER_PHASE_E_LAQ, 'codepoint, 0x169D9);
22058put('BAMUM_LETTER_PHASE_E_PA_PLURAL, 'codepoint, 0x169DA);
22059put('BAMUM_LETTER_PHASE_E_TAA, 'codepoint, 0x169DB);
22060put('BAMUM_LETTER_PHASE_E_TAQ, 'codepoint, 0x169DC);
22061put('BAMUM_LETTER_PHASE_E_NDAA_MY_HOUSE, 'codepoint, 0x169DD);
22062put('BAMUM_LETTER_PHASE_E_SHIQ, 'codepoint, 0x169DE);
22063put('BAMUM_LETTER_PHASE_E_YEUX, 'codepoint, 0x169DF);
22064put('BAMUM_LETTER_PHASE_E_NGUAE, 'codepoint, 0x169E0);
22065put('BAMUM_LETTER_PHASE_E_YUAEN, 'codepoint, 0x169E1);
22066put('BAMUM_LETTER_PHASE_E_YOQ_SWIMMING, 'codepoint, 0x169E2);
22067put('BAMUM_LETTER_PHASE_E_YOQ_COVER, 'codepoint, 0x169E3);
22068put('BAMUM_LETTER_PHASE_E_YUQ, 'codepoint, 0x169E4);
22069put('BAMUM_LETTER_PHASE_E_YUN, 'codepoint, 0x169E5);
22070put('BAMUM_LETTER_PHASE_E_KEUX, 'codepoint, 0x169E6);
22071put('BAMUM_LETTER_PHASE_E_PEUX, 'codepoint, 0x169E7);
22072put('BAMUM_LETTER_PHASE_E_NJEE_EPOCH, 'codepoint, 0x169E8);
22073put('BAMUM_LETTER_PHASE_E_PUE, 'codepoint, 0x169E9);
22074put('BAMUM_LETTER_PHASE_E_WUE, 'codepoint, 0x169EA);
22075put('BAMUM_LETTER_PHASE_E_FEE, 'codepoint, 0x169EB);
22076put('BAMUM_LETTER_PHASE_E_VEE, 'codepoint, 0x169EC);
22077put('BAMUM_LETTER_PHASE_E_LU, 'codepoint, 0x169ED);
22078put('BAMUM_LETTER_PHASE_E_MI, 'codepoint, 0x169EE);
22079put('BAMUM_LETTER_PHASE_E_REUX, 'codepoint, 0x169EF);
22080put('BAMUM_LETTER_PHASE_E_RAE, 'codepoint, 0x169F0);
22081put('BAMUM_LETTER_PHASE_E_NGUAET, 'codepoint, 0x169F1);
22082put('BAMUM_LETTER_PHASE_E_NGA, 'codepoint, 0x169F2);
22083put('BAMUM_LETTER_PHASE_E_SHO, 'codepoint, 0x169F3);
22084put('BAMUM_LETTER_PHASE_E_SHOQ, 'codepoint, 0x169F4);
22085put('BAMUM_LETTER_PHASE_E_FU_REMEDY, 'codepoint, 0x169F5);
22086put('BAMUM_LETTER_PHASE_E_NA, 'codepoint, 0x169F6);
22087put('BAMUM_LETTER_PHASE_E_PI, 'codepoint, 0x169F7);
22088put('BAMUM_LETTER_PHASE_E_LOQ, 'codepoint, 0x169F8);
22089put('BAMUM_LETTER_PHASE_E_KO, 'codepoint, 0x169F9);
22090put('BAMUM_LETTER_PHASE_E_MEN, 'codepoint, 0x169FA);
22091put('BAMUM_LETTER_PHASE_E_MA, 'codepoint, 0x169FB);
22092put('BAMUM_LETTER_PHASE_E_MAQ, 'codepoint, 0x169FC);
22093put('BAMUM_LETTER_PHASE_E_TEU, 'codepoint, 0x169FD);
22094put('BAMUM_LETTER_PHASE_E_KI, 'codepoint, 0x169FE);
22095put('BAMUM_LETTER_PHASE_E_MON, 'codepoint, 0x169FF);
22096put('BAMUM_LETTER_PHASE_E_TEN, 'codepoint, 0x16A00);
22097put('BAMUM_LETTER_PHASE_E_FAQ, 'codepoint, 0x16A01);
22098put('BAMUM_LETTER_PHASE_E_GHOM, 'codepoint, 0x16A02);
22099put('BAMUM_LETTER_PHASE_F_KA, 'codepoint, 0x16A03);
22100put('BAMUM_LETTER_PHASE_F_U, 'codepoint, 0x16A04);
22101put('BAMUM_LETTER_PHASE_F_KU, 'codepoint, 0x16A05);
22102put('BAMUM_LETTER_PHASE_F_EE, 'codepoint, 0x16A06);
22103put('BAMUM_LETTER_PHASE_F_REE, 'codepoint, 0x16A07);
22104put('BAMUM_LETTER_PHASE_F_TAE, 'codepoint, 0x16A08);
22105put('BAMUM_LETTER_PHASE_F_NYI, 'codepoint, 0x16A09);
22106put('BAMUM_LETTER_PHASE_F_LA, 'codepoint, 0x16A0A);
22107put('BAMUM_LETTER_PHASE_F_RII, 'codepoint, 0x16A0B);
22108put('BAMUM_LETTER_PHASE_F_RIEE, 'codepoint, 0x16A0C);
22109put('BAMUM_LETTER_PHASE_F_MEEEE, 'codepoint, 0x16A0D);
22110put('BAMUM_LETTER_PHASE_F_TAA, 'codepoint, 0x16A0E);
22111put('BAMUM_LETTER_PHASE_F_NDAA, 'codepoint, 0x16A0F);
22112put('BAMUM_LETTER_PHASE_F_NJAEM, 'codepoint, 0x16A10);
22113put('BAMUM_LETTER_PHASE_F_M, 'codepoint, 0x16A11);
22114put('BAMUM_LETTER_PHASE_F_SUU, 'codepoint, 0x16A12);
22115put('BAMUM_LETTER_PHASE_F_SHII, 'codepoint, 0x16A13);
22116put('BAMUM_LETTER_PHASE_F_SI, 'codepoint, 0x16A14);
22117put('BAMUM_LETTER_PHASE_F_SEUX, 'codepoint, 0x16A15);
22118put('BAMUM_LETTER_PHASE_F_KYEE, 'codepoint, 0x16A16);
22119put('BAMUM_LETTER_PHASE_F_KET, 'codepoint, 0x16A17);
22120put('BAMUM_LETTER_PHASE_F_NUAE, 'codepoint, 0x16A18);
22121put('BAMUM_LETTER_PHASE_F_NU, 'codepoint, 0x16A19);
22122put('BAMUM_LETTER_PHASE_F_NJUAE, 'codepoint, 0x16A1A);
22123put('BAMUM_LETTER_PHASE_F_YOQ, 'codepoint, 0x16A1B);
22124put('BAMUM_LETTER_PHASE_F_SHU, 'codepoint, 0x16A1C);
22125put('BAMUM_LETTER_PHASE_F_YA, 'codepoint, 0x16A1D);
22126put('BAMUM_LETTER_PHASE_F_NSHA, 'codepoint, 0x16A1E);
22127put('BAMUM_LETTER_PHASE_F_PEUX, 'codepoint, 0x16A1F);
22128put('BAMUM_LETTER_PHASE_F_NTEE, 'codepoint, 0x16A20);
22129put('BAMUM_LETTER_PHASE_F_WUE, 'codepoint, 0x16A21);
22130put('BAMUM_LETTER_PHASE_F_PEE, 'codepoint, 0x16A22);
22131put('BAMUM_LETTER_PHASE_F_RU, 'codepoint, 0x16A23);
22132put('BAMUM_LETTER_PHASE_F_NI, 'codepoint, 0x16A24);
22133put('BAMUM_LETTER_PHASE_F_REUX, 'codepoint, 0x16A25);
22134put('BAMUM_LETTER_PHASE_F_KEN, 'codepoint, 0x16A26);
22135put('BAMUM_LETTER_PHASE_F_NGKWAEN, 'codepoint, 0x16A27);
22136put('BAMUM_LETTER_PHASE_F_NGGA, 'codepoint, 0x16A28);
22137put('BAMUM_LETTER_PHASE_F_SHO, 'codepoint, 0x16A29);
22138put('BAMUM_LETTER_PHASE_F_PUAE, 'codepoint, 0x16A2A);
22139put('BAMUM_LETTER_PHASE_F_FOM, 'codepoint, 0x16A2B);
22140put('BAMUM_LETTER_PHASE_F_WA, 'codepoint, 0x16A2C);
22141put('BAMUM_LETTER_PHASE_F_LI, 'codepoint, 0x16A2D);
22142put('BAMUM_LETTER_PHASE_F_LOQ, 'codepoint, 0x16A2E);
22143put('BAMUM_LETTER_PHASE_F_KO, 'codepoint, 0x16A2F);
22144put('BAMUM_LETTER_PHASE_F_MBEN, 'codepoint, 0x16A30);
22145put('BAMUM_LETTER_PHASE_F_REN, 'codepoint, 0x16A31);
22146put('BAMUM_LETTER_PHASE_F_MA, 'codepoint, 0x16A32);
22147put('BAMUM_LETTER_PHASE_F_MO, 'codepoint, 0x16A33);
22148put('BAMUM_LETTER_PHASE_F_MBAA, 'codepoint, 0x16A34);
22149put('BAMUM_LETTER_PHASE_F_TET, 'codepoint, 0x16A35);
22150put('BAMUM_LETTER_PHASE_F_KPA, 'codepoint, 0x16A36);
22151put('BAMUM_LETTER_PHASE_F_SAMBA, 'codepoint, 0x16A37);
22152put('BAMUM_LETTER_PHASE_F_VUEQ, 'codepoint, 0x16A38);
22153put('MRO_LETTER_TA, 'codepoint, 0x16A40);
22154put('MRO_LETTER_NGI, 'codepoint, 0x16A41);
22155put('MRO_LETTER_YO, 'codepoint, 0x16A42);
22156put('MRO_LETTER_MIM, 'codepoint, 0x16A43);
22157put('MRO_LETTER_BA, 'codepoint, 0x16A44);
22158put('MRO_LETTER_DA, 'codepoint, 0x16A45);
22159put('MRO_LETTER_A, 'codepoint, 0x16A46);
22160put('MRO_LETTER_PHI, 'codepoint, 0x16A47);
22161put('MRO_LETTER_KHAI, 'codepoint, 0x16A48);
22162put('MRO_LETTER_HAO, 'codepoint, 0x16A49);
22163put('MRO_LETTER_DAI, 'codepoint, 0x16A4A);
22164put('MRO_LETTER_CHU, 'codepoint, 0x16A4B);
22165put('MRO_LETTER_KEAAE, 'codepoint, 0x16A4C);
22166put('MRO_LETTER_OL, 'codepoint, 0x16A4D);
22167put('MRO_LETTER_MAEM, 'codepoint, 0x16A4E);
22168put('MRO_LETTER_NIN, 'codepoint, 0x16A4F);
22169put('MRO_LETTER_PA, 'codepoint, 0x16A50);
22170put('MRO_LETTER_OO, 'codepoint, 0x16A51);
22171put('MRO_LETTER_O, 'codepoint, 0x16A52);
22172put('MRO_LETTER_RO, 'codepoint, 0x16A53);
22173put('MRO_LETTER_SHI, 'codepoint, 0x16A54);
22174put('MRO_LETTER_THEA, 'codepoint, 0x16A55);
22175put('MRO_LETTER_EA, 'codepoint, 0x16A56);
22176put('MRO_LETTER_WA, 'codepoint, 0x16A57);
22177put('MRO_LETTER_E, 'codepoint, 0x16A58);
22178put('MRO_LETTER_KO, 'codepoint, 0x16A59);
22179put('MRO_LETTER_LAN, 'codepoint, 0x16A5A);
22180put('MRO_LETTER_LA, 'codepoint, 0x16A5B);
22181put('MRO_LETTER_HAI, 'codepoint, 0x16A5C);
22182put('MRO_LETTER_RI, 'codepoint, 0x16A5D);
22183put('MRO_LETTER_TEK, 'codepoint, 0x16A5E);
22184put('MRO_DIGIT_ZERO, 'codepoint, 0x16A60);
22185put('MRO_DIGIT_ONE, 'codepoint, 0x16A61);
22186put('MRO_DIGIT_TWO, 'codepoint, 0x16A62);
22187put('MRO_DIGIT_THREE, 'codepoint, 0x16A63);
22188put('MRO_DIGIT_FOUR, 'codepoint, 0x16A64);
22189put('MRO_DIGIT_FIVE, 'codepoint, 0x16A65);
22190put('MRO_DIGIT_SIX, 'codepoint, 0x16A66);
22191put('MRO_DIGIT_SEVEN, 'codepoint, 0x16A67);
22192put('MRO_DIGIT_EIGHT, 'codepoint, 0x16A68);
22193put('MRO_DIGIT_NINE, 'codepoint, 0x16A69);
22194put('MRO_DANDA, 'codepoint, 0x16A6E);
22195put('MRO_DOUBLE_DANDA, 'codepoint, 0x16A6F);
22196put('BASSA_VAH_LETTER_ENNI, 'codepoint, 0x16AD0);
22197put('BASSA_VAH_LETTER_KA, 'codepoint, 0x16AD1);
22198put('BASSA_VAH_LETTER_SE, 'codepoint, 0x16AD2);
22199put('BASSA_VAH_LETTER_FA, 'codepoint, 0x16AD3);
22200put('BASSA_VAH_LETTER_MBE, 'codepoint, 0x16AD4);
22201put('BASSA_VAH_LETTER_YIE, 'codepoint, 0x16AD5);
22202put('BASSA_VAH_LETTER_GAH, 'codepoint, 0x16AD6);
22203put('BASSA_VAH_LETTER_DHII, 'codepoint, 0x16AD7);
22204put('BASSA_VAH_LETTER_KPAH, 'codepoint, 0x16AD8);
22205put('BASSA_VAH_LETTER_JO, 'codepoint, 0x16AD9);
22206put('BASSA_VAH_LETTER_HWAH, 'codepoint, 0x16ADA);
22207put('BASSA_VAH_LETTER_WA, 'codepoint, 0x16ADB);
22208put('BASSA_VAH_LETTER_ZO, 'codepoint, 0x16ADC);
22209put('BASSA_VAH_LETTER_GBU, 'codepoint, 0x16ADD);
22210put('BASSA_VAH_LETTER_DO, 'codepoint, 0x16ADE);
22211put('BASSA_VAH_LETTER_CE, 'codepoint, 0x16ADF);
22212put('BASSA_VAH_LETTER_UWU, 'codepoint, 0x16AE0);
22213put('BASSA_VAH_LETTER_TO, 'codepoint, 0x16AE1);
22214put('BASSA_VAH_LETTER_BA, 'codepoint, 0x16AE2);
22215put('BASSA_VAH_LETTER_VU, 'codepoint, 0x16AE3);
22216put('BASSA_VAH_LETTER_YEIN, 'codepoint, 0x16AE4);
22217put('BASSA_VAH_LETTER_PA, 'codepoint, 0x16AE5);
22218put('BASSA_VAH_LETTER_WADDA, 'codepoint, 0x16AE6);
22219put('BASSA_VAH_LETTER_A, 'codepoint, 0x16AE7);
22220put('BASSA_VAH_LETTER_O, 'codepoint, 0x16AE8);
22221put('BASSA_VAH_LETTER_OO, 'codepoint, 0x16AE9);
22222put('BASSA_VAH_LETTER_U, 'codepoint, 0x16AEA);
22223put('BASSA_VAH_LETTER_EE, 'codepoint, 0x16AEB);
22224put('BASSA_VAH_LETTER_E, 'codepoint, 0x16AEC);
22225put('BASSA_VAH_LETTER_I, 'codepoint, 0x16AED);
22226put('BASSA_VAH_COMBINING_HIGH_TONE, 'codepoint, 0x16AF0);
22227put('BASSA_VAH_COMBINING_LOW_TONE, 'codepoint, 0x16AF1);
22228put('BASSA_VAH_COMBINING_MID_TONE, 'codepoint, 0x16AF2);
22229put('BASSA_VAH_COMBINING_LOW_MID_TONE, 'codepoint, 0x16AF3);
22230put('BASSA_VAH_COMBINING_HIGH_LOW_TONE, 'codepoint, 0x16AF4);
22231put('BASSA_VAH_FULL_STOP, 'codepoint, 0x16AF5);
22232put('PAHAWH_HMONG_VOWEL_KEEB, 'codepoint, 0x16B00);
22233put('PAHAWH_HMONG_VOWEL_KEEV, 'codepoint, 0x16B01);
22234put('PAHAWH_HMONG_VOWEL_KIB, 'codepoint, 0x16B02);
22235put('PAHAWH_HMONG_VOWEL_KIV, 'codepoint, 0x16B03);
22236put('PAHAWH_HMONG_VOWEL_KAUB, 'codepoint, 0x16B04);
22237put('PAHAWH_HMONG_VOWEL_KAUV, 'codepoint, 0x16B05);
22238put('PAHAWH_HMONG_VOWEL_KUB, 'codepoint, 0x16B06);
22239put('PAHAWH_HMONG_VOWEL_KUV, 'codepoint, 0x16B07);
22240put('PAHAWH_HMONG_VOWEL_KEB, 'codepoint, 0x16B08);
22241put('PAHAWH_HMONG_VOWEL_KEV, 'codepoint, 0x16B09);
22242put('PAHAWH_HMONG_VOWEL_KAIB, 'codepoint, 0x16B0A);
22243put('PAHAWH_HMONG_VOWEL_KAIV, 'codepoint, 0x16B0B);
22244put('PAHAWH_HMONG_VOWEL_KOOB, 'codepoint, 0x16B0C);
22245put('PAHAWH_HMONG_VOWEL_KOOV, 'codepoint, 0x16B0D);
22246put('PAHAWH_HMONG_VOWEL_KAWB, 'codepoint, 0x16B0E);
22247put('PAHAWH_HMONG_VOWEL_KAWV, 'codepoint, 0x16B0F);
22248put('PAHAWH_HMONG_VOWEL_KUAB, 'codepoint, 0x16B10);
22249put('PAHAWH_HMONG_VOWEL_KUAV, 'codepoint, 0x16B11);
22250put('PAHAWH_HMONG_VOWEL_KOB, 'codepoint, 0x16B12);
22251put('PAHAWH_HMONG_VOWEL_KOV, 'codepoint, 0x16B13);
22252put('PAHAWH_HMONG_VOWEL_KIAB, 'codepoint, 0x16B14);
22253put('PAHAWH_HMONG_VOWEL_KIAV, 'codepoint, 0x16B15);
22254put('PAHAWH_HMONG_VOWEL_KAB, 'codepoint, 0x16B16);
22255put('PAHAWH_HMONG_VOWEL_KAV, 'codepoint, 0x16B17);
22256put('PAHAWH_HMONG_VOWEL_KWB, 'codepoint, 0x16B18);
22257put('PAHAWH_HMONG_VOWEL_KWV, 'codepoint, 0x16B19);
22258put('PAHAWH_HMONG_VOWEL_KAAB, 'codepoint, 0x16B1A);
22259put('PAHAWH_HMONG_VOWEL_KAAV, 'codepoint, 0x16B1B);
22260put('PAHAWH_HMONG_CONSONANT_VAU, 'codepoint, 0x16B1C);
22261put('PAHAWH_HMONG_CONSONANT_NTSAU, 'codepoint, 0x16B1D);
22262put('PAHAWH_HMONG_CONSONANT_LAU, 'codepoint, 0x16B1E);
22263put('PAHAWH_HMONG_CONSONANT_HAU, 'codepoint, 0x16B1F);
22264put('PAHAWH_HMONG_CONSONANT_NLAU, 'codepoint, 0x16B20);
22265put('PAHAWH_HMONG_CONSONANT_RAU, 'codepoint, 0x16B21);
22266put('PAHAWH_HMONG_CONSONANT_NKAU, 'codepoint, 0x16B22);
22267put('PAHAWH_HMONG_CONSONANT_QHAU, 'codepoint, 0x16B23);
22268put('PAHAWH_HMONG_CONSONANT_YAU, 'codepoint, 0x16B24);
22269put('PAHAWH_HMONG_CONSONANT_HLAU, 'codepoint, 0x16B25);
22270put('PAHAWH_HMONG_CONSONANT_MAU, 'codepoint, 0x16B26);
22271put('PAHAWH_HMONG_CONSONANT_CHAU, 'codepoint, 0x16B27);
22272put('PAHAWH_HMONG_CONSONANT_NCHAU, 'codepoint, 0x16B28);
22273put('PAHAWH_HMONG_CONSONANT_HNAU, 'codepoint, 0x16B29);
22274put('PAHAWH_HMONG_CONSONANT_PLHAU, 'codepoint, 0x16B2A);
22275put('PAHAWH_HMONG_CONSONANT_NTHAU, 'codepoint, 0x16B2B);
22276put('PAHAWH_HMONG_CONSONANT_NAU, 'codepoint, 0x16B2C);
22277put('PAHAWH_HMONG_CONSONANT_AU, 'codepoint, 0x16B2D);
22278put('PAHAWH_HMONG_CONSONANT_XAU, 'codepoint, 0x16B2E);
22279put('PAHAWH_HMONG_CONSONANT_CAU, 'codepoint, 0x16B2F);
22280put('PAHAWH_HMONG_MARK_CIM_TUB, 'codepoint, 0x16B30);
22281put('PAHAWH_HMONG_MARK_CIM_SO, 'codepoint, 0x16B31);
22282put('PAHAWH_HMONG_MARK_CIM_KES, 'codepoint, 0x16B32);
22283put('PAHAWH_HMONG_MARK_CIM_KHAV, 'codepoint, 0x16B33);
22284put('PAHAWH_HMONG_MARK_CIM_SUAM, 'codepoint, 0x16B34);
22285put('PAHAWH_HMONG_MARK_CIM_HOM, 'codepoint, 0x16B35);
22286put('PAHAWH_HMONG_MARK_CIM_TAUM, 'codepoint, 0x16B36);
22287put('PAHAWH_HMONG_SIGN_VOS_THOM, 'codepoint, 0x16B37);
22288put('PAHAWH_HMONG_SIGN_VOS_TSHAB_CEEB, 'codepoint, 0x16B38);
22289put('PAHAWH_HMONG_SIGN_CIM_CHEEM, 'codepoint, 0x16B39);
22290put('PAHAWH_HMONG_SIGN_VOS_THIAB, 'codepoint, 0x16B3A);
22291put('PAHAWH_HMONG_SIGN_VOS_FEEM, 'codepoint, 0x16B3B);
22292put('PAHAWH_HMONG_SIGN_XYEEM_NTXIV, 'codepoint, 0x16B3C);
22293put('PAHAWH_HMONG_SIGN_XYEEM_RHO, 'codepoint, 0x16B3D);
22294put('PAHAWH_HMONG_SIGN_XYEEM_TOV, 'codepoint, 0x16B3E);
22295put('PAHAWH_HMONG_SIGN_XYEEM_FAIB, 'codepoint, 0x16B3F);
22296put('PAHAWH_HMONG_SIGN_VOS_SEEV, 'codepoint, 0x16B40);
22297put('PAHAWH_HMONG_SIGN_MEEJ_SUAB, 'codepoint, 0x16B41);
22298put('PAHAWH_HMONG_SIGN_VOS_NRUA, 'codepoint, 0x16B42);
22299put('PAHAWH_HMONG_SIGN_IB_YAM, 'codepoint, 0x16B43);
22300put('PAHAWH_HMONG_SIGN_XAUS, 'codepoint, 0x16B44);
22301put('PAHAWH_HMONG_SIGN_CIM_TSOV_ROG, 'codepoint, 0x16B45);
22302put('PAHAWH_HMONG_DIGIT_ZERO, 'codepoint, 0x16B50);
22303put('PAHAWH_HMONG_DIGIT_ONE, 'codepoint, 0x16B51);
22304put('PAHAWH_HMONG_DIGIT_TWO, 'codepoint, 0x16B52);
22305put('PAHAWH_HMONG_DIGIT_THREE, 'codepoint, 0x16B53);
22306put('PAHAWH_HMONG_DIGIT_FOUR, 'codepoint, 0x16B54);
22307put('PAHAWH_HMONG_DIGIT_FIVE, 'codepoint, 0x16B55);
22308put('PAHAWH_HMONG_DIGIT_SIX, 'codepoint, 0x16B56);
22309put('PAHAWH_HMONG_DIGIT_SEVEN, 'codepoint, 0x16B57);
22310put('PAHAWH_HMONG_DIGIT_EIGHT, 'codepoint, 0x16B58);
22311put('PAHAWH_HMONG_DIGIT_NINE, 'codepoint, 0x16B59);
22312put('PAHAWH_HMONG_NUMBER_TENS, 'codepoint, 0x16B5B);
22313put('PAHAWH_HMONG_NUMBER_HUNDREDS, 'codepoint, 0x16B5C);
22314put('PAHAWH_HMONG_NUMBER_TEN_THOUSANDS, 'codepoint, 0x16B5D);
22315put('PAHAWH_HMONG_NUMBER_MILLIONS, 'codepoint, 0x16B5E);
22316put('PAHAWH_HMONG_NUMBER_HUNDRED_MILLIONS, 'codepoint, 0x16B5F);
22317put('PAHAWH_HMONG_NUMBER_TEN_BILLIONS, 'codepoint, 0x16B60);
22318put('PAHAWH_HMONG_NUMBER_TRILLIONS, 'codepoint, 0x16B61);
22319put('PAHAWH_HMONG_SIGN_VOS_LUB, 'codepoint, 0x16B63);
22320put('PAHAWH_HMONG_SIGN_XYOO, 'codepoint, 0x16B64);
22321put('PAHAWH_HMONG_SIGN_HLI, 'codepoint, 0x16B65);
22322put('PAHAWH_HMONG_SIGN_THIRD_STAGE_HLI, 'codepoint, 0x16B66);
22323put('PAHAWH_HMONG_SIGN_ZWJ_THAJ, 'codepoint, 0x16B67);
22324put('PAHAWH_HMONG_SIGN_HNUB, 'codepoint, 0x16B68);
22325put('PAHAWH_HMONG_SIGN_NQIG, 'codepoint, 0x16B69);
22326put('PAHAWH_HMONG_SIGN_XIAB, 'codepoint, 0x16B6A);
22327put('PAHAWH_HMONG_SIGN_NTUJ, 'codepoint, 0x16B6B);
22328put('PAHAWH_HMONG_SIGN_AV, 'codepoint, 0x16B6C);
22329put('PAHAWH_HMONG_SIGN_TXHEEJ_CEEV, 'codepoint, 0x16B6D);
22330put('PAHAWH_HMONG_SIGN_MEEJ_TSEEB, 'codepoint, 0x16B6E);
22331put('PAHAWH_HMONG_SIGN_TAU, 'codepoint, 0x16B6F);
22332put('PAHAWH_HMONG_SIGN_LOS, 'codepoint, 0x16B70);
22333put('PAHAWH_HMONG_SIGN_MUS, 'codepoint, 0x16B71);
22334put('PAHAWH_HMONG_SIGN_CIM_HAIS_LUS_NTOG_NTOG, 'codepoint, 0x16B72);
22335put('PAHAWH_HMONG_SIGN_CIM_CUAM_TSHOOJ, 'codepoint, 0x16B73);
22336put('PAHAWH_HMONG_SIGN_CIM_TXWV, 'codepoint, 0x16B74);
22337put('PAHAWH_HMONG_SIGN_CIM_TXWV_CHWV, 'codepoint, 0x16B75);
22338put('PAHAWH_HMONG_SIGN_CIM_PUB_DAWB, 'codepoint, 0x16B76);
22339put('PAHAWH_HMONG_SIGN_CIM_NRES_TOS, 'codepoint, 0x16B77);
22340put('PAHAWH_HMONG_CLAN_SIGN_TSHEEJ, 'codepoint, 0x16B7D);
22341put('PAHAWH_HMONG_CLAN_SIGN_YEEG, 'codepoint, 0x16B7E);
22342put('PAHAWH_HMONG_CLAN_SIGN_LIS, 'codepoint, 0x16B7F);
22343put('PAHAWH_HMONG_CLAN_SIGN_LAUJ, 'codepoint, 0x16B80);
22344put('PAHAWH_HMONG_CLAN_SIGN_XYOOJ, 'codepoint, 0x16B81);
22345put('PAHAWH_HMONG_CLAN_SIGN_KOO, 'codepoint, 0x16B82);
22346put('PAHAWH_HMONG_CLAN_SIGN_HAWJ, 'codepoint, 0x16B83);
22347put('PAHAWH_HMONG_CLAN_SIGN_MUAS, 'codepoint, 0x16B84);
22348put('PAHAWH_HMONG_CLAN_SIGN_THOJ, 'codepoint, 0x16B85);
22349put('PAHAWH_HMONG_CLAN_SIGN_TSAB, 'codepoint, 0x16B86);
22350put('PAHAWH_HMONG_CLAN_SIGN_PHAB, 'codepoint, 0x16B87);
22351put('PAHAWH_HMONG_CLAN_SIGN_KHAB, 'codepoint, 0x16B88);
22352put('PAHAWH_HMONG_CLAN_SIGN_HAM, 'codepoint, 0x16B89);
22353put('PAHAWH_HMONG_CLAN_SIGN_VAJ, 'codepoint, 0x16B8A);
22354put('PAHAWH_HMONG_CLAN_SIGN_FAJ, 'codepoint, 0x16B8B);
22355put('PAHAWH_HMONG_CLAN_SIGN_YAJ, 'codepoint, 0x16B8C);
22356put('PAHAWH_HMONG_CLAN_SIGN_TSWB, 'codepoint, 0x16B8D);
22357put('PAHAWH_HMONG_CLAN_SIGN_KWM, 'codepoint, 0x16B8E);
22358put('PAHAWH_HMONG_CLAN_SIGN_VWJ, 'codepoint, 0x16B8F);
22359put('MIAO_LETTER_PA, 'codepoint, 0x16F00);
22360put('MIAO_LETTER_BA, 'codepoint, 0x16F01);
22361put('MIAO_LETTER_YI_PA, 'codepoint, 0x16F02);
22362put('MIAO_LETTER_PLA, 'codepoint, 0x16F03);
22363put('MIAO_LETTER_MA, 'codepoint, 0x16F04);
22364put('MIAO_LETTER_MHA, 'codepoint, 0x16F05);
22365put('MIAO_LETTER_ARCHAIC_MA, 'codepoint, 0x16F06);
22366put('MIAO_LETTER_FA, 'codepoint, 0x16F07);
22367put('MIAO_LETTER_VA, 'codepoint, 0x16F08);
22368put('MIAO_LETTER_VFA, 'codepoint, 0x16F09);
22369put('MIAO_LETTER_TA, 'codepoint, 0x16F0A);
22370put('MIAO_LETTER_DA, 'codepoint, 0x16F0B);
22371put('MIAO_LETTER_YI_TTA, 'codepoint, 0x16F0C);
22372put('MIAO_LETTER_YI_TA, 'codepoint, 0x16F0D);
22373put('MIAO_LETTER_TTA, 'codepoint, 0x16F0E);
22374put('MIAO_LETTER_DDA, 'codepoint, 0x16F0F);
22375put('MIAO_LETTER_NA, 'codepoint, 0x16F10);
22376put('MIAO_LETTER_NHA, 'codepoint, 0x16F11);
22377put('MIAO_LETTER_YI_NNA, 'codepoint, 0x16F12);
22378put('MIAO_LETTER_ARCHAIC_NA, 'codepoint, 0x16F13);
22379put('MIAO_LETTER_NNA, 'codepoint, 0x16F14);
22380put('MIAO_LETTER_NNHA, 'codepoint, 0x16F15);
22381put('MIAO_LETTER_LA, 'codepoint, 0x16F16);
22382put('MIAO_LETTER_LYA, 'codepoint, 0x16F17);
22383put('MIAO_LETTER_LHA, 'codepoint, 0x16F18);
22384put('MIAO_LETTER_LHYA, 'codepoint, 0x16F19);
22385put('MIAO_LETTER_TLHA, 'codepoint, 0x16F1A);
22386put('MIAO_LETTER_DLHA, 'codepoint, 0x16F1B);
22387put('MIAO_LETTER_TLHYA, 'codepoint, 0x16F1C);
22388put('MIAO_LETTER_DLHYA, 'codepoint, 0x16F1D);
22389put('MIAO_LETTER_KA, 'codepoint, 0x16F1E);
22390put('MIAO_LETTER_GA, 'codepoint, 0x16F1F);
22391put('MIAO_LETTER_YI_KA, 'codepoint, 0x16F20);
22392put('MIAO_LETTER_QA, 'codepoint, 0x16F21);
22393put('MIAO_LETTER_QGA, 'codepoint, 0x16F22);
22394put('MIAO_LETTER_NGA, 'codepoint, 0x16F23);
22395put('MIAO_LETTER_NGHA, 'codepoint, 0x16F24);
22396put('MIAO_LETTER_ARCHAIC_NGA, 'codepoint, 0x16F25);
22397put('MIAO_LETTER_HA, 'codepoint, 0x16F26);
22398put('MIAO_LETTER_XA, 'codepoint, 0x16F27);
22399put('MIAO_LETTER_GHA, 'codepoint, 0x16F28);
22400put('MIAO_LETTER_GHHA, 'codepoint, 0x16F29);
22401put('MIAO_LETTER_TSSA, 'codepoint, 0x16F2A);
22402put('MIAO_LETTER_DZZA, 'codepoint, 0x16F2B);
22403put('MIAO_LETTER_NYA, 'codepoint, 0x16F2C);
22404put('MIAO_LETTER_NYHA, 'codepoint, 0x16F2D);
22405put('MIAO_LETTER_TSHA, 'codepoint, 0x16F2E);
22406put('MIAO_LETTER_DZHA, 'codepoint, 0x16F2F);
22407put('MIAO_LETTER_YI_TSHA, 'codepoint, 0x16F30);
22408put('MIAO_LETTER_YI_DZHA, 'codepoint, 0x16F31);
22409put('MIAO_LETTER_REFORMED_TSHA, 'codepoint, 0x16F32);
22410put('MIAO_LETTER_SHA, 'codepoint, 0x16F33);
22411put('MIAO_LETTER_SSA, 'codepoint, 0x16F34);
22412put('MIAO_LETTER_ZHA, 'codepoint, 0x16F35);
22413put('MIAO_LETTER_ZSHA, 'codepoint, 0x16F36);
22414put('MIAO_LETTER_TSA, 'codepoint, 0x16F37);
22415put('MIAO_LETTER_DZA, 'codepoint, 0x16F38);
22416put('MIAO_LETTER_YI_TSA, 'codepoint, 0x16F39);
22417put('MIAO_LETTER_SA, 'codepoint, 0x16F3A);
22418put('MIAO_LETTER_ZA, 'codepoint, 0x16F3B);
22419put('MIAO_LETTER_ZSA, 'codepoint, 0x16F3C);
22420put('MIAO_LETTER_ZZA, 'codepoint, 0x16F3D);
22421put('MIAO_LETTER_ZZSA, 'codepoint, 0x16F3E);
22422put('MIAO_LETTER_ARCHAIC_ZZA, 'codepoint, 0x16F3F);
22423put('MIAO_LETTER_ZZYA, 'codepoint, 0x16F40);
22424put('MIAO_LETTER_ZZSYA, 'codepoint, 0x16F41);
22425put('MIAO_LETTER_WA, 'codepoint, 0x16F42);
22426put('MIAO_LETTER_AH, 'codepoint, 0x16F43);
22427put('MIAO_LETTER_HHA, 'codepoint, 0x16F44);
22428put('MIAO_LETTER_NASALIZATION, 'codepoint, 0x16F50);
22429put('MIAO_SIGN_ASPIRATION, 'codepoint, 0x16F51);
22430put('MIAO_SIGN_REFORMED_VOICING, 'codepoint, 0x16F52);
22431put('MIAO_SIGN_REFORMED_ASPIRATION, 'codepoint, 0x16F53);
22432put('MIAO_VOWEL_SIGN_A, 'codepoint, 0x16F54);
22433put('MIAO_VOWEL_SIGN_AA, 'codepoint, 0x16F55);
22434put('MIAO_VOWEL_SIGN_AHH, 'codepoint, 0x16F56);
22435put('MIAO_VOWEL_SIGN_AN, 'codepoint, 0x16F57);
22436put('MIAO_VOWEL_SIGN_ANG, 'codepoint, 0x16F58);
22437put('MIAO_VOWEL_SIGN_O, 'codepoint, 0x16F59);
22438put('MIAO_VOWEL_SIGN_OO, 'codepoint, 0x16F5A);
22439put('MIAO_VOWEL_SIGN_WO, 'codepoint, 0x16F5B);
22440put('MIAO_VOWEL_SIGN_W, 'codepoint, 0x16F5C);
22441put('MIAO_VOWEL_SIGN_E, 'codepoint, 0x16F5D);
22442put('MIAO_VOWEL_SIGN_EN, 'codepoint, 0x16F5E);
22443put('MIAO_VOWEL_SIGN_ENG, 'codepoint, 0x16F5F);
22444put('MIAO_VOWEL_SIGN_OEY, 'codepoint, 0x16F60);
22445put('MIAO_VOWEL_SIGN_I, 'codepoint, 0x16F61);
22446put('MIAO_VOWEL_SIGN_IA, 'codepoint, 0x16F62);
22447put('MIAO_VOWEL_SIGN_IAN, 'codepoint, 0x16F63);
22448put('MIAO_VOWEL_SIGN_IANG, 'codepoint, 0x16F64);
22449put('MIAO_VOWEL_SIGN_IO, 'codepoint, 0x16F65);
22450put('MIAO_VOWEL_SIGN_IE, 'codepoint, 0x16F66);
22451put('MIAO_VOWEL_SIGN_II, 'codepoint, 0x16F67);
22452put('MIAO_VOWEL_SIGN_IU, 'codepoint, 0x16F68);
22453put('MIAO_VOWEL_SIGN_ING, 'codepoint, 0x16F69);
22454put('MIAO_VOWEL_SIGN_U, 'codepoint, 0x16F6A);
22455put('MIAO_VOWEL_SIGN_UA, 'codepoint, 0x16F6B);
22456put('MIAO_VOWEL_SIGN_UAN, 'codepoint, 0x16F6C);
22457put('MIAO_VOWEL_SIGN_UANG, 'codepoint, 0x16F6D);
22458put('MIAO_VOWEL_SIGN_UU, 'codepoint, 0x16F6E);
22459put('MIAO_VOWEL_SIGN_UEI, 'codepoint, 0x16F6F);
22460put('MIAO_VOWEL_SIGN_UNG, 'codepoint, 0x16F70);
22461put('MIAO_VOWEL_SIGN_Y, 'codepoint, 0x16F71);
22462put('MIAO_VOWEL_SIGN_YI, 'codepoint, 0x16F72);
22463put('MIAO_VOWEL_SIGN_AE, 'codepoint, 0x16F73);
22464put('MIAO_VOWEL_SIGN_AEE, 'codepoint, 0x16F74);
22465put('MIAO_VOWEL_SIGN_ERR, 'codepoint, 0x16F75);
22466put('MIAO_VOWEL_SIGN_ROUNDED_ERR, 'codepoint, 0x16F76);
22467put('MIAO_VOWEL_SIGN_ER, 'codepoint, 0x16F77);
22468put('MIAO_VOWEL_SIGN_ROUNDED_ER, 'codepoint, 0x16F78);
22469put('MIAO_VOWEL_SIGN_AI, 'codepoint, 0x16F79);
22470put('MIAO_VOWEL_SIGN_EI, 'codepoint, 0x16F7A);
22471put('MIAO_VOWEL_SIGN_AU, 'codepoint, 0x16F7B);
22472put('MIAO_VOWEL_SIGN_OU, 'codepoint, 0x16F7C);
22473put('MIAO_VOWEL_SIGN_N, 'codepoint, 0x16F7D);
22474put('MIAO_VOWEL_SIGN_NG, 'codepoint, 0x16F7E);
22475put('MIAO_TONE_RIGHT, 'codepoint, 0x16F8F);
22476put('MIAO_TONE_TOP_RIGHT, 'codepoint, 0x16F90);
22477put('MIAO_TONE_ABOVE, 'codepoint, 0x16F91);
22478put('MIAO_TONE_BELOW, 'codepoint, 0x16F92);
22479put('MIAO_LETTER_TONE_2, 'codepoint, 0x16F93);
22480put('MIAO_LETTER_TONE_3, 'codepoint, 0x16F94);
22481put('MIAO_LETTER_TONE_4, 'codepoint, 0x16F95);
22482put('MIAO_LETTER_TONE_5, 'codepoint, 0x16F96);
22483put('MIAO_LETTER_TONE_6, 'codepoint, 0x16F97);
22484put('MIAO_LETTER_TONE_7, 'codepoint, 0x16F98);
22485put('MIAO_LETTER_TONE_8, 'codepoint, 0x16F99);
22486put('MIAO_LETTER_REFORMED_TONE_1, 'codepoint, 0x16F9A);
22487put('MIAO_LETTER_REFORMED_TONE_2, 'codepoint, 0x16F9B);
22488put('MIAO_LETTER_REFORMED_TONE_4, 'codepoint, 0x16F9C);
22489put('MIAO_LETTER_REFORMED_TONE_5, 'codepoint, 0x16F9D);
22490put('MIAO_LETTER_REFORMED_TONE_6, 'codepoint, 0x16F9E);
22491put('MIAO_LETTER_REFORMED_TONE_8, 'codepoint, 0x16F9F);
22492put('KATAKANA_LETTER_ARCHAIC_E, 'codepoint, 0x1B000);
22493put('HIRAGANA_LETTER_ARCHAIC_YE, 'codepoint, 0x1B001);
22494put('DUPLOYAN_LETTER_H, 'codepoint, 0x1BC00);
22495put('DUPLOYAN_LETTER_X, 'codepoint, 0x1BC01);
22496put('DUPLOYAN_LETTER_P, 'codepoint, 0x1BC02);
22497put('DUPLOYAN_LETTER_T, 'codepoint, 0x1BC03);
22498put('DUPLOYAN_LETTER_F, 'codepoint, 0x1BC04);
22499put('DUPLOYAN_LETTER_K, 'codepoint, 0x1BC05);
22500put('DUPLOYAN_LETTER_L, 'codepoint, 0x1BC06);
22501put('DUPLOYAN_LETTER_B, 'codepoint, 0x1BC07);
22502put('DUPLOYAN_LETTER_D, 'codepoint, 0x1BC08);
22503put('DUPLOYAN_LETTER_V, 'codepoint, 0x1BC09);
22504put('DUPLOYAN_LETTER_G, 'codepoint, 0x1BC0A);
22505put('DUPLOYAN_LETTER_R, 'codepoint, 0x1BC0B);
22506put('DUPLOYAN_LETTER_P_N, 'codepoint, 0x1BC0C);
22507put('DUPLOYAN_LETTER_D_S, 'codepoint, 0x1BC0D);
22508put('DUPLOYAN_LETTER_F_N, 'codepoint, 0x1BC0E);
22509put('DUPLOYAN_LETTER_K_M, 'codepoint, 0x1BC0F);
22510put('DUPLOYAN_LETTER_R_S, 'codepoint, 0x1BC10);
22511put('DUPLOYAN_LETTER_TH, 'codepoint, 0x1BC11);
22512put('DUPLOYAN_LETTER_SLOAN_DH, 'codepoint, 0x1BC12);
22513put('DUPLOYAN_LETTER_DH, 'codepoint, 0x1BC13);
22514put('DUPLOYAN_LETTER_KK, 'codepoint, 0x1BC14);
22515put('DUPLOYAN_LETTER_SLOAN_J, 'codepoint, 0x1BC15);
22516put('DUPLOYAN_LETTER_HL, 'codepoint, 0x1BC16);
22517put('DUPLOYAN_LETTER_LH, 'codepoint, 0x1BC17);
22518put('DUPLOYAN_LETTER_RH, 'codepoint, 0x1BC18);
22519put('DUPLOYAN_LETTER_M, 'codepoint, 0x1BC19);
22520put('DUPLOYAN_LETTER_N, 'codepoint, 0x1BC1A);
22521put('DUPLOYAN_LETTER_J, 'codepoint, 0x1BC1B);
22522put('DUPLOYAN_LETTER_S, 'codepoint, 0x1BC1C);
22523put('DUPLOYAN_LETTER_M_N, 'codepoint, 0x1BC1D);
22524put('DUPLOYAN_LETTER_N_M, 'codepoint, 0x1BC1E);
22525put('DUPLOYAN_LETTER_J_M, 'codepoint, 0x1BC1F);
22526put('DUPLOYAN_LETTER_S_J, 'codepoint, 0x1BC20);
22527put('DUPLOYAN_LETTER_M_WITH_DOT, 'codepoint, 0x1BC21);
22528put('DUPLOYAN_LETTER_N_WITH_DOT, 'codepoint, 0x1BC22);
22529put('DUPLOYAN_LETTER_J_WITH_DOT, 'codepoint, 0x1BC23);
22530put('DUPLOYAN_LETTER_J_WITH_DOTS_INSIDE_AND_ABOVE, 'codepoint, 0x1BC24);
22531put('DUPLOYAN_LETTER_S_WITH_DOT, 'codepoint, 0x1BC25);
22532put('DUPLOYAN_LETTER_S_WITH_DOT_BELOW, 'codepoint, 0x1BC26);
22533put('DUPLOYAN_LETTER_M_S, 'codepoint, 0x1BC27);
22534put('DUPLOYAN_LETTER_N_S, 'codepoint, 0x1BC28);
22535put('DUPLOYAN_LETTER_J_S, 'codepoint, 0x1BC29);
22536put('DUPLOYAN_LETTER_S_S, 'codepoint, 0x1BC2A);
22537put('DUPLOYAN_LETTER_M_N_S, 'codepoint, 0x1BC2B);
22538put('DUPLOYAN_LETTER_N_M_S, 'codepoint, 0x1BC2C);
22539put('DUPLOYAN_LETTER_J_M_S, 'codepoint, 0x1BC2D);
22540put('DUPLOYAN_LETTER_S_J_S, 'codepoint, 0x1BC2E);
22541put('DUPLOYAN_LETTER_J_S_WITH_DOT, 'codepoint, 0x1BC2F);
22542put('DUPLOYAN_LETTER_J_N, 'codepoint, 0x1BC30);
22543put('DUPLOYAN_LETTER_J_N_S, 'codepoint, 0x1BC31);
22544put('DUPLOYAN_LETTER_S_T, 'codepoint, 0x1BC32);
22545put('DUPLOYAN_LETTER_S_T_R, 'codepoint, 0x1BC33);
22546put('DUPLOYAN_LETTER_S_P, 'codepoint, 0x1BC34);
22547put('DUPLOYAN_LETTER_S_P_R, 'codepoint, 0x1BC35);
22548put('DUPLOYAN_LETTER_T_S, 'codepoint, 0x1BC36);
22549put('DUPLOYAN_LETTER_T_R_S, 'codepoint, 0x1BC37);
22550put('DUPLOYAN_LETTER_W, 'codepoint, 0x1BC38);
22551put('DUPLOYAN_LETTER_WH, 'codepoint, 0x1BC39);
22552put('DUPLOYAN_LETTER_W_R, 'codepoint, 0x1BC3A);
22553put('DUPLOYAN_LETTER_S_N, 'codepoint, 0x1BC3B);
22554put('DUPLOYAN_LETTER_S_M, 'codepoint, 0x1BC3C);
22555put('DUPLOYAN_LETTER_K_R_S, 'codepoint, 0x1BC3D);
22556put('DUPLOYAN_LETTER_G_R_S, 'codepoint, 0x1BC3E);
22557put('DUPLOYAN_LETTER_S_K, 'codepoint, 0x1BC3F);
22558put('DUPLOYAN_LETTER_S_K_R, 'codepoint, 0x1BC40);
22559put('DUPLOYAN_LETTER_A, 'codepoint, 0x1BC41);
22560put('DUPLOYAN_LETTER_SLOAN_OW, 'codepoint, 0x1BC42);
22561put('DUPLOYAN_LETTER_OA, 'codepoint, 0x1BC43);
22562put('DUPLOYAN_LETTER_O, 'codepoint, 0x1BC44);
22563put('DUPLOYAN_LETTER_AOU, 'codepoint, 0x1BC45);
22564put('DUPLOYAN_LETTER_I, 'codepoint, 0x1BC46);
22565put('DUPLOYAN_LETTER_E, 'codepoint, 0x1BC47);
22566put('DUPLOYAN_LETTER_IE, 'codepoint, 0x1BC48);
22567put('DUPLOYAN_LETTER_SHORT_I, 'codepoint, 0x1BC49);
22568put('DUPLOYAN_LETTER_UI, 'codepoint, 0x1BC4A);
22569put('DUPLOYAN_LETTER_EE, 'codepoint, 0x1BC4B);
22570put('DUPLOYAN_LETTER_SLOAN_EH, 'codepoint, 0x1BC4C);
22571put('DUPLOYAN_LETTER_ROMANIAN_I, 'codepoint, 0x1BC4D);
22572put('DUPLOYAN_LETTER_SLOAN_EE, 'codepoint, 0x1BC4E);
22573put('DUPLOYAN_LETTER_LONG_I, 'codepoint, 0x1BC4F);
22574put('DUPLOYAN_LETTER_YE, 'codepoint, 0x1BC50);
22575put('DUPLOYAN_LETTER_U, 'codepoint, 0x1BC51);
22576put('DUPLOYAN_LETTER_EU, 'codepoint, 0x1BC52);
22577put('DUPLOYAN_LETTER_XW, 'codepoint, 0x1BC53);
22578put('DUPLOYAN_LETTER_U_N, 'codepoint, 0x1BC54);
22579put('DUPLOYAN_LETTER_LONG_U, 'codepoint, 0x1BC55);
22580put('DUPLOYAN_LETTER_ROMANIAN_U, 'codepoint, 0x1BC56);
22581put('DUPLOYAN_LETTER_UH, 'codepoint, 0x1BC57);
22582put('DUPLOYAN_LETTER_SLOAN_U, 'codepoint, 0x1BC58);
22583put('DUPLOYAN_LETTER_OOH, 'codepoint, 0x1BC59);
22584put('DUPLOYAN_LETTER_OW, 'codepoint, 0x1BC5A);
22585put('DUPLOYAN_LETTER_OU, 'codepoint, 0x1BC5B);
22586put('DUPLOYAN_LETTER_WA, 'codepoint, 0x1BC5C);
22587put('DUPLOYAN_LETTER_WO, 'codepoint, 0x1BC5D);
22588put('DUPLOYAN_LETTER_WI, 'codepoint, 0x1BC5E);
22589put('DUPLOYAN_LETTER_WEI, 'codepoint, 0x1BC5F);
22590put('DUPLOYAN_LETTER_WOW, 'codepoint, 0x1BC60);
22591put('DUPLOYAN_LETTER_NASAL_U, 'codepoint, 0x1BC61);
22592put('DUPLOYAN_LETTER_NASAL_O, 'codepoint, 0x1BC62);
22593put('DUPLOYAN_LETTER_NASAL_I, 'codepoint, 0x1BC63);
22594put('DUPLOYAN_LETTER_NASAL_A, 'codepoint, 0x1BC64);
22595put('DUPLOYAN_LETTER_PERNIN_AN, 'codepoint, 0x1BC65);
22596put('DUPLOYAN_LETTER_PERNIN_AM, 'codepoint, 0x1BC66);
22597put('DUPLOYAN_LETTER_SLOAN_EN, 'codepoint, 0x1BC67);
22598put('DUPLOYAN_LETTER_SLOAN_AN, 'codepoint, 0x1BC68);
22599put('DUPLOYAN_LETTER_SLOAN_ON, 'codepoint, 0x1BC69);
22600put('DUPLOYAN_LETTER_VOCALIC_M, 'codepoint, 0x1BC6A);
22601put('DUPLOYAN_AFFIX_LEFT_HORIZONTAL_SECANT, 'codepoint, 0x1BC70);
22602put('DUPLOYAN_AFFIX_MID_HORIZONTAL_SECANT, 'codepoint, 0x1BC71);
22603put('DUPLOYAN_AFFIX_RIGHT_HORIZONTAL_SECANT, 'codepoint, 0x1BC72);
22604put('DUPLOYAN_AFFIX_LOW_VERTICAL_SECANT, 'codepoint, 0x1BC73);
22605put('DUPLOYAN_AFFIX_MID_VERTICAL_SECANT, 'codepoint, 0x1BC74);
22606put('DUPLOYAN_AFFIX_HIGH_VERTICAL_SECANT, 'codepoint, 0x1BC75);
22607put('DUPLOYAN_AFFIX_ATTACHED_SECANT, 'codepoint, 0x1BC76);
22608put('DUPLOYAN_AFFIX_ATTACHED_LEFT_TO_RIGHT_SECANT, 'codepoint, 0x1BC77);
22609put('DUPLOYAN_AFFIX_ATTACHED_TANGENT, 'codepoint, 0x1BC78);
22610put('DUPLOYAN_AFFIX_ATTACHED_TAIL, 'codepoint, 0x1BC79);
22611put('DUPLOYAN_AFFIX_ATTACHED_E_HOOK, 'codepoint, 0x1BC7A);
22612put('DUPLOYAN_AFFIX_ATTACHED_I_HOOK, 'codepoint, 0x1BC7B);
22613put('DUPLOYAN_AFFIX_ATTACHED_TANGENT_HOOK, 'codepoint, 0x1BC7C);
22614put('DUPLOYAN_AFFIX_HIGH_ACUTE, 'codepoint, 0x1BC80);
22615put('DUPLOYAN_AFFIX_HIGH_TIGHT_ACUTE, 'codepoint, 0x1BC81);
22616put('DUPLOYAN_AFFIX_HIGH_GRAVE, 'codepoint, 0x1BC82);
22617put('DUPLOYAN_AFFIX_HIGH_LONG_GRAVE, 'codepoint, 0x1BC83);
22618put('DUPLOYAN_AFFIX_HIGH_DOT, 'codepoint, 0x1BC84);
22619put('DUPLOYAN_AFFIX_HIGH_CIRCLE, 'codepoint, 0x1BC85);
22620put('DUPLOYAN_AFFIX_HIGH_LINE, 'codepoint, 0x1BC86);
22621put('DUPLOYAN_AFFIX_HIGH_WAVE, 'codepoint, 0x1BC87);
22622put('DUPLOYAN_AFFIX_HIGH_VERTICAL, 'codepoint, 0x1BC88);
22623put('DUPLOYAN_AFFIX_LOW_ACUTE, 'codepoint, 0x1BC90);
22624put('DUPLOYAN_AFFIX_LOW_TIGHT_ACUTE, 'codepoint, 0x1BC91);
22625put('DUPLOYAN_AFFIX_LOW_GRAVE, 'codepoint, 0x1BC92);
22626put('DUPLOYAN_AFFIX_LOW_LONG_GRAVE, 'codepoint, 0x1BC93);
22627put('DUPLOYAN_AFFIX_LOW_DOT, 'codepoint, 0x1BC94);
22628put('DUPLOYAN_AFFIX_LOW_CIRCLE, 'codepoint, 0x1BC95);
22629put('DUPLOYAN_AFFIX_LOW_LINE, 'codepoint, 0x1BC96);
22630put('DUPLOYAN_AFFIX_LOW_WAVE, 'codepoint, 0x1BC97);
22631put('DUPLOYAN_AFFIX_LOW_VERTICAL, 'codepoint, 0x1BC98);
22632put('DUPLOYAN_AFFIX_LOW_ARROW, 'codepoint, 0x1BC99);
22633put('DUPLOYAN_SIGN_O_WITH_CROSS, 'codepoint, 0x1BC9C);
22634put('DUPLOYAN_THICK_LETTER_SELECTOR, 'codepoint, 0x1BC9D);
22635put('DUPLOYAN_DOUBLE_MARK, 'codepoint, 0x1BC9E);
22636put('DUPLOYAN_PUNCTUATION_CHINOOK_FULL_STOP, 'codepoint, 0x1BC9F);
22637put('SHORTHAND_FORMAT_LETTER_OVERLAP, 'codepoint, 0x1BCA0);
22638put('SHORTHAND_FORMAT_CONTINUING_OVERLAP, 'codepoint, 0x1BCA1);
22639put('SHORTHAND_FORMAT_DOWN_STEP, 'codepoint, 0x1BCA2);
22640put('SHORTHAND_FORMAT_UP_STEP, 'codepoint, 0x1BCA3);
22641put('BYZANTINE_MUSICAL_SYMBOL_PSILI, 'codepoint, 0x1D000);
22642put('BYZANTINE_MUSICAL_SYMBOL_DASEIA, 'codepoint, 0x1D001);
22643put('BYZANTINE_MUSICAL_SYMBOL_PERISPOMENI, 'codepoint, 0x1D002);
22644put('BYZANTINE_MUSICAL_SYMBOL_OXEIA_EKFONITIKON, 'codepoint, 0x1D003);
22645put('BYZANTINE_MUSICAL_SYMBOL_OXEIA_DIPLI, 'codepoint, 0x1D004);
22646put('BYZANTINE_MUSICAL_SYMBOL_VAREIA_EKFONITIKON, 'codepoint, 0x1D005);
22647put('BYZANTINE_MUSICAL_SYMBOL_VAREIA_DIPLI, 'codepoint, 0x1D006);
22648put('BYZANTINE_MUSICAL_SYMBOL_KATHISTI, 'codepoint, 0x1D007);
22649put('BYZANTINE_MUSICAL_SYMBOL_SYRMATIKI, 'codepoint, 0x1D008);
22650put('BYZANTINE_MUSICAL_SYMBOL_PARAKLITIKI, 'codepoint, 0x1D009);
22651put('BYZANTINE_MUSICAL_SYMBOL_YPOKRISIS, 'codepoint, 0x1D00A);
22652put('BYZANTINE_MUSICAL_SYMBOL_YPOKRISIS_DIPLI, 'codepoint, 0x1D00B);
22653put('BYZANTINE_MUSICAL_SYMBOL_KREMASTI, 'codepoint, 0x1D00C);
22654put('BYZANTINE_MUSICAL_SYMBOL_APESO_EKFONITIKON, 'codepoint, 0x1D00D);
22655put('BYZANTINE_MUSICAL_SYMBOL_EXO_EKFONITIKON, 'codepoint, 0x1D00E);
22656put('BYZANTINE_MUSICAL_SYMBOL_TELEIA, 'codepoint, 0x1D00F);
22657put('BYZANTINE_MUSICAL_SYMBOL_KENTIMATA, 'codepoint, 0x1D010);
22658put('BYZANTINE_MUSICAL_SYMBOL_APOSTROFOS, 'codepoint, 0x1D011);
22659put('BYZANTINE_MUSICAL_SYMBOL_APOSTROFOS_DIPLI, 'codepoint, 0x1D012);
22660put('BYZANTINE_MUSICAL_SYMBOL_SYNEVMA, 'codepoint, 0x1D013);
22661put('BYZANTINE_MUSICAL_SYMBOL_THITA, 'codepoint, 0x1D014);
22662put('BYZANTINE_MUSICAL_SYMBOL_OLIGON_ARCHAION, 'codepoint, 0x1D015);
22663put('BYZANTINE_MUSICAL_SYMBOL_GORGON_ARCHAION, 'codepoint, 0x1D016);
22664put('BYZANTINE_MUSICAL_SYMBOL_PSILON, 'codepoint, 0x1D017);
22665put('BYZANTINE_MUSICAL_SYMBOL_CHAMILON, 'codepoint, 0x1D018);
22666put('BYZANTINE_MUSICAL_SYMBOL_VATHY, 'codepoint, 0x1D019);
22667put('BYZANTINE_MUSICAL_SYMBOL_ISON_ARCHAION, 'codepoint, 0x1D01A);
22668put('BYZANTINE_MUSICAL_SYMBOL_KENTIMA_ARCHAION, 'codepoint, 0x1D01B);
22669put('BYZANTINE_MUSICAL_SYMBOL_KENTIMATA_ARCHAION, 'codepoint, 0x1D01C);
22670put('BYZANTINE_MUSICAL_SYMBOL_SAXIMATA, 'codepoint, 0x1D01D);
22671put('BYZANTINE_MUSICAL_SYMBOL_PARICHON, 'codepoint, 0x1D01E);
22672put('BYZANTINE_MUSICAL_SYMBOL_STAVROS_APODEXIA, 'codepoint, 0x1D01F);
22673put('BYZANTINE_MUSICAL_SYMBOL_OXEIAI_ARCHAION, 'codepoint, 0x1D020);
22674put('BYZANTINE_MUSICAL_SYMBOL_VAREIAI_ARCHAION, 'codepoint, 0x1D021);
22675put('BYZANTINE_MUSICAL_SYMBOL_APODERMA_ARCHAION, 'codepoint, 0x1D022);
22676put('BYZANTINE_MUSICAL_SYMBOL_APOTHEMA, 'codepoint, 0x1D023);
22677put('BYZANTINE_MUSICAL_SYMBOL_KLASMA, 'codepoint, 0x1D024);
22678put('BYZANTINE_MUSICAL_SYMBOL_REVMA, 'codepoint, 0x1D025);
22679put('BYZANTINE_MUSICAL_SYMBOL_PIASMA_ARCHAION, 'codepoint, 0x1D026);
22680put('BYZANTINE_MUSICAL_SYMBOL_TINAGMA, 'codepoint, 0x1D027);
22681put('BYZANTINE_MUSICAL_SYMBOL_ANATRICHISMA, 'codepoint, 0x1D028);
22682put('BYZANTINE_MUSICAL_SYMBOL_SEISMA, 'codepoint, 0x1D029);
22683put('BYZANTINE_MUSICAL_SYMBOL_SYNAGMA_ARCHAION, 'codepoint, 0x1D02A);
22684put('BYZANTINE_MUSICAL_SYMBOL_SYNAGMA_META_STAVROU, 'codepoint, 0x1D02B);
22685put('BYZANTINE_MUSICAL_SYMBOL_OYRANISMA_ARCHAION, 'codepoint, 0x1D02C);
22686put('BYZANTINE_MUSICAL_SYMBOL_THEMA, 'codepoint, 0x1D02D);
22687put('BYZANTINE_MUSICAL_SYMBOL_LEMOI, 'codepoint, 0x1D02E);
22688put('BYZANTINE_MUSICAL_SYMBOL_DYO, 'codepoint, 0x1D02F);
22689put('BYZANTINE_MUSICAL_SYMBOL_TRIA, 'codepoint, 0x1D030);
22690put('BYZANTINE_MUSICAL_SYMBOL_TESSERA, 'codepoint, 0x1D031);
22691put('BYZANTINE_MUSICAL_SYMBOL_KRATIMATA, 'codepoint, 0x1D032);
22692put('BYZANTINE_MUSICAL_SYMBOL_APESO_EXO_NEO, 'codepoint, 0x1D033);
22693put('BYZANTINE_MUSICAL_SYMBOL_FTHORA_ARCHAION, 'codepoint, 0x1D034);
22694put('BYZANTINE_MUSICAL_SYMBOL_IMIFTHORA, 'codepoint, 0x1D035);
22695put('BYZANTINE_MUSICAL_SYMBOL_TROMIKON_ARCHAION, 'codepoint, 0x1D036);
22696put('BYZANTINE_MUSICAL_SYMBOL_KATAVA_TROMIKON, 'codepoint, 0x1D037);
22697put('BYZANTINE_MUSICAL_SYMBOL_PELASTON, 'codepoint, 0x1D038);
22698put('BYZANTINE_MUSICAL_SYMBOL_PSIFISTON, 'codepoint, 0x1D039);
22699put('BYZANTINE_MUSICAL_SYMBOL_KONTEVMA, 'codepoint, 0x1D03A);
22700put('BYZANTINE_MUSICAL_SYMBOL_CHOREVMA_ARCHAION, 'codepoint, 0x1D03B);
22701put('BYZANTINE_MUSICAL_SYMBOL_RAPISMA, 'codepoint, 0x1D03C);
22702put('BYZANTINE_MUSICAL_SYMBOL_PARAKALESMA_ARCHAION, 'codepoint, 0x1D03D);
22703put('BYZANTINE_MUSICAL_SYMBOL_PARAKLITIKI_ARCHAION, 'codepoint, 0x1D03E);
22704put('BYZANTINE_MUSICAL_SYMBOL_ICHADIN, 'codepoint, 0x1D03F);
22705put('BYZANTINE_MUSICAL_SYMBOL_NANA, 'codepoint, 0x1D040);
22706put('BYZANTINE_MUSICAL_SYMBOL_PETASMA, 'codepoint, 0x1D041);
22707put('BYZANTINE_MUSICAL_SYMBOL_KONTEVMA_ALLO, 'codepoint, 0x1D042);
22708put('BYZANTINE_MUSICAL_SYMBOL_TROMIKON_ALLO, 'codepoint, 0x1D043);
22709put('BYZANTINE_MUSICAL_SYMBOL_STRAGGISMATA, 'codepoint, 0x1D044);
22710put('BYZANTINE_MUSICAL_SYMBOL_GRONTHISMATA, 'codepoint, 0x1D045);
22711put('BYZANTINE_MUSICAL_SYMBOL_ISON_NEO, 'codepoint, 0x1D046);
22712put('BYZANTINE_MUSICAL_SYMBOL_OLIGON_NEO, 'codepoint, 0x1D047);
22713put('BYZANTINE_MUSICAL_SYMBOL_OXEIA_NEO, 'codepoint, 0x1D048);
22714put('BYZANTINE_MUSICAL_SYMBOL_PETASTI, 'codepoint, 0x1D049);
22715put('BYZANTINE_MUSICAL_SYMBOL_KOUFISMA, 'codepoint, 0x1D04A);
22716put('BYZANTINE_MUSICAL_SYMBOL_PETASTOKOUFISMA, 'codepoint, 0x1D04B);
22717put('BYZANTINE_MUSICAL_SYMBOL_KRATIMOKOUFISMA, 'codepoint, 0x1D04C);
22718put('BYZANTINE_MUSICAL_SYMBOL_PELASTON_NEO, 'codepoint, 0x1D04D);
22719put('BYZANTINE_MUSICAL_SYMBOL_KENTIMATA_NEO_ANO, 'codepoint, 0x1D04E);
22720put('BYZANTINE_MUSICAL_SYMBOL_KENTIMA_NEO_ANO, 'codepoint, 0x1D04F);
22721put('BYZANTINE_MUSICAL_SYMBOL_YPSILI, 'codepoint, 0x1D050);
22722put('BYZANTINE_MUSICAL_SYMBOL_APOSTROFOS_NEO, 'codepoint, 0x1D051);
22723put('BYZANTINE_MUSICAL_SYMBOL_APOSTROFOI_SYNDESMOS_NEO, 'codepoint, 0x1D052);
22724put('BYZANTINE_MUSICAL_SYMBOL_YPORROI, 'codepoint, 0x1D053);
22725put('BYZANTINE_MUSICAL_SYMBOL_KRATIMOYPORROON, 'codepoint, 0x1D054);
22726put('BYZANTINE_MUSICAL_SYMBOL_ELAFRON, 'codepoint, 0x1D055);
22727put('BYZANTINE_MUSICAL_SYMBOL_CHAMILI, 'codepoint, 0x1D056);
22728put('BYZANTINE_MUSICAL_SYMBOL_MIKRON_ISON, 'codepoint, 0x1D057);
22729put('BYZANTINE_MUSICAL_SYMBOL_VAREIA_NEO, 'codepoint, 0x1D058);
22730put('BYZANTINE_MUSICAL_SYMBOL_PIASMA_NEO, 'codepoint, 0x1D059);
22731put('BYZANTINE_MUSICAL_SYMBOL_PSIFISTON_NEO, 'codepoint, 0x1D05A);
22732put('BYZANTINE_MUSICAL_SYMBOL_OMALON, 'codepoint, 0x1D05B);
22733put('BYZANTINE_MUSICAL_SYMBOL_ANTIKENOMA, 'codepoint, 0x1D05C);
22734put('BYZANTINE_MUSICAL_SYMBOL_LYGISMA, 'codepoint, 0x1D05D);
22735put('BYZANTINE_MUSICAL_SYMBOL_PARAKLITIKI_NEO, 'codepoint, 0x1D05E);
22736put('BYZANTINE_MUSICAL_SYMBOL_PARAKALESMA_NEO, 'codepoint, 0x1D05F);
22737put('BYZANTINE_MUSICAL_SYMBOL_ETERON_PARAKALESMA, 'codepoint, 0x1D060);
22738put('BYZANTINE_MUSICAL_SYMBOL_KYLISMA, 'codepoint, 0x1D061);
22739put('BYZANTINE_MUSICAL_SYMBOL_ANTIKENOKYLISMA, 'codepoint, 0x1D062);
22740put('BYZANTINE_MUSICAL_SYMBOL_TROMIKON_NEO, 'codepoint, 0x1D063);
22741put('BYZANTINE_MUSICAL_SYMBOL_EKSTREPTON, 'codepoint, 0x1D064);
22742put('BYZANTINE_MUSICAL_SYMBOL_SYNAGMA_NEO, 'codepoint, 0x1D065);
22743put('BYZANTINE_MUSICAL_SYMBOL_SYRMA, 'codepoint, 0x1D066);
22744put('BYZANTINE_MUSICAL_SYMBOL_CHOREVMA_NEO, 'codepoint, 0x1D067);
22745put('BYZANTINE_MUSICAL_SYMBOL_EPEGERMA, 'codepoint, 0x1D068);
22746put('BYZANTINE_MUSICAL_SYMBOL_SEISMA_NEO, 'codepoint, 0x1D069);
22747put('BYZANTINE_MUSICAL_SYMBOL_XIRON_KLASMA, 'codepoint, 0x1D06A);
22748put('BYZANTINE_MUSICAL_SYMBOL_TROMIKOPSIFISTON, 'codepoint, 0x1D06B);
22749put('BYZANTINE_MUSICAL_SYMBOL_PSIFISTOLYGISMA, 'codepoint, 0x1D06C);
22750put('BYZANTINE_MUSICAL_SYMBOL_TROMIKOLYGISMA, 'codepoint, 0x1D06D);
22751put('BYZANTINE_MUSICAL_SYMBOL_TROMIKOPARAKALESMA, 'codepoint, 0x1D06E);
22752put('BYZANTINE_MUSICAL_SYMBOL_PSIFISTOPARAKALESMA, 'codepoint, 0x1D06F);
22753put('BYZANTINE_MUSICAL_SYMBOL_TROMIKOSYNAGMA, 'codepoint, 0x1D070);
22754put('BYZANTINE_MUSICAL_SYMBOL_PSIFISTOSYNAGMA, 'codepoint, 0x1D071);
22755put('BYZANTINE_MUSICAL_SYMBOL_GORGOSYNTHETON, 'codepoint, 0x1D072);
22756put('BYZANTINE_MUSICAL_SYMBOL_ARGOSYNTHETON, 'codepoint, 0x1D073);
22757put('BYZANTINE_MUSICAL_SYMBOL_ETERON_ARGOSYNTHETON, 'codepoint, 0x1D074);
22758put('BYZANTINE_MUSICAL_SYMBOL_OYRANISMA_NEO, 'codepoint, 0x1D075);
22759put('BYZANTINE_MUSICAL_SYMBOL_THEMATISMOS_ESO, 'codepoint, 0x1D076);
22760put('BYZANTINE_MUSICAL_SYMBOL_THEMATISMOS_EXO, 'codepoint, 0x1D077);
22761put('BYZANTINE_MUSICAL_SYMBOL_THEMA_APLOUN, 'codepoint, 0x1D078);
22762put('BYZANTINE_MUSICAL_SYMBOL_THES_KAI_APOTHES, 'codepoint, 0x1D079);
22763put('BYZANTINE_MUSICAL_SYMBOL_KATAVASMA, 'codepoint, 0x1D07A);
22764put('BYZANTINE_MUSICAL_SYMBOL_ENDOFONON, 'codepoint, 0x1D07B);
22765put('BYZANTINE_MUSICAL_SYMBOL_YFEN_KATO, 'codepoint, 0x1D07C);
22766put('BYZANTINE_MUSICAL_SYMBOL_YFEN_ANO, 'codepoint, 0x1D07D);
22767put('BYZANTINE_MUSICAL_SYMBOL_STAVROS, 'codepoint, 0x1D07E);
22768put('BYZANTINE_MUSICAL_SYMBOL_KLASMA_ANO, 'codepoint, 0x1D07F);
22769put('BYZANTINE_MUSICAL_SYMBOL_DIPLI_ARCHAION, 'codepoint, 0x1D080);
22770put('BYZANTINE_MUSICAL_SYMBOL_KRATIMA_ARCHAION, 'codepoint, 0x1D081);
22771put('BYZANTINE_MUSICAL_SYMBOL_KRATIMA_ALLO, 'codepoint, 0x1D082);
22772put('BYZANTINE_MUSICAL_SYMBOL_KRATIMA_NEO, 'codepoint, 0x1D083);
22773put('BYZANTINE_MUSICAL_SYMBOL_APODERMA_NEO, 'codepoint, 0x1D084);
22774put('BYZANTINE_MUSICAL_SYMBOL_APLI, 'codepoint, 0x1D085);
22775put('BYZANTINE_MUSICAL_SYMBOL_DIPLI, 'codepoint, 0x1D086);
22776put('BYZANTINE_MUSICAL_SYMBOL_TRIPLI, 'codepoint, 0x1D087);
22777put('BYZANTINE_MUSICAL_SYMBOL_TETRAPLI, 'codepoint, 0x1D088);
22778put('BYZANTINE_MUSICAL_SYMBOL_KORONIS, 'codepoint, 0x1D089);
22779put('BYZANTINE_MUSICAL_SYMBOL_LEIMMA_ENOS_CHRONOU, 'codepoint, 0x1D08A);
22780put('BYZANTINE_MUSICAL_SYMBOL_LEIMMA_DYO_CHRONON, 'codepoint, 0x1D08B);
22781put('BYZANTINE_MUSICAL_SYMBOL_LEIMMA_TRION_CHRONON, 'codepoint, 0x1D08C);
22782put('BYZANTINE_MUSICAL_SYMBOL_LEIMMA_TESSARON_CHRONON, 'codepoint, 0x1D08D);
22783put('BYZANTINE_MUSICAL_SYMBOL_LEIMMA_IMISEOS_CHRONOU, 'codepoint, 0x1D08E);
22784put('BYZANTINE_MUSICAL_SYMBOL_GORGON_NEO_ANO, 'codepoint, 0x1D08F);
22785put('BYZANTINE_MUSICAL_SYMBOL_GORGON_PARESTIGMENON_ARISTERA, 'codepoint, 0x1D090);
22786put('BYZANTINE_MUSICAL_SYMBOL_GORGON_PARESTIGMENON_DEXIA, 'codepoint, 0x1D091);
22787put('BYZANTINE_MUSICAL_SYMBOL_DIGORGON, 'codepoint, 0x1D092);
22788put('BYZANTINE_MUSICAL_SYMBOL_DIGORGON_PARESTIGMENON_ARISTERA_KATO, 'codepoint, 0x1D093);
22789put('BYZANTINE_MUSICAL_SYMBOL_DIGORGON_PARESTIGMENON_ARISTERA_ANO, 'codepoint, 0x1D094);
22790put('BYZANTINE_MUSICAL_SYMBOL_DIGORGON_PARESTIGMENON_DEXIA, 'codepoint, 0x1D095);
22791put('BYZANTINE_MUSICAL_SYMBOL_TRIGORGON, 'codepoint, 0x1D096);
22792put('BYZANTINE_MUSICAL_SYMBOL_ARGON, 'codepoint, 0x1D097);
22793put('BYZANTINE_MUSICAL_SYMBOL_IMIDIARGON, 'codepoint, 0x1D098);
22794put('BYZANTINE_MUSICAL_SYMBOL_DIARGON, 'codepoint, 0x1D099);
22795put('BYZANTINE_MUSICAL_SYMBOL_AGOGI_POLI_ARGI, 'codepoint, 0x1D09A);
22796put('BYZANTINE_MUSICAL_SYMBOL_AGOGI_ARGOTERI, 'codepoint, 0x1D09B);
22797put('BYZANTINE_MUSICAL_SYMBOL_AGOGI_ARGI, 'codepoint, 0x1D09C);
22798put('BYZANTINE_MUSICAL_SYMBOL_AGOGI_METRIA, 'codepoint, 0x1D09D);
22799put('BYZANTINE_MUSICAL_SYMBOL_AGOGI_MESI, 'codepoint, 0x1D09E);
22800put('BYZANTINE_MUSICAL_SYMBOL_AGOGI_GORGI, 'codepoint, 0x1D09F);
22801put('BYZANTINE_MUSICAL_SYMBOL_AGOGI_GORGOTERI, 'codepoint, 0x1D0A0);
22802put('BYZANTINE_MUSICAL_SYMBOL_AGOGI_POLI_GORGI, 'codepoint, 0x1D0A1);
22803put('BYZANTINE_MUSICAL_SYMBOL_MARTYRIA_PROTOS_ICHOS, 'codepoint, 0x1D0A2);
22804put('BYZANTINE_MUSICAL_SYMBOL_MARTYRIA_ALLI_PROTOS_ICHOS, 'codepoint, 0x1D0A3);
22805put('BYZANTINE_MUSICAL_SYMBOL_MARTYRIA_DEYTEROS_ICHOS, 'codepoint, 0x1D0A4);
22806put('BYZANTINE_MUSICAL_SYMBOL_MARTYRIA_ALLI_DEYTEROS_ICHOS, 'codepoint, 0x1D0A5);
22807put('BYZANTINE_MUSICAL_SYMBOL_MARTYRIA_TRITOS_ICHOS, 'codepoint, 0x1D0A6);
22808put('BYZANTINE_MUSICAL_SYMBOL_MARTYRIA_TRIFONIAS, 'codepoint, 0x1D0A7);
22809put('BYZANTINE_MUSICAL_SYMBOL_MARTYRIA_TETARTOS_ICHOS, 'codepoint, 0x1D0A8);
22810put('BYZANTINE_MUSICAL_SYMBOL_MARTYRIA_TETARTOS_LEGETOS_ICHOS, 'codepoint, 0x1D0A9);
22811put('BYZANTINE_MUSICAL_SYMBOL_MARTYRIA_LEGETOS_ICHOS, 'codepoint, 0x1D0AA);
22812put('BYZANTINE_MUSICAL_SYMBOL_MARTYRIA_PLAGIOS_ICHOS, 'codepoint, 0x1D0AB);
22813put('BYZANTINE_MUSICAL_SYMBOL_ISAKIA_TELOUS_ICHIMATOS, 'codepoint, 0x1D0AC);
22814put('BYZANTINE_MUSICAL_SYMBOL_APOSTROFOI_TELOUS_ICHIMATOS, 'codepoint, 0x1D0AD);
22815put('BYZANTINE_MUSICAL_SYMBOL_FANEROSIS_TETRAFONIAS, 'codepoint, 0x1D0AE);
22816put('BYZANTINE_MUSICAL_SYMBOL_FANEROSIS_MONOFONIAS, 'codepoint, 0x1D0AF);
22817put('BYZANTINE_MUSICAL_SYMBOL_FANEROSIS_DIFONIAS, 'codepoint, 0x1D0B0);
22818put('BYZANTINE_MUSICAL_SYMBOL_MARTYRIA_VARYS_ICHOS, 'codepoint, 0x1D0B1);
22819put('BYZANTINE_MUSICAL_SYMBOL_MARTYRIA_PROTOVARYS_ICHOS, 'codepoint, 0x1D0B2);
22820put('BYZANTINE_MUSICAL_SYMBOL_MARTYRIA_PLAGIOS_TETARTOS_ICHOS, 'codepoint, 0x1D0B3);
22821put('BYZANTINE_MUSICAL_SYMBOL_GORTHMIKON_N_APLOUN, 'codepoint, 0x1D0B4);
22822put('BYZANTINE_MUSICAL_SYMBOL_GORTHMIKON_N_DIPLOUN, 'codepoint, 0x1D0B5);
22823put('BYZANTINE_MUSICAL_SYMBOL_ENARXIS_KAI_FTHORA_VOU, 'codepoint, 0x1D0B6);
22824put('BYZANTINE_MUSICAL_SYMBOL_IMIFONON, 'codepoint, 0x1D0B7);
22825put('BYZANTINE_MUSICAL_SYMBOL_IMIFTHORON, 'codepoint, 0x1D0B8);
22826put('BYZANTINE_MUSICAL_SYMBOL_FTHORA_ARCHAION_DEYTEROU_ICHOU, 'codepoint, 0x1D0B9);
22827put('BYZANTINE_MUSICAL_SYMBOL_FTHORA_DIATONIKI_PA, 'codepoint, 0x1D0BA);
22828put('BYZANTINE_MUSICAL_SYMBOL_FTHORA_DIATONIKI_NANA, 'codepoint, 0x1D0BB);
22829put('BYZANTINE_MUSICAL_SYMBOL_FTHORA_NAOS_ICHOS, 'codepoint, 0x1D0BC);
22830put('BYZANTINE_MUSICAL_SYMBOL_FTHORA_DIATONIKI_DI, 'codepoint, 0x1D0BD);
22831put('BYZANTINE_MUSICAL_SYMBOL_FTHORA_SKLIRON_DIATONON_DI, 'codepoint, 0x1D0BE);
22832put('BYZANTINE_MUSICAL_SYMBOL_FTHORA_DIATONIKI_KE, 'codepoint, 0x1D0BF);
22833put('BYZANTINE_MUSICAL_SYMBOL_FTHORA_DIATONIKI_ZO, 'codepoint, 0x1D0C0);
22834put('BYZANTINE_MUSICAL_SYMBOL_FTHORA_DIATONIKI_NI_KATO, 'codepoint, 0x1D0C1);
22835put('BYZANTINE_MUSICAL_SYMBOL_FTHORA_DIATONIKI_NI_ANO, 'codepoint, 0x1D0C2);
22836put('BYZANTINE_MUSICAL_SYMBOL_FTHORA_MALAKON_CHROMA_DIFONIAS, 'codepoint, 0x1D0C3);
22837put('BYZANTINE_MUSICAL_SYMBOL_FTHORA_MALAKON_CHROMA_MONOFONIAS, 'codepoint, 0x1D0C4);
22838put('BYZANTINE_MUSICAL_SYMBOL_FHTORA_SKLIRON_CHROMA_VASIS, 'codepoint, 0x1D0C5);
22839put('BYZANTINE_MUSICAL_SYMBOL_FTHORA_SKLIRON_CHROMA_SYNAFI, 'codepoint, 0x1D0C6);
22840put('BYZANTINE_MUSICAL_SYMBOL_FTHORA_NENANO, 'codepoint, 0x1D0C7);
22841put('BYZANTINE_MUSICAL_SYMBOL_CHROA_ZYGOS, 'codepoint, 0x1D0C8);
22842put('BYZANTINE_MUSICAL_SYMBOL_CHROA_KLITON, 'codepoint, 0x1D0C9);
22843put('BYZANTINE_MUSICAL_SYMBOL_CHROA_SPATHI, 'codepoint, 0x1D0CA);
22844put('BYZANTINE_MUSICAL_SYMBOL_FTHORA_I_YFESIS_TETARTIMORION, 'codepoint, 0x1D0CB);
22845put('BYZANTINE_MUSICAL_SYMBOL_FTHORA_ENARMONIOS_ANTIFONIA, 'codepoint, 0x1D0CC);
22846put('BYZANTINE_MUSICAL_SYMBOL_YFESIS_TRITIMORION, 'codepoint, 0x1D0CD);
22847put('BYZANTINE_MUSICAL_SYMBOL_DIESIS_TRITIMORION, 'codepoint, 0x1D0CE);
22848put('BYZANTINE_MUSICAL_SYMBOL_DIESIS_TETARTIMORION, 'codepoint, 0x1D0CF);
22849put('BYZANTINE_MUSICAL_SYMBOL_DIESIS_APLI_DYO_DODEKATA, 'codepoint, 0x1D0D0);
22850put('BYZANTINE_MUSICAL_SYMBOL_DIESIS_MONOGRAMMOS_TESSERA_DODEKATA, 'codepoint, 0x1D0D1);
22851put('BYZANTINE_MUSICAL_SYMBOL_DIESIS_DIGRAMMOS_EX_DODEKATA, 'codepoint, 0x1D0D2);
22852put('BYZANTINE_MUSICAL_SYMBOL_DIESIS_TRIGRAMMOS_OKTO_DODEKATA, 'codepoint, 0x1D0D3);
22853put('BYZANTINE_MUSICAL_SYMBOL_YFESIS_APLI_DYO_DODEKATA, 'codepoint, 0x1D0D4);
22854put('BYZANTINE_MUSICAL_SYMBOL_YFESIS_MONOGRAMMOS_TESSERA_DODEKATA, 'codepoint, 0x1D0D5);
22855put('BYZANTINE_MUSICAL_SYMBOL_YFESIS_DIGRAMMOS_EX_DODEKATA, 'codepoint, 0x1D0D6);
22856put('BYZANTINE_MUSICAL_SYMBOL_YFESIS_TRIGRAMMOS_OKTO_DODEKATA, 'codepoint, 0x1D0D7);
22857put('BYZANTINE_MUSICAL_SYMBOL_GENIKI_DIESIS, 'codepoint, 0x1D0D8);
22858put('BYZANTINE_MUSICAL_SYMBOL_GENIKI_YFESIS, 'codepoint, 0x1D0D9);
22859put('BYZANTINE_MUSICAL_SYMBOL_DIASTOLI_APLI_MIKRI, 'codepoint, 0x1D0DA);
22860put('BYZANTINE_MUSICAL_SYMBOL_DIASTOLI_APLI_MEGALI, 'codepoint, 0x1D0DB);
22861put('BYZANTINE_MUSICAL_SYMBOL_DIASTOLI_DIPLI, 'codepoint, 0x1D0DC);
22862put('BYZANTINE_MUSICAL_SYMBOL_DIASTOLI_THESEOS, 'codepoint, 0x1D0DD);
22863put('BYZANTINE_MUSICAL_SYMBOL_SIMANSIS_THESEOS, 'codepoint, 0x1D0DE);
22864put('BYZANTINE_MUSICAL_SYMBOL_SIMANSIS_THESEOS_DISIMOU, 'codepoint, 0x1D0DF);
22865put('BYZANTINE_MUSICAL_SYMBOL_SIMANSIS_THESEOS_TRISIMOU, 'codepoint, 0x1D0E0);
22866put('BYZANTINE_MUSICAL_SYMBOL_SIMANSIS_THESEOS_TETRASIMOU, 'codepoint, 0x1D0E1);
22867put('BYZANTINE_MUSICAL_SYMBOL_SIMANSIS_ARSEOS, 'codepoint, 0x1D0E2);
22868put('BYZANTINE_MUSICAL_SYMBOL_SIMANSIS_ARSEOS_DISIMOU, 'codepoint, 0x1D0E3);
22869put('BYZANTINE_MUSICAL_SYMBOL_SIMANSIS_ARSEOS_TRISIMOU, 'codepoint, 0x1D0E4);
22870put('BYZANTINE_MUSICAL_SYMBOL_SIMANSIS_ARSEOS_TETRASIMOU, 'codepoint, 0x1D0E5);
22871put('BYZANTINE_MUSICAL_SYMBOL_DIGRAMMA_GG, 'codepoint, 0x1D0E6);
22872put('BYZANTINE_MUSICAL_SYMBOL_DIFTOGGOS_OU, 'codepoint, 0x1D0E7);
22873put('BYZANTINE_MUSICAL_SYMBOL_STIGMA, 'codepoint, 0x1D0E8);
22874put('BYZANTINE_MUSICAL_SYMBOL_ARKTIKO_PA, 'codepoint, 0x1D0E9);
22875put('BYZANTINE_MUSICAL_SYMBOL_ARKTIKO_VOU, 'codepoint, 0x1D0EA);
22876put('BYZANTINE_MUSICAL_SYMBOL_ARKTIKO_GA, 'codepoint, 0x1D0EB);
22877put('BYZANTINE_MUSICAL_SYMBOL_ARKTIKO_DI, 'codepoint, 0x1D0EC);
22878put('BYZANTINE_MUSICAL_SYMBOL_ARKTIKO_KE, 'codepoint, 0x1D0ED);
22879put('BYZANTINE_MUSICAL_SYMBOL_ARKTIKO_ZO, 'codepoint, 0x1D0EE);
22880put('BYZANTINE_MUSICAL_SYMBOL_ARKTIKO_NI, 'codepoint, 0x1D0EF);
22881put('BYZANTINE_MUSICAL_SYMBOL_KENTIMATA_NEO_MESO, 'codepoint, 0x1D0F0);
22882put('BYZANTINE_MUSICAL_SYMBOL_KENTIMA_NEO_MESO, 'codepoint, 0x1D0F1);
22883put('BYZANTINE_MUSICAL_SYMBOL_KENTIMATA_NEO_KATO, 'codepoint, 0x1D0F2);
22884put('BYZANTINE_MUSICAL_SYMBOL_KENTIMA_NEO_KATO, 'codepoint, 0x1D0F3);
22885put('BYZANTINE_MUSICAL_SYMBOL_KLASMA_KATO, 'codepoint, 0x1D0F4);
22886put('BYZANTINE_MUSICAL_SYMBOL_GORGON_NEO_KATO, 'codepoint, 0x1D0F5);
22887put('MUSICAL_SYMBOL_SINGLE_BARLINE, 'codepoint, 0x1D100);
22888put('MUSICAL_SYMBOL_DOUBLE_BARLINE, 'codepoint, 0x1D101);
22889put('MUSICAL_SYMBOL_FINAL_BARLINE, 'codepoint, 0x1D102);
22890put('MUSICAL_SYMBOL_REVERSE_FINAL_BARLINE, 'codepoint, 0x1D103);
22891put('MUSICAL_SYMBOL_DASHED_BARLINE, 'codepoint, 0x1D104);
22892put('MUSICAL_SYMBOL_SHORT_BARLINE, 'codepoint, 0x1D105);
22893put('MUSICAL_SYMBOL_LEFT_REPEAT_SIGN, 'codepoint, 0x1D106);
22894put('MUSICAL_SYMBOL_RIGHT_REPEAT_SIGN, 'codepoint, 0x1D107);
22895put('MUSICAL_SYMBOL_REPEAT_DOTS, 'codepoint, 0x1D108);
22896put('MUSICAL_SYMBOL_DAL_SEGNO, 'codepoint, 0x1D109);
22897put('MUSICAL_SYMBOL_DA_CAPO, 'codepoint, 0x1D10A);
22898put('MUSICAL_SYMBOL_SEGNO, 'codepoint, 0x1D10B);
22899put('MUSICAL_SYMBOL_CODA, 'codepoint, 0x1D10C);
22900put('MUSICAL_SYMBOL_REPEATED_FIGURE_1, 'codepoint, 0x1D10D);
22901put('MUSICAL_SYMBOL_REPEATED_FIGURE_2, 'codepoint, 0x1D10E);
22902put('MUSICAL_SYMBOL_REPEATED_FIGURE_3, 'codepoint, 0x1D10F);
22903put('MUSICAL_SYMBOL_FERMATA, 'codepoint, 0x1D110);
22904put('MUSICAL_SYMBOL_FERMATA_BELOW, 'codepoint, 0x1D111);
22905put('MUSICAL_SYMBOL_BREATH_MARK, 'codepoint, 0x1D112);
22906put('MUSICAL_SYMBOL_CAESURA, 'codepoint, 0x1D113);
22907put('MUSICAL_SYMBOL_BRACE, 'codepoint, 0x1D114);
22908put('MUSICAL_SYMBOL_BRACKET, 'codepoint, 0x1D115);
22909put('MUSICAL_SYMBOL_ONE_LINE_STAFF, 'codepoint, 0x1D116);
22910put('MUSICAL_SYMBOL_TWO_LINE_STAFF, 'codepoint, 0x1D117);
22911put('MUSICAL_SYMBOL_THREE_LINE_STAFF, 'codepoint, 0x1D118);
22912put('MUSICAL_SYMBOL_FOUR_LINE_STAFF, 'codepoint, 0x1D119);
22913put('MUSICAL_SYMBOL_FIVE_LINE_STAFF, 'codepoint, 0x1D11A);
22914put('MUSICAL_SYMBOL_SIX_LINE_STAFF, 'codepoint, 0x1D11B);
22915put('MUSICAL_SYMBOL_SIX_STRING_FRETBOARD, 'codepoint, 0x1D11C);
22916put('MUSICAL_SYMBOL_FOUR_STRING_FRETBOARD, 'codepoint, 0x1D11D);
22917put('MUSICAL_SYMBOL_G_CLEF, 'codepoint, 0x1D11E);
22918put('MUSICAL_SYMBOL_G_CLEF_OTTAVA_ALTA, 'codepoint, 0x1D11F);
22919put('MUSICAL_SYMBOL_G_CLEF_OTTAVA_BASSA, 'codepoint, 0x1D120);
22920put('MUSICAL_SYMBOL_C_CLEF, 'codepoint, 0x1D121);
22921put('MUSICAL_SYMBOL_F_CLEF, 'codepoint, 0x1D122);
22922put('MUSICAL_SYMBOL_F_CLEF_OTTAVA_ALTA, 'codepoint, 0x1D123);
22923put('MUSICAL_SYMBOL_F_CLEF_OTTAVA_BASSA, 'codepoint, 0x1D124);
22924put('MUSICAL_SYMBOL_DRUM_CLEF_1, 'codepoint, 0x1D125);
22925put('MUSICAL_SYMBOL_DRUM_CLEF_2, 'codepoint, 0x1D126);
22926put('MUSICAL_SYMBOL_MULTIPLE_MEASURE_REST, 'codepoint, 0x1D129);
22927put('MUSICAL_SYMBOL_DOUBLE_SHARP, 'codepoint, 0x1D12A);
22928put('MUSICAL_SYMBOL_DOUBLE_FLAT, 'codepoint, 0x1D12B);
22929put('MUSICAL_SYMBOL_FLAT_UP, 'codepoint, 0x1D12C);
22930put('MUSICAL_SYMBOL_FLAT_DOWN, 'codepoint, 0x1D12D);
22931put('MUSICAL_SYMBOL_NATURAL_UP, 'codepoint, 0x1D12E);
22932put('MUSICAL_SYMBOL_NATURAL_DOWN, 'codepoint, 0x1D12F);
22933put('MUSICAL_SYMBOL_SHARP_UP, 'codepoint, 0x1D130);
22934put('MUSICAL_SYMBOL_SHARP_DOWN, 'codepoint, 0x1D131);
22935put('MUSICAL_SYMBOL_QUARTER_TONE_SHARP, 'codepoint, 0x1D132);
22936put('MUSICAL_SYMBOL_QUARTER_TONE_FLAT, 'codepoint, 0x1D133);
22937put('MUSICAL_SYMBOL_COMMON_TIME, 'codepoint, 0x1D134);
22938put('MUSICAL_SYMBOL_CUT_TIME, 'codepoint, 0x1D135);
22939put('MUSICAL_SYMBOL_OTTAVA_ALTA, 'codepoint, 0x1D136);
22940put('MUSICAL_SYMBOL_OTTAVA_BASSA, 'codepoint, 0x1D137);
22941put('MUSICAL_SYMBOL_QUINDICESIMA_ALTA, 'codepoint, 0x1D138);
22942put('MUSICAL_SYMBOL_QUINDICESIMA_BASSA, 'codepoint, 0x1D139);
22943put('MUSICAL_SYMBOL_MULTI_REST, 'codepoint, 0x1D13A);
22944put('MUSICAL_SYMBOL_WHOLE_REST, 'codepoint, 0x1D13B);
22945put('MUSICAL_SYMBOL_HALF_REST, 'codepoint, 0x1D13C);
22946put('MUSICAL_SYMBOL_QUARTER_REST, 'codepoint, 0x1D13D);
22947put('MUSICAL_SYMBOL_EIGHTH_REST, 'codepoint, 0x1D13E);
22948put('MUSICAL_SYMBOL_SIXTEENTH_REST, 'codepoint, 0x1D13F);
22949put('MUSICAL_SYMBOL_THIRTY_SECOND_REST, 'codepoint, 0x1D140);
22950put('MUSICAL_SYMBOL_SIXTY_FOURTH_REST, 'codepoint, 0x1D141);
22951put('MUSICAL_SYMBOL_ONE_HUNDRED_TWENTY_EIGHTH_REST, 'codepoint, 0x1D142);
22952put('MUSICAL_SYMBOL_X_NOTEHEAD, 'codepoint, 0x1D143);
22953put('MUSICAL_SYMBOL_PLUS_NOTEHEAD, 'codepoint, 0x1D144);
22954put('MUSICAL_SYMBOL_CIRCLE_X_NOTEHEAD, 'codepoint, 0x1D145);
22955put('MUSICAL_SYMBOL_SQUARE_NOTEHEAD_WHITE, 'codepoint, 0x1D146);
22956put('MUSICAL_SYMBOL_SQUARE_NOTEHEAD_BLACK, 'codepoint, 0x1D147);
22957put('MUSICAL_SYMBOL_TRIANGLE_NOTEHEAD_UP_WHITE, 'codepoint, 0x1D148);
22958put('MUSICAL_SYMBOL_TRIANGLE_NOTEHEAD_UP_BLACK, 'codepoint, 0x1D149);
22959put('MUSICAL_SYMBOL_TRIANGLE_NOTEHEAD_LEFT_WHITE, 'codepoint, 0x1D14A);
22960put('MUSICAL_SYMBOL_TRIANGLE_NOTEHEAD_LEFT_BLACK, 'codepoint, 0x1D14B);
22961put('MUSICAL_SYMBOL_TRIANGLE_NOTEHEAD_RIGHT_WHITE, 'codepoint, 0x1D14C);
22962put('MUSICAL_SYMBOL_TRIANGLE_NOTEHEAD_RIGHT_BLACK, 'codepoint, 0x1D14D);
22963put('MUSICAL_SYMBOL_TRIANGLE_NOTEHEAD_DOWN_WHITE, 'codepoint, 0x1D14E);
22964put('MUSICAL_SYMBOL_TRIANGLE_NOTEHEAD_DOWN_BLACK, 'codepoint, 0x1D14F);
22965put('MUSICAL_SYMBOL_TRIANGLE_NOTEHEAD_UP_RIGHT_WHITE, 'codepoint, 0x1D150);
22966put('MUSICAL_SYMBOL_TRIANGLE_NOTEHEAD_UP_RIGHT_BLACK, 'codepoint, 0x1D151);
22967put('MUSICAL_SYMBOL_MOON_NOTEHEAD_WHITE, 'codepoint, 0x1D152);
22968put('MUSICAL_SYMBOL_MOON_NOTEHEAD_BLACK, 'codepoint, 0x1D153);
22969put('MUSICAL_SYMBOL_TRIANGLE_ROUND_NOTEHEAD_DOWN_WHITE, 'codepoint, 0x1D154);
22970put('MUSICAL_SYMBOL_TRIANGLE_ROUND_NOTEHEAD_DOWN_BLACK, 'codepoint, 0x1D155);
22971put('MUSICAL_SYMBOL_PARENTHESIS_NOTEHEAD, 'codepoint, 0x1D156);
22972put('MUSICAL_SYMBOL_VOID_NOTEHEAD, 'codepoint, 0x1D157);
22973put('MUSICAL_SYMBOL_NOTEHEAD_BLACK, 'codepoint, 0x1D158);
22974put('MUSICAL_SYMBOL_NULL_NOTEHEAD, 'codepoint, 0x1D159);
22975put('MUSICAL_SYMBOL_CLUSTER_NOTEHEAD_WHITE, 'codepoint, 0x1D15A);
22976put('MUSICAL_SYMBOL_CLUSTER_NOTEHEAD_BLACK, 'codepoint, 0x1D15B);
22977put('MUSICAL_SYMBOL_BREVE, 'codepoint, 0x1D15C);
22978put('MUSICAL_SYMBOL_WHOLE_NOTE, 'codepoint, 0x1D15D);
22979put('MUSICAL_SYMBOL_HALF_NOTE, 'codepoint, 0x1D15E);
22980put('MUSICAL_SYMBOL_QUARTER_NOTE, 'codepoint, 0x1D15F);
22981put('MUSICAL_SYMBOL_EIGHTH_NOTE, 'codepoint, 0x1D160);
22982put('MUSICAL_SYMBOL_SIXTEENTH_NOTE, 'codepoint, 0x1D161);
22983put('MUSICAL_SYMBOL_THIRTY_SECOND_NOTE, 'codepoint, 0x1D162);
22984put('MUSICAL_SYMBOL_SIXTY_FOURTH_NOTE, 'codepoint, 0x1D163);
22985put('MUSICAL_SYMBOL_ONE_HUNDRED_TWENTY_EIGHTH_NOTE, 'codepoint, 0x1D164);
22986put('MUSICAL_SYMBOL_COMBINING_STEM, 'codepoint, 0x1D165);
22987put('MUSICAL_SYMBOL_COMBINING_SPRECHGESANG_STEM, 'codepoint, 0x1D166);
22988put('MUSICAL_SYMBOL_COMBINING_TREMOLO_1, 'codepoint, 0x1D167);
22989put('MUSICAL_SYMBOL_COMBINING_TREMOLO_2, 'codepoint, 0x1D168);
22990put('MUSICAL_SYMBOL_COMBINING_TREMOLO_3, 'codepoint, 0x1D169);
22991put('MUSICAL_SYMBOL_FINGERED_TREMOLO_1, 'codepoint, 0x1D16A);
22992put('MUSICAL_SYMBOL_FINGERED_TREMOLO_2, 'codepoint, 0x1D16B);
22993put('MUSICAL_SYMBOL_FINGERED_TREMOLO_3, 'codepoint, 0x1D16C);
22994put('MUSICAL_SYMBOL_COMBINING_AUGMENTATION_DOT, 'codepoint, 0x1D16D);
22995put('MUSICAL_SYMBOL_COMBINING_FLAG_1, 'codepoint, 0x1D16E);
22996put('MUSICAL_SYMBOL_COMBINING_FLAG_2, 'codepoint, 0x1D16F);
22997put('MUSICAL_SYMBOL_COMBINING_FLAG_3, 'codepoint, 0x1D170);
22998put('MUSICAL_SYMBOL_COMBINING_FLAG_4, 'codepoint, 0x1D171);
22999put('MUSICAL_SYMBOL_COMBINING_FLAG_5, 'codepoint, 0x1D172);
23000put('MUSICAL_SYMBOL_BEGIN_BEAM, 'codepoint, 0x1D173);
23001put('MUSICAL_SYMBOL_END_BEAM, 'codepoint, 0x1D174);
23002put('MUSICAL_SYMBOL_BEGIN_TIE, 'codepoint, 0x1D175);
23003put('MUSICAL_SYMBOL_END_TIE, 'codepoint, 0x1D176);
23004put('MUSICAL_SYMBOL_BEGIN_SLUR, 'codepoint, 0x1D177);
23005put('MUSICAL_SYMBOL_END_SLUR, 'codepoint, 0x1D178);
23006put('MUSICAL_SYMBOL_BEGIN_PHRASE, 'codepoint, 0x1D179);
23007put('MUSICAL_SYMBOL_END_PHRASE, 'codepoint, 0x1D17A);
23008put('MUSICAL_SYMBOL_COMBINING_ACCENT, 'codepoint, 0x1D17B);
23009put('MUSICAL_SYMBOL_COMBINING_STACCATO, 'codepoint, 0x1D17C);
23010put('MUSICAL_SYMBOL_COMBINING_TENUTO, 'codepoint, 0x1D17D);
23011put('MUSICAL_SYMBOL_COMBINING_STACCATISSIMO, 'codepoint, 0x1D17E);
23012put('MUSICAL_SYMBOL_COMBINING_MARCATO, 'codepoint, 0x1D17F);
23013put('MUSICAL_SYMBOL_COMBINING_MARCATO_STACCATO, 'codepoint, 0x1D180);
23014put('MUSICAL_SYMBOL_COMBINING_ACCENT_STACCATO, 'codepoint, 0x1D181);
23015put('MUSICAL_SYMBOL_COMBINING_LOURE, 'codepoint, 0x1D182);
23016put('MUSICAL_SYMBOL_ARPEGGIATO_UP, 'codepoint, 0x1D183);
23017put('MUSICAL_SYMBOL_ARPEGGIATO_DOWN, 'codepoint, 0x1D184);
23018put('MUSICAL_SYMBOL_COMBINING_DOIT, 'codepoint, 0x1D185);
23019put('MUSICAL_SYMBOL_COMBINING_RIP, 'codepoint, 0x1D186);
23020put('MUSICAL_SYMBOL_COMBINING_FLIP, 'codepoint, 0x1D187);
23021put('MUSICAL_SYMBOL_COMBINING_SMEAR, 'codepoint, 0x1D188);
23022put('MUSICAL_SYMBOL_COMBINING_BEND, 'codepoint, 0x1D189);
23023put('MUSICAL_SYMBOL_COMBINING_DOUBLE_TONGUE, 'codepoint, 0x1D18A);
23024put('MUSICAL_SYMBOL_COMBINING_TRIPLE_TONGUE, 'codepoint, 0x1D18B);
23025put('MUSICAL_SYMBOL_RINFORZANDO, 'codepoint, 0x1D18C);
23026put('MUSICAL_SYMBOL_SUBITO, 'codepoint, 0x1D18D);
23027put('MUSICAL_SYMBOL_Z, 'codepoint, 0x1D18E);
23028put('MUSICAL_SYMBOL_PIANO, 'codepoint, 0x1D18F);
23029put('MUSICAL_SYMBOL_MEZZO, 'codepoint, 0x1D190);
23030put('MUSICAL_SYMBOL_FORTE, 'codepoint, 0x1D191);
23031put('MUSICAL_SYMBOL_CRESCENDO, 'codepoint, 0x1D192);
23032put('MUSICAL_SYMBOL_DECRESCENDO, 'codepoint, 0x1D193);
23033put('MUSICAL_SYMBOL_GRACE_NOTE_SLASH, 'codepoint, 0x1D194);
23034put('MUSICAL_SYMBOL_GRACE_NOTE_NO_SLASH, 'codepoint, 0x1D195);
23035put('MUSICAL_SYMBOL_TR, 'codepoint, 0x1D196);
23036put('MUSICAL_SYMBOL_TURN, 'codepoint, 0x1D197);
23037put('MUSICAL_SYMBOL_INVERTED_TURN, 'codepoint, 0x1D198);
23038put('MUSICAL_SYMBOL_TURN_SLASH, 'codepoint, 0x1D199);
23039put('MUSICAL_SYMBOL_TURN_UP, 'codepoint, 0x1D19A);
23040put('MUSICAL_SYMBOL_ORNAMENT_STROKE_1, 'codepoint, 0x1D19B);
23041put('MUSICAL_SYMBOL_ORNAMENT_STROKE_2, 'codepoint, 0x1D19C);
23042put('MUSICAL_SYMBOL_ORNAMENT_STROKE_3, 'codepoint, 0x1D19D);
23043put('MUSICAL_SYMBOL_ORNAMENT_STROKE_4, 'codepoint, 0x1D19E);
23044put('MUSICAL_SYMBOL_ORNAMENT_STROKE_5, 'codepoint, 0x1D19F);
23045put('MUSICAL_SYMBOL_ORNAMENT_STROKE_6, 'codepoint, 0x1D1A0);
23046put('MUSICAL_SYMBOL_ORNAMENT_STROKE_7, 'codepoint, 0x1D1A1);
23047put('MUSICAL_SYMBOL_ORNAMENT_STROKE_8, 'codepoint, 0x1D1A2);
23048put('MUSICAL_SYMBOL_ORNAMENT_STROKE_9, 'codepoint, 0x1D1A3);
23049put('MUSICAL_SYMBOL_ORNAMENT_STROKE_10, 'codepoint, 0x1D1A4);
23050put('MUSICAL_SYMBOL_ORNAMENT_STROKE_11, 'codepoint, 0x1D1A5);
23051put('MUSICAL_SYMBOL_HAUPTSTIMME, 'codepoint, 0x1D1A6);
23052put('MUSICAL_SYMBOL_NEBENSTIMME, 'codepoint, 0x1D1A7);
23053put('MUSICAL_SYMBOL_END_OF_STIMME, 'codepoint, 0x1D1A8);
23054put('MUSICAL_SYMBOL_DEGREE_SLASH, 'codepoint, 0x1D1A9);
23055put('MUSICAL_SYMBOL_COMBINING_DOWN_BOW, 'codepoint, 0x1D1AA);
23056put('MUSICAL_SYMBOL_COMBINING_UP_BOW, 'codepoint, 0x1D1AB);
23057put('MUSICAL_SYMBOL_COMBINING_HARMONIC, 'codepoint, 0x1D1AC);
23058put('MUSICAL_SYMBOL_COMBINING_SNAP_PIZZICATO, 'codepoint, 0x1D1AD);
23059put('MUSICAL_SYMBOL_PEDAL_MARK, 'codepoint, 0x1D1AE);
23060put('MUSICAL_SYMBOL_PEDAL_UP_MARK, 'codepoint, 0x1D1AF);
23061put('MUSICAL_SYMBOL_HALF_PEDAL_MARK, 'codepoint, 0x1D1B0);
23062put('MUSICAL_SYMBOL_GLISSANDO_UP, 'codepoint, 0x1D1B1);
23063put('MUSICAL_SYMBOL_GLISSANDO_DOWN, 'codepoint, 0x1D1B2);
23064put('MUSICAL_SYMBOL_WITH_FINGERNAILS, 'codepoint, 0x1D1B3);
23065put('MUSICAL_SYMBOL_DAMP, 'codepoint, 0x1D1B4);
23066put('MUSICAL_SYMBOL_DAMP_ALL, 'codepoint, 0x1D1B5);
23067put('MUSICAL_SYMBOL_MAXIMA, 'codepoint, 0x1D1B6);
23068put('MUSICAL_SYMBOL_LONGA, 'codepoint, 0x1D1B7);
23069put('MUSICAL_SYMBOL_BREVIS, 'codepoint, 0x1D1B8);
23070put('MUSICAL_SYMBOL_SEMIBREVIS_WHITE, 'codepoint, 0x1D1B9);
23071put('MUSICAL_SYMBOL_SEMIBREVIS_BLACK, 'codepoint, 0x1D1BA);
23072put('MUSICAL_SYMBOL_MINIMA, 'codepoint, 0x1D1BB);
23073put('MUSICAL_SYMBOL_MINIMA_BLACK, 'codepoint, 0x1D1BC);
23074put('MUSICAL_SYMBOL_SEMIMINIMA_WHITE, 'codepoint, 0x1D1BD);
23075put('MUSICAL_SYMBOL_SEMIMINIMA_BLACK, 'codepoint, 0x1D1BE);
23076put('MUSICAL_SYMBOL_FUSA_WHITE, 'codepoint, 0x1D1BF);
23077put('MUSICAL_SYMBOL_FUSA_BLACK, 'codepoint, 0x1D1C0);
23078put('MUSICAL_SYMBOL_LONGA_PERFECTA_REST, 'codepoint, 0x1D1C1);
23079put('MUSICAL_SYMBOL_LONGA_IMPERFECTA_REST, 'codepoint, 0x1D1C2);
23080put('MUSICAL_SYMBOL_BREVIS_REST, 'codepoint, 0x1D1C3);
23081put('MUSICAL_SYMBOL_SEMIBREVIS_REST, 'codepoint, 0x1D1C4);
23082put('MUSICAL_SYMBOL_MINIMA_REST, 'codepoint, 0x1D1C5);
23083put('MUSICAL_SYMBOL_SEMIMINIMA_REST, 'codepoint, 0x1D1C6);
23084put('MUSICAL_SYMBOL_TEMPUS_PERFECTUM_CUM_PROLATIONE_PERFECTA, 'codepoint, 0x1D1C7);
23085put('MUSICAL_SYMBOL_TEMPUS_PERFECTUM_CUM_PROLATIONE_IMPERFECTA, 'codepoint, 0x1D1C8);
23086put('MUSICAL_SYMBOL_TEMPUS_PERFECTUM_CUM_PROLATIONE_PERFECTA_DIMINUTION_1, 'codepoint, 0x1D1C9);
23087put('MUSICAL_SYMBOL_TEMPUS_IMPERFECTUM_CUM_PROLATIONE_PERFECTA, 'codepoint, 0x1D1CA);
23088put('MUSICAL_SYMBOL_TEMPUS_IMPERFECTUM_CUM_PROLATIONE_IMPERFECTA, 'codepoint, 0x1D1CB);
23089put('MUSICAL_SYMBOL_TEMPUS_IMPERFECTUM_CUM_PROLATIONE_IMPERFECTA_DIMINUTION_1, 'codepoint, 0x1D1CC);
23090put('MUSICAL_SYMBOL_TEMPUS_IMPERFECTUM_CUM_PROLATIONE_IMPERFECTA_DIMINUTION_2, 'codepoint, 0x1D1CD);
23091put('MUSICAL_SYMBOL_TEMPUS_IMPERFECTUM_CUM_PROLATIONE_IMPERFECTA_DIMINUTION_3, 'codepoint, 0x1D1CE);
23092put('MUSICAL_SYMBOL_CROIX, 'codepoint, 0x1D1CF);
23093put('MUSICAL_SYMBOL_GREGORIAN_C_CLEF, 'codepoint, 0x1D1D0);
23094put('MUSICAL_SYMBOL_GREGORIAN_F_CLEF, 'codepoint, 0x1D1D1);
23095put('MUSICAL_SYMBOL_SQUARE_B, 'codepoint, 0x1D1D2);
23096put('MUSICAL_SYMBOL_VIRGA, 'codepoint, 0x1D1D3);
23097put('MUSICAL_SYMBOL_PODATUS, 'codepoint, 0x1D1D4);
23098put('MUSICAL_SYMBOL_CLIVIS, 'codepoint, 0x1D1D5);
23099put('MUSICAL_SYMBOL_SCANDICUS, 'codepoint, 0x1D1D6);
23100put('MUSICAL_SYMBOL_CLIMACUS, 'codepoint, 0x1D1D7);
23101put('MUSICAL_SYMBOL_TORCULUS, 'codepoint, 0x1D1D8);
23102put('MUSICAL_SYMBOL_PORRECTUS, 'codepoint, 0x1D1D9);
23103put('MUSICAL_SYMBOL_PORRECTUS_FLEXUS, 'codepoint, 0x1D1DA);
23104put('MUSICAL_SYMBOL_SCANDICUS_FLEXUS, 'codepoint, 0x1D1DB);
23105put('MUSICAL_SYMBOL_TORCULUS_RESUPINUS, 'codepoint, 0x1D1DC);
23106put('MUSICAL_SYMBOL_PES_SUBPUNCTIS, 'codepoint, 0x1D1DD);
23107put('GREEK_VOCAL_NOTATION_SYMBOL_1, 'codepoint, 0x1D200);
23108put('GREEK_VOCAL_NOTATION_SYMBOL_2, 'codepoint, 0x1D201);
23109put('GREEK_VOCAL_NOTATION_SYMBOL_3, 'codepoint, 0x1D202);
23110put('GREEK_VOCAL_NOTATION_SYMBOL_4, 'codepoint, 0x1D203);
23111put('GREEK_VOCAL_NOTATION_SYMBOL_5, 'codepoint, 0x1D204);
23112put('GREEK_VOCAL_NOTATION_SYMBOL_6, 'codepoint, 0x1D205);
23113put('GREEK_VOCAL_NOTATION_SYMBOL_7, 'codepoint, 0x1D206);
23114put('GREEK_VOCAL_NOTATION_SYMBOL_8, 'codepoint, 0x1D207);
23115put('GREEK_VOCAL_NOTATION_SYMBOL_9, 'codepoint, 0x1D208);
23116put('GREEK_VOCAL_NOTATION_SYMBOL_10, 'codepoint, 0x1D209);
23117put('GREEK_VOCAL_NOTATION_SYMBOL_11, 'codepoint, 0x1D20A);
23118put('GREEK_VOCAL_NOTATION_SYMBOL_12, 'codepoint, 0x1D20B);
23119put('GREEK_VOCAL_NOTATION_SYMBOL_13, 'codepoint, 0x1D20C);
23120put('GREEK_VOCAL_NOTATION_SYMBOL_14, 'codepoint, 0x1D20D);
23121put('GREEK_VOCAL_NOTATION_SYMBOL_15, 'codepoint, 0x1D20E);
23122put('GREEK_VOCAL_NOTATION_SYMBOL_16, 'codepoint, 0x1D20F);
23123put('GREEK_VOCAL_NOTATION_SYMBOL_17, 'codepoint, 0x1D210);
23124put('GREEK_VOCAL_NOTATION_SYMBOL_18, 'codepoint, 0x1D211);
23125put('GREEK_VOCAL_NOTATION_SYMBOL_19, 'codepoint, 0x1D212);
23126put('GREEK_VOCAL_NOTATION_SYMBOL_20, 'codepoint, 0x1D213);
23127put('GREEK_VOCAL_NOTATION_SYMBOL_21, 'codepoint, 0x1D214);
23128put('GREEK_VOCAL_NOTATION_SYMBOL_22, 'codepoint, 0x1D215);
23129put('GREEK_VOCAL_NOTATION_SYMBOL_23, 'codepoint, 0x1D216);
23130put('GREEK_VOCAL_NOTATION_SYMBOL_24, 'codepoint, 0x1D217);
23131put('GREEK_VOCAL_NOTATION_SYMBOL_50, 'codepoint, 0x1D218);
23132put('GREEK_VOCAL_NOTATION_SYMBOL_51, 'codepoint, 0x1D219);
23133put('GREEK_VOCAL_NOTATION_SYMBOL_52, 'codepoint, 0x1D21A);
23134put('GREEK_VOCAL_NOTATION_SYMBOL_53, 'codepoint, 0x1D21B);
23135put('GREEK_VOCAL_NOTATION_SYMBOL_54, 'codepoint, 0x1D21C);
23136put('GREEK_INSTRUMENTAL_NOTATION_SYMBOL_1, 'codepoint, 0x1D21D);
23137put('GREEK_INSTRUMENTAL_NOTATION_SYMBOL_2, 'codepoint, 0x1D21E);
23138put('GREEK_INSTRUMENTAL_NOTATION_SYMBOL_4, 'codepoint, 0x1D21F);
23139put('GREEK_INSTRUMENTAL_NOTATION_SYMBOL_5, 'codepoint, 0x1D220);
23140put('GREEK_INSTRUMENTAL_NOTATION_SYMBOL_7, 'codepoint, 0x1D221);
23141put('GREEK_INSTRUMENTAL_NOTATION_SYMBOL_8, 'codepoint, 0x1D222);
23142put('GREEK_INSTRUMENTAL_NOTATION_SYMBOL_11, 'codepoint, 0x1D223);
23143put('GREEK_INSTRUMENTAL_NOTATION_SYMBOL_12, 'codepoint, 0x1D224);
23144put('GREEK_INSTRUMENTAL_NOTATION_SYMBOL_13, 'codepoint, 0x1D225);
23145put('GREEK_INSTRUMENTAL_NOTATION_SYMBOL_14, 'codepoint, 0x1D226);
23146put('GREEK_INSTRUMENTAL_NOTATION_SYMBOL_17, 'codepoint, 0x1D227);
23147put('GREEK_INSTRUMENTAL_NOTATION_SYMBOL_18, 'codepoint, 0x1D228);
23148put('GREEK_INSTRUMENTAL_NOTATION_SYMBOL_19, 'codepoint, 0x1D229);
23149put('GREEK_INSTRUMENTAL_NOTATION_SYMBOL_23, 'codepoint, 0x1D22A);
23150put('GREEK_INSTRUMENTAL_NOTATION_SYMBOL_24, 'codepoint, 0x1D22B);
23151put('GREEK_INSTRUMENTAL_NOTATION_SYMBOL_25, 'codepoint, 0x1D22C);
23152put('GREEK_INSTRUMENTAL_NOTATION_SYMBOL_26, 'codepoint, 0x1D22D);
23153put('GREEK_INSTRUMENTAL_NOTATION_SYMBOL_27, 'codepoint, 0x1D22E);
23154put('GREEK_INSTRUMENTAL_NOTATION_SYMBOL_29, 'codepoint, 0x1D22F);
23155put('GREEK_INSTRUMENTAL_NOTATION_SYMBOL_30, 'codepoint, 0x1D230);
23156put('GREEK_INSTRUMENTAL_NOTATION_SYMBOL_32, 'codepoint, 0x1D231);
23157put('GREEK_INSTRUMENTAL_NOTATION_SYMBOL_36, 'codepoint, 0x1D232);
23158put('GREEK_INSTRUMENTAL_NOTATION_SYMBOL_37, 'codepoint, 0x1D233);
23159put('GREEK_INSTRUMENTAL_NOTATION_SYMBOL_38, 'codepoint, 0x1D234);
23160put('GREEK_INSTRUMENTAL_NOTATION_SYMBOL_39, 'codepoint, 0x1D235);
23161put('GREEK_INSTRUMENTAL_NOTATION_SYMBOL_40, 'codepoint, 0x1D236);
23162put('GREEK_INSTRUMENTAL_NOTATION_SYMBOL_42, 'codepoint, 0x1D237);
23163put('GREEK_INSTRUMENTAL_NOTATION_SYMBOL_43, 'codepoint, 0x1D238);
23164put('GREEK_INSTRUMENTAL_NOTATION_SYMBOL_45, 'codepoint, 0x1D239);
23165put('GREEK_INSTRUMENTAL_NOTATION_SYMBOL_47, 'codepoint, 0x1D23A);
23166put('GREEK_INSTRUMENTAL_NOTATION_SYMBOL_48, 'codepoint, 0x1D23B);
23167put('GREEK_INSTRUMENTAL_NOTATION_SYMBOL_49, 'codepoint, 0x1D23C);
23168put('GREEK_INSTRUMENTAL_NOTATION_SYMBOL_50, 'codepoint, 0x1D23D);
23169put('GREEK_INSTRUMENTAL_NOTATION_SYMBOL_51, 'codepoint, 0x1D23E);
23170put('GREEK_INSTRUMENTAL_NOTATION_SYMBOL_52, 'codepoint, 0x1D23F);
23171put('GREEK_INSTRUMENTAL_NOTATION_SYMBOL_53, 'codepoint, 0x1D240);
23172put('GREEK_INSTRUMENTAL_NOTATION_SYMBOL_54, 'codepoint, 0x1D241);
23173put('COMBINING_GREEK_MUSICAL_TRISEME, 'codepoint, 0x1D242);
23174put('COMBINING_GREEK_MUSICAL_TETRASEME, 'codepoint, 0x1D243);
23175put('COMBINING_GREEK_MUSICAL_PENTASEME, 'codepoint, 0x1D244);
23176put('GREEK_MUSICAL_LEIMMA, 'codepoint, 0x1D245);
23177put('MONOGRAM_FOR_EARTH, 'codepoint, 0x1D300);
23178put('DIGRAM_FOR_HEAVENLY_EARTH, 'codepoint, 0x1D301);
23179put('DIGRAM_FOR_HUMAN_EARTH, 'codepoint, 0x1D302);
23180put('DIGRAM_FOR_EARTHLY_HEAVEN, 'codepoint, 0x1D303);
23181put('DIGRAM_FOR_EARTHLY_HUMAN, 'codepoint, 0x1D304);
23182put('DIGRAM_FOR_EARTH, 'codepoint, 0x1D305);
23183put('TETRAGRAM_FOR_CENTRE, 'codepoint, 0x1D306);
23184put('TETRAGRAM_FOR_FULL_CIRCLE, 'codepoint, 0x1D307);
23185put('TETRAGRAM_FOR_MIRED, 'codepoint, 0x1D308);
23186put('TETRAGRAM_FOR_BARRIER, 'codepoint, 0x1D309);
23187put('TETRAGRAM_FOR_KEEPING_SMALL, 'codepoint, 0x1D30A);
23188put('TETRAGRAM_FOR_CONTRARIETY, 'codepoint, 0x1D30B);
23189put('TETRAGRAM_FOR_ASCENT, 'codepoint, 0x1D30C);
23190put('TETRAGRAM_FOR_OPPOSITION, 'codepoint, 0x1D30D);
23191put('TETRAGRAM_FOR_BRANCHING_OUT, 'codepoint, 0x1D30E);
23192put('TETRAGRAM_FOR_DEFECTIVENESS_OR_DISTORTION, 'codepoint, 0x1D30F);
23193put('TETRAGRAM_FOR_DIVERGENCE, 'codepoint, 0x1D310);
23194put('TETRAGRAM_FOR_YOUTHFULNESS, 'codepoint, 0x1D311);
23195put('TETRAGRAM_FOR_INCREASE, 'codepoint, 0x1D312);
23196put('TETRAGRAM_FOR_PENETRATION, 'codepoint, 0x1D313);
23197put('TETRAGRAM_FOR_REACH, 'codepoint, 0x1D314);
23198put('TETRAGRAM_FOR_CONTACT, 'codepoint, 0x1D315);
23199put('TETRAGRAM_FOR_HOLDING_BACK, 'codepoint, 0x1D316);
23200put('TETRAGRAM_FOR_WAITING, 'codepoint, 0x1D317);
23201put('TETRAGRAM_FOR_FOLLOWING, 'codepoint, 0x1D318);
23202put('TETRAGRAM_FOR_ADVANCE, 'codepoint, 0x1D319);
23203put('TETRAGRAM_FOR_RELEASE, 'codepoint, 0x1D31A);
23204put('TETRAGRAM_FOR_RESISTANCE, 'codepoint, 0x1D31B);
23205put('TETRAGRAM_FOR_EASE, 'codepoint, 0x1D31C);
23206put('TETRAGRAM_FOR_JOY, 'codepoint, 0x1D31D);
23207put('TETRAGRAM_FOR_CONTENTION, 'codepoint, 0x1D31E);
23208put('TETRAGRAM_FOR_ENDEAVOUR, 'codepoint, 0x1D31F);
23209put('TETRAGRAM_FOR_DUTIES, 'codepoint, 0x1D320);
23210put('TETRAGRAM_FOR_CHANGE, 'codepoint, 0x1D321);
23211put('TETRAGRAM_FOR_DECISIVENESS, 'codepoint, 0x1D322);
23212put('TETRAGRAM_FOR_BOLD_RESOLUTION, 'codepoint, 0x1D323);
23213put('TETRAGRAM_FOR_PACKING, 'codepoint, 0x1D324);
23214put('TETRAGRAM_FOR_LEGION, 'codepoint, 0x1D325);
23215put('TETRAGRAM_FOR_CLOSENESS, 'codepoint, 0x1D326);
23216put('TETRAGRAM_FOR_KINSHIP, 'codepoint, 0x1D327);
23217put('TETRAGRAM_FOR_GATHERING, 'codepoint, 0x1D328);
23218put('TETRAGRAM_FOR_STRENGTH, 'codepoint, 0x1D329);
23219put('TETRAGRAM_FOR_PURITY, 'codepoint, 0x1D32A);
23220put('TETRAGRAM_FOR_FULLNESS, 'codepoint, 0x1D32B);
23221put('TETRAGRAM_FOR_RESIDENCE, 'codepoint, 0x1D32C);
23222put('TETRAGRAM_FOR_LAW_OR_MODEL, 'codepoint, 0x1D32D);
23223put('TETRAGRAM_FOR_RESPONSE, 'codepoint, 0x1D32E);
23224put('TETRAGRAM_FOR_GOING_TO_MEET, 'codepoint, 0x1D32F);
23225put('TETRAGRAM_FOR_ENCOUNTERS, 'codepoint, 0x1D330);
23226put('TETRAGRAM_FOR_STOVE, 'codepoint, 0x1D331);
23227put('TETRAGRAM_FOR_GREATNESS, 'codepoint, 0x1D332);
23228put('TETRAGRAM_FOR_ENLARGEMENT, 'codepoint, 0x1D333);
23229put('TETRAGRAM_FOR_PATTERN, 'codepoint, 0x1D334);
23230put('TETRAGRAM_FOR_RITUAL, 'codepoint, 0x1D335);
23231put('TETRAGRAM_FOR_FLIGHT, 'codepoint, 0x1D336);
23232put('TETRAGRAM_FOR_VASTNESS_OR_WASTING, 'codepoint, 0x1D337);
23233put('TETRAGRAM_FOR_CONSTANCY, 'codepoint, 0x1D338);
23234put('TETRAGRAM_FOR_MEASURE, 'codepoint, 0x1D339);
23235put('TETRAGRAM_FOR_ETERNITY, 'codepoint, 0x1D33A);
23236put('TETRAGRAM_FOR_UNITY, 'codepoint, 0x1D33B);
23237put('TETRAGRAM_FOR_DIMINISHMENT, 'codepoint, 0x1D33C);
23238put('TETRAGRAM_FOR_CLOSED_MOUTH, 'codepoint, 0x1D33D);
23239put('TETRAGRAM_FOR_GUARDEDNESS, 'codepoint, 0x1D33E);
23240put('TETRAGRAM_FOR_GATHERING_IN, 'codepoint, 0x1D33F);
23241put('TETRAGRAM_FOR_MASSING, 'codepoint, 0x1D340);
23242put('TETRAGRAM_FOR_ACCUMULATION, 'codepoint, 0x1D341);
23243put('TETRAGRAM_FOR_EMBELLISHMENT, 'codepoint, 0x1D342);
23244put('TETRAGRAM_FOR_DOUBT, 'codepoint, 0x1D343);
23245put('TETRAGRAM_FOR_WATCH, 'codepoint, 0x1D344);
23246put('TETRAGRAM_FOR_SINKING, 'codepoint, 0x1D345);
23247put('TETRAGRAM_FOR_INNER, 'codepoint, 0x1D346);
23248put('TETRAGRAM_FOR_DEPARTURE, 'codepoint, 0x1D347);
23249put('TETRAGRAM_FOR_DARKENING, 'codepoint, 0x1D348);
23250put('TETRAGRAM_FOR_DIMMING, 'codepoint, 0x1D349);
23251put('TETRAGRAM_FOR_EXHAUSTION, 'codepoint, 0x1D34A);
23252put('TETRAGRAM_FOR_SEVERANCE, 'codepoint, 0x1D34B);
23253put('TETRAGRAM_FOR_STOPPAGE, 'codepoint, 0x1D34C);
23254put('TETRAGRAM_FOR_HARDNESS, 'codepoint, 0x1D34D);
23255put('TETRAGRAM_FOR_COMPLETION, 'codepoint, 0x1D34E);
23256put('TETRAGRAM_FOR_CLOSURE, 'codepoint, 0x1D34F);
23257put('TETRAGRAM_FOR_FAILURE, 'codepoint, 0x1D350);
23258put('TETRAGRAM_FOR_AGGRAVATION, 'codepoint, 0x1D351);
23259put('TETRAGRAM_FOR_COMPLIANCE, 'codepoint, 0x1D352);
23260put('TETRAGRAM_FOR_ON_THE_VERGE, 'codepoint, 0x1D353);
23261put('TETRAGRAM_FOR_DIFFICULTIES, 'codepoint, 0x1D354);
23262put('TETRAGRAM_FOR_LABOURING, 'codepoint, 0x1D355);
23263put('TETRAGRAM_FOR_FOSTERING, 'codepoint, 0x1D356);
23264put('COUNTING_ROD_UNIT_DIGIT_ONE, 'codepoint, 0x1D360);
23265put('COUNTING_ROD_UNIT_DIGIT_TWO, 'codepoint, 0x1D361);
23266put('COUNTING_ROD_UNIT_DIGIT_THREE, 'codepoint, 0x1D362);
23267put('COUNTING_ROD_UNIT_DIGIT_FOUR, 'codepoint, 0x1D363);
23268put('COUNTING_ROD_UNIT_DIGIT_FIVE, 'codepoint, 0x1D364);
23269put('COUNTING_ROD_UNIT_DIGIT_SIX, 'codepoint, 0x1D365);
23270put('COUNTING_ROD_UNIT_DIGIT_SEVEN, 'codepoint, 0x1D366);
23271put('COUNTING_ROD_UNIT_DIGIT_EIGHT, 'codepoint, 0x1D367);
23272put('COUNTING_ROD_UNIT_DIGIT_NINE, 'codepoint, 0x1D368);
23273put('COUNTING_ROD_TENS_DIGIT_ONE, 'codepoint, 0x1D369);
23274put('COUNTING_ROD_TENS_DIGIT_TWO, 'codepoint, 0x1D36A);
23275put('COUNTING_ROD_TENS_DIGIT_THREE, 'codepoint, 0x1D36B);
23276put('COUNTING_ROD_TENS_DIGIT_FOUR, 'codepoint, 0x1D36C);
23277put('COUNTING_ROD_TENS_DIGIT_FIVE, 'codepoint, 0x1D36D);
23278put('COUNTING_ROD_TENS_DIGIT_SIX, 'codepoint, 0x1D36E);
23279put('COUNTING_ROD_TENS_DIGIT_SEVEN, 'codepoint, 0x1D36F);
23280put('COUNTING_ROD_TENS_DIGIT_EIGHT, 'codepoint, 0x1D370);
23281put('COUNTING_ROD_TENS_DIGIT_NINE, 'codepoint, 0x1D371);
23282put('MATHEMATICAL_BOLD_CAPITAL_A, 'codepoint, 0x1D400);
23283put('MATHEMATICAL_BOLD_CAPITAL_B, 'codepoint, 0x1D401);
23284put('MATHEMATICAL_BOLD_CAPITAL_C, 'codepoint, 0x1D402);
23285put('MATHEMATICAL_BOLD_CAPITAL_D, 'codepoint, 0x1D403);
23286put('MATHEMATICAL_BOLD_CAPITAL_E, 'codepoint, 0x1D404);
23287put('MATHEMATICAL_BOLD_CAPITAL_F, 'codepoint, 0x1D405);
23288put('MATHEMATICAL_BOLD_CAPITAL_G, 'codepoint, 0x1D406);
23289put('MATHEMATICAL_BOLD_CAPITAL_H, 'codepoint, 0x1D407);
23290put('MATHEMATICAL_BOLD_CAPITAL_I, 'codepoint, 0x1D408);
23291put('MATHEMATICAL_BOLD_CAPITAL_J, 'codepoint, 0x1D409);
23292put('MATHEMATICAL_BOLD_CAPITAL_K, 'codepoint, 0x1D40A);
23293put('MATHEMATICAL_BOLD_CAPITAL_L, 'codepoint, 0x1D40B);
23294put('MATHEMATICAL_BOLD_CAPITAL_M, 'codepoint, 0x1D40C);
23295put('MATHEMATICAL_BOLD_CAPITAL_N, 'codepoint, 0x1D40D);
23296put('MATHEMATICAL_BOLD_CAPITAL_O, 'codepoint, 0x1D40E);
23297put('MATHEMATICAL_BOLD_CAPITAL_P, 'codepoint, 0x1D40F);
23298put('MATHEMATICAL_BOLD_CAPITAL_Q, 'codepoint, 0x1D410);
23299put('MATHEMATICAL_BOLD_CAPITAL_R, 'codepoint, 0x1D411);
23300put('MATHEMATICAL_BOLD_CAPITAL_S, 'codepoint, 0x1D412);
23301put('MATHEMATICAL_BOLD_CAPITAL_T, 'codepoint, 0x1D413);
23302put('MATHEMATICAL_BOLD_CAPITAL_U, 'codepoint, 0x1D414);
23303put('MATHEMATICAL_BOLD_CAPITAL_V, 'codepoint, 0x1D415);
23304put('MATHEMATICAL_BOLD_CAPITAL_W, 'codepoint, 0x1D416);
23305put('MATHEMATICAL_BOLD_CAPITAL_X, 'codepoint, 0x1D417);
23306put('MATHEMATICAL_BOLD_CAPITAL_Y, 'codepoint, 0x1D418);
23307put('MATHEMATICAL_BOLD_CAPITAL_Z, 'codepoint, 0x1D419);
23308put('MATHEMATICAL_BOLD_SMALL_A, 'codepoint, 0x1D41A);
23309put('MATHEMATICAL_BOLD_SMALL_B, 'codepoint, 0x1D41B);
23310put('MATHEMATICAL_BOLD_SMALL_C, 'codepoint, 0x1D41C);
23311put('MATHEMATICAL_BOLD_SMALL_D, 'codepoint, 0x1D41D);
23312put('MATHEMATICAL_BOLD_SMALL_E, 'codepoint, 0x1D41E);
23313put('MATHEMATICAL_BOLD_SMALL_F, 'codepoint, 0x1D41F);
23314put('MATHEMATICAL_BOLD_SMALL_G, 'codepoint, 0x1D420);
23315put('MATHEMATICAL_BOLD_SMALL_H, 'codepoint, 0x1D421);
23316put('MATHEMATICAL_BOLD_SMALL_I, 'codepoint, 0x1D422);
23317put('MATHEMATICAL_BOLD_SMALL_J, 'codepoint, 0x1D423);
23318put('MATHEMATICAL_BOLD_SMALL_K, 'codepoint, 0x1D424);
23319put('MATHEMATICAL_BOLD_SMALL_L, 'codepoint, 0x1D425);
23320put('MATHEMATICAL_BOLD_SMALL_M, 'codepoint, 0x1D426);
23321put('MATHEMATICAL_BOLD_SMALL_N, 'codepoint, 0x1D427);
23322put('MATHEMATICAL_BOLD_SMALL_O, 'codepoint, 0x1D428);
23323put('MATHEMATICAL_BOLD_SMALL_P, 'codepoint, 0x1D429);
23324put('MATHEMATICAL_BOLD_SMALL_Q, 'codepoint, 0x1D42A);
23325put('MATHEMATICAL_BOLD_SMALL_R, 'codepoint, 0x1D42B);
23326put('MATHEMATICAL_BOLD_SMALL_S, 'codepoint, 0x1D42C);
23327put('MATHEMATICAL_BOLD_SMALL_T, 'codepoint, 0x1D42D);
23328put('MATHEMATICAL_BOLD_SMALL_U, 'codepoint, 0x1D42E);
23329put('MATHEMATICAL_BOLD_SMALL_V, 'codepoint, 0x1D42F);
23330put('MATHEMATICAL_BOLD_SMALL_W, 'codepoint, 0x1D430);
23331put('MATHEMATICAL_BOLD_SMALL_X, 'codepoint, 0x1D431);
23332put('MATHEMATICAL_BOLD_SMALL_Y, 'codepoint, 0x1D432);
23333put('MATHEMATICAL_BOLD_SMALL_Z, 'codepoint, 0x1D433);
23334put('MATHEMATICAL_ITALIC_CAPITAL_A, 'codepoint, 0x1D434);
23335put('MATHEMATICAL_ITALIC_CAPITAL_B, 'codepoint, 0x1D435);
23336put('MATHEMATICAL_ITALIC_CAPITAL_C, 'codepoint, 0x1D436);
23337put('MATHEMATICAL_ITALIC_CAPITAL_D, 'codepoint, 0x1D437);
23338put('MATHEMATICAL_ITALIC_CAPITAL_E, 'codepoint, 0x1D438);
23339put('MATHEMATICAL_ITALIC_CAPITAL_F, 'codepoint, 0x1D439);
23340put('MATHEMATICAL_ITALIC_CAPITAL_G, 'codepoint, 0x1D43A);
23341put('MATHEMATICAL_ITALIC_CAPITAL_H, 'codepoint, 0x1D43B);
23342put('MATHEMATICAL_ITALIC_CAPITAL_I, 'codepoint, 0x1D43C);
23343put('MATHEMATICAL_ITALIC_CAPITAL_J, 'codepoint, 0x1D43D);
23344put('MATHEMATICAL_ITALIC_CAPITAL_K, 'codepoint, 0x1D43E);
23345put('MATHEMATICAL_ITALIC_CAPITAL_L, 'codepoint, 0x1D43F);
23346put('MATHEMATICAL_ITALIC_CAPITAL_M, 'codepoint, 0x1D440);
23347put('MATHEMATICAL_ITALIC_CAPITAL_N, 'codepoint, 0x1D441);
23348put('MATHEMATICAL_ITALIC_CAPITAL_O, 'codepoint, 0x1D442);
23349put('MATHEMATICAL_ITALIC_CAPITAL_P, 'codepoint, 0x1D443);
23350put('MATHEMATICAL_ITALIC_CAPITAL_Q, 'codepoint, 0x1D444);
23351put('MATHEMATICAL_ITALIC_CAPITAL_R, 'codepoint, 0x1D445);
23352put('MATHEMATICAL_ITALIC_CAPITAL_S, 'codepoint, 0x1D446);
23353put('MATHEMATICAL_ITALIC_CAPITAL_T, 'codepoint, 0x1D447);
23354put('MATHEMATICAL_ITALIC_CAPITAL_U, 'codepoint, 0x1D448);
23355put('MATHEMATICAL_ITALIC_CAPITAL_V, 'codepoint, 0x1D449);
23356put('MATHEMATICAL_ITALIC_CAPITAL_W, 'codepoint, 0x1D44A);
23357put('MATHEMATICAL_ITALIC_CAPITAL_X, 'codepoint, 0x1D44B);
23358put('MATHEMATICAL_ITALIC_CAPITAL_Y, 'codepoint, 0x1D44C);
23359put('MATHEMATICAL_ITALIC_CAPITAL_Z, 'codepoint, 0x1D44D);
23360put('MATHEMATICAL_ITALIC_SMALL_A, 'codepoint, 0x1D44E);
23361put('MATHEMATICAL_ITALIC_SMALL_B, 'codepoint, 0x1D44F);
23362put('MATHEMATICAL_ITALIC_SMALL_C, 'codepoint, 0x1D450);
23363put('MATHEMATICAL_ITALIC_SMALL_D, 'codepoint, 0x1D451);
23364put('MATHEMATICAL_ITALIC_SMALL_E, 'codepoint, 0x1D452);
23365put('MATHEMATICAL_ITALIC_SMALL_F, 'codepoint, 0x1D453);
23366put('MATHEMATICAL_ITALIC_SMALL_G, 'codepoint, 0x1D454);
23367put('MATHEMATICAL_ITALIC_SMALL_I, 'codepoint, 0x1D456);
23368put('MATHEMATICAL_ITALIC_SMALL_J, 'codepoint, 0x1D457);
23369put('MATHEMATICAL_ITALIC_SMALL_K, 'codepoint, 0x1D458);
23370put('MATHEMATICAL_ITALIC_SMALL_L, 'codepoint, 0x1D459);
23371put('MATHEMATICAL_ITALIC_SMALL_M, 'codepoint, 0x1D45A);
23372put('MATHEMATICAL_ITALIC_SMALL_N, 'codepoint, 0x1D45B);
23373put('MATHEMATICAL_ITALIC_SMALL_O, 'codepoint, 0x1D45C);
23374put('MATHEMATICAL_ITALIC_SMALL_P, 'codepoint, 0x1D45D);
23375put('MATHEMATICAL_ITALIC_SMALL_Q, 'codepoint, 0x1D45E);
23376put('MATHEMATICAL_ITALIC_SMALL_R, 'codepoint, 0x1D45F);
23377put('MATHEMATICAL_ITALIC_SMALL_S, 'codepoint, 0x1D460);
23378put('MATHEMATICAL_ITALIC_SMALL_T, 'codepoint, 0x1D461);
23379put('MATHEMATICAL_ITALIC_SMALL_U, 'codepoint, 0x1D462);
23380put('MATHEMATICAL_ITALIC_SMALL_V, 'codepoint, 0x1D463);
23381put('MATHEMATICAL_ITALIC_SMALL_W, 'codepoint, 0x1D464);
23382put('MATHEMATICAL_ITALIC_SMALL_X, 'codepoint, 0x1D465);
23383put('MATHEMATICAL_ITALIC_SMALL_Y, 'codepoint, 0x1D466);
23384put('MATHEMATICAL_ITALIC_SMALL_Z, 'codepoint, 0x1D467);
23385put('MATHEMATICAL_BOLD_ITALIC_CAPITAL_A, 'codepoint, 0x1D468);
23386put('MATHEMATICAL_BOLD_ITALIC_CAPITAL_B, 'codepoint, 0x1D469);
23387put('MATHEMATICAL_BOLD_ITALIC_CAPITAL_C, 'codepoint, 0x1D46A);
23388put('MATHEMATICAL_BOLD_ITALIC_CAPITAL_D, 'codepoint, 0x1D46B);
23389put('MATHEMATICAL_BOLD_ITALIC_CAPITAL_E, 'codepoint, 0x1D46C);
23390put('MATHEMATICAL_BOLD_ITALIC_CAPITAL_F, 'codepoint, 0x1D46D);
23391put('MATHEMATICAL_BOLD_ITALIC_CAPITAL_G, 'codepoint, 0x1D46E);
23392put('MATHEMATICAL_BOLD_ITALIC_CAPITAL_H, 'codepoint, 0x1D46F);
23393put('MATHEMATICAL_BOLD_ITALIC_CAPITAL_I, 'codepoint, 0x1D470);
23394put('MATHEMATICAL_BOLD_ITALIC_CAPITAL_J, 'codepoint, 0x1D471);
23395put('MATHEMATICAL_BOLD_ITALIC_CAPITAL_K, 'codepoint, 0x1D472);
23396put('MATHEMATICAL_BOLD_ITALIC_CAPITAL_L, 'codepoint, 0x1D473);
23397put('MATHEMATICAL_BOLD_ITALIC_CAPITAL_M, 'codepoint, 0x1D474);
23398put('MATHEMATICAL_BOLD_ITALIC_CAPITAL_N, 'codepoint, 0x1D475);
23399put('MATHEMATICAL_BOLD_ITALIC_CAPITAL_O, 'codepoint, 0x1D476);
23400put('MATHEMATICAL_BOLD_ITALIC_CAPITAL_P, 'codepoint, 0x1D477);
23401put('MATHEMATICAL_BOLD_ITALIC_CAPITAL_Q, 'codepoint, 0x1D478);
23402put('MATHEMATICAL_BOLD_ITALIC_CAPITAL_R, 'codepoint, 0x1D479);
23403put('MATHEMATICAL_BOLD_ITALIC_CAPITAL_S, 'codepoint, 0x1D47A);
23404put('MATHEMATICAL_BOLD_ITALIC_CAPITAL_T, 'codepoint, 0x1D47B);
23405put('MATHEMATICAL_BOLD_ITALIC_CAPITAL_U, 'codepoint, 0x1D47C);
23406put('MATHEMATICAL_BOLD_ITALIC_CAPITAL_V, 'codepoint, 0x1D47D);
23407put('MATHEMATICAL_BOLD_ITALIC_CAPITAL_W, 'codepoint, 0x1D47E);
23408put('MATHEMATICAL_BOLD_ITALIC_CAPITAL_X, 'codepoint, 0x1D47F);
23409put('MATHEMATICAL_BOLD_ITALIC_CAPITAL_Y, 'codepoint, 0x1D480);
23410put('MATHEMATICAL_BOLD_ITALIC_CAPITAL_Z, 'codepoint, 0x1D481);
23411put('MATHEMATICAL_BOLD_ITALIC_SMALL_A, 'codepoint, 0x1D482);
23412put('MATHEMATICAL_BOLD_ITALIC_SMALL_B, 'codepoint, 0x1D483);
23413put('MATHEMATICAL_BOLD_ITALIC_SMALL_C, 'codepoint, 0x1D484);
23414put('MATHEMATICAL_BOLD_ITALIC_SMALL_D, 'codepoint, 0x1D485);
23415put('MATHEMATICAL_BOLD_ITALIC_SMALL_E, 'codepoint, 0x1D486);
23416put('MATHEMATICAL_BOLD_ITALIC_SMALL_F, 'codepoint, 0x1D487);
23417put('MATHEMATICAL_BOLD_ITALIC_SMALL_G, 'codepoint, 0x1D488);
23418put('MATHEMATICAL_BOLD_ITALIC_SMALL_H, 'codepoint, 0x1D489);
23419put('MATHEMATICAL_BOLD_ITALIC_SMALL_I, 'codepoint, 0x1D48A);
23420put('MATHEMATICAL_BOLD_ITALIC_SMALL_J, 'codepoint, 0x1D48B);
23421put('MATHEMATICAL_BOLD_ITALIC_SMALL_K, 'codepoint, 0x1D48C);
23422put('MATHEMATICAL_BOLD_ITALIC_SMALL_L, 'codepoint, 0x1D48D);
23423put('MATHEMATICAL_BOLD_ITALIC_SMALL_M, 'codepoint, 0x1D48E);
23424put('MATHEMATICAL_BOLD_ITALIC_SMALL_N, 'codepoint, 0x1D48F);
23425put('MATHEMATICAL_BOLD_ITALIC_SMALL_O, 'codepoint, 0x1D490);
23426put('MATHEMATICAL_BOLD_ITALIC_SMALL_P, 'codepoint, 0x1D491);
23427put('MATHEMATICAL_BOLD_ITALIC_SMALL_Q, 'codepoint, 0x1D492);
23428put('MATHEMATICAL_BOLD_ITALIC_SMALL_R, 'codepoint, 0x1D493);
23429put('MATHEMATICAL_BOLD_ITALIC_SMALL_S, 'codepoint, 0x1D494);
23430put('MATHEMATICAL_BOLD_ITALIC_SMALL_T, 'codepoint, 0x1D495);
23431put('MATHEMATICAL_BOLD_ITALIC_SMALL_U, 'codepoint, 0x1D496);
23432put('MATHEMATICAL_BOLD_ITALIC_SMALL_V, 'codepoint, 0x1D497);
23433put('MATHEMATICAL_BOLD_ITALIC_SMALL_W, 'codepoint, 0x1D498);
23434put('MATHEMATICAL_BOLD_ITALIC_SMALL_X, 'codepoint, 0x1D499);
23435put('MATHEMATICAL_BOLD_ITALIC_SMALL_Y, 'codepoint, 0x1D49A);
23436put('MATHEMATICAL_BOLD_ITALIC_SMALL_Z, 'codepoint, 0x1D49B);
23437put('MATHEMATICAL_SCRIPT_CAPITAL_A, 'codepoint, 0x1D49C);
23438put('MATHEMATICAL_SCRIPT_CAPITAL_C, 'codepoint, 0x1D49E);
23439put('MATHEMATICAL_SCRIPT_CAPITAL_D, 'codepoint, 0x1D49F);
23440put('MATHEMATICAL_SCRIPT_CAPITAL_G, 'codepoint, 0x1D4A2);
23441put('MATHEMATICAL_SCRIPT_CAPITAL_J, 'codepoint, 0x1D4A5);
23442put('MATHEMATICAL_SCRIPT_CAPITAL_K, 'codepoint, 0x1D4A6);
23443put('MATHEMATICAL_SCRIPT_CAPITAL_N, 'codepoint, 0x1D4A9);
23444put('MATHEMATICAL_SCRIPT_CAPITAL_O, 'codepoint, 0x1D4AA);
23445put('MATHEMATICAL_SCRIPT_CAPITAL_P, 'codepoint, 0x1D4AB);
23446put('MATHEMATICAL_SCRIPT_CAPITAL_Q, 'codepoint, 0x1D4AC);
23447put('MATHEMATICAL_SCRIPT_CAPITAL_S, 'codepoint, 0x1D4AE);
23448put('MATHEMATICAL_SCRIPT_CAPITAL_T, 'codepoint, 0x1D4AF);
23449put('MATHEMATICAL_SCRIPT_CAPITAL_U, 'codepoint, 0x1D4B0);
23450put('MATHEMATICAL_SCRIPT_CAPITAL_V, 'codepoint, 0x1D4B1);
23451put('MATHEMATICAL_SCRIPT_CAPITAL_W, 'codepoint, 0x1D4B2);
23452put('MATHEMATICAL_SCRIPT_CAPITAL_X, 'codepoint, 0x1D4B3);
23453put('MATHEMATICAL_SCRIPT_CAPITAL_Y, 'codepoint, 0x1D4B4);
23454put('MATHEMATICAL_SCRIPT_CAPITAL_Z, 'codepoint, 0x1D4B5);
23455put('MATHEMATICAL_SCRIPT_SMALL_A, 'codepoint, 0x1D4B6);
23456put('MATHEMATICAL_SCRIPT_SMALL_B, 'codepoint, 0x1D4B7);
23457put('MATHEMATICAL_SCRIPT_SMALL_C, 'codepoint, 0x1D4B8);
23458put('MATHEMATICAL_SCRIPT_SMALL_D, 'codepoint, 0x1D4B9);
23459put('MATHEMATICAL_SCRIPT_SMALL_F, 'codepoint, 0x1D4BB);
23460put('MATHEMATICAL_SCRIPT_SMALL_H, 'codepoint, 0x1D4BD);
23461put('MATHEMATICAL_SCRIPT_SMALL_I, 'codepoint, 0x1D4BE);
23462put('MATHEMATICAL_SCRIPT_SMALL_J, 'codepoint, 0x1D4BF);
23463put('MATHEMATICAL_SCRIPT_SMALL_K, 'codepoint, 0x1D4C0);
23464put('MATHEMATICAL_SCRIPT_SMALL_L, 'codepoint, 0x1D4C1);
23465put('MATHEMATICAL_SCRIPT_SMALL_M, 'codepoint, 0x1D4C2);
23466put('MATHEMATICAL_SCRIPT_SMALL_N, 'codepoint, 0x1D4C3);
23467put('MATHEMATICAL_SCRIPT_SMALL_P, 'codepoint, 0x1D4C5);
23468put('MATHEMATICAL_SCRIPT_SMALL_Q, 'codepoint, 0x1D4C6);
23469put('MATHEMATICAL_SCRIPT_SMALL_R, 'codepoint, 0x1D4C7);
23470put('MATHEMATICAL_SCRIPT_SMALL_S, 'codepoint, 0x1D4C8);
23471put('MATHEMATICAL_SCRIPT_SMALL_T, 'codepoint, 0x1D4C9);
23472put('MATHEMATICAL_SCRIPT_SMALL_U, 'codepoint, 0x1D4CA);
23473put('MATHEMATICAL_SCRIPT_SMALL_V, 'codepoint, 0x1D4CB);
23474put('MATHEMATICAL_SCRIPT_SMALL_W, 'codepoint, 0x1D4CC);
23475put('MATHEMATICAL_SCRIPT_SMALL_X, 'codepoint, 0x1D4CD);
23476put('MATHEMATICAL_SCRIPT_SMALL_Y, 'codepoint, 0x1D4CE);
23477put('MATHEMATICAL_SCRIPT_SMALL_Z, 'codepoint, 0x1D4CF);
23478put('MATHEMATICAL_BOLD_SCRIPT_CAPITAL_A, 'codepoint, 0x1D4D0);
23479put('MATHEMATICAL_BOLD_SCRIPT_CAPITAL_B, 'codepoint, 0x1D4D1);
23480put('MATHEMATICAL_BOLD_SCRIPT_CAPITAL_C, 'codepoint, 0x1D4D2);
23481put('MATHEMATICAL_BOLD_SCRIPT_CAPITAL_D, 'codepoint, 0x1D4D3);
23482put('MATHEMATICAL_BOLD_SCRIPT_CAPITAL_E, 'codepoint, 0x1D4D4);
23483put('MATHEMATICAL_BOLD_SCRIPT_CAPITAL_F, 'codepoint, 0x1D4D5);
23484put('MATHEMATICAL_BOLD_SCRIPT_CAPITAL_G, 'codepoint, 0x1D4D6);
23485put('MATHEMATICAL_BOLD_SCRIPT_CAPITAL_H, 'codepoint, 0x1D4D7);
23486put('MATHEMATICAL_BOLD_SCRIPT_CAPITAL_I, 'codepoint, 0x1D4D8);
23487put('MATHEMATICAL_BOLD_SCRIPT_CAPITAL_J, 'codepoint, 0x1D4D9);
23488put('MATHEMATICAL_BOLD_SCRIPT_CAPITAL_K, 'codepoint, 0x1D4DA);
23489put('MATHEMATICAL_BOLD_SCRIPT_CAPITAL_L, 'codepoint, 0x1D4DB);
23490put('MATHEMATICAL_BOLD_SCRIPT_CAPITAL_M, 'codepoint, 0x1D4DC);
23491put('MATHEMATICAL_BOLD_SCRIPT_CAPITAL_N, 'codepoint, 0x1D4DD);
23492put('MATHEMATICAL_BOLD_SCRIPT_CAPITAL_O, 'codepoint, 0x1D4DE);
23493put('MATHEMATICAL_BOLD_SCRIPT_CAPITAL_P, 'codepoint, 0x1D4DF);
23494put('MATHEMATICAL_BOLD_SCRIPT_CAPITAL_Q, 'codepoint, 0x1D4E0);
23495put('MATHEMATICAL_BOLD_SCRIPT_CAPITAL_R, 'codepoint, 0x1D4E1);
23496put('MATHEMATICAL_BOLD_SCRIPT_CAPITAL_S, 'codepoint, 0x1D4E2);
23497put('MATHEMATICAL_BOLD_SCRIPT_CAPITAL_T, 'codepoint, 0x1D4E3);
23498put('MATHEMATICAL_BOLD_SCRIPT_CAPITAL_U, 'codepoint, 0x1D4E4);
23499put('MATHEMATICAL_BOLD_SCRIPT_CAPITAL_V, 'codepoint, 0x1D4E5);
23500put('MATHEMATICAL_BOLD_SCRIPT_CAPITAL_W, 'codepoint, 0x1D4E6);
23501put('MATHEMATICAL_BOLD_SCRIPT_CAPITAL_X, 'codepoint, 0x1D4E7);
23502put('MATHEMATICAL_BOLD_SCRIPT_CAPITAL_Y, 'codepoint, 0x1D4E8);
23503put('MATHEMATICAL_BOLD_SCRIPT_CAPITAL_Z, 'codepoint, 0x1D4E9);
23504put('MATHEMATICAL_BOLD_SCRIPT_SMALL_A, 'codepoint, 0x1D4EA);
23505put('MATHEMATICAL_BOLD_SCRIPT_SMALL_B, 'codepoint, 0x1D4EB);
23506put('MATHEMATICAL_BOLD_SCRIPT_SMALL_C, 'codepoint, 0x1D4EC);
23507put('MATHEMATICAL_BOLD_SCRIPT_SMALL_D, 'codepoint, 0x1D4ED);
23508put('MATHEMATICAL_BOLD_SCRIPT_SMALL_E, 'codepoint, 0x1D4EE);
23509put('MATHEMATICAL_BOLD_SCRIPT_SMALL_F, 'codepoint, 0x1D4EF);
23510put('MATHEMATICAL_BOLD_SCRIPT_SMALL_G, 'codepoint, 0x1D4F0);
23511put('MATHEMATICAL_BOLD_SCRIPT_SMALL_H, 'codepoint, 0x1D4F1);
23512put('MATHEMATICAL_BOLD_SCRIPT_SMALL_I, 'codepoint, 0x1D4F2);
23513put('MATHEMATICAL_BOLD_SCRIPT_SMALL_J, 'codepoint, 0x1D4F3);
23514put('MATHEMATICAL_BOLD_SCRIPT_SMALL_K, 'codepoint, 0x1D4F4);
23515put('MATHEMATICAL_BOLD_SCRIPT_SMALL_L, 'codepoint, 0x1D4F5);
23516put('MATHEMATICAL_BOLD_SCRIPT_SMALL_M, 'codepoint, 0x1D4F6);
23517put('MATHEMATICAL_BOLD_SCRIPT_SMALL_N, 'codepoint, 0x1D4F7);
23518put('MATHEMATICAL_BOLD_SCRIPT_SMALL_O, 'codepoint, 0x1D4F8);
23519put('MATHEMATICAL_BOLD_SCRIPT_SMALL_P, 'codepoint, 0x1D4F9);
23520put('MATHEMATICAL_BOLD_SCRIPT_SMALL_Q, 'codepoint, 0x1D4FA);
23521put('MATHEMATICAL_BOLD_SCRIPT_SMALL_R, 'codepoint, 0x1D4FB);
23522put('MATHEMATICAL_BOLD_SCRIPT_SMALL_S, 'codepoint, 0x1D4FC);
23523put('MATHEMATICAL_BOLD_SCRIPT_SMALL_T, 'codepoint, 0x1D4FD);
23524put('MATHEMATICAL_BOLD_SCRIPT_SMALL_U, 'codepoint, 0x1D4FE);
23525put('MATHEMATICAL_BOLD_SCRIPT_SMALL_V, 'codepoint, 0x1D4FF);
23526put('MATHEMATICAL_BOLD_SCRIPT_SMALL_W, 'codepoint, 0x1D500);
23527put('MATHEMATICAL_BOLD_SCRIPT_SMALL_X, 'codepoint, 0x1D501);
23528put('MATHEMATICAL_BOLD_SCRIPT_SMALL_Y, 'codepoint, 0x1D502);
23529put('MATHEMATICAL_BOLD_SCRIPT_SMALL_Z, 'codepoint, 0x1D503);
23530put('MATHEMATICAL_FRAKTUR_CAPITAL_A, 'codepoint, 0x1D504);
23531put('MATHEMATICAL_FRAKTUR_CAPITAL_B, 'codepoint, 0x1D505);
23532put('MATHEMATICAL_FRAKTUR_CAPITAL_D, 'codepoint, 0x1D507);
23533put('MATHEMATICAL_FRAKTUR_CAPITAL_E, 'codepoint, 0x1D508);
23534put('MATHEMATICAL_FRAKTUR_CAPITAL_F, 'codepoint, 0x1D509);
23535put('MATHEMATICAL_FRAKTUR_CAPITAL_G, 'codepoint, 0x1D50A);
23536put('MATHEMATICAL_FRAKTUR_CAPITAL_J, 'codepoint, 0x1D50D);
23537put('MATHEMATICAL_FRAKTUR_CAPITAL_K, 'codepoint, 0x1D50E);
23538put('MATHEMATICAL_FRAKTUR_CAPITAL_L, 'codepoint, 0x1D50F);
23539put('MATHEMATICAL_FRAKTUR_CAPITAL_M, 'codepoint, 0x1D510);
23540put('MATHEMATICAL_FRAKTUR_CAPITAL_N, 'codepoint, 0x1D511);
23541put('MATHEMATICAL_FRAKTUR_CAPITAL_O, 'codepoint, 0x1D512);
23542put('MATHEMATICAL_FRAKTUR_CAPITAL_P, 'codepoint, 0x1D513);
23543put('MATHEMATICAL_FRAKTUR_CAPITAL_Q, 'codepoint, 0x1D514);
23544put('MATHEMATICAL_FRAKTUR_CAPITAL_S, 'codepoint, 0x1D516);
23545put('MATHEMATICAL_FRAKTUR_CAPITAL_T, 'codepoint, 0x1D517);
23546put('MATHEMATICAL_FRAKTUR_CAPITAL_U, 'codepoint, 0x1D518);
23547put('MATHEMATICAL_FRAKTUR_CAPITAL_V, 'codepoint, 0x1D519);
23548put('MATHEMATICAL_FRAKTUR_CAPITAL_W, 'codepoint, 0x1D51A);
23549put('MATHEMATICAL_FRAKTUR_CAPITAL_X, 'codepoint, 0x1D51B);
23550put('MATHEMATICAL_FRAKTUR_CAPITAL_Y, 'codepoint, 0x1D51C);
23551put('MATHEMATICAL_FRAKTUR_SMALL_A, 'codepoint, 0x1D51E);
23552put('MATHEMATICAL_FRAKTUR_SMALL_B, 'codepoint, 0x1D51F);
23553put('MATHEMATICAL_FRAKTUR_SMALL_C, 'codepoint, 0x1D520);
23554put('MATHEMATICAL_FRAKTUR_SMALL_D, 'codepoint, 0x1D521);
23555put('MATHEMATICAL_FRAKTUR_SMALL_E, 'codepoint, 0x1D522);
23556put('MATHEMATICAL_FRAKTUR_SMALL_F, 'codepoint, 0x1D523);
23557put('MATHEMATICAL_FRAKTUR_SMALL_G, 'codepoint, 0x1D524);
23558put('MATHEMATICAL_FRAKTUR_SMALL_H, 'codepoint, 0x1D525);
23559put('MATHEMATICAL_FRAKTUR_SMALL_I, 'codepoint, 0x1D526);
23560put('MATHEMATICAL_FRAKTUR_SMALL_J, 'codepoint, 0x1D527);
23561put('MATHEMATICAL_FRAKTUR_SMALL_K, 'codepoint, 0x1D528);
23562put('MATHEMATICAL_FRAKTUR_SMALL_L, 'codepoint, 0x1D529);
23563put('MATHEMATICAL_FRAKTUR_SMALL_M, 'codepoint, 0x1D52A);
23564put('MATHEMATICAL_FRAKTUR_SMALL_N, 'codepoint, 0x1D52B);
23565put('MATHEMATICAL_FRAKTUR_SMALL_O, 'codepoint, 0x1D52C);
23566put('MATHEMATICAL_FRAKTUR_SMALL_P, 'codepoint, 0x1D52D);
23567put('MATHEMATICAL_FRAKTUR_SMALL_Q, 'codepoint, 0x1D52E);
23568put('MATHEMATICAL_FRAKTUR_SMALL_R, 'codepoint, 0x1D52F);
23569put('MATHEMATICAL_FRAKTUR_SMALL_S, 'codepoint, 0x1D530);
23570put('MATHEMATICAL_FRAKTUR_SMALL_T, 'codepoint, 0x1D531);
23571put('MATHEMATICAL_FRAKTUR_SMALL_U, 'codepoint, 0x1D532);
23572put('MATHEMATICAL_FRAKTUR_SMALL_V, 'codepoint, 0x1D533);
23573put('MATHEMATICAL_FRAKTUR_SMALL_W, 'codepoint, 0x1D534);
23574put('MATHEMATICAL_FRAKTUR_SMALL_X, 'codepoint, 0x1D535);
23575put('MATHEMATICAL_FRAKTUR_SMALL_Y, 'codepoint, 0x1D536);
23576put('MATHEMATICAL_FRAKTUR_SMALL_Z, 'codepoint, 0x1D537);
23577put('MATHEMATICAL_DOUBLE_STRUCK_CAPITAL_A, 'codepoint, 0x1D538);
23578put('MATHEMATICAL_DOUBLE_STRUCK_CAPITAL_B, 'codepoint, 0x1D539);
23579put('MATHEMATICAL_DOUBLE_STRUCK_CAPITAL_D, 'codepoint, 0x1D53B);
23580put('MATHEMATICAL_DOUBLE_STRUCK_CAPITAL_E, 'codepoint, 0x1D53C);
23581put('MATHEMATICAL_DOUBLE_STRUCK_CAPITAL_F, 'codepoint, 0x1D53D);
23582put('MATHEMATICAL_DOUBLE_STRUCK_CAPITAL_G, 'codepoint, 0x1D53E);
23583put('MATHEMATICAL_DOUBLE_STRUCK_CAPITAL_I, 'codepoint, 0x1D540);
23584put('MATHEMATICAL_DOUBLE_STRUCK_CAPITAL_J, 'codepoint, 0x1D541);
23585put('MATHEMATICAL_DOUBLE_STRUCK_CAPITAL_K, 'codepoint, 0x1D542);
23586put('MATHEMATICAL_DOUBLE_STRUCK_CAPITAL_L, 'codepoint, 0x1D543);
23587put('MATHEMATICAL_DOUBLE_STRUCK_CAPITAL_M, 'codepoint, 0x1D544);
23588put('MATHEMATICAL_DOUBLE_STRUCK_CAPITAL_O, 'codepoint, 0x1D546);
23589put('MATHEMATICAL_DOUBLE_STRUCK_CAPITAL_S, 'codepoint, 0x1D54A);
23590put('MATHEMATICAL_DOUBLE_STRUCK_CAPITAL_T, 'codepoint, 0x1D54B);
23591put('MATHEMATICAL_DOUBLE_STRUCK_CAPITAL_U, 'codepoint, 0x1D54C);
23592put('MATHEMATICAL_DOUBLE_STRUCK_CAPITAL_V, 'codepoint, 0x1D54D);
23593put('MATHEMATICAL_DOUBLE_STRUCK_CAPITAL_W, 'codepoint, 0x1D54E);
23594put('MATHEMATICAL_DOUBLE_STRUCK_CAPITAL_X, 'codepoint, 0x1D54F);
23595put('MATHEMATICAL_DOUBLE_STRUCK_CAPITAL_Y, 'codepoint, 0x1D550);
23596put('MATHEMATICAL_DOUBLE_STRUCK_SMALL_A, 'codepoint, 0x1D552);
23597put('MATHEMATICAL_DOUBLE_STRUCK_SMALL_B, 'codepoint, 0x1D553);
23598put('MATHEMATICAL_DOUBLE_STRUCK_SMALL_C, 'codepoint, 0x1D554);
23599put('MATHEMATICAL_DOUBLE_STRUCK_SMALL_D, 'codepoint, 0x1D555);
23600put('MATHEMATICAL_DOUBLE_STRUCK_SMALL_E, 'codepoint, 0x1D556);
23601put('MATHEMATICAL_DOUBLE_STRUCK_SMALL_F, 'codepoint, 0x1D557);
23602put('MATHEMATICAL_DOUBLE_STRUCK_SMALL_G, 'codepoint, 0x1D558);
23603put('MATHEMATICAL_DOUBLE_STRUCK_SMALL_H, 'codepoint, 0x1D559);
23604put('MATHEMATICAL_DOUBLE_STRUCK_SMALL_I, 'codepoint, 0x1D55A);
23605put('MATHEMATICAL_DOUBLE_STRUCK_SMALL_J, 'codepoint, 0x1D55B);
23606put('MATHEMATICAL_DOUBLE_STRUCK_SMALL_K, 'codepoint, 0x1D55C);
23607put('MATHEMATICAL_DOUBLE_STRUCK_SMALL_L, 'codepoint, 0x1D55D);
23608put('MATHEMATICAL_DOUBLE_STRUCK_SMALL_M, 'codepoint, 0x1D55E);
23609put('MATHEMATICAL_DOUBLE_STRUCK_SMALL_N, 'codepoint, 0x1D55F);
23610put('MATHEMATICAL_DOUBLE_STRUCK_SMALL_O, 'codepoint, 0x1D560);
23611put('MATHEMATICAL_DOUBLE_STRUCK_SMALL_P, 'codepoint, 0x1D561);
23612put('MATHEMATICAL_DOUBLE_STRUCK_SMALL_Q, 'codepoint, 0x1D562);
23613put('MATHEMATICAL_DOUBLE_STRUCK_SMALL_R, 'codepoint, 0x1D563);
23614put('MATHEMATICAL_DOUBLE_STRUCK_SMALL_S, 'codepoint, 0x1D564);
23615put('MATHEMATICAL_DOUBLE_STRUCK_SMALL_T, 'codepoint, 0x1D565);
23616put('MATHEMATICAL_DOUBLE_STRUCK_SMALL_U, 'codepoint, 0x1D566);
23617put('MATHEMATICAL_DOUBLE_STRUCK_SMALL_V, 'codepoint, 0x1D567);
23618put('MATHEMATICAL_DOUBLE_STRUCK_SMALL_W, 'codepoint, 0x1D568);
23619put('MATHEMATICAL_DOUBLE_STRUCK_SMALL_X, 'codepoint, 0x1D569);
23620put('MATHEMATICAL_DOUBLE_STRUCK_SMALL_Y, 'codepoint, 0x1D56A);
23621put('MATHEMATICAL_DOUBLE_STRUCK_SMALL_Z, 'codepoint, 0x1D56B);
23622put('MATHEMATICAL_BOLD_FRAKTUR_CAPITAL_A, 'codepoint, 0x1D56C);
23623put('MATHEMATICAL_BOLD_FRAKTUR_CAPITAL_B, 'codepoint, 0x1D56D);
23624put('MATHEMATICAL_BOLD_FRAKTUR_CAPITAL_C, 'codepoint, 0x1D56E);
23625put('MATHEMATICAL_BOLD_FRAKTUR_CAPITAL_D, 'codepoint, 0x1D56F);
23626put('MATHEMATICAL_BOLD_FRAKTUR_CAPITAL_E, 'codepoint, 0x1D570);
23627put('MATHEMATICAL_BOLD_FRAKTUR_CAPITAL_F, 'codepoint, 0x1D571);
23628put('MATHEMATICAL_BOLD_FRAKTUR_CAPITAL_G, 'codepoint, 0x1D572);
23629put('MATHEMATICAL_BOLD_FRAKTUR_CAPITAL_H, 'codepoint, 0x1D573);
23630put('MATHEMATICAL_BOLD_FRAKTUR_CAPITAL_I, 'codepoint, 0x1D574);
23631put('MATHEMATICAL_BOLD_FRAKTUR_CAPITAL_J, 'codepoint, 0x1D575);
23632put('MATHEMATICAL_BOLD_FRAKTUR_CAPITAL_K, 'codepoint, 0x1D576);
23633put('MATHEMATICAL_BOLD_FRAKTUR_CAPITAL_L, 'codepoint, 0x1D577);
23634put('MATHEMATICAL_BOLD_FRAKTUR_CAPITAL_M, 'codepoint, 0x1D578);
23635put('MATHEMATICAL_BOLD_FRAKTUR_CAPITAL_N, 'codepoint, 0x1D579);
23636put('MATHEMATICAL_BOLD_FRAKTUR_CAPITAL_O, 'codepoint, 0x1D57A);
23637put('MATHEMATICAL_BOLD_FRAKTUR_CAPITAL_P, 'codepoint, 0x1D57B);
23638put('MATHEMATICAL_BOLD_FRAKTUR_CAPITAL_Q, 'codepoint, 0x1D57C);
23639put('MATHEMATICAL_BOLD_FRAKTUR_CAPITAL_R, 'codepoint, 0x1D57D);
23640put('MATHEMATICAL_BOLD_FRAKTUR_CAPITAL_S, 'codepoint, 0x1D57E);
23641put('MATHEMATICAL_BOLD_FRAKTUR_CAPITAL_T, 'codepoint, 0x1D57F);
23642put('MATHEMATICAL_BOLD_FRAKTUR_CAPITAL_U, 'codepoint, 0x1D580);
23643put('MATHEMATICAL_BOLD_FRAKTUR_CAPITAL_V, 'codepoint, 0x1D581);
23644put('MATHEMATICAL_BOLD_FRAKTUR_CAPITAL_W, 'codepoint, 0x1D582);
23645put('MATHEMATICAL_BOLD_FRAKTUR_CAPITAL_X, 'codepoint, 0x1D583);
23646put('MATHEMATICAL_BOLD_FRAKTUR_CAPITAL_Y, 'codepoint, 0x1D584);
23647put('MATHEMATICAL_BOLD_FRAKTUR_CAPITAL_Z, 'codepoint, 0x1D585);
23648put('MATHEMATICAL_BOLD_FRAKTUR_SMALL_A, 'codepoint, 0x1D586);
23649put('MATHEMATICAL_BOLD_FRAKTUR_SMALL_B, 'codepoint, 0x1D587);
23650put('MATHEMATICAL_BOLD_FRAKTUR_SMALL_C, 'codepoint, 0x1D588);
23651put('MATHEMATICAL_BOLD_FRAKTUR_SMALL_D, 'codepoint, 0x1D589);
23652put('MATHEMATICAL_BOLD_FRAKTUR_SMALL_E, 'codepoint, 0x1D58A);
23653put('MATHEMATICAL_BOLD_FRAKTUR_SMALL_F, 'codepoint, 0x1D58B);
23654put('MATHEMATICAL_BOLD_FRAKTUR_SMALL_G, 'codepoint, 0x1D58C);
23655put('MATHEMATICAL_BOLD_FRAKTUR_SMALL_H, 'codepoint, 0x1D58D);
23656put('MATHEMATICAL_BOLD_FRAKTUR_SMALL_I, 'codepoint, 0x1D58E);
23657put('MATHEMATICAL_BOLD_FRAKTUR_SMALL_J, 'codepoint, 0x1D58F);
23658put('MATHEMATICAL_BOLD_FRAKTUR_SMALL_K, 'codepoint, 0x1D590);
23659put('MATHEMATICAL_BOLD_FRAKTUR_SMALL_L, 'codepoint, 0x1D591);
23660put('MATHEMATICAL_BOLD_FRAKTUR_SMALL_M, 'codepoint, 0x1D592);
23661put('MATHEMATICAL_BOLD_FRAKTUR_SMALL_N, 'codepoint, 0x1D593);
23662put('MATHEMATICAL_BOLD_FRAKTUR_SMALL_O, 'codepoint, 0x1D594);
23663put('MATHEMATICAL_BOLD_FRAKTUR_SMALL_P, 'codepoint, 0x1D595);
23664put('MATHEMATICAL_BOLD_FRAKTUR_SMALL_Q, 'codepoint, 0x1D596);
23665put('MATHEMATICAL_BOLD_FRAKTUR_SMALL_R, 'codepoint, 0x1D597);
23666put('MATHEMATICAL_BOLD_FRAKTUR_SMALL_S, 'codepoint, 0x1D598);
23667put('MATHEMATICAL_BOLD_FRAKTUR_SMALL_T, 'codepoint, 0x1D599);
23668put('MATHEMATICAL_BOLD_FRAKTUR_SMALL_U, 'codepoint, 0x1D59A);
23669put('MATHEMATICAL_BOLD_FRAKTUR_SMALL_V, 'codepoint, 0x1D59B);
23670put('MATHEMATICAL_BOLD_FRAKTUR_SMALL_W, 'codepoint, 0x1D59C);
23671put('MATHEMATICAL_BOLD_FRAKTUR_SMALL_X, 'codepoint, 0x1D59D);
23672put('MATHEMATICAL_BOLD_FRAKTUR_SMALL_Y, 'codepoint, 0x1D59E);
23673put('MATHEMATICAL_BOLD_FRAKTUR_SMALL_Z, 'codepoint, 0x1D59F);
23674put('MATHEMATICAL_SANS_SERIF_CAPITAL_A, 'codepoint, 0x1D5A0);
23675put('MATHEMATICAL_SANS_SERIF_CAPITAL_B, 'codepoint, 0x1D5A1);
23676put('MATHEMATICAL_SANS_SERIF_CAPITAL_C, 'codepoint, 0x1D5A2);
23677put('MATHEMATICAL_SANS_SERIF_CAPITAL_D, 'codepoint, 0x1D5A3);
23678put('MATHEMATICAL_SANS_SERIF_CAPITAL_E, 'codepoint, 0x1D5A4);
23679put('MATHEMATICAL_SANS_SERIF_CAPITAL_F, 'codepoint, 0x1D5A5);
23680put('MATHEMATICAL_SANS_SERIF_CAPITAL_G, 'codepoint, 0x1D5A6);
23681put('MATHEMATICAL_SANS_SERIF_CAPITAL_H, 'codepoint, 0x1D5A7);
23682put('MATHEMATICAL_SANS_SERIF_CAPITAL_I, 'codepoint, 0x1D5A8);
23683put('MATHEMATICAL_SANS_SERIF_CAPITAL_J, 'codepoint, 0x1D5A9);
23684put('MATHEMATICAL_SANS_SERIF_CAPITAL_K, 'codepoint, 0x1D5AA);
23685put('MATHEMATICAL_SANS_SERIF_CAPITAL_L, 'codepoint, 0x1D5AB);
23686put('MATHEMATICAL_SANS_SERIF_CAPITAL_M, 'codepoint, 0x1D5AC);
23687put('MATHEMATICAL_SANS_SERIF_CAPITAL_N, 'codepoint, 0x1D5AD);
23688put('MATHEMATICAL_SANS_SERIF_CAPITAL_O, 'codepoint, 0x1D5AE);
23689put('MATHEMATICAL_SANS_SERIF_CAPITAL_P, 'codepoint, 0x1D5AF);
23690put('MATHEMATICAL_SANS_SERIF_CAPITAL_Q, 'codepoint, 0x1D5B0);
23691put('MATHEMATICAL_SANS_SERIF_CAPITAL_R, 'codepoint, 0x1D5B1);
23692put('MATHEMATICAL_SANS_SERIF_CAPITAL_S, 'codepoint, 0x1D5B2);
23693put('MATHEMATICAL_SANS_SERIF_CAPITAL_T, 'codepoint, 0x1D5B3);
23694put('MATHEMATICAL_SANS_SERIF_CAPITAL_U, 'codepoint, 0x1D5B4);
23695put('MATHEMATICAL_SANS_SERIF_CAPITAL_V, 'codepoint, 0x1D5B5);
23696put('MATHEMATICAL_SANS_SERIF_CAPITAL_W, 'codepoint, 0x1D5B6);
23697put('MATHEMATICAL_SANS_SERIF_CAPITAL_X, 'codepoint, 0x1D5B7);
23698put('MATHEMATICAL_SANS_SERIF_CAPITAL_Y, 'codepoint, 0x1D5B8);
23699put('MATHEMATICAL_SANS_SERIF_CAPITAL_Z, 'codepoint, 0x1D5B9);
23700put('MATHEMATICAL_SANS_SERIF_SMALL_A, 'codepoint, 0x1D5BA);
23701put('MATHEMATICAL_SANS_SERIF_SMALL_B, 'codepoint, 0x1D5BB);
23702put('MATHEMATICAL_SANS_SERIF_SMALL_C, 'codepoint, 0x1D5BC);
23703put('MATHEMATICAL_SANS_SERIF_SMALL_D, 'codepoint, 0x1D5BD);
23704put('MATHEMATICAL_SANS_SERIF_SMALL_E, 'codepoint, 0x1D5BE);
23705put('MATHEMATICAL_SANS_SERIF_SMALL_F, 'codepoint, 0x1D5BF);
23706put('MATHEMATICAL_SANS_SERIF_SMALL_G, 'codepoint, 0x1D5C0);
23707put('MATHEMATICAL_SANS_SERIF_SMALL_H, 'codepoint, 0x1D5C1);
23708put('MATHEMATICAL_SANS_SERIF_SMALL_I, 'codepoint, 0x1D5C2);
23709put('MATHEMATICAL_SANS_SERIF_SMALL_J, 'codepoint, 0x1D5C3);
23710put('MATHEMATICAL_SANS_SERIF_SMALL_K, 'codepoint, 0x1D5C4);
23711put('MATHEMATICAL_SANS_SERIF_SMALL_L, 'codepoint, 0x1D5C5);
23712put('MATHEMATICAL_SANS_SERIF_SMALL_M, 'codepoint, 0x1D5C6);
23713put('MATHEMATICAL_SANS_SERIF_SMALL_N, 'codepoint, 0x1D5C7);
23714put('MATHEMATICAL_SANS_SERIF_SMALL_O, 'codepoint, 0x1D5C8);
23715put('MATHEMATICAL_SANS_SERIF_SMALL_P, 'codepoint, 0x1D5C9);
23716put('MATHEMATICAL_SANS_SERIF_SMALL_Q, 'codepoint, 0x1D5CA);
23717put('MATHEMATICAL_SANS_SERIF_SMALL_R, 'codepoint, 0x1D5CB);
23718put('MATHEMATICAL_SANS_SERIF_SMALL_S, 'codepoint, 0x1D5CC);
23719put('MATHEMATICAL_SANS_SERIF_SMALL_T, 'codepoint, 0x1D5CD);
23720put('MATHEMATICAL_SANS_SERIF_SMALL_U, 'codepoint, 0x1D5CE);
23721put('MATHEMATICAL_SANS_SERIF_SMALL_V, 'codepoint, 0x1D5CF);
23722put('MATHEMATICAL_SANS_SERIF_SMALL_W, 'codepoint, 0x1D5D0);
23723put('MATHEMATICAL_SANS_SERIF_SMALL_X, 'codepoint, 0x1D5D1);
23724put('MATHEMATICAL_SANS_SERIF_SMALL_Y, 'codepoint, 0x1D5D2);
23725put('MATHEMATICAL_SANS_SERIF_SMALL_Z, 'codepoint, 0x1D5D3);
23726put('MATHEMATICAL_SANS_SERIF_BOLD_CAPITAL_A, 'codepoint, 0x1D5D4);
23727put('MATHEMATICAL_SANS_SERIF_BOLD_CAPITAL_B, 'codepoint, 0x1D5D5);
23728put('MATHEMATICAL_SANS_SERIF_BOLD_CAPITAL_C, 'codepoint, 0x1D5D6);
23729put('MATHEMATICAL_SANS_SERIF_BOLD_CAPITAL_D, 'codepoint, 0x1D5D7);
23730put('MATHEMATICAL_SANS_SERIF_BOLD_CAPITAL_E, 'codepoint, 0x1D5D8);
23731put('MATHEMATICAL_SANS_SERIF_BOLD_CAPITAL_F, 'codepoint, 0x1D5D9);
23732put('MATHEMATICAL_SANS_SERIF_BOLD_CAPITAL_G, 'codepoint, 0x1D5DA);
23733put('MATHEMATICAL_SANS_SERIF_BOLD_CAPITAL_H, 'codepoint, 0x1D5DB);
23734put('MATHEMATICAL_SANS_SERIF_BOLD_CAPITAL_I, 'codepoint, 0x1D5DC);
23735put('MATHEMATICAL_SANS_SERIF_BOLD_CAPITAL_J, 'codepoint, 0x1D5DD);
23736put('MATHEMATICAL_SANS_SERIF_BOLD_CAPITAL_K, 'codepoint, 0x1D5DE);
23737put('MATHEMATICAL_SANS_SERIF_BOLD_CAPITAL_L, 'codepoint, 0x1D5DF);
23738put('MATHEMATICAL_SANS_SERIF_BOLD_CAPITAL_M, 'codepoint, 0x1D5E0);
23739put('MATHEMATICAL_SANS_SERIF_BOLD_CAPITAL_N, 'codepoint, 0x1D5E1);
23740put('MATHEMATICAL_SANS_SERIF_BOLD_CAPITAL_O, 'codepoint, 0x1D5E2);
23741put('MATHEMATICAL_SANS_SERIF_BOLD_CAPITAL_P, 'codepoint, 0x1D5E3);
23742put('MATHEMATICAL_SANS_SERIF_BOLD_CAPITAL_Q, 'codepoint, 0x1D5E4);
23743put('MATHEMATICAL_SANS_SERIF_BOLD_CAPITAL_R, 'codepoint, 0x1D5E5);
23744put('MATHEMATICAL_SANS_SERIF_BOLD_CAPITAL_S, 'codepoint, 0x1D5E6);
23745put('MATHEMATICAL_SANS_SERIF_BOLD_CAPITAL_T, 'codepoint, 0x1D5E7);
23746put('MATHEMATICAL_SANS_SERIF_BOLD_CAPITAL_U, 'codepoint, 0x1D5E8);
23747put('MATHEMATICAL_SANS_SERIF_BOLD_CAPITAL_V, 'codepoint, 0x1D5E9);
23748put('MATHEMATICAL_SANS_SERIF_BOLD_CAPITAL_W, 'codepoint, 0x1D5EA);
23749put('MATHEMATICAL_SANS_SERIF_BOLD_CAPITAL_X, 'codepoint, 0x1D5EB);
23750put('MATHEMATICAL_SANS_SERIF_BOLD_CAPITAL_Y, 'codepoint, 0x1D5EC);
23751put('MATHEMATICAL_SANS_SERIF_BOLD_CAPITAL_Z, 'codepoint, 0x1D5ED);
23752put('MATHEMATICAL_SANS_SERIF_BOLD_SMALL_A, 'codepoint, 0x1D5EE);
23753put('MATHEMATICAL_SANS_SERIF_BOLD_SMALL_B, 'codepoint, 0x1D5EF);
23754put('MATHEMATICAL_SANS_SERIF_BOLD_SMALL_C, 'codepoint, 0x1D5F0);
23755put('MATHEMATICAL_SANS_SERIF_BOLD_SMALL_D, 'codepoint, 0x1D5F1);
23756put('MATHEMATICAL_SANS_SERIF_BOLD_SMALL_E, 'codepoint, 0x1D5F2);
23757put('MATHEMATICAL_SANS_SERIF_BOLD_SMALL_F, 'codepoint, 0x1D5F3);
23758put('MATHEMATICAL_SANS_SERIF_BOLD_SMALL_G, 'codepoint, 0x1D5F4);
23759put('MATHEMATICAL_SANS_SERIF_BOLD_SMALL_H, 'codepoint, 0x1D5F5);
23760put('MATHEMATICAL_SANS_SERIF_BOLD_SMALL_I, 'codepoint, 0x1D5F6);
23761put('MATHEMATICAL_SANS_SERIF_BOLD_SMALL_J, 'codepoint, 0x1D5F7);
23762put('MATHEMATICAL_SANS_SERIF_BOLD_SMALL_K, 'codepoint, 0x1D5F8);
23763put('MATHEMATICAL_SANS_SERIF_BOLD_SMALL_L, 'codepoint, 0x1D5F9);
23764put('MATHEMATICAL_SANS_SERIF_BOLD_SMALL_M, 'codepoint, 0x1D5FA);
23765put('MATHEMATICAL_SANS_SERIF_BOLD_SMALL_N, 'codepoint, 0x1D5FB);
23766put('MATHEMATICAL_SANS_SERIF_BOLD_SMALL_O, 'codepoint, 0x1D5FC);
23767put('MATHEMATICAL_SANS_SERIF_BOLD_SMALL_P, 'codepoint, 0x1D5FD);
23768put('MATHEMATICAL_SANS_SERIF_BOLD_SMALL_Q, 'codepoint, 0x1D5FE);
23769put('MATHEMATICAL_SANS_SERIF_BOLD_SMALL_R, 'codepoint, 0x1D5FF);
23770put('MATHEMATICAL_SANS_SERIF_BOLD_SMALL_S, 'codepoint, 0x1D600);
23771put('MATHEMATICAL_SANS_SERIF_BOLD_SMALL_T, 'codepoint, 0x1D601);
23772put('MATHEMATICAL_SANS_SERIF_BOLD_SMALL_U, 'codepoint, 0x1D602);
23773put('MATHEMATICAL_SANS_SERIF_BOLD_SMALL_V, 'codepoint, 0x1D603);
23774put('MATHEMATICAL_SANS_SERIF_BOLD_SMALL_W, 'codepoint, 0x1D604);
23775put('MATHEMATICAL_SANS_SERIF_BOLD_SMALL_X, 'codepoint, 0x1D605);
23776put('MATHEMATICAL_SANS_SERIF_BOLD_SMALL_Y, 'codepoint, 0x1D606);
23777put('MATHEMATICAL_SANS_SERIF_BOLD_SMALL_Z, 'codepoint, 0x1D607);
23778put('MATHEMATICAL_SANS_SERIF_ITALIC_CAPITAL_A, 'codepoint, 0x1D608);
23779put('MATHEMATICAL_SANS_SERIF_ITALIC_CAPITAL_B, 'codepoint, 0x1D609);
23780put('MATHEMATICAL_SANS_SERIF_ITALIC_CAPITAL_C, 'codepoint, 0x1D60A);
23781put('MATHEMATICAL_SANS_SERIF_ITALIC_CAPITAL_D, 'codepoint, 0x1D60B);
23782put('MATHEMATICAL_SANS_SERIF_ITALIC_CAPITAL_E, 'codepoint, 0x1D60C);
23783put('MATHEMATICAL_SANS_SERIF_ITALIC_CAPITAL_F, 'codepoint, 0x1D60D);
23784put('MATHEMATICAL_SANS_SERIF_ITALIC_CAPITAL_G, 'codepoint, 0x1D60E);
23785put('MATHEMATICAL_SANS_SERIF_ITALIC_CAPITAL_H, 'codepoint, 0x1D60F);
23786put('MATHEMATICAL_SANS_SERIF_ITALIC_CAPITAL_I, 'codepoint, 0x1D610);
23787put('MATHEMATICAL_SANS_SERIF_ITALIC_CAPITAL_J, 'codepoint, 0x1D611);
23788put('MATHEMATICAL_SANS_SERIF_ITALIC_CAPITAL_K, 'codepoint, 0x1D612);
23789put('MATHEMATICAL_SANS_SERIF_ITALIC_CAPITAL_L, 'codepoint, 0x1D613);
23790put('MATHEMATICAL_SANS_SERIF_ITALIC_CAPITAL_M, 'codepoint, 0x1D614);
23791put('MATHEMATICAL_SANS_SERIF_ITALIC_CAPITAL_N, 'codepoint, 0x1D615);
23792put('MATHEMATICAL_SANS_SERIF_ITALIC_CAPITAL_O, 'codepoint, 0x1D616);
23793put('MATHEMATICAL_SANS_SERIF_ITALIC_CAPITAL_P, 'codepoint, 0x1D617);
23794put('MATHEMATICAL_SANS_SERIF_ITALIC_CAPITAL_Q, 'codepoint, 0x1D618);
23795put('MATHEMATICAL_SANS_SERIF_ITALIC_CAPITAL_R, 'codepoint, 0x1D619);
23796put('MATHEMATICAL_SANS_SERIF_ITALIC_CAPITAL_S, 'codepoint, 0x1D61A);
23797put('MATHEMATICAL_SANS_SERIF_ITALIC_CAPITAL_T, 'codepoint, 0x1D61B);
23798put('MATHEMATICAL_SANS_SERIF_ITALIC_CAPITAL_U, 'codepoint, 0x1D61C);
23799put('MATHEMATICAL_SANS_SERIF_ITALIC_CAPITAL_V, 'codepoint, 0x1D61D);
23800put('MATHEMATICAL_SANS_SERIF_ITALIC_CAPITAL_W, 'codepoint, 0x1D61E);
23801put('MATHEMATICAL_SANS_SERIF_ITALIC_CAPITAL_X, 'codepoint, 0x1D61F);
23802put('MATHEMATICAL_SANS_SERIF_ITALIC_CAPITAL_Y, 'codepoint, 0x1D620);
23803put('MATHEMATICAL_SANS_SERIF_ITALIC_CAPITAL_Z, 'codepoint, 0x1D621);
23804put('MATHEMATICAL_SANS_SERIF_ITALIC_SMALL_A, 'codepoint, 0x1D622);
23805put('MATHEMATICAL_SANS_SERIF_ITALIC_SMALL_B, 'codepoint, 0x1D623);
23806put('MATHEMATICAL_SANS_SERIF_ITALIC_SMALL_C, 'codepoint, 0x1D624);
23807put('MATHEMATICAL_SANS_SERIF_ITALIC_SMALL_D, 'codepoint, 0x1D625);
23808put('MATHEMATICAL_SANS_SERIF_ITALIC_SMALL_E, 'codepoint, 0x1D626);
23809put('MATHEMATICAL_SANS_SERIF_ITALIC_SMALL_F, 'codepoint, 0x1D627);
23810put('MATHEMATICAL_SANS_SERIF_ITALIC_SMALL_G, 'codepoint, 0x1D628);
23811put('MATHEMATICAL_SANS_SERIF_ITALIC_SMALL_H, 'codepoint, 0x1D629);
23812put('MATHEMATICAL_SANS_SERIF_ITALIC_SMALL_I, 'codepoint, 0x1D62A);
23813put('MATHEMATICAL_SANS_SERIF_ITALIC_SMALL_J, 'codepoint, 0x1D62B);
23814put('MATHEMATICAL_SANS_SERIF_ITALIC_SMALL_K, 'codepoint, 0x1D62C);
23815put('MATHEMATICAL_SANS_SERIF_ITALIC_SMALL_L, 'codepoint, 0x1D62D);
23816put('MATHEMATICAL_SANS_SERIF_ITALIC_SMALL_M, 'codepoint, 0x1D62E);
23817put('MATHEMATICAL_SANS_SERIF_ITALIC_SMALL_N, 'codepoint, 0x1D62F);
23818put('MATHEMATICAL_SANS_SERIF_ITALIC_SMALL_O, 'codepoint, 0x1D630);
23819put('MATHEMATICAL_SANS_SERIF_ITALIC_SMALL_P, 'codepoint, 0x1D631);
23820put('MATHEMATICAL_SANS_SERIF_ITALIC_SMALL_Q, 'codepoint, 0x1D632);
23821put('MATHEMATICAL_SANS_SERIF_ITALIC_SMALL_R, 'codepoint, 0x1D633);
23822put('MATHEMATICAL_SANS_SERIF_ITALIC_SMALL_S, 'codepoint, 0x1D634);
23823put('MATHEMATICAL_SANS_SERIF_ITALIC_SMALL_T, 'codepoint, 0x1D635);
23824put('MATHEMATICAL_SANS_SERIF_ITALIC_SMALL_U, 'codepoint, 0x1D636);
23825put('MATHEMATICAL_SANS_SERIF_ITALIC_SMALL_V, 'codepoint, 0x1D637);
23826put('MATHEMATICAL_SANS_SERIF_ITALIC_SMALL_W, 'codepoint, 0x1D638);
23827put('MATHEMATICAL_SANS_SERIF_ITALIC_SMALL_X, 'codepoint, 0x1D639);
23828put('MATHEMATICAL_SANS_SERIF_ITALIC_SMALL_Y, 'codepoint, 0x1D63A);
23829put('MATHEMATICAL_SANS_SERIF_ITALIC_SMALL_Z, 'codepoint, 0x1D63B);
23830put('MATHEMATICAL_SANS_SERIF_BOLD_ITALIC_CAPITAL_A, 'codepoint, 0x1D63C);
23831put('MATHEMATICAL_SANS_SERIF_BOLD_ITALIC_CAPITAL_B, 'codepoint, 0x1D63D);
23832put('MATHEMATICAL_SANS_SERIF_BOLD_ITALIC_CAPITAL_C, 'codepoint, 0x1D63E);
23833put('MATHEMATICAL_SANS_SERIF_BOLD_ITALIC_CAPITAL_D, 'codepoint, 0x1D63F);
23834put('MATHEMATICAL_SANS_SERIF_BOLD_ITALIC_CAPITAL_E, 'codepoint, 0x1D640);
23835put('MATHEMATICAL_SANS_SERIF_BOLD_ITALIC_CAPITAL_F, 'codepoint, 0x1D641);
23836put('MATHEMATICAL_SANS_SERIF_BOLD_ITALIC_CAPITAL_G, 'codepoint, 0x1D642);
23837put('MATHEMATICAL_SANS_SERIF_BOLD_ITALIC_CAPITAL_H, 'codepoint, 0x1D643);
23838put('MATHEMATICAL_SANS_SERIF_BOLD_ITALIC_CAPITAL_I, 'codepoint, 0x1D644);
23839put('MATHEMATICAL_SANS_SERIF_BOLD_ITALIC_CAPITAL_J, 'codepoint, 0x1D645);
23840put('MATHEMATICAL_SANS_SERIF_BOLD_ITALIC_CAPITAL_K, 'codepoint, 0x1D646);
23841put('MATHEMATICAL_SANS_SERIF_BOLD_ITALIC_CAPITAL_L, 'codepoint, 0x1D647);
23842put('MATHEMATICAL_SANS_SERIF_BOLD_ITALIC_CAPITAL_M, 'codepoint, 0x1D648);
23843put('MATHEMATICAL_SANS_SERIF_BOLD_ITALIC_CAPITAL_N, 'codepoint, 0x1D649);
23844put('MATHEMATICAL_SANS_SERIF_BOLD_ITALIC_CAPITAL_O, 'codepoint, 0x1D64A);
23845put('MATHEMATICAL_SANS_SERIF_BOLD_ITALIC_CAPITAL_P, 'codepoint, 0x1D64B);
23846put('MATHEMATICAL_SANS_SERIF_BOLD_ITALIC_CAPITAL_Q, 'codepoint, 0x1D64C);
23847put('MATHEMATICAL_SANS_SERIF_BOLD_ITALIC_CAPITAL_R, 'codepoint, 0x1D64D);
23848put('MATHEMATICAL_SANS_SERIF_BOLD_ITALIC_CAPITAL_S, 'codepoint, 0x1D64E);
23849put('MATHEMATICAL_SANS_SERIF_BOLD_ITALIC_CAPITAL_T, 'codepoint, 0x1D64F);
23850put('MATHEMATICAL_SANS_SERIF_BOLD_ITALIC_CAPITAL_U, 'codepoint, 0x1D650);
23851put('MATHEMATICAL_SANS_SERIF_BOLD_ITALIC_CAPITAL_V, 'codepoint, 0x1D651);
23852put('MATHEMATICAL_SANS_SERIF_BOLD_ITALIC_CAPITAL_W, 'codepoint, 0x1D652);
23853put('MATHEMATICAL_SANS_SERIF_BOLD_ITALIC_CAPITAL_X, 'codepoint, 0x1D653);
23854put('MATHEMATICAL_SANS_SERIF_BOLD_ITALIC_CAPITAL_Y, 'codepoint, 0x1D654);
23855put('MATHEMATICAL_SANS_SERIF_BOLD_ITALIC_CAPITAL_Z, 'codepoint, 0x1D655);
23856put('MATHEMATICAL_SANS_SERIF_BOLD_ITALIC_SMALL_A, 'codepoint, 0x1D656);
23857put('MATHEMATICAL_SANS_SERIF_BOLD_ITALIC_SMALL_B, 'codepoint, 0x1D657);
23858put('MATHEMATICAL_SANS_SERIF_BOLD_ITALIC_SMALL_C, 'codepoint, 0x1D658);
23859put('MATHEMATICAL_SANS_SERIF_BOLD_ITALIC_SMALL_D, 'codepoint, 0x1D659);
23860put('MATHEMATICAL_SANS_SERIF_BOLD_ITALIC_SMALL_E, 'codepoint, 0x1D65A);
23861put('MATHEMATICAL_SANS_SERIF_BOLD_ITALIC_SMALL_F, 'codepoint, 0x1D65B);
23862put('MATHEMATICAL_SANS_SERIF_BOLD_ITALIC_SMALL_G, 'codepoint, 0x1D65C);
23863put('MATHEMATICAL_SANS_SERIF_BOLD_ITALIC_SMALL_H, 'codepoint, 0x1D65D);
23864put('MATHEMATICAL_SANS_SERIF_BOLD_ITALIC_SMALL_I, 'codepoint, 0x1D65E);
23865put('MATHEMATICAL_SANS_SERIF_BOLD_ITALIC_SMALL_J, 'codepoint, 0x1D65F);
23866put('MATHEMATICAL_SANS_SERIF_BOLD_ITALIC_SMALL_K, 'codepoint, 0x1D660);
23867put('MATHEMATICAL_SANS_SERIF_BOLD_ITALIC_SMALL_L, 'codepoint, 0x1D661);
23868put('MATHEMATICAL_SANS_SERIF_BOLD_ITALIC_SMALL_M, 'codepoint, 0x1D662);
23869put('MATHEMATICAL_SANS_SERIF_BOLD_ITALIC_SMALL_N, 'codepoint, 0x1D663);
23870put('MATHEMATICAL_SANS_SERIF_BOLD_ITALIC_SMALL_O, 'codepoint, 0x1D664);
23871put('MATHEMATICAL_SANS_SERIF_BOLD_ITALIC_SMALL_P, 'codepoint, 0x1D665);
23872put('MATHEMATICAL_SANS_SERIF_BOLD_ITALIC_SMALL_Q, 'codepoint, 0x1D666);
23873put('MATHEMATICAL_SANS_SERIF_BOLD_ITALIC_SMALL_R, 'codepoint, 0x1D667);
23874put('MATHEMATICAL_SANS_SERIF_BOLD_ITALIC_SMALL_S, 'codepoint, 0x1D668);
23875put('MATHEMATICAL_SANS_SERIF_BOLD_ITALIC_SMALL_T, 'codepoint, 0x1D669);
23876put('MATHEMATICAL_SANS_SERIF_BOLD_ITALIC_SMALL_U, 'codepoint, 0x1D66A);
23877put('MATHEMATICAL_SANS_SERIF_BOLD_ITALIC_SMALL_V, 'codepoint, 0x1D66B);
23878put('MATHEMATICAL_SANS_SERIF_BOLD_ITALIC_SMALL_W, 'codepoint, 0x1D66C);
23879put('MATHEMATICAL_SANS_SERIF_BOLD_ITALIC_SMALL_X, 'codepoint, 0x1D66D);
23880put('MATHEMATICAL_SANS_SERIF_BOLD_ITALIC_SMALL_Y, 'codepoint, 0x1D66E);
23881put('MATHEMATICAL_SANS_SERIF_BOLD_ITALIC_SMALL_Z, 'codepoint, 0x1D66F);
23882put('MATHEMATICAL_MONOSPACE_CAPITAL_A, 'codepoint, 0x1D670);
23883put('MATHEMATICAL_MONOSPACE_CAPITAL_B, 'codepoint, 0x1D671);
23884put('MATHEMATICAL_MONOSPACE_CAPITAL_C, 'codepoint, 0x1D672);
23885put('MATHEMATICAL_MONOSPACE_CAPITAL_D, 'codepoint, 0x1D673);
23886put('MATHEMATICAL_MONOSPACE_CAPITAL_E, 'codepoint, 0x1D674);
23887put('MATHEMATICAL_MONOSPACE_CAPITAL_F, 'codepoint, 0x1D675);
23888put('MATHEMATICAL_MONOSPACE_CAPITAL_G, 'codepoint, 0x1D676);
23889put('MATHEMATICAL_MONOSPACE_CAPITAL_H, 'codepoint, 0x1D677);
23890put('MATHEMATICAL_MONOSPACE_CAPITAL_I, 'codepoint, 0x1D678);
23891put('MATHEMATICAL_MONOSPACE_CAPITAL_J, 'codepoint, 0x1D679);
23892put('MATHEMATICAL_MONOSPACE_CAPITAL_K, 'codepoint, 0x1D67A);
23893put('MATHEMATICAL_MONOSPACE_CAPITAL_L, 'codepoint, 0x1D67B);
23894put('MATHEMATICAL_MONOSPACE_CAPITAL_M, 'codepoint, 0x1D67C);
23895put('MATHEMATICAL_MONOSPACE_CAPITAL_N, 'codepoint, 0x1D67D);
23896put('MATHEMATICAL_MONOSPACE_CAPITAL_O, 'codepoint, 0x1D67E);
23897put('MATHEMATICAL_MONOSPACE_CAPITAL_P, 'codepoint, 0x1D67F);
23898put('MATHEMATICAL_MONOSPACE_CAPITAL_Q, 'codepoint, 0x1D680);
23899put('MATHEMATICAL_MONOSPACE_CAPITAL_R, 'codepoint, 0x1D681);
23900put('MATHEMATICAL_MONOSPACE_CAPITAL_S, 'codepoint, 0x1D682);
23901put('MATHEMATICAL_MONOSPACE_CAPITAL_T, 'codepoint, 0x1D683);
23902put('MATHEMATICAL_MONOSPACE_CAPITAL_U, 'codepoint, 0x1D684);
23903put('MATHEMATICAL_MONOSPACE_CAPITAL_V, 'codepoint, 0x1D685);
23904put('MATHEMATICAL_MONOSPACE_CAPITAL_W, 'codepoint, 0x1D686);
23905put('MATHEMATICAL_MONOSPACE_CAPITAL_X, 'codepoint, 0x1D687);
23906put('MATHEMATICAL_MONOSPACE_CAPITAL_Y, 'codepoint, 0x1D688);
23907put('MATHEMATICAL_MONOSPACE_CAPITAL_Z, 'codepoint, 0x1D689);
23908put('MATHEMATICAL_MONOSPACE_SMALL_A, 'codepoint, 0x1D68A);
23909put('MATHEMATICAL_MONOSPACE_SMALL_B, 'codepoint, 0x1D68B);
23910put('MATHEMATICAL_MONOSPACE_SMALL_C, 'codepoint, 0x1D68C);
23911put('MATHEMATICAL_MONOSPACE_SMALL_D, 'codepoint, 0x1D68D);
23912put('MATHEMATICAL_MONOSPACE_SMALL_E, 'codepoint, 0x1D68E);
23913put('MATHEMATICAL_MONOSPACE_SMALL_F, 'codepoint, 0x1D68F);
23914put('MATHEMATICAL_MONOSPACE_SMALL_G, 'codepoint, 0x1D690);
23915put('MATHEMATICAL_MONOSPACE_SMALL_H, 'codepoint, 0x1D691);
23916put('MATHEMATICAL_MONOSPACE_SMALL_I, 'codepoint, 0x1D692);
23917put('MATHEMATICAL_MONOSPACE_SMALL_J, 'codepoint, 0x1D693);
23918put('MATHEMATICAL_MONOSPACE_SMALL_K, 'codepoint, 0x1D694);
23919put('MATHEMATICAL_MONOSPACE_SMALL_L, 'codepoint, 0x1D695);
23920put('MATHEMATICAL_MONOSPACE_SMALL_M, 'codepoint, 0x1D696);
23921put('MATHEMATICAL_MONOSPACE_SMALL_N, 'codepoint, 0x1D697);
23922put('MATHEMATICAL_MONOSPACE_SMALL_O, 'codepoint, 0x1D698);
23923put('MATHEMATICAL_MONOSPACE_SMALL_P, 'codepoint, 0x1D699);
23924put('MATHEMATICAL_MONOSPACE_SMALL_Q, 'codepoint, 0x1D69A);
23925put('MATHEMATICAL_MONOSPACE_SMALL_R, 'codepoint, 0x1D69B);
23926put('MATHEMATICAL_MONOSPACE_SMALL_S, 'codepoint, 0x1D69C);
23927put('MATHEMATICAL_MONOSPACE_SMALL_T, 'codepoint, 0x1D69D);
23928put('MATHEMATICAL_MONOSPACE_SMALL_U, 'codepoint, 0x1D69E);
23929put('MATHEMATICAL_MONOSPACE_SMALL_V, 'codepoint, 0x1D69F);
23930put('MATHEMATICAL_MONOSPACE_SMALL_W, 'codepoint, 0x1D6A0);
23931put('MATHEMATICAL_MONOSPACE_SMALL_X, 'codepoint, 0x1D6A1);
23932put('MATHEMATICAL_MONOSPACE_SMALL_Y, 'codepoint, 0x1D6A2);
23933put('MATHEMATICAL_MONOSPACE_SMALL_Z, 'codepoint, 0x1D6A3);
23934put('MATHEMATICAL_ITALIC_SMALL_DOTLESS_I, 'codepoint, 0x1D6A4);
23935put('MATHEMATICAL_ITALIC_SMALL_DOTLESS_J, 'codepoint, 0x1D6A5);
23936put('MATHEMATICAL_BOLD_CAPITAL_ALPHA, 'codepoint, 0x1D6A8);
23937put('MATHEMATICAL_BOLD_CAPITAL_BETA, 'codepoint, 0x1D6A9);
23938put('MATHEMATICAL_BOLD_CAPITAL_GAMMA, 'codepoint, 0x1D6AA);
23939put('MATHEMATICAL_BOLD_CAPITAL_DELTA, 'codepoint, 0x1D6AB);
23940put('MATHEMATICAL_BOLD_CAPITAL_EPSILON, 'codepoint, 0x1D6AC);
23941put('MATHEMATICAL_BOLD_CAPITAL_ZETA, 'codepoint, 0x1D6AD);
23942put('MATHEMATICAL_BOLD_CAPITAL_ETA, 'codepoint, 0x1D6AE);
23943put('MATHEMATICAL_BOLD_CAPITAL_THETA, 'codepoint, 0x1D6AF);
23944put('MATHEMATICAL_BOLD_CAPITAL_IOTA, 'codepoint, 0x1D6B0);
23945put('MATHEMATICAL_BOLD_CAPITAL_KAPPA, 'codepoint, 0x1D6B1);
23946put('MATHEMATICAL_BOLD_CAPITAL_LAMDA, 'codepoint, 0x1D6B2);
23947put('MATHEMATICAL_BOLD_CAPITAL_MU, 'codepoint, 0x1D6B3);
23948put('MATHEMATICAL_BOLD_CAPITAL_NU, 'codepoint, 0x1D6B4);
23949put('MATHEMATICAL_BOLD_CAPITAL_XI, 'codepoint, 0x1D6B5);
23950put('MATHEMATICAL_BOLD_CAPITAL_OMICRON, 'codepoint, 0x1D6B6);
23951put('MATHEMATICAL_BOLD_CAPITAL_PI, 'codepoint, 0x1D6B7);
23952put('MATHEMATICAL_BOLD_CAPITAL_RHO, 'codepoint, 0x1D6B8);
23953put('MATHEMATICAL_BOLD_CAPITAL_THETA_SYMBOL, 'codepoint, 0x1D6B9);
23954put('MATHEMATICAL_BOLD_CAPITAL_SIGMA, 'codepoint, 0x1D6BA);
23955put('MATHEMATICAL_BOLD_CAPITAL_TAU, 'codepoint, 0x1D6BB);
23956put('MATHEMATICAL_BOLD_CAPITAL_UPSILON, 'codepoint, 0x1D6BC);
23957put('MATHEMATICAL_BOLD_CAPITAL_PHI, 'codepoint, 0x1D6BD);
23958put('MATHEMATICAL_BOLD_CAPITAL_CHI, 'codepoint, 0x1D6BE);
23959put('MATHEMATICAL_BOLD_CAPITAL_PSI, 'codepoint, 0x1D6BF);
23960put('MATHEMATICAL_BOLD_CAPITAL_OMEGA, 'codepoint, 0x1D6C0);
23961put('MATHEMATICAL_BOLD_NABLA, 'codepoint, 0x1D6C1);
23962put('MATHEMATICAL_BOLD_SMALL_ALPHA, 'codepoint, 0x1D6C2);
23963put('MATHEMATICAL_BOLD_SMALL_BETA, 'codepoint, 0x1D6C3);
23964put('MATHEMATICAL_BOLD_SMALL_GAMMA, 'codepoint, 0x1D6C4);
23965put('MATHEMATICAL_BOLD_SMALL_DELTA, 'codepoint, 0x1D6C5);
23966put('MATHEMATICAL_BOLD_SMALL_EPSILON, 'codepoint, 0x1D6C6);
23967put('MATHEMATICAL_BOLD_SMALL_ZETA, 'codepoint, 0x1D6C7);
23968put('MATHEMATICAL_BOLD_SMALL_ETA, 'codepoint, 0x1D6C8);
23969put('MATHEMATICAL_BOLD_SMALL_THETA, 'codepoint, 0x1D6C9);
23970put('MATHEMATICAL_BOLD_SMALL_IOTA, 'codepoint, 0x1D6CA);
23971put('MATHEMATICAL_BOLD_SMALL_KAPPA, 'codepoint, 0x1D6CB);
23972put('MATHEMATICAL_BOLD_SMALL_LAMDA, 'codepoint, 0x1D6CC);
23973put('MATHEMATICAL_BOLD_SMALL_MU, 'codepoint, 0x1D6CD);
23974put('MATHEMATICAL_BOLD_SMALL_NU, 'codepoint, 0x1D6CE);
23975put('MATHEMATICAL_BOLD_SMALL_XI, 'codepoint, 0x1D6CF);
23976put('MATHEMATICAL_BOLD_SMALL_OMICRON, 'codepoint, 0x1D6D0);
23977put('MATHEMATICAL_BOLD_SMALL_PI, 'codepoint, 0x1D6D1);
23978put('MATHEMATICAL_BOLD_SMALL_RHO, 'codepoint, 0x1D6D2);
23979put('MATHEMATICAL_BOLD_SMALL_FINAL_SIGMA, 'codepoint, 0x1D6D3);
23980put('MATHEMATICAL_BOLD_SMALL_SIGMA, 'codepoint, 0x1D6D4);
23981put('MATHEMATICAL_BOLD_SMALL_TAU, 'codepoint, 0x1D6D5);
23982put('MATHEMATICAL_BOLD_SMALL_UPSILON, 'codepoint, 0x1D6D6);
23983put('MATHEMATICAL_BOLD_SMALL_PHI, 'codepoint, 0x1D6D7);
23984put('MATHEMATICAL_BOLD_SMALL_CHI, 'codepoint, 0x1D6D8);
23985put('MATHEMATICAL_BOLD_SMALL_PSI, 'codepoint, 0x1D6D9);
23986put('MATHEMATICAL_BOLD_SMALL_OMEGA, 'codepoint, 0x1D6DA);
23987put('MATHEMATICAL_BOLD_PARTIAL_DIFFERENTIAL, 'codepoint, 0x1D6DB);
23988put('MATHEMATICAL_BOLD_EPSILON_SYMBOL, 'codepoint, 0x1D6DC);
23989put('MATHEMATICAL_BOLD_THETA_SYMBOL, 'codepoint, 0x1D6DD);
23990put('MATHEMATICAL_BOLD_KAPPA_SYMBOL, 'codepoint, 0x1D6DE);
23991put('MATHEMATICAL_BOLD_PHI_SYMBOL, 'codepoint, 0x1D6DF);
23992put('MATHEMATICAL_BOLD_RHO_SYMBOL, 'codepoint, 0x1D6E0);
23993put('MATHEMATICAL_BOLD_PI_SYMBOL, 'codepoint, 0x1D6E1);
23994put('MATHEMATICAL_ITALIC_CAPITAL_ALPHA, 'codepoint, 0x1D6E2);
23995put('MATHEMATICAL_ITALIC_CAPITAL_BETA, 'codepoint, 0x1D6E3);
23996put('MATHEMATICAL_ITALIC_CAPITAL_GAMMA, 'codepoint, 0x1D6E4);
23997put('MATHEMATICAL_ITALIC_CAPITAL_DELTA, 'codepoint, 0x1D6E5);
23998put('MATHEMATICAL_ITALIC_CAPITAL_EPSILON, 'codepoint, 0x1D6E6);
23999put('MATHEMATICAL_ITALIC_CAPITAL_ZETA, 'codepoint, 0x1D6E7);
24000put('MATHEMATICAL_ITALIC_CAPITAL_ETA, 'codepoint, 0x1D6E8);
24001put('MATHEMATICAL_ITALIC_CAPITAL_THETA, 'codepoint, 0x1D6E9);
24002put('MATHEMATICAL_ITALIC_CAPITAL_IOTA, 'codepoint, 0x1D6EA);
24003put('MATHEMATICAL_ITALIC_CAPITAL_KAPPA, 'codepoint, 0x1D6EB);
24004put('MATHEMATICAL_ITALIC_CAPITAL_LAMDA, 'codepoint, 0x1D6EC);
24005put('MATHEMATICAL_ITALIC_CAPITAL_MU, 'codepoint, 0x1D6ED);
24006put('MATHEMATICAL_ITALIC_CAPITAL_NU, 'codepoint, 0x1D6EE);
24007put('MATHEMATICAL_ITALIC_CAPITAL_XI, 'codepoint, 0x1D6EF);
24008put('MATHEMATICAL_ITALIC_CAPITAL_OMICRON, 'codepoint, 0x1D6F0);
24009put('MATHEMATICAL_ITALIC_CAPITAL_PI, 'codepoint, 0x1D6F1);
24010put('MATHEMATICAL_ITALIC_CAPITAL_RHO, 'codepoint, 0x1D6F2);
24011put('MATHEMATICAL_ITALIC_CAPITAL_THETA_SYMBOL, 'codepoint, 0x1D6F3);
24012put('MATHEMATICAL_ITALIC_CAPITAL_SIGMA, 'codepoint, 0x1D6F4);
24013put('MATHEMATICAL_ITALIC_CAPITAL_TAU, 'codepoint, 0x1D6F5);
24014put('MATHEMATICAL_ITALIC_CAPITAL_UPSILON, 'codepoint, 0x1D6F6);
24015put('MATHEMATICAL_ITALIC_CAPITAL_PHI, 'codepoint, 0x1D6F7);
24016put('MATHEMATICAL_ITALIC_CAPITAL_CHI, 'codepoint, 0x1D6F8);
24017put('MATHEMATICAL_ITALIC_CAPITAL_PSI, 'codepoint, 0x1D6F9);
24018put('MATHEMATICAL_ITALIC_CAPITAL_OMEGA, 'codepoint, 0x1D6FA);
24019put('MATHEMATICAL_ITALIC_NABLA, 'codepoint, 0x1D6FB);
24020put('MATHEMATICAL_ITALIC_SMALL_ALPHA, 'codepoint, 0x1D6FC);
24021put('MATHEMATICAL_ITALIC_SMALL_BETA, 'codepoint, 0x1D6FD);
24022put('MATHEMATICAL_ITALIC_SMALL_GAMMA, 'codepoint, 0x1D6FE);
24023put('MATHEMATICAL_ITALIC_SMALL_DELTA, 'codepoint, 0x1D6FF);
24024put('MATHEMATICAL_ITALIC_SMALL_EPSILON, 'codepoint, 0x1D700);
24025put('MATHEMATICAL_ITALIC_SMALL_ZETA, 'codepoint, 0x1D701);
24026put('MATHEMATICAL_ITALIC_SMALL_ETA, 'codepoint, 0x1D702);
24027put('MATHEMATICAL_ITALIC_SMALL_THETA, 'codepoint, 0x1D703);
24028put('MATHEMATICAL_ITALIC_SMALL_IOTA, 'codepoint, 0x1D704);
24029put('MATHEMATICAL_ITALIC_SMALL_KAPPA, 'codepoint, 0x1D705);
24030put('MATHEMATICAL_ITALIC_SMALL_LAMDA, 'codepoint, 0x1D706);
24031put('MATHEMATICAL_ITALIC_SMALL_MU, 'codepoint, 0x1D707);
24032put('MATHEMATICAL_ITALIC_SMALL_NU, 'codepoint, 0x1D708);
24033put('MATHEMATICAL_ITALIC_SMALL_XI, 'codepoint, 0x1D709);
24034put('MATHEMATICAL_ITALIC_SMALL_OMICRON, 'codepoint, 0x1D70A);
24035put('MATHEMATICAL_ITALIC_SMALL_PI, 'codepoint, 0x1D70B);
24036put('MATHEMATICAL_ITALIC_SMALL_RHO, 'codepoint, 0x1D70C);
24037put('MATHEMATICAL_ITALIC_SMALL_FINAL_SIGMA, 'codepoint, 0x1D70D);
24038put('MATHEMATICAL_ITALIC_SMALL_SIGMA, 'codepoint, 0x1D70E);
24039put('MATHEMATICAL_ITALIC_SMALL_TAU, 'codepoint, 0x1D70F);
24040put('MATHEMATICAL_ITALIC_SMALL_UPSILON, 'codepoint, 0x1D710);
24041put('MATHEMATICAL_ITALIC_SMALL_PHI, 'codepoint, 0x1D711);
24042put('MATHEMATICAL_ITALIC_SMALL_CHI, 'codepoint, 0x1D712);
24043put('MATHEMATICAL_ITALIC_SMALL_PSI, 'codepoint, 0x1D713);
24044put('MATHEMATICAL_ITALIC_SMALL_OMEGA, 'codepoint, 0x1D714);
24045put('MATHEMATICAL_ITALIC_PARTIAL_DIFFERENTIAL, 'codepoint, 0x1D715);
24046put('MATHEMATICAL_ITALIC_EPSILON_SYMBOL, 'codepoint, 0x1D716);
24047put('MATHEMATICAL_ITALIC_THETA_SYMBOL, 'codepoint, 0x1D717);
24048put('MATHEMATICAL_ITALIC_KAPPA_SYMBOL, 'codepoint, 0x1D718);
24049put('MATHEMATICAL_ITALIC_PHI_SYMBOL, 'codepoint, 0x1D719);
24050put('MATHEMATICAL_ITALIC_RHO_SYMBOL, 'codepoint, 0x1D71A);
24051put('MATHEMATICAL_ITALIC_PI_SYMBOL, 'codepoint, 0x1D71B);
24052put('MATHEMATICAL_BOLD_ITALIC_CAPITAL_ALPHA, 'codepoint, 0x1D71C);
24053put('MATHEMATICAL_BOLD_ITALIC_CAPITAL_BETA, 'codepoint, 0x1D71D);
24054put('MATHEMATICAL_BOLD_ITALIC_CAPITAL_GAMMA, 'codepoint, 0x1D71E);
24055put('MATHEMATICAL_BOLD_ITALIC_CAPITAL_DELTA, 'codepoint, 0x1D71F);
24056put('MATHEMATICAL_BOLD_ITALIC_CAPITAL_EPSILON, 'codepoint, 0x1D720);
24057put('MATHEMATICAL_BOLD_ITALIC_CAPITAL_ZETA, 'codepoint, 0x1D721);
24058put('MATHEMATICAL_BOLD_ITALIC_CAPITAL_ETA, 'codepoint, 0x1D722);
24059put('MATHEMATICAL_BOLD_ITALIC_CAPITAL_THETA, 'codepoint, 0x1D723);
24060put('MATHEMATICAL_BOLD_ITALIC_CAPITAL_IOTA, 'codepoint, 0x1D724);
24061put('MATHEMATICAL_BOLD_ITALIC_CAPITAL_KAPPA, 'codepoint, 0x1D725);
24062put('MATHEMATICAL_BOLD_ITALIC_CAPITAL_LAMDA, 'codepoint, 0x1D726);
24063put('MATHEMATICAL_BOLD_ITALIC_CAPITAL_MU, 'codepoint, 0x1D727);
24064put('MATHEMATICAL_BOLD_ITALIC_CAPITAL_NU, 'codepoint, 0x1D728);
24065put('MATHEMATICAL_BOLD_ITALIC_CAPITAL_XI, 'codepoint, 0x1D729);
24066put('MATHEMATICAL_BOLD_ITALIC_CAPITAL_OMICRON, 'codepoint, 0x1D72A);
24067put('MATHEMATICAL_BOLD_ITALIC_CAPITAL_PI, 'codepoint, 0x1D72B);
24068put('MATHEMATICAL_BOLD_ITALIC_CAPITAL_RHO, 'codepoint, 0x1D72C);
24069put('MATHEMATICAL_BOLD_ITALIC_CAPITAL_THETA_SYMBOL, 'codepoint, 0x1D72D);
24070put('MATHEMATICAL_BOLD_ITALIC_CAPITAL_SIGMA, 'codepoint, 0x1D72E);
24071put('MATHEMATICAL_BOLD_ITALIC_CAPITAL_TAU, 'codepoint, 0x1D72F);
24072put('MATHEMATICAL_BOLD_ITALIC_CAPITAL_UPSILON, 'codepoint, 0x1D730);
24073put('MATHEMATICAL_BOLD_ITALIC_CAPITAL_PHI, 'codepoint, 0x1D731);
24074put('MATHEMATICAL_BOLD_ITALIC_CAPITAL_CHI, 'codepoint, 0x1D732);
24075put('MATHEMATICAL_BOLD_ITALIC_CAPITAL_PSI, 'codepoint, 0x1D733);
24076put('MATHEMATICAL_BOLD_ITALIC_CAPITAL_OMEGA, 'codepoint, 0x1D734);
24077put('MATHEMATICAL_BOLD_ITALIC_NABLA, 'codepoint, 0x1D735);
24078put('MATHEMATICAL_BOLD_ITALIC_SMALL_ALPHA, 'codepoint, 0x1D736);
24079put('MATHEMATICAL_BOLD_ITALIC_SMALL_BETA, 'codepoint, 0x1D737);
24080put('MATHEMATICAL_BOLD_ITALIC_SMALL_GAMMA, 'codepoint, 0x1D738);
24081put('MATHEMATICAL_BOLD_ITALIC_SMALL_DELTA, 'codepoint, 0x1D739);
24082put('MATHEMATICAL_BOLD_ITALIC_SMALL_EPSILON, 'codepoint, 0x1D73A);
24083put('MATHEMATICAL_BOLD_ITALIC_SMALL_ZETA, 'codepoint, 0x1D73B);
24084put('MATHEMATICAL_BOLD_ITALIC_SMALL_ETA, 'codepoint, 0x1D73C);
24085put('MATHEMATICAL_BOLD_ITALIC_SMALL_THETA, 'codepoint, 0x1D73D);
24086put('MATHEMATICAL_BOLD_ITALIC_SMALL_IOTA, 'codepoint, 0x1D73E);
24087put('MATHEMATICAL_BOLD_ITALIC_SMALL_KAPPA, 'codepoint, 0x1D73F);
24088put('MATHEMATICAL_BOLD_ITALIC_SMALL_LAMDA, 'codepoint, 0x1D740);
24089put('MATHEMATICAL_BOLD_ITALIC_SMALL_MU, 'codepoint, 0x1D741);
24090put('MATHEMATICAL_BOLD_ITALIC_SMALL_NU, 'codepoint, 0x1D742);
24091put('MATHEMATICAL_BOLD_ITALIC_SMALL_XI, 'codepoint, 0x1D743);
24092put('MATHEMATICAL_BOLD_ITALIC_SMALL_OMICRON, 'codepoint, 0x1D744);
24093put('MATHEMATICAL_BOLD_ITALIC_SMALL_PI, 'codepoint, 0x1D745);
24094put('MATHEMATICAL_BOLD_ITALIC_SMALL_RHO, 'codepoint, 0x1D746);
24095put('MATHEMATICAL_BOLD_ITALIC_SMALL_FINAL_SIGMA, 'codepoint, 0x1D747);
24096put('MATHEMATICAL_BOLD_ITALIC_SMALL_SIGMA, 'codepoint, 0x1D748);
24097put('MATHEMATICAL_BOLD_ITALIC_SMALL_TAU, 'codepoint, 0x1D749);
24098put('MATHEMATICAL_BOLD_ITALIC_SMALL_UPSILON, 'codepoint, 0x1D74A);
24099put('MATHEMATICAL_BOLD_ITALIC_SMALL_PHI, 'codepoint, 0x1D74B);
24100put('MATHEMATICAL_BOLD_ITALIC_SMALL_CHI, 'codepoint, 0x1D74C);
24101put('MATHEMATICAL_BOLD_ITALIC_SMALL_PSI, 'codepoint, 0x1D74D);
24102put('MATHEMATICAL_BOLD_ITALIC_SMALL_OMEGA, 'codepoint, 0x1D74E);
24103put('MATHEMATICAL_BOLD_ITALIC_PARTIAL_DIFFERENTIAL, 'codepoint, 0x1D74F);
24104put('MATHEMATICAL_BOLD_ITALIC_EPSILON_SYMBOL, 'codepoint, 0x1D750);
24105put('MATHEMATICAL_BOLD_ITALIC_THETA_SYMBOL, 'codepoint, 0x1D751);
24106put('MATHEMATICAL_BOLD_ITALIC_KAPPA_SYMBOL, 'codepoint, 0x1D752);
24107put('MATHEMATICAL_BOLD_ITALIC_PHI_SYMBOL, 'codepoint, 0x1D753);
24108put('MATHEMATICAL_BOLD_ITALIC_RHO_SYMBOL, 'codepoint, 0x1D754);
24109put('MATHEMATICAL_BOLD_ITALIC_PI_SYMBOL, 'codepoint, 0x1D755);
24110put('MATHEMATICAL_SANS_SERIF_BOLD_CAPITAL_ALPHA, 'codepoint, 0x1D756);
24111put('MATHEMATICAL_SANS_SERIF_BOLD_CAPITAL_BETA, 'codepoint, 0x1D757);
24112put('MATHEMATICAL_SANS_SERIF_BOLD_CAPITAL_GAMMA, 'codepoint, 0x1D758);
24113put('MATHEMATICAL_SANS_SERIF_BOLD_CAPITAL_DELTA, 'codepoint, 0x1D759);
24114put('MATHEMATICAL_SANS_SERIF_BOLD_CAPITAL_EPSILON, 'codepoint, 0x1D75A);
24115put('MATHEMATICAL_SANS_SERIF_BOLD_CAPITAL_ZETA, 'codepoint, 0x1D75B);
24116put('MATHEMATICAL_SANS_SERIF_BOLD_CAPITAL_ETA, 'codepoint, 0x1D75C);
24117put('MATHEMATICAL_SANS_SERIF_BOLD_CAPITAL_THETA, 'codepoint, 0x1D75D);
24118put('MATHEMATICAL_SANS_SERIF_BOLD_CAPITAL_IOTA, 'codepoint, 0x1D75E);
24119put('MATHEMATICAL_SANS_SERIF_BOLD_CAPITAL_KAPPA, 'codepoint, 0x1D75F);
24120put('MATHEMATICAL_SANS_SERIF_BOLD_CAPITAL_LAMDA, 'codepoint, 0x1D760);
24121put('MATHEMATICAL_SANS_SERIF_BOLD_CAPITAL_MU, 'codepoint, 0x1D761);
24122put('MATHEMATICAL_SANS_SERIF_BOLD_CAPITAL_NU, 'codepoint, 0x1D762);
24123put('MATHEMATICAL_SANS_SERIF_BOLD_CAPITAL_XI, 'codepoint, 0x1D763);
24124put('MATHEMATICAL_SANS_SERIF_BOLD_CAPITAL_OMICRON, 'codepoint, 0x1D764);
24125put('MATHEMATICAL_SANS_SERIF_BOLD_CAPITAL_PI, 'codepoint, 0x1D765);
24126put('MATHEMATICAL_SANS_SERIF_BOLD_CAPITAL_RHO, 'codepoint, 0x1D766);
24127put('MATHEMATICAL_SANS_SERIF_BOLD_CAPITAL_THETA_SYMBOL, 'codepoint, 0x1D767);
24128put('MATHEMATICAL_SANS_SERIF_BOLD_CAPITAL_SIGMA, 'codepoint, 0x1D768);
24129put('MATHEMATICAL_SANS_SERIF_BOLD_CAPITAL_TAU, 'codepoint, 0x1D769);
24130put('MATHEMATICAL_SANS_SERIF_BOLD_CAPITAL_UPSILON, 'codepoint, 0x1D76A);
24131put('MATHEMATICAL_SANS_SERIF_BOLD_CAPITAL_PHI, 'codepoint, 0x1D76B);
24132put('MATHEMATICAL_SANS_SERIF_BOLD_CAPITAL_CHI, 'codepoint, 0x1D76C);
24133put('MATHEMATICAL_SANS_SERIF_BOLD_CAPITAL_PSI, 'codepoint, 0x1D76D);
24134put('MATHEMATICAL_SANS_SERIF_BOLD_CAPITAL_OMEGA, 'codepoint, 0x1D76E);
24135put('MATHEMATICAL_SANS_SERIF_BOLD_NABLA, 'codepoint, 0x1D76F);
24136put('MATHEMATICAL_SANS_SERIF_BOLD_SMALL_ALPHA, 'codepoint, 0x1D770);
24137put('MATHEMATICAL_SANS_SERIF_BOLD_SMALL_BETA, 'codepoint, 0x1D771);
24138put('MATHEMATICAL_SANS_SERIF_BOLD_SMALL_GAMMA, 'codepoint, 0x1D772);
24139put('MATHEMATICAL_SANS_SERIF_BOLD_SMALL_DELTA, 'codepoint, 0x1D773);
24140put('MATHEMATICAL_SANS_SERIF_BOLD_SMALL_EPSILON, 'codepoint, 0x1D774);
24141put('MATHEMATICAL_SANS_SERIF_BOLD_SMALL_ZETA, 'codepoint, 0x1D775);
24142put('MATHEMATICAL_SANS_SERIF_BOLD_SMALL_ETA, 'codepoint, 0x1D776);
24143put('MATHEMATICAL_SANS_SERIF_BOLD_SMALL_THETA, 'codepoint, 0x1D777);
24144put('MATHEMATICAL_SANS_SERIF_BOLD_SMALL_IOTA, 'codepoint, 0x1D778);
24145put('MATHEMATICAL_SANS_SERIF_BOLD_SMALL_KAPPA, 'codepoint, 0x1D779);
24146put('MATHEMATICAL_SANS_SERIF_BOLD_SMALL_LAMDA, 'codepoint, 0x1D77A);
24147put('MATHEMATICAL_SANS_SERIF_BOLD_SMALL_MU, 'codepoint, 0x1D77B);
24148put('MATHEMATICAL_SANS_SERIF_BOLD_SMALL_NU, 'codepoint, 0x1D77C);
24149put('MATHEMATICAL_SANS_SERIF_BOLD_SMALL_XI, 'codepoint, 0x1D77D);
24150put('MATHEMATICAL_SANS_SERIF_BOLD_SMALL_OMICRON, 'codepoint, 0x1D77E);
24151put('MATHEMATICAL_SANS_SERIF_BOLD_SMALL_PI, 'codepoint, 0x1D77F);
24152put('MATHEMATICAL_SANS_SERIF_BOLD_SMALL_RHO, 'codepoint, 0x1D780);
24153put('MATHEMATICAL_SANS_SERIF_BOLD_SMALL_FINAL_SIGMA, 'codepoint, 0x1D781);
24154put('MATHEMATICAL_SANS_SERIF_BOLD_SMALL_SIGMA, 'codepoint, 0x1D782);
24155put('MATHEMATICAL_SANS_SERIF_BOLD_SMALL_TAU, 'codepoint, 0x1D783);
24156put('MATHEMATICAL_SANS_SERIF_BOLD_SMALL_UPSILON, 'codepoint, 0x1D784);
24157put('MATHEMATICAL_SANS_SERIF_BOLD_SMALL_PHI, 'codepoint, 0x1D785);
24158put('MATHEMATICAL_SANS_SERIF_BOLD_SMALL_CHI, 'codepoint, 0x1D786);
24159put('MATHEMATICAL_SANS_SERIF_BOLD_SMALL_PSI, 'codepoint, 0x1D787);
24160put('MATHEMATICAL_SANS_SERIF_BOLD_SMALL_OMEGA, 'codepoint, 0x1D788);
24161put('MATHEMATICAL_SANS_SERIF_BOLD_PARTIAL_DIFFERENTIAL, 'codepoint, 0x1D789);
24162put('MATHEMATICAL_SANS_SERIF_BOLD_EPSILON_SYMBOL, 'codepoint, 0x1D78A);
24163put('MATHEMATICAL_SANS_SERIF_BOLD_THETA_SYMBOL, 'codepoint, 0x1D78B);
24164put('MATHEMATICAL_SANS_SERIF_BOLD_KAPPA_SYMBOL, 'codepoint, 0x1D78C);
24165put('MATHEMATICAL_SANS_SERIF_BOLD_PHI_SYMBOL, 'codepoint, 0x1D78D);
24166put('MATHEMATICAL_SANS_SERIF_BOLD_RHO_SYMBOL, 'codepoint, 0x1D78E);
24167put('MATHEMATICAL_SANS_SERIF_BOLD_PI_SYMBOL, 'codepoint, 0x1D78F);
24168put('MATHEMATICAL_SANS_SERIF_BOLD_ITALIC_CAPITAL_ALPHA, 'codepoint, 0x1D790);
24169put('MATHEMATICAL_SANS_SERIF_BOLD_ITALIC_CAPITAL_BETA, 'codepoint, 0x1D791);
24170put('MATHEMATICAL_SANS_SERIF_BOLD_ITALIC_CAPITAL_GAMMA, 'codepoint, 0x1D792);
24171put('MATHEMATICAL_SANS_SERIF_BOLD_ITALIC_CAPITAL_DELTA, 'codepoint, 0x1D793);
24172put('MATHEMATICAL_SANS_SERIF_BOLD_ITALIC_CAPITAL_EPSILON, 'codepoint, 0x1D794);
24173put('MATHEMATICAL_SANS_SERIF_BOLD_ITALIC_CAPITAL_ZETA, 'codepoint, 0x1D795);
24174put('MATHEMATICAL_SANS_SERIF_BOLD_ITALIC_CAPITAL_ETA, 'codepoint, 0x1D796);
24175put('MATHEMATICAL_SANS_SERIF_BOLD_ITALIC_CAPITAL_THETA, 'codepoint, 0x1D797);
24176put('MATHEMATICAL_SANS_SERIF_BOLD_ITALIC_CAPITAL_IOTA, 'codepoint, 0x1D798);
24177put('MATHEMATICAL_SANS_SERIF_BOLD_ITALIC_CAPITAL_KAPPA, 'codepoint, 0x1D799);
24178put('MATHEMATICAL_SANS_SERIF_BOLD_ITALIC_CAPITAL_LAMDA, 'codepoint, 0x1D79A);
24179put('MATHEMATICAL_SANS_SERIF_BOLD_ITALIC_CAPITAL_MU, 'codepoint, 0x1D79B);
24180put('MATHEMATICAL_SANS_SERIF_BOLD_ITALIC_CAPITAL_NU, 'codepoint, 0x1D79C);
24181put('MATHEMATICAL_SANS_SERIF_BOLD_ITALIC_CAPITAL_XI, 'codepoint, 0x1D79D);
24182put('MATHEMATICAL_SANS_SERIF_BOLD_ITALIC_CAPITAL_OMICRON, 'codepoint, 0x1D79E);
24183put('MATHEMATICAL_SANS_SERIF_BOLD_ITALIC_CAPITAL_PI, 'codepoint, 0x1D79F);
24184put('MATHEMATICAL_SANS_SERIF_BOLD_ITALIC_CAPITAL_RHO, 'codepoint, 0x1D7A0);
24185put('MATHEMATICAL_SANS_SERIF_BOLD_ITALIC_CAPITAL_THETA_SYMBOL, 'codepoint, 0x1D7A1);
24186put('MATHEMATICAL_SANS_SERIF_BOLD_ITALIC_CAPITAL_SIGMA, 'codepoint, 0x1D7A2);
24187put('MATHEMATICAL_SANS_SERIF_BOLD_ITALIC_CAPITAL_TAU, 'codepoint, 0x1D7A3);
24188put('MATHEMATICAL_SANS_SERIF_BOLD_ITALIC_CAPITAL_UPSILON, 'codepoint, 0x1D7A4);
24189put('MATHEMATICAL_SANS_SERIF_BOLD_ITALIC_CAPITAL_PHI, 'codepoint, 0x1D7A5);
24190put('MATHEMATICAL_SANS_SERIF_BOLD_ITALIC_CAPITAL_CHI, 'codepoint, 0x1D7A6);
24191put('MATHEMATICAL_SANS_SERIF_BOLD_ITALIC_CAPITAL_PSI, 'codepoint, 0x1D7A7);
24192put('MATHEMATICAL_SANS_SERIF_BOLD_ITALIC_CAPITAL_OMEGA, 'codepoint, 0x1D7A8);
24193put('MATHEMATICAL_SANS_SERIF_BOLD_ITALIC_NABLA, 'codepoint, 0x1D7A9);
24194put('MATHEMATICAL_SANS_SERIF_BOLD_ITALIC_SMALL_ALPHA, 'codepoint, 0x1D7AA);
24195put('MATHEMATICAL_SANS_SERIF_BOLD_ITALIC_SMALL_BETA, 'codepoint, 0x1D7AB);
24196put('MATHEMATICAL_SANS_SERIF_BOLD_ITALIC_SMALL_GAMMA, 'codepoint, 0x1D7AC);
24197put('MATHEMATICAL_SANS_SERIF_BOLD_ITALIC_SMALL_DELTA, 'codepoint, 0x1D7AD);
24198put('MATHEMATICAL_SANS_SERIF_BOLD_ITALIC_SMALL_EPSILON, 'codepoint, 0x1D7AE);
24199put('MATHEMATICAL_SANS_SERIF_BOLD_ITALIC_SMALL_ZETA, 'codepoint, 0x1D7AF);
24200put('MATHEMATICAL_SANS_SERIF_BOLD_ITALIC_SMALL_ETA, 'codepoint, 0x1D7B0);
24201put('MATHEMATICAL_SANS_SERIF_BOLD_ITALIC_SMALL_THETA, 'codepoint, 0x1D7B1);
24202put('MATHEMATICAL_SANS_SERIF_BOLD_ITALIC_SMALL_IOTA, 'codepoint, 0x1D7B2);
24203put('MATHEMATICAL_SANS_SERIF_BOLD_ITALIC_SMALL_KAPPA, 'codepoint, 0x1D7B3);
24204put('MATHEMATICAL_SANS_SERIF_BOLD_ITALIC_SMALL_LAMDA, 'codepoint, 0x1D7B4);
24205put('MATHEMATICAL_SANS_SERIF_BOLD_ITALIC_SMALL_MU, 'codepoint, 0x1D7B5);
24206put('MATHEMATICAL_SANS_SERIF_BOLD_ITALIC_SMALL_NU, 'codepoint, 0x1D7B6);
24207put('MATHEMATICAL_SANS_SERIF_BOLD_ITALIC_SMALL_XI, 'codepoint, 0x1D7B7);
24208put('MATHEMATICAL_SANS_SERIF_BOLD_ITALIC_SMALL_OMICRON, 'codepoint, 0x1D7B8);
24209put('MATHEMATICAL_SANS_SERIF_BOLD_ITALIC_SMALL_PI, 'codepoint, 0x1D7B9);
24210put('MATHEMATICAL_SANS_SERIF_BOLD_ITALIC_SMALL_RHO, 'codepoint, 0x1D7BA);
24211put('MATHEMATICAL_SANS_SERIF_BOLD_ITALIC_SMALL_FINAL_SIGMA, 'codepoint, 0x1D7BB);
24212put('MATHEMATICAL_SANS_SERIF_BOLD_ITALIC_SMALL_SIGMA, 'codepoint, 0x1D7BC);
24213put('MATHEMATICAL_SANS_SERIF_BOLD_ITALIC_SMALL_TAU, 'codepoint, 0x1D7BD);
24214put('MATHEMATICAL_SANS_SERIF_BOLD_ITALIC_SMALL_UPSILON, 'codepoint, 0x1D7BE);
24215put('MATHEMATICAL_SANS_SERIF_BOLD_ITALIC_SMALL_PHI, 'codepoint, 0x1D7BF);
24216put('MATHEMATICAL_SANS_SERIF_BOLD_ITALIC_SMALL_CHI, 'codepoint, 0x1D7C0);
24217put('MATHEMATICAL_SANS_SERIF_BOLD_ITALIC_SMALL_PSI, 'codepoint, 0x1D7C1);
24218put('MATHEMATICAL_SANS_SERIF_BOLD_ITALIC_SMALL_OMEGA, 'codepoint, 0x1D7C2);
24219put('MATHEMATICAL_SANS_SERIF_BOLD_ITALIC_PARTIAL_DIFFERENTIAL, 'codepoint, 0x1D7C3);
24220put('MATHEMATICAL_SANS_SERIF_BOLD_ITALIC_EPSILON_SYMBOL, 'codepoint, 0x1D7C4);
24221put('MATHEMATICAL_SANS_SERIF_BOLD_ITALIC_THETA_SYMBOL, 'codepoint, 0x1D7C5);
24222put('MATHEMATICAL_SANS_SERIF_BOLD_ITALIC_KAPPA_SYMBOL, 'codepoint, 0x1D7C6);
24223put('MATHEMATICAL_SANS_SERIF_BOLD_ITALIC_PHI_SYMBOL, 'codepoint, 0x1D7C7);
24224put('MATHEMATICAL_SANS_SERIF_BOLD_ITALIC_RHO_SYMBOL, 'codepoint, 0x1D7C8);
24225put('MATHEMATICAL_SANS_SERIF_BOLD_ITALIC_PI_SYMBOL, 'codepoint, 0x1D7C9);
24226put('MATHEMATICAL_BOLD_CAPITAL_DIGAMMA, 'codepoint, 0x1D7CA);
24227put('MATHEMATICAL_BOLD_SMALL_DIGAMMA, 'codepoint, 0x1D7CB);
24228put('MATHEMATICAL_BOLD_DIGIT_ZERO, 'codepoint, 0x1D7CE);
24229put('MATHEMATICAL_BOLD_DIGIT_ONE, 'codepoint, 0x1D7CF);
24230put('MATHEMATICAL_BOLD_DIGIT_TWO, 'codepoint, 0x1D7D0);
24231put('MATHEMATICAL_BOLD_DIGIT_THREE, 'codepoint, 0x1D7D1);
24232put('MATHEMATICAL_BOLD_DIGIT_FOUR, 'codepoint, 0x1D7D2);
24233put('MATHEMATICAL_BOLD_DIGIT_FIVE, 'codepoint, 0x1D7D3);
24234put('MATHEMATICAL_BOLD_DIGIT_SIX, 'codepoint, 0x1D7D4);
24235put('MATHEMATICAL_BOLD_DIGIT_SEVEN, 'codepoint, 0x1D7D5);
24236put('MATHEMATICAL_BOLD_DIGIT_EIGHT, 'codepoint, 0x1D7D6);
24237put('MATHEMATICAL_BOLD_DIGIT_NINE, 'codepoint, 0x1D7D7);
24238put('MATHEMATICAL_DOUBLE_STRUCK_DIGIT_ZERO, 'codepoint, 0x1D7D8);
24239put('MATHEMATICAL_DOUBLE_STRUCK_DIGIT_ONE, 'codepoint, 0x1D7D9);
24240put('MATHEMATICAL_DOUBLE_STRUCK_DIGIT_TWO, 'codepoint, 0x1D7DA);
24241put('MATHEMATICAL_DOUBLE_STRUCK_DIGIT_THREE, 'codepoint, 0x1D7DB);
24242put('MATHEMATICAL_DOUBLE_STRUCK_DIGIT_FOUR, 'codepoint, 0x1D7DC);
24243put('MATHEMATICAL_DOUBLE_STRUCK_DIGIT_FIVE, 'codepoint, 0x1D7DD);
24244put('MATHEMATICAL_DOUBLE_STRUCK_DIGIT_SIX, 'codepoint, 0x1D7DE);
24245put('MATHEMATICAL_DOUBLE_STRUCK_DIGIT_SEVEN, 'codepoint, 0x1D7DF);
24246put('MATHEMATICAL_DOUBLE_STRUCK_DIGIT_EIGHT, 'codepoint, 0x1D7E0);
24247put('MATHEMATICAL_DOUBLE_STRUCK_DIGIT_NINE, 'codepoint, 0x1D7E1);
24248put('MATHEMATICAL_SANS_SERIF_DIGIT_ZERO, 'codepoint, 0x1D7E2);
24249put('MATHEMATICAL_SANS_SERIF_DIGIT_ONE, 'codepoint, 0x1D7E3);
24250put('MATHEMATICAL_SANS_SERIF_DIGIT_TWO, 'codepoint, 0x1D7E4);
24251put('MATHEMATICAL_SANS_SERIF_DIGIT_THREE, 'codepoint, 0x1D7E5);
24252put('MATHEMATICAL_SANS_SERIF_DIGIT_FOUR, 'codepoint, 0x1D7E6);
24253put('MATHEMATICAL_SANS_SERIF_DIGIT_FIVE, 'codepoint, 0x1D7E7);
24254put('MATHEMATICAL_SANS_SERIF_DIGIT_SIX, 'codepoint, 0x1D7E8);
24255put('MATHEMATICAL_SANS_SERIF_DIGIT_SEVEN, 'codepoint, 0x1D7E9);
24256put('MATHEMATICAL_SANS_SERIF_DIGIT_EIGHT, 'codepoint, 0x1D7EA);
24257put('MATHEMATICAL_SANS_SERIF_DIGIT_NINE, 'codepoint, 0x1D7EB);
24258put('MATHEMATICAL_SANS_SERIF_BOLD_DIGIT_ZERO, 'codepoint, 0x1D7EC);
24259put('MATHEMATICAL_SANS_SERIF_BOLD_DIGIT_ONE, 'codepoint, 0x1D7ED);
24260put('MATHEMATICAL_SANS_SERIF_BOLD_DIGIT_TWO, 'codepoint, 0x1D7EE);
24261put('MATHEMATICAL_SANS_SERIF_BOLD_DIGIT_THREE, 'codepoint, 0x1D7EF);
24262put('MATHEMATICAL_SANS_SERIF_BOLD_DIGIT_FOUR, 'codepoint, 0x1D7F0);
24263put('MATHEMATICAL_SANS_SERIF_BOLD_DIGIT_FIVE, 'codepoint, 0x1D7F1);
24264put('MATHEMATICAL_SANS_SERIF_BOLD_DIGIT_SIX, 'codepoint, 0x1D7F2);
24265put('MATHEMATICAL_SANS_SERIF_BOLD_DIGIT_SEVEN, 'codepoint, 0x1D7F3);
24266put('MATHEMATICAL_SANS_SERIF_BOLD_DIGIT_EIGHT, 'codepoint, 0x1D7F4);
24267put('MATHEMATICAL_SANS_SERIF_BOLD_DIGIT_NINE, 'codepoint, 0x1D7F5);
24268put('MATHEMATICAL_MONOSPACE_DIGIT_ZERO, 'codepoint, 0x1D7F6);
24269put('MATHEMATICAL_MONOSPACE_DIGIT_ONE, 'codepoint, 0x1D7F7);
24270put('MATHEMATICAL_MONOSPACE_DIGIT_TWO, 'codepoint, 0x1D7F8);
24271put('MATHEMATICAL_MONOSPACE_DIGIT_THREE, 'codepoint, 0x1D7F9);
24272put('MATHEMATICAL_MONOSPACE_DIGIT_FOUR, 'codepoint, 0x1D7FA);
24273put('MATHEMATICAL_MONOSPACE_DIGIT_FIVE, 'codepoint, 0x1D7FB);
24274put('MATHEMATICAL_MONOSPACE_DIGIT_SIX, 'codepoint, 0x1D7FC);
24275put('MATHEMATICAL_MONOSPACE_DIGIT_SEVEN, 'codepoint, 0x1D7FD);
24276put('MATHEMATICAL_MONOSPACE_DIGIT_EIGHT, 'codepoint, 0x1D7FE);
24277put('MATHEMATICAL_MONOSPACE_DIGIT_NINE, 'codepoint, 0x1D7FF);
24278put('MENDE_KIKAKUI_SYLLABLE_M001_KI, 'codepoint, 0x1E800);
24279put('MENDE_KIKAKUI_SYLLABLE_M002_KA, 'codepoint, 0x1E801);
24280put('MENDE_KIKAKUI_SYLLABLE_M003_KU, 'codepoint, 0x1E802);
24281put('MENDE_KIKAKUI_SYLLABLE_M065_KEE, 'codepoint, 0x1E803);
24282put('MENDE_KIKAKUI_SYLLABLE_M095_KE, 'codepoint, 0x1E804);
24283put('MENDE_KIKAKUI_SYLLABLE_M076_KOO, 'codepoint, 0x1E805);
24284put('MENDE_KIKAKUI_SYLLABLE_M048_KO, 'codepoint, 0x1E806);
24285put('MENDE_KIKAKUI_SYLLABLE_M179_KUA, 'codepoint, 0x1E807);
24286put('MENDE_KIKAKUI_SYLLABLE_M004_WI, 'codepoint, 0x1E808);
24287put('MENDE_KIKAKUI_SYLLABLE_M005_WA, 'codepoint, 0x1E809);
24288put('MENDE_KIKAKUI_SYLLABLE_M006_WU, 'codepoint, 0x1E80A);
24289put('MENDE_KIKAKUI_SYLLABLE_M126_WEE, 'codepoint, 0x1E80B);
24290put('MENDE_KIKAKUI_SYLLABLE_M118_WE, 'codepoint, 0x1E80C);
24291put('MENDE_KIKAKUI_SYLLABLE_M114_WOO, 'codepoint, 0x1E80D);
24292put('MENDE_KIKAKUI_SYLLABLE_M045_WO, 'codepoint, 0x1E80E);
24293put('MENDE_KIKAKUI_SYLLABLE_M194_WUI, 'codepoint, 0x1E80F);
24294put('MENDE_KIKAKUI_SYLLABLE_M143_WEI, 'codepoint, 0x1E810);
24295put('MENDE_KIKAKUI_SYLLABLE_M061_WVI, 'codepoint, 0x1E811);
24296put('MENDE_KIKAKUI_SYLLABLE_M049_WVA, 'codepoint, 0x1E812);
24297put('MENDE_KIKAKUI_SYLLABLE_M139_WVE, 'codepoint, 0x1E813);
24298put('MENDE_KIKAKUI_SYLLABLE_M007_MIN, 'codepoint, 0x1E814);
24299put('MENDE_KIKAKUI_SYLLABLE_M008_MAN, 'codepoint, 0x1E815);
24300put('MENDE_KIKAKUI_SYLLABLE_M009_MUN, 'codepoint, 0x1E816);
24301put('MENDE_KIKAKUI_SYLLABLE_M059_MEN, 'codepoint, 0x1E817);
24302put('MENDE_KIKAKUI_SYLLABLE_M094_MON, 'codepoint, 0x1E818);
24303put('MENDE_KIKAKUI_SYLLABLE_M154_MUAN, 'codepoint, 0x1E819);
24304put('MENDE_KIKAKUI_SYLLABLE_M189_MUEN, 'codepoint, 0x1E81A);
24305put('MENDE_KIKAKUI_SYLLABLE_M010_BI, 'codepoint, 0x1E81B);
24306put('MENDE_KIKAKUI_SYLLABLE_M011_BA, 'codepoint, 0x1E81C);
24307put('MENDE_KIKAKUI_SYLLABLE_M012_BU, 'codepoint, 0x1E81D);
24308put('MENDE_KIKAKUI_SYLLABLE_M150_BEE, 'codepoint, 0x1E81E);
24309put('MENDE_KIKAKUI_SYLLABLE_M097_BE, 'codepoint, 0x1E81F);
24310put('MENDE_KIKAKUI_SYLLABLE_M103_BOO, 'codepoint, 0x1E820);
24311put('MENDE_KIKAKUI_SYLLABLE_M138_BO, 'codepoint, 0x1E821);
24312put('MENDE_KIKAKUI_SYLLABLE_M013_I, 'codepoint, 0x1E822);
24313put('MENDE_KIKAKUI_SYLLABLE_M014_A, 'codepoint, 0x1E823);
24314put('MENDE_KIKAKUI_SYLLABLE_M015_U, 'codepoint, 0x1E824);
24315put('MENDE_KIKAKUI_SYLLABLE_M163_EE, 'codepoint, 0x1E825);
24316put('MENDE_KIKAKUI_SYLLABLE_M100_E, 'codepoint, 0x1E826);
24317put('MENDE_KIKAKUI_SYLLABLE_M165_OO, 'codepoint, 0x1E827);
24318put('MENDE_KIKAKUI_SYLLABLE_M147_O, 'codepoint, 0x1E828);
24319put('MENDE_KIKAKUI_SYLLABLE_M137_EI, 'codepoint, 0x1E829);
24320put('MENDE_KIKAKUI_SYLLABLE_M131_IN, 'codepoint, 0x1E82A);
24321put('MENDE_KIKAKUI_SYLLABLE_M135_IN, 'codepoint, 0x1E82B);
24322put('MENDE_KIKAKUI_SYLLABLE_M195_AN, 'codepoint, 0x1E82C);
24323put('MENDE_KIKAKUI_SYLLABLE_M178_EN, 'codepoint, 0x1E82D);
24324put('MENDE_KIKAKUI_SYLLABLE_M019_SI, 'codepoint, 0x1E82E);
24325put('MENDE_KIKAKUI_SYLLABLE_M020_SA, 'codepoint, 0x1E82F);
24326put('MENDE_KIKAKUI_SYLLABLE_M021_SU, 'codepoint, 0x1E830);
24327put('MENDE_KIKAKUI_SYLLABLE_M162_SEE, 'codepoint, 0x1E831);
24328put('MENDE_KIKAKUI_SYLLABLE_M116_SE, 'codepoint, 0x1E832);
24329put('MENDE_KIKAKUI_SYLLABLE_M136_SOO, 'codepoint, 0x1E833);
24330put('MENDE_KIKAKUI_SYLLABLE_M079_SO, 'codepoint, 0x1E834);
24331put('MENDE_KIKAKUI_SYLLABLE_M196_SIA, 'codepoint, 0x1E835);
24332put('MENDE_KIKAKUI_SYLLABLE_M025_LI, 'codepoint, 0x1E836);
24333put('MENDE_KIKAKUI_SYLLABLE_M026_LA, 'codepoint, 0x1E837);
24334put('MENDE_KIKAKUI_SYLLABLE_M027_LU, 'codepoint, 0x1E838);
24335put('MENDE_KIKAKUI_SYLLABLE_M084_LEE, 'codepoint, 0x1E839);
24336put('MENDE_KIKAKUI_SYLLABLE_M073_LE, 'codepoint, 0x1E83A);
24337put('MENDE_KIKAKUI_SYLLABLE_M054_LOO, 'codepoint, 0x1E83B);
24338put('MENDE_KIKAKUI_SYLLABLE_M153_LO, 'codepoint, 0x1E83C);
24339put('MENDE_KIKAKUI_SYLLABLE_M110_LONG_LE, 'codepoint, 0x1E83D);
24340put('MENDE_KIKAKUI_SYLLABLE_M016_DI, 'codepoint, 0x1E83E);
24341put('MENDE_KIKAKUI_SYLLABLE_M017_DA, 'codepoint, 0x1E83F);
24342put('MENDE_KIKAKUI_SYLLABLE_M018_DU, 'codepoint, 0x1E840);
24343put('MENDE_KIKAKUI_SYLLABLE_M089_DEE, 'codepoint, 0x1E841);
24344put('MENDE_KIKAKUI_SYLLABLE_M180_DOO, 'codepoint, 0x1E842);
24345put('MENDE_KIKAKUI_SYLLABLE_M181_DO, 'codepoint, 0x1E843);
24346put('MENDE_KIKAKUI_SYLLABLE_M022_TI, 'codepoint, 0x1E844);
24347put('MENDE_KIKAKUI_SYLLABLE_M023_TA, 'codepoint, 0x1E845);
24348put('MENDE_KIKAKUI_SYLLABLE_M024_TU, 'codepoint, 0x1E846);
24349put('MENDE_KIKAKUI_SYLLABLE_M091_TEE, 'codepoint, 0x1E847);
24350put('MENDE_KIKAKUI_SYLLABLE_M055_TE, 'codepoint, 0x1E848);
24351put('MENDE_KIKAKUI_SYLLABLE_M104_TOO, 'codepoint, 0x1E849);
24352put('MENDE_KIKAKUI_SYLLABLE_M069_TO, 'codepoint, 0x1E84A);
24353put('MENDE_KIKAKUI_SYLLABLE_M028_JI, 'codepoint, 0x1E84B);
24354put('MENDE_KIKAKUI_SYLLABLE_M029_JA, 'codepoint, 0x1E84C);
24355put('MENDE_KIKAKUI_SYLLABLE_M030_JU, 'codepoint, 0x1E84D);
24356put('MENDE_KIKAKUI_SYLLABLE_M157_JEE, 'codepoint, 0x1E84E);
24357put('MENDE_KIKAKUI_SYLLABLE_M113_JE, 'codepoint, 0x1E84F);
24358put('MENDE_KIKAKUI_SYLLABLE_M160_JOO, 'codepoint, 0x1E850);
24359put('MENDE_KIKAKUI_SYLLABLE_M063_JO, 'codepoint, 0x1E851);
24360put('MENDE_KIKAKUI_SYLLABLE_M175_LONG_JO, 'codepoint, 0x1E852);
24361put('MENDE_KIKAKUI_SYLLABLE_M031_YI, 'codepoint, 0x1E853);
24362put('MENDE_KIKAKUI_SYLLABLE_M032_YA, 'codepoint, 0x1E854);
24363put('MENDE_KIKAKUI_SYLLABLE_M033_YU, 'codepoint, 0x1E855);
24364put('MENDE_KIKAKUI_SYLLABLE_M109_YEE, 'codepoint, 0x1E856);
24365put('MENDE_KIKAKUI_SYLLABLE_M080_YE, 'codepoint, 0x1E857);
24366put('MENDE_KIKAKUI_SYLLABLE_M141_YOO, 'codepoint, 0x1E858);
24367put('MENDE_KIKAKUI_SYLLABLE_M121_YO, 'codepoint, 0x1E859);
24368put('MENDE_KIKAKUI_SYLLABLE_M034_FI, 'codepoint, 0x1E85A);
24369put('MENDE_KIKAKUI_SYLLABLE_M035_FA, 'codepoint, 0x1E85B);
24370put('MENDE_KIKAKUI_SYLLABLE_M036_FU, 'codepoint, 0x1E85C);
24371put('MENDE_KIKAKUI_SYLLABLE_M078_FEE, 'codepoint, 0x1E85D);
24372put('MENDE_KIKAKUI_SYLLABLE_M075_FE, 'codepoint, 0x1E85E);
24373put('MENDE_KIKAKUI_SYLLABLE_M133_FOO, 'codepoint, 0x1E85F);
24374put('MENDE_KIKAKUI_SYLLABLE_M088_FO, 'codepoint, 0x1E860);
24375put('MENDE_KIKAKUI_SYLLABLE_M197_FUA, 'codepoint, 0x1E861);
24376put('MENDE_KIKAKUI_SYLLABLE_M101_FAN, 'codepoint, 0x1E862);
24377put('MENDE_KIKAKUI_SYLLABLE_M037_NIN, 'codepoint, 0x1E863);
24378put('MENDE_KIKAKUI_SYLLABLE_M038_NAN, 'codepoint, 0x1E864);
24379put('MENDE_KIKAKUI_SYLLABLE_M039_NUN, 'codepoint, 0x1E865);
24380put('MENDE_KIKAKUI_SYLLABLE_M117_NEN, 'codepoint, 0x1E866);
24381put('MENDE_KIKAKUI_SYLLABLE_M169_NON, 'codepoint, 0x1E867);
24382put('MENDE_KIKAKUI_SYLLABLE_M176_HI, 'codepoint, 0x1E868);
24383put('MENDE_KIKAKUI_SYLLABLE_M041_HA, 'codepoint, 0x1E869);
24384put('MENDE_KIKAKUI_SYLLABLE_M186_HU, 'codepoint, 0x1E86A);
24385put('MENDE_KIKAKUI_SYLLABLE_M040_HEE, 'codepoint, 0x1E86B);
24386put('MENDE_KIKAKUI_SYLLABLE_M096_HE, 'codepoint, 0x1E86C);
24387put('MENDE_KIKAKUI_SYLLABLE_M042_HOO, 'codepoint, 0x1E86D);
24388put('MENDE_KIKAKUI_SYLLABLE_M140_HO, 'codepoint, 0x1E86E);
24389put('MENDE_KIKAKUI_SYLLABLE_M083_HEEI, 'codepoint, 0x1E86F);
24390put('MENDE_KIKAKUI_SYLLABLE_M128_HOOU, 'codepoint, 0x1E870);
24391put('MENDE_KIKAKUI_SYLLABLE_M053_HIN, 'codepoint, 0x1E871);
24392put('MENDE_KIKAKUI_SYLLABLE_M130_HAN, 'codepoint, 0x1E872);
24393put('MENDE_KIKAKUI_SYLLABLE_M087_HUN, 'codepoint, 0x1E873);
24394put('MENDE_KIKAKUI_SYLLABLE_M052_HEN, 'codepoint, 0x1E874);
24395put('MENDE_KIKAKUI_SYLLABLE_M193_HON, 'codepoint, 0x1E875);
24396put('MENDE_KIKAKUI_SYLLABLE_M046_HUAN, 'codepoint, 0x1E876);
24397put('MENDE_KIKAKUI_SYLLABLE_M090_NGGI, 'codepoint, 0x1E877);
24398put('MENDE_KIKAKUI_SYLLABLE_M043_NGGA, 'codepoint, 0x1E878);
24399put('MENDE_KIKAKUI_SYLLABLE_M082_NGGU, 'codepoint, 0x1E879);
24400put('MENDE_KIKAKUI_SYLLABLE_M115_NGGEE, 'codepoint, 0x1E87A);
24401put('MENDE_KIKAKUI_SYLLABLE_M146_NGGE, 'codepoint, 0x1E87B);
24402put('MENDE_KIKAKUI_SYLLABLE_M156_NGGOO, 'codepoint, 0x1E87C);
24403put('MENDE_KIKAKUI_SYLLABLE_M120_NGGO, 'codepoint, 0x1E87D);
24404put('MENDE_KIKAKUI_SYLLABLE_M159_NGGAA, 'codepoint, 0x1E87E);
24405put('MENDE_KIKAKUI_SYLLABLE_M127_NGGUA, 'codepoint, 0x1E87F);
24406put('MENDE_KIKAKUI_SYLLABLE_M086_LONG_NGGE, 'codepoint, 0x1E880);
24407put('MENDE_KIKAKUI_SYLLABLE_M106_LONG_NGGOO, 'codepoint, 0x1E881);
24408put('MENDE_KIKAKUI_SYLLABLE_M183_LONG_NGGO, 'codepoint, 0x1E882);
24409put('MENDE_KIKAKUI_SYLLABLE_M155_GI, 'codepoint, 0x1E883);
24410put('MENDE_KIKAKUI_SYLLABLE_M111_GA, 'codepoint, 0x1E884);
24411put('MENDE_KIKAKUI_SYLLABLE_M168_GU, 'codepoint, 0x1E885);
24412put('MENDE_KIKAKUI_SYLLABLE_M190_GEE, 'codepoint, 0x1E886);
24413put('MENDE_KIKAKUI_SYLLABLE_M166_GUEI, 'codepoint, 0x1E887);
24414put('MENDE_KIKAKUI_SYLLABLE_M167_GUAN, 'codepoint, 0x1E888);
24415put('MENDE_KIKAKUI_SYLLABLE_M184_NGEN, 'codepoint, 0x1E889);
24416put('MENDE_KIKAKUI_SYLLABLE_M057_NGON, 'codepoint, 0x1E88A);
24417put('MENDE_KIKAKUI_SYLLABLE_M177_NGUAN, 'codepoint, 0x1E88B);
24418put('MENDE_KIKAKUI_SYLLABLE_M068_PI, 'codepoint, 0x1E88C);
24419put('MENDE_KIKAKUI_SYLLABLE_M099_PA, 'codepoint, 0x1E88D);
24420put('MENDE_KIKAKUI_SYLLABLE_M050_PU, 'codepoint, 0x1E88E);
24421put('MENDE_KIKAKUI_SYLLABLE_M081_PEE, 'codepoint, 0x1E88F);
24422put('MENDE_KIKAKUI_SYLLABLE_M051_PE, 'codepoint, 0x1E890);
24423put('MENDE_KIKAKUI_SYLLABLE_M102_POO, 'codepoint, 0x1E891);
24424put('MENDE_KIKAKUI_SYLLABLE_M066_PO, 'codepoint, 0x1E892);
24425put('MENDE_KIKAKUI_SYLLABLE_M145_MBI, 'codepoint, 0x1E893);
24426put('MENDE_KIKAKUI_SYLLABLE_M062_MBA, 'codepoint, 0x1E894);
24427put('MENDE_KIKAKUI_SYLLABLE_M122_MBU, 'codepoint, 0x1E895);
24428put('MENDE_KIKAKUI_SYLLABLE_M047_MBEE, 'codepoint, 0x1E896);
24429put('MENDE_KIKAKUI_SYLLABLE_M188_MBEE, 'codepoint, 0x1E897);
24430put('MENDE_KIKAKUI_SYLLABLE_M072_MBE, 'codepoint, 0x1E898);
24431put('MENDE_KIKAKUI_SYLLABLE_M172_MBOO, 'codepoint, 0x1E899);
24432put('MENDE_KIKAKUI_SYLLABLE_M174_MBO, 'codepoint, 0x1E89A);
24433put('MENDE_KIKAKUI_SYLLABLE_M187_MBUU, 'codepoint, 0x1E89B);
24434put('MENDE_KIKAKUI_SYLLABLE_M161_LONG_MBE, 'codepoint, 0x1E89C);
24435put('MENDE_KIKAKUI_SYLLABLE_M105_LONG_MBOO, 'codepoint, 0x1E89D);
24436put('MENDE_KIKAKUI_SYLLABLE_M142_LONG_MBO, 'codepoint, 0x1E89E);
24437put('MENDE_KIKAKUI_SYLLABLE_M132_KPI, 'codepoint, 0x1E89F);
24438put('MENDE_KIKAKUI_SYLLABLE_M092_KPA, 'codepoint, 0x1E8A0);
24439put('MENDE_KIKAKUI_SYLLABLE_M074_KPU, 'codepoint, 0x1E8A1);
24440put('MENDE_KIKAKUI_SYLLABLE_M044_KPEE, 'codepoint, 0x1E8A2);
24441put('MENDE_KIKAKUI_SYLLABLE_M108_KPE, 'codepoint, 0x1E8A3);
24442put('MENDE_KIKAKUI_SYLLABLE_M112_KPOO, 'codepoint, 0x1E8A4);
24443put('MENDE_KIKAKUI_SYLLABLE_M158_KPO, 'codepoint, 0x1E8A5);
24444put('MENDE_KIKAKUI_SYLLABLE_M124_GBI, 'codepoint, 0x1E8A6);
24445put('MENDE_KIKAKUI_SYLLABLE_M056_GBA, 'codepoint, 0x1E8A7);
24446put('MENDE_KIKAKUI_SYLLABLE_M148_GBU, 'codepoint, 0x1E8A8);
24447put('MENDE_KIKAKUI_SYLLABLE_M093_GBEE, 'codepoint, 0x1E8A9);
24448put('MENDE_KIKAKUI_SYLLABLE_M107_GBE, 'codepoint, 0x1E8AA);
24449put('MENDE_KIKAKUI_SYLLABLE_M071_GBOO, 'codepoint, 0x1E8AB);
24450put('MENDE_KIKAKUI_SYLLABLE_M070_GBO, 'codepoint, 0x1E8AC);
24451put('MENDE_KIKAKUI_SYLLABLE_M171_RA, 'codepoint, 0x1E8AD);
24452put('MENDE_KIKAKUI_SYLLABLE_M123_NDI, 'codepoint, 0x1E8AE);
24453put('MENDE_KIKAKUI_SYLLABLE_M129_NDA, 'codepoint, 0x1E8AF);
24454put('MENDE_KIKAKUI_SYLLABLE_M125_NDU, 'codepoint, 0x1E8B0);
24455put('MENDE_KIKAKUI_SYLLABLE_M191_NDEE, 'codepoint, 0x1E8B1);
24456put('MENDE_KIKAKUI_SYLLABLE_M119_NDE, 'codepoint, 0x1E8B2);
24457put('MENDE_KIKAKUI_SYLLABLE_M067_NDOO, 'codepoint, 0x1E8B3);
24458put('MENDE_KIKAKUI_SYLLABLE_M064_NDO, 'codepoint, 0x1E8B4);
24459put('MENDE_KIKAKUI_SYLLABLE_M152_NJA, 'codepoint, 0x1E8B5);
24460put('MENDE_KIKAKUI_SYLLABLE_M192_NJU, 'codepoint, 0x1E8B6);
24461put('MENDE_KIKAKUI_SYLLABLE_M149_NJEE, 'codepoint, 0x1E8B7);
24462put('MENDE_KIKAKUI_SYLLABLE_M134_NJOO, 'codepoint, 0x1E8B8);
24463put('MENDE_KIKAKUI_SYLLABLE_M182_VI, 'codepoint, 0x1E8B9);
24464put('MENDE_KIKAKUI_SYLLABLE_M185_VA, 'codepoint, 0x1E8BA);
24465put('MENDE_KIKAKUI_SYLLABLE_M151_VU, 'codepoint, 0x1E8BB);
24466put('MENDE_KIKAKUI_SYLLABLE_M173_VEE, 'codepoint, 0x1E8BC);
24467put('MENDE_KIKAKUI_SYLLABLE_M085_VE, 'codepoint, 0x1E8BD);
24468put('MENDE_KIKAKUI_SYLLABLE_M144_VOO, 'codepoint, 0x1E8BE);
24469put('MENDE_KIKAKUI_SYLLABLE_M077_VO, 'codepoint, 0x1E8BF);
24470put('MENDE_KIKAKUI_SYLLABLE_M164_NYIN, 'codepoint, 0x1E8C0);
24471put('MENDE_KIKAKUI_SYLLABLE_M058_NYAN, 'codepoint, 0x1E8C1);
24472put('MENDE_KIKAKUI_SYLLABLE_M170_NYUN, 'codepoint, 0x1E8C2);
24473put('MENDE_KIKAKUI_SYLLABLE_M098_NYEN, 'codepoint, 0x1E8C3);
24474put('MENDE_KIKAKUI_SYLLABLE_M060_NYON, 'codepoint, 0x1E8C4);
24475put('MENDE_KIKAKUI_DIGIT_ONE, 'codepoint, 0x1E8C7);
24476put('MENDE_KIKAKUI_DIGIT_TWO, 'codepoint, 0x1E8C8);
24477put('MENDE_KIKAKUI_DIGIT_THREE, 'codepoint, 0x1E8C9);
24478put('MENDE_KIKAKUI_DIGIT_FOUR, 'codepoint, 0x1E8CA);
24479put('MENDE_KIKAKUI_DIGIT_FIVE, 'codepoint, 0x1E8CB);
24480put('MENDE_KIKAKUI_DIGIT_SIX, 'codepoint, 0x1E8CC);
24481put('MENDE_KIKAKUI_DIGIT_SEVEN, 'codepoint, 0x1E8CD);
24482put('MENDE_KIKAKUI_DIGIT_EIGHT, 'codepoint, 0x1E8CE);
24483put('MENDE_KIKAKUI_DIGIT_NINE, 'codepoint, 0x1E8CF);
24484put('MENDE_KIKAKUI_COMBINING_NUMBER_TEENS, 'codepoint, 0x1E8D0);
24485put('MENDE_KIKAKUI_COMBINING_NUMBER_TENS, 'codepoint, 0x1E8D1);
24486put('MENDE_KIKAKUI_COMBINING_NUMBER_HUNDREDS, 'codepoint, 0x1E8D2);
24487put('MENDE_KIKAKUI_COMBINING_NUMBER_THOUSANDS, 'codepoint, 0x1E8D3);
24488put('MENDE_KIKAKUI_COMBINING_NUMBER_TEN_THOUSANDS, 'codepoint, 0x1E8D4);
24489put('MENDE_KIKAKUI_COMBINING_NUMBER_HUNDRED_THOUSANDS, 'codepoint, 0x1E8D5);
24490put('MENDE_KIKAKUI_COMBINING_NUMBER_MILLIONS, 'codepoint, 0x1E8D6);
24491put('ARABIC_MATHEMATICAL_ALEF, 'codepoint, 0x1EE00);
24492put('ARABIC_MATHEMATICAL_BEH, 'codepoint, 0x1EE01);
24493put('ARABIC_MATHEMATICAL_JEEM, 'codepoint, 0x1EE02);
24494put('ARABIC_MATHEMATICAL_DAL, 'codepoint, 0x1EE03);
24495put('ARABIC_MATHEMATICAL_WAW, 'codepoint, 0x1EE05);
24496put('ARABIC_MATHEMATICAL_ZAIN, 'codepoint, 0x1EE06);
24497put('ARABIC_MATHEMATICAL_HAH, 'codepoint, 0x1EE07);
24498put('ARABIC_MATHEMATICAL_TAH, 'codepoint, 0x1EE08);
24499put('ARABIC_MATHEMATICAL_YEH, 'codepoint, 0x1EE09);
24500put('ARABIC_MATHEMATICAL_KAF, 'codepoint, 0x1EE0A);
24501put('ARABIC_MATHEMATICAL_LAM, 'codepoint, 0x1EE0B);
24502put('ARABIC_MATHEMATICAL_MEEM, 'codepoint, 0x1EE0C);
24503put('ARABIC_MATHEMATICAL_NOON, 'codepoint, 0x1EE0D);
24504put('ARABIC_MATHEMATICAL_SEEN, 'codepoint, 0x1EE0E);
24505put('ARABIC_MATHEMATICAL_AIN, 'codepoint, 0x1EE0F);
24506put('ARABIC_MATHEMATICAL_FEH, 'codepoint, 0x1EE10);
24507put('ARABIC_MATHEMATICAL_SAD, 'codepoint, 0x1EE11);
24508put('ARABIC_MATHEMATICAL_QAF, 'codepoint, 0x1EE12);
24509put('ARABIC_MATHEMATICAL_REH, 'codepoint, 0x1EE13);
24510put('ARABIC_MATHEMATICAL_SHEEN, 'codepoint, 0x1EE14);
24511put('ARABIC_MATHEMATICAL_TEH, 'codepoint, 0x1EE15);
24512put('ARABIC_MATHEMATICAL_THEH, 'codepoint, 0x1EE16);
24513put('ARABIC_MATHEMATICAL_KHAH, 'codepoint, 0x1EE17);
24514put('ARABIC_MATHEMATICAL_THAL, 'codepoint, 0x1EE18);
24515put('ARABIC_MATHEMATICAL_DAD, 'codepoint, 0x1EE19);
24516put('ARABIC_MATHEMATICAL_ZAH, 'codepoint, 0x1EE1A);
24517put('ARABIC_MATHEMATICAL_GHAIN, 'codepoint, 0x1EE1B);
24518put('ARABIC_MATHEMATICAL_DOTLESS_BEH, 'codepoint, 0x1EE1C);
24519put('ARABIC_MATHEMATICAL_DOTLESS_NOON, 'codepoint, 0x1EE1D);
24520put('ARABIC_MATHEMATICAL_DOTLESS_FEH, 'codepoint, 0x1EE1E);
24521put('ARABIC_MATHEMATICAL_DOTLESS_QAF, 'codepoint, 0x1EE1F);
24522put('ARABIC_MATHEMATICAL_INITIAL_BEH, 'codepoint, 0x1EE21);
24523put('ARABIC_MATHEMATICAL_INITIAL_JEEM, 'codepoint, 0x1EE22);
24524put('ARABIC_MATHEMATICAL_INITIAL_HEH, 'codepoint, 0x1EE24);
24525put('ARABIC_MATHEMATICAL_INITIAL_HAH, 'codepoint, 0x1EE27);
24526put('ARABIC_MATHEMATICAL_INITIAL_YEH, 'codepoint, 0x1EE29);
24527put('ARABIC_MATHEMATICAL_INITIAL_KAF, 'codepoint, 0x1EE2A);
24528put('ARABIC_MATHEMATICAL_INITIAL_LAM, 'codepoint, 0x1EE2B);
24529put('ARABIC_MATHEMATICAL_INITIAL_MEEM, 'codepoint, 0x1EE2C);
24530put('ARABIC_MATHEMATICAL_INITIAL_NOON, 'codepoint, 0x1EE2D);
24531put('ARABIC_MATHEMATICAL_INITIAL_SEEN, 'codepoint, 0x1EE2E);
24532put('ARABIC_MATHEMATICAL_INITIAL_AIN, 'codepoint, 0x1EE2F);
24533put('ARABIC_MATHEMATICAL_INITIAL_FEH, 'codepoint, 0x1EE30);
24534put('ARABIC_MATHEMATICAL_INITIAL_SAD, 'codepoint, 0x1EE31);
24535put('ARABIC_MATHEMATICAL_INITIAL_QAF, 'codepoint, 0x1EE32);
24536put('ARABIC_MATHEMATICAL_INITIAL_SHEEN, 'codepoint, 0x1EE34);
24537put('ARABIC_MATHEMATICAL_INITIAL_TEH, 'codepoint, 0x1EE35);
24538put('ARABIC_MATHEMATICAL_INITIAL_THEH, 'codepoint, 0x1EE36);
24539put('ARABIC_MATHEMATICAL_INITIAL_KHAH, 'codepoint, 0x1EE37);
24540put('ARABIC_MATHEMATICAL_INITIAL_DAD, 'codepoint, 0x1EE39);
24541put('ARABIC_MATHEMATICAL_INITIAL_GHAIN, 'codepoint, 0x1EE3B);
24542put('ARABIC_MATHEMATICAL_TAILED_JEEM, 'codepoint, 0x1EE42);
24543put('ARABIC_MATHEMATICAL_TAILED_HAH, 'codepoint, 0x1EE47);
24544put('ARABIC_MATHEMATICAL_TAILED_YEH, 'codepoint, 0x1EE49);
24545put('ARABIC_MATHEMATICAL_TAILED_LAM, 'codepoint, 0x1EE4B);
24546put('ARABIC_MATHEMATICAL_TAILED_NOON, 'codepoint, 0x1EE4D);
24547put('ARABIC_MATHEMATICAL_TAILED_SEEN, 'codepoint, 0x1EE4E);
24548put('ARABIC_MATHEMATICAL_TAILED_AIN, 'codepoint, 0x1EE4F);
24549put('ARABIC_MATHEMATICAL_TAILED_SAD, 'codepoint, 0x1EE51);
24550put('ARABIC_MATHEMATICAL_TAILED_QAF, 'codepoint, 0x1EE52);
24551put('ARABIC_MATHEMATICAL_TAILED_SHEEN, 'codepoint, 0x1EE54);
24552put('ARABIC_MATHEMATICAL_TAILED_KHAH, 'codepoint, 0x1EE57);
24553put('ARABIC_MATHEMATICAL_TAILED_DAD, 'codepoint, 0x1EE59);
24554put('ARABIC_MATHEMATICAL_TAILED_GHAIN, 'codepoint, 0x1EE5B);
24555put('ARABIC_MATHEMATICAL_TAILED_DOTLESS_NOON, 'codepoint, 0x1EE5D);
24556put('ARABIC_MATHEMATICAL_TAILED_DOTLESS_QAF, 'codepoint, 0x1EE5F);
24557put('ARABIC_MATHEMATICAL_STRETCHED_BEH, 'codepoint, 0x1EE61);
24558put('ARABIC_MATHEMATICAL_STRETCHED_JEEM, 'codepoint, 0x1EE62);
24559put('ARABIC_MATHEMATICAL_STRETCHED_HEH, 'codepoint, 0x1EE64);
24560put('ARABIC_MATHEMATICAL_STRETCHED_HAH, 'codepoint, 0x1EE67);
24561put('ARABIC_MATHEMATICAL_STRETCHED_TAH, 'codepoint, 0x1EE68);
24562put('ARABIC_MATHEMATICAL_STRETCHED_YEH, 'codepoint, 0x1EE69);
24563put('ARABIC_MATHEMATICAL_STRETCHED_KAF, 'codepoint, 0x1EE6A);
24564put('ARABIC_MATHEMATICAL_STRETCHED_MEEM, 'codepoint, 0x1EE6C);
24565put('ARABIC_MATHEMATICAL_STRETCHED_NOON, 'codepoint, 0x1EE6D);
24566put('ARABIC_MATHEMATICAL_STRETCHED_SEEN, 'codepoint, 0x1EE6E);
24567put('ARABIC_MATHEMATICAL_STRETCHED_AIN, 'codepoint, 0x1EE6F);
24568put('ARABIC_MATHEMATICAL_STRETCHED_FEH, 'codepoint, 0x1EE70);
24569put('ARABIC_MATHEMATICAL_STRETCHED_SAD, 'codepoint, 0x1EE71);
24570put('ARABIC_MATHEMATICAL_STRETCHED_QAF, 'codepoint, 0x1EE72);
24571put('ARABIC_MATHEMATICAL_STRETCHED_SHEEN, 'codepoint, 0x1EE74);
24572put('ARABIC_MATHEMATICAL_STRETCHED_TEH, 'codepoint, 0x1EE75);
24573put('ARABIC_MATHEMATICAL_STRETCHED_THEH, 'codepoint, 0x1EE76);
24574put('ARABIC_MATHEMATICAL_STRETCHED_KHAH, 'codepoint, 0x1EE77);
24575put('ARABIC_MATHEMATICAL_STRETCHED_DAD, 'codepoint, 0x1EE79);
24576put('ARABIC_MATHEMATICAL_STRETCHED_ZAH, 'codepoint, 0x1EE7A);
24577put('ARABIC_MATHEMATICAL_STRETCHED_GHAIN, 'codepoint, 0x1EE7B);
24578put('ARABIC_MATHEMATICAL_STRETCHED_DOTLESS_BEH, 'codepoint, 0x1EE7C);
24579put('ARABIC_MATHEMATICAL_STRETCHED_DOTLESS_FEH, 'codepoint, 0x1EE7E);
24580put('ARABIC_MATHEMATICAL_LOOPED_ALEF, 'codepoint, 0x1EE80);
24581put('ARABIC_MATHEMATICAL_LOOPED_BEH, 'codepoint, 0x1EE81);
24582put('ARABIC_MATHEMATICAL_LOOPED_JEEM, 'codepoint, 0x1EE82);
24583put('ARABIC_MATHEMATICAL_LOOPED_DAL, 'codepoint, 0x1EE83);
24584put('ARABIC_MATHEMATICAL_LOOPED_HEH, 'codepoint, 0x1EE84);
24585put('ARABIC_MATHEMATICAL_LOOPED_WAW, 'codepoint, 0x1EE85);
24586put('ARABIC_MATHEMATICAL_LOOPED_ZAIN, 'codepoint, 0x1EE86);
24587put('ARABIC_MATHEMATICAL_LOOPED_HAH, 'codepoint, 0x1EE87);
24588put('ARABIC_MATHEMATICAL_LOOPED_TAH, 'codepoint, 0x1EE88);
24589put('ARABIC_MATHEMATICAL_LOOPED_YEH, 'codepoint, 0x1EE89);
24590put('ARABIC_MATHEMATICAL_LOOPED_LAM, 'codepoint, 0x1EE8B);
24591put('ARABIC_MATHEMATICAL_LOOPED_MEEM, 'codepoint, 0x1EE8C);
24592put('ARABIC_MATHEMATICAL_LOOPED_NOON, 'codepoint, 0x1EE8D);
24593put('ARABIC_MATHEMATICAL_LOOPED_SEEN, 'codepoint, 0x1EE8E);
24594put('ARABIC_MATHEMATICAL_LOOPED_AIN, 'codepoint, 0x1EE8F);
24595put('ARABIC_MATHEMATICAL_LOOPED_FEH, 'codepoint, 0x1EE90);
24596put('ARABIC_MATHEMATICAL_LOOPED_SAD, 'codepoint, 0x1EE91);
24597put('ARABIC_MATHEMATICAL_LOOPED_QAF, 'codepoint, 0x1EE92);
24598put('ARABIC_MATHEMATICAL_LOOPED_REH, 'codepoint, 0x1EE93);
24599put('ARABIC_MATHEMATICAL_LOOPED_SHEEN, 'codepoint, 0x1EE94);
24600put('ARABIC_MATHEMATICAL_LOOPED_TEH, 'codepoint, 0x1EE95);
24601put('ARABIC_MATHEMATICAL_LOOPED_THEH, 'codepoint, 0x1EE96);
24602put('ARABIC_MATHEMATICAL_LOOPED_KHAH, 'codepoint, 0x1EE97);
24603put('ARABIC_MATHEMATICAL_LOOPED_THAL, 'codepoint, 0x1EE98);
24604put('ARABIC_MATHEMATICAL_LOOPED_DAD, 'codepoint, 0x1EE99);
24605put('ARABIC_MATHEMATICAL_LOOPED_ZAH, 'codepoint, 0x1EE9A);
24606put('ARABIC_MATHEMATICAL_LOOPED_GHAIN, 'codepoint, 0x1EE9B);
24607put('ARABIC_MATHEMATICAL_DOUBLE_STRUCK_BEH, 'codepoint, 0x1EEA1);
24608put('ARABIC_MATHEMATICAL_DOUBLE_STRUCK_JEEM, 'codepoint, 0x1EEA2);
24609put('ARABIC_MATHEMATICAL_DOUBLE_STRUCK_DAL, 'codepoint, 0x1EEA3);
24610put('ARABIC_MATHEMATICAL_DOUBLE_STRUCK_WAW, 'codepoint, 0x1EEA5);
24611put('ARABIC_MATHEMATICAL_DOUBLE_STRUCK_ZAIN, 'codepoint, 0x1EEA6);
24612put('ARABIC_MATHEMATICAL_DOUBLE_STRUCK_HAH, 'codepoint, 0x1EEA7);
24613put('ARABIC_MATHEMATICAL_DOUBLE_STRUCK_TAH, 'codepoint, 0x1EEA8);
24614put('ARABIC_MATHEMATICAL_DOUBLE_STRUCK_YEH, 'codepoint, 0x1EEA9);
24615put('ARABIC_MATHEMATICAL_DOUBLE_STRUCK_LAM, 'codepoint, 0x1EEAB);
24616put('ARABIC_MATHEMATICAL_DOUBLE_STRUCK_MEEM, 'codepoint, 0x1EEAC);
24617put('ARABIC_MATHEMATICAL_DOUBLE_STRUCK_NOON, 'codepoint, 0x1EEAD);
24618put('ARABIC_MATHEMATICAL_DOUBLE_STRUCK_SEEN, 'codepoint, 0x1EEAE);
24619put('ARABIC_MATHEMATICAL_DOUBLE_STRUCK_AIN, 'codepoint, 0x1EEAF);
24620put('ARABIC_MATHEMATICAL_DOUBLE_STRUCK_FEH, 'codepoint, 0x1EEB0);
24621put('ARABIC_MATHEMATICAL_DOUBLE_STRUCK_SAD, 'codepoint, 0x1EEB1);
24622put('ARABIC_MATHEMATICAL_DOUBLE_STRUCK_QAF, 'codepoint, 0x1EEB2);
24623put('ARABIC_MATHEMATICAL_DOUBLE_STRUCK_REH, 'codepoint, 0x1EEB3);
24624put('ARABIC_MATHEMATICAL_DOUBLE_STRUCK_SHEEN, 'codepoint, 0x1EEB4);
24625put('ARABIC_MATHEMATICAL_DOUBLE_STRUCK_TEH, 'codepoint, 0x1EEB5);
24626put('ARABIC_MATHEMATICAL_DOUBLE_STRUCK_THEH, 'codepoint, 0x1EEB6);
24627put('ARABIC_MATHEMATICAL_DOUBLE_STRUCK_KHAH, 'codepoint, 0x1EEB7);
24628put('ARABIC_MATHEMATICAL_DOUBLE_STRUCK_THAL, 'codepoint, 0x1EEB8);
24629put('ARABIC_MATHEMATICAL_DOUBLE_STRUCK_DAD, 'codepoint, 0x1EEB9);
24630put('ARABIC_MATHEMATICAL_DOUBLE_STRUCK_ZAH, 'codepoint, 0x1EEBA);
24631put('ARABIC_MATHEMATICAL_DOUBLE_STRUCK_GHAIN, 'codepoint, 0x1EEBB);
24632put('ARABIC_MATHEMATICAL_OPERATOR_MEEM_WITH_HAH_WITH_TATWEEL, 'codepoint, 0x1EEF0);
24633put('ARABIC_MATHEMATICAL_OPERATOR_HAH_WITH_DAL, 'codepoint, 0x1EEF1);
24634put('MAHJONG_TILE_EAST_WIND, 'codepoint, 0x1F000);
24635put('MAHJONG_TILE_SOUTH_WIND, 'codepoint, 0x1F001);
24636put('MAHJONG_TILE_WEST_WIND, 'codepoint, 0x1F002);
24637put('MAHJONG_TILE_NORTH_WIND, 'codepoint, 0x1F003);
24638put('MAHJONG_TILE_RED_DRAGON, 'codepoint, 0x1F004);
24639put('MAHJONG_TILE_GREEN_DRAGON, 'codepoint, 0x1F005);
24640put('MAHJONG_TILE_WHITE_DRAGON, 'codepoint, 0x1F006);
24641put('MAHJONG_TILE_ONE_OF_CHARACTERS, 'codepoint, 0x1F007);
24642put('MAHJONG_TILE_TWO_OF_CHARACTERS, 'codepoint, 0x1F008);
24643put('MAHJONG_TILE_THREE_OF_CHARACTERS, 'codepoint, 0x1F009);
24644put('MAHJONG_TILE_FOUR_OF_CHARACTERS, 'codepoint, 0x1F00A);
24645put('MAHJONG_TILE_FIVE_OF_CHARACTERS, 'codepoint, 0x1F00B);
24646put('MAHJONG_TILE_SIX_OF_CHARACTERS, 'codepoint, 0x1F00C);
24647put('MAHJONG_TILE_SEVEN_OF_CHARACTERS, 'codepoint, 0x1F00D);
24648put('MAHJONG_TILE_EIGHT_OF_CHARACTERS, 'codepoint, 0x1F00E);
24649put('MAHJONG_TILE_NINE_OF_CHARACTERS, 'codepoint, 0x1F00F);
24650put('MAHJONG_TILE_ONE_OF_BAMBOOS, 'codepoint, 0x1F010);
24651put('MAHJONG_TILE_TWO_OF_BAMBOOS, 'codepoint, 0x1F011);
24652put('MAHJONG_TILE_THREE_OF_BAMBOOS, 'codepoint, 0x1F012);
24653put('MAHJONG_TILE_FOUR_OF_BAMBOOS, 'codepoint, 0x1F013);
24654put('MAHJONG_TILE_FIVE_OF_BAMBOOS, 'codepoint, 0x1F014);
24655put('MAHJONG_TILE_SIX_OF_BAMBOOS, 'codepoint, 0x1F015);
24656put('MAHJONG_TILE_SEVEN_OF_BAMBOOS, 'codepoint, 0x1F016);
24657put('MAHJONG_TILE_EIGHT_OF_BAMBOOS, 'codepoint, 0x1F017);
24658put('MAHJONG_TILE_NINE_OF_BAMBOOS, 'codepoint, 0x1F018);
24659put('MAHJONG_TILE_ONE_OF_CIRCLES, 'codepoint, 0x1F019);
24660put('MAHJONG_TILE_TWO_OF_CIRCLES, 'codepoint, 0x1F01A);
24661put('MAHJONG_TILE_THREE_OF_CIRCLES, 'codepoint, 0x1F01B);
24662put('MAHJONG_TILE_FOUR_OF_CIRCLES, 'codepoint, 0x1F01C);
24663put('MAHJONG_TILE_FIVE_OF_CIRCLES, 'codepoint, 0x1F01D);
24664put('MAHJONG_TILE_SIX_OF_CIRCLES, 'codepoint, 0x1F01E);
24665put('MAHJONG_TILE_SEVEN_OF_CIRCLES, 'codepoint, 0x1F01F);
24666put('MAHJONG_TILE_EIGHT_OF_CIRCLES, 'codepoint, 0x1F020);
24667put('MAHJONG_TILE_NINE_OF_CIRCLES, 'codepoint, 0x1F021);
24668put('MAHJONG_TILE_PLUM, 'codepoint, 0x1F022);
24669put('MAHJONG_TILE_ORCHID, 'codepoint, 0x1F023);
24670put('MAHJONG_TILE_BAMBOO, 'codepoint, 0x1F024);
24671put('MAHJONG_TILE_CHRYSANTHEMUM, 'codepoint, 0x1F025);
24672put('MAHJONG_TILE_SPRING, 'codepoint, 0x1F026);
24673put('MAHJONG_TILE_SUMMER, 'codepoint, 0x1F027);
24674put('MAHJONG_TILE_AUTUMN, 'codepoint, 0x1F028);
24675put('MAHJONG_TILE_WINTER, 'codepoint, 0x1F029);
24676put('MAHJONG_TILE_JOKER, 'codepoint, 0x1F02A);
24677put('MAHJONG_TILE_BACK, 'codepoint, 0x1F02B);
24678put('DOMINO_TILE_HORIZONTAL_BACK, 'codepoint, 0x1F030);
24679put('DOMINO_TILE_HORIZONTAL_00_00, 'codepoint, 0x1F031);
24680put('DOMINO_TILE_HORIZONTAL_00_01, 'codepoint, 0x1F032);
24681put('DOMINO_TILE_HORIZONTAL_00_02, 'codepoint, 0x1F033);
24682put('DOMINO_TILE_HORIZONTAL_00_03, 'codepoint, 0x1F034);
24683put('DOMINO_TILE_HORIZONTAL_00_04, 'codepoint, 0x1F035);
24684put('DOMINO_TILE_HORIZONTAL_00_05, 'codepoint, 0x1F036);
24685put('DOMINO_TILE_HORIZONTAL_00_06, 'codepoint, 0x1F037);
24686put('DOMINO_TILE_HORIZONTAL_01_00, 'codepoint, 0x1F038);
24687put('DOMINO_TILE_HORIZONTAL_01_01, 'codepoint, 0x1F039);
24688put('DOMINO_TILE_HORIZONTAL_01_02, 'codepoint, 0x1F03A);
24689put('DOMINO_TILE_HORIZONTAL_01_03, 'codepoint, 0x1F03B);
24690put('DOMINO_TILE_HORIZONTAL_01_04, 'codepoint, 0x1F03C);
24691put('DOMINO_TILE_HORIZONTAL_01_05, 'codepoint, 0x1F03D);
24692put('DOMINO_TILE_HORIZONTAL_01_06, 'codepoint, 0x1F03E);
24693put('DOMINO_TILE_HORIZONTAL_02_00, 'codepoint, 0x1F03F);
24694put('DOMINO_TILE_HORIZONTAL_02_01, 'codepoint, 0x1F040);
24695put('DOMINO_TILE_HORIZONTAL_02_02, 'codepoint, 0x1F041);
24696put('DOMINO_TILE_HORIZONTAL_02_03, 'codepoint, 0x1F042);
24697put('DOMINO_TILE_HORIZONTAL_02_04, 'codepoint, 0x1F043);
24698put('DOMINO_TILE_HORIZONTAL_02_05, 'codepoint, 0x1F044);
24699put('DOMINO_TILE_HORIZONTAL_02_06, 'codepoint, 0x1F045);
24700put('DOMINO_TILE_HORIZONTAL_03_00, 'codepoint, 0x1F046);
24701put('DOMINO_TILE_HORIZONTAL_03_01, 'codepoint, 0x1F047);
24702put('DOMINO_TILE_HORIZONTAL_03_02, 'codepoint, 0x1F048);
24703put('DOMINO_TILE_HORIZONTAL_03_03, 'codepoint, 0x1F049);
24704put('DOMINO_TILE_HORIZONTAL_03_04, 'codepoint, 0x1F04A);
24705put('DOMINO_TILE_HORIZONTAL_03_05, 'codepoint, 0x1F04B);
24706put('DOMINO_TILE_HORIZONTAL_03_06, 'codepoint, 0x1F04C);
24707put('DOMINO_TILE_HORIZONTAL_04_00, 'codepoint, 0x1F04D);
24708put('DOMINO_TILE_HORIZONTAL_04_01, 'codepoint, 0x1F04E);
24709put('DOMINO_TILE_HORIZONTAL_04_02, 'codepoint, 0x1F04F);
24710put('DOMINO_TILE_HORIZONTAL_04_03, 'codepoint, 0x1F050);
24711put('DOMINO_TILE_HORIZONTAL_04_04, 'codepoint, 0x1F051);
24712put('DOMINO_TILE_HORIZONTAL_04_05, 'codepoint, 0x1F052);
24713put('DOMINO_TILE_HORIZONTAL_04_06, 'codepoint, 0x1F053);
24714put('DOMINO_TILE_HORIZONTAL_05_00, 'codepoint, 0x1F054);
24715put('DOMINO_TILE_HORIZONTAL_05_01, 'codepoint, 0x1F055);
24716put('DOMINO_TILE_HORIZONTAL_05_02, 'codepoint, 0x1F056);
24717put('DOMINO_TILE_HORIZONTAL_05_03, 'codepoint, 0x1F057);
24718put('DOMINO_TILE_HORIZONTAL_05_04, 'codepoint, 0x1F058);
24719put('DOMINO_TILE_HORIZONTAL_05_05, 'codepoint, 0x1F059);
24720put('DOMINO_TILE_HORIZONTAL_05_06, 'codepoint, 0x1F05A);
24721put('DOMINO_TILE_HORIZONTAL_06_00, 'codepoint, 0x1F05B);
24722put('DOMINO_TILE_HORIZONTAL_06_01, 'codepoint, 0x1F05C);
24723put('DOMINO_TILE_HORIZONTAL_06_02, 'codepoint, 0x1F05D);
24724put('DOMINO_TILE_HORIZONTAL_06_03, 'codepoint, 0x1F05E);
24725put('DOMINO_TILE_HORIZONTAL_06_04, 'codepoint, 0x1F05F);
24726put('DOMINO_TILE_HORIZONTAL_06_05, 'codepoint, 0x1F060);
24727put('DOMINO_TILE_HORIZONTAL_06_06, 'codepoint, 0x1F061);
24728put('DOMINO_TILE_VERTICAL_BACK, 'codepoint, 0x1F062);
24729put('DOMINO_TILE_VERTICAL_00_00, 'codepoint, 0x1F063);
24730put('DOMINO_TILE_VERTICAL_00_01, 'codepoint, 0x1F064);
24731put('DOMINO_TILE_VERTICAL_00_02, 'codepoint, 0x1F065);
24732put('DOMINO_TILE_VERTICAL_00_03, 'codepoint, 0x1F066);
24733put('DOMINO_TILE_VERTICAL_00_04, 'codepoint, 0x1F067);
24734put('DOMINO_TILE_VERTICAL_00_05, 'codepoint, 0x1F068);
24735put('DOMINO_TILE_VERTICAL_00_06, 'codepoint, 0x1F069);
24736put('DOMINO_TILE_VERTICAL_01_00, 'codepoint, 0x1F06A);
24737put('DOMINO_TILE_VERTICAL_01_01, 'codepoint, 0x1F06B);
24738put('DOMINO_TILE_VERTICAL_01_02, 'codepoint, 0x1F06C);
24739put('DOMINO_TILE_VERTICAL_01_03, 'codepoint, 0x1F06D);
24740put('DOMINO_TILE_VERTICAL_01_04, 'codepoint, 0x1F06E);
24741put('DOMINO_TILE_VERTICAL_01_05, 'codepoint, 0x1F06F);
24742put('DOMINO_TILE_VERTICAL_01_06, 'codepoint, 0x1F070);
24743put('DOMINO_TILE_VERTICAL_02_00, 'codepoint, 0x1F071);
24744put('DOMINO_TILE_VERTICAL_02_01, 'codepoint, 0x1F072);
24745put('DOMINO_TILE_VERTICAL_02_02, 'codepoint, 0x1F073);
24746put('DOMINO_TILE_VERTICAL_02_03, 'codepoint, 0x1F074);
24747put('DOMINO_TILE_VERTICAL_02_04, 'codepoint, 0x1F075);
24748put('DOMINO_TILE_VERTICAL_02_05, 'codepoint, 0x1F076);
24749put('DOMINO_TILE_VERTICAL_02_06, 'codepoint, 0x1F077);
24750put('DOMINO_TILE_VERTICAL_03_00, 'codepoint, 0x1F078);
24751put('DOMINO_TILE_VERTICAL_03_01, 'codepoint, 0x1F079);
24752put('DOMINO_TILE_VERTICAL_03_02, 'codepoint, 0x1F07A);
24753put('DOMINO_TILE_VERTICAL_03_03, 'codepoint, 0x1F07B);
24754put('DOMINO_TILE_VERTICAL_03_04, 'codepoint, 0x1F07C);
24755put('DOMINO_TILE_VERTICAL_03_05, 'codepoint, 0x1F07D);
24756put('DOMINO_TILE_VERTICAL_03_06, 'codepoint, 0x1F07E);
24757put('DOMINO_TILE_VERTICAL_04_00, 'codepoint, 0x1F07F);
24758put('DOMINO_TILE_VERTICAL_04_01, 'codepoint, 0x1F080);
24759put('DOMINO_TILE_VERTICAL_04_02, 'codepoint, 0x1F081);
24760put('DOMINO_TILE_VERTICAL_04_03, 'codepoint, 0x1F082);
24761put('DOMINO_TILE_VERTICAL_04_04, 'codepoint, 0x1F083);
24762put('DOMINO_TILE_VERTICAL_04_05, 'codepoint, 0x1F084);
24763put('DOMINO_TILE_VERTICAL_04_06, 'codepoint, 0x1F085);
24764put('DOMINO_TILE_VERTICAL_05_00, 'codepoint, 0x1F086);
24765put('DOMINO_TILE_VERTICAL_05_01, 'codepoint, 0x1F087);
24766put('DOMINO_TILE_VERTICAL_05_02, 'codepoint, 0x1F088);
24767put('DOMINO_TILE_VERTICAL_05_03, 'codepoint, 0x1F089);
24768put('DOMINO_TILE_VERTICAL_05_04, 'codepoint, 0x1F08A);
24769put('DOMINO_TILE_VERTICAL_05_05, 'codepoint, 0x1F08B);
24770put('DOMINO_TILE_VERTICAL_05_06, 'codepoint, 0x1F08C);
24771put('DOMINO_TILE_VERTICAL_06_00, 'codepoint, 0x1F08D);
24772put('DOMINO_TILE_VERTICAL_06_01, 'codepoint, 0x1F08E);
24773put('DOMINO_TILE_VERTICAL_06_02, 'codepoint, 0x1F08F);
24774put('DOMINO_TILE_VERTICAL_06_03, 'codepoint, 0x1F090);
24775put('DOMINO_TILE_VERTICAL_06_04, 'codepoint, 0x1F091);
24776put('DOMINO_TILE_VERTICAL_06_05, 'codepoint, 0x1F092);
24777put('DOMINO_TILE_VERTICAL_06_06, 'codepoint, 0x1F093);
24778put('PLAYING_CARD_BACK, 'codepoint, 0x1F0A0);
24779put('PLAYING_CARD_ACE_OF_SPADES, 'codepoint, 0x1F0A1);
24780put('PLAYING_CARD_TWO_OF_SPADES, 'codepoint, 0x1F0A2);
24781put('PLAYING_CARD_THREE_OF_SPADES, 'codepoint, 0x1F0A3);
24782put('PLAYING_CARD_FOUR_OF_SPADES, 'codepoint, 0x1F0A4);
24783put('PLAYING_CARD_FIVE_OF_SPADES, 'codepoint, 0x1F0A5);
24784put('PLAYING_CARD_SIX_OF_SPADES, 'codepoint, 0x1F0A6);
24785put('PLAYING_CARD_SEVEN_OF_SPADES, 'codepoint, 0x1F0A7);
24786put('PLAYING_CARD_EIGHT_OF_SPADES, 'codepoint, 0x1F0A8);
24787put('PLAYING_CARD_NINE_OF_SPADES, 'codepoint, 0x1F0A9);
24788put('PLAYING_CARD_TEN_OF_SPADES, 'codepoint, 0x1F0AA);
24789put('PLAYING_CARD_JACK_OF_SPADES, 'codepoint, 0x1F0AB);
24790put('PLAYING_CARD_KNIGHT_OF_SPADES, 'codepoint, 0x1F0AC);
24791put('PLAYING_CARD_QUEEN_OF_SPADES, 'codepoint, 0x1F0AD);
24792put('PLAYING_CARD_KING_OF_SPADES, 'codepoint, 0x1F0AE);
24793put('PLAYING_CARD_ACE_OF_HEARTS, 'codepoint, 0x1F0B1);
24794put('PLAYING_CARD_TWO_OF_HEARTS, 'codepoint, 0x1F0B2);
24795put('PLAYING_CARD_THREE_OF_HEARTS, 'codepoint, 0x1F0B3);
24796put('PLAYING_CARD_FOUR_OF_HEARTS, 'codepoint, 0x1F0B4);
24797put('PLAYING_CARD_FIVE_OF_HEARTS, 'codepoint, 0x1F0B5);
24798put('PLAYING_CARD_SIX_OF_HEARTS, 'codepoint, 0x1F0B6);
24799put('PLAYING_CARD_SEVEN_OF_HEARTS, 'codepoint, 0x1F0B7);
24800put('PLAYING_CARD_EIGHT_OF_HEARTS, 'codepoint, 0x1F0B8);
24801put('PLAYING_CARD_NINE_OF_HEARTS, 'codepoint, 0x1F0B9);
24802put('PLAYING_CARD_TEN_OF_HEARTS, 'codepoint, 0x1F0BA);
24803put('PLAYING_CARD_JACK_OF_HEARTS, 'codepoint, 0x1F0BB);
24804put('PLAYING_CARD_KNIGHT_OF_HEARTS, 'codepoint, 0x1F0BC);
24805put('PLAYING_CARD_QUEEN_OF_HEARTS, 'codepoint, 0x1F0BD);
24806put('PLAYING_CARD_KING_OF_HEARTS, 'codepoint, 0x1F0BE);
24807put('PLAYING_CARD_RED_JOKER, 'codepoint, 0x1F0BF);
24808put('PLAYING_CARD_ACE_OF_DIAMONDS, 'codepoint, 0x1F0C1);
24809put('PLAYING_CARD_TWO_OF_DIAMONDS, 'codepoint, 0x1F0C2);
24810put('PLAYING_CARD_THREE_OF_DIAMONDS, 'codepoint, 0x1F0C3);
24811put('PLAYING_CARD_FOUR_OF_DIAMONDS, 'codepoint, 0x1F0C4);
24812put('PLAYING_CARD_FIVE_OF_DIAMONDS, 'codepoint, 0x1F0C5);
24813put('PLAYING_CARD_SIX_OF_DIAMONDS, 'codepoint, 0x1F0C6);
24814put('PLAYING_CARD_SEVEN_OF_DIAMONDS, 'codepoint, 0x1F0C7);
24815put('PLAYING_CARD_EIGHT_OF_DIAMONDS, 'codepoint, 0x1F0C8);
24816put('PLAYING_CARD_NINE_OF_DIAMONDS, 'codepoint, 0x1F0C9);
24817put('PLAYING_CARD_TEN_OF_DIAMONDS, 'codepoint, 0x1F0CA);
24818put('PLAYING_CARD_JACK_OF_DIAMONDS, 'codepoint, 0x1F0CB);
24819put('PLAYING_CARD_KNIGHT_OF_DIAMONDS, 'codepoint, 0x1F0CC);
24820put('PLAYING_CARD_QUEEN_OF_DIAMONDS, 'codepoint, 0x1F0CD);
24821put('PLAYING_CARD_KING_OF_DIAMONDS, 'codepoint, 0x1F0CE);
24822put('PLAYING_CARD_BLACK_JOKER, 'codepoint, 0x1F0CF);
24823put('PLAYING_CARD_ACE_OF_CLUBS, 'codepoint, 0x1F0D1);
24824put('PLAYING_CARD_TWO_OF_CLUBS, 'codepoint, 0x1F0D2);
24825put('PLAYING_CARD_THREE_OF_CLUBS, 'codepoint, 0x1F0D3);
24826put('PLAYING_CARD_FOUR_OF_CLUBS, 'codepoint, 0x1F0D4);
24827put('PLAYING_CARD_FIVE_OF_CLUBS, 'codepoint, 0x1F0D5);
24828put('PLAYING_CARD_SIX_OF_CLUBS, 'codepoint, 0x1F0D6);
24829put('PLAYING_CARD_SEVEN_OF_CLUBS, 'codepoint, 0x1F0D7);
24830put('PLAYING_CARD_EIGHT_OF_CLUBS, 'codepoint, 0x1F0D8);
24831put('PLAYING_CARD_NINE_OF_CLUBS, 'codepoint, 0x1F0D9);
24832put('PLAYING_CARD_TEN_OF_CLUBS, 'codepoint, 0x1F0DA);
24833put('PLAYING_CARD_JACK_OF_CLUBS, 'codepoint, 0x1F0DB);
24834put('PLAYING_CARD_KNIGHT_OF_CLUBS, 'codepoint, 0x1F0DC);
24835put('PLAYING_CARD_QUEEN_OF_CLUBS, 'codepoint, 0x1F0DD);
24836put('PLAYING_CARD_KING_OF_CLUBS, 'codepoint, 0x1F0DE);
24837put('PLAYING_CARD_WHITE_JOKER, 'codepoint, 0x1F0DF);
24838put('PLAYING_CARD_FOOL, 'codepoint, 0x1F0E0);
24839put('PLAYING_CARD_TRUMP_1, 'codepoint, 0x1F0E1);
24840put('PLAYING_CARD_TRUMP_2, 'codepoint, 0x1F0E2);
24841put('PLAYING_CARD_TRUMP_3, 'codepoint, 0x1F0E3);
24842put('PLAYING_CARD_TRUMP_4, 'codepoint, 0x1F0E4);
24843put('PLAYING_CARD_TRUMP_5, 'codepoint, 0x1F0E5);
24844put('PLAYING_CARD_TRUMP_6, 'codepoint, 0x1F0E6);
24845put('PLAYING_CARD_TRUMP_7, 'codepoint, 0x1F0E7);
24846put('PLAYING_CARD_TRUMP_8, 'codepoint, 0x1F0E8);
24847put('PLAYING_CARD_TRUMP_9, 'codepoint, 0x1F0E9);
24848put('PLAYING_CARD_TRUMP_10, 'codepoint, 0x1F0EA);
24849put('PLAYING_CARD_TRUMP_11, 'codepoint, 0x1F0EB);
24850put('PLAYING_CARD_TRUMP_12, 'codepoint, 0x1F0EC);
24851put('PLAYING_CARD_TRUMP_13, 'codepoint, 0x1F0ED);
24852put('PLAYING_CARD_TRUMP_14, 'codepoint, 0x1F0EE);
24853put('PLAYING_CARD_TRUMP_15, 'codepoint, 0x1F0EF);
24854put('PLAYING_CARD_TRUMP_16, 'codepoint, 0x1F0F0);
24855put('PLAYING_CARD_TRUMP_17, 'codepoint, 0x1F0F1);
24856put('PLAYING_CARD_TRUMP_18, 'codepoint, 0x1F0F2);
24857put('PLAYING_CARD_TRUMP_19, 'codepoint, 0x1F0F3);
24858put('PLAYING_CARD_TRUMP_20, 'codepoint, 0x1F0F4);
24859put('PLAYING_CARD_TRUMP_21, 'codepoint, 0x1F0F5);
24860put('DIGIT_ZERO_FULL_STOP, 'codepoint, 0x1F100);
24861put('DIGIT_ZERO_COMMA, 'codepoint, 0x1F101);
24862put('DIGIT_ONE_COMMA, 'codepoint, 0x1F102);
24863put('DIGIT_TWO_COMMA, 'codepoint, 0x1F103);
24864put('DIGIT_THREE_COMMA, 'codepoint, 0x1F104);
24865put('DIGIT_FOUR_COMMA, 'codepoint, 0x1F105);
24866put('DIGIT_FIVE_COMMA, 'codepoint, 0x1F106);
24867put('DIGIT_SIX_COMMA, 'codepoint, 0x1F107);
24868put('DIGIT_SEVEN_COMMA, 'codepoint, 0x1F108);
24869put('DIGIT_EIGHT_COMMA, 'codepoint, 0x1F109);
24870put('DIGIT_NINE_COMMA, 'codepoint, 0x1F10A);
24871put('DINGBAT_CIRCLED_SANS_SERIF_DIGIT_ZERO, 'codepoint, 0x1F10B);
24872put('DINGBAT_NEGATIVE_CIRCLED_SANS_SERIF_DIGIT_ZERO, 'codepoint, 0x1F10C);
24873put('PARENTHESIZED_LATIN_CAPITAL_LETTER_A, 'codepoint, 0x1F110);
24874put('PARENTHESIZED_LATIN_CAPITAL_LETTER_B, 'codepoint, 0x1F111);
24875put('PARENTHESIZED_LATIN_CAPITAL_LETTER_C, 'codepoint, 0x1F112);
24876put('PARENTHESIZED_LATIN_CAPITAL_LETTER_D, 'codepoint, 0x1F113);
24877put('PARENTHESIZED_LATIN_CAPITAL_LETTER_E, 'codepoint, 0x1F114);
24878put('PARENTHESIZED_LATIN_CAPITAL_LETTER_F, 'codepoint, 0x1F115);
24879put('PARENTHESIZED_LATIN_CAPITAL_LETTER_G, 'codepoint, 0x1F116);
24880put('PARENTHESIZED_LATIN_CAPITAL_LETTER_H, 'codepoint, 0x1F117);
24881put('PARENTHESIZED_LATIN_CAPITAL_LETTER_I, 'codepoint, 0x1F118);
24882put('PARENTHESIZED_LATIN_CAPITAL_LETTER_J, 'codepoint, 0x1F119);
24883put('PARENTHESIZED_LATIN_CAPITAL_LETTER_K, 'codepoint, 0x1F11A);
24884put('PARENTHESIZED_LATIN_CAPITAL_LETTER_L, 'codepoint, 0x1F11B);
24885put('PARENTHESIZED_LATIN_CAPITAL_LETTER_M, 'codepoint, 0x1F11C);
24886put('PARENTHESIZED_LATIN_CAPITAL_LETTER_N, 'codepoint, 0x1F11D);
24887put('PARENTHESIZED_LATIN_CAPITAL_LETTER_O, 'codepoint, 0x1F11E);
24888put('PARENTHESIZED_LATIN_CAPITAL_LETTER_P, 'codepoint, 0x1F11F);
24889put('PARENTHESIZED_LATIN_CAPITAL_LETTER_Q, 'codepoint, 0x1F120);
24890put('PARENTHESIZED_LATIN_CAPITAL_LETTER_R, 'codepoint, 0x1F121);
24891put('PARENTHESIZED_LATIN_CAPITAL_LETTER_S, 'codepoint, 0x1F122);
24892put('PARENTHESIZED_LATIN_CAPITAL_LETTER_T, 'codepoint, 0x1F123);
24893put('PARENTHESIZED_LATIN_CAPITAL_LETTER_U, 'codepoint, 0x1F124);
24894put('PARENTHESIZED_LATIN_CAPITAL_LETTER_V, 'codepoint, 0x1F125);
24895put('PARENTHESIZED_LATIN_CAPITAL_LETTER_W, 'codepoint, 0x1F126);
24896put('PARENTHESIZED_LATIN_CAPITAL_LETTER_X, 'codepoint, 0x1F127);
24897put('PARENTHESIZED_LATIN_CAPITAL_LETTER_Y, 'codepoint, 0x1F128);
24898put('PARENTHESIZED_LATIN_CAPITAL_LETTER_Z, 'codepoint, 0x1F129);
24899put('TORTOISE_SHELL_BRACKETED_LATIN_CAPITAL_LETTER_S, 'codepoint, 0x1F12A);
24900put('CIRCLED_ITALIC_LATIN_CAPITAL_LETTER_C, 'codepoint, 0x1F12B);
24901put('CIRCLED_ITALIC_LATIN_CAPITAL_LETTER_R, 'codepoint, 0x1F12C);
24902put('CIRCLED_CD, 'codepoint, 0x1F12D);
24903put('CIRCLED_WZ, 'codepoint, 0x1F12E);
24904put('SQUARED_LATIN_CAPITAL_LETTER_A, 'codepoint, 0x1F130);
24905put('SQUARED_LATIN_CAPITAL_LETTER_B, 'codepoint, 0x1F131);
24906put('SQUARED_LATIN_CAPITAL_LETTER_C, 'codepoint, 0x1F132);
24907put('SQUARED_LATIN_CAPITAL_LETTER_D, 'codepoint, 0x1F133);
24908put('SQUARED_LATIN_CAPITAL_LETTER_E, 'codepoint, 0x1F134);
24909put('SQUARED_LATIN_CAPITAL_LETTER_F, 'codepoint, 0x1F135);
24910put('SQUARED_LATIN_CAPITAL_LETTER_G, 'codepoint, 0x1F136);
24911put('SQUARED_LATIN_CAPITAL_LETTER_H, 'codepoint, 0x1F137);
24912put('SQUARED_LATIN_CAPITAL_LETTER_I, 'codepoint, 0x1F138);
24913put('SQUARED_LATIN_CAPITAL_LETTER_J, 'codepoint, 0x1F139);
24914put('SQUARED_LATIN_CAPITAL_LETTER_K, 'codepoint, 0x1F13A);
24915put('SQUARED_LATIN_CAPITAL_LETTER_L, 'codepoint, 0x1F13B);
24916put('SQUARED_LATIN_CAPITAL_LETTER_M, 'codepoint, 0x1F13C);
24917put('SQUARED_LATIN_CAPITAL_LETTER_N, 'codepoint, 0x1F13D);
24918put('SQUARED_LATIN_CAPITAL_LETTER_O, 'codepoint, 0x1F13E);
24919put('SQUARED_LATIN_CAPITAL_LETTER_P, 'codepoint, 0x1F13F);
24920put('SQUARED_LATIN_CAPITAL_LETTER_Q, 'codepoint, 0x1F140);
24921put('SQUARED_LATIN_CAPITAL_LETTER_R, 'codepoint, 0x1F141);
24922put('SQUARED_LATIN_CAPITAL_LETTER_S, 'codepoint, 0x1F142);
24923put('SQUARED_LATIN_CAPITAL_LETTER_T, 'codepoint, 0x1F143);
24924put('SQUARED_LATIN_CAPITAL_LETTER_U, 'codepoint, 0x1F144);
24925put('SQUARED_LATIN_CAPITAL_LETTER_V, 'codepoint, 0x1F145);
24926put('SQUARED_LATIN_CAPITAL_LETTER_W, 'codepoint, 0x1F146);
24927put('SQUARED_LATIN_CAPITAL_LETTER_X, 'codepoint, 0x1F147);
24928put('SQUARED_LATIN_CAPITAL_LETTER_Y, 'codepoint, 0x1F148);
24929put('SQUARED_LATIN_CAPITAL_LETTER_Z, 'codepoint, 0x1F149);
24930put('SQUARED_HV, 'codepoint, 0x1F14A);
24931put('SQUARED_MV, 'codepoint, 0x1F14B);
24932put('SQUARED_SD, 'codepoint, 0x1F14C);
24933put('SQUARED_SS, 'codepoint, 0x1F14D);
24934put('SQUARED_PPV, 'codepoint, 0x1F14E);
24935put('SQUARED_WC, 'codepoint, 0x1F14F);
24936put('NEGATIVE_CIRCLED_LATIN_CAPITAL_LETTER_A, 'codepoint, 0x1F150);
24937put('NEGATIVE_CIRCLED_LATIN_CAPITAL_LETTER_B, 'codepoint, 0x1F151);
24938put('NEGATIVE_CIRCLED_LATIN_CAPITAL_LETTER_C, 'codepoint, 0x1F152);
24939put('NEGATIVE_CIRCLED_LATIN_CAPITAL_LETTER_D, 'codepoint, 0x1F153);
24940put('NEGATIVE_CIRCLED_LATIN_CAPITAL_LETTER_E, 'codepoint, 0x1F154);
24941put('NEGATIVE_CIRCLED_LATIN_CAPITAL_LETTER_F, 'codepoint, 0x1F155);
24942put('NEGATIVE_CIRCLED_LATIN_CAPITAL_LETTER_G, 'codepoint, 0x1F156);
24943put('NEGATIVE_CIRCLED_LATIN_CAPITAL_LETTER_H, 'codepoint, 0x1F157);
24944put('NEGATIVE_CIRCLED_LATIN_CAPITAL_LETTER_I, 'codepoint, 0x1F158);
24945put('NEGATIVE_CIRCLED_LATIN_CAPITAL_LETTER_J, 'codepoint, 0x1F159);
24946put('NEGATIVE_CIRCLED_LATIN_CAPITAL_LETTER_K, 'codepoint, 0x1F15A);
24947put('NEGATIVE_CIRCLED_LATIN_CAPITAL_LETTER_L, 'codepoint, 0x1F15B);
24948put('NEGATIVE_CIRCLED_LATIN_CAPITAL_LETTER_M, 'codepoint, 0x1F15C);
24949put('NEGATIVE_CIRCLED_LATIN_CAPITAL_LETTER_N, 'codepoint, 0x1F15D);
24950put('NEGATIVE_CIRCLED_LATIN_CAPITAL_LETTER_O, 'codepoint, 0x1F15E);
24951put('NEGATIVE_CIRCLED_LATIN_CAPITAL_LETTER_P, 'codepoint, 0x1F15F);
24952put('NEGATIVE_CIRCLED_LATIN_CAPITAL_LETTER_Q, 'codepoint, 0x1F160);
24953put('NEGATIVE_CIRCLED_LATIN_CAPITAL_LETTER_R, 'codepoint, 0x1F161);
24954put('NEGATIVE_CIRCLED_LATIN_CAPITAL_LETTER_S, 'codepoint, 0x1F162);
24955put('NEGATIVE_CIRCLED_LATIN_CAPITAL_LETTER_T, 'codepoint, 0x1F163);
24956put('NEGATIVE_CIRCLED_LATIN_CAPITAL_LETTER_U, 'codepoint, 0x1F164);
24957put('NEGATIVE_CIRCLED_LATIN_CAPITAL_LETTER_V, 'codepoint, 0x1F165);
24958put('NEGATIVE_CIRCLED_LATIN_CAPITAL_LETTER_W, 'codepoint, 0x1F166);
24959put('NEGATIVE_CIRCLED_LATIN_CAPITAL_LETTER_X, 'codepoint, 0x1F167);
24960put('NEGATIVE_CIRCLED_LATIN_CAPITAL_LETTER_Y, 'codepoint, 0x1F168);
24961put('NEGATIVE_CIRCLED_LATIN_CAPITAL_LETTER_Z, 'codepoint, 0x1F169);
24962put('RAISED_MC_SIGN, 'codepoint, 0x1F16A);
24963put('RAISED_MD_SIGN, 'codepoint, 0x1F16B);
24964put('NEGATIVE_SQUARED_LATIN_CAPITAL_LETTER_A, 'codepoint, 0x1F170);
24965put('NEGATIVE_SQUARED_LATIN_CAPITAL_LETTER_B, 'codepoint, 0x1F171);
24966put('NEGATIVE_SQUARED_LATIN_CAPITAL_LETTER_C, 'codepoint, 0x1F172);
24967put('NEGATIVE_SQUARED_LATIN_CAPITAL_LETTER_D, 'codepoint, 0x1F173);
24968put('NEGATIVE_SQUARED_LATIN_CAPITAL_LETTER_E, 'codepoint, 0x1F174);
24969put('NEGATIVE_SQUARED_LATIN_CAPITAL_LETTER_F, 'codepoint, 0x1F175);
24970put('NEGATIVE_SQUARED_LATIN_CAPITAL_LETTER_G, 'codepoint, 0x1F176);
24971put('NEGATIVE_SQUARED_LATIN_CAPITAL_LETTER_H, 'codepoint, 0x1F177);
24972put('NEGATIVE_SQUARED_LATIN_CAPITAL_LETTER_I, 'codepoint, 0x1F178);
24973put('NEGATIVE_SQUARED_LATIN_CAPITAL_LETTER_J, 'codepoint, 0x1F179);
24974put('NEGATIVE_SQUARED_LATIN_CAPITAL_LETTER_K, 'codepoint, 0x1F17A);
24975put('NEGATIVE_SQUARED_LATIN_CAPITAL_LETTER_L, 'codepoint, 0x1F17B);
24976put('NEGATIVE_SQUARED_LATIN_CAPITAL_LETTER_M, 'codepoint, 0x1F17C);
24977put('NEGATIVE_SQUARED_LATIN_CAPITAL_LETTER_N, 'codepoint, 0x1F17D);
24978put('NEGATIVE_SQUARED_LATIN_CAPITAL_LETTER_O, 'codepoint, 0x1F17E);
24979put('NEGATIVE_SQUARED_LATIN_CAPITAL_LETTER_P, 'codepoint, 0x1F17F);
24980put('NEGATIVE_SQUARED_LATIN_CAPITAL_LETTER_Q, 'codepoint, 0x1F180);
24981put('NEGATIVE_SQUARED_LATIN_CAPITAL_LETTER_R, 'codepoint, 0x1F181);
24982put('NEGATIVE_SQUARED_LATIN_CAPITAL_LETTER_S, 'codepoint, 0x1F182);
24983put('NEGATIVE_SQUARED_LATIN_CAPITAL_LETTER_T, 'codepoint, 0x1F183);
24984put('NEGATIVE_SQUARED_LATIN_CAPITAL_LETTER_U, 'codepoint, 0x1F184);
24985put('NEGATIVE_SQUARED_LATIN_CAPITAL_LETTER_V, 'codepoint, 0x1F185);
24986put('NEGATIVE_SQUARED_LATIN_CAPITAL_LETTER_W, 'codepoint, 0x1F186);
24987put('NEGATIVE_SQUARED_LATIN_CAPITAL_LETTER_X, 'codepoint, 0x1F187);
24988put('NEGATIVE_SQUARED_LATIN_CAPITAL_LETTER_Y, 'codepoint, 0x1F188);
24989put('NEGATIVE_SQUARED_LATIN_CAPITAL_LETTER_Z, 'codepoint, 0x1F189);
24990put('CROSSED_NEGATIVE_SQUARED_LATIN_CAPITAL_LETTER_P, 'codepoint, 0x1F18A);
24991put('NEGATIVE_SQUARED_IC, 'codepoint, 0x1F18B);
24992put('NEGATIVE_SQUARED_PA, 'codepoint, 0x1F18C);
24993put('NEGATIVE_SQUARED_SA, 'codepoint, 0x1F18D);
24994put('NEGATIVE_SQUARED_AB, 'codepoint, 0x1F18E);
24995put('NEGATIVE_SQUARED_WC, 'codepoint, 0x1F18F);
24996put('SQUARE_DJ, 'codepoint, 0x1F190);
24997put('SQUARED_CL, 'codepoint, 0x1F191);
24998put('SQUARED_COOL, 'codepoint, 0x1F192);
24999put('SQUARED_FREE, 'codepoint, 0x1F193);
25000put('SQUARED_ID, 'codepoint, 0x1F194);
25001put('SQUARED_NEW, 'codepoint, 0x1F195);
25002put('SQUARED_NG, 'codepoint, 0x1F196);
25003put('SQUARED_OK, 'codepoint, 0x1F197);
25004put('SQUARED_SOS, 'codepoint, 0x1F198);
25005put('SQUARED_UP_WITH_EXCLAMATION_MARK, 'codepoint, 0x1F199);
25006put('SQUARED_VS, 'codepoint, 0x1F19A);
25007put('REGIONAL_INDICATOR_SYMBOL_LETTER_A, 'codepoint, 0x1F1E6);
25008put('REGIONAL_INDICATOR_SYMBOL_LETTER_B, 'codepoint, 0x1F1E7);
25009put('REGIONAL_INDICATOR_SYMBOL_LETTER_C, 'codepoint, 0x1F1E8);
25010put('REGIONAL_INDICATOR_SYMBOL_LETTER_D, 'codepoint, 0x1F1E9);
25011put('REGIONAL_INDICATOR_SYMBOL_LETTER_E, 'codepoint, 0x1F1EA);
25012put('REGIONAL_INDICATOR_SYMBOL_LETTER_F, 'codepoint, 0x1F1EB);
25013put('REGIONAL_INDICATOR_SYMBOL_LETTER_G, 'codepoint, 0x1F1EC);
25014put('REGIONAL_INDICATOR_SYMBOL_LETTER_H, 'codepoint, 0x1F1ED);
25015put('REGIONAL_INDICATOR_SYMBOL_LETTER_I, 'codepoint, 0x1F1EE);
25016put('REGIONAL_INDICATOR_SYMBOL_LETTER_J, 'codepoint, 0x1F1EF);
25017put('REGIONAL_INDICATOR_SYMBOL_LETTER_K, 'codepoint, 0x1F1F0);
25018put('REGIONAL_INDICATOR_SYMBOL_LETTER_L, 'codepoint, 0x1F1F1);
25019put('REGIONAL_INDICATOR_SYMBOL_LETTER_M, 'codepoint, 0x1F1F2);
25020put('REGIONAL_INDICATOR_SYMBOL_LETTER_N, 'codepoint, 0x1F1F3);
25021put('REGIONAL_INDICATOR_SYMBOL_LETTER_O, 'codepoint, 0x1F1F4);
25022put('REGIONAL_INDICATOR_SYMBOL_LETTER_P, 'codepoint, 0x1F1F5);
25023put('REGIONAL_INDICATOR_SYMBOL_LETTER_Q, 'codepoint, 0x1F1F6);
25024put('REGIONAL_INDICATOR_SYMBOL_LETTER_R, 'codepoint, 0x1F1F7);
25025put('REGIONAL_INDICATOR_SYMBOL_LETTER_S, 'codepoint, 0x1F1F8);
25026put('REGIONAL_INDICATOR_SYMBOL_LETTER_T, 'codepoint, 0x1F1F9);
25027put('REGIONAL_INDICATOR_SYMBOL_LETTER_U, 'codepoint, 0x1F1FA);
25028put('REGIONAL_INDICATOR_SYMBOL_LETTER_V, 'codepoint, 0x1F1FB);
25029put('REGIONAL_INDICATOR_SYMBOL_LETTER_W, 'codepoint, 0x1F1FC);
25030put('REGIONAL_INDICATOR_SYMBOL_LETTER_X, 'codepoint, 0x1F1FD);
25031put('REGIONAL_INDICATOR_SYMBOL_LETTER_Y, 'codepoint, 0x1F1FE);
25032put('REGIONAL_INDICATOR_SYMBOL_LETTER_Z, 'codepoint, 0x1F1FF);
25033put('SQUARE_HIRAGANA_HOKA, 'codepoint, 0x1F200);
25034put('SQUARED_KATAKANA_KOKO, 'codepoint, 0x1F201);
25035put('SQUARED_KATAKANA_SA, 'codepoint, 0x1F202);
25036put('SQUARED_CJK_UNIFIED_IDEOGRAPH_624B, 'codepoint, 0x1F210);
25037put('SQUARED_CJK_UNIFIED_IDEOGRAPH_5B57, 'codepoint, 0x1F211);
25038put('SQUARED_CJK_UNIFIED_IDEOGRAPH_53CC, 'codepoint, 0x1F212);
25039put('SQUARED_KATAKANA_DE, 'codepoint, 0x1F213);
25040put('SQUARED_CJK_UNIFIED_IDEOGRAPH_4E8C, 'codepoint, 0x1F214);
25041put('SQUARED_CJK_UNIFIED_IDEOGRAPH_591A, 'codepoint, 0x1F215);
25042put('SQUARED_CJK_UNIFIED_IDEOGRAPH_89E3, 'codepoint, 0x1F216);
25043put('SQUARED_CJK_UNIFIED_IDEOGRAPH_5929, 'codepoint, 0x1F217);
25044put('SQUARED_CJK_UNIFIED_IDEOGRAPH_4EA4, 'codepoint, 0x1F218);
25045put('SQUARED_CJK_UNIFIED_IDEOGRAPH_6620, 'codepoint, 0x1F219);
25046put('SQUARED_CJK_UNIFIED_IDEOGRAPH_7121, 'codepoint, 0x1F21A);
25047put('SQUARED_CJK_UNIFIED_IDEOGRAPH_6599, 'codepoint, 0x1F21B);
25048put('SQUARED_CJK_UNIFIED_IDEOGRAPH_524D, 'codepoint, 0x1F21C);
25049put('SQUARED_CJK_UNIFIED_IDEOGRAPH_5F8C, 'codepoint, 0x1F21D);
25050put('SQUARED_CJK_UNIFIED_IDEOGRAPH_518D, 'codepoint, 0x1F21E);
25051put('SQUARED_CJK_UNIFIED_IDEOGRAPH_65B0, 'codepoint, 0x1F21F);
25052put('SQUARED_CJK_UNIFIED_IDEOGRAPH_521D, 'codepoint, 0x1F220);
25053put('SQUARED_CJK_UNIFIED_IDEOGRAPH_7D42, 'codepoint, 0x1F221);
25054put('SQUARED_CJK_UNIFIED_IDEOGRAPH_751F, 'codepoint, 0x1F222);
25055put('SQUARED_CJK_UNIFIED_IDEOGRAPH_8CA9, 'codepoint, 0x1F223);
25056put('SQUARED_CJK_UNIFIED_IDEOGRAPH_58F0, 'codepoint, 0x1F224);
25057put('SQUARED_CJK_UNIFIED_IDEOGRAPH_5439, 'codepoint, 0x1F225);
25058put('SQUARED_CJK_UNIFIED_IDEOGRAPH_6F14, 'codepoint, 0x1F226);
25059put('SQUARED_CJK_UNIFIED_IDEOGRAPH_6295, 'codepoint, 0x1F227);
25060put('SQUARED_CJK_UNIFIED_IDEOGRAPH_6355, 'codepoint, 0x1F228);
25061put('SQUARED_CJK_UNIFIED_IDEOGRAPH_4E00, 'codepoint, 0x1F229);
25062put('SQUARED_CJK_UNIFIED_IDEOGRAPH_4E09, 'codepoint, 0x1F22A);
25063put('SQUARED_CJK_UNIFIED_IDEOGRAPH_904A, 'codepoint, 0x1F22B);
25064put('SQUARED_CJK_UNIFIED_IDEOGRAPH_5DE6, 'codepoint, 0x1F22C);
25065put('SQUARED_CJK_UNIFIED_IDEOGRAPH_4E2D, 'codepoint, 0x1F22D);
25066put('SQUARED_CJK_UNIFIED_IDEOGRAPH_53F3, 'codepoint, 0x1F22E);
25067put('SQUARED_CJK_UNIFIED_IDEOGRAPH_6307, 'codepoint, 0x1F22F);
25068put('SQUARED_CJK_UNIFIED_IDEOGRAPH_8D70, 'codepoint, 0x1F230);
25069put('SQUARED_CJK_UNIFIED_IDEOGRAPH_6253, 'codepoint, 0x1F231);
25070put('SQUARED_CJK_UNIFIED_IDEOGRAPH_7981, 'codepoint, 0x1F232);
25071put('SQUARED_CJK_UNIFIED_IDEOGRAPH_7A7A, 'codepoint, 0x1F233);
25072put('SQUARED_CJK_UNIFIED_IDEOGRAPH_5408, 'codepoint, 0x1F234);
25073put('SQUARED_CJK_UNIFIED_IDEOGRAPH_6E80, 'codepoint, 0x1F235);
25074put('SQUARED_CJK_UNIFIED_IDEOGRAPH_6709, 'codepoint, 0x1F236);
25075put('SQUARED_CJK_UNIFIED_IDEOGRAPH_6708, 'codepoint, 0x1F237);
25076put('SQUARED_CJK_UNIFIED_IDEOGRAPH_7533, 'codepoint, 0x1F238);
25077put('SQUARED_CJK_UNIFIED_IDEOGRAPH_5272, 'codepoint, 0x1F239);
25078put('SQUARED_CJK_UNIFIED_IDEOGRAPH_55B6, 'codepoint, 0x1F23A);
25079put('TORTOISE_SHELL_BRACKETED_CJK_UNIFIED_IDEOGRAPH_672C, 'codepoint, 0x1F240);
25080put('TORTOISE_SHELL_BRACKETED_CJK_UNIFIED_IDEOGRAPH_4E09, 'codepoint, 0x1F241);
25081put('TORTOISE_SHELL_BRACKETED_CJK_UNIFIED_IDEOGRAPH_4E8C, 'codepoint, 0x1F242);
25082put('TORTOISE_SHELL_BRACKETED_CJK_UNIFIED_IDEOGRAPH_5B89, 'codepoint, 0x1F243);
25083put('TORTOISE_SHELL_BRACKETED_CJK_UNIFIED_IDEOGRAPH_70B9, 'codepoint, 0x1F244);
25084put('TORTOISE_SHELL_BRACKETED_CJK_UNIFIED_IDEOGRAPH_6253, 'codepoint, 0x1F245);
25085put('TORTOISE_SHELL_BRACKETED_CJK_UNIFIED_IDEOGRAPH_76D7, 'codepoint, 0x1F246);
25086put('TORTOISE_SHELL_BRACKETED_CJK_UNIFIED_IDEOGRAPH_52DD, 'codepoint, 0x1F247);
25087put('TORTOISE_SHELL_BRACKETED_CJK_UNIFIED_IDEOGRAPH_6557, 'codepoint, 0x1F248);
25088put('CIRCLED_IDEOGRAPH_ADVANTAGE, 'codepoint, 0x1F250);
25089put('CIRCLED_IDEOGRAPH_ACCEPT, 'codepoint, 0x1F251);
25090put('CYCLONE, 'codepoint, 0x1F300);
25091put('FOGGY, 'codepoint, 0x1F301);
25092put('CLOSED_UMBRELLA, 'codepoint, 0x1F302);
25093put('NIGHT_WITH_STARS, 'codepoint, 0x1F303);
25094put('SUNRISE_OVER_MOUNTAINS, 'codepoint, 0x1F304);
25095put('SUNRISE, 'codepoint, 0x1F305);
25096put('CITYSCAPE_AT_DUSK, 'codepoint, 0x1F306);
25097put('SUNSET_OVER_BUILDINGS, 'codepoint, 0x1F307);
25098put('RAINBOW, 'codepoint, 0x1F308);
25099put('BRIDGE_AT_NIGHT, 'codepoint, 0x1F309);
25100put('WATER_WAVE, 'codepoint, 0x1F30A);
25101put('VOLCANO, 'codepoint, 0x1F30B);
25102put('MILKY_WAY, 'codepoint, 0x1F30C);
25103put('EARTH_GLOBE_EUROPE_AFRICA, 'codepoint, 0x1F30D);
25104put('EARTH_GLOBE_AMERICAS, 'codepoint, 0x1F30E);
25105put('EARTH_GLOBE_ASIA_AUSTRALIA, 'codepoint, 0x1F30F);
25106put('GLOBE_WITH_MERIDIANS, 'codepoint, 0x1F310);
25107put('NEW_MOON_SYMBOL, 'codepoint, 0x1F311);
25108put('WAXING_CRESCENT_MOON_SYMBOL, 'codepoint, 0x1F312);
25109put('FIRST_QUARTER_MOON_SYMBOL, 'codepoint, 0x1F313);
25110put('WAXING_GIBBOUS_MOON_SYMBOL, 'codepoint, 0x1F314);
25111put('FULL_MOON_SYMBOL, 'codepoint, 0x1F315);
25112put('WANING_GIBBOUS_MOON_SYMBOL, 'codepoint, 0x1F316);
25113put('LAST_QUARTER_MOON_SYMBOL, 'codepoint, 0x1F317);
25114put('WANING_CRESCENT_MOON_SYMBOL, 'codepoint, 0x1F318);
25115put('CRESCENT_MOON, 'codepoint, 0x1F319);
25116put('NEW_MOON_WITH_FACE, 'codepoint, 0x1F31A);
25117put('FIRST_QUARTER_MOON_WITH_FACE, 'codepoint, 0x1F31B);
25118put('LAST_QUARTER_MOON_WITH_FACE, 'codepoint, 0x1F31C);
25119put('FULL_MOON_WITH_FACE, 'codepoint, 0x1F31D);
25120put('SUN_WITH_FACE, 'codepoint, 0x1F31E);
25121put('GLOWING_STAR, 'codepoint, 0x1F31F);
25122put('SHOOTING_STAR, 'codepoint, 0x1F320);
25123put('THERMOMETER, 'codepoint, 0x1F321);
25124put('BLACK_DROPLET, 'codepoint, 0x1F322);
25125put('WHITE_SUN, 'codepoint, 0x1F323);
25126put('WHITE_SUN_WITH_SMALL_CLOUD, 'codepoint, 0x1F324);
25127put('WHITE_SUN_BEHIND_CLOUD, 'codepoint, 0x1F325);
25128put('WHITE_SUN_BEHIND_CLOUD_WITH_RAIN, 'codepoint, 0x1F326);
25129put('CLOUD_WITH_RAIN, 'codepoint, 0x1F327);
25130put('CLOUD_WITH_SNOW, 'codepoint, 0x1F328);
25131put('CLOUD_WITH_LIGHTNING, 'codepoint, 0x1F329);
25132put('CLOUD_WITH_TORNADO, 'codepoint, 0x1F32A);
25133put('FOG, 'codepoint, 0x1F32B);
25134put('WIND_BLOWING_FACE, 'codepoint, 0x1F32C);
25135put('CHESTNUT, 'codepoint, 0x1F330);
25136put('SEEDLING, 'codepoint, 0x1F331);
25137put('EVERGREEN_TREE, 'codepoint, 0x1F332);
25138put('DECIDUOUS_TREE, 'codepoint, 0x1F333);
25139put('PALM_TREE, 'codepoint, 0x1F334);
25140put('CACTUS, 'codepoint, 0x1F335);
25141put('HOT_PEPPER, 'codepoint, 0x1F336);
25142put('TULIP, 'codepoint, 0x1F337);
25143put('CHERRY_BLOSSOM, 'codepoint, 0x1F338);
25144put('ROSE, 'codepoint, 0x1F339);
25145put('HIBISCUS, 'codepoint, 0x1F33A);
25146put('SUNFLOWER, 'codepoint, 0x1F33B);
25147put('BLOSSOM, 'codepoint, 0x1F33C);
25148put('EAR_OF_MAIZE, 'codepoint, 0x1F33D);
25149put('EAR_OF_RICE, 'codepoint, 0x1F33E);
25150put('HERB, 'codepoint, 0x1F33F);
25151put('FOUR_LEAF_CLOVER, 'codepoint, 0x1F340);
25152put('MAPLE_LEAF, 'codepoint, 0x1F341);
25153put('FALLEN_LEAF, 'codepoint, 0x1F342);
25154put('LEAF_FLUTTERING_IN_WIND, 'codepoint, 0x1F343);
25155put('MUSHROOM, 'codepoint, 0x1F344);
25156put('TOMATO, 'codepoint, 0x1F345);
25157put('AUBERGINE, 'codepoint, 0x1F346);
25158put('GRAPES, 'codepoint, 0x1F347);
25159put('MELON, 'codepoint, 0x1F348);
25160put('WATERMELON, 'codepoint, 0x1F349);
25161put('TANGERINE, 'codepoint, 0x1F34A);
25162put('LEMON, 'codepoint, 0x1F34B);
25163put('BANANA, 'codepoint, 0x1F34C);
25164put('PINEAPPLE, 'codepoint, 0x1F34D);
25165put('RED_APPLE, 'codepoint, 0x1F34E);
25166put('GREEN_APPLE, 'codepoint, 0x1F34F);
25167put('PEAR, 'codepoint, 0x1F350);
25168put('PEACH, 'codepoint, 0x1F351);
25169put('CHERRIES, 'codepoint, 0x1F352);
25170put('STRAWBERRY, 'codepoint, 0x1F353);
25171put('HAMBURGER, 'codepoint, 0x1F354);
25172put('SLICE_OF_PIZZA, 'codepoint, 0x1F355);
25173put('MEAT_ON_BONE, 'codepoint, 0x1F356);
25174put('POULTRY_LEG, 'codepoint, 0x1F357);
25175put('RICE_CRACKER, 'codepoint, 0x1F358);
25176put('RICE_BALL, 'codepoint, 0x1F359);
25177put('COOKED_RICE, 'codepoint, 0x1F35A);
25178put('CURRY_AND_RICE, 'codepoint, 0x1F35B);
25179put('STEAMING_BOWL, 'codepoint, 0x1F35C);
25180put('SPAGHETTI, 'codepoint, 0x1F35D);
25181put('BREAD, 'codepoint, 0x1F35E);
25182put('FRENCH_FRIES, 'codepoint, 0x1F35F);
25183put('ROASTED_SWEET_POTATO, 'codepoint, 0x1F360);
25184put('DANGO, 'codepoint, 0x1F361);
25185put('ODEN, 'codepoint, 0x1F362);
25186put('SUSHI, 'codepoint, 0x1F363);
25187put('FRIED_SHRIMP, 'codepoint, 0x1F364);
25188put('FISH_CAKE_WITH_SWIRL_DESIGN, 'codepoint, 0x1F365);
25189put('SOFT_ICE_CREAM, 'codepoint, 0x1F366);
25190put('SHAVED_ICE, 'codepoint, 0x1F367);
25191put('ICE_CREAM, 'codepoint, 0x1F368);
25192put('DOUGHNUT, 'codepoint, 0x1F369);
25193put('COOKIE, 'codepoint, 0x1F36A);
25194put('CHOCOLATE_BAR, 'codepoint, 0x1F36B);
25195put('CANDY, 'codepoint, 0x1F36C);
25196put('LOLLIPOP, 'codepoint, 0x1F36D);
25197put('CUSTARD, 'codepoint, 0x1F36E);
25198put('HONEY_POT, 'codepoint, 0x1F36F);
25199put('SHORTCAKE, 'codepoint, 0x1F370);
25200put('BENTO_BOX, 'codepoint, 0x1F371);
25201put('POT_OF_FOOD, 'codepoint, 0x1F372);
25202put('COOKING, 'codepoint, 0x1F373);
25203put('FORK_AND_KNIFE, 'codepoint, 0x1F374);
25204put('TEACUP_WITHOUT_HANDLE, 'codepoint, 0x1F375);
25205put('SAKE_BOTTLE_AND_CUP, 'codepoint, 0x1F376);
25206put('WINE_GLASS, 'codepoint, 0x1F377);
25207put('COCKTAIL_GLASS, 'codepoint, 0x1F378);
25208put('TROPICAL_DRINK, 'codepoint, 0x1F379);
25209put('BEER_MUG, 'codepoint, 0x1F37A);
25210put('CLINKING_BEER_MUGS, 'codepoint, 0x1F37B);
25211put('BABY_BOTTLE, 'codepoint, 0x1F37C);
25212put('FORK_AND_KNIFE_WITH_PLATE, 'codepoint, 0x1F37D);
25213put('RIBBON, 'codepoint, 0x1F380);
25214put('WRAPPED_PRESENT, 'codepoint, 0x1F381);
25215put('BIRTHDAY_CAKE, 'codepoint, 0x1F382);
25216put('JACK_O_LANTERN, 'codepoint, 0x1F383);
25217put('CHRISTMAS_TREE, 'codepoint, 0x1F384);
25218put('FATHER_CHRISTMAS, 'codepoint, 0x1F385);
25219put('FIREWORKS, 'codepoint, 0x1F386);
25220put('FIREWORK_SPARKLER, 'codepoint, 0x1F387);
25221put('BALLOON, 'codepoint, 0x1F388);
25222put('PARTY_POPPER, 'codepoint, 0x1F389);
25223put('CONFETTI_BALL, 'codepoint, 0x1F38A);
25224put('TANABATA_TREE, 'codepoint, 0x1F38B);
25225put('CROSSED_FLAGS, 'codepoint, 0x1F38C);
25226put('PINE_DECORATION, 'codepoint, 0x1F38D);
25227put('JAPANESE_DOLLS, 'codepoint, 0x1F38E);
25228put('CARP_STREAMER, 'codepoint, 0x1F38F);
25229put('WIND_CHIME, 'codepoint, 0x1F390);
25230put('MOON_VIEWING_CEREMONY, 'codepoint, 0x1F391);
25231put('SCHOOL_SATCHEL, 'codepoint, 0x1F392);
25232put('GRADUATION_CAP, 'codepoint, 0x1F393);
25233put('HEART_WITH_TIP_ON_THE_LEFT, 'codepoint, 0x1F394);
25234put('BOUQUET_OF_FLOWERS, 'codepoint, 0x1F395);
25235put('MILITARY_MEDAL, 'codepoint, 0x1F396);
25236put('REMINDER_RIBBON, 'codepoint, 0x1F397);
25237put('MUSICAL_KEYBOARD_WITH_JACKS, 'codepoint, 0x1F398);
25238put('STUDIO_MICROPHONE, 'codepoint, 0x1F399);
25239put('LEVEL_SLIDER, 'codepoint, 0x1F39A);
25240put('CONTROL_KNOBS, 'codepoint, 0x1F39B);
25241put('BEAMED_ASCENDING_MUSICAL_NOTES, 'codepoint, 0x1F39C);
25242put('BEAMED_DESCENDING_MUSICAL_NOTES, 'codepoint, 0x1F39D);
25243put('FILM_FRAMES, 'codepoint, 0x1F39E);
25244put('ADMISSION_TICKETS, 'codepoint, 0x1F39F);
25245put('CAROUSEL_HORSE, 'codepoint, 0x1F3A0);
25246put('FERRIS_WHEEL, 'codepoint, 0x1F3A1);
25247put('ROLLER_COASTER, 'codepoint, 0x1F3A2);
25248put('FISHING_POLE_AND_FISH, 'codepoint, 0x1F3A3);
25249put('MICROPHONE, 'codepoint, 0x1F3A4);
25250put('MOVIE_CAMERA, 'codepoint, 0x1F3A5);
25251put('CINEMA, 'codepoint, 0x1F3A6);
25252put('HEADPHONE, 'codepoint, 0x1F3A7);
25253put('ARTIST_PALETTE, 'codepoint, 0x1F3A8);
25254put('TOP_HAT, 'codepoint, 0x1F3A9);
25255put('CIRCUS_TENT, 'codepoint, 0x1F3AA);
25256put('TICKET, 'codepoint, 0x1F3AB);
25257put('CLAPPER_BOARD, 'codepoint, 0x1F3AC);
25258put('PERFORMING_ARTS, 'codepoint, 0x1F3AD);
25259put('VIDEO_GAME, 'codepoint, 0x1F3AE);
25260put('DIRECT_HIT, 'codepoint, 0x1F3AF);
25261put('SLOT_MACHINE, 'codepoint, 0x1F3B0);
25262put('BILLIARDS, 'codepoint, 0x1F3B1);
25263put('GAME_DIE, 'codepoint, 0x1F3B2);
25264put('BOWLING, 'codepoint, 0x1F3B3);
25265put('FLOWER_PLAYING_CARDS, 'codepoint, 0x1F3B4);
25266put('MUSICAL_NOTE, 'codepoint, 0x1F3B5);
25267put('MULTIPLE_MUSICAL_NOTES, 'codepoint, 0x1F3B6);
25268put('SAXOPHONE, 'codepoint, 0x1F3B7);
25269put('GUITAR, 'codepoint, 0x1F3B8);
25270put('MUSICAL_KEYBOARD, 'codepoint, 0x1F3B9);
25271put('TRUMPET, 'codepoint, 0x1F3BA);
25272put('VIOLIN, 'codepoint, 0x1F3BB);
25273put('MUSICAL_SCORE, 'codepoint, 0x1F3BC);
25274put('RUNNING_SHIRT_WITH_SASH, 'codepoint, 0x1F3BD);
25275put('TENNIS_RACQUET_AND_BALL, 'codepoint, 0x1F3BE);
25276put('SKI_AND_SKI_BOOT, 'codepoint, 0x1F3BF);
25277put('BASKETBALL_AND_HOOP, 'codepoint, 0x1F3C0);
25278put('CHEQUERED_FLAG, 'codepoint, 0x1F3C1);
25279put('SNOWBOARDER, 'codepoint, 0x1F3C2);
25280put('RUNNER, 'codepoint, 0x1F3C3);
25281put('SURFER, 'codepoint, 0x1F3C4);
25282put('SPORTS_MEDAL, 'codepoint, 0x1F3C5);
25283put('TROPHY, 'codepoint, 0x1F3C6);
25284put('HORSE_RACING, 'codepoint, 0x1F3C7);
25285put('AMERICAN_FOOTBALL, 'codepoint, 0x1F3C8);
25286put('RUGBY_FOOTBALL, 'codepoint, 0x1F3C9);
25287put('SWIMMER, 'codepoint, 0x1F3CA);
25288put('WEIGHT_LIFTER, 'codepoint, 0x1F3CB);
25289put('GOLFER, 'codepoint, 0x1F3CC);
25290put('RACING_MOTORCYCLE, 'codepoint, 0x1F3CD);
25291put('RACING_CAR, 'codepoint, 0x1F3CE);
25292put('SNOW_CAPPED_MOUNTAIN, 'codepoint, 0x1F3D4);
25293put('CAMPING, 'codepoint, 0x1F3D5);
25294put('BEACH_WITH_UMBRELLA, 'codepoint, 0x1F3D6);
25295put('BUILDING_CONSTRUCTION, 'codepoint, 0x1F3D7);
25296put('HOUSE_BUILDINGS, 'codepoint, 0x1F3D8);
25297put('CITYSCAPE, 'codepoint, 0x1F3D9);
25298put('DERELICT_HOUSE_BUILDING, 'codepoint, 0x1F3DA);
25299put('CLASSICAL_BUILDING, 'codepoint, 0x1F3DB);
25300put('DESERT, 'codepoint, 0x1F3DC);
25301put('DESERT_ISLAND, 'codepoint, 0x1F3DD);
25302put('NATIONAL_PARK, 'codepoint, 0x1F3DE);
25303put('STADIUM, 'codepoint, 0x1F3DF);
25304put('HOUSE_BUILDING, 'codepoint, 0x1F3E0);
25305put('HOUSE_WITH_GARDEN, 'codepoint, 0x1F3E1);
25306put('OFFICE_BUILDING, 'codepoint, 0x1F3E2);
25307put('JAPANESE_POST_OFFICE, 'codepoint, 0x1F3E3);
25308put('EUROPEAN_POST_OFFICE, 'codepoint, 0x1F3E4);
25309put('HOSPITAL, 'codepoint, 0x1F3E5);
25310put('BANK, 'codepoint, 0x1F3E6);
25311put('AUTOMATED_TELLER_MACHINE, 'codepoint, 0x1F3E7);
25312put('HOTEL, 'codepoint, 0x1F3E8);
25313put('LOVE_HOTEL, 'codepoint, 0x1F3E9);
25314put('CONVENIENCE_STORE, 'codepoint, 0x1F3EA);
25315put('SCHOOL, 'codepoint, 0x1F3EB);
25316put('DEPARTMENT_STORE, 'codepoint, 0x1F3EC);
25317put('FACTORY, 'codepoint, 0x1F3ED);
25318put('IZAKAYA_LANTERN, 'codepoint, 0x1F3EE);
25319put('JAPANESE_CASTLE, 'codepoint, 0x1F3EF);
25320put('EUROPEAN_CASTLE, 'codepoint, 0x1F3F0);
25321put('WHITE_PENNANT, 'codepoint, 0x1F3F1);
25322put('BLACK_PENNANT, 'codepoint, 0x1F3F2);
25323put('WAVING_WHITE_FLAG, 'codepoint, 0x1F3F3);
25324put('WAVING_BLACK_FLAG, 'codepoint, 0x1F3F4);
25325put('ROSETTE, 'codepoint, 0x1F3F5);
25326put('BLACK_ROSETTE, 'codepoint, 0x1F3F6);
25327put('LABEL, 'codepoint, 0x1F3F7);
25328put('RAT, 'codepoint, 0x1F400);
25329put('MOUSE, 'codepoint, 0x1F401);
25330put('OX, 'codepoint, 0x1F402);
25331put('WATER_BUFFALO, 'codepoint, 0x1F403);
25332put('COW, 'codepoint, 0x1F404);
25333put('TIGER, 'codepoint, 0x1F405);
25334put('LEOPARD, 'codepoint, 0x1F406);
25335put('RABBIT, 'codepoint, 0x1F407);
25336put('CAT, 'codepoint, 0x1F408);
25337put('DRAGON, 'codepoint, 0x1F409);
25338put('CROCODILE, 'codepoint, 0x1F40A);
25339put('WHALE, 'codepoint, 0x1F40B);
25340put('SNAIL, 'codepoint, 0x1F40C);
25341put('SNAKE, 'codepoint, 0x1F40D);
25342put('HORSE, 'codepoint, 0x1F40E);
25343put('RAM, 'codepoint, 0x1F40F);
25344put('GOAT, 'codepoint, 0x1F410);
25345put('SHEEP, 'codepoint, 0x1F411);
25346put('MONKEY, 'codepoint, 0x1F412);
25347put('ROOSTER, 'codepoint, 0x1F413);
25348put('CHICKEN, 'codepoint, 0x1F414);
25349put('DOG, 'codepoint, 0x1F415);
25350put('PIG, 'codepoint, 0x1F416);
25351put('BOAR, 'codepoint, 0x1F417);
25352put('ELEPHANT, 'codepoint, 0x1F418);
25353put('OCTOPUS, 'codepoint, 0x1F419);
25354put('SPIRAL_SHELL, 'codepoint, 0x1F41A);
25355put('BUG, 'codepoint, 0x1F41B);
25356put('ANT, 'codepoint, 0x1F41C);
25357put('HONEYBEE, 'codepoint, 0x1F41D);
25358put('LADY_BEETLE, 'codepoint, 0x1F41E);
25359put('FISH, 'codepoint, 0x1F41F);
25360put('TROPICAL_FISH, 'codepoint, 0x1F420);
25361put('BLOWFISH, 'codepoint, 0x1F421);
25362put('TURTLE, 'codepoint, 0x1F422);
25363put('HATCHING_CHICK, 'codepoint, 0x1F423);
25364put('BABY_CHICK, 'codepoint, 0x1F424);
25365put('FRONT_FACING_BABY_CHICK, 'codepoint, 0x1F425);
25366put('BIRD, 'codepoint, 0x1F426);
25367put('PENGUIN, 'codepoint, 0x1F427);
25368put('KOALA, 'codepoint, 0x1F428);
25369put('POODLE, 'codepoint, 0x1F429);
25370put('DROMEDARY_CAMEL, 'codepoint, 0x1F42A);
25371put('BACTRIAN_CAMEL, 'codepoint, 0x1F42B);
25372put('DOLPHIN, 'codepoint, 0x1F42C);
25373put('MOUSE_FACE, 'codepoint, 0x1F42D);
25374put('COW_FACE, 'codepoint, 0x1F42E);
25375put('TIGER_FACE, 'codepoint, 0x1F42F);
25376put('RABBIT_FACE, 'codepoint, 0x1F430);
25377put('CAT_FACE, 'codepoint, 0x1F431);
25378put('DRAGON_FACE, 'codepoint, 0x1F432);
25379put('SPOUTING_WHALE, 'codepoint, 0x1F433);
25380put('HORSE_FACE, 'codepoint, 0x1F434);
25381put('MONKEY_FACE, 'codepoint, 0x1F435);
25382put('DOG_FACE, 'codepoint, 0x1F436);
25383put('PIG_FACE, 'codepoint, 0x1F437);
25384put('FROG_FACE, 'codepoint, 0x1F438);
25385put('HAMSTER_FACE, 'codepoint, 0x1F439);
25386put('WOLF_FACE, 'codepoint, 0x1F43A);
25387put('BEAR_FACE, 'codepoint, 0x1F43B);
25388put('PANDA_FACE, 'codepoint, 0x1F43C);
25389put('PIG_NOSE, 'codepoint, 0x1F43D);
25390put('PAW_PRINTS, 'codepoint, 0x1F43E);
25391put('CHIPMUNK, 'codepoint, 0x1F43F);
25392put('EYES, 'codepoint, 0x1F440);
25393put('EYE, 'codepoint, 0x1F441);
25394put('EAR, 'codepoint, 0x1F442);
25395put('NOSE, 'codepoint, 0x1F443);
25396put('MOUTH, 'codepoint, 0x1F444);
25397put('TONGUE, 'codepoint, 0x1F445);
25398put('WHITE_UP_POINTING_BACKHAND_INDEX, 'codepoint, 0x1F446);
25399put('WHITE_DOWN_POINTING_BACKHAND_INDEX, 'codepoint, 0x1F447);
25400put('WHITE_LEFT_POINTING_BACKHAND_INDEX, 'codepoint, 0x1F448);
25401put('WHITE_RIGHT_POINTING_BACKHAND_INDEX, 'codepoint, 0x1F449);
25402put('FISTED_HAND_SIGN, 'codepoint, 0x1F44A);
25403put('WAVING_HAND_SIGN, 'codepoint, 0x1F44B);
25404put('OK_HAND_SIGN, 'codepoint, 0x1F44C);
25405put('THUMBS_UP_SIGN, 'codepoint, 0x1F44D);
25406put('THUMBS_DOWN_SIGN, 'codepoint, 0x1F44E);
25407put('CLAPPING_HANDS_SIGN, 'codepoint, 0x1F44F);
25408put('OPEN_HANDS_SIGN, 'codepoint, 0x1F450);
25409put('CROWN, 'codepoint, 0x1F451);
25410put('WOMANS_HAT, 'codepoint, 0x1F452);
25411put('EYEGLASSES, 'codepoint, 0x1F453);
25412put('NECKTIE, 'codepoint, 0x1F454);
25413put('T_SHIRT, 'codepoint, 0x1F455);
25414put('JEANS, 'codepoint, 0x1F456);
25415put('DRESS, 'codepoint, 0x1F457);
25416put('KIMONO, 'codepoint, 0x1F458);
25417put('BIKINI, 'codepoint, 0x1F459);
25418put('WOMANS_CLOTHES, 'codepoint, 0x1F45A);
25419put('PURSE, 'codepoint, 0x1F45B);
25420put('HANDBAG, 'codepoint, 0x1F45C);
25421put('POUCH, 'codepoint, 0x1F45D);
25422put('MANS_SHOE, 'codepoint, 0x1F45E);
25423put('ATHLETIC_SHOE, 'codepoint, 0x1F45F);
25424put('HIGH_HEELED_SHOE, 'codepoint, 0x1F460);
25425put('WOMANS_SANDAL, 'codepoint, 0x1F461);
25426put('WOMANS_BOOTS, 'codepoint, 0x1F462);
25427put('FOOTPRINTS, 'codepoint, 0x1F463);
25428put('BUST_IN_SILHOUETTE, 'codepoint, 0x1F464);
25429put('BUSTS_IN_SILHOUETTE, 'codepoint, 0x1F465);
25430put('BOY, 'codepoint, 0x1F466);
25431put('GIRL, 'codepoint, 0x1F467);
25432put('MAN, 'codepoint, 0x1F468);
25433put('WOMAN, 'codepoint, 0x1F469);
25434put('FAMILY, 'codepoint, 0x1F46A);
25435put('MAN_AND_WOMAN_HOLDING_HANDS, 'codepoint, 0x1F46B);
25436put('TWO_MEN_HOLDING_HANDS, 'codepoint, 0x1F46C);
25437put('TWO_WOMEN_HOLDING_HANDS, 'codepoint, 0x1F46D);
25438put('POLICE_OFFICER, 'codepoint, 0x1F46E);
25439put('WOMAN_WITH_BUNNY_EARS, 'codepoint, 0x1F46F);
25440put('BRIDE_WITH_VEIL, 'codepoint, 0x1F470);
25441put('PERSON_WITH_BLOND_HAIR, 'codepoint, 0x1F471);
25442put('MAN_WITH_GUA_PI_MAO, 'codepoint, 0x1F472);
25443put('MAN_WITH_TURBAN, 'codepoint, 0x1F473);
25444put('OLDER_MAN, 'codepoint, 0x1F474);
25445put('OLDER_WOMAN, 'codepoint, 0x1F475);
25446put('BABY, 'codepoint, 0x1F476);
25447put('CONSTRUCTION_WORKER, 'codepoint, 0x1F477);
25448put('PRINCESS, 'codepoint, 0x1F478);
25449put('JAPANESE_OGRE, 'codepoint, 0x1F479);
25450put('JAPANESE_GOBLIN, 'codepoint, 0x1F47A);
25451put('GHOST, 'codepoint, 0x1F47B);
25452put('BABY_ANGEL, 'codepoint, 0x1F47C);
25453put('EXTRATERRESTRIAL_ALIEN, 'codepoint, 0x1F47D);
25454put('ALIEN_MONSTER, 'codepoint, 0x1F47E);
25455put('IMP, 'codepoint, 0x1F47F);
25456put('SKULL, 'codepoint, 0x1F480);
25457put('INFORMATION_DESK_PERSON, 'codepoint, 0x1F481);
25458put('GUARDSMAN, 'codepoint, 0x1F482);
25459put('DANCER, 'codepoint, 0x1F483);
25460put('LIPSTICK, 'codepoint, 0x1F484);
25461put('NAIL_POLISH, 'codepoint, 0x1F485);
25462put('FACE_MASSAGE, 'codepoint, 0x1F486);
25463put('HAIRCUT, 'codepoint, 0x1F487);
25464put('BARBER_POLE, 'codepoint, 0x1F488);
25465put('SYRINGE, 'codepoint, 0x1F489);
25466put('PILL, 'codepoint, 0x1F48A);
25467put('KISS_MARK, 'codepoint, 0x1F48B);
25468put('LOVE_LETTER, 'codepoint, 0x1F48C);
25469put('RING, 'codepoint, 0x1F48D);
25470put('GEM_STONE, 'codepoint, 0x1F48E);
25471put('KISS, 'codepoint, 0x1F48F);
25472put('BOUQUET, 'codepoint, 0x1F490);
25473put('COUPLE_WITH_HEART, 'codepoint, 0x1F491);
25474put('WEDDING, 'codepoint, 0x1F492);
25475put('BEATING_HEART, 'codepoint, 0x1F493);
25476put('BROKEN_HEART, 'codepoint, 0x1F494);
25477put('TWO_HEARTS, 'codepoint, 0x1F495);
25478put('SPARKLING_HEART, 'codepoint, 0x1F496);
25479put('GROWING_HEART, 'codepoint, 0x1F497);
25480put('HEART_WITH_ARROW, 'codepoint, 0x1F498);
25481put('BLUE_HEART, 'codepoint, 0x1F499);
25482put('GREEN_HEART, 'codepoint, 0x1F49A);
25483put('YELLOW_HEART, 'codepoint, 0x1F49B);
25484put('PURPLE_HEART, 'codepoint, 0x1F49C);
25485put('HEART_WITH_RIBBON, 'codepoint, 0x1F49D);
25486put('REVOLVING_HEARTS, 'codepoint, 0x1F49E);
25487put('HEART_DECORATION, 'codepoint, 0x1F49F);
25488put('DIAMOND_SHAPE_WITH_A_DOT_INSIDE, 'codepoint, 0x1F4A0);
25489put('ELECTRIC_LIGHT_BULB, 'codepoint, 0x1F4A1);
25490put('ANGER_SYMBOL, 'codepoint, 0x1F4A2);
25491put('BOMB, 'codepoint, 0x1F4A3);
25492put('SLEEPING_SYMBOL, 'codepoint, 0x1F4A4);
25493put('COLLISION_SYMBOL, 'codepoint, 0x1F4A5);
25494put('SPLASHING_SWEAT_SYMBOL, 'codepoint, 0x1F4A6);
25495put('DROPLET, 'codepoint, 0x1F4A7);
25496put('DASH_SYMBOL, 'codepoint, 0x1F4A8);
25497put('PILE_OF_POO, 'codepoint, 0x1F4A9);
25498put('FLEXED_BICEPS, 'codepoint, 0x1F4AA);
25499put('DIZZY_SYMBOL, 'codepoint, 0x1F4AB);
25500put('SPEECH_BALLOON, 'codepoint, 0x1F4AC);
25501put('THOUGHT_BALLOON, 'codepoint, 0x1F4AD);
25502put('WHITE_FLOWER, 'codepoint, 0x1F4AE);
25503put('HUNDRED_POINTS_SYMBOL, 'codepoint, 0x1F4AF);
25504put('MONEY_BAG, 'codepoint, 0x1F4B0);
25505put('CURRENCY_EXCHANGE, 'codepoint, 0x1F4B1);
25506put('HEAVY_DOLLAR_SIGN, 'codepoint, 0x1F4B2);
25507put('CREDIT_CARD, 'codepoint, 0x1F4B3);
25508put('BANKNOTE_WITH_YEN_SIGN, 'codepoint, 0x1F4B4);
25509put('BANKNOTE_WITH_DOLLAR_SIGN, 'codepoint, 0x1F4B5);
25510put('BANKNOTE_WITH_EURO_SIGN, 'codepoint, 0x1F4B6);
25511put('BANKNOTE_WITH_POUND_SIGN, 'codepoint, 0x1F4B7);
25512put('MONEY_WITH_WINGS, 'codepoint, 0x1F4B8);
25513put('CHART_WITH_UPWARDS_TREND_AND_YEN_SIGN, 'codepoint, 0x1F4B9);
25514put('SEAT, 'codepoint, 0x1F4BA);
25515put('PERSONAL_COMPUTER, 'codepoint, 0x1F4BB);
25516put('BRIEFCASE, 'codepoint, 0x1F4BC);
25517put('MINIDISC, 'codepoint, 0x1F4BD);
25518put('FLOPPY_DISK, 'codepoint, 0x1F4BE);
25519put('OPTICAL_DISC, 'codepoint, 0x1F4BF);
25520put('DVD, 'codepoint, 0x1F4C0);
25521put('FILE_FOLDER, 'codepoint, 0x1F4C1);
25522put('OPEN_FILE_FOLDER, 'codepoint, 0x1F4C2);
25523put('PAGE_WITH_CURL, 'codepoint, 0x1F4C3);
25524put('PAGE_FACING_UP, 'codepoint, 0x1F4C4);
25525put('CALENDAR, 'codepoint, 0x1F4C5);
25526put('TEAR_OFF_CALENDAR, 'codepoint, 0x1F4C6);
25527put('CARD_INDEX, 'codepoint, 0x1F4C7);
25528put('CHART_WITH_UPWARDS_TREND, 'codepoint, 0x1F4C8);
25529put('CHART_WITH_DOWNWARDS_TREND, 'codepoint, 0x1F4C9);
25530put('BAR_CHART, 'codepoint, 0x1F4CA);
25531put('CLIPBOARD, 'codepoint, 0x1F4CB);
25532put('PUSHPIN, 'codepoint, 0x1F4CC);
25533put('ROUND_PUSHPIN, 'codepoint, 0x1F4CD);
25534put('PAPERCLIP, 'codepoint, 0x1F4CE);
25535put('STRAIGHT_RULER, 'codepoint, 0x1F4CF);
25536put('TRIANGULAR_RULER, 'codepoint, 0x1F4D0);
25537put('BOOKMARK_TABS, 'codepoint, 0x1F4D1);
25538put('LEDGER, 'codepoint, 0x1F4D2);
25539put('NOTEBOOK, 'codepoint, 0x1F4D3);
25540put('NOTEBOOK_WITH_DECORATIVE_COVER, 'codepoint, 0x1F4D4);
25541put('CLOSED_BOOK, 'codepoint, 0x1F4D5);
25542put('OPEN_BOOK, 'codepoint, 0x1F4D6);
25543put('GREEN_BOOK, 'codepoint, 0x1F4D7);
25544put('BLUE_BOOK, 'codepoint, 0x1F4D8);
25545put('ORANGE_BOOK, 'codepoint, 0x1F4D9);
25546put('BOOKS, 'codepoint, 0x1F4DA);
25547put('NAME_BADGE, 'codepoint, 0x1F4DB);
25548put('SCROLL, 'codepoint, 0x1F4DC);
25549put('MEMO, 'codepoint, 0x1F4DD);
25550put('TELEPHONE_RECEIVER, 'codepoint, 0x1F4DE);
25551put('PAGER, 'codepoint, 0x1F4DF);
25552put('FAX_MACHINE, 'codepoint, 0x1F4E0);
25553put('SATELLITE_ANTENNA, 'codepoint, 0x1F4E1);
25554put('PUBLIC_ADDRESS_LOUDSPEAKER, 'codepoint, 0x1F4E2);
25555put('CHEERING_MEGAPHONE, 'codepoint, 0x1F4E3);
25556put('OUTBOX_TRAY, 'codepoint, 0x1F4E4);
25557put('INBOX_TRAY, 'codepoint, 0x1F4E5);
25558put('PACKAGE, 'codepoint, 0x1F4E6);
25559put('E_MAIL_SYMBOL, 'codepoint, 0x1F4E7);
25560put('INCOMING_ENVELOPE, 'codepoint, 0x1F4E8);
25561put('ENVELOPE_WITH_DOWNWARDS_ARROW_ABOVE, 'codepoint, 0x1F4E9);
25562put('CLOSED_MAILBOX_WITH_LOWERED_FLAG, 'codepoint, 0x1F4EA);
25563put('CLOSED_MAILBOX_WITH_RAISED_FLAG, 'codepoint, 0x1F4EB);
25564put('OPEN_MAILBOX_WITH_RAISED_FLAG, 'codepoint, 0x1F4EC);
25565put('OPEN_MAILBOX_WITH_LOWERED_FLAG, 'codepoint, 0x1F4ED);
25566put('POSTBOX, 'codepoint, 0x1F4EE);
25567put('POSTAL_HORN, 'codepoint, 0x1F4EF);
25568put('NEWSPAPER, 'codepoint, 0x1F4F0);
25569put('MOBILE_PHONE, 'codepoint, 0x1F4F1);
25570put('MOBILE_PHONE_WITH_RIGHTWARDS_ARROW_AT_LEFT, 'codepoint, 0x1F4F2);
25571put('VIBRATION_MODE, 'codepoint, 0x1F4F3);
25572put('MOBILE_PHONE_OFF, 'codepoint, 0x1F4F4);
25573put('NO_MOBILE_PHONES, 'codepoint, 0x1F4F5);
25574put('ANTENNA_WITH_BARS, 'codepoint, 0x1F4F6);
25575put('CAMERA, 'codepoint, 0x1F4F7);
25576put('CAMERA_WITH_FLASH, 'codepoint, 0x1F4F8);
25577put('VIDEO_CAMERA, 'codepoint, 0x1F4F9);
25578put('TELEVISION, 'codepoint, 0x1F4FA);
25579put('RADIO, 'codepoint, 0x1F4FB);
25580put('VIDEOCASSETTE, 'codepoint, 0x1F4FC);
25581put('FILM_PROJECTOR, 'codepoint, 0x1F4FD);
25582put('PORTABLE_STEREO, 'codepoint, 0x1F4FE);
25583put('TWISTED_RIGHTWARDS_ARROWS, 'codepoint, 0x1F500);
25584put('CLOCKWISE_RIGHTWARDS_AND_LEFTWARDS_OPEN_CIRCLE_ARROWS, 'codepoint, 0x1F501);
25585put('CLOCKWISE_RIGHTWARDS_AND_LEFTWARDS_OPEN_CIRCLE_ARROWS_WITH_CIRCLED_ONE_OVERLAY, 'codepoint, 0x1F502);
25586put('CLOCKWISE_DOWNWARDS_AND_UPWARDS_OPEN_CIRCLE_ARROWS, 'codepoint, 0x1F503);
25587put('ANTICLOCKWISE_DOWNWARDS_AND_UPWARDS_OPEN_CIRCLE_ARROWS, 'codepoint, 0x1F504);
25588put('LOW_BRIGHTNESS_SYMBOL, 'codepoint, 0x1F505);
25589put('HIGH_BRIGHTNESS_SYMBOL, 'codepoint, 0x1F506);
25590put('SPEAKER_WITH_CANCELLATION_STROKE, 'codepoint, 0x1F507);
25591put('SPEAKER, 'codepoint, 0x1F508);
25592put('SPEAKER_WITH_ONE_SOUND_WAVE, 'codepoint, 0x1F509);
25593put('SPEAKER_WITH_THREE_SOUND_WAVES, 'codepoint, 0x1F50A);
25594put('BATTERY, 'codepoint, 0x1F50B);
25595put('ELECTRIC_PLUG, 'codepoint, 0x1F50C);
25596put('LEFT_POINTING_MAGNIFYING_GLASS, 'codepoint, 0x1F50D);
25597put('RIGHT_POINTING_MAGNIFYING_GLASS, 'codepoint, 0x1F50E);
25598put('LOCK_WITH_INK_PEN, 'codepoint, 0x1F50F);
25599put('CLOSED_LOCK_WITH_KEY, 'codepoint, 0x1F510);
25600put('KEY, 'codepoint, 0x1F511);
25601put('LOCK, 'codepoint, 0x1F512);
25602put('OPEN_LOCK, 'codepoint, 0x1F513);
25603put('BELL, 'codepoint, 0x1F514);
25604put('BELL_WITH_CANCELLATION_STROKE, 'codepoint, 0x1F515);
25605put('BOOKMARK, 'codepoint, 0x1F516);
25606put('LINK_SYMBOL, 'codepoint, 0x1F517);
25607put('RADIO_BUTTON, 'codepoint, 0x1F518);
25608put('BACK_WITH_LEFTWARDS_ARROW_ABOVE, 'codepoint, 0x1F519);
25609put('END_WITH_LEFTWARDS_ARROW_ABOVE, 'codepoint, 0x1F51A);
25610put('ON_WITH_EXCLAMATION_MARK_WITH_LEFT_RIGHT_ARROW_ABOVE, 'codepoint, 0x1F51B);
25611put('SOON_WITH_RIGHTWARDS_ARROW_ABOVE, 'codepoint, 0x1F51C);
25612put('TOP_WITH_UPWARDS_ARROW_ABOVE, 'codepoint, 0x1F51D);
25613put('NO_ONE_UNDER_EIGHTEEN_SYMBOL, 'codepoint, 0x1F51E);
25614put('KEYCAP_TEN, 'codepoint, 0x1F51F);
25615put('INPUT_SYMBOL_FOR_LATIN_CAPITAL_LETTERS, 'codepoint, 0x1F520);
25616put('INPUT_SYMBOL_FOR_LATIN_SMALL_LETTERS, 'codepoint, 0x1F521);
25617put('INPUT_SYMBOL_FOR_NUMBERS, 'codepoint, 0x1F522);
25618put('INPUT_SYMBOL_FOR_SYMBOLS, 'codepoint, 0x1F523);
25619put('INPUT_SYMBOL_FOR_LATIN_LETTERS, 'codepoint, 0x1F524);
25620put('FIRE, 'codepoint, 0x1F525);
25621put('ELECTRIC_TORCH, 'codepoint, 0x1F526);
25622put('WRENCH, 'codepoint, 0x1F527);
25623put('HAMMER, 'codepoint, 0x1F528);
25624put('NUT_AND_BOLT, 'codepoint, 0x1F529);
25625put('HOCHO, 'codepoint, 0x1F52A);
25626put('PISTOL, 'codepoint, 0x1F52B);
25627put('MICROSCOPE, 'codepoint, 0x1F52C);
25628put('TELESCOPE, 'codepoint, 0x1F52D);
25629put('CRYSTAL_BALL, 'codepoint, 0x1F52E);
25630put('SIX_POINTED_STAR_WITH_MIDDLE_DOT, 'codepoint, 0x1F52F);
25631put('JAPANESE_SYMBOL_FOR_BEGINNER, 'codepoint, 0x1F530);
25632put('TRIDENT_EMBLEM, 'codepoint, 0x1F531);
25633put('BLACK_SQUARE_BUTTON, 'codepoint, 0x1F532);
25634put('WHITE_SQUARE_BUTTON, 'codepoint, 0x1F533);
25635put('LARGE_RED_CIRCLE, 'codepoint, 0x1F534);
25636put('LARGE_BLUE_CIRCLE, 'codepoint, 0x1F535);
25637put('LARGE_ORANGE_DIAMOND, 'codepoint, 0x1F536);
25638put('LARGE_BLUE_DIAMOND, 'codepoint, 0x1F537);
25639put('SMALL_ORANGE_DIAMOND, 'codepoint, 0x1F538);
25640put('SMALL_BLUE_DIAMOND, 'codepoint, 0x1F539);
25641put('UP_POINTING_RED_TRIANGLE, 'codepoint, 0x1F53A);
25642put('DOWN_POINTING_RED_TRIANGLE, 'codepoint, 0x1F53B);
25643put('UP_POINTING_SMALL_RED_TRIANGLE, 'codepoint, 0x1F53C);
25644put('DOWN_POINTING_SMALL_RED_TRIANGLE, 'codepoint, 0x1F53D);
25645put('LOWER_RIGHT_SHADOWED_WHITE_CIRCLE, 'codepoint, 0x1F53E);
25646put('UPPER_RIGHT_SHADOWED_WHITE_CIRCLE, 'codepoint, 0x1F53F);
25647put('CIRCLED_CROSS_POMMEE, 'codepoint, 0x1F540);
25648put('CROSS_POMMEE_WITH_HALF_CIRCLE_BELOW, 'codepoint, 0x1F541);
25649put('CROSS_POMMEE, 'codepoint, 0x1F542);
25650put('NOTCHED_LEFT_SEMICIRCLE_WITH_THREE_DOTS, 'codepoint, 0x1F543);
25651put('NOTCHED_RIGHT_SEMICIRCLE_WITH_THREE_DOTS, 'codepoint, 0x1F544);
25652put('SYMBOL_FOR_MARKS_CHAPTER, 'codepoint, 0x1F545);
25653put('WHITE_LATIN_CROSS, 'codepoint, 0x1F546);
25654put('HEAVY_LATIN_CROSS, 'codepoint, 0x1F547);
25655put('CELTIC_CROSS, 'codepoint, 0x1F548);
25656put('OM_SYMBOL, 'codepoint, 0x1F549);
25657put('DOVE_OF_PEACE, 'codepoint, 0x1F54A);
25658put('CLOCK_FACE_ONE_OCLOCK, 'codepoint, 0x1F550);
25659put('CLOCK_FACE_TWO_OCLOCK, 'codepoint, 0x1F551);
25660put('CLOCK_FACE_THREE_OCLOCK, 'codepoint, 0x1F552);
25661put('CLOCK_FACE_FOUR_OCLOCK, 'codepoint, 0x1F553);
25662put('CLOCK_FACE_FIVE_OCLOCK, 'codepoint, 0x1F554);
25663put('CLOCK_FACE_SIX_OCLOCK, 'codepoint, 0x1F555);
25664put('CLOCK_FACE_SEVEN_OCLOCK, 'codepoint, 0x1F556);
25665put('CLOCK_FACE_EIGHT_OCLOCK, 'codepoint, 0x1F557);
25666put('CLOCK_FACE_NINE_OCLOCK, 'codepoint, 0x1F558);
25667put('CLOCK_FACE_TEN_OCLOCK, 'codepoint, 0x1F559);
25668put('CLOCK_FACE_ELEVEN_OCLOCK, 'codepoint, 0x1F55A);
25669put('CLOCK_FACE_TWELVE_OCLOCK, 'codepoint, 0x1F55B);
25670put('CLOCK_FACE_ONE_THIRTY, 'codepoint, 0x1F55C);
25671put('CLOCK_FACE_TWO_THIRTY, 'codepoint, 0x1F55D);
25672put('CLOCK_FACE_THREE_THIRTY, 'codepoint, 0x1F55E);
25673put('CLOCK_FACE_FOUR_THIRTY, 'codepoint, 0x1F55F);
25674put('CLOCK_FACE_FIVE_THIRTY, 'codepoint, 0x1F560);
25675put('CLOCK_FACE_SIX_THIRTY, 'codepoint, 0x1F561);
25676put('CLOCK_FACE_SEVEN_THIRTY, 'codepoint, 0x1F562);
25677put('CLOCK_FACE_EIGHT_THIRTY, 'codepoint, 0x1F563);
25678put('CLOCK_FACE_NINE_THIRTY, 'codepoint, 0x1F564);
25679put('CLOCK_FACE_TEN_THIRTY, 'codepoint, 0x1F565);
25680put('CLOCK_FACE_ELEVEN_THIRTY, 'codepoint, 0x1F566);
25681put('CLOCK_FACE_TWELVE_THIRTY, 'codepoint, 0x1F567);
25682put('RIGHT_SPEAKER, 'codepoint, 0x1F568);
25683put('RIGHT_SPEAKER_WITH_ONE_SOUND_WAVE, 'codepoint, 0x1F569);
25684put('RIGHT_SPEAKER_WITH_THREE_SOUND_WAVES, 'codepoint, 0x1F56A);
25685put('BULLHORN, 'codepoint, 0x1F56B);
25686put('BULLHORN_WITH_SOUND_WAVES, 'codepoint, 0x1F56C);
25687put('RINGING_BELL, 'codepoint, 0x1F56D);
25688put('BOOK, 'codepoint, 0x1F56E);
25689put('CANDLE, 'codepoint, 0x1F56F);
25690put('MANTELPIECE_CLOCK, 'codepoint, 0x1F570);
25691put('BLACK_SKULL_AND_CROSSBONES, 'codepoint, 0x1F571);
25692put('NO_PIRACY, 'codepoint, 0x1F572);
25693put('HOLE, 'codepoint, 0x1F573);
25694put('MAN_IN_BUSINESS_SUIT_LEVITATING, 'codepoint, 0x1F574);
25695put('SLEUTH_OR_SPY, 'codepoint, 0x1F575);
25696put('DARK_SUNGLASSES, 'codepoint, 0x1F576);
25697put('SPIDER, 'codepoint, 0x1F577);
25698put('SPIDER_WEB, 'codepoint, 0x1F578);
25699put('JOYSTICK, 'codepoint, 0x1F579);
25700put('LEFT_HAND_TELEPHONE_RECEIVER, 'codepoint, 0x1F57B);
25701put('TELEPHONE_RECEIVER_WITH_PAGE, 'codepoint, 0x1F57C);
25702put('RIGHT_HAND_TELEPHONE_RECEIVER, 'codepoint, 0x1F57D);
25703put('WHITE_TOUCHTONE_TELEPHONE, 'codepoint, 0x1F57E);
25704put('BLACK_TOUCHTONE_TELEPHONE, 'codepoint, 0x1F57F);
25705put('TELEPHONE_ON_TOP_OF_MODEM, 'codepoint, 0x1F580);
25706put('CLAMSHELL_MOBILE_PHONE, 'codepoint, 0x1F581);
25707put('BACK_OF_ENVELOPE, 'codepoint, 0x1F582);
25708put('STAMPED_ENVELOPE, 'codepoint, 0x1F583);
25709put('ENVELOPE_WITH_LIGHTNING, 'codepoint, 0x1F584);
25710put('FLYING_ENVELOPE, 'codepoint, 0x1F585);
25711put('PEN_OVER_STAMPED_ENVELOPE, 'codepoint, 0x1F586);
25712put('LINKED_PAPERCLIPS, 'codepoint, 0x1F587);
25713put('BLACK_PUSHPIN, 'codepoint, 0x1F588);
25714put('LOWER_LEFT_PENCIL, 'codepoint, 0x1F589);
25715put('LOWER_LEFT_BALLPOINT_PEN, 'codepoint, 0x1F58A);
25716put('LOWER_LEFT_FOUNTAIN_PEN, 'codepoint, 0x1F58B);
25717put('LOWER_LEFT_PAINTBRUSH, 'codepoint, 0x1F58C);
25718put('LOWER_LEFT_CRAYON, 'codepoint, 0x1F58D);
25719put('LEFT_WRITING_HAND, 'codepoint, 0x1F58E);
25720put('TURNED_OK_HAND_SIGN, 'codepoint, 0x1F58F);
25721put('RAISED_HAND_WITH_FINGERS_SPLAYED, 'codepoint, 0x1F590);
25722put('REVERSED_RAISED_HAND_WITH_FINGERS_SPLAYED, 'codepoint, 0x1F591);
25723put('REVERSED_THUMBS_UP_SIGN, 'codepoint, 0x1F592);
25724put('REVERSED_THUMBS_DOWN_SIGN, 'codepoint, 0x1F593);
25725put('REVERSED_VICTORY_HAND, 'codepoint, 0x1F594);
25726put('REVERSED_HAND_WITH_MIDDLE_FINGER_EXTENDED, 'codepoint, 0x1F595);
25727put('RAISED_HAND_WITH_PART_BETWEEN_MIDDLE_AND_RING_FINGERS, 'codepoint, 0x1F596);
25728put('WHITE_DOWN_POINTING_LEFT_HAND_INDEX, 'codepoint, 0x1F597);
25729put('SIDEWAYS_WHITE_LEFT_POINTING_INDEX, 'codepoint, 0x1F598);
25730put('SIDEWAYS_WHITE_RIGHT_POINTING_INDEX, 'codepoint, 0x1F599);
25731put('SIDEWAYS_BLACK_LEFT_POINTING_INDEX, 'codepoint, 0x1F59A);
25732put('SIDEWAYS_BLACK_RIGHT_POINTING_INDEX, 'codepoint, 0x1F59B);
25733put('BLACK_LEFT_POINTING_BACKHAND_INDEX, 'codepoint, 0x1F59C);
25734put('BLACK_RIGHT_POINTING_BACKHAND_INDEX, 'codepoint, 0x1F59D);
25735put('SIDEWAYS_WHITE_UP_POINTING_INDEX, 'codepoint, 0x1F59E);
25736put('SIDEWAYS_WHITE_DOWN_POINTING_INDEX, 'codepoint, 0x1F59F);
25737put('SIDEWAYS_BLACK_UP_POINTING_INDEX, 'codepoint, 0x1F5A0);
25738put('SIDEWAYS_BLACK_DOWN_POINTING_INDEX, 'codepoint, 0x1F5A1);
25739put('BLACK_UP_POINTING_BACKHAND_INDEX, 'codepoint, 0x1F5A2);
25740put('BLACK_DOWN_POINTING_BACKHAND_INDEX, 'codepoint, 0x1F5A3);
25741put('DESKTOP_COMPUTER, 'codepoint, 0x1F5A5);
25742put('KEYBOARD_AND_MOUSE, 'codepoint, 0x1F5A6);
25743put('THREE_NETWORKED_COMPUTERS, 'codepoint, 0x1F5A7);
25744put('PRINTER, 'codepoint, 0x1F5A8);
25745put('POCKET_CALCULATOR, 'codepoint, 0x1F5A9);
25746put('BLACK_HARD_SHELL_FLOPPY_DISK, 'codepoint, 0x1F5AA);
25747put('WHITE_HARD_SHELL_FLOPPY_DISK, 'codepoint, 0x1F5AB);
25748put('SOFT_SHELL_FLOPPY_DISK, 'codepoint, 0x1F5AC);
25749put('TAPE_CARTRIDGE, 'codepoint, 0x1F5AD);
25750put('WIRED_KEYBOARD, 'codepoint, 0x1F5AE);
25751put('ONE_BUTTON_MOUSE, 'codepoint, 0x1F5AF);
25752put('TWO_BUTTON_MOUSE, 'codepoint, 0x1F5B0);
25753put('THREE_BUTTON_MOUSE, 'codepoint, 0x1F5B1);
25754put('TRACKBALL, 'codepoint, 0x1F5B2);
25755put('OLD_PERSONAL_COMPUTER, 'codepoint, 0x1F5B3);
25756put('HARD_DISK, 'codepoint, 0x1F5B4);
25757put('SCREEN, 'codepoint, 0x1F5B5);
25758put('PRINTER_ICON, 'codepoint, 0x1F5B6);
25759put('FAX_ICON, 'codepoint, 0x1F5B7);
25760put('OPTICAL_DISC_ICON, 'codepoint, 0x1F5B8);
25761put('DOCUMENT_WITH_TEXT, 'codepoint, 0x1F5B9);
25762put('DOCUMENT_WITH_TEXT_AND_PICTURE, 'codepoint, 0x1F5BA);
25763put('DOCUMENT_WITH_PICTURE, 'codepoint, 0x1F5BB);
25764put('FRAME_WITH_PICTURE, 'codepoint, 0x1F5BC);
25765put('FRAME_WITH_TILES, 'codepoint, 0x1F5BD);
25766put('FRAME_WITH_AN_X, 'codepoint, 0x1F5BE);
25767put('BLACK_FOLDER, 'codepoint, 0x1F5BF);
25768put('FOLDER, 'codepoint, 0x1F5C0);
25769put('OPEN_FOLDER, 'codepoint, 0x1F5C1);
25770put('CARD_INDEX_DIVIDERS, 'codepoint, 0x1F5C2);
25771put('CARD_FILE_BOX, 'codepoint, 0x1F5C3);
25772put('FILE_CABINET, 'codepoint, 0x1F5C4);
25773put('EMPTY_NOTE, 'codepoint, 0x1F5C5);
25774put('EMPTY_NOTE_PAGE, 'codepoint, 0x1F5C6);
25775put('EMPTY_NOTE_PAD, 'codepoint, 0x1F5C7);
25776put('NOTE, 'codepoint, 0x1F5C8);
25777put('NOTE_PAGE, 'codepoint, 0x1F5C9);
25778put('NOTE_PAD, 'codepoint, 0x1F5CA);
25779put('EMPTY_DOCUMENT, 'codepoint, 0x1F5CB);
25780put('EMPTY_PAGE, 'codepoint, 0x1F5CC);
25781put('EMPTY_PAGES, 'codepoint, 0x1F5CD);
25782put('DOCUMENT, 'codepoint, 0x1F5CE);
25783put('PAGE, 'codepoint, 0x1F5CF);
25784put('PAGES, 'codepoint, 0x1F5D0);
25785put('WASTEBASKET, 'codepoint, 0x1F5D1);
25786put('SPIRAL_NOTE_PAD, 'codepoint, 0x1F5D2);
25787put('SPIRAL_CALENDAR_PAD, 'codepoint, 0x1F5D3);
25788put('DESKTOP_WINDOW, 'codepoint, 0x1F5D4);
25789put('MINIMIZE, 'codepoint, 0x1F5D5);
25790put('MAXIMIZE, 'codepoint, 0x1F5D6);
25791put('OVERLAP, 'codepoint, 0x1F5D7);
25792put('CLOCKWISE_RIGHT_AND_LEFT_SEMICIRCLE_ARROWS, 'codepoint, 0x1F5D8);
25793put('CANCELLATION_X, 'codepoint, 0x1F5D9);
25794put('INCREASE_FONT_SIZE_SYMBOL, 'codepoint, 0x1F5DA);
25795put('DECREASE_FONT_SIZE_SYMBOL, 'codepoint, 0x1F5DB);
25796put('COMPRESSION, 'codepoint, 0x1F5DC);
25797put('OLD_KEY, 'codepoint, 0x1F5DD);
25798put('ROLLED_UP_NEWSPAPER, 'codepoint, 0x1F5DE);
25799put('PAGE_WITH_CIRCLED_TEXT, 'codepoint, 0x1F5DF);
25800put('STOCK_CHART, 'codepoint, 0x1F5E0);
25801put('DAGGER_KNIFE, 'codepoint, 0x1F5E1);
25802put('LIPS, 'codepoint, 0x1F5E2);
25803put('SPEAKING_HEAD_IN_SILHOUETTE, 'codepoint, 0x1F5E3);
25804put('THREE_RAYS_ABOVE, 'codepoint, 0x1F5E4);
25805put('THREE_RAYS_BELOW, 'codepoint, 0x1F5E5);
25806put('THREE_RAYS_LEFT, 'codepoint, 0x1F5E6);
25807put('THREE_RAYS_RIGHT, 'codepoint, 0x1F5E7);
25808put('LEFT_SPEECH_BUBBLE, 'codepoint, 0x1F5E8);
25809put('RIGHT_SPEECH_BUBBLE, 'codepoint, 0x1F5E9);
25810put('TWO_SPEECH_BUBBLES, 'codepoint, 0x1F5EA);
25811put('THREE_SPEECH_BUBBLES, 'codepoint, 0x1F5EB);
25812put('LEFT_THOUGHT_BUBBLE, 'codepoint, 0x1F5EC);
25813put('RIGHT_THOUGHT_BUBBLE, 'codepoint, 0x1F5ED);
25814put('LEFT_ANGER_BUBBLE, 'codepoint, 0x1F5EE);
25815put('RIGHT_ANGER_BUBBLE, 'codepoint, 0x1F5EF);
25816put('MOOD_BUBBLE, 'codepoint, 0x1F5F0);
25817put('LIGHTNING_MOOD_BUBBLE, 'codepoint, 0x1F5F1);
25818put('LIGHTNING_MOOD, 'codepoint, 0x1F5F2);
25819put('BALLOT_BOX_WITH_BALLOT, 'codepoint, 0x1F5F3);
25820put('BALLOT_SCRIPT_X, 'codepoint, 0x1F5F4);
25821put('BALLOT_BOX_WITH_SCRIPT_X, 'codepoint, 0x1F5F5);
25822put('BALLOT_BOLD_SCRIPT_X, 'codepoint, 0x1F5F6);
25823put('BALLOT_BOX_WITH_BOLD_SCRIPT_X, 'codepoint, 0x1F5F7);
25824put('LIGHT_CHECK_MARK, 'codepoint, 0x1F5F8);
25825put('BALLOT_BOX_WITH_BOLD_CHECK, 'codepoint, 0x1F5F9);
25826put('WORLD_MAP, 'codepoint, 0x1F5FA);
25827put('MOUNT_FUJI, 'codepoint, 0x1F5FB);
25828put('TOKYO_TOWER, 'codepoint, 0x1F5FC);
25829put('STATUE_OF_LIBERTY, 'codepoint, 0x1F5FD);
25830put('SILHOUETTE_OF_JAPAN, 'codepoint, 0x1F5FE);
25831put('MOYAI, 'codepoint, 0x1F5FF);
25832put('GRINNING_FACE, 'codepoint, 0x1F600);
25833put('GRINNING_FACE_WITH_SMILING_EYES, 'codepoint, 0x1F601);
25834put('FACE_WITH_TEARS_OF_JOY, 'codepoint, 0x1F602);
25835put('SMILING_FACE_WITH_OPEN_MOUTH, 'codepoint, 0x1F603);
25836put('SMILING_FACE_WITH_OPEN_MOUTH_AND_SMILING_EYES, 'codepoint, 0x1F604);
25837put('SMILING_FACE_WITH_OPEN_MOUTH_AND_COLD_SWEAT, 'codepoint, 0x1F605);
25838put('SMILING_FACE_WITH_OPEN_MOUTH_AND_TIGHTLY_CLOSED_EYES, 'codepoint, 0x1F606);
25839put('SMILING_FACE_WITH_HALO, 'codepoint, 0x1F607);
25840put('SMILING_FACE_WITH_HORNS, 'codepoint, 0x1F608);
25841put('WINKING_FACE, 'codepoint, 0x1F609);
25842put('SMILING_FACE_WITH_SMILING_EYES, 'codepoint, 0x1F60A);
25843put('FACE_SAVOURING_DELICIOUS_FOOD, 'codepoint, 0x1F60B);
25844put('RELIEVED_FACE, 'codepoint, 0x1F60C);
25845put('SMILING_FACE_WITH_HEART_SHAPED_EYES, 'codepoint, 0x1F60D);
25846put('SMILING_FACE_WITH_SUNGLASSES, 'codepoint, 0x1F60E);
25847put('SMIRKING_FACE, 'codepoint, 0x1F60F);
25848put('NEUTRAL_FACE, 'codepoint, 0x1F610);
25849put('EXPRESSIONLESS_FACE, 'codepoint, 0x1F611);
25850put('UNAMUSED_FACE, 'codepoint, 0x1F612);
25851put('FACE_WITH_COLD_SWEAT, 'codepoint, 0x1F613);
25852put('PENSIVE_FACE, 'codepoint, 0x1F614);
25853put('CONFUSED_FACE, 'codepoint, 0x1F615);
25854put('CONFOUNDED_FACE, 'codepoint, 0x1F616);
25855put('KISSING_FACE, 'codepoint, 0x1F617);
25856put('FACE_THROWING_A_KISS, 'codepoint, 0x1F618);
25857put('KISSING_FACE_WITH_SMILING_EYES, 'codepoint, 0x1F619);
25858put('KISSING_FACE_WITH_CLOSED_EYES, 'codepoint, 0x1F61A);
25859put('FACE_WITH_STUCK_OUT_TONGUE, 'codepoint, 0x1F61B);
25860put('FACE_WITH_STUCK_OUT_TONGUE_AND_WINKING_EYE, 'codepoint, 0x1F61C);
25861put('FACE_WITH_STUCK_OUT_TONGUE_AND_TIGHTLY_CLOSED_EYES, 'codepoint, 0x1F61D);
25862put('DISAPPOINTED_FACE, 'codepoint, 0x1F61E);
25863put('WORRIED_FACE, 'codepoint, 0x1F61F);
25864put('ANGRY_FACE, 'codepoint, 0x1F620);
25865put('POUTING_FACE, 'codepoint, 0x1F621);
25866put('CRYING_FACE, 'codepoint, 0x1F622);
25867put('PERSEVERING_FACE, 'codepoint, 0x1F623);
25868put('FACE_WITH_LOOK_OF_TRIUMPH, 'codepoint, 0x1F624);
25869put('DISAPPOINTED_BUT_RELIEVED_FACE, 'codepoint, 0x1F625);
25870put('FROWNING_FACE_WITH_OPEN_MOUTH, 'codepoint, 0x1F626);
25871put('ANGUISHED_FACE, 'codepoint, 0x1F627);
25872put('FEARFUL_FACE, 'codepoint, 0x1F628);
25873put('WEARY_FACE, 'codepoint, 0x1F629);
25874put('SLEEPY_FACE, 'codepoint, 0x1F62A);
25875put('TIRED_FACE, 'codepoint, 0x1F62B);
25876put('GRIMACING_FACE, 'codepoint, 0x1F62C);
25877put('LOUDLY_CRYING_FACE, 'codepoint, 0x1F62D);
25878put('FACE_WITH_OPEN_MOUTH, 'codepoint, 0x1F62E);
25879put('HUSHED_FACE, 'codepoint, 0x1F62F);
25880put('FACE_WITH_OPEN_MOUTH_AND_COLD_SWEAT, 'codepoint, 0x1F630);
25881put('FACE_SCREAMING_IN_FEAR, 'codepoint, 0x1F631);
25882put('ASTONISHED_FACE, 'codepoint, 0x1F632);
25883put('FLUSHED_FACE, 'codepoint, 0x1F633);
25884put('SLEEPING_FACE, 'codepoint, 0x1F634);
25885put('DIZZY_FACE, 'codepoint, 0x1F635);
25886put('FACE_WITHOUT_MOUTH, 'codepoint, 0x1F636);
25887put('FACE_WITH_MEDICAL_MASK, 'codepoint, 0x1F637);
25888put('GRINNING_CAT_FACE_WITH_SMILING_EYES, 'codepoint, 0x1F638);
25889put('CAT_FACE_WITH_TEARS_OF_JOY, 'codepoint, 0x1F639);
25890put('SMILING_CAT_FACE_WITH_OPEN_MOUTH, 'codepoint, 0x1F63A);
25891put('SMILING_CAT_FACE_WITH_HEART_SHAPED_EYES, 'codepoint, 0x1F63B);
25892put('CAT_FACE_WITH_WRY_SMILE, 'codepoint, 0x1F63C);
25893put('KISSING_CAT_FACE_WITH_CLOSED_EYES, 'codepoint, 0x1F63D);
25894put('POUTING_CAT_FACE, 'codepoint, 0x1F63E);
25895put('CRYING_CAT_FACE, 'codepoint, 0x1F63F);
25896put('WEARY_CAT_FACE, 'codepoint, 0x1F640);
25897put('SLIGHTLY_FROWNING_FACE, 'codepoint, 0x1F641);
25898put('SLIGHTLY_SMILING_FACE, 'codepoint, 0x1F642);
25899put('FACE_WITH_NO_GOOD_GESTURE, 'codepoint, 0x1F645);
25900put('FACE_WITH_OK_GESTURE, 'codepoint, 0x1F646);
25901put('PERSON_BOWING_DEEPLY, 'codepoint, 0x1F647);
25902put('SEE_NO_EVIL_MONKEY, 'codepoint, 0x1F648);
25903put('HEAR_NO_EVIL_MONKEY, 'codepoint, 0x1F649);
25904put('SPEAK_NO_EVIL_MONKEY, 'codepoint, 0x1F64A);
25905put('HAPPY_PERSON_RAISING_ONE_HAND, 'codepoint, 0x1F64B);
25906put('PERSON_RAISING_BOTH_HANDS_IN_CELEBRATION, 'codepoint, 0x1F64C);
25907put('PERSON_FROWNING, 'codepoint, 0x1F64D);
25908put('PERSON_WITH_POUTING_FACE, 'codepoint, 0x1F64E);
25909put('PERSON_WITH_FOLDED_HANDS, 'codepoint, 0x1F64F);
25910put('NORTH_WEST_POINTING_LEAF, 'codepoint, 0x1F650);
25911put('SOUTH_WEST_POINTING_LEAF, 'codepoint, 0x1F651);
25912put('NORTH_EAST_POINTING_LEAF, 'codepoint, 0x1F652);
25913put('SOUTH_EAST_POINTING_LEAF, 'codepoint, 0x1F653);
25914put('TURNED_NORTH_WEST_POINTING_LEAF, 'codepoint, 0x1F654);
25915put('TURNED_SOUTH_WEST_POINTING_LEAF, 'codepoint, 0x1F655);
25916put('TURNED_NORTH_EAST_POINTING_LEAF, 'codepoint, 0x1F656);
25917put('TURNED_SOUTH_EAST_POINTING_LEAF, 'codepoint, 0x1F657);
25918put('NORTH_WEST_POINTING_VINE_LEAF, 'codepoint, 0x1F658);
25919put('SOUTH_WEST_POINTING_VINE_LEAF, 'codepoint, 0x1F659);
25920put('NORTH_EAST_POINTING_VINE_LEAF, 'codepoint, 0x1F65A);
25921put('SOUTH_EAST_POINTING_VINE_LEAF, 'codepoint, 0x1F65B);
25922put('HEAVY_NORTH_WEST_POINTING_VINE_LEAF, 'codepoint, 0x1F65C);
25923put('HEAVY_SOUTH_WEST_POINTING_VINE_LEAF, 'codepoint, 0x1F65D);
25924put('HEAVY_NORTH_EAST_POINTING_VINE_LEAF, 'codepoint, 0x1F65E);
25925put('HEAVY_SOUTH_EAST_POINTING_VINE_LEAF, 'codepoint, 0x1F65F);
25926put('NORTH_WEST_POINTING_BUD, 'codepoint, 0x1F660);
25927put('SOUTH_WEST_POINTING_BUD, 'codepoint, 0x1F661);
25928put('NORTH_EAST_POINTING_BUD, 'codepoint, 0x1F662);
25929put('SOUTH_EAST_POINTING_BUD, 'codepoint, 0x1F663);
25930put('HEAVY_NORTH_WEST_POINTING_BUD, 'codepoint, 0x1F664);
25931put('HEAVY_SOUTH_WEST_POINTING_BUD, 'codepoint, 0x1F665);
25932put('HEAVY_NORTH_EAST_POINTING_BUD, 'codepoint, 0x1F666);
25933put('HEAVY_SOUTH_EAST_POINTING_BUD, 'codepoint, 0x1F667);
25934put('HOLLOW_QUILT_SQUARE_ORNAMENT, 'codepoint, 0x1F668);
25935put('HOLLOW_QUILT_SQUARE_ORNAMENT_IN_BLACK_SQUARE, 'codepoint, 0x1F669);
25936put('SOLID_QUILT_SQUARE_ORNAMENT, 'codepoint, 0x1F66A);
25937put('SOLID_QUILT_SQUARE_ORNAMENT_IN_BLACK_SQUARE, 'codepoint, 0x1F66B);
25938put('LEFTWARDS_ROCKET, 'codepoint, 0x1F66C);
25939put('UPWARDS_ROCKET, 'codepoint, 0x1F66D);
25940put('RIGHTWARDS_ROCKET, 'codepoint, 0x1F66E);
25941put('DOWNWARDS_ROCKET, 'codepoint, 0x1F66F);
25942put('SCRIPT_LIGATURE_ET_ORNAMENT, 'codepoint, 0x1F670);
25943put('HEAVY_SCRIPT_LIGATURE_ET_ORNAMENT, 'codepoint, 0x1F671);
25944put('LIGATURE_OPEN_ET_ORNAMENT, 'codepoint, 0x1F672);
25945put('HEAVY_LIGATURE_OPEN_ET_ORNAMENT, 'codepoint, 0x1F673);
25946put('HEAVY_AMPERSAND_ORNAMENT, 'codepoint, 0x1F674);
25947put('SWASH_AMPERSAND_ORNAMENT, 'codepoint, 0x1F675);
25948put('SANS_SERIF_HEAVY_DOUBLE_TURNED_COMMA_QUOTATION_MARK_ORNAMENT, 'codepoint, 0x1F676);
25949put('SANS_SERIF_HEAVY_DOUBLE_COMMA_QUOTATION_MARK_ORNAMENT, 'codepoint, 0x1F677);
25950put('SANS_SERIF_HEAVY_LOW_DOUBLE_COMMA_QUOTATION_MARK_ORNAMENT, 'codepoint, 0x1F678);
25951put('HEAVY_INTERROBANG_ORNAMENT, 'codepoint, 0x1F679);
25952put('SANS_SERIF_INTERROBANG_ORNAMENT, 'codepoint, 0x1F67A);
25953put('HEAVY_SANS_SERIF_INTERROBANG_ORNAMENT, 'codepoint, 0x1F67B);
25954put('VERY_HEAVY_SOLIDUS, 'codepoint, 0x1F67C);
25955put('VERY_HEAVY_REVERSE_SOLIDUS, 'codepoint, 0x1F67D);
25956put('CHECKER_BOARD, 'codepoint, 0x1F67E);
25957put('REVERSE_CHECKER_BOARD, 'codepoint, 0x1F67F);
25958put('ROCKET, 'codepoint, 0x1F680);
25959put('HELICOPTER, 'codepoint, 0x1F681);
25960put('STEAM_LOCOMOTIVE, 'codepoint, 0x1F682);
25961put('RAILWAY_CAR, 'codepoint, 0x1F683);
25962put('HIGH_SPEED_TRAIN, 'codepoint, 0x1F684);
25963put('HIGH_SPEED_TRAIN_WITH_BULLET_NOSE, 'codepoint, 0x1F685);
25964put('TRAIN, 'codepoint, 0x1F686);
25965put('METRO, 'codepoint, 0x1F687);
25966put('LIGHT_RAIL, 'codepoint, 0x1F688);
25967put('STATION, 'codepoint, 0x1F689);
25968put('TRAM, 'codepoint, 0x1F68A);
25969put('TRAM_CAR, 'codepoint, 0x1F68B);
25970put('BUS, 'codepoint, 0x1F68C);
25971put('ONCOMING_BUS, 'codepoint, 0x1F68D);
25972put('TROLLEYBUS, 'codepoint, 0x1F68E);
25973put('BUS_STOP, 'codepoint, 0x1F68F);
25974put('MINIBUS, 'codepoint, 0x1F690);
25975put('AMBULANCE, 'codepoint, 0x1F691);
25976put('FIRE_ENGINE, 'codepoint, 0x1F692);
25977put('POLICE_CAR, 'codepoint, 0x1F693);
25978put('ONCOMING_POLICE_CAR, 'codepoint, 0x1F694);
25979put('TAXI, 'codepoint, 0x1F695);
25980put('ONCOMING_TAXI, 'codepoint, 0x1F696);
25981put('AUTOMOBILE, 'codepoint, 0x1F697);
25982put('ONCOMING_AUTOMOBILE, 'codepoint, 0x1F698);
25983put('RECREATIONAL_VEHICLE, 'codepoint, 0x1F699);
25984put('DELIVERY_TRUCK, 'codepoint, 0x1F69A);
25985put('ARTICULATED_LORRY, 'codepoint, 0x1F69B);
25986put('TRACTOR, 'codepoint, 0x1F69C);
25987put('MONORAIL, 'codepoint, 0x1F69D);
25988put('MOUNTAIN_RAILWAY, 'codepoint, 0x1F69E);
25989put('SUSPENSION_RAILWAY, 'codepoint, 0x1F69F);
25990put('MOUNTAIN_CABLEWAY, 'codepoint, 0x1F6A0);
25991put('AERIAL_TRAMWAY, 'codepoint, 0x1F6A1);
25992put('SHIP, 'codepoint, 0x1F6A2);
25993put('ROWBOAT, 'codepoint, 0x1F6A3);
25994put('SPEEDBOAT, 'codepoint, 0x1F6A4);
25995put('HORIZONTAL_TRAFFIC_LIGHT, 'codepoint, 0x1F6A5);
25996put('VERTICAL_TRAFFIC_LIGHT, 'codepoint, 0x1F6A6);
25997put('CONSTRUCTION_SIGN, 'codepoint, 0x1F6A7);
25998put('POLICE_CARS_REVOLVING_LIGHT, 'codepoint, 0x1F6A8);
25999put('TRIANGULAR_FLAG_ON_POST, 'codepoint, 0x1F6A9);
26000put('DOOR, 'codepoint, 0x1F6AA);
26001put('NO_ENTRY_SIGN, 'codepoint, 0x1F6AB);
26002put('SMOKING_SYMBOL, 'codepoint, 0x1F6AC);
26003put('NO_SMOKING_SYMBOL, 'codepoint, 0x1F6AD);
26004put('PUT_LITTER_IN_ITS_PLACE_SYMBOL, 'codepoint, 0x1F6AE);
26005put('DO_NOT_LITTER_SYMBOL, 'codepoint, 0x1F6AF);
26006put('POTABLE_WATER_SYMBOL, 'codepoint, 0x1F6B0);
26007put('NON_POTABLE_WATER_SYMBOL, 'codepoint, 0x1F6B1);
26008put('BICYCLE, 'codepoint, 0x1F6B2);
26009put('NO_BICYCLES, 'codepoint, 0x1F6B3);
26010put('BICYCLIST, 'codepoint, 0x1F6B4);
26011put('MOUNTAIN_BICYCLIST, 'codepoint, 0x1F6B5);
26012put('PEDESTRIAN, 'codepoint, 0x1F6B6);
26013put('NO_PEDESTRIANS, 'codepoint, 0x1F6B7);
26014put('CHILDREN_CROSSING, 'codepoint, 0x1F6B8);
26015put('MENS_SYMBOL, 'codepoint, 0x1F6B9);
26016put('WOMENS_SYMBOL, 'codepoint, 0x1F6BA);
26017put('RESTROOM, 'codepoint, 0x1F6BB);
26018put('BABY_SYMBOL, 'codepoint, 0x1F6BC);
26019put('TOILET, 'codepoint, 0x1F6BD);
26020put('WATER_CLOSET, 'codepoint, 0x1F6BE);
26021put('SHOWER, 'codepoint, 0x1F6BF);
26022put('BATH, 'codepoint, 0x1F6C0);
26023put('BATHTUB, 'codepoint, 0x1F6C1);
26024put('PASSPORT_CONTROL, 'codepoint, 0x1F6C2);
26025put('CUSTOMS, 'codepoint, 0x1F6C3);
26026put('BAGGAGE_CLAIM, 'codepoint, 0x1F6C4);
26027put('LEFT_LUGGAGE, 'codepoint, 0x1F6C5);
26028put('TRIANGLE_WITH_ROUNDED_CORNERS, 'codepoint, 0x1F6C6);
26029put('PROHIBITED_SIGN, 'codepoint, 0x1F6C7);
26030put('CIRCLED_INFORMATION_SOURCE, 'codepoint, 0x1F6C8);
26031put('BOYS_SYMBOL, 'codepoint, 0x1F6C9);
26032put('GIRLS_SYMBOL, 'codepoint, 0x1F6CA);
26033put('COUCH_AND_LAMP, 'codepoint, 0x1F6CB);
26034put('SLEEPING_ACCOMMODATION, 'codepoint, 0x1F6CC);
26035put('SHOPPING_BAGS, 'codepoint, 0x1F6CD);
26036put('BELLHOP_BELL, 'codepoint, 0x1F6CE);
26037put('BED, 'codepoint, 0x1F6CF);
26038put('HAMMER_AND_WRENCH, 'codepoint, 0x1F6E0);
26039put('SHIELD, 'codepoint, 0x1F6E1);
26040put('OIL_DRUM, 'codepoint, 0x1F6E2);
26041put('MOTORWAY, 'codepoint, 0x1F6E3);
26042put('RAILWAY_TRACK, 'codepoint, 0x1F6E4);
26043put('MOTOR_BOAT, 'codepoint, 0x1F6E5);
26044put('UP_POINTING_MILITARY_AIRPLANE, 'codepoint, 0x1F6E6);
26045put('UP_POINTING_AIRPLANE, 'codepoint, 0x1F6E7);
26046put('UP_POINTING_SMALL_AIRPLANE, 'codepoint, 0x1F6E8);
26047put('SMALL_AIRPLANE, 'codepoint, 0x1F6E9);
26048put('NORTHEAST_POINTING_AIRPLANE, 'codepoint, 0x1F6EA);
26049put('AIRPLANE_DEPARTURE, 'codepoint, 0x1F6EB);
26050put('AIRPLANE_ARRIVING, 'codepoint, 0x1F6EC);
26051put('SATELLITE, 'codepoint, 0x1F6F0);
26052put('ONCOMING_FIRE_ENGINE, 'codepoint, 0x1F6F1);
26053put('DIESEL_LOCOMOTIVE, 'codepoint, 0x1F6F2);
26054put('PASSENGER_SHIP, 'codepoint, 0x1F6F3);
26055put('ALCHEMICAL_SYMBOL_FOR_QUINTESSENCE, 'codepoint, 0x1F700);
26056put('ALCHEMICAL_SYMBOL_FOR_AIR, 'codepoint, 0x1F701);
26057put('ALCHEMICAL_SYMBOL_FOR_FIRE, 'codepoint, 0x1F702);
26058put('ALCHEMICAL_SYMBOL_FOR_EARTH, 'codepoint, 0x1F703);
26059put('ALCHEMICAL_SYMBOL_FOR_WATER, 'codepoint, 0x1F704);
26060put('ALCHEMICAL_SYMBOL_FOR_AQUAFORTIS, 'codepoint, 0x1F705);
26061put('ALCHEMICAL_SYMBOL_FOR_AQUA_REGIA, 'codepoint, 0x1F706);
26062put('ALCHEMICAL_SYMBOL_FOR_AQUA_REGIA_2, 'codepoint, 0x1F707);
26063put('ALCHEMICAL_SYMBOL_FOR_AQUA_VITAE, 'codepoint, 0x1F708);
26064put('ALCHEMICAL_SYMBOL_FOR_AQUA_VITAE_2, 'codepoint, 0x1F709);
26065put('ALCHEMICAL_SYMBOL_FOR_VINEGAR, 'codepoint, 0x1F70A);
26066put('ALCHEMICAL_SYMBOL_FOR_VINEGAR_2, 'codepoint, 0x1F70B);
26067put('ALCHEMICAL_SYMBOL_FOR_VINEGAR_3, 'codepoint, 0x1F70C);
26068put('ALCHEMICAL_SYMBOL_FOR_SULFUR, 'codepoint, 0x1F70D);
26069put('ALCHEMICAL_SYMBOL_FOR_PHILOSOPHERS_SULFUR, 'codepoint, 0x1F70E);
26070put('ALCHEMICAL_SYMBOL_FOR_BLACK_SULFUR, 'codepoint, 0x1F70F);
26071put('ALCHEMICAL_SYMBOL_FOR_MERCURY_SUBLIMATE, 'codepoint, 0x1F710);
26072put('ALCHEMICAL_SYMBOL_FOR_MERCURY_SUBLIMATE_2, 'codepoint, 0x1F711);
26073put('ALCHEMICAL_SYMBOL_FOR_MERCURY_SUBLIMATE_3, 'codepoint, 0x1F712);
26074put('ALCHEMICAL_SYMBOL_FOR_CINNABAR, 'codepoint, 0x1F713);
26075put('ALCHEMICAL_SYMBOL_FOR_SALT, 'codepoint, 0x1F714);
26076put('ALCHEMICAL_SYMBOL_FOR_NITRE, 'codepoint, 0x1F715);
26077put('ALCHEMICAL_SYMBOL_FOR_VITRIOL, 'codepoint, 0x1F716);
26078put('ALCHEMICAL_SYMBOL_FOR_VITRIOL_2, 'codepoint, 0x1F717);
26079put('ALCHEMICAL_SYMBOL_FOR_ROCK_SALT, 'codepoint, 0x1F718);
26080put('ALCHEMICAL_SYMBOL_FOR_ROCK_SALT_2, 'codepoint, 0x1F719);
26081put('ALCHEMICAL_SYMBOL_FOR_GOLD, 'codepoint, 0x1F71A);
26082put('ALCHEMICAL_SYMBOL_FOR_SILVER, 'codepoint, 0x1F71B);
26083put('ALCHEMICAL_SYMBOL_FOR_IRON_ORE, 'codepoint, 0x1F71C);
26084put('ALCHEMICAL_SYMBOL_FOR_IRON_ORE_2, 'codepoint, 0x1F71D);
26085put('ALCHEMICAL_SYMBOL_FOR_CROCUS_OF_IRON, 'codepoint, 0x1F71E);
26086put('ALCHEMICAL_SYMBOL_FOR_REGULUS_OF_IRON, 'codepoint, 0x1F71F);
26087put('ALCHEMICAL_SYMBOL_FOR_COPPER_ORE, 'codepoint, 0x1F720);
26088put('ALCHEMICAL_SYMBOL_FOR_IRON_COPPER_ORE, 'codepoint, 0x1F721);
26089put('ALCHEMICAL_SYMBOL_FOR_SUBLIMATE_OF_COPPER, 'codepoint, 0x1F722);
26090put('ALCHEMICAL_SYMBOL_FOR_CROCUS_OF_COPPER, 'codepoint, 0x1F723);
26091put('ALCHEMICAL_SYMBOL_FOR_CROCUS_OF_COPPER_2, 'codepoint, 0x1F724);
26092put('ALCHEMICAL_SYMBOL_FOR_COPPER_ANTIMONIATE, 'codepoint, 0x1F725);
26093put('ALCHEMICAL_SYMBOL_FOR_SALT_OF_COPPER_ANTIMONIATE, 'codepoint, 0x1F726);
26094put('ALCHEMICAL_SYMBOL_FOR_SUBLIMATE_OF_SALT_OF_COPPER, 'codepoint, 0x1F727);
26095put('ALCHEMICAL_SYMBOL_FOR_VERDIGRIS, 'codepoint, 0x1F728);
26096put('ALCHEMICAL_SYMBOL_FOR_TIN_ORE, 'codepoint, 0x1F729);
26097put('ALCHEMICAL_SYMBOL_FOR_LEAD_ORE, 'codepoint, 0x1F72A);
26098put('ALCHEMICAL_SYMBOL_FOR_ANTIMONY_ORE, 'codepoint, 0x1F72B);
26099put('ALCHEMICAL_SYMBOL_FOR_SUBLIMATE_OF_ANTIMONY, 'codepoint, 0x1F72C);
26100put('ALCHEMICAL_SYMBOL_FOR_SALT_OF_ANTIMONY, 'codepoint, 0x1F72D);
26101put('ALCHEMICAL_SYMBOL_FOR_SUBLIMATE_OF_SALT_OF_ANTIMONY, 'codepoint, 0x1F72E);
26102put('ALCHEMICAL_SYMBOL_FOR_VINEGAR_OF_ANTIMONY, 'codepoint, 0x1F72F);
26103put('ALCHEMICAL_SYMBOL_FOR_REGULUS_OF_ANTIMONY, 'codepoint, 0x1F730);
26104put('ALCHEMICAL_SYMBOL_FOR_REGULUS_OF_ANTIMONY_2, 'codepoint, 0x1F731);
26105put('ALCHEMICAL_SYMBOL_FOR_REGULUS, 'codepoint, 0x1F732);
26106put('ALCHEMICAL_SYMBOL_FOR_REGULUS_2, 'codepoint, 0x1F733);
26107put('ALCHEMICAL_SYMBOL_FOR_REGULUS_3, 'codepoint, 0x1F734);
26108put('ALCHEMICAL_SYMBOL_FOR_REGULUS_4, 'codepoint, 0x1F735);
26109put('ALCHEMICAL_SYMBOL_FOR_ALKALI, 'codepoint, 0x1F736);
26110put('ALCHEMICAL_SYMBOL_FOR_ALKALI_2, 'codepoint, 0x1F737);
26111put('ALCHEMICAL_SYMBOL_FOR_MARCASITE, 'codepoint, 0x1F738);
26112put('ALCHEMICAL_SYMBOL_FOR_SAL_AMMONIAC, 'codepoint, 0x1F739);
26113put('ALCHEMICAL_SYMBOL_FOR_ARSENIC, 'codepoint, 0x1F73A);
26114put('ALCHEMICAL_SYMBOL_FOR_REALGAR, 'codepoint, 0x1F73B);
26115put('ALCHEMICAL_SYMBOL_FOR_REALGAR_2, 'codepoint, 0x1F73C);
26116put('ALCHEMICAL_SYMBOL_FOR_AURIPIGMENT, 'codepoint, 0x1F73D);
26117put('ALCHEMICAL_SYMBOL_FOR_BISMUTH_ORE, 'codepoint, 0x1F73E);
26118put('ALCHEMICAL_SYMBOL_FOR_TARTAR, 'codepoint, 0x1F73F);
26119put('ALCHEMICAL_SYMBOL_FOR_TARTAR_2, 'codepoint, 0x1F740);
26120put('ALCHEMICAL_SYMBOL_FOR_QUICK_LIME, 'codepoint, 0x1F741);
26121put('ALCHEMICAL_SYMBOL_FOR_BORAX, 'codepoint, 0x1F742);
26122put('ALCHEMICAL_SYMBOL_FOR_BORAX_2, 'codepoint, 0x1F743);
26123put('ALCHEMICAL_SYMBOL_FOR_BORAX_3, 'codepoint, 0x1F744);
26124put('ALCHEMICAL_SYMBOL_FOR_ALUM, 'codepoint, 0x1F745);
26125put('ALCHEMICAL_SYMBOL_FOR_OIL, 'codepoint, 0x1F746);
26126put('ALCHEMICAL_SYMBOL_FOR_SPIRIT, 'codepoint, 0x1F747);
26127put('ALCHEMICAL_SYMBOL_FOR_TINCTURE, 'codepoint, 0x1F748);
26128put('ALCHEMICAL_SYMBOL_FOR_GUM, 'codepoint, 0x1F749);
26129put('ALCHEMICAL_SYMBOL_FOR_WAX, 'codepoint, 0x1F74A);
26130put('ALCHEMICAL_SYMBOL_FOR_POWDER, 'codepoint, 0x1F74B);
26131put('ALCHEMICAL_SYMBOL_FOR_CALX, 'codepoint, 0x1F74C);
26132put('ALCHEMICAL_SYMBOL_FOR_TUTTY, 'codepoint, 0x1F74D);
26133put('ALCHEMICAL_SYMBOL_FOR_CAPUT_MORTUUM, 'codepoint, 0x1F74E);
26134put('ALCHEMICAL_SYMBOL_FOR_SCEPTER_OF_JOVE, 'codepoint, 0x1F74F);
26135put('ALCHEMICAL_SYMBOL_FOR_CADUCEUS, 'codepoint, 0x1F750);
26136put('ALCHEMICAL_SYMBOL_FOR_TRIDENT, 'codepoint, 0x1F751);
26137put('ALCHEMICAL_SYMBOL_FOR_STARRED_TRIDENT, 'codepoint, 0x1F752);
26138put('ALCHEMICAL_SYMBOL_FOR_LODESTONE, 'codepoint, 0x1F753);
26139put('ALCHEMICAL_SYMBOL_FOR_SOAP, 'codepoint, 0x1F754);
26140put('ALCHEMICAL_SYMBOL_FOR_URINE, 'codepoint, 0x1F755);
26141put('ALCHEMICAL_SYMBOL_FOR_HORSE_DUNG, 'codepoint, 0x1F756);
26142put('ALCHEMICAL_SYMBOL_FOR_ASHES, 'codepoint, 0x1F757);
26143put('ALCHEMICAL_SYMBOL_FOR_POT_ASHES, 'codepoint, 0x1F758);
26144put('ALCHEMICAL_SYMBOL_FOR_BRICK, 'codepoint, 0x1F759);
26145put('ALCHEMICAL_SYMBOL_FOR_POWDERED_BRICK, 'codepoint, 0x1F75A);
26146put('ALCHEMICAL_SYMBOL_FOR_AMALGAM, 'codepoint, 0x1F75B);
26147put('ALCHEMICAL_SYMBOL_FOR_STRATUM_SUPER_STRATUM, 'codepoint, 0x1F75C);
26148put('ALCHEMICAL_SYMBOL_FOR_STRATUM_SUPER_STRATUM_2, 'codepoint, 0x1F75D);
26149put('ALCHEMICAL_SYMBOL_FOR_SUBLIMATION, 'codepoint, 0x1F75E);
26150put('ALCHEMICAL_SYMBOL_FOR_PRECIPITATE, 'codepoint, 0x1F75F);
26151put('ALCHEMICAL_SYMBOL_FOR_DISTILL, 'codepoint, 0x1F760);
26152put('ALCHEMICAL_SYMBOL_FOR_DISSOLVE, 'codepoint, 0x1F761);
26153put('ALCHEMICAL_SYMBOL_FOR_DISSOLVE_2, 'codepoint, 0x1F762);
26154put('ALCHEMICAL_SYMBOL_FOR_PURIFY, 'codepoint, 0x1F763);
26155put('ALCHEMICAL_SYMBOL_FOR_PUTREFACTION, 'codepoint, 0x1F764);
26156put('ALCHEMICAL_SYMBOL_FOR_CRUCIBLE, 'codepoint, 0x1F765);
26157put('ALCHEMICAL_SYMBOL_FOR_CRUCIBLE_2, 'codepoint, 0x1F766);
26158put('ALCHEMICAL_SYMBOL_FOR_CRUCIBLE_3, 'codepoint, 0x1F767);
26159put('ALCHEMICAL_SYMBOL_FOR_CRUCIBLE_4, 'codepoint, 0x1F768);
26160put('ALCHEMICAL_SYMBOL_FOR_CRUCIBLE_5, 'codepoint, 0x1F769);
26161put('ALCHEMICAL_SYMBOL_FOR_ALEMBIC, 'codepoint, 0x1F76A);
26162put('ALCHEMICAL_SYMBOL_FOR_BATH_OF_MARY, 'codepoint, 0x1F76B);
26163put('ALCHEMICAL_SYMBOL_FOR_BATH_OF_VAPOURS, 'codepoint, 0x1F76C);
26164put('ALCHEMICAL_SYMBOL_FOR_RETORT, 'codepoint, 0x1F76D);
26165put('ALCHEMICAL_SYMBOL_FOR_HOUR, 'codepoint, 0x1F76E);
26166put('ALCHEMICAL_SYMBOL_FOR_NIGHT, 'codepoint, 0x1F76F);
26167put('ALCHEMICAL_SYMBOL_FOR_DAY_NIGHT, 'codepoint, 0x1F770);
26168put('ALCHEMICAL_SYMBOL_FOR_MONTH, 'codepoint, 0x1F771);
26169put('ALCHEMICAL_SYMBOL_FOR_HALF_DRAM, 'codepoint, 0x1F772);
26170put('ALCHEMICAL_SYMBOL_FOR_HALF_OUNCE, 'codepoint, 0x1F773);
26171put('BLACK_LEFT_POINTING_ISOSCELES_RIGHT_TRIANGLE, 'codepoint, 0x1F780);
26172put('BLACK_UP_POINTING_ISOSCELES_RIGHT_TRIANGLE, 'codepoint, 0x1F781);
26173put('BLACK_RIGHT_POINTING_ISOSCELES_RIGHT_TRIANGLE, 'codepoint, 0x1F782);
26174put('BLACK_DOWN_POINTING_ISOSCELES_RIGHT_TRIANGLE, 'codepoint, 0x1F783);
26175put('BLACK_SLIGHTLY_SMALL_CIRCLE, 'codepoint, 0x1F784);
26176put('MEDIUM_BOLD_WHITE_CIRCLE, 'codepoint, 0x1F785);
26177put('BOLD_WHITE_CIRCLE, 'codepoint, 0x1F786);
26178put('HEAVY_WHITE_CIRCLE, 'codepoint, 0x1F787);
26179put('VERY_HEAVY_WHITE_CIRCLE, 'codepoint, 0x1F788);
26180put('EXTREMELY_HEAVY_WHITE_CIRCLE, 'codepoint, 0x1F789);
26181put('WHITE_CIRCLE_CONTAINING_BLACK_SMALL_CIRCLE, 'codepoint, 0x1F78A);
26182put('ROUND_TARGET, 'codepoint, 0x1F78B);
26183put('BLACK_TINY_SQUARE, 'codepoint, 0x1F78C);
26184put('BLACK_SLIGHTLY_SMALL_SQUARE, 'codepoint, 0x1F78D);
26185put('LIGHT_WHITE_SQUARE, 'codepoint, 0x1F78E);
26186put('MEDIUM_WHITE_SQUARE, 'codepoint, 0x1F78F);
26187put('BOLD_WHITE_SQUARE, 'codepoint, 0x1F790);
26188put('HEAVY_WHITE_SQUARE, 'codepoint, 0x1F791);
26189put('VERY_HEAVY_WHITE_SQUARE, 'codepoint, 0x1F792);
26190put('EXTREMELY_HEAVY_WHITE_SQUARE, 'codepoint, 0x1F793);
26191put('WHITE_SQUARE_CONTAINING_BLACK_VERY_SMALL_SQUARE, 'codepoint, 0x1F794);
26192put('WHITE_SQUARE_CONTAINING_BLACK_MEDIUM_SQUARE, 'codepoint, 0x1F795);
26193put('SQUARE_TARGET, 'codepoint, 0x1F796);
26194put('BLACK_TINY_DIAMOND, 'codepoint, 0x1F797);
26195put('BLACK_VERY_SMALL_DIAMOND, 'codepoint, 0x1F798);
26196put('BLACK_MEDIUM_SMALL_DIAMOND, 'codepoint, 0x1F799);
26197put('WHITE_DIAMOND_CONTAINING_BLACK_VERY_SMALL_DIAMOND, 'codepoint, 0x1F79A);
26198put('WHITE_DIAMOND_CONTAINING_BLACK_MEDIUM_DIAMOND, 'codepoint, 0x1F79B);
26199put('DIAMOND_TARGET, 'codepoint, 0x1F79C);
26200put('BLACK_TINY_LOZENGE, 'codepoint, 0x1F79D);
26201put('BLACK_VERY_SMALL_LOZENGE, 'codepoint, 0x1F79E);
26202put('BLACK_MEDIUM_SMALL_LOZENGE, 'codepoint, 0x1F79F);
26203put('WHITE_LOZENGE_CONTAINING_BLACK_SMALL_LOZENGE, 'codepoint, 0x1F7A0);
26204put('THIN_GREEK_CROSS, 'codepoint, 0x1F7A1);
26205put('LIGHT_GREEK_CROSS, 'codepoint, 0x1F7A2);
26206put('MEDIUM_GREEK_CROSS, 'codepoint, 0x1F7A3);
26207put('BOLD_GREEK_CROSS, 'codepoint, 0x1F7A4);
26208put('VERY_BOLD_GREEK_CROSS, 'codepoint, 0x1F7A5);
26209put('VERY_HEAVY_GREEK_CROSS, 'codepoint, 0x1F7A6);
26210put('EXTREMELY_HEAVY_GREEK_CROSS, 'codepoint, 0x1F7A7);
26211put('THIN_SALTIRE, 'codepoint, 0x1F7A8);
26212put('LIGHT_SALTIRE, 'codepoint, 0x1F7A9);
26213put('MEDIUM_SALTIRE, 'codepoint, 0x1F7AA);
26214put('BOLD_SALTIRE, 'codepoint, 0x1F7AB);
26215put('HEAVY_SALTIRE, 'codepoint, 0x1F7AC);
26216put('VERY_HEAVY_SALTIRE, 'codepoint, 0x1F7AD);
26217put('EXTREMELY_HEAVY_SALTIRE, 'codepoint, 0x1F7AE);
26218put('LIGHT_FIVE_SPOKED_ASTERISK, 'codepoint, 0x1F7AF);
26219put('MEDIUM_FIVE_SPOKED_ASTERISK, 'codepoint, 0x1F7B0);
26220put('BOLD_FIVE_SPOKED_ASTERISK, 'codepoint, 0x1F7B1);
26221put('HEAVY_FIVE_SPOKED_ASTERISK, 'codepoint, 0x1F7B2);
26222put('VERY_HEAVY_FIVE_SPOKED_ASTERISK, 'codepoint, 0x1F7B3);
26223put('EXTREMELY_HEAVY_FIVE_SPOKED_ASTERISK, 'codepoint, 0x1F7B4);
26224put('LIGHT_SIX_SPOKED_ASTERISK, 'codepoint, 0x1F7B5);
26225put('MEDIUM_SIX_SPOKED_ASTERISK, 'codepoint, 0x1F7B6);
26226put('BOLD_SIX_SPOKED_ASTERISK, 'codepoint, 0x1F7B7);
26227put('HEAVY_SIX_SPOKED_ASTERISK, 'codepoint, 0x1F7B8);
26228put('VERY_HEAVY_SIX_SPOKED_ASTERISK, 'codepoint, 0x1F7B9);
26229put('EXTREMELY_HEAVY_SIX_SPOKED_ASTERISK, 'codepoint, 0x1F7BA);
26230put('LIGHT_EIGHT_SPOKED_ASTERISK, 'codepoint, 0x1F7BB);
26231put('MEDIUM_EIGHT_SPOKED_ASTERISK, 'codepoint, 0x1F7BC);
26232put('BOLD_EIGHT_SPOKED_ASTERISK, 'codepoint, 0x1F7BD);
26233put('HEAVY_EIGHT_SPOKED_ASTERISK, 'codepoint, 0x1F7BE);
26234put('VERY_HEAVY_EIGHT_SPOKED_ASTERISK, 'codepoint, 0x1F7BF);
26235put('LIGHT_THREE_POINTED_BLACK_STAR, 'codepoint, 0x1F7C0);
26236put('MEDIUM_THREE_POINTED_BLACK_STAR, 'codepoint, 0x1F7C1);
26237put('THREE_POINTED_BLACK_STAR, 'codepoint, 0x1F7C2);
26238put('MEDIUM_THREE_POINTED_PINWHEEL_STAR, 'codepoint, 0x1F7C3);
26239put('LIGHT_FOUR_POINTED_BLACK_STAR, 'codepoint, 0x1F7C4);
26240put('MEDIUM_FOUR_POINTED_BLACK_STAR, 'codepoint, 0x1F7C5);
26241put('FOUR_POINTED_BLACK_STAR, 'codepoint, 0x1F7C6);
26242put('MEDIUM_FOUR_POINTED_PINWHEEL_STAR, 'codepoint, 0x1F7C7);
26243put('REVERSE_LIGHT_FOUR_POINTED_PINWHEEL_STAR, 'codepoint, 0x1F7C8);
26244put('LIGHT_FIVE_POINTED_BLACK_STAR, 'codepoint, 0x1F7C9);
26245put('HEAVY_FIVE_POINTED_BLACK_STAR, 'codepoint, 0x1F7CA);
26246put('MEDIUM_SIX_POINTED_BLACK_STAR, 'codepoint, 0x1F7CB);
26247put('HEAVY_SIX_POINTED_BLACK_STAR, 'codepoint, 0x1F7CC);
26248put('SIX_POINTED_PINWHEEL_STAR, 'codepoint, 0x1F7CD);
26249put('MEDIUM_EIGHT_POINTED_BLACK_STAR, 'codepoint, 0x1F7CE);
26250put('HEAVY_EIGHT_POINTED_BLACK_STAR, 'codepoint, 0x1F7CF);
26251put('VERY_HEAVY_EIGHT_POINTED_BLACK_STAR, 'codepoint, 0x1F7D0);
26252put('HEAVY_EIGHT_POINTED_PINWHEEL_STAR, 'codepoint, 0x1F7D1);
26253put('LIGHT_TWELVE_POINTED_BLACK_STAR, 'codepoint, 0x1F7D2);
26254put('HEAVY_TWELVE_POINTED_BLACK_STAR, 'codepoint, 0x1F7D3);
26255put('HEAVY_TWELVE_POINTED_PINWHEEL_STAR, 'codepoint, 0x1F7D4);
26256put('LEFTWARDS_ARROW_WITH_SMALL_TRIANGLE_ARROWHEAD, 'codepoint, 0x1F800);
26257put('UPWARDS_ARROW_WITH_SMALL_TRIANGLE_ARROWHEAD, 'codepoint, 0x1F801);
26258put('RIGHTWARDS_ARROW_WITH_SMALL_TRIANGLE_ARROWHEAD, 'codepoint, 0x1F802);
26259put('DOWNWARDS_ARROW_WITH_SMALL_TRIANGLE_ARROWHEAD, 'codepoint, 0x1F803);
26260put('LEFTWARDS_ARROW_WITH_MEDIUM_TRIANGLE_ARROWHEAD, 'codepoint, 0x1F804);
26261put('UPWARDS_ARROW_WITH_MEDIUM_TRIANGLE_ARROWHEAD, 'codepoint, 0x1F805);
26262put('RIGHTWARDS_ARROW_WITH_MEDIUM_TRIANGLE_ARROWHEAD, 'codepoint, 0x1F806);
26263put('DOWNWARDS_ARROW_WITH_MEDIUM_TRIANGLE_ARROWHEAD, 'codepoint, 0x1F807);
26264put('LEFTWARDS_ARROW_WITH_LARGE_TRIANGLE_ARROWHEAD, 'codepoint, 0x1F808);
26265put('UPWARDS_ARROW_WITH_LARGE_TRIANGLE_ARROWHEAD, 'codepoint, 0x1F809);
26266put('RIGHTWARDS_ARROW_WITH_LARGE_TRIANGLE_ARROWHEAD, 'codepoint, 0x1F80A);
26267put('DOWNWARDS_ARROW_WITH_LARGE_TRIANGLE_ARROWHEAD, 'codepoint, 0x1F80B);
26268put('LEFTWARDS_ARROW_WITH_SMALL_EQUILATERAL_ARROWHEAD, 'codepoint, 0x1F810);
26269put('UPWARDS_ARROW_WITH_SMALL_EQUILATERAL_ARROWHEAD, 'codepoint, 0x1F811);
26270put('RIGHTWARDS_ARROW_WITH_SMALL_EQUILATERAL_ARROWHEAD, 'codepoint, 0x1F812);
26271put('DOWNWARDS_ARROW_WITH_SMALL_EQUILATERAL_ARROWHEAD, 'codepoint, 0x1F813);
26272put('LEFTWARDS_ARROW_WITH_EQUILATERAL_ARROWHEAD, 'codepoint, 0x1F814);
26273put('UPWARDS_ARROW_WITH_EQUILATERAL_ARROWHEAD, 'codepoint, 0x1F815);
26274put('RIGHTWARDS_ARROW_WITH_EQUILATERAL_ARROWHEAD, 'codepoint, 0x1F816);
26275put('DOWNWARDS_ARROW_WITH_EQUILATERAL_ARROWHEAD, 'codepoint, 0x1F817);
26276put('HEAVY_LEFTWARDS_ARROW_WITH_EQUILATERAL_ARROWHEAD, 'codepoint, 0x1F818);
26277put('HEAVY_UPWARDS_ARROW_WITH_EQUILATERAL_ARROWHEAD, 'codepoint, 0x1F819);
26278put('HEAVY_RIGHTWARDS_ARROW_WITH_EQUILATERAL_ARROWHEAD, 'codepoint, 0x1F81A);
26279put('HEAVY_DOWNWARDS_ARROW_WITH_EQUILATERAL_ARROWHEAD, 'codepoint, 0x1F81B);
26280put('HEAVY_LEFTWARDS_ARROW_WITH_LARGE_EQUILATERAL_ARROWHEAD, 'codepoint, 0x1F81C);
26281put('HEAVY_UPWARDS_ARROW_WITH_LARGE_EQUILATERAL_ARROWHEAD, 'codepoint, 0x1F81D);
26282put('HEAVY_RIGHTWARDS_ARROW_WITH_LARGE_EQUILATERAL_ARROWHEAD, 'codepoint, 0x1F81E);
26283put('HEAVY_DOWNWARDS_ARROW_WITH_LARGE_EQUILATERAL_ARROWHEAD, 'codepoint, 0x1F81F);
26284put('LEFTWARDS_TRIANGLE_HEADED_ARROW_WITH_NARROW_SHAFT, 'codepoint, 0x1F820);
26285put('UPWARDS_TRIANGLE_HEADED_ARROW_WITH_NARROW_SHAFT, 'codepoint, 0x1F821);
26286put('RIGHTWARDS_TRIANGLE_HEADED_ARROW_WITH_NARROW_SHAFT, 'codepoint, 0x1F822);
26287put('DOWNWARDS_TRIANGLE_HEADED_ARROW_WITH_NARROW_SHAFT, 'codepoint, 0x1F823);
26288put('LEFTWARDS_TRIANGLE_HEADED_ARROW_WITH_MEDIUM_SHAFT, 'codepoint, 0x1F824);
26289put('UPWARDS_TRIANGLE_HEADED_ARROW_WITH_MEDIUM_SHAFT, 'codepoint, 0x1F825);
26290put('RIGHTWARDS_TRIANGLE_HEADED_ARROW_WITH_MEDIUM_SHAFT, 'codepoint, 0x1F826);
26291put('DOWNWARDS_TRIANGLE_HEADED_ARROW_WITH_MEDIUM_SHAFT, 'codepoint, 0x1F827);
26292put('LEFTWARDS_TRIANGLE_HEADED_ARROW_WITH_BOLD_SHAFT, 'codepoint, 0x1F828);
26293put('UPWARDS_TRIANGLE_HEADED_ARROW_WITH_BOLD_SHAFT, 'codepoint, 0x1F829);
26294put('RIGHTWARDS_TRIANGLE_HEADED_ARROW_WITH_BOLD_SHAFT, 'codepoint, 0x1F82A);
26295put('DOWNWARDS_TRIANGLE_HEADED_ARROW_WITH_BOLD_SHAFT, 'codepoint, 0x1F82B);
26296put('LEFTWARDS_TRIANGLE_HEADED_ARROW_WITH_HEAVY_SHAFT, 'codepoint, 0x1F82C);
26297put('UPWARDS_TRIANGLE_HEADED_ARROW_WITH_HEAVY_SHAFT, 'codepoint, 0x1F82D);
26298put('RIGHTWARDS_TRIANGLE_HEADED_ARROW_WITH_HEAVY_SHAFT, 'codepoint, 0x1F82E);
26299put('DOWNWARDS_TRIANGLE_HEADED_ARROW_WITH_HEAVY_SHAFT, 'codepoint, 0x1F82F);
26300put('LEFTWARDS_TRIANGLE_HEADED_ARROW_WITH_VERY_HEAVY_SHAFT, 'codepoint, 0x1F830);
26301put('UPWARDS_TRIANGLE_HEADED_ARROW_WITH_VERY_HEAVY_SHAFT, 'codepoint, 0x1F831);
26302put('RIGHTWARDS_TRIANGLE_HEADED_ARROW_WITH_VERY_HEAVY_SHAFT, 'codepoint, 0x1F832);
26303put('DOWNWARDS_TRIANGLE_HEADED_ARROW_WITH_VERY_HEAVY_SHAFT, 'codepoint, 0x1F833);
26304put('LEFTWARDS_FINGER_POST_ARROW, 'codepoint, 0x1F834);
26305put('UPWARDS_FINGER_POST_ARROW, 'codepoint, 0x1F835);
26306put('RIGHTWARDS_FINGER_POST_ARROW, 'codepoint, 0x1F836);
26307put('DOWNWARDS_FINGER_POST_ARROW, 'codepoint, 0x1F837);
26308put('LEFTWARDS_SQUARED_ARROW, 'codepoint, 0x1F838);
26309put('UPWARDS_SQUARED_ARROW, 'codepoint, 0x1F839);
26310put('RIGHTWARDS_SQUARED_ARROW, 'codepoint, 0x1F83A);
26311put('DOWNWARDS_SQUARED_ARROW, 'codepoint, 0x1F83B);
26312put('LEFTWARDS_COMPRESSED_ARROW, 'codepoint, 0x1F83C);
26313put('UPWARDS_COMPRESSED_ARROW, 'codepoint, 0x1F83D);
26314put('RIGHTWARDS_COMPRESSED_ARROW, 'codepoint, 0x1F83E);
26315put('DOWNWARDS_COMPRESSED_ARROW, 'codepoint, 0x1F83F);
26316put('LEFTWARDS_HEAVY_COMPRESSED_ARROW, 'codepoint, 0x1F840);
26317put('UPWARDS_HEAVY_COMPRESSED_ARROW, 'codepoint, 0x1F841);
26318put('RIGHTWARDS_HEAVY_COMPRESSED_ARROW, 'codepoint, 0x1F842);
26319put('DOWNWARDS_HEAVY_COMPRESSED_ARROW, 'codepoint, 0x1F843);
26320put('LEFTWARDS_HEAVY_ARROW, 'codepoint, 0x1F844);
26321put('UPWARDS_HEAVY_ARROW, 'codepoint, 0x1F845);
26322put('RIGHTWARDS_HEAVY_ARROW, 'codepoint, 0x1F846);
26323put('DOWNWARDS_HEAVY_ARROW, 'codepoint, 0x1F847);
26324put('LEFTWARDS_SANS_SERIF_ARROW, 'codepoint, 0x1F850);
26325put('UPWARDS_SANS_SERIF_ARROW, 'codepoint, 0x1F851);
26326put('RIGHTWARDS_SANS_SERIF_ARROW, 'codepoint, 0x1F852);
26327put('DOWNWARDS_SANS_SERIF_ARROW, 'codepoint, 0x1F853);
26328put('NORTH_WEST_SANS_SERIF_ARROW, 'codepoint, 0x1F854);
26329put('NORTH_EAST_SANS_SERIF_ARROW, 'codepoint, 0x1F855);
26330put('SOUTH_EAST_SANS_SERIF_ARROW, 'codepoint, 0x1F856);
26331put('SOUTH_WEST_SANS_SERIF_ARROW, 'codepoint, 0x1F857);
26332put('LEFT_RIGHT_SANS_SERIF_ARROW, 'codepoint, 0x1F858);
26333put('UP_DOWN_SANS_SERIF_ARROW, 'codepoint, 0x1F859);
26334put('WIDE_HEADED_LEFTWARDS_LIGHT_BARB_ARROW, 'codepoint, 0x1F860);
26335put('WIDE_HEADED_UPWARDS_LIGHT_BARB_ARROW, 'codepoint, 0x1F861);
26336put('WIDE_HEADED_RIGHTWARDS_LIGHT_BARB_ARROW, 'codepoint, 0x1F862);
26337put('WIDE_HEADED_DOWNWARDS_LIGHT_BARB_ARROW, 'codepoint, 0x1F863);
26338put('WIDE_HEADED_NORTH_WEST_LIGHT_BARB_ARROW, 'codepoint, 0x1F864);
26339put('WIDE_HEADED_NORTH_EAST_LIGHT_BARB_ARROW, 'codepoint, 0x1F865);
26340put('WIDE_HEADED_SOUTH_EAST_LIGHT_BARB_ARROW, 'codepoint, 0x1F866);
26341put('WIDE_HEADED_SOUTH_WEST_LIGHT_BARB_ARROW, 'codepoint, 0x1F867);
26342put('WIDE_HEADED_LEFTWARDS_BARB_ARROW, 'codepoint, 0x1F868);
26343put('WIDE_HEADED_UPWARDS_BARB_ARROW, 'codepoint, 0x1F869);
26344put('WIDE_HEADED_RIGHTWARDS_BARB_ARROW, 'codepoint, 0x1F86A);
26345put('WIDE_HEADED_DOWNWARDS_BARB_ARROW, 'codepoint, 0x1F86B);
26346put('WIDE_HEADED_NORTH_WEST_BARB_ARROW, 'codepoint, 0x1F86C);
26347put('WIDE_HEADED_NORTH_EAST_BARB_ARROW, 'codepoint, 0x1F86D);
26348put('WIDE_HEADED_SOUTH_EAST_BARB_ARROW, 'codepoint, 0x1F86E);
26349put('WIDE_HEADED_SOUTH_WEST_BARB_ARROW, 'codepoint, 0x1F86F);
26350put('WIDE_HEADED_LEFTWARDS_MEDIUM_BARB_ARROW, 'codepoint, 0x1F870);
26351put('WIDE_HEADED_UPWARDS_MEDIUM_BARB_ARROW, 'codepoint, 0x1F871);
26352put('WIDE_HEADED_RIGHTWARDS_MEDIUM_BARB_ARROW, 'codepoint, 0x1F872);
26353put('WIDE_HEADED_DOWNWARDS_MEDIUM_BARB_ARROW, 'codepoint, 0x1F873);
26354put('WIDE_HEADED_NORTH_WEST_MEDIUM_BARB_ARROW, 'codepoint, 0x1F874);
26355put('WIDE_HEADED_NORTH_EAST_MEDIUM_BARB_ARROW, 'codepoint, 0x1F875);
26356put('WIDE_HEADED_SOUTH_EAST_MEDIUM_BARB_ARROW, 'codepoint, 0x1F876);
26357put('WIDE_HEADED_SOUTH_WEST_MEDIUM_BARB_ARROW, 'codepoint, 0x1F877);
26358put('WIDE_HEADED_LEFTWARDS_HEAVY_BARB_ARROW, 'codepoint, 0x1F878);
26359put('WIDE_HEADED_UPWARDS_HEAVY_BARB_ARROW, 'codepoint, 0x1F879);
26360put('WIDE_HEADED_RIGHTWARDS_HEAVY_BARB_ARROW, 'codepoint, 0x1F87A);
26361put('WIDE_HEADED_DOWNWARDS_HEAVY_BARB_ARROW, 'codepoint, 0x1F87B);
26362put('WIDE_HEADED_NORTH_WEST_HEAVY_BARB_ARROW, 'codepoint, 0x1F87C);
26363put('WIDE_HEADED_NORTH_EAST_HEAVY_BARB_ARROW, 'codepoint, 0x1F87D);
26364put('WIDE_HEADED_SOUTH_EAST_HEAVY_BARB_ARROW, 'codepoint, 0x1F87E);
26365put('WIDE_HEADED_SOUTH_WEST_HEAVY_BARB_ARROW, 'codepoint, 0x1F87F);
26366put('WIDE_HEADED_LEFTWARDS_VERY_HEAVY_BARB_ARROW, 'codepoint, 0x1F880);
26367put('WIDE_HEADED_UPWARDS_VERY_HEAVY_BARB_ARROW, 'codepoint, 0x1F881);
26368put('WIDE_HEADED_RIGHTWARDS_VERY_HEAVY_BARB_ARROW, 'codepoint, 0x1F882);
26369put('WIDE_HEADED_DOWNWARDS_VERY_HEAVY_BARB_ARROW, 'codepoint, 0x1F883);
26370put('WIDE_HEADED_NORTH_WEST_VERY_HEAVY_BARB_ARROW, 'codepoint, 0x1F884);
26371put('WIDE_HEADED_NORTH_EAST_VERY_HEAVY_BARB_ARROW, 'codepoint, 0x1F885);
26372put('WIDE_HEADED_SOUTH_EAST_VERY_HEAVY_BARB_ARROW, 'codepoint, 0x1F886);
26373put('WIDE_HEADED_SOUTH_WEST_VERY_HEAVY_BARB_ARROW, 'codepoint, 0x1F887);
26374put('LEFTWARDS_TRIANGLE_ARROWHEAD, 'codepoint, 0x1F890);
26375put('UPWARDS_TRIANGLE_ARROWHEAD, 'codepoint, 0x1F891);
26376put('RIGHTWARDS_TRIANGLE_ARROWHEAD, 'codepoint, 0x1F892);
26377put('DOWNWARDS_TRIANGLE_ARROWHEAD, 'codepoint, 0x1F893);
26378put('LEFTWARDS_WHITE_ARROW_WITHIN_TRIANGLE_ARROWHEAD, 'codepoint, 0x1F894);
26379put('UPWARDS_WHITE_ARROW_WITHIN_TRIANGLE_ARROWHEAD, 'codepoint, 0x1F895);
26380put('RIGHTWARDS_WHITE_ARROW_WITHIN_TRIANGLE_ARROWHEAD, 'codepoint, 0x1F896);
26381put('DOWNWARDS_WHITE_ARROW_WITHIN_TRIANGLE_ARROWHEAD, 'codepoint, 0x1F897);
26382put('LEFTWARDS_ARROW_WITH_NOTCHED_TAIL, 'codepoint, 0x1F898);
26383put('UPWARDS_ARROW_WITH_NOTCHED_TAIL, 'codepoint, 0x1F899);
26384put('RIGHTWARDS_ARROW_WITH_NOTCHED_TAIL, 'codepoint, 0x1F89A);
26385put('DOWNWARDS_ARROW_WITH_NOTCHED_TAIL, 'codepoint, 0x1F89B);
26386put('HEAVY_ARROW_SHAFT_WIDTH_ONE, 'codepoint, 0x1F89C);
26387put('HEAVY_ARROW_SHAFT_WIDTH_TWO_THIRDS, 'codepoint, 0x1F89D);
26388put('HEAVY_ARROW_SHAFT_WIDTH_ONE_HALF, 'codepoint, 0x1F89E);
26389put('HEAVY_ARROW_SHAFT_WIDTH_ONE_THIRD, 'codepoint, 0x1F89F);
26390put('LEFTWARDS_BOTTOM_SHADED_WHITE_ARROW, 'codepoint, 0x1F8A0);
26391put('RIGHTWARDS_BOTTOM_SHADED_WHITE_ARROW, 'codepoint, 0x1F8A1);
26392put('LEFTWARDS_TOP_SHADED_WHITE_ARROW, 'codepoint, 0x1F8A2);
26393put('RIGHTWARDS_TOP_SHADED_WHITE_ARROW, 'codepoint, 0x1F8A3);
26394put('LEFTWARDS_LEFT_SHADED_WHITE_ARROW, 'codepoint, 0x1F8A4);
26395put('RIGHTWARDS_RIGHT_SHADED_WHITE_ARROW, 'codepoint, 0x1F8A5);
26396put('LEFTWARDS_RIGHT_SHADED_WHITE_ARROW, 'codepoint, 0x1F8A6);
26397put('RIGHTWARDS_LEFT_SHADED_WHITE_ARROW, 'codepoint, 0x1F8A7);
26398put('LEFTWARDS_BACK_TILTED_SHADOWED_WHITE_ARROW, 'codepoint, 0x1F8A8);
26399put('RIGHTWARDS_BACK_TILTED_SHADOWED_WHITE_ARROW, 'codepoint, 0x1F8A9);
26400put('LEFTWARDS_FRONT_TILTED_SHADOWED_WHITE_ARROW, 'codepoint, 0x1F8AA);
26401put('RIGHTWARDS_FRONT_TILTED_SHADOWED_WHITE_ARROW, 'codepoint, 0x1F8AB);
26402put('WHITE_ARROW_SHAFT_WIDTH_ONE, 'codepoint, 0x1F8AC);
26403put('WHITE_ARROW_SHAFT_WIDTH_TWO_THIRDS, 'codepoint, 0x1F8AD);
26404put('CJK_Ideograph_Extension_B__First, 'codepoint, 0x20000);
26405put('CJK_Ideograph_Extension_B__Last, 'codepoint, 0x2A6D6);
26406put('CJK_Ideograph_Extension_C__First, 'codepoint, 0x2A700);
26407put('CJK_Ideograph_Extension_C__Last, 'codepoint, 0x2B734);
26408put('CJK_Ideograph_Extension_D__First, 'codepoint, 0x2B740);
26409put('CJK_Ideograph_Extension_D__Last, 'codepoint, 0x2B81D);
26410put('CJK_COMPATIBILITY_IDEOGRAPH_2F800, 'codepoint, 0x2F800);
26411put('CJK_COMPATIBILITY_IDEOGRAPH_2F801, 'codepoint, 0x2F801);
26412put('CJK_COMPATIBILITY_IDEOGRAPH_2F802, 'codepoint, 0x2F802);
26413put('CJK_COMPATIBILITY_IDEOGRAPH_2F803, 'codepoint, 0x2F803);
26414put('CJK_COMPATIBILITY_IDEOGRAPH_2F804, 'codepoint, 0x2F804);
26415put('CJK_COMPATIBILITY_IDEOGRAPH_2F805, 'codepoint, 0x2F805);
26416put('CJK_COMPATIBILITY_IDEOGRAPH_2F806, 'codepoint, 0x2F806);
26417put('CJK_COMPATIBILITY_IDEOGRAPH_2F807, 'codepoint, 0x2F807);
26418put('CJK_COMPATIBILITY_IDEOGRAPH_2F808, 'codepoint, 0x2F808);
26419put('CJK_COMPATIBILITY_IDEOGRAPH_2F809, 'codepoint, 0x2F809);
26420put('CJK_COMPATIBILITY_IDEOGRAPH_2F80A, 'codepoint, 0x2F80A);
26421put('CJK_COMPATIBILITY_IDEOGRAPH_2F80B, 'codepoint, 0x2F80B);
26422put('CJK_COMPATIBILITY_IDEOGRAPH_2F80C, 'codepoint, 0x2F80C);
26423put('CJK_COMPATIBILITY_IDEOGRAPH_2F80D, 'codepoint, 0x2F80D);
26424put('CJK_COMPATIBILITY_IDEOGRAPH_2F80E, 'codepoint, 0x2F80E);
26425put('CJK_COMPATIBILITY_IDEOGRAPH_2F80F, 'codepoint, 0x2F80F);
26426put('CJK_COMPATIBILITY_IDEOGRAPH_2F810, 'codepoint, 0x2F810);
26427put('CJK_COMPATIBILITY_IDEOGRAPH_2F811, 'codepoint, 0x2F811);
26428put('CJK_COMPATIBILITY_IDEOGRAPH_2F812, 'codepoint, 0x2F812);
26429put('CJK_COMPATIBILITY_IDEOGRAPH_2F813, 'codepoint, 0x2F813);
26430put('CJK_COMPATIBILITY_IDEOGRAPH_2F814, 'codepoint, 0x2F814);
26431put('CJK_COMPATIBILITY_IDEOGRAPH_2F815, 'codepoint, 0x2F815);
26432put('CJK_COMPATIBILITY_IDEOGRAPH_2F816, 'codepoint, 0x2F816);
26433put('CJK_COMPATIBILITY_IDEOGRAPH_2F817, 'codepoint, 0x2F817);
26434put('CJK_COMPATIBILITY_IDEOGRAPH_2F818, 'codepoint, 0x2F818);
26435put('CJK_COMPATIBILITY_IDEOGRAPH_2F819, 'codepoint, 0x2F819);
26436put('CJK_COMPATIBILITY_IDEOGRAPH_2F81A, 'codepoint, 0x2F81A);
26437put('CJK_COMPATIBILITY_IDEOGRAPH_2F81B, 'codepoint, 0x2F81B);
26438put('CJK_COMPATIBILITY_IDEOGRAPH_2F81C, 'codepoint, 0x2F81C);
26439put('CJK_COMPATIBILITY_IDEOGRAPH_2F81D, 'codepoint, 0x2F81D);
26440put('CJK_COMPATIBILITY_IDEOGRAPH_2F81E, 'codepoint, 0x2F81E);
26441put('CJK_COMPATIBILITY_IDEOGRAPH_2F81F, 'codepoint, 0x2F81F);
26442put('CJK_COMPATIBILITY_IDEOGRAPH_2F820, 'codepoint, 0x2F820);
26443put('CJK_COMPATIBILITY_IDEOGRAPH_2F821, 'codepoint, 0x2F821);
26444put('CJK_COMPATIBILITY_IDEOGRAPH_2F822, 'codepoint, 0x2F822);
26445put('CJK_COMPATIBILITY_IDEOGRAPH_2F823, 'codepoint, 0x2F823);
26446put('CJK_COMPATIBILITY_IDEOGRAPH_2F824, 'codepoint, 0x2F824);
26447put('CJK_COMPATIBILITY_IDEOGRAPH_2F825, 'codepoint, 0x2F825);
26448put('CJK_COMPATIBILITY_IDEOGRAPH_2F826, 'codepoint, 0x2F826);
26449put('CJK_COMPATIBILITY_IDEOGRAPH_2F827, 'codepoint, 0x2F827);
26450put('CJK_COMPATIBILITY_IDEOGRAPH_2F828, 'codepoint, 0x2F828);
26451put('CJK_COMPATIBILITY_IDEOGRAPH_2F829, 'codepoint, 0x2F829);
26452put('CJK_COMPATIBILITY_IDEOGRAPH_2F82A, 'codepoint, 0x2F82A);
26453put('CJK_COMPATIBILITY_IDEOGRAPH_2F82B, 'codepoint, 0x2F82B);
26454put('CJK_COMPATIBILITY_IDEOGRAPH_2F82C, 'codepoint, 0x2F82C);
26455put('CJK_COMPATIBILITY_IDEOGRAPH_2F82D, 'codepoint, 0x2F82D);
26456put('CJK_COMPATIBILITY_IDEOGRAPH_2F82E, 'codepoint, 0x2F82E);
26457put('CJK_COMPATIBILITY_IDEOGRAPH_2F82F, 'codepoint, 0x2F82F);
26458put('CJK_COMPATIBILITY_IDEOGRAPH_2F830, 'codepoint, 0x2F830);
26459put('CJK_COMPATIBILITY_IDEOGRAPH_2F831, 'codepoint, 0x2F831);
26460put('CJK_COMPATIBILITY_IDEOGRAPH_2F832, 'codepoint, 0x2F832);
26461put('CJK_COMPATIBILITY_IDEOGRAPH_2F833, 'codepoint, 0x2F833);
26462put('CJK_COMPATIBILITY_IDEOGRAPH_2F834, 'codepoint, 0x2F834);
26463put('CJK_COMPATIBILITY_IDEOGRAPH_2F835, 'codepoint, 0x2F835);
26464put('CJK_COMPATIBILITY_IDEOGRAPH_2F836, 'codepoint, 0x2F836);
26465put('CJK_COMPATIBILITY_IDEOGRAPH_2F837, 'codepoint, 0x2F837);
26466put('CJK_COMPATIBILITY_IDEOGRAPH_2F838, 'codepoint, 0x2F838);
26467put('CJK_COMPATIBILITY_IDEOGRAPH_2F839, 'codepoint, 0x2F839);
26468put('CJK_COMPATIBILITY_IDEOGRAPH_2F83A, 'codepoint, 0x2F83A);
26469put('CJK_COMPATIBILITY_IDEOGRAPH_2F83B, 'codepoint, 0x2F83B);
26470put('CJK_COMPATIBILITY_IDEOGRAPH_2F83C, 'codepoint, 0x2F83C);
26471put('CJK_COMPATIBILITY_IDEOGRAPH_2F83D, 'codepoint, 0x2F83D);
26472put('CJK_COMPATIBILITY_IDEOGRAPH_2F83E, 'codepoint, 0x2F83E);
26473put('CJK_COMPATIBILITY_IDEOGRAPH_2F83F, 'codepoint, 0x2F83F);
26474put('CJK_COMPATIBILITY_IDEOGRAPH_2F840, 'codepoint, 0x2F840);
26475put('CJK_COMPATIBILITY_IDEOGRAPH_2F841, 'codepoint, 0x2F841);
26476put('CJK_COMPATIBILITY_IDEOGRAPH_2F842, 'codepoint, 0x2F842);
26477put('CJK_COMPATIBILITY_IDEOGRAPH_2F843, 'codepoint, 0x2F843);
26478put('CJK_COMPATIBILITY_IDEOGRAPH_2F844, 'codepoint, 0x2F844);
26479put('CJK_COMPATIBILITY_IDEOGRAPH_2F845, 'codepoint, 0x2F845);
26480put('CJK_COMPATIBILITY_IDEOGRAPH_2F846, 'codepoint, 0x2F846);
26481put('CJK_COMPATIBILITY_IDEOGRAPH_2F847, 'codepoint, 0x2F847);
26482put('CJK_COMPATIBILITY_IDEOGRAPH_2F848, 'codepoint, 0x2F848);
26483put('CJK_COMPATIBILITY_IDEOGRAPH_2F849, 'codepoint, 0x2F849);
26484put('CJK_COMPATIBILITY_IDEOGRAPH_2F84A, 'codepoint, 0x2F84A);
26485put('CJK_COMPATIBILITY_IDEOGRAPH_2F84B, 'codepoint, 0x2F84B);
26486put('CJK_COMPATIBILITY_IDEOGRAPH_2F84C, 'codepoint, 0x2F84C);
26487put('CJK_COMPATIBILITY_IDEOGRAPH_2F84D, 'codepoint, 0x2F84D);
26488put('CJK_COMPATIBILITY_IDEOGRAPH_2F84E, 'codepoint, 0x2F84E);
26489put('CJK_COMPATIBILITY_IDEOGRAPH_2F84F, 'codepoint, 0x2F84F);
26490put('CJK_COMPATIBILITY_IDEOGRAPH_2F850, 'codepoint, 0x2F850);
26491put('CJK_COMPATIBILITY_IDEOGRAPH_2F851, 'codepoint, 0x2F851);
26492put('CJK_COMPATIBILITY_IDEOGRAPH_2F852, 'codepoint, 0x2F852);
26493put('CJK_COMPATIBILITY_IDEOGRAPH_2F853, 'codepoint, 0x2F853);
26494put('CJK_COMPATIBILITY_IDEOGRAPH_2F854, 'codepoint, 0x2F854);
26495put('CJK_COMPATIBILITY_IDEOGRAPH_2F855, 'codepoint, 0x2F855);
26496put('CJK_COMPATIBILITY_IDEOGRAPH_2F856, 'codepoint, 0x2F856);
26497put('CJK_COMPATIBILITY_IDEOGRAPH_2F857, 'codepoint, 0x2F857);
26498put('CJK_COMPATIBILITY_IDEOGRAPH_2F858, 'codepoint, 0x2F858);
26499put('CJK_COMPATIBILITY_IDEOGRAPH_2F859, 'codepoint, 0x2F859);
26500put('CJK_COMPATIBILITY_IDEOGRAPH_2F85A, 'codepoint, 0x2F85A);
26501put('CJK_COMPATIBILITY_IDEOGRAPH_2F85B, 'codepoint, 0x2F85B);
26502put('CJK_COMPATIBILITY_IDEOGRAPH_2F85C, 'codepoint, 0x2F85C);
26503put('CJK_COMPATIBILITY_IDEOGRAPH_2F85D, 'codepoint, 0x2F85D);
26504put('CJK_COMPATIBILITY_IDEOGRAPH_2F85E, 'codepoint, 0x2F85E);
26505put('CJK_COMPATIBILITY_IDEOGRAPH_2F85F, 'codepoint, 0x2F85F);
26506put('CJK_COMPATIBILITY_IDEOGRAPH_2F860, 'codepoint, 0x2F860);
26507put('CJK_COMPATIBILITY_IDEOGRAPH_2F861, 'codepoint, 0x2F861);
26508put('CJK_COMPATIBILITY_IDEOGRAPH_2F862, 'codepoint, 0x2F862);
26509put('CJK_COMPATIBILITY_IDEOGRAPH_2F863, 'codepoint, 0x2F863);
26510put('CJK_COMPATIBILITY_IDEOGRAPH_2F864, 'codepoint, 0x2F864);
26511put('CJK_COMPATIBILITY_IDEOGRAPH_2F865, 'codepoint, 0x2F865);
26512put('CJK_COMPATIBILITY_IDEOGRAPH_2F866, 'codepoint, 0x2F866);
26513put('CJK_COMPATIBILITY_IDEOGRAPH_2F867, 'codepoint, 0x2F867);
26514put('CJK_COMPATIBILITY_IDEOGRAPH_2F868, 'codepoint, 0x2F868);
26515put('CJK_COMPATIBILITY_IDEOGRAPH_2F869, 'codepoint, 0x2F869);
26516put('CJK_COMPATIBILITY_IDEOGRAPH_2F86A, 'codepoint, 0x2F86A);
26517put('CJK_COMPATIBILITY_IDEOGRAPH_2F86B, 'codepoint, 0x2F86B);
26518put('CJK_COMPATIBILITY_IDEOGRAPH_2F86C, 'codepoint, 0x2F86C);
26519put('CJK_COMPATIBILITY_IDEOGRAPH_2F86D, 'codepoint, 0x2F86D);
26520put('CJK_COMPATIBILITY_IDEOGRAPH_2F86E, 'codepoint, 0x2F86E);
26521put('CJK_COMPATIBILITY_IDEOGRAPH_2F86F, 'codepoint, 0x2F86F);
26522put('CJK_COMPATIBILITY_IDEOGRAPH_2F870, 'codepoint, 0x2F870);
26523put('CJK_COMPATIBILITY_IDEOGRAPH_2F871, 'codepoint, 0x2F871);
26524put('CJK_COMPATIBILITY_IDEOGRAPH_2F872, 'codepoint, 0x2F872);
26525put('CJK_COMPATIBILITY_IDEOGRAPH_2F873, 'codepoint, 0x2F873);
26526put('CJK_COMPATIBILITY_IDEOGRAPH_2F874, 'codepoint, 0x2F874);
26527put('CJK_COMPATIBILITY_IDEOGRAPH_2F875, 'codepoint, 0x2F875);
26528put('CJK_COMPATIBILITY_IDEOGRAPH_2F876, 'codepoint, 0x2F876);
26529put('CJK_COMPATIBILITY_IDEOGRAPH_2F877, 'codepoint, 0x2F877);
26530put('CJK_COMPATIBILITY_IDEOGRAPH_2F878, 'codepoint, 0x2F878);
26531put('CJK_COMPATIBILITY_IDEOGRAPH_2F879, 'codepoint, 0x2F879);
26532put('CJK_COMPATIBILITY_IDEOGRAPH_2F87A, 'codepoint, 0x2F87A);
26533put('CJK_COMPATIBILITY_IDEOGRAPH_2F87B, 'codepoint, 0x2F87B);
26534put('CJK_COMPATIBILITY_IDEOGRAPH_2F87C, 'codepoint, 0x2F87C);
26535put('CJK_COMPATIBILITY_IDEOGRAPH_2F87D, 'codepoint, 0x2F87D);
26536put('CJK_COMPATIBILITY_IDEOGRAPH_2F87E, 'codepoint, 0x2F87E);
26537put('CJK_COMPATIBILITY_IDEOGRAPH_2F87F, 'codepoint, 0x2F87F);
26538put('CJK_COMPATIBILITY_IDEOGRAPH_2F880, 'codepoint, 0x2F880);
26539put('CJK_COMPATIBILITY_IDEOGRAPH_2F881, 'codepoint, 0x2F881);
26540put('CJK_COMPATIBILITY_IDEOGRAPH_2F882, 'codepoint, 0x2F882);
26541put('CJK_COMPATIBILITY_IDEOGRAPH_2F883, 'codepoint, 0x2F883);
26542put('CJK_COMPATIBILITY_IDEOGRAPH_2F884, 'codepoint, 0x2F884);
26543put('CJK_COMPATIBILITY_IDEOGRAPH_2F885, 'codepoint, 0x2F885);
26544put('CJK_COMPATIBILITY_IDEOGRAPH_2F886, 'codepoint, 0x2F886);
26545put('CJK_COMPATIBILITY_IDEOGRAPH_2F887, 'codepoint, 0x2F887);
26546put('CJK_COMPATIBILITY_IDEOGRAPH_2F888, 'codepoint, 0x2F888);
26547put('CJK_COMPATIBILITY_IDEOGRAPH_2F889, 'codepoint, 0x2F889);
26548put('CJK_COMPATIBILITY_IDEOGRAPH_2F88A, 'codepoint, 0x2F88A);
26549put('CJK_COMPATIBILITY_IDEOGRAPH_2F88B, 'codepoint, 0x2F88B);
26550put('CJK_COMPATIBILITY_IDEOGRAPH_2F88C, 'codepoint, 0x2F88C);
26551put('CJK_COMPATIBILITY_IDEOGRAPH_2F88D, 'codepoint, 0x2F88D);
26552put('CJK_COMPATIBILITY_IDEOGRAPH_2F88E, 'codepoint, 0x2F88E);
26553put('CJK_COMPATIBILITY_IDEOGRAPH_2F88F, 'codepoint, 0x2F88F);
26554put('CJK_COMPATIBILITY_IDEOGRAPH_2F890, 'codepoint, 0x2F890);
26555put('CJK_COMPATIBILITY_IDEOGRAPH_2F891, 'codepoint, 0x2F891);
26556put('CJK_COMPATIBILITY_IDEOGRAPH_2F892, 'codepoint, 0x2F892);
26557put('CJK_COMPATIBILITY_IDEOGRAPH_2F893, 'codepoint, 0x2F893);
26558put('CJK_COMPATIBILITY_IDEOGRAPH_2F894, 'codepoint, 0x2F894);
26559put('CJK_COMPATIBILITY_IDEOGRAPH_2F895, 'codepoint, 0x2F895);
26560put('CJK_COMPATIBILITY_IDEOGRAPH_2F896, 'codepoint, 0x2F896);
26561put('CJK_COMPATIBILITY_IDEOGRAPH_2F897, 'codepoint, 0x2F897);
26562put('CJK_COMPATIBILITY_IDEOGRAPH_2F898, 'codepoint, 0x2F898);
26563put('CJK_COMPATIBILITY_IDEOGRAPH_2F899, 'codepoint, 0x2F899);
26564put('CJK_COMPATIBILITY_IDEOGRAPH_2F89A, 'codepoint, 0x2F89A);
26565put('CJK_COMPATIBILITY_IDEOGRAPH_2F89B, 'codepoint, 0x2F89B);
26566put('CJK_COMPATIBILITY_IDEOGRAPH_2F89C, 'codepoint, 0x2F89C);
26567put('CJK_COMPATIBILITY_IDEOGRAPH_2F89D, 'codepoint, 0x2F89D);
26568put('CJK_COMPATIBILITY_IDEOGRAPH_2F89E, 'codepoint, 0x2F89E);
26569put('CJK_COMPATIBILITY_IDEOGRAPH_2F89F, 'codepoint, 0x2F89F);
26570put('CJK_COMPATIBILITY_IDEOGRAPH_2F8A0, 'codepoint, 0x2F8A0);
26571put('CJK_COMPATIBILITY_IDEOGRAPH_2F8A1, 'codepoint, 0x2F8A1);
26572put('CJK_COMPATIBILITY_IDEOGRAPH_2F8A2, 'codepoint, 0x2F8A2);
26573put('CJK_COMPATIBILITY_IDEOGRAPH_2F8A3, 'codepoint, 0x2F8A3);
26574put('CJK_COMPATIBILITY_IDEOGRAPH_2F8A4, 'codepoint, 0x2F8A4);
26575put('CJK_COMPATIBILITY_IDEOGRAPH_2F8A5, 'codepoint, 0x2F8A5);
26576put('CJK_COMPATIBILITY_IDEOGRAPH_2F8A6, 'codepoint, 0x2F8A6);
26577put('CJK_COMPATIBILITY_IDEOGRAPH_2F8A7, 'codepoint, 0x2F8A7);
26578put('CJK_COMPATIBILITY_IDEOGRAPH_2F8A8, 'codepoint, 0x2F8A8);
26579put('CJK_COMPATIBILITY_IDEOGRAPH_2F8A9, 'codepoint, 0x2F8A9);
26580put('CJK_COMPATIBILITY_IDEOGRAPH_2F8AA, 'codepoint, 0x2F8AA);
26581put('CJK_COMPATIBILITY_IDEOGRAPH_2F8AB, 'codepoint, 0x2F8AB);
26582put('CJK_COMPATIBILITY_IDEOGRAPH_2F8AC, 'codepoint, 0x2F8AC);
26583put('CJK_COMPATIBILITY_IDEOGRAPH_2F8AD, 'codepoint, 0x2F8AD);
26584put('CJK_COMPATIBILITY_IDEOGRAPH_2F8AE, 'codepoint, 0x2F8AE);
26585put('CJK_COMPATIBILITY_IDEOGRAPH_2F8AF, 'codepoint, 0x2F8AF);
26586put('CJK_COMPATIBILITY_IDEOGRAPH_2F8B0, 'codepoint, 0x2F8B0);
26587put('CJK_COMPATIBILITY_IDEOGRAPH_2F8B1, 'codepoint, 0x2F8B1);
26588put('CJK_COMPATIBILITY_IDEOGRAPH_2F8B2, 'codepoint, 0x2F8B2);
26589put('CJK_COMPATIBILITY_IDEOGRAPH_2F8B3, 'codepoint, 0x2F8B3);
26590put('CJK_COMPATIBILITY_IDEOGRAPH_2F8B4, 'codepoint, 0x2F8B4);
26591put('CJK_COMPATIBILITY_IDEOGRAPH_2F8B5, 'codepoint, 0x2F8B5);
26592put('CJK_COMPATIBILITY_IDEOGRAPH_2F8B6, 'codepoint, 0x2F8B6);
26593put('CJK_COMPATIBILITY_IDEOGRAPH_2F8B7, 'codepoint, 0x2F8B7);
26594put('CJK_COMPATIBILITY_IDEOGRAPH_2F8B8, 'codepoint, 0x2F8B8);
26595put('CJK_COMPATIBILITY_IDEOGRAPH_2F8B9, 'codepoint, 0x2F8B9);
26596put('CJK_COMPATIBILITY_IDEOGRAPH_2F8BA, 'codepoint, 0x2F8BA);
26597put('CJK_COMPATIBILITY_IDEOGRAPH_2F8BB, 'codepoint, 0x2F8BB);
26598put('CJK_COMPATIBILITY_IDEOGRAPH_2F8BC, 'codepoint, 0x2F8BC);
26599put('CJK_COMPATIBILITY_IDEOGRAPH_2F8BD, 'codepoint, 0x2F8BD);
26600put('CJK_COMPATIBILITY_IDEOGRAPH_2F8BE, 'codepoint, 0x2F8BE);
26601put('CJK_COMPATIBILITY_IDEOGRAPH_2F8BF, 'codepoint, 0x2F8BF);
26602put('CJK_COMPATIBILITY_IDEOGRAPH_2F8C0, 'codepoint, 0x2F8C0);
26603put('CJK_COMPATIBILITY_IDEOGRAPH_2F8C1, 'codepoint, 0x2F8C1);
26604put('CJK_COMPATIBILITY_IDEOGRAPH_2F8C2, 'codepoint, 0x2F8C2);
26605put('CJK_COMPATIBILITY_IDEOGRAPH_2F8C3, 'codepoint, 0x2F8C3);
26606put('CJK_COMPATIBILITY_IDEOGRAPH_2F8C4, 'codepoint, 0x2F8C4);
26607put('CJK_COMPATIBILITY_IDEOGRAPH_2F8C5, 'codepoint, 0x2F8C5);
26608put('CJK_COMPATIBILITY_IDEOGRAPH_2F8C6, 'codepoint, 0x2F8C6);
26609put('CJK_COMPATIBILITY_IDEOGRAPH_2F8C7, 'codepoint, 0x2F8C7);
26610put('CJK_COMPATIBILITY_IDEOGRAPH_2F8C8, 'codepoint, 0x2F8C8);
26611put('CJK_COMPATIBILITY_IDEOGRAPH_2F8C9, 'codepoint, 0x2F8C9);
26612put('CJK_COMPATIBILITY_IDEOGRAPH_2F8CA, 'codepoint, 0x2F8CA);
26613put('CJK_COMPATIBILITY_IDEOGRAPH_2F8CB, 'codepoint, 0x2F8CB);
26614put('CJK_COMPATIBILITY_IDEOGRAPH_2F8CC, 'codepoint, 0x2F8CC);
26615put('CJK_COMPATIBILITY_IDEOGRAPH_2F8CD, 'codepoint, 0x2F8CD);
26616put('CJK_COMPATIBILITY_IDEOGRAPH_2F8CE, 'codepoint, 0x2F8CE);
26617put('CJK_COMPATIBILITY_IDEOGRAPH_2F8CF, 'codepoint, 0x2F8CF);
26618put('CJK_COMPATIBILITY_IDEOGRAPH_2F8D0, 'codepoint, 0x2F8D0);
26619put('CJK_COMPATIBILITY_IDEOGRAPH_2F8D1, 'codepoint, 0x2F8D1);
26620put('CJK_COMPATIBILITY_IDEOGRAPH_2F8D2, 'codepoint, 0x2F8D2);
26621put('CJK_COMPATIBILITY_IDEOGRAPH_2F8D3, 'codepoint, 0x2F8D3);
26622put('CJK_COMPATIBILITY_IDEOGRAPH_2F8D4, 'codepoint, 0x2F8D4);
26623put('CJK_COMPATIBILITY_IDEOGRAPH_2F8D5, 'codepoint, 0x2F8D5);
26624put('CJK_COMPATIBILITY_IDEOGRAPH_2F8D6, 'codepoint, 0x2F8D6);
26625put('CJK_COMPATIBILITY_IDEOGRAPH_2F8D7, 'codepoint, 0x2F8D7);
26626put('CJK_COMPATIBILITY_IDEOGRAPH_2F8D8, 'codepoint, 0x2F8D8);
26627put('CJK_COMPATIBILITY_IDEOGRAPH_2F8D9, 'codepoint, 0x2F8D9);
26628put('CJK_COMPATIBILITY_IDEOGRAPH_2F8DA, 'codepoint, 0x2F8DA);
26629put('CJK_COMPATIBILITY_IDEOGRAPH_2F8DB, 'codepoint, 0x2F8DB);
26630put('CJK_COMPATIBILITY_IDEOGRAPH_2F8DC, 'codepoint, 0x2F8DC);
26631put('CJK_COMPATIBILITY_IDEOGRAPH_2F8DD, 'codepoint, 0x2F8DD);
26632put('CJK_COMPATIBILITY_IDEOGRAPH_2F8DE, 'codepoint, 0x2F8DE);
26633put('CJK_COMPATIBILITY_IDEOGRAPH_2F8DF, 'codepoint, 0x2F8DF);
26634put('CJK_COMPATIBILITY_IDEOGRAPH_2F8E0, 'codepoint, 0x2F8E0);
26635put('CJK_COMPATIBILITY_IDEOGRAPH_2F8E1, 'codepoint, 0x2F8E1);
26636put('CJK_COMPATIBILITY_IDEOGRAPH_2F8E2, 'codepoint, 0x2F8E2);
26637put('CJK_COMPATIBILITY_IDEOGRAPH_2F8E3, 'codepoint, 0x2F8E3);
26638put('CJK_COMPATIBILITY_IDEOGRAPH_2F8E4, 'codepoint, 0x2F8E4);
26639put('CJK_COMPATIBILITY_IDEOGRAPH_2F8E5, 'codepoint, 0x2F8E5);
26640put('CJK_COMPATIBILITY_IDEOGRAPH_2F8E6, 'codepoint, 0x2F8E6);
26641put('CJK_COMPATIBILITY_IDEOGRAPH_2F8E7, 'codepoint, 0x2F8E7);
26642put('CJK_COMPATIBILITY_IDEOGRAPH_2F8E8, 'codepoint, 0x2F8E8);
26643put('CJK_COMPATIBILITY_IDEOGRAPH_2F8E9, 'codepoint, 0x2F8E9);
26644put('CJK_COMPATIBILITY_IDEOGRAPH_2F8EA, 'codepoint, 0x2F8EA);
26645put('CJK_COMPATIBILITY_IDEOGRAPH_2F8EB, 'codepoint, 0x2F8EB);
26646put('CJK_COMPATIBILITY_IDEOGRAPH_2F8EC, 'codepoint, 0x2F8EC);
26647put('CJK_COMPATIBILITY_IDEOGRAPH_2F8ED, 'codepoint, 0x2F8ED);
26648put('CJK_COMPATIBILITY_IDEOGRAPH_2F8EE, 'codepoint, 0x2F8EE);
26649put('CJK_COMPATIBILITY_IDEOGRAPH_2F8EF, 'codepoint, 0x2F8EF);
26650put('CJK_COMPATIBILITY_IDEOGRAPH_2F8F0, 'codepoint, 0x2F8F0);
26651put('CJK_COMPATIBILITY_IDEOGRAPH_2F8F1, 'codepoint, 0x2F8F1);
26652put('CJK_COMPATIBILITY_IDEOGRAPH_2F8F2, 'codepoint, 0x2F8F2);
26653put('CJK_COMPATIBILITY_IDEOGRAPH_2F8F3, 'codepoint, 0x2F8F3);
26654put('CJK_COMPATIBILITY_IDEOGRAPH_2F8F4, 'codepoint, 0x2F8F4);
26655put('CJK_COMPATIBILITY_IDEOGRAPH_2F8F5, 'codepoint, 0x2F8F5);
26656put('CJK_COMPATIBILITY_IDEOGRAPH_2F8F6, 'codepoint, 0x2F8F6);
26657put('CJK_COMPATIBILITY_IDEOGRAPH_2F8F7, 'codepoint, 0x2F8F7);
26658put('CJK_COMPATIBILITY_IDEOGRAPH_2F8F8, 'codepoint, 0x2F8F8);
26659put('CJK_COMPATIBILITY_IDEOGRAPH_2F8F9, 'codepoint, 0x2F8F9);
26660put('CJK_COMPATIBILITY_IDEOGRAPH_2F8FA, 'codepoint, 0x2F8FA);
26661put('CJK_COMPATIBILITY_IDEOGRAPH_2F8FB, 'codepoint, 0x2F8FB);
26662put('CJK_COMPATIBILITY_IDEOGRAPH_2F8FC, 'codepoint, 0x2F8FC);
26663put('CJK_COMPATIBILITY_IDEOGRAPH_2F8FD, 'codepoint, 0x2F8FD);
26664put('CJK_COMPATIBILITY_IDEOGRAPH_2F8FE, 'codepoint, 0x2F8FE);
26665put('CJK_COMPATIBILITY_IDEOGRAPH_2F8FF, 'codepoint, 0x2F8FF);
26666put('CJK_COMPATIBILITY_IDEOGRAPH_2F900, 'codepoint, 0x2F900);
26667put('CJK_COMPATIBILITY_IDEOGRAPH_2F901, 'codepoint, 0x2F901);
26668put('CJK_COMPATIBILITY_IDEOGRAPH_2F902, 'codepoint, 0x2F902);
26669put('CJK_COMPATIBILITY_IDEOGRAPH_2F903, 'codepoint, 0x2F903);
26670put('CJK_COMPATIBILITY_IDEOGRAPH_2F904, 'codepoint, 0x2F904);
26671put('CJK_COMPATIBILITY_IDEOGRAPH_2F905, 'codepoint, 0x2F905);
26672put('CJK_COMPATIBILITY_IDEOGRAPH_2F906, 'codepoint, 0x2F906);
26673put('CJK_COMPATIBILITY_IDEOGRAPH_2F907, 'codepoint, 0x2F907);
26674put('CJK_COMPATIBILITY_IDEOGRAPH_2F908, 'codepoint, 0x2F908);
26675put('CJK_COMPATIBILITY_IDEOGRAPH_2F909, 'codepoint, 0x2F909);
26676put('CJK_COMPATIBILITY_IDEOGRAPH_2F90A, 'codepoint, 0x2F90A);
26677put('CJK_COMPATIBILITY_IDEOGRAPH_2F90B, 'codepoint, 0x2F90B);
26678put('CJK_COMPATIBILITY_IDEOGRAPH_2F90C, 'codepoint, 0x2F90C);
26679put('CJK_COMPATIBILITY_IDEOGRAPH_2F90D, 'codepoint, 0x2F90D);
26680put('CJK_COMPATIBILITY_IDEOGRAPH_2F90E, 'codepoint, 0x2F90E);
26681put('CJK_COMPATIBILITY_IDEOGRAPH_2F90F, 'codepoint, 0x2F90F);
26682put('CJK_COMPATIBILITY_IDEOGRAPH_2F910, 'codepoint, 0x2F910);
26683put('CJK_COMPATIBILITY_IDEOGRAPH_2F911, 'codepoint, 0x2F911);
26684put('CJK_COMPATIBILITY_IDEOGRAPH_2F912, 'codepoint, 0x2F912);
26685put('CJK_COMPATIBILITY_IDEOGRAPH_2F913, 'codepoint, 0x2F913);
26686put('CJK_COMPATIBILITY_IDEOGRAPH_2F914, 'codepoint, 0x2F914);
26687put('CJK_COMPATIBILITY_IDEOGRAPH_2F915, 'codepoint, 0x2F915);
26688put('CJK_COMPATIBILITY_IDEOGRAPH_2F916, 'codepoint, 0x2F916);
26689put('CJK_COMPATIBILITY_IDEOGRAPH_2F917, 'codepoint, 0x2F917);
26690put('CJK_COMPATIBILITY_IDEOGRAPH_2F918, 'codepoint, 0x2F918);
26691put('CJK_COMPATIBILITY_IDEOGRAPH_2F919, 'codepoint, 0x2F919);
26692put('CJK_COMPATIBILITY_IDEOGRAPH_2F91A, 'codepoint, 0x2F91A);
26693put('CJK_COMPATIBILITY_IDEOGRAPH_2F91B, 'codepoint, 0x2F91B);
26694put('CJK_COMPATIBILITY_IDEOGRAPH_2F91C, 'codepoint, 0x2F91C);
26695put('CJK_COMPATIBILITY_IDEOGRAPH_2F91D, 'codepoint, 0x2F91D);
26696put('CJK_COMPATIBILITY_IDEOGRAPH_2F91E, 'codepoint, 0x2F91E);
26697put('CJK_COMPATIBILITY_IDEOGRAPH_2F91F, 'codepoint, 0x2F91F);
26698put('CJK_COMPATIBILITY_IDEOGRAPH_2F920, 'codepoint, 0x2F920);
26699put('CJK_COMPATIBILITY_IDEOGRAPH_2F921, 'codepoint, 0x2F921);
26700put('CJK_COMPATIBILITY_IDEOGRAPH_2F922, 'codepoint, 0x2F922);
26701put('CJK_COMPATIBILITY_IDEOGRAPH_2F923, 'codepoint, 0x2F923);
26702put('CJK_COMPATIBILITY_IDEOGRAPH_2F924, 'codepoint, 0x2F924);
26703put('CJK_COMPATIBILITY_IDEOGRAPH_2F925, 'codepoint, 0x2F925);
26704put('CJK_COMPATIBILITY_IDEOGRAPH_2F926, 'codepoint, 0x2F926);
26705put('CJK_COMPATIBILITY_IDEOGRAPH_2F927, 'codepoint, 0x2F927);
26706put('CJK_COMPATIBILITY_IDEOGRAPH_2F928, 'codepoint, 0x2F928);
26707put('CJK_COMPATIBILITY_IDEOGRAPH_2F929, 'codepoint, 0x2F929);
26708put('CJK_COMPATIBILITY_IDEOGRAPH_2F92A, 'codepoint, 0x2F92A);
26709put('CJK_COMPATIBILITY_IDEOGRAPH_2F92B, 'codepoint, 0x2F92B);
26710put('CJK_COMPATIBILITY_IDEOGRAPH_2F92C, 'codepoint, 0x2F92C);
26711put('CJK_COMPATIBILITY_IDEOGRAPH_2F92D, 'codepoint, 0x2F92D);
26712put('CJK_COMPATIBILITY_IDEOGRAPH_2F92E, 'codepoint, 0x2F92E);
26713put('CJK_COMPATIBILITY_IDEOGRAPH_2F92F, 'codepoint, 0x2F92F);
26714put('CJK_COMPATIBILITY_IDEOGRAPH_2F930, 'codepoint, 0x2F930);
26715put('CJK_COMPATIBILITY_IDEOGRAPH_2F931, 'codepoint, 0x2F931);
26716put('CJK_COMPATIBILITY_IDEOGRAPH_2F932, 'codepoint, 0x2F932);
26717put('CJK_COMPATIBILITY_IDEOGRAPH_2F933, 'codepoint, 0x2F933);
26718put('CJK_COMPATIBILITY_IDEOGRAPH_2F934, 'codepoint, 0x2F934);
26719put('CJK_COMPATIBILITY_IDEOGRAPH_2F935, 'codepoint, 0x2F935);
26720put('CJK_COMPATIBILITY_IDEOGRAPH_2F936, 'codepoint, 0x2F936);
26721put('CJK_COMPATIBILITY_IDEOGRAPH_2F937, 'codepoint, 0x2F937);
26722put('CJK_COMPATIBILITY_IDEOGRAPH_2F938, 'codepoint, 0x2F938);
26723put('CJK_COMPATIBILITY_IDEOGRAPH_2F939, 'codepoint, 0x2F939);
26724put('CJK_COMPATIBILITY_IDEOGRAPH_2F93A, 'codepoint, 0x2F93A);
26725put('CJK_COMPATIBILITY_IDEOGRAPH_2F93B, 'codepoint, 0x2F93B);
26726put('CJK_COMPATIBILITY_IDEOGRAPH_2F93C, 'codepoint, 0x2F93C);
26727put('CJK_COMPATIBILITY_IDEOGRAPH_2F93D, 'codepoint, 0x2F93D);
26728put('CJK_COMPATIBILITY_IDEOGRAPH_2F93E, 'codepoint, 0x2F93E);
26729put('CJK_COMPATIBILITY_IDEOGRAPH_2F93F, 'codepoint, 0x2F93F);
26730put('CJK_COMPATIBILITY_IDEOGRAPH_2F940, 'codepoint, 0x2F940);
26731put('CJK_COMPATIBILITY_IDEOGRAPH_2F941, 'codepoint, 0x2F941);
26732put('CJK_COMPATIBILITY_IDEOGRAPH_2F942, 'codepoint, 0x2F942);
26733put('CJK_COMPATIBILITY_IDEOGRAPH_2F943, 'codepoint, 0x2F943);
26734put('CJK_COMPATIBILITY_IDEOGRAPH_2F944, 'codepoint, 0x2F944);
26735put('CJK_COMPATIBILITY_IDEOGRAPH_2F945, 'codepoint, 0x2F945);
26736put('CJK_COMPATIBILITY_IDEOGRAPH_2F946, 'codepoint, 0x2F946);
26737put('CJK_COMPATIBILITY_IDEOGRAPH_2F947, 'codepoint, 0x2F947);
26738put('CJK_COMPATIBILITY_IDEOGRAPH_2F948, 'codepoint, 0x2F948);
26739put('CJK_COMPATIBILITY_IDEOGRAPH_2F949, 'codepoint, 0x2F949);
26740put('CJK_COMPATIBILITY_IDEOGRAPH_2F94A, 'codepoint, 0x2F94A);
26741put('CJK_COMPATIBILITY_IDEOGRAPH_2F94B, 'codepoint, 0x2F94B);
26742put('CJK_COMPATIBILITY_IDEOGRAPH_2F94C, 'codepoint, 0x2F94C);
26743put('CJK_COMPATIBILITY_IDEOGRAPH_2F94D, 'codepoint, 0x2F94D);
26744put('CJK_COMPATIBILITY_IDEOGRAPH_2F94E, 'codepoint, 0x2F94E);
26745put('CJK_COMPATIBILITY_IDEOGRAPH_2F94F, 'codepoint, 0x2F94F);
26746put('CJK_COMPATIBILITY_IDEOGRAPH_2F950, 'codepoint, 0x2F950);
26747put('CJK_COMPATIBILITY_IDEOGRAPH_2F951, 'codepoint, 0x2F951);
26748put('CJK_COMPATIBILITY_IDEOGRAPH_2F952, 'codepoint, 0x2F952);
26749put('CJK_COMPATIBILITY_IDEOGRAPH_2F953, 'codepoint, 0x2F953);
26750put('CJK_COMPATIBILITY_IDEOGRAPH_2F954, 'codepoint, 0x2F954);
26751put('CJK_COMPATIBILITY_IDEOGRAPH_2F955, 'codepoint, 0x2F955);
26752put('CJK_COMPATIBILITY_IDEOGRAPH_2F956, 'codepoint, 0x2F956);
26753put('CJK_COMPATIBILITY_IDEOGRAPH_2F957, 'codepoint, 0x2F957);
26754put('CJK_COMPATIBILITY_IDEOGRAPH_2F958, 'codepoint, 0x2F958);
26755put('CJK_COMPATIBILITY_IDEOGRAPH_2F959, 'codepoint, 0x2F959);
26756put('CJK_COMPATIBILITY_IDEOGRAPH_2F95A, 'codepoint, 0x2F95A);
26757put('CJK_COMPATIBILITY_IDEOGRAPH_2F95B, 'codepoint, 0x2F95B);
26758put('CJK_COMPATIBILITY_IDEOGRAPH_2F95C, 'codepoint, 0x2F95C);
26759put('CJK_COMPATIBILITY_IDEOGRAPH_2F95D, 'codepoint, 0x2F95D);
26760put('CJK_COMPATIBILITY_IDEOGRAPH_2F95E, 'codepoint, 0x2F95E);
26761put('CJK_COMPATIBILITY_IDEOGRAPH_2F95F, 'codepoint, 0x2F95F);
26762put('CJK_COMPATIBILITY_IDEOGRAPH_2F960, 'codepoint, 0x2F960);
26763put('CJK_COMPATIBILITY_IDEOGRAPH_2F961, 'codepoint, 0x2F961);
26764put('CJK_COMPATIBILITY_IDEOGRAPH_2F962, 'codepoint, 0x2F962);
26765put('CJK_COMPATIBILITY_IDEOGRAPH_2F963, 'codepoint, 0x2F963);
26766put('CJK_COMPATIBILITY_IDEOGRAPH_2F964, 'codepoint, 0x2F964);
26767put('CJK_COMPATIBILITY_IDEOGRAPH_2F965, 'codepoint, 0x2F965);
26768put('CJK_COMPATIBILITY_IDEOGRAPH_2F966, 'codepoint, 0x2F966);
26769put('CJK_COMPATIBILITY_IDEOGRAPH_2F967, 'codepoint, 0x2F967);
26770put('CJK_COMPATIBILITY_IDEOGRAPH_2F968, 'codepoint, 0x2F968);
26771put('CJK_COMPATIBILITY_IDEOGRAPH_2F969, 'codepoint, 0x2F969);
26772put('CJK_COMPATIBILITY_IDEOGRAPH_2F96A, 'codepoint, 0x2F96A);
26773put('CJK_COMPATIBILITY_IDEOGRAPH_2F96B, 'codepoint, 0x2F96B);
26774put('CJK_COMPATIBILITY_IDEOGRAPH_2F96C, 'codepoint, 0x2F96C);
26775put('CJK_COMPATIBILITY_IDEOGRAPH_2F96D, 'codepoint, 0x2F96D);
26776put('CJK_COMPATIBILITY_IDEOGRAPH_2F96E, 'codepoint, 0x2F96E);
26777put('CJK_COMPATIBILITY_IDEOGRAPH_2F96F, 'codepoint, 0x2F96F);
26778put('CJK_COMPATIBILITY_IDEOGRAPH_2F970, 'codepoint, 0x2F970);
26779put('CJK_COMPATIBILITY_IDEOGRAPH_2F971, 'codepoint, 0x2F971);
26780put('CJK_COMPATIBILITY_IDEOGRAPH_2F972, 'codepoint, 0x2F972);
26781put('CJK_COMPATIBILITY_IDEOGRAPH_2F973, 'codepoint, 0x2F973);
26782put('CJK_COMPATIBILITY_IDEOGRAPH_2F974, 'codepoint, 0x2F974);
26783put('CJK_COMPATIBILITY_IDEOGRAPH_2F975, 'codepoint, 0x2F975);
26784put('CJK_COMPATIBILITY_IDEOGRAPH_2F976, 'codepoint, 0x2F976);
26785put('CJK_COMPATIBILITY_IDEOGRAPH_2F977, 'codepoint, 0x2F977);
26786put('CJK_COMPATIBILITY_IDEOGRAPH_2F978, 'codepoint, 0x2F978);
26787put('CJK_COMPATIBILITY_IDEOGRAPH_2F979, 'codepoint, 0x2F979);
26788put('CJK_COMPATIBILITY_IDEOGRAPH_2F97A, 'codepoint, 0x2F97A);
26789put('CJK_COMPATIBILITY_IDEOGRAPH_2F97B, 'codepoint, 0x2F97B);
26790put('CJK_COMPATIBILITY_IDEOGRAPH_2F97C, 'codepoint, 0x2F97C);
26791put('CJK_COMPATIBILITY_IDEOGRAPH_2F97D, 'codepoint, 0x2F97D);
26792put('CJK_COMPATIBILITY_IDEOGRAPH_2F97E, 'codepoint, 0x2F97E);
26793put('CJK_COMPATIBILITY_IDEOGRAPH_2F97F, 'codepoint, 0x2F97F);
26794put('CJK_COMPATIBILITY_IDEOGRAPH_2F980, 'codepoint, 0x2F980);
26795put('CJK_COMPATIBILITY_IDEOGRAPH_2F981, 'codepoint, 0x2F981);
26796put('CJK_COMPATIBILITY_IDEOGRAPH_2F982, 'codepoint, 0x2F982);
26797put('CJK_COMPATIBILITY_IDEOGRAPH_2F983, 'codepoint, 0x2F983);
26798put('CJK_COMPATIBILITY_IDEOGRAPH_2F984, 'codepoint, 0x2F984);
26799put('CJK_COMPATIBILITY_IDEOGRAPH_2F985, 'codepoint, 0x2F985);
26800put('CJK_COMPATIBILITY_IDEOGRAPH_2F986, 'codepoint, 0x2F986);
26801put('CJK_COMPATIBILITY_IDEOGRAPH_2F987, 'codepoint, 0x2F987);
26802put('CJK_COMPATIBILITY_IDEOGRAPH_2F988, 'codepoint, 0x2F988);
26803put('CJK_COMPATIBILITY_IDEOGRAPH_2F989, 'codepoint, 0x2F989);
26804put('CJK_COMPATIBILITY_IDEOGRAPH_2F98A, 'codepoint, 0x2F98A);
26805put('CJK_COMPATIBILITY_IDEOGRAPH_2F98B, 'codepoint, 0x2F98B);
26806put('CJK_COMPATIBILITY_IDEOGRAPH_2F98C, 'codepoint, 0x2F98C);
26807put('CJK_COMPATIBILITY_IDEOGRAPH_2F98D, 'codepoint, 0x2F98D);
26808put('CJK_COMPATIBILITY_IDEOGRAPH_2F98E, 'codepoint, 0x2F98E);
26809put('CJK_COMPATIBILITY_IDEOGRAPH_2F98F, 'codepoint, 0x2F98F);
26810put('CJK_COMPATIBILITY_IDEOGRAPH_2F990, 'codepoint, 0x2F990);
26811put('CJK_COMPATIBILITY_IDEOGRAPH_2F991, 'codepoint, 0x2F991);
26812put('CJK_COMPATIBILITY_IDEOGRAPH_2F992, 'codepoint, 0x2F992);
26813put('CJK_COMPATIBILITY_IDEOGRAPH_2F993, 'codepoint, 0x2F993);
26814put('CJK_COMPATIBILITY_IDEOGRAPH_2F994, 'codepoint, 0x2F994);
26815put('CJK_COMPATIBILITY_IDEOGRAPH_2F995, 'codepoint, 0x2F995);
26816put('CJK_COMPATIBILITY_IDEOGRAPH_2F996, 'codepoint, 0x2F996);
26817put('CJK_COMPATIBILITY_IDEOGRAPH_2F997, 'codepoint, 0x2F997);
26818put('CJK_COMPATIBILITY_IDEOGRAPH_2F998, 'codepoint, 0x2F998);
26819put('CJK_COMPATIBILITY_IDEOGRAPH_2F999, 'codepoint, 0x2F999);
26820put('CJK_COMPATIBILITY_IDEOGRAPH_2F99A, 'codepoint, 0x2F99A);
26821put('CJK_COMPATIBILITY_IDEOGRAPH_2F99B, 'codepoint, 0x2F99B);
26822put('CJK_COMPATIBILITY_IDEOGRAPH_2F99C, 'codepoint, 0x2F99C);
26823put('CJK_COMPATIBILITY_IDEOGRAPH_2F99D, 'codepoint, 0x2F99D);
26824put('CJK_COMPATIBILITY_IDEOGRAPH_2F99E, 'codepoint, 0x2F99E);
26825put('CJK_COMPATIBILITY_IDEOGRAPH_2F99F, 'codepoint, 0x2F99F);
26826put('CJK_COMPATIBILITY_IDEOGRAPH_2F9A0, 'codepoint, 0x2F9A0);
26827put('CJK_COMPATIBILITY_IDEOGRAPH_2F9A1, 'codepoint, 0x2F9A1);
26828put('CJK_COMPATIBILITY_IDEOGRAPH_2F9A2, 'codepoint, 0x2F9A2);
26829put('CJK_COMPATIBILITY_IDEOGRAPH_2F9A3, 'codepoint, 0x2F9A3);
26830put('CJK_COMPATIBILITY_IDEOGRAPH_2F9A4, 'codepoint, 0x2F9A4);
26831put('CJK_COMPATIBILITY_IDEOGRAPH_2F9A5, 'codepoint, 0x2F9A5);
26832put('CJK_COMPATIBILITY_IDEOGRAPH_2F9A6, 'codepoint, 0x2F9A6);
26833put('CJK_COMPATIBILITY_IDEOGRAPH_2F9A7, 'codepoint, 0x2F9A7);
26834put('CJK_COMPATIBILITY_IDEOGRAPH_2F9A8, 'codepoint, 0x2F9A8);
26835put('CJK_COMPATIBILITY_IDEOGRAPH_2F9A9, 'codepoint, 0x2F9A9);
26836put('CJK_COMPATIBILITY_IDEOGRAPH_2F9AA, 'codepoint, 0x2F9AA);
26837put('CJK_COMPATIBILITY_IDEOGRAPH_2F9AB, 'codepoint, 0x2F9AB);
26838put('CJK_COMPATIBILITY_IDEOGRAPH_2F9AC, 'codepoint, 0x2F9AC);
26839put('CJK_COMPATIBILITY_IDEOGRAPH_2F9AD, 'codepoint, 0x2F9AD);
26840put('CJK_COMPATIBILITY_IDEOGRAPH_2F9AE, 'codepoint, 0x2F9AE);
26841put('CJK_COMPATIBILITY_IDEOGRAPH_2F9AF, 'codepoint, 0x2F9AF);
26842put('CJK_COMPATIBILITY_IDEOGRAPH_2F9B0, 'codepoint, 0x2F9B0);
26843put('CJK_COMPATIBILITY_IDEOGRAPH_2F9B1, 'codepoint, 0x2F9B1);
26844put('CJK_COMPATIBILITY_IDEOGRAPH_2F9B2, 'codepoint, 0x2F9B2);
26845put('CJK_COMPATIBILITY_IDEOGRAPH_2F9B3, 'codepoint, 0x2F9B3);
26846put('CJK_COMPATIBILITY_IDEOGRAPH_2F9B4, 'codepoint, 0x2F9B4);
26847put('CJK_COMPATIBILITY_IDEOGRAPH_2F9B5, 'codepoint, 0x2F9B5);
26848put('CJK_COMPATIBILITY_IDEOGRAPH_2F9B6, 'codepoint, 0x2F9B6);
26849put('CJK_COMPATIBILITY_IDEOGRAPH_2F9B7, 'codepoint, 0x2F9B7);
26850put('CJK_COMPATIBILITY_IDEOGRAPH_2F9B8, 'codepoint, 0x2F9B8);
26851put('CJK_COMPATIBILITY_IDEOGRAPH_2F9B9, 'codepoint, 0x2F9B9);
26852put('CJK_COMPATIBILITY_IDEOGRAPH_2F9BA, 'codepoint, 0x2F9BA);
26853put('CJK_COMPATIBILITY_IDEOGRAPH_2F9BB, 'codepoint, 0x2F9BB);
26854put('CJK_COMPATIBILITY_IDEOGRAPH_2F9BC, 'codepoint, 0x2F9BC);
26855put('CJK_COMPATIBILITY_IDEOGRAPH_2F9BD, 'codepoint, 0x2F9BD);
26856put('CJK_COMPATIBILITY_IDEOGRAPH_2F9BE, 'codepoint, 0x2F9BE);
26857put('CJK_COMPATIBILITY_IDEOGRAPH_2F9BF, 'codepoint, 0x2F9BF);
26858put('CJK_COMPATIBILITY_IDEOGRAPH_2F9C0, 'codepoint, 0x2F9C0);
26859put('CJK_COMPATIBILITY_IDEOGRAPH_2F9C1, 'codepoint, 0x2F9C1);
26860put('CJK_COMPATIBILITY_IDEOGRAPH_2F9C2, 'codepoint, 0x2F9C2);
26861put('CJK_COMPATIBILITY_IDEOGRAPH_2F9C3, 'codepoint, 0x2F9C3);
26862put('CJK_COMPATIBILITY_IDEOGRAPH_2F9C4, 'codepoint, 0x2F9C4);
26863put('CJK_COMPATIBILITY_IDEOGRAPH_2F9C5, 'codepoint, 0x2F9C5);
26864put('CJK_COMPATIBILITY_IDEOGRAPH_2F9C6, 'codepoint, 0x2F9C6);
26865put('CJK_COMPATIBILITY_IDEOGRAPH_2F9C7, 'codepoint, 0x2F9C7);
26866put('CJK_COMPATIBILITY_IDEOGRAPH_2F9C8, 'codepoint, 0x2F9C8);
26867put('CJK_COMPATIBILITY_IDEOGRAPH_2F9C9, 'codepoint, 0x2F9C9);
26868put('CJK_COMPATIBILITY_IDEOGRAPH_2F9CA, 'codepoint, 0x2F9CA);
26869put('CJK_COMPATIBILITY_IDEOGRAPH_2F9CB, 'codepoint, 0x2F9CB);
26870put('CJK_COMPATIBILITY_IDEOGRAPH_2F9CC, 'codepoint, 0x2F9CC);
26871put('CJK_COMPATIBILITY_IDEOGRAPH_2F9CD, 'codepoint, 0x2F9CD);
26872put('CJK_COMPATIBILITY_IDEOGRAPH_2F9CE, 'codepoint, 0x2F9CE);
26873put('CJK_COMPATIBILITY_IDEOGRAPH_2F9CF, 'codepoint, 0x2F9CF);
26874put('CJK_COMPATIBILITY_IDEOGRAPH_2F9D0, 'codepoint, 0x2F9D0);
26875put('CJK_COMPATIBILITY_IDEOGRAPH_2F9D1, 'codepoint, 0x2F9D1);
26876put('CJK_COMPATIBILITY_IDEOGRAPH_2F9D2, 'codepoint, 0x2F9D2);
26877put('CJK_COMPATIBILITY_IDEOGRAPH_2F9D3, 'codepoint, 0x2F9D3);
26878put('CJK_COMPATIBILITY_IDEOGRAPH_2F9D4, 'codepoint, 0x2F9D4);
26879put('CJK_COMPATIBILITY_IDEOGRAPH_2F9D5, 'codepoint, 0x2F9D5);
26880put('CJK_COMPATIBILITY_IDEOGRAPH_2F9D6, 'codepoint, 0x2F9D6);
26881put('CJK_COMPATIBILITY_IDEOGRAPH_2F9D7, 'codepoint, 0x2F9D7);
26882put('CJK_COMPATIBILITY_IDEOGRAPH_2F9D8, 'codepoint, 0x2F9D8);
26883put('CJK_COMPATIBILITY_IDEOGRAPH_2F9D9, 'codepoint, 0x2F9D9);
26884put('CJK_COMPATIBILITY_IDEOGRAPH_2F9DA, 'codepoint, 0x2F9DA);
26885put('CJK_COMPATIBILITY_IDEOGRAPH_2F9DB, 'codepoint, 0x2F9DB);
26886put('CJK_COMPATIBILITY_IDEOGRAPH_2F9DC, 'codepoint, 0x2F9DC);
26887put('CJK_COMPATIBILITY_IDEOGRAPH_2F9DD, 'codepoint, 0x2F9DD);
26888put('CJK_COMPATIBILITY_IDEOGRAPH_2F9DE, 'codepoint, 0x2F9DE);
26889put('CJK_COMPATIBILITY_IDEOGRAPH_2F9DF, 'codepoint, 0x2F9DF);
26890put('CJK_COMPATIBILITY_IDEOGRAPH_2F9E0, 'codepoint, 0x2F9E0);
26891put('CJK_COMPATIBILITY_IDEOGRAPH_2F9E1, 'codepoint, 0x2F9E1);
26892put('CJK_COMPATIBILITY_IDEOGRAPH_2F9E2, 'codepoint, 0x2F9E2);
26893put('CJK_COMPATIBILITY_IDEOGRAPH_2F9E3, 'codepoint, 0x2F9E3);
26894put('CJK_COMPATIBILITY_IDEOGRAPH_2F9E4, 'codepoint, 0x2F9E4);
26895put('CJK_COMPATIBILITY_IDEOGRAPH_2F9E5, 'codepoint, 0x2F9E5);
26896put('CJK_COMPATIBILITY_IDEOGRAPH_2F9E6, 'codepoint, 0x2F9E6);
26897put('CJK_COMPATIBILITY_IDEOGRAPH_2F9E7, 'codepoint, 0x2F9E7);
26898put('CJK_COMPATIBILITY_IDEOGRAPH_2F9E8, 'codepoint, 0x2F9E8);
26899put('CJK_COMPATIBILITY_IDEOGRAPH_2F9E9, 'codepoint, 0x2F9E9);
26900put('CJK_COMPATIBILITY_IDEOGRAPH_2F9EA, 'codepoint, 0x2F9EA);
26901put('CJK_COMPATIBILITY_IDEOGRAPH_2F9EB, 'codepoint, 0x2F9EB);
26902put('CJK_COMPATIBILITY_IDEOGRAPH_2F9EC, 'codepoint, 0x2F9EC);
26903put('CJK_COMPATIBILITY_IDEOGRAPH_2F9ED, 'codepoint, 0x2F9ED);
26904put('CJK_COMPATIBILITY_IDEOGRAPH_2F9EE, 'codepoint, 0x2F9EE);
26905put('CJK_COMPATIBILITY_IDEOGRAPH_2F9EF, 'codepoint, 0x2F9EF);
26906put('CJK_COMPATIBILITY_IDEOGRAPH_2F9F0, 'codepoint, 0x2F9F0);
26907put('CJK_COMPATIBILITY_IDEOGRAPH_2F9F1, 'codepoint, 0x2F9F1);
26908put('CJK_COMPATIBILITY_IDEOGRAPH_2F9F2, 'codepoint, 0x2F9F2);
26909put('CJK_COMPATIBILITY_IDEOGRAPH_2F9F3, 'codepoint, 0x2F9F3);
26910put('CJK_COMPATIBILITY_IDEOGRAPH_2F9F4, 'codepoint, 0x2F9F4);
26911put('CJK_COMPATIBILITY_IDEOGRAPH_2F9F5, 'codepoint, 0x2F9F5);
26912put('CJK_COMPATIBILITY_IDEOGRAPH_2F9F6, 'codepoint, 0x2F9F6);
26913put('CJK_COMPATIBILITY_IDEOGRAPH_2F9F7, 'codepoint, 0x2F9F7);
26914put('CJK_COMPATIBILITY_IDEOGRAPH_2F9F8, 'codepoint, 0x2F9F8);
26915put('CJK_COMPATIBILITY_IDEOGRAPH_2F9F9, 'codepoint, 0x2F9F9);
26916put('CJK_COMPATIBILITY_IDEOGRAPH_2F9FA, 'codepoint, 0x2F9FA);
26917put('CJK_COMPATIBILITY_IDEOGRAPH_2F9FB, 'codepoint, 0x2F9FB);
26918put('CJK_COMPATIBILITY_IDEOGRAPH_2F9FC, 'codepoint, 0x2F9FC);
26919put('CJK_COMPATIBILITY_IDEOGRAPH_2F9FD, 'codepoint, 0x2F9FD);
26920put('CJK_COMPATIBILITY_IDEOGRAPH_2F9FE, 'codepoint, 0x2F9FE);
26921put('CJK_COMPATIBILITY_IDEOGRAPH_2F9FF, 'codepoint, 0x2F9FF);
26922put('CJK_COMPATIBILITY_IDEOGRAPH_2FA00, 'codepoint, 0x2FA00);
26923put('CJK_COMPATIBILITY_IDEOGRAPH_2FA01, 'codepoint, 0x2FA01);
26924put('CJK_COMPATIBILITY_IDEOGRAPH_2FA02, 'codepoint, 0x2FA02);
26925put('CJK_COMPATIBILITY_IDEOGRAPH_2FA03, 'codepoint, 0x2FA03);
26926put('CJK_COMPATIBILITY_IDEOGRAPH_2FA04, 'codepoint, 0x2FA04);
26927put('CJK_COMPATIBILITY_IDEOGRAPH_2FA05, 'codepoint, 0x2FA05);
26928put('CJK_COMPATIBILITY_IDEOGRAPH_2FA06, 'codepoint, 0x2FA06);
26929put('CJK_COMPATIBILITY_IDEOGRAPH_2FA07, 'codepoint, 0x2FA07);
26930put('CJK_COMPATIBILITY_IDEOGRAPH_2FA08, 'codepoint, 0x2FA08);
26931put('CJK_COMPATIBILITY_IDEOGRAPH_2FA09, 'codepoint, 0x2FA09);
26932put('CJK_COMPATIBILITY_IDEOGRAPH_2FA0A, 'codepoint, 0x2FA0A);
26933put('CJK_COMPATIBILITY_IDEOGRAPH_2FA0B, 'codepoint, 0x2FA0B);
26934put('CJK_COMPATIBILITY_IDEOGRAPH_2FA0C, 'codepoint, 0x2FA0C);
26935put('CJK_COMPATIBILITY_IDEOGRAPH_2FA0D, 'codepoint, 0x2FA0D);
26936put('CJK_COMPATIBILITY_IDEOGRAPH_2FA0E, 'codepoint, 0x2FA0E);
26937put('CJK_COMPATIBILITY_IDEOGRAPH_2FA0F, 'codepoint, 0x2FA0F);
26938put('CJK_COMPATIBILITY_IDEOGRAPH_2FA10, 'codepoint, 0x2FA10);
26939put('CJK_COMPATIBILITY_IDEOGRAPH_2FA11, 'codepoint, 0x2FA11);
26940put('CJK_COMPATIBILITY_IDEOGRAPH_2FA12, 'codepoint, 0x2FA12);
26941put('CJK_COMPATIBILITY_IDEOGRAPH_2FA13, 'codepoint, 0x2FA13);
26942put('CJK_COMPATIBILITY_IDEOGRAPH_2FA14, 'codepoint, 0x2FA14);
26943put('CJK_COMPATIBILITY_IDEOGRAPH_2FA15, 'codepoint, 0x2FA15);
26944put('CJK_COMPATIBILITY_IDEOGRAPH_2FA16, 'codepoint, 0x2FA16);
26945put('CJK_COMPATIBILITY_IDEOGRAPH_2FA17, 'codepoint, 0x2FA17);
26946put('CJK_COMPATIBILITY_IDEOGRAPH_2FA18, 'codepoint, 0x2FA18);
26947put('CJK_COMPATIBILITY_IDEOGRAPH_2FA19, 'codepoint, 0x2FA19);
26948put('CJK_COMPATIBILITY_IDEOGRAPH_2FA1A, 'codepoint, 0x2FA1A);
26949put('CJK_COMPATIBILITY_IDEOGRAPH_2FA1B, 'codepoint, 0x2FA1B);
26950put('CJK_COMPATIBILITY_IDEOGRAPH_2FA1C, 'codepoint, 0x2FA1C);
26951put('CJK_COMPATIBILITY_IDEOGRAPH_2FA1D, 'codepoint, 0x2FA1D);
26952put('LANGUAGE_TAG, 'codepoint, 0xE0001);
26953put('TAG_SPACE, 'codepoint, 0xE0020);
26954put('TAG_EXCLAMATION_MARK, 'codepoint, 0xE0021);
26955put('TAG_QUOTATION_MARK, 'codepoint, 0xE0022);
26956put('TAG_NUMBER_SIGN, 'codepoint, 0xE0023);
26957put('TAG_DOLLAR_SIGN, 'codepoint, 0xE0024);
26958put('TAG_PERCENT_SIGN, 'codepoint, 0xE0025);
26959put('TAG_AMPERSAND, 'codepoint, 0xE0026);
26960put('TAG_APOSTROPHE, 'codepoint, 0xE0027);
26961put('TAG_LEFT_PARENTHESIS, 'codepoint, 0xE0028);
26962put('TAG_RIGHT_PARENTHESIS, 'codepoint, 0xE0029);
26963put('TAG_ASTERISK, 'codepoint, 0xE002A);
26964put('TAG_PLUS_SIGN, 'codepoint, 0xE002B);
26965put('TAG_COMMA, 'codepoint, 0xE002C);
26966put('TAG_HYPHEN_MINUS, 'codepoint, 0xE002D);
26967put('TAG_FULL_STOP, 'codepoint, 0xE002E);
26968put('TAG_SOLIDUS, 'codepoint, 0xE002F);
26969put('TAG_DIGIT_ZERO, 'codepoint, 0xE0030);
26970put('TAG_DIGIT_ONE, 'codepoint, 0xE0031);
26971put('TAG_DIGIT_TWO, 'codepoint, 0xE0032);
26972put('TAG_DIGIT_THREE, 'codepoint, 0xE0033);
26973put('TAG_DIGIT_FOUR, 'codepoint, 0xE0034);
26974put('TAG_DIGIT_FIVE, 'codepoint, 0xE0035);
26975put('TAG_DIGIT_SIX, 'codepoint, 0xE0036);
26976put('TAG_DIGIT_SEVEN, 'codepoint, 0xE0037);
26977put('TAG_DIGIT_EIGHT, 'codepoint, 0xE0038);
26978put('TAG_DIGIT_NINE, 'codepoint, 0xE0039);
26979put('TAG_COLON, 'codepoint, 0xE003A);
26980put('TAG_SEMICOLON, 'codepoint, 0xE003B);
26981put('TAG_LESS_THAN_SIGN, 'codepoint, 0xE003C);
26982put('TAG_EQUALS_SIGN, 'codepoint, 0xE003D);
26983put('TAG_GREATER_THAN_SIGN, 'codepoint, 0xE003E);
26984put('TAG_QUESTION_MARK, 'codepoint, 0xE003F);
26985put('TAG_COMMERCIAL_AT, 'codepoint, 0xE0040);
26986put('TAG_LATIN_CAPITAL_LETTER_A, 'codepoint, 0xE0041);
26987put('TAG_LATIN_CAPITAL_LETTER_B, 'codepoint, 0xE0042);
26988put('TAG_LATIN_CAPITAL_LETTER_C, 'codepoint, 0xE0043);
26989put('TAG_LATIN_CAPITAL_LETTER_D, 'codepoint, 0xE0044);
26990put('TAG_LATIN_CAPITAL_LETTER_E, 'codepoint, 0xE0045);
26991put('TAG_LATIN_CAPITAL_LETTER_F, 'codepoint, 0xE0046);
26992put('TAG_LATIN_CAPITAL_LETTER_G, 'codepoint, 0xE0047);
26993put('TAG_LATIN_CAPITAL_LETTER_H, 'codepoint, 0xE0048);
26994put('TAG_LATIN_CAPITAL_LETTER_I, 'codepoint, 0xE0049);
26995put('TAG_LATIN_CAPITAL_LETTER_J, 'codepoint, 0xE004A);
26996put('TAG_LATIN_CAPITAL_LETTER_K, 'codepoint, 0xE004B);
26997put('TAG_LATIN_CAPITAL_LETTER_L, 'codepoint, 0xE004C);
26998put('TAG_LATIN_CAPITAL_LETTER_M, 'codepoint, 0xE004D);
26999put('TAG_LATIN_CAPITAL_LETTER_N, 'codepoint, 0xE004E);
27000put('TAG_LATIN_CAPITAL_LETTER_O, 'codepoint, 0xE004F);
27001put('TAG_LATIN_CAPITAL_LETTER_P, 'codepoint, 0xE0050);
27002put('TAG_LATIN_CAPITAL_LETTER_Q, 'codepoint, 0xE0051);
27003put('TAG_LATIN_CAPITAL_LETTER_R, 'codepoint, 0xE0052);
27004put('TAG_LATIN_CAPITAL_LETTER_S, 'codepoint, 0xE0053);
27005put('TAG_LATIN_CAPITAL_LETTER_T, 'codepoint, 0xE0054);
27006put('TAG_LATIN_CAPITAL_LETTER_U, 'codepoint, 0xE0055);
27007put('TAG_LATIN_CAPITAL_LETTER_V, 'codepoint, 0xE0056);
27008put('TAG_LATIN_CAPITAL_LETTER_W, 'codepoint, 0xE0057);
27009put('TAG_LATIN_CAPITAL_LETTER_X, 'codepoint, 0xE0058);
27010put('TAG_LATIN_CAPITAL_LETTER_Y, 'codepoint, 0xE0059);
27011put('TAG_LATIN_CAPITAL_LETTER_Z, 'codepoint, 0xE005A);
27012put('TAG_LEFT_SQUARE_BRACKET, 'codepoint, 0xE005B);
27013put('TAG_REVERSE_SOLIDUS, 'codepoint, 0xE005C);
27014put('TAG_RIGHT_SQUARE_BRACKET, 'codepoint, 0xE005D);
27015put('TAG_CIRCUMFLEX_ACCENT, 'codepoint, 0xE005E);
27016put('TAG_LOW_LINE, 'codepoint, 0xE005F);
27017put('TAG_GRAVE_ACCENT, 'codepoint, 0xE0060);
27018put('TAG_LATIN_SMALL_LETTER_A, 'codepoint, 0xE0061);
27019put('TAG_LATIN_SMALL_LETTER_B, 'codepoint, 0xE0062);
27020put('TAG_LATIN_SMALL_LETTER_C, 'codepoint, 0xE0063);
27021put('TAG_LATIN_SMALL_LETTER_D, 'codepoint, 0xE0064);
27022put('TAG_LATIN_SMALL_LETTER_E, 'codepoint, 0xE0065);
27023put('TAG_LATIN_SMALL_LETTER_F, 'codepoint, 0xE0066);
27024put('TAG_LATIN_SMALL_LETTER_G, 'codepoint, 0xE0067);
27025put('TAG_LATIN_SMALL_LETTER_H, 'codepoint, 0xE0068);
27026put('TAG_LATIN_SMALL_LETTER_I, 'codepoint, 0xE0069);
27027put('TAG_LATIN_SMALL_LETTER_J, 'codepoint, 0xE006A);
27028put('TAG_LATIN_SMALL_LETTER_K, 'codepoint, 0xE006B);
27029put('TAG_LATIN_SMALL_LETTER_L, 'codepoint, 0xE006C);
27030put('TAG_LATIN_SMALL_LETTER_M, 'codepoint, 0xE006D);
27031put('TAG_LATIN_SMALL_LETTER_N, 'codepoint, 0xE006E);
27032put('TAG_LATIN_SMALL_LETTER_O, 'codepoint, 0xE006F);
27033put('TAG_LATIN_SMALL_LETTER_P, 'codepoint, 0xE0070);
27034put('TAG_LATIN_SMALL_LETTER_Q, 'codepoint, 0xE0071);
27035put('TAG_LATIN_SMALL_LETTER_R, 'codepoint, 0xE0072);
27036put('TAG_LATIN_SMALL_LETTER_S, 'codepoint, 0xE0073);
27037put('TAG_LATIN_SMALL_LETTER_T, 'codepoint, 0xE0074);
27038put('TAG_LATIN_SMALL_LETTER_U, 'codepoint, 0xE0075);
27039put('TAG_LATIN_SMALL_LETTER_V, 'codepoint, 0xE0076);
27040put('TAG_LATIN_SMALL_LETTER_W, 'codepoint, 0xE0077);
27041put('TAG_LATIN_SMALL_LETTER_X, 'codepoint, 0xE0078);
27042put('TAG_LATIN_SMALL_LETTER_Y, 'codepoint, 0xE0079);
27043put('TAG_LATIN_SMALL_LETTER_Z, 'codepoint, 0xE007A);
27044put('TAG_LEFT_CURLY_BRACKET, 'codepoint, 0xE007B);
27045put('TAG_VERTICAL_LINE, 'codepoint, 0xE007C);
27046put('TAG_RIGHT_CURLY_BRACKET, 'codepoint, 0xE007D);
27047put('TAG_TILDE, 'codepoint, 0xE007E);
27048put('CANCEL_TAG, 'codepoint, 0xE007F);
27049put('VARIATION_SELECTOR_17, 'codepoint, 0xE0100);
27050put('VARIATION_SELECTOR_18, 'codepoint, 0xE0101);
27051put('VARIATION_SELECTOR_19, 'codepoint, 0xE0102);
27052put('VARIATION_SELECTOR_20, 'codepoint, 0xE0103);
27053put('VARIATION_SELECTOR_21, 'codepoint, 0xE0104);
27054put('VARIATION_SELECTOR_22, 'codepoint, 0xE0105);
27055put('VARIATION_SELECTOR_23, 'codepoint, 0xE0106);
27056put('VARIATION_SELECTOR_24, 'codepoint, 0xE0107);
27057put('VARIATION_SELECTOR_25, 'codepoint, 0xE0108);
27058put('VARIATION_SELECTOR_26, 'codepoint, 0xE0109);
27059put('VARIATION_SELECTOR_27, 'codepoint, 0xE010A);
27060put('VARIATION_SELECTOR_28, 'codepoint, 0xE010B);
27061put('VARIATION_SELECTOR_29, 'codepoint, 0xE010C);
27062put('VARIATION_SELECTOR_30, 'codepoint, 0xE010D);
27063put('VARIATION_SELECTOR_31, 'codepoint, 0xE010E);
27064put('VARIATION_SELECTOR_32, 'codepoint, 0xE010F);
27065put('VARIATION_SELECTOR_33, 'codepoint, 0xE0110);
27066put('VARIATION_SELECTOR_34, 'codepoint, 0xE0111);
27067put('VARIATION_SELECTOR_35, 'codepoint, 0xE0112);
27068put('VARIATION_SELECTOR_36, 'codepoint, 0xE0113);
27069put('VARIATION_SELECTOR_37, 'codepoint, 0xE0114);
27070put('VARIATION_SELECTOR_38, 'codepoint, 0xE0115);
27071put('VARIATION_SELECTOR_39, 'codepoint, 0xE0116);
27072put('VARIATION_SELECTOR_40, 'codepoint, 0xE0117);
27073put('VARIATION_SELECTOR_41, 'codepoint, 0xE0118);
27074put('VARIATION_SELECTOR_42, 'codepoint, 0xE0119);
27075put('VARIATION_SELECTOR_43, 'codepoint, 0xE011A);
27076put('VARIATION_SELECTOR_44, 'codepoint, 0xE011B);
27077put('VARIATION_SELECTOR_45, 'codepoint, 0xE011C);
27078put('VARIATION_SELECTOR_46, 'codepoint, 0xE011D);
27079put('VARIATION_SELECTOR_47, 'codepoint, 0xE011E);
27080put('VARIATION_SELECTOR_48, 'codepoint, 0xE011F);
27081put('VARIATION_SELECTOR_49, 'codepoint, 0xE0120);
27082put('VARIATION_SELECTOR_50, 'codepoint, 0xE0121);
27083put('VARIATION_SELECTOR_51, 'codepoint, 0xE0122);
27084put('VARIATION_SELECTOR_52, 'codepoint, 0xE0123);
27085put('VARIATION_SELECTOR_53, 'codepoint, 0xE0124);
27086put('VARIATION_SELECTOR_54, 'codepoint, 0xE0125);
27087put('VARIATION_SELECTOR_55, 'codepoint, 0xE0126);
27088put('VARIATION_SELECTOR_56, 'codepoint, 0xE0127);
27089put('VARIATION_SELECTOR_57, 'codepoint, 0xE0128);
27090put('VARIATION_SELECTOR_58, 'codepoint, 0xE0129);
27091put('VARIATION_SELECTOR_59, 'codepoint, 0xE012A);
27092put('VARIATION_SELECTOR_60, 'codepoint, 0xE012B);
27093put('VARIATION_SELECTOR_61, 'codepoint, 0xE012C);
27094put('VARIATION_SELECTOR_62, 'codepoint, 0xE012D);
27095put('VARIATION_SELECTOR_63, 'codepoint, 0xE012E);
27096put('VARIATION_SELECTOR_64, 'codepoint, 0xE012F);
27097put('VARIATION_SELECTOR_65, 'codepoint, 0xE0130);
27098put('VARIATION_SELECTOR_66, 'codepoint, 0xE0131);
27099put('VARIATION_SELECTOR_67, 'codepoint, 0xE0132);
27100put('VARIATION_SELECTOR_68, 'codepoint, 0xE0133);
27101put('VARIATION_SELECTOR_69, 'codepoint, 0xE0134);
27102put('VARIATION_SELECTOR_70, 'codepoint, 0xE0135);
27103put('VARIATION_SELECTOR_71, 'codepoint, 0xE0136);
27104put('VARIATION_SELECTOR_72, 'codepoint, 0xE0137);
27105put('VARIATION_SELECTOR_73, 'codepoint, 0xE0138);
27106put('VARIATION_SELECTOR_74, 'codepoint, 0xE0139);
27107put('VARIATION_SELECTOR_75, 'codepoint, 0xE013A);
27108put('VARIATION_SELECTOR_76, 'codepoint, 0xE013B);
27109put('VARIATION_SELECTOR_77, 'codepoint, 0xE013C);
27110put('VARIATION_SELECTOR_78, 'codepoint, 0xE013D);
27111put('VARIATION_SELECTOR_79, 'codepoint, 0xE013E);
27112put('VARIATION_SELECTOR_80, 'codepoint, 0xE013F);
27113put('VARIATION_SELECTOR_81, 'codepoint, 0xE0140);
27114put('VARIATION_SELECTOR_82, 'codepoint, 0xE0141);
27115put('VARIATION_SELECTOR_83, 'codepoint, 0xE0142);
27116put('VARIATION_SELECTOR_84, 'codepoint, 0xE0143);
27117put('VARIATION_SELECTOR_85, 'codepoint, 0xE0144);
27118put('VARIATION_SELECTOR_86, 'codepoint, 0xE0145);
27119put('VARIATION_SELECTOR_87, 'codepoint, 0xE0146);
27120put('VARIATION_SELECTOR_88, 'codepoint, 0xE0147);
27121put('VARIATION_SELECTOR_89, 'codepoint, 0xE0148);
27122put('VARIATION_SELECTOR_90, 'codepoint, 0xE0149);
27123put('VARIATION_SELECTOR_91, 'codepoint, 0xE014A);
27124put('VARIATION_SELECTOR_92, 'codepoint, 0xE014B);
27125put('VARIATION_SELECTOR_93, 'codepoint, 0xE014C);
27126put('VARIATION_SELECTOR_94, 'codepoint, 0xE014D);
27127put('VARIATION_SELECTOR_95, 'codepoint, 0xE014E);
27128put('VARIATION_SELECTOR_96, 'codepoint, 0xE014F);
27129put('VARIATION_SELECTOR_97, 'codepoint, 0xE0150);
27130put('VARIATION_SELECTOR_98, 'codepoint, 0xE0151);
27131put('VARIATION_SELECTOR_99, 'codepoint, 0xE0152);
27132put('VARIATION_SELECTOR_100, 'codepoint, 0xE0153);
27133put('VARIATION_SELECTOR_101, 'codepoint, 0xE0154);
27134put('VARIATION_SELECTOR_102, 'codepoint, 0xE0155);
27135put('VARIATION_SELECTOR_103, 'codepoint, 0xE0156);
27136put('VARIATION_SELECTOR_104, 'codepoint, 0xE0157);
27137put('VARIATION_SELECTOR_105, 'codepoint, 0xE0158);
27138put('VARIATION_SELECTOR_106, 'codepoint, 0xE0159);
27139put('VARIATION_SELECTOR_107, 'codepoint, 0xE015A);
27140put('VARIATION_SELECTOR_108, 'codepoint, 0xE015B);
27141put('VARIATION_SELECTOR_109, 'codepoint, 0xE015C);
27142put('VARIATION_SELECTOR_110, 'codepoint, 0xE015D);
27143put('VARIATION_SELECTOR_111, 'codepoint, 0xE015E);
27144put('VARIATION_SELECTOR_112, 'codepoint, 0xE015F);
27145put('VARIATION_SELECTOR_113, 'codepoint, 0xE0160);
27146put('VARIATION_SELECTOR_114, 'codepoint, 0xE0161);
27147put('VARIATION_SELECTOR_115, 'codepoint, 0xE0162);
27148put('VARIATION_SELECTOR_116, 'codepoint, 0xE0163);
27149put('VARIATION_SELECTOR_117, 'codepoint, 0xE0164);
27150put('VARIATION_SELECTOR_118, 'codepoint, 0xE0165);
27151put('VARIATION_SELECTOR_119, 'codepoint, 0xE0166);
27152put('VARIATION_SELECTOR_120, 'codepoint, 0xE0167);
27153put('VARIATION_SELECTOR_121, 'codepoint, 0xE0168);
27154put('VARIATION_SELECTOR_122, 'codepoint, 0xE0169);
27155put('VARIATION_SELECTOR_123, 'codepoint, 0xE016A);
27156put('VARIATION_SELECTOR_124, 'codepoint, 0xE016B);
27157put('VARIATION_SELECTOR_125, 'codepoint, 0xE016C);
27158put('VARIATION_SELECTOR_126, 'codepoint, 0xE016D);
27159put('VARIATION_SELECTOR_127, 'codepoint, 0xE016E);
27160put('VARIATION_SELECTOR_128, 'codepoint, 0xE016F);
27161put('VARIATION_SELECTOR_129, 'codepoint, 0xE0170);
27162put('VARIATION_SELECTOR_130, 'codepoint, 0xE0171);
27163put('VARIATION_SELECTOR_131, 'codepoint, 0xE0172);
27164put('VARIATION_SELECTOR_132, 'codepoint, 0xE0173);
27165put('VARIATION_SELECTOR_133, 'codepoint, 0xE0174);
27166put('VARIATION_SELECTOR_134, 'codepoint, 0xE0175);
27167put('VARIATION_SELECTOR_135, 'codepoint, 0xE0176);
27168put('VARIATION_SELECTOR_136, 'codepoint, 0xE0177);
27169put('VARIATION_SELECTOR_137, 'codepoint, 0xE0178);
27170put('VARIATION_SELECTOR_138, 'codepoint, 0xE0179);
27171put('VARIATION_SELECTOR_139, 'codepoint, 0xE017A);
27172put('VARIATION_SELECTOR_140, 'codepoint, 0xE017B);
27173put('VARIATION_SELECTOR_141, 'codepoint, 0xE017C);
27174put('VARIATION_SELECTOR_142, 'codepoint, 0xE017D);
27175put('VARIATION_SELECTOR_143, 'codepoint, 0xE017E);
27176put('VARIATION_SELECTOR_144, 'codepoint, 0xE017F);
27177put('VARIATION_SELECTOR_145, 'codepoint, 0xE0180);
27178put('VARIATION_SELECTOR_146, 'codepoint, 0xE0181);
27179put('VARIATION_SELECTOR_147, 'codepoint, 0xE0182);
27180put('VARIATION_SELECTOR_148, 'codepoint, 0xE0183);
27181put('VARIATION_SELECTOR_149, 'codepoint, 0xE0184);
27182put('VARIATION_SELECTOR_150, 'codepoint, 0xE0185);
27183put('VARIATION_SELECTOR_151, 'codepoint, 0xE0186);
27184put('VARIATION_SELECTOR_152, 'codepoint, 0xE0187);
27185put('VARIATION_SELECTOR_153, 'codepoint, 0xE0188);
27186put('VARIATION_SELECTOR_154, 'codepoint, 0xE0189);
27187put('VARIATION_SELECTOR_155, 'codepoint, 0xE018A);
27188put('VARIATION_SELECTOR_156, 'codepoint, 0xE018B);
27189put('VARIATION_SELECTOR_157, 'codepoint, 0xE018C);
27190put('VARIATION_SELECTOR_158, 'codepoint, 0xE018D);
27191put('VARIATION_SELECTOR_159, 'codepoint, 0xE018E);
27192put('VARIATION_SELECTOR_160, 'codepoint, 0xE018F);
27193put('VARIATION_SELECTOR_161, 'codepoint, 0xE0190);
27194put('VARIATION_SELECTOR_162, 'codepoint, 0xE0191);
27195put('VARIATION_SELECTOR_163, 'codepoint, 0xE0192);
27196put('VARIATION_SELECTOR_164, 'codepoint, 0xE0193);
27197put('VARIATION_SELECTOR_165, 'codepoint, 0xE0194);
27198put('VARIATION_SELECTOR_166, 'codepoint, 0xE0195);
27199put('VARIATION_SELECTOR_167, 'codepoint, 0xE0196);
27200put('VARIATION_SELECTOR_168, 'codepoint, 0xE0197);
27201put('VARIATION_SELECTOR_169, 'codepoint, 0xE0198);
27202put('VARIATION_SELECTOR_170, 'codepoint, 0xE0199);
27203put('VARIATION_SELECTOR_171, 'codepoint, 0xE019A);
27204put('VARIATION_SELECTOR_172, 'codepoint, 0xE019B);
27205put('VARIATION_SELECTOR_173, 'codepoint, 0xE019C);
27206put('VARIATION_SELECTOR_174, 'codepoint, 0xE019D);
27207put('VARIATION_SELECTOR_175, 'codepoint, 0xE019E);
27208put('VARIATION_SELECTOR_176, 'codepoint, 0xE019F);
27209put('VARIATION_SELECTOR_177, 'codepoint, 0xE01A0);
27210put('VARIATION_SELECTOR_178, 'codepoint, 0xE01A1);
27211put('VARIATION_SELECTOR_179, 'codepoint, 0xE01A2);
27212put('VARIATION_SELECTOR_180, 'codepoint, 0xE01A3);
27213put('VARIATION_SELECTOR_181, 'codepoint, 0xE01A4);
27214put('VARIATION_SELECTOR_182, 'codepoint, 0xE01A5);
27215put('VARIATION_SELECTOR_183, 'codepoint, 0xE01A6);
27216put('VARIATION_SELECTOR_184, 'codepoint, 0xE01A7);
27217put('VARIATION_SELECTOR_185, 'codepoint, 0xE01A8);
27218put('VARIATION_SELECTOR_186, 'codepoint, 0xE01A9);
27219put('VARIATION_SELECTOR_187, 'codepoint, 0xE01AA);
27220put('VARIATION_SELECTOR_188, 'codepoint, 0xE01AB);
27221put('VARIATION_SELECTOR_189, 'codepoint, 0xE01AC);
27222put('VARIATION_SELECTOR_190, 'codepoint, 0xE01AD);
27223put('VARIATION_SELECTOR_191, 'codepoint, 0xE01AE);
27224put('VARIATION_SELECTOR_192, 'codepoint, 0xE01AF);
27225put('VARIATION_SELECTOR_193, 'codepoint, 0xE01B0);
27226put('VARIATION_SELECTOR_194, 'codepoint, 0xE01B1);
27227put('VARIATION_SELECTOR_195, 'codepoint, 0xE01B2);
27228put('VARIATION_SELECTOR_196, 'codepoint, 0xE01B3);
27229put('VARIATION_SELECTOR_197, 'codepoint, 0xE01B4);
27230put('VARIATION_SELECTOR_198, 'codepoint, 0xE01B5);
27231put('VARIATION_SELECTOR_199, 'codepoint, 0xE01B6);
27232put('VARIATION_SELECTOR_200, 'codepoint, 0xE01B7);
27233put('VARIATION_SELECTOR_201, 'codepoint, 0xE01B8);
27234put('VARIATION_SELECTOR_202, 'codepoint, 0xE01B9);
27235put('VARIATION_SELECTOR_203, 'codepoint, 0xE01BA);
27236put('VARIATION_SELECTOR_204, 'codepoint, 0xE01BB);
27237put('VARIATION_SELECTOR_205, 'codepoint, 0xE01BC);
27238put('VARIATION_SELECTOR_206, 'codepoint, 0xE01BD);
27239put('VARIATION_SELECTOR_207, 'codepoint, 0xE01BE);
27240put('VARIATION_SELECTOR_208, 'codepoint, 0xE01BF);
27241put('VARIATION_SELECTOR_209, 'codepoint, 0xE01C0);
27242put('VARIATION_SELECTOR_210, 'codepoint, 0xE01C1);
27243put('VARIATION_SELECTOR_211, 'codepoint, 0xE01C2);
27244put('VARIATION_SELECTOR_212, 'codepoint, 0xE01C3);
27245put('VARIATION_SELECTOR_213, 'codepoint, 0xE01C4);
27246put('VARIATION_SELECTOR_214, 'codepoint, 0xE01C5);
27247put('VARIATION_SELECTOR_215, 'codepoint, 0xE01C6);
27248put('VARIATION_SELECTOR_216, 'codepoint, 0xE01C7);
27249put('VARIATION_SELECTOR_217, 'codepoint, 0xE01C8);
27250put('VARIATION_SELECTOR_218, 'codepoint, 0xE01C9);
27251put('VARIATION_SELECTOR_219, 'codepoint, 0xE01CA);
27252put('VARIATION_SELECTOR_220, 'codepoint, 0xE01CB);
27253put('VARIATION_SELECTOR_221, 'codepoint, 0xE01CC);
27254put('VARIATION_SELECTOR_222, 'codepoint, 0xE01CD);
27255put('VARIATION_SELECTOR_223, 'codepoint, 0xE01CE);
27256put('VARIATION_SELECTOR_224, 'codepoint, 0xE01CF);
27257put('VARIATION_SELECTOR_225, 'codepoint, 0xE01D0);
27258put('VARIATION_SELECTOR_226, 'codepoint, 0xE01D1);
27259put('VARIATION_SELECTOR_227, 'codepoint, 0xE01D2);
27260put('VARIATION_SELECTOR_228, 'codepoint, 0xE01D3);
27261put('VARIATION_SELECTOR_229, 'codepoint, 0xE01D4);
27262put('VARIATION_SELECTOR_230, 'codepoint, 0xE01D5);
27263put('VARIATION_SELECTOR_231, 'codepoint, 0xE01D6);
27264put('VARIATION_SELECTOR_232, 'codepoint, 0xE01D7);
27265put('VARIATION_SELECTOR_233, 'codepoint, 0xE01D8);
27266put('VARIATION_SELECTOR_234, 'codepoint, 0xE01D9);
27267put('VARIATION_SELECTOR_235, 'codepoint, 0xE01DA);
27268put('VARIATION_SELECTOR_236, 'codepoint, 0xE01DB);
27269put('VARIATION_SELECTOR_237, 'codepoint, 0xE01DC);
27270put('VARIATION_SELECTOR_238, 'codepoint, 0xE01DD);
27271put('VARIATION_SELECTOR_239, 'codepoint, 0xE01DE);
27272put('VARIATION_SELECTOR_240, 'codepoint, 0xE01DF);
27273put('VARIATION_SELECTOR_241, 'codepoint, 0xE01E0);
27274put('VARIATION_SELECTOR_242, 'codepoint, 0xE01E1);
27275put('VARIATION_SELECTOR_243, 'codepoint, 0xE01E2);
27276put('VARIATION_SELECTOR_244, 'codepoint, 0xE01E3);
27277put('VARIATION_SELECTOR_245, 'codepoint, 0xE01E4);
27278put('VARIATION_SELECTOR_246, 'codepoint, 0xE01E5);
27279put('VARIATION_SELECTOR_247, 'codepoint, 0xE01E6);
27280put('VARIATION_SELECTOR_248, 'codepoint, 0xE01E7);
27281put('VARIATION_SELECTOR_249, 'codepoint, 0xE01E8);
27282put('VARIATION_SELECTOR_250, 'codepoint, 0xE01E9);
27283put('VARIATION_SELECTOR_251, 'codepoint, 0xE01EA);
27284put('VARIATION_SELECTOR_252, 'codepoint, 0xE01EB);
27285put('VARIATION_SELECTOR_253, 'codepoint, 0xE01EC);
27286put('VARIATION_SELECTOR_254, 'codepoint, 0xE01ED);
27287put('VARIATION_SELECTOR_255, 'codepoint, 0xE01EE);
27288put('VARIATION_SELECTOR_256, 'codepoint, 0xE01EF);
27289put('Plane_15_Private_Use__First, 'codepoint, 0xF0000);
27290put('Plane_15_Private_Use__Last, 'codepoint, 0xFFFFD);
27291put('Plane_16_Private_Use__First, 'codepoint, 0x100000);
27292put('Plane_16_Private_Use__Last, 'codepoint, 0x10FFFD) >>$
27293
27294end;
27295
27296% end of uninames.red
27297
27298