GetCodepointDecomposition
Short summary
This function creates a the decomposition of a given code point. If no decomposition is possible, the method returns FALSE. This method finds only canonical decompositions used for NFD/NFC normalization. It does not provide compatible decompositions used for NFKC/NFKD forms.
Attention: The returned normalizedCodePoints is a dynamically created pointer! It needs to be deleted after usage.
- Return type:
BOOL
Parameters
| Name | Type | Comment | Kind |
|---|---|---|---|
| codepoint | POINTER TO UnicodeCodePoint | - | input |
| newCodepoints | POINTER TO UnicodeCodePoint | should be at least the size of 4 codepoints | input |
| numberOfCodepoints | UDINT | amount of codepoints that replaces the given codepoint | output |
Code
Declaration
FUNCTION INTERNAL GetCodepointDecomposition : BOOL
VAR_INPUT
codepoint :POINTER TO UnicodeCodePoint;
(* should be at least the size of 4 codepoints *)
newCodepoints :POINTER TO UnicodeCodePoint;
END_VAR
VAR_OUTPUT
(* amount of codepoints that replaces the given codepoint *)
numberOfCodepoints :UDINT;
END_VAR
Implementation
RETURN((codepoint = 0) OR_ELSE (newCodepoints = 0));
GetCodepointDecomposition := TRUE;
CASE codepoint^ OF
16#00C0:
newCodepoints[0] := 16#0041;
newCodepoints[1] := 16#0300;
numberOfCodepoints := 2;
16#00C1:
newCodepoints[0] := 16#0041;
newCodepoints[1] := 16#0301;
numberOfCodepoints := 2;
16#00C2:
newCodepoints[0] := 16#0041;
newCodepoints[1] := 16#0302;
numberOfCodepoints := 2;
16#00C3:
newCodepoints[0] := 16#0041;
newCodepoints[1] := 16#0303;
numberOfCodepoints := 2;
16#00C4:
newCodepoints[0] := 16#0041;
newCodepoints[1] := 16#0308;
numberOfCodepoints := 2;
16#00C5:
newCodepoints[0] := 16#0041;
newCodepoints[1] := 16#030A;
numberOfCodepoints := 2;
16#00C7:
newCodepoints[0] := 16#0043;
newCodepoints[1] := 16#0327;
numberOfCodepoints := 2;
16#00C8:
newCodepoints[0] := 16#0045;
newCodepoints[1] := 16#0300;
numberOfCodepoints := 2;
16#00C9:
newCodepoints[0] := 16#0045;
newCodepoints[1] := 16#0301;
numberOfCodepoints := 2;
16#00CA:
newCodepoints[0] := 16#0045;
newCodepoints[1] := 16#0302;
numberOfCodepoints := 2;
16#00CB:
newCodepoints[0] := 16#0045;
newCodepoints[1] := 16#0308;
numberOfCodepoints := 2;
16#00CC:
newCodepoints[0] := 16#0049;
newCodepoints[1] := 16#0300;
numberOfCodepoints := 2;
16#00CD:
newCodepoints[0] := 16#0049;
newCodepoints[1] := 16#0301;
numberOfCodepoints := 2;
16#00CE:
newCodepoints[0] := 16#0049;
newCodepoints[1] := 16#0302;
numberOfCodepoints := 2;
16#00CF:
newCodepoints[0] := 16#0049;
newCodepoints[1] := 16#0308;
numberOfCodepoints := 2;
16#00D1:
newCodepoints[0] := 16#004E;
newCodepoints[1] := 16#0303;
numberOfCodepoints := 2;
16#00D2:
newCodepoints[0] := 16#004F;
newCodepoints[1] := 16#0300;
numberOfCodepoints := 2;
16#00D3:
newCodepoints[0] := 16#004F;
newCodepoints[1] := 16#0301;
numberOfCodepoints := 2;
16#00D4:
newCodepoints[0] := 16#004F;
newCodepoints[1] := 16#0302;
numberOfCodepoints := 2;
16#00D5:
newCodepoints[0] := 16#004F;
newCodepoints[1] := 16#0303;
numberOfCodepoints := 2;
16#00D6:
newCodepoints[0] := 16#004F;
newCodepoints[1] := 16#0308;
numberOfCodepoints := 2;
16#00D9:
newCodepoints[0] := 16#0055;
newCodepoints[1] := 16#0300;
numberOfCodepoints := 2;
16#00DA:
newCodepoints[0] := 16#0055;
newCodepoints[1] := 16#0301;
numberOfCodepoints := 2;
16#00DB:
newCodepoints[0] := 16#0055;
newCodepoints[1] := 16#0302;
numberOfCodepoints := 2;
16#00DC:
newCodepoints[0] := 16#0055;
newCodepoints[1] := 16#0308;
numberOfCodepoints := 2;
16#00DD:
newCodepoints[0] := 16#0059;
newCodepoints[1] := 16#0301;
numberOfCodepoints := 2;
16#00E0:
newCodepoints[0] := 16#0061;
newCodepoints[1] := 16#0300;
numberOfCodepoints := 2;
16#00E1:
newCodepoints[0] := 16#0061;
newCodepoints[1] := 16#0301;
numberOfCodepoints := 2;
16#00E2:
newCodepoints[0] := 16#0061;
newCodepoints[1] := 16#0302;
numberOfCodepoints := 2;
16#00E3:
newCodepoints[0] := 16#0061;
newCodepoints[1] := 16#0303;
numberOfCodepoints := 2;
16#00E4:
newCodepoints[0] := 16#0061;
newCodepoints[1] := 16#0308;
numberOfCodepoints := 2;
16#00E5:
newCodepoints[0] := 16#0061;
newCodepoints[1] := 16#030A;
numberOfCodepoints := 2;
16#00E7:
newCodepoints[0] := 16#0063;
newCodepoints[1] := 16#0327;
numberOfCodepoints := 2;
16#00E8:
newCodepoints[0] := 16#0065;
newCodepoints[1] := 16#0300;
numberOfCodepoints := 2;
16#00E9:
newCodepoints[0] := 16#0065;
newCodepoints[1] := 16#0301;
numberOfCodepoints := 2;
16#00EA:
newCodepoints[0] := 16#0065;
newCodepoints[1] := 16#0302;
numberOfCodepoints := 2;
16#00EB:
newCodepoints[0] := 16#0065;
newCodepoints[1] := 16#0308;
numberOfCodepoints := 2;
16#00EC:
newCodepoints[0] := 16#0069;
newCodepoints[1] := 16#0300;
numberOfCodepoints := 2;
16#00ED:
newCodepoints[0] := 16#0069;
newCodepoints[1] := 16#0301;
numberOfCodepoints := 2;
16#00EE:
newCodepoints[0] := 16#0069;
newCodepoints[1] := 16#0302;
numberOfCodepoints := 2;
16#00EF:
newCodepoints[0] := 16#0069;
newCodepoints[1] := 16#0308;
numberOfCodepoints := 2;
16#00F1:
newCodepoints[0] := 16#006E;
newCodepoints[1] := 16#0303;
numberOfCodepoints := 2;
16#00F2:
newCodepoints[0] := 16#006F;
newCodepoints[1] := 16#0300;
numberOfCodepoints := 2;
16#00F3:
newCodepoints[0] := 16#006F;
newCodepoints[1] := 16#0301;
numberOfCodepoints := 2;
16#00F4:
newCodepoints[0] := 16#006F;
newCodepoints[1] := 16#0302;
numberOfCodepoints := 2;
16#00F5:
newCodepoints[0] := 16#006F;
newCodepoints[1] := 16#0303;
numberOfCodepoints := 2;
16#00F6:
newCodepoints[0] := 16#006F;
newCodepoints[1] := 16#0308;
numberOfCodepoints := 2;
16#00F9:
newCodepoints[0] := 16#0075;
newCodepoints[1] := 16#0300;
numberOfCodepoints := 2;
16#00FA:
newCodepoints[0] := 16#0075;
newCodepoints[1] := 16#0301;
numberOfCodepoints := 2;
16#00FB:
newCodepoints[0] := 16#0075;
newCodepoints[1] := 16#0302;
numberOfCodepoints := 2;
16#00FC:
newCodepoints[0] := 16#0075;
newCodepoints[1] := 16#0308;
numberOfCodepoints := 2;
16#00FD:
newCodepoints[0] := 16#0079;
newCodepoints[1] := 16#0301;
numberOfCodepoints := 2;
16#00FF:
newCodepoints[0] := 16#0079;
newCodepoints[1] := 16#0308;
numberOfCodepoints := 2;
16#0100:
newCodepoints[0] := 16#0041;
newCodepoints[1] := 16#0304;
numberOfCodepoints := 2;
16#0101:
newCodepoints[0] := 16#0061;
newCodepoints[1] := 16#0304;
numberOfCodepoints := 2;
16#0102:
newCodepoints[0] := 16#0041;
newCodepoints[1] := 16#0306;
numberOfCodepoints := 2;
16#0103:
newCodepoints[0] := 16#0061;
newCodepoints[1] := 16#0306;
numberOfCodepoints := 2;
16#0104:
newCodepoints[0] := 16#0041;
newCodepoints[1] := 16#0328;
numberOfCodepoints := 2;
16#0105:
newCodepoints[0] := 16#0061;
newCodepoints[1] := 16#0328;
numberOfCodepoints := 2;
16#0106:
newCodepoints[0] := 16#0043;
newCodepoints[1] := 16#0301;
numberOfCodepoints := 2;
16#0107:
newCodepoints[0] := 16#0063;
newCodepoints[1] := 16#0301;
numberOfCodepoints := 2;
16#0108:
newCodepoints[0] := 16#0043;
newCodepoints[1] := 16#0302;
numberOfCodepoints := 2;
16#0109:
newCodepoints[0] := 16#0063;
newCodepoints[1] := 16#0302;
numberOfCodepoints := 2;
16#010A:
newCodepoints[0] := 16#0043;
newCodepoints[1] := 16#0307;
numberOfCodepoints := 2;
16#010B:
newCodepoints[0] := 16#0063;
newCodepoints[1] := 16#0307;
numberOfCodepoints := 2;
16#010C:
newCodepoints[0] := 16#0043;
newCodepoints[1] := 16#030C;
numberOfCodepoints := 2;
16#010D:
newCodepoints[0] := 16#0063;
newCodepoints[1] := 16#030C;
numberOfCodepoints := 2;
16#010E:
newCodepoints[0] := 16#0044;
newCodepoints[1] := 16#030C;
numberOfCodepoints := 2;
16#010F:
newCodepoints[0] := 16#0064;
newCodepoints[1] := 16#030C;
numberOfCodepoints := 2;
16#0112:
newCodepoints[0] := 16#0045;
newCodepoints[1] := 16#0304;
numberOfCodepoints := 2;
16#0113:
newCodepoints[0] := 16#0065;
newCodepoints[1] := 16#0304;
numberOfCodepoints := 2;
16#0114:
newCodepoints[0] := 16#0045;
newCodepoints[1] := 16#0306;
numberOfCodepoints := 2;
16#0115:
newCodepoints[0] := 16#0065;
newCodepoints[1] := 16#0306;
numberOfCodepoints := 2;
16#0116:
newCodepoints[0] := 16#0045;
newCodepoints[1] := 16#0307;
numberOfCodepoints := 2;
16#0117:
newCodepoints[0] := 16#0065;
newCodepoints[1] := 16#0307;
numberOfCodepoints := 2;
16#0118:
newCodepoints[0] := 16#0045;
newCodepoints[1] := 16#0328;
numberOfCodepoints := 2;
16#0119:
newCodepoints[0] := 16#0065;
newCodepoints[1] := 16#0328;
numberOfCodepoints := 2;
16#011A:
newCodepoints[0] := 16#0045;
newCodepoints[1] := 16#030C;
numberOfCodepoints := 2;
16#011B:
newCodepoints[0] := 16#0065;
newCodepoints[1] := 16#030C;
numberOfCodepoints := 2;
16#011C:
newCodepoints[0] := 16#0047;
newCodepoints[1] := 16#0302;
numberOfCodepoints := 2;
16#011D:
newCodepoints[0] := 16#0067;
newCodepoints[1] := 16#0302;
numberOfCodepoints := 2;
16#011E:
newCodepoints[0] := 16#0047;
newCodepoints[1] := 16#0306;
numberOfCodepoints := 2;
16#011F:
newCodepoints[0] := 16#0067;
newCodepoints[1] := 16#0306;
numberOfCodepoints := 2;
16#0120:
newCodepoints[0] := 16#0047;
newCodepoints[1] := 16#0307;
numberOfCodepoints := 2;
16#0121:
newCodepoints[0] := 16#0067;
newCodepoints[1] := 16#0307;
numberOfCodepoints := 2;
16#0122:
newCodepoints[0] := 16#0047;
newCodepoints[1] := 16#0327;
numberOfCodepoints := 2;
16#0123:
newCodepoints[0] := 16#0067;
newCodepoints[1] := 16#0327;
numberOfCodepoints := 2;
16#0124:
newCodepoints[0] := 16#0048;
newCodepoints[1] := 16#0302;
numberOfCodepoints := 2;
16#0125:
newCodepoints[0] := 16#0068;
newCodepoints[1] := 16#0302;
numberOfCodepoints := 2;
16#0128:
newCodepoints[0] := 16#0049;
newCodepoints[1] := 16#0303;
numberOfCodepoints := 2;
16#0129:
newCodepoints[0] := 16#0069;
newCodepoints[1] := 16#0303;
numberOfCodepoints := 2;
16#012A:
newCodepoints[0] := 16#0049;
newCodepoints[1] := 16#0304;
numberOfCodepoints := 2;
16#012B:
newCodepoints[0] := 16#0069;
newCodepoints[1] := 16#0304;
numberOfCodepoints := 2;
16#012C:
newCodepoints[0] := 16#0049;
newCodepoints[1] := 16#0306;
numberOfCodepoints := 2;
16#012D:
newCodepoints[0] := 16#0069;
newCodepoints[1] := 16#0306;
numberOfCodepoints := 2;
16#012E:
newCodepoints[0] := 16#0049;
newCodepoints[1] := 16#0328;
numberOfCodepoints := 2;
16#012F:
newCodepoints[0] := 16#0069;
newCodepoints[1] := 16#0328;
numberOfCodepoints := 2;
16#0130:
newCodepoints[0] := 16#0049;
newCodepoints[1] := 16#0307;
numberOfCodepoints := 2;
16#0134:
newCodepoints[0] := 16#004A;
newCodepoints[1] := 16#0302;
numberOfCodepoints := 2;
16#0135:
newCodepoints[0] := 16#006A;
newCodepoints[1] := 16#0302;
numberOfCodepoints := 2;
16#0136:
newCodepoints[0] := 16#004B;
newCodepoints[1] := 16#0327;
numberOfCodepoints := 2;
16#0137:
newCodepoints[0] := 16#006B;
newCodepoints[1] := 16#0327;
numberOfCodepoints := 2;
16#0139:
newCodepoints[0] := 16#004C;
newCodepoints[1] := 16#0301;
numberOfCodepoints := 2;
16#013A:
newCodepoints[0] := 16#006C;
newCodepoints[1] := 16#0301;
numberOfCodepoints := 2;
16#013B:
newCodepoints[0] := 16#004C;
newCodepoints[1] := 16#0327;
numberOfCodepoints := 2;
16#013C:
newCodepoints[0] := 16#006C;
newCodepoints[1] := 16#0327;
numberOfCodepoints := 2;
16#013D:
newCodepoints[0] := 16#004C;
newCodepoints[1] := 16#030C;
numberOfCodepoints := 2;
16#013E:
newCodepoints[0] := 16#006C;
newCodepoints[1] := 16#030C;
numberOfCodepoints := 2;
16#0143:
newCodepoints[0] := 16#004E;
newCodepoints[1] := 16#0301;
numberOfCodepoints := 2;
16#0144:
newCodepoints[0] := 16#006E;
newCodepoints[1] := 16#0301;
numberOfCodepoints := 2;
16#0145:
newCodepoints[0] := 16#004E;
newCodepoints[1] := 16#0327;
numberOfCodepoints := 2;
16#0146:
newCodepoints[0] := 16#006E;
newCodepoints[1] := 16#0327;
numberOfCodepoints := 2;
16#0147:
newCodepoints[0] := 16#004E;
newCodepoints[1] := 16#030C;
numberOfCodepoints := 2;
16#0148:
newCodepoints[0] := 16#006E;
newCodepoints[1] := 16#030C;
numberOfCodepoints := 2;
16#014C:
newCodepoints[0] := 16#004F;
newCodepoints[1] := 16#0304;
numberOfCodepoints := 2;
16#014D:
newCodepoints[0] := 16#006F;
newCodepoints[1] := 16#0304;
numberOfCodepoints := 2;
16#014E:
newCodepoints[0] := 16#004F;
newCodepoints[1] := 16#0306;
numberOfCodepoints := 2;
16#014F:
newCodepoints[0] := 16#006F;
newCodepoints[1] := 16#0306;
numberOfCodepoints := 2;
16#0150:
newCodepoints[0] := 16#004F;
newCodepoints[1] := 16#030B;
numberOfCodepoints := 2;
16#0151:
newCodepoints[0] := 16#006F;
newCodepoints[1] := 16#030B;
numberOfCodepoints := 2;
16#0154:
newCodepoints[0] := 16#0052;
newCodepoints[1] := 16#0301;
numberOfCodepoints := 2;
16#0155:
newCodepoints[0] := 16#0072;
newCodepoints[1] := 16#0301;
numberOfCodepoints := 2;
16#0156:
newCodepoints[0] := 16#0052;
newCodepoints[1] := 16#0327;
numberOfCodepoints := 2;
16#0157:
newCodepoints[0] := 16#0072;
newCodepoints[1] := 16#0327;
numberOfCodepoints := 2;
16#0158:
newCodepoints[0] := 16#0052;
newCodepoints[1] := 16#030C;
numberOfCodepoints := 2;
16#0159:
newCodepoints[0] := 16#0072;
newCodepoints[1] := 16#030C;
numberOfCodepoints := 2;
16#015A:
newCodepoints[0] := 16#0053;
newCodepoints[1] := 16#0301;
numberOfCodepoints := 2;
16#015B:
newCodepoints[0] := 16#0073;
newCodepoints[1] := 16#0301;
numberOfCodepoints := 2;
16#015C:
newCodepoints[0] := 16#0053;
newCodepoints[1] := 16#0302;
numberOfCodepoints := 2;
16#015D:
newCodepoints[0] := 16#0073;
newCodepoints[1] := 16#0302;
numberOfCodepoints := 2;
16#015E:
newCodepoints[0] := 16#0053;
newCodepoints[1] := 16#0327;
numberOfCodepoints := 2;
16#015F:
newCodepoints[0] := 16#0073;
newCodepoints[1] := 16#0327;
numberOfCodepoints := 2;
16#0160:
newCodepoints[0] := 16#0053;
newCodepoints[1] := 16#030C;
numberOfCodepoints := 2;
16#0161:
newCodepoints[0] := 16#0073;
newCodepoints[1] := 16#030C;
numberOfCodepoints := 2;
16#0162:
newCodepoints[0] := 16#0054;
newCodepoints[1] := 16#0327;
numberOfCodepoints := 2;
16#0163:
newCodepoints[0] := 16#0074;
newCodepoints[1] := 16#0327;
numberOfCodepoints := 2;
16#0164:
newCodepoints[0] := 16#0054;
newCodepoints[1] := 16#030C;
numberOfCodepoints := 2;
16#0165:
newCodepoints[0] := 16#0074;
newCodepoints[1] := 16#030C;
numberOfCodepoints := 2;
16#0168:
newCodepoints[0] := 16#0055;
newCodepoints[1] := 16#0303;
numberOfCodepoints := 2;
16#0169:
newCodepoints[0] := 16#0075;
newCodepoints[1] := 16#0303;
numberOfCodepoints := 2;
16#016A:
newCodepoints[0] := 16#0055;
newCodepoints[1] := 16#0304;
numberOfCodepoints := 2;
16#016B:
newCodepoints[0] := 16#0075;
newCodepoints[1] := 16#0304;
numberOfCodepoints := 2;
16#016C:
newCodepoints[0] := 16#0055;
newCodepoints[1] := 16#0306;
numberOfCodepoints := 2;
16#016D:
newCodepoints[0] := 16#0075;
newCodepoints[1] := 16#0306;
numberOfCodepoints := 2;
16#016E:
newCodepoints[0] := 16#0055;
newCodepoints[1] := 16#030A;
numberOfCodepoints := 2;
16#016F:
newCodepoints[0] := 16#0075;
newCodepoints[1] := 16#030A;
numberOfCodepoints := 2;
16#0170:
newCodepoints[0] := 16#0055;
newCodepoints[1] := 16#030B;
numberOfCodepoints := 2;
16#0171:
newCodepoints[0] := 16#0075;
newCodepoints[1] := 16#030B;
numberOfCodepoints := 2;
16#0172:
newCodepoints[0] := 16#0055;
newCodepoints[1] := 16#0328;
numberOfCodepoints := 2;
16#0173:
newCodepoints[0] := 16#0075;
newCodepoints[1] := 16#0328;
numberOfCodepoints := 2;
16#0174:
newCodepoints[0] := 16#0057;
newCodepoints[1] := 16#0302;
numberOfCodepoints := 2;
16#0175:
newCodepoints[0] := 16#0077;
newCodepoints[1] := 16#0302;
numberOfCodepoints := 2;
16#0176:
newCodepoints[0] := 16#0059;
newCodepoints[1] := 16#0302;
numberOfCodepoints := 2;
16#0177:
newCodepoints[0] := 16#0079;
newCodepoints[1] := 16#0302;
numberOfCodepoints := 2;
16#0178:
newCodepoints[0] := 16#0059;
newCodepoints[1] := 16#0308;
numberOfCodepoints := 2;
16#0179:
newCodepoints[0] := 16#005A;
newCodepoints[1] := 16#0301;
numberOfCodepoints := 2;
16#017A:
newCodepoints[0] := 16#007A;
newCodepoints[1] := 16#0301;
numberOfCodepoints := 2;
16#017B:
newCodepoints[0] := 16#005A;
newCodepoints[1] := 16#0307;
numberOfCodepoints := 2;
16#017C:
newCodepoints[0] := 16#007A;
newCodepoints[1] := 16#0307;
numberOfCodepoints := 2;
16#017D:
newCodepoints[0] := 16#005A;
newCodepoints[1] := 16#030C;
numberOfCodepoints := 2;
16#017E:
newCodepoints[0] := 16#007A;
newCodepoints[1] := 16#030C;
numberOfCodepoints := 2;
16#01A0:
newCodepoints[0] := 16#004F;
newCodepoints[1] := 16#031B;
numberOfCodepoints := 2;
16#01A1:
newCodepoints[0] := 16#006F;
newCodepoints[1] := 16#031B;
numberOfCodepoints := 2;
16#01AF:
newCodepoints[0] := 16#0055;
newCodepoints[1] := 16#031B;
numberOfCodepoints := 2;
16#01B0:
newCodepoints[0] := 16#0075;
newCodepoints[1] := 16#031B;
numberOfCodepoints := 2;
16#01CD:
newCodepoints[0] := 16#0041;
newCodepoints[1] := 16#030C;
numberOfCodepoints := 2;
16#01CE:
newCodepoints[0] := 16#0061;
newCodepoints[1] := 16#030C;
numberOfCodepoints := 2;
16#01CF:
newCodepoints[0] := 16#0049;
newCodepoints[1] := 16#030C;
numberOfCodepoints := 2;
16#01D0:
newCodepoints[0] := 16#0069;
newCodepoints[1] := 16#030C;
numberOfCodepoints := 2;
16#01D1:
newCodepoints[0] := 16#004F;
newCodepoints[1] := 16#030C;
numberOfCodepoints := 2;
16#01D2:
newCodepoints[0] := 16#006F;
newCodepoints[1] := 16#030C;
numberOfCodepoints := 2;
16#01D3:
newCodepoints[0] := 16#0055;
newCodepoints[1] := 16#030C;
numberOfCodepoints := 2;
16#01D4:
newCodepoints[0] := 16#0075;
newCodepoints[1] := 16#030C;
numberOfCodepoints := 2;
16#01D5:
newCodepoints[0] := 16#00DC;
newCodepoints[1] := 16#0304;
numberOfCodepoints := 2;
16#01D6:
newCodepoints[0] := 16#00FC;
newCodepoints[1] := 16#0304;
numberOfCodepoints := 2;
16#01D7:
newCodepoints[0] := 16#00DC;
newCodepoints[1] := 16#0301;
numberOfCodepoints := 2;
16#01D8:
newCodepoints[0] := 16#00FC;
newCodepoints[1] := 16#0301;
numberOfCodepoints := 2;
16#01D9:
newCodepoints[0] := 16#00DC;
newCodepoints[1] := 16#030C;
numberOfCodepoints := 2;
16#01DA:
newCodepoints[0] := 16#00FC;
newCodepoints[1] := 16#030C;
numberOfCodepoints := 2;
16#01DB:
newCodepoints[0] := 16#00DC;
newCodepoints[1] := 16#0300;
numberOfCodepoints := 2;
16#01DC:
newCodepoints[0] := 16#00FC;
newCodepoints[1] := 16#0300;
numberOfCodepoints := 2;
16#01DE:
newCodepoints[0] := 16#00C4;
newCodepoints[1] := 16#0304;
numberOfCodepoints := 2;
16#01DF:
newCodepoints[0] := 16#00E4;
newCodepoints[1] := 16#0304;
numberOfCodepoints := 2;
16#01E0:
newCodepoints[0] := 16#0226;
newCodepoints[1] := 16#0304;
numberOfCodepoints := 2;
16#01E1:
newCodepoints[0] := 16#0227;
newCodepoints[1] := 16#0304;
numberOfCodepoints := 2;
16#01E2:
newCodepoints[0] := 16#00C6;
newCodepoints[1] := 16#0304;
numberOfCodepoints := 2;
16#01E3:
newCodepoints[0] := 16#00E6;
newCodepoints[1] := 16#0304;
numberOfCodepoints := 2;
16#01E6:
newCodepoints[0] := 16#0047;
newCodepoints[1] := 16#030C;
numberOfCodepoints := 2;
16#01E7:
newCodepoints[0] := 16#0067;
newCodepoints[1] := 16#030C;
numberOfCodepoints := 2;
16#01E8:
newCodepoints[0] := 16#004B;
newCodepoints[1] := 16#030C;
numberOfCodepoints := 2;
16#01E9:
newCodepoints[0] := 16#006B;
newCodepoints[1] := 16#030C;
numberOfCodepoints := 2;
16#01EA:
newCodepoints[0] := 16#004F;
newCodepoints[1] := 16#0328;
numberOfCodepoints := 2;
16#01EB:
newCodepoints[0] := 16#006F;
newCodepoints[1] := 16#0328;
numberOfCodepoints := 2;
16#01EC:
newCodepoints[0] := 16#01EA;
newCodepoints[1] := 16#0304;
numberOfCodepoints := 2;
16#01ED:
newCodepoints[0] := 16#01EB;
newCodepoints[1] := 16#0304;
numberOfCodepoints := 2;
16#01EE:
newCodepoints[0] := 16#01B7;
newCodepoints[1] := 16#030C;
numberOfCodepoints := 2;
16#01EF:
newCodepoints[0] := 16#0292;
newCodepoints[1] := 16#030C;
numberOfCodepoints := 2;
16#01F0:
newCodepoints[0] := 16#006A;
newCodepoints[1] := 16#030C;
numberOfCodepoints := 2;
16#01F4:
newCodepoints[0] := 16#0047;
newCodepoints[1] := 16#0301;
numberOfCodepoints := 2;
16#01F5:
newCodepoints[0] := 16#0067;
newCodepoints[1] := 16#0301;
numberOfCodepoints := 2;
16#01F8:
newCodepoints[0] := 16#004E;
newCodepoints[1] := 16#0300;
numberOfCodepoints := 2;
16#01F9:
newCodepoints[0] := 16#006E;
newCodepoints[1] := 16#0300;
numberOfCodepoints := 2;
16#01FA:
newCodepoints[0] := 16#00C5;
newCodepoints[1] := 16#0301;
numberOfCodepoints := 2;
16#01FB:
newCodepoints[0] := 16#00E5;
newCodepoints[1] := 16#0301;
numberOfCodepoints := 2;
16#01FC:
newCodepoints[0] := 16#00C6;
newCodepoints[1] := 16#0301;
numberOfCodepoints := 2;
16#01FD:
newCodepoints[0] := 16#00E6;
newCodepoints[1] := 16#0301;
numberOfCodepoints := 2;
16#01FE:
newCodepoints[0] := 16#00D8;
newCodepoints[1] := 16#0301;
numberOfCodepoints := 2;
16#01FF:
newCodepoints[0] := 16#00F8;
newCodepoints[1] := 16#0301;
numberOfCodepoints := 2;
16#0200:
newCodepoints[0] := 16#0041;
newCodepoints[1] := 16#030F;
numberOfCodepoints := 2;
16#0201:
newCodepoints[0] := 16#0061;
newCodepoints[1] := 16#030F;
numberOfCodepoints := 2;
16#0202:
newCodepoints[0] := 16#0041;
newCodepoints[1] := 16#0311;
numberOfCodepoints := 2;
16#0203:
newCodepoints[0] := 16#0061;
newCodepoints[1] := 16#0311;
numberOfCodepoints := 2;
16#0204:
newCodepoints[0] := 16#0045;
newCodepoints[1] := 16#030F;
numberOfCodepoints := 2;
16#0205:
newCodepoints[0] := 16#0065;
newCodepoints[1] := 16#030F;
numberOfCodepoints := 2;
16#0206:
newCodepoints[0] := 16#0045;
newCodepoints[1] := 16#0311;
numberOfCodepoints := 2;
16#0207:
newCodepoints[0] := 16#0065;
newCodepoints[1] := 16#0311;
numberOfCodepoints := 2;
16#0208:
newCodepoints[0] := 16#0049;
newCodepoints[1] := 16#030F;
numberOfCodepoints := 2;
16#0209:
newCodepoints[0] := 16#0069;
newCodepoints[1] := 16#030F;
numberOfCodepoints := 2;
16#020A:
newCodepoints[0] := 16#0049;
newCodepoints[1] := 16#0311;
numberOfCodepoints := 2;
16#020B:
newCodepoints[0] := 16#0069;
newCodepoints[1] := 16#0311;
numberOfCodepoints := 2;
16#020C:
newCodepoints[0] := 16#004F;
newCodepoints[1] := 16#030F;
numberOfCodepoints := 2;
16#020D:
newCodepoints[0] := 16#006F;
newCodepoints[1] := 16#030F;
numberOfCodepoints := 2;
16#020E:
newCodepoints[0] := 16#004F;
newCodepoints[1] := 16#0311;
numberOfCodepoints := 2;
16#020F:
newCodepoints[0] := 16#006F;
newCodepoints[1] := 16#0311;
numberOfCodepoints := 2;
16#0210:
newCodepoints[0] := 16#0052;
newCodepoints[1] := 16#030F;
numberOfCodepoints := 2;
16#0211:
newCodepoints[0] := 16#0072;
newCodepoints[1] := 16#030F;
numberOfCodepoints := 2;
16#0212:
newCodepoints[0] := 16#0052;
newCodepoints[1] := 16#0311;
numberOfCodepoints := 2;
16#0213:
newCodepoints[0] := 16#0072;
newCodepoints[1] := 16#0311;
numberOfCodepoints := 2;
16#0214:
newCodepoints[0] := 16#0055;
newCodepoints[1] := 16#030F;
numberOfCodepoints := 2;
16#0215:
newCodepoints[0] := 16#0075;
newCodepoints[1] := 16#030F;
numberOfCodepoints := 2;
16#0216:
newCodepoints[0] := 16#0055;
newCodepoints[1] := 16#0311;
numberOfCodepoints := 2;
16#0217:
newCodepoints[0] := 16#0075;
newCodepoints[1] := 16#0311;
numberOfCodepoints := 2;
16#0218:
newCodepoints[0] := 16#0053;
newCodepoints[1] := 16#0326;
numberOfCodepoints := 2;
16#0219:
newCodepoints[0] := 16#0073;
newCodepoints[1] := 16#0326;
numberOfCodepoints := 2;
16#021A:
newCodepoints[0] := 16#0054;
newCodepoints[1] := 16#0326;
numberOfCodepoints := 2;
16#021B:
newCodepoints[0] := 16#0074;
newCodepoints[1] := 16#0326;
numberOfCodepoints := 2;
16#021E:
newCodepoints[0] := 16#0048;
newCodepoints[1] := 16#030C;
numberOfCodepoints := 2;
16#021F:
newCodepoints[0] := 16#0068;
newCodepoints[1] := 16#030C;
numberOfCodepoints := 2;
16#0226:
newCodepoints[0] := 16#0041;
newCodepoints[1] := 16#0307;
numberOfCodepoints := 2;
16#0227:
newCodepoints[0] := 16#0061;
newCodepoints[1] := 16#0307;
numberOfCodepoints := 2;
16#0228:
newCodepoints[0] := 16#0045;
newCodepoints[1] := 16#0327;
numberOfCodepoints := 2;
16#0229:
newCodepoints[0] := 16#0065;
newCodepoints[1] := 16#0327;
numberOfCodepoints := 2;
16#022A:
newCodepoints[0] := 16#00D6;
newCodepoints[1] := 16#0304;
numberOfCodepoints := 2;
16#022B:
newCodepoints[0] := 16#00F6;
newCodepoints[1] := 16#0304;
numberOfCodepoints := 2;
16#022C:
newCodepoints[0] := 16#00D5;
newCodepoints[1] := 16#0304;
numberOfCodepoints := 2;
16#022D:
newCodepoints[0] := 16#00F5;
newCodepoints[1] := 16#0304;
numberOfCodepoints := 2;
16#022E:
newCodepoints[0] := 16#004F;
newCodepoints[1] := 16#0307;
numberOfCodepoints := 2;
16#022F:
newCodepoints[0] := 16#006F;
newCodepoints[1] := 16#0307;
numberOfCodepoints := 2;
16#0230:
newCodepoints[0] := 16#022E;
newCodepoints[1] := 16#0304;
numberOfCodepoints := 2;
16#0231:
newCodepoints[0] := 16#022F;
newCodepoints[1] := 16#0304;
numberOfCodepoints := 2;
16#0232:
newCodepoints[0] := 16#0059;
newCodepoints[1] := 16#0304;
numberOfCodepoints := 2;
16#0233:
newCodepoints[0] := 16#0079;
newCodepoints[1] := 16#0304;
numberOfCodepoints := 2;
16#0340:
newCodepoints[0] := 16#0300;
numberOfCodepoints := 1;
16#0341:
newCodepoints[0] := 16#0301;
numberOfCodepoints := 1;
16#0343:
newCodepoints[0] := 16#0313;
numberOfCodepoints := 1;
16#0344:
newCodepoints[0] := 16#0308;
newCodepoints[1] := 16#0301;
numberOfCodepoints := 2;
16#0374:
newCodepoints[0] := 16#02B9;
numberOfCodepoints := 1;
16#037E:
newCodepoints[0] := 16#003B;
numberOfCodepoints := 1;
16#0385:
newCodepoints[0] := 16#00A8;
newCodepoints[1] := 16#0301;
numberOfCodepoints := 2;
16#0386:
newCodepoints[0] := 16#0391;
newCodepoints[1] := 16#0301;
numberOfCodepoints := 2;
16#0387:
newCodepoints[0] := 16#00B7;
numberOfCodepoints := 1;
16#0388:
newCodepoints[0] := 16#0395;
newCodepoints[1] := 16#0301;
numberOfCodepoints := 2;
16#0389:
newCodepoints[0] := 16#0397;
newCodepoints[1] := 16#0301;
numberOfCodepoints := 2;
16#038A:
newCodepoints[0] := 16#0399;
newCodepoints[1] := 16#0301;
numberOfCodepoints := 2;
16#038C:
newCodepoints[0] := 16#039F;
newCodepoints[1] := 16#0301;
numberOfCodepoints := 2;
16#038E:
newCodepoints[0] := 16#03A5;
newCodepoints[1] := 16#0301;
numberOfCodepoints := 2;
16#038F:
newCodepoints[0] := 16#03A9;
newCodepoints[1] := 16#0301;
numberOfCodepoints := 2;
16#0390:
newCodepoints[0] := 16#03CA;
newCodepoints[1] := 16#0301;
numberOfCodepoints := 2;
16#03AA:
newCodepoints[0] := 16#0399;
newCodepoints[1] := 16#0308;
numberOfCodepoints := 2;
16#03AB:
newCodepoints[0] := 16#03A5;
newCodepoints[1] := 16#0308;
numberOfCodepoints := 2;
16#03AC:
newCodepoints[0] := 16#03B1;
newCodepoints[1] := 16#0301;
numberOfCodepoints := 2;
16#03AD:
newCodepoints[0] := 16#03B5;
newCodepoints[1] := 16#0301;
numberOfCodepoints := 2;
16#03AE:
newCodepoints[0] := 16#03B7;
newCodepoints[1] := 16#0301;
numberOfCodepoints := 2;
16#03AF:
newCodepoints[0] := 16#03B9;
newCodepoints[1] := 16#0301;
numberOfCodepoints := 2;
16#03B0:
newCodepoints[0] := 16#03CB;
newCodepoints[1] := 16#0301;
numberOfCodepoints := 2;
16#03CA:
newCodepoints[0] := 16#03B9;
newCodepoints[1] := 16#0308;
numberOfCodepoints := 2;
16#03CB:
newCodepoints[0] := 16#03C5;
newCodepoints[1] := 16#0308;
numberOfCodepoints := 2;
16#03CC:
newCodepoints[0] := 16#03BF;
newCodepoints[1] := 16#0301;
numberOfCodepoints := 2;
16#03CD:
newCodepoints[0] := 16#03C5;
newCodepoints[1] := 16#0301;
numberOfCodepoints := 2;
16#03CE:
newCodepoints[0] := 16#03C9;
newCodepoints[1] := 16#0301;
numberOfCodepoints := 2;
16#03D3:
newCodepoints[0] := 16#03D2;
newCodepoints[1] := 16#0301;
numberOfCodepoints := 2;
16#03D4:
newCodepoints[0] := 16#03D2;
newCodepoints[1] := 16#0308;
numberOfCodepoints := 2;
16#0400:
newCodepoints[0] := 16#0415;
newCodepoints[1] := 16#0300;
numberOfCodepoints := 2;
16#0401:
newCodepoints[0] := 16#0415;
newCodepoints[1] := 16#0308;
numberOfCodepoints := 2;
16#0403:
newCodepoints[0] := 16#0413;
newCodepoints[1] := 16#0301;
numberOfCodepoints := 2;
16#0407:
newCodepoints[0] := 16#0406;
newCodepoints[1] := 16#0308;
numberOfCodepoints := 2;
16#040C:
newCodepoints[0] := 16#041A;
newCodepoints[1] := 16#0301;
numberOfCodepoints := 2;
16#040D:
newCodepoints[0] := 16#0418;
newCodepoints[1] := 16#0300;
numberOfCodepoints := 2;
16#040E:
newCodepoints[0] := 16#0423;
newCodepoints[1] := 16#0306;
numberOfCodepoints := 2;
16#0419:
newCodepoints[0] := 16#0418;
newCodepoints[1] := 16#0306;
numberOfCodepoints := 2;
16#0439:
newCodepoints[0] := 16#0438;
newCodepoints[1] := 16#0306;
numberOfCodepoints := 2;
16#0450:
newCodepoints[0] := 16#0435;
newCodepoints[1] := 16#0300;
numberOfCodepoints := 2;
16#0451:
newCodepoints[0] := 16#0435;
newCodepoints[1] := 16#0308;
numberOfCodepoints := 2;
16#0453:
newCodepoints[0] := 16#0433;
newCodepoints[1] := 16#0301;
numberOfCodepoints := 2;
16#0457:
newCodepoints[0] := 16#0456;
newCodepoints[1] := 16#0308;
numberOfCodepoints := 2;
16#045C:
newCodepoints[0] := 16#043A;
newCodepoints[1] := 16#0301;
numberOfCodepoints := 2;
16#045D:
newCodepoints[0] := 16#0438;
newCodepoints[1] := 16#0300;
numberOfCodepoints := 2;
16#045E:
newCodepoints[0] := 16#0443;
newCodepoints[1] := 16#0306;
numberOfCodepoints := 2;
16#0476:
newCodepoints[0] := 16#0474;
newCodepoints[1] := 16#030F;
numberOfCodepoints := 2;
16#0477:
newCodepoints[0] := 16#0475;
newCodepoints[1] := 16#030F;
numberOfCodepoints := 2;
16#04C1:
newCodepoints[0] := 16#0416;
newCodepoints[1] := 16#0306;
numberOfCodepoints := 2;
16#04C2:
newCodepoints[0] := 16#0436;
newCodepoints[1] := 16#0306;
numberOfCodepoints := 2;
16#04D0:
newCodepoints[0] := 16#0410;
newCodepoints[1] := 16#0306;
numberOfCodepoints := 2;
16#04D1:
newCodepoints[0] := 16#0430;
newCodepoints[1] := 16#0306;
numberOfCodepoints := 2;
16#04D2:
newCodepoints[0] := 16#0410;
newCodepoints[1] := 16#0308;
numberOfCodepoints := 2;
16#04D3:
newCodepoints[0] := 16#0430;
newCodepoints[1] := 16#0308;
numberOfCodepoints := 2;
16#04D6:
newCodepoints[0] := 16#0415;
newCodepoints[1] := 16#0306;
numberOfCodepoints := 2;
16#04D7:
newCodepoints[0] := 16#0435;
newCodepoints[1] := 16#0306;
numberOfCodepoints := 2;
16#04DA:
newCodepoints[0] := 16#04D8;
newCodepoints[1] := 16#0308;
numberOfCodepoints := 2;
16#04DB:
newCodepoints[0] := 16#04D9;
newCodepoints[1] := 16#0308;
numberOfCodepoints := 2;
16#04DC:
newCodepoints[0] := 16#0416;
newCodepoints[1] := 16#0308;
numberOfCodepoints := 2;
16#04DD:
newCodepoints[0] := 16#0436;
newCodepoints[1] := 16#0308;
numberOfCodepoints := 2;
16#04DE:
newCodepoints[0] := 16#0417;
newCodepoints[1] := 16#0308;
numberOfCodepoints := 2;
16#04DF:
newCodepoints[0] := 16#0437;
newCodepoints[1] := 16#0308;
numberOfCodepoints := 2;
16#04E2:
newCodepoints[0] := 16#0418;
newCodepoints[1] := 16#0304;
numberOfCodepoints := 2;
16#04E3:
newCodepoints[0] := 16#0438;
newCodepoints[1] := 16#0304;
numberOfCodepoints := 2;
16#04E4:
newCodepoints[0] := 16#0418;
newCodepoints[1] := 16#0308;
numberOfCodepoints := 2;
16#04E5:
newCodepoints[0] := 16#0438;
newCodepoints[1] := 16#0308;
numberOfCodepoints := 2;
16#04E6:
newCodepoints[0] := 16#041E;
newCodepoints[1] := 16#0308;
numberOfCodepoints := 2;
16#04E7:
newCodepoints[0] := 16#043E;
newCodepoints[1] := 16#0308;
numberOfCodepoints := 2;
16#04EA:
newCodepoints[0] := 16#04E8;
newCodepoints[1] := 16#0308;
numberOfCodepoints := 2;
16#04EB:
newCodepoints[0] := 16#04E9;
newCodepoints[1] := 16#0308;
numberOfCodepoints := 2;
16#04EC:
newCodepoints[0] := 16#042D;
newCodepoints[1] := 16#0308;
numberOfCodepoints := 2;
16#04ED:
newCodepoints[0] := 16#044D;
newCodepoints[1] := 16#0308;
numberOfCodepoints := 2;
16#04EE:
newCodepoints[0] := 16#0423;
newCodepoints[1] := 16#0304;
numberOfCodepoints := 2;
16#04EF:
newCodepoints[0] := 16#0443;
newCodepoints[1] := 16#0304;
numberOfCodepoints := 2;
16#04F0:
newCodepoints[0] := 16#0423;
newCodepoints[1] := 16#0308;
numberOfCodepoints := 2;
16#04F1:
newCodepoints[0] := 16#0443;
newCodepoints[1] := 16#0308;
numberOfCodepoints := 2;
16#04F2:
newCodepoints[0] := 16#0423;
newCodepoints[1] := 16#030B;
numberOfCodepoints := 2;
16#04F3:
newCodepoints[0] := 16#0443;
newCodepoints[1] := 16#030B;
numberOfCodepoints := 2;
16#04F4:
newCodepoints[0] := 16#0427;
newCodepoints[1] := 16#0308;
numberOfCodepoints := 2;
16#04F5:
newCodepoints[0] := 16#0447;
newCodepoints[1] := 16#0308;
numberOfCodepoints := 2;
16#04F8:
newCodepoints[0] := 16#042B;
newCodepoints[1] := 16#0308;
numberOfCodepoints := 2;
16#04F9:
newCodepoints[0] := 16#044B;
newCodepoints[1] := 16#0308;
numberOfCodepoints := 2;
16#0622:
newCodepoints[0] := 16#0627;
newCodepoints[1] := 16#0653;
numberOfCodepoints := 2;
16#0623:
newCodepoints[0] := 16#0627;
newCodepoints[1] := 16#0654;
numberOfCodepoints := 2;
16#0624:
newCodepoints[0] := 16#0648;
newCodepoints[1] := 16#0654;
numberOfCodepoints := 2;
16#0625:
newCodepoints[0] := 16#0627;
newCodepoints[1] := 16#0655;
numberOfCodepoints := 2;
16#0626:
newCodepoints[0] := 16#064A;
newCodepoints[1] := 16#0654;
numberOfCodepoints := 2;
16#06C0:
newCodepoints[0] := 16#06D5;
newCodepoints[1] := 16#0654;
numberOfCodepoints := 2;
16#06C2:
newCodepoints[0] := 16#06C1;
newCodepoints[1] := 16#0654;
numberOfCodepoints := 2;
16#06D3:
newCodepoints[0] := 16#06D2;
newCodepoints[1] := 16#0654;
numberOfCodepoints := 2;
16#0929:
newCodepoints[0] := 16#0928;
newCodepoints[1] := 16#093C;
numberOfCodepoints := 2;
16#0931:
newCodepoints[0] := 16#0930;
newCodepoints[1] := 16#093C;
numberOfCodepoints := 2;
16#0934:
newCodepoints[0] := 16#0933;
newCodepoints[1] := 16#093C;
numberOfCodepoints := 2;
16#0958:
newCodepoints[0] := 16#0915;
newCodepoints[1] := 16#093C;
numberOfCodepoints := 2;
16#0959:
newCodepoints[0] := 16#0916;
newCodepoints[1] := 16#093C;
numberOfCodepoints := 2;
16#095A:
newCodepoints[0] := 16#0917;
newCodepoints[1] := 16#093C;
numberOfCodepoints := 2;
16#095B:
newCodepoints[0] := 16#091C;
newCodepoints[1] := 16#093C;
numberOfCodepoints := 2;
16#095C:
newCodepoints[0] := 16#0921;
newCodepoints[1] := 16#093C;
numberOfCodepoints := 2;
16#095D:
newCodepoints[0] := 16#0922;
newCodepoints[1] := 16#093C;
numberOfCodepoints := 2;
16#095E:
newCodepoints[0] := 16#092B;
newCodepoints[1] := 16#093C;
numberOfCodepoints := 2;
16#095F:
newCodepoints[0] := 16#092F;
newCodepoints[1] := 16#093C;
numberOfCodepoints := 2;
16#09CB:
newCodepoints[0] := 16#09C7;
newCodepoints[1] := 16#09BE;
numberOfCodepoints := 2;
16#09CC:
newCodepoints[0] := 16#09C7;
newCodepoints[1] := 16#09D7;
numberOfCodepoints := 2;
16#09DC:
newCodepoints[0] := 16#09A1;
newCodepoints[1] := 16#09BC;
numberOfCodepoints := 2;
16#09DD:
newCodepoints[0] := 16#09A2;
newCodepoints[1] := 16#09BC;
numberOfCodepoints := 2;
16#09DF:
newCodepoints[0] := 16#09AF;
newCodepoints[1] := 16#09BC;
numberOfCodepoints := 2;
16#0A33:
newCodepoints[0] := 16#0A32;
newCodepoints[1] := 16#0A3C;
numberOfCodepoints := 2;
16#0A36:
newCodepoints[0] := 16#0A38;
newCodepoints[1] := 16#0A3C;
numberOfCodepoints := 2;
16#0A59:
newCodepoints[0] := 16#0A16;
newCodepoints[1] := 16#0A3C;
numberOfCodepoints := 2;
16#0A5A:
newCodepoints[0] := 16#0A17;
newCodepoints[1] := 16#0A3C;
numberOfCodepoints := 2;
16#0A5B:
newCodepoints[0] := 16#0A1C;
newCodepoints[1] := 16#0A3C;
numberOfCodepoints := 2;
16#0A5E:
newCodepoints[0] := 16#0A2B;
newCodepoints[1] := 16#0A3C;
numberOfCodepoints := 2;
16#0B48:
newCodepoints[0] := 16#0B47;
newCodepoints[1] := 16#0B56;
numberOfCodepoints := 2;
16#0B4B:
newCodepoints[0] := 16#0B47;
newCodepoints[1] := 16#0B3E;
numberOfCodepoints := 2;
16#0B4C:
newCodepoints[0] := 16#0B47;
newCodepoints[1] := 16#0B57;
numberOfCodepoints := 2;
16#0B5C:
newCodepoints[0] := 16#0B21;
newCodepoints[1] := 16#0B3C;
numberOfCodepoints := 2;
16#0B5D:
newCodepoints[0] := 16#0B22;
newCodepoints[1] := 16#0B3C;
numberOfCodepoints := 2;
16#0B94:
newCodepoints[0] := 16#0B92;
newCodepoints[1] := 16#0BD7;
numberOfCodepoints := 2;
16#0BCA:
newCodepoints[0] := 16#0BC6;
newCodepoints[1] := 16#0BBE;
numberOfCodepoints := 2;
16#0BCB:
newCodepoints[0] := 16#0BC7;
newCodepoints[1] := 16#0BBE;
numberOfCodepoints := 2;
16#0BCC:
newCodepoints[0] := 16#0BC6;
newCodepoints[1] := 16#0BD7;
numberOfCodepoints := 2;
16#0C48:
newCodepoints[0] := 16#0C46;
newCodepoints[1] := 16#0C56;
numberOfCodepoints := 2;
16#0CC0:
newCodepoints[0] := 16#0CBF;
newCodepoints[1] := 16#0CD5;
numberOfCodepoints := 2;
16#0CC7:
newCodepoints[0] := 16#0CC6;
newCodepoints[1] := 16#0CD5;
numberOfCodepoints := 2;
16#0CC8:
newCodepoints[0] := 16#0CC6;
newCodepoints[1] := 16#0CD6;
numberOfCodepoints := 2;
16#0CCA:
newCodepoints[0] := 16#0CC6;
newCodepoints[1] := 16#0CC2;
numberOfCodepoints := 2;
16#0CCB:
newCodepoints[0] := 16#0CCA;
newCodepoints[1] := 16#0CD5;
numberOfCodepoints := 2;
16#0D4A:
newCodepoints[0] := 16#0D46;
newCodepoints[1] := 16#0D3E;
numberOfCodepoints := 2;
16#0D4B:
newCodepoints[0] := 16#0D47;
newCodepoints[1] := 16#0D3E;
numberOfCodepoints := 2;
16#0D4C:
newCodepoints[0] := 16#0D46;
newCodepoints[1] := 16#0D57;
numberOfCodepoints := 2;
16#0DDA:
newCodepoints[0] := 16#0DD9;
newCodepoints[1] := 16#0DCA;
numberOfCodepoints := 2;
16#0DDC:
newCodepoints[0] := 16#0DD9;
newCodepoints[1] := 16#0DCF;
numberOfCodepoints := 2;
16#0DDD:
newCodepoints[0] := 16#0DDC;
newCodepoints[1] := 16#0DCA;
numberOfCodepoints := 2;
16#0DDE:
newCodepoints[0] := 16#0DD9;
newCodepoints[1] := 16#0DDF;
numberOfCodepoints := 2;
16#0F43:
newCodepoints[0] := 16#0F42;
newCodepoints[1] := 16#0FB7;
numberOfCodepoints := 2;
16#0F4D:
newCodepoints[0] := 16#0F4C;
newCodepoints[1] := 16#0FB7;
numberOfCodepoints := 2;
16#0F52:
newCodepoints[0] := 16#0F51;
newCodepoints[1] := 16#0FB7;
numberOfCodepoints := 2;
16#0F57:
newCodepoints[0] := 16#0F56;
newCodepoints[1] := 16#0FB7;
numberOfCodepoints := 2;
16#0F5C:
newCodepoints[0] := 16#0F5B;
newCodepoints[1] := 16#0FB7;
numberOfCodepoints := 2;
16#0F69:
newCodepoints[0] := 16#0F40;
newCodepoints[1] := 16#0FB5;
numberOfCodepoints := 2;
16#0F73:
newCodepoints[0] := 16#0F71;
newCodepoints[1] := 16#0F72;
numberOfCodepoints := 2;
16#0F75:
newCodepoints[0] := 16#0F71;
newCodepoints[1] := 16#0F74;
numberOfCodepoints := 2;
16#0F76:
newCodepoints[0] := 16#0FB2;
newCodepoints[1] := 16#0F80;
numberOfCodepoints := 2;
16#0F78:
newCodepoints[0] := 16#0FB3;
newCodepoints[1] := 16#0F80;
numberOfCodepoints := 2;
16#0F81:
newCodepoints[0] := 16#0F71;
newCodepoints[1] := 16#0F80;
numberOfCodepoints := 2;
16#0F93:
newCodepoints[0] := 16#0F92;
newCodepoints[1] := 16#0FB7;
numberOfCodepoints := 2;
16#0F9D:
newCodepoints[0] := 16#0F9C;
newCodepoints[1] := 16#0FB7;
numberOfCodepoints := 2;
16#0FA2:
newCodepoints[0] := 16#0FA1;
newCodepoints[1] := 16#0FB7;
numberOfCodepoints := 2;
16#0FA7:
newCodepoints[0] := 16#0FA6;
newCodepoints[1] := 16#0FB7;
numberOfCodepoints := 2;
16#0FAC:
newCodepoints[0] := 16#0FAB;
newCodepoints[1] := 16#0FB7;
numberOfCodepoints := 2;
16#0FB9:
newCodepoints[0] := 16#0F90;
newCodepoints[1] := 16#0FB5;
numberOfCodepoints := 2;
16#1026:
newCodepoints[0] := 16#1025;
newCodepoints[1] := 16#102E;
numberOfCodepoints := 2;
16#1B06:
newCodepoints[0] := 16#1B05;
newCodepoints[1] := 16#1B35;
numberOfCodepoints := 2;
16#1B08:
newCodepoints[0] := 16#1B07;
newCodepoints[1] := 16#1B35;
numberOfCodepoints := 2;
16#1B0A:
newCodepoints[0] := 16#1B09;
newCodepoints[1] := 16#1B35;
numberOfCodepoints := 2;
16#1B0C:
newCodepoints[0] := 16#1B0B;
newCodepoints[1] := 16#1B35;
numberOfCodepoints := 2;
16#1B0E:
newCodepoints[0] := 16#1B0D;
newCodepoints[1] := 16#1B35;
numberOfCodepoints := 2;
16#1B12:
newCodepoints[0] := 16#1B11;
newCodepoints[1] := 16#1B35;
numberOfCodepoints := 2;
16#1B3B:
newCodepoints[0] := 16#1B3A;
newCodepoints[1] := 16#1B35;
numberOfCodepoints := 2;
16#1B3D:
newCodepoints[0] := 16#1B3C;
newCodepoints[1] := 16#1B35;
numberOfCodepoints := 2;
16#1B40:
newCodepoints[0] := 16#1B3E;
newCodepoints[1] := 16#1B35;
numberOfCodepoints := 2;
16#1B41:
newCodepoints[0] := 16#1B3F;
newCodepoints[1] := 16#1B35;
numberOfCodepoints := 2;
16#1B43:
newCodepoints[0] := 16#1B42;
newCodepoints[1] := 16#1B35;
numberOfCodepoints := 2;
16#1E00:
newCodepoints[0] := 16#0041;
newCodepoints[1] := 16#0325;
numberOfCodepoints := 2;
16#1E01:
newCodepoints[0] := 16#0061;
newCodepoints[1] := 16#0325;
numberOfCodepoints := 2;
16#1E02:
newCodepoints[0] := 16#0042;
newCodepoints[1] := 16#0307;
numberOfCodepoints := 2;
16#1E03:
newCodepoints[0] := 16#0062;
newCodepoints[1] := 16#0307;
numberOfCodepoints := 2;
16#1E04:
newCodepoints[0] := 16#0042;
newCodepoints[1] := 16#0323;
numberOfCodepoints := 2;
16#1E05:
newCodepoints[0] := 16#0062;
newCodepoints[1] := 16#0323;
numberOfCodepoints := 2;
16#1E06:
newCodepoints[0] := 16#0042;
newCodepoints[1] := 16#0331;
numberOfCodepoints := 2;
16#1E07:
newCodepoints[0] := 16#0062;
newCodepoints[1] := 16#0331;
numberOfCodepoints := 2;
16#1E08:
newCodepoints[0] := 16#00C7;
newCodepoints[1] := 16#0301;
numberOfCodepoints := 2;
16#1E09:
newCodepoints[0] := 16#00E7;
newCodepoints[1] := 16#0301;
numberOfCodepoints := 2;
16#1E0A:
newCodepoints[0] := 16#0044;
newCodepoints[1] := 16#0307;
numberOfCodepoints := 2;
16#1E0B:
newCodepoints[0] := 16#0064;
newCodepoints[1] := 16#0307;
numberOfCodepoints := 2;
16#1E0C:
newCodepoints[0] := 16#0044;
newCodepoints[1] := 16#0323;
numberOfCodepoints := 2;
16#1E0D:
newCodepoints[0] := 16#0064;
newCodepoints[1] := 16#0323;
numberOfCodepoints := 2;
16#1E0E:
newCodepoints[0] := 16#0044;
newCodepoints[1] := 16#0331;
numberOfCodepoints := 2;
16#1E0F:
newCodepoints[0] := 16#0064;
newCodepoints[1] := 16#0331;
numberOfCodepoints := 2;
16#1E10:
newCodepoints[0] := 16#0044;
newCodepoints[1] := 16#0327;
numberOfCodepoints := 2;
16#1E11:
newCodepoints[0] := 16#0064;
newCodepoints[1] := 16#0327;
numberOfCodepoints := 2;
16#1E12:
newCodepoints[0] := 16#0044;
newCodepoints[1] := 16#032D;
numberOfCodepoints := 2;
16#1E13:
newCodepoints[0] := 16#0064;
newCodepoints[1] := 16#032D;
numberOfCodepoints := 2;
16#1E14:
newCodepoints[0] := 16#0112;
newCodepoints[1] := 16#0300;
numberOfCodepoints := 2;
16#1E15:
newCodepoints[0] := 16#0113;
newCodepoints[1] := 16#0300;
numberOfCodepoints := 2;
16#1E16:
newCodepoints[0] := 16#0112;
newCodepoints[1] := 16#0301;
numberOfCodepoints := 2;
16#1E17:
newCodepoints[0] := 16#0113;
newCodepoints[1] := 16#0301;
numberOfCodepoints := 2;
16#1E18:
newCodepoints[0] := 16#0045;
newCodepoints[1] := 16#032D;
numberOfCodepoints := 2;
16#1E19:
newCodepoints[0] := 16#0065;
newCodepoints[1] := 16#032D;
numberOfCodepoints := 2;
16#1E1A:
newCodepoints[0] := 16#0045;
newCodepoints[1] := 16#0330;
numberOfCodepoints := 2;
16#1E1B:
newCodepoints[0] := 16#0065;
newCodepoints[1] := 16#0330;
numberOfCodepoints := 2;
16#1E1C:
newCodepoints[0] := 16#0228;
newCodepoints[1] := 16#0306;
numberOfCodepoints := 2;
16#1E1D:
newCodepoints[0] := 16#0229;
newCodepoints[1] := 16#0306;
numberOfCodepoints := 2;
16#1E1E:
newCodepoints[0] := 16#0046;
newCodepoints[1] := 16#0307;
numberOfCodepoints := 2;
16#1E1F:
newCodepoints[0] := 16#0066;
newCodepoints[1] := 16#0307;
numberOfCodepoints := 2;
16#1E20:
newCodepoints[0] := 16#0047;
newCodepoints[1] := 16#0304;
numberOfCodepoints := 2;
16#1E21:
newCodepoints[0] := 16#0067;
newCodepoints[1] := 16#0304;
numberOfCodepoints := 2;
16#1E22:
newCodepoints[0] := 16#0048;
newCodepoints[1] := 16#0307;
numberOfCodepoints := 2;
16#1E23:
newCodepoints[0] := 16#0068;
newCodepoints[1] := 16#0307;
numberOfCodepoints := 2;
16#1E24:
newCodepoints[0] := 16#0048;
newCodepoints[1] := 16#0323;
numberOfCodepoints := 2;
16#1E25:
newCodepoints[0] := 16#0068;
newCodepoints[1] := 16#0323;
numberOfCodepoints := 2;
16#1E26:
newCodepoints[0] := 16#0048;
newCodepoints[1] := 16#0308;
numberOfCodepoints := 2;
16#1E27:
newCodepoints[0] := 16#0068;
newCodepoints[1] := 16#0308;
numberOfCodepoints := 2;
16#1E28:
newCodepoints[0] := 16#0048;
newCodepoints[1] := 16#0327;
numberOfCodepoints := 2;
16#1E29:
newCodepoints[0] := 16#0068;
newCodepoints[1] := 16#0327;
numberOfCodepoints := 2;
16#1E2A:
newCodepoints[0] := 16#0048;
newCodepoints[1] := 16#032E;
numberOfCodepoints := 2;
16#1E2B:
newCodepoints[0] := 16#0068;
newCodepoints[1] := 16#032E;
numberOfCodepoints := 2;
16#1E2C:
newCodepoints[0] := 16#0049;
newCodepoints[1] := 16#0330;
numberOfCodepoints := 2;
16#1E2D:
newCodepoints[0] := 16#0069;
newCodepoints[1] := 16#0330;
numberOfCodepoints := 2;
16#1E2E:
newCodepoints[0] := 16#00CF;
newCodepoints[1] := 16#0301;
numberOfCodepoints := 2;
16#1E2F:
newCodepoints[0] := 16#00EF;
newCodepoints[1] := 16#0301;
numberOfCodepoints := 2;
16#1E30:
newCodepoints[0] := 16#004B;
newCodepoints[1] := 16#0301;
numberOfCodepoints := 2;
16#1E31:
newCodepoints[0] := 16#006B;
newCodepoints[1] := 16#0301;
numberOfCodepoints := 2;
16#1E32:
newCodepoints[0] := 16#004B;
newCodepoints[1] := 16#0323;
numberOfCodepoints := 2;
16#1E33:
newCodepoints[0] := 16#006B;
newCodepoints[1] := 16#0323;
numberOfCodepoints := 2;
16#1E34:
newCodepoints[0] := 16#004B;
newCodepoints[1] := 16#0331;
numberOfCodepoints := 2;
16#1E35:
newCodepoints[0] := 16#006B;
newCodepoints[1] := 16#0331;
numberOfCodepoints := 2;
16#1E36:
newCodepoints[0] := 16#004C;
newCodepoints[1] := 16#0323;
numberOfCodepoints := 2;
16#1E37:
newCodepoints[0] := 16#006C;
newCodepoints[1] := 16#0323;
numberOfCodepoints := 2;
16#1E38:
newCodepoints[0] := 16#1E36;
newCodepoints[1] := 16#0304;
numberOfCodepoints := 2;
16#1E39:
newCodepoints[0] := 16#1E37;
newCodepoints[1] := 16#0304;
numberOfCodepoints := 2;
16#1E3A:
newCodepoints[0] := 16#004C;
newCodepoints[1] := 16#0331;
numberOfCodepoints := 2;
16#1E3B:
newCodepoints[0] := 16#006C;
newCodepoints[1] := 16#0331;
numberOfCodepoints := 2;
16#1E3C:
newCodepoints[0] := 16#004C;
newCodepoints[1] := 16#032D;
numberOfCodepoints := 2;
16#1E3D:
newCodepoints[0] := 16#006C;
newCodepoints[1] := 16#032D;
numberOfCodepoints := 2;
16#1E3E:
newCodepoints[0] := 16#004D;
newCodepoints[1] := 16#0301;
numberOfCodepoints := 2;
16#1E3F:
newCodepoints[0] := 16#006D;
newCodepoints[1] := 16#0301;
numberOfCodepoints := 2;
16#1E40:
newCodepoints[0] := 16#004D;
newCodepoints[1] := 16#0307;
numberOfCodepoints := 2;
16#1E41:
newCodepoints[0] := 16#006D;
newCodepoints[1] := 16#0307;
numberOfCodepoints := 2;
16#1E42:
newCodepoints[0] := 16#004D;
newCodepoints[1] := 16#0323;
numberOfCodepoints := 2;
16#1E43:
newCodepoints[0] := 16#006D;
newCodepoints[1] := 16#0323;
numberOfCodepoints := 2;
16#1E44:
newCodepoints[0] := 16#004E;
newCodepoints[1] := 16#0307;
numberOfCodepoints := 2;
16#1E45:
newCodepoints[0] := 16#006E;
newCodepoints[1] := 16#0307;
numberOfCodepoints := 2;
16#1E46:
newCodepoints[0] := 16#004E;
newCodepoints[1] := 16#0323;
numberOfCodepoints := 2;
16#1E47:
newCodepoints[0] := 16#006E;
newCodepoints[1] := 16#0323;
numberOfCodepoints := 2;
16#1E48:
newCodepoints[0] := 16#004E;
newCodepoints[1] := 16#0331;
numberOfCodepoints := 2;
16#1E49:
newCodepoints[0] := 16#006E;
newCodepoints[1] := 16#0331;
numberOfCodepoints := 2;
16#1E4A:
newCodepoints[0] := 16#004E;
newCodepoints[1] := 16#032D;
numberOfCodepoints := 2;
16#1E4B:
newCodepoints[0] := 16#006E;
newCodepoints[1] := 16#032D;
numberOfCodepoints := 2;
16#1E4C:
newCodepoints[0] := 16#00D5;
newCodepoints[1] := 16#0301;
numberOfCodepoints := 2;
16#1E4D:
newCodepoints[0] := 16#00F5;
newCodepoints[1] := 16#0301;
numberOfCodepoints := 2;
16#1E4E:
newCodepoints[0] := 16#00D5;
newCodepoints[1] := 16#0308;
numberOfCodepoints := 2;
16#1E4F:
newCodepoints[0] := 16#00F5;
newCodepoints[1] := 16#0308;
numberOfCodepoints := 2;
16#1E50:
newCodepoints[0] := 16#014C;
newCodepoints[1] := 16#0300;
numberOfCodepoints := 2;
16#1E51:
newCodepoints[0] := 16#014D;
newCodepoints[1] := 16#0300;
numberOfCodepoints := 2;
16#1E52:
newCodepoints[0] := 16#014C;
newCodepoints[1] := 16#0301;
numberOfCodepoints := 2;
16#1E53:
newCodepoints[0] := 16#014D;
newCodepoints[1] := 16#0301;
numberOfCodepoints := 2;
16#1E54:
newCodepoints[0] := 16#0050;
newCodepoints[1] := 16#0301;
numberOfCodepoints := 2;
16#1E55:
newCodepoints[0] := 16#0070;
newCodepoints[1] := 16#0301;
numberOfCodepoints := 2;
16#1E56:
newCodepoints[0] := 16#0050;
newCodepoints[1] := 16#0307;
numberOfCodepoints := 2;
16#1E57:
newCodepoints[0] := 16#0070;
newCodepoints[1] := 16#0307;
numberOfCodepoints := 2;
16#1E58:
newCodepoints[0] := 16#0052;
newCodepoints[1] := 16#0307;
numberOfCodepoints := 2;
16#1E59:
newCodepoints[0] := 16#0072;
newCodepoints[1] := 16#0307;
numberOfCodepoints := 2;
16#1E5A:
newCodepoints[0] := 16#0052;
newCodepoints[1] := 16#0323;
numberOfCodepoints := 2;
16#1E5B:
newCodepoints[0] := 16#0072;
newCodepoints[1] := 16#0323;
numberOfCodepoints := 2;
16#1E5C:
newCodepoints[0] := 16#1E5A;
newCodepoints[1] := 16#0304;
numberOfCodepoints := 2;
16#1E5D:
newCodepoints[0] := 16#1E5B;
newCodepoints[1] := 16#0304;
numberOfCodepoints := 2;
16#1E5E:
newCodepoints[0] := 16#0052;
newCodepoints[1] := 16#0331;
numberOfCodepoints := 2;
16#1E5F:
newCodepoints[0] := 16#0072;
newCodepoints[1] := 16#0331;
numberOfCodepoints := 2;
16#1E60:
newCodepoints[0] := 16#0053;
newCodepoints[1] := 16#0307;
numberOfCodepoints := 2;
16#1E61:
newCodepoints[0] := 16#0073;
newCodepoints[1] := 16#0307;
numberOfCodepoints := 2;
16#1E62:
newCodepoints[0] := 16#0053;
newCodepoints[1] := 16#0323;
numberOfCodepoints := 2;
16#1E63:
newCodepoints[0] := 16#0073;
newCodepoints[1] := 16#0323;
numberOfCodepoints := 2;
16#1E64:
newCodepoints[0] := 16#015A;
newCodepoints[1] := 16#0307;
numberOfCodepoints := 2;
16#1E65:
newCodepoints[0] := 16#015B;
newCodepoints[1] := 16#0307;
numberOfCodepoints := 2;
16#1E66:
newCodepoints[0] := 16#0160;
newCodepoints[1] := 16#0307;
numberOfCodepoints := 2;
16#1E67:
newCodepoints[0] := 16#0161;
newCodepoints[1] := 16#0307;
numberOfCodepoints := 2;
16#1E68:
newCodepoints[0] := 16#1E62;
newCodepoints[1] := 16#0307;
numberOfCodepoints := 2;
16#1E69:
newCodepoints[0] := 16#1E63;
newCodepoints[1] := 16#0307;
numberOfCodepoints := 2;
16#1E6A:
newCodepoints[0] := 16#0054;
newCodepoints[1] := 16#0307;
numberOfCodepoints := 2;
16#1E6B:
newCodepoints[0] := 16#0074;
newCodepoints[1] := 16#0307;
numberOfCodepoints := 2;
16#1E6C:
newCodepoints[0] := 16#0054;
newCodepoints[1] := 16#0323;
numberOfCodepoints := 2;
16#1E6D:
newCodepoints[0] := 16#0074;
newCodepoints[1] := 16#0323;
numberOfCodepoints := 2;
16#1E6E:
newCodepoints[0] := 16#0054;
newCodepoints[1] := 16#0331;
numberOfCodepoints := 2;
16#1E6F:
newCodepoints[0] := 16#0074;
newCodepoints[1] := 16#0331;
numberOfCodepoints := 2;
16#1E70:
newCodepoints[0] := 16#0054;
newCodepoints[1] := 16#032D;
numberOfCodepoints := 2;
16#1E71:
newCodepoints[0] := 16#0074;
newCodepoints[1] := 16#032D;
numberOfCodepoints := 2;
16#1E72:
newCodepoints[0] := 16#0055;
newCodepoints[1] := 16#0324;
numberOfCodepoints := 2;
16#1E73:
newCodepoints[0] := 16#0075;
newCodepoints[1] := 16#0324;
numberOfCodepoints := 2;
16#1E74:
newCodepoints[0] := 16#0055;
newCodepoints[1] := 16#0330;
numberOfCodepoints := 2;
16#1E75:
newCodepoints[0] := 16#0075;
newCodepoints[1] := 16#0330;
numberOfCodepoints := 2;
16#1E76:
newCodepoints[0] := 16#0055;
newCodepoints[1] := 16#032D;
numberOfCodepoints := 2;
16#1E77:
newCodepoints[0] := 16#0075;
newCodepoints[1] := 16#032D;
numberOfCodepoints := 2;
16#1E78:
newCodepoints[0] := 16#0168;
newCodepoints[1] := 16#0301;
numberOfCodepoints := 2;
16#1E79:
newCodepoints[0] := 16#0169;
newCodepoints[1] := 16#0301;
numberOfCodepoints := 2;
16#1E7A:
newCodepoints[0] := 16#016A;
newCodepoints[1] := 16#0308;
numberOfCodepoints := 2;
16#1E7B:
newCodepoints[0] := 16#016B;
newCodepoints[1] := 16#0308;
numberOfCodepoints := 2;
16#1E7C:
newCodepoints[0] := 16#0056;
newCodepoints[1] := 16#0303;
numberOfCodepoints := 2;
16#1E7D:
newCodepoints[0] := 16#0076;
newCodepoints[1] := 16#0303;
numberOfCodepoints := 2;
16#1E7E:
newCodepoints[0] := 16#0056;
newCodepoints[1] := 16#0323;
numberOfCodepoints := 2;
16#1E7F:
newCodepoints[0] := 16#0076;
newCodepoints[1] := 16#0323;
numberOfCodepoints := 2;
16#1E80:
newCodepoints[0] := 16#0057;
newCodepoints[1] := 16#0300;
numberOfCodepoints := 2;
16#1E81:
newCodepoints[0] := 16#0077;
newCodepoints[1] := 16#0300;
numberOfCodepoints := 2;
16#1E82:
newCodepoints[0] := 16#0057;
newCodepoints[1] := 16#0301;
numberOfCodepoints := 2;
16#1E83:
newCodepoints[0] := 16#0077;
newCodepoints[1] := 16#0301;
numberOfCodepoints := 2;
16#1E84:
newCodepoints[0] := 16#0057;
newCodepoints[1] := 16#0308;
numberOfCodepoints := 2;
16#1E85:
newCodepoints[0] := 16#0077;
newCodepoints[1] := 16#0308;
numberOfCodepoints := 2;
16#1E86:
newCodepoints[0] := 16#0057;
newCodepoints[1] := 16#0307;
numberOfCodepoints := 2;
16#1E87:
newCodepoints[0] := 16#0077;
newCodepoints[1] := 16#0307;
numberOfCodepoints := 2;
16#1E88:
newCodepoints[0] := 16#0057;
newCodepoints[1] := 16#0323;
numberOfCodepoints := 2;
16#1E89:
newCodepoints[0] := 16#0077;
newCodepoints[1] := 16#0323;
numberOfCodepoints := 2;
16#1E8A:
newCodepoints[0] := 16#0058;
newCodepoints[1] := 16#0307;
numberOfCodepoints := 2;
16#1E8B:
newCodepoints[0] := 16#0078;
newCodepoints[1] := 16#0307;
numberOfCodepoints := 2;
16#1E8C:
newCodepoints[0] := 16#0058;
newCodepoints[1] := 16#0308;
numberOfCodepoints := 2;
16#1E8D:
newCodepoints[0] := 16#0078;
newCodepoints[1] := 16#0308;
numberOfCodepoints := 2;
16#1E8E:
newCodepoints[0] := 16#0059;
newCodepoints[1] := 16#0307;
numberOfCodepoints := 2;
16#1E8F:
newCodepoints[0] := 16#0079;
newCodepoints[1] := 16#0307;
numberOfCodepoints := 2;
16#1E90:
newCodepoints[0] := 16#005A;
newCodepoints[1] := 16#0302;
numberOfCodepoints := 2;
16#1E91:
newCodepoints[0] := 16#007A;
newCodepoints[1] := 16#0302;
numberOfCodepoints := 2;
16#1E92:
newCodepoints[0] := 16#005A;
newCodepoints[1] := 16#0323;
numberOfCodepoints := 2;
16#1E93:
newCodepoints[0] := 16#007A;
newCodepoints[1] := 16#0323;
numberOfCodepoints := 2;
16#1E94:
newCodepoints[0] := 16#005A;
newCodepoints[1] := 16#0331;
numberOfCodepoints := 2;
16#1E95:
newCodepoints[0] := 16#007A;
newCodepoints[1] := 16#0331;
numberOfCodepoints := 2;
16#1E96:
newCodepoints[0] := 16#0068;
newCodepoints[1] := 16#0331;
numberOfCodepoints := 2;
16#1E97:
newCodepoints[0] := 16#0074;
newCodepoints[1] := 16#0308;
numberOfCodepoints := 2;
16#1E98:
newCodepoints[0] := 16#0077;
newCodepoints[1] := 16#030A;
numberOfCodepoints := 2;
16#1E99:
newCodepoints[0] := 16#0079;
newCodepoints[1] := 16#030A;
numberOfCodepoints := 2;
16#1E9B:
newCodepoints[0] := 16#017F;
newCodepoints[1] := 16#0307;
numberOfCodepoints := 2;
16#1EA0:
newCodepoints[0] := 16#0041;
newCodepoints[1] := 16#0323;
numberOfCodepoints := 2;
16#1EA1:
newCodepoints[0] := 16#0061;
newCodepoints[1] := 16#0323;
numberOfCodepoints := 2;
16#1EA2:
newCodepoints[0] := 16#0041;
newCodepoints[1] := 16#0309;
numberOfCodepoints := 2;
16#1EA3:
newCodepoints[0] := 16#0061;
newCodepoints[1] := 16#0309;
numberOfCodepoints := 2;
16#1EA4:
newCodepoints[0] := 16#00C2;
newCodepoints[1] := 16#0301;
numberOfCodepoints := 2;
16#1EA5:
newCodepoints[0] := 16#00E2;
newCodepoints[1] := 16#0301;
numberOfCodepoints := 2;
16#1EA6:
newCodepoints[0] := 16#00C2;
newCodepoints[1] := 16#0300;
numberOfCodepoints := 2;
16#1EA7:
newCodepoints[0] := 16#00E2;
newCodepoints[1] := 16#0300;
numberOfCodepoints := 2;
16#1EA8:
newCodepoints[0] := 16#00C2;
newCodepoints[1] := 16#0309;
numberOfCodepoints := 2;
16#1EA9:
newCodepoints[0] := 16#00E2;
newCodepoints[1] := 16#0309;
numberOfCodepoints := 2;
16#1EAA:
newCodepoints[0] := 16#00C2;
newCodepoints[1] := 16#0303;
numberOfCodepoints := 2;
16#1EAB:
newCodepoints[0] := 16#00E2;
newCodepoints[1] := 16#0303;
numberOfCodepoints := 2;
16#1EAC:
newCodepoints[0] := 16#1EA0;
newCodepoints[1] := 16#0302;
numberOfCodepoints := 2;
16#1EAD:
newCodepoints[0] := 16#1EA1;
newCodepoints[1] := 16#0302;
numberOfCodepoints := 2;
16#1EAE:
newCodepoints[0] := 16#0102;
newCodepoints[1] := 16#0301;
numberOfCodepoints := 2;
16#1EAF:
newCodepoints[0] := 16#0103;
newCodepoints[1] := 16#0301;
numberOfCodepoints := 2;
16#1EB0:
newCodepoints[0] := 16#0102;
newCodepoints[1] := 16#0300;
numberOfCodepoints := 2;
16#1EB1:
newCodepoints[0] := 16#0103;
newCodepoints[1] := 16#0300;
numberOfCodepoints := 2;
16#1EB2:
newCodepoints[0] := 16#0102;
newCodepoints[1] := 16#0309;
numberOfCodepoints := 2;
16#1EB3:
newCodepoints[0] := 16#0103;
newCodepoints[1] := 16#0309;
numberOfCodepoints := 2;
16#1EB4:
newCodepoints[0] := 16#0102;
newCodepoints[1] := 16#0303;
numberOfCodepoints := 2;
16#1EB5:
newCodepoints[0] := 16#0103;
newCodepoints[1] := 16#0303;
numberOfCodepoints := 2;
16#1EB6:
newCodepoints[0] := 16#1EA0;
newCodepoints[1] := 16#0306;
numberOfCodepoints := 2;
16#1EB7:
newCodepoints[0] := 16#1EA1;
newCodepoints[1] := 16#0306;
numberOfCodepoints := 2;
16#1EB8:
newCodepoints[0] := 16#0045;
newCodepoints[1] := 16#0323;
numberOfCodepoints := 2;
16#1EB9:
newCodepoints[0] := 16#0065;
newCodepoints[1] := 16#0323;
numberOfCodepoints := 2;
16#1EBA:
newCodepoints[0] := 16#0045;
newCodepoints[1] := 16#0309;
numberOfCodepoints := 2;
16#1EBB:
newCodepoints[0] := 16#0065;
newCodepoints[1] := 16#0309;
numberOfCodepoints := 2;
16#1EBC:
newCodepoints[0] := 16#0045;
newCodepoints[1] := 16#0303;
numberOfCodepoints := 2;
16#1EBD:
newCodepoints[0] := 16#0065;
newCodepoints[1] := 16#0303;
numberOfCodepoints := 2;
16#1EBE:
newCodepoints[0] := 16#00CA;
newCodepoints[1] := 16#0301;
numberOfCodepoints := 2;
16#1EBF:
newCodepoints[0] := 16#00EA;
newCodepoints[1] := 16#0301;
numberOfCodepoints := 2;
16#1EC0:
newCodepoints[0] := 16#00CA;
newCodepoints[1] := 16#0300;
numberOfCodepoints := 2;
16#1EC1:
newCodepoints[0] := 16#00EA;
newCodepoints[1] := 16#0300;
numberOfCodepoints := 2;
16#1EC2:
newCodepoints[0] := 16#00CA;
newCodepoints[1] := 16#0309;
numberOfCodepoints := 2;
16#1EC3:
newCodepoints[0] := 16#00EA;
newCodepoints[1] := 16#0309;
numberOfCodepoints := 2;
16#1EC4:
newCodepoints[0] := 16#00CA;
newCodepoints[1] := 16#0303;
numberOfCodepoints := 2;
16#1EC5:
newCodepoints[0] := 16#00EA;
newCodepoints[1] := 16#0303;
numberOfCodepoints := 2;
16#1EC6:
newCodepoints[0] := 16#1EB8;
newCodepoints[1] := 16#0302;
numberOfCodepoints := 2;
16#1EC7:
newCodepoints[0] := 16#1EB9;
newCodepoints[1] := 16#0302;
numberOfCodepoints := 2;
16#1EC8:
newCodepoints[0] := 16#0049;
newCodepoints[1] := 16#0309;
numberOfCodepoints := 2;
16#1EC9:
newCodepoints[0] := 16#0069;
newCodepoints[1] := 16#0309;
numberOfCodepoints := 2;
16#1ECA:
newCodepoints[0] := 16#0049;
newCodepoints[1] := 16#0323;
numberOfCodepoints := 2;
16#1ECB:
newCodepoints[0] := 16#0069;
newCodepoints[1] := 16#0323;
numberOfCodepoints := 2;
16#1ECC:
newCodepoints[0] := 16#004F;
newCodepoints[1] := 16#0323;
numberOfCodepoints := 2;
16#1ECD:
newCodepoints[0] := 16#006F;
newCodepoints[1] := 16#0323;
numberOfCodepoints := 2;
16#1ECE:
newCodepoints[0] := 16#004F;
newCodepoints[1] := 16#0309;
numberOfCodepoints := 2;
16#1ECF:
newCodepoints[0] := 16#006F;
newCodepoints[1] := 16#0309;
numberOfCodepoints := 2;
16#1ED0:
newCodepoints[0] := 16#00D4;
newCodepoints[1] := 16#0301;
numberOfCodepoints := 2;
16#1ED1:
newCodepoints[0] := 16#00F4;
newCodepoints[1] := 16#0301;
numberOfCodepoints := 2;
16#1ED2:
newCodepoints[0] := 16#00D4;
newCodepoints[1] := 16#0300;
numberOfCodepoints := 2;
16#1ED3:
newCodepoints[0] := 16#00F4;
newCodepoints[1] := 16#0300;
numberOfCodepoints := 2;
16#1ED4:
newCodepoints[0] := 16#00D4;
newCodepoints[1] := 16#0309;
numberOfCodepoints := 2;
16#1ED5:
newCodepoints[0] := 16#00F4;
newCodepoints[1] := 16#0309;
numberOfCodepoints := 2;
16#1ED6:
newCodepoints[0] := 16#00D4;
newCodepoints[1] := 16#0303;
numberOfCodepoints := 2;
16#1ED7:
newCodepoints[0] := 16#00F4;
newCodepoints[1] := 16#0303;
numberOfCodepoints := 2;
16#1ED8:
newCodepoints[0] := 16#1ECC;
newCodepoints[1] := 16#0302;
numberOfCodepoints := 2;
16#1ED9:
newCodepoints[0] := 16#1ECD;
newCodepoints[1] := 16#0302;
numberOfCodepoints := 2;
16#1EDA:
newCodepoints[0] := 16#01A0;
newCodepoints[1] := 16#0301;
numberOfCodepoints := 2;
16#1EDB:
newCodepoints[0] := 16#01A1;
newCodepoints[1] := 16#0301;
numberOfCodepoints := 2;
16#1EDC:
newCodepoints[0] := 16#01A0;
newCodepoints[1] := 16#0300;
numberOfCodepoints := 2;
16#1EDD:
newCodepoints[0] := 16#01A1;
newCodepoints[1] := 16#0300;
numberOfCodepoints := 2;
16#1EDE:
newCodepoints[0] := 16#01A0;
newCodepoints[1] := 16#0309;
numberOfCodepoints := 2;
16#1EDF:
newCodepoints[0] := 16#01A1;
newCodepoints[1] := 16#0309;
numberOfCodepoints := 2;
16#1EE0:
newCodepoints[0] := 16#01A0;
newCodepoints[1] := 16#0303;
numberOfCodepoints := 2;
16#1EE1:
newCodepoints[0] := 16#01A1;
newCodepoints[1] := 16#0303;
numberOfCodepoints := 2;
16#1EE2:
newCodepoints[0] := 16#01A0;
newCodepoints[1] := 16#0323;
numberOfCodepoints := 2;
16#1EE3:
newCodepoints[0] := 16#01A1;
newCodepoints[1] := 16#0323;
numberOfCodepoints := 2;
16#1EE4:
newCodepoints[0] := 16#0055;
newCodepoints[1] := 16#0323;
numberOfCodepoints := 2;
16#1EE5:
newCodepoints[0] := 16#0075;
newCodepoints[1] := 16#0323;
numberOfCodepoints := 2;
16#1EE6:
newCodepoints[0] := 16#0055;
newCodepoints[1] := 16#0309;
numberOfCodepoints := 2;
16#1EE7:
newCodepoints[0] := 16#0075;
newCodepoints[1] := 16#0309;
numberOfCodepoints := 2;
16#1EE8:
newCodepoints[0] := 16#01AF;
newCodepoints[1] := 16#0301;
numberOfCodepoints := 2;
16#1EE9:
newCodepoints[0] := 16#01B0;
newCodepoints[1] := 16#0301;
numberOfCodepoints := 2;
16#1EEA:
newCodepoints[0] := 16#01AF;
newCodepoints[1] := 16#0300;
numberOfCodepoints := 2;
16#1EEB:
newCodepoints[0] := 16#01B0;
newCodepoints[1] := 16#0300;
numberOfCodepoints := 2;
16#1EEC:
newCodepoints[0] := 16#01AF;
newCodepoints[1] := 16#0309;
numberOfCodepoints := 2;
16#1EED:
newCodepoints[0] := 16#01B0;
newCodepoints[1] := 16#0309;
numberOfCodepoints := 2;
16#1EEE:
newCodepoints[0] := 16#01AF;
newCodepoints[1] := 16#0303;
numberOfCodepoints := 2;
16#1EEF:
newCodepoints[0] := 16#01B0;
newCodepoints[1] := 16#0303;
numberOfCodepoints := 2;
16#1EF0:
newCodepoints[0] := 16#01AF;
newCodepoints[1] := 16#0323;
numberOfCodepoints := 2;
16#1EF1:
newCodepoints[0] := 16#01B0;
newCodepoints[1] := 16#0323;
numberOfCodepoints := 2;
16#1EF2:
newCodepoints[0] := 16#0059;
newCodepoints[1] := 16#0300;
numberOfCodepoints := 2;
16#1EF3:
newCodepoints[0] := 16#0079;
newCodepoints[1] := 16#0300;
numberOfCodepoints := 2;
16#1EF4:
newCodepoints[0] := 16#0059;
newCodepoints[1] := 16#0323;
numberOfCodepoints := 2;
16#1EF5:
newCodepoints[0] := 16#0079;
newCodepoints[1] := 16#0323;
numberOfCodepoints := 2;
16#1EF6:
newCodepoints[0] := 16#0059;
newCodepoints[1] := 16#0309;
numberOfCodepoints := 2;
16#1EF7:
newCodepoints[0] := 16#0079;
newCodepoints[1] := 16#0309;
numberOfCodepoints := 2;
16#1EF8:
newCodepoints[0] := 16#0059;
newCodepoints[1] := 16#0303;
numberOfCodepoints := 2;
16#1EF9:
newCodepoints[0] := 16#0079;
newCodepoints[1] := 16#0303;
numberOfCodepoints := 2;
16#1F00:
newCodepoints[0] := 16#03B1;
newCodepoints[1] := 16#0313;
numberOfCodepoints := 2;
16#1F01:
newCodepoints[0] := 16#03B1;
newCodepoints[1] := 16#0314;
numberOfCodepoints := 2;
16#1F02:
newCodepoints[0] := 16#1F00;
newCodepoints[1] := 16#0300;
numberOfCodepoints := 2;
16#1F03:
newCodepoints[0] := 16#1F01;
newCodepoints[1] := 16#0300;
numberOfCodepoints := 2;
16#1F04:
newCodepoints[0] := 16#1F00;
newCodepoints[1] := 16#0301;
numberOfCodepoints := 2;
16#1F05:
newCodepoints[0] := 16#1F01;
newCodepoints[1] := 16#0301;
numberOfCodepoints := 2;
16#1F06:
newCodepoints[0] := 16#1F00;
newCodepoints[1] := 16#0342;
numberOfCodepoints := 2;
16#1F07:
newCodepoints[0] := 16#1F01;
newCodepoints[1] := 16#0342;
numberOfCodepoints := 2;
16#1F08:
newCodepoints[0] := 16#0391;
newCodepoints[1] := 16#0313;
numberOfCodepoints := 2;
16#1F09:
newCodepoints[0] := 16#0391;
newCodepoints[1] := 16#0314;
numberOfCodepoints := 2;
16#1F0A:
newCodepoints[0] := 16#1F08;
newCodepoints[1] := 16#0300;
numberOfCodepoints := 2;
16#1F0B:
newCodepoints[0] := 16#1F09;
newCodepoints[1] := 16#0300;
numberOfCodepoints := 2;
16#1F0C:
newCodepoints[0] := 16#1F08;
newCodepoints[1] := 16#0301;
numberOfCodepoints := 2;
16#1F0D:
newCodepoints[0] := 16#1F09;
newCodepoints[1] := 16#0301;
numberOfCodepoints := 2;
16#1F0E:
newCodepoints[0] := 16#1F08;
newCodepoints[1] := 16#0342;
numberOfCodepoints := 2;
16#1F0F:
newCodepoints[0] := 16#1F09;
newCodepoints[1] := 16#0342;
numberOfCodepoints := 2;
16#1F10:
newCodepoints[0] := 16#03B5;
newCodepoints[1] := 16#0313;
numberOfCodepoints := 2;
16#1F11:
newCodepoints[0] := 16#03B5;
newCodepoints[1] := 16#0314;
numberOfCodepoints := 2;
16#1F12:
newCodepoints[0] := 16#1F10;
newCodepoints[1] := 16#0300;
numberOfCodepoints := 2;
16#1F13:
newCodepoints[0] := 16#1F11;
newCodepoints[1] := 16#0300;
numberOfCodepoints := 2;
16#1F14:
newCodepoints[0] := 16#1F10;
newCodepoints[1] := 16#0301;
numberOfCodepoints := 2;
16#1F15:
newCodepoints[0] := 16#1F11;
newCodepoints[1] := 16#0301;
numberOfCodepoints := 2;
16#1F18:
newCodepoints[0] := 16#0395;
newCodepoints[1] := 16#0313;
numberOfCodepoints := 2;
16#1F19:
newCodepoints[0] := 16#0395;
newCodepoints[1] := 16#0314;
numberOfCodepoints := 2;
16#1F1A:
newCodepoints[0] := 16#1F18;
newCodepoints[1] := 16#0300;
numberOfCodepoints := 2;
16#1F1B:
newCodepoints[0] := 16#1F19;
newCodepoints[1] := 16#0300;
numberOfCodepoints := 2;
16#1F1C:
newCodepoints[0] := 16#1F18;
newCodepoints[1] := 16#0301;
numberOfCodepoints := 2;
16#1F1D:
newCodepoints[0] := 16#1F19;
newCodepoints[1] := 16#0301;
numberOfCodepoints := 2;
16#1F20:
newCodepoints[0] := 16#03B7;
newCodepoints[1] := 16#0313;
numberOfCodepoints := 2;
16#1F21:
newCodepoints[0] := 16#03B7;
newCodepoints[1] := 16#0314;
numberOfCodepoints := 2;
16#1F22:
newCodepoints[0] := 16#1F20;
newCodepoints[1] := 16#0300;
numberOfCodepoints := 2;
16#1F23:
newCodepoints[0] := 16#1F21;
newCodepoints[1] := 16#0300;
numberOfCodepoints := 2;
16#1F24:
newCodepoints[0] := 16#1F20;
newCodepoints[1] := 16#0301;
numberOfCodepoints := 2;
16#1F25:
newCodepoints[0] := 16#1F21;
newCodepoints[1] := 16#0301;
numberOfCodepoints := 2;
16#1F26:
newCodepoints[0] := 16#1F20;
newCodepoints[1] := 16#0342;
numberOfCodepoints := 2;
16#1F27:
newCodepoints[0] := 16#1F21;
newCodepoints[1] := 16#0342;
numberOfCodepoints := 2;
16#1F28:
newCodepoints[0] := 16#0397;
newCodepoints[1] := 16#0313;
numberOfCodepoints := 2;
16#1F29:
newCodepoints[0] := 16#0397;
newCodepoints[1] := 16#0314;
numberOfCodepoints := 2;
16#1F2A:
newCodepoints[0] := 16#1F28;
newCodepoints[1] := 16#0300;
numberOfCodepoints := 2;
16#1F2B:
newCodepoints[0] := 16#1F29;
newCodepoints[1] := 16#0300;
numberOfCodepoints := 2;
16#1F2C:
newCodepoints[0] := 16#1F28;
newCodepoints[1] := 16#0301;
numberOfCodepoints := 2;
16#1F2D:
newCodepoints[0] := 16#1F29;
newCodepoints[1] := 16#0301;
numberOfCodepoints := 2;
16#1F2E:
newCodepoints[0] := 16#1F28;
newCodepoints[1] := 16#0342;
numberOfCodepoints := 2;
16#1F2F:
newCodepoints[0] := 16#1F29;
newCodepoints[1] := 16#0342;
numberOfCodepoints := 2;
16#1F30:
newCodepoints[0] := 16#03B9;
newCodepoints[1] := 16#0313;
numberOfCodepoints := 2;
16#1F31:
newCodepoints[0] := 16#03B9;
newCodepoints[1] := 16#0314;
numberOfCodepoints := 2;
16#1F32:
newCodepoints[0] := 16#1F30;
newCodepoints[1] := 16#0300;
numberOfCodepoints := 2;
16#1F33:
newCodepoints[0] := 16#1F31;
newCodepoints[1] := 16#0300;
numberOfCodepoints := 2;
16#1F34:
newCodepoints[0] := 16#1F30;
newCodepoints[1] := 16#0301;
numberOfCodepoints := 2;
16#1F35:
newCodepoints[0] := 16#1F31;
newCodepoints[1] := 16#0301;
numberOfCodepoints := 2;
16#1F36:
newCodepoints[0] := 16#1F30;
newCodepoints[1] := 16#0342;
numberOfCodepoints := 2;
16#1F37:
newCodepoints[0] := 16#1F31;
newCodepoints[1] := 16#0342;
numberOfCodepoints := 2;
16#1F38:
newCodepoints[0] := 16#0399;
newCodepoints[1] := 16#0313;
numberOfCodepoints := 2;
16#1F39:
newCodepoints[0] := 16#0399;
newCodepoints[1] := 16#0314;
numberOfCodepoints := 2;
16#1F3A:
newCodepoints[0] := 16#1F38;
newCodepoints[1] := 16#0300;
numberOfCodepoints := 2;
16#1F3B:
newCodepoints[0] := 16#1F39;
newCodepoints[1] := 16#0300;
numberOfCodepoints := 2;
16#1F3C:
newCodepoints[0] := 16#1F38;
newCodepoints[1] := 16#0301;
numberOfCodepoints := 2;
16#1F3D:
newCodepoints[0] := 16#1F39;
newCodepoints[1] := 16#0301;
numberOfCodepoints := 2;
16#1F3E:
newCodepoints[0] := 16#1F38;
newCodepoints[1] := 16#0342;
numberOfCodepoints := 2;
16#1F3F:
newCodepoints[0] := 16#1F39;
newCodepoints[1] := 16#0342;
numberOfCodepoints := 2;
16#1F40:
newCodepoints[0] := 16#03BF;
newCodepoints[1] := 16#0313;
numberOfCodepoints := 2;
16#1F41:
newCodepoints[0] := 16#03BF;
newCodepoints[1] := 16#0314;
numberOfCodepoints := 2;
16#1F42:
newCodepoints[0] := 16#1F40;
newCodepoints[1] := 16#0300;
numberOfCodepoints := 2;
16#1F43:
newCodepoints[0] := 16#1F41;
newCodepoints[1] := 16#0300;
numberOfCodepoints := 2;
16#1F44:
newCodepoints[0] := 16#1F40;
newCodepoints[1] := 16#0301;
numberOfCodepoints := 2;
16#1F45:
newCodepoints[0] := 16#1F41;
newCodepoints[1] := 16#0301;
numberOfCodepoints := 2;
16#1F48:
newCodepoints[0] := 16#039F;
newCodepoints[1] := 16#0313;
numberOfCodepoints := 2;
16#1F49:
newCodepoints[0] := 16#039F;
newCodepoints[1] := 16#0314;
numberOfCodepoints := 2;
16#1F4A:
newCodepoints[0] := 16#1F48;
newCodepoints[1] := 16#0300;
numberOfCodepoints := 2;
16#1F4B:
newCodepoints[0] := 16#1F49;
newCodepoints[1] := 16#0300;
numberOfCodepoints := 2;
16#1F4C:
newCodepoints[0] := 16#1F48;
newCodepoints[1] := 16#0301;
numberOfCodepoints := 2;
16#1F4D:
newCodepoints[0] := 16#1F49;
newCodepoints[1] := 16#0301;
numberOfCodepoints := 2;
16#1F50:
newCodepoints[0] := 16#03C5;
newCodepoints[1] := 16#0313;
numberOfCodepoints := 2;
16#1F51:
newCodepoints[0] := 16#03C5;
newCodepoints[1] := 16#0314;
numberOfCodepoints := 2;
16#1F52:
newCodepoints[0] := 16#1F50;
newCodepoints[1] := 16#0300;
numberOfCodepoints := 2;
16#1F53:
newCodepoints[0] := 16#1F51;
newCodepoints[1] := 16#0300;
numberOfCodepoints := 2;
16#1F54:
newCodepoints[0] := 16#1F50;
newCodepoints[1] := 16#0301;
numberOfCodepoints := 2;
16#1F55:
newCodepoints[0] := 16#1F51;
newCodepoints[1] := 16#0301;
numberOfCodepoints := 2;
16#1F56:
newCodepoints[0] := 16#1F50;
newCodepoints[1] := 16#0342;
numberOfCodepoints := 2;
16#1F57:
newCodepoints[0] := 16#1F51;
newCodepoints[1] := 16#0342;
numberOfCodepoints := 2;
16#1F59:
newCodepoints[0] := 16#03A5;
newCodepoints[1] := 16#0314;
numberOfCodepoints := 2;
16#1F5B:
newCodepoints[0] := 16#1F59;
newCodepoints[1] := 16#0300;
numberOfCodepoints := 2;
16#1F5D:
newCodepoints[0] := 16#1F59;
newCodepoints[1] := 16#0301;
numberOfCodepoints := 2;
16#1F5F:
newCodepoints[0] := 16#1F59;
newCodepoints[1] := 16#0342;
numberOfCodepoints := 2;
16#1F60:
newCodepoints[0] := 16#03C9;
newCodepoints[1] := 16#0313;
numberOfCodepoints := 2;
16#1F61:
newCodepoints[0] := 16#03C9;
newCodepoints[1] := 16#0314;
numberOfCodepoints := 2;
16#1F62:
newCodepoints[0] := 16#1F60;
newCodepoints[1] := 16#0300;
numberOfCodepoints := 2;
16#1F63:
newCodepoints[0] := 16#1F61;
newCodepoints[1] := 16#0300;
numberOfCodepoints := 2;
16#1F64:
newCodepoints[0] := 16#1F60;
newCodepoints[1] := 16#0301;
numberOfCodepoints := 2;
16#1F65:
newCodepoints[0] := 16#1F61;
newCodepoints[1] := 16#0301;
numberOfCodepoints := 2;
16#1F66:
newCodepoints[0] := 16#1F60;
newCodepoints[1] := 16#0342;
numberOfCodepoints := 2;
16#1F67:
newCodepoints[0] := 16#1F61;
newCodepoints[1] := 16#0342;
numberOfCodepoints := 2;
16#1F68:
newCodepoints[0] := 16#03A9;
newCodepoints[1] := 16#0313;
numberOfCodepoints := 2;
16#1F69:
newCodepoints[0] := 16#03A9;
newCodepoints[1] := 16#0314;
numberOfCodepoints := 2;
16#1F6A:
newCodepoints[0] := 16#1F68;
newCodepoints[1] := 16#0300;
numberOfCodepoints := 2;
16#1F6B:
newCodepoints[0] := 16#1F69;
newCodepoints[1] := 16#0300;
numberOfCodepoints := 2;
16#1F6C:
newCodepoints[0] := 16#1F68;
newCodepoints[1] := 16#0301;
numberOfCodepoints := 2;
16#1F6D:
newCodepoints[0] := 16#1F69;
newCodepoints[1] := 16#0301;
numberOfCodepoints := 2;
16#1F6E:
newCodepoints[0] := 16#1F68;
newCodepoints[1] := 16#0342;
numberOfCodepoints := 2;
16#1F6F:
newCodepoints[0] := 16#1F69;
newCodepoints[1] := 16#0342;
numberOfCodepoints := 2;
16#1F70:
newCodepoints[0] := 16#03B1;
newCodepoints[1] := 16#0300;
numberOfCodepoints := 2;
16#1F71:
newCodepoints[0] := 16#03AC;
numberOfCodepoints := 1;
16#1F72:
newCodepoints[0] := 16#03B5;
newCodepoints[1] := 16#0300;
numberOfCodepoints := 2;
16#1F73:
newCodepoints[0] := 16#03AD;
numberOfCodepoints := 1;
16#1F74:
newCodepoints[0] := 16#03B7;
newCodepoints[1] := 16#0300;
numberOfCodepoints := 2;
16#1F75:
newCodepoints[0] := 16#03AE;
numberOfCodepoints := 1;
16#1F76:
newCodepoints[0] := 16#03B9;
newCodepoints[1] := 16#0300;
numberOfCodepoints := 2;
16#1F77:
newCodepoints[0] := 16#03AF;
numberOfCodepoints := 1;
16#1F78:
newCodepoints[0] := 16#03BF;
newCodepoints[1] := 16#0300;
numberOfCodepoints := 2;
16#1F79:
newCodepoints[0] := 16#03CC;
numberOfCodepoints := 1;
16#1F7A:
newCodepoints[0] := 16#03C5;
newCodepoints[1] := 16#0300;
numberOfCodepoints := 2;
16#1F7B:
newCodepoints[0] := 16#03CD;
numberOfCodepoints := 1;
16#1F7C:
newCodepoints[0] := 16#03C9;
newCodepoints[1] := 16#0300;
numberOfCodepoints := 2;
16#1F7D:
newCodepoints[0] := 16#03CE;
numberOfCodepoints := 1;
16#1F80:
newCodepoints[0] := 16#1F00;
newCodepoints[1] := 16#0345;
numberOfCodepoints := 2;
16#1F81:
newCodepoints[0] := 16#1F01;
newCodepoints[1] := 16#0345;
numberOfCodepoints := 2;
16#1F82:
newCodepoints[0] := 16#1F02;
newCodepoints[1] := 16#0345;
numberOfCodepoints := 2;
16#1F83:
newCodepoints[0] := 16#1F03;
newCodepoints[1] := 16#0345;
numberOfCodepoints := 2;
16#1F84:
newCodepoints[0] := 16#1F04;
newCodepoints[1] := 16#0345;
numberOfCodepoints := 2;
16#1F85:
newCodepoints[0] := 16#1F05;
newCodepoints[1] := 16#0345;
numberOfCodepoints := 2;
16#1F86:
newCodepoints[0] := 16#1F06;
newCodepoints[1] := 16#0345;
numberOfCodepoints := 2;
16#1F87:
newCodepoints[0] := 16#1F07;
newCodepoints[1] := 16#0345;
numberOfCodepoints := 2;
16#1F88:
newCodepoints[0] := 16#1F08;
newCodepoints[1] := 16#0345;
numberOfCodepoints := 2;
16#1F89:
newCodepoints[0] := 16#1F09;
newCodepoints[1] := 16#0345;
numberOfCodepoints := 2;
16#1F8A:
newCodepoints[0] := 16#1F0A;
newCodepoints[1] := 16#0345;
numberOfCodepoints := 2;
16#1F8B:
newCodepoints[0] := 16#1F0B;
newCodepoints[1] := 16#0345;
numberOfCodepoints := 2;
16#1F8C:
newCodepoints[0] := 16#1F0C;
newCodepoints[1] := 16#0345;
numberOfCodepoints := 2;
16#1F8D:
newCodepoints[0] := 16#1F0D;
newCodepoints[1] := 16#0345;
numberOfCodepoints := 2;
16#1F8E:
newCodepoints[0] := 16#1F0E;
newCodepoints[1] := 16#0345;
numberOfCodepoints := 2;
16#1F8F:
newCodepoints[0] := 16#1F0F;
newCodepoints[1] := 16#0345;
numberOfCodepoints := 2;
16#1F90:
newCodepoints[0] := 16#1F20;
newCodepoints[1] := 16#0345;
numberOfCodepoints := 2;
16#1F91:
newCodepoints[0] := 16#1F21;
newCodepoints[1] := 16#0345;
numberOfCodepoints := 2;
16#1F92:
newCodepoints[0] := 16#1F22;
newCodepoints[1] := 16#0345;
numberOfCodepoints := 2;
16#1F93:
newCodepoints[0] := 16#1F23;
newCodepoints[1] := 16#0345;
numberOfCodepoints := 2;
16#1F94:
newCodepoints[0] := 16#1F24;
newCodepoints[1] := 16#0345;
numberOfCodepoints := 2;
16#1F95:
newCodepoints[0] := 16#1F25;
newCodepoints[1] := 16#0345;
numberOfCodepoints := 2;
16#1F96:
newCodepoints[0] := 16#1F26;
newCodepoints[1] := 16#0345;
numberOfCodepoints := 2;
16#1F97:
newCodepoints[0] := 16#1F27;
newCodepoints[1] := 16#0345;
numberOfCodepoints := 2;
16#1F98:
newCodepoints[0] := 16#1F28;
newCodepoints[1] := 16#0345;
numberOfCodepoints := 2;
16#1F99:
newCodepoints[0] := 16#1F29;
newCodepoints[1] := 16#0345;
numberOfCodepoints := 2;
16#1F9A:
newCodepoints[0] := 16#1F2A;
newCodepoints[1] := 16#0345;
numberOfCodepoints := 2;
16#1F9B:
newCodepoints[0] := 16#1F2B;
newCodepoints[1] := 16#0345;
numberOfCodepoints := 2;
16#1F9C:
newCodepoints[0] := 16#1F2C;
newCodepoints[1] := 16#0345;
numberOfCodepoints := 2;
16#1F9D:
newCodepoints[0] := 16#1F2D;
newCodepoints[1] := 16#0345;
numberOfCodepoints := 2;
16#1F9E:
newCodepoints[0] := 16#1F2E;
newCodepoints[1] := 16#0345;
numberOfCodepoints := 2;
16#1F9F:
newCodepoints[0] := 16#1F2F;
newCodepoints[1] := 16#0345;
numberOfCodepoints := 2;
16#1FA0:
newCodepoints[0] := 16#1F60;
newCodepoints[1] := 16#0345;
numberOfCodepoints := 2;
16#1FA1:
newCodepoints[0] := 16#1F61;
newCodepoints[1] := 16#0345;
numberOfCodepoints := 2;
16#1FA2:
newCodepoints[0] := 16#1F62;
newCodepoints[1] := 16#0345;
numberOfCodepoints := 2;
16#1FA3:
newCodepoints[0] := 16#1F63;
newCodepoints[1] := 16#0345;
numberOfCodepoints := 2;
16#1FA4:
newCodepoints[0] := 16#1F64;
newCodepoints[1] := 16#0345;
numberOfCodepoints := 2;
16#1FA5:
newCodepoints[0] := 16#1F65;
newCodepoints[1] := 16#0345;
numberOfCodepoints := 2;
16#1FA6:
newCodepoints[0] := 16#1F66;
newCodepoints[1] := 16#0345;
numberOfCodepoints := 2;
16#1FA7:
newCodepoints[0] := 16#1F67;
newCodepoints[1] := 16#0345;
numberOfCodepoints := 2;
16#1FA8:
newCodepoints[0] := 16#1F68;
newCodepoints[1] := 16#0345;
numberOfCodepoints := 2;
16#1FA9:
newCodepoints[0] := 16#1F69;
newCodepoints[1] := 16#0345;
numberOfCodepoints := 2;
16#1FAA:
newCodepoints[0] := 16#1F6A;
newCodepoints[1] := 16#0345;
numberOfCodepoints := 2;
16#1FAB:
newCodepoints[0] := 16#1F6B;
newCodepoints[1] := 16#0345;
numberOfCodepoints := 2;
16#1FAC:
newCodepoints[0] := 16#1F6C;
newCodepoints[1] := 16#0345;
numberOfCodepoints := 2;
16#1FAD:
newCodepoints[0] := 16#1F6D;
newCodepoints[1] := 16#0345;
numberOfCodepoints := 2;
16#1FAE:
newCodepoints[0] := 16#1F6E;
newCodepoints[1] := 16#0345;
numberOfCodepoints := 2;
16#1FAF:
newCodepoints[0] := 16#1F6F;
newCodepoints[1] := 16#0345;
numberOfCodepoints := 2;
16#1FB0:
newCodepoints[0] := 16#03B1;
newCodepoints[1] := 16#0306;
numberOfCodepoints := 2;
16#1FB1:
newCodepoints[0] := 16#03B1;
newCodepoints[1] := 16#0304;
numberOfCodepoints := 2;
16#1FB2:
newCodepoints[0] := 16#1F70;
newCodepoints[1] := 16#0345;
numberOfCodepoints := 2;
16#1FB3:
newCodepoints[0] := 16#03B1;
newCodepoints[1] := 16#0345;
numberOfCodepoints := 2;
16#1FB4:
newCodepoints[0] := 16#03AC;
newCodepoints[1] := 16#0345;
numberOfCodepoints := 2;
16#1FB6:
newCodepoints[0] := 16#03B1;
newCodepoints[1] := 16#0342;
numberOfCodepoints := 2;
16#1FB7:
newCodepoints[0] := 16#1FB6;
newCodepoints[1] := 16#0345;
numberOfCodepoints := 2;
16#1FB8:
newCodepoints[0] := 16#0391;
newCodepoints[1] := 16#0306;
numberOfCodepoints := 2;
16#1FB9:
newCodepoints[0] := 16#0391;
newCodepoints[1] := 16#0304;
numberOfCodepoints := 2;
16#1FBA:
newCodepoints[0] := 16#0391;
newCodepoints[1] := 16#0300;
numberOfCodepoints := 2;
16#1FBB:
newCodepoints[0] := 16#0386;
numberOfCodepoints := 1;
16#1FBC:
newCodepoints[0] := 16#0391;
newCodepoints[1] := 16#0345;
numberOfCodepoints := 2;
16#1FBE:
newCodepoints[0] := 16#03B9;
numberOfCodepoints := 1;
16#1FC1:
newCodepoints[0] := 16#00A8;
newCodepoints[1] := 16#0342;
numberOfCodepoints := 2;
16#1FC2:
newCodepoints[0] := 16#1F74;
newCodepoints[1] := 16#0345;
numberOfCodepoints := 2;
16#1FC3:
newCodepoints[0] := 16#03B7;
newCodepoints[1] := 16#0345;
numberOfCodepoints := 2;
16#1FC4:
newCodepoints[0] := 16#03AE;
newCodepoints[1] := 16#0345;
numberOfCodepoints := 2;
16#1FC6:
newCodepoints[0] := 16#03B7;
newCodepoints[1] := 16#0342;
numberOfCodepoints := 2;
16#1FC7:
newCodepoints[0] := 16#1FC6;
newCodepoints[1] := 16#0345;
numberOfCodepoints := 2;
16#1FC8:
newCodepoints[0] := 16#0395;
newCodepoints[1] := 16#0300;
numberOfCodepoints := 2;
16#1FC9:
newCodepoints[0] := 16#0388;
numberOfCodepoints := 1;
16#1FCA:
newCodepoints[0] := 16#0397;
newCodepoints[1] := 16#0300;
numberOfCodepoints := 2;
16#1FCB:
newCodepoints[0] := 16#0389;
numberOfCodepoints := 1;
16#1FCC:
newCodepoints[0] := 16#0397;
newCodepoints[1] := 16#0345;
numberOfCodepoints := 2;
16#1FCD:
newCodepoints[0] := 16#1FBF;
newCodepoints[1] := 16#0300;
numberOfCodepoints := 2;
16#1FCE:
newCodepoints[0] := 16#1FBF;
newCodepoints[1] := 16#0301;
numberOfCodepoints := 2;
16#1FCF:
newCodepoints[0] := 16#1FBF;
newCodepoints[1] := 16#0342;
numberOfCodepoints := 2;
16#1FD0:
newCodepoints[0] := 16#03B9;
newCodepoints[1] := 16#0306;
numberOfCodepoints := 2;
16#1FD1:
newCodepoints[0] := 16#03B9;
newCodepoints[1] := 16#0304;
numberOfCodepoints := 2;
16#1FD2:
newCodepoints[0] := 16#03CA;
newCodepoints[1] := 16#0300;
numberOfCodepoints := 2;
16#1FD3:
newCodepoints[0] := 16#0390;
numberOfCodepoints := 1;
16#1FD6:
newCodepoints[0] := 16#03B9;
newCodepoints[1] := 16#0342;
numberOfCodepoints := 2;
16#1FD7:
newCodepoints[0] := 16#03CA;
newCodepoints[1] := 16#0342;
numberOfCodepoints := 2;
16#1FD8:
newCodepoints[0] := 16#0399;
newCodepoints[1] := 16#0306;
numberOfCodepoints := 2;
16#1FD9:
newCodepoints[0] := 16#0399;
newCodepoints[1] := 16#0304;
numberOfCodepoints := 2;
16#1FDA:
newCodepoints[0] := 16#0399;
newCodepoints[1] := 16#0300;
numberOfCodepoints := 2;
16#1FDB:
newCodepoints[0] := 16#038A;
numberOfCodepoints := 1;
16#1FDD:
newCodepoints[0] := 16#1FFE;
newCodepoints[1] := 16#0300;
numberOfCodepoints := 2;
16#1FDE:
newCodepoints[0] := 16#1FFE;
newCodepoints[1] := 16#0301;
numberOfCodepoints := 2;
16#1FDF:
newCodepoints[0] := 16#1FFE;
newCodepoints[1] := 16#0342;
numberOfCodepoints := 2;
16#1FE0:
newCodepoints[0] := 16#03C5;
newCodepoints[1] := 16#0306;
numberOfCodepoints := 2;
16#1FE1:
newCodepoints[0] := 16#03C5;
newCodepoints[1] := 16#0304;
numberOfCodepoints := 2;
16#1FE2:
newCodepoints[0] := 16#03CB;
newCodepoints[1] := 16#0300;
numberOfCodepoints := 2;
16#1FE3:
newCodepoints[0] := 16#03B0;
numberOfCodepoints := 1;
16#1FE4:
newCodepoints[0] := 16#03C1;
newCodepoints[1] := 16#0313;
numberOfCodepoints := 2;
16#1FE5:
newCodepoints[0] := 16#03C1;
newCodepoints[1] := 16#0314;
numberOfCodepoints := 2;
16#1FE6:
newCodepoints[0] := 16#03C5;
newCodepoints[1] := 16#0342;
numberOfCodepoints := 2;
16#1FE7:
newCodepoints[0] := 16#03CB;
newCodepoints[1] := 16#0342;
numberOfCodepoints := 2;
16#1FE8:
newCodepoints[0] := 16#03A5;
newCodepoints[1] := 16#0306;
numberOfCodepoints := 2;
16#1FE9:
newCodepoints[0] := 16#03A5;
newCodepoints[1] := 16#0304;
numberOfCodepoints := 2;
16#1FEA:
newCodepoints[0] := 16#03A5;
newCodepoints[1] := 16#0300;
numberOfCodepoints := 2;
16#1FEB:
newCodepoints[0] := 16#038E;
numberOfCodepoints := 1;
16#1FEC:
newCodepoints[0] := 16#03A1;
newCodepoints[1] := 16#0314;
numberOfCodepoints := 2;
16#1FED:
newCodepoints[0] := 16#00A8;
newCodepoints[1] := 16#0300;
numberOfCodepoints := 2;
16#1FEE:
newCodepoints[0] := 16#0385;
numberOfCodepoints := 1;
16#1FEF:
newCodepoints[0] := 16#0060;
numberOfCodepoints := 1;
16#1FF2:
newCodepoints[0] := 16#1F7C;
newCodepoints[1] := 16#0345;
numberOfCodepoints := 2;
16#1FF3:
newCodepoints[0] := 16#03C9;
newCodepoints[1] := 16#0345;
numberOfCodepoints := 2;
16#1FF4:
newCodepoints[0] := 16#03CE;
newCodepoints[1] := 16#0345;
numberOfCodepoints := 2;
16#1FF6:
newCodepoints[0] := 16#03C9;
newCodepoints[1] := 16#0342;
numberOfCodepoints := 2;
16#1FF7:
newCodepoints[0] := 16#1FF6;
newCodepoints[1] := 16#0345;
numberOfCodepoints := 2;
16#1FF8:
newCodepoints[0] := 16#039F;
newCodepoints[1] := 16#0300;
numberOfCodepoints := 2;
16#1FF9:
newCodepoints[0] := 16#038C;
numberOfCodepoints := 1;
16#1FFA:
newCodepoints[0] := 16#03A9;
newCodepoints[1] := 16#0300;
numberOfCodepoints := 2;
16#1FFB:
newCodepoints[0] := 16#038F;
numberOfCodepoints := 1;
16#1FFC:
newCodepoints[0] := 16#03A9;
newCodepoints[1] := 16#0345;
numberOfCodepoints := 2;
16#1FFD:
newCodepoints[0] := 16#00B4;
numberOfCodepoints := 1;
16#2000:
newCodepoints[0] := 16#2002;
numberOfCodepoints := 1;
16#2001:
newCodepoints[0] := 16#2003;
numberOfCodepoints := 1;
16#2126:
newCodepoints[0] := 16#03A9;
numberOfCodepoints := 1;
16#212A:
newCodepoints[0] := 16#004B;
numberOfCodepoints := 1;
16#212B:
newCodepoints[0] := 16#00C5;
numberOfCodepoints := 1;
16#219A:
newCodepoints[0] := 16#2190;
newCodepoints[1] := 16#0338;
numberOfCodepoints := 2;
16#219B:
newCodepoints[0] := 16#2192;
newCodepoints[1] := 16#0338;
numberOfCodepoints := 2;
16#21AE:
newCodepoints[0] := 16#2194;
newCodepoints[1] := 16#0338;
numberOfCodepoints := 2;
16#21CD:
newCodepoints[0] := 16#21D0;
newCodepoints[1] := 16#0338;
numberOfCodepoints := 2;
16#21CE:
newCodepoints[0] := 16#21D4;
newCodepoints[1] := 16#0338;
numberOfCodepoints := 2;
16#21CF:
newCodepoints[0] := 16#21D2;
newCodepoints[1] := 16#0338;
numberOfCodepoints := 2;
16#2204:
newCodepoints[0] := 16#2203;
newCodepoints[1] := 16#0338;
numberOfCodepoints := 2;
16#2209:
newCodepoints[0] := 16#2208;
newCodepoints[1] := 16#0338;
numberOfCodepoints := 2;
16#220C:
newCodepoints[0] := 16#220B;
newCodepoints[1] := 16#0338;
numberOfCodepoints := 2;
16#2224:
newCodepoints[0] := 16#2223;
newCodepoints[1] := 16#0338;
numberOfCodepoints := 2;
16#2226:
newCodepoints[0] := 16#2225;
newCodepoints[1] := 16#0338;
numberOfCodepoints := 2;
16#2241:
newCodepoints[0] := 16#223C;
newCodepoints[1] := 16#0338;
numberOfCodepoints := 2;
16#2244:
newCodepoints[0] := 16#2243;
newCodepoints[1] := 16#0338;
numberOfCodepoints := 2;
16#2247:
newCodepoints[0] := 16#2245;
newCodepoints[1] := 16#0338;
numberOfCodepoints := 2;
16#2249:
newCodepoints[0] := 16#2248;
newCodepoints[1] := 16#0338;
numberOfCodepoints := 2;
16#2260:
newCodepoints[0] := 16#003D;
newCodepoints[1] := 16#0338;
numberOfCodepoints := 2;
16#2262:
newCodepoints[0] := 16#2261;
newCodepoints[1] := 16#0338;
numberOfCodepoints := 2;
16#226D:
newCodepoints[0] := 16#224D;
newCodepoints[1] := 16#0338;
numberOfCodepoints := 2;
16#226E:
newCodepoints[0] := 16#003C;
newCodepoints[1] := 16#0338;
numberOfCodepoints := 2;
16#226F:
newCodepoints[0] := 16#003E;
newCodepoints[1] := 16#0338;
numberOfCodepoints := 2;
16#2270:
newCodepoints[0] := 16#2264;
newCodepoints[1] := 16#0338;
numberOfCodepoints := 2;
16#2271:
newCodepoints[0] := 16#2265;
newCodepoints[1] := 16#0338;
numberOfCodepoints := 2;
16#2274:
newCodepoints[0] := 16#2272;
newCodepoints[1] := 16#0338;
numberOfCodepoints := 2;
16#2275:
newCodepoints[0] := 16#2273;
newCodepoints[1] := 16#0338;
numberOfCodepoints := 2;
16#2278:
newCodepoints[0] := 16#2276;
newCodepoints[1] := 16#0338;
numberOfCodepoints := 2;
16#2279:
newCodepoints[0] := 16#2277;
newCodepoints[1] := 16#0338;
numberOfCodepoints := 2;
16#2280:
newCodepoints[0] := 16#227A;
newCodepoints[1] := 16#0338;
numberOfCodepoints := 2;
16#2281:
newCodepoints[0] := 16#227B;
newCodepoints[1] := 16#0338;
numberOfCodepoints := 2;
16#2284:
newCodepoints[0] := 16#2282;
newCodepoints[1] := 16#0338;
numberOfCodepoints := 2;
16#2285:
newCodepoints[0] := 16#2283;
newCodepoints[1] := 16#0338;
numberOfCodepoints := 2;
16#2288:
newCodepoints[0] := 16#2286;
newCodepoints[1] := 16#0338;
numberOfCodepoints := 2;
16#2289:
newCodepoints[0] := 16#2287;
newCodepoints[1] := 16#0338;
numberOfCodepoints := 2;
16#22AC:
newCodepoints[0] := 16#22A2;
newCodepoints[1] := 16#0338;
numberOfCodepoints := 2;
16#22AD:
newCodepoints[0] := 16#22A8;
newCodepoints[1] := 16#0338;
numberOfCodepoints := 2;
16#22AE:
newCodepoints[0] := 16#22A9;
newCodepoints[1] := 16#0338;
numberOfCodepoints := 2;
16#22AF:
newCodepoints[0] := 16#22AB;
newCodepoints[1] := 16#0338;
numberOfCodepoints := 2;
16#22E0:
newCodepoints[0] := 16#227C;
newCodepoints[1] := 16#0338;
numberOfCodepoints := 2;
16#22E1:
newCodepoints[0] := 16#227D;
newCodepoints[1] := 16#0338;
numberOfCodepoints := 2;
16#22E2:
newCodepoints[0] := 16#2291;
newCodepoints[1] := 16#0338;
numberOfCodepoints := 2;
16#22E3:
newCodepoints[0] := 16#2292;
newCodepoints[1] := 16#0338;
numberOfCodepoints := 2;
16#22EA:
newCodepoints[0] := 16#22B2;
newCodepoints[1] := 16#0338;
numberOfCodepoints := 2;
16#22EB:
newCodepoints[0] := 16#22B3;
newCodepoints[1] := 16#0338;
numberOfCodepoints := 2;
16#22EC:
newCodepoints[0] := 16#22B4;
newCodepoints[1] := 16#0338;
numberOfCodepoints := 2;
16#22ED:
newCodepoints[0] := 16#22B5;
newCodepoints[1] := 16#0338;
numberOfCodepoints := 2;
16#2329:
newCodepoints[0] := 16#3008;
numberOfCodepoints := 1;
16#232A:
newCodepoints[0] := 16#3009;
numberOfCodepoints := 1;
16#2ADC:
newCodepoints[0] := 16#2ADD;
newCodepoints[1] := 16#0338;
numberOfCodepoints := 2;
16#304C:
newCodepoints[0] := 16#304B;
newCodepoints[1] := 16#3099;
numberOfCodepoints := 2;
16#304E:
newCodepoints[0] := 16#304D;
newCodepoints[1] := 16#3099;
numberOfCodepoints := 2;
16#3050:
newCodepoints[0] := 16#304F;
newCodepoints[1] := 16#3099;
numberOfCodepoints := 2;
16#3052:
newCodepoints[0] := 16#3051;
newCodepoints[1] := 16#3099;
numberOfCodepoints := 2;
16#3054:
newCodepoints[0] := 16#3053;
newCodepoints[1] := 16#3099;
numberOfCodepoints := 2;
16#3056:
newCodepoints[0] := 16#3055;
newCodepoints[1] := 16#3099;
numberOfCodepoints := 2;
16#3058:
newCodepoints[0] := 16#3057;
newCodepoints[1] := 16#3099;
numberOfCodepoints := 2;
16#305A:
newCodepoints[0] := 16#3059;
newCodepoints[1] := 16#3099;
numberOfCodepoints := 2;
16#305C:
newCodepoints[0] := 16#305B;
newCodepoints[1] := 16#3099;
numberOfCodepoints := 2;
16#305E:
newCodepoints[0] := 16#305D;
newCodepoints[1] := 16#3099;
numberOfCodepoints := 2;
16#3060:
newCodepoints[0] := 16#305F;
newCodepoints[1] := 16#3099;
numberOfCodepoints := 2;
16#3062:
newCodepoints[0] := 16#3061;
newCodepoints[1] := 16#3099;
numberOfCodepoints := 2;
16#3065:
newCodepoints[0] := 16#3064;
newCodepoints[1] := 16#3099;
numberOfCodepoints := 2;
16#3067:
newCodepoints[0] := 16#3066;
newCodepoints[1] := 16#3099;
numberOfCodepoints := 2;
16#3069:
newCodepoints[0] := 16#3068;
newCodepoints[1] := 16#3099;
numberOfCodepoints := 2;
16#3070:
newCodepoints[0] := 16#306F;
newCodepoints[1] := 16#3099;
numberOfCodepoints := 2;
16#3071:
newCodepoints[0] := 16#306F;
newCodepoints[1] := 16#309A;
numberOfCodepoints := 2;
16#3073:
newCodepoints[0] := 16#3072;
newCodepoints[1] := 16#3099;
numberOfCodepoints := 2;
16#3074:
newCodepoints[0] := 16#3072;
newCodepoints[1] := 16#309A;
numberOfCodepoints := 2;
16#3076:
newCodepoints[0] := 16#3075;
newCodepoints[1] := 16#3099;
numberOfCodepoints := 2;
16#3077:
newCodepoints[0] := 16#3075;
newCodepoints[1] := 16#309A;
numberOfCodepoints := 2;
16#3079:
newCodepoints[0] := 16#3078;
newCodepoints[1] := 16#3099;
numberOfCodepoints := 2;
16#307A:
newCodepoints[0] := 16#3078;
newCodepoints[1] := 16#309A;
numberOfCodepoints := 2;
16#307C:
newCodepoints[0] := 16#307B;
newCodepoints[1] := 16#3099;
numberOfCodepoints := 2;
16#307D:
newCodepoints[0] := 16#307B;
newCodepoints[1] := 16#309A;
numberOfCodepoints := 2;
16#3094:
newCodepoints[0] := 16#3046;
newCodepoints[1] := 16#3099;
numberOfCodepoints := 2;
16#309E:
newCodepoints[0] := 16#309D;
newCodepoints[1] := 16#3099;
numberOfCodepoints := 2;
16#30AC:
newCodepoints[0] := 16#30AB;
newCodepoints[1] := 16#3099;
numberOfCodepoints := 2;
16#30AE:
newCodepoints[0] := 16#30AD;
newCodepoints[1] := 16#3099;
numberOfCodepoints := 2;
16#30B0:
newCodepoints[0] := 16#30AF;
newCodepoints[1] := 16#3099;
numberOfCodepoints := 2;
16#30B2:
newCodepoints[0] := 16#30B1;
newCodepoints[1] := 16#3099;
numberOfCodepoints := 2;
16#30B4:
newCodepoints[0] := 16#30B3;
newCodepoints[1] := 16#3099;
numberOfCodepoints := 2;
16#30B6:
newCodepoints[0] := 16#30B5;
newCodepoints[1] := 16#3099;
numberOfCodepoints := 2;
16#30B8:
newCodepoints[0] := 16#30B7;
newCodepoints[1] := 16#3099;
numberOfCodepoints := 2;
16#30BA:
newCodepoints[0] := 16#30B9;
newCodepoints[1] := 16#3099;
numberOfCodepoints := 2;
16#30BC:
newCodepoints[0] := 16#30BB;
newCodepoints[1] := 16#3099;
numberOfCodepoints := 2;
16#30BE:
newCodepoints[0] := 16#30BD;
newCodepoints[1] := 16#3099;
numberOfCodepoints := 2;
16#30C0:
newCodepoints[0] := 16#30BF;
newCodepoints[1] := 16#3099;
numberOfCodepoints := 2;
16#30C2:
newCodepoints[0] := 16#30C1;
newCodepoints[1] := 16#3099;
numberOfCodepoints := 2;
16#30C5:
newCodepoints[0] := 16#30C4;
newCodepoints[1] := 16#3099;
numberOfCodepoints := 2;
16#30C7:
newCodepoints[0] := 16#30C6;
newCodepoints[1] := 16#3099;
numberOfCodepoints := 2;
16#30C9:
newCodepoints[0] := 16#30C8;
newCodepoints[1] := 16#3099;
numberOfCodepoints := 2;
16#30D0:
newCodepoints[0] := 16#30CF;
newCodepoints[1] := 16#3099;
numberOfCodepoints := 2;
16#30D1:
newCodepoints[0] := 16#30CF;
newCodepoints[1] := 16#309A;
numberOfCodepoints := 2;
16#30D3:
newCodepoints[0] := 16#30D2;
newCodepoints[1] := 16#3099;
numberOfCodepoints := 2;
16#30D4:
newCodepoints[0] := 16#30D2;
newCodepoints[1] := 16#309A;
numberOfCodepoints := 2;
16#30D6:
newCodepoints[0] := 16#30D5;
newCodepoints[1] := 16#3099;
numberOfCodepoints := 2;
16#30D7:
newCodepoints[0] := 16#30D5;
newCodepoints[1] := 16#309A;
numberOfCodepoints := 2;
16#30D9:
newCodepoints[0] := 16#30D8;
newCodepoints[1] := 16#3099;
numberOfCodepoints := 2;
16#30DA:
newCodepoints[0] := 16#30D8;
newCodepoints[1] := 16#309A;
numberOfCodepoints := 2;
16#30DC:
newCodepoints[0] := 16#30DB;
newCodepoints[1] := 16#3099;
numberOfCodepoints := 2;
16#30DD:
newCodepoints[0] := 16#30DB;
newCodepoints[1] := 16#309A;
numberOfCodepoints := 2;
16#30F4:
newCodepoints[0] := 16#30A6;
newCodepoints[1] := 16#3099;
numberOfCodepoints := 2;
16#30F7:
newCodepoints[0] := 16#30EF;
newCodepoints[1] := 16#3099;
numberOfCodepoints := 2;
16#30F8:
newCodepoints[0] := 16#30F0;
newCodepoints[1] := 16#3099;
numberOfCodepoints := 2;
16#30F9:
newCodepoints[0] := 16#30F1;
newCodepoints[1] := 16#3099;
numberOfCodepoints := 2;
16#30FA:
newCodepoints[0] := 16#30F2;
newCodepoints[1] := 16#3099;
numberOfCodepoints := 2;
16#30FE:
newCodepoints[0] := 16#30FD;
newCodepoints[1] := 16#3099;
numberOfCodepoints := 2;
16#AC00..16#D7A3:
GetCodepointDecomposition := GetCodepointDecompositionHangul(
codepoint := codepoint,
newCodepoints := newCodepoints,
numberOfCodepoints => numberOfCodepoints);
16#F900:
newCodepoints[0] := 16#8C48;
numberOfCodepoints := 1;
16#F901:
newCodepoints[0] := 16#66F4;
numberOfCodepoints := 1;
16#F902:
newCodepoints[0] := 16#8ECA;
numberOfCodepoints := 1;
16#F903:
newCodepoints[0] := 16#8CC8;
numberOfCodepoints := 1;
16#F904:
newCodepoints[0] := 16#6ED1;
numberOfCodepoints := 1;
16#F905:
newCodepoints[0] := 16#4E32;
numberOfCodepoints := 1;
16#F906:
newCodepoints[0] := 16#53E5;
numberOfCodepoints := 1;
16#F907:
newCodepoints[0] := 16#9F9C;
numberOfCodepoints := 1;
16#F908:
newCodepoints[0] := 16#9F9C;
numberOfCodepoints := 1;
16#F909:
newCodepoints[0] := 16#5951;
numberOfCodepoints := 1;
16#F90A:
newCodepoints[0] := 16#91D1;
numberOfCodepoints := 1;
16#F90B:
newCodepoints[0] := 16#5587;
numberOfCodepoints := 1;
16#F90C:
newCodepoints[0] := 16#5948;
numberOfCodepoints := 1;
16#F90D:
newCodepoints[0] := 16#61F6;
numberOfCodepoints := 1;
16#F90E:
newCodepoints[0] := 16#7669;
numberOfCodepoints := 1;
16#F90F:
newCodepoints[0] := 16#7F85;
numberOfCodepoints := 1;
16#F910:
newCodepoints[0] := 16#863F;
numberOfCodepoints := 1;
16#F911:
newCodepoints[0] := 16#87BA;
numberOfCodepoints := 1;
16#F912:
newCodepoints[0] := 16#88F8;
numberOfCodepoints := 1;
16#F913:
newCodepoints[0] := 16#908F;
numberOfCodepoints := 1;
16#F914:
newCodepoints[0] := 16#6A02;
numberOfCodepoints := 1;
16#F915:
newCodepoints[0] := 16#6D1B;
numberOfCodepoints := 1;
16#F916:
newCodepoints[0] := 16#70D9;
numberOfCodepoints := 1;
16#F917:
newCodepoints[0] := 16#73DE;
numberOfCodepoints := 1;
16#F918:
newCodepoints[0] := 16#843D;
numberOfCodepoints := 1;
16#F919:
newCodepoints[0] := 16#916A;
numberOfCodepoints := 1;
16#F91A:
newCodepoints[0] := 16#99F1;
numberOfCodepoints := 1;
16#F91B:
newCodepoints[0] := 16#4E82;
numberOfCodepoints := 1;
16#F91C:
newCodepoints[0] := 16#5375;
numberOfCodepoints := 1;
16#F91D:
newCodepoints[0] := 16#6B04;
numberOfCodepoints := 1;
16#F91E:
newCodepoints[0] := 16#721B;
numberOfCodepoints := 1;
16#F91F:
newCodepoints[0] := 16#862D;
numberOfCodepoints := 1;
16#F920:
newCodepoints[0] := 16#9E1E;
numberOfCodepoints := 1;
16#F921:
newCodepoints[0] := 16#5D50;
numberOfCodepoints := 1;
16#F922:
newCodepoints[0] := 16#6FEB;
numberOfCodepoints := 1;
16#F923:
newCodepoints[0] := 16#85CD;
numberOfCodepoints := 1;
16#F924:
newCodepoints[0] := 16#8964;
numberOfCodepoints := 1;
16#F925:
newCodepoints[0] := 16#62C9;
numberOfCodepoints := 1;
16#F926:
newCodepoints[0] := 16#81D8;
numberOfCodepoints := 1;
16#F927:
newCodepoints[0] := 16#881F;
numberOfCodepoints := 1;
16#F928:
newCodepoints[0] := 16#5ECA;
numberOfCodepoints := 1;
16#F929:
newCodepoints[0] := 16#6717;
numberOfCodepoints := 1;
16#F92A:
newCodepoints[0] := 16#6D6A;
numberOfCodepoints := 1;
16#F92B:
newCodepoints[0] := 16#72FC;
numberOfCodepoints := 1;
16#F92C:
newCodepoints[0] := 16#90CE;
numberOfCodepoints := 1;
16#F92D:
newCodepoints[0] := 16#4F86;
numberOfCodepoints := 1;
16#F92E:
newCodepoints[0] := 16#51B7;
numberOfCodepoints := 1;
16#F92F:
newCodepoints[0] := 16#52DE;
numberOfCodepoints := 1;
16#F930:
newCodepoints[0] := 16#64C4;
numberOfCodepoints := 1;
16#F931:
newCodepoints[0] := 16#6AD3;
numberOfCodepoints := 1;
16#F932:
newCodepoints[0] := 16#7210;
numberOfCodepoints := 1;
16#F933:
newCodepoints[0] := 16#76E7;
numberOfCodepoints := 1;
16#F934:
newCodepoints[0] := 16#8001;
numberOfCodepoints := 1;
16#F935:
newCodepoints[0] := 16#8606;
numberOfCodepoints := 1;
16#F936:
newCodepoints[0] := 16#865C;
numberOfCodepoints := 1;
16#F937:
newCodepoints[0] := 16#8DEF;
numberOfCodepoints := 1;
16#F938:
newCodepoints[0] := 16#9732;
numberOfCodepoints := 1;
16#F939:
newCodepoints[0] := 16#9B6F;
numberOfCodepoints := 1;
16#F93A:
newCodepoints[0] := 16#9DFA;
numberOfCodepoints := 1;
16#F93B:
newCodepoints[0] := 16#788C;
numberOfCodepoints := 1;
16#F93C:
newCodepoints[0] := 16#797F;
numberOfCodepoints := 1;
16#F93D:
newCodepoints[0] := 16#7DA0;
numberOfCodepoints := 1;
16#F93E:
newCodepoints[0] := 16#83C9;
numberOfCodepoints := 1;
16#F93F:
newCodepoints[0] := 16#9304;
numberOfCodepoints := 1;
16#F940:
newCodepoints[0] := 16#9E7F;
numberOfCodepoints := 1;
16#F941:
newCodepoints[0] := 16#8AD6;
numberOfCodepoints := 1;
16#F942:
newCodepoints[0] := 16#58DF;
numberOfCodepoints := 1;
16#F943:
newCodepoints[0] := 16#5F04;
numberOfCodepoints := 1;
16#F944:
newCodepoints[0] := 16#7C60;
numberOfCodepoints := 1;
16#F945:
newCodepoints[0] := 16#807E;
numberOfCodepoints := 1;
16#F946:
newCodepoints[0] := 16#7262;
numberOfCodepoints := 1;
16#F947:
newCodepoints[0] := 16#78CA;
numberOfCodepoints := 1;
16#F948:
newCodepoints[0] := 16#8CC2;
numberOfCodepoints := 1;
16#F949:
newCodepoints[0] := 16#96F7;
numberOfCodepoints := 1;
16#F94A:
newCodepoints[0] := 16#58D8;
numberOfCodepoints := 1;
16#F94B:
newCodepoints[0] := 16#5C62;
numberOfCodepoints := 1;
16#F94C:
newCodepoints[0] := 16#6A13;
numberOfCodepoints := 1;
16#F94D:
newCodepoints[0] := 16#6DDA;
numberOfCodepoints := 1;
16#F94E:
newCodepoints[0] := 16#6F0F;
numberOfCodepoints := 1;
16#F94F:
newCodepoints[0] := 16#7D2F;
numberOfCodepoints := 1;
16#F950:
newCodepoints[0] := 16#7E37;
numberOfCodepoints := 1;
16#F951:
newCodepoints[0] := 16#964B;
numberOfCodepoints := 1;
16#F952:
newCodepoints[0] := 16#52D2;
numberOfCodepoints := 1;
16#F953:
newCodepoints[0] := 16#808B;
numberOfCodepoints := 1;
16#F954:
newCodepoints[0] := 16#51DC;
numberOfCodepoints := 1;
16#F955:
newCodepoints[0] := 16#51CC;
numberOfCodepoints := 1;
16#F956:
newCodepoints[0] := 16#7A1C;
numberOfCodepoints := 1;
16#F957:
newCodepoints[0] := 16#7DBE;
numberOfCodepoints := 1;
16#F958:
newCodepoints[0] := 16#83F1;
numberOfCodepoints := 1;
16#F959:
newCodepoints[0] := 16#9675;
numberOfCodepoints := 1;
16#F95A:
newCodepoints[0] := 16#8B80;
numberOfCodepoints := 1;
16#F95B:
newCodepoints[0] := 16#62CF;
numberOfCodepoints := 1;
16#F95C:
newCodepoints[0] := 16#6A02;
numberOfCodepoints := 1;
16#F95D:
newCodepoints[0] := 16#8AFE;
numberOfCodepoints := 1;
16#F95E:
newCodepoints[0] := 16#4E39;
numberOfCodepoints := 1;
16#F95F:
newCodepoints[0] := 16#5BE7;
numberOfCodepoints := 1;
16#F960:
newCodepoints[0] := 16#6012;
numberOfCodepoints := 1;
16#F961:
newCodepoints[0] := 16#7387;
numberOfCodepoints := 1;
16#F962:
newCodepoints[0] := 16#7570;
numberOfCodepoints := 1;
16#F963:
newCodepoints[0] := 16#5317;
numberOfCodepoints := 1;
16#F964:
newCodepoints[0] := 16#78FB;
numberOfCodepoints := 1;
16#F965:
newCodepoints[0] := 16#4FBF;
numberOfCodepoints := 1;
16#F966:
newCodepoints[0] := 16#5FA9;
numberOfCodepoints := 1;
16#F967:
newCodepoints[0] := 16#4E0D;
numberOfCodepoints := 1;
16#F968:
newCodepoints[0] := 16#6CCC;
numberOfCodepoints := 1;
16#F969:
newCodepoints[0] := 16#6578;
numberOfCodepoints := 1;
16#F96A:
newCodepoints[0] := 16#7D22;
numberOfCodepoints := 1;
16#F96B:
newCodepoints[0] := 16#53C3;
numberOfCodepoints := 1;
16#F96C:
newCodepoints[0] := 16#585E;
numberOfCodepoints := 1;
16#F96D:
newCodepoints[0] := 16#7701;
numberOfCodepoints := 1;
16#F96E:
newCodepoints[0] := 16#8449;
numberOfCodepoints := 1;
16#F96F:
newCodepoints[0] := 16#8AAA;
numberOfCodepoints := 1;
16#F970:
newCodepoints[0] := 16#6BBA;
numberOfCodepoints := 1;
16#F971:
newCodepoints[0] := 16#8FB0;
numberOfCodepoints := 1;
16#F972:
newCodepoints[0] := 16#6C88;
numberOfCodepoints := 1;
16#F973:
newCodepoints[0] := 16#62FE;
numberOfCodepoints := 1;
16#F974:
newCodepoints[0] := 16#82E5;
numberOfCodepoints := 1;
16#F975:
newCodepoints[0] := 16#63A0;
numberOfCodepoints := 1;
16#F976:
newCodepoints[0] := 16#7565;
numberOfCodepoints := 1;
16#F977:
newCodepoints[0] := 16#4EAE;
numberOfCodepoints := 1;
16#F978:
newCodepoints[0] := 16#5169;
numberOfCodepoints := 1;
16#F979:
newCodepoints[0] := 16#51C9;
numberOfCodepoints := 1;
16#F97A:
newCodepoints[0] := 16#6881;
numberOfCodepoints := 1;
16#F97B:
newCodepoints[0] := 16#7CE7;
numberOfCodepoints := 1;
16#F97C:
newCodepoints[0] := 16#826F;
numberOfCodepoints := 1;
16#F97D:
newCodepoints[0] := 16#8AD2;
numberOfCodepoints := 1;
16#F97E:
newCodepoints[0] := 16#91CF;
numberOfCodepoints := 1;
16#F97F:
newCodepoints[0] := 16#52F5;
numberOfCodepoints := 1;
16#F980:
newCodepoints[0] := 16#5442;
numberOfCodepoints := 1;
16#F981:
newCodepoints[0] := 16#5973;
numberOfCodepoints := 1;
16#F982:
newCodepoints[0] := 16#5EEC;
numberOfCodepoints := 1;
16#F983:
newCodepoints[0] := 16#65C5;
numberOfCodepoints := 1;
16#F984:
newCodepoints[0] := 16#6FFE;
numberOfCodepoints := 1;
16#F985:
newCodepoints[0] := 16#792A;
numberOfCodepoints := 1;
16#F986:
newCodepoints[0] := 16#95AD;
numberOfCodepoints := 1;
16#F987:
newCodepoints[0] := 16#9A6A;
numberOfCodepoints := 1;
16#F988:
newCodepoints[0] := 16#9E97;
numberOfCodepoints := 1;
16#F989:
newCodepoints[0] := 16#9ECE;
numberOfCodepoints := 1;
16#F98A:
newCodepoints[0] := 16#529B;
numberOfCodepoints := 1;
16#F98B:
newCodepoints[0] := 16#66C6;
numberOfCodepoints := 1;
16#F98C:
newCodepoints[0] := 16#6B77;
numberOfCodepoints := 1;
16#F98D:
newCodepoints[0] := 16#8F62;
numberOfCodepoints := 1;
16#F98E:
newCodepoints[0] := 16#5E74;
numberOfCodepoints := 1;
16#F98F:
newCodepoints[0] := 16#6190;
numberOfCodepoints := 1;
16#F990:
newCodepoints[0] := 16#6200;
numberOfCodepoints := 1;
16#F991:
newCodepoints[0] := 16#649A;
numberOfCodepoints := 1;
16#F992:
newCodepoints[0] := 16#6F23;
numberOfCodepoints := 1;
16#F993:
newCodepoints[0] := 16#7149;
numberOfCodepoints := 1;
16#F994:
newCodepoints[0] := 16#7489;
numberOfCodepoints := 1;
16#F995:
newCodepoints[0] := 16#79CA;
numberOfCodepoints := 1;
16#F996:
newCodepoints[0] := 16#7DF4;
numberOfCodepoints := 1;
16#F997:
newCodepoints[0] := 16#806F;
numberOfCodepoints := 1;
16#F998:
newCodepoints[0] := 16#8F26;
numberOfCodepoints := 1;
16#F999:
newCodepoints[0] := 16#84EE;
numberOfCodepoints := 1;
16#F99A:
newCodepoints[0] := 16#9023;
numberOfCodepoints := 1;
16#F99B:
newCodepoints[0] := 16#934A;
numberOfCodepoints := 1;
16#F99C:
newCodepoints[0] := 16#5217;
numberOfCodepoints := 1;
16#F99D:
newCodepoints[0] := 16#52A3;
numberOfCodepoints := 1;
16#F99E:
newCodepoints[0] := 16#54BD;
numberOfCodepoints := 1;
16#F99F:
newCodepoints[0] := 16#70C8;
numberOfCodepoints := 1;
16#F9A0:
newCodepoints[0] := 16#88C2;
numberOfCodepoints := 1;
16#F9A1:
newCodepoints[0] := 16#8AAA;
numberOfCodepoints := 1;
16#F9A2:
newCodepoints[0] := 16#5EC9;
numberOfCodepoints := 1;
16#F9A3:
newCodepoints[0] := 16#5FF5;
numberOfCodepoints := 1;
16#F9A4:
newCodepoints[0] := 16#637B;
numberOfCodepoints := 1;
16#F9A5:
newCodepoints[0] := 16#6BAE;
numberOfCodepoints := 1;
16#F9A6:
newCodepoints[0] := 16#7C3E;
numberOfCodepoints := 1;
16#F9A7:
newCodepoints[0] := 16#7375;
numberOfCodepoints := 1;
16#F9A8:
newCodepoints[0] := 16#4EE4;
numberOfCodepoints := 1;
16#F9A9:
newCodepoints[0] := 16#56F9;
numberOfCodepoints := 1;
16#F9AA:
newCodepoints[0] := 16#5BE7;
numberOfCodepoints := 1;
16#F9AB:
newCodepoints[0] := 16#5DBA;
numberOfCodepoints := 1;
16#F9AC:
newCodepoints[0] := 16#601C;
numberOfCodepoints := 1;
16#F9AD:
newCodepoints[0] := 16#73B2;
numberOfCodepoints := 1;
16#F9AE:
newCodepoints[0] := 16#7469;
numberOfCodepoints := 1;
16#F9AF:
newCodepoints[0] := 16#7F9A;
numberOfCodepoints := 1;
16#F9B0:
newCodepoints[0] := 16#8046;
numberOfCodepoints := 1;
16#F9B1:
newCodepoints[0] := 16#9234;
numberOfCodepoints := 1;
16#F9B2:
newCodepoints[0] := 16#96F6;
numberOfCodepoints := 1;
16#F9B3:
newCodepoints[0] := 16#9748;
numberOfCodepoints := 1;
16#F9B4:
newCodepoints[0] := 16#9818;
numberOfCodepoints := 1;
16#F9B5:
newCodepoints[0] := 16#4F8B;
numberOfCodepoints := 1;
16#F9B6:
newCodepoints[0] := 16#79AE;
numberOfCodepoints := 1;
16#F9B7:
newCodepoints[0] := 16#91B4;
numberOfCodepoints := 1;
16#F9B8:
newCodepoints[0] := 16#96B8;
numberOfCodepoints := 1;
16#F9B9:
newCodepoints[0] := 16#60E1;
numberOfCodepoints := 1;
16#F9BA:
newCodepoints[0] := 16#4E86;
numberOfCodepoints := 1;
16#F9BB:
newCodepoints[0] := 16#50DA;
numberOfCodepoints := 1;
16#F9BC:
newCodepoints[0] := 16#5BEE;
numberOfCodepoints := 1;
16#F9BD:
newCodepoints[0] := 16#5C3F;
numberOfCodepoints := 1;
16#F9BE:
newCodepoints[0] := 16#6599;
numberOfCodepoints := 1;
16#F9BF:
newCodepoints[0] := 16#6A02;
numberOfCodepoints := 1;
16#F9C0:
newCodepoints[0] := 16#71CE;
numberOfCodepoints := 1;
16#F9C1:
newCodepoints[0] := 16#7642;
numberOfCodepoints := 1;
16#F9C2:
newCodepoints[0] := 16#84FC;
numberOfCodepoints := 1;
16#F9C3:
newCodepoints[0] := 16#907C;
numberOfCodepoints := 1;
16#F9C4:
newCodepoints[0] := 16#9F8D;
numberOfCodepoints := 1;
16#F9C5:
newCodepoints[0] := 16#6688;
numberOfCodepoints := 1;
16#F9C6:
newCodepoints[0] := 16#962E;
numberOfCodepoints := 1;
16#F9C7:
newCodepoints[0] := 16#5289;
numberOfCodepoints := 1;
16#F9C8:
newCodepoints[0] := 16#677B;
numberOfCodepoints := 1;
16#F9C9:
newCodepoints[0] := 16#67F3;
numberOfCodepoints := 1;
16#F9CA:
newCodepoints[0] := 16#6D41;
numberOfCodepoints := 1;
16#F9CB:
newCodepoints[0] := 16#6E9C;
numberOfCodepoints := 1;
16#F9CC:
newCodepoints[0] := 16#7409;
numberOfCodepoints := 1;
16#F9CD:
newCodepoints[0] := 16#7559;
numberOfCodepoints := 1;
16#F9CE:
newCodepoints[0] := 16#786B;
numberOfCodepoints := 1;
16#F9CF:
newCodepoints[0] := 16#7D10;
numberOfCodepoints := 1;
16#F9D0:
newCodepoints[0] := 16#985E;
numberOfCodepoints := 1;
16#F9D1:
newCodepoints[0] := 16#516D;
numberOfCodepoints := 1;
16#F9D2:
newCodepoints[0] := 16#622E;
numberOfCodepoints := 1;
16#F9D3:
newCodepoints[0] := 16#9678;
numberOfCodepoints := 1;
16#F9D4:
newCodepoints[0] := 16#502B;
numberOfCodepoints := 1;
16#F9D5:
newCodepoints[0] := 16#5D19;
numberOfCodepoints := 1;
16#F9D6:
newCodepoints[0] := 16#6DEA;
numberOfCodepoints := 1;
16#F9D7:
newCodepoints[0] := 16#8F2A;
numberOfCodepoints := 1;
16#F9D8:
newCodepoints[0] := 16#5F8B;
numberOfCodepoints := 1;
16#F9D9:
newCodepoints[0] := 16#6144;
numberOfCodepoints := 1;
16#F9DA:
newCodepoints[0] := 16#6817;
numberOfCodepoints := 1;
16#F9DB:
newCodepoints[0] := 16#7387;
numberOfCodepoints := 1;
16#F9DC:
newCodepoints[0] := 16#9686;
numberOfCodepoints := 1;
16#F9DD:
newCodepoints[0] := 16#5229;
numberOfCodepoints := 1;
16#F9DE:
newCodepoints[0] := 16#540F;
numberOfCodepoints := 1;
16#F9DF:
newCodepoints[0] := 16#5C65;
numberOfCodepoints := 1;
16#F9E0:
newCodepoints[0] := 16#6613;
numberOfCodepoints := 1;
16#F9E1:
newCodepoints[0] := 16#674E;
numberOfCodepoints := 1;
16#F9E2:
newCodepoints[0] := 16#68A8;
numberOfCodepoints := 1;
16#F9E3:
newCodepoints[0] := 16#6CE5;
numberOfCodepoints := 1;
16#F9E4:
newCodepoints[0] := 16#7406;
numberOfCodepoints := 1;
16#F9E5:
newCodepoints[0] := 16#75E2;
numberOfCodepoints := 1;
16#F9E6:
newCodepoints[0] := 16#7F79;
numberOfCodepoints := 1;
16#F9E7:
newCodepoints[0] := 16#88CF;
numberOfCodepoints := 1;
16#F9E8:
newCodepoints[0] := 16#88E1;
numberOfCodepoints := 1;
16#F9E9:
newCodepoints[0] := 16#91CC;
numberOfCodepoints := 1;
16#F9EA:
newCodepoints[0] := 16#96E2;
numberOfCodepoints := 1;
16#F9EB:
newCodepoints[0] := 16#533F;
numberOfCodepoints := 1;
16#F9EC:
newCodepoints[0] := 16#6EBA;
numberOfCodepoints := 1;
16#F9ED:
newCodepoints[0] := 16#541D;
numberOfCodepoints := 1;
16#F9EE:
newCodepoints[0] := 16#71D0;
numberOfCodepoints := 1;
16#F9EF:
newCodepoints[0] := 16#7498;
numberOfCodepoints := 1;
16#F9F0:
newCodepoints[0] := 16#85FA;
numberOfCodepoints := 1;
16#F9F1:
newCodepoints[0] := 16#96A3;
numberOfCodepoints := 1;
16#F9F2:
newCodepoints[0] := 16#9C57;
numberOfCodepoints := 1;
16#F9F3:
newCodepoints[0] := 16#9E9F;
numberOfCodepoints := 1;
16#F9F4:
newCodepoints[0] := 16#6797;
numberOfCodepoints := 1;
16#F9F5:
newCodepoints[0] := 16#6DCB;
numberOfCodepoints := 1;
16#F9F6:
newCodepoints[0] := 16#81E8;
numberOfCodepoints := 1;
16#F9F7:
newCodepoints[0] := 16#7ACB;
numberOfCodepoints := 1;
16#F9F8:
newCodepoints[0] := 16#7B20;
numberOfCodepoints := 1;
16#F9F9:
newCodepoints[0] := 16#7C92;
numberOfCodepoints := 1;
16#F9FA:
newCodepoints[0] := 16#72C0;
numberOfCodepoints := 1;
16#F9FB:
newCodepoints[0] := 16#7099;
numberOfCodepoints := 1;
16#F9FC:
newCodepoints[0] := 16#8B58;
numberOfCodepoints := 1;
16#F9FD:
newCodepoints[0] := 16#4EC0;
numberOfCodepoints := 1;
16#F9FE:
newCodepoints[0] := 16#8336;
numberOfCodepoints := 1;
16#F9FF:
newCodepoints[0] := 16#523A;
numberOfCodepoints := 1;
16#FA00:
newCodepoints[0] := 16#5207;
numberOfCodepoints := 1;
16#FA01:
newCodepoints[0] := 16#5EA6;
numberOfCodepoints := 1;
16#FA02:
newCodepoints[0] := 16#62D3;
numberOfCodepoints := 1;
16#FA03:
newCodepoints[0] := 16#7CD6;
numberOfCodepoints := 1;
16#FA04:
newCodepoints[0] := 16#5B85;
numberOfCodepoints := 1;
16#FA05:
newCodepoints[0] := 16#6D1E;
numberOfCodepoints := 1;
16#FA06:
newCodepoints[0] := 16#66B4;
numberOfCodepoints := 1;
16#FA07:
newCodepoints[0] := 16#8F3B;
numberOfCodepoints := 1;
16#FA08:
newCodepoints[0] := 16#884C;
numberOfCodepoints := 1;
16#FA09:
newCodepoints[0] := 16#964D;
numberOfCodepoints := 1;
16#FA0A:
newCodepoints[0] := 16#898B;
numberOfCodepoints := 1;
16#FA0B:
newCodepoints[0] := 16#5ED3;
numberOfCodepoints := 1;
16#FA0C:
newCodepoints[0] := 16#5140;
numberOfCodepoints := 1;
16#FA0D:
newCodepoints[0] := 16#55C0;
numberOfCodepoints := 1;
16#FA10:
newCodepoints[0] := 16#585A;
numberOfCodepoints := 1;
16#FA12:
newCodepoints[0] := 16#6674;
numberOfCodepoints := 1;
16#FA15:
newCodepoints[0] := 16#51DE;
numberOfCodepoints := 1;
16#FA16:
newCodepoints[0] := 16#732A;
numberOfCodepoints := 1;
16#FA17:
newCodepoints[0] := 16#76CA;
numberOfCodepoints := 1;
16#FA18:
newCodepoints[0] := 16#793C;
numberOfCodepoints := 1;
16#FA19:
newCodepoints[0] := 16#795E;
numberOfCodepoints := 1;
16#FA1A:
newCodepoints[0] := 16#7965;
numberOfCodepoints := 1;
16#FA1B:
newCodepoints[0] := 16#798F;
numberOfCodepoints := 1;
16#FA1C:
newCodepoints[0] := 16#9756;
numberOfCodepoints := 1;
16#FA1D:
newCodepoints[0] := 16#7CBE;
numberOfCodepoints := 1;
16#FA1E:
newCodepoints[0] := 16#7FBD;
numberOfCodepoints := 1;
16#FA20:
newCodepoints[0] := 16#8612;
numberOfCodepoints := 1;
16#FA22:
newCodepoints[0] := 16#8AF8;
numberOfCodepoints := 1;
16#FA25:
newCodepoints[0] := 16#9038;
numberOfCodepoints := 1;
16#FA26:
newCodepoints[0] := 16#90FD;
numberOfCodepoints := 1;
16#FA2A:
newCodepoints[0] := 16#98EF;
numberOfCodepoints := 1;
16#FA2B:
newCodepoints[0] := 16#98FC;
numberOfCodepoints := 1;
16#FA2C:
newCodepoints[0] := 16#9928;
numberOfCodepoints := 1;
16#FA2D:
newCodepoints[0] := 16#9DB4;
numberOfCodepoints := 1;
16#FA2E:
newCodepoints[0] := 16#90DE;
numberOfCodepoints := 1;
16#FA2F:
newCodepoints[0] := 16#96B7;
numberOfCodepoints := 1;
16#FA30:
newCodepoints[0] := 16#4FAE;
numberOfCodepoints := 1;
16#FA31:
newCodepoints[0] := 16#50E7;
numberOfCodepoints := 1;
16#FA32:
newCodepoints[0] := 16#514D;
numberOfCodepoints := 1;
16#FA33:
newCodepoints[0] := 16#52C9;
numberOfCodepoints := 1;
16#FA34:
newCodepoints[0] := 16#52E4;
numberOfCodepoints := 1;
16#FA35:
newCodepoints[0] := 16#5351;
numberOfCodepoints := 1;
16#FA36:
newCodepoints[0] := 16#559D;
numberOfCodepoints := 1;
16#FA37:
newCodepoints[0] := 16#5606;
numberOfCodepoints := 1;
16#FA38:
newCodepoints[0] := 16#5668;
numberOfCodepoints := 1;
16#FA39:
newCodepoints[0] := 16#5840;
numberOfCodepoints := 1;
16#FA3A:
newCodepoints[0] := 16#58A8;
numberOfCodepoints := 1;
16#FA3B:
newCodepoints[0] := 16#5C64;
numberOfCodepoints := 1;
16#FA3C:
newCodepoints[0] := 16#5C6E;
numberOfCodepoints := 1;
16#FA3D:
newCodepoints[0] := 16#6094;
numberOfCodepoints := 1;
16#FA3E:
newCodepoints[0] := 16#6168;
numberOfCodepoints := 1;
16#FA3F:
newCodepoints[0] := 16#618E;
numberOfCodepoints := 1;
16#FA40:
newCodepoints[0] := 16#61F2;
numberOfCodepoints := 1;
16#FA41:
newCodepoints[0] := 16#654F;
numberOfCodepoints := 1;
16#FA42:
newCodepoints[0] := 16#65E2;
numberOfCodepoints := 1;
16#FA43:
newCodepoints[0] := 16#6691;
numberOfCodepoints := 1;
16#FA44:
newCodepoints[0] := 16#6885;
numberOfCodepoints := 1;
16#FA45:
newCodepoints[0] := 16#6D77;
numberOfCodepoints := 1;
16#FA46:
newCodepoints[0] := 16#6E1A;
numberOfCodepoints := 1;
16#FA47:
newCodepoints[0] := 16#6F22;
numberOfCodepoints := 1;
16#FA48:
newCodepoints[0] := 16#716E;
numberOfCodepoints := 1;
16#FA49:
newCodepoints[0] := 16#722B;
numberOfCodepoints := 1;
16#FA4A:
newCodepoints[0] := 16#7422;
numberOfCodepoints := 1;
16#FA4B:
newCodepoints[0] := 16#7891;
numberOfCodepoints := 1;
16#FA4C:
newCodepoints[0] := 16#793E;
numberOfCodepoints := 1;
16#FA4D:
newCodepoints[0] := 16#7949;
numberOfCodepoints := 1;
16#FA4E:
newCodepoints[0] := 16#7948;
numberOfCodepoints := 1;
16#FA4F:
newCodepoints[0] := 16#7950;
numberOfCodepoints := 1;
16#FA50:
newCodepoints[0] := 16#7956;
numberOfCodepoints := 1;
16#FA51:
newCodepoints[0] := 16#795D;
numberOfCodepoints := 1;
16#FA52:
newCodepoints[0] := 16#798D;
numberOfCodepoints := 1;
16#FA53:
newCodepoints[0] := 16#798E;
numberOfCodepoints := 1;
16#FA54:
newCodepoints[0] := 16#7A40;
numberOfCodepoints := 1;
16#FA55:
newCodepoints[0] := 16#7A81;
numberOfCodepoints := 1;
16#FA56:
newCodepoints[0] := 16#7BC0;
numberOfCodepoints := 1;
16#FA57:
newCodepoints[0] := 16#7DF4;
numberOfCodepoints := 1;
16#FA58:
newCodepoints[0] := 16#7E09;
numberOfCodepoints := 1;
16#FA59:
newCodepoints[0] := 16#7E41;
numberOfCodepoints := 1;
16#FA5A:
newCodepoints[0] := 16#7F72;
numberOfCodepoints := 1;
16#FA5B:
newCodepoints[0] := 16#8005;
numberOfCodepoints := 1;
16#FA5C:
newCodepoints[0] := 16#81ED;
numberOfCodepoints := 1;
16#FA5D:
newCodepoints[0] := 16#8279;
numberOfCodepoints := 1;
16#FA5E:
newCodepoints[0] := 16#8279;
numberOfCodepoints := 1;
16#FA5F:
newCodepoints[0] := 16#8457;
numberOfCodepoints := 1;
16#FA60:
newCodepoints[0] := 16#8910;
numberOfCodepoints := 1;
16#FA61:
newCodepoints[0] := 16#8996;
numberOfCodepoints := 1;
16#FA62:
newCodepoints[0] := 16#8B01;
numberOfCodepoints := 1;
16#FA63:
newCodepoints[0] := 16#8B39;
numberOfCodepoints := 1;
16#FA64:
newCodepoints[0] := 16#8CD3;
numberOfCodepoints := 1;
16#FA65:
newCodepoints[0] := 16#8D08;
numberOfCodepoints := 1;
16#FA66:
newCodepoints[0] := 16#8FB6;
numberOfCodepoints := 1;
16#FA67:
newCodepoints[0] := 16#9038;
numberOfCodepoints := 1;
16#FA68:
newCodepoints[0] := 16#96E3;
numberOfCodepoints := 1;
16#FA69:
newCodepoints[0] := 16#97FF;
numberOfCodepoints := 1;
16#FA6A:
newCodepoints[0] := 16#983B;
numberOfCodepoints := 1;
16#FA6B:
newCodepoints[0] := 16#6075;
numberOfCodepoints := 1;
16#FA6C:
newCodepoints[0] := 16#242EE;
numberOfCodepoints := 1;
16#FA6D:
newCodepoints[0] := 16#8218;
numberOfCodepoints := 1;
16#FA70:
newCodepoints[0] := 16#4E26;
numberOfCodepoints := 1;
16#FA71:
newCodepoints[0] := 16#51B5;
numberOfCodepoints := 1;
16#FA72:
newCodepoints[0] := 16#5168;
numberOfCodepoints := 1;
16#FA73:
newCodepoints[0] := 16#4F80;
numberOfCodepoints := 1;
16#FA74:
newCodepoints[0] := 16#5145;
numberOfCodepoints := 1;
16#FA75:
newCodepoints[0] := 16#5180;
numberOfCodepoints := 1;
16#FA76:
newCodepoints[0] := 16#52C7;
numberOfCodepoints := 1;
16#FA77:
newCodepoints[0] := 16#52FA;
numberOfCodepoints := 1;
16#FA78:
newCodepoints[0] := 16#559D;
numberOfCodepoints := 1;
16#FA79:
newCodepoints[0] := 16#5555;
numberOfCodepoints := 1;
16#FA7A:
newCodepoints[0] := 16#5599;
numberOfCodepoints := 1;
16#FA7B:
newCodepoints[0] := 16#55E2;
numberOfCodepoints := 1;
16#FA7C:
newCodepoints[0] := 16#585A;
numberOfCodepoints := 1;
16#FA7D:
newCodepoints[0] := 16#58B3;
numberOfCodepoints := 1;
16#FA7E:
newCodepoints[0] := 16#5944;
numberOfCodepoints := 1;
16#FA7F:
newCodepoints[0] := 16#5954;
numberOfCodepoints := 1;
16#FA80:
newCodepoints[0] := 16#5A62;
numberOfCodepoints := 1;
16#FA81:
newCodepoints[0] := 16#5B28;
numberOfCodepoints := 1;
16#FA82:
newCodepoints[0] := 16#5ED2;
numberOfCodepoints := 1;
16#FA83:
newCodepoints[0] := 16#5ED9;
numberOfCodepoints := 1;
16#FA84:
newCodepoints[0] := 16#5F69;
numberOfCodepoints := 1;
16#FA85:
newCodepoints[0] := 16#5FAD;
numberOfCodepoints := 1;
16#FA86:
newCodepoints[0] := 16#60D8;
numberOfCodepoints := 1;
16#FA87:
newCodepoints[0] := 16#614E;
numberOfCodepoints := 1;
16#FA88:
newCodepoints[0] := 16#6108;
numberOfCodepoints := 1;
16#FA89:
newCodepoints[0] := 16#618E;
numberOfCodepoints := 1;
16#FA8A:
newCodepoints[0] := 16#6160;
numberOfCodepoints := 1;
16#FA8B:
newCodepoints[0] := 16#61F2;
numberOfCodepoints := 1;
16#FA8C:
newCodepoints[0] := 16#6234;
numberOfCodepoints := 1;
16#FA8D:
newCodepoints[0] := 16#63C4;
numberOfCodepoints := 1;
16#FA8E:
newCodepoints[0] := 16#641C;
numberOfCodepoints := 1;
16#FA8F:
newCodepoints[0] := 16#6452;
numberOfCodepoints := 1;
16#FA90:
newCodepoints[0] := 16#6556;
numberOfCodepoints := 1;
16#FA91:
newCodepoints[0] := 16#6674;
numberOfCodepoints := 1;
16#FA92:
newCodepoints[0] := 16#6717;
numberOfCodepoints := 1;
16#FA93:
newCodepoints[0] := 16#671B;
numberOfCodepoints := 1;
16#FA94:
newCodepoints[0] := 16#6756;
numberOfCodepoints := 1;
16#FA95:
newCodepoints[0] := 16#6B79;
numberOfCodepoints := 1;
16#FA96:
newCodepoints[0] := 16#6BBA;
numberOfCodepoints := 1;
16#FA97:
newCodepoints[0] := 16#6D41;
numberOfCodepoints := 1;
16#FA98:
newCodepoints[0] := 16#6EDB;
numberOfCodepoints := 1;
16#FA99:
newCodepoints[0] := 16#6ECB;
numberOfCodepoints := 1;
16#FA9A:
newCodepoints[0] := 16#6F22;
numberOfCodepoints := 1;
16#FA9B:
newCodepoints[0] := 16#701E;
numberOfCodepoints := 1;
16#FA9C:
newCodepoints[0] := 16#716E;
numberOfCodepoints := 1;
16#FA9D:
newCodepoints[0] := 16#77A7;
numberOfCodepoints := 1;
16#FA9E:
newCodepoints[0] := 16#7235;
numberOfCodepoints := 1;
16#FA9F:
newCodepoints[0] := 16#72AF;
numberOfCodepoints := 1;
16#FAA0:
newCodepoints[0] := 16#732A;
numberOfCodepoints := 1;
16#FAA1:
newCodepoints[0] := 16#7471;
numberOfCodepoints := 1;
16#FAA2:
newCodepoints[0] := 16#7506;
numberOfCodepoints := 1;
16#FAA3:
newCodepoints[0] := 16#753B;
numberOfCodepoints := 1;
16#FAA4:
newCodepoints[0] := 16#761D;
numberOfCodepoints := 1;
16#FAA5:
newCodepoints[0] := 16#761F;
numberOfCodepoints := 1;
16#FAA6:
newCodepoints[0] := 16#76CA;
numberOfCodepoints := 1;
16#FAA7:
newCodepoints[0] := 16#76DB;
numberOfCodepoints := 1;
16#FAA8:
newCodepoints[0] := 16#76F4;
numberOfCodepoints := 1;
16#FAA9:
newCodepoints[0] := 16#774A;
numberOfCodepoints := 1;
16#FAAA:
newCodepoints[0] := 16#7740;
numberOfCodepoints := 1;
16#FAAB:
newCodepoints[0] := 16#78CC;
numberOfCodepoints := 1;
16#FAAC:
newCodepoints[0] := 16#7AB1;
numberOfCodepoints := 1;
16#FAAD:
newCodepoints[0] := 16#7BC0;
numberOfCodepoints := 1;
16#FAAE:
newCodepoints[0] := 16#7C7B;
numberOfCodepoints := 1;
16#FAAF:
newCodepoints[0] := 16#7D5B;
numberOfCodepoints := 1;
16#FAB0:
newCodepoints[0] := 16#7DF4;
numberOfCodepoints := 1;
16#FAB1:
newCodepoints[0] := 16#7F3E;
numberOfCodepoints := 1;
16#FAB2:
newCodepoints[0] := 16#8005;
numberOfCodepoints := 1;
16#FAB3:
newCodepoints[0] := 16#8352;
numberOfCodepoints := 1;
16#FAB4:
newCodepoints[0] := 16#83EF;
numberOfCodepoints := 1;
16#FAB5:
newCodepoints[0] := 16#8779;
numberOfCodepoints := 1;
16#FAB6:
newCodepoints[0] := 16#8941;
numberOfCodepoints := 1;
16#FAB7:
newCodepoints[0] := 16#8986;
numberOfCodepoints := 1;
16#FAB8:
newCodepoints[0] := 16#8996;
numberOfCodepoints := 1;
16#FAB9:
newCodepoints[0] := 16#8ABF;
numberOfCodepoints := 1;
16#FABA:
newCodepoints[0] := 16#8AF8;
numberOfCodepoints := 1;
16#FABB:
newCodepoints[0] := 16#8ACB;
numberOfCodepoints := 1;
16#FABC:
newCodepoints[0] := 16#8B01;
numberOfCodepoints := 1;
16#FABD:
newCodepoints[0] := 16#8AFE;
numberOfCodepoints := 1;
16#FABE:
newCodepoints[0] := 16#8AED;
numberOfCodepoints := 1;
16#FABF:
newCodepoints[0] := 16#8B39;
numberOfCodepoints := 1;
16#FAC0:
newCodepoints[0] := 16#8B8A;
numberOfCodepoints := 1;
16#FAC1:
newCodepoints[0] := 16#8D08;
numberOfCodepoints := 1;
16#FAC2:
newCodepoints[0] := 16#8F38;
numberOfCodepoints := 1;
16#FAC3:
newCodepoints[0] := 16#9072;
numberOfCodepoints := 1;
16#FAC4:
newCodepoints[0] := 16#9199;
numberOfCodepoints := 1;
16#FAC5:
newCodepoints[0] := 16#9276;
numberOfCodepoints := 1;
16#FAC6:
newCodepoints[0] := 16#967C;
numberOfCodepoints := 1;
16#FAC7:
newCodepoints[0] := 16#96E3;
numberOfCodepoints := 1;
16#FAC8:
newCodepoints[0] := 16#9756;
numberOfCodepoints := 1;
16#FAC9:
newCodepoints[0] := 16#97DB;
numberOfCodepoints := 1;
16#FACA:
newCodepoints[0] := 16#97FF;
numberOfCodepoints := 1;
16#FACB:
newCodepoints[0] := 16#980B;
numberOfCodepoints := 1;
16#FACC:
newCodepoints[0] := 16#983B;
numberOfCodepoints := 1;
16#FACD:
newCodepoints[0] := 16#9B12;
numberOfCodepoints := 1;
16#FACE:
newCodepoints[0] := 16#9F9C;
numberOfCodepoints := 1;
16#FACF:
newCodepoints[0] := 16#2284A;
numberOfCodepoints := 1;
16#FAD0:
newCodepoints[0] := 16#22844;
numberOfCodepoints := 1;
16#FAD1:
newCodepoints[0] := 16#233D5;
numberOfCodepoints := 1;
16#FAD2:
newCodepoints[0] := 16#3B9D;
numberOfCodepoints := 1;
16#FAD3:
newCodepoints[0] := 16#4018;
numberOfCodepoints := 1;
16#FAD4:
newCodepoints[0] := 16#4039;
numberOfCodepoints := 1;
16#FAD5:
newCodepoints[0] := 16#25249;
numberOfCodepoints := 1;
16#FAD6:
newCodepoints[0] := 16#25CD0;
numberOfCodepoints := 1;
16#FAD7:
newCodepoints[0] := 16#27ED3;
numberOfCodepoints := 1;
16#FAD8:
newCodepoints[0] := 16#9F43;
numberOfCodepoints := 1;
16#FAD9:
newCodepoints[0] := 16#9F8E;
numberOfCodepoints := 1;
16#FB1D:
newCodepoints[0] := 16#05D9;
newCodepoints[1] := 16#05B4;
numberOfCodepoints := 2;
16#FB1F:
newCodepoints[0] := 16#05F2;
newCodepoints[1] := 16#05B7;
numberOfCodepoints := 2;
16#FB2A:
newCodepoints[0] := 16#05E9;
newCodepoints[1] := 16#05C1;
numberOfCodepoints := 2;
16#FB2B:
newCodepoints[0] := 16#05E9;
newCodepoints[1] := 16#05C2;
numberOfCodepoints := 2;
16#FB2C:
newCodepoints[0] := 16#FB49;
newCodepoints[1] := 16#05C1;
numberOfCodepoints := 2;
16#FB2D:
newCodepoints[0] := 16#FB49;
newCodepoints[1] := 16#05C2;
numberOfCodepoints := 2;
16#FB2E:
newCodepoints[0] := 16#05D0;
newCodepoints[1] := 16#05B7;
numberOfCodepoints := 2;
16#FB2F:
newCodepoints[0] := 16#05D0;
newCodepoints[1] := 16#05B8;
numberOfCodepoints := 2;
16#FB30:
newCodepoints[0] := 16#05D0;
newCodepoints[1] := 16#05BC;
numberOfCodepoints := 2;
16#FB31:
newCodepoints[0] := 16#05D1;
newCodepoints[1] := 16#05BC;
numberOfCodepoints := 2;
16#FB32:
newCodepoints[0] := 16#05D2;
newCodepoints[1] := 16#05BC;
numberOfCodepoints := 2;
16#FB33:
newCodepoints[0] := 16#05D3;
newCodepoints[1] := 16#05BC;
numberOfCodepoints := 2;
16#FB34:
newCodepoints[0] := 16#05D4;
newCodepoints[1] := 16#05BC;
numberOfCodepoints := 2;
16#FB35:
newCodepoints[0] := 16#05D5;
newCodepoints[1] := 16#05BC;
numberOfCodepoints := 2;
16#FB36:
newCodepoints[0] := 16#05D6;
newCodepoints[1] := 16#05BC;
numberOfCodepoints := 2;
16#FB38:
newCodepoints[0] := 16#05D8;
newCodepoints[1] := 16#05BC;
numberOfCodepoints := 2;
16#FB39:
newCodepoints[0] := 16#05D9;
newCodepoints[1] := 16#05BC;
numberOfCodepoints := 2;
16#FB3A:
newCodepoints[0] := 16#05DA;
newCodepoints[1] := 16#05BC;
numberOfCodepoints := 2;
16#FB3B:
newCodepoints[0] := 16#05DB;
newCodepoints[1] := 16#05BC;
numberOfCodepoints := 2;
16#FB3C:
newCodepoints[0] := 16#05DC;
newCodepoints[1] := 16#05BC;
numberOfCodepoints := 2;
16#FB3E:
newCodepoints[0] := 16#05DE;
newCodepoints[1] := 16#05BC;
numberOfCodepoints := 2;
16#FB40:
newCodepoints[0] := 16#05E0;
newCodepoints[1] := 16#05BC;
numberOfCodepoints := 2;
16#FB41:
newCodepoints[0] := 16#05E1;
newCodepoints[1] := 16#05BC;
numberOfCodepoints := 2;
16#FB43:
newCodepoints[0] := 16#05E3;
newCodepoints[1] := 16#05BC;
numberOfCodepoints := 2;
16#FB44:
newCodepoints[0] := 16#05E4;
newCodepoints[1] := 16#05BC;
numberOfCodepoints := 2;
16#FB46:
newCodepoints[0] := 16#05E6;
newCodepoints[1] := 16#05BC;
numberOfCodepoints := 2;
16#FB47:
newCodepoints[0] := 16#05E7;
newCodepoints[1] := 16#05BC;
numberOfCodepoints := 2;
16#FB48:
newCodepoints[0] := 16#05E8;
newCodepoints[1] := 16#05BC;
numberOfCodepoints := 2;
16#FB49:
newCodepoints[0] := 16#05E9;
newCodepoints[1] := 16#05BC;
numberOfCodepoints := 2;
16#FB4A:
newCodepoints[0] := 16#05EA;
newCodepoints[1] := 16#05BC;
numberOfCodepoints := 2;
16#FB4B:
newCodepoints[0] := 16#05D5;
newCodepoints[1] := 16#05B9;
numberOfCodepoints := 2;
16#FB4C:
newCodepoints[0] := 16#05D1;
newCodepoints[1] := 16#05BF;
numberOfCodepoints := 2;
16#FB4D:
newCodepoints[0] := 16#05DB;
newCodepoints[1] := 16#05BF;
numberOfCodepoints := 2;
16#FB4E:
newCodepoints[0] := 16#05E4;
newCodepoints[1] := 16#05BF;
numberOfCodepoints := 2;
16#105C9:
newCodepoints[0] := 16#105D2;
newCodepoints[1] := 16#0307;
numberOfCodepoints := 2;
16#105E4:
newCodepoints[0] := 16#105DA;
newCodepoints[1] := 16#0307;
numberOfCodepoints := 2;
16#1109A:
newCodepoints[0] := 16#11099;
newCodepoints[1] := 16#110BA;
numberOfCodepoints := 2;
16#1109C:
newCodepoints[0] := 16#1109B;
newCodepoints[1] := 16#110BA;
numberOfCodepoints := 2;
16#110AB:
newCodepoints[0] := 16#110A5;
newCodepoints[1] := 16#110BA;
numberOfCodepoints := 2;
16#1112E:
newCodepoints[0] := 16#11131;
newCodepoints[1] := 16#11127;
numberOfCodepoints := 2;
16#1112F:
newCodepoints[0] := 16#11132;
newCodepoints[1] := 16#11127;
numberOfCodepoints := 2;
16#1134B:
newCodepoints[0] := 16#11347;
newCodepoints[1] := 16#1133E;
numberOfCodepoints := 2;
16#1134C:
newCodepoints[0] := 16#11347;
newCodepoints[1] := 16#11357;
numberOfCodepoints := 2;
16#11383:
newCodepoints[0] := 16#11382;
newCodepoints[1] := 16#113C9;
numberOfCodepoints := 2;
16#11385:
newCodepoints[0] := 16#11384;
newCodepoints[1] := 16#113BB;
numberOfCodepoints := 2;
16#1138E:
newCodepoints[0] := 16#1138B;
newCodepoints[1] := 16#113C2;
numberOfCodepoints := 2;
16#11391:
newCodepoints[0] := 16#11390;
newCodepoints[1] := 16#113C9;
numberOfCodepoints := 2;
16#113C5:
newCodepoints[0] := 16#113C2;
newCodepoints[1] := 16#113C2;
numberOfCodepoints := 2;
16#113C7:
newCodepoints[0] := 16#113C2;
newCodepoints[1] := 16#113B8;
numberOfCodepoints := 2;
16#113C8:
newCodepoints[0] := 16#113C2;
newCodepoints[1] := 16#113C9;
numberOfCodepoints := 2;
16#114BB:
newCodepoints[0] := 16#114B9;
newCodepoints[1] := 16#114BA;
numberOfCodepoints := 2;
16#114BC:
newCodepoints[0] := 16#114B9;
newCodepoints[1] := 16#114B0;
numberOfCodepoints := 2;
16#114BE:
newCodepoints[0] := 16#114B9;
newCodepoints[1] := 16#114BD;
numberOfCodepoints := 2;
16#115BA:
newCodepoints[0] := 16#115B8;
newCodepoints[1] := 16#115AF;
numberOfCodepoints := 2;
16#115BB:
newCodepoints[0] := 16#115B9;
newCodepoints[1] := 16#115AF;
numberOfCodepoints := 2;
16#11938:
newCodepoints[0] := 16#11935;
newCodepoints[1] := 16#11930;
numberOfCodepoints := 2;
16#16121:
newCodepoints[0] := 16#1611E;
newCodepoints[1] := 16#1611E;
numberOfCodepoints := 2;
16#16122:
newCodepoints[0] := 16#1611E;
newCodepoints[1] := 16#16129;
numberOfCodepoints := 2;
16#16123:
newCodepoints[0] := 16#1611E;
newCodepoints[1] := 16#1611F;
numberOfCodepoints := 2;
16#16124:
newCodepoints[0] := 16#16129;
newCodepoints[1] := 16#1611F;
numberOfCodepoints := 2;
16#16125:
newCodepoints[0] := 16#1611E;
newCodepoints[1] := 16#16120;
numberOfCodepoints := 2;
16#16126:
newCodepoints[0] := 16#16121;
newCodepoints[1] := 16#1611F;
numberOfCodepoints := 2;
16#16127:
newCodepoints[0] := 16#16122;
newCodepoints[1] := 16#1611F;
numberOfCodepoints := 2;
16#16128:
newCodepoints[0] := 16#16121;
newCodepoints[1] := 16#16120;
numberOfCodepoints := 2;
16#16D68:
newCodepoints[0] := 16#16D67;
newCodepoints[1] := 16#16D67;
numberOfCodepoints := 2;
16#16D69:
newCodepoints[0] := 16#16D63;
newCodepoints[1] := 16#16D67;
numberOfCodepoints := 2;
16#16D6A:
newCodepoints[0] := 16#16D69;
newCodepoints[1] := 16#16D67;
numberOfCodepoints := 2;
16#1D15E:
newCodepoints[0] := 16#1D157;
newCodepoints[1] := 16#1D165;
numberOfCodepoints := 2;
16#1D15F:
newCodepoints[0] := 16#1D158;
newCodepoints[1] := 16#1D165;
numberOfCodepoints := 2;
16#1D160:
newCodepoints[0] := 16#1D15F;
newCodepoints[1] := 16#1D16E;
numberOfCodepoints := 2;
16#1D161:
newCodepoints[0] := 16#1D15F;
newCodepoints[1] := 16#1D16F;
numberOfCodepoints := 2;
16#1D162:
newCodepoints[0] := 16#1D15F;
newCodepoints[1] := 16#1D170;
numberOfCodepoints := 2;
16#1D163:
newCodepoints[0] := 16#1D15F;
newCodepoints[1] := 16#1D171;
numberOfCodepoints := 2;
16#1D164:
newCodepoints[0] := 16#1D15F;
newCodepoints[1] := 16#1D172;
numberOfCodepoints := 2;
16#1D1BB:
newCodepoints[0] := 16#1D1B9;
newCodepoints[1] := 16#1D165;
numberOfCodepoints := 2;
16#1D1BC:
newCodepoints[0] := 16#1D1BA;
newCodepoints[1] := 16#1D165;
numberOfCodepoints := 2;
16#1D1BD:
newCodepoints[0] := 16#1D1BB;
newCodepoints[1] := 16#1D16E;
numberOfCodepoints := 2;
16#1D1BE:
newCodepoints[0] := 16#1D1BC;
newCodepoints[1] := 16#1D16E;
numberOfCodepoints := 2;
16#1D1BF:
newCodepoints[0] := 16#1D1BB;
newCodepoints[1] := 16#1D16F;
numberOfCodepoints := 2;
16#1D1C0:
newCodepoints[0] := 16#1D1BC;
newCodepoints[1] := 16#1D16F;
numberOfCodepoints := 2;
16#2F800:
newCodepoints[0] := 16#4E3D;
numberOfCodepoints := 1;
16#2F801:
newCodepoints[0] := 16#4E38;
numberOfCodepoints := 1;
16#2F802:
newCodepoints[0] := 16#4E41;
numberOfCodepoints := 1;
16#2F803:
newCodepoints[0] := 16#20122;
numberOfCodepoints := 1;
16#2F804:
newCodepoints[0] := 16#4F60;
numberOfCodepoints := 1;
16#2F805:
newCodepoints[0] := 16#4FAE;
numberOfCodepoints := 1;
16#2F806:
newCodepoints[0] := 16#4FBB;
numberOfCodepoints := 1;
16#2F807:
newCodepoints[0] := 16#5002;
numberOfCodepoints := 1;
16#2F808:
newCodepoints[0] := 16#507A;
numberOfCodepoints := 1;
16#2F809:
newCodepoints[0] := 16#5099;
numberOfCodepoints := 1;
16#2F80A:
newCodepoints[0] := 16#50E7;
numberOfCodepoints := 1;
16#2F80B:
newCodepoints[0] := 16#50CF;
numberOfCodepoints := 1;
16#2F80C:
newCodepoints[0] := 16#349E;
numberOfCodepoints := 1;
16#2F80D:
newCodepoints[0] := 16#2063A;
numberOfCodepoints := 1;
16#2F80E:
newCodepoints[0] := 16#514D;
numberOfCodepoints := 1;
16#2F80F:
newCodepoints[0] := 16#5154;
numberOfCodepoints := 1;
16#2F810:
newCodepoints[0] := 16#5164;
numberOfCodepoints := 1;
16#2F811:
newCodepoints[0] := 16#5177;
numberOfCodepoints := 1;
16#2F812:
newCodepoints[0] := 16#2051C;
numberOfCodepoints := 1;
16#2F813:
newCodepoints[0] := 16#34B9;
numberOfCodepoints := 1;
16#2F814:
newCodepoints[0] := 16#5167;
numberOfCodepoints := 1;
16#2F815:
newCodepoints[0] := 16#518D;
numberOfCodepoints := 1;
16#2F816:
newCodepoints[0] := 16#2054B;
numberOfCodepoints := 1;
16#2F817:
newCodepoints[0] := 16#5197;
numberOfCodepoints := 1;
16#2F818:
newCodepoints[0] := 16#51A4;
numberOfCodepoints := 1;
16#2F819:
newCodepoints[0] := 16#4ECC;
numberOfCodepoints := 1;
16#2F81A:
newCodepoints[0] := 16#51AC;
numberOfCodepoints := 1;
16#2F81B:
newCodepoints[0] := 16#51B5;
numberOfCodepoints := 1;
16#2F81C:
newCodepoints[0] := 16#291DF;
numberOfCodepoints := 1;
16#2F81D:
newCodepoints[0] := 16#51F5;
numberOfCodepoints := 1;
16#2F81E:
newCodepoints[0] := 16#5203;
numberOfCodepoints := 1;
16#2F81F:
newCodepoints[0] := 16#34DF;
numberOfCodepoints := 1;
16#2F820:
newCodepoints[0] := 16#523B;
numberOfCodepoints := 1;
16#2F821:
newCodepoints[0] := 16#5246;
numberOfCodepoints := 1;
16#2F822:
newCodepoints[0] := 16#5272;
numberOfCodepoints := 1;
16#2F823:
newCodepoints[0] := 16#5277;
numberOfCodepoints := 1;
16#2F824:
newCodepoints[0] := 16#3515;
numberOfCodepoints := 1;
16#2F825:
newCodepoints[0] := 16#52C7;
numberOfCodepoints := 1;
16#2F826:
newCodepoints[0] := 16#52C9;
numberOfCodepoints := 1;
16#2F827:
newCodepoints[0] := 16#52E4;
numberOfCodepoints := 1;
16#2F828:
newCodepoints[0] := 16#52FA;
numberOfCodepoints := 1;
16#2F829:
newCodepoints[0] := 16#5305;
numberOfCodepoints := 1;
16#2F82A:
newCodepoints[0] := 16#5306;
numberOfCodepoints := 1;
16#2F82B:
newCodepoints[0] := 16#5317;
numberOfCodepoints := 1;
16#2F82C:
newCodepoints[0] := 16#5349;
numberOfCodepoints := 1;
16#2F82D:
newCodepoints[0] := 16#5351;
numberOfCodepoints := 1;
16#2F82E:
newCodepoints[0] := 16#535A;
numberOfCodepoints := 1;
16#2F82F:
newCodepoints[0] := 16#5373;
numberOfCodepoints := 1;
16#2F830:
newCodepoints[0] := 16#537D;
numberOfCodepoints := 1;
16#2F831:
newCodepoints[0] := 16#537F;
numberOfCodepoints := 1;
16#2F832:
newCodepoints[0] := 16#537F;
numberOfCodepoints := 1;
16#2F833:
newCodepoints[0] := 16#537F;
numberOfCodepoints := 1;
16#2F834:
newCodepoints[0] := 16#20A2C;
numberOfCodepoints := 1;
16#2F835:
newCodepoints[0] := 16#7070;
numberOfCodepoints := 1;
16#2F836:
newCodepoints[0] := 16#53CA;
numberOfCodepoints := 1;
16#2F837:
newCodepoints[0] := 16#53DF;
numberOfCodepoints := 1;
16#2F838:
newCodepoints[0] := 16#20B63;
numberOfCodepoints := 1;
16#2F839:
newCodepoints[0] := 16#53EB;
numberOfCodepoints := 1;
16#2F83A:
newCodepoints[0] := 16#53F1;
numberOfCodepoints := 1;
16#2F83B:
newCodepoints[0] := 16#5406;
numberOfCodepoints := 1;
16#2F83C:
newCodepoints[0] := 16#549E;
numberOfCodepoints := 1;
16#2F83D:
newCodepoints[0] := 16#5438;
numberOfCodepoints := 1;
16#2F83E:
newCodepoints[0] := 16#5448;
numberOfCodepoints := 1;
16#2F83F:
newCodepoints[0] := 16#5468;
numberOfCodepoints := 1;
16#2F840:
newCodepoints[0] := 16#54A2;
numberOfCodepoints := 1;
16#2F841:
newCodepoints[0] := 16#54F6;
numberOfCodepoints := 1;
16#2F842:
newCodepoints[0] := 16#5510;
numberOfCodepoints := 1;
16#2F843:
newCodepoints[0] := 16#5553;
numberOfCodepoints := 1;
16#2F844:
newCodepoints[0] := 16#5563;
numberOfCodepoints := 1;
16#2F845:
newCodepoints[0] := 16#5584;
numberOfCodepoints := 1;
16#2F846:
newCodepoints[0] := 16#5584;
numberOfCodepoints := 1;
16#2F847:
newCodepoints[0] := 16#5599;
numberOfCodepoints := 1;
16#2F848:
newCodepoints[0] := 16#55AB;
numberOfCodepoints := 1;
16#2F849:
newCodepoints[0] := 16#55B3;
numberOfCodepoints := 1;
16#2F84A:
newCodepoints[0] := 16#55C2;
numberOfCodepoints := 1;
16#2F84B:
newCodepoints[0] := 16#5716;
numberOfCodepoints := 1;
16#2F84C:
newCodepoints[0] := 16#5606;
numberOfCodepoints := 1;
16#2F84D:
newCodepoints[0] := 16#5717;
numberOfCodepoints := 1;
16#2F84E:
newCodepoints[0] := 16#5651;
numberOfCodepoints := 1;
16#2F84F:
newCodepoints[0] := 16#5674;
numberOfCodepoints := 1;
16#2F850:
newCodepoints[0] := 16#5207;
numberOfCodepoints := 1;
16#2F851:
newCodepoints[0] := 16#58EE;
numberOfCodepoints := 1;
16#2F852:
newCodepoints[0] := 16#57CE;
numberOfCodepoints := 1;
16#2F853:
newCodepoints[0] := 16#57F4;
numberOfCodepoints := 1;
16#2F854:
newCodepoints[0] := 16#580D;
numberOfCodepoints := 1;
16#2F855:
newCodepoints[0] := 16#578B;
numberOfCodepoints := 1;
16#2F856:
newCodepoints[0] := 16#5832;
numberOfCodepoints := 1;
16#2F857:
newCodepoints[0] := 16#5831;
numberOfCodepoints := 1;
16#2F858:
newCodepoints[0] := 16#58AC;
numberOfCodepoints := 1;
16#2F859:
newCodepoints[0] := 16#214E4;
numberOfCodepoints := 1;
16#2F85A:
newCodepoints[0] := 16#58F2;
numberOfCodepoints := 1;
16#2F85B:
newCodepoints[0] := 16#58F7;
numberOfCodepoints := 1;
16#2F85C:
newCodepoints[0] := 16#5906;
numberOfCodepoints := 1;
16#2F85D:
newCodepoints[0] := 16#591A;
numberOfCodepoints := 1;
16#2F85E:
newCodepoints[0] := 16#5922;
numberOfCodepoints := 1;
16#2F85F:
newCodepoints[0] := 16#5962;
numberOfCodepoints := 1;
16#2F860:
newCodepoints[0] := 16#216A8;
numberOfCodepoints := 1;
16#2F861:
newCodepoints[0] := 16#216EA;
numberOfCodepoints := 1;
16#2F862:
newCodepoints[0] := 16#59EC;
numberOfCodepoints := 1;
16#2F863:
newCodepoints[0] := 16#5A1B;
numberOfCodepoints := 1;
16#2F864:
newCodepoints[0] := 16#5A27;
numberOfCodepoints := 1;
16#2F865:
newCodepoints[0] := 16#59D8;
numberOfCodepoints := 1;
16#2F866:
newCodepoints[0] := 16#5A66;
numberOfCodepoints := 1;
16#2F867:
newCodepoints[0] := 16#36EE;
numberOfCodepoints := 1;
16#2F868:
newCodepoints[0] := 16#36FC;
numberOfCodepoints := 1;
16#2F869:
newCodepoints[0] := 16#5B08;
numberOfCodepoints := 1;
16#2F86A:
newCodepoints[0] := 16#5B3E;
numberOfCodepoints := 1;
16#2F86B:
newCodepoints[0] := 16#5B3E;
numberOfCodepoints := 1;
16#2F86C:
newCodepoints[0] := 16#219C8;
numberOfCodepoints := 1;
16#2F86D:
newCodepoints[0] := 16#5BC3;
numberOfCodepoints := 1;
16#2F86E:
newCodepoints[0] := 16#5BD8;
numberOfCodepoints := 1;
16#2F86F:
newCodepoints[0] := 16#5BE7;
numberOfCodepoints := 1;
16#2F870:
newCodepoints[0] := 16#5BF3;
numberOfCodepoints := 1;
16#2F871:
newCodepoints[0] := 16#21B18;
numberOfCodepoints := 1;
16#2F872:
newCodepoints[0] := 16#5BFF;
numberOfCodepoints := 1;
16#2F873:
newCodepoints[0] := 16#5C06;
numberOfCodepoints := 1;
16#2F874:
newCodepoints[0] := 16#5F53;
numberOfCodepoints := 1;
16#2F875:
newCodepoints[0] := 16#5C22;
numberOfCodepoints := 1;
16#2F876:
newCodepoints[0] := 16#3781;
numberOfCodepoints := 1;
16#2F877:
newCodepoints[0] := 16#5C60;
numberOfCodepoints := 1;
16#2F878:
newCodepoints[0] := 16#5C6E;
numberOfCodepoints := 1;
16#2F879:
newCodepoints[0] := 16#5CC0;
numberOfCodepoints := 1;
16#2F87A:
newCodepoints[0] := 16#5C8D;
numberOfCodepoints := 1;
16#2F87B:
newCodepoints[0] := 16#21DE4;
numberOfCodepoints := 1;
16#2F87C:
newCodepoints[0] := 16#5D43;
numberOfCodepoints := 1;
16#2F87D:
newCodepoints[0] := 16#21DE6;
numberOfCodepoints := 1;
16#2F87E:
newCodepoints[0] := 16#5D6E;
numberOfCodepoints := 1;
16#2F87F:
newCodepoints[0] := 16#5D6B;
numberOfCodepoints := 1;
16#2F880:
newCodepoints[0] := 16#5D7C;
numberOfCodepoints := 1;
16#2F881:
newCodepoints[0] := 16#5DE1;
numberOfCodepoints := 1;
16#2F882:
newCodepoints[0] := 16#5DE2;
numberOfCodepoints := 1;
16#2F883:
newCodepoints[0] := 16#382F;
numberOfCodepoints := 1;
16#2F884:
newCodepoints[0] := 16#5DFD;
numberOfCodepoints := 1;
16#2F885:
newCodepoints[0] := 16#5E28;
numberOfCodepoints := 1;
16#2F886:
newCodepoints[0] := 16#5E3D;
numberOfCodepoints := 1;
16#2F887:
newCodepoints[0] := 16#5E69;
numberOfCodepoints := 1;
16#2F888:
newCodepoints[0] := 16#3862;
numberOfCodepoints := 1;
16#2F889:
newCodepoints[0] := 16#22183;
numberOfCodepoints := 1;
16#2F88A:
newCodepoints[0] := 16#387C;
numberOfCodepoints := 1;
16#2F88B:
newCodepoints[0] := 16#5EB0;
numberOfCodepoints := 1;
16#2F88C:
newCodepoints[0] := 16#5EB3;
numberOfCodepoints := 1;
16#2F88D:
newCodepoints[0] := 16#5EB6;
numberOfCodepoints := 1;
16#2F88E:
newCodepoints[0] := 16#5ECA;
numberOfCodepoints := 1;
16#2F88F:
newCodepoints[0] := 16#2A392;
numberOfCodepoints := 1;
16#2F890:
newCodepoints[0] := 16#5EFE;
numberOfCodepoints := 1;
16#2F891:
newCodepoints[0] := 16#22331;
numberOfCodepoints := 1;
16#2F892:
newCodepoints[0] := 16#22331;
numberOfCodepoints := 1;
16#2F893:
newCodepoints[0] := 16#8201;
numberOfCodepoints := 1;
16#2F894:
newCodepoints[0] := 16#5F22;
numberOfCodepoints := 1;
16#2F895:
newCodepoints[0] := 16#5F22;
numberOfCodepoints := 1;
16#2F896:
newCodepoints[0] := 16#38C7;
numberOfCodepoints := 1;
16#2F897:
newCodepoints[0] := 16#232B8;
numberOfCodepoints := 1;
16#2F898:
newCodepoints[0] := 16#261DA;
numberOfCodepoints := 1;
16#2F899:
newCodepoints[0] := 16#5F62;
numberOfCodepoints := 1;
16#2F89A:
newCodepoints[0] := 16#5F6B;
numberOfCodepoints := 1;
16#2F89B:
newCodepoints[0] := 16#38E3;
numberOfCodepoints := 1;
16#2F89C:
newCodepoints[0] := 16#5F9A;
numberOfCodepoints := 1;
16#2F89D:
newCodepoints[0] := 16#5FCD;
numberOfCodepoints := 1;
16#2F89E:
newCodepoints[0] := 16#5FD7;
numberOfCodepoints := 1;
16#2F89F:
newCodepoints[0] := 16#5FF9;
numberOfCodepoints := 1;
16#2F8A0:
newCodepoints[0] := 16#6081;
numberOfCodepoints := 1;
16#2F8A1:
newCodepoints[0] := 16#393A;
numberOfCodepoints := 1;
16#2F8A2:
newCodepoints[0] := 16#391C;
numberOfCodepoints := 1;
16#2F8A3:
newCodepoints[0] := 16#6094;
numberOfCodepoints := 1;
16#2F8A4:
newCodepoints[0] := 16#226D4;
numberOfCodepoints := 1;
16#2F8A5:
newCodepoints[0] := 16#60C7;
numberOfCodepoints := 1;
16#2F8A6:
newCodepoints[0] := 16#6148;
numberOfCodepoints := 1;
16#2F8A7:
newCodepoints[0] := 16#614C;
numberOfCodepoints := 1;
16#2F8A8:
newCodepoints[0] := 16#614E;
numberOfCodepoints := 1;
16#2F8A9:
newCodepoints[0] := 16#614C;
numberOfCodepoints := 1;
16#2F8AA:
newCodepoints[0] := 16#617A;
numberOfCodepoints := 1;
16#2F8AB:
newCodepoints[0] := 16#618E;
numberOfCodepoints := 1;
16#2F8AC:
newCodepoints[0] := 16#61B2;
numberOfCodepoints := 1;
16#2F8AD:
newCodepoints[0] := 16#61A4;
numberOfCodepoints := 1;
16#2F8AE:
newCodepoints[0] := 16#61AF;
numberOfCodepoints := 1;
16#2F8AF:
newCodepoints[0] := 16#61DE;
numberOfCodepoints := 1;
16#2F8B0:
newCodepoints[0] := 16#61F2;
numberOfCodepoints := 1;
16#2F8B1:
newCodepoints[0] := 16#61F6;
numberOfCodepoints := 1;
16#2F8B2:
newCodepoints[0] := 16#6210;
numberOfCodepoints := 1;
16#2F8B3:
newCodepoints[0] := 16#621B;
numberOfCodepoints := 1;
16#2F8B4:
newCodepoints[0] := 16#625D;
numberOfCodepoints := 1;
16#2F8B5:
newCodepoints[0] := 16#62B1;
numberOfCodepoints := 1;
16#2F8B6:
newCodepoints[0] := 16#62D4;
numberOfCodepoints := 1;
16#2F8B7:
newCodepoints[0] := 16#6350;
numberOfCodepoints := 1;
16#2F8B8:
newCodepoints[0] := 16#22B0C;
numberOfCodepoints := 1;
16#2F8B9:
newCodepoints[0] := 16#633D;
numberOfCodepoints := 1;
16#2F8BA:
newCodepoints[0] := 16#62FC;
numberOfCodepoints := 1;
16#2F8BB:
newCodepoints[0] := 16#6368;
numberOfCodepoints := 1;
16#2F8BC:
newCodepoints[0] := 16#6383;
numberOfCodepoints := 1;
16#2F8BD:
newCodepoints[0] := 16#63E4;
numberOfCodepoints := 1;
16#2F8BE:
newCodepoints[0] := 16#22BF1;
numberOfCodepoints := 1;
16#2F8BF:
newCodepoints[0] := 16#6422;
numberOfCodepoints := 1;
16#2F8C0:
newCodepoints[0] := 16#63C5;
numberOfCodepoints := 1;
16#2F8C1:
newCodepoints[0] := 16#63A9;
numberOfCodepoints := 1;
16#2F8C2:
newCodepoints[0] := 16#3A2E;
numberOfCodepoints := 1;
16#2F8C3:
newCodepoints[0] := 16#6469;
numberOfCodepoints := 1;
16#2F8C4:
newCodepoints[0] := 16#647E;
numberOfCodepoints := 1;
16#2F8C5:
newCodepoints[0] := 16#649D;
numberOfCodepoints := 1;
16#2F8C6:
newCodepoints[0] := 16#6477;
numberOfCodepoints := 1;
16#2F8C7:
newCodepoints[0] := 16#3A6C;
numberOfCodepoints := 1;
16#2F8C8:
newCodepoints[0] := 16#654F;
numberOfCodepoints := 1;
16#2F8C9:
newCodepoints[0] := 16#656C;
numberOfCodepoints := 1;
16#2F8CA:
newCodepoints[0] := 16#2300A;
numberOfCodepoints := 1;
16#2F8CB:
newCodepoints[0] := 16#65E3;
numberOfCodepoints := 1;
16#2F8CC:
newCodepoints[0] := 16#66F8;
numberOfCodepoints := 1;
16#2F8CD:
newCodepoints[0] := 16#6649;
numberOfCodepoints := 1;
16#2F8CE:
newCodepoints[0] := 16#3B19;
numberOfCodepoints := 1;
16#2F8CF:
newCodepoints[0] := 16#6691;
numberOfCodepoints := 1;
16#2F8D0:
newCodepoints[0] := 16#3B08;
numberOfCodepoints := 1;
16#2F8D1:
newCodepoints[0] := 16#3AE4;
numberOfCodepoints := 1;
16#2F8D2:
newCodepoints[0] := 16#5192;
numberOfCodepoints := 1;
16#2F8D3:
newCodepoints[0] := 16#5195;
numberOfCodepoints := 1;
16#2F8D4:
newCodepoints[0] := 16#6700;
numberOfCodepoints := 1;
16#2F8D5:
newCodepoints[0] := 16#669C;
numberOfCodepoints := 1;
16#2F8D6:
newCodepoints[0] := 16#80AD;
numberOfCodepoints := 1;
16#2F8D7:
newCodepoints[0] := 16#43D9;
numberOfCodepoints := 1;
16#2F8D8:
newCodepoints[0] := 16#6717;
numberOfCodepoints := 1;
16#2F8D9:
newCodepoints[0] := 16#671B;
numberOfCodepoints := 1;
16#2F8DA:
newCodepoints[0] := 16#6721;
numberOfCodepoints := 1;
16#2F8DB:
newCodepoints[0] := 16#675E;
numberOfCodepoints := 1;
16#2F8DC:
newCodepoints[0] := 16#6753;
numberOfCodepoints := 1;
16#2F8DD:
newCodepoints[0] := 16#233C3;
numberOfCodepoints := 1;
16#2F8DE:
newCodepoints[0] := 16#3B49;
numberOfCodepoints := 1;
16#2F8DF:
newCodepoints[0] := 16#67FA;
numberOfCodepoints := 1;
16#2F8E0:
newCodepoints[0] := 16#6785;
numberOfCodepoints := 1;
16#2F8E1:
newCodepoints[0] := 16#6852;
numberOfCodepoints := 1;
16#2F8E2:
newCodepoints[0] := 16#6885;
numberOfCodepoints := 1;
16#2F8E3:
newCodepoints[0] := 16#2346D;
numberOfCodepoints := 1;
16#2F8E4:
newCodepoints[0] := 16#688E;
numberOfCodepoints := 1;
16#2F8E5:
newCodepoints[0] := 16#681F;
numberOfCodepoints := 1;
16#2F8E6:
newCodepoints[0] := 16#6914;
numberOfCodepoints := 1;
16#2F8E7:
newCodepoints[0] := 16#3B9D;
numberOfCodepoints := 1;
16#2F8E8:
newCodepoints[0] := 16#6942;
numberOfCodepoints := 1;
16#2F8E9:
newCodepoints[0] := 16#69A3;
numberOfCodepoints := 1;
16#2F8EA:
newCodepoints[0] := 16#69EA;
numberOfCodepoints := 1;
16#2F8EB:
newCodepoints[0] := 16#6AA8;
numberOfCodepoints := 1;
16#2F8EC:
newCodepoints[0] := 16#236A3;
numberOfCodepoints := 1;
16#2F8ED:
newCodepoints[0] := 16#6ADB;
numberOfCodepoints := 1;
16#2F8EE:
newCodepoints[0] := 16#3C18;
numberOfCodepoints := 1;
16#2F8EF:
newCodepoints[0] := 16#6B21;
numberOfCodepoints := 1;
16#2F8F0:
newCodepoints[0] := 16#238A7;
numberOfCodepoints := 1;
16#2F8F1:
newCodepoints[0] := 16#6B54;
numberOfCodepoints := 1;
16#2F8F2:
newCodepoints[0] := 16#3C4E;
numberOfCodepoints := 1;
16#2F8F3:
newCodepoints[0] := 16#6B72;
numberOfCodepoints := 1;
16#2F8F4:
newCodepoints[0] := 16#6B9F;
numberOfCodepoints := 1;
16#2F8F5:
newCodepoints[0] := 16#6BBA;
numberOfCodepoints := 1;
16#2F8F6:
newCodepoints[0] := 16#6BBB;
numberOfCodepoints := 1;
16#2F8F7:
newCodepoints[0] := 16#23A8D;
numberOfCodepoints := 1;
16#2F8F8:
newCodepoints[0] := 16#21D0B;
numberOfCodepoints := 1;
16#2F8F9:
newCodepoints[0] := 16#23AFA;
numberOfCodepoints := 1;
16#2F8FA:
newCodepoints[0] := 16#6C4E;
numberOfCodepoints := 1;
16#2F8FB:
newCodepoints[0] := 16#23CBC;
numberOfCodepoints := 1;
16#2F8FC:
newCodepoints[0] := 16#6CBF;
numberOfCodepoints := 1;
16#2F8FD:
newCodepoints[0] := 16#6CCD;
numberOfCodepoints := 1;
16#2F8FE:
newCodepoints[0] := 16#6C67;
numberOfCodepoints := 1;
16#2F8FF:
newCodepoints[0] := 16#6D16;
numberOfCodepoints := 1;
16#2F900:
newCodepoints[0] := 16#6D3E;
numberOfCodepoints := 1;
16#2F901:
newCodepoints[0] := 16#6D77;
numberOfCodepoints := 1;
16#2F902:
newCodepoints[0] := 16#6D41;
numberOfCodepoints := 1;
16#2F903:
newCodepoints[0] := 16#6D69;
numberOfCodepoints := 1;
16#2F904:
newCodepoints[0] := 16#6D78;
numberOfCodepoints := 1;
16#2F905:
newCodepoints[0] := 16#6D85;
numberOfCodepoints := 1;
16#2F906:
newCodepoints[0] := 16#23D1E;
numberOfCodepoints := 1;
16#2F907:
newCodepoints[0] := 16#6D34;
numberOfCodepoints := 1;
16#2F908:
newCodepoints[0] := 16#6E2F;
numberOfCodepoints := 1;
16#2F909:
newCodepoints[0] := 16#6E6E;
numberOfCodepoints := 1;
16#2F90A:
newCodepoints[0] := 16#3D33;
numberOfCodepoints := 1;
16#2F90B:
newCodepoints[0] := 16#6ECB;
numberOfCodepoints := 1;
16#2F90C:
newCodepoints[0] := 16#6EC7;
numberOfCodepoints := 1;
16#2F90D:
newCodepoints[0] := 16#23ED1;
numberOfCodepoints := 1;
16#2F90E:
newCodepoints[0] := 16#6DF9;
numberOfCodepoints := 1;
16#2F90F:
newCodepoints[0] := 16#6F6E;
numberOfCodepoints := 1;
16#2F910:
newCodepoints[0] := 16#23F5E;
numberOfCodepoints := 1;
16#2F911:
newCodepoints[0] := 16#23F8E;
numberOfCodepoints := 1;
16#2F912:
newCodepoints[0] := 16#6FC6;
numberOfCodepoints := 1;
16#2F913:
newCodepoints[0] := 16#7039;
numberOfCodepoints := 1;
16#2F914:
newCodepoints[0] := 16#701E;
numberOfCodepoints := 1;
16#2F915:
newCodepoints[0] := 16#701B;
numberOfCodepoints := 1;
16#2F916:
newCodepoints[0] := 16#3D96;
numberOfCodepoints := 1;
16#2F917:
newCodepoints[0] := 16#704A;
numberOfCodepoints := 1;
16#2F918:
newCodepoints[0] := 16#707D;
numberOfCodepoints := 1;
16#2F919:
newCodepoints[0] := 16#7077;
numberOfCodepoints := 1;
16#2F91A:
newCodepoints[0] := 16#70AD;
numberOfCodepoints := 1;
16#2F91B:
newCodepoints[0] := 16#20525;
numberOfCodepoints := 1;
16#2F91C:
newCodepoints[0] := 16#7145;
numberOfCodepoints := 1;
16#2F91D:
newCodepoints[0] := 16#24263;
numberOfCodepoints := 1;
16#2F91E:
newCodepoints[0] := 16#719C;
numberOfCodepoints := 1;
16#2F91F:
newCodepoints[0] := 16#243AB;
numberOfCodepoints := 1;
16#2F920:
newCodepoints[0] := 16#7228;
numberOfCodepoints := 1;
16#2F921:
newCodepoints[0] := 16#7235;
numberOfCodepoints := 1;
16#2F922:
newCodepoints[0] := 16#7250;
numberOfCodepoints := 1;
16#2F923:
newCodepoints[0] := 16#24608;
numberOfCodepoints := 1;
16#2F924:
newCodepoints[0] := 16#7280;
numberOfCodepoints := 1;
16#2F925:
newCodepoints[0] := 16#7295;
numberOfCodepoints := 1;
16#2F926:
newCodepoints[0] := 16#24735;
numberOfCodepoints := 1;
16#2F927:
newCodepoints[0] := 16#24814;
numberOfCodepoints := 1;
16#2F928:
newCodepoints[0] := 16#737A;
numberOfCodepoints := 1;
16#2F929:
newCodepoints[0] := 16#738B;
numberOfCodepoints := 1;
16#2F92A:
newCodepoints[0] := 16#3EAC;
numberOfCodepoints := 1;
16#2F92B:
newCodepoints[0] := 16#73A5;
numberOfCodepoints := 1;
16#2F92C:
newCodepoints[0] := 16#3EB8;
numberOfCodepoints := 1;
16#2F92D:
newCodepoints[0] := 16#3EB8;
numberOfCodepoints := 1;
16#2F92E:
newCodepoints[0] := 16#7447;
numberOfCodepoints := 1;
16#2F92F:
newCodepoints[0] := 16#745C;
numberOfCodepoints := 1;
16#2F930:
newCodepoints[0] := 16#7471;
numberOfCodepoints := 1;
16#2F931:
newCodepoints[0] := 16#7485;
numberOfCodepoints := 1;
16#2F932:
newCodepoints[0] := 16#74CA;
numberOfCodepoints := 1;
16#2F933:
newCodepoints[0] := 16#3F1B;
numberOfCodepoints := 1;
16#2F934:
newCodepoints[0] := 16#7524;
numberOfCodepoints := 1;
16#2F935:
newCodepoints[0] := 16#24C36;
numberOfCodepoints := 1;
16#2F936:
newCodepoints[0] := 16#753E;
numberOfCodepoints := 1;
16#2F937:
newCodepoints[0] := 16#24C92;
numberOfCodepoints := 1;
16#2F938:
newCodepoints[0] := 16#7570;
numberOfCodepoints := 1;
16#2F939:
newCodepoints[0] := 16#2219F;
numberOfCodepoints := 1;
16#2F93A:
newCodepoints[0] := 16#7610;
numberOfCodepoints := 1;
16#2F93B:
newCodepoints[0] := 16#24FA1;
numberOfCodepoints := 1;
16#2F93C:
newCodepoints[0] := 16#24FB8;
numberOfCodepoints := 1;
16#2F93D:
newCodepoints[0] := 16#25044;
numberOfCodepoints := 1;
16#2F93E:
newCodepoints[0] := 16#3FFC;
numberOfCodepoints := 1;
16#2F93F:
newCodepoints[0] := 16#4008;
numberOfCodepoints := 1;
16#2F940:
newCodepoints[0] := 16#76F4;
numberOfCodepoints := 1;
16#2F941:
newCodepoints[0] := 16#250F3;
numberOfCodepoints := 1;
16#2F942:
newCodepoints[0] := 16#250F2;
numberOfCodepoints := 1;
16#2F943:
newCodepoints[0] := 16#25119;
numberOfCodepoints := 1;
16#2F944:
newCodepoints[0] := 16#25133;
numberOfCodepoints := 1;
16#2F945:
newCodepoints[0] := 16#771E;
numberOfCodepoints := 1;
16#2F946:
newCodepoints[0] := 16#771F;
numberOfCodepoints := 1;
16#2F947:
newCodepoints[0] := 16#771F;
numberOfCodepoints := 1;
16#2F948:
newCodepoints[0] := 16#774A;
numberOfCodepoints := 1;
16#2F949:
newCodepoints[0] := 16#4039;
numberOfCodepoints := 1;
16#2F94A:
newCodepoints[0] := 16#778B;
numberOfCodepoints := 1;
16#2F94B:
newCodepoints[0] := 16#4046;
numberOfCodepoints := 1;
16#2F94C:
newCodepoints[0] := 16#4096;
numberOfCodepoints := 1;
16#2F94D:
newCodepoints[0] := 16#2541D;
numberOfCodepoints := 1;
16#2F94E:
newCodepoints[0] := 16#784E;
numberOfCodepoints := 1;
16#2F94F:
newCodepoints[0] := 16#788C;
numberOfCodepoints := 1;
16#2F950:
newCodepoints[0] := 16#78CC;
numberOfCodepoints := 1;
16#2F951:
newCodepoints[0] := 16#40E3;
numberOfCodepoints := 1;
16#2F952:
newCodepoints[0] := 16#25626;
numberOfCodepoints := 1;
16#2F953:
newCodepoints[0] := 16#7956;
numberOfCodepoints := 1;
16#2F954:
newCodepoints[0] := 16#2569A;
numberOfCodepoints := 1;
16#2F955:
newCodepoints[0] := 16#256C5;
numberOfCodepoints := 1;
16#2F956:
newCodepoints[0] := 16#798F;
numberOfCodepoints := 1;
16#2F957:
newCodepoints[0] := 16#79EB;
numberOfCodepoints := 1;
16#2F958:
newCodepoints[0] := 16#412F;
numberOfCodepoints := 1;
16#2F959:
newCodepoints[0] := 16#7A40;
numberOfCodepoints := 1;
16#2F95A:
newCodepoints[0] := 16#7A4A;
numberOfCodepoints := 1;
16#2F95B:
newCodepoints[0] := 16#7A4F;
numberOfCodepoints := 1;
16#2F95C:
newCodepoints[0] := 16#2597C;
numberOfCodepoints := 1;
16#2F95D:
newCodepoints[0] := 16#25AA7;
numberOfCodepoints := 1;
16#2F95E:
newCodepoints[0] := 16#25AA7;
numberOfCodepoints := 1;
16#2F95F:
newCodepoints[0] := 16#7AEE;
numberOfCodepoints := 1;
16#2F960:
newCodepoints[0] := 16#4202;
numberOfCodepoints := 1;
16#2F961:
newCodepoints[0] := 16#25BAB;
numberOfCodepoints := 1;
16#2F962:
newCodepoints[0] := 16#7BC6;
numberOfCodepoints := 1;
16#2F963:
newCodepoints[0] := 16#7BC9;
numberOfCodepoints := 1;
16#2F964:
newCodepoints[0] := 16#4227;
numberOfCodepoints := 1;
16#2F965:
newCodepoints[0] := 16#25C80;
numberOfCodepoints := 1;
16#2F966:
newCodepoints[0] := 16#7CD2;
numberOfCodepoints := 1;
16#2F967:
newCodepoints[0] := 16#42A0;
numberOfCodepoints := 1;
16#2F968:
newCodepoints[0] := 16#7CE8;
numberOfCodepoints := 1;
16#2F969:
newCodepoints[0] := 16#7CE3;
numberOfCodepoints := 1;
16#2F96A:
newCodepoints[0] := 16#7D00;
numberOfCodepoints := 1;
16#2F96B:
newCodepoints[0] := 16#25F86;
numberOfCodepoints := 1;
16#2F96C:
newCodepoints[0] := 16#7D63;
numberOfCodepoints := 1;
16#2F96D:
newCodepoints[0] := 16#4301;
numberOfCodepoints := 1;
16#2F96E:
newCodepoints[0] := 16#7DC7;
numberOfCodepoints := 1;
16#2F96F:
newCodepoints[0] := 16#7E02;
numberOfCodepoints := 1;
16#2F970:
newCodepoints[0] := 16#7E45;
numberOfCodepoints := 1;
16#2F971:
newCodepoints[0] := 16#4334;
numberOfCodepoints := 1;
16#2F972:
newCodepoints[0] := 16#26228;
numberOfCodepoints := 1;
16#2F973:
newCodepoints[0] := 16#26247;
numberOfCodepoints := 1;
16#2F974:
newCodepoints[0] := 16#4359;
numberOfCodepoints := 1;
16#2F975:
newCodepoints[0] := 16#262D9;
numberOfCodepoints := 1;
16#2F976:
newCodepoints[0] := 16#7F7A;
numberOfCodepoints := 1;
16#2F977:
newCodepoints[0] := 16#2633E;
numberOfCodepoints := 1;
16#2F978:
newCodepoints[0] := 16#7F95;
numberOfCodepoints := 1;
16#2F979:
newCodepoints[0] := 16#7FFA;
numberOfCodepoints := 1;
16#2F97A:
newCodepoints[0] := 16#8005;
numberOfCodepoints := 1;
16#2F97B:
newCodepoints[0] := 16#264DA;
numberOfCodepoints := 1;
16#2F97C:
newCodepoints[0] := 16#26523;
numberOfCodepoints := 1;
16#2F97D:
newCodepoints[0] := 16#8060;
numberOfCodepoints := 1;
16#2F97E:
newCodepoints[0] := 16#265A8;
numberOfCodepoints := 1;
16#2F97F:
newCodepoints[0] := 16#8070;
numberOfCodepoints := 1;
16#2F980:
newCodepoints[0] := 16#2335F;
numberOfCodepoints := 1;
16#2F981:
newCodepoints[0] := 16#43D5;
numberOfCodepoints := 1;
16#2F982:
newCodepoints[0] := 16#80B2;
numberOfCodepoints := 1;
16#2F983:
newCodepoints[0] := 16#8103;
numberOfCodepoints := 1;
16#2F984:
newCodepoints[0] := 16#440B;
numberOfCodepoints := 1;
16#2F985:
newCodepoints[0] := 16#813E;
numberOfCodepoints := 1;
16#2F986:
newCodepoints[0] := 16#5AB5;
numberOfCodepoints := 1;
16#2F987:
newCodepoints[0] := 16#267A7;
numberOfCodepoints := 1;
16#2F988:
newCodepoints[0] := 16#267B5;
numberOfCodepoints := 1;
16#2F989:
newCodepoints[0] := 16#23393;
numberOfCodepoints := 1;
16#2F98A:
newCodepoints[0] := 16#2339C;
numberOfCodepoints := 1;
16#2F98B:
newCodepoints[0] := 16#8201;
numberOfCodepoints := 1;
16#2F98C:
newCodepoints[0] := 16#8204;
numberOfCodepoints := 1;
16#2F98D:
newCodepoints[0] := 16#8F9E;
numberOfCodepoints := 1;
16#2F98E:
newCodepoints[0] := 16#446B;
numberOfCodepoints := 1;
16#2F98F:
newCodepoints[0] := 16#8291;
numberOfCodepoints := 1;
16#2F990:
newCodepoints[0] := 16#828B;
numberOfCodepoints := 1;
16#2F991:
newCodepoints[0] := 16#829D;
numberOfCodepoints := 1;
16#2F992:
newCodepoints[0] := 16#52B3;
numberOfCodepoints := 1;
16#2F993:
newCodepoints[0] := 16#82B1;
numberOfCodepoints := 1;
16#2F994:
newCodepoints[0] := 16#82B3;
numberOfCodepoints := 1;
16#2F995:
newCodepoints[0] := 16#82BD;
numberOfCodepoints := 1;
16#2F996:
newCodepoints[0] := 16#82E6;
numberOfCodepoints := 1;
16#2F997:
newCodepoints[0] := 16#26B3C;
numberOfCodepoints := 1;
16#2F998:
newCodepoints[0] := 16#82E5;
numberOfCodepoints := 1;
16#2F999:
newCodepoints[0] := 16#831D;
numberOfCodepoints := 1;
16#2F99A:
newCodepoints[0] := 16#8363;
numberOfCodepoints := 1;
16#2F99B:
newCodepoints[0] := 16#83AD;
numberOfCodepoints := 1;
16#2F99C:
newCodepoints[0] := 16#8323;
numberOfCodepoints := 1;
16#2F99D:
newCodepoints[0] := 16#83BD;
numberOfCodepoints := 1;
16#2F99E:
newCodepoints[0] := 16#83E7;
numberOfCodepoints := 1;
16#2F99F:
newCodepoints[0] := 16#8457;
numberOfCodepoints := 1;
16#2F9A0:
newCodepoints[0] := 16#8353;
numberOfCodepoints := 1;
16#2F9A1:
newCodepoints[0] := 16#83CA;
numberOfCodepoints := 1;
16#2F9A2:
newCodepoints[0] := 16#83CC;
numberOfCodepoints := 1;
16#2F9A3:
newCodepoints[0] := 16#83DC;
numberOfCodepoints := 1;
16#2F9A4:
newCodepoints[0] := 16#26C36;
numberOfCodepoints := 1;
16#2F9A5:
newCodepoints[0] := 16#26D6B;
numberOfCodepoints := 1;
16#2F9A6:
newCodepoints[0] := 16#26CD5;
numberOfCodepoints := 1;
16#2F9A7:
newCodepoints[0] := 16#452B;
numberOfCodepoints := 1;
16#2F9A8:
newCodepoints[0] := 16#84F1;
numberOfCodepoints := 1;
16#2F9A9:
newCodepoints[0] := 16#84F3;
numberOfCodepoints := 1;
16#2F9AA:
newCodepoints[0] := 16#8516;
numberOfCodepoints := 1;
16#2F9AB:
newCodepoints[0] := 16#273CA;
numberOfCodepoints := 1;
16#2F9AC:
newCodepoints[0] := 16#8564;
numberOfCodepoints := 1;
16#2F9AD:
newCodepoints[0] := 16#26F2C;
numberOfCodepoints := 1;
16#2F9AE:
newCodepoints[0] := 16#455D;
numberOfCodepoints := 1;
16#2F9AF:
newCodepoints[0] := 16#4561;
numberOfCodepoints := 1;
16#2F9B0:
newCodepoints[0] := 16#26FB1;
numberOfCodepoints := 1;
16#2F9B1:
newCodepoints[0] := 16#270D2;
numberOfCodepoints := 1;
16#2F9B2:
newCodepoints[0] := 16#456B;
numberOfCodepoints := 1;
16#2F9B3:
newCodepoints[0] := 16#8650;
numberOfCodepoints := 1;
16#2F9B4:
newCodepoints[0] := 16#865C;
numberOfCodepoints := 1;
16#2F9B5:
newCodepoints[0] := 16#8667;
numberOfCodepoints := 1;
16#2F9B6:
newCodepoints[0] := 16#8669;
numberOfCodepoints := 1;
16#2F9B7:
newCodepoints[0] := 16#86A9;
numberOfCodepoints := 1;
16#2F9B8:
newCodepoints[0] := 16#8688;
numberOfCodepoints := 1;
16#2F9B9:
newCodepoints[0] := 16#870E;
numberOfCodepoints := 1;
16#2F9BA:
newCodepoints[0] := 16#86E2;
numberOfCodepoints := 1;
16#2F9BB:
newCodepoints[0] := 16#8779;
numberOfCodepoints := 1;
16#2F9BC:
newCodepoints[0] := 16#8728;
numberOfCodepoints := 1;
16#2F9BD:
newCodepoints[0] := 16#876B;
numberOfCodepoints := 1;
16#2F9BE:
newCodepoints[0] := 16#8786;
numberOfCodepoints := 1;
16#2F9BF:
newCodepoints[0] := 16#45D7;
numberOfCodepoints := 1;
16#2F9C0:
newCodepoints[0] := 16#87E1;
numberOfCodepoints := 1;
16#2F9C1:
newCodepoints[0] := 16#8801;
numberOfCodepoints := 1;
16#2F9C2:
newCodepoints[0] := 16#45F9;
numberOfCodepoints := 1;
16#2F9C3:
newCodepoints[0] := 16#8860;
numberOfCodepoints := 1;
16#2F9C4:
newCodepoints[0] := 16#8863;
numberOfCodepoints := 1;
16#2F9C5:
newCodepoints[0] := 16#27667;
numberOfCodepoints := 1;
16#2F9C6:
newCodepoints[0] := 16#88D7;
numberOfCodepoints := 1;
16#2F9C7:
newCodepoints[0] := 16#88DE;
numberOfCodepoints := 1;
16#2F9C8:
newCodepoints[0] := 16#4635;
numberOfCodepoints := 1;
16#2F9C9:
newCodepoints[0] := 16#88FA;
numberOfCodepoints := 1;
16#2F9CA:
newCodepoints[0] := 16#34BB;
numberOfCodepoints := 1;
16#2F9CB:
newCodepoints[0] := 16#278AE;
numberOfCodepoints := 1;
16#2F9CC:
newCodepoints[0] := 16#27966;
numberOfCodepoints := 1;
16#2F9CD:
newCodepoints[0] := 16#46BE;
numberOfCodepoints := 1;
16#2F9CE:
newCodepoints[0] := 16#46C7;
numberOfCodepoints := 1;
16#2F9CF:
newCodepoints[0] := 16#8AA0;
numberOfCodepoints := 1;
16#2F9D0:
newCodepoints[0] := 16#8AED;
numberOfCodepoints := 1;
16#2F9D1:
newCodepoints[0] := 16#8B8A;
numberOfCodepoints := 1;
16#2F9D2:
newCodepoints[0] := 16#8C55;
numberOfCodepoints := 1;
16#2F9D3:
newCodepoints[0] := 16#27CA8;
numberOfCodepoints := 1;
16#2F9D4:
newCodepoints[0] := 16#8CAB;
numberOfCodepoints := 1;
16#2F9D5:
newCodepoints[0] := 16#8CC1;
numberOfCodepoints := 1;
16#2F9D6:
newCodepoints[0] := 16#8D1B;
numberOfCodepoints := 1;
16#2F9D7:
newCodepoints[0] := 16#8D77;
numberOfCodepoints := 1;
16#2F9D8:
newCodepoints[0] := 16#27F2F;
numberOfCodepoints := 1;
16#2F9D9:
newCodepoints[0] := 16#20804;
numberOfCodepoints := 1;
16#2F9DA:
newCodepoints[0] := 16#8DCB;
numberOfCodepoints := 1;
16#2F9DB:
newCodepoints[0] := 16#8DBC;
numberOfCodepoints := 1;
16#2F9DC:
newCodepoints[0] := 16#8DF0;
numberOfCodepoints := 1;
16#2F9DD:
newCodepoints[0] := 16#208DE;
numberOfCodepoints := 1;
16#2F9DE:
newCodepoints[0] := 16#8ED4;
numberOfCodepoints := 1;
16#2F9DF:
newCodepoints[0] := 16#8F38;
numberOfCodepoints := 1;
16#2F9E0:
newCodepoints[0] := 16#285D2;
numberOfCodepoints := 1;
16#2F9E1:
newCodepoints[0] := 16#285ED;
numberOfCodepoints := 1;
16#2F9E2:
newCodepoints[0] := 16#9094;
numberOfCodepoints := 1;
16#2F9E3:
newCodepoints[0] := 16#90F1;
numberOfCodepoints := 1;
16#2F9E4:
newCodepoints[0] := 16#9111;
numberOfCodepoints := 1;
16#2F9E5:
newCodepoints[0] := 16#2872E;
numberOfCodepoints := 1;
16#2F9E6:
newCodepoints[0] := 16#911B;
numberOfCodepoints := 1;
16#2F9E7:
newCodepoints[0] := 16#9238;
numberOfCodepoints := 1;
16#2F9E8:
newCodepoints[0] := 16#92D7;
numberOfCodepoints := 1;
16#2F9E9:
newCodepoints[0] := 16#92D8;
numberOfCodepoints := 1;
16#2F9EA:
newCodepoints[0] := 16#927C;
numberOfCodepoints := 1;
16#2F9EB:
newCodepoints[0] := 16#93F9;
numberOfCodepoints := 1;
16#2F9EC:
newCodepoints[0] := 16#9415;
numberOfCodepoints := 1;
16#2F9ED:
newCodepoints[0] := 16#28BFA;
numberOfCodepoints := 1;
16#2F9EE:
newCodepoints[0] := 16#958B;
numberOfCodepoints := 1;
16#2F9EF:
newCodepoints[0] := 16#4995;
numberOfCodepoints := 1;
16#2F9F0:
newCodepoints[0] := 16#95B7;
numberOfCodepoints := 1;
16#2F9F1:
newCodepoints[0] := 16#28D77;
numberOfCodepoints := 1;
16#2F9F2:
newCodepoints[0] := 16#49E6;
numberOfCodepoints := 1;
16#2F9F3:
newCodepoints[0] := 16#96C3;
numberOfCodepoints := 1;
16#2F9F4:
newCodepoints[0] := 16#5DB2;
numberOfCodepoints := 1;
16#2F9F5:
newCodepoints[0] := 16#9723;
numberOfCodepoints := 1;
16#2F9F6:
newCodepoints[0] := 16#29145;
numberOfCodepoints := 1;
16#2F9F7:
newCodepoints[0] := 16#2921A;
numberOfCodepoints := 1;
16#2F9F8:
newCodepoints[0] := 16#4A6E;
numberOfCodepoints := 1;
16#2F9F9:
newCodepoints[0] := 16#4A76;
numberOfCodepoints := 1;
16#2F9FA:
newCodepoints[0] := 16#97E0;
numberOfCodepoints := 1;
16#2F9FB:
newCodepoints[0] := 16#2940A;
numberOfCodepoints := 1;
16#2F9FC:
newCodepoints[0] := 16#4AB2;
numberOfCodepoints := 1;
16#2F9FD:
newCodepoints[0] := 16#29496;
numberOfCodepoints := 1;
16#2F9FE:
newCodepoints[0] := 16#980B;
numberOfCodepoints := 1;
16#2F9FF:
newCodepoints[0] := 16#980B;
numberOfCodepoints := 1;
16#2FA00:
newCodepoints[0] := 16#9829;
numberOfCodepoints := 1;
16#2FA01:
newCodepoints[0] := 16#295B6;
numberOfCodepoints := 1;
16#2FA02:
newCodepoints[0] := 16#98E2;
numberOfCodepoints := 1;
16#2FA03:
newCodepoints[0] := 16#4B33;
numberOfCodepoints := 1;
16#2FA04:
newCodepoints[0] := 16#9929;
numberOfCodepoints := 1;
16#2FA05:
newCodepoints[0] := 16#99A7;
numberOfCodepoints := 1;
16#2FA06:
newCodepoints[0] := 16#99C2;
numberOfCodepoints := 1;
16#2FA07:
newCodepoints[0] := 16#99FE;
numberOfCodepoints := 1;
16#2FA08:
newCodepoints[0] := 16#4BCE;
numberOfCodepoints := 1;
16#2FA09:
newCodepoints[0] := 16#29B30;
numberOfCodepoints := 1;
16#2FA0A:
newCodepoints[0] := 16#9B12;
numberOfCodepoints := 1;
16#2FA0B:
newCodepoints[0] := 16#9C40;
numberOfCodepoints := 1;
16#2FA0C:
newCodepoints[0] := 16#9CFD;
numberOfCodepoints := 1;
16#2FA0D:
newCodepoints[0] := 16#4CCE;
numberOfCodepoints := 1;
16#2FA0E:
newCodepoints[0] := 16#4CED;
numberOfCodepoints := 1;
16#2FA0F:
newCodepoints[0] := 16#9D67;
numberOfCodepoints := 1;
16#2FA10:
newCodepoints[0] := 16#2A0CE;
numberOfCodepoints := 1;
16#2FA11:
newCodepoints[0] := 16#4CF8;
numberOfCodepoints := 1;
16#2FA12:
newCodepoints[0] := 16#2A105;
numberOfCodepoints := 1;
16#2FA13:
newCodepoints[0] := 16#2A20E;
numberOfCodepoints := 1;
16#2FA14:
newCodepoints[0] := 16#2A291;
numberOfCodepoints := 1;
16#2FA15:
newCodepoints[0] := 16#9EBB;
numberOfCodepoints := 1;
16#2FA16:
newCodepoints[0] := 16#4D56;
numberOfCodepoints := 1;
16#2FA17:
newCodepoints[0] := 16#9EF9;
numberOfCodepoints := 1;
16#2FA18:
newCodepoints[0] := 16#9EFE;
numberOfCodepoints := 1;
16#2FA19:
newCodepoints[0] := 16#9F05;
numberOfCodepoints := 1;
16#2FA1A:
newCodepoints[0] := 16#9F0F;
numberOfCodepoints := 1;
16#2FA1B:
newCodepoints[0] := 16#9F16;
numberOfCodepoints := 1;
16#2FA1C:
newCodepoints[0] := 16#9F3B;
numberOfCodepoints := 1;
16#2FA1D:
newCodepoints[0] := 16#2A600;
numberOfCodepoints := 1;
ELSE
GetCodepointDecomposition := FALSE;
END_CASE