~drizzle-trunk/drizzle/development

1 by brian
clean slate
1
/* Copyright (C) 2004 MySQL AB
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
2
1 by brian
clean slate
3
   This library is free software; you can redistribute it and/or
4
   modify it under the terms of the GNU Library General Public
5
   License as published by the Free Software Foundation; version 2
6
   of the License.
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
7
1 by brian
clean slate
8
   This library is distributed in the hope that it will be useful,
9
   but WITHOUT ANY WARRANTY; without even the implied warranty of
10
   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
11
   Library General Public License for more details.
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
12
1 by brian
clean slate
13
   You should have received a copy of the GNU Library General Public
14
   License along with this library; if not, write to the Free
1802.10.2 by Monty Taylor
Update all of the copyright headers to include the correct address.
15
   Software Foundation, Inc., 51 Franklin Place - Suite 330, Boston,
16
   MA 02110-1301, USA */
1 by brian
clean slate
17
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
18
/*
19
   UCA (Unicode Collation Algorithm) support.
1 by brian
clean slate
20
   Written by Alexander Barkov <bar@mysql.com>
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
21
1 by brian
clean slate
22
   Currently supports only subset of the full UCA:
23
   - Only Primary level key comparison
24
   - Basic Latin letters contraction is implemented
25
   - Variable weighting is done for Non-ignorable option
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
26
1 by brian
clean slate
27
   Features that are not implemented yet:
28
   - No Normalization From D is done
29
     + No decomposition is done
30
     + No Thai/Lao orderding is done
31
   - No combining marks processing is done
32
*/
33
34
2173.2.1 by Monty Taylor
Fixes incorrect usage of include
35
#include <config.h>
2281.5.1 by Muhammad Umair
Merged charset declarations of global_charset_info.h and charset_info.h into charset.h header file.
36
#include <drizzled/charset.h>
2173.2.1 by Monty Taylor
Fixes incorrect usage of include
37
#include <drizzled/internal/m_string.h>
595 by Brian Aker
Fix, partial, for Sun Studio.
38
#include <stdio.h>
1 by brian
clean slate
39
1067.4.9 by Nathan Williams
Converted all usages of cmin/cmax in mystrings directory to use std::min/max
40
#include <algorithm>
41
42
using namespace std;
43
2318.6.109 by Olaf van der Spek
Refactor
44
namespace drizzled {
1067.4.9 by Nathan Williams
Converted all usages of cmin/cmax in mystrings directory to use std::min/max
45
1 by brian
clean slate
46
#define MY_UCA_CMASK  255
47
#define MY_UCA_PSHIFT 8
48
206 by Brian Aker
Removed final uint dead types.
49
uint16_t page000data[]= { /* 0000 (4 weights per char) */
1 by brian
clean slate
50
0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,
51
0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,
52
0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,
53
0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,
54
0x0000,0x0000,0x0000,0x0000, 0x0201,0x0000,0x0000,0x0000,
55
0x0202,0x0000,0x0000,0x0000, 0x0203,0x0000,0x0000,0x0000,
56
0x0204,0x0000,0x0000,0x0000, 0x0205,0x0000,0x0000,0x0000,
57
0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,
58
0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,
59
0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,
60
0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,
61
0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,
62
0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,
63
0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,
64
0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,
65
0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,
66
0x0209,0x0000,0x0000,0x0000, 0x0251,0x0000,0x0000,0x0000,
67
0x027E,0x0000,0x0000,0x0000, 0x02D2,0x0000,0x0000,0x0000,
68
0x0E0F,0x0000,0x0000,0x0000, 0x02D3,0x0000,0x0000,0x0000,
69
0x02CF,0x0000,0x0000,0x0000, 0x0277,0x0000,0x0000,0x0000,
70
0x0288,0x0000,0x0000,0x0000, 0x0289,0x0000,0x0000,0x0000,
71
0x02C8,0x0000,0x0000,0x0000, 0x0428,0x0000,0x0000,0x0000,
72
0x022F,0x0000,0x0000,0x0000, 0x0221,0x0000,0x0000,0x0000,
73
0x025D,0x0000,0x0000,0x0000, 0x02CC,0x0000,0x0000,0x0000,
74
0x0E29,0x0000,0x0000,0x0000, 0x0E2A,0x0000,0x0000,0x0000,
75
0x0E2B,0x0000,0x0000,0x0000, 0x0E2C,0x0000,0x0000,0x0000,
76
0x0E2D,0x0000,0x0000,0x0000, 0x0E2E,0x0000,0x0000,0x0000,
77
0x0E2F,0x0000,0x0000,0x0000, 0x0E30,0x0000,0x0000,0x0000,
78
0x0E31,0x0000,0x0000,0x0000, 0x0E32,0x0000,0x0000,0x0000,
79
0x023D,0x0000,0x0000,0x0000, 0x023A,0x0000,0x0000,0x0000,
80
0x042C,0x0000,0x0000,0x0000, 0x042D,0x0000,0x0000,0x0000,
81
0x042E,0x0000,0x0000,0x0000, 0x0255,0x0000,0x0000,0x0000,
82
0x02C7,0x0000,0x0000,0x0000, 0x0E33,0x0000,0x0000,0x0000,
83
0x0E4A,0x0000,0x0000,0x0000, 0x0E60,0x0000,0x0000,0x0000,
84
0x0E6D,0x0000,0x0000,0x0000, 0x0E8B,0x0000,0x0000,0x0000,
85
0x0EB9,0x0000,0x0000,0x0000, 0x0EC1,0x0000,0x0000,0x0000,
86
0x0EE1,0x0000,0x0000,0x0000, 0x0EFB,0x0000,0x0000,0x0000,
87
0x0F10,0x0000,0x0000,0x0000, 0x0F21,0x0000,0x0000,0x0000,
88
0x0F2E,0x0000,0x0000,0x0000, 0x0F5B,0x0000,0x0000,0x0000,
89
0x0F64,0x0000,0x0000,0x0000, 0x0F82,0x0000,0x0000,0x0000,
90
0x0FA7,0x0000,0x0000,0x0000, 0x0FB4,0x0000,0x0000,0x0000,
91
0x0FC0,0x0000,0x0000,0x0000, 0x0FEA,0x0000,0x0000,0x0000,
92
0x1002,0x0000,0x0000,0x0000, 0x101F,0x0000,0x0000,0x0000,
93
0x1044,0x0000,0x0000,0x0000, 0x1051,0x0000,0x0000,0x0000,
94
0x105A,0x0000,0x0000,0x0000, 0x105E,0x0000,0x0000,0x0000,
95
0x106A,0x0000,0x0000,0x0000, 0x028A,0x0000,0x0000,0x0000,
96
0x02CE,0x0000,0x0000,0x0000, 0x028B,0x0000,0x0000,0x0000,
97
0x020F,0x0000,0x0000,0x0000, 0x021B,0x0000,0x0000,0x0000,
98
0x020C,0x0000,0x0000,0x0000, 0x0E33,0x0000,0x0000,0x0000,
99
0x0E4A,0x0000,0x0000,0x0000, 0x0E60,0x0000,0x0000,0x0000,
100
0x0E6D,0x0000,0x0000,0x0000, 0x0E8B,0x0000,0x0000,0x0000,
101
0x0EB9,0x0000,0x0000,0x0000, 0x0EC1,0x0000,0x0000,0x0000,
102
0x0EE1,0x0000,0x0000,0x0000, 0x0EFB,0x0000,0x0000,0x0000,
103
0x0F10,0x0000,0x0000,0x0000, 0x0F21,0x0000,0x0000,0x0000,
104
0x0F2E,0x0000,0x0000,0x0000, 0x0F5B,0x0000,0x0000,0x0000,
105
0x0F64,0x0000,0x0000,0x0000, 0x0F82,0x0000,0x0000,0x0000,
106
0x0FA7,0x0000,0x0000,0x0000, 0x0FB4,0x0000,0x0000,0x0000,
107
0x0FC0,0x0000,0x0000,0x0000, 0x0FEA,0x0000,0x0000,0x0000,
108
0x1002,0x0000,0x0000,0x0000, 0x101F,0x0000,0x0000,0x0000,
109
0x1044,0x0000,0x0000,0x0000, 0x1051,0x0000,0x0000,0x0000,
110
0x105A,0x0000,0x0000,0x0000, 0x105E,0x0000,0x0000,0x0000,
111
0x106A,0x0000,0x0000,0x0000, 0x028C,0x0000,0x0000,0x0000,
112
0x0430,0x0000,0x0000,0x0000, 0x028D,0x0000,0x0000,0x0000,
113
0x0433,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,
114
0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,
115
0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,
116
0x0000,0x0000,0x0000,0x0000, 0x0206,0x0000,0x0000,0x0000,
117
0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,
118
0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,
119
0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,
120
0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,
121
0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,
122
0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,
123
0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,
124
0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,
125
0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,
126
0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,
127
0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,
128
0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,
129
0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,
130
0x0209,0x0000,0x0000,0x0000, 0x0252,0x0000,0x0000,0x0000,
131
0x0E0E,0x0000,0x0000,0x0000, 0x0E10,0x0000,0x0000,0x0000,
132
0x0E0D,0x0000,0x0000,0x0000, 0x0E11,0x0000,0x0000,0x0000,
133
0x0431,0x0000,0x0000,0x0000, 0x02C2,0x0000,0x0000,0x0000,
134
0x0214,0x0000,0x0000,0x0000, 0x02C5,0x0000,0x0000,0x0000,
135
0x0E33,0x0000,0x0000,0x0000, 0x0286,0x0000,0x0000,0x0000,
136
0x042F,0x0000,0x0000,0x0000, 0x0220,0x0000,0x0000,0x0000,
137
0x02C6,0x0000,0x0000,0x0000, 0x0210,0x0000,0x0000,0x0000,
138
0x034A,0x0000,0x0000,0x0000, 0x0429,0x0000,0x0000,0x0000,
139
0x0E2B,0x0000,0x0000,0x0000, 0x0E2C,0x0000,0x0000,0x0000,
140
0x020D,0x0000,0x0000,0x0000, 0x10F8,0x0000,0x0000,0x0000,
141
0x02C3,0x0000,0x0000,0x0000, 0x0267,0x0000,0x0000,0x0000,
142
0x0219,0x0000,0x0000,0x0000, 0x0E2A,0x0000,0x0000,0x0000,
143
0x0F82,0x0000,0x0000,0x0000, 0x0287,0x0000,0x0000,0x0000,
144
0x0E2A,0x02CD,0x0E2D,0x0000, 0x0E2A,0x02CD,0x0E2B,0x0000,
145
0x0E2C,0x02CD,0x0E2D,0x0000, 0x0256,0x0000,0x0000,0x0000,
146
0x0E33,0x0000,0x0000,0x0000, 0x0E33,0x0000,0x0000,0x0000,
147
0x0E33,0x0000,0x0000,0x0000, 0x0E33,0x0000,0x0000,0x0000,
148
0x0E33,0x0000,0x0000,0x0000, 0x0E33,0x0000,0x0000,0x0000,
149
0x0E38,0x0000,0x0000,0x0000, 0x0E60,0x0000,0x0000,0x0000,
150
0x0E8B,0x0000,0x0000,0x0000, 0x0E8B,0x0000,0x0000,0x0000,
151
0x0E8B,0x0000,0x0000,0x0000, 0x0E8B,0x0000,0x0000,0x0000,
152
0x0EFB,0x0000,0x0000,0x0000, 0x0EFB,0x0000,0x0000,0x0000,
153
0x0EFB,0x0000,0x0000,0x0000, 0x0EFB,0x0000,0x0000,0x0000,
154
0x0E86,0x0000,0x0000,0x0000, 0x0F64,0x0000,0x0000,0x0000,
155
0x0F82,0x0000,0x0000,0x0000, 0x0F82,0x0000,0x0000,0x0000,
156
0x0F82,0x0000,0x0000,0x0000, 0x0F82,0x0000,0x0000,0x0000,
157
0x0F82,0x0000,0x0000,0x0000, 0x042B,0x0000,0x0000,0x0000,
158
0x0F8D,0x0000,0x0000,0x0000, 0x101F,0x0000,0x0000,0x0000,
159
0x101F,0x0000,0x0000,0x0000, 0x101F,0x0000,0x0000,0x0000,
160
0x101F,0x0000,0x0000,0x0000, 0x105E,0x0000,0x0000,0x0000,
161
0x1094,0x0000,0x0000,0x0000, 0x0FEA,0x0FEA,0x0000,0x0000,
162
0x0E33,0x0000,0x0000,0x0000, 0x0E33,0x0000,0x0000,0x0000,
163
0x0E33,0x0000,0x0000,0x0000, 0x0E33,0x0000,0x0000,0x0000,
164
0x0E33,0x0000,0x0000,0x0000, 0x0E33,0x0000,0x0000,0x0000,
165
0x0E38,0x0000,0x0000,0x0000, 0x0E60,0x0000,0x0000,0x0000,
166
0x0E8B,0x0000,0x0000,0x0000, 0x0E8B,0x0000,0x0000,0x0000,
167
0x0E8B,0x0000,0x0000,0x0000, 0x0E8B,0x0000,0x0000,0x0000,
168
0x0EFB,0x0000,0x0000,0x0000, 0x0EFB,0x0000,0x0000,0x0000,
169
0x0EFB,0x0000,0x0000,0x0000, 0x0EFB,0x0000,0x0000,0x0000,
170
0x0E86,0x0000,0x0000,0x0000, 0x0F64,0x0000,0x0000,0x0000,
171
0x0F82,0x0000,0x0000,0x0000, 0x0F82,0x0000,0x0000,0x0000,
172
0x0F82,0x0000,0x0000,0x0000, 0x0F82,0x0000,0x0000,0x0000,
173
0x0F82,0x0000,0x0000,0x0000, 0x042A,0x0000,0x0000,0x0000,
174
0x0F8D,0x0000,0x0000,0x0000, 0x101F,0x0000,0x0000,0x0000,
175
0x101F,0x0000,0x0000,0x0000, 0x101F,0x0000,0x0000,0x0000,
176
0x101F,0x0000,0x0000,0x0000, 0x105E,0x0000,0x0000,0x0000,
177
0x1094,0x0000,0x0000,0x0000, 0x105E,0x0000,0x0000,0x0000
178
};
179
206 by Brian Aker
Removed final uint dead types.
180
uint16_t page001data[]= { /* 0100 (3 weights per char) */
1 by brian
clean slate
181
0x0E33,0x0000,0x0000, 0x0E33,0x0000,0x0000, 0x0E33,0x0000,0x0000,
182
0x0E33,0x0000,0x0000, 0x0E33,0x0000,0x0000, 0x0E33,0x0000,0x0000,
183
0x0E60,0x0000,0x0000, 0x0E60,0x0000,0x0000, 0x0E60,0x0000,0x0000,
184
0x0E60,0x0000,0x0000, 0x0E60,0x0000,0x0000, 0x0E60,0x0000,0x0000,
185
0x0E60,0x0000,0x0000, 0x0E60,0x0000,0x0000, 0x0E6D,0x0000,0x0000,
186
0x0E6D,0x0000,0x0000, 0x0E72,0x0000,0x0000, 0x0E72,0x0000,0x0000,
187
0x0E8B,0x0000,0x0000, 0x0E8B,0x0000,0x0000, 0x0E8B,0x0000,0x0000,
188
0x0E8B,0x0000,0x0000, 0x0E8B,0x0000,0x0000, 0x0E8B,0x0000,0x0000,
189
0x0E8B,0x0000,0x0000, 0x0E8B,0x0000,0x0000, 0x0E8B,0x0000,0x0000,
190
0x0E8B,0x0000,0x0000, 0x0EC1,0x0000,0x0000, 0x0EC1,0x0000,0x0000,
191
0x0EC1,0x0000,0x0000, 0x0EC1,0x0000,0x0000, 0x0EC1,0x0000,0x0000,
192
0x0EC1,0x0000,0x0000, 0x0EC1,0x0000,0x0000, 0x0EC1,0x0000,0x0000,
193
0x0EE1,0x0000,0x0000, 0x0EE1,0x0000,0x0000, 0x0EED,0x0000,0x0000,
194
0x0EED,0x0000,0x0000, 0x0EFB,0x0000,0x0000, 0x0EFB,0x0000,0x0000,
195
0x0EFB,0x0000,0x0000, 0x0EFB,0x0000,0x0000, 0x0EFB,0x0000,0x0000,
196
0x0EFB,0x0000,0x0000, 0x0EFB,0x0000,0x0000, 0x0EFB,0x0000,0x0000,
197
0x0EFB,0x0000,0x0000, 0x0EFF,0x0000,0x0000, 0x0EFB,0x0F10,0x0000,
198
0x0EFB,0x0F10,0x0000, 0x0F10,0x0000,0x0000, 0x0F10,0x0000,0x0000,
199
0x0F21,0x0000,0x0000, 0x0F21,0x0000,0x0000, 0x0FBC,0x0000,0x0000,
200
0x0F2E,0x0000,0x0000, 0x0F2E,0x0000,0x0000, 0x0F2E,0x0000,0x0000,
201
0x0F2E,0x0000,0x0000, 0x0F2E,0x0000,0x0000, 0x0F2E,0x0000,0x0000,
202
0x0F2E,0x0267,0x0000, 0x0F2E,0x0267,0x0000, 0x0F36,0x0000,0x0000,
203
0x0F36,0x0000,0x0000, 0x0F64,0x0000,0x0000, 0x0F64,0x0000,0x0000,
204
0x0F64,0x0000,0x0000, 0x0F64,0x0000,0x0000, 0x0F64,0x0000,0x0000,
205
0x0F64,0x0000,0x0000, 0x10B1,0x0F64,0x0000, 0x0F7E,0x0000,0x0000,
206
0x0F7E,0x0000,0x0000, 0x0F82,0x0000,0x0000, 0x0F82,0x0000,0x0000,
207
0x0F82,0x0000,0x0000, 0x0F82,0x0000,0x0000, 0x0F82,0x0000,0x0000,
208
0x0F82,0x0000,0x0000, 0x0F82,0x0E8B,0x0000, 0x0F82,0x0E8B,0x0000,
209
0x0FC0,0x0000,0x0000, 0x0FC0,0x0000,0x0000, 0x0FC0,0x0000,0x0000,
210
0x0FC0,0x0000,0x0000, 0x0FC0,0x0000,0x0000, 0x0FC0,0x0000,0x0000,
211
0x0FEA,0x0000,0x0000, 0x0FEA,0x0000,0x0000, 0x0FEA,0x0000,0x0000,
212
0x0FEA,0x0000,0x0000, 0x0FEA,0x0000,0x0000, 0x0FEA,0x0000,0x0000,
213
0x0FEA,0x0000,0x0000, 0x0FEA,0x0000,0x0000, 0x1002,0x0000,0x0000,
214
0x1002,0x0000,0x0000, 0x1002,0x0000,0x0000, 0x1002,0x0000,0x0000,
215
0x1007,0x0000,0x0000, 0x1007,0x0000,0x0000, 0x101F,0x0000,0x0000,
216
0x101F,0x0000,0x0000, 0x101F,0x0000,0x0000, 0x101F,0x0000,0x0000,
217
0x101F,0x0000,0x0000, 0x101F,0x0000,0x0000, 0x101F,0x0000,0x0000,
218
0x101F,0x0000,0x0000, 0x101F,0x0000,0x0000, 0x101F,0x0000,0x0000,
219
0x101F,0x0000,0x0000, 0x101F,0x0000,0x0000, 0x1051,0x0000,0x0000,
220
0x1051,0x0000,0x0000, 0x105E,0x0000,0x0000, 0x105E,0x0000,0x0000,
221
0x105E,0x0000,0x0000, 0x106A,0x0000,0x0000, 0x106A,0x0000,0x0000,
222
0x106A,0x0000,0x0000, 0x106A,0x0000,0x0000, 0x106A,0x0000,0x0000,
223
0x106A,0x0000,0x0000, 0x0FEA,0x0000,0x0000, 0x0E52,0x0000,0x0000,
224
0x0E58,0x0000,0x0000, 0x0E5C,0x0000,0x0000, 0x0E5C,0x0000,0x0000,
225
0x10A8,0x0000,0x0000, 0x10A8,0x0000,0x0000, 0x0F92,0x0000,0x0000,
226
0x0E65,0x0000,0x0000, 0x0E65,0x0000,0x0000, 0x0E76,0x0000,0x0000,
227
0x0E7A,0x0000,0x0000, 0x0E7E,0x0000,0x0000, 0x0E7E,0x0000,0x0000,
228
0x106A,0x1051,0x0000, 0x0E90,0x0000,0x0000, 0x0E94,0x0000,0x0000,
229
0x0E98,0x0000,0x0000, 0x0EBD,0x0000,0x0000, 0x0EBD,0x0000,0x0000,
230
0x0ED1,0x0000,0x0000, 0x0ED9,0x0000,0x0000, 0x0EE9,0x0000,0x0000,
231
0x0F0C,0x0000,0x0000, 0x0F08,0x0000,0x0000, 0x0F26,0x0000,0x0000,
232
0x0F26,0x0000,0x0000, 0x0F3B,0x0000,0x0000, 0x0F53,0x0000,0x0000,
233
0x1037,0x0000,0x0000, 0x0F6E,0x0000,0x0000, 0x0F72,0x0000,0x0000,
234
0x0F9A,0x0000,0x0000, 0x0F82,0x0000,0x0000, 0x0F82,0x0000,0x0000,
235
0x0EDD,0x0000,0x0000, 0x0EDD,0x0000,0x0000, 0x0FAC,0x0000,0x0000,
236
0x0FAC,0x0000,0x0000, 0x0FC4,0x0000,0x0000, 0x10A0,0x0000,0x0000,
237
0x10A0,0x0000,0x0000, 0x0FF2,0x0000,0x0000, 0x0FF6,0x0000,0x0000,
238
0x100B,0x0000,0x0000, 0x100F,0x0000,0x0000, 0x100F,0x0000,0x0000,
239
0x1013,0x0000,0x0000, 0x101F,0x0000,0x0000, 0x101F,0x0000,0x0000,
240
0x1040,0x0000,0x0000, 0x1049,0x0000,0x0000, 0x1066,0x0000,0x0000,
241
0x1066,0x0000,0x0000, 0x106F,0x0000,0x0000, 0x106F,0x0000,0x0000,
242
0x107F,0x0000,0x0000, 0x1084,0x0000,0x0000, 0x1084,0x0000,0x0000,
243
0x1088,0x0000,0x0000, 0x109C,0x0000,0x0000, 0x10A4,0x0000,0x0000,
244
0x10A4,0x0000,0x0000, 0x1002,0x0FEA,0x0000, 0x1098,0x0000,0x0000,
245
0x10C8,0x0000,0x0000, 0x10CC,0x0000,0x0000, 0x10D0,0x0000,0x0000,
246
0x10D4,0x0000,0x0000, 0x0E6D,0x106A,0x0000, 0x0E6D,0x106A,0x0000,
247
0x0E6D,0x106A,0x0000, 0x0F2E,0x0F10,0x0000, 0x0F2E,0x0F10,0x0000,
248
0x0F2E,0x0F10,0x0000, 0x0F64,0x0F10,0x0000, 0x0F64,0x0F10,0x0000,
249
0x0F64,0x0F10,0x0000, 0x0E33,0x0000,0x0000, 0x0E33,0x0000,0x0000,
250
0x0EFB,0x0000,0x0000, 0x0EFB,0x0000,0x0000, 0x0F82,0x0000,0x0000,
251
0x0F82,0x0000,0x0000, 0x101F,0x0000,0x0000, 0x101F,0x0000,0x0000,
252
0x101F,0x0000,0x0000, 0x101F,0x0000,0x0000, 0x101F,0x0000,0x0000,
253
0x101F,0x0000,0x0000, 0x101F,0x0000,0x0000, 0x101F,0x0000,0x0000,
254
0x101F,0x0000,0x0000, 0x101F,0x0000,0x0000, 0x0E90,0x0000,0x0000,
255
0x0E33,0x0000,0x0000, 0x0E33,0x0000,0x0000, 0x0E33,0x0000,0x0000,
256
0x0E33,0x0000,0x0000, 0x0E38,0x0000,0x0000, 0x0E38,0x0000,0x0000,
257
0x0ECD,0x0000,0x0000, 0x0ECD,0x0000,0x0000, 0x0EC1,0x0000,0x0000,
258
0x0EC1,0x0000,0x0000, 0x0F21,0x0000,0x0000, 0x0F21,0x0000,0x0000,
259
0x0F82,0x0000,0x0000, 0x0F82,0x0000,0x0000, 0x0F82,0x0000,0x0000,
260
0x0F82,0x0000,0x0000, 0x107F,0x0000,0x0000, 0x107F,0x0000,0x0000,
261
0x0F10,0x0000,0x0000, 0x0E6D,0x106A,0x0000, 0x0E6D,0x106A,0x0000,
262
0x0E6D,0x106A,0x0000, 0x0EC1,0x0000,0x0000, 0x0EC1,0x0000,0x0000,
263
0x0EE9,0x0000,0x0000, 0x1098,0x0000,0x0000, 0x0F64,0x0000,0x0000,
264
0x0F64,0x0000,0x0000, 0x0E33,0x0000,0x0000, 0x0E33,0x0000,0x0000,
265
0x0E38,0x0000,0x0000, 0x0E38,0x0000,0x0000, 0x0F8D,0x0000,0x0000,
266
0x0F8D,0x0000,0x0000 };
267
206 by Brian Aker
Removed final uint dead types.
268
uint16_t page002data[]= { /* 0200 (3 weights per char) */
1 by brian
clean slate
269
0x0E33,0x0000,0x0000, 0x0E33,0x0000,0x0000, 0x0E33,0x0000,0x0000,
270
0x0E33,0x0000,0x0000, 0x0E8B,0x0000,0x0000, 0x0E8B,0x0000,0x0000,
271
0x0E8B,0x0000,0x0000, 0x0E8B,0x0000,0x0000, 0x0EFB,0x0000,0x0000,
272
0x0EFB,0x0000,0x0000, 0x0EFB,0x0000,0x0000, 0x0EFB,0x0000,0x0000,
273
0x0F82,0x0000,0x0000, 0x0F82,0x0000,0x0000, 0x0F82,0x0000,0x0000,
274
0x0F82,0x0000,0x0000, 0x0FC0,0x0000,0x0000, 0x0FC0,0x0000,0x0000,
275
0x0FC0,0x0000,0x0000, 0x0FC0,0x0000,0x0000, 0x101F,0x0000,0x0000,
276
0x101F,0x0000,0x0000, 0x101F,0x0000,0x0000, 0x101F,0x0000,0x0000,
277
0x0FEA,0x0000,0x0000, 0x0FEA,0x0000,0x0000, 0x1002,0x0000,0x0000,
278
0x1002,0x0000,0x0000, 0x1090,0x0000,0x0000, 0x1090,0x0000,0x0000,
279
0x0EE1,0x0000,0x0000, 0x0EE1,0x0000,0x0000, 0x0F72,0x0000,0x0000,
280
0x0E82,0x0000,0x0000, 0x0FA2,0x0000,0x0000, 0x0FA2,0x0000,0x0000,
281
0x1073,0x0000,0x0000, 0x1073,0x0000,0x0000, 0x0E33,0x0000,0x0000,
282
0x0E33,0x0000,0x0000, 0x0E8B,0x0000,0x0000, 0x0E8B,0x0000,0x0000,
283
0x0F82,0x0000,0x0000, 0x0F82,0x0000,0x0000, 0x0F82,0x0000,0x0000,
284
0x0F82,0x0000,0x0000, 0x0F82,0x0000,0x0000, 0x0F82,0x0000,0x0000,
285
0x0F82,0x0000,0x0000, 0x0F82,0x0000,0x0000, 0x105E,0x0000,0x0000,
286
0x105E,0x0000,0x0000, 0x0F4B,0x0000,0x0000, 0x0F7A,0x0000,0x0000,
287
0x1017,0x0000,0x0000, 0xFBC0,0x8237,0x0000, 0xFBC0,0x8238,0x0000,
288
0xFBC0,0x8239,0x0000, 0xFBC0,0x823A,0x0000, 0xFBC0,0x823B,0x0000,
289
0xFBC0,0x823C,0x0000, 0xFBC0,0x823D,0x0000, 0xFBC0,0x823E,0x0000,
290
0xFBC0,0x823F,0x0000, 0xFBC0,0x8240,0x0000, 0xFBC0,0x8241,0x0000,
291
0xFBC0,0x8242,0x0000, 0xFBC0,0x8243,0x0000, 0xFBC0,0x8244,0x0000,
292
0xFBC0,0x8245,0x0000, 0xFBC0,0x8246,0x0000, 0xFBC0,0x8247,0x0000,
293
0xFBC0,0x8248,0x0000, 0xFBC0,0x8249,0x0000, 0xFBC0,0x824A,0x0000,
294
0xFBC0,0x824B,0x0000, 0xFBC0,0x824C,0x0000, 0xFBC0,0x824D,0x0000,
295
0xFBC0,0x824E,0x0000, 0xFBC0,0x824F,0x0000, 0x0E3E,0x0000,0x0000,
296
0x0E42,0x0000,0x0000, 0x0E46,0x0000,0x0000, 0x0E58,0x0000,0x0000,
297
0x0F92,0x0000,0x0000, 0x0E69,0x0000,0x0000, 0x0E76,0x0000,0x0000,
298
0x0E7A,0x0000,0x0000, 0x0E9C,0x0000,0x0000, 0x0E94,0x0000,0x0000,
299
0x0EA0,0x0000,0x0000, 0x0E98,0x0000,0x0000, 0x0EA4,0x0000,0x0000,
300
0x0EA9,0x0000,0x0000, 0x0EAD,0x0000,0x0000, 0x0F19,0x0000,0x0000,
301
0x0ED1,0x0000,0x0000, 0x0EC5,0x0000,0x0000, 0x0EC9,0x0000,0x0000,
302
0x0ED9,0x0000,0x0000, 0x0EB5,0x0000,0x0000, 0x102B,0x0000,0x0000,
303
0x0EF1,0x0000,0x0000, 0x0EF5,0x0000,0x0000, 0x0F08,0x0000,0x0000,
304
0x0F0C,0x0000,0x0000, 0x0F03,0x0000,0x0000, 0x0F3F,0x0000,0x0000,
305
0x0F43,0x0000,0x0000, 0x0F47,0x0000,0x0000, 0x0F4F,0x0000,0x0000,
306
0x1037,0x0000,0x0000, 0x103C,0x0000,0x0000, 0x0F60,0x0000,0x0000,
307
0x0F6E,0x0000,0x0000, 0x0F76,0x0000,0x0000, 0x0F68,0x0000,0x0000,
308
0x0F9A,0x0000,0x0000, 0x0F88,0x0000,0x0000, 0x0F9E,0x0000,0x0000,
309
0x0FB0,0x0000,0x0000, 0x0FC9,0x0000,0x0000, 0x0FCE,0x0000,0x0000,
310
0x0FD2,0x0000,0x0000, 0x0FD6,0x0000,0x0000, 0x0FDA,0x0000,0x0000,
311
0x0FDE,0x0000,0x0000, 0x0FE2,0x0000,0x0000, 0x0FC4,0x0000,0x0000,
312
0x0FE6,0x0000,0x0000, 0x0FEE,0x0000,0x0000, 0x0FF2,0x0000,0x0000,
313
0x0F1D,0x0000,0x0000, 0x0FFA,0x0000,0x0000, 0x0FFE,0x0000,0x0000,
314
0x101B,0x0000,0x0000, 0x1013,0x0000,0x0000, 0x1027,0x0000,0x0000,
315
0x1040,0x0000,0x0000, 0x1049,0x0000,0x0000, 0x104D,0x0000,0x0000,
316
0x1056,0x0000,0x0000, 0x0F57,0x0000,0x0000, 0x1062,0x0000,0x0000,
317
0x1077,0x0000,0x0000, 0x107B,0x0000,0x0000, 0x107F,0x0000,0x0000,
318
0x108C,0x0000,0x0000, 0x10AC,0x0000,0x0000, 0x10B4,0x0000,0x0000,
319
0x10C4,0x0000,0x0000, 0x10D8,0x0000,0x0000, 0x10DC,0x0000,0x0000,
320
0x0E4E,0x0000,0x0000, 0x0EB1,0x0000,0x0000, 0x0ED5,0x0000,0x0000,
321
0x0EE5,0x0000,0x0000, 0x0F15,0x0000,0x0000, 0x0F2A,0x0000,0x0000,
322
0x0F32,0x0000,0x0000, 0x0FB8,0x0000,0x0000, 0x10BC,0x0000,0x0000,
323
0x10C0,0x0000,0x0000, 0x0E6D,0x106A,0x0000, 0x0E6D,0x107F,0x0000,
324
0x0E6D,0x107B,0x0000, 0x1002,0x0FEA,0x0000, 0x1002,0x0FF2,0x0000,
325
0x1002,0x0E69,0x0000, 0x0EB9,0x0F7E,0x0000, 0x0F2E,0x0FEA,0x0000,
326
0x0F2E,0x106A,0x0000, 0x10E0,0x0000,0x0000, 0x10E4,0x0000,0x0000,
327
0x102F,0x0000,0x0000, 0x1033,0x0000,0x0000, 0x0EE1,0x0000,0x0000,
328
0x0EF1,0x0000,0x0000, 0x0F10,0x0000,0x0000, 0x0FC0,0x0000,0x0000,
329
0x0FC9,0x0000,0x0000, 0x0FD2,0x0000,0x0000, 0x0FE6,0x0000,0x0000,
330
0x1051,0x0000,0x0000, 0x105E,0x0000,0x0000, 0x0317,0x0000,0x0000,
331
0x0319,0x0000,0x0000, 0x0EF9,0x0000,0x0000, 0x10B1,0x0000,0x0000,
332
0x0EFA,0x0000,0x0000, 0x10B3,0x0000,0x0000, 0x10B8,0x0000,0x0000,
333
0x10B0,0x0000,0x0000, 0x10B9,0x0000,0x0000, 0x031A,0x0000,0x0000,
334
0x031B,0x0000,0x0000, 0x031C,0x0000,0x0000, 0x031D,0x0000,0x0000,
335
0x031E,0x0000,0x0000, 0x031F,0x0000,0x0000, 0x0320,0x0000,0x0000,
336
0x0321,0x0000,0x0000, 0x0322,0x0000,0x0000, 0x0323,0x0000,0x0000,
337
0x0324,0x0000,0x0000, 0x0325,0x0000,0x0000, 0x0326,0x0000,0x0000,
338
0x0327,0x0000,0x0000, 0x0E01,0x0000,0x0000, 0x0E02,0x0000,0x0000,
339
0x0328,0x0000,0x0000, 0x0329,0x0000,0x0000, 0x032A,0x0000,0x0000,
340
0x032B,0x0000,0x0000, 0x032C,0x0000,0x0000, 0x032D,0x0000,0x0000,
341
0x0212,0x0000,0x0000, 0x0213,0x0000,0x0000, 0x0215,0x0000,0x0000,
342
0x021A,0x0000,0x0000, 0x020E,0x0000,0x0000, 0x0216,0x0000,0x0000,
343
0x032E,0x0000,0x0000, 0x032F,0x0000,0x0000, 0x0ED9,0x0000,0x0000,
344
0x0F2E,0x0000,0x0000, 0x0FEA,0x0000,0x0000, 0x105A,0x0000,0x0000,
345
0x10B4,0x0000,0x0000, 0x0330,0x0000,0x0000, 0x0331,0x0000,0x0000,
346
0x0332,0x0000,0x0000, 0x0333,0x0000,0x0000, 0x0334,0x0000,0x0000,
347
0x0335,0x0000,0x0000, 0x0336,0x0000,0x0000, 0x0337,0x0000,0x0000,
348
0x0338,0x0000,0x0000, 0x10B2,0x0000,0x0000, 0x0339,0x0000,0x0000,
349
0x033A,0x0000,0x0000, 0x033B,0x0000,0x0000, 0x033C,0x0000,0x0000,
350
0x033D,0x0000,0x0000, 0x033E,0x0000,0x0000, 0x033F,0x0000,0x0000,
351
0x0340,0x0000,0x0000, 0x0341,0x0000,0x0000, 0x0342,0x0000,0x0000,
352
0x0343,0x0000,0x0000, 0x0344,0x0000,0x0000, 0x0345,0x0000,0x0000,
353
0x0346,0x0000,0x0000, 0x0347,0x0000,0x0000, 0x0348,0x0000,0x0000,
354
0x0349,0x0000,0x0000 };
355
206 by Brian Aker
Removed final uint dead types.
356
uint16_t page003data[]= { /* 0300 (4 weights per char) */
1 by brian
clean slate
357
0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,
358
0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,
359
0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,
360
0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,
361
0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,
362
0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,
363
0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,
364
0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,
365
0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,
366
0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,
367
0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,
368
0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,
369
0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,
370
0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,
371
0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,
372
0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,
373
0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,
374
0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,
375
0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,
376
0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,
377
0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,
378
0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,
379
0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,
380
0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,
381
0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,
382
0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,
383
0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,
384
0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,
385
0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,
386
0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,
387
0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,
388
0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,
389
0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,
390
0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,
391
0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,
392
0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,
393
0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,
394
0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,
395
0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,
396
0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,
397
0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,
398
0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,
399
0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,
400
0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,
401
0xFBC0,0x8358,0x0000,0x0000, 0xFBC0,0x8359,0x0000,0x0000,
402
0xFBC0,0x835A,0x0000,0x0000, 0xFBC0,0x835B,0x0000,0x0000,
403
0xFBC0,0x835C,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,
404
0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,
405
0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,
406
0x0000,0x0000,0x0000,0x0000, 0x0E33,0x0000,0x0000,0x0000,
407
0x0E8B,0x0000,0x0000,0x0000, 0x0EFB,0x0000,0x0000,0x0000,
408
0x0F82,0x0000,0x0000,0x0000, 0x101F,0x0000,0x0000,0x0000,
409
0x0E60,0x0000,0x0000,0x0000, 0x0E6D,0x0000,0x0000,0x0000,
410
0x0EE1,0x0000,0x0000,0x0000, 0x0F5B,0x0000,0x0000,0x0000,
411
0x0FC0,0x0000,0x0000,0x0000, 0x1002,0x0000,0x0000,0x0000,
412
0x1044,0x0000,0x0000,0x0000, 0x105A,0x0000,0x0000,0x0000,
413
0xFBC0,0x8370,0x0000,0x0000, 0xFBC0,0x8371,0x0000,0x0000,
414
0xFBC0,0x8372,0x0000,0x0000, 0xFBC0,0x8373,0x0000,0x0000,
415
0x0317,0x0000,0x0000,0x0000, 0x0318,0x0000,0x0000,0x0000,
416
0xFBC0,0x8376,0x0000,0x0000, 0xFBC0,0x8377,0x0000,0x0000,
417
0xFBC0,0x8378,0x0000,0x0000, 0xFBC0,0x8379,0x0000,0x0000,
418
0x10F3,0x0000,0x0000,0x0000, 0xFBC0,0x837B,0x0000,0x0000,
419
0xFBC0,0x837C,0x0000,0x0000, 0xFBC0,0x837D,0x0000,0x0000,
420
0x023A,0x0000,0x0000,0x0000, 0xFBC0,0x837F,0x0000,0x0000,
421
0xFBC0,0x8380,0x0000,0x0000, 0xFBC0,0x8381,0x0000,0x0000,
422
0xFBC0,0x8382,0x0000,0x0000, 0xFBC0,0x8383,0x0000,0x0000,
423
0x020D,0x0000,0x0000,0x0000, 0x0214,0x0000,0x0000,0x0000,
424
0x10E8,0x0000,0x0000,0x0000, 0x0267,0x0000,0x0000,0x0000,
425
0x10ED,0x0000,0x0000,0x0000, 0x10F1,0x0000,0x0000,0x0000,
426
0x10F3,0x0000,0x0000,0x0000, 0xFBC0,0x838B,0x0000,0x0000,
427
0x10FB,0x0000,0x0000,0x0000, 0xFBC0,0x838D,0x0000,0x0000,
428
0x1104,0x0000,0x0000,0x0000, 0x1109,0x0000,0x0000,0x0000,
429
0x10F3,0x0000,0x0000,0x0000, 0x10E8,0x0000,0x0000,0x0000,
430
0x10E9,0x0000,0x0000,0x0000, 0x10EA,0x0000,0x0000,0x0000,
431
0x10EC,0x0000,0x0000,0x0000, 0x10ED,0x0000,0x0000,0x0000,
432
0x10F0,0x0000,0x0000,0x0000, 0x10F1,0x0000,0x0000,0x0000,
433
0x10F2,0x0000,0x0000,0x0000, 0x10F3,0x0000,0x0000,0x0000,
434
0x10F5,0x0000,0x0000,0x0000, 0x10F6,0x0000,0x0000,0x0000,
435
0x10F8,0x0000,0x0000,0x0000, 0x10F9,0x0000,0x0000,0x0000,
436
0x10FA,0x0000,0x0000,0x0000, 0x10FB,0x0000,0x0000,0x0000,
437
0x10FC,0x0000,0x0000,0x0000, 0x1100,0x0000,0x0000,0x0000,
438
0xFBC0,0x83A2,0x0000,0x0000, 0x1102,0x0000,0x0000,0x0000,
439
0x1103,0x0000,0x0000,0x0000, 0x1104,0x0000,0x0000,0x0000,
440
0x1105,0x0000,0x0000,0x0000, 0x1106,0x0000,0x0000,0x0000,
441
0x1107,0x0000,0x0000,0x0000, 0x1109,0x0000,0x0000,0x0000,
442
0x10F3,0x0000,0x0000,0x0000, 0x1104,0x0000,0x0000,0x0000,
443
0x10E8,0x0000,0x0000,0x0000, 0x10ED,0x0000,0x0000,0x0000,
444
0x10F1,0x0000,0x0000,0x0000, 0x10F3,0x0000,0x0000,0x0000,
445
0x1104,0x0000,0x0000,0x0000, 0x10E8,0x0000,0x0000,0x0000,
446
0x10E9,0x0000,0x0000,0x0000, 0x10EA,0x0000,0x0000,0x0000,
447
0x10EC,0x0000,0x0000,0x0000, 0x10ED,0x0000,0x0000,0x0000,
448
0x10F0,0x0000,0x0000,0x0000, 0x10F1,0x0000,0x0000,0x0000,
449
0x10F2,0x0000,0x0000,0x0000, 0x10F3,0x0000,0x0000,0x0000,
450
0x10F5,0x0000,0x0000,0x0000, 0x10F6,0x0000,0x0000,0x0000,
451
0x10F8,0x0000,0x0000,0x0000, 0x10F9,0x0000,0x0000,0x0000,
452
0x10FA,0x0000,0x0000,0x0000, 0x10FB,0x0000,0x0000,0x0000,
453
0x10FC,0x0000,0x0000,0x0000, 0x1100,0x0000,0x0000,0x0000,
454
0x1102,0x0000,0x0000,0x0000, 0x1102,0x0000,0x0000,0x0000,
455
0x1103,0x0000,0x0000,0x0000, 0x1104,0x0000,0x0000,0x0000,
456
0x1105,0x0000,0x0000,0x0000, 0x1106,0x0000,0x0000,0x0000,
457
0x1107,0x0000,0x0000,0x0000, 0x1109,0x0000,0x0000,0x0000,
458
0x10F3,0x0000,0x0000,0x0000, 0x1104,0x0000,0x0000,0x0000,
459
0x10FB,0x0000,0x0000,0x0000, 0x1104,0x0000,0x0000,0x0000,
460
0x1109,0x0000,0x0000,0x0000, 0xFBC0,0x83CF,0x0000,0x0000,
461
0x10E9,0x0000,0x0000,0x0000, 0x10F2,0x0000,0x0000,0x0000,
462
0x1104,0x0000,0x0000,0x0000, 0x1104,0x0000,0x0000,0x0000,
463
0x1104,0x0000,0x0000,0x0000, 0x1105,0x0000,0x0000,0x0000,
464
0x10FC,0x0000,0x0000,0x0000, 0x10F5,0x10E8,0x10F3,0x0000,
465
0x10FF,0x0000,0x0000,0x0000, 0x10FF,0x0000,0x0000,0x0000,
466
0x10EF,0x0000,0x0000,0x0000, 0x10EF,0x0000,0x0000,0x0000,
467
0x10EE,0x0000,0x0000,0x0000, 0x10EE,0x0000,0x0000,0x0000,
468
0x10FE,0x0000,0x0000,0x0000, 0x10FE,0x0000,0x0000,0x0000,
469
0x110A,0x0000,0x0000,0x0000, 0x110A,0x0000,0x0000,0x0000,
470
0x110D,0x0000,0x0000,0x0000, 0x110D,0x0000,0x0000,0x0000,
471
0x110E,0x0000,0x0000,0x0000, 0x110E,0x0000,0x0000,0x0000,
472
0x110F,0x0000,0x0000,0x0000, 0x110F,0x0000,0x0000,0x0000,
473
0x1110,0x0000,0x0000,0x0000, 0x1110,0x0000,0x0000,0x0000,
474
0x1111,0x0000,0x0000,0x0000, 0x1111,0x0000,0x0000,0x0000,
475
0x1112,0x0000,0x0000,0x0000, 0x1112,0x0000,0x0000,0x0000,
476
0x1113,0x0000,0x0000,0x0000, 0x1113,0x0000,0x0000,0x0000,
477
0x10F5,0x0000,0x0000,0x0000, 0x1100,0x0000,0x0000,0x0000,
478
0x1102,0x0000,0x0000,0x0000, 0x10F4,0x0000,0x0000,0x0000,
479
0x10F2,0x0000,0x0000,0x0000, 0x10ED,0x0000,0x0000,0x0000,
480
0x0423,0x0000,0x0000,0x0000, 0x110B,0x0000,0x0000,0x0000,
481
0x110B,0x0000,0x0000,0x0000, 0x1102,0x0000,0x0000,0x0000,
482
0x110C,0x0000,0x0000,0x0000, 0x110C,0x0000,0x0000,0x0000,
483
0xFBC0,0x83FC,0x0000,0x0000, 0xFBC0,0x83FD,0x0000,0x0000,
484
0xFBC0,0x83FE,0x0000,0x0000, 0xFBC0,0x83FF,0x0000,0x0000
485
};
486
206 by Brian Aker
Removed final uint dead types.
487
uint16_t page004data[]= { /* 0400 (3 weights per char) */
1 by brian
clean slate
488
0x1152,0x0000,0x0000, 0x1152,0x0000,0x0000, 0x1145,0x0000,0x0000,
489
0x114A,0x0000,0x0000, 0x115A,0x0000,0x0000, 0x1173,0x0000,0x0000,
490
0x1188,0x0000,0x0000, 0x118C,0x0000,0x0000, 0x1194,0x0000,0x0000,
491
0x11B9,0x0000,0x0000, 0x11DA,0x0000,0x0000, 0x1215,0x0000,0x0000,
492
0x1219,0x0000,0x0000, 0x117C,0x0000,0x0000, 0x1221,0x0000,0x0000,
493
0x127D,0x0000,0x0000, 0x1114,0x0000,0x0000, 0x112C,0x0000,0x0000,
494
0x1130,0x0000,0x0000, 0x1134,0x0000,0x0000, 0x1140,0x0000,0x0000,
495
0x1152,0x0000,0x0000, 0x115E,0x0000,0x0000, 0x116A,0x0000,0x0000,
496
0x117C,0x0000,0x0000, 0x1190,0x0000,0x0000, 0x1198,0x0000,0x0000,
497
0x11B0,0x0000,0x0000, 0x11BE,0x0000,0x0000, 0x11C6,0x0000,0x0000,
498
0x11DF,0x0000,0x0000, 0x11EF,0x0000,0x0000, 0x11FB,0x0000,0x0000,
499
0x1203,0x0000,0x0000, 0x120C,0x0000,0x0000, 0x121D,0x0000,0x0000,
500
0x1239,0x0000,0x0000, 0x123D,0x0000,0x0000, 0x1259,0x0000,0x0000,
501
0x1261,0x0000,0x0000, 0x1281,0x0000,0x0000, 0x1285,0x0000,0x0000,
502
0x1289,0x0000,0x0000, 0x128D,0x0000,0x0000, 0x1295,0x0000,0x0000,
503
0x12A1,0x0000,0x0000, 0x12A9,0x0000,0x0000, 0x12AD,0x0000,0x0000,
504
0x1114,0x0000,0x0000, 0x112C,0x0000,0x0000, 0x1130,0x0000,0x0000,
505
0x1134,0x0000,0x0000, 0x1140,0x0000,0x0000, 0x1152,0x0000,0x0000,
506
0x115E,0x0000,0x0000, 0x116A,0x0000,0x0000, 0x117C,0x0000,0x0000,
507
0x1190,0x0000,0x0000, 0x1198,0x0000,0x0000, 0x11B0,0x0000,0x0000,
508
0x11BE,0x0000,0x0000, 0x11C6,0x0000,0x0000, 0x11DF,0x0000,0x0000,
509
0x11EF,0x0000,0x0000, 0x11FB,0x0000,0x0000, 0x1203,0x0000,0x0000,
510
0x120C,0x0000,0x0000, 0x121D,0x0000,0x0000, 0x1239,0x0000,0x0000,
511
0x123D,0x0000,0x0000, 0x1259,0x0000,0x0000, 0x1261,0x0000,0x0000,
512
0x1281,0x0000,0x0000, 0x1285,0x0000,0x0000, 0x1289,0x0000,0x0000,
513
0x128D,0x0000,0x0000, 0x1295,0x0000,0x0000, 0x12A1,0x0000,0x0000,
514
0x12A9,0x0000,0x0000, 0x12AD,0x0000,0x0000, 0x1152,0x0000,0x0000,
515
0x1152,0x0000,0x0000, 0x1145,0x0000,0x0000, 0x114A,0x0000,0x0000,
516
0x115A,0x0000,0x0000, 0x1173,0x0000,0x0000, 0x1188,0x0000,0x0000,
517
0x118C,0x0000,0x0000, 0x1194,0x0000,0x0000, 0x11B9,0x0000,0x0000,
518
0x11DA,0x0000,0x0000, 0x1215,0x0000,0x0000, 0x1219,0x0000,0x0000,
519
0x117C,0x0000,0x0000, 0x1221,0x0000,0x0000, 0x127D,0x0000,0x0000,
520
0x1249,0x0000,0x0000, 0x1249,0x0000,0x0000, 0x129D,0x0000,0x0000,
521
0x129D,0x0000,0x0000, 0x12B1,0x0000,0x0000, 0x12B1,0x0000,0x0000,
522
0x12B5,0x0000,0x0000, 0x12B5,0x0000,0x0000, 0x12BD,0x0000,0x0000,
523
0x12BD,0x0000,0x0000, 0x12B9,0x0000,0x0000, 0x12B9,0x0000,0x0000,
524
0x12C1,0x0000,0x0000, 0x12C1,0x0000,0x0000, 0x12C5,0x0000,0x0000,
525
0x12C5,0x0000,0x0000, 0x12C9,0x0000,0x0000, 0x12C9,0x0000,0x0000,
526
0x12CD,0x0000,0x0000, 0x12CD,0x0000,0x0000, 0x12D1,0x0000,0x0000,
527
0x12D1,0x0000,0x0000, 0x12D5,0x0000,0x0000, 0x12D5,0x0000,0x0000,
528
0x1235,0x0000,0x0000, 0x1235,0x0000,0x0000, 0x1255,0x0000,0x0000,
529
0x1255,0x0000,0x0000, 0x1251,0x0000,0x0000, 0x1251,0x0000,0x0000,
530
0x124D,0x0000,0x0000, 0x124D,0x0000,0x0000, 0x11F7,0x0000,0x0000,
531
0x11F7,0x0000,0x0000, 0x034B,0x0000,0x0000, 0x0000,0x0000,0x0000,
532
0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,
533
0xFBC0,0x8487,0x0000, 0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,
534
0x1180,0x0000,0x0000, 0x1180,0x0000,0x0000, 0x1299,0x0000,0x0000,
535
0x1299,0x0000,0x0000, 0x11FF,0x0000,0x0000, 0x11FF,0x0000,0x0000,
536
0x1134,0x0000,0x0000, 0x1134,0x0000,0x0000, 0x1138,0x0000,0x0000,
537
0x1138,0x0000,0x0000, 0x113C,0x0000,0x0000, 0x113C,0x0000,0x0000,
538
0x1166,0x0000,0x0000, 0x1166,0x0000,0x0000, 0x114E,0x0000,0x0000,
539
0x114E,0x0000,0x0000, 0x119C,0x0000,0x0000, 0x119C,0x0000,0x0000,
540
0x11AC,0x0000,0x0000, 0x11AC,0x0000,0x0000, 0x11A8,0x0000,0x0000,
541
0x11A8,0x0000,0x0000, 0x11A4,0x0000,0x0000, 0x11A4,0x0000,0x0000,
542
0x11CE,0x0000,0x0000, 0x11CE,0x0000,0x0000, 0x11D6,0x0000,0x0000,
543
0x11D6,0x0000,0x0000, 0x11F3,0x0000,0x0000, 0x11F3,0x0000,0x0000,
544
0x12D9,0x0000,0x0000, 0x12D9,0x0000,0x0000, 0x1208,0x0000,0x0000,
545
0x1208,0x0000,0x0000, 0x1211,0x0000,0x0000, 0x1211,0x0000,0x0000,
546
0x122D,0x0000,0x0000, 0x122D,0x0000,0x0000, 0x1231,0x0000,0x0000,
547
0x1231,0x0000,0x0000, 0x1241,0x0000,0x0000, 0x1241,0x0000,0x0000,
548
0x125D,0x0000,0x0000, 0x125D,0x0000,0x0000, 0x1269,0x0000,0x0000,
549
0x1269,0x0000,0x0000, 0x1271,0x0000,0x0000, 0x1271,0x0000,0x0000,
550
0x1245,0x0000,0x0000, 0x1245,0x0000,0x0000, 0x1275,0x0000,0x0000,
551
0x1275,0x0000,0x0000, 0x1279,0x0000,0x0000, 0x1279,0x0000,0x0000,
552
0x12DD,0x0000,0x0000, 0x115E,0x0000,0x0000, 0x115E,0x0000,0x0000,
553
0x11A0,0x0000,0x0000, 0x11A0,0x0000,0x0000, 0x11B5,0x0000,0x0000,
554
0x11B5,0x0000,0x0000, 0x11D2,0x0000,0x0000, 0x11D2,0x0000,0x0000,
555
0x11CA,0x0000,0x0000, 0x11CA,0x0000,0x0000, 0x126D,0x0000,0x0000,
556
0x126D,0x0000,0x0000, 0x11C2,0x0000,0x0000, 0x11C2,0x0000,0x0000,
557
0xFBC0,0x84CF,0x0000, 0x1118,0x0000,0x0000, 0x1118,0x0000,0x0000,
558
0x111C,0x0000,0x0000, 0x111C,0x0000,0x0000, 0x1128,0x0000,0x0000,
559
0x1128,0x0000,0x0000, 0x1156,0x0000,0x0000, 0x1156,0x0000,0x0000,
560
0x1120,0x0000,0x0000, 0x1120,0x0000,0x0000, 0x1124,0x0000,0x0000,
561
0x1124,0x0000,0x0000, 0x1162,0x0000,0x0000, 0x1162,0x0000,0x0000,
562
0x116F,0x0000,0x0000, 0x116F,0x0000,0x0000, 0x1177,0x0000,0x0000,
563
0x1177,0x0000,0x0000, 0x117C,0x0000,0x0000, 0x117C,0x0000,0x0000,
564
0x1184,0x0000,0x0000, 0x1184,0x0000,0x0000, 0x11E3,0x0000,0x0000,
565
0x11E3,0x0000,0x0000, 0x11E7,0x0000,0x0000, 0x11E7,0x0000,0x0000,
566
0x11EB,0x0000,0x0000, 0x11EB,0x0000,0x0000, 0x12A5,0x0000,0x0000,
567
0x12A5,0x0000,0x0000, 0x121D,0x0000,0x0000, 0x121D,0x0000,0x0000,
568
0x1225,0x0000,0x0000, 0x1225,0x0000,0x0000, 0x1229,0x0000,0x0000,
569
0x1229,0x0000,0x0000, 0x1265,0x0000,0x0000, 0x1265,0x0000,0x0000,
570
0xFBC0,0x84F6,0x0000, 0xFBC0,0x84F7,0x0000, 0x1291,0x0000,0x0000,
571
0x1291,0x0000,0x0000, 0xFBC0,0x84FA,0x0000, 0xFBC0,0x84FB,0x0000,
572
0xFBC0,0x84FC,0x0000, 0xFBC0,0x84FD,0x0000, 0xFBC0,0x84FE,0x0000,
573
0xFBC0,0x84FF,0x0000 };
574
206 by Brian Aker
Removed final uint dead types.
575
uint16_t page005data[]= { /* 0500 (3 weights per char) */
1 by brian
clean slate
576
0x1144,0x0000,0x0000, 0x1144,0x0000,0x0000, 0x1149,0x0000,0x0000,
577
0x1149,0x0000,0x0000, 0x116E,0x0000,0x0000, 0x116E,0x0000,0x0000,
578
0x117B,0x0000,0x0000, 0x117B,0x0000,0x0000, 0x11BD,0x0000,0x0000,
579
0x11BD,0x0000,0x0000, 0x11DE,0x0000,0x0000, 0x11DE,0x0000,0x0000,
580
0x1207,0x0000,0x0000, 0x1207,0x0000,0x0000, 0x1210,0x0000,0x0000,
581
0x1210,0x0000,0x0000, 0xFBC0,0x8510,0x0000, 0xFBC0,0x8511,0x0000,
582
0xFBC0,0x8512,0x0000, 0xFBC0,0x8513,0x0000, 0xFBC0,0x8514,0x0000,
583
0xFBC0,0x8515,0x0000, 0xFBC0,0x8516,0x0000, 0xFBC0,0x8517,0x0000,
584
0xFBC0,0x8518,0x0000, 0xFBC0,0x8519,0x0000, 0xFBC0,0x851A,0x0000,
585
0xFBC0,0x851B,0x0000, 0xFBC0,0x851C,0x0000, 0xFBC0,0x851D,0x0000,
586
0xFBC0,0x851E,0x0000, 0xFBC0,0x851F,0x0000, 0xFBC0,0x8520,0x0000,
587
0xFBC0,0x8521,0x0000, 0xFBC0,0x8522,0x0000, 0xFBC0,0x8523,0x0000,
588
0xFBC0,0x8524,0x0000, 0xFBC0,0x8525,0x0000, 0xFBC0,0x8526,0x0000,
589
0xFBC0,0x8527,0x0000, 0xFBC0,0x8528,0x0000, 0xFBC0,0x8529,0x0000,
590
0xFBC0,0x852A,0x0000, 0xFBC0,0x852B,0x0000, 0xFBC0,0x852C,0x0000,
591
0xFBC0,0x852D,0x0000, 0xFBC0,0x852E,0x0000, 0xFBC0,0x852F,0x0000,
592
0xFBC0,0x8530,0x0000, 0x130A,0x0000,0x0000, 0x130B,0x0000,0x0000,
593
0x130C,0x0000,0x0000, 0x130D,0x0000,0x0000, 0x130E,0x0000,0x0000,
594
0x130F,0x0000,0x0000, 0x1310,0x0000,0x0000, 0x1311,0x0000,0x0000,
595
0x1312,0x0000,0x0000, 0x1313,0x0000,0x0000, 0x1314,0x0000,0x0000,
596
0x1315,0x0000,0x0000, 0x1316,0x0000,0x0000, 0x1317,0x0000,0x0000,
597
0x1318,0x0000,0x0000, 0x1319,0x0000,0x0000, 0x131A,0x0000,0x0000,
598
0x131B,0x0000,0x0000, 0x131C,0x0000,0x0000, 0x131D,0x0000,0x0000,
599
0x131E,0x0000,0x0000, 0x131F,0x0000,0x0000, 0x1320,0x0000,0x0000,
600
0x1321,0x0000,0x0000, 0x1322,0x0000,0x0000, 0x1323,0x0000,0x0000,
601
0x1324,0x0000,0x0000, 0x1325,0x0000,0x0000, 0x1326,0x0000,0x0000,
602
0x1327,0x0000,0x0000, 0x1328,0x0000,0x0000, 0x1329,0x0000,0x0000,
603
0x132A,0x0000,0x0000, 0x132B,0x0000,0x0000, 0x132C,0x0000,0x0000,
604
0x132D,0x0000,0x0000, 0x132E,0x0000,0x0000, 0x132F,0x0000,0x0000,
605
0xFBC0,0x8557,0x0000, 0xFBC0,0x8558,0x0000, 0x1330,0x0000,0x0000,
606
0x02EC,0x0000,0x0000, 0x02ED,0x0000,0x0000, 0x0253,0x0000,0x0000,
607
0x0230,0x0000,0x0000, 0x0257,0x0000,0x0000, 0x02EE,0x0000,0x0000,
608
0xFBC0,0x8560,0x0000, 0x130A,0x0000,0x0000, 0x130B,0x0000,0x0000,
609
0x130C,0x0000,0x0000, 0x130D,0x0000,0x0000, 0x130E,0x0000,0x0000,
610
0x130F,0x0000,0x0000, 0x1310,0x0000,0x0000, 0x1311,0x0000,0x0000,
611
0x1312,0x0000,0x0000, 0x1313,0x0000,0x0000, 0x1314,0x0000,0x0000,
612
0x1315,0x0000,0x0000, 0x1316,0x0000,0x0000, 0x1317,0x0000,0x0000,
613
0x1318,0x0000,0x0000, 0x1319,0x0000,0x0000, 0x131A,0x0000,0x0000,
614
0x131B,0x0000,0x0000, 0x131C,0x0000,0x0000, 0x131D,0x0000,0x0000,
615
0x131E,0x0000,0x0000, 0x131F,0x0000,0x0000, 0x1320,0x0000,0x0000,
616
0x1321,0x0000,0x0000, 0x1322,0x0000,0x0000, 0x1323,0x0000,0x0000,
617
0x1324,0x0000,0x0000, 0x1325,0x0000,0x0000, 0x1326,0x0000,0x0000,
618
0x1327,0x0000,0x0000, 0x1328,0x0000,0x0000, 0x1329,0x0000,0x0000,
619
0x132A,0x0000,0x0000, 0x132B,0x0000,0x0000, 0x132C,0x0000,0x0000,
620
0x132D,0x0000,0x0000, 0x132E,0x0000,0x0000, 0x132F,0x0000,0x0000,
621
0x130E,0x132B,0x0000, 0xFBC0,0x8588,0x0000, 0x023E,0x0000,0x0000,
622
0x0222,0x0000,0x0000, 0xFBC0,0x858B,0x0000, 0xFBC0,0x858C,0x0000,
623
0xFBC0,0x858D,0x0000, 0xFBC0,0x858E,0x0000, 0xFBC0,0x858F,0x0000,
624
0xFBC0,0x8590,0x0000, 0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,
625
0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,
626
0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,
627
0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,
628
0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,
629
0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,
630
0xFBC0,0x85A2,0x0000, 0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,
631
0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,
632
0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,
633
0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,
634
0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,
635
0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,
636
0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,
637
0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,
638
0xFBC0,0x85BA,0x0000, 0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,
639
0x0000,0x0000,0x0000, 0x02EF,0x0000,0x0000, 0x0000,0x0000,0x0000,
640
0x02F0,0x0000,0x0000, 0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,
641
0x02F1,0x0000,0x0000, 0x0000,0x0000,0x0000, 0xFBC0,0x85C5,0x0000,
642
0xFBC0,0x85C6,0x0000, 0xFBC0,0x85C7,0x0000, 0xFBC0,0x85C8,0x0000,
643
0xFBC0,0x85C9,0x0000, 0xFBC0,0x85CA,0x0000, 0xFBC0,0x85CB,0x0000,
644
0xFBC0,0x85CC,0x0000, 0xFBC0,0x85CD,0x0000, 0xFBC0,0x85CE,0x0000,
645
0xFBC0,0x85CF,0x0000, 0x1331,0x0000,0x0000, 0x1332,0x0000,0x0000,
646
0x1333,0x0000,0x0000, 0x1334,0x0000,0x0000, 0x1335,0x0000,0x0000,
647
0x1336,0x0000,0x0000, 0x1337,0x0000,0x0000, 0x1338,0x0000,0x0000,
648
0x1339,0x0000,0x0000, 0x133A,0x0000,0x0000, 0x133B,0x0000,0x0000,
649
0x133B,0x0000,0x0000, 0x133C,0x0000,0x0000, 0x133D,0x0000,0x0000,
650
0x133D,0x0000,0x0000, 0x133E,0x0000,0x0000, 0x133E,0x0000,0x0000,
651
0x133F,0x0000,0x0000, 0x1340,0x0000,0x0000, 0x1341,0x0000,0x0000,
652
0x1341,0x0000,0x0000, 0x1342,0x0000,0x0000, 0x1342,0x0000,0x0000,
653
0x1343,0x0000,0x0000, 0x1344,0x0000,0x0000, 0x1345,0x0000,0x0000,
654
0x1346,0x0000,0x0000, 0xFBC0,0x85EB,0x0000, 0xFBC0,0x85EC,0x0000,
655
0xFBC0,0x85ED,0x0000, 0xFBC0,0x85EE,0x0000, 0xFBC0,0x85EF,0x0000,
656
0x1336,0x1336,0x0000, 0x1336,0x133A,0x0000, 0x133A,0x133A,0x0000,
657
0x02F2,0x0000,0x0000, 0x02F3,0x0000,0x0000, 0xFBC0,0x85F5,0x0000,
658
0xFBC0,0x85F6,0x0000, 0xFBC0,0x85F7,0x0000, 0xFBC0,0x85F8,0x0000,
659
0xFBC0,0x85F9,0x0000, 0xFBC0,0x85FA,0x0000, 0xFBC0,0x85FB,0x0000,
660
0xFBC0,0x85FC,0x0000, 0xFBC0,0x85FD,0x0000, 0xFBC0,0x85FE,0x0000,
661
0xFBC0,0x85FF,0x0000 };
662
206 by Brian Aker
Removed final uint dead types.
663
uint16_t page006data[]= { /* 0600 (3 weights per char) */
1 by brian
clean slate
664
0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,
665
0x0000,0x0000,0x0000, 0xFBC0,0x8604,0x0000, 0xFBC0,0x8605,0x0000,
666
0xFBC0,0x8606,0x0000, 0xFBC0,0x8607,0x0000, 0xFBC0,0x8608,0x0000,
667
0xFBC0,0x8609,0x0000, 0xFBC0,0x860A,0x0000, 0xFBC0,0x860B,0x0000,
668
0x0231,0x0000,0x0000, 0x0232,0x0000,0x0000, 0x034C,0x0000,0x0000,
669
0x034D,0x0000,0x0000, 0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,
670
0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,
671
0x0000,0x0000,0x0000, 0xFBC0,0x8616,0x0000, 0xFBC0,0x8617,0x0000,
672
0xFBC0,0x8618,0x0000, 0xFBC0,0x8619,0x0000, 0xFBC0,0x861A,0x0000,
673
0x023B,0x0000,0x0000, 0xFBC0,0x861C,0x0000, 0xFBC0,0x861D,0x0000,
674
0xFBC0,0x861E,0x0000, 0x0258,0x0000,0x0000, 0xFBC0,0x8620,0x0000,
675
0x1347,0x0000,0x0000, 0x1348,0x0000,0x0000, 0x1349,0x0000,0x0000,
676
0x134C,0x0000,0x0000, 0x134D,0x0000,0x0000, 0x134F,0x0000,0x0000,
677
0x1350,0x0000,0x0000, 0x1352,0x0000,0x0000, 0x1356,0x0000,0x0000,
678
0x1357,0x0000,0x0000, 0x1358,0x0000,0x0000, 0x135E,0x0000,0x0000,
679
0x1364,0x0000,0x0000, 0x1365,0x0000,0x0000, 0x1369,0x0000,0x0000,
680
0x136A,0x0000,0x0000, 0x1375,0x0000,0x0000, 0x1376,0x0000,0x0000,
681
0x1381,0x0000,0x0000, 0x1382,0x0000,0x0000, 0x1387,0x0000,0x0000,
682
0x1388,0x0000,0x0000, 0x138C,0x0000,0x0000, 0x138D,0x0000,0x0000,
683
0x138F,0x0000,0x0000, 0x1390,0x0000,0x0000, 0xFBC0,0x863B,0x0000,
684
0xFBC0,0x863C,0x0000, 0xFBC0,0x863D,0x0000, 0xFBC0,0x863E,0x0000,
685
0xFBC0,0x863F,0x0000, 0x020B,0x0000,0x0000, 0x1393,0x0000,0x0000,
686
0x139B,0x0000,0x0000, 0x139E,0x0000,0x0000, 0x13AB,0x0000,0x0000,
687
0x13B0,0x0000,0x0000, 0x13B1,0x0000,0x0000, 0x13B7,0x0000,0x0000,
688
0x13BD,0x0000,0x0000, 0x13C7,0x0000,0x0000, 0x13C8,0x0000,0x0000,
689
0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,
690
0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,
691
0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,
692
0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,
693
0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000, 0xFBC0,0x8659,0x0000,
694
0xFBC0,0x865A,0x0000, 0xFBC0,0x865B,0x0000, 0xFBC0,0x865C,0x0000,
695
0xFBC0,0x865D,0x0000, 0xFBC0,0x865E,0x0000, 0xFBC0,0x865F,0x0000,
696
0x0E29,0x0000,0x0000, 0x0E2A,0x0000,0x0000, 0x0E2B,0x0000,0x0000,
697
0x0E2C,0x0000,0x0000, 0x0E2D,0x0000,0x0000, 0x0E2E,0x0000,0x0000,
698
0x0E2F,0x0000,0x0000, 0x0E30,0x0000,0x0000, 0x0E31,0x0000,0x0000,
699
0x0E32,0x0000,0x0000, 0x02D4,0x0000,0x0000, 0x0233,0x0000,0x0000,
700
0x0234,0x0000,0x0000, 0x02CB,0x0000,0x0000, 0x1351,0x0000,0x0000,
701
0x139A,0x0000,0x0000, 0x0000,0x0000,0x0000, 0x134B,0x0000,0x0000,
702
0x134A,0x0000,0x0000, 0x134E,0x0000,0x0000, 0x1347,0x0000,0x0000,
703
0x1350,0x1347,0x0000, 0x13BD,0x1347,0x0000, 0x13C1,0x1347,0x0000,
704
0x13C8,0x1347,0x0000, 0x1359,0x0000,0x0000, 0x135A,0x0000,0x0000,
705
0x1353,0x0000,0x0000, 0x135B,0x0000,0x0000, 0x135C,0x0000,0x0000,
706
0x1354,0x0000,0x0000, 0x135D,0x0000,0x0000, 0x1355,0x0000,0x0000,
707
0x1366,0x0000,0x0000, 0x1367,0x0000,0x0000, 0x135F,0x0000,0x0000,
708
0x1360,0x0000,0x0000, 0x1368,0x0000,0x0000, 0x1361,0x0000,0x0000,
709
0x1363,0x0000,0x0000, 0x136B,0x0000,0x0000, 0x136C,0x0000,0x0000,
710
0x136D,0x0000,0x0000, 0x136E,0x0000,0x0000, 0x136F,0x0000,0x0000,
711
0x1370,0x0000,0x0000, 0x1371,0x0000,0x0000, 0x1372,0x0000,0x0000,
712
0x1373,0x0000,0x0000, 0x1377,0x0000,0x0000, 0x1378,0x0000,0x0000,
713
0x1379,0x0000,0x0000, 0x137A,0x0000,0x0000, 0x137B,0x0000,0x0000,
714
0x137C,0x0000,0x0000, 0x137D,0x0000,0x0000, 0x137E,0x0000,0x0000,
715
0x137F,0x0000,0x0000, 0x1383,0x0000,0x0000, 0x1384,0x0000,0x0000,
716
0x1385,0x0000,0x0000, 0x1389,0x0000,0x0000, 0x138A,0x0000,0x0000,
717
0x138E,0x0000,0x0000, 0x1391,0x0000,0x0000, 0x1394,0x0000,0x0000,
718
0x1395,0x0000,0x0000, 0x1396,0x0000,0x0000, 0x1397,0x0000,0x0000,
719
0x1398,0x0000,0x0000, 0x1399,0x0000,0x0000, 0x139C,0x0000,0x0000,
720
0x139D,0x0000,0x0000, 0x139F,0x0000,0x0000, 0x13A0,0x0000,0x0000,
721
0x13A1,0x0000,0x0000, 0x13A2,0x0000,0x0000, 0x13A3,0x0000,0x0000,
722
0x13A4,0x0000,0x0000, 0x13A5,0x0000,0x0000, 0x13A6,0x0000,0x0000,
723
0x13A7,0x0000,0x0000, 0x13A8,0x0000,0x0000, 0x13A9,0x0000,0x0000,
724
0x13AA,0x0000,0x0000, 0x13AC,0x0000,0x0000, 0x13AD,0x0000,0x0000,
725
0x13AE,0x0000,0x0000, 0x13AF,0x0000,0x0000, 0x13B6,0x0000,0x0000,
726
0x13B2,0x0000,0x0000, 0x13B3,0x0000,0x0000, 0x13B4,0x0000,0x0000,
727
0x13B5,0x0000,0x0000, 0x13B8,0x0000,0x0000, 0x1362,0x0000,0x0000,
728
0x13BC,0x0000,0x0000, 0x13B9,0x0000,0x0000, 0x13B9,0x0000,0x0000,
729
0x13BA,0x0000,0x0000, 0x13BE,0x0000,0x0000, 0x13BF,0x0000,0x0000,
730
0x13C0,0x0000,0x0000, 0x13C1,0x0000,0x0000, 0x13C2,0x0000,0x0000,
731
0x13C3,0x0000,0x0000, 0x13C4,0x0000,0x0000, 0x13C5,0x0000,0x0000,
732
0x13C9,0x0000,0x0000, 0x13CA,0x0000,0x0000, 0x13CB,0x0000,0x0000,
733
0x13C6,0x0000,0x0000, 0x13CC,0x0000,0x0000, 0x13CD,0x0000,0x0000,
734
0x13CE,0x0000,0x0000, 0x13CE,0x0000,0x0000, 0x025F,0x0000,0x0000,
735
0x13BC,0x0000,0x0000, 0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,
736
0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,
737
0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,
738
0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,
739
0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,
740
0x0000,0x0000,0x0000, 0x13BD,0x0000,0x0000, 0x13C8,0x0000,0x0000,
741
0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000, 0x034E,0x0000,0x0000,
742
0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,
743
0x0000,0x0000,0x0000, 0x1374,0x0000,0x0000, 0x1380,0x0000,0x0000,
744
0x0E29,0x0000,0x0000, 0x0E2A,0x0000,0x0000, 0x0E2B,0x0000,0x0000,
745
0x0E2C,0x0000,0x0000, 0x0E2D,0x0000,0x0000, 0x0E2E,0x0000,0x0000,
746
0x0E2F,0x0000,0x0000, 0x0E30,0x0000,0x0000, 0x0E31,0x0000,0x0000,
747
0x0E32,0x0000,0x0000, 0x1386,0x0000,0x0000, 0x138B,0x0000,0x0000,
748
0x1392,0x0000,0x0000, 0x1347,0x0000,0x0000, 0x13B0,0x0000,0x0000,
749
0x13BB,0x0000,0x0000 };
750
206 by Brian Aker
Removed final uint dead types.
751
uint16_t page007data[]= { /* 0700 (3 weights per char) */
1 by brian
clean slate
752
0x0270,0x0000,0x0000, 0x0260,0x0000,0x0000, 0x0261,0x0000,0x0000,
753
0x023F,0x0000,0x0000, 0x0240,0x0000,0x0000, 0x0241,0x0000,0x0000,
754
0x0242,0x0000,0x0000, 0x0243,0x0000,0x0000, 0x0244,0x0000,0x0000,
755
0x0259,0x0000,0x0000, 0x02F4,0x0000,0x0000, 0x02F5,0x0000,0x0000,
756
0x02F6,0x0000,0x0000, 0x02F7,0x0000,0x0000, 0xFBC0,0x870E,0x0000,
757
0x0000,0x0000,0x0000, 0x13CF,0x0000,0x0000, 0x0000,0x0000,0x0000,
758
0x13D0,0x0000,0x0000, 0x13D1,0x0000,0x0000, 0x13D1,0x0000,0x0000,
759
0x13D3,0x0000,0x0000, 0x13D2,0x0000,0x0000, 0x13D4,0x0000,0x0000,
760
0x13D5,0x0000,0x0000, 0x13D6,0x0000,0x0000, 0x13D8,0x0000,0x0000,
761
0x13D9,0x0000,0x0000, 0x13D9,0x0000,0x0000, 0x13DA,0x0000,0x0000,
762
0x13DB,0x0000,0x0000, 0x13DC,0x0000,0x0000, 0x13DE,0x0000,0x0000,
763
0x13DF,0x0000,0x0000, 0x13E0,0x0000,0x0000, 0x13E1,0x0000,0x0000,
764
0x13E1,0x0000,0x0000, 0x13E2,0x0000,0x0000, 0x13E3,0x0000,0x0000,
765
0x13E3,0x0000,0x0000, 0x13E5,0x0000,0x0000, 0x13E6,0x0000,0x0000,
766
0x13E7,0x0000,0x0000, 0x13E8,0x0000,0x0000, 0x13E9,0x0000,0x0000,
767
0x13D0,0x0000,0x0000, 0x13D1,0x0000,0x0000, 0x13D3,0x0000,0x0000,
768
0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,
769
0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,
770
0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,
771
0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,
772
0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,
773
0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,
774
0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,
775
0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,
776
0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,
777
0xFBC0,0x874B,0x0000, 0xFBC0,0x874C,0x0000, 0x13D7,0x0000,0x0000,
778
0x13DD,0x0000,0x0000, 0x13E4,0x0000,0x0000, 0xFBC0,0x8750,0x0000,
779
0xFBC0,0x8751,0x0000, 0xFBC0,0x8752,0x0000, 0xFBC0,0x8753,0x0000,
780
0xFBC0,0x8754,0x0000, 0xFBC0,0x8755,0x0000, 0xFBC0,0x8756,0x0000,
781
0xFBC0,0x8757,0x0000, 0xFBC0,0x8758,0x0000, 0xFBC0,0x8759,0x0000,
782
0xFBC0,0x875A,0x0000, 0xFBC0,0x875B,0x0000, 0xFBC0,0x875C,0x0000,
783
0xFBC0,0x875D,0x0000, 0xFBC0,0x875E,0x0000, 0xFBC0,0x875F,0x0000,
784
0xFBC0,0x8760,0x0000, 0xFBC0,0x8761,0x0000, 0xFBC0,0x8762,0x0000,
785
0xFBC0,0x8763,0x0000, 0xFBC0,0x8764,0x0000, 0xFBC0,0x8765,0x0000,
786
0xFBC0,0x8766,0x0000, 0xFBC0,0x8767,0x0000, 0xFBC0,0x8768,0x0000,
787
0xFBC0,0x8769,0x0000, 0xFBC0,0x876A,0x0000, 0xFBC0,0x876B,0x0000,
788
0xFBC0,0x876C,0x0000, 0xFBC0,0x876D,0x0000, 0xFBC0,0x876E,0x0000,
789
0xFBC0,0x876F,0x0000, 0xFBC0,0x8770,0x0000, 0xFBC0,0x8771,0x0000,
790
0xFBC0,0x8772,0x0000, 0xFBC0,0x8773,0x0000, 0xFBC0,0x8774,0x0000,
791
0xFBC0,0x8775,0x0000, 0xFBC0,0x8776,0x0000, 0xFBC0,0x8777,0x0000,
792
0xFBC0,0x8778,0x0000, 0xFBC0,0x8779,0x0000, 0xFBC0,0x877A,0x0000,
793
0xFBC0,0x877B,0x0000, 0xFBC0,0x877C,0x0000, 0xFBC0,0x877D,0x0000,
794
0xFBC0,0x877E,0x0000, 0xFBC0,0x877F,0x0000, 0x13EA,0x0000,0x0000,
795
0x13ED,0x0000,0x0000, 0x13EE,0x0000,0x0000, 0x13EF,0x0000,0x0000,
796
0x13F1,0x0000,0x0000, 0x13F2,0x0000,0x0000, 0x13F3,0x0000,0x0000,
797
0x13F4,0x0000,0x0000, 0x13F7,0x0000,0x0000, 0x13F9,0x0000,0x0000,
798
0x13FA,0x0000,0x0000, 0x13FB,0x0000,0x0000, 0x13FD,0x0000,0x0000,
799
0x1401,0x0000,0x0000, 0x1402,0x0000,0x0000, 0x1404,0x0000,0x0000,
800
0x1405,0x0000,0x0000, 0x1409,0x0000,0x0000, 0x140A,0x0000,0x0000,
801
0x140B,0x0000,0x0000, 0x140C,0x0000,0x0000, 0x140D,0x0000,0x0000,
802
0x140E,0x0000,0x0000, 0x140F,0x0000,0x0000, 0x13FE,0x0000,0x0000,
803
0x13EB,0x0000,0x0000, 0x13EC,0x0000,0x0000, 0x13FC,0x0000,0x0000,
804
0x13F0,0x0000,0x0000, 0x1406,0x0000,0x0000, 0x1407,0x0000,0x0000,
805
0x1408,0x0000,0x0000, 0x13FF,0x0000,0x0000, 0x1400,0x0000,0x0000,
806
0x13F5,0x0000,0x0000, 0x13F6,0x0000,0x0000, 0x1403,0x0000,0x0000,
807
0x13F8,0x0000,0x0000, 0x1411,0x0000,0x0000, 0x1412,0x0000,0x0000,
808
0x1413,0x0000,0x0000, 0x1414,0x0000,0x0000, 0x1415,0x0000,0x0000,
809
0x1416,0x0000,0x0000, 0x1417,0x0000,0x0000, 0x1418,0x0000,0x0000,
810
0x1419,0x0000,0x0000, 0x141A,0x0000,0x0000, 0x141B,0x0000,0x0000,
811
0x1410,0x0000,0x0000, 0xFBC0,0x87B2,0x0000, 0xFBC0,0x87B3,0x0000,
812
0xFBC0,0x87B4,0x0000, 0xFBC0,0x87B5,0x0000, 0xFBC0,0x87B6,0x0000,
813
0xFBC0,0x87B7,0x0000, 0xFBC0,0x87B8,0x0000, 0xFBC0,0x87B9,0x0000,
814
0xFBC0,0x87BA,0x0000, 0xFBC0,0x87BB,0x0000, 0xFBC0,0x87BC,0x0000,
815
0xFBC0,0x87BD,0x0000, 0xFBC0,0x87BE,0x0000, 0xFBC0,0x87BF,0x0000,
816
0xFBC0,0x87C0,0x0000, 0xFBC0,0x87C1,0x0000, 0xFBC0,0x87C2,0x0000,
817
0xFBC0,0x87C3,0x0000, 0xFBC0,0x87C4,0x0000, 0xFBC0,0x87C5,0x0000,
818
0xFBC0,0x87C6,0x0000, 0xFBC0,0x87C7,0x0000, 0xFBC0,0x87C8,0x0000,
819
0xFBC0,0x87C9,0x0000, 0xFBC0,0x87CA,0x0000, 0xFBC0,0x87CB,0x0000,
820
0xFBC0,0x87CC,0x0000, 0xFBC0,0x87CD,0x0000, 0xFBC0,0x87CE,0x0000,
821
0xFBC0,0x87CF,0x0000, 0xFBC0,0x87D0,0x0000, 0xFBC0,0x87D1,0x0000,
822
0xFBC0,0x87D2,0x0000, 0xFBC0,0x87D3,0x0000, 0xFBC0,0x87D4,0x0000,
823
0xFBC0,0x87D5,0x0000, 0xFBC0,0x87D6,0x0000, 0xFBC0,0x87D7,0x0000,
824
0xFBC0,0x87D8,0x0000, 0xFBC0,0x87D9,0x0000, 0xFBC0,0x87DA,0x0000,
825
0xFBC0,0x87DB,0x0000, 0xFBC0,0x87DC,0x0000, 0xFBC0,0x87DD,0x0000,
826
0xFBC0,0x87DE,0x0000, 0xFBC0,0x87DF,0x0000, 0xFBC0,0x87E0,0x0000,
827
0xFBC0,0x87E1,0x0000, 0xFBC0,0x87E2,0x0000, 0xFBC0,0x87E3,0x0000,
828
0xFBC0,0x87E4,0x0000, 0xFBC0,0x87E5,0x0000, 0xFBC0,0x87E6,0x0000,
829
0xFBC0,0x87E7,0x0000, 0xFBC0,0x87E8,0x0000, 0xFBC0,0x87E9,0x0000,
830
0xFBC0,0x87EA,0x0000, 0xFBC0,0x87EB,0x0000, 0xFBC0,0x87EC,0x0000,
831
0xFBC0,0x87ED,0x0000, 0xFBC0,0x87EE,0x0000, 0xFBC0,0x87EF,0x0000,
832
0xFBC0,0x87F0,0x0000, 0xFBC0,0x87F1,0x0000, 0xFBC0,0x87F2,0x0000,
833
0xFBC0,0x87F3,0x0000, 0xFBC0,0x87F4,0x0000, 0xFBC0,0x87F5,0x0000,
834
0xFBC0,0x87F6,0x0000, 0xFBC0,0x87F7,0x0000, 0xFBC0,0x87F8,0x0000,
835
0xFBC0,0x87F9,0x0000, 0xFBC0,0x87FA,0x0000, 0xFBC0,0x87FB,0x0000,
836
0xFBC0,0x87FC,0x0000, 0xFBC0,0x87FD,0x0000, 0xFBC0,0x87FE,0x0000,
837
0xFBC0,0x87FF,0x0000 };
838
206 by Brian Aker
Removed final uint dead types.
839
uint16_t page009data[]= { /* 0900 (3 weights per char) */
1 by brian
clean slate
840
0xFBC0,0x8900,0x0000, 0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,
841
0x0000,0x0000,0x0000, 0x155A,0x0000,0x0000, 0x155B,0x0000,0x0000,
842
0x155C,0x0000,0x0000, 0x155D,0x0000,0x0000, 0x155E,0x0000,0x0000,
843
0x155F,0x0000,0x0000, 0x1560,0x0000,0x0000, 0x1561,0x0000,0x0000,
844
0x1563,0x0000,0x0000, 0x1565,0x0000,0x0000, 0x1566,0x0000,0x0000,
845
0x1567,0x0000,0x0000, 0x1568,0x0000,0x0000, 0x1569,0x0000,0x0000,
846
0x156A,0x0000,0x0000, 0x156B,0x0000,0x0000, 0x156C,0x0000,0x0000,
847
0x156D,0x0000,0x0000, 0x156E,0x0000,0x0000, 0x156F,0x0000,0x0000,
848
0x1570,0x0000,0x0000, 0x1571,0x0000,0x0000, 0x1572,0x0000,0x0000,
849
0x1573,0x0000,0x0000, 0x1574,0x0000,0x0000, 0x1575,0x0000,0x0000,
850
0x1576,0x0000,0x0000, 0x1577,0x0000,0x0000, 0x1578,0x0000,0x0000,
851
0x1579,0x0000,0x0000, 0x157A,0x0000,0x0000, 0x157B,0x0000,0x0000,
852
0x157C,0x0000,0x0000, 0x157D,0x0000,0x0000, 0x157E,0x0000,0x0000,
853
0x157F,0x0000,0x0000, 0x1580,0x0000,0x0000, 0x1580,0x0000,0x0000,
854
0x1581,0x0000,0x0000, 0x1582,0x0000,0x0000, 0x1583,0x0000,0x0000,
855
0x1584,0x0000,0x0000, 0x1585,0x0000,0x0000, 0x1586,0x0000,0x0000,
856
0x1587,0x0000,0x0000, 0x1587,0x0000,0x0000, 0x1588,0x0000,0x0000,
857
0x1589,0x0000,0x0000, 0x1589,0x0000,0x0000, 0x158A,0x0000,0x0000,
858
0x158B,0x0000,0x0000, 0x158C,0x0000,0x0000, 0x158D,0x0000,0x0000,
859
0x158E,0x0000,0x0000, 0xFBC0,0x893A,0x0000, 0xFBC0,0x893B,0x0000,
860
0x0000,0x0000,0x0000, 0x158F,0x0000,0x0000, 0x1590,0x0000,0x0000,
861
0x1591,0x0000,0x0000, 0x1592,0x0000,0x0000, 0x1593,0x0000,0x0000,
862
0x1594,0x0000,0x0000, 0x1595,0x0000,0x0000, 0x1596,0x0000,0x0000,
863
0x1599,0x0000,0x0000, 0x159A,0x0000,0x0000, 0x159B,0x0000,0x0000,
864
0x159C,0x0000,0x0000, 0x159D,0x0000,0x0000, 0x159E,0x0000,0x0000,
865
0x159F,0x0000,0x0000, 0x15A0,0x0000,0x0000, 0x15A1,0x0000,0x0000,
866
0xFBC0,0x894E,0x0000, 0xFBC0,0x894F,0x0000, 0x1559,0x0000,0x0000,
867
0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,
868
0x0000,0x0000,0x0000, 0xFBC0,0x8955,0x0000, 0xFBC0,0x8956,0x0000,
869
0xFBC0,0x8957,0x0000, 0x156D,0x0000,0x0000, 0x156E,0x0000,0x0000,
870
0x156F,0x0000,0x0000, 0x1574,0x0000,0x0000, 0x1579,0x0000,0x0000,
871
0x157A,0x0000,0x0000, 0x1582,0x0000,0x0000, 0x1586,0x0000,0x0000,
872
0x1562,0x0000,0x0000, 0x1564,0x0000,0x0000, 0x1597,0x0000,0x0000,
873
0x1598,0x0000,0x0000, 0x0268,0x0000,0x0000, 0x0269,0x0000,0x0000,
874
0x0E29,0x0000,0x0000, 0x0E2A,0x0000,0x0000, 0x0E2B,0x0000,0x0000,
875
0x0E2C,0x0000,0x0000, 0x0E2D,0x0000,0x0000, 0x0E2E,0x0000,0x0000,
876
0x0E2F,0x0000,0x0000, 0x0E30,0x0000,0x0000, 0x0E31,0x0000,0x0000,
877
0x0E32,0x0000,0x0000, 0x02FA,0x0000,0x0000, 0xFBC0,0x8971,0x0000,
878
0xFBC0,0x8972,0x0000, 0xFBC0,0x8973,0x0000, 0xFBC0,0x8974,0x0000,
879
0xFBC0,0x8975,0x0000, 0xFBC0,0x8976,0x0000, 0xFBC0,0x8977,0x0000,
880
0xFBC0,0x8978,0x0000, 0xFBC0,0x8979,0x0000, 0xFBC0,0x897A,0x0000,
881
0xFBC0,0x897B,0x0000, 0xFBC0,0x897C,0x0000, 0xFBC0,0x897D,0x0000,
882
0xFBC0,0x897E,0x0000, 0xFBC0,0x897F,0x0000, 0xFBC0,0x8980,0x0000,
883
0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,
884
0xFBC0,0x8984,0x0000, 0x15A2,0x0000,0x0000, 0x15A3,0x0000,0x0000,
885
0x15A4,0x0000,0x0000, 0x15A5,0x0000,0x0000, 0x15A6,0x0000,0x0000,
886
0x15A7,0x0000,0x0000, 0x15A8,0x0000,0x0000, 0x15AA,0x0000,0x0000,
887
0xFBC0,0x898D,0x0000, 0xFBC0,0x898E,0x0000, 0x15AC,0x0000,0x0000,
888
0x15AD,0x0000,0x0000, 0xFBC0,0x8991,0x0000, 0xFBC0,0x8992,0x0000,
889
0x15AE,0x0000,0x0000, 0x15AF,0x0000,0x0000, 0x15B0,0x0000,0x0000,
890
0x15B1,0x0000,0x0000, 0x15B2,0x0000,0x0000, 0x15B3,0x0000,0x0000,
891
0x15B4,0x0000,0x0000, 0x15B5,0x0000,0x0000, 0x15B6,0x0000,0x0000,
892
0x15B7,0x0000,0x0000, 0x15B8,0x0000,0x0000, 0x15B9,0x0000,0x0000,
893
0x15BA,0x0000,0x0000, 0x15BB,0x0000,0x0000, 0x15BC,0x0000,0x0000,
894
0x15BD,0x0000,0x0000, 0x15BE,0x0000,0x0000, 0x15BF,0x0000,0x0000,
895
0x15C0,0x0000,0x0000, 0x15C1,0x0000,0x0000, 0x15C2,0x0000,0x0000,
896
0x15C3,0x0000,0x0000, 0xFBC0,0x89A9,0x0000, 0x15C4,0x0000,0x0000,
897
0x15C5,0x0000,0x0000, 0x15C6,0x0000,0x0000, 0x15C7,0x0000,0x0000,
898
0x15C8,0x0000,0x0000, 0x15C9,0x0000,0x0000, 0x15CA,0x0000,0x0000,
899
0xFBC0,0x89B1,0x0000, 0x15CC,0x0000,0x0000, 0xFBC0,0x89B3,0x0000,
900
0xFBC0,0x89B4,0x0000, 0xFBC0,0x89B5,0x0000, 0x15CE,0x0000,0x0000,
901
0x15CF,0x0000,0x0000, 0x15D0,0x0000,0x0000, 0x15D1,0x0000,0x0000,
902
0xFBC0,0x89BA,0x0000, 0xFBC0,0x89BB,0x0000, 0x0000,0x0000,0x0000,
903
0x15D2,0x0000,0x0000, 0x15D3,0x0000,0x0000, 0x15D4,0x0000,0x0000,
904
0x15D5,0x0000,0x0000, 0x15D6,0x0000,0x0000, 0x15D7,0x0000,0x0000,
905
0x15D8,0x0000,0x0000, 0x15D9,0x0000,0x0000, 0xFBC0,0x89C5,0x0000,
906
0xFBC0,0x89C6,0x0000, 0x15DC,0x0000,0x0000, 0x15DD,0x0000,0x0000,
907
0xFBC0,0x89C9,0x0000, 0xFBC0,0x89CA,0x0000, 0x15DE,0x0000,0x0000,
908
0x15DF,0x0000,0x0000, 0x15E0,0x0000,0x0000, 0xFBC0,0x89CE,0x0000,
909
0xFBC0,0x89CF,0x0000, 0xFBC0,0x89D0,0x0000, 0xFBC0,0x89D1,0x0000,
910
0xFBC0,0x89D2,0x0000, 0xFBC0,0x89D3,0x0000, 0xFBC0,0x89D4,0x0000,
911
0xFBC0,0x89D5,0x0000, 0xFBC0,0x89D6,0x0000, 0x15E1,0x0000,0x0000,
912
0xFBC0,0x89D8,0x0000, 0xFBC0,0x89D9,0x0000, 0xFBC0,0x89DA,0x0000,
913
0xFBC0,0x89DB,0x0000, 0x15BC,0x0000,0x0000, 0x15BD,0x0000,0x0000,
914
0xFBC0,0x89DE,0x0000, 0x15C9,0x0000,0x0000, 0x15A9,0x0000,0x0000,
915
0x15AB,0x0000,0x0000, 0x15DA,0x0000,0x0000, 0x15DB,0x0000,0x0000,
916
0xFBC0,0x89E4,0x0000, 0xFBC0,0x89E5,0x0000, 0x0E29,0x0000,0x0000,
917
0x0E2A,0x0000,0x0000, 0x0E2B,0x0000,0x0000, 0x0E2C,0x0000,0x0000,
918
0x0E2D,0x0000,0x0000, 0x0E2E,0x0000,0x0000, 0x0E2F,0x0000,0x0000,
919
0x0E30,0x0000,0x0000, 0x0E31,0x0000,0x0000, 0x0E32,0x0000,0x0000,
920
0x15CB,0x0000,0x0000, 0x15CD,0x0000,0x0000, 0x0E12,0x0000,0x0000,
921
0x0E13,0x0000,0x0000, 0x0E2A,0x0000,0x0000, 0x0E2B,0x0000,0x0000,
922
0x0E2C,0x0000,0x0000, 0x0E2D,0x0000,0x0000, 0x0DC7,0x0000,0x0000,
923
0x0DC8,0x0000,0x0000, 0x0350,0x0000,0x0000, 0xFBC0,0x89FB,0x0000,
924
0xFBC0,0x89FC,0x0000, 0xFBC0,0x89FD,0x0000, 0xFBC0,0x89FE,0x0000,
925
0xFBC0,0x89FF,0x0000 };
926
206 by Brian Aker
Removed final uint dead types.
927
uint16_t page00Adata[]= { /* 0A00 (3 weights per char) */
1 by brian
clean slate
928
0xFBC0,0x8A00,0x0000, 0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,
929
0x0000,0x0000,0x0000, 0xFBC0,0x8A04,0x0000, 0x15E7,0x0000,0x0000,
930
0x15E8,0x0000,0x0000, 0x15EC,0x0000,0x0000, 0x15ED,0x0000,0x0000,
931
0x15E4,0x0000,0x0000, 0x15E5,0x0000,0x0000, 0xFBC0,0x8A0B,0x0000,
932
0xFBC0,0x8A0C,0x0000, 0xFBC0,0x8A0D,0x0000, 0xFBC0,0x8A0E,0x0000,
933
0x15EE,0x0000,0x0000, 0x15E9,0x0000,0x0000, 0xFBC0,0x8A11,0x0000,
934
0xFBC0,0x8A12,0x0000, 0x15E6,0x0000,0x0000, 0x15EA,0x0000,0x0000,
935
0x15F1,0x0000,0x0000, 0x15F2,0x0000,0x0000, 0x15F3,0x0000,0x0000,
936
0x15F4,0x0000,0x0000, 0x15F5,0x0000,0x0000, 0x15F6,0x0000,0x0000,
937
0x15F7,0x0000,0x0000, 0x15F8,0x0000,0x0000, 0x15F9,0x0000,0x0000,
938
0x15FA,0x0000,0x0000, 0x15FB,0x0000,0x0000, 0x15FC,0x0000,0x0000,
939
0x15FD,0x0000,0x0000, 0x15FE,0x0000,0x0000, 0x15FF,0x0000,0x0000,
940
0x1600,0x0000,0x0000, 0x1601,0x0000,0x0000, 0x1602,0x0000,0x0000,
941
0x1603,0x0000,0x0000, 0x1604,0x0000,0x0000, 0xFBC0,0x8A29,0x0000,
942
0x1605,0x0000,0x0000, 0x1606,0x0000,0x0000, 0x1607,0x0000,0x0000,
943
0x1608,0x0000,0x0000, 0x1609,0x0000,0x0000, 0x160A,0x0000,0x0000,
944
0x160B,0x0000,0x0000, 0xFBC0,0x8A31,0x0000, 0x160C,0x0000,0x0000,
945
0x160C,0x0000,0x0000, 0xFBC0,0x8A34,0x0000, 0x160D,0x0000,0x0000,
946
0x15EF,0x0000,0x0000, 0xFBC0,0x8A37,0x0000, 0x15EF,0x0000,0x0000,
947
0x15F0,0x0000,0x0000, 0xFBC0,0x8A3A,0x0000, 0xFBC0,0x8A3B,0x0000,
948
0x0000,0x0000,0x0000, 0xFBC0,0x8A3D,0x0000, 0x160F,0x0000,0x0000,
949
0x1610,0x0000,0x0000, 0x1611,0x0000,0x0000, 0x1612,0x0000,0x0000,
950
0x1613,0x0000,0x0000, 0xFBC0,0x8A43,0x0000, 0xFBC0,0x8A44,0x0000,
951
0xFBC0,0x8A45,0x0000, 0xFBC0,0x8A46,0x0000, 0x1614,0x0000,0x0000,
952
0x1615,0x0000,0x0000, 0xFBC0,0x8A49,0x0000, 0xFBC0,0x8A4A,0x0000,
953
0x1616,0x0000,0x0000, 0x1617,0x0000,0x0000, 0x1618,0x0000,0x0000,
954
0xFBC0,0x8A4E,0x0000, 0xFBC0,0x8A4F,0x0000, 0xFBC0,0x8A50,0x0000,
955
0xFBC0,0x8A51,0x0000, 0xFBC0,0x8A52,0x0000, 0xFBC0,0x8A53,0x0000,
956
0xFBC0,0x8A54,0x0000, 0xFBC0,0x8A55,0x0000, 0xFBC0,0x8A56,0x0000,
957
0xFBC0,0x8A57,0x0000, 0xFBC0,0x8A58,0x0000, 0x15F2,0x0000,0x0000,
958
0x15F3,0x0000,0x0000, 0x15F8,0x0000,0x0000, 0x160E,0x0000,0x0000,
959
0xFBC0,0x8A5D,0x0000, 0x1606,0x0000,0x0000, 0xFBC0,0x8A5F,0x0000,
960
0xFBC0,0x8A60,0x0000, 0xFBC0,0x8A61,0x0000, 0xFBC0,0x8A62,0x0000,
961
0xFBC0,0x8A63,0x0000, 0xFBC0,0x8A64,0x0000, 0xFBC0,0x8A65,0x0000,
962
0x0E29,0x0000,0x0000, 0x0E2A,0x0000,0x0000, 0x0E2B,0x0000,0x0000,
963
0x0E2C,0x0000,0x0000, 0x0E2D,0x0000,0x0000, 0x0E2E,0x0000,0x0000,
964
0x0E2F,0x0000,0x0000, 0x0E30,0x0000,0x0000, 0x0E31,0x0000,0x0000,
965
0x0E32,0x0000,0x0000, 0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,
966
0x15EB,0x0000,0x0000, 0x15E3,0x0000,0x0000, 0x15E2,0x0000,0x0000,
967
0xFBC0,0x8A75,0x0000, 0xFBC0,0x8A76,0x0000, 0xFBC0,0x8A77,0x0000,
968
0xFBC0,0x8A78,0x0000, 0xFBC0,0x8A79,0x0000, 0xFBC0,0x8A7A,0x0000,
969
0xFBC0,0x8A7B,0x0000, 0xFBC0,0x8A7C,0x0000, 0xFBC0,0x8A7D,0x0000,
970
0xFBC0,0x8A7E,0x0000, 0xFBC0,0x8A7F,0x0000, 0xFBC0,0x8A80,0x0000,
971
0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,
972
0xFBC0,0x8A84,0x0000, 0x161A,0x0000,0x0000, 0x161B,0x0000,0x0000,
973
0x161C,0x0000,0x0000, 0x161D,0x0000,0x0000, 0x161E,0x0000,0x0000,
974
0x161F,0x0000,0x0000, 0x1620,0x0000,0x0000, 0x1622,0x0000,0x0000,
975
0x1624,0x0000,0x0000, 0xFBC0,0x8A8E,0x0000, 0x1625,0x0000,0x0000,
976
0x1626,0x0000,0x0000, 0x1627,0x0000,0x0000, 0xFBC0,0x8A92,0x0000,
977
0x1628,0x0000,0x0000, 0x1629,0x0000,0x0000, 0x162A,0x0000,0x0000,
978
0x162B,0x0000,0x0000, 0x162C,0x0000,0x0000, 0x162D,0x0000,0x0000,
979
0x162E,0x0000,0x0000, 0x162F,0x0000,0x0000, 0x1630,0x0000,0x0000,
980
0x1631,0x0000,0x0000, 0x1632,0x0000,0x0000, 0x1633,0x0000,0x0000,
981
0x1634,0x0000,0x0000, 0x1635,0x0000,0x0000, 0x1636,0x0000,0x0000,
982
0x1637,0x0000,0x0000, 0x1638,0x0000,0x0000, 0x1639,0x0000,0x0000,
983
0x163A,0x0000,0x0000, 0x163B,0x0000,0x0000, 0x163C,0x0000,0x0000,
984
0x163D,0x0000,0x0000, 0xFBC0,0x8AA9,0x0000, 0x163E,0x0000,0x0000,
985
0x163F,0x0000,0x0000, 0x1640,0x0000,0x0000, 0x1641,0x0000,0x0000,
986
0x1642,0x0000,0x0000, 0x1643,0x0000,0x0000, 0x1644,0x0000,0x0000,
987
0xFBC0,0x8AB1,0x0000, 0x1645,0x0000,0x0000, 0x1646,0x0000,0x0000,
988
0xFBC0,0x8AB4,0x0000, 0x1647,0x0000,0x0000, 0x1648,0x0000,0x0000,
989
0x1649,0x0000,0x0000, 0x164A,0x0000,0x0000, 0x164B,0x0000,0x0000,
990
0xFBC0,0x8ABA,0x0000, 0xFBC0,0x8ABB,0x0000, 0x0000,0x0000,0x0000,
991
0x164C,0x0000,0x0000, 0x164D,0x0000,0x0000, 0x164E,0x0000,0x0000,
992
0x164F,0x0000,0x0000, 0x1650,0x0000,0x0000, 0x1651,0x0000,0x0000,
993
0x1652,0x0000,0x0000, 0x1653,0x0000,0x0000, 0x1656,0x0000,0x0000,
994
0xFBC0,0x8AC6,0x0000, 0x1657,0x0000,0x0000, 0x1658,0x0000,0x0000,
995
0x1659,0x0000,0x0000, 0xFBC0,0x8ACA,0x0000, 0x165A,0x0000,0x0000,
996
0x165B,0x0000,0x0000, 0x165C,0x0000,0x0000, 0xFBC0,0x8ACE,0x0000,
997
0xFBC0,0x8ACF,0x0000, 0x1619,0x0000,0x0000, 0xFBC0,0x8AD1,0x0000,
998
0xFBC0,0x8AD2,0x0000, 0xFBC0,0x8AD3,0x0000, 0xFBC0,0x8AD4,0x0000,
999
0xFBC0,0x8AD5,0x0000, 0xFBC0,0x8AD6,0x0000, 0xFBC0,0x8AD7,0x0000,
1000
0xFBC0,0x8AD8,0x0000, 0xFBC0,0x8AD9,0x0000, 0xFBC0,0x8ADA,0x0000,
1001
0xFBC0,0x8ADB,0x0000, 0xFBC0,0x8ADC,0x0000, 0xFBC0,0x8ADD,0x0000,
1002
0xFBC0,0x8ADE,0x0000, 0xFBC0,0x8ADF,0x0000, 0x1621,0x0000,0x0000,
1003
0x1623,0x0000,0x0000, 0x1654,0x0000,0x0000, 0x1655,0x0000,0x0000,
1004
0xFBC0,0x8AE4,0x0000, 0xFBC0,0x8AE5,0x0000, 0x0E29,0x0000,0x0000,
1005
0x0E2A,0x0000,0x0000, 0x0E2B,0x0000,0x0000, 0x0E2C,0x0000,0x0000,
1006
0x0E2D,0x0000,0x0000, 0x0E2E,0x0000,0x0000, 0x0E2F,0x0000,0x0000,
1007
0x0E30,0x0000,0x0000, 0x0E31,0x0000,0x0000, 0x0E32,0x0000,0x0000,
1008
0xFBC0,0x8AF0,0x0000, 0x0E14,0x0000,0x0000, 0xFBC0,0x8AF2,0x0000,
1009
0xFBC0,0x8AF3,0x0000, 0xFBC0,0x8AF4,0x0000, 0xFBC0,0x8AF5,0x0000,
1010
0xFBC0,0x8AF6,0x0000, 0xFBC0,0x8AF7,0x0000, 0xFBC0,0x8AF8,0x0000,
1011
0xFBC0,0x8AF9,0x0000, 0xFBC0,0x8AFA,0x0000, 0xFBC0,0x8AFB,0x0000,
1012
0xFBC0,0x8AFC,0x0000, 0xFBC0,0x8AFD,0x0000, 0xFBC0,0x8AFE,0x0000,
1013
0xFBC0,0x8AFF,0x0000 };
1014
206 by Brian Aker
Removed final uint dead types.
1015
uint16_t page00Bdata[]= { /* 0B00 (3 weights per char) */
1 by brian
clean slate
1016
0xFBC0,0x8B00,0x0000, 0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,
1017
0x0000,0x0000,0x0000, 0xFBC0,0x8B04,0x0000, 0x165D,0x0000,0x0000,
1018
0x165E,0x0000,0x0000, 0x165F,0x0000,0x0000, 0x1660,0x0000,0x0000,
1019
0x1661,0x0000,0x0000, 0x1662,0x0000,0x0000, 0x1663,0x0000,0x0000,
1020
0x1665,0x0000,0x0000, 0xFBC0,0x8B0D,0x0000, 0xFBC0,0x8B0E,0x0000,
1021
0x1667,0x0000,0x0000, 0x1668,0x0000,0x0000, 0xFBC0,0x8B11,0x0000,
1022
0xFBC0,0x8B12,0x0000, 0x1669,0x0000,0x0000, 0x166A,0x0000,0x0000,
1023
0x166B,0x0000,0x0000, 0x166C,0x0000,0x0000, 0x166D,0x0000,0x0000,
1024
0x166E,0x0000,0x0000, 0x166F,0x0000,0x0000, 0x1670,0x0000,0x0000,
1025
0x1671,0x0000,0x0000, 0x1672,0x0000,0x0000, 0x1673,0x0000,0x0000,
1026
0x1674,0x0000,0x0000, 0x1675,0x0000,0x0000, 0x1676,0x0000,0x0000,
1027
0x1677,0x0000,0x0000, 0x1678,0x0000,0x0000, 0x1679,0x0000,0x0000,
1028
0x167A,0x0000,0x0000, 0x167B,0x0000,0x0000, 0x167C,0x0000,0x0000,
1029
0x167D,0x0000,0x0000, 0x167E,0x0000,0x0000, 0xFBC0,0x8B29,0x0000,
1030
0x167F,0x0000,0x0000, 0x1680,0x0000,0x0000, 0x1681,0x0000,0x0000,
1031
0x1682,0x0000,0x0000, 0x1683,0x0000,0x0000, 0x1684,0x0000,0x0000,
1032
0x1686,0x0000,0x0000, 0xFBC0,0x8B31,0x0000, 0x1687,0x0000,0x0000,
1033
0x1688,0x0000,0x0000, 0xFBC0,0x8B34,0x0000, 0x1689,0x0000,0x0000,
1034
0x168B,0x0000,0x0000, 0x168C,0x0000,0x0000, 0x168D,0x0000,0x0000,
1035
0x168E,0x0000,0x0000, 0xFBC0,0x8B3A,0x0000, 0xFBC0,0x8B3B,0x0000,
1036
0x0000,0x0000,0x0000, 0x168F,0x0000,0x0000, 0x1690,0x0000,0x0000,
1037
0x1691,0x0000,0x0000, 0x1692,0x0000,0x0000, 0x1693,0x0000,0x0000,
1038
0x1694,0x0000,0x0000, 0x1695,0x0000,0x0000, 0xFBC0,0x8B44,0x0000,
1039
0xFBC0,0x8B45,0x0000, 0xFBC0,0x8B46,0x0000, 0x1696,0x0000,0x0000,
1040
0x1697,0x0000,0x0000, 0xFBC0,0x8B49,0x0000, 0xFBC0,0x8B4A,0x0000,
1041
0x1698,0x0000,0x0000, 0x1699,0x0000,0x0000, 0x169A,0x0000,0x0000,
1042
0xFBC0,0x8B4E,0x0000, 0xFBC0,0x8B4F,0x0000, 0xFBC0,0x8B50,0x0000,
1043
0xFBC0,0x8B51,0x0000, 0xFBC0,0x8B52,0x0000, 0xFBC0,0x8B53,0x0000,
1044
0xFBC0,0x8B54,0x0000, 0xFBC0,0x8B55,0x0000, 0x169B,0x0000,0x0000,
1045
0x169C,0x0000,0x0000, 0xFBC0,0x8B58,0x0000, 0xFBC0,0x8B59,0x0000,
1046
0xFBC0,0x8B5A,0x0000, 0xFBC0,0x8B5B,0x0000, 0x1677,0x0000,0x0000,
1047
0x1678,0x0000,0x0000, 0xFBC0,0x8B5E,0x0000, 0x1685,0x0000,0x0000,
1048
0x1664,0x0000,0x0000, 0x1666,0x0000,0x0000, 0xFBC0,0x8B62,0x0000,
1049
0xFBC0,0x8B63,0x0000, 0xFBC0,0x8B64,0x0000, 0xFBC0,0x8B65,0x0000,
1050
0x0E29,0x0000,0x0000, 0x0E2A,0x0000,0x0000, 0x0E2B,0x0000,0x0000,
1051
0x0E2C,0x0000,0x0000, 0x0E2D,0x0000,0x0000, 0x0E2E,0x0000,0x0000,
1052
0x0E2F,0x0000,0x0000, 0x0E30,0x0000,0x0000, 0x0E31,0x0000,0x0000,
1053
0x0E32,0x0000,0x0000, 0x0351,0x0000,0x0000, 0x168A,0x0000,0x0000,
1054
0xFBC0,0x8B72,0x0000, 0xFBC0,0x8B73,0x0000, 0xFBC0,0x8B74,0x0000,
1055
0xFBC0,0x8B75,0x0000, 0xFBC0,0x8B76,0x0000, 0xFBC0,0x8B77,0x0000,
1056
0xFBC0,0x8B78,0x0000, 0xFBC0,0x8B79,0x0000, 0xFBC0,0x8B7A,0x0000,
1057
0xFBC0,0x8B7B,0x0000, 0xFBC0,0x8B7C,0x0000, 0xFBC0,0x8B7D,0x0000,
1058
0xFBC0,0x8B7E,0x0000, 0xFBC0,0x8B7F,0x0000, 0xFBC0,0x8B80,0x0000,
1059
0xFBC0,0x8B81,0x0000, 0x0000,0x0000,0x0000, 0x169D,0x0000,0x0000,
1060
0xFBC0,0x8B84,0x0000, 0x169E,0x0000,0x0000, 0x169F,0x0000,0x0000,
1061
0x16A0,0x0000,0x0000, 0x16A1,0x0000,0x0000, 0x16A2,0x0000,0x0000,
1062
0x16A3,0x0000,0x0000, 0xFBC0,0x8B8B,0x0000, 0xFBC0,0x8B8C,0x0000,
1063
0xFBC0,0x8B8D,0x0000, 0x16A4,0x0000,0x0000, 0x16A5,0x0000,0x0000,
1064
0x16A6,0x0000,0x0000, 0xFBC0,0x8B91,0x0000, 0x16A7,0x0000,0x0000,
1065
0x16A8,0x0000,0x0000, 0x16A9,0x0000,0x0000, 0x16AA,0x0000,0x0000,
1066
0xFBC0,0x8B96,0x0000, 0xFBC0,0x8B97,0x0000, 0xFBC0,0x8B98,0x0000,
1067
0x16AB,0x0000,0x0000, 0x16AC,0x0000,0x0000, 0xFBC0,0x8B9B,0x0000,
1068
0x16AD,0x0000,0x0000, 0xFBC0,0x8B9D,0x0000, 0x16AE,0x0000,0x0000,
1069
0x16AF,0x0000,0x0000, 0xFBC0,0x8BA0,0x0000, 0xFBC0,0x8BA1,0x0000,
1070
0xFBC0,0x8BA2,0x0000, 0x16B0,0x0000,0x0000, 0x16B1,0x0000,0x0000,
1071
0xFBC0,0x8BA5,0x0000, 0xFBC0,0x8BA6,0x0000, 0xFBC0,0x8BA7,0x0000,
1072
0x16B2,0x0000,0x0000, 0x16B3,0x0000,0x0000, 0x16B4,0x0000,0x0000,
1073
0xFBC0,0x8BAB,0x0000, 0xFBC0,0x8BAC,0x0000, 0xFBC0,0x8BAD,0x0000,
1074
0x16B5,0x0000,0x0000, 0x16B6,0x0000,0x0000, 0x16B7,0x0000,0x0000,
1075
0x16B8,0x0000,0x0000, 0x16B9,0x0000,0x0000, 0x16BA,0x0000,0x0000,
1076
0x16BB,0x0000,0x0000, 0x16BC,0x0000,0x0000, 0xFBC0,0x8BB6,0x0000,
1077
0x16BD,0x0000,0x0000, 0x16BE,0x0000,0x0000, 0x16BF,0x0000,0x0000,
1078
0xFBC0,0x8BBA,0x0000, 0xFBC0,0x8BBB,0x0000, 0xFBC0,0x8BBC,0x0000,
1079
0xFBC0,0x8BBD,0x0000, 0x16C0,0x0000,0x0000, 0x16C1,0x0000,0x0000,
1080
0x16C2,0x0000,0x0000, 0x16C3,0x0000,0x0000, 0x16C4,0x0000,0x0000,
1081
0xFBC0,0x8BC3,0x0000, 0xFBC0,0x8BC4,0x0000, 0xFBC0,0x8BC5,0x0000,
1082
0x16C5,0x0000,0x0000, 0x16C6,0x0000,0x0000, 0x16C7,0x0000,0x0000,
1083
0xFBC0,0x8BC9,0x0000, 0x16C8,0x0000,0x0000, 0x16C9,0x0000,0x0000,
1084
0x16CA,0x0000,0x0000, 0x16CB,0x0000,0x0000, 0xFBC0,0x8BCE,0x0000,
1085
0xFBC0,0x8BCF,0x0000, 0xFBC0,0x8BD0,0x0000, 0xFBC0,0x8BD1,0x0000,
1086
0xFBC0,0x8BD2,0x0000, 0xFBC0,0x8BD3,0x0000, 0xFBC0,0x8BD4,0x0000,
1087
0xFBC0,0x8BD5,0x0000, 0xFBC0,0x8BD6,0x0000, 0x16CC,0x0000,0x0000,
1088
0xFBC0,0x8BD8,0x0000, 0xFBC0,0x8BD9,0x0000, 0xFBC0,0x8BDA,0x0000,
1089
0xFBC0,0x8BDB,0x0000, 0xFBC0,0x8BDC,0x0000, 0xFBC0,0x8BDD,0x0000,
1090
0xFBC0,0x8BDE,0x0000, 0xFBC0,0x8BDF,0x0000, 0xFBC0,0x8BE0,0x0000,
1091
0xFBC0,0x8BE1,0x0000, 0xFBC0,0x8BE2,0x0000, 0xFBC0,0x8BE3,0x0000,
1092
0xFBC0,0x8BE4,0x0000, 0xFBC0,0x8BE5,0x0000, 0xFBC0,0x8BE6,0x0000,
1093
0x0E2A,0x0000,0x0000, 0x0E2B,0x0000,0x0000, 0x0E2C,0x0000,0x0000,
1094
0x0E2D,0x0000,0x0000, 0x0E2E,0x0000,0x0000, 0x0E2F,0x0000,0x0000,
1095
0x0E30,0x0000,0x0000, 0x0E31,0x0000,0x0000, 0x0E32,0x0000,0x0000,
1096
0x0DC9,0x0000,0x0000, 0x0DCA,0x0000,0x0000, 0x0DCB,0x0000,0x0000,
1097
0x0352,0x0000,0x0000, 0x0353,0x0000,0x0000, 0x0354,0x0000,0x0000,
1098
0x0355,0x0000,0x0000, 0x0356,0x0000,0x0000, 0x0357,0x0000,0x0000,
1099
0x0E15,0x0000,0x0000, 0x0358,0x0000,0x0000, 0xFBC0,0x8BFB,0x0000,
1100
0xFBC0,0x8BFC,0x0000, 0xFBC0,0x8BFD,0x0000, 0xFBC0,0x8BFE,0x0000,
1101
0xFBC0,0x8BFF,0x0000 };
1102
206 by Brian Aker
Removed final uint dead types.
1103
uint16_t page00Cdata[]= { /* 0C00 (3 weights per char) */
1 by brian
clean slate
1104
0xFBC0,0x8C00,0x0000, 0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,
1105
0x0000,0x0000,0x0000, 0xFBC0,0x8C04,0x0000, 0x16CD,0x0000,0x0000,
1106
0x16CE,0x0000,0x0000, 0x16CF,0x0000,0x0000, 0x16D0,0x0000,0x0000,
1107
0x16D1,0x0000,0x0000, 0x16D2,0x0000,0x0000, 0x16D3,0x0000,0x0000,
1108
0x16D5,0x0000,0x0000, 0xFBC0,0x8C0D,0x0000, 0x16D7,0x0000,0x0000,
1109
0x16D8,0x0000,0x0000, 0x16D9,0x0000,0x0000, 0xFBC0,0x8C11,0x0000,
1110
0x16DA,0x0000,0x0000, 0x16DB,0x0000,0x0000, 0x16DC,0x0000,0x0000,
1111
0x16DD,0x0000,0x0000, 0x16DE,0x0000,0x0000, 0x16DF,0x0000,0x0000,
1112
0x16E0,0x0000,0x0000, 0x16E1,0x0000,0x0000, 0x16E2,0x0000,0x0000,
1113
0x16E3,0x0000,0x0000, 0x16E4,0x0000,0x0000, 0x16E5,0x0000,0x0000,
1114
0x16E6,0x0000,0x0000, 0x16E7,0x0000,0x0000, 0x16E8,0x0000,0x0000,
1115
0x16E9,0x0000,0x0000, 0x16EA,0x0000,0x0000, 0x16EB,0x0000,0x0000,
1116
0x16EC,0x0000,0x0000, 0x16ED,0x0000,0x0000, 0x16EE,0x0000,0x0000,
1117
0x16EF,0x0000,0x0000, 0x16F0,0x0000,0x0000, 0xFBC0,0x8C29,0x0000,
1118
0x16F1,0x0000,0x0000, 0x16F2,0x0000,0x0000, 0x16F3,0x0000,0x0000,
1119
0x16F4,0x0000,0x0000, 0x16F5,0x0000,0x0000, 0x16F6,0x0000,0x0000,
1120
0x16F7,0x0000,0x0000, 0x16F8,0x0000,0x0000, 0x16F9,0x0000,0x0000,
1121
0x16FA,0x0000,0x0000, 0xFBC0,0x8C34,0x0000, 0x16FB,0x0000,0x0000,
1122
0x16FC,0x0000,0x0000, 0x16FD,0x0000,0x0000, 0x16FE,0x0000,0x0000,
1123
0x16FF,0x0000,0x0000, 0xFBC0,0x8C3A,0x0000, 0xFBC0,0x8C3B,0x0000,
1124
0xFBC0,0x8C3C,0x0000, 0xFBC0,0x8C3D,0x0000, 0x1700,0x0000,0x0000,
1125
0x1701,0x0000,0x0000, 0x1702,0x0000,0x0000, 0x1703,0x0000,0x0000,
1126
0x1704,0x0000,0x0000, 0x1705,0x0000,0x0000, 0x1706,0x0000,0x0000,
1127
0xFBC0,0x8C45,0x0000, 0x1707,0x0000,0x0000, 0x1708,0x0000,0x0000,
1128
0x1709,0x0000,0x0000, 0xFBC0,0x8C49,0x0000, 0x170A,0x0000,0x0000,
1129
0x170B,0x0000,0x0000, 0x170C,0x0000,0x0000, 0x170D,0x0000,0x0000,
1130
0xFBC0,0x8C4E,0x0000, 0xFBC0,0x8C4F,0x0000, 0xFBC0,0x8C50,0x0000,
1131
0xFBC0,0x8C51,0x0000, 0xFBC0,0x8C52,0x0000, 0xFBC0,0x8C53,0x0000,
1132
0xFBC0,0x8C54,0x0000, 0x170E,0x0000,0x0000, 0x170F,0x0000,0x0000,
1133
0xFBC0,0x8C57,0x0000, 0xFBC0,0x8C58,0x0000, 0xFBC0,0x8C59,0x0000,
1134
0xFBC0,0x8C5A,0x0000, 0xFBC0,0x8C5B,0x0000, 0xFBC0,0x8C5C,0x0000,
1135
0xFBC0,0x8C5D,0x0000, 0xFBC0,0x8C5E,0x0000, 0xFBC0,0x8C5F,0x0000,
1136
0x16D4,0x0000,0x0000, 0x16D6,0x0000,0x0000, 0xFBC0,0x8C62,0x0000,
1137
0xFBC0,0x8C63,0x0000, 0xFBC0,0x8C64,0x0000, 0xFBC0,0x8C65,0x0000,
1138
0x0E29,0x0000,0x0000, 0x0E2A,0x0000,0x0000, 0x0E2B,0x0000,0x0000,
1139
0x0E2C,0x0000,0x0000, 0x0E2D,0x0000,0x0000, 0x0E2E,0x0000,0x0000,
1140
0x0E2F,0x0000,0x0000, 0x0E30,0x0000,0x0000, 0x0E31,0x0000,0x0000,
1141
0x0E32,0x0000,0x0000, 0xFBC0,0x8C70,0x0000, 0xFBC0,0x8C71,0x0000,
1142
0xFBC0,0x8C72,0x0000, 0xFBC0,0x8C73,0x0000, 0xFBC0,0x8C74,0x0000,
1143
0xFBC0,0x8C75,0x0000, 0xFBC0,0x8C76,0x0000, 0xFBC0,0x8C77,0x0000,
1144
0xFBC0,0x8C78,0x0000, 0xFBC0,0x8C79,0x0000, 0xFBC0,0x8C7A,0x0000,
1145
0xFBC0,0x8C7B,0x0000, 0xFBC0,0x8C7C,0x0000, 0xFBC0,0x8C7D,0x0000,
1146
0xFBC0,0x8C7E,0x0000, 0xFBC0,0x8C7F,0x0000, 0xFBC0,0x8C80,0x0000,
1147
0xFBC0,0x8C81,0x0000, 0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,
1148
0xFBC0,0x8C84,0x0000, 0x1710,0x0000,0x0000, 0x1711,0x0000,0x0000,
1149
0x1712,0x0000,0x0000, 0x1713,0x0000,0x0000, 0x1714,0x0000,0x0000,
1150
0x1715,0x0000,0x0000, 0x1716,0x0000,0x0000, 0x1718,0x0000,0x0000,
1151
0xFBC0,0x8C8D,0x0000, 0x171A,0x0000,0x0000, 0x171B,0x0000,0x0000,
1152
0x171C,0x0000,0x0000, 0xFBC0,0x8C91,0x0000, 0x171D,0x0000,0x0000,
1153
0x171E,0x0000,0x0000, 0x171F,0x0000,0x0000, 0x1720,0x0000,0x0000,
1154
0x1721,0x0000,0x0000, 0x1722,0x0000,0x0000, 0x1723,0x0000,0x0000,
1155
0x1724,0x0000,0x0000, 0x1725,0x0000,0x0000, 0x1726,0x0000,0x0000,
1156
0x1727,0x0000,0x0000, 0x1728,0x0000,0x0000, 0x1729,0x0000,0x0000,
1157
0x172A,0x0000,0x0000, 0x172B,0x0000,0x0000, 0x172C,0x0000,0x0000,
1158
0x172D,0x0000,0x0000, 0x172E,0x0000,0x0000, 0x172F,0x0000,0x0000,
1159
0x1730,0x0000,0x0000, 0x1731,0x0000,0x0000, 0x1732,0x0000,0x0000,
1160
0x1733,0x0000,0x0000, 0xFBC0,0x8CA9,0x0000, 0x1734,0x0000,0x0000,
1161
0x1735,0x0000,0x0000, 0x1736,0x0000,0x0000, 0x1737,0x0000,0x0000,
1162
0x1738,0x0000,0x0000, 0x1739,0x0000,0x0000, 0x173A,0x0000,0x0000,
1163
0x173B,0x0000,0x0000, 0x173C,0x0000,0x0000, 0x1743,0x0000,0x0000,
1164
0xFBC0,0x8CB4,0x0000, 0x173D,0x0000,0x0000, 0x173E,0x0000,0x0000,
1165
0x173F,0x0000,0x0000, 0x1740,0x0000,0x0000, 0x1741,0x0000,0x0000,
1166
0xFBC0,0x8CBA,0x0000, 0xFBC0,0x8CBB,0x0000, 0x0000,0x0000,0x0000,
1167
0x1742,0x0000,0x0000, 0x1745,0x0000,0x0000, 0x1746,0x0000,0x0000,
1168
0x1747,0x0000,0x0000, 0x1748,0x0000,0x0000, 0x1749,0x0000,0x0000,
1169
0x174A,0x0000,0x0000, 0x174B,0x0000,0x0000, 0xFBC0,0x8CC5,0x0000,
1170
0x174C,0x0000,0x0000, 0x174D,0x0000,0x0000, 0x174E,0x0000,0x0000,
1171
0xFBC0,0x8CC9,0x0000, 0x174F,0x0000,0x0000, 0x1750,0x0000,0x0000,
1172
0x1751,0x0000,0x0000, 0x1752,0x0000,0x0000, 0xFBC0,0x8CCE,0x0000,
1173
0xFBC0,0x8CCF,0x0000, 0xFBC0,0x8CD0,0x0000, 0xFBC0,0x8CD1,0x0000,
1174
0xFBC0,0x8CD2,0x0000, 0xFBC0,0x8CD3,0x0000, 0xFBC0,0x8CD4,0x0000,
1175
0x1753,0x0000,0x0000, 0x1754,0x0000,0x0000, 0xFBC0,0x8CD7,0x0000,
1176
0xFBC0,0x8CD8,0x0000, 0xFBC0,0x8CD9,0x0000, 0xFBC0,0x8CDA,0x0000,
1177
0xFBC0,0x8CDB,0x0000, 0xFBC0,0x8CDC,0x0000, 0xFBC0,0x8CDD,0x0000,
1178
0x1744,0x0000,0x0000, 0xFBC0,0x8CDF,0x0000, 0x1717,0x0000,0x0000,
1179
0x1719,0x0000,0x0000, 0xFBC0,0x8CE2,0x0000, 0xFBC0,0x8CE3,0x0000,
1180
0xFBC0,0x8CE4,0x0000, 0xFBC0,0x8CE5,0x0000, 0x0E29,0x0000,0x0000,
1181
0x0E2A,0x0000,0x0000, 0x0E2B,0x0000,0x0000, 0x0E2C,0x0000,0x0000,
1182
0x0E2D,0x0000,0x0000, 0x0E2E,0x0000,0x0000, 0x0E2F,0x0000,0x0000,
1183
0x0E30,0x0000,0x0000, 0x0E31,0x0000,0x0000, 0x0E32,0x0000,0x0000,
1184
0xFBC0,0x8CF0,0x0000, 0xFBC0,0x8CF1,0x0000, 0xFBC0,0x8CF2,0x0000,
1185
0xFBC0,0x8CF3,0x0000, 0xFBC0,0x8CF4,0x0000, 0xFBC0,0x8CF5,0x0000,
1186
0xFBC0,0x8CF6,0x0000, 0xFBC0,0x8CF7,0x0000, 0xFBC0,0x8CF8,0x0000,
1187
0xFBC0,0x8CF9,0x0000, 0xFBC0,0x8CFA,0x0000, 0xFBC0,0x8CFB,0x0000,
1188
0xFBC0,0x8CFC,0x0000, 0xFBC0,0x8CFD,0x0000, 0xFBC0,0x8CFE,0x0000,
1189
0xFBC0,0x8CFF,0x0000 };
1190
206 by Brian Aker
Removed final uint dead types.
1191
uint16_t page00Ddata[]= { /* 0D00 (3 weights per char) */
1 by brian
clean slate
1192
0xFBC0,0x8D00,0x0000, 0xFBC0,0x8D01,0x0000, 0x0000,0x0000,0x0000,
1193
0x0000,0x0000,0x0000, 0xFBC0,0x8D04,0x0000, 0x1755,0x0000,0x0000,
1194
0x1756,0x0000,0x0000, 0x1757,0x0000,0x0000, 0x1758,0x0000,0x0000,
1195
0x1759,0x0000,0x0000, 0x175A,0x0000,0x0000, 0x175B,0x0000,0x0000,
1196
0x175D,0x0000,0x0000, 0xFBC0,0x8D0D,0x0000, 0x175F,0x0000,0x0000,
1197
0x1760,0x0000,0x0000, 0x1761,0x0000,0x0000, 0xFBC0,0x8D11,0x0000,
1198
0x1762,0x0000,0x0000, 0x1763,0x0000,0x0000, 0x1764,0x0000,0x0000,
1199
0x1765,0x0000,0x0000, 0x1766,0x0000,0x0000, 0x1767,0x0000,0x0000,
1200
0x1768,0x0000,0x0000, 0x1769,0x0000,0x0000, 0x176A,0x0000,0x0000,
1201
0x176B,0x0000,0x0000, 0x176C,0x0000,0x0000, 0x176D,0x0000,0x0000,
1202
0x176E,0x0000,0x0000, 0x176F,0x0000,0x0000, 0x1770,0x0000,0x0000,
1203
0x1771,0x0000,0x0000, 0x1772,0x0000,0x0000, 0x1773,0x0000,0x0000,
1204
0x1774,0x0000,0x0000, 0x1775,0x0000,0x0000, 0x1776,0x0000,0x0000,
1205
0x1777,0x0000,0x0000, 0x1778,0x0000,0x0000, 0xFBC0,0x8D29,0x0000,
1206
0x1779,0x0000,0x0000, 0x177A,0x0000,0x0000, 0x177B,0x0000,0x0000,
1207
0x177C,0x0000,0x0000, 0x177D,0x0000,0x0000, 0x177E,0x0000,0x0000,
1208
0x177F,0x0000,0x0000, 0x1780,0x0000,0x0000, 0x1781,0x0000,0x0000,
1209
0x1782,0x0000,0x0000, 0x1783,0x0000,0x0000, 0x1784,0x0000,0x0000,
1210
0x1785,0x0000,0x0000, 0x1786,0x0000,0x0000, 0x1787,0x0000,0x0000,
1211
0x1788,0x0000,0x0000, 0xFBC0,0x8D3A,0x0000, 0xFBC0,0x8D3B,0x0000,
1212
0xFBC0,0x8D3C,0x0000, 0xFBC0,0x8D3D,0x0000, 0x1789,0x0000,0x0000,
1213
0x178A,0x0000,0x0000, 0x178B,0x0000,0x0000, 0x178C,0x0000,0x0000,
1214
0x178D,0x0000,0x0000, 0x178E,0x0000,0x0000, 0xFBC0,0x8D44,0x0000,
1215
0xFBC0,0x8D45,0x0000, 0x178F,0x0000,0x0000, 0x1790,0x0000,0x0000,
1216
0x1791,0x0000,0x0000, 0xFBC0,0x8D49,0x0000, 0x1792,0x0000,0x0000,
1217
0x1793,0x0000,0x0000, 0x1794,0x0000,0x0000, 0x1795,0x0000,0x0000,
1218
0xFBC0,0x8D4E,0x0000, 0xFBC0,0x8D4F,0x0000, 0xFBC0,0x8D50,0x0000,
1219
0xFBC0,0x8D51,0x0000, 0xFBC0,0x8D52,0x0000, 0xFBC0,0x8D53,0x0000,
1220
0xFBC0,0x8D54,0x0000, 0xFBC0,0x8D55,0x0000, 0xFBC0,0x8D56,0x0000,
1221
0x1796,0x0000,0x0000, 0xFBC0,0x8D58,0x0000, 0xFBC0,0x8D59,0x0000,
1222
0xFBC0,0x8D5A,0x0000, 0xFBC0,0x8D5B,0x0000, 0xFBC0,0x8D5C,0x0000,
1223
0xFBC0,0x8D5D,0x0000, 0xFBC0,0x8D5E,0x0000, 0xFBC0,0x8D5F,0x0000,
1224
0x175C,0x0000,0x0000, 0x175E,0x0000,0x0000, 0xFBC0,0x8D62,0x0000,
1225
0xFBC0,0x8D63,0x0000, 0xFBC0,0x8D64,0x0000, 0xFBC0,0x8D65,0x0000,
1226
0x0E29,0x0000,0x0000, 0x0E2A,0x0000,0x0000, 0x0E2B,0x0000,0x0000,
1227
0x0E2C,0x0000,0x0000, 0x0E2D,0x0000,0x0000, 0x0E2E,0x0000,0x0000,
1228
0x0E2F,0x0000,0x0000, 0x0E30,0x0000,0x0000, 0x0E31,0x0000,0x0000,
1229
0x0E32,0x0000,0x0000, 0xFBC0,0x8D70,0x0000, 0xFBC0,0x8D71,0x0000,
1230
0xFBC0,0x8D72,0x0000, 0xFBC0,0x8D73,0x0000, 0xFBC0,0x8D74,0x0000,
1231
0xFBC0,0x8D75,0x0000, 0xFBC0,0x8D76,0x0000, 0xFBC0,0x8D77,0x0000,
1232
0xFBC0,0x8D78,0x0000, 0xFBC0,0x8D79,0x0000, 0xFBC0,0x8D7A,0x0000,
1233
0xFBC0,0x8D7B,0x0000, 0xFBC0,0x8D7C,0x0000, 0xFBC0,0x8D7D,0x0000,
1234
0xFBC0,0x8D7E,0x0000, 0xFBC0,0x8D7F,0x0000, 0xFBC0,0x8D80,0x0000,
1235
0xFBC0,0x8D81,0x0000, 0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,
1236
0xFBC0,0x8D84,0x0000, 0x1797,0x0000,0x0000, 0x1798,0x0000,0x0000,
1237
0x1799,0x0000,0x0000, 0x179A,0x0000,0x0000, 0x179B,0x0000,0x0000,
1238
0x179C,0x0000,0x0000, 0x179D,0x0000,0x0000, 0x179E,0x0000,0x0000,
1239
0x179F,0x0000,0x0000, 0x17A0,0x0000,0x0000, 0x17A1,0x0000,0x0000,
1240
0x17A2,0x0000,0x0000, 0x17A3,0x0000,0x0000, 0x17A4,0x0000,0x0000,
1241
0x17A5,0x0000,0x0000, 0x17A6,0x0000,0x0000, 0x17A7,0x0000,0x0000,
1242
0x17A8,0x0000,0x0000, 0xFBC0,0x8D97,0x0000, 0xFBC0,0x8D98,0x0000,
1243
0xFBC0,0x8D99,0x0000, 0x17A9,0x0000,0x0000, 0x17AA,0x0000,0x0000,
1244
0x17AB,0x0000,0x0000, 0x17AC,0x0000,0x0000, 0x17AD,0x0000,0x0000,
1245
0x17AE,0x0000,0x0000, 0x17AF,0x0000,0x0000, 0x17B0,0x0000,0x0000,
1246
0x17B1,0x0000,0x0000, 0x17B2,0x0000,0x0000, 0x17B3,0x0000,0x0000,
1247
0x17B4,0x0000,0x0000, 0x17B5,0x0000,0x0000, 0x17B6,0x0000,0x0000,
1248
0x17B7,0x0000,0x0000, 0x17B8,0x0000,0x0000, 0x17B9,0x0000,0x0000,
1249
0x17BA,0x0000,0x0000, 0x17BB,0x0000,0x0000, 0x17BC,0x0000,0x0000,
1250
0x17BD,0x0000,0x0000, 0x17BE,0x0000,0x0000, 0x17BF,0x0000,0x0000,
1251
0x17C0,0x0000,0x0000, 0xFBC0,0x8DB2,0x0000, 0x17C1,0x0000,0x0000,
1252
0x17C2,0x0000,0x0000, 0x17C3,0x0000,0x0000, 0x17C4,0x0000,0x0000,
1253
0x17C5,0x0000,0x0000, 0x17C6,0x0000,0x0000, 0x17C7,0x0000,0x0000,
1254
0x17C8,0x0000,0x0000, 0x17C9,0x0000,0x0000, 0xFBC0,0x8DBC,0x0000,
1255
0x17CA,0x0000,0x0000, 0xFBC0,0x8DBE,0x0000, 0xFBC0,0x8DBF,0x0000,
1256
0x17CB,0x0000,0x0000, 0x17CC,0x0000,0x0000, 0x17CD,0x0000,0x0000,
1257
0x17CE,0x0000,0x0000, 0x17CF,0x0000,0x0000, 0x17D0,0x0000,0x0000,
1258
0x17D1,0x0000,0x0000, 0xFBC0,0x8DC7,0x0000, 0xFBC0,0x8DC8,0x0000,
1259
0xFBC0,0x8DC9,0x0000, 0x17D2,0x0000,0x0000, 0xFBC0,0x8DCB,0x0000,
1260
0xFBC0,0x8DCC,0x0000, 0xFBC0,0x8DCD,0x0000, 0xFBC0,0x8DCE,0x0000,
1261
0x17D3,0x0000,0x0000, 0x17D4,0x0000,0x0000, 0x17D5,0x0000,0x0000,
1262
0x17D6,0x0000,0x0000, 0x17D7,0x0000,0x0000, 0x17D8,0x0000,0x0000,
1263
0xFBC0,0x8DD5,0x0000, 0x17D9,0x0000,0x0000, 0xFBC0,0x8DD7,0x0000,
1264
0x17DA,0x0000,0x0000, 0x17DB,0x0000,0x0000, 0x17DC,0x0000,0x0000,
1265
0x17DD,0x0000,0x0000, 0x17DE,0x0000,0x0000, 0x17DF,0x0000,0x0000,
1266
0x17E0,0x0000,0x0000, 0x17E1,0x0000,0x0000, 0xFBC0,0x8DE0,0x0000,
1267
0xFBC0,0x8DE1,0x0000, 0xFBC0,0x8DE2,0x0000, 0xFBC0,0x8DE3,0x0000,
1268
0xFBC0,0x8DE4,0x0000, 0xFBC0,0x8DE5,0x0000, 0xFBC0,0x8DE6,0x0000,
1269
0xFBC0,0x8DE7,0x0000, 0xFBC0,0x8DE8,0x0000, 0xFBC0,0x8DE9,0x0000,
1270
0xFBC0,0x8DEA,0x0000, 0xFBC0,0x8DEB,0x0000, 0xFBC0,0x8DEC,0x0000,
1271
0xFBC0,0x8DED,0x0000, 0xFBC0,0x8DEE,0x0000, 0xFBC0,0x8DEF,0x0000,
1272
0xFBC0,0x8DF0,0x0000, 0xFBC0,0x8DF1,0x0000, 0x17E2,0x0000,0x0000,
1273
0x17E3,0x0000,0x0000, 0x02FB,0x0000,0x0000, 0xFBC0,0x8DF5,0x0000,
1274
0xFBC0,0x8DF6,0x0000, 0xFBC0,0x8DF7,0x0000, 0xFBC0,0x8DF8,0x0000,
1275
0xFBC0,0x8DF9,0x0000, 0xFBC0,0x8DFA,0x0000, 0xFBC0,0x8DFB,0x0000,
1276
0xFBC0,0x8DFC,0x0000, 0xFBC0,0x8DFD,0x0000, 0xFBC0,0x8DFE,0x0000,
1277
0xFBC0,0x8DFF,0x0000 };
1278
206 by Brian Aker
Removed final uint dead types.
1279
uint16_t page00Edata[]= { /* 0E00 (3 weights per char) */
1 by brian
clean slate
1280
0xFBC0,0x8E00,0x0000, 0x17E4,0x0000,0x0000, 0x17E5,0x0000,0x0000,
1281
0x17E6,0x0000,0x0000, 0x17E7,0x0000,0x0000, 0x17E8,0x0000,0x0000,
1282
0x17E9,0x0000,0x0000, 0x17EA,0x0000,0x0000, 0x17EB,0x0000,0x0000,
1283
0x17EC,0x0000,0x0000, 0x17ED,0x0000,0x0000, 0x17EE,0x0000,0x0000,
1284
0x17EF,0x0000,0x0000, 0x17F0,0x0000,0x0000, 0x17F1,0x0000,0x0000,
1285
0x17F2,0x0000,0x0000, 0x17F3,0x0000,0x0000, 0x17F4,0x0000,0x0000,
1286
0x17F5,0x0000,0x0000, 0x17F6,0x0000,0x0000, 0x17F7,0x0000,0x0000,
1287
0x17F8,0x0000,0x0000, 0x17F9,0x0000,0x0000, 0x17FA,0x0000,0x0000,
1288
0x17FB,0x0000,0x0000, 0x17FC,0x0000,0x0000, 0x17FD,0x0000,0x0000,
1289
0x17FE,0x0000,0x0000, 0x17FF,0x0000,0x0000, 0x1800,0x0000,0x0000,
1290
0x1801,0x0000,0x0000, 0x1802,0x0000,0x0000, 0x1803,0x0000,0x0000,
1291
0x1804,0x0000,0x0000, 0x1805,0x0000,0x0000, 0x1806,0x0000,0x0000,
1292
0x1807,0x0000,0x0000, 0x1808,0x0000,0x0000, 0x1809,0x0000,0x0000,
1293
0x180A,0x0000,0x0000, 0x180B,0x0000,0x0000, 0x180C,0x0000,0x0000,
1294
0x180D,0x0000,0x0000, 0x180E,0x0000,0x0000, 0x180F,0x0000,0x0000,
1295
0x1810,0x0000,0x0000, 0x1811,0x0000,0x0000, 0x1812,0x0000,0x0000,
1296
0x1813,0x0000,0x0000, 0x1814,0x0000,0x0000, 0x1815,0x0000,0x0000,
1297
0x1816,0x0000,0x0000, 0x1817,0x0000,0x0000, 0x1818,0x0000,0x0000,
1298
0x1819,0x0000,0x0000, 0x181A,0x0000,0x0000, 0x181B,0x0000,0x0000,
1299
0x181C,0x0000,0x0000, 0x181D,0x0000,0x0000, 0xFBC0,0x8E3B,0x0000,
1300
0xFBC0,0x8E3C,0x0000, 0xFBC0,0x8E3D,0x0000, 0xFBC0,0x8E3E,0x0000,
1301
0x0E16,0x0000,0x0000, 0x181E,0x0000,0x0000, 0x181F,0x0000,0x0000,
1302
0x1820,0x0000,0x0000, 0x1821,0x0000,0x0000, 0x1822,0x0000,0x0000,
1303
0x1823,0x0000,0x0000, 0x0E03,0x0000,0x0000, 0x0000,0x0000,0x0000,
1304
0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,
1305
0x0000,0x0000,0x0000, 0x1824,0x0000,0x0000, 0x1825,0x0000,0x0000,
1306
0x0000,0x0000,0x0000, 0x0359,0x0000,0x0000, 0x0E29,0x0000,0x0000,
1307
0x0E2A,0x0000,0x0000, 0x0E2B,0x0000,0x0000, 0x0E2C,0x0000,0x0000,
1308
0x0E2D,0x0000,0x0000, 0x0E2E,0x0000,0x0000, 0x0E2F,0x0000,0x0000,
1309
0x0E30,0x0000,0x0000, 0x0E31,0x0000,0x0000, 0x0E32,0x0000,0x0000,
1310
0x02FC,0x0000,0x0000, 0x02FD,0x0000,0x0000, 0xFBC0,0x8E5C,0x0000,
1311
0xFBC0,0x8E5D,0x0000, 0xFBC0,0x8E5E,0x0000, 0xFBC0,0x8E5F,0x0000,
1312
0xFBC0,0x8E60,0x0000, 0xFBC0,0x8E61,0x0000, 0xFBC0,0x8E62,0x0000,
1313
0xFBC0,0x8E63,0x0000, 0xFBC0,0x8E64,0x0000, 0xFBC0,0x8E65,0x0000,
1314
0xFBC0,0x8E66,0x0000, 0xFBC0,0x8E67,0x0000, 0xFBC0,0x8E68,0x0000,
1315
0xFBC0,0x8E69,0x0000, 0xFBC0,0x8E6A,0x0000, 0xFBC0,0x8E6B,0x0000,
1316
0xFBC0,0x8E6C,0x0000, 0xFBC0,0x8E6D,0x0000, 0xFBC0,0x8E6E,0x0000,
1317
0xFBC0,0x8E6F,0x0000, 0xFBC0,0x8E70,0x0000, 0xFBC0,0x8E71,0x0000,
1318
0xFBC0,0x8E72,0x0000, 0xFBC0,0x8E73,0x0000, 0xFBC0,0x8E74,0x0000,
1319
0xFBC0,0x8E75,0x0000, 0xFBC0,0x8E76,0x0000, 0xFBC0,0x8E77,0x0000,
1320
0xFBC0,0x8E78,0x0000, 0xFBC0,0x8E79,0x0000, 0xFBC0,0x8E7A,0x0000,
1321
0xFBC0,0x8E7B,0x0000, 0xFBC0,0x8E7C,0x0000, 0xFBC0,0x8E7D,0x0000,
1322
0xFBC0,0x8E7E,0x0000, 0xFBC0,0x8E7F,0x0000, 0xFBC0,0x8E80,0x0000,
1323
0x1826,0x0000,0x0000, 0x1827,0x0000,0x0000, 0xFBC0,0x8E83,0x0000,
1324
0x1828,0x0000,0x0000, 0xFBC0,0x8E85,0x0000, 0xFBC0,0x8E86,0x0000,
1325
0x1829,0x0000,0x0000, 0x182A,0x0000,0x0000, 0xFBC0,0x8E89,0x0000,
1326
0x182B,0x0000,0x0000, 0xFBC0,0x8E8B,0x0000, 0xFBC0,0x8E8C,0x0000,
1327
0x182C,0x0000,0x0000, 0xFBC0,0x8E8E,0x0000, 0xFBC0,0x8E8F,0x0000,
1328
0xFBC0,0x8E90,0x0000, 0xFBC0,0x8E91,0x0000, 0xFBC0,0x8E92,0x0000,
1329
0xFBC0,0x8E93,0x0000, 0x182D,0x0000,0x0000, 0x182E,0x0000,0x0000,
1330
0x182F,0x0000,0x0000, 0x1830,0x0000,0x0000, 0xFBC0,0x8E98,0x0000,
1331
0x1831,0x0000,0x0000, 0x1832,0x0000,0x0000, 0x1833,0x0000,0x0000,
1332
0x1834,0x0000,0x0000, 0x1835,0x0000,0x0000, 0x1836,0x0000,0x0000,
1333
0x1837,0x0000,0x0000, 0xFBC0,0x8EA0,0x0000, 0x1838,0x0000,0x0000,
1334
0x1839,0x0000,0x0000, 0x183A,0x0000,0x0000, 0xFBC0,0x8EA4,0x0000,
1335
0x183B,0x0000,0x0000, 0xFBC0,0x8EA6,0x0000, 0x183C,0x0000,0x0000,
1336
0xFBC0,0x8EA8,0x0000, 0xFBC0,0x8EA9,0x0000, 0x183D,0x0000,0x0000,
1337
0x183E,0x0000,0x0000, 0xFBC0,0x8EAC,0x0000, 0x183F,0x0000,0x0000,
1338
0x1840,0x0000,0x0000, 0x1841,0x0000,0x0000, 0x1842,0x0000,0x0000,
1339
0x1843,0x0000,0x0000, 0x1844,0x0000,0x0000, 0x1845,0x0000,0x0000,
1340
0x1846,0x0000,0x0000, 0x1847,0x0000,0x0000, 0x1848,0x0000,0x0000,
1341
0x1849,0x0000,0x0000, 0x184A,0x0000,0x0000, 0x184B,0x0000,0x0000,
1342
0xFBC0,0x8EBA,0x0000, 0x184C,0x0000,0x0000, 0x184D,0x0000,0x0000,
1343
0x184E,0x0000,0x0000, 0xFBC0,0x8EBE,0x0000, 0xFBC0,0x8EBF,0x0000,
1344
0x184F,0x0000,0x0000, 0x1850,0x0000,0x0000, 0x1851,0x0000,0x0000,
1345
0x1852,0x0000,0x0000, 0x1853,0x0000,0x0000, 0xFBC0,0x8EC5,0x0000,
1346
0x0E04,0x0000,0x0000, 0xFBC0,0x8EC7,0x0000, 0x0000,0x0000,0x0000,
1347
0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,
1348
0x1854,0x0000,0x0000, 0x1855,0x0000,0x0000, 0xFBC0,0x8ECE,0x0000,
1349
0xFBC0,0x8ECF,0x0000, 0x0E29,0x0000,0x0000, 0x0E2A,0x0000,0x0000,
1350
0x0E2B,0x0000,0x0000, 0x0E2C,0x0000,0x0000, 0x0E2D,0x0000,0x0000,
1351
0x0E2E,0x0000,0x0000, 0x0E2F,0x0000,0x0000, 0x0E30,0x0000,0x0000,
1352
0x0E31,0x0000,0x0000, 0x0E32,0x0000,0x0000, 0xFBC0,0x8EDA,0x0000,
1353
0xFBC0,0x8EDB,0x0000, 0x183E,0x1831,0x0000, 0x183E,0x1838,0x0000,
1354
0xFBC0,0x8EDE,0x0000, 0xFBC0,0x8EDF,0x0000, 0xFBC0,0x8EE0,0x0000,
1355
0xFBC0,0x8EE1,0x0000, 0xFBC0,0x8EE2,0x0000, 0xFBC0,0x8EE3,0x0000,
1356
0xFBC0,0x8EE4,0x0000, 0xFBC0,0x8EE5,0x0000, 0xFBC0,0x8EE6,0x0000,
1357
0xFBC0,0x8EE7,0x0000, 0xFBC0,0x8EE8,0x0000, 0xFBC0,0x8EE9,0x0000,
1358
0xFBC0,0x8EEA,0x0000, 0xFBC0,0x8EEB,0x0000, 0xFBC0,0x8EEC,0x0000,
1359
0xFBC0,0x8EED,0x0000, 0xFBC0,0x8EEE,0x0000, 0xFBC0,0x8EEF,0x0000,
1360
0xFBC0,0x8EF0,0x0000, 0xFBC0,0x8EF1,0x0000, 0xFBC0,0x8EF2,0x0000,
1361
0xFBC0,0x8EF3,0x0000, 0xFBC0,0x8EF4,0x0000, 0xFBC0,0x8EF5,0x0000,
1362
0xFBC0,0x8EF6,0x0000, 0xFBC0,0x8EF7,0x0000, 0xFBC0,0x8EF8,0x0000,
1363
0xFBC0,0x8EF9,0x0000, 0xFBC0,0x8EFA,0x0000, 0xFBC0,0x8EFB,0x0000,
1364
0xFBC0,0x8EFC,0x0000, 0xFBC0,0x8EFD,0x0000, 0xFBC0,0x8EFE,0x0000,
1365
0xFBC0,0x8EFF,0x0000 };
1366
206 by Brian Aker
Removed final uint dead types.
1367
uint16_t page00Fdata[]= { /* 0F00 (3 weights per char) */
1 by brian
clean slate
1368
0x189A,0x18AD,0x0000, 0x035A,0x0000,0x0000, 0x035B,0x0000,0x0000,
1369
0x035C,0x0000,0x0000, 0x02FE,0x0000,0x0000, 0x02FF,0x0000,0x0000,
1370
0x0300,0x0000,0x0000, 0x0301,0x0000,0x0000, 0x0302,0x0000,0x0000,
1371
0x0303,0x0000,0x0000, 0x0304,0x0000,0x0000, 0x0305,0x0000,0x0000,
1372
0x0305,0x0000,0x0000, 0x0306,0x0000,0x0000, 0x0307,0x0000,0x0000,
1373
0x0308,0x0000,0x0000, 0x0309,0x0000,0x0000, 0x030A,0x0000,0x0000,
1374
0x030B,0x0000,0x0000, 0x035D,0x0000,0x0000, 0x024C,0x0000,0x0000,
1375
0x035E,0x0000,0x0000, 0x035F,0x0000,0x0000, 0x0360,0x0000,0x0000,
1376
0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000, 0x0361,0x0000,0x0000,
1377
0x0362,0x0000,0x0000, 0x0363,0x0000,0x0000, 0x0364,0x0000,0x0000,
1378
0x0365,0x0000,0x0000, 0x0366,0x0000,0x0000, 0x0E29,0x0000,0x0000,
1379
0x0E2A,0x0000,0x0000, 0x0E2B,0x0000,0x0000, 0x0E2C,0x0000,0x0000,
1380
0x0E2D,0x0000,0x0000, 0x0E2E,0x0000,0x0000, 0x0E2F,0x0000,0x0000,
1381
0x0E30,0x0000,0x0000, 0x0E31,0x0000,0x0000, 0x0E32,0x0000,0x0000,
1382
0x0E2A,0x0000,0x0000, 0x0E2B,0x0000,0x0000, 0x0E2C,0x0000,0x0000,
1383
0x0E2D,0x0000,0x0000, 0x0E2E,0x0000,0x0000, 0x0E2F,0x0000,0x0000,
1384
0x0E30,0x0000,0x0000, 0x0E31,0x0000,0x0000, 0x0E32,0x0000,0x0000,
1385
0x0E29,0x0000,0x0000, 0x0367,0x0000,0x0000, 0x0000,0x0000,0x0000,
1386
0x0368,0x0000,0x0000, 0x0000,0x0000,0x0000, 0x0369,0x0000,0x0000,
1387
0x0000,0x0000,0x0000, 0x028E,0x0000,0x0000, 0x028F,0x0000,0x0000,
1388
0x0290,0x0000,0x0000, 0x0291,0x0000,0x0000, 0x036A,0x0000,0x0000,
1389
0x036B,0x0000,0x0000, 0x1856,0x0000,0x0000, 0x1858,0x0000,0x0000,
1390
0x185A,0x0000,0x0000, 0x185A,0x1899,0x0000, 0x185C,0x0000,0x0000,
1391
0x185E,0x0000,0x0000, 0x1860,0x0000,0x0000, 0x1862,0x0000,0x0000,
1392
0xFBC0,0x8F48,0x0000, 0x1864,0x0000,0x0000, 0x1866,0x0000,0x0000,
1393
0x1868,0x0000,0x0000, 0x186A,0x0000,0x0000, 0x186A,0x1899,0x0000,
1394
0x186C,0x0000,0x0000, 0x186E,0x0000,0x0000, 0x1870,0x0000,0x0000,
1395
0x1872,0x0000,0x0000, 0x1872,0x1899,0x0000, 0x1874,0x0000,0x0000,
1396
0x1876,0x0000,0x0000, 0x1878,0x0000,0x0000, 0x187A,0x0000,0x0000,
1397
0x187A,0x1899,0x0000, 0x187C,0x0000,0x0000, 0x187E,0x0000,0x0000,
1398
0x1880,0x0000,0x0000, 0x1882,0x0000,0x0000, 0x1882,0x1899,0x0000,
1399
0x1884,0x0000,0x0000, 0x1886,0x0000,0x0000, 0x1888,0x0000,0x0000,
1400
0x188A,0x0000,0x0000, 0x188C,0x0000,0x0000, 0x188E,0x0000,0x0000,
1401
0x1890,0x0000,0x0000, 0x1892,0x0000,0x0000, 0x1894,0x0000,0x0000,
1402
0x1896,0x0000,0x0000, 0x1898,0x0000,0x0000, 0x189A,0x0000,0x0000,
1403
0x1856,0x1895,0x0000, 0x188E,0x0000,0x0000, 0xFBC0,0x8F6B,0x0000,
1404
0xFBC0,0x8F6C,0x0000, 0xFBC0,0x8F6D,0x0000, 0xFBC0,0x8F6E,0x0000,
1405
0xFBC0,0x8F6F,0x0000, 0xFBC0,0x8F70,0x0000, 0x18A0,0x0000,0x0000,
1406
0x18A1,0x0000,0x0000, 0x18A2,0x0000,0x0000, 0x18A5,0x0000,0x0000,
1407
0x18A6,0x0000,0x0000, 0x18A7,0x0000,0x0000, 0x18A8,0x0000,0x0000,
1408
0x18A9,0x0000,0x0000, 0x18AA,0x0000,0x0000, 0x18AB,0x0000,0x0000,
1409
0x18AC,0x0000,0x0000, 0x18AD,0x0000,0x0000, 0x18AE,0x0000,0x0000,
1410
0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000, 0x18A3,0x0000,0x0000,
1411
0x18A4,0x0000,0x0000, 0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,
1412
0x18AF,0x0000,0x0000, 0x030C,0x0000,0x0000, 0x0000,0x0000,0x0000,
1413
0x0000,0x0000,0x0000, 0x189C,0x0000,0x0000, 0x189D,0x0000,0x0000,
1414
0x189E,0x0000,0x0000, 0x189F,0x0000,0x0000, 0xFBC0,0x8F8C,0x0000,
1415
0xFBC0,0x8F8D,0x0000, 0xFBC0,0x8F8E,0x0000, 0xFBC0,0x8F8F,0x0000,
1416
0x1857,0x0000,0x0000, 0x1859,0x0000,0x0000, 0x185B,0x0000,0x0000,
1417
0x185B,0x1899,0x0000, 0x185D,0x0000,0x0000, 0x185F,0x0000,0x0000,
1418
0x1861,0x0000,0x0000, 0x1863,0x0000,0x0000, 0xFBC0,0x8F98,0x0000,
1419
0x1865,0x0000,0x0000, 0x1867,0x0000,0x0000, 0x1869,0x0000,0x0000,
1420
0x186B,0x0000,0x0000, 0x186B,0x1899,0x0000, 0x186D,0x0000,0x0000,
1421
0x186F,0x0000,0x0000, 0x1871,0x0000,0x0000, 0x1873,0x0000,0x0000,
1422
0x1873,0x1899,0x0000, 0x1875,0x0000,0x0000, 0x1877,0x0000,0x0000,
1423
0x1879,0x0000,0x0000, 0x187B,0x0000,0x0000, 0x187B,0x1899,0x0000,
1424
0x187D,0x0000,0x0000, 0x187F,0x0000,0x0000, 0x1881,0x0000,0x0000,
1425
0x1883,0x0000,0x0000, 0x1883,0x1899,0x0000, 0x1885,0x0000,0x0000,
1426
0x1887,0x0000,0x0000, 0x1889,0x0000,0x0000, 0x188B,0x0000,0x0000,
1427
0x188D,0x0000,0x0000, 0x188F,0x0000,0x0000, 0x1891,0x0000,0x0000,
1428
0x1893,0x0000,0x0000, 0x1895,0x0000,0x0000, 0x1897,0x0000,0x0000,
1429
0x1899,0x0000,0x0000, 0x189B,0x0000,0x0000, 0x1857,0x1895,0x0000,
1430
0x1885,0x0000,0x0000, 0x188D,0x0000,0x0000, 0x188F,0x0000,0x0000,
1431
0xFBC0,0x8FBD,0x0000, 0x036C,0x0000,0x0000, 0x036D,0x0000,0x0000,
1432
0x036E,0x0000,0x0000, 0x036F,0x0000,0x0000, 0x0370,0x0000,0x0000,
1433
0x0371,0x0000,0x0000, 0x0372,0x0000,0x0000, 0x0373,0x0000,0x0000,
1434
0x0000,0x0000,0x0000, 0x0374,0x0000,0x0000, 0x0375,0x0000,0x0000,
1435
0x0376,0x0000,0x0000, 0x0377,0x0000,0x0000, 0x0378,0x0000,0x0000,
1436
0x0379,0x0000,0x0000, 0xFBC0,0x8FCD,0x0000, 0xFBC0,0x8FCE,0x0000,
1437
0x037A,0x0000,0x0000, 0xFBC0,0x8FD0,0x0000, 0xFBC0,0x8FD1,0x0000,
1438
0xFBC0,0x8FD2,0x0000, 0xFBC0,0x8FD3,0x0000, 0xFBC0,0x8FD4,0x0000,
1439
0xFBC0,0x8FD5,0x0000, 0xFBC0,0x8FD6,0x0000, 0xFBC0,0x8FD7,0x0000,
1440
0xFBC0,0x8FD8,0x0000, 0xFBC0,0x8FD9,0x0000, 0xFBC0,0x8FDA,0x0000,
1441
0xFBC0,0x8FDB,0x0000, 0xFBC0,0x8FDC,0x0000, 0xFBC0,0x8FDD,0x0000,
1442
0xFBC0,0x8FDE,0x0000, 0xFBC0,0x8FDF,0x0000, 0xFBC0,0x8FE0,0x0000,
1443
0xFBC0,0x8FE1,0x0000, 0xFBC0,0x8FE2,0x0000, 0xFBC0,0x8FE3,0x0000,
1444
0xFBC0,0x8FE4,0x0000, 0xFBC0,0x8FE5,0x0000, 0xFBC0,0x8FE6,0x0000,
1445
0xFBC0,0x8FE7,0x0000, 0xFBC0,0x8FE8,0x0000, 0xFBC0,0x8FE9,0x0000,
1446
0xFBC0,0x8FEA,0x0000, 0xFBC0,0x8FEB,0x0000, 0xFBC0,0x8FEC,0x0000,
1447
0xFBC0,0x8FED,0x0000, 0xFBC0,0x8FEE,0x0000, 0xFBC0,0x8FEF,0x0000,
1448
0xFBC0,0x8FF0,0x0000, 0xFBC0,0x8FF1,0x0000, 0xFBC0,0x8FF2,0x0000,
1449
0xFBC0,0x8FF3,0x0000, 0xFBC0,0x8FF4,0x0000, 0xFBC0,0x8FF5,0x0000,
1450
0xFBC0,0x8FF6,0x0000, 0xFBC0,0x8FF7,0x0000, 0xFBC0,0x8FF8,0x0000,
1451
0xFBC0,0x8FF9,0x0000, 0xFBC0,0x8FFA,0x0000, 0xFBC0,0x8FFB,0x0000,
1452
0xFBC0,0x8FFC,0x0000, 0xFBC0,0x8FFD,0x0000, 0xFBC0,0x8FFE,0x0000,
1453
0xFBC0,0x8FFF,0x0000 };
1454
206 by Brian Aker
Removed final uint dead types.
1455
uint16_t page010data[]= { /* 1000 (3 weights per char) */
1 by brian
clean slate
1456
0x1931,0x0000,0x0000, 0x1932,0x0000,0x0000, 0x1933,0x0000,0x0000,
1457
0x1934,0x0000,0x0000, 0x1935,0x0000,0x0000, 0x1936,0x0000,0x0000,
1458
0x1937,0x0000,0x0000, 0x1938,0x0000,0x0000, 0x1939,0x0000,0x0000,
1459
0x193A,0x0000,0x0000, 0x193B,0x0000,0x0000, 0x193C,0x0000,0x0000,
1460
0x193D,0x0000,0x0000, 0x193E,0x0000,0x0000, 0x193F,0x0000,0x0000,
1461
0x1940,0x0000,0x0000, 0x1941,0x0000,0x0000, 0x1942,0x0000,0x0000,
1462
0x1943,0x0000,0x0000, 0x1944,0x0000,0x0000, 0x1945,0x0000,0x0000,
1463
0x1946,0x0000,0x0000, 0x1947,0x0000,0x0000, 0x1948,0x0000,0x0000,
1464
0x1949,0x0000,0x0000, 0x194A,0x0000,0x0000, 0x194B,0x0000,0x0000,
1465
0x194C,0x0000,0x0000, 0x194D,0x0000,0x0000, 0x194E,0x0000,0x0000,
1466
0x1951,0x0000,0x0000, 0x1952,0x0000,0x0000, 0x1953,0x0000,0x0000,
1467
0x1954,0x0000,0x0000, 0xFBC0,0x9022,0x0000, 0x1955,0x0000,0x0000,
1468
0x1956,0x0000,0x0000, 0x1957,0x0000,0x0000, 0x1958,0x0000,0x0000,
1469
0x1959,0x0000,0x0000, 0xFBC0,0x9028,0x0000, 0x195A,0x0000,0x0000,
1470
0x195B,0x0000,0x0000, 0xFBC0,0x902B,0x0000, 0x1960,0x0000,0x0000,
1471
0x1961,0x0000,0x0000, 0x1962,0x0000,0x0000, 0x1963,0x0000,0x0000,
1472
0x1964,0x0000,0x0000, 0x1965,0x0000,0x0000, 0x1966,0x0000,0x0000,
1473
0xFBC0,0x9033,0x0000, 0xFBC0,0x9034,0x0000, 0xFBC0,0x9035,0x0000,
1474
0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,
1475
0x196B,0x0000,0x0000, 0xFBC0,0x903A,0x0000, 0xFBC0,0x903B,0x0000,
1476
0xFBC0,0x903C,0x0000, 0xFBC0,0x903D,0x0000, 0xFBC0,0x903E,0x0000,
1477
0xFBC0,0x903F,0x0000, 0x0E29,0x0000,0x0000, 0x0E2A,0x0000,0x0000,
1478
0x0E2B,0x0000,0x0000, 0x0E2C,0x0000,0x0000, 0x0E2D,0x0000,0x0000,
1479
0x0E2E,0x0000,0x0000, 0x0E2F,0x0000,0x0000, 0x0E30,0x0000,0x0000,
1480
0x0E31,0x0000,0x0000, 0x0E32,0x0000,0x0000, 0x026C,0x0000,0x0000,
1481
0x026D,0x0000,0x0000, 0x030E,0x0000,0x0000, 0x030F,0x0000,0x0000,
1482
0x0310,0x0000,0x0000, 0x0311,0x0000,0x0000, 0x194F,0x0000,0x0000,
1483
0x1950,0x0000,0x0000, 0x195C,0x0000,0x0000, 0x195D,0x0000,0x0000,
1484
0x195E,0x0000,0x0000, 0x195F,0x0000,0x0000, 0x1967,0x0000,0x0000,
1485
0x1968,0x0000,0x0000, 0x1969,0x0000,0x0000, 0x196A,0x0000,0x0000,
1486
0xFBC0,0x905A,0x0000, 0xFBC0,0x905B,0x0000, 0xFBC0,0x905C,0x0000,
1487
0xFBC0,0x905D,0x0000, 0xFBC0,0x905E,0x0000, 0xFBC0,0x905F,0x0000,
1488
0xFBC0,0x9060,0x0000, 0xFBC0,0x9061,0x0000, 0xFBC0,0x9062,0x0000,
1489
0xFBC0,0x9063,0x0000, 0xFBC0,0x9064,0x0000, 0xFBC0,0x9065,0x0000,
1490
0xFBC0,0x9066,0x0000, 0xFBC0,0x9067,0x0000, 0xFBC0,0x9068,0x0000,
1491
0xFBC0,0x9069,0x0000, 0xFBC0,0x906A,0x0000, 0xFBC0,0x906B,0x0000,
1492
0xFBC0,0x906C,0x0000, 0xFBC0,0x906D,0x0000, 0xFBC0,0x906E,0x0000,
1493
0xFBC0,0x906F,0x0000, 0xFBC0,0x9070,0x0000, 0xFBC0,0x9071,0x0000,
1494
0xFBC0,0x9072,0x0000, 0xFBC0,0x9073,0x0000, 0xFBC0,0x9074,0x0000,
1495
0xFBC0,0x9075,0x0000, 0xFBC0,0x9076,0x0000, 0xFBC0,0x9077,0x0000,
1496
0xFBC0,0x9078,0x0000, 0xFBC0,0x9079,0x0000, 0xFBC0,0x907A,0x0000,
1497
0xFBC0,0x907B,0x0000, 0xFBC0,0x907C,0x0000, 0xFBC0,0x907D,0x0000,
1498
0xFBC0,0x907E,0x0000, 0xFBC0,0x907F,0x0000, 0xFBC0,0x9080,0x0000,
1499
0xFBC0,0x9081,0x0000, 0xFBC0,0x9082,0x0000, 0xFBC0,0x9083,0x0000,
1500
0xFBC0,0x9084,0x0000, 0xFBC0,0x9085,0x0000, 0xFBC0,0x9086,0x0000,
1501
0xFBC0,0x9087,0x0000, 0xFBC0,0x9088,0x0000, 0xFBC0,0x9089,0x0000,
1502
0xFBC0,0x908A,0x0000, 0xFBC0,0x908B,0x0000, 0xFBC0,0x908C,0x0000,
1503
0xFBC0,0x908D,0x0000, 0xFBC0,0x908E,0x0000, 0xFBC0,0x908F,0x0000,
1504
0xFBC0,0x9090,0x0000, 0xFBC0,0x9091,0x0000, 0xFBC0,0x9092,0x0000,
1505
0xFBC0,0x9093,0x0000, 0xFBC0,0x9094,0x0000, 0xFBC0,0x9095,0x0000,
1506
0xFBC0,0x9096,0x0000, 0xFBC0,0x9097,0x0000, 0xFBC0,0x9098,0x0000,
1507
0xFBC0,0x9099,0x0000, 0xFBC0,0x909A,0x0000, 0xFBC0,0x909B,0x0000,
1508
0xFBC0,0x909C,0x0000, 0xFBC0,0x909D,0x0000, 0xFBC0,0x909E,0x0000,
1509
0xFBC0,0x909F,0x0000, 0x12E1,0x0000,0x0000, 0x12E2,0x0000,0x0000,
1510
0x12E3,0x0000,0x0000, 0x12E4,0x0000,0x0000, 0x12E5,0x0000,0x0000,
1511
0x12E6,0x0000,0x0000, 0x12E7,0x0000,0x0000, 0x12E9,0x0000,0x0000,
1512
0x12EA,0x0000,0x0000, 0x12EB,0x0000,0x0000, 0x12EC,0x0000,0x0000,
1513
0x12ED,0x0000,0x0000, 0x12EE,0x0000,0x0000, 0x12F0,0x0000,0x0000,
1514
0x12F1,0x0000,0x0000, 0x12F2,0x0000,0x0000, 0x12F3,0x0000,0x0000,
1515
0x12F4,0x0000,0x0000, 0x12F5,0x0000,0x0000, 0x12F7,0x0000,0x0000,
1516
0x12F8,0x0000,0x0000, 0x12F9,0x0000,0x0000, 0x12FA,0x0000,0x0000,
1517
0x12FB,0x0000,0x0000, 0x12FC,0x0000,0x0000, 0x12FD,0x0000,0x0000,
1518
0x12FE,0x0000,0x0000, 0x12FF,0x0000,0x0000, 0x1300,0x0000,0x0000,
1519
0x1301,0x0000,0x0000, 0x1302,0x0000,0x0000, 0x1304,0x0000,0x0000,
1520
0x1305,0x0000,0x0000, 0x12E8,0x0000,0x0000, 0x12EF,0x0000,0x0000,
1521
0x12F6,0x0000,0x0000, 0x1303,0x0000,0x0000, 0x1306,0x0000,0x0000,
1522
0xFBC0,0x90C6,0x0000, 0xFBC0,0x90C7,0x0000, 0xFBC0,0x90C8,0x0000,
1523
0xFBC0,0x90C9,0x0000, 0xFBC0,0x90CA,0x0000, 0xFBC0,0x90CB,0x0000,
1524
0xFBC0,0x90CC,0x0000, 0xFBC0,0x90CD,0x0000, 0xFBC0,0x90CE,0x0000,
1525
0xFBC0,0x90CF,0x0000, 0x12E1,0x0000,0x0000, 0x12E2,0x0000,0x0000,
1526
0x12E3,0x0000,0x0000, 0x12E4,0x0000,0x0000, 0x12E5,0x0000,0x0000,
1527
0x12E6,0x0000,0x0000, 0x12E7,0x0000,0x0000, 0x12E9,0x0000,0x0000,
1528
0x12EA,0x0000,0x0000, 0x12EB,0x0000,0x0000, 0x12EC,0x0000,0x0000,
1529
0x12ED,0x0000,0x0000, 0x12EE,0x0000,0x0000, 0x12F0,0x0000,0x0000,
1530
0x12F1,0x0000,0x0000, 0x12F2,0x0000,0x0000, 0x12F3,0x0000,0x0000,
1531
0x12F4,0x0000,0x0000, 0x12F5,0x0000,0x0000, 0x12F7,0x0000,0x0000,
1532
0x12F8,0x0000,0x0000, 0x12F9,0x0000,0x0000, 0x12FA,0x0000,0x0000,
1533
0x12FB,0x0000,0x0000, 0x12FC,0x0000,0x0000, 0x12FD,0x0000,0x0000,
1534
0x12FE,0x0000,0x0000, 0x12FF,0x0000,0x0000, 0x1300,0x0000,0x0000,
1535
0x1301,0x0000,0x0000, 0x1302,0x0000,0x0000, 0x1304,0x0000,0x0000,
1536
0x1305,0x0000,0x0000, 0x12E8,0x0000,0x0000, 0x12EF,0x0000,0x0000,
1537
0x12F6,0x0000,0x0000, 0x1303,0x0000,0x0000, 0x1306,0x0000,0x0000,
1538
0x1307,0x0000,0x0000, 0x1308,0x0000,0x0000, 0x1309,0x0000,0x0000,
1539
0xFBC0,0x90F9,0x0000, 0xFBC0,0x90FA,0x0000, 0x0271,0x0000,0x0000,
1540
0xFBC0,0x90FC,0x0000, 0xFBC0,0x90FD,0x0000, 0xFBC0,0x90FE,0x0000,
1541
0xFBC0,0x90FF,0x0000 };
1542
206 by Brian Aker
Removed final uint dead types.
1543
uint16_t page011data[]= { /* 1100 (3 weights per char) */
1 by brian
clean slate
1544
0x1D62,0x0000,0x0000, 0x1D63,0x0000,0x0000, 0x1D64,0x0000,0x0000,
1545
0x1D65,0x0000,0x0000, 0x1D66,0x0000,0x0000, 0x1D67,0x0000,0x0000,
1546
0x1D68,0x0000,0x0000, 0x1D69,0x0000,0x0000, 0x1D6A,0x0000,0x0000,
1547
0x1D6B,0x0000,0x0000, 0x1D6C,0x0000,0x0000, 0x1D6D,0x0000,0x0000,
1548
0x1D6E,0x0000,0x0000, 0x1D6F,0x0000,0x0000, 0x1D70,0x0000,0x0000,
1549
0x1D71,0x0000,0x0000, 0x1D72,0x0000,0x0000, 0x1D73,0x0000,0x0000,
1550
0x1D74,0x0000,0x0000, 0x1D75,0x0000,0x0000, 0x1D76,0x0000,0x0000,
1551
0x1D77,0x0000,0x0000, 0x1D78,0x0000,0x0000, 0x1D79,0x0000,0x0000,
1552
0x1D7A,0x0000,0x0000, 0x1D7B,0x0000,0x0000, 0x1D7C,0x0000,0x0000,
1553
0x1D7D,0x0000,0x0000, 0x1D7E,0x0000,0x0000, 0x1D7F,0x0000,0x0000,
1554
0x1D80,0x0000,0x0000, 0x1D81,0x0000,0x0000, 0x1D82,0x0000,0x0000,
1555
0x1D83,0x0000,0x0000, 0x1D84,0x0000,0x0000, 0x1D85,0x0000,0x0000,
1556
0x1D86,0x0000,0x0000, 0x1D87,0x0000,0x0000, 0x1D88,0x0000,0x0000,
1557
0x1D89,0x0000,0x0000, 0x1D8A,0x0000,0x0000, 0x1D8B,0x0000,0x0000,
1558
0x1D8C,0x0000,0x0000, 0x1D8D,0x0000,0x0000, 0x1D8E,0x0000,0x0000,
1559
0x1D8F,0x0000,0x0000, 0x1D90,0x0000,0x0000, 0x1D91,0x0000,0x0000,
1560
0x1D92,0x0000,0x0000, 0x1D93,0x0000,0x0000, 0x1D94,0x0000,0x0000,
1561
0x1D95,0x0000,0x0000, 0x1D96,0x0000,0x0000, 0x1D97,0x0000,0x0000,
1562
0x1D98,0x0000,0x0000, 0x1D99,0x0000,0x0000, 0x1D9A,0x0000,0x0000,
1563
0x1D9B,0x0000,0x0000, 0x1D9C,0x0000,0x0000, 0x1D9D,0x0000,0x0000,
1564
0x1D9E,0x0000,0x0000, 0x1D9F,0x0000,0x0000, 0x1DA0,0x0000,0x0000,
1565
0x1DA1,0x0000,0x0000, 0x1DA2,0x0000,0x0000, 0x1DA3,0x0000,0x0000,
1566
0x1DA4,0x0000,0x0000, 0x1DA5,0x0000,0x0000, 0x1DA6,0x0000,0x0000,
1567
0x1DA7,0x0000,0x0000, 0x1DA8,0x0000,0x0000, 0x1DA9,0x0000,0x0000,
1568
0x1DAA,0x0000,0x0000, 0x1DAB,0x0000,0x0000, 0x1DAC,0x0000,0x0000,
1569
0x1DAD,0x0000,0x0000, 0x1DAE,0x0000,0x0000, 0x1DAF,0x0000,0x0000,
1570
0x1DB0,0x0000,0x0000, 0x1DB1,0x0000,0x0000, 0x1DB2,0x0000,0x0000,
1571
0x1DB3,0x0000,0x0000, 0x1DB4,0x0000,0x0000, 0x1DB5,0x0000,0x0000,
1572
0x1DB6,0x0000,0x0000, 0x1DB7,0x0000,0x0000, 0x1DB8,0x0000,0x0000,
1573
0x1DB9,0x0000,0x0000, 0x1DBA,0x0000,0x0000, 0x1DBB,0x0000,0x0000,
1574
0xFBC0,0x915A,0x0000, 0xFBC0,0x915B,0x0000, 0xFBC0,0x915C,0x0000,
1575
0xFBC0,0x915D,0x0000, 0xFBC0,0x915E,0x0000, 0x1DBC,0x0000,0x0000,
1576
0x1DBD,0x0000,0x0000, 0x1DBE,0x0000,0x0000, 0x1DBF,0x0000,0x0000,
1577
0x1DC0,0x0000,0x0000, 0x1DC1,0x0000,0x0000, 0x1DC2,0x0000,0x0000,
1578
0x1DC3,0x0000,0x0000, 0x1DC4,0x0000,0x0000, 0x1DC5,0x0000,0x0000,
1579
0x1DC6,0x0000,0x0000, 0x1DC7,0x0000,0x0000, 0x1DC8,0x0000,0x0000,
1580
0x1DC9,0x0000,0x0000, 0x1DCA,0x0000,0x0000, 0x1DCB,0x0000,0x0000,
1581
0x1DCC,0x0000,0x0000, 0x1DCD,0x0000,0x0000, 0x1DCE,0x0000,0x0000,
1582
0x1DCF,0x0000,0x0000, 0x1DD0,0x0000,0x0000, 0x1DD1,0x0000,0x0000,
1583
0x1DD2,0x0000,0x0000, 0x1DD3,0x0000,0x0000, 0x1DD4,0x0000,0x0000,
1584
0x1DD5,0x0000,0x0000, 0x1DD6,0x0000,0x0000, 0x1DD7,0x0000,0x0000,
1585
0x1DD8,0x0000,0x0000, 0x1DD9,0x0000,0x0000, 0x1DDA,0x0000,0x0000,
1586
0x1DDB,0x0000,0x0000, 0x1DDC,0x0000,0x0000, 0x1DDD,0x0000,0x0000,
1587
0x1DDE,0x0000,0x0000, 0x1DDF,0x0000,0x0000, 0x1DE0,0x0000,0x0000,
1588
0x1DE1,0x0000,0x0000, 0x1DE2,0x0000,0x0000, 0x1DE3,0x0000,0x0000,
1589
0x1DE4,0x0000,0x0000, 0x1DE5,0x0000,0x0000, 0x1DE6,0x0000,0x0000,
1590
0x1DE7,0x0000,0x0000, 0x1DE8,0x0000,0x0000, 0x1DE9,0x0000,0x0000,
1591
0x1DEA,0x0000,0x0000, 0x1DEB,0x0000,0x0000, 0x1DEC,0x0000,0x0000,
1592
0x1DED,0x0000,0x0000, 0x1DEE,0x0000,0x0000, 0x1DEF,0x0000,0x0000,
1593
0x1DF0,0x0000,0x0000, 0x1DF1,0x0000,0x0000, 0x1DF2,0x0000,0x0000,
1594
0x1DF3,0x0000,0x0000, 0x1DF4,0x0000,0x0000, 0x1DF5,0x0000,0x0000,
1595
0x1DF6,0x0000,0x0000, 0x1DF7,0x0000,0x0000, 0x1DF8,0x0000,0x0000,
1596
0x1DF9,0x0000,0x0000, 0x1DFA,0x0000,0x0000, 0x1DFB,0x0000,0x0000,
1597
0x1DFC,0x0000,0x0000, 0x1DFD,0x0000,0x0000, 0x1DFE,0x0000,0x0000,
1598
0x1DFF,0x0000,0x0000, 0xFBC0,0x91A3,0x0000, 0xFBC0,0x91A4,0x0000,
1599
0xFBC0,0x91A5,0x0000, 0xFBC0,0x91A6,0x0000, 0xFBC0,0x91A7,0x0000,
1600
0x1E00,0x0000,0x0000, 0x1E01,0x0000,0x0000, 0x1E02,0x0000,0x0000,
1601
0x1E03,0x0000,0x0000, 0x1E04,0x0000,0x0000, 0x1E05,0x0000,0x0000,
1602
0x1E06,0x0000,0x0000, 0x1E07,0x0000,0x0000, 0x1E08,0x0000,0x0000,
1603
0x1E09,0x0000,0x0000, 0x1E0A,0x0000,0x0000, 0x1E0B,0x0000,0x0000,
1604
0x1E0C,0x0000,0x0000, 0x1E0D,0x0000,0x0000, 0x1E0E,0x0000,0x0000,
1605
0x1E0F,0x0000,0x0000, 0x1E10,0x0000,0x0000, 0x1E11,0x0000,0x0000,
1606
0x1E12,0x0000,0x0000, 0x1E13,0x0000,0x0000, 0x1E14,0x0000,0x0000,
1607
0x1E15,0x0000,0x0000, 0x1E16,0x0000,0x0000, 0x1E17,0x0000,0x0000,
1608
0x1E18,0x0000,0x0000, 0x1E19,0x0000,0x0000, 0x1E1A,0x0000,0x0000,
1609
0x1E1B,0x0000,0x0000, 0x1E1C,0x0000,0x0000, 0x1E1D,0x0000,0x0000,
1610
0x1E1E,0x0000,0x0000, 0x1E1F,0x0000,0x0000, 0x1E20,0x0000,0x0000,
1611
0x1E21,0x0000,0x0000, 0x1E22,0x0000,0x0000, 0x1E23,0x0000,0x0000,
1612
0x1E24,0x0000,0x0000, 0x1E25,0x0000,0x0000, 0x1E26,0x0000,0x0000,
1613
0x1E27,0x0000,0x0000, 0x1E28,0x0000,0x0000, 0x1E29,0x0000,0x0000,
1614
0x1E2A,0x0000,0x0000, 0x1E2B,0x0000,0x0000, 0x1E2C,0x0000,0x0000,
1615
0x1E2D,0x0000,0x0000, 0x1E2E,0x0000,0x0000, 0x1E2F,0x0000,0x0000,
1616
0x1E30,0x0000,0x0000, 0x1E31,0x0000,0x0000, 0x1E32,0x0000,0x0000,
1617
0x1E33,0x0000,0x0000, 0x1E34,0x0000,0x0000, 0x1E35,0x0000,0x0000,
1618
0x1E36,0x0000,0x0000, 0x1E37,0x0000,0x0000, 0x1E38,0x0000,0x0000,
1619
0x1E39,0x0000,0x0000, 0x1E3A,0x0000,0x0000, 0x1E3B,0x0000,0x0000,
1620
0x1E3C,0x0000,0x0000, 0x1E3D,0x0000,0x0000, 0x1E3E,0x0000,0x0000,
1621
0x1E3F,0x0000,0x0000, 0x1E40,0x0000,0x0000, 0x1E41,0x0000,0x0000,
1622
0x1E42,0x0000,0x0000, 0x1E43,0x0000,0x0000, 0x1E44,0x0000,0x0000,
1623
0x1E45,0x0000,0x0000, 0x1E46,0x0000,0x0000, 0x1E47,0x0000,0x0000,
1624
0x1E48,0x0000,0x0000, 0x1E49,0x0000,0x0000, 0x1E4A,0x0000,0x0000,
1625
0x1E4B,0x0000,0x0000, 0x1E4C,0x0000,0x0000, 0x1E4D,0x0000,0x0000,
1626
0x1E4E,0x0000,0x0000, 0x1E4F,0x0000,0x0000, 0x1E50,0x0000,0x0000,
1627
0x1E51,0x0000,0x0000, 0xFBC0,0x91FA,0x0000, 0xFBC0,0x91FB,0x0000,
1628
0xFBC0,0x91FC,0x0000, 0xFBC0,0x91FD,0x0000, 0xFBC0,0x91FE,0x0000,
1629
0xFBC0,0x91FF,0x0000 };
1630
206 by Brian Aker
Removed final uint dead types.
1631
uint16_t page012data[]= { /* 1200 (3 weights per char) */
1 by brian
clean slate
1632
0x141C,0x0000,0x0000, 0x141D,0x0000,0x0000, 0x141E,0x0000,0x0000,
1633
0x141F,0x0000,0x0000, 0x1420,0x0000,0x0000, 0x1421,0x0000,0x0000,
1634
0x1422,0x0000,0x0000, 0xFBC0,0x9207,0x0000, 0x1423,0x0000,0x0000,
1635
0x1424,0x0000,0x0000, 0x1425,0x0000,0x0000, 0x1426,0x0000,0x0000,
1636
0x1427,0x0000,0x0000, 0x1428,0x0000,0x0000, 0x1429,0x0000,0x0000,
1637
0x142A,0x0000,0x0000, 0x142B,0x0000,0x0000, 0x142C,0x0000,0x0000,
1638
0x142D,0x0000,0x0000, 0x142E,0x0000,0x0000, 0x142F,0x0000,0x0000,
1639
0x1430,0x0000,0x0000, 0x1431,0x0000,0x0000, 0x1432,0x0000,0x0000,
1640
0x1433,0x0000,0x0000, 0x1434,0x0000,0x0000, 0x1435,0x0000,0x0000,
1641
0x1436,0x0000,0x0000, 0x1437,0x0000,0x0000, 0x1438,0x0000,0x0000,
1642
0x1439,0x0000,0x0000, 0x143A,0x0000,0x0000, 0x143B,0x0000,0x0000,
1643
0x143C,0x0000,0x0000, 0x143D,0x0000,0x0000, 0x143E,0x0000,0x0000,
1644
0x143F,0x0000,0x0000, 0x1440,0x0000,0x0000, 0x1441,0x0000,0x0000,
1645
0x1442,0x0000,0x0000, 0x1443,0x0000,0x0000, 0x1444,0x0000,0x0000,
1646
0x1445,0x0000,0x0000, 0x1446,0x0000,0x0000, 0x1447,0x0000,0x0000,
1647
0x1448,0x0000,0x0000, 0x1449,0x0000,0x0000, 0x144A,0x0000,0x0000,
1648
0x144B,0x0000,0x0000, 0x144C,0x0000,0x0000, 0x144D,0x0000,0x0000,
1649
0x144E,0x0000,0x0000, 0x144F,0x0000,0x0000, 0x1450,0x0000,0x0000,
1650
0x1451,0x0000,0x0000, 0x1452,0x0000,0x0000, 0x1453,0x0000,0x0000,
1651
0x1454,0x0000,0x0000, 0x1455,0x0000,0x0000, 0x1456,0x0000,0x0000,
1652
0x1457,0x0000,0x0000, 0x1458,0x0000,0x0000, 0x1459,0x0000,0x0000,
1653
0x145A,0x0000,0x0000, 0x145B,0x0000,0x0000, 0x145C,0x0000,0x0000,
1654
0x145D,0x0000,0x0000, 0x145E,0x0000,0x0000, 0x145F,0x0000,0x0000,
1655
0x1460,0x0000,0x0000, 0x1461,0x0000,0x0000, 0xFBC0,0x9247,0x0000,
1656
0x1462,0x0000,0x0000, 0xFBC0,0x9249,0x0000, 0x1463,0x0000,0x0000,
1657
0x1464,0x0000,0x0000, 0x1465,0x0000,0x0000, 0x1466,0x0000,0x0000,
1658
0xFBC0,0x924E,0x0000, 0xFBC0,0x924F,0x0000, 0x1467,0x0000,0x0000,
1659
0x1468,0x0000,0x0000, 0x1469,0x0000,0x0000, 0x146A,0x0000,0x0000,
1660
0x146B,0x0000,0x0000, 0x146C,0x0000,0x0000, 0x146D,0x0000,0x0000,
1661
0xFBC0,0x9257,0x0000, 0x146E,0x0000,0x0000, 0xFBC0,0x9259,0x0000,
1662
0x146F,0x0000,0x0000, 0x1470,0x0000,0x0000, 0x1471,0x0000,0x0000,
1663
0x1472,0x0000,0x0000, 0xFBC0,0x925E,0x0000, 0xFBC0,0x925F,0x0000,
1664
0x1473,0x0000,0x0000, 0x1474,0x0000,0x0000, 0x1475,0x0000,0x0000,
1665
0x1476,0x0000,0x0000, 0x1477,0x0000,0x0000, 0x1478,0x0000,0x0000,
1666
0x1479,0x0000,0x0000, 0x147A,0x0000,0x0000, 0x147B,0x0000,0x0000,
1667
0x147C,0x0000,0x0000, 0x147D,0x0000,0x0000, 0x147E,0x0000,0x0000,
1668
0x147F,0x0000,0x0000, 0x1480,0x0000,0x0000, 0x1481,0x0000,0x0000,
1669
0x1482,0x0000,0x0000, 0x1483,0x0000,0x0000, 0x1484,0x0000,0x0000,
1670
0x1485,0x0000,0x0000, 0x1486,0x0000,0x0000, 0x1487,0x0000,0x0000,
1671
0x1488,0x0000,0x0000, 0x1489,0x0000,0x0000, 0x148A,0x0000,0x0000,
1672
0x148B,0x0000,0x0000, 0x148C,0x0000,0x0000, 0x148D,0x0000,0x0000,
1673
0x148E,0x0000,0x0000, 0x148F,0x0000,0x0000, 0x1490,0x0000,0x0000,
1674
0x1491,0x0000,0x0000, 0x1492,0x0000,0x0000, 0x1493,0x0000,0x0000,
1675
0x1494,0x0000,0x0000, 0x1495,0x0000,0x0000, 0x1496,0x0000,0x0000,
1676
0x1497,0x0000,0x0000, 0x1498,0x0000,0x0000, 0x1499,0x0000,0x0000,
1677
0xFBC0,0x9287,0x0000, 0x149A,0x0000,0x0000, 0xFBC0,0x9289,0x0000,
1678
0x149B,0x0000,0x0000, 0x149C,0x0000,0x0000, 0x149D,0x0000,0x0000,
1679
0x149E,0x0000,0x0000, 0xFBC0,0x928E,0x0000, 0xFBC0,0x928F,0x0000,
1680
0x149F,0x0000,0x0000, 0x14A0,0x0000,0x0000, 0x14A1,0x0000,0x0000,
1681
0x14A2,0x0000,0x0000, 0x14A3,0x0000,0x0000, 0x14A4,0x0000,0x0000,
1682
0x14A5,0x0000,0x0000, 0x14A6,0x0000,0x0000, 0x14A7,0x0000,0x0000,
1683
0x14A8,0x0000,0x0000, 0x14A9,0x0000,0x0000, 0x14AA,0x0000,0x0000,
1684
0x14AB,0x0000,0x0000, 0x14AC,0x0000,0x0000, 0x14AD,0x0000,0x0000,
1685
0x14AE,0x0000,0x0000, 0x14AF,0x0000,0x0000, 0x14B0,0x0000,0x0000,
1686
0x14B1,0x0000,0x0000, 0x14B2,0x0000,0x0000, 0x14B3,0x0000,0x0000,
1687
0x14B4,0x0000,0x0000, 0x14B5,0x0000,0x0000, 0x14B6,0x0000,0x0000,
1688
0x14B7,0x0000,0x0000, 0x14B8,0x0000,0x0000, 0x14B9,0x0000,0x0000,
1689
0x14BA,0x0000,0x0000, 0x14BB,0x0000,0x0000, 0x14BC,0x0000,0x0000,
1690
0x14BD,0x0000,0x0000, 0xFBC0,0x92AF,0x0000, 0x14BE,0x0000,0x0000,
1691
0xFBC0,0x92B1,0x0000, 0x14BF,0x0000,0x0000, 0x14C0,0x0000,0x0000,
1692
0x14C1,0x0000,0x0000, 0x14C2,0x0000,0x0000, 0xFBC0,0x92B6,0x0000,
1693
0xFBC0,0x92B7,0x0000, 0x14C3,0x0000,0x0000, 0x14C4,0x0000,0x0000,
1694
0x14C5,0x0000,0x0000, 0x14C6,0x0000,0x0000, 0x14C7,0x0000,0x0000,
1695
0x14C8,0x0000,0x0000, 0x14C9,0x0000,0x0000, 0xFBC0,0x92BF,0x0000,
1696
0x14CA,0x0000,0x0000, 0xFBC0,0x92C1,0x0000, 0x14CB,0x0000,0x0000,
1697
0x14CC,0x0000,0x0000, 0x14CD,0x0000,0x0000, 0x14CE,0x0000,0x0000,
1698
0xFBC0,0x92C6,0x0000, 0xFBC0,0x92C7,0x0000, 0x14CF,0x0000,0x0000,
1699
0x14D0,0x0000,0x0000, 0x14D1,0x0000,0x0000, 0x14D2,0x0000,0x0000,
1700
0x14D3,0x0000,0x0000, 0x14D4,0x0000,0x0000, 0x14D5,0x0000,0x0000,
1701
0xFBC0,0x92CF,0x0000, 0x14D6,0x0000,0x0000, 0x14D7,0x0000,0x0000,
1702
0x14D8,0x0000,0x0000, 0x14D9,0x0000,0x0000, 0x14DA,0x0000,0x0000,
1703
0x14DB,0x0000,0x0000, 0x14DC,0x0000,0x0000, 0xFBC0,0x92D7,0x0000,
1704
0x14DD,0x0000,0x0000, 0x14DE,0x0000,0x0000, 0x14DF,0x0000,0x0000,
1705
0x14E0,0x0000,0x0000, 0x14E1,0x0000,0x0000, 0x14E2,0x0000,0x0000,
1706
0x14E3,0x0000,0x0000, 0x14E4,0x0000,0x0000, 0x14E5,0x0000,0x0000,
1707
0x14E6,0x0000,0x0000, 0x14E7,0x0000,0x0000, 0x14E8,0x0000,0x0000,
1708
0x14E9,0x0000,0x0000, 0x14EA,0x0000,0x0000, 0x14EB,0x0000,0x0000,
1709
0x14EC,0x0000,0x0000, 0x14ED,0x0000,0x0000, 0x14EE,0x0000,0x0000,
1710
0x14EF,0x0000,0x0000, 0x14F0,0x0000,0x0000, 0x14F1,0x0000,0x0000,
1711
0x14F2,0x0000,0x0000, 0x14F3,0x0000,0x0000, 0xFBC0,0x92EF,0x0000,
1712
0x14F4,0x0000,0x0000, 0x14F5,0x0000,0x0000, 0x14F6,0x0000,0x0000,
1713
0x14F7,0x0000,0x0000, 0x14F8,0x0000,0x0000, 0x14F9,0x0000,0x0000,
1714
0x14FA,0x0000,0x0000, 0x14FB,0x0000,0x0000, 0x14FC,0x0000,0x0000,
1715
0x14FD,0x0000,0x0000, 0x14FE,0x0000,0x0000, 0x14FF,0x0000,0x0000,
1716
0x1500,0x0000,0x0000, 0x1501,0x0000,0x0000, 0x1502,0x0000,0x0000,
1717
0x1503,0x0000,0x0000 };
1718
206 by Brian Aker
Removed final uint dead types.
1719
uint16_t page013data[]= { /* 1300 (3 weights per char) */
1 by brian
clean slate
1720
0x1504,0x0000,0x0000, 0x1505,0x0000,0x0000, 0x1506,0x0000,0x0000,
1721
0x1507,0x0000,0x0000, 0x1508,0x0000,0x0000, 0x1509,0x0000,0x0000,
1722
0x150A,0x0000,0x0000, 0x150B,0x0000,0x0000, 0x150C,0x0000,0x0000,
1723
0x150D,0x0000,0x0000, 0x150E,0x0000,0x0000, 0x150F,0x0000,0x0000,
1724
0x1510,0x0000,0x0000, 0x1511,0x0000,0x0000, 0x1512,0x0000,0x0000,
1725
0xFBC0,0x930F,0x0000, 0x1513,0x0000,0x0000, 0xFBC0,0x9311,0x0000,
1726
0x1514,0x0000,0x0000, 0x1515,0x0000,0x0000, 0x1516,0x0000,0x0000,
1727
0x1517,0x0000,0x0000, 0xFBC0,0x9316,0x0000, 0xFBC0,0x9317,0x0000,
1728
0x1518,0x0000,0x0000, 0x1519,0x0000,0x0000, 0x151A,0x0000,0x0000,
1729
0x151B,0x0000,0x0000, 0x151C,0x0000,0x0000, 0x151D,0x0000,0x0000,
1730
0x151E,0x0000,0x0000, 0xFBC0,0x931F,0x0000, 0x151F,0x0000,0x0000,
1731
0x1520,0x0000,0x0000, 0x1521,0x0000,0x0000, 0x1522,0x0000,0x0000,
1732
0x1523,0x0000,0x0000, 0x1524,0x0000,0x0000, 0x1525,0x0000,0x0000,
1733
0x1526,0x0000,0x0000, 0x1527,0x0000,0x0000, 0x1528,0x0000,0x0000,
1734
0x1529,0x0000,0x0000, 0x152A,0x0000,0x0000, 0x152B,0x0000,0x0000,
1735
0x152C,0x0000,0x0000, 0x152D,0x0000,0x0000, 0x152E,0x0000,0x0000,
1736
0x152F,0x0000,0x0000, 0x1530,0x0000,0x0000, 0x1531,0x0000,0x0000,
1737
0x1532,0x0000,0x0000, 0x1533,0x0000,0x0000, 0x1534,0x0000,0x0000,
1738
0x1535,0x0000,0x0000, 0x1536,0x0000,0x0000, 0x1537,0x0000,0x0000,
1739
0x1538,0x0000,0x0000, 0x1539,0x0000,0x0000, 0x153A,0x0000,0x0000,
1740
0x153B,0x0000,0x0000, 0x153C,0x0000,0x0000, 0x153D,0x0000,0x0000,
1741
0x153E,0x0000,0x0000, 0x153F,0x0000,0x0000, 0x1540,0x0000,0x0000,
1742
0x1541,0x0000,0x0000, 0x1542,0x0000,0x0000, 0x1543,0x0000,0x0000,
1743
0x1544,0x0000,0x0000, 0x1545,0x0000,0x0000, 0xFBC0,0x9347,0x0000,
1744
0x1546,0x0000,0x0000, 0x1547,0x0000,0x0000, 0x1548,0x0000,0x0000,
1745
0x1549,0x0000,0x0000, 0x154A,0x0000,0x0000, 0x154B,0x0000,0x0000,
1746
0x154C,0x0000,0x0000, 0x154D,0x0000,0x0000, 0x154E,0x0000,0x0000,
1747
0x154F,0x0000,0x0000, 0x1550,0x0000,0x0000, 0x1551,0x0000,0x0000,
1748
0x1552,0x0000,0x0000, 0x1553,0x0000,0x0000, 0x1554,0x0000,0x0000,
1749
0x1555,0x0000,0x0000, 0x1556,0x0000,0x0000, 0x1557,0x0000,0x0000,
1750
0x1558,0x0000,0x0000, 0xFBC0,0x935B,0x0000, 0xFBC0,0x935C,0x0000,
1751
0xFBC0,0x935D,0x0000, 0xFBC0,0x935E,0x0000, 0xFBC0,0x935F,0x0000,
1752
0xFBC0,0x9360,0x0000, 0x0245,0x0000,0x0000, 0x0262,0x0000,0x0000,
1753
0x0246,0x0000,0x0000, 0x0247,0x0000,0x0000, 0x0248,0x0000,0x0000,
1754
0x0249,0x0000,0x0000, 0x025A,0x0000,0x0000, 0x0272,0x0000,0x0000,
1755
0x0E2A,0x0000,0x0000, 0x0E2B,0x0000,0x0000, 0x0E2C,0x0000,0x0000,
1756
0x0E2D,0x0000,0x0000, 0x0E2E,0x0000,0x0000, 0x0E2F,0x0000,0x0000,
1757
0x0E30,0x0000,0x0000, 0x0E31,0x0000,0x0000, 0x0E32,0x0000,0x0000,
1758
0x0DCC,0x0000,0x0000, 0x0DCD,0x0000,0x0000, 0x0DCE,0x0000,0x0000,
1759
0x0DCF,0x0000,0x0000, 0x0DD0,0x0000,0x0000, 0x0DD1,0x0000,0x0000,
1760
0x0DD2,0x0000,0x0000, 0x0DD3,0x0000,0x0000, 0x0DD4,0x0000,0x0000,
1761
0x0DD5,0x0000,0x0000, 0x0DD6,0x0000,0x0000, 0xFBC0,0x937D,0x0000,
1762
0xFBC0,0x937E,0x0000, 0xFBC0,0x937F,0x0000, 0xFBC0,0x9380,0x0000,
1763
0xFBC0,0x9381,0x0000, 0xFBC0,0x9382,0x0000, 0xFBC0,0x9383,0x0000,
1764
0xFBC0,0x9384,0x0000, 0xFBC0,0x9385,0x0000, 0xFBC0,0x9386,0x0000,
1765
0xFBC0,0x9387,0x0000, 0xFBC0,0x9388,0x0000, 0xFBC0,0x9389,0x0000,
1766
0xFBC0,0x938A,0x0000, 0xFBC0,0x938B,0x0000, 0xFBC0,0x938C,0x0000,
1767
0xFBC0,0x938D,0x0000, 0xFBC0,0x938E,0x0000, 0xFBC0,0x938F,0x0000,
1768
0xFBC0,0x9390,0x0000, 0xFBC0,0x9391,0x0000, 0xFBC0,0x9392,0x0000,
1769
0xFBC0,0x9393,0x0000, 0xFBC0,0x9394,0x0000, 0xFBC0,0x9395,0x0000,
1770
0xFBC0,0x9396,0x0000, 0xFBC0,0x9397,0x0000, 0xFBC0,0x9398,0x0000,
1771
0xFBC0,0x9399,0x0000, 0xFBC0,0x939A,0x0000, 0xFBC0,0x939B,0x0000,
1772
0xFBC0,0x939C,0x0000, 0xFBC0,0x939D,0x0000, 0xFBC0,0x939E,0x0000,
1773
0xFBC0,0x939F,0x0000, 0x1A59,0x0000,0x0000, 0x1A5A,0x0000,0x0000,
1774
0x1A5B,0x0000,0x0000, 0x1A5C,0x0000,0x0000, 0x1A5D,0x0000,0x0000,
1775
0x1A5E,0x0000,0x0000, 0x1A5F,0x0000,0x0000, 0x1A60,0x0000,0x0000,
1776
0x1A61,0x0000,0x0000, 0x1A62,0x0000,0x0000, 0x1A63,0x0000,0x0000,
1777
0x1A64,0x0000,0x0000, 0x1A65,0x0000,0x0000, 0x1A66,0x0000,0x0000,
1778
0x1A67,0x0000,0x0000, 0x1A68,0x0000,0x0000, 0x1A69,0x0000,0x0000,
1779
0x1A6A,0x0000,0x0000, 0x1A6B,0x0000,0x0000, 0x1A6C,0x0000,0x0000,
1780
0x1A6D,0x0000,0x0000, 0x1A6E,0x0000,0x0000, 0x1A6F,0x0000,0x0000,
1781
0x1A70,0x0000,0x0000, 0x1A71,0x0000,0x0000, 0x1A72,0x0000,0x0000,
1782
0x1A73,0x0000,0x0000, 0x1A74,0x0000,0x0000, 0x1A75,0x0000,0x0000,
1783
0x1A76,0x0000,0x0000, 0x1A77,0x0000,0x0000, 0x1A78,0x0000,0x0000,
1784
0x1A79,0x0000,0x0000, 0x1A7A,0x0000,0x0000, 0x1A7B,0x0000,0x0000,
1785
0x1A7C,0x0000,0x0000, 0x1A7D,0x0000,0x0000, 0x1A7E,0x0000,0x0000,
1786
0x1A7F,0x0000,0x0000, 0x1A80,0x0000,0x0000, 0x1A81,0x0000,0x0000,
1787
0x1A82,0x0000,0x0000, 0x1A83,0x0000,0x0000, 0x1A84,0x0000,0x0000,
1788
0x1A85,0x0000,0x0000, 0x1A86,0x0000,0x0000, 0x1A87,0x0000,0x0000,
1789
0x1A88,0x0000,0x0000, 0x1A89,0x0000,0x0000, 0x1A8A,0x0000,0x0000,
1790
0x1A8B,0x0000,0x0000, 0x1A8C,0x0000,0x0000, 0x1A8D,0x0000,0x0000,
1791
0x1A8E,0x0000,0x0000, 0x1A8F,0x0000,0x0000, 0x1A90,0x0000,0x0000,
1792
0x1A91,0x0000,0x0000, 0x1A92,0x0000,0x0000, 0x1A93,0x0000,0x0000,
1793
0x1A94,0x0000,0x0000, 0x1A95,0x0000,0x0000, 0x1A96,0x0000,0x0000,
1794
0x1A97,0x0000,0x0000, 0x1A98,0x0000,0x0000, 0x1A99,0x0000,0x0000,
1795
0x1A9A,0x0000,0x0000, 0x1A9B,0x0000,0x0000, 0x1A9C,0x0000,0x0000,
1796
0x1A9D,0x0000,0x0000, 0x1A9E,0x0000,0x0000, 0x1A9F,0x0000,0x0000,
1797
0x1AA0,0x0000,0x0000, 0x1AA1,0x0000,0x0000, 0x1AA2,0x0000,0x0000,
1798
0x1AA3,0x0000,0x0000, 0x1AA4,0x0000,0x0000, 0x1AA5,0x0000,0x0000,
1799
0x1AA6,0x0000,0x0000, 0x1AA7,0x0000,0x0000, 0x1AA8,0x0000,0x0000,
1800
0x1AA9,0x0000,0x0000, 0x1AAA,0x0000,0x0000, 0x1AAB,0x0000,0x0000,
1801
0x1AAC,0x0000,0x0000, 0x1AAD,0x0000,0x0000, 0xFBC0,0x93F5,0x0000,
1802
0xFBC0,0x93F6,0x0000, 0xFBC0,0x93F7,0x0000, 0xFBC0,0x93F8,0x0000,
1803
0xFBC0,0x93F9,0x0000, 0xFBC0,0x93FA,0x0000, 0xFBC0,0x93FB,0x0000,
1804
0xFBC0,0x93FC,0x0000, 0xFBC0,0x93FD,0x0000, 0xFBC0,0x93FE,0x0000,
1805
0xFBC0,0x93FF,0x0000 };
1806
206 by Brian Aker
Removed final uint dead types.
1807
uint16_t page014data[]= { /* 1400 (3 weights per char) */
1 by brian
clean slate
1808
0xFBC0,0x9400,0x0000, 0x1AAE,0x0000,0x0000, 0x1AAF,0x0000,0x0000,
1809
0x1AB0,0x0000,0x0000, 0x1AB1,0x0000,0x0000, 0x1AB2,0x0000,0x0000,
1810
0x1AB3,0x0000,0x0000, 0x1AB4,0x0000,0x0000, 0x1AB5,0x0000,0x0000,
1811
0x1AB6,0x0000,0x0000, 0x1AB7,0x0000,0x0000, 0x1AB8,0x0000,0x0000,
1812
0x1AB9,0x0000,0x0000, 0x1ABA,0x0000,0x0000, 0x1ABB,0x0000,0x0000,
1813
0x1ABC,0x0000,0x0000, 0x1ABD,0x0000,0x0000, 0x1ABE,0x0000,0x0000,
1814
0x1ABF,0x0000,0x0000, 0x1AC0,0x0000,0x0000, 0x1AC1,0x0000,0x0000,
1815
0x1AC2,0x0000,0x0000, 0x1AC3,0x0000,0x0000, 0x1AC4,0x0000,0x0000,
1816
0x1AC5,0x0000,0x0000, 0x1AC6,0x0000,0x0000, 0x1AC7,0x0000,0x0000,
1817
0x1AC8,0x0000,0x0000, 0x1AC9,0x0000,0x0000, 0x1ACA,0x0000,0x0000,
1818
0x1ACB,0x0000,0x0000, 0x1ACC,0x0000,0x0000, 0x1ACD,0x0000,0x0000,
1819
0x1ACE,0x0000,0x0000, 0x1ACF,0x0000,0x0000, 0x1AD0,0x0000,0x0000,
1820
0x1AD1,0x0000,0x0000, 0x1AD2,0x0000,0x0000, 0x1AD3,0x0000,0x0000,
1821
0x1AD4,0x0000,0x0000, 0x1AD5,0x0000,0x0000, 0x1AD6,0x0000,0x0000,
1822
0x1AD7,0x0000,0x0000, 0x1AD8,0x0000,0x0000, 0x1AD9,0x0000,0x0000,
1823
0x1ADA,0x0000,0x0000, 0x1ADB,0x0000,0x0000, 0x1ADC,0x0000,0x0000,
1824
0x1ADD,0x0000,0x0000, 0x1ADE,0x0000,0x0000, 0x1ADF,0x0000,0x0000,
1825
0x1AE0,0x0000,0x0000, 0x1AE1,0x0000,0x0000, 0x1AE2,0x0000,0x0000,
1826
0x1AE3,0x0000,0x0000, 0x1AE4,0x0000,0x0000, 0x1AE5,0x0000,0x0000,
1827
0x1AE6,0x0000,0x0000, 0x1AE7,0x0000,0x0000, 0x1AE8,0x0000,0x0000,
1828
0x1AE9,0x0000,0x0000, 0x1AEA,0x0000,0x0000, 0x1AEB,0x0000,0x0000,
1829
0x1AEC,0x0000,0x0000, 0x1AED,0x0000,0x0000, 0x1AEE,0x0000,0x0000,
1830
0x1AEF,0x0000,0x0000, 0x1AF0,0x0000,0x0000, 0x1AF1,0x0000,0x0000,
1831
0x1AF2,0x0000,0x0000, 0x1AF3,0x0000,0x0000, 0x1AF4,0x0000,0x0000,
1832
0x1AF5,0x0000,0x0000, 0x1AF6,0x0000,0x0000, 0x1AF7,0x0000,0x0000,
1833
0x1AF8,0x0000,0x0000, 0x1AF9,0x0000,0x0000, 0x1AFA,0x0000,0x0000,
1834
0x1AFB,0x0000,0x0000, 0x1AFC,0x0000,0x0000, 0x1AFD,0x0000,0x0000,
1835
0x1AFE,0x0000,0x0000, 0x1AFF,0x0000,0x0000, 0x1B00,0x0000,0x0000,
1836
0x1B01,0x0000,0x0000, 0x1B02,0x0000,0x0000, 0x1B03,0x0000,0x0000,
1837
0x1B04,0x0000,0x0000, 0x1B05,0x0000,0x0000, 0x1B06,0x0000,0x0000,
1838
0x1B07,0x0000,0x0000, 0x1B08,0x0000,0x0000, 0x1B09,0x0000,0x0000,
1839
0x1B0A,0x0000,0x0000, 0x1B0B,0x0000,0x0000, 0x1B0C,0x0000,0x0000,
1840
0x1B0D,0x0000,0x0000, 0x1B0E,0x0000,0x0000, 0x1B0F,0x0000,0x0000,
1841
0x1B10,0x0000,0x0000, 0x1B11,0x0000,0x0000, 0x1B12,0x0000,0x0000,
1842
0x1B13,0x0000,0x0000, 0x1B14,0x0000,0x0000, 0x1B15,0x0000,0x0000,
1843
0x1B16,0x0000,0x0000, 0x1B17,0x0000,0x0000, 0x1B18,0x0000,0x0000,
1844
0x1B19,0x0000,0x0000, 0x1B1A,0x0000,0x0000, 0x1B1B,0x0000,0x0000,
1845
0x1B1C,0x0000,0x0000, 0x1B1D,0x0000,0x0000, 0x1B1E,0x0000,0x0000,
1846
0x1B1F,0x0000,0x0000, 0x1B20,0x0000,0x0000, 0x1B21,0x0000,0x0000,
1847
0x1B22,0x0000,0x0000, 0x1B23,0x0000,0x0000, 0x1B24,0x0000,0x0000,
1848
0x1B25,0x0000,0x0000, 0x1B26,0x0000,0x0000, 0x1B27,0x0000,0x0000,
1849
0x1B28,0x0000,0x0000, 0x1B29,0x0000,0x0000, 0x1B2A,0x0000,0x0000,
1850
0x1B2B,0x0000,0x0000, 0x1B2C,0x0000,0x0000, 0x1B2D,0x0000,0x0000,
1851
0x1B2E,0x0000,0x0000, 0x1B2F,0x0000,0x0000, 0x1B30,0x0000,0x0000,
1852
0x1B31,0x0000,0x0000, 0x1B32,0x0000,0x0000, 0x1B33,0x0000,0x0000,
1853
0x1B34,0x0000,0x0000, 0x1B35,0x0000,0x0000, 0x1B36,0x0000,0x0000,
1854
0x1B37,0x0000,0x0000, 0x1B38,0x0000,0x0000, 0x1B39,0x0000,0x0000,
1855
0x1B3A,0x0000,0x0000, 0x1B3B,0x0000,0x0000, 0x1B3C,0x0000,0x0000,
1856
0x1B3D,0x0000,0x0000, 0x1B3E,0x0000,0x0000, 0x1B3F,0x0000,0x0000,
1857
0x1B40,0x0000,0x0000, 0x1B41,0x0000,0x0000, 0x1B42,0x0000,0x0000,
1858
0x1B43,0x0000,0x0000, 0x1B44,0x0000,0x0000, 0x1B45,0x0000,0x0000,
1859
0x1B46,0x0000,0x0000, 0x1B47,0x0000,0x0000, 0x1B48,0x0000,0x0000,
1860
0x1B49,0x0000,0x0000, 0x1B4A,0x0000,0x0000, 0x1B4B,0x0000,0x0000,
1861
0x1B4C,0x0000,0x0000, 0x1B4D,0x0000,0x0000, 0x1B4E,0x0000,0x0000,
1862
0x1B4F,0x0000,0x0000, 0x1B50,0x0000,0x0000, 0x1B51,0x0000,0x0000,
1863
0x1B52,0x0000,0x0000, 0x1B53,0x0000,0x0000, 0x1B54,0x0000,0x0000,
1864
0x1B55,0x0000,0x0000, 0x1B56,0x0000,0x0000, 0x1B57,0x0000,0x0000,
1865
0x1B58,0x0000,0x0000, 0x1B59,0x0000,0x0000, 0x1B5A,0x0000,0x0000,
1866
0x1B5B,0x0000,0x0000, 0x1B5C,0x0000,0x0000, 0x1B5D,0x0000,0x0000,
1867
0x1B5E,0x0000,0x0000, 0x1B5F,0x0000,0x0000, 0x1B60,0x0000,0x0000,
1868
0x1B61,0x0000,0x0000, 0x1B62,0x0000,0x0000, 0x1B63,0x0000,0x0000,
1869
0x1B64,0x0000,0x0000, 0x1B65,0x0000,0x0000, 0x1B66,0x0000,0x0000,
1870
0x1B67,0x0000,0x0000, 0x1B68,0x0000,0x0000, 0x1B69,0x0000,0x0000,
1871
0x1B6A,0x0000,0x0000, 0x1B6B,0x0000,0x0000, 0x1B6C,0x0000,0x0000,
1872
0x1B6D,0x0000,0x0000, 0x1B6E,0x0000,0x0000, 0x1B6F,0x0000,0x0000,
1873
0x1B70,0x0000,0x0000, 0x1B71,0x0000,0x0000, 0x1B72,0x0000,0x0000,
1874
0x1B73,0x0000,0x0000, 0x1B74,0x0000,0x0000, 0x1B75,0x0000,0x0000,
1875
0x1B76,0x0000,0x0000, 0x1B77,0x0000,0x0000, 0x1B78,0x0000,0x0000,
1876
0x1B79,0x0000,0x0000, 0x1B7A,0x0000,0x0000, 0x1B7B,0x0000,0x0000,
1877
0x1B7C,0x0000,0x0000, 0x1B7D,0x0000,0x0000, 0x1B7E,0x0000,0x0000,
1878
0x1B7F,0x0000,0x0000, 0x1B80,0x0000,0x0000, 0x1B81,0x0000,0x0000,
1879
0x1B82,0x0000,0x0000, 0x1B83,0x0000,0x0000, 0x1B84,0x0000,0x0000,
1880
0x1B85,0x0000,0x0000, 0x1B86,0x0000,0x0000, 0x1B87,0x0000,0x0000,
1881
0x1B88,0x0000,0x0000, 0x1B89,0x0000,0x0000, 0x1B8A,0x0000,0x0000,
1882
0x1B8B,0x0000,0x0000, 0x1B8C,0x0000,0x0000, 0x1B8D,0x0000,0x0000,
1883
0x1B8E,0x0000,0x0000, 0x1B8F,0x0000,0x0000, 0x1B90,0x0000,0x0000,
1884
0x1B91,0x0000,0x0000, 0x1B92,0x0000,0x0000, 0x1B93,0x0000,0x0000,
1885
0x1B94,0x0000,0x0000, 0x1B95,0x0000,0x0000, 0x1B96,0x0000,0x0000,
1886
0x1B97,0x0000,0x0000, 0x1B98,0x0000,0x0000, 0x1B99,0x0000,0x0000,
1887
0x1B9A,0x0000,0x0000, 0x1B9B,0x0000,0x0000, 0x1B9C,0x0000,0x0000,
1888
0x1B9D,0x0000,0x0000, 0x1B9E,0x0000,0x0000, 0x1B9F,0x0000,0x0000,
1889
0x1BA0,0x0000,0x0000, 0x1BA1,0x0000,0x0000, 0x1BA2,0x0000,0x0000,
1890
0x1BA3,0x0000,0x0000, 0x1BA4,0x0000,0x0000, 0x1BA5,0x0000,0x0000,
1891
0x1BA6,0x0000,0x0000, 0x1BA7,0x0000,0x0000, 0x1BA8,0x0000,0x0000,
1892
0x1BA9,0x0000,0x0000, 0x1BAA,0x0000,0x0000, 0x1BAB,0x0000,0x0000,
1893
0x1BAC,0x0000,0x0000 };
1894
206 by Brian Aker
Removed final uint dead types.
1895
uint16_t page015data[]= { /* 1500 (2 weights per char) */
1 by brian
clean slate
1896
0x1BAD,0x0000, 0x1BAE,0x0000, 0x1BAF,0x0000, 0x1BB0,0x0000,
1897
0x1BB1,0x0000, 0x1BB2,0x0000, 0x1BB3,0x0000, 0x1BB4,0x0000,
1898
0x1BB5,0x0000, 0x1BB6,0x0000, 0x1BB7,0x0000, 0x1BB8,0x0000,
1899
0x1BB9,0x0000, 0x1BBA,0x0000, 0x1BBB,0x0000, 0x1BBC,0x0000,
1900
0x1BBD,0x0000, 0x1BBE,0x0000, 0x1BBF,0x0000, 0x1BC0,0x0000,
1901
0x1BC1,0x0000, 0x1BC2,0x0000, 0x1BC3,0x0000, 0x1BC4,0x0000,
1902
0x1BC5,0x0000, 0x1BC6,0x0000, 0x1BC7,0x0000, 0x1BC8,0x0000,
1903
0x1BC9,0x0000, 0x1BCA,0x0000, 0x1BCB,0x0000, 0x1BCC,0x0000,
1904
0x1BCD,0x0000, 0x1BCE,0x0000, 0x1BCF,0x0000, 0x1BD0,0x0000,
1905
0x1BD1,0x0000, 0x1BD2,0x0000, 0x1BD3,0x0000, 0x1BD4,0x0000,
1906
0x1BD5,0x0000, 0x1BD6,0x0000, 0x1BD7,0x0000, 0x1BD8,0x0000,
1907
0x1BD9,0x0000, 0x1BDA,0x0000, 0x1BDB,0x0000, 0x1BDC,0x0000,
1908
0x1BDD,0x0000, 0x1BDE,0x0000, 0x1BDF,0x0000, 0x1BE0,0x0000,
1909
0x1BE1,0x0000, 0x1BE2,0x0000, 0x1BE3,0x0000, 0x1BE4,0x0000,
1910
0x1BE5,0x0000, 0x1BE6,0x0000, 0x1BE7,0x0000, 0x1BE8,0x0000,
1911
0x1BE9,0x0000, 0x1BEA,0x0000, 0x1BEB,0x0000, 0x1BEC,0x0000,
1912
0x1BED,0x0000, 0x1BEE,0x0000, 0x1BEF,0x0000, 0x1BF0,0x0000,
1913
0x1BF1,0x0000, 0x1BF2,0x0000, 0x1BF3,0x0000, 0x1BF4,0x0000,
1914
0x1BF5,0x0000, 0x1BF6,0x0000, 0x1BF7,0x0000, 0x1BF8,0x0000,
1915
0x1BF9,0x0000, 0x1BFA,0x0000, 0x1BFB,0x0000, 0x1BFC,0x0000,
1916
0x1BFD,0x0000, 0x1BFE,0x0000, 0x1BFF,0x0000, 0x1C00,0x0000,
1917
0x1C01,0x0000, 0x1C02,0x0000, 0x1C03,0x0000, 0x1C04,0x0000,
1918
0x1C05,0x0000, 0x1C06,0x0000, 0x1C07,0x0000, 0x1C08,0x0000,
1919
0x1C09,0x0000, 0x1C0A,0x0000, 0x1C0B,0x0000, 0x1C0C,0x0000,
1920
0x1C0D,0x0000, 0x1C0E,0x0000, 0x1C0F,0x0000, 0x1C10,0x0000,
1921
0x1C11,0x0000, 0x1C12,0x0000, 0x1C13,0x0000, 0x1C14,0x0000,
1922
0x1C15,0x0000, 0x1C16,0x0000, 0x1C17,0x0000, 0x1C18,0x0000,
1923
0x1C19,0x0000, 0x1C1A,0x0000, 0x1C1B,0x0000, 0x1C1C,0x0000,
1924
0x1C1D,0x0000, 0x1C1E,0x0000, 0x1C1F,0x0000, 0x1C20,0x0000,
1925
0x1C21,0x0000, 0x1C22,0x0000, 0x1C23,0x0000, 0x1C24,0x0000,
1926
0x1C25,0x0000, 0x1C26,0x0000, 0x1C27,0x0000, 0x1C28,0x0000,
1927
0x1C5B,0x0000, 0x1C29,0x0000, 0x1C2B,0x0000, 0x1C2C,0x0000,
1928
0x1C2D,0x0000, 0x1C2E,0x0000, 0x1C2F,0x0000, 0x1C30,0x0000,
1929
0x1C31,0x0000, 0x1C32,0x0000, 0x1C33,0x0000, 0x1C34,0x0000,
1930
0x1C35,0x0000, 0x1C36,0x0000, 0x1C37,0x0000, 0x1C38,0x0000,
1931
0x1C39,0x0000, 0x1C3A,0x0000, 0x1C3C,0x0000, 0x1C3D,0x0000,
1932
0x1C3E,0x0000, 0x1C3F,0x0000, 0x1C40,0x0000, 0x1C41,0x0000,
1933
0x1C42,0x0000, 0x1C43,0x0000, 0x1C4A,0x0000, 0x1C4B,0x0000,
1934
0x1C4C,0x0000, 0x1C4D,0x0000, 0x1C4E,0x0000, 0x1C4F,0x0000,
1935
0x1C50,0x0000, 0x1C51,0x0000, 0x1C52,0x0000, 0x1C53,0x0000,
1936
0x1C54,0x0000, 0x1C55,0x0000, 0x1C56,0x0000, 0x1C57,0x0000,
1937
0x1C58,0x0000, 0x1C59,0x0000, 0x1C5A,0x0000, 0x1C5C,0x0000,
1938
0x1C5D,0x0000, 0x1C5E,0x0000, 0x1C5F,0x0000, 0x1C60,0x0000,
1939
0x1C61,0x0000, 0x1C62,0x0000, 0x1C63,0x0000, 0x1C64,0x0000,
1940
0x1C65,0x0000, 0x1C66,0x0000, 0x1C67,0x0000, 0x1C68,0x0000,
1941
0x1C69,0x0000, 0x1C6A,0x0000, 0x1C6B,0x0000, 0x1C6C,0x0000,
1942
0x1C6D,0x0000, 0x1C6E,0x0000, 0x1C6F,0x0000, 0x1C70,0x0000,
1943
0x1C71,0x0000, 0x1C72,0x0000, 0x1C73,0x0000, 0x1C74,0x0000,
1944
0x1C75,0x0000, 0x1C76,0x0000, 0x1C77,0x0000, 0x1C78,0x0000,
1945
0x1C79,0x0000, 0x1C7A,0x0000, 0x1C7B,0x0000, 0x1C7C,0x0000,
1946
0x1C7D,0x0000, 0x1C7E,0x0000, 0x1C7F,0x0000, 0x1C80,0x0000,
1947
0x1C81,0x0000, 0x1C82,0x0000, 0x1C83,0x0000, 0x1C84,0x0000,
1948
0x1C85,0x0000, 0x1C86,0x0000, 0x1C87,0x0000, 0x1C88,0x0000,
1949
0x1C89,0x0000, 0x1C8A,0x0000, 0x1C8B,0x0000, 0x1C8C,0x0000,
1950
0x1C8D,0x0000, 0x1C8E,0x0000, 0x1C8F,0x0000, 0x1C90,0x0000,
1951
0x1C91,0x0000, 0x1C92,0x0000, 0x1C93,0x0000, 0x1C94,0x0000,
1952
0x1C95,0x0000, 0x1C96,0x0000, 0x1C97,0x0000, 0x1C98,0x0000,
1953
0x1C99,0x0000, 0x1C9A,0x0000, 0x1C9B,0x0000, 0x1C9C,0x0000,
1954
0x1C9D,0x0000, 0x1C9E,0x0000, 0x1C9F,0x0000, 0x1CA0,0x0000,
1955
0x1CA1,0x0000, 0x1CA2,0x0000, 0x1CA3,0x0000, 0x1CA4,0x0000,
1956
0x1CA5,0x0000, 0x1CA6,0x0000, 0x1CA7,0x0000, 0x1CA8,0x0000,
1957
0x1CA9,0x0000, 0x1CAA,0x0000, 0x1CAB,0x0000, 0x1CAC,0x0000,
1958
0x1CAD,0x0000, 0x1CAE,0x0000, 0x1CAF,0x0000, 0x1CB0,0x0000,
1959
0x1CB1,0x0000, 0x1CB2,0x0000, 0x1CB3,0x0000, 0x1CB4,0x0000
1960
};
1961
206 by Brian Aker
Removed final uint dead types.
1962
uint16_t page016data[]= { /* 1600 (3 weights per char) */
1 by brian
clean slate
1963
0x1CB5,0x0000,0x0000, 0x1CB6,0x0000,0x0000, 0x1CB7,0x0000,0x0000,
1964
0x1CB8,0x0000,0x0000, 0x1CB9,0x0000,0x0000, 0x1CBA,0x0000,0x0000,
1965
0x1CBB,0x0000,0x0000, 0x1CBC,0x0000,0x0000, 0x1CBD,0x0000,0x0000,
1966
0x1CBE,0x0000,0x0000, 0x1CBF,0x0000,0x0000, 0x1CC0,0x0000,0x0000,
1967
0x1CC1,0x0000,0x0000, 0x1CC2,0x0000,0x0000, 0x1CC3,0x0000,0x0000,
1968
0x1CC4,0x0000,0x0000, 0x1CC5,0x0000,0x0000, 0x1CC6,0x0000,0x0000,
1969
0x1CC7,0x0000,0x0000, 0x1CC8,0x0000,0x0000, 0x1CC9,0x0000,0x0000,
1970
0x1CCA,0x0000,0x0000, 0x1CCB,0x0000,0x0000, 0x1CCC,0x0000,0x0000,
1971
0x1CCD,0x0000,0x0000, 0x1CCE,0x0000,0x0000, 0x1CCF,0x0000,0x0000,
1972
0x1CD0,0x0000,0x0000, 0x1CD1,0x0000,0x0000, 0x1CD2,0x0000,0x0000,
1973
0x1CD3,0x0000,0x0000, 0x1CD4,0x0000,0x0000, 0x1CD5,0x0000,0x0000,
1974
0x1CD6,0x0000,0x0000, 0x1CD7,0x0000,0x0000, 0x1CD8,0x0000,0x0000,
1975
0x1CD9,0x0000,0x0000, 0x1CDA,0x0000,0x0000, 0x1CDB,0x0000,0x0000,
1976
0x1CDC,0x0000,0x0000, 0x1CDD,0x0000,0x0000, 0x1CDE,0x0000,0x0000,
1977
0x1CDF,0x0000,0x0000, 0x1CE0,0x0000,0x0000, 0x1CE1,0x0000,0x0000,
1978
0x1CE2,0x0000,0x0000, 0x1CE3,0x0000,0x0000, 0x1CE4,0x0000,0x0000,
1979
0x1CE5,0x0000,0x0000, 0x1CE6,0x0000,0x0000, 0x1CE7,0x0000,0x0000,
1980
0x1CE8,0x0000,0x0000, 0x1CE9,0x0000,0x0000, 0x1CEA,0x0000,0x0000,
1981
0x1CEB,0x0000,0x0000, 0x1CEC,0x0000,0x0000, 0x1CED,0x0000,0x0000,
1982
0x1CEE,0x0000,0x0000, 0x1CEF,0x0000,0x0000, 0x1CF0,0x0000,0x0000,
1983
0x1CF1,0x0000,0x0000, 0x1CF2,0x0000,0x0000, 0x1CF3,0x0000,0x0000,
1984
0x1CF4,0x0000,0x0000, 0x1CF5,0x0000,0x0000, 0x1CF6,0x0000,0x0000,
1985
0x1CF7,0x0000,0x0000, 0x1CF8,0x0000,0x0000, 0x1CF9,0x0000,0x0000,
1986
0x1CFA,0x0000,0x0000, 0x1CFB,0x0000,0x0000, 0x1CFC,0x0000,0x0000,
1987
0x1CFD,0x0000,0x0000, 0x1CFE,0x0000,0x0000, 0x1CFF,0x0000,0x0000,
1988
0x1D00,0x0000,0x0000, 0x1D01,0x0000,0x0000, 0x1D02,0x0000,0x0000,
1989
0x1D03,0x0000,0x0000, 0x1D04,0x0000,0x0000, 0x1D05,0x0000,0x0000,
1990
0x1D06,0x0000,0x0000, 0x1D07,0x0000,0x0000, 0x1D08,0x0000,0x0000,
1991
0x1D09,0x0000,0x0000, 0x1D0A,0x0000,0x0000, 0x1D0B,0x0000,0x0000,
1992
0x1D0C,0x0000,0x0000, 0x1D0D,0x0000,0x0000, 0x1D0E,0x0000,0x0000,
1993
0x1D0F,0x0000,0x0000, 0x1D10,0x0000,0x0000, 0x1D11,0x0000,0x0000,
1994
0x1D12,0x0000,0x0000, 0x1D13,0x0000,0x0000, 0x1D14,0x0000,0x0000,
1995
0x1D15,0x0000,0x0000, 0x1D16,0x0000,0x0000, 0x1D17,0x0000,0x0000,
1996
0x1D18,0x0000,0x0000, 0x1D19,0x0000,0x0000, 0x1D1A,0x0000,0x0000,
1997
0x1D1B,0x0000,0x0000, 0x1D1C,0x0000,0x0000, 0x1D1D,0x0000,0x0000,
1998
0x1D1E,0x0000,0x0000, 0x1D1F,0x0000,0x0000, 0x1D20,0x0000,0x0000,
1999
0x1D21,0x0000,0x0000, 0x0316,0x0000,0x0000, 0x0265,0x0000,0x0000,
2000
0x1C2A,0x0000,0x0000, 0x1C3B,0x0000,0x0000, 0x1C44,0x0000,0x0000,
2001
0x1C45,0x0000,0x0000, 0x1C46,0x0000,0x0000, 0x1C47,0x0000,0x0000,
2002
0x1C48,0x0000,0x0000, 0x1C49,0x0000,0x0000, 0xFBC0,0x9677,0x0000,
2003
0xFBC0,0x9678,0x0000, 0xFBC0,0x9679,0x0000, 0xFBC0,0x967A,0x0000,
2004
0xFBC0,0x967B,0x0000, 0xFBC0,0x967C,0x0000, 0xFBC0,0x967D,0x0000,
2005
0xFBC0,0x967E,0x0000, 0xFBC0,0x967F,0x0000, 0x020A,0x0000,0x0000,
2006
0x1D22,0x0000,0x0000, 0x1D23,0x0000,0x0000, 0x1D24,0x0000,0x0000,
2007
0x1D25,0x0000,0x0000, 0x1D26,0x0000,0x0000, 0x1D27,0x0000,0x0000,
2008
0x1D28,0x0000,0x0000, 0x1D29,0x0000,0x0000, 0x1D2A,0x0000,0x0000,
2009
0x1D2B,0x0000,0x0000, 0x1D2C,0x0000,0x0000, 0x1D2D,0x0000,0x0000,
2010
0x1D2E,0x0000,0x0000, 0x1D2F,0x0000,0x0000, 0x1D30,0x0000,0x0000,
2011
0x1D31,0x0000,0x0000, 0x1D32,0x0000,0x0000, 0x1D33,0x0000,0x0000,
2012
0x1D34,0x0000,0x0000, 0x1D35,0x0000,0x0000, 0x1D36,0x0000,0x0000,
2013
0x1D37,0x0000,0x0000, 0x1D38,0x0000,0x0000, 0x1D39,0x0000,0x0000,
2014
0x1D3A,0x0000,0x0000, 0x1D3B,0x0000,0x0000, 0x0292,0x0000,0x0000,
2015
0x0293,0x0000,0x0000, 0xFBC0,0x969D,0x0000, 0xFBC0,0x969E,0x0000,
2016
0xFBC0,0x969F,0x0000, 0x1D3C,0x0000,0x0000, 0x1D3C,0x0000,0x0000,
2017
0x1D3D,0x0000,0x0000, 0x1D59,0x0000,0x0000, 0x1D3D,0x0000,0x0000,
2018
0x1D3D,0x0000,0x0000, 0x1D3E,0x0000,0x0000, 0x1D3E,0x0000,0x0000,
2019
0x1D3F,0x0000,0x0000, 0x1D3F,0x0000,0x0000, 0x1D57,0x0000,0x0000,
2020
0x1D58,0x0000,0x0000, 0x1D3F,0x0000,0x0000, 0x1D3F,0x0000,0x0000,
2021
0x1D3F,0x0000,0x0000, 0x1D40,0x0000,0x0000, 0x1D41,0x0000,0x0000,
2022
0x1D42,0x0000,0x0000, 0x1D43,0x0000,0x0000, 0x1D43,0x0000,0x0000,
2023
0x1D43,0x0000,0x0000, 0x1D43,0x0000,0x0000, 0x1D43,0x0000,0x0000,
2024
0x1D44,0x0000,0x0000, 0x1D5C,0x0000,0x0000, 0x1D45,0x0000,0x0000,
2025
0x1D46,0x0000,0x0000, 0x1D46,0x0000,0x0000, 0x1D46,0x0000,0x0000,
2026
0x1D46,0x0000,0x0000, 0x1D47,0x0000,0x0000, 0x1D47,0x0000,0x0000,
2027
0x1D47,0x0000,0x0000, 0x1D48,0x0000,0x0000, 0x1D48,0x0000,0x0000,
2028
0x1D49,0x0000,0x0000, 0x1D49,0x0000,0x0000, 0x1D4A,0x0000,0x0000,
2029
0x1D4A,0x0000,0x0000, 0x1D4B,0x0000,0x0000, 0x1D4C,0x0000,0x0000,
2030
0x1D4D,0x0000,0x0000, 0x1D4E,0x0000,0x0000, 0x1D4E,0x0000,0x0000,
2031
0x1D4E,0x0000,0x0000, 0x1D4E,0x0000,0x0000, 0x1D4E,0x0000,0x0000,
2032
0x1D4F,0x0000,0x0000, 0x1D4F,0x0000,0x0000, 0x1D4F,0x0000,0x0000,
2033
0x1D50,0x0000,0x0000, 0x1D50,0x0000,0x0000, 0x1D50,0x0000,0x0000,
2034
0x1D4C,0x0000,0x0000, 0x1D51,0x0000,0x0000, 0x1D52,0x0000,0x0000,
2035
0x1D52,0x0000,0x0000, 0x1D52,0x0000,0x0000, 0x1D53,0x0000,0x0000,
2036
0x1D53,0x0000,0x0000, 0x1D54,0x0000,0x0000, 0x1D54,0x0000,0x0000,
2037
0x1D55,0x0000,0x0000, 0x1D56,0x0000,0x0000, 0x1D5A,0x0000,0x0000,
2038
0x1D5E,0x0000,0x0000, 0x1D5F,0x0000,0x0000, 0x1D5B,0x0000,0x0000,
2039
0x1D5D,0x0000,0x0000, 0x1D60,0x0000,0x0000, 0x1D61,0x0000,0x0000,
2040
0x1D61,0x0000,0x0000, 0x1D61,0x0000,0x0000, 0x1D45,0x0000,0x0000,
2041
0x1D4E,0x0000,0x0000, 0x024E,0x0000,0x0000, 0x024F,0x0000,0x0000,
2042
0x0250,0x0000,0x0000, 0x1D4A,0x1D53,0x0000, 0x1D52,0x1D52,0x0000,
2043
0x1D3E,0x1D3E,0x0000, 0xFBC0,0x96F1,0x0000, 0xFBC0,0x96F2,0x0000,
2044
0xFBC0,0x96F3,0x0000, 0xFBC0,0x96F4,0x0000, 0xFBC0,0x96F5,0x0000,
2045
0xFBC0,0x96F6,0x0000, 0xFBC0,0x96F7,0x0000, 0xFBC0,0x96F8,0x0000,
2046
0xFBC0,0x96F9,0x0000, 0xFBC0,0x96FA,0x0000, 0xFBC0,0x96FB,0x0000,
2047
0xFBC0,0x96FC,0x0000, 0xFBC0,0x96FD,0x0000, 0xFBC0,0x96FE,0x0000,
2048
0xFBC0,0x96FF,0x0000 };
2049
206 by Brian Aker
Removed final uint dead types.
2050
uint16_t page017data[]= { /* 1700 (3 weights per char) */
1 by brian
clean slate
2051
0x18E2,0x0000,0x0000, 0x18E3,0x0000,0x0000, 0x18E4,0x0000,0x0000,
2052
0x18E5,0x0000,0x0000, 0x18E6,0x0000,0x0000, 0x18E7,0x0000,0x0000,
2053
0x18E8,0x0000,0x0000, 0x18E9,0x0000,0x0000, 0x18EA,0x0000,0x0000,
2054
0x18EB,0x0000,0x0000, 0x18EC,0x0000,0x0000, 0x18ED,0x0000,0x0000,
2055
0x18EE,0x0000,0x0000, 0xFBC0,0x970D,0x0000, 0x18EF,0x0000,0x0000,
2056
0x18F0,0x0000,0x0000, 0x18F1,0x0000,0x0000, 0x18F2,0x0000,0x0000,
2057
0x18F3,0x0000,0x0000, 0x18F4,0x0000,0x0000, 0x18F5,0x0000,0x0000,
2058
0xFBC0,0x9715,0x0000, 0xFBC0,0x9716,0x0000, 0xFBC0,0x9717,0x0000,
2059
0xFBC0,0x9718,0x0000, 0xFBC0,0x9719,0x0000, 0xFBC0,0x971A,0x0000,
2060
0xFBC0,0x971B,0x0000, 0xFBC0,0x971C,0x0000, 0xFBC0,0x971D,0x0000,
2061
0xFBC0,0x971E,0x0000, 0xFBC0,0x971F,0x0000, 0x18F6,0x0000,0x0000,
2062
0x18F7,0x0000,0x0000, 0x18F8,0x0000,0x0000, 0x18F9,0x0000,0x0000,
2063
0x18FA,0x0000,0x0000, 0x18FB,0x0000,0x0000, 0x18FC,0x0000,0x0000,
2064
0x18FD,0x0000,0x0000, 0x18FE,0x0000,0x0000, 0x18FF,0x0000,0x0000,
2065
0x1900,0x0000,0x0000, 0x1901,0x0000,0x0000, 0x1902,0x0000,0x0000,
2066
0x1903,0x0000,0x0000, 0x1904,0x0000,0x0000, 0x1905,0x0000,0x0000,
2067
0x1906,0x0000,0x0000, 0x1907,0x0000,0x0000, 0x1908,0x0000,0x0000,
2068
0x1909,0x0000,0x0000, 0x190A,0x0000,0x0000, 0x026A,0x0000,0x0000,
2069
0x026B,0x0000,0x0000, 0xFBC0,0x9737,0x0000, 0xFBC0,0x9738,0x0000,
2070
0xFBC0,0x9739,0x0000, 0xFBC0,0x973A,0x0000, 0xFBC0,0x973B,0x0000,
2071
0xFBC0,0x973C,0x0000, 0xFBC0,0x973D,0x0000, 0xFBC0,0x973E,0x0000,
2072
0xFBC0,0x973F,0x0000, 0x190B,0x0000,0x0000, 0x190C,0x0000,0x0000,
2073
0x190D,0x0000,0x0000, 0x190E,0x0000,0x0000, 0x190F,0x0000,0x0000,
2074
0x1910,0x0000,0x0000, 0x1911,0x0000,0x0000, 0x1912,0x0000,0x0000,
2075
0x1913,0x0000,0x0000, 0x1914,0x0000,0x0000, 0x1915,0x0000,0x0000,
2076
0x1916,0x0000,0x0000, 0x1917,0x0000,0x0000, 0x1918,0x0000,0x0000,
2077
0x1919,0x0000,0x0000, 0x191A,0x0000,0x0000, 0x191B,0x0000,0x0000,
2078
0x191C,0x0000,0x0000, 0x191D,0x0000,0x0000, 0x191E,0x0000,0x0000,
2079
0xFBC0,0x9754,0x0000, 0xFBC0,0x9755,0x0000, 0xFBC0,0x9756,0x0000,
2080
0xFBC0,0x9757,0x0000, 0xFBC0,0x9758,0x0000, 0xFBC0,0x9759,0x0000,
2081
0xFBC0,0x975A,0x0000, 0xFBC0,0x975B,0x0000, 0xFBC0,0x975C,0x0000,
2082
0xFBC0,0x975D,0x0000, 0xFBC0,0x975E,0x0000, 0xFBC0,0x975F,0x0000,
2083
0x191F,0x0000,0x0000, 0x1920,0x0000,0x0000, 0x1921,0x0000,0x0000,
2084
0x1922,0x0000,0x0000, 0x1923,0x0000,0x0000, 0x1924,0x0000,0x0000,
2085
0x1925,0x0000,0x0000, 0x1926,0x0000,0x0000, 0x1927,0x0000,0x0000,
2086
0x1928,0x0000,0x0000, 0x1929,0x0000,0x0000, 0x192A,0x0000,0x0000,
2087
0x192B,0x0000,0x0000, 0xFBC0,0x976D,0x0000, 0x192C,0x0000,0x0000,
2088
0x192D,0x0000,0x0000, 0x192E,0x0000,0x0000, 0xFBC0,0x9771,0x0000,
2089
0x192F,0x0000,0x0000, 0x1930,0x0000,0x0000, 0xFBC0,0x9774,0x0000,
2090
0xFBC0,0x9775,0x0000, 0xFBC0,0x9776,0x0000, 0xFBC0,0x9777,0x0000,
2091
0xFBC0,0x9778,0x0000, 0xFBC0,0x9779,0x0000, 0xFBC0,0x977A,0x0000,
2092
0xFBC0,0x977B,0x0000, 0xFBC0,0x977C,0x0000, 0xFBC0,0x977D,0x0000,
2093
0xFBC0,0x977E,0x0000, 0xFBC0,0x977F,0x0000, 0x196C,0x0000,0x0000,
2094
0x196D,0x0000,0x0000, 0x196E,0x0000,0x0000, 0x196F,0x0000,0x0000,
2095
0x1970,0x0000,0x0000, 0x1971,0x0000,0x0000, 0x1972,0x0000,0x0000,
2096
0x1973,0x0000,0x0000, 0x1974,0x0000,0x0000, 0x1975,0x0000,0x0000,
2097
0x1976,0x0000,0x0000, 0x1977,0x0000,0x0000, 0x1978,0x0000,0x0000,
2098
0x1979,0x0000,0x0000, 0x197A,0x0000,0x0000, 0x197B,0x0000,0x0000,
2099
0x197C,0x0000,0x0000, 0x197D,0x0000,0x0000, 0x197E,0x0000,0x0000,
2100
0x197F,0x0000,0x0000, 0x1980,0x0000,0x0000, 0x1981,0x0000,0x0000,
2101
0x1982,0x0000,0x0000, 0x1983,0x0000,0x0000, 0x1984,0x0000,0x0000,
2102
0x1985,0x0000,0x0000, 0x1986,0x0000,0x0000, 0x1987,0x0000,0x0000,
2103
0x1988,0x0000,0x0000, 0x1989,0x0000,0x0000, 0x198A,0x0000,0x0000,
2104
0x198B,0x0000,0x0000, 0x198C,0x0000,0x0000, 0x198D,0x0000,0x0000,
2105
0x198E,0x0000,0x0000, 0x1990,0x0000,0x0000, 0x1991,0x0000,0x0000,
2106
0x1992,0x0000,0x0000, 0x1993,0x0000,0x0000, 0x1994,0x0000,0x0000,
2107
0x1995,0x0000,0x0000, 0x1996,0x0000,0x0000, 0x1997,0x0000,0x0000,
2108
0x1998,0x0000,0x0000, 0x1999,0x0000,0x0000, 0x199A,0x0000,0x0000,
2109
0x199B,0x0000,0x0000, 0x199C,0x0000,0x0000, 0x199D,0x0000,0x0000,
2110
0x199E,0x0000,0x0000, 0x199F,0x0000,0x0000, 0x19A0,0x0000,0x0000,
2111
0x19A1,0x0000,0x0000, 0x19A2,0x0000,0x0000, 0x19A3,0x0000,0x0000,
2112
0x19A4,0x0000,0x0000, 0x19A5,0x0000,0x0000, 0x19A6,0x0000,0x0000,
2113
0x19A7,0x0000,0x0000, 0x19A8,0x0000,0x0000, 0x19A9,0x0000,0x0000,
2114
0x19AA,0x0000,0x0000, 0x19AB,0x0000,0x0000, 0x19AC,0x0000,0x0000,
2115
0x19AD,0x0000,0x0000, 0x19AE,0x0000,0x0000, 0x19AF,0x0000,0x0000,
2116
0x19B0,0x0000,0x0000, 0x19B1,0x0000,0x0000, 0x19B2,0x0000,0x0000,
2117
0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,
2118
0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,
2119
0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,
2120
0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,
2121
0x19B3,0x0000,0x0000, 0x0000,0x0000,0x0000, 0x026E,0x0000,0x0000,
2122
0x026F,0x0000,0x0000, 0x024D,0x0000,0x0000, 0x0312,0x0000,0x0000,
2123
0x0313,0x0000,0x0000, 0x0314,0x0000,0x0000, 0x0315,0x0000,0x0000,
2124
0x0E17,0x0000,0x0000, 0x198F,0x0000,0x0000, 0x0000,0x0000,0x0000,
2125
0xFBC0,0x97DE,0x0000, 0xFBC0,0x97DF,0x0000, 0x0E29,0x0000,0x0000,
2126
0x0E2A,0x0000,0x0000, 0x0E2B,0x0000,0x0000, 0x0E2C,0x0000,0x0000,
2127
0x0E2D,0x0000,0x0000, 0x0E2E,0x0000,0x0000, 0x0E2F,0x0000,0x0000,
2128
0x0E30,0x0000,0x0000, 0x0E31,0x0000,0x0000, 0x0E32,0x0000,0x0000,
2129
0xFBC0,0x97EA,0x0000, 0xFBC0,0x97EB,0x0000, 0xFBC0,0x97EC,0x0000,
2130
0xFBC0,0x97ED,0x0000, 0xFBC0,0x97EE,0x0000, 0xFBC0,0x97EF,0x0000,
2131
0x0E29,0x0000,0x0000, 0x0E2A,0x0000,0x0000, 0x0E2B,0x0000,0x0000,
2132
0x0E2C,0x0000,0x0000, 0x0E2D,0x0000,0x0000, 0x0E2E,0x0000,0x0000,
2133
0x0E2F,0x0000,0x0000, 0x0E30,0x0000,0x0000, 0x0E31,0x0000,0x0000,
2134
0x0E32,0x0000,0x0000, 0xFBC0,0x97FA,0x0000, 0xFBC0,0x97FB,0x0000,
2135
0xFBC0,0x97FC,0x0000, 0xFBC0,0x97FD,0x0000, 0xFBC0,0x97FE,0x0000,
2136
0xFBC0,0x97FF,0x0000 };
2137
206 by Brian Aker
Removed final uint dead types.
2138
uint16_t page018data[]= { /* 1800 (3 weights per char) */
1 by brian
clean slate
2139
0x02F8,0x0000,0x0000, 0x025E,0x0000,0x0000, 0x0235,0x0000,0x0000,
2140
0x0263,0x0000,0x0000, 0x024A,0x0000,0x0000, 0x024B,0x0000,0x0000,
2141
0x0223,0x0000,0x0000, 0x0224,0x0000,0x0000, 0x0236,0x0000,0x0000,
2142
0x0264,0x0000,0x0000, 0x02F9,0x0000,0x0000, 0x0000,0x0000,0x0000,
2143
0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,
2144
0xFBC0,0x980F,0x0000, 0x0E29,0x0000,0x0000, 0x0E2A,0x0000,0x0000,
2145
0x0E2B,0x0000,0x0000, 0x0E2C,0x0000,0x0000, 0x0E2D,0x0000,0x0000,
2146
0x0E2E,0x0000,0x0000, 0x0E2F,0x0000,0x0000, 0x0E30,0x0000,0x0000,
2147
0x0E31,0x0000,0x0000, 0x0E32,0x0000,0x0000, 0xFBC0,0x981A,0x0000,
2148
0xFBC0,0x981B,0x0000, 0xFBC0,0x981C,0x0000, 0xFBC0,0x981D,0x0000,
2149
0xFBC0,0x981E,0x0000, 0xFBC0,0x981F,0x0000, 0x19DF,0x0000,0x0000,
2150
0x19E1,0x0000,0x0000, 0x19E4,0x0000,0x0000, 0x19EA,0x0000,0x0000,
2151
0x19EC,0x0000,0x0000, 0x19EF,0x0000,0x0000, 0x19F1,0x0000,0x0000,
2152
0x19F4,0x0000,0x0000, 0x19F5,0x0000,0x0000, 0x19F6,0x0000,0x0000,
2153
0x19FB,0x0000,0x0000, 0x19FD,0x0000,0x0000, 0x1A00,0x0000,0x0000,
2154
0x1A02,0x0000,0x0000, 0x1A07,0x0000,0x0000, 0x1A09,0x0000,0x0000,
2155
0x1A0A,0x0000,0x0000, 0x1A0B,0x0000,0x0000, 0x1A12,0x0000,0x0000,
2156
0x1A15,0x0000,0x0000, 0x1A18,0x0000,0x0000, 0x1A1D,0x0000,0x0000,
2157
0x1A21,0x0000,0x0000, 0x1A24,0x0000,0x0000, 0x1A26,0x0000,0x0000,
2158
0x1A28,0x0000,0x0000, 0x1A2B,0x0000,0x0000, 0x1A30,0x0000,0x0000,
2159
0x1A31,0x0000,0x0000, 0x1A34,0x0000,0x0000, 0x1A38,0x0000,0x0000,
2160
0x1A3B,0x0000,0x0000, 0x1A3C,0x0000,0x0000, 0x1A3D,0x0000,0x0000,
2161
0x1A3E,0x0000,0x0000, 0x19DE,0x0000,0x0000, 0x19E2,0x0000,0x0000,
2162
0x19E5,0x0000,0x0000, 0x19EB,0x0000,0x0000, 0x19ED,0x0000,0x0000,
2163
0x19F0,0x0000,0x0000, 0x19F2,0x0000,0x0000, 0x19F7,0x0000,0x0000,
2164
0x19FC,0x0000,0x0000, 0x19FE,0x0000,0x0000, 0x1A01,0x0000,0x0000,
2165
0x1A03,0x0000,0x0000, 0x1A08,0x0000,0x0000, 0x1A13,0x0000,0x0000,
2166
0x1A16,0x0000,0x0000, 0x1A19,0x0000,0x0000, 0x1A1E,0x0000,0x0000,
2167
0x1A32,0x0000,0x0000, 0x1A22,0x0000,0x0000, 0x1A27,0x0000,0x0000,
2168
0x1A2C,0x0000,0x0000, 0x1A36,0x0000,0x0000, 0x1A39,0x0000,0x0000,
2169
0x1A3F,0x0000,0x0000, 0x1A40,0x0000,0x0000, 0x1A1B,0x0000,0x0000,
2170
0x19E3,0x0000,0x0000, 0x19E6,0x0000,0x0000, 0x19E9,0x0000,0x0000,
2171
0x19F3,0x0000,0x0000, 0x19EE,0x0000,0x0000, 0x19F8,0x0000,0x0000,
2172
0x1A2D,0x0000,0x0000, 0x1A04,0x0000,0x0000, 0x1A06,0x0000,0x0000,
2173
0x19FF,0x0000,0x0000, 0x1A0C,0x0000,0x0000, 0x1A14,0x0000,0x0000,
2174
0x1A17,0x0000,0x0000, 0x1A1F,0x0000,0x0000, 0x1A29,0x0000,0x0000,
2175
0x1A37,0x0000,0x0000, 0x1A3A,0x0000,0x0000, 0x1A33,0x0000,0x0000,
2176
0x1A35,0x0000,0x0000, 0x1A41,0x0000,0x0000, 0x1A1A,0x0000,0x0000,
2177
0x1A23,0x0000,0x0000, 0x19E7,0x0000,0x0000, 0x1A2E,0x0000,0x0000,
2178
0x1A25,0x0000,0x0000, 0x1A2A,0x0000,0x0000, 0x1A20,0x0000,0x0000,
2179
0xFBC0,0x9878,0x0000, 0xFBC0,0x9879,0x0000, 0xFBC0,0x987A,0x0000,
2180
0xFBC0,0x987B,0x0000, 0xFBC0,0x987C,0x0000, 0xFBC0,0x987D,0x0000,
2181
0xFBC0,0x987E,0x0000, 0xFBC0,0x987F,0x0000, 0x19D7,0x0000,0x0000,
2182
0x19D8,0x0000,0x0000, 0x19D9,0x0000,0x0000, 0x19DA,0x0000,0x0000,
2183
0x19DB,0x0000,0x0000, 0x19DC,0x0000,0x0000, 0x19DD,0x0000,0x0000,
2184
0x19E0,0x0000,0x0000, 0x19E8,0x0000,0x0000, 0x1A2F,0x0000,0x0000,
2185
0x19F9,0x0000,0x0000, 0x1A1C,0x0000,0x0000, 0x1A42,0x0000,0x0000,
2186
0x1A44,0x0000,0x0000, 0x1A45,0x0000,0x0000, 0x1A47,0x0000,0x0000,
2187
0x1A48,0x0000,0x0000, 0x1A4B,0x0000,0x0000, 0x1A4D,0x0000,0x0000,
2188
0x1A4E,0x0000,0x0000, 0x1A50,0x0000,0x0000, 0x1A52,0x0000,0x0000,
2189
0x1A54,0x0000,0x0000, 0x1A55,0x0000,0x0000, 0x1A49,0x0000,0x0000,
2190
0x1A53,0x0000,0x0000, 0x1A05,0x0000,0x0000, 0x19FA,0x0000,0x0000,
2191
0x1A0D,0x0000,0x0000, 0x1A0E,0x0000,0x0000, 0x1A43,0x0000,0x0000,
2192
0x1A46,0x0000,0x0000, 0x1A4A,0x0000,0x0000, 0x1A4C,0x0000,0x0000,
2193
0x1A0F,0x0000,0x0000, 0x1A51,0x0000,0x0000, 0x1A10,0x0000,0x0000,
2194
0x1A11,0x0000,0x0000, 0x1A56,0x0000,0x0000, 0x1A57,0x0000,0x0000,
2195
0x1A4F,0x0000,0x0000, 0x1A58,0x0000,0x0000, 0xFBC0,0x98AA,0x0000,
2196
0xFBC0,0x98AB,0x0000, 0xFBC0,0x98AC,0x0000, 0xFBC0,0x98AD,0x0000,
2197
0xFBC0,0x98AE,0x0000, 0xFBC0,0x98AF,0x0000, 0xFBC0,0x98B0,0x0000,
2198
0xFBC0,0x98B1,0x0000, 0xFBC0,0x98B2,0x0000, 0xFBC0,0x98B3,0x0000,
2199
0xFBC0,0x98B4,0x0000, 0xFBC0,0x98B5,0x0000, 0xFBC0,0x98B6,0x0000,
2200
0xFBC0,0x98B7,0x0000, 0xFBC0,0x98B8,0x0000, 0xFBC0,0x98B9,0x0000,
2201
0xFBC0,0x98BA,0x0000, 0xFBC0,0x98BB,0x0000, 0xFBC0,0x98BC,0x0000,
2202
0xFBC0,0x98BD,0x0000, 0xFBC0,0x98BE,0x0000, 0xFBC0,0x98BF,0x0000,
2203
0xFBC0,0x98C0,0x0000, 0xFBC0,0x98C1,0x0000, 0xFBC0,0x98C2,0x0000,
2204
0xFBC0,0x98C3,0x0000, 0xFBC0,0x98C4,0x0000, 0xFBC0,0x98C5,0x0000,
2205
0xFBC0,0x98C6,0x0000, 0xFBC0,0x98C7,0x0000, 0xFBC0,0x98C8,0x0000,
2206
0xFBC0,0x98C9,0x0000, 0xFBC0,0x98CA,0x0000, 0xFBC0,0x98CB,0x0000,
2207
0xFBC0,0x98CC,0x0000, 0xFBC0,0x98CD,0x0000, 0xFBC0,0x98CE,0x0000,
2208
0xFBC0,0x98CF,0x0000, 0xFBC0,0x98D0,0x0000, 0xFBC0,0x98D1,0x0000,
2209
0xFBC0,0x98D2,0x0000, 0xFBC0,0x98D3,0x0000, 0xFBC0,0x98D4,0x0000,
2210
0xFBC0,0x98D5,0x0000, 0xFBC0,0x98D6,0x0000, 0xFBC0,0x98D7,0x0000,
2211
0xFBC0,0x98D8,0x0000, 0xFBC0,0x98D9,0x0000, 0xFBC0,0x98DA,0x0000,
2212
0xFBC0,0x98DB,0x0000, 0xFBC0,0x98DC,0x0000, 0xFBC0,0x98DD,0x0000,
2213
0xFBC0,0x98DE,0x0000, 0xFBC0,0x98DF,0x0000, 0xFBC0,0x98E0,0x0000,
2214
0xFBC0,0x98E1,0x0000, 0xFBC0,0x98E2,0x0000, 0xFBC0,0x98E3,0x0000,
2215
0xFBC0,0x98E4,0x0000, 0xFBC0,0x98E5,0x0000, 0xFBC0,0x98E6,0x0000,
2216
0xFBC0,0x98E7,0x0000, 0xFBC0,0x98E8,0x0000, 0xFBC0,0x98E9,0x0000,
2217
0xFBC0,0x98EA,0x0000, 0xFBC0,0x98EB,0x0000, 0xFBC0,0x98EC,0x0000,
2218
0xFBC0,0x98ED,0x0000, 0xFBC0,0x98EE,0x0000, 0xFBC0,0x98EF,0x0000,
2219
0xFBC0,0x98F0,0x0000, 0xFBC0,0x98F1,0x0000, 0xFBC0,0x98F2,0x0000,
2220
0xFBC0,0x98F3,0x0000, 0xFBC0,0x98F4,0x0000, 0xFBC0,0x98F5,0x0000,
2221
0xFBC0,0x98F6,0x0000, 0xFBC0,0x98F7,0x0000, 0xFBC0,0x98F8,0x0000,
2222
0xFBC0,0x98F9,0x0000, 0xFBC0,0x98FA,0x0000, 0xFBC0,0x98FB,0x0000,
2223
0xFBC0,0x98FC,0x0000, 0xFBC0,0x98FD,0x0000, 0xFBC0,0x98FE,0x0000,
2224
0xFBC0,0x98FF,0x0000 };
2225
206 by Brian Aker
Removed final uint dead types.
2226
uint16_t page019data[]= { /* 1900 (3 weights per char) */
1 by brian
clean slate
2227
0x18B0,0x0000,0x0000, 0x18B1,0x0000,0x0000, 0x18B2,0x0000,0x0000,
2228
0x18B3,0x0000,0x0000, 0x18B4,0x0000,0x0000, 0x18B5,0x0000,0x0000,
2229
0x18B6,0x0000,0x0000, 0x18B7,0x0000,0x0000, 0x18B8,0x0000,0x0000,
2230
0x18B9,0x0000,0x0000, 0x18BA,0x0000,0x0000, 0x18BB,0x0000,0x0000,
2231
0x18BC,0x0000,0x0000, 0x18BD,0x0000,0x0000, 0x18BE,0x0000,0x0000,
2232
0x18BF,0x0000,0x0000, 0x18C0,0x0000,0x0000, 0x18C1,0x0000,0x0000,
2233
0x18C2,0x0000,0x0000, 0x18C3,0x0000,0x0000, 0x18C4,0x0000,0x0000,
2234
0x18C5,0x0000,0x0000, 0x18C6,0x0000,0x0000, 0x18C7,0x0000,0x0000,
2235
0x18C8,0x0000,0x0000, 0x18C9,0x0000,0x0000, 0x18CA,0x0000,0x0000,
2236
0x18CB,0x0000,0x0000, 0x18CC,0x0000,0x0000, 0xFBC0,0x991D,0x0000,
2237
0xFBC0,0x991E,0x0000, 0xFBC0,0x991F,0x0000, 0x18CD,0x0000,0x0000,
2238
0x18CE,0x0000,0x0000, 0x18CF,0x0000,0x0000, 0x18D0,0x0000,0x0000,
2239
0x18D1,0x0000,0x0000, 0x18D2,0x0000,0x0000, 0x18D3,0x0000,0x0000,
2240
0x18D4,0x0000,0x0000, 0x18D5,0x0000,0x0000, 0x18D6,0x0000,0x0000,
2241
0x18D7,0x0000,0x0000, 0x18D8,0x0000,0x0000, 0xFBC0,0x992C,0x0000,
2242
0xFBC0,0x992D,0x0000, 0xFBC0,0x992E,0x0000, 0xFBC0,0x992F,0x0000,
2243
0x18D9,0x0000,0x0000, 0x18DA,0x0000,0x0000, 0x18DB,0x0000,0x0000,
2244
0x18DC,0x0000,0x0000, 0x18DD,0x0000,0x0000, 0x18DE,0x0000,0x0000,
2245
0x18DF,0x0000,0x0000, 0x18E0,0x0000,0x0000, 0x18E1,0x0000,0x0000,
2246
0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,
2247
0xFBC0,0x993C,0x0000, 0xFBC0,0x993D,0x0000, 0xFBC0,0x993E,0x0000,
2248
0xFBC0,0x993F,0x0000, 0x030D,0x0000,0x0000, 0xFBC0,0x9941,0x0000,
2249
0xFBC0,0x9942,0x0000, 0xFBC0,0x9943,0x0000, 0x0254,0x0000,0x0000,
2250
0x025B,0x0000,0x0000, 0x0E29,0x0000,0x0000, 0x0E2A,0x0000,0x0000,
2251
0x0E2B,0x0000,0x0000, 0x0E2C,0x0000,0x0000, 0x0E2D,0x0000,0x0000,
2252
0x0E2E,0x0000,0x0000, 0x0E2F,0x0000,0x0000, 0x0E30,0x0000,0x0000,
2253
0x0E31,0x0000,0x0000, 0x0E32,0x0000,0x0000, 0x19B4,0x0000,0x0000,
2254
0x19B5,0x0000,0x0000, 0x19B6,0x0000,0x0000, 0x19B7,0x0000,0x0000,
2255
0x19B8,0x0000,0x0000, 0x19B9,0x0000,0x0000, 0x19BA,0x0000,0x0000,
2256
0x19BB,0x0000,0x0000, 0x19BC,0x0000,0x0000, 0x19BD,0x0000,0x0000,
2257
0x19BE,0x0000,0x0000, 0x19BF,0x0000,0x0000, 0x19C0,0x0000,0x0000,
2258
0x19C1,0x0000,0x0000, 0x19C2,0x0000,0x0000, 0x19C3,0x0000,0x0000,
2259
0x19C4,0x0000,0x0000, 0x19C5,0x0000,0x0000, 0x19C6,0x0000,0x0000,
2260
0x19C7,0x0000,0x0000, 0x19C8,0x0000,0x0000, 0x19C9,0x0000,0x0000,
2261
0x19CA,0x0000,0x0000, 0x19CB,0x0000,0x0000, 0x19CC,0x0000,0x0000,
2262
0x19CD,0x0000,0x0000, 0x19CE,0x0000,0x0000, 0x19CF,0x0000,0x0000,
2263
0x19D0,0x0000,0x0000, 0x19D1,0x0000,0x0000, 0xFBC0,0x996E,0x0000,
2264
0xFBC0,0x996F,0x0000, 0x19D2,0x0000,0x0000, 0x19D3,0x0000,0x0000,
2265
0x19D4,0x0000,0x0000, 0x19D5,0x0000,0x0000, 0x19D6,0x0000,0x0000,
2266
0xFBC0,0x9975,0x0000, 0xFBC0,0x9976,0x0000, 0xFBC0,0x9977,0x0000,
2267
0xFBC0,0x9978,0x0000, 0xFBC0,0x9979,0x0000, 0xFBC0,0x997A,0x0000,
2268
0xFBC0,0x997B,0x0000, 0xFBC0,0x997C,0x0000, 0xFBC0,0x997D,0x0000,
2269
0xFBC0,0x997E,0x0000, 0xFBC0,0x997F,0x0000, 0xFBC0,0x9980,0x0000,
2270
0xFBC0,0x9981,0x0000, 0xFBC0,0x9982,0x0000, 0xFBC0,0x9983,0x0000,
2271
0xFBC0,0x9984,0x0000, 0xFBC0,0x9985,0x0000, 0xFBC0,0x9986,0x0000,
2272
0xFBC0,0x9987,0x0000, 0xFBC0,0x9988,0x0000, 0xFBC0,0x9989,0x0000,
2273
0xFBC0,0x998A,0x0000, 0xFBC0,0x998B,0x0000, 0xFBC0,0x998C,0x0000,
2274
0xFBC0,0x998D,0x0000, 0xFBC0,0x998E,0x0000, 0xFBC0,0x998F,0x0000,
2275
0xFBC0,0x9990,0x0000, 0xFBC0,0x9991,0x0000, 0xFBC0,0x9992,0x0000,
2276
0xFBC0,0x9993,0x0000, 0xFBC0,0x9994,0x0000, 0xFBC0,0x9995,0x0000,
2277
0xFBC0,0x9996,0x0000, 0xFBC0,0x9997,0x0000, 0xFBC0,0x9998,0x0000,
2278
0xFBC0,0x9999,0x0000, 0xFBC0,0x999A,0x0000, 0xFBC0,0x999B,0x0000,
2279
0xFBC0,0x999C,0x0000, 0xFBC0,0x999D,0x0000, 0xFBC0,0x999E,0x0000,
2280
0xFBC0,0x999F,0x0000, 0xFBC0,0x99A0,0x0000, 0xFBC0,0x99A1,0x0000,
2281
0xFBC0,0x99A2,0x0000, 0xFBC0,0x99A3,0x0000, 0xFBC0,0x99A4,0x0000,
2282
0xFBC0,0x99A5,0x0000, 0xFBC0,0x99A6,0x0000, 0xFBC0,0x99A7,0x0000,
2283
0xFBC0,0x99A8,0x0000, 0xFBC0,0x99A9,0x0000, 0xFBC0,0x99AA,0x0000,
2284
0xFBC0,0x99AB,0x0000, 0xFBC0,0x99AC,0x0000, 0xFBC0,0x99AD,0x0000,
2285
0xFBC0,0x99AE,0x0000, 0xFBC0,0x99AF,0x0000, 0xFBC0,0x99B0,0x0000,
2286
0xFBC0,0x99B1,0x0000, 0xFBC0,0x99B2,0x0000, 0xFBC0,0x99B3,0x0000,
2287
0xFBC0,0x99B4,0x0000, 0xFBC0,0x99B5,0x0000, 0xFBC0,0x99B6,0x0000,
2288
0xFBC0,0x99B7,0x0000, 0xFBC0,0x99B8,0x0000, 0xFBC0,0x99B9,0x0000,
2289
0xFBC0,0x99BA,0x0000, 0xFBC0,0x99BB,0x0000, 0xFBC0,0x99BC,0x0000,
2290
0xFBC0,0x99BD,0x0000, 0xFBC0,0x99BE,0x0000, 0xFBC0,0x99BF,0x0000,
2291
0xFBC0,0x99C0,0x0000, 0xFBC0,0x99C1,0x0000, 0xFBC0,0x99C2,0x0000,
2292
0xFBC0,0x99C3,0x0000, 0xFBC0,0x99C4,0x0000, 0xFBC0,0x99C5,0x0000,
2293
0xFBC0,0x99C6,0x0000, 0xFBC0,0x99C7,0x0000, 0xFBC0,0x99C8,0x0000,
2294
0xFBC0,0x99C9,0x0000, 0xFBC0,0x99CA,0x0000, 0xFBC0,0x99CB,0x0000,
2295
0xFBC0,0x99CC,0x0000, 0xFBC0,0x99CD,0x0000, 0xFBC0,0x99CE,0x0000,
2296
0xFBC0,0x99CF,0x0000, 0xFBC0,0x99D0,0x0000, 0xFBC0,0x99D1,0x0000,
2297
0xFBC0,0x99D2,0x0000, 0xFBC0,0x99D3,0x0000, 0xFBC0,0x99D4,0x0000,
2298
0xFBC0,0x99D5,0x0000, 0xFBC0,0x99D6,0x0000, 0xFBC0,0x99D7,0x0000,
2299
0xFBC0,0x99D8,0x0000, 0xFBC0,0x99D9,0x0000, 0xFBC0,0x99DA,0x0000,
2300
0xFBC0,0x99DB,0x0000, 0xFBC0,0x99DC,0x0000, 0xFBC0,0x99DD,0x0000,
2301
0xFBC0,0x99DE,0x0000, 0xFBC0,0x99DF,0x0000, 0x037B,0x0000,0x0000,
2302
0x037C,0x0000,0x0000, 0x037D,0x0000,0x0000, 0x037E,0x0000,0x0000,
2303
0x037F,0x0000,0x0000, 0x0380,0x0000,0x0000, 0x0381,0x0000,0x0000,
2304
0x0382,0x0000,0x0000, 0x0383,0x0000,0x0000, 0x0384,0x0000,0x0000,
2305
0x0385,0x0000,0x0000, 0x0386,0x0000,0x0000, 0x0387,0x0000,0x0000,
2306
0x0388,0x0000,0x0000, 0x0389,0x0000,0x0000, 0x038A,0x0000,0x0000,
2307
0x038B,0x0000,0x0000, 0x038C,0x0000,0x0000, 0x038D,0x0000,0x0000,
2308
0x038E,0x0000,0x0000, 0x038F,0x0000,0x0000, 0x0390,0x0000,0x0000,
2309
0x0391,0x0000,0x0000, 0x0392,0x0000,0x0000, 0x0393,0x0000,0x0000,
2310
0x0394,0x0000,0x0000, 0x0395,0x0000,0x0000, 0x0396,0x0000,0x0000,
2311
0x0397,0x0000,0x0000, 0x0398,0x0000,0x0000, 0x0399,0x0000,0x0000,
2312
0x039A,0x0000,0x0000 };
2313
206 by Brian Aker
Removed final uint dead types.
2314
uint16_t page01Ddata[]= { /* 1D00 (3 weights per char) */
1 by brian
clean slate
2315
0x0E37,0x0000,0x0000, 0x0E3C,0x0000,0x0000, 0x0E3D,0x0000,0x0000,
2316
0x0E57,0x0000,0x0000, 0x0E64,0x0000,0x0000, 0x0E71,0x0000,0x0000,
2317
0x0E8A,0x0000,0x0000, 0x0E8F,0x0000,0x0000, 0x0EA8,0x0000,0x0000,
2318
0x0F07,0x0000,0x0000, 0x0F14,0x0000,0x0000, 0x0F25,0x0000,0x0000,
2319
0x0F3A,0x0000,0x0000, 0x0F5F,0x0000,0x0000, 0x0F6D,0x0000,0x0000,
2320
0x0F86,0x0000,0x0000, 0x0F96,0x0000,0x0000, 0x0F87,0x0000,0x0000,
2321
0x0F97,0x0000,0x0000, 0x0F91,0x0000,0x0000, 0x0F8C,0x0000,0x0000,
2322
0x0FA6,0x0000,0x0000, 0x0F98,0x0000,0x0000, 0x0F99,0x0000,0x0000,
2323
0x0FAB,0x0000,0x0000, 0x0FC8,0x0000,0x0000, 0x0FCD,0x0000,0x0000,
2324
0x1006,0x0000,0x0000, 0x1023,0x0000,0x0000, 0x1024,0x0000,0x0000,
2325
0x1025,0x0000,0x0000, 0x103B,0x0000,0x0000, 0x1048,0x0000,0x0000,
2326
0x1055,0x0000,0x0000, 0x106E,0x0000,0x0000, 0x1083,0x0000,0x0000,
2327
0x10BA,0x0000,0x0000, 0x10BB,0x0000,0x0000, 0x10EB,0x0000,0x0000,
2328
0x10F7,0x0000,0x0000, 0x10FD,0x0000,0x0000, 0x1101,0x0000,0x0000,
2329
0x1108,0x0000,0x0000, 0x11B4,0x0000,0x0000, 0x0E33,0x0000,0x0000,
2330
0x0E38,0x0000,0x0000, 0x0E4A,0x0000,0x0000, 0x0E56,0x0000,0x0000,
2331
0x0E6D,0x0000,0x0000, 0x0E8B,0x0000,0x0000, 0x0E90,0x0000,0x0000,
2332
0x0EC1,0x0000,0x0000, 0x0EE1,0x0000,0x0000, 0x0EFB,0x0000,0x0000,
2333
0x0F10,0x0000,0x0000, 0x0F21,0x0000,0x0000, 0x0F2E,0x0000,0x0000,
2334
0x0F5B,0x0000,0x0000, 0x0F64,0x0000,0x0000, 0x0F6C,0x0000,0x0000,
2335
0x0F82,0x0000,0x0000, 0x0FA2,0x0000,0x0000, 0x0FA7,0x0000,0x0000,
2336
0x0FC0,0x0000,0x0000, 0x1002,0x0000,0x0000, 0x101F,0x0000,0x0000,
2337
0x1051,0x0000,0x0000, 0x0E33,0x0000,0x0000, 0x0E3E,0x0000,0x0000,
2338
0x0E42,0x0000,0x0000, 0x0E3D,0x0000,0x0000, 0x0E4A,0x0000,0x0000,
2339
0x0E6D,0x0000,0x0000, 0x0E8B,0x0000,0x0000, 0x0E94,0x0000,0x0000,
2340
0x0E98,0x0000,0x0000, 0x0EA8,0x0000,0x0000, 0x0EC1,0x0000,0x0000,
2341
0x0F07,0x0000,0x0000, 0x0F21,0x0000,0x0000, 0x0F5B,0x0000,0x0000,
2342
0x0F7E,0x0000,0x0000, 0x0F82,0x0000,0x0000, 0x0F92,0x0000,0x0000,
2343
0x0F98,0x0000,0x0000, 0x0F99,0x0000,0x0000, 0x0FA7,0x0000,0x0000,
2344
0x1002,0x0000,0x0000, 0x101F,0x0000,0x0000, 0x1024,0x0000,0x0000,
2345
0x1037,0x0000,0x0000, 0x1044,0x0000,0x0000, 0x10BB,0x0000,0x0000,
2346
0x10E9,0x0000,0x0000, 0x10EA,0x0000,0x0000, 0x10EC,0x0000,0x0000,
2347
0x1105,0x0000,0x0000, 0x1106,0x0000,0x0000, 0x0EFB,0x0000,0x0000,
2348
0x0FC0,0x0000,0x0000, 0x101F,0x0000,0x0000, 0x1044,0x0000,0x0000,
2349
0x10E9,0x0000,0x0000, 0x10EA,0x0000,0x0000, 0x1100,0x0000,0x0000,
2350
0x1105,0x0000,0x0000, 0x1106,0x0000,0x0000, 0x1026,0x0000,0x0000,
2351
0xFBC0,0x9D6C,0x0000, 0xFBC0,0x9D6D,0x0000, 0xFBC0,0x9D6E,0x0000,
2352
0xFBC0,0x9D6F,0x0000, 0xFBC0,0x9D70,0x0000, 0xFBC0,0x9D71,0x0000,
2353
0xFBC0,0x9D72,0x0000, 0xFBC0,0x9D73,0x0000, 0xFBC0,0x9D74,0x0000,
2354
0xFBC0,0x9D75,0x0000, 0xFBC0,0x9D76,0x0000, 0xFBC0,0x9D77,0x0000,
2355
0xFBC0,0x9D78,0x0000, 0xFBC0,0x9D79,0x0000, 0xFBC0,0x9D7A,0x0000,
2356
0xFBC0,0x9D7B,0x0000, 0xFBC0,0x9D7C,0x0000, 0xFBC0,0x9D7D,0x0000,
2357
0xFBC0,0x9D7E,0x0000, 0xFBC0,0x9D7F,0x0000, 0xFBC0,0x9D80,0x0000,
2358
0xFBC0,0x9D81,0x0000, 0xFBC0,0x9D82,0x0000, 0xFBC0,0x9D83,0x0000,
2359
0xFBC0,0x9D84,0x0000, 0xFBC0,0x9D85,0x0000, 0xFBC0,0x9D86,0x0000,
2360
0xFBC0,0x9D87,0x0000, 0xFBC0,0x9D88,0x0000, 0xFBC0,0x9D89,0x0000,
2361
0xFBC0,0x9D8A,0x0000, 0xFBC0,0x9D8B,0x0000, 0xFBC0,0x9D8C,0x0000,
2362
0xFBC0,0x9D8D,0x0000, 0xFBC0,0x9D8E,0x0000, 0xFBC0,0x9D8F,0x0000,
2363
0xFBC0,0x9D90,0x0000, 0xFBC0,0x9D91,0x0000, 0xFBC0,0x9D92,0x0000,
2364
0xFBC0,0x9D93,0x0000, 0xFBC0,0x9D94,0x0000, 0xFBC0,0x9D95,0x0000,
2365
0xFBC0,0x9D96,0x0000, 0xFBC0,0x9D97,0x0000, 0xFBC0,0x9D98,0x0000,
2366
0xFBC0,0x9D99,0x0000, 0xFBC0,0x9D9A,0x0000, 0xFBC0,0x9D9B,0x0000,
2367
0xFBC0,0x9D9C,0x0000, 0xFBC0,0x9D9D,0x0000, 0xFBC0,0x9D9E,0x0000,
2368
0xFBC0,0x9D9F,0x0000, 0xFBC0,0x9DA0,0x0000, 0xFBC0,0x9DA1,0x0000,
2369
0xFBC0,0x9DA2,0x0000, 0xFBC0,0x9DA3,0x0000, 0xFBC0,0x9DA4,0x0000,
2370
0xFBC0,0x9DA5,0x0000, 0xFBC0,0x9DA6,0x0000, 0xFBC0,0x9DA7,0x0000,
2371
0xFBC0,0x9DA8,0x0000, 0xFBC0,0x9DA9,0x0000, 0xFBC0,0x9DAA,0x0000,
2372
0xFBC0,0x9DAB,0x0000, 0xFBC0,0x9DAC,0x0000, 0xFBC0,0x9DAD,0x0000,
2373
0xFBC0,0x9DAE,0x0000, 0xFBC0,0x9DAF,0x0000, 0xFBC0,0x9DB0,0x0000,
2374
0xFBC0,0x9DB1,0x0000, 0xFBC0,0x9DB2,0x0000, 0xFBC0,0x9DB3,0x0000,
2375
0xFBC0,0x9DB4,0x0000, 0xFBC0,0x9DB5,0x0000, 0xFBC0,0x9DB6,0x0000,
2376
0xFBC0,0x9DB7,0x0000, 0xFBC0,0x9DB8,0x0000, 0xFBC0,0x9DB9,0x0000,
2377
0xFBC0,0x9DBA,0x0000, 0xFBC0,0x9DBB,0x0000, 0xFBC0,0x9DBC,0x0000,
2378
0xFBC0,0x9DBD,0x0000, 0xFBC0,0x9DBE,0x0000, 0xFBC0,0x9DBF,0x0000,
2379
0xFBC0,0x9DC0,0x0000, 0xFBC0,0x9DC1,0x0000, 0xFBC0,0x9DC2,0x0000,
2380
0xFBC0,0x9DC3,0x0000, 0xFBC0,0x9DC4,0x0000, 0xFBC0,0x9DC5,0x0000,
2381
0xFBC0,0x9DC6,0x0000, 0xFBC0,0x9DC7,0x0000, 0xFBC0,0x9DC8,0x0000,
2382
0xFBC0,0x9DC9,0x0000, 0xFBC0,0x9DCA,0x0000, 0xFBC0,0x9DCB,0x0000,
2383
0xFBC0,0x9DCC,0x0000, 0xFBC0,0x9DCD,0x0000, 0xFBC0,0x9DCE,0x0000,
2384
0xFBC0,0x9DCF,0x0000, 0xFBC0,0x9DD0,0x0000, 0xFBC0,0x9DD1,0x0000,
2385
0xFBC0,0x9DD2,0x0000, 0xFBC0,0x9DD3,0x0000, 0xFBC0,0x9DD4,0x0000,
2386
0xFBC0,0x9DD5,0x0000, 0xFBC0,0x9DD6,0x0000, 0xFBC0,0x9DD7,0x0000,
2387
0xFBC0,0x9DD8,0x0000, 0xFBC0,0x9DD9,0x0000, 0xFBC0,0x9DDA,0x0000,
2388
0xFBC0,0x9DDB,0x0000, 0xFBC0,0x9DDC,0x0000, 0xFBC0,0x9DDD,0x0000,
2389
0xFBC0,0x9DDE,0x0000, 0xFBC0,0x9DDF,0x0000, 0xFBC0,0x9DE0,0x0000,
2390
0xFBC0,0x9DE1,0x0000, 0xFBC0,0x9DE2,0x0000, 0xFBC0,0x9DE3,0x0000,
2391
0xFBC0,0x9DE4,0x0000, 0xFBC0,0x9DE5,0x0000, 0xFBC0,0x9DE6,0x0000,
2392
0xFBC0,0x9DE7,0x0000, 0xFBC0,0x9DE8,0x0000, 0xFBC0,0x9DE9,0x0000,
2393
0xFBC0,0x9DEA,0x0000, 0xFBC0,0x9DEB,0x0000, 0xFBC0,0x9DEC,0x0000,
2394
0xFBC0,0x9DED,0x0000, 0xFBC0,0x9DEE,0x0000, 0xFBC0,0x9DEF,0x0000,
2395
0xFBC0,0x9DF0,0x0000, 0xFBC0,0x9DF1,0x0000, 0xFBC0,0x9DF2,0x0000,
2396
0xFBC0,0x9DF3,0x0000, 0xFBC0,0x9DF4,0x0000, 0xFBC0,0x9DF5,0x0000,
2397
0xFBC0,0x9DF6,0x0000, 0xFBC0,0x9DF7,0x0000, 0xFBC0,0x9DF8,0x0000,
2398
0xFBC0,0x9DF9,0x0000, 0xFBC0,0x9DFA,0x0000, 0xFBC0,0x9DFB,0x0000,
2399
0xFBC0,0x9DFC,0x0000, 0xFBC0,0x9DFD,0x0000, 0xFBC0,0x9DFE,0x0000,
2400
0xFBC0,0x9DFF,0x0000 };
2401
206 by Brian Aker
Removed final uint dead types.
2402
uint16_t page01Edata[]= { /* 1E00 (3 weights per char) */
1 by brian
clean slate
2403
0x0E33,0x0000,0x0000, 0x0E33,0x0000,0x0000, 0x0E4A,0x0000,0x0000,
2404
0x0E4A,0x0000,0x0000, 0x0E4A,0x0000,0x0000, 0x0E4A,0x0000,0x0000,
2405
0x0E4A,0x0000,0x0000, 0x0E4A,0x0000,0x0000, 0x0E60,0x0000,0x0000,
2406
0x0E60,0x0000,0x0000, 0x0E6D,0x0000,0x0000, 0x0E6D,0x0000,0x0000,
2407
0x0E6D,0x0000,0x0000, 0x0E6D,0x0000,0x0000, 0x0E6D,0x0000,0x0000,
2408
0x0E6D,0x0000,0x0000, 0x0E6D,0x0000,0x0000, 0x0E6D,0x0000,0x0000,
2409
0x0E6D,0x0000,0x0000, 0x0E6D,0x0000,0x0000, 0x0E8B,0x0000,0x0000,
2410
0x0E8B,0x0000,0x0000, 0x0E8B,0x0000,0x0000, 0x0E8B,0x0000,0x0000,
2411
0x0E8B,0x0000,0x0000, 0x0E8B,0x0000,0x0000, 0x0E8B,0x0000,0x0000,
2412
0x0E8B,0x0000,0x0000, 0x0E8B,0x0000,0x0000, 0x0E8B,0x0000,0x0000,
2413
0x0EB9,0x0000,0x0000, 0x0EB9,0x0000,0x0000, 0x0EC1,0x0000,0x0000,
2414
0x0EC1,0x0000,0x0000, 0x0EE1,0x0000,0x0000, 0x0EE1,0x0000,0x0000,
2415
0x0EE1,0x0000,0x0000, 0x0EE1,0x0000,0x0000, 0x0EE1,0x0000,0x0000,
2416
0x0EE1,0x0000,0x0000, 0x0EE1,0x0000,0x0000, 0x0EE1,0x0000,0x0000,
2417
0x0EE1,0x0000,0x0000, 0x0EE1,0x0000,0x0000, 0x0EFB,0x0000,0x0000,
2418
0x0EFB,0x0000,0x0000, 0x0EFB,0x0000,0x0000, 0x0EFB,0x0000,0x0000,
2419
0x0F21,0x0000,0x0000, 0x0F21,0x0000,0x0000, 0x0F21,0x0000,0x0000,
2420
0x0F21,0x0000,0x0000, 0x0F21,0x0000,0x0000, 0x0F21,0x0000,0x0000,
2421
0x0F2E,0x0000,0x0000, 0x0F2E,0x0000,0x0000, 0x0F2E,0x0000,0x0000,
2422
0x0F2E,0x0000,0x0000, 0x0F2E,0x0000,0x0000, 0x0F2E,0x0000,0x0000,
2423
0x0F2E,0x0000,0x0000, 0x0F2E,0x0000,0x0000, 0x0F5B,0x0000,0x0000,
2424
0x0F5B,0x0000,0x0000, 0x0F5B,0x0000,0x0000, 0x0F5B,0x0000,0x0000,
2425
0x0F5B,0x0000,0x0000, 0x0F5B,0x0000,0x0000, 0x0F64,0x0000,0x0000,
2426
0x0F64,0x0000,0x0000, 0x0F64,0x0000,0x0000, 0x0F64,0x0000,0x0000,
2427
0x0F64,0x0000,0x0000, 0x0F64,0x0000,0x0000, 0x0F64,0x0000,0x0000,
2428
0x0F64,0x0000,0x0000, 0x0F82,0x0000,0x0000, 0x0F82,0x0000,0x0000,
2429
0x0F82,0x0000,0x0000, 0x0F82,0x0000,0x0000, 0x0F82,0x0000,0x0000,
2430
0x0F82,0x0000,0x0000, 0x0F82,0x0000,0x0000, 0x0F82,0x0000,0x0000,
2431
0x0FA7,0x0000,0x0000, 0x0FA7,0x0000,0x0000, 0x0FA7,0x0000,0x0000,
2432
0x0FA7,0x0000,0x0000, 0x0FC0,0x0000,0x0000, 0x0FC0,0x0000,0x0000,
2433
0x0FC0,0x0000,0x0000, 0x0FC0,0x0000,0x0000, 0x0FC0,0x0000,0x0000,
2434
0x0FC0,0x0000,0x0000, 0x0FC0,0x0000,0x0000, 0x0FC0,0x0000,0x0000,
2435
0x0FEA,0x0000,0x0000, 0x0FEA,0x0000,0x0000, 0x0FEA,0x0000,0x0000,
2436
0x0FEA,0x0000,0x0000, 0x0FEA,0x0000,0x0000, 0x0FEA,0x0000,0x0000,
2437
0x0FEA,0x0000,0x0000, 0x0FEA,0x0000,0x0000, 0x0FEA,0x0000,0x0000,
2438
0x0FEA,0x0000,0x0000, 0x1002,0x0000,0x0000, 0x1002,0x0000,0x0000,
2439
0x1002,0x0000,0x0000, 0x1002,0x0000,0x0000, 0x1002,0x0000,0x0000,
2440
0x1002,0x0000,0x0000, 0x1002,0x0000,0x0000, 0x1002,0x0000,0x0000,
2441
0x101F,0x0000,0x0000, 0x101F,0x0000,0x0000, 0x101F,0x0000,0x0000,
2442
0x101F,0x0000,0x0000, 0x101F,0x0000,0x0000, 0x101F,0x0000,0x0000,
2443
0x101F,0x0000,0x0000, 0x101F,0x0000,0x0000, 0x101F,0x0000,0x0000,
2444
0x101F,0x0000,0x0000, 0x1044,0x0000,0x0000, 0x1044,0x0000,0x0000,
2445
0x1044,0x0000,0x0000, 0x1044,0x0000,0x0000, 0x1051,0x0000,0x0000,
2446
0x1051,0x0000,0x0000, 0x1051,0x0000,0x0000, 0x1051,0x0000,0x0000,
2447
0x1051,0x0000,0x0000, 0x1051,0x0000,0x0000, 0x1051,0x0000,0x0000,
2448
0x1051,0x0000,0x0000, 0x1051,0x0000,0x0000, 0x1051,0x0000,0x0000,
2449
0x105A,0x0000,0x0000, 0x105A,0x0000,0x0000, 0x105A,0x0000,0x0000,
2450
0x105A,0x0000,0x0000, 0x105E,0x0000,0x0000, 0x105E,0x0000,0x0000,
2451
0x106A,0x0000,0x0000, 0x106A,0x0000,0x0000, 0x106A,0x0000,0x0000,
2452
0x106A,0x0000,0x0000, 0x106A,0x0000,0x0000, 0x106A,0x0000,0x0000,
2453
0x0EE1,0x0000,0x0000, 0x1002,0x0000,0x0000, 0x1051,0x0000,0x0000,
2454
0x105E,0x0000,0x0000, 0x0E33,0x10B3,0x0000, 0x0FEA,0x0000,0x0000,
2455
0xFBC0,0x9E9C,0x0000, 0xFBC0,0x9E9D,0x0000, 0xFBC0,0x9E9E,0x0000,
2456
0xFBC0,0x9E9F,0x0000, 0x0E33,0x0000,0x0000, 0x0E33,0x0000,0x0000,
2457
0x0E33,0x0000,0x0000, 0x0E33,0x0000,0x0000, 0x0E33,0x0000,0x0000,
2458
0x0E33,0x0000,0x0000, 0x0E33,0x0000,0x0000, 0x0E33,0x0000,0x0000,
2459
0x0E33,0x0000,0x0000, 0x0E33,0x0000,0x0000, 0x0E33,0x0000,0x0000,
2460
0x0E33,0x0000,0x0000, 0x0E33,0x0000,0x0000, 0x0E33,0x0000,0x0000,
2461
0x0E33,0x0000,0x0000, 0x0E33,0x0000,0x0000, 0x0E33,0x0000,0x0000,
2462
0x0E33,0x0000,0x0000, 0x0E33,0x0000,0x0000, 0x0E33,0x0000,0x0000,
2463
0x0E33,0x0000,0x0000, 0x0E33,0x0000,0x0000, 0x0E33,0x0000,0x0000,
2464
0x0E33,0x0000,0x0000, 0x0E8B,0x0000,0x0000, 0x0E8B,0x0000,0x0000,
2465
0x0E8B,0x0000,0x0000, 0x0E8B,0x0000,0x0000, 0x0E8B,0x0000,0x0000,
2466
0x0E8B,0x0000,0x0000, 0x0E8B,0x0000,0x0000, 0x0E8B,0x0000,0x0000,
2467
0x0E8B,0x0000,0x0000, 0x0E8B,0x0000,0x0000, 0x0E8B,0x0000,0x0000,
2468
0x0E8B,0x0000,0x0000, 0x0E8B,0x0000,0x0000, 0x0E8B,0x0000,0x0000,
2469
0x0E8B,0x0000,0x0000, 0x0E8B,0x0000,0x0000, 0x0EFB,0x0000,0x0000,
2470
0x0EFB,0x0000,0x0000, 0x0EFB,0x0000,0x0000, 0x0EFB,0x0000,0x0000,
2471
0x0F82,0x0000,0x0000, 0x0F82,0x0000,0x0000, 0x0F82,0x0000,0x0000,
2472
0x0F82,0x0000,0x0000, 0x0F82,0x0000,0x0000, 0x0F82,0x0000,0x0000,
2473
0x0F82,0x0000,0x0000, 0x0F82,0x0000,0x0000, 0x0F82,0x0000,0x0000,
2474
0x0F82,0x0000,0x0000, 0x0F82,0x0000,0x0000, 0x0F82,0x0000,0x0000,
2475
0x0F82,0x0000,0x0000, 0x0F82,0x0000,0x0000, 0x0F82,0x0000,0x0000,
2476
0x0F82,0x0000,0x0000, 0x0F82,0x0000,0x0000, 0x0F82,0x0000,0x0000,
2477
0x0F82,0x0000,0x0000, 0x0F82,0x0000,0x0000, 0x0F82,0x0000,0x0000,
2478
0x0F82,0x0000,0x0000, 0x0F82,0x0000,0x0000, 0x0F82,0x0000,0x0000,
2479
0x101F,0x0000,0x0000, 0x101F,0x0000,0x0000, 0x101F,0x0000,0x0000,
2480
0x101F,0x0000,0x0000, 0x101F,0x0000,0x0000, 0x101F,0x0000,0x0000,
2481
0x101F,0x0000,0x0000, 0x101F,0x0000,0x0000, 0x101F,0x0000,0x0000,
2482
0x101F,0x0000,0x0000, 0x101F,0x0000,0x0000, 0x101F,0x0000,0x0000,
2483
0x101F,0x0000,0x0000, 0x101F,0x0000,0x0000, 0x105E,0x0000,0x0000,
2484
0x105E,0x0000,0x0000, 0x105E,0x0000,0x0000, 0x105E,0x0000,0x0000,
2485
0x105E,0x0000,0x0000, 0x105E,0x0000,0x0000, 0x105E,0x0000,0x0000,
2486
0x105E,0x0000,0x0000, 0xFBC0,0x9EFA,0x0000, 0xFBC0,0x9EFB,0x0000,
2487
0xFBC0,0x9EFC,0x0000, 0xFBC0,0x9EFD,0x0000, 0xFBC0,0x9EFE,0x0000,
2488
0xFBC0,0x9EFF,0x0000 };
2489
206 by Brian Aker
Removed final uint dead types.
2490
uint16_t page01Fdata[]= { /* 1F00 (3 weights per char) */
1 by brian
clean slate
2491
0x10E8,0x0000,0x0000, 0x10E8,0x0000,0x0000, 0x10E8,0x0000,0x0000,
2492
0x10E8,0x0000,0x0000, 0x10E8,0x0000,0x0000, 0x10E8,0x0000,0x0000,
2493
0x10E8,0x0000,0x0000, 0x10E8,0x0000,0x0000, 0x10E8,0x0000,0x0000,
2494
0x10E8,0x0000,0x0000, 0x10E8,0x0000,0x0000, 0x10E8,0x0000,0x0000,
2495
0x10E8,0x0000,0x0000, 0x10E8,0x0000,0x0000, 0x10E8,0x0000,0x0000,
2496
0x10E8,0x0000,0x0000, 0x10ED,0x0000,0x0000, 0x10ED,0x0000,0x0000,
2497
0x10ED,0x0000,0x0000, 0x10ED,0x0000,0x0000, 0x10ED,0x0000,0x0000,
2498
0x10ED,0x0000,0x0000, 0xFBC0,0x9F16,0x0000, 0xFBC0,0x9F17,0x0000,
2499
0x10ED,0x0000,0x0000, 0x10ED,0x0000,0x0000, 0x10ED,0x0000,0x0000,
2500
0x10ED,0x0000,0x0000, 0x10ED,0x0000,0x0000, 0x10ED,0x0000,0x0000,
2501
0xFBC0,0x9F1E,0x0000, 0xFBC0,0x9F1F,0x0000, 0x10F1,0x0000,0x0000,
2502
0x10F1,0x0000,0x0000, 0x10F1,0x0000,0x0000, 0x10F1,0x0000,0x0000,
2503
0x10F1,0x0000,0x0000, 0x10F1,0x0000,0x0000, 0x10F1,0x0000,0x0000,
2504
0x10F1,0x0000,0x0000, 0x10F1,0x0000,0x0000, 0x10F1,0x0000,0x0000,
2505
0x10F1,0x0000,0x0000, 0x10F1,0x0000,0x0000, 0x10F1,0x0000,0x0000,
2506
0x10F1,0x0000,0x0000, 0x10F1,0x0000,0x0000, 0x10F1,0x0000,0x0000,
2507
0x10F3,0x0000,0x0000, 0x10F3,0x0000,0x0000, 0x10F3,0x0000,0x0000,
2508
0x10F3,0x0000,0x0000, 0x10F3,0x0000,0x0000, 0x10F3,0x0000,0x0000,
2509
0x10F3,0x0000,0x0000, 0x10F3,0x0000,0x0000, 0x10F3,0x0000,0x0000,
2510
0x10F3,0x0000,0x0000, 0x10F3,0x0000,0x0000, 0x10F3,0x0000,0x0000,
2511
0x10F3,0x0000,0x0000, 0x10F3,0x0000,0x0000, 0x10F3,0x0000,0x0000,
2512
0x10F3,0x0000,0x0000, 0x10FB,0x0000,0x0000, 0x10FB,0x0000,0x0000,
2513
0x10FB,0x0000,0x0000, 0x10FB,0x0000,0x0000, 0x10FB,0x0000,0x0000,
2514
0x10FB,0x0000,0x0000, 0xFBC0,0x9F46,0x0000, 0xFBC0,0x9F47,0x0000,
2515
0x10FB,0x0000,0x0000, 0x10FB,0x0000,0x0000, 0x10FB,0x0000,0x0000,
2516
0x10FB,0x0000,0x0000, 0x10FB,0x0000,0x0000, 0x10FB,0x0000,0x0000,
2517
0xFBC0,0x9F4E,0x0000, 0xFBC0,0x9F4F,0x0000, 0x1104,0x0000,0x0000,
2518
0x1104,0x0000,0x0000, 0x1104,0x0000,0x0000, 0x1104,0x0000,0x0000,
2519
0x1104,0x0000,0x0000, 0x1104,0x0000,0x0000, 0x1104,0x0000,0x0000,
2520
0x1104,0x0000,0x0000, 0xFBC0,0x9F58,0x0000, 0x1104,0x0000,0x0000,
2521
0xFBC0,0x9F5A,0x0000, 0x1104,0x0000,0x0000, 0xFBC0,0x9F5C,0x0000,
2522
0x1104,0x0000,0x0000, 0xFBC0,0x9F5E,0x0000, 0x1104,0x0000,0x0000,
2523
0x1109,0x0000,0x0000, 0x1109,0x0000,0x0000, 0x1109,0x0000,0x0000,
2524
0x1109,0x0000,0x0000, 0x1109,0x0000,0x0000, 0x1109,0x0000,0x0000,
2525
0x1109,0x0000,0x0000, 0x1109,0x0000,0x0000, 0x1109,0x0000,0x0000,
2526
0x1109,0x0000,0x0000, 0x1109,0x0000,0x0000, 0x1109,0x0000,0x0000,
2527
0x1109,0x0000,0x0000, 0x1109,0x0000,0x0000, 0x1109,0x0000,0x0000,
2528
0x1109,0x0000,0x0000, 0x10E8,0x0000,0x0000, 0x10E8,0x0000,0x0000,
2529
0x10ED,0x0000,0x0000, 0x10ED,0x0000,0x0000, 0x10F1,0x0000,0x0000,
2530
0x10F1,0x0000,0x0000, 0x10F3,0x0000,0x0000, 0x10F3,0x0000,0x0000,
2531
0x10FB,0x0000,0x0000, 0x10FB,0x0000,0x0000, 0x1104,0x0000,0x0000,
2532
0x1104,0x0000,0x0000, 0x1109,0x0000,0x0000, 0x1109,0x0000,0x0000,
2533
0xFBC0,0x9F7E,0x0000, 0xFBC0,0x9F7F,0x0000, 0x10E8,0x0000,0x0000,
2534
0x10E8,0x0000,0x0000, 0x10E8,0x0000,0x0000, 0x10E8,0x0000,0x0000,
2535
0x10E8,0x0000,0x0000, 0x10E8,0x0000,0x0000, 0x10E8,0x0000,0x0000,
2536
0x10E8,0x0000,0x0000, 0x10E8,0x0000,0x0000, 0x10E8,0x0000,0x0000,
2537
0x10E8,0x0000,0x0000, 0x10E8,0x0000,0x0000, 0x10E8,0x0000,0x0000,
2538
0x10E8,0x0000,0x0000, 0x10E8,0x0000,0x0000, 0x10E8,0x0000,0x0000,
2539
0x10F1,0x0000,0x0000, 0x10F1,0x0000,0x0000, 0x10F1,0x0000,0x0000,
2540
0x10F1,0x0000,0x0000, 0x10F1,0x0000,0x0000, 0x10F1,0x0000,0x0000,
2541
0x10F1,0x0000,0x0000, 0x10F1,0x0000,0x0000, 0x10F1,0x0000,0x0000,
2542
0x10F1,0x0000,0x0000, 0x10F1,0x0000,0x0000, 0x10F1,0x0000,0x0000,
2543
0x10F1,0x0000,0x0000, 0x10F1,0x0000,0x0000, 0x10F1,0x0000,0x0000,
2544
0x10F1,0x0000,0x0000, 0x1109,0x0000,0x0000, 0x1109,0x0000,0x0000,
2545
0x1109,0x0000,0x0000, 0x1109,0x0000,0x0000, 0x1109,0x0000,0x0000,
2546
0x1109,0x0000,0x0000, 0x1109,0x0000,0x0000, 0x1109,0x0000,0x0000,
2547
0x1109,0x0000,0x0000, 0x1109,0x0000,0x0000, 0x1109,0x0000,0x0000,
2548
0x1109,0x0000,0x0000, 0x1109,0x0000,0x0000, 0x1109,0x0000,0x0000,
2549
0x1109,0x0000,0x0000, 0x1109,0x0000,0x0000, 0x10E8,0x0000,0x0000,
2550
0x10E8,0x0000,0x0000, 0x10E8,0x0000,0x0000, 0x10E8,0x0000,0x0000,
2551
0x10E8,0x0000,0x0000, 0xFBC0,0x9FB5,0x0000, 0x10E8,0x0000,0x0000,
2552
0x10E8,0x0000,0x0000, 0x10E8,0x0000,0x0000, 0x10E8,0x0000,0x0000,
2553
0x10E8,0x0000,0x0000, 0x10E8,0x0000,0x0000, 0x10E8,0x0000,0x0000,
2554
0x0217,0x0000,0x0000, 0x10F3,0x0000,0x0000, 0x0217,0x0000,0x0000,
2555
0x021D,0x0000,0x0000, 0x0214,0x0000,0x0000, 0x10F1,0x0000,0x0000,
2556
0x10F1,0x0000,0x0000, 0x10F1,0x0000,0x0000, 0xFBC0,0x9FC5,0x0000,
2557
0x10F1,0x0000,0x0000, 0x10F1,0x0000,0x0000, 0x10ED,0x0000,0x0000,
2558
0x10ED,0x0000,0x0000, 0x10F1,0x0000,0x0000, 0x10F1,0x0000,0x0000,
2559
0x10F1,0x0000,0x0000, 0x0217,0x0000,0x0000, 0x0217,0x0000,0x0000,
2560
0x0217,0x0000,0x0000, 0x10F3,0x0000,0x0000, 0x10F3,0x0000,0x0000,
2561
0x10F3,0x0000,0x0000, 0x10F3,0x0000,0x0000, 0xFBC0,0x9FD4,0x0000,
2562
0xFBC0,0x9FD5,0x0000, 0x10F3,0x0000,0x0000, 0x10F3,0x0000,0x0000,
2563
0x10F3,0x0000,0x0000, 0x10F3,0x0000,0x0000, 0x10F3,0x0000,0x0000,
2564
0x10F3,0x0000,0x0000, 0xFBC0,0x9FDC,0x0000, 0x0218,0x0000,0x0000,
2565
0x0218,0x0000,0x0000, 0x0218,0x0000,0x0000, 0x1104,0x0000,0x0000,
2566
0x1104,0x0000,0x0000, 0x1104,0x0000,0x0000, 0x1104,0x0000,0x0000,
2567
0x1100,0x0000,0x0000, 0x1100,0x0000,0x0000, 0x1104,0x0000,0x0000,
2568
0x1104,0x0000,0x0000, 0x1104,0x0000,0x0000, 0x1104,0x0000,0x0000,
2569
0x1104,0x0000,0x0000, 0x1104,0x0000,0x0000, 0x1100,0x0000,0x0000,
2570
0x0214,0x0000,0x0000, 0x0214,0x0000,0x0000, 0x020C,0x0000,0x0000,
2571
0xFBC0,0x9FF0,0x0000, 0xFBC0,0x9FF1,0x0000, 0x1109,0x0000,0x0000,
2572
0x1109,0x0000,0x0000, 0x1109,0x0000,0x0000, 0xFBC0,0x9FF5,0x0000,
2573
0x1109,0x0000,0x0000, 0x1109,0x0000,0x0000, 0x10FB,0x0000,0x0000,
2574
0x10FB,0x0000,0x0000, 0x1109,0x0000,0x0000, 0x1109,0x0000,0x0000,
2575
0x1109,0x0000,0x0000, 0x020D,0x0000,0x0000, 0x0218,0x0000,0x0000,
2576
0xFBC0,0x9FFF,0x0000 };
2577
206 by Brian Aker
Removed final uint dead types.
2578
uint16_t page020data[]= { /* 2000 (5 weights per char) */
1 by brian
clean slate
2579
0x0209,0x0000,0x0000,0x0000,0x0000,
2580
0x0209,0x0000,0x0000,0x0000,0x0000,
2581
0x0209,0x0000,0x0000,0x0000,0x0000,
2582
0x0209,0x0000,0x0000,0x0000,0x0000,
2583
0x0209,0x0000,0x0000,0x0000,0x0000,
2584
0x0209,0x0000,0x0000,0x0000,0x0000,
2585
0x0209,0x0000,0x0000,0x0000,0x0000,
2586
0x0209,0x0000,0x0000,0x0000,0x0000,
2587
0x0209,0x0000,0x0000,0x0000,0x0000,
2588
0x0209,0x0000,0x0000,0x0000,0x0000,
2589
0x0209,0x0000,0x0000,0x0000,0x0000,
2590
0x0000,0x0000,0x0000,0x0000,0x0000,
2591
0x0000,0x0000,0x0000,0x0000,0x0000,
2592
0x0000,0x0000,0x0000,0x0000,0x0000,
2593
0x0000,0x0000,0x0000,0x0000,0x0000,
2594
0x0000,0x0000,0x0000,0x0000,0x0000,
2595
0x0225,0x0000,0x0000,0x0000,0x0000,
2596
0x0225,0x0000,0x0000,0x0000,0x0000,
2597
0x0226,0x0000,0x0000,0x0000,0x0000,
2598
0x0227,0x0000,0x0000,0x0000,0x0000,
2599
0x0228,0x0000,0x0000,0x0000,0x0000,
2600
0x0229,0x0000,0x0000,0x0000,0x0000,
2601
0x0432,0x0000,0x0000,0x0000,0x0000,
2602
0x021C,0x0000,0x0000,0x0000,0x0000,
2603
0x0278,0x0000,0x0000,0x0000,0x0000,
2604
0x0279,0x0000,0x0000,0x0000,0x0000,
2605
0x027A,0x0000,0x0000,0x0000,0x0000,
2606
0x027B,0x0000,0x0000,0x0000,0x0000,
2607
0x027F,0x0000,0x0000,0x0000,0x0000,
2608
0x0280,0x0000,0x0000,0x0000,0x0000,
2609
0x0281,0x0000,0x0000,0x0000,0x0000,
2610
0x0282,0x0000,0x0000,0x0000,0x0000,
2611
0x02D8,0x0000,0x0000,0x0000,0x0000,
2612
0x02D9,0x0000,0x0000,0x0000,0x0000,
2613
0x02DA,0x0000,0x0000,0x0000,0x0000,
2614
0x02DB,0x0000,0x0000,0x0000,0x0000,
2615
0x025D,0x0000,0x0000,0x0000,0x0000,
2616
0x025D,0x025D,0x0000,0x0000,0x0000,
2617
0x025D,0x025D,0x025D,0x0000,0x0000,
2618
0x02DC,0x0000,0x0000,0x0000,0x0000,
2619
0x0207,0x0000,0x0000,0x0000,0x0000,
2620
0x0208,0x0000,0x0000,0x0000,0x0000,
2621
0x0000,0x0000,0x0000,0x0000,0x0000,
2622
0x0000,0x0000,0x0000,0x0000,0x0000,
2623
0x0000,0x0000,0x0000,0x0000,0x0000,
2624
0x0000,0x0000,0x0000,0x0000,0x0000,
2625
0x0000,0x0000,0x0000,0x0000,0x0000,
2626
0x0209,0x0000,0x0000,0x0000,0x0000,
2627
0x02D5,0x0000,0x0000,0x0000,0x0000,
2628
0x02D6,0x0000,0x0000,0x0000,0x0000,
2629
0x02E0,0x0000,0x0000,0x0000,0x0000,
2630
0x02E0,0x02E0,0x0000,0x0000,0x0000,
2631
0x02E0,0x02E0,0x02E0,0x0000,0x0000,
2632
0x02E1,0x0000,0x0000,0x0000,0x0000,
2633
0x02E1,0x02E1,0x0000,0x0000,0x0000,
2634
0x02E1,0x02E1,0x02E1,0x0000,0x0000,
2635
0x02E4,0x0000,0x0000,0x0000,0x0000,
2636
0x027C,0x0000,0x0000,0x0000,0x0000,
2637
0x027D,0x0000,0x0000,0x0000,0x0000,
2638
0x02E5,0x0000,0x0000,0x0000,0x0000,
2639
0x0251,0x0251,0x0000,0x0000,0x0000,
2640
0x025C,0x0000,0x0000,0x0000,0x0000,
2641
0x0211,0x0000,0x0000,0x0000,0x0000,
2642
0x02E6,0x0000,0x0000,0x0000,0x0000,
2643
0x02E8,0x0000,0x0000,0x0000,0x0000,
2644
0x02EA,0x0000,0x0000,0x0000,0x0000,
2645
0x02EB,0x0000,0x0000,0x0000,0x0000,
2646
0x02DD,0x0000,0x0000,0x0000,0x0000,
2647
0x02CD,0x0000,0x0000,0x0000,0x0000,
2648
0x0294,0x0000,0x0000,0x0000,0x0000,
2649
0x0295,0x0000,0x0000,0x0000,0x0000,
2650
0x0255,0x0255,0x0000,0x0000,0x0000,
2651
0x0255,0x0251,0x0000,0x0000,0x0000,
2652
0x0251,0x0255,0x0000,0x0000,0x0000,
2653
0x02D1,0x0000,0x0000,0x0000,0x0000,
2654
0x02C4,0x0000,0x0000,0x0000,0x0000,
2655
0x02DE,0x0000,0x0000,0x0000,0x0000,
2656
0x02DF,0x0000,0x0000,0x0000,0x0000,
2657
0x02C9,0x0000,0x0000,0x0000,0x0000,
2658
0x023C,0x0000,0x0000,0x0000,0x0000,
2659
0x02E9,0x0000,0x0000,0x0000,0x0000,
2660
0x02CA,0x0000,0x0000,0x0000,0x0000,
2661
0x02D7,0x0000,0x0000,0x0000,0x0000,
2662
0x022A,0x0000,0x0000,0x0000,0x0000,
2663
0x02E7,0x0000,0x0000,0x0000,0x0000,
2664
0xFBC0,0xA055,0x0000,0x0000,0x0000,
2665
0xFBC0,0xA056,0x0000,0x0000,0x0000,
2666
0x02E0,0x02E0,0x02E0,0x02E0,0x0000,
2667
0xFBC0,0xA058,0x0000,0x0000,0x0000,
2668
0xFBC0,0xA059,0x0000,0x0000,0x0000,
2669
0xFBC0,0xA05A,0x0000,0x0000,0x0000,
2670
0xFBC0,0xA05B,0x0000,0x0000,0x0000,
2671
0xFBC0,0xA05C,0x0000,0x0000,0x0000,
2672
0xFBC0,0xA05D,0x0000,0x0000,0x0000,
2673
0xFBC0,0xA05E,0x0000,0x0000,0x0000,
2674
0x0209,0x0000,0x0000,0x0000,0x0000,
2675
0x0000,0x0000,0x0000,0x0000,0x0000,
2676
0x0000,0x0000,0x0000,0x0000,0x0000,
2677
0x0000,0x0000,0x0000,0x0000,0x0000,
2678
0x0000,0x0000,0x0000,0x0000,0x0000,
2679
0xFBC0,0xA064,0x0000,0x0000,0x0000,
2680
0xFBC0,0xA065,0x0000,0x0000,0x0000,
2681
0xFBC0,0xA066,0x0000,0x0000,0x0000,
2682
0xFBC0,0xA067,0x0000,0x0000,0x0000,
2683
0xFBC0,0xA068,0x0000,0x0000,0x0000,
2684
0xFBC0,0xA069,0x0000,0x0000,0x0000,
2685
0x0000,0x0000,0x0000,0x0000,0x0000,
2686
0x0000,0x0000,0x0000,0x0000,0x0000,
2687
0x0000,0x0000,0x0000,0x0000,0x0000,
2688
0x0000,0x0000,0x0000,0x0000,0x0000,
2689
0x0000,0x0000,0x0000,0x0000,0x0000,
2690
0x0000,0x0000,0x0000,0x0000,0x0000,
2691
0x0E29,0x0000,0x0000,0x0000,0x0000,
2692
0x0EFB,0x0000,0x0000,0x0000,0x0000,
2693
0xFBC0,0xA072,0x0000,0x0000,0x0000,
2694
0xFBC0,0xA073,0x0000,0x0000,0x0000,
2695
0x0E2D,0x0000,0x0000,0x0000,0x0000,
2696
0x0E2E,0x0000,0x0000,0x0000,0x0000,
2697
0x0E2F,0x0000,0x0000,0x0000,0x0000,
2698
0x0E30,0x0000,0x0000,0x0000,0x0000,
2699
0x0E31,0x0000,0x0000,0x0000,0x0000,
2700
0x0E32,0x0000,0x0000,0x0000,0x0000,
2701
0x0428,0x0000,0x0000,0x0000,0x0000,
2702
0x0434,0x0000,0x0000,0x0000,0x0000,
2703
0x042D,0x0000,0x0000,0x0000,0x0000,
2704
0x0288,0x0000,0x0000,0x0000,0x0000,
2705
0x0289,0x0000,0x0000,0x0000,0x0000,
2706
0x0F64,0x0000,0x0000,0x0000,0x0000,
2707
0x0E29,0x0000,0x0000,0x0000,0x0000,
2708
0x0E2A,0x0000,0x0000,0x0000,0x0000,
2709
0x0E2B,0x0000,0x0000,0x0000,0x0000,
2710
0x0E2C,0x0000,0x0000,0x0000,0x0000,
2711
0x0E2D,0x0000,0x0000,0x0000,0x0000,
2712
0x0E2E,0x0000,0x0000,0x0000,0x0000,
2713
0x0E2F,0x0000,0x0000,0x0000,0x0000,
2714
0x0E30,0x0000,0x0000,0x0000,0x0000,
2715
0x0E31,0x0000,0x0000,0x0000,0x0000,
2716
0x0E32,0x0000,0x0000,0x0000,0x0000,
2717
0x0428,0x0000,0x0000,0x0000,0x0000,
2718
0x0434,0x0000,0x0000,0x0000,0x0000,
2719
0x042D,0x0000,0x0000,0x0000,0x0000,
2720
0x0288,0x0000,0x0000,0x0000,0x0000,
2721
0x0289,0x0000,0x0000,0x0000,0x0000,
2722
0xFBC0,0xA08F,0x0000,0x0000,0x0000,
2723
0xFBC0,0xA090,0x0000,0x0000,0x0000,
2724
0xFBC0,0xA091,0x0000,0x0000,0x0000,
2725
0xFBC0,0xA092,0x0000,0x0000,0x0000,
2726
0xFBC0,0xA093,0x0000,0x0000,0x0000,
2727
0xFBC0,0xA094,0x0000,0x0000,0x0000,
2728
0xFBC0,0xA095,0x0000,0x0000,0x0000,
2729
0xFBC0,0xA096,0x0000,0x0000,0x0000,
2730
0xFBC0,0xA097,0x0000,0x0000,0x0000,
2731
0xFBC0,0xA098,0x0000,0x0000,0x0000,
2732
0xFBC0,0xA099,0x0000,0x0000,0x0000,
2733
0xFBC0,0xA09A,0x0000,0x0000,0x0000,
2734
0xFBC0,0xA09B,0x0000,0x0000,0x0000,
2735
0xFBC0,0xA09C,0x0000,0x0000,0x0000,
2736
0xFBC0,0xA09D,0x0000,0x0000,0x0000,
2737
0xFBC0,0xA09E,0x0000,0x0000,0x0000,
2738
0xFBC0,0xA09F,0x0000,0x0000,0x0000,
2739
0x0E18,0x0000,0x0000,0x0000,0x0000,
2740
0x0E19,0x0000,0x0000,0x0000,0x0000,
2741
0x0E1A,0x0000,0x0000,0x0000,0x0000,
2742
0x0E1B,0x0000,0x0000,0x0000,0x0000,
2743
0x0E1C,0x0000,0x0000,0x0000,0x0000,
2744
0x0E1D,0x0000,0x0000,0x0000,0x0000,
2745
0x0E1E,0x0000,0x0000,0x0000,0x0000,
2746
0x0E1F,0x0000,0x0000,0x0000,0x0000,
2747
0x0FC0,0x0FEA,0x0000,0x0000,0x0000,
2748
0x0E20,0x0000,0x0000,0x0000,0x0000,
2749
0x0E21,0x0000,0x0000,0x0000,0x0000,
2750
0x0E22,0x0000,0x0000,0x0000,0x0000,
2751
0x0E23,0x0000,0x0000,0x0000,0x0000,
2752
0x0E24,0x0000,0x0000,0x0000,0x0000,
2753
0x0E25,0x0000,0x0000,0x0000,0x0000,
2754
0x0E26,0x0000,0x0000,0x0000,0x0000,
2755
0x0E27,0x0000,0x0000,0x0000,0x0000,
2756
0x0E28,0x0000,0x0000,0x0000,0x0000,
2757
0xFBC0,0xA0B2,0x0000,0x0000,0x0000,
2758
0xFBC0,0xA0B3,0x0000,0x0000,0x0000,
2759
0xFBC0,0xA0B4,0x0000,0x0000,0x0000,
2760
0xFBC0,0xA0B5,0x0000,0x0000,0x0000,
2761
0xFBC0,0xA0B6,0x0000,0x0000,0x0000,
2762
0xFBC0,0xA0B7,0x0000,0x0000,0x0000,
2763
0xFBC0,0xA0B8,0x0000,0x0000,0x0000,
2764
0xFBC0,0xA0B9,0x0000,0x0000,0x0000,
2765
0xFBC0,0xA0BA,0x0000,0x0000,0x0000,
2766
0xFBC0,0xA0BB,0x0000,0x0000,0x0000,
2767
0xFBC0,0xA0BC,0x0000,0x0000,0x0000,
2768
0xFBC0,0xA0BD,0x0000,0x0000,0x0000,
2769
0xFBC0,0xA0BE,0x0000,0x0000,0x0000,
2770
0xFBC0,0xA0BF,0x0000,0x0000,0x0000,
2771
0xFBC0,0xA0C0,0x0000,0x0000,0x0000,
2772
0xFBC0,0xA0C1,0x0000,0x0000,0x0000,
2773
0xFBC0,0xA0C2,0x0000,0x0000,0x0000,
2774
0xFBC0,0xA0C3,0x0000,0x0000,0x0000,
2775
0xFBC0,0xA0C4,0x0000,0x0000,0x0000,
2776
0xFBC0,0xA0C5,0x0000,0x0000,0x0000,
2777
0xFBC0,0xA0C6,0x0000,0x0000,0x0000,
2778
0xFBC0,0xA0C7,0x0000,0x0000,0x0000,
2779
0xFBC0,0xA0C8,0x0000,0x0000,0x0000,
2780
0xFBC0,0xA0C9,0x0000,0x0000,0x0000,
2781
0xFBC0,0xA0CA,0x0000,0x0000,0x0000,
2782
0xFBC0,0xA0CB,0x0000,0x0000,0x0000,
2783
0xFBC0,0xA0CC,0x0000,0x0000,0x0000,
2784
0xFBC0,0xA0CD,0x0000,0x0000,0x0000,
2785
0xFBC0,0xA0CE,0x0000,0x0000,0x0000,
2786
0xFBC0,0xA0CF,0x0000,0x0000,0x0000,
2787
0x0000,0x0000,0x0000,0x0000,0x0000,
2788
0x0000,0x0000,0x0000,0x0000,0x0000,
2789
0x0000,0x0000,0x0000,0x0000,0x0000,
2790
0x0000,0x0000,0x0000,0x0000,0x0000,
2791
0x0000,0x0000,0x0000,0x0000,0x0000,
2792
0x0000,0x0000,0x0000,0x0000,0x0000,
2793
0x0000,0x0000,0x0000,0x0000,0x0000,
2794
0x0000,0x0000,0x0000,0x0000,0x0000,
2795
0x0000,0x0000,0x0000,0x0000,0x0000,
2796
0x0000,0x0000,0x0000,0x0000,0x0000,
2797
0x0000,0x0000,0x0000,0x0000,0x0000,
2798
0x0000,0x0000,0x0000,0x0000,0x0000,
2799
0x0000,0x0000,0x0000,0x0000,0x0000,
2800
0x0000,0x0000,0x0000,0x0000,0x0000,
2801
0x0000,0x0000,0x0000,0x0000,0x0000,
2802
0x0000,0x0000,0x0000,0x0000,0x0000,
2803
0x0000,0x0000,0x0000,0x0000,0x0000,
2804
0x0000,0x0000,0x0000,0x0000,0x0000,
2805
0x0000,0x0000,0x0000,0x0000,0x0000,
2806
0x0000,0x0000,0x0000,0x0000,0x0000,
2807
0x0000,0x0000,0x0000,0x0000,0x0000,
2808
0x0000,0x0000,0x0000,0x0000,0x0000,
2809
0x0000,0x0000,0x0000,0x0000,0x0000,
2810
0x0000,0x0000,0x0000,0x0000,0x0000,
2811
0x0000,0x0000,0x0000,0x0000,0x0000,
2812
0x0000,0x0000,0x0000,0x0000,0x0000,
2813
0x0000,0x0000,0x0000,0x0000,0x0000,
2814
0xFBC0,0xA0EB,0x0000,0x0000,0x0000,
2815
0xFBC0,0xA0EC,0x0000,0x0000,0x0000,
2816
0xFBC0,0xA0ED,0x0000,0x0000,0x0000,
2817
0xFBC0,0xA0EE,0x0000,0x0000,0x0000,
2818
0xFBC0,0xA0EF,0x0000,0x0000,0x0000,
2819
0xFBC0,0xA0F0,0x0000,0x0000,0x0000,
2820
0xFBC0,0xA0F1,0x0000,0x0000,0x0000,
2821
0xFBC0,0xA0F2,0x0000,0x0000,0x0000,
2822
0xFBC0,0xA0F3,0x0000,0x0000,0x0000,
2823
0xFBC0,0xA0F4,0x0000,0x0000,0x0000,
2824
0xFBC0,0xA0F5,0x0000,0x0000,0x0000,
2825
0xFBC0,0xA0F6,0x0000,0x0000,0x0000,
2826
0xFBC0,0xA0F7,0x0000,0x0000,0x0000,
2827
0xFBC0,0xA0F8,0x0000,0x0000,0x0000,
2828
0xFBC0,0xA0F9,0x0000,0x0000,0x0000,
2829
0xFBC0,0xA0FA,0x0000,0x0000,0x0000,
2830
0xFBC0,0xA0FB,0x0000,0x0000,0x0000,
2831
0xFBC0,0xA0FC,0x0000,0x0000,0x0000,
2832
0xFBC0,0xA0FD,0x0000,0x0000,0x0000,
2833
0xFBC0,0xA0FE,0x0000,0x0000,0x0000,
2834
0xFBC0,0xA0FF,0x0000,0x0000,0x0000
2835
};
2836
206 by Brian Aker
Removed final uint dead types.
2837
uint16_t page021data[]= { /* 2100 (5 weights per char) */
1 by brian
clean slate
2838
0x0E33,0x02CC,0x0E60,0x0000,0x0000,
2839
0x0E33,0x02CC,0x0FEA,0x0000,0x0000,
2840
0x0E60,0x0000,0x0000,0x0000,0x0000,
2841
0x034A,0x0E60,0x0000,0x0000,0x0000,
2842
0x039B,0x0000,0x0000,0x0000,0x0000,
2843
0x0E60,0x02CC,0x0F82,0x0000,0x0000,
2844
0x0E60,0x02CC,0x101F,0x0000,0x0000,
2845
0x0E98,0x0000,0x0000,0x0000,0x0000,
2846
0x039C,0x0000,0x0000,0x0000,0x0000,
2847
0x034A,0x0EB9,0x0000,0x0000,0x0000,
2848
0x0EC1,0x0000,0x0000,0x0000,0x0000,
2849
0x0EE1,0x0000,0x0000,0x0000,0x0000,
2850
0x0EE1,0x0000,0x0000,0x0000,0x0000,
2851
0x0EE1,0x0000,0x0000,0x0000,0x0000,
2852
0x0EE1,0x0000,0x0000,0x0000,0x0000,
2853
0x0EED,0x0000,0x0000,0x0000,0x0000,
2854
0x0EFB,0x0000,0x0000,0x0000,0x0000,
2855
0x0EFB,0x0000,0x0000,0x0000,0x0000,
2856
0x0F2E,0x0000,0x0000,0x0000,0x0000,
2857
0x0F2E,0x0000,0x0000,0x0000,0x0000,
2858
0x039D,0x0000,0x0000,0x0000,0x0000,
2859
0x0F64,0x0000,0x0000,0x0000,0x0000,
2860
0x0F64,0x0F82,0x0000,0x0000,0x0000,
2861
0x039E,0x0000,0x0000,0x0000,0x0000,
2862
0x039F,0x0000,0x0000,0x0000,0x0000,
2863
0x0FA7,0x0000,0x0000,0x0000,0x0000,
2864
0x0FB4,0x0000,0x0000,0x0000,0x0000,
2865
0x0FC0,0x0000,0x0000,0x0000,0x0000,
2866
0x0FC0,0x0000,0x0000,0x0000,0x0000,
2867
0x0FC0,0x0000,0x0000,0x0000,0x0000,
2868
0x03A0,0x0000,0x0000,0x0000,0x0000,
2869
0x03A1,0x0000,0x0000,0x0000,0x0000,
2870
0x0FEA,0x0F5B,0x0000,0x0000,0x0000,
2871
0x1002,0x0E8B,0x0F2E,0x0000,0x0000,
2872
0x1002,0x0F5B,0x0000,0x0000,0x0000,
2873
0x03A2,0x0000,0x0000,0x0000,0x0000,
2874
0x106A,0x0000,0x0000,0x0000,0x0000,
2875
0x03A3,0x0000,0x0000,0x0000,0x0000,
2876
0x1109,0x0000,0x0000,0x0000,0x0000,
2877
0x03A4,0x0000,0x0000,0x0000,0x0000,
2878
0x106A,0x0000,0x0000,0x0000,0x0000,
2879
0x03A5,0x0000,0x0000,0x0000,0x0000,
2880
0x0F21,0x0000,0x0000,0x0000,0x0000,
2881
0x0E33,0x0000,0x0000,0x0000,0x0000,
2882
0x0E4A,0x0000,0x0000,0x0000,0x0000,
2883
0x0E60,0x0000,0x0000,0x0000,0x0000,
2884
0x03A6,0x0000,0x0000,0x0000,0x0000,
2885
0x0E8B,0x0000,0x0000,0x0000,0x0000,
2886
0x0E8B,0x0000,0x0000,0x0000,0x0000,
2887
0x0EB9,0x0000,0x0000,0x0000,0x0000,
2888
0x03A7,0x0000,0x0000,0x0000,0x0000,
2889
0x0F5B,0x0000,0x0000,0x0000,0x0000,
2890
0x0F82,0x0000,0x0000,0x0000,0x0000,
2891
0x1331,0x0000,0x0000,0x0000,0x0000,
2892
0x1332,0x0000,0x0000,0x0000,0x0000,
2893
0x1333,0x0000,0x0000,0x0000,0x0000,
2894
0x1334,0x0000,0x0000,0x0000,0x0000,
2895
0x0EFB,0x0000,0x0000,0x0000,0x0000,
2896
0x03A8,0x0000,0x0000,0x0000,0x0000,
2897
0x0EB9,0x0E33,0x105A,0x0000,0x0000,
2898
0xFBC0,0xA13C,0x0000,0x0000,0x0000,
2899
0x10EA,0x0000,0x0000,0x0000,0x0000,
2900
0x10EA,0x0000,0x0000,0x0000,0x0000,
2901
0x10FC,0x0000,0x0000,0x0000,0x0000,
2902
0x0427,0x0000,0x0000,0x0000,0x0000,
2903
0x03A9,0x0000,0x0000,0x0000,0x0000,
2904
0x03AA,0x0000,0x0000,0x0000,0x0000,
2905
0x03AB,0x0000,0x0000,0x0000,0x0000,
2906
0x03AC,0x0000,0x0000,0x0000,0x0000,
2907
0x0E6D,0x0000,0x0000,0x0000,0x0000,
2908
0x0E6D,0x0000,0x0000,0x0000,0x0000,
2909
0x0E8B,0x0000,0x0000,0x0000,0x0000,
2910
0x0EFB,0x0000,0x0000,0x0000,0x0000,
2911
0x0F10,0x0000,0x0000,0x0000,0x0000,
2912
0x03AD,0x0000,0x0000,0x0000,0x0000,
2913
0x02D0,0x0000,0x0000,0x0000,0x0000,
2914
0xFBC0,0xA14C,0x0000,0x0000,0x0000,
2915
0xFBC0,0xA14D,0x0000,0x0000,0x0000,
2916
0xFBC0,0xA14E,0x0000,0x0000,0x0000,
2917
0xFBC0,0xA14F,0x0000,0x0000,0x0000,
2918
0xFBC0,0xA150,0x0000,0x0000,0x0000,
2919
0xFBC0,0xA151,0x0000,0x0000,0x0000,
2920
0xFBC0,0xA152,0x0000,0x0000,0x0000,
2921
0x0E2A,0x02CD,0x0E2C,0x0000,0x0000,
2922
0x0E2B,0x02CD,0x0E2C,0x0000,0x0000,
2923
0x0E2A,0x02CD,0x0E2E,0x0000,0x0000,
2924
0x0E2B,0x02CD,0x0E2E,0x0000,0x0000,
2925
0x0E2C,0x02CD,0x0E2E,0x0000,0x0000,
2926
0x0E2D,0x02CD,0x0E2E,0x0000,0x0000,
2927
0x0E2A,0x02CD,0x0E2F,0x0000,0x0000,
2928
0x0E2E,0x02CD,0x0E2F,0x0000,0x0000,
2929
0x0E2A,0x02CD,0x0E31,0x0000,0x0000,
2930
0x0E2C,0x02CD,0x0E31,0x0000,0x0000,
2931
0x0E2E,0x02CD,0x0E31,0x0000,0x0000,
2932
0x0E30,0x02CD,0x0E31,0x0000,0x0000,
2933
0x0E2A,0x02CD,0x0000,0x0000,0x0000,
2934
0x0EFB,0x0000,0x0000,0x0000,0x0000,
2935
0x0EFB,0x0EFB,0x0000,0x0000,0x0000,
2936
0x0EFB,0x0EFB,0x0EFB,0x0000,0x0000,
2937
0x0EFB,0x1044,0x0000,0x0000,0x0000,
2938
0x1044,0x0000,0x0000,0x0000,0x0000,
2939
0x1044,0x0EFB,0x0000,0x0000,0x0000,
2940
0x1044,0x0EFB,0x0EFB,0x0000,0x0000,
2941
0x1044,0x0EFB,0x0EFB,0x0EFB,0x0000,
2942
0x0EFB,0x105A,0x0000,0x0000,0x0000,
2943
0x105A,0x0000,0x0000,0x0000,0x0000,
2944
0x105A,0x0EFB,0x0000,0x0000,0x0000,
2945
0x105A,0x0EFB,0x0EFB,0x0000,0x0000,
2946
0x0F2E,0x0000,0x0000,0x0000,0x0000,
2947
0x0E60,0x0000,0x0000,0x0000,0x0000,
2948
0x0E6D,0x0000,0x0000,0x0000,0x0000,
2949
0x0F5B,0x0000,0x0000,0x0000,0x0000,
2950
0x0EFB,0x0000,0x0000,0x0000,0x0000,
2951
0x0EFB,0x0EFB,0x0000,0x0000,0x0000,
2952
0x0EFB,0x0EFB,0x0EFB,0x0000,0x0000,
2953
0x0EFB,0x1044,0x0000,0x0000,0x0000,
2954
0x1044,0x0000,0x0000,0x0000,0x0000,
2955
0x1044,0x0EFB,0x0000,0x0000,0x0000,
2956
0x1044,0x0EFB,0x0EFB,0x0000,0x0000,
2957
0x1044,0x0EFB,0x0EFB,0x0EFB,0x0000,
2958
0x0EFB,0x105A,0x0000,0x0000,0x0000,
2959
0x105A,0x0000,0x0000,0x0000,0x0000,
2960
0x105A,0x0EFB,0x0000,0x0000,0x0000,
2961
0x105A,0x0EFB,0x0EFB,0x0000,0x0000,
2962
0x0F2E,0x0000,0x0000,0x0000,0x0000,
2963
0x0E60,0x0000,0x0000,0x0000,0x0000,
2964
0x0E6D,0x0000,0x0000,0x0000,0x0000,
2965
0x0F5B,0x0000,0x0000,0x0000,0x0000,
2966
0x0DD7,0x0000,0x0000,0x0000,0x0000,
2967
0x0DD8,0x0000,0x0000,0x0000,0x0000,
2968
0x0DD9,0x0000,0x0000,0x0000,0x0000,
2969
0x0DDA,0x0000,0x0000,0x0000,0x0000,
2970
0xFBC0,0xA184,0x0000,0x0000,0x0000,
2971
0xFBC0,0xA185,0x0000,0x0000,0x0000,
2972
0xFBC0,0xA186,0x0000,0x0000,0x0000,
2973
0xFBC0,0xA187,0x0000,0x0000,0x0000,
2974
0xFBC0,0xA188,0x0000,0x0000,0x0000,
2975
0xFBC0,0xA189,0x0000,0x0000,0x0000,
2976
0xFBC0,0xA18A,0x0000,0x0000,0x0000,
2977
0xFBC0,0xA18B,0x0000,0x0000,0x0000,
2978
0xFBC0,0xA18C,0x0000,0x0000,0x0000,
2979
0xFBC0,0xA18D,0x0000,0x0000,0x0000,
2980
0xFBC0,0xA18E,0x0000,0x0000,0x0000,
2981
0xFBC0,0xA18F,0x0000,0x0000,0x0000,
2982
0x03AE,0x0000,0x0000,0x0000,0x0000,
2983
0x03B0,0x0000,0x0000,0x0000,0x0000,
2984
0x03AF,0x0000,0x0000,0x0000,0x0000,
2985
0x03B1,0x0000,0x0000,0x0000,0x0000,
2986
0x03B2,0x0000,0x0000,0x0000,0x0000,
2987
0x03B3,0x0000,0x0000,0x0000,0x0000,
2988
0x03B4,0x0000,0x0000,0x0000,0x0000,
2989
0x03B5,0x0000,0x0000,0x0000,0x0000,
2990
0x03B6,0x0000,0x0000,0x0000,0x0000,
2991
0x03B7,0x0000,0x0000,0x0000,0x0000,
2992
0x03AE,0x0000,0x0000,0x0000,0x0000,
2993
0x03AF,0x0000,0x0000,0x0000,0x0000,
2994
0x03B8,0x0000,0x0000,0x0000,0x0000,
2995
0x03B9,0x0000,0x0000,0x0000,0x0000,
2996
0x03BA,0x0000,0x0000,0x0000,0x0000,
2997
0x03BB,0x0000,0x0000,0x0000,0x0000,
2998
0x03BC,0x0000,0x0000,0x0000,0x0000,
2999
0x03BD,0x0000,0x0000,0x0000,0x0000,
3000
0x03BE,0x0000,0x0000,0x0000,0x0000,
3001
0x03BF,0x0000,0x0000,0x0000,0x0000,
3002
0x03C0,0x0000,0x0000,0x0000,0x0000,
3003
0x03C1,0x0000,0x0000,0x0000,0x0000,
3004
0x03C2,0x0000,0x0000,0x0000,0x0000,
3005
0x03C3,0x0000,0x0000,0x0000,0x0000,
3006
0x03C4,0x0000,0x0000,0x0000,0x0000,
3007
0x03C5,0x0000,0x0000,0x0000,0x0000,
3008
0x03C6,0x0000,0x0000,0x0000,0x0000,
3009
0x03C7,0x0000,0x0000,0x0000,0x0000,
3010
0x03C8,0x0000,0x0000,0x0000,0x0000,
3011
0x03C9,0x0000,0x0000,0x0000,0x0000,
3012
0x03B2,0x0000,0x0000,0x0000,0x0000,
3013
0x03CA,0x0000,0x0000,0x0000,0x0000,
3014
0x03CB,0x0000,0x0000,0x0000,0x0000,
3015
0x03CC,0x0000,0x0000,0x0000,0x0000,
3016
0x03CD,0x0000,0x0000,0x0000,0x0000,
3017
0x03CE,0x0000,0x0000,0x0000,0x0000,
3018
0x03CF,0x0000,0x0000,0x0000,0x0000,
3019
0x03D0,0x0000,0x0000,0x0000,0x0000,
3020
0x03D1,0x0000,0x0000,0x0000,0x0000,
3021
0x03D2,0x0000,0x0000,0x0000,0x0000,
3022
0x03D3,0x0000,0x0000,0x0000,0x0000,
3023
0x03D4,0x0000,0x0000,0x0000,0x0000,
3024
0x03D5,0x0000,0x0000,0x0000,0x0000,
3025
0x03D6,0x0000,0x0000,0x0000,0x0000,
3026
0x03D7,0x0000,0x0000,0x0000,0x0000,
3027
0x03D8,0x0000,0x0000,0x0000,0x0000,
3028
0x03D9,0x0000,0x0000,0x0000,0x0000,
3029
0x03DA,0x0000,0x0000,0x0000,0x0000,
3030
0x03DB,0x0000,0x0000,0x0000,0x0000,
3031
0x03DC,0x0000,0x0000,0x0000,0x0000,
3032
0x03DD,0x0000,0x0000,0x0000,0x0000,
3033
0x03DE,0x0000,0x0000,0x0000,0x0000,
3034
0x03DF,0x0000,0x0000,0x0000,0x0000,
3035
0x03E0,0x0000,0x0000,0x0000,0x0000,
3036
0x03E1,0x0000,0x0000,0x0000,0x0000,
3037
0x03E2,0x0000,0x0000,0x0000,0x0000,
3038
0x03E3,0x0000,0x0000,0x0000,0x0000,
3039
0x03E4,0x0000,0x0000,0x0000,0x0000,
3040
0x03E5,0x0000,0x0000,0x0000,0x0000,
3041
0x03E6,0x0000,0x0000,0x0000,0x0000,
3042
0x03E7,0x0000,0x0000,0x0000,0x0000,
3043
0x03E8,0x0000,0x0000,0x0000,0x0000,
3044
0x03EC,0x0000,0x0000,0x0000,0x0000,
3045
0x03EA,0x0000,0x0000,0x0000,0x0000,
3046
0x03E8,0x0000,0x0000,0x0000,0x0000,
3047
0x03E9,0x0000,0x0000,0x0000,0x0000,
3048
0x03EA,0x0000,0x0000,0x0000,0x0000,
3049
0x03EB,0x0000,0x0000,0x0000,0x0000,
3050
0x03EC,0x0000,0x0000,0x0000,0x0000,
3051
0x03ED,0x0000,0x0000,0x0000,0x0000,
3052
0x03EE,0x0000,0x0000,0x0000,0x0000,
3053
0x03EF,0x0000,0x0000,0x0000,0x0000,
3054
0x03F0,0x0000,0x0000,0x0000,0x0000,
3055
0x03F1,0x0000,0x0000,0x0000,0x0000,
3056
0x03F2,0x0000,0x0000,0x0000,0x0000,
3057
0x03F3,0x0000,0x0000,0x0000,0x0000,
3058
0x03F4,0x0000,0x0000,0x0000,0x0000,
3059
0x03F5,0x0000,0x0000,0x0000,0x0000,
3060
0x03F6,0x0000,0x0000,0x0000,0x0000,
3061
0x03F7,0x0000,0x0000,0x0000,0x0000,
3062
0x03F8,0x0000,0x0000,0x0000,0x0000,
3063
0x03F9,0x0000,0x0000,0x0000,0x0000,
3064
0x03FA,0x0000,0x0000,0x0000,0x0000,
3065
0x03FB,0x0000,0x0000,0x0000,0x0000,
3066
0x03FC,0x0000,0x0000,0x0000,0x0000,
3067
0x03FD,0x0000,0x0000,0x0000,0x0000,
3068
0x03FE,0x0000,0x0000,0x0000,0x0000,
3069
0x03FF,0x0000,0x0000,0x0000,0x0000,
3070
0x0400,0x0000,0x0000,0x0000,0x0000,
3071
0x0401,0x0000,0x0000,0x0000,0x0000,
3072
0x0402,0x0000,0x0000,0x0000,0x0000,
3073
0x0403,0x0000,0x0000,0x0000,0x0000,
3074
0x0404,0x0000,0x0000,0x0000,0x0000,
3075
0x0405,0x0000,0x0000,0x0000,0x0000,
3076
0x0406,0x0000,0x0000,0x0000,0x0000,
3077
0x0407,0x0000,0x0000,0x0000,0x0000,
3078
0x0408,0x0000,0x0000,0x0000,0x0000,
3079
0x0409,0x0000,0x0000,0x0000,0x0000,
3080
0x040A,0x0000,0x0000,0x0000,0x0000,
3081
0x040B,0x0000,0x0000,0x0000,0x0000,
3082
0x040C,0x0000,0x0000,0x0000,0x0000,
3083
0x040D,0x0000,0x0000,0x0000,0x0000,
3084
0x040E,0x0000,0x0000,0x0000,0x0000,
3085
0x040F,0x0000,0x0000,0x0000,0x0000,
3086
0x0410,0x0000,0x0000,0x0000,0x0000,
3087
0x0411,0x0000,0x0000,0x0000,0x0000,
3088
0x0412,0x0000,0x0000,0x0000,0x0000,
3089
0x0413,0x0000,0x0000,0x0000,0x0000,
3090
0x0414,0x0000,0x0000,0x0000,0x0000,
3091
0x0415,0x0000,0x0000,0x0000,0x0000,
3092
0x0416,0x0000,0x0000,0x0000,0x0000,
3093
0x0417,0x0000,0x0000,0x0000,0x0000
3094
};
3095
206 by Brian Aker
Removed final uint dead types.
3096
uint16_t page022data[]= { /* 2200 (4 weights per char) */
1 by brian
clean slate
3097
0x0418,0x0000,0x0000,0x0000, 0x0419,0x0000,0x0000,0x0000,
3098
0x041A,0x0000,0x0000,0x0000, 0x041B,0x0000,0x0000,0x0000,
3099
0x041B,0x0000,0x0000,0x0000, 0x041C,0x0000,0x0000,0x0000,
3100
0x041D,0x0000,0x0000,0x0000, 0x041E,0x0000,0x0000,0x0000,
3101
0x041F,0x0000,0x0000,0x0000, 0x041F,0x0000,0x0000,0x0000,
3102
0x0420,0x0000,0x0000,0x0000, 0x0421,0x0000,0x0000,0x0000,
3103
0x0421,0x0000,0x0000,0x0000, 0x0422,0x0000,0x0000,0x0000,
3104
0x0424,0x0000,0x0000,0x0000, 0x0425,0x0000,0x0000,0x0000,
3105
0x0426,0x0000,0x0000,0x0000, 0x0427,0x0000,0x0000,0x0000,
3106
0x0434,0x0000,0x0000,0x0000, 0x0435,0x0000,0x0000,0x0000,
3107
0x0436,0x0000,0x0000,0x0000, 0x0437,0x0000,0x0000,0x0000,
3108
0x0438,0x0000,0x0000,0x0000, 0x0439,0x0000,0x0000,0x0000,
3109
0x043A,0x0000,0x0000,0x0000, 0x043B,0x0000,0x0000,0x0000,
3110
0x043C,0x0000,0x0000,0x0000, 0x043D,0x0000,0x0000,0x0000,
3111
0x043E,0x0000,0x0000,0x0000, 0x043F,0x0000,0x0000,0x0000,
3112
0x0440,0x0000,0x0000,0x0000, 0x0441,0x0000,0x0000,0x0000,
3113
0x0442,0x0000,0x0000,0x0000, 0x0443,0x0000,0x0000,0x0000,
3114
0x0444,0x0000,0x0000,0x0000, 0x0445,0x0000,0x0000,0x0000,
3115
0x0445,0x0000,0x0000,0x0000, 0x0446,0x0000,0x0000,0x0000,
3116
0x0446,0x0000,0x0000,0x0000, 0x0447,0x0000,0x0000,0x0000,
3117
0x0448,0x0000,0x0000,0x0000, 0x0449,0x0000,0x0000,0x0000,
3118
0x044A,0x0000,0x0000,0x0000, 0x044B,0x0000,0x0000,0x0000,
3119
0x044B,0x044B,0x0000,0x0000, 0x044B,0x044B,0x044B,0x0000,
3120
0x044C,0x0000,0x0000,0x0000, 0x044C,0x044C,0x0000,0x0000,
3121
0x044C,0x044C,0x044C,0x0000, 0x044D,0x0000,0x0000,0x0000,
3122
0x044E,0x0000,0x0000,0x0000, 0x044F,0x0000,0x0000,0x0000,
3123
0x0450,0x0000,0x0000,0x0000, 0x0451,0x0000,0x0000,0x0000,
3124
0x0452,0x0000,0x0000,0x0000, 0x0453,0x0000,0x0000,0x0000,
3125
0x0454,0x0000,0x0000,0x0000, 0x0455,0x0000,0x0000,0x0000,
3126
0x0456,0x0000,0x0000,0x0000, 0x0457,0x0000,0x0000,0x0000,
3127
0x0458,0x0000,0x0000,0x0000, 0x0459,0x0000,0x0000,0x0000,
3128
0x045A,0x0000,0x0000,0x0000, 0x045B,0x0000,0x0000,0x0000,
3129
0x045C,0x0000,0x0000,0x0000, 0x0458,0x0000,0x0000,0x0000,
3130
0x045D,0x0000,0x0000,0x0000, 0x045E,0x0000,0x0000,0x0000,
3131
0x045E,0x0000,0x0000,0x0000, 0x045F,0x0000,0x0000,0x0000,
3132
0x0460,0x0000,0x0000,0x0000, 0x045F,0x0000,0x0000,0x0000,
3133
0x0461,0x0000,0x0000,0x0000, 0x0461,0x0000,0x0000,0x0000,
3134
0x0462,0x0000,0x0000,0x0000, 0x0463,0x0000,0x0000,0x0000,
3135
0x0464,0x0000,0x0000,0x0000, 0x0465,0x0000,0x0000,0x0000,
3136
0x0466,0x0000,0x0000,0x0000, 0x0467,0x0000,0x0000,0x0000,
3137
0x0468,0x0000,0x0000,0x0000, 0x0469,0x0000,0x0000,0x0000,
3138
0x046A,0x0000,0x0000,0x0000, 0x046B,0x0000,0x0000,0x0000,
3139
0x046C,0x0000,0x0000,0x0000, 0x046D,0x0000,0x0000,0x0000,
3140
0x046E,0x0000,0x0000,0x0000, 0x046F,0x0000,0x0000,0x0000,
3141
0x0470,0x0000,0x0000,0x0000, 0x0471,0x0000,0x0000,0x0000,
3142
0x0472,0x0000,0x0000,0x0000, 0x0473,0x0000,0x0000,0x0000,
3143
0x0474,0x0000,0x0000,0x0000, 0x0475,0x0000,0x0000,0x0000,
3144
0x0476,0x0000,0x0000,0x0000, 0x0477,0x0000,0x0000,0x0000,
3145
0x042D,0x0000,0x0000,0x0000, 0x0478,0x0000,0x0000,0x0000,
3146
0x0478,0x0000,0x0000,0x0000, 0x0479,0x0000,0x0000,0x0000,
3147
0x047A,0x0000,0x0000,0x0000, 0x047B,0x0000,0x0000,0x0000,
3148
0x047C,0x0000,0x0000,0x0000, 0x047D,0x0000,0x0000,0x0000,
3149
0x047E,0x0000,0x0000,0x0000, 0x047F,0x0000,0x0000,0x0000,
3150
0x0480,0x0000,0x0000,0x0000, 0x0481,0x0000,0x0000,0x0000,
3151
0x0482,0x0000,0x0000,0x0000, 0x0465,0x0000,0x0000,0x0000,
3152
0x042C,0x0000,0x0000,0x0000, 0x042E,0x0000,0x0000,0x0000,
3153
0x047A,0x0000,0x0000,0x0000, 0x047B,0x0000,0x0000,0x0000,
3154
0x0483,0x0000,0x0000,0x0000, 0x0484,0x0000,0x0000,0x0000,
3155
0x0483,0x0000,0x0000,0x0000, 0x0484,0x0000,0x0000,0x0000,
3156
0x0485,0x0000,0x0000,0x0000, 0x0486,0x0000,0x0000,0x0000,
3157
0x0485,0x0000,0x0000,0x0000, 0x0486,0x0000,0x0000,0x0000,
3158
0x0487,0x0000,0x0000,0x0000, 0x0488,0x0000,0x0000,0x0000,
3159
0x0489,0x0000,0x0000,0x0000, 0x048A,0x0000,0x0000,0x0000,
3160
0x048B,0x0000,0x0000,0x0000, 0x048C,0x0000,0x0000,0x0000,
3161
0x0487,0x0000,0x0000,0x0000, 0x0488,0x0000,0x0000,0x0000,
3162
0x048D,0x0000,0x0000,0x0000, 0x048E,0x0000,0x0000,0x0000,
3163
0x048D,0x0000,0x0000,0x0000, 0x048E,0x0000,0x0000,0x0000,
3164
0x048F,0x0000,0x0000,0x0000, 0x0490,0x0000,0x0000,0x0000,
3165
0x048F,0x0000,0x0000,0x0000, 0x0490,0x0000,0x0000,0x0000,
3166
0x0491,0x0000,0x0000,0x0000, 0x0492,0x0000,0x0000,0x0000,
3167
0x0493,0x0000,0x0000,0x0000, 0x0494,0x0000,0x0000,0x0000,
3168
0x0495,0x0000,0x0000,0x0000, 0x0496,0x0000,0x0000,0x0000,
3169
0x0497,0x0000,0x0000,0x0000, 0x0498,0x0000,0x0000,0x0000,
3170
0x0499,0x0000,0x0000,0x0000, 0x049A,0x0000,0x0000,0x0000,
3171
0x049B,0x0000,0x0000,0x0000, 0x049C,0x0000,0x0000,0x0000,
3172
0x049D,0x0000,0x0000,0x0000, 0x049E,0x0000,0x0000,0x0000,
3173
0x049F,0x0000,0x0000,0x0000, 0x04A0,0x0000,0x0000,0x0000,
3174
0x04A1,0x0000,0x0000,0x0000, 0x04A2,0x0000,0x0000,0x0000,
3175
0x04A3,0x0000,0x0000,0x0000, 0x04A4,0x0000,0x0000,0x0000,
3176
0x04A5,0x0000,0x0000,0x0000, 0x04A6,0x0000,0x0000,0x0000,
3177
0x04A7,0x0000,0x0000,0x0000, 0x04A8,0x0000,0x0000,0x0000,
3178
0x04A9,0x0000,0x0000,0x0000, 0x04AA,0x0000,0x0000,0x0000,
3179
0x04AB,0x0000,0x0000,0x0000, 0x04AC,0x0000,0x0000,0x0000,
3180
0x04AD,0x0000,0x0000,0x0000, 0x04AE,0x0000,0x0000,0x0000,
3181
0x04AF,0x0000,0x0000,0x0000, 0x04B0,0x0000,0x0000,0x0000,
3182
0x04B1,0x0000,0x0000,0x0000, 0x04B2,0x0000,0x0000,0x0000,
3183
0x04A9,0x0000,0x0000,0x0000, 0x04AF,0x0000,0x0000,0x0000,
3184
0x04B0,0x0000,0x0000,0x0000, 0x04B2,0x0000,0x0000,0x0000,
3185
0x04B3,0x0000,0x0000,0x0000, 0x04B4,0x0000,0x0000,0x0000,
3186
0x04B5,0x0000,0x0000,0x0000, 0x04B6,0x0000,0x0000,0x0000,
3187
0x04B7,0x0000,0x0000,0x0000, 0x04B8,0x0000,0x0000,0x0000,
3188
0x04B9,0x0000,0x0000,0x0000, 0x04BA,0x0000,0x0000,0x0000,
3189
0x04BB,0x0000,0x0000,0x0000, 0x04BC,0x0000,0x0000,0x0000,
3190
0x04BD,0x0000,0x0000,0x0000, 0x04BE,0x0000,0x0000,0x0000,
3191
0x04BF,0x0000,0x0000,0x0000, 0x04C0,0x0000,0x0000,0x0000,
3192
0x04C1,0x0000,0x0000,0x0000, 0x04C2,0x0000,0x0000,0x0000,
3193
0x04C3,0x0000,0x0000,0x0000, 0x04C4,0x0000,0x0000,0x0000,
3194
0x04C5,0x0000,0x0000,0x0000, 0x04C6,0x0000,0x0000,0x0000,
3195
0x04C7,0x0000,0x0000,0x0000, 0x04C8,0x0000,0x0000,0x0000,
3196
0x04C9,0x0000,0x0000,0x0000, 0x04CA,0x0000,0x0000,0x0000,
3197
0x04CB,0x0000,0x0000,0x0000, 0x04CC,0x0000,0x0000,0x0000,
3198
0x04CD,0x0000,0x0000,0x0000, 0x04CE,0x0000,0x0000,0x0000,
3199
0x04CF,0x0000,0x0000,0x0000, 0x04D0,0x0000,0x0000,0x0000,
3200
0x04D1,0x0000,0x0000,0x0000, 0x04D2,0x0000,0x0000,0x0000,
3201
0x04D3,0x0000,0x0000,0x0000, 0x04D4,0x0000,0x0000,0x0000,
3202
0x04D5,0x0000,0x0000,0x0000, 0x04D6,0x0000,0x0000,0x0000,
3203
0x04D7,0x0000,0x0000,0x0000, 0x04D8,0x0000,0x0000,0x0000,
3204
0x04D9,0x0000,0x0000,0x0000, 0x04DA,0x0000,0x0000,0x0000,
3205
0x04DB,0x0000,0x0000,0x0000, 0x04DC,0x0000,0x0000,0x0000,
3206
0x04DD,0x0000,0x0000,0x0000, 0x04DE,0x0000,0x0000,0x0000,
3207
0x04DF,0x0000,0x0000,0x0000, 0x04E0,0x0000,0x0000,0x0000,
3208
0x04E1,0x0000,0x0000,0x0000, 0x04E2,0x0000,0x0000,0x0000,
3209
0x0489,0x0000,0x0000,0x0000, 0x048A,0x0000,0x0000,0x0000,
3210
0x0498,0x0000,0x0000,0x0000, 0x0499,0x0000,0x0000,0x0000,
3211
0x04E3,0x0000,0x0000,0x0000, 0x04E4,0x0000,0x0000,0x0000,
3212
0x04E5,0x0000,0x0000,0x0000, 0x04E6,0x0000,0x0000,0x0000,
3213
0x04E7,0x0000,0x0000,0x0000, 0x04E8,0x0000,0x0000,0x0000,
3214
0x04B5,0x0000,0x0000,0x0000, 0x04B6,0x0000,0x0000,0x0000,
3215
0x04B7,0x0000,0x0000,0x0000, 0x04B8,0x0000,0x0000,0x0000,
3216
0x04E9,0x0000,0x0000,0x0000, 0x04EA,0x0000,0x0000,0x0000,
3217
0x04EB,0x0000,0x0000,0x0000, 0x04EC,0x0000,0x0000,0x0000,
3218
0x04ED,0x0000,0x0000,0x0000, 0x04EE,0x0000,0x0000,0x0000,
3219
0x04EF,0x0000,0x0000,0x0000, 0x04F0,0x0000,0x0000,0x0000,
3220
0x04F1,0x0000,0x0000,0x0000, 0x04F2,0x0000,0x0000,0x0000,
3221
0x04F3,0x0000,0x0000,0x0000, 0x04F4,0x0000,0x0000,0x0000,
3222
0x04F5,0x0000,0x0000,0x0000, 0x04F6,0x0000,0x0000,0x0000,
3223
0x04F7,0x0000,0x0000,0x0000, 0x04F8,0x0000,0x0000,0x0000,
3224
0x04F9,0x0000,0x0000,0x0000, 0x04FA,0x0000,0x0000,0x0000
3225
};
3226
206 by Brian Aker
Removed final uint dead types.
3227
uint16_t page023data[]= { /* 2300 (3 weights per char) */
1 by brian
clean slate
3228
0x04FB,0x0000,0x0000, 0x04FC,0x0000,0x0000, 0x04FD,0x0000,0x0000,
3229
0x04FE,0x0000,0x0000, 0x04FF,0x0000,0x0000, 0x0500,0x0000,0x0000,
3230
0x0501,0x0000,0x0000, 0x0502,0x0000,0x0000, 0x0503,0x0000,0x0000,
3231
0x0504,0x0000,0x0000, 0x0505,0x0000,0x0000, 0x0506,0x0000,0x0000,
3232
0x0507,0x0000,0x0000, 0x0508,0x0000,0x0000, 0x0509,0x0000,0x0000,
3233
0x050A,0x0000,0x0000, 0x050B,0x0000,0x0000, 0x050C,0x0000,0x0000,
3234
0x050D,0x0000,0x0000, 0x050E,0x0000,0x0000, 0x050F,0x0000,0x0000,
3235
0x0510,0x0000,0x0000, 0x0511,0x0000,0x0000, 0x0512,0x0000,0x0000,
3236
0x0513,0x0000,0x0000, 0x0514,0x0000,0x0000, 0x0515,0x0000,0x0000,
3237
0x0516,0x0000,0x0000, 0x0517,0x0000,0x0000, 0x0518,0x0000,0x0000,
3238
0x0519,0x0000,0x0000, 0x051A,0x0000,0x0000, 0x051B,0x0000,0x0000,
3239
0x051C,0x0000,0x0000, 0x051D,0x0000,0x0000, 0x051E,0x0000,0x0000,
3240
0x051F,0x0000,0x0000, 0x0520,0x0000,0x0000, 0x0521,0x0000,0x0000,
3241
0x0522,0x0000,0x0000, 0x0523,0x0000,0x0000, 0x02AE,0x0000,0x0000,
3242
0x02AF,0x0000,0x0000, 0x0524,0x0000,0x0000, 0x0525,0x0000,0x0000,
3243
0x0526,0x0000,0x0000, 0x0527,0x0000,0x0000, 0x0528,0x0000,0x0000,
3244
0x0529,0x0000,0x0000, 0x052A,0x0000,0x0000, 0x052B,0x0000,0x0000,
3245
0x052C,0x0000,0x0000, 0x052D,0x0000,0x0000, 0x052E,0x0000,0x0000,
3246
0x052F,0x0000,0x0000, 0x0530,0x0000,0x0000, 0x0531,0x0000,0x0000,
3247
0x0532,0x0000,0x0000, 0x0533,0x0000,0x0000, 0x0534,0x0000,0x0000,
3248
0x0535,0x0000,0x0000, 0x0536,0x0000,0x0000, 0x0537,0x0000,0x0000,
3249
0x0538,0x0000,0x0000, 0x0539,0x0000,0x0000, 0x053A,0x0000,0x0000,
3250
0x053B,0x0000,0x0000, 0x053C,0x0000,0x0000, 0x053D,0x0000,0x0000,
3251
0x053E,0x0000,0x0000, 0x053F,0x0000,0x0000, 0x0540,0x0000,0x0000,
3252
0x0541,0x0000,0x0000, 0x0542,0x0000,0x0000, 0x0543,0x0000,0x0000,
3253
0x0544,0x0000,0x0000, 0x0545,0x0000,0x0000, 0x0546,0x0000,0x0000,
3254
0x0547,0x0000,0x0000, 0x0548,0x0000,0x0000, 0x0549,0x0000,0x0000,
3255
0x054A,0x0000,0x0000, 0x054B,0x0000,0x0000, 0x054C,0x0000,0x0000,
3256
0x054D,0x0000,0x0000, 0x054E,0x0000,0x0000, 0x054F,0x0000,0x0000,
3257
0x0550,0x0000,0x0000, 0x0551,0x0000,0x0000, 0x0552,0x0000,0x0000,
3258
0x0553,0x0000,0x0000, 0x0554,0x0000,0x0000, 0x0555,0x0000,0x0000,
3259
0x0556,0x0000,0x0000, 0x0557,0x0000,0x0000, 0x0558,0x0000,0x0000,
3260
0x0559,0x0000,0x0000, 0x055A,0x0000,0x0000, 0x055B,0x0000,0x0000,
3261
0x055C,0x0000,0x0000, 0x055D,0x0000,0x0000, 0x055E,0x0000,0x0000,
3262
0x055F,0x0000,0x0000, 0x0560,0x0000,0x0000, 0x0561,0x0000,0x0000,
3263
0x0562,0x0000,0x0000, 0x0563,0x0000,0x0000, 0x0564,0x0000,0x0000,
3264
0x0565,0x0000,0x0000, 0x0566,0x0000,0x0000, 0x0567,0x0000,0x0000,
3265
0x0568,0x0000,0x0000, 0x0569,0x0000,0x0000, 0x056A,0x0000,0x0000,
3266
0x056B,0x0000,0x0000, 0x056C,0x0000,0x0000, 0x056D,0x0000,0x0000,
3267
0x056E,0x0000,0x0000, 0x056F,0x0000,0x0000, 0x0570,0x0000,0x0000,
3268
0x0571,0x0000,0x0000, 0x0572,0x0000,0x0000, 0x0573,0x0000,0x0000,
3269
0x0574,0x0000,0x0000, 0x0575,0x0000,0x0000, 0x0576,0x0000,0x0000,
3270
0x0577,0x0000,0x0000, 0x0578,0x0000,0x0000, 0x0579,0x0000,0x0000,
3271
0x057A,0x0000,0x0000, 0x057B,0x0000,0x0000, 0x057C,0x0000,0x0000,
3272
0x057D,0x0000,0x0000, 0x057E,0x0000,0x0000, 0x057F,0x0000,0x0000,
3273
0x0580,0x0000,0x0000, 0x0581,0x0000,0x0000, 0x0582,0x0000,0x0000,
3274
0x0583,0x0000,0x0000, 0x0584,0x0000,0x0000, 0x0585,0x0000,0x0000,
3275
0x0586,0x0000,0x0000, 0x0587,0x0000,0x0000, 0x0588,0x0000,0x0000,
3276
0x0589,0x0000,0x0000, 0x058A,0x0000,0x0000, 0x058B,0x0000,0x0000,
3277
0x058C,0x0000,0x0000, 0x058D,0x0000,0x0000, 0x058E,0x0000,0x0000,
3278
0x058F,0x0000,0x0000, 0x0590,0x0000,0x0000, 0x0591,0x0000,0x0000,
3279
0x0592,0x0000,0x0000, 0x0593,0x0000,0x0000, 0x0594,0x0000,0x0000,
3280
0x0595,0x0000,0x0000, 0x0596,0x0000,0x0000, 0x0597,0x0000,0x0000,
3281
0x0598,0x0000,0x0000, 0x0599,0x0000,0x0000, 0x059A,0x0000,0x0000,
3282
0x059B,0x0000,0x0000, 0x059C,0x0000,0x0000, 0x059D,0x0000,0x0000,
3283
0x059E,0x0000,0x0000, 0x059F,0x0000,0x0000, 0x05A0,0x0000,0x0000,
3284
0x05A1,0x0000,0x0000, 0x05A2,0x0000,0x0000, 0x05A3,0x0000,0x0000,
3285
0x05A4,0x0000,0x0000, 0x05A5,0x0000,0x0000, 0x05A6,0x0000,0x0000,
3286
0x05A7,0x0000,0x0000, 0x05A8,0x0000,0x0000, 0x05A9,0x0000,0x0000,
3287
0x05AA,0x0000,0x0000, 0x05AB,0x0000,0x0000, 0x05AC,0x0000,0x0000,
3288
0x05AD,0x0000,0x0000, 0x05AE,0x0000,0x0000, 0x05AF,0x0000,0x0000,
3289
0x05B0,0x0000,0x0000, 0x05B1,0x0000,0x0000, 0x05B2,0x0000,0x0000,
3290
0x05B3,0x0000,0x0000, 0x05B4,0x0000,0x0000, 0x05B5,0x0000,0x0000,
3291
0x05B6,0x0000,0x0000, 0x05B7,0x0000,0x0000, 0x05B8,0x0000,0x0000,
3292
0x05B9,0x0000,0x0000, 0x05BA,0x0000,0x0000, 0x05BB,0x0000,0x0000,
3293
0x05BC,0x0000,0x0000, 0x05BD,0x0000,0x0000, 0x05BE,0x0000,0x0000,
3294
0x05BF,0x0000,0x0000, 0x05C0,0x0000,0x0000, 0x05C1,0x0000,0x0000,
3295
0x05C2,0x0000,0x0000, 0x05C3,0x0000,0x0000, 0x05C4,0x0000,0x0000,
3296
0x05C5,0x0000,0x0000, 0x05C6,0x0000,0x0000, 0x05C7,0x0000,0x0000,
3297
0x05C8,0x0000,0x0000, 0x05C9,0x0000,0x0000, 0xFBC0,0xA3D1,0x0000,
3298
0xFBC0,0xA3D2,0x0000, 0xFBC0,0xA3D3,0x0000, 0xFBC0,0xA3D4,0x0000,
3299
0xFBC0,0xA3D5,0x0000, 0xFBC0,0xA3D6,0x0000, 0xFBC0,0xA3D7,0x0000,
3300
0xFBC0,0xA3D8,0x0000, 0xFBC0,0xA3D9,0x0000, 0xFBC0,0xA3DA,0x0000,
3301
0xFBC0,0xA3DB,0x0000, 0xFBC0,0xA3DC,0x0000, 0xFBC0,0xA3DD,0x0000,
3302
0xFBC0,0xA3DE,0x0000, 0xFBC0,0xA3DF,0x0000, 0xFBC0,0xA3E0,0x0000,
3303
0xFBC0,0xA3E1,0x0000, 0xFBC0,0xA3E2,0x0000, 0xFBC0,0xA3E3,0x0000,
3304
0xFBC0,0xA3E4,0x0000, 0xFBC0,0xA3E5,0x0000, 0xFBC0,0xA3E6,0x0000,
3305
0xFBC0,0xA3E7,0x0000, 0xFBC0,0xA3E8,0x0000, 0xFBC0,0xA3E9,0x0000,
3306
0xFBC0,0xA3EA,0x0000, 0xFBC0,0xA3EB,0x0000, 0xFBC0,0xA3EC,0x0000,
3307
0xFBC0,0xA3ED,0x0000, 0xFBC0,0xA3EE,0x0000, 0xFBC0,0xA3EF,0x0000,
3308
0xFBC0,0xA3F0,0x0000, 0xFBC0,0xA3F1,0x0000, 0xFBC0,0xA3F2,0x0000,
3309
0xFBC0,0xA3F3,0x0000, 0xFBC0,0xA3F4,0x0000, 0xFBC0,0xA3F5,0x0000,
3310
0xFBC0,0xA3F6,0x0000, 0xFBC0,0xA3F7,0x0000, 0xFBC0,0xA3F8,0x0000,
3311
0xFBC0,0xA3F9,0x0000, 0xFBC0,0xA3FA,0x0000, 0xFBC0,0xA3FB,0x0000,
3312
0xFBC0,0xA3FC,0x0000, 0xFBC0,0xA3FD,0x0000, 0xFBC0,0xA3FE,0x0000,
3313
0xFBC0,0xA3FF,0x0000 };
3314
206 by Brian Aker
Removed final uint dead types.
3315
uint16_t page024data[]= { /* 2400 (5 weights per char) */
1 by brian
clean slate
3316
0x05CA,0x0000,0x0000,0x0000,0x0000,
3317
0x05CB,0x0000,0x0000,0x0000,0x0000,
3318
0x05CC,0x0000,0x0000,0x0000,0x0000,
3319
0x05CD,0x0000,0x0000,0x0000,0x0000,
3320
0x05CE,0x0000,0x0000,0x0000,0x0000,
3321
0x05CF,0x0000,0x0000,0x0000,0x0000,
3322
0x05D0,0x0000,0x0000,0x0000,0x0000,
3323
0x05D1,0x0000,0x0000,0x0000,0x0000,
3324
0x05D2,0x0000,0x0000,0x0000,0x0000,
3325
0x05D3,0x0000,0x0000,0x0000,0x0000,
3326
0x05D4,0x0000,0x0000,0x0000,0x0000,
3327
0x05D5,0x0000,0x0000,0x0000,0x0000,
3328
0x05D6,0x0000,0x0000,0x0000,0x0000,
3329
0x05D7,0x0000,0x0000,0x0000,0x0000,
3330
0x05D8,0x0000,0x0000,0x0000,0x0000,
3331
0x05D9,0x0000,0x0000,0x0000,0x0000,
3332
0x05DA,0x0000,0x0000,0x0000,0x0000,
3333
0x05DB,0x0000,0x0000,0x0000,0x0000,
3334
0x05DC,0x0000,0x0000,0x0000,0x0000,
3335
0x05DD,0x0000,0x0000,0x0000,0x0000,
3336
0x05DE,0x0000,0x0000,0x0000,0x0000,
3337
0x05DF,0x0000,0x0000,0x0000,0x0000,
3338
0x05E0,0x0000,0x0000,0x0000,0x0000,
3339
0x05E1,0x0000,0x0000,0x0000,0x0000,
3340
0x05E2,0x0000,0x0000,0x0000,0x0000,
3341
0x05E3,0x0000,0x0000,0x0000,0x0000,
3342
0x05E4,0x0000,0x0000,0x0000,0x0000,
3343
0x05E5,0x0000,0x0000,0x0000,0x0000,
3344
0x05E6,0x0000,0x0000,0x0000,0x0000,
3345
0x05E7,0x0000,0x0000,0x0000,0x0000,
3346
0x05E8,0x0000,0x0000,0x0000,0x0000,
3347
0x05E9,0x0000,0x0000,0x0000,0x0000,
3348
0x05EA,0x0000,0x0000,0x0000,0x0000,
3349
0x05EB,0x0000,0x0000,0x0000,0x0000,
3350
0x05EC,0x0000,0x0000,0x0000,0x0000,
3351
0x05ED,0x0000,0x0000,0x0000,0x0000,
3352
0x05EE,0x0000,0x0000,0x0000,0x0000,
3353
0x05EF,0x0000,0x0000,0x0000,0x0000,
3354
0x05F0,0x0000,0x0000,0x0000,0x0000,
3355
0xFBC0,0xA427,0x0000,0x0000,0x0000,
3356
0xFBC0,0xA428,0x0000,0x0000,0x0000,
3357
0xFBC0,0xA429,0x0000,0x0000,0x0000,
3358
0xFBC0,0xA42A,0x0000,0x0000,0x0000,
3359
0xFBC0,0xA42B,0x0000,0x0000,0x0000,
3360
0xFBC0,0xA42C,0x0000,0x0000,0x0000,
3361
0xFBC0,0xA42D,0x0000,0x0000,0x0000,
3362
0xFBC0,0xA42E,0x0000,0x0000,0x0000,
3363
0xFBC0,0xA42F,0x0000,0x0000,0x0000,
3364
0xFBC0,0xA430,0x0000,0x0000,0x0000,
3365
0xFBC0,0xA431,0x0000,0x0000,0x0000,
3366
0xFBC0,0xA432,0x0000,0x0000,0x0000,
3367
0xFBC0,0xA433,0x0000,0x0000,0x0000,
3368
0xFBC0,0xA434,0x0000,0x0000,0x0000,
3369
0xFBC0,0xA435,0x0000,0x0000,0x0000,
3370
0xFBC0,0xA436,0x0000,0x0000,0x0000,
3371
0xFBC0,0xA437,0x0000,0x0000,0x0000,
3372
0xFBC0,0xA438,0x0000,0x0000,0x0000,
3373
0xFBC0,0xA439,0x0000,0x0000,0x0000,
3374
0xFBC0,0xA43A,0x0000,0x0000,0x0000,
3375
0xFBC0,0xA43B,0x0000,0x0000,0x0000,
3376
0xFBC0,0xA43C,0x0000,0x0000,0x0000,
3377
0xFBC0,0xA43D,0x0000,0x0000,0x0000,
3378
0xFBC0,0xA43E,0x0000,0x0000,0x0000,
3379
0xFBC0,0xA43F,0x0000,0x0000,0x0000,
3380
0x05F1,0x0000,0x0000,0x0000,0x0000,
3381
0x05F2,0x0000,0x0000,0x0000,0x0000,
3382
0x05F3,0x0000,0x0000,0x0000,0x0000,
3383
0x05F4,0x0000,0x0000,0x0000,0x0000,
3384
0x05F5,0x0000,0x0000,0x0000,0x0000,
3385
0x05F6,0x0000,0x0000,0x0000,0x0000,
3386
0x05F7,0x0000,0x0000,0x0000,0x0000,
3387
0x05F8,0x0000,0x0000,0x0000,0x0000,
3388
0x05F9,0x0000,0x0000,0x0000,0x0000,
3389
0x05FA,0x0000,0x0000,0x0000,0x0000,
3390
0x05FB,0x0000,0x0000,0x0000,0x0000,
3391
0xFBC0,0xA44B,0x0000,0x0000,0x0000,
3392
0xFBC0,0xA44C,0x0000,0x0000,0x0000,
3393
0xFBC0,0xA44D,0x0000,0x0000,0x0000,
3394
0xFBC0,0xA44E,0x0000,0x0000,0x0000,
3395
0xFBC0,0xA44F,0x0000,0x0000,0x0000,
3396
0xFBC0,0xA450,0x0000,0x0000,0x0000,
3397
0xFBC0,0xA451,0x0000,0x0000,0x0000,
3398
0xFBC0,0xA452,0x0000,0x0000,0x0000,
3399
0xFBC0,0xA453,0x0000,0x0000,0x0000,
3400
0xFBC0,0xA454,0x0000,0x0000,0x0000,
3401
0xFBC0,0xA455,0x0000,0x0000,0x0000,
3402
0xFBC0,0xA456,0x0000,0x0000,0x0000,
3403
0xFBC0,0xA457,0x0000,0x0000,0x0000,
3404
0xFBC0,0xA458,0x0000,0x0000,0x0000,
3405
0xFBC0,0xA459,0x0000,0x0000,0x0000,
3406
0xFBC0,0xA45A,0x0000,0x0000,0x0000,
3407
0xFBC0,0xA45B,0x0000,0x0000,0x0000,
3408
0xFBC0,0xA45C,0x0000,0x0000,0x0000,
3409
0xFBC0,0xA45D,0x0000,0x0000,0x0000,
3410
0xFBC0,0xA45E,0x0000,0x0000,0x0000,
3411
0xFBC0,0xA45F,0x0000,0x0000,0x0000,
3412
0x0E2A,0x0000,0x0000,0x0000,0x0000,
3413
0x0E2B,0x0000,0x0000,0x0000,0x0000,
3414
0x0E2C,0x0000,0x0000,0x0000,0x0000,
3415
0x0E2D,0x0000,0x0000,0x0000,0x0000,
3416
0x0E2E,0x0000,0x0000,0x0000,0x0000,
3417
0x0E2F,0x0000,0x0000,0x0000,0x0000,
3418
0x0E30,0x0000,0x0000,0x0000,0x0000,
3419
0x0E31,0x0000,0x0000,0x0000,0x0000,
3420
0x0E32,0x0000,0x0000,0x0000,0x0000,
3421
0x0E2A,0x0E29,0x0000,0x0000,0x0000,
3422
0x0E2A,0x0E2A,0x0000,0x0000,0x0000,
3423
0x0E2A,0x0E2B,0x0000,0x0000,0x0000,
3424
0x0E2A,0x0E2C,0x0000,0x0000,0x0000,
3425
0x0E2A,0x0E2D,0x0000,0x0000,0x0000,
3426
0x0E2A,0x0E2E,0x0000,0x0000,0x0000,
3427
0x0E2A,0x0E2F,0x0000,0x0000,0x0000,
3428
0x0E2A,0x0E30,0x0000,0x0000,0x0000,
3429
0x0E2A,0x0E31,0x0000,0x0000,0x0000,
3430
0x0E2A,0x0E32,0x0000,0x0000,0x0000,
3431
0x0E2B,0x0E29,0x0000,0x0000,0x0000,
3432
0x0288,0x0E2A,0x0289,0x0000,0x0000,
3433
0x0288,0x0E2B,0x0289,0x0000,0x0000,
3434
0x0288,0x0E2C,0x0289,0x0000,0x0000,
3435
0x0288,0x0E2D,0x0289,0x0000,0x0000,
3436
0x0288,0x0E2E,0x0289,0x0000,0x0000,
3437
0x0288,0x0E2F,0x0289,0x0000,0x0000,
3438
0x0288,0x0E30,0x0289,0x0000,0x0000,
3439
0x0288,0x0E31,0x0289,0x0000,0x0000,
3440
0x0288,0x0E32,0x0289,0x0000,0x0000,
3441
0x0288,0x0E2A,0x0E29,0x0289,0x0000,
3442
0x0288,0x0E2A,0x0E2A,0x0289,0x0000,
3443
0x0288,0x0E2A,0x0E2B,0x0289,0x0000,
3444
0x0288,0x0E2A,0x0E2C,0x0289,0x0000,
3445
0x0288,0x0E2A,0x0E2D,0x0289,0x0000,
3446
0x0288,0x0E2A,0x0E2E,0x0289,0x0000,
3447
0x0288,0x0E2A,0x0E2F,0x0289,0x0000,
3448
0x0288,0x0E2A,0x0E30,0x0289,0x0000,
3449
0x0288,0x0E2A,0x0E31,0x0289,0x0000,
3450
0x0288,0x0E2A,0x0E32,0x0289,0x0000,
3451
0x0288,0x0E2B,0x0E29,0x0289,0x0000,
3452
0x0E2A,0x025D,0x0000,0x0000,0x0000,
3453
0x0E2B,0x025D,0x0000,0x0000,0x0000,
3454
0x0E2C,0x025D,0x0000,0x0000,0x0000,
3455
0x0E2D,0x025D,0x0000,0x0000,0x0000,
3456
0x0E2E,0x025D,0x0000,0x0000,0x0000,
3457
0x0E2F,0x025D,0x0000,0x0000,0x0000,
3458
0x0E30,0x025D,0x0000,0x0000,0x0000,
3459
0x0E31,0x025D,0x0000,0x0000,0x0000,
3460
0x0E32,0x025D,0x0000,0x0000,0x0000,
3461
0x0E2A,0x0E29,0x025D,0x0000,0x0000,
3462
0x0E2A,0x0E2A,0x025D,0x0000,0x0000,
3463
0x0E2A,0x0E2B,0x025D,0x0000,0x0000,
3464
0x0E2A,0x0E2C,0x025D,0x0000,0x0000,
3465
0x0E2A,0x0E2D,0x025D,0x0000,0x0000,
3466
0x0E2A,0x0E2E,0x025D,0x0000,0x0000,
3467
0x0E2A,0x0E2F,0x025D,0x0000,0x0000,
3468
0x0E2A,0x0E30,0x025D,0x0000,0x0000,
3469
0x0E2A,0x0E31,0x025D,0x0000,0x0000,
3470
0x0E2A,0x0E32,0x025D,0x0000,0x0000,
3471
0x0E2B,0x0E29,0x025D,0x0000,0x0000,
3472
0x0288,0x0E33,0x0289,0x0000,0x0000,
3473
0x0288,0x0E4A,0x0289,0x0000,0x0000,
3474
0x0288,0x0E60,0x0289,0x0000,0x0000,
3475
0x0288,0x0E6D,0x0289,0x0000,0x0000,
3476
0x0288,0x0E8B,0x0289,0x0000,0x0000,
3477
0x0288,0x0EB9,0x0289,0x0000,0x0000,
3478
0x0288,0x0EC1,0x0289,0x0000,0x0000,
3479
0x0288,0x0EE1,0x0289,0x0000,0x0000,
3480
0x0288,0x0EFB,0x0289,0x0000,0x0000,
3481
0x0288,0x0F10,0x0289,0x0000,0x0000,
3482
0x0288,0x0F21,0x0289,0x0000,0x0000,
3483
0x0288,0x0F2E,0x0289,0x0000,0x0000,
3484
0x0288,0x0F5B,0x0289,0x0000,0x0000,
3485
0x0288,0x0F64,0x0289,0x0000,0x0000,
3486
0x0288,0x0F82,0x0289,0x0000,0x0000,
3487
0x0288,0x0FA7,0x0289,0x0000,0x0000,
3488
0x0288,0x0FB4,0x0289,0x0000,0x0000,
3489
0x0288,0x0FC0,0x0289,0x0000,0x0000,
3490
0x0288,0x0FEA,0x0289,0x0000,0x0000,
3491
0x0288,0x1002,0x0289,0x0000,0x0000,
3492
0x0288,0x101F,0x0289,0x0000,0x0000,
3493
0x0288,0x1044,0x0289,0x0000,0x0000,
3494
0x0288,0x1051,0x0289,0x0000,0x0000,
3495
0x0288,0x105A,0x0289,0x0000,0x0000,
3496
0x0288,0x105E,0x0289,0x0000,0x0000,
3497
0x0288,0x106A,0x0289,0x0000,0x0000,
3498
0x0E33,0x0000,0x0000,0x0000,0x0000,
3499
0x0E4A,0x0000,0x0000,0x0000,0x0000,
3500
0x0E60,0x0000,0x0000,0x0000,0x0000,
3501
0x0E6D,0x0000,0x0000,0x0000,0x0000,
3502
0x0E8B,0x0000,0x0000,0x0000,0x0000,
3503
0x0EB9,0x0000,0x0000,0x0000,0x0000,
3504
0x0EC1,0x0000,0x0000,0x0000,0x0000,
3505
0x0EE1,0x0000,0x0000,0x0000,0x0000,
3506
0x0EFB,0x0000,0x0000,0x0000,0x0000,
3507
0x0F10,0x0000,0x0000,0x0000,0x0000,
3508
0x0F21,0x0000,0x0000,0x0000,0x0000,
3509
0x0F2E,0x0000,0x0000,0x0000,0x0000,
3510
0x0F5B,0x0000,0x0000,0x0000,0x0000,
3511
0x0F64,0x0000,0x0000,0x0000,0x0000,
3512
0x0F82,0x0000,0x0000,0x0000,0x0000,
3513
0x0FA7,0x0000,0x0000,0x0000,0x0000,
3514
0x0FB4,0x0000,0x0000,0x0000,0x0000,
3515
0x0FC0,0x0000,0x0000,0x0000,0x0000,
3516
0x0FEA,0x0000,0x0000,0x0000,0x0000,
3517
0x1002,0x0000,0x0000,0x0000,0x0000,
3518
0x101F,0x0000,0x0000,0x0000,0x0000,
3519
0x1044,0x0000,0x0000,0x0000,0x0000,
3520
0x1051,0x0000,0x0000,0x0000,0x0000,
3521
0x105A,0x0000,0x0000,0x0000,0x0000,
3522
0x105E,0x0000,0x0000,0x0000,0x0000,
3523
0x106A,0x0000,0x0000,0x0000,0x0000,
3524
0x0E33,0x0000,0x0000,0x0000,0x0000,
3525
0x0E4A,0x0000,0x0000,0x0000,0x0000,
3526
0x0E60,0x0000,0x0000,0x0000,0x0000,
3527
0x0E6D,0x0000,0x0000,0x0000,0x0000,
3528
0x0E8B,0x0000,0x0000,0x0000,0x0000,
3529
0x0EB9,0x0000,0x0000,0x0000,0x0000,
3530
0x0EC1,0x0000,0x0000,0x0000,0x0000,
3531
0x0EE1,0x0000,0x0000,0x0000,0x0000,
3532
0x0EFB,0x0000,0x0000,0x0000,0x0000,
3533
0x0F10,0x0000,0x0000,0x0000,0x0000,
3534
0x0F21,0x0000,0x0000,0x0000,0x0000,
3535
0x0F2E,0x0000,0x0000,0x0000,0x0000,
3536
0x0F5B,0x0000,0x0000,0x0000,0x0000,
3537
0x0F64,0x0000,0x0000,0x0000,0x0000,
3538
0x0F82,0x0000,0x0000,0x0000,0x0000,
3539
0x0FA7,0x0000,0x0000,0x0000,0x0000,
3540
0x0FB4,0x0000,0x0000,0x0000,0x0000,
3541
0x0FC0,0x0000,0x0000,0x0000,0x0000,
3542
0x0FEA,0x0000,0x0000,0x0000,0x0000,
3543
0x1002,0x0000,0x0000,0x0000,0x0000,
3544
0x101F,0x0000,0x0000,0x0000,0x0000,
3545
0x1044,0x0000,0x0000,0x0000,0x0000,
3546
0x1051,0x0000,0x0000,0x0000,0x0000,
3547
0x105A,0x0000,0x0000,0x0000,0x0000,
3548
0x105E,0x0000,0x0000,0x0000,0x0000,
3549
0x106A,0x0000,0x0000,0x0000,0x0000,
3550
0x0E29,0x0000,0x0000,0x0000,0x0000,
3551
0x0E2A,0x0E2A,0x0000,0x0000,0x0000,
3552
0x0E2A,0x0E2B,0x0000,0x0000,0x0000,
3553
0x0E2A,0x0E2C,0x0000,0x0000,0x0000,
3554
0x0E2A,0x0E2D,0x0000,0x0000,0x0000,
3555
0x0E2A,0x0E2E,0x0000,0x0000,0x0000,
3556
0x0E2A,0x0E2F,0x0000,0x0000,0x0000,
3557
0x0E2A,0x0E30,0x0000,0x0000,0x0000,
3558
0x0E2A,0x0E31,0x0000,0x0000,0x0000,
3559
0x0E2A,0x0E32,0x0000,0x0000,0x0000,
3560
0x0E2B,0x0E29,0x0000,0x0000,0x0000,
3561
0x0E2A,0x0000,0x0000,0x0000,0x0000,
3562
0x0E2B,0x0000,0x0000,0x0000,0x0000,
3563
0x0E2C,0x0000,0x0000,0x0000,0x0000,
3564
0x0E2D,0x0000,0x0000,0x0000,0x0000,
3565
0x0E2E,0x0000,0x0000,0x0000,0x0000,
3566
0x0E2F,0x0000,0x0000,0x0000,0x0000,
3567
0x0E30,0x0000,0x0000,0x0000,0x0000,
3568
0x0E31,0x0000,0x0000,0x0000,0x0000,
3569
0x0E32,0x0000,0x0000,0x0000,0x0000,
3570
0x0E2A,0x0E29,0x0000,0x0000,0x0000,
3571
0x0E29,0x0000,0x0000,0x0000,0x0000
3572
};
3573
206 by Brian Aker
Removed final uint dead types.
3574
uint16_t page025data[]= { /* 2500 (2 weights per char) */
1 by brian
clean slate
3575
0x05FC,0x0000, 0x05FD,0x0000, 0x05FE,0x0000, 0x05FF,0x0000,
3576
0x0600,0x0000, 0x0601,0x0000, 0x0602,0x0000, 0x0603,0x0000,
3577
0x0604,0x0000, 0x0605,0x0000, 0x0606,0x0000, 0x0607,0x0000,
3578
0x0608,0x0000, 0x0609,0x0000, 0x060A,0x0000, 0x060B,0x0000,
3579
0x060C,0x0000, 0x060D,0x0000, 0x060E,0x0000, 0x060F,0x0000,
3580
0x0610,0x0000, 0x0611,0x0000, 0x0612,0x0000, 0x0613,0x0000,
3581
0x0614,0x0000, 0x0615,0x0000, 0x0616,0x0000, 0x0617,0x0000,
3582
0x0618,0x0000, 0x0619,0x0000, 0x061A,0x0000, 0x061B,0x0000,
3583
0x061C,0x0000, 0x061D,0x0000, 0x061E,0x0000, 0x061F,0x0000,
3584
0x0620,0x0000, 0x0621,0x0000, 0x0622,0x0000, 0x0623,0x0000,
3585
0x0624,0x0000, 0x0625,0x0000, 0x0626,0x0000, 0x0627,0x0000,
3586
0x0628,0x0000, 0x0629,0x0000, 0x062A,0x0000, 0x062B,0x0000,
3587
0x062C,0x0000, 0x062D,0x0000, 0x062E,0x0000, 0x062F,0x0000,
3588
0x0630,0x0000, 0x0631,0x0000, 0x0632,0x0000, 0x0633,0x0000,
3589
0x0634,0x0000, 0x0635,0x0000, 0x0636,0x0000, 0x0637,0x0000,
3590
0x0638,0x0000, 0x0639,0x0000, 0x063A,0x0000, 0x063B,0x0000,
3591
0x063C,0x0000, 0x063D,0x0000, 0x063E,0x0000, 0x063F,0x0000,
3592
0x0640,0x0000, 0x0641,0x0000, 0x0642,0x0000, 0x0643,0x0000,
3593
0x0644,0x0000, 0x0645,0x0000, 0x0646,0x0000, 0x0647,0x0000,
3594
0x0648,0x0000, 0x0649,0x0000, 0x064A,0x0000, 0x064B,0x0000,
3595
0x064C,0x0000, 0x064D,0x0000, 0x064E,0x0000, 0x064F,0x0000,
3596
0x0650,0x0000, 0x0651,0x0000, 0x0652,0x0000, 0x0653,0x0000,
3597
0x0654,0x0000, 0x0655,0x0000, 0x0656,0x0000, 0x0657,0x0000,
3598
0x0658,0x0000, 0x0659,0x0000, 0x065A,0x0000, 0x065B,0x0000,
3599
0x065C,0x0000, 0x065D,0x0000, 0x065E,0x0000, 0x065F,0x0000,
3600
0x0660,0x0000, 0x0661,0x0000, 0x0662,0x0000, 0x0663,0x0000,
3601
0x0664,0x0000, 0x0665,0x0000, 0x0666,0x0000, 0x0667,0x0000,
3602
0x0668,0x0000, 0x0669,0x0000, 0x066A,0x0000, 0x066B,0x0000,
3603
0x066C,0x0000, 0x066D,0x0000, 0x066E,0x0000, 0x066F,0x0000,
3604
0x0670,0x0000, 0x0671,0x0000, 0x0672,0x0000, 0x0673,0x0000,
3605
0x0674,0x0000, 0x0675,0x0000, 0x0676,0x0000, 0x0677,0x0000,
3606
0x0678,0x0000, 0x0679,0x0000, 0x067A,0x0000, 0x067B,0x0000,
3607
0x067C,0x0000, 0x067D,0x0000, 0x067E,0x0000, 0x067F,0x0000,
3608
0x0680,0x0000, 0x0681,0x0000, 0x0682,0x0000, 0x0683,0x0000,
3609
0x0684,0x0000, 0x0685,0x0000, 0x0686,0x0000, 0x0687,0x0000,
3610
0x0688,0x0000, 0x0689,0x0000, 0x068A,0x0000, 0x068B,0x0000,
3611
0x068C,0x0000, 0x068D,0x0000, 0x068E,0x0000, 0x068F,0x0000,
3612
0x0690,0x0000, 0x0691,0x0000, 0x0692,0x0000, 0x0693,0x0000,
3613
0x0694,0x0000, 0x0695,0x0000, 0x0696,0x0000, 0x0697,0x0000,
3614
0x0698,0x0000, 0x0699,0x0000, 0x069A,0x0000, 0x069B,0x0000,
3615
0x069C,0x0000, 0x069D,0x0000, 0x069E,0x0000, 0x069F,0x0000,
3616
0x06A0,0x0000, 0x06A1,0x0000, 0x06A2,0x0000, 0x06A3,0x0000,
3617
0x06A4,0x0000, 0x06A5,0x0000, 0x06A6,0x0000, 0x06A7,0x0000,
3618
0x06A8,0x0000, 0x06A9,0x0000, 0x06AA,0x0000, 0x06AB,0x0000,
3619
0x06AC,0x0000, 0x06AD,0x0000, 0x06AE,0x0000, 0x06AF,0x0000,
3620
0x06B0,0x0000, 0x06B1,0x0000, 0x06B2,0x0000, 0x06B3,0x0000,
3621
0x06B4,0x0000, 0x06B5,0x0000, 0x06B6,0x0000, 0x06B7,0x0000,
3622
0x06B8,0x0000, 0x06B9,0x0000, 0x06BA,0x0000, 0x06BB,0x0000,
3623
0x06BC,0x0000, 0x06BD,0x0000, 0x06BE,0x0000, 0x06BF,0x0000,
3624
0x06C0,0x0000, 0x06C1,0x0000, 0x06C2,0x0000, 0x06C3,0x0000,
3625
0x06C4,0x0000, 0x06C5,0x0000, 0x06C6,0x0000, 0x06C7,0x0000,
3626
0x06C8,0x0000, 0x06C9,0x0000, 0x06CA,0x0000, 0x06CB,0x0000,
3627
0x06CC,0x0000, 0x06CD,0x0000, 0x06CE,0x0000, 0x06CF,0x0000,
3628
0x06D0,0x0000, 0x06D1,0x0000, 0x06D2,0x0000, 0x06D3,0x0000,
3629
0x06D4,0x0000, 0x06D5,0x0000, 0x06D6,0x0000, 0x06D7,0x0000,
3630
0x06D8,0x0000, 0x06D9,0x0000, 0x06DA,0x0000, 0x06DB,0x0000,
3631
0x06DC,0x0000, 0x06DD,0x0000, 0x06DE,0x0000, 0x06DF,0x0000,
3632
0x06E0,0x0000, 0x06E1,0x0000, 0x06E2,0x0000, 0x06E3,0x0000,
3633
0x06E4,0x0000, 0x06E5,0x0000, 0x06E6,0x0000, 0x06E7,0x0000,
3634
0x06E8,0x0000, 0x06E9,0x0000, 0x06EA,0x0000, 0x06EB,0x0000,
3635
0x06EC,0x0000, 0x06ED,0x0000, 0x06EE,0x0000, 0x06EF,0x0000,
3636
0x06F0,0x0000, 0x06F1,0x0000, 0x06F2,0x0000, 0x06F3,0x0000,
3637
0x06F4,0x0000, 0x06F5,0x0000, 0x06F6,0x0000, 0x06F7,0x0000,
3638
0x06F8,0x0000, 0x06F9,0x0000, 0x06FA,0x0000, 0x06FB,0x0000
3639
};
3640
206 by Brian Aker
Removed final uint dead types.
3641
uint16_t page026data[]= { /* 2600 (3 weights per char) */
1 by brian
clean slate
3642
0x06FC,0x0000,0x0000, 0x06FD,0x0000,0x0000, 0x06FE,0x0000,0x0000,
3643
0x06FF,0x0000,0x0000, 0x0700,0x0000,0x0000, 0x0701,0x0000,0x0000,
3644
0x0702,0x0000,0x0000, 0x0703,0x0000,0x0000, 0x0704,0x0000,0x0000,
3645
0x0705,0x0000,0x0000, 0x0706,0x0000,0x0000, 0x0707,0x0000,0x0000,
3646
0x0708,0x0000,0x0000, 0x0709,0x0000,0x0000, 0x070A,0x0000,0x0000,
3647
0x070B,0x0000,0x0000, 0x070C,0x0000,0x0000, 0x070D,0x0000,0x0000,
3648
0x070E,0x0000,0x0000, 0x070F,0x0000,0x0000, 0x0710,0x0000,0x0000,
3649
0x0711,0x0000,0x0000, 0x0712,0x0000,0x0000, 0x0713,0x0000,0x0000,
3650
0xFBC0,0xA618,0x0000, 0x0714,0x0000,0x0000, 0x0715,0x0000,0x0000,
3651
0x0716,0x0000,0x0000, 0x0717,0x0000,0x0000, 0x0718,0x0000,0x0000,
3652
0x0719,0x0000,0x0000, 0x071A,0x0000,0x0000, 0x071B,0x0000,0x0000,
3653
0x071C,0x0000,0x0000, 0x071D,0x0000,0x0000, 0x071E,0x0000,0x0000,
3654
0x071F,0x0000,0x0000, 0x0720,0x0000,0x0000, 0x0721,0x0000,0x0000,
3655
0x0722,0x0000,0x0000, 0x0723,0x0000,0x0000, 0x0724,0x0000,0x0000,
3656
0x0725,0x0000,0x0000, 0x0726,0x0000,0x0000, 0x0727,0x0000,0x0000,
3657
0x0728,0x0000,0x0000, 0x0729,0x0000,0x0000, 0x072A,0x0000,0x0000,
3658
0x0B2F,0x0000,0x0000, 0x0B30,0x0000,0x0000, 0x0B31,0x0000,0x0000,
3659
0x0B32,0x0000,0x0000, 0x0B33,0x0000,0x0000, 0x0B34,0x0000,0x0000,
3660
0x0B35,0x0000,0x0000, 0x0B36,0x0000,0x0000, 0x072B,0x0000,0x0000,
3661
0x072C,0x0000,0x0000, 0x072D,0x0000,0x0000, 0x072E,0x0000,0x0000,
3662
0x072F,0x0000,0x0000, 0x0730,0x0000,0x0000, 0x0731,0x0000,0x0000,
3663
0x0732,0x0000,0x0000, 0x0733,0x0000,0x0000, 0x0734,0x0000,0x0000,
3664
0x0735,0x0000,0x0000, 0x0736,0x0000,0x0000, 0x0737,0x0000,0x0000,
3665
0x0738,0x0000,0x0000, 0x0739,0x0000,0x0000, 0x073A,0x0000,0x0000,
3666
0x073B,0x0000,0x0000, 0x073C,0x0000,0x0000, 0x073D,0x0000,0x0000,
3667
0x073E,0x0000,0x0000, 0x073F,0x0000,0x0000, 0x0740,0x0000,0x0000,
3668
0x0741,0x0000,0x0000, 0x0742,0x0000,0x0000, 0x0743,0x0000,0x0000,
3669
0x0744,0x0000,0x0000, 0x0745,0x0000,0x0000, 0x0746,0x0000,0x0000,
3670
0x0747,0x0000,0x0000, 0x0748,0x0000,0x0000, 0x0749,0x0000,0x0000,
3671
0x074A,0x0000,0x0000, 0x074B,0x0000,0x0000, 0x074C,0x0000,0x0000,
3672
0x074D,0x0000,0x0000, 0x074E,0x0000,0x0000, 0x074F,0x0000,0x0000,
3673
0x0750,0x0000,0x0000, 0x0751,0x0000,0x0000, 0x0752,0x0000,0x0000,
3674
0x0753,0x0000,0x0000, 0x0754,0x0000,0x0000, 0x0755,0x0000,0x0000,
3675
0x0756,0x0000,0x0000, 0x0757,0x0000,0x0000, 0x0758,0x0000,0x0000,
3676
0x0759,0x0000,0x0000, 0x075A,0x0000,0x0000, 0x075B,0x0000,0x0000,
3677
0x075C,0x0000,0x0000, 0x075D,0x0000,0x0000, 0x075E,0x0000,0x0000,
3678
0x075F,0x0000,0x0000, 0x0D2B,0x0000,0x0000, 0x0D2C,0x0000,0x0000,
3679
0x0D2D,0x0000,0x0000, 0x0760,0x0000,0x0000, 0x0761,0x0000,0x0000,
3680
0x0762,0x0000,0x0000, 0x0763,0x0000,0x0000, 0x0764,0x0000,0x0000,
3681
0x0765,0x0000,0x0000, 0x0766,0x0000,0x0000, 0x0767,0x0000,0x0000,
3682
0x0768,0x0000,0x0000, 0x0769,0x0000,0x0000, 0x076A,0x0000,0x0000,
3683
0x076B,0x0000,0x0000, 0x076C,0x0000,0x0000, 0x076D,0x0000,0x0000,
3684
0xFBC0,0xA67E,0x0000, 0xFBC0,0xA67F,0x0000, 0x076E,0x0000,0x0000,
3685
0x076F,0x0000,0x0000, 0x0770,0x0000,0x0000, 0x0771,0x0000,0x0000,
3686
0x0772,0x0000,0x0000, 0x0773,0x0000,0x0000, 0x0774,0x0000,0x0000,
3687
0x0775,0x0000,0x0000, 0x0776,0x0000,0x0000, 0x0777,0x0000,0x0000,
3688
0x0B29,0x0000,0x0000, 0x0B2A,0x0000,0x0000, 0x0B2B,0x0000,0x0000,
3689
0x0B2C,0x0000,0x0000, 0x0B2D,0x0000,0x0000, 0x0B2E,0x0000,0x0000,
3690
0x0778,0x0000,0x0000, 0x0779,0x0000,0x0000, 0xFBC0,0xA692,0x0000,
3691
0xFBC0,0xA693,0x0000, 0xFBC0,0xA694,0x0000, 0xFBC0,0xA695,0x0000,
3692
0xFBC0,0xA696,0x0000, 0xFBC0,0xA697,0x0000, 0xFBC0,0xA698,0x0000,
3693
0xFBC0,0xA699,0x0000, 0xFBC0,0xA69A,0x0000, 0xFBC0,0xA69B,0x0000,
3694
0xFBC0,0xA69C,0x0000, 0xFBC0,0xA69D,0x0000, 0xFBC0,0xA69E,0x0000,
3695
0xFBC0,0xA69F,0x0000, 0x077A,0x0000,0x0000, 0x077B,0x0000,0x0000,
3696
0xFBC0,0xA6A2,0x0000, 0xFBC0,0xA6A3,0x0000, 0xFBC0,0xA6A4,0x0000,
3697
0xFBC0,0xA6A5,0x0000, 0xFBC0,0xA6A6,0x0000, 0xFBC0,0xA6A7,0x0000,
3698
0xFBC0,0xA6A8,0x0000, 0xFBC0,0xA6A9,0x0000, 0xFBC0,0xA6AA,0x0000,
3699
0xFBC0,0xA6AB,0x0000, 0xFBC0,0xA6AC,0x0000, 0xFBC0,0xA6AD,0x0000,
3700
0xFBC0,0xA6AE,0x0000, 0xFBC0,0xA6AF,0x0000, 0xFBC0,0xA6B0,0x0000,
3701
0xFBC0,0xA6B1,0x0000, 0xFBC0,0xA6B2,0x0000, 0xFBC0,0xA6B3,0x0000,
3702
0xFBC0,0xA6B4,0x0000, 0xFBC0,0xA6B5,0x0000, 0xFBC0,0xA6B6,0x0000,
3703
0xFBC0,0xA6B7,0x0000, 0xFBC0,0xA6B8,0x0000, 0xFBC0,0xA6B9,0x0000,
3704
0xFBC0,0xA6BA,0x0000, 0xFBC0,0xA6BB,0x0000, 0xFBC0,0xA6BC,0x0000,
3705
0xFBC0,0xA6BD,0x0000, 0xFBC0,0xA6BE,0x0000, 0xFBC0,0xA6BF,0x0000,
3706
0xFBC0,0xA6C0,0x0000, 0xFBC0,0xA6C1,0x0000, 0xFBC0,0xA6C2,0x0000,
3707
0xFBC0,0xA6C3,0x0000, 0xFBC0,0xA6C4,0x0000, 0xFBC0,0xA6C5,0x0000,
3708
0xFBC0,0xA6C6,0x0000, 0xFBC0,0xA6C7,0x0000, 0xFBC0,0xA6C8,0x0000,
3709
0xFBC0,0xA6C9,0x0000, 0xFBC0,0xA6CA,0x0000, 0xFBC0,0xA6CB,0x0000,
3710
0xFBC0,0xA6CC,0x0000, 0xFBC0,0xA6CD,0x0000, 0xFBC0,0xA6CE,0x0000,
3711
0xFBC0,0xA6CF,0x0000, 0xFBC0,0xA6D0,0x0000, 0xFBC0,0xA6D1,0x0000,
3712
0xFBC0,0xA6D2,0x0000, 0xFBC0,0xA6D3,0x0000, 0xFBC0,0xA6D4,0x0000,
3713
0xFBC0,0xA6D5,0x0000, 0xFBC0,0xA6D6,0x0000, 0xFBC0,0xA6D7,0x0000,
3714
0xFBC0,0xA6D8,0x0000, 0xFBC0,0xA6D9,0x0000, 0xFBC0,0xA6DA,0x0000,
3715
0xFBC0,0xA6DB,0x0000, 0xFBC0,0xA6DC,0x0000, 0xFBC0,0xA6DD,0x0000,
3716
0xFBC0,0xA6DE,0x0000, 0xFBC0,0xA6DF,0x0000, 0xFBC0,0xA6E0,0x0000,
3717
0xFBC0,0xA6E1,0x0000, 0xFBC0,0xA6E2,0x0000, 0xFBC0,0xA6E3,0x0000,
3718
0xFBC0,0xA6E4,0x0000, 0xFBC0,0xA6E5,0x0000, 0xFBC0,0xA6E6,0x0000,
3719
0xFBC0,0xA6E7,0x0000, 0xFBC0,0xA6E8,0x0000, 0xFBC0,0xA6E9,0x0000,
3720
0xFBC0,0xA6EA,0x0000, 0xFBC0,0xA6EB,0x0000, 0xFBC0,0xA6EC,0x0000,
3721
0xFBC0,0xA6ED,0x0000, 0xFBC0,0xA6EE,0x0000, 0xFBC0,0xA6EF,0x0000,
3722
0xFBC0,0xA6F0,0x0000, 0xFBC0,0xA6F1,0x0000, 0xFBC0,0xA6F2,0x0000,
3723
0xFBC0,0xA6F3,0x0000, 0xFBC0,0xA6F4,0x0000, 0xFBC0,0xA6F5,0x0000,
3724
0xFBC0,0xA6F6,0x0000, 0xFBC0,0xA6F7,0x0000, 0xFBC0,0xA6F8,0x0000,
3725
0xFBC0,0xA6F9,0x0000, 0xFBC0,0xA6FA,0x0000, 0xFBC0,0xA6FB,0x0000,
3726
0xFBC0,0xA6FC,0x0000, 0xFBC0,0xA6FD,0x0000, 0xFBC0,0xA6FE,0x0000,
3727
0xFBC0,0xA6FF,0x0000 };
3728
206 by Brian Aker
Removed final uint dead types.
3729
uint16_t page027data[]= { /* 2700 (3 weights per char) */
1 by brian
clean slate
3730
0xFBC0,0xA700,0x0000, 0x077C,0x0000,0x0000, 0x077D,0x0000,0x0000,
3731
0x077E,0x0000,0x0000, 0x077F,0x0000,0x0000, 0xFBC0,0xA705,0x0000,
3732
0x0780,0x0000,0x0000, 0x0781,0x0000,0x0000, 0x0782,0x0000,0x0000,
3733
0x0783,0x0000,0x0000, 0xFBC0,0xA70A,0x0000, 0xFBC0,0xA70B,0x0000,
3734
0x0784,0x0000,0x0000, 0x0785,0x0000,0x0000, 0x0786,0x0000,0x0000,
3735
0x0787,0x0000,0x0000, 0x0788,0x0000,0x0000, 0x0789,0x0000,0x0000,
3736
0x078A,0x0000,0x0000, 0x078B,0x0000,0x0000, 0x078C,0x0000,0x0000,
3737
0x078D,0x0000,0x0000, 0x078E,0x0000,0x0000, 0x078F,0x0000,0x0000,
3738
0x0790,0x0000,0x0000, 0x0791,0x0000,0x0000, 0x0792,0x0000,0x0000,
3739
0x0793,0x0000,0x0000, 0x0794,0x0000,0x0000, 0x0795,0x0000,0x0000,
3740
0x0796,0x0000,0x0000, 0x0797,0x0000,0x0000, 0x0798,0x0000,0x0000,
3741
0x0799,0x0000,0x0000, 0x079A,0x0000,0x0000, 0x079B,0x0000,0x0000,
3742
0x079C,0x0000,0x0000, 0x079D,0x0000,0x0000, 0x079E,0x0000,0x0000,
3743
0x079F,0x0000,0x0000, 0xFBC0,0xA728,0x0000, 0x07A0,0x0000,0x0000,
3744
0x07A1,0x0000,0x0000, 0x07A2,0x0000,0x0000, 0x07A3,0x0000,0x0000,
3745
0x07A4,0x0000,0x0000, 0x07A5,0x0000,0x0000, 0x07A6,0x0000,0x0000,
3746
0x07A7,0x0000,0x0000, 0x07A8,0x0000,0x0000, 0x07A9,0x0000,0x0000,
3747
0x07AA,0x0000,0x0000, 0x07AB,0x0000,0x0000, 0x07AC,0x0000,0x0000,
3748
0x07AD,0x0000,0x0000, 0x07AE,0x0000,0x0000, 0x07AF,0x0000,0x0000,
3749
0x07B0,0x0000,0x0000, 0x07B1,0x0000,0x0000, 0x07B2,0x0000,0x0000,
3750
0x07B3,0x0000,0x0000, 0x07B4,0x0000,0x0000, 0x07B5,0x0000,0x0000,
3751
0x07B6,0x0000,0x0000, 0x07B7,0x0000,0x0000, 0x07B8,0x0000,0x0000,
3752
0x07B9,0x0000,0x0000, 0x07BA,0x0000,0x0000, 0x07BB,0x0000,0x0000,
3753
0x07BC,0x0000,0x0000, 0x07BD,0x0000,0x0000, 0x07BE,0x0000,0x0000,
3754
0x07BF,0x0000,0x0000, 0x07C0,0x0000,0x0000, 0x07C1,0x0000,0x0000,
3755
0x07C2,0x0000,0x0000, 0xFBC0,0xA74C,0x0000, 0x07C3,0x0000,0x0000,
3756
0xFBC0,0xA74E,0x0000, 0x07C4,0x0000,0x0000, 0x07C5,0x0000,0x0000,
3757
0x07C6,0x0000,0x0000, 0x07C7,0x0000,0x0000, 0xFBC0,0xA753,0x0000,
3758
0xFBC0,0xA754,0x0000, 0xFBC0,0xA755,0x0000, 0x07C8,0x0000,0x0000,
3759
0xFBC0,0xA757,0x0000, 0x07C9,0x0000,0x0000, 0x07CA,0x0000,0x0000,
3760
0x07CB,0x0000,0x0000, 0x07CC,0x0000,0x0000, 0x07CD,0x0000,0x0000,
3761
0x07CE,0x0000,0x0000, 0x07CF,0x0000,0x0000, 0xFBC0,0xA75F,0x0000,
3762
0xFBC0,0xA760,0x0000, 0x07D0,0x0000,0x0000, 0x07D1,0x0000,0x0000,
3763
0x07D2,0x0000,0x0000, 0x07D3,0x0000,0x0000, 0x07D4,0x0000,0x0000,
3764
0x07D5,0x0000,0x0000, 0x07D6,0x0000,0x0000, 0x07D7,0x0000,0x0000,
3765
0x07D8,0x0000,0x0000, 0x07D9,0x0000,0x0000, 0x07DA,0x0000,0x0000,
3766
0x07DB,0x0000,0x0000, 0x07DC,0x0000,0x0000, 0x07DD,0x0000,0x0000,
3767
0x07DE,0x0000,0x0000, 0x07DF,0x0000,0x0000, 0x07E0,0x0000,0x0000,
3768
0x07E1,0x0000,0x0000, 0x07E2,0x0000,0x0000, 0x07E3,0x0000,0x0000,
3769
0x07E4,0x0000,0x0000, 0x0E2A,0x0000,0x0000, 0x0E2B,0x0000,0x0000,
3770
0x0E2C,0x0000,0x0000, 0x0E2D,0x0000,0x0000, 0x0E2E,0x0000,0x0000,
3771
0x0E2F,0x0000,0x0000, 0x0E30,0x0000,0x0000, 0x0E31,0x0000,0x0000,
3772
0x0E32,0x0000,0x0000, 0x0E2A,0x0E29,0x0000, 0x0E2A,0x0000,0x0000,
3773
0x0E2B,0x0000,0x0000, 0x0E2C,0x0000,0x0000, 0x0E2D,0x0000,0x0000,
3774
0x0E2E,0x0000,0x0000, 0x0E2F,0x0000,0x0000, 0x0E30,0x0000,0x0000,
3775
0x0E31,0x0000,0x0000, 0x0E32,0x0000,0x0000, 0x0E2A,0x0E29,0x0000,
3776
0x0E2A,0x0000,0x0000, 0x0E2B,0x0000,0x0000, 0x0E2C,0x0000,0x0000,
3777
0x0E2D,0x0000,0x0000, 0x0E2E,0x0000,0x0000, 0x0E2F,0x0000,0x0000,
3778
0x0E30,0x0000,0x0000, 0x0E31,0x0000,0x0000, 0x0E32,0x0000,0x0000,
3779
0x0E2A,0x0E29,0x0000, 0x07E5,0x0000,0x0000, 0xFBC0,0xA795,0x0000,
3780
0xFBC0,0xA796,0x0000, 0xFBC0,0xA797,0x0000, 0x07E6,0x0000,0x0000,
3781
0x07E7,0x0000,0x0000, 0x07E8,0x0000,0x0000, 0x07E9,0x0000,0x0000,
3782
0x07EA,0x0000,0x0000, 0x07EB,0x0000,0x0000, 0x07EC,0x0000,0x0000,
3783
0x07ED,0x0000,0x0000, 0x07EE,0x0000,0x0000, 0x07EF,0x0000,0x0000,
3784
0x07F0,0x0000,0x0000, 0x07F1,0x0000,0x0000, 0x07F2,0x0000,0x0000,
3785
0x07F3,0x0000,0x0000, 0x07F4,0x0000,0x0000, 0x07F5,0x0000,0x0000,
3786
0x07F6,0x0000,0x0000, 0x07F7,0x0000,0x0000, 0x07F8,0x0000,0x0000,
3787
0x07F9,0x0000,0x0000, 0x07FA,0x0000,0x0000, 0x07FB,0x0000,0x0000,
3788
0x07FC,0x0000,0x0000, 0x07FD,0x0000,0x0000, 0xFBC0,0xA7B0,0x0000,
3789
0x07FE,0x0000,0x0000, 0x07FF,0x0000,0x0000, 0x0800,0x0000,0x0000,
3790
0x0801,0x0000,0x0000, 0x0802,0x0000,0x0000, 0x0803,0x0000,0x0000,
3791
0x0804,0x0000,0x0000, 0x0805,0x0000,0x0000, 0x0806,0x0000,0x0000,
3792
0x0807,0x0000,0x0000, 0x0808,0x0000,0x0000, 0x0809,0x0000,0x0000,
3793
0x080A,0x0000,0x0000, 0x080B,0x0000,0x0000, 0xFBC0,0xA7BF,0x0000,
3794
0xFBC0,0xA7C0,0x0000, 0xFBC0,0xA7C1,0x0000, 0xFBC0,0xA7C2,0x0000,
3795
0xFBC0,0xA7C3,0x0000, 0xFBC0,0xA7C4,0x0000, 0xFBC0,0xA7C5,0x0000,
3796
0xFBC0,0xA7C6,0x0000, 0xFBC0,0xA7C7,0x0000, 0xFBC0,0xA7C8,0x0000,
3797
0xFBC0,0xA7C9,0x0000, 0xFBC0,0xA7CA,0x0000, 0xFBC0,0xA7CB,0x0000,
3798
0xFBC0,0xA7CC,0x0000, 0xFBC0,0xA7CD,0x0000, 0xFBC0,0xA7CE,0x0000,
3799
0xFBC0,0xA7CF,0x0000, 0x080C,0x0000,0x0000, 0x080D,0x0000,0x0000,
3800
0x080E,0x0000,0x0000, 0x080F,0x0000,0x0000, 0x0810,0x0000,0x0000,
3801
0x0811,0x0000,0x0000, 0x0812,0x0000,0x0000, 0x0813,0x0000,0x0000,
3802
0x0814,0x0000,0x0000, 0x0815,0x0000,0x0000, 0x0816,0x0000,0x0000,
3803
0x0817,0x0000,0x0000, 0x0818,0x0000,0x0000, 0x0819,0x0000,0x0000,
3804
0x081A,0x0000,0x0000, 0x081B,0x0000,0x0000, 0x081C,0x0000,0x0000,
3805
0x081D,0x0000,0x0000, 0x081E,0x0000,0x0000, 0x081F,0x0000,0x0000,
3806
0x0820,0x0000,0x0000, 0x0821,0x0000,0x0000, 0x0822,0x0000,0x0000,
3807
0x0823,0x0000,0x0000, 0x0824,0x0000,0x0000, 0x0825,0x0000,0x0000,
3808
0x0826,0x0000,0x0000, 0x0827,0x0000,0x0000, 0xFBC0,0xA7EC,0x0000,
3809
0xFBC0,0xA7ED,0x0000, 0xFBC0,0xA7EE,0x0000, 0xFBC0,0xA7EF,0x0000,
3810
0x0828,0x0000,0x0000, 0x0829,0x0000,0x0000, 0x082A,0x0000,0x0000,
3811
0x082B,0x0000,0x0000, 0x082C,0x0000,0x0000, 0x082D,0x0000,0x0000,
3812
0x082E,0x0000,0x0000, 0x082F,0x0000,0x0000, 0x0830,0x0000,0x0000,
3813
0x0831,0x0000,0x0000, 0x0832,0x0000,0x0000, 0x0833,0x0000,0x0000,
3814
0x0834,0x0000,0x0000, 0x0835,0x0000,0x0000, 0x0836,0x0000,0x0000,
3815
0x0837,0x0000,0x0000 };
3816
206 by Brian Aker
Removed final uint dead types.
3817
uint16_t page028data[]= { /* 2800 (2 weights per char) */
1 by brian
clean slate
3818
0x0A29,0x0000, 0x0A2A,0x0000, 0x0A2B,0x0000, 0x0A2C,0x0000,
3819
0x0A2D,0x0000, 0x0A2E,0x0000, 0x0A2F,0x0000, 0x0A30,0x0000,
3820
0x0A31,0x0000, 0x0A32,0x0000, 0x0A33,0x0000, 0x0A34,0x0000,
3821
0x0A35,0x0000, 0x0A36,0x0000, 0x0A37,0x0000, 0x0A38,0x0000,
3822
0x0A39,0x0000, 0x0A3A,0x0000, 0x0A3B,0x0000, 0x0A3C,0x0000,
3823
0x0A3D,0x0000, 0x0A3E,0x0000, 0x0A3F,0x0000, 0x0A40,0x0000,
3824
0x0A41,0x0000, 0x0A42,0x0000, 0x0A43,0x0000, 0x0A44,0x0000,
3825
0x0A45,0x0000, 0x0A46,0x0000, 0x0A47,0x0000, 0x0A48,0x0000,
3826
0x0A49,0x0000, 0x0A4A,0x0000, 0x0A4B,0x0000, 0x0A4C,0x0000,
3827
0x0A4D,0x0000, 0x0A4E,0x0000, 0x0A4F,0x0000, 0x0A50,0x0000,
3828
0x0A51,0x0000, 0x0A52,0x0000, 0x0A53,0x0000, 0x0A54,0x0000,
3829
0x0A55,0x0000, 0x0A56,0x0000, 0x0A57,0x0000, 0x0A58,0x0000,
3830
0x0A59,0x0000, 0x0A5A,0x0000, 0x0A5B,0x0000, 0x0A5C,0x0000,
3831
0x0A5D,0x0000, 0x0A5E,0x0000, 0x0A5F,0x0000, 0x0A60,0x0000,
3832
0x0A61,0x0000, 0x0A62,0x0000, 0x0A63,0x0000, 0x0A64,0x0000,
3833
0x0A65,0x0000, 0x0A66,0x0000, 0x0A67,0x0000, 0x0A68,0x0000,
3834
0x0A69,0x0000, 0x0A6A,0x0000, 0x0A6B,0x0000, 0x0A6C,0x0000,
3835
0x0A6D,0x0000, 0x0A6E,0x0000, 0x0A6F,0x0000, 0x0A70,0x0000,
3836
0x0A71,0x0000, 0x0A72,0x0000, 0x0A73,0x0000, 0x0A74,0x0000,
3837
0x0A75,0x0000, 0x0A76,0x0000, 0x0A77,0x0000, 0x0A78,0x0000,
3838
0x0A79,0x0000, 0x0A7A,0x0000, 0x0A7B,0x0000, 0x0A7C,0x0000,
3839
0x0A7D,0x0000, 0x0A7E,0x0000, 0x0A7F,0x0000, 0x0A80,0x0000,
3840
0x0A81,0x0000, 0x0A82,0x0000, 0x0A83,0x0000, 0x0A84,0x0000,
3841
0x0A85,0x0000, 0x0A86,0x0000, 0x0A87,0x0000, 0x0A88,0x0000,
3842
0x0A89,0x0000, 0x0A8A,0x0000, 0x0A8B,0x0000, 0x0A8C,0x0000,
3843
0x0A8D,0x0000, 0x0A8E,0x0000, 0x0A8F,0x0000, 0x0A90,0x0000,
3844
0x0A91,0x0000, 0x0A92,0x0000, 0x0A93,0x0000, 0x0A94,0x0000,
3845
0x0A95,0x0000, 0x0A96,0x0000, 0x0A97,0x0000, 0x0A98,0x0000,
3846
0x0A99,0x0000, 0x0A9A,0x0000, 0x0A9B,0x0000, 0x0A9C,0x0000,
3847
0x0A9D,0x0000, 0x0A9E,0x0000, 0x0A9F,0x0000, 0x0AA0,0x0000,
3848
0x0AA1,0x0000, 0x0AA2,0x0000, 0x0AA3,0x0000, 0x0AA4,0x0000,
3849
0x0AA5,0x0000, 0x0AA6,0x0000, 0x0AA7,0x0000, 0x0AA8,0x0000,
3850
0x0AA9,0x0000, 0x0AAA,0x0000, 0x0AAB,0x0000, 0x0AAC,0x0000,
3851
0x0AAD,0x0000, 0x0AAE,0x0000, 0x0AAF,0x0000, 0x0AB0,0x0000,
3852
0x0AB1,0x0000, 0x0AB2,0x0000, 0x0AB3,0x0000, 0x0AB4,0x0000,
3853
0x0AB5,0x0000, 0x0AB6,0x0000, 0x0AB7,0x0000, 0x0AB8,0x0000,
3854
0x0AB9,0x0000, 0x0ABA,0x0000, 0x0ABB,0x0000, 0x0ABC,0x0000,
3855
0x0ABD,0x0000, 0x0ABE,0x0000, 0x0ABF,0x0000, 0x0AC0,0x0000,
3856
0x0AC1,0x0000, 0x0AC2,0x0000, 0x0AC3,0x0000, 0x0AC4,0x0000,
3857
0x0AC5,0x0000, 0x0AC6,0x0000, 0x0AC7,0x0000, 0x0AC8,0x0000,
3858
0x0AC9,0x0000, 0x0ACA,0x0000, 0x0ACB,0x0000, 0x0ACC,0x0000,
3859
0x0ACD,0x0000, 0x0ACE,0x0000, 0x0ACF,0x0000, 0x0AD0,0x0000,
3860
0x0AD1,0x0000, 0x0AD2,0x0000, 0x0AD3,0x0000, 0x0AD4,0x0000,
3861
0x0AD5,0x0000, 0x0AD6,0x0000, 0x0AD7,0x0000, 0x0AD8,0x0000,
3862
0x0AD9,0x0000, 0x0ADA,0x0000, 0x0ADB,0x0000, 0x0ADC,0x0000,
3863
0x0ADD,0x0000, 0x0ADE,0x0000, 0x0ADF,0x0000, 0x0AE0,0x0000,
3864
0x0AE1,0x0000, 0x0AE2,0x0000, 0x0AE3,0x0000, 0x0AE4,0x0000,
3865
0x0AE5,0x0000, 0x0AE6,0x0000, 0x0AE7,0x0000, 0x0AE8,0x0000,
3866
0x0AE9,0x0000, 0x0AEA,0x0000, 0x0AEB,0x0000, 0x0AEC,0x0000,
3867
0x0AED,0x0000, 0x0AEE,0x0000, 0x0AEF,0x0000, 0x0AF0,0x0000,
3868
0x0AF1,0x0000, 0x0AF2,0x0000, 0x0AF3,0x0000, 0x0AF4,0x0000,
3869
0x0AF5,0x0000, 0x0AF6,0x0000, 0x0AF7,0x0000, 0x0AF8,0x0000,
3870
0x0AF9,0x0000, 0x0AFA,0x0000, 0x0AFB,0x0000, 0x0AFC,0x0000,
3871
0x0AFD,0x0000, 0x0AFE,0x0000, 0x0AFF,0x0000, 0x0B00,0x0000,
3872
0x0B01,0x0000, 0x0B02,0x0000, 0x0B03,0x0000, 0x0B04,0x0000,
3873
0x0B05,0x0000, 0x0B06,0x0000, 0x0B07,0x0000, 0x0B08,0x0000,
3874
0x0B09,0x0000, 0x0B0A,0x0000, 0x0B0B,0x0000, 0x0B0C,0x0000,
3875
0x0B0D,0x0000, 0x0B0E,0x0000, 0x0B0F,0x0000, 0x0B10,0x0000,
3876
0x0B11,0x0000, 0x0B12,0x0000, 0x0B13,0x0000, 0x0B14,0x0000,
3877
0x0B15,0x0000, 0x0B16,0x0000, 0x0B17,0x0000, 0x0B18,0x0000,
3878
0x0B19,0x0000, 0x0B1A,0x0000, 0x0B1B,0x0000, 0x0B1C,0x0000,
3879
0x0B1D,0x0000, 0x0B1E,0x0000, 0x0B1F,0x0000, 0x0B20,0x0000,
3880
0x0B21,0x0000, 0x0B22,0x0000, 0x0B23,0x0000, 0x0B24,0x0000,
3881
0x0B25,0x0000, 0x0B26,0x0000, 0x0B27,0x0000, 0x0B28,0x0000
3882
};
3883
206 by Brian Aker
Removed final uint dead types.
3884
uint16_t page029data[]= { /* 2900 (2 weights per char) */
1 by brian
clean slate
3885
0x0838,0x0000, 0x0839,0x0000, 0x083A,0x0000, 0x083B,0x0000,
3886
0x083C,0x0000, 0x083D,0x0000, 0x083E,0x0000, 0x083F,0x0000,
3887
0x0840,0x0000, 0x0841,0x0000, 0x0842,0x0000, 0x0843,0x0000,
3888
0x0844,0x0000, 0x0845,0x0000, 0x0846,0x0000, 0x0847,0x0000,
3889
0x0848,0x0000, 0x0849,0x0000, 0x084A,0x0000, 0x084B,0x0000,
3890
0x084C,0x0000, 0x084D,0x0000, 0x084E,0x0000, 0x084F,0x0000,
3891
0x0850,0x0000, 0x0851,0x0000, 0x0852,0x0000, 0x0853,0x0000,
3892
0x0854,0x0000, 0x0855,0x0000, 0x0856,0x0000, 0x0857,0x0000,
3893
0x0858,0x0000, 0x0859,0x0000, 0x085A,0x0000, 0x085B,0x0000,
3894
0x085C,0x0000, 0x085D,0x0000, 0x085E,0x0000, 0x085F,0x0000,
3895
0x0860,0x0000, 0x0861,0x0000, 0x0862,0x0000, 0x0863,0x0000,
3896
0x0864,0x0000, 0x0865,0x0000, 0x0866,0x0000, 0x0867,0x0000,
3897
0x0868,0x0000, 0x0869,0x0000, 0x086A,0x0000, 0x086B,0x0000,
3898
0x086C,0x0000, 0x086D,0x0000, 0x086E,0x0000, 0x086F,0x0000,
3899
0x0870,0x0000, 0x0871,0x0000, 0x0872,0x0000, 0x0873,0x0000,
3900
0x0874,0x0000, 0x0875,0x0000, 0x0876,0x0000, 0x0877,0x0000,
3901
0x0878,0x0000, 0x0879,0x0000, 0x087A,0x0000, 0x087B,0x0000,
3902
0x087C,0x0000, 0x087D,0x0000, 0x087E,0x0000, 0x087F,0x0000,
3903
0x0880,0x0000, 0x0881,0x0000, 0x0882,0x0000, 0x0883,0x0000,
3904
0x0884,0x0000, 0x0885,0x0000, 0x0886,0x0000, 0x0887,0x0000,
3905
0x0888,0x0000, 0x0889,0x0000, 0x088A,0x0000, 0x088B,0x0000,
3906
0x088C,0x0000, 0x088D,0x0000, 0x088E,0x0000, 0x088F,0x0000,
3907
0x0890,0x0000, 0x0891,0x0000, 0x0892,0x0000, 0x0893,0x0000,
3908
0x0894,0x0000, 0x0895,0x0000, 0x0896,0x0000, 0x0897,0x0000,
3909
0x0898,0x0000, 0x0899,0x0000, 0x089A,0x0000, 0x089B,0x0000,
3910
0x089C,0x0000, 0x089D,0x0000, 0x089E,0x0000, 0x089F,0x0000,
3911
0x08A0,0x0000, 0x08A1,0x0000, 0x08A2,0x0000, 0x08A3,0x0000,
3912
0x08A4,0x0000, 0x08A5,0x0000, 0x08A6,0x0000, 0x08A7,0x0000,
3913
0x08A8,0x0000, 0x08A9,0x0000, 0x08AA,0x0000, 0x08AB,0x0000,
3914
0x08AC,0x0000, 0x08AD,0x0000, 0x08AE,0x0000, 0x08AF,0x0000,
3915
0x08B0,0x0000, 0x08B1,0x0000, 0x08B2,0x0000, 0x08B3,0x0000,
3916
0x08B4,0x0000, 0x08B5,0x0000, 0x08B6,0x0000, 0x08B7,0x0000,
3917
0x08B8,0x0000, 0x08B9,0x0000, 0x08BA,0x0000, 0x0298,0x0000,
3918
0x0299,0x0000, 0x029A,0x0000, 0x029B,0x0000, 0x029C,0x0000,
3919
0x029D,0x0000, 0x029E,0x0000, 0x029F,0x0000, 0x02A0,0x0000,
3920
0x02A1,0x0000, 0x02A2,0x0000, 0x02A3,0x0000, 0x02A4,0x0000,
3921
0x02A5,0x0000, 0x02A6,0x0000, 0x02A7,0x0000, 0x02A8,0x0000,
3922
0x02A9,0x0000, 0x02AA,0x0000, 0x02AB,0x0000, 0x02AC,0x0000,
3923
0x02AD,0x0000, 0x08BB,0x0000, 0x08BC,0x0000, 0x08BD,0x0000,
3924
0x08BE,0x0000, 0x08BF,0x0000, 0x08C0,0x0000, 0x08C1,0x0000,
3925
0x08C2,0x0000, 0x08C3,0x0000, 0x08C4,0x0000, 0x08C5,0x0000,
3926
0x08C6,0x0000, 0x08C7,0x0000, 0x08C8,0x0000, 0x08C9,0x0000,
3927
0x08CA,0x0000, 0x08CB,0x0000, 0x08CC,0x0000, 0x08CD,0x0000,
3928
0x08CE,0x0000, 0x08CF,0x0000, 0x08D0,0x0000, 0x08D1,0x0000,
3929
0x08D2,0x0000, 0x08D3,0x0000, 0x08D4,0x0000, 0x08D5,0x0000,
3930
0x08D6,0x0000, 0x08D7,0x0000, 0x08D8,0x0000, 0x08D9,0x0000,
3931
0x08DA,0x0000, 0x08DB,0x0000, 0x08DC,0x0000, 0x08DD,0x0000,
3932
0x08DE,0x0000, 0x08DF,0x0000, 0x08E0,0x0000, 0x08E1,0x0000,
3933
0x08E2,0x0000, 0x08E3,0x0000, 0x08E4,0x0000, 0x08E5,0x0000,
3934
0x08E6,0x0000, 0x08E7,0x0000, 0x08E8,0x0000, 0x08E9,0x0000,
3935
0x08EA,0x0000, 0x08EB,0x0000, 0x08EC,0x0000, 0x08ED,0x0000,
3936
0x08EE,0x0000, 0x08EF,0x0000, 0x08F0,0x0000, 0x08F1,0x0000,
3937
0x08F2,0x0000, 0x08F3,0x0000, 0x08F4,0x0000, 0x08F5,0x0000,
3938
0x08F6,0x0000, 0x08F7,0x0000, 0x08F8,0x0000, 0x08F9,0x0000,
3939
0x08FA,0x0000, 0x08FB,0x0000, 0x08FC,0x0000, 0x08FD,0x0000,
3940
0x08FE,0x0000, 0x08FF,0x0000, 0x0900,0x0000, 0x0901,0x0000,
3941
0x0902,0x0000, 0x0903,0x0000, 0x0904,0x0000, 0x0905,0x0000,
3942
0x0906,0x0000, 0x0907,0x0000, 0x0908,0x0000, 0x0909,0x0000,
3943
0x090A,0x0000, 0x090B,0x0000, 0x090C,0x0000, 0x090D,0x0000,
3944
0x090E,0x0000, 0x090F,0x0000, 0x0910,0x0000, 0x0911,0x0000,
3945
0x0912,0x0000, 0x0913,0x0000, 0x0914,0x0000, 0x0915,0x0000,
3946
0x0916,0x0000, 0x0917,0x0000, 0x0918,0x0000, 0x0919,0x0000,
3947
0x091A,0x0000, 0x091B,0x0000, 0x091C,0x0000, 0x091D,0x0000,
3948
0x0296,0x0000, 0x0297,0x0000, 0x091E,0x0000, 0x091F,0x0000
3949
};
3950
206 by Brian Aker
Removed final uint dead types.
3951
uint16_t page02Adata[]= { /* 2A00 (5 weights per char) */
1 by brian
clean slate
3952
0x0920,0x0000,0x0000,0x0000,0x0000,
3953
0x0921,0x0000,0x0000,0x0000,0x0000,
3954
0x0922,0x0000,0x0000,0x0000,0x0000,
3955
0x0923,0x0000,0x0000,0x0000,0x0000,
3956
0x0924,0x0000,0x0000,0x0000,0x0000,
3957
0x0925,0x0000,0x0000,0x0000,0x0000,
3958
0x0926,0x0000,0x0000,0x0000,0x0000,
3959
0x0927,0x0000,0x0000,0x0000,0x0000,
3960
0x0928,0x0000,0x0000,0x0000,0x0000,
3961
0x0929,0x0000,0x0000,0x0000,0x0000,
3962
0x092A,0x0000,0x0000,0x0000,0x0000,
3963
0x092B,0x0000,0x0000,0x0000,0x0000,
3964
0x044B,0x044B,0x044B,0x044B,0x0000,
3965
0x092C,0x0000,0x0000,0x0000,0x0000,
3966
0x092D,0x0000,0x0000,0x0000,0x0000,
3967
0x092E,0x0000,0x0000,0x0000,0x0000,
3968
0x092F,0x0000,0x0000,0x0000,0x0000,
3969
0x0930,0x0000,0x0000,0x0000,0x0000,
3970
0x0931,0x0000,0x0000,0x0000,0x0000,
3971
0x0932,0x0000,0x0000,0x0000,0x0000,
3972
0x0933,0x0000,0x0000,0x0000,0x0000,
3973
0x0934,0x0000,0x0000,0x0000,0x0000,
3974
0x0935,0x0000,0x0000,0x0000,0x0000,
3975
0x0936,0x0000,0x0000,0x0000,0x0000,
3976
0x0937,0x0000,0x0000,0x0000,0x0000,
3977
0x0938,0x0000,0x0000,0x0000,0x0000,
3978
0x0939,0x0000,0x0000,0x0000,0x0000,
3979
0x093A,0x0000,0x0000,0x0000,0x0000,
3980
0x093B,0x0000,0x0000,0x0000,0x0000,
3981
0x093C,0x0000,0x0000,0x0000,0x0000,
3982
0x093D,0x0000,0x0000,0x0000,0x0000,
3983
0x093E,0x0000,0x0000,0x0000,0x0000,
3984
0x093F,0x0000,0x0000,0x0000,0x0000,
3985
0x0940,0x0000,0x0000,0x0000,0x0000,
3986
0x0941,0x0000,0x0000,0x0000,0x0000,
3987
0x0942,0x0000,0x0000,0x0000,0x0000,
3988
0x0943,0x0000,0x0000,0x0000,0x0000,
3989
0x0944,0x0000,0x0000,0x0000,0x0000,
3990
0x0945,0x0000,0x0000,0x0000,0x0000,
3991
0x0946,0x0000,0x0000,0x0000,0x0000,
3992
0x0947,0x0000,0x0000,0x0000,0x0000,
3993
0x0948,0x0000,0x0000,0x0000,0x0000,
3994
0x0949,0x0000,0x0000,0x0000,0x0000,
3995
0x094A,0x0000,0x0000,0x0000,0x0000,
3996
0x094B,0x0000,0x0000,0x0000,0x0000,
3997
0x094C,0x0000,0x0000,0x0000,0x0000,
3998
0x094D,0x0000,0x0000,0x0000,0x0000,
3999
0x094E,0x0000,0x0000,0x0000,0x0000,
4000
0x094F,0x0000,0x0000,0x0000,0x0000,
4001
0x0950,0x0000,0x0000,0x0000,0x0000,
4002
0x0951,0x0000,0x0000,0x0000,0x0000,
4003
0x0952,0x0000,0x0000,0x0000,0x0000,
4004
0x0953,0x0000,0x0000,0x0000,0x0000,
4005
0x0954,0x0000,0x0000,0x0000,0x0000,
4006
0x0955,0x0000,0x0000,0x0000,0x0000,
4007
0x0956,0x0000,0x0000,0x0000,0x0000,
4008
0x0957,0x0000,0x0000,0x0000,0x0000,
4009
0x0958,0x0000,0x0000,0x0000,0x0000,
4010
0x0959,0x0000,0x0000,0x0000,0x0000,
4011
0x095A,0x0000,0x0000,0x0000,0x0000,
4012
0x095B,0x0000,0x0000,0x0000,0x0000,
4013
0x095C,0x0000,0x0000,0x0000,0x0000,
4014
0x095D,0x0000,0x0000,0x0000,0x0000,
4015
0x095E,0x0000,0x0000,0x0000,0x0000,
4016
0x095F,0x0000,0x0000,0x0000,0x0000,
4017
0x0960,0x0000,0x0000,0x0000,0x0000,
4018
0x0961,0x0000,0x0000,0x0000,0x0000,
4019
0x0962,0x0000,0x0000,0x0000,0x0000,
4020
0x0963,0x0000,0x0000,0x0000,0x0000,
4021
0x0964,0x0000,0x0000,0x0000,0x0000,
4022
0x0965,0x0000,0x0000,0x0000,0x0000,
4023
0x0966,0x0000,0x0000,0x0000,0x0000,
4024
0x0967,0x0000,0x0000,0x0000,0x0000,
4025
0x0968,0x0000,0x0000,0x0000,0x0000,
4026
0x0969,0x0000,0x0000,0x0000,0x0000,
4027
0x096A,0x0000,0x0000,0x0000,0x0000,
4028
0x096B,0x0000,0x0000,0x0000,0x0000,
4029
0x096C,0x0000,0x0000,0x0000,0x0000,
4030
0x096D,0x0000,0x0000,0x0000,0x0000,
4031
0x096E,0x0000,0x0000,0x0000,0x0000,
4032
0x096F,0x0000,0x0000,0x0000,0x0000,
4033
0x0970,0x0000,0x0000,0x0000,0x0000,
4034
0x0971,0x0000,0x0000,0x0000,0x0000,
4035
0x0972,0x0000,0x0000,0x0000,0x0000,
4036
0x0973,0x0000,0x0000,0x0000,0x0000,
4037
0x0974,0x0000,0x0000,0x0000,0x0000,
4038
0x0975,0x0000,0x0000,0x0000,0x0000,
4039
0x0976,0x0000,0x0000,0x0000,0x0000,
4040
0x0977,0x0000,0x0000,0x0000,0x0000,
4041
0x0978,0x0000,0x0000,0x0000,0x0000,
4042
0x0979,0x0000,0x0000,0x0000,0x0000,
4043
0x097A,0x0000,0x0000,0x0000,0x0000,
4044
0x097B,0x0000,0x0000,0x0000,0x0000,
4045
0x097C,0x0000,0x0000,0x0000,0x0000,
4046
0x097D,0x0000,0x0000,0x0000,0x0000,
4047
0x097E,0x0000,0x0000,0x0000,0x0000,
4048
0x097F,0x0000,0x0000,0x0000,0x0000,
4049
0x0980,0x0000,0x0000,0x0000,0x0000,
4050
0x0981,0x0000,0x0000,0x0000,0x0000,
4051
0x0982,0x0000,0x0000,0x0000,0x0000,
4052
0x0983,0x0000,0x0000,0x0000,0x0000,
4053
0x0984,0x0000,0x0000,0x0000,0x0000,
4054
0x0985,0x0000,0x0000,0x0000,0x0000,
4055
0x0986,0x0000,0x0000,0x0000,0x0000,
4056
0x0987,0x0000,0x0000,0x0000,0x0000,
4057
0x0988,0x0000,0x0000,0x0000,0x0000,
4058
0x0989,0x0000,0x0000,0x0000,0x0000,
4059
0x098A,0x0000,0x0000,0x0000,0x0000,
4060
0x098B,0x0000,0x0000,0x0000,0x0000,
4061
0x098C,0x0000,0x0000,0x0000,0x0000,
4062
0x098D,0x0000,0x0000,0x0000,0x0000,
4063
0x098E,0x0000,0x0000,0x0000,0x0000,
4064
0x098F,0x0000,0x0000,0x0000,0x0000,
4065
0x0990,0x0000,0x0000,0x0000,0x0000,
4066
0x0991,0x0000,0x0000,0x0000,0x0000,
4067
0x0992,0x0000,0x0000,0x0000,0x0000,
4068
0x023D,0x023D,0x042D,0x0000,0x0000,
4069
0x042D,0x042D,0x0000,0x0000,0x0000,
4070
0x042D,0x042D,0x042D,0x0000,0x0000,
4071
0x0993,0x0000,0x0000,0x0000,0x0000,
4072
0x0994,0x0000,0x0000,0x0000,0x0000,
4073
0x0995,0x0000,0x0000,0x0000,0x0000,
4074
0x0996,0x0000,0x0000,0x0000,0x0000,
4075
0x0997,0x0000,0x0000,0x0000,0x0000,
4076
0x0998,0x0000,0x0000,0x0000,0x0000,
4077
0x0999,0x0000,0x0000,0x0000,0x0000,
4078
0x099A,0x0000,0x0000,0x0000,0x0000,
4079
0x099B,0x0000,0x0000,0x0000,0x0000,
4080
0x099C,0x0000,0x0000,0x0000,0x0000,
4081
0x099D,0x0000,0x0000,0x0000,0x0000,
4082
0x099E,0x0000,0x0000,0x0000,0x0000,
4083
0x099F,0x0000,0x0000,0x0000,0x0000,
4084
0x09A0,0x0000,0x0000,0x0000,0x0000,
4085
0x09A1,0x0000,0x0000,0x0000,0x0000,
4086
0x09A2,0x0000,0x0000,0x0000,0x0000,
4087
0x09A3,0x0000,0x0000,0x0000,0x0000,
4088
0x09A4,0x0000,0x0000,0x0000,0x0000,
4089
0x09A5,0x0000,0x0000,0x0000,0x0000,
4090
0x09A6,0x0000,0x0000,0x0000,0x0000,
4091
0x09A7,0x0000,0x0000,0x0000,0x0000,
4092
0x09A8,0x0000,0x0000,0x0000,0x0000,
4093
0x09A9,0x0000,0x0000,0x0000,0x0000,
4094
0x09AA,0x0000,0x0000,0x0000,0x0000,
4095
0x09AB,0x0000,0x0000,0x0000,0x0000,
4096
0x09AC,0x0000,0x0000,0x0000,0x0000,
4097
0x09AD,0x0000,0x0000,0x0000,0x0000,
4098
0x09AE,0x0000,0x0000,0x0000,0x0000,
4099
0x09AF,0x0000,0x0000,0x0000,0x0000,
4100
0x09B0,0x0000,0x0000,0x0000,0x0000,
4101
0x09B1,0x0000,0x0000,0x0000,0x0000,
4102
0x09B2,0x0000,0x0000,0x0000,0x0000,
4103
0x09B3,0x0000,0x0000,0x0000,0x0000,
4104
0x09B4,0x0000,0x0000,0x0000,0x0000,
4105
0x09B5,0x0000,0x0000,0x0000,0x0000,
4106
0x09B6,0x0000,0x0000,0x0000,0x0000,
4107
0x09B7,0x0000,0x0000,0x0000,0x0000,
4108
0x09B8,0x0000,0x0000,0x0000,0x0000,
4109
0x09B9,0x0000,0x0000,0x0000,0x0000,
4110
0x09BA,0x0000,0x0000,0x0000,0x0000,
4111
0x09BB,0x0000,0x0000,0x0000,0x0000,
4112
0x09BC,0x0000,0x0000,0x0000,0x0000,
4113
0x09BD,0x0000,0x0000,0x0000,0x0000,
4114
0x09BE,0x0000,0x0000,0x0000,0x0000,
4115
0x09BF,0x0000,0x0000,0x0000,0x0000,
4116
0x09C0,0x0000,0x0000,0x0000,0x0000,
4117
0x09C1,0x0000,0x0000,0x0000,0x0000,
4118
0x09C2,0x0000,0x0000,0x0000,0x0000,
4119
0x09C3,0x0000,0x0000,0x0000,0x0000,
4120
0x09C4,0x0000,0x0000,0x0000,0x0000,
4121
0x09C5,0x0000,0x0000,0x0000,0x0000,
4122
0x09C6,0x0000,0x0000,0x0000,0x0000,
4123
0x09C7,0x0000,0x0000,0x0000,0x0000,
4124
0x09C8,0x0000,0x0000,0x0000,0x0000,
4125
0x09C9,0x0000,0x0000,0x0000,0x0000,
4126
0x09CA,0x0000,0x0000,0x0000,0x0000,
4127
0x09CB,0x0000,0x0000,0x0000,0x0000,
4128
0x09CC,0x0000,0x0000,0x0000,0x0000,
4129
0x09CD,0x0000,0x0000,0x0000,0x0000,
4130
0x09CE,0x0000,0x0000,0x0000,0x0000,
4131
0x09CF,0x0000,0x0000,0x0000,0x0000,
4132
0x09D0,0x0000,0x0000,0x0000,0x0000,
4133
0x09D1,0x0000,0x0000,0x0000,0x0000,
4134
0x09D2,0x0000,0x0000,0x0000,0x0000,
4135
0x09D3,0x0000,0x0000,0x0000,0x0000,
4136
0x09D4,0x0000,0x0000,0x0000,0x0000,
4137
0x09D5,0x0000,0x0000,0x0000,0x0000,
4138
0x09D6,0x0000,0x0000,0x0000,0x0000,
4139
0x09D7,0x0000,0x0000,0x0000,0x0000,
4140
0x09D8,0x0000,0x0000,0x0000,0x0000,
4141
0x09D9,0x0000,0x0000,0x0000,0x0000,
4142
0x09DA,0x0000,0x0000,0x0000,0x0000,
4143
0x09DB,0x0000,0x0000,0x0000,0x0000,
4144
0x09DC,0x0000,0x0000,0x0000,0x0000,
4145
0x09DD,0x0000,0x0000,0x0000,0x0000,
4146
0x09DE,0x0000,0x0000,0x0000,0x0000,
4147
0x09DF,0x0000,0x0000,0x0000,0x0000,
4148
0x09E0,0x0000,0x0000,0x0000,0x0000,
4149
0x09E1,0x0000,0x0000,0x0000,0x0000,
4150
0x09E2,0x0000,0x0000,0x0000,0x0000,
4151
0x09E3,0x0000,0x0000,0x0000,0x0000,
4152
0x09E4,0x0000,0x0000,0x0000,0x0000,
4153
0x09E5,0x0000,0x0000,0x0000,0x0000,
4154
0x09E6,0x0000,0x0000,0x0000,0x0000,
4155
0x09E7,0x0000,0x0000,0x0000,0x0000,
4156
0x09E8,0x0000,0x0000,0x0000,0x0000,
4157
0x09E9,0x0000,0x0000,0x0000,0x0000,
4158
0x09EA,0x0000,0x0000,0x0000,0x0000,
4159
0x09EB,0x0000,0x0000,0x0000,0x0000,
4160
0x09EC,0x0000,0x0000,0x0000,0x0000,
4161
0x09ED,0x0000,0x0000,0x0000,0x0000,
4162
0x09EE,0x0000,0x0000,0x0000,0x0000,
4163
0x09EF,0x0000,0x0000,0x0000,0x0000,
4164
0x09F0,0x0000,0x0000,0x0000,0x0000,
4165
0x09F1,0x0000,0x0000,0x0000,0x0000,
4166
0x09F2,0x0000,0x0000,0x0000,0x0000,
4167
0x09F3,0x0000,0x0000,0x0000,0x0000,
4168
0x09F4,0x0000,0x0000,0x0000,0x0000,
4169
0x09F5,0x0000,0x0000,0x0000,0x0000,
4170
0x09F6,0x0000,0x0000,0x0000,0x0000,
4171
0x09F7,0x0000,0x0000,0x0000,0x0000,
4172
0x09F8,0x0000,0x0000,0x0000,0x0000,
4173
0x09F8,0x0000,0x0000,0x0000,0x0000,
4174
0x09F9,0x0000,0x0000,0x0000,0x0000,
4175
0x09FA,0x0000,0x0000,0x0000,0x0000,
4176
0x09FB,0x0000,0x0000,0x0000,0x0000,
4177
0x09FC,0x0000,0x0000,0x0000,0x0000,
4178
0x09FD,0x0000,0x0000,0x0000,0x0000,
4179
0x09FE,0x0000,0x0000,0x0000,0x0000,
4180
0x09FF,0x0000,0x0000,0x0000,0x0000,
4181
0x0A00,0x0000,0x0000,0x0000,0x0000,
4182
0x0A01,0x0000,0x0000,0x0000,0x0000,
4183
0x0A02,0x0000,0x0000,0x0000,0x0000,
4184
0x0A03,0x0000,0x0000,0x0000,0x0000,
4185
0x0A04,0x0000,0x0000,0x0000,0x0000,
4186
0x0A05,0x0000,0x0000,0x0000,0x0000,
4187
0x0A06,0x0000,0x0000,0x0000,0x0000,
4188
0x0A07,0x0000,0x0000,0x0000,0x0000,
4189
0x0A08,0x0000,0x0000,0x0000,0x0000,
4190
0x0A09,0x0000,0x0000,0x0000,0x0000,
4191
0x0A0A,0x0000,0x0000,0x0000,0x0000,
4192
0x0A0B,0x0000,0x0000,0x0000,0x0000,
4193
0x0A0C,0x0000,0x0000,0x0000,0x0000,
4194
0x0A0D,0x0000,0x0000,0x0000,0x0000,
4195
0x0A0E,0x0000,0x0000,0x0000,0x0000,
4196
0x0A0F,0x0000,0x0000,0x0000,0x0000,
4197
0x0A10,0x0000,0x0000,0x0000,0x0000,
4198
0x0A11,0x0000,0x0000,0x0000,0x0000,
4199
0x0A12,0x0000,0x0000,0x0000,0x0000,
4200
0x0A13,0x0000,0x0000,0x0000,0x0000,
4201
0x0A14,0x0000,0x0000,0x0000,0x0000,
4202
0x0A15,0x0000,0x0000,0x0000,0x0000,
4203
0x0A16,0x0000,0x0000,0x0000,0x0000,
4204
0x0A17,0x0000,0x0000,0x0000,0x0000,
4205
0x0A18,0x0000,0x0000,0x0000,0x0000,
4206
0x0A19,0x0000,0x0000,0x0000,0x0000,
4207
0x0A1A,0x0000,0x0000,0x0000,0x0000
4208
};
4209
206 by Brian Aker
Removed final uint dead types.
4210
uint16_t page02Bdata[]= { /* 2B00 (3 weights per char) */
1 by brian
clean slate
4211
0x0A1B,0x0000,0x0000, 0x0A1C,0x0000,0x0000, 0x0A1D,0x0000,0x0000,
4212
0x0A1E,0x0000,0x0000, 0x0A1F,0x0000,0x0000, 0x0A20,0x0000,0x0000,
4213
0x0A21,0x0000,0x0000, 0x0A22,0x0000,0x0000, 0x0A23,0x0000,0x0000,
4214
0x0A24,0x0000,0x0000, 0x0A25,0x0000,0x0000, 0x0A26,0x0000,0x0000,
4215
0x0A27,0x0000,0x0000, 0x0A28,0x0000,0x0000, 0xFBC0,0xAB0E,0x0000,
4216
0xFBC0,0xAB0F,0x0000, 0xFBC0,0xAB10,0x0000, 0xFBC0,0xAB11,0x0000,
4217
0xFBC0,0xAB12,0x0000, 0xFBC0,0xAB13,0x0000, 0xFBC0,0xAB14,0x0000,
4218
0xFBC0,0xAB15,0x0000, 0xFBC0,0xAB16,0x0000, 0xFBC0,0xAB17,0x0000,
4219
0xFBC0,0xAB18,0x0000, 0xFBC0,0xAB19,0x0000, 0xFBC0,0xAB1A,0x0000,
4220
0xFBC0,0xAB1B,0x0000, 0xFBC0,0xAB1C,0x0000, 0xFBC0,0xAB1D,0x0000,
4221
0xFBC0,0xAB1E,0x0000, 0xFBC0,0xAB1F,0x0000, 0xFBC0,0xAB20,0x0000,
4222
0xFBC0,0xAB21,0x0000, 0xFBC0,0xAB22,0x0000, 0xFBC0,0xAB23,0x0000,
4223
0xFBC0,0xAB24,0x0000, 0xFBC0,0xAB25,0x0000, 0xFBC0,0xAB26,0x0000,
4224
0xFBC0,0xAB27,0x0000, 0xFBC0,0xAB28,0x0000, 0xFBC0,0xAB29,0x0000,
4225
0xFBC0,0xAB2A,0x0000, 0xFBC0,0xAB2B,0x0000, 0xFBC0,0xAB2C,0x0000,
4226
0xFBC0,0xAB2D,0x0000, 0xFBC0,0xAB2E,0x0000, 0xFBC0,0xAB2F,0x0000,
4227
0xFBC0,0xAB30,0x0000, 0xFBC0,0xAB31,0x0000, 0xFBC0,0xAB32,0x0000,
4228
0xFBC0,0xAB33,0x0000, 0xFBC0,0xAB34,0x0000, 0xFBC0,0xAB35,0x0000,
4229
0xFBC0,0xAB36,0x0000, 0xFBC0,0xAB37,0x0000, 0xFBC0,0xAB38,0x0000,
4230
0xFBC0,0xAB39,0x0000, 0xFBC0,0xAB3A,0x0000, 0xFBC0,0xAB3B,0x0000,
4231
0xFBC0,0xAB3C,0x0000, 0xFBC0,0xAB3D,0x0000, 0xFBC0,0xAB3E,0x0000,
4232
0xFBC0,0xAB3F,0x0000, 0xFBC0,0xAB40,0x0000, 0xFBC0,0xAB41,0x0000,
4233
0xFBC0,0xAB42,0x0000, 0xFBC0,0xAB43,0x0000, 0xFBC0,0xAB44,0x0000,
4234
0xFBC0,0xAB45,0x0000, 0xFBC0,0xAB46,0x0000, 0xFBC0,0xAB47,0x0000,
4235
0xFBC0,0xAB48,0x0000, 0xFBC0,0xAB49,0x0000, 0xFBC0,0xAB4A,0x0000,
4236
0xFBC0,0xAB4B,0x0000, 0xFBC0,0xAB4C,0x0000, 0xFBC0,0xAB4D,0x0000,
4237
0xFBC0,0xAB4E,0x0000, 0xFBC0,0xAB4F,0x0000, 0xFBC0,0xAB50,0x0000,
4238
0xFBC0,0xAB51,0x0000, 0xFBC0,0xAB52,0x0000, 0xFBC0,0xAB53,0x0000,
4239
0xFBC0,0xAB54,0x0000, 0xFBC0,0xAB55,0x0000, 0xFBC0,0xAB56,0x0000,
4240
0xFBC0,0xAB57,0x0000, 0xFBC0,0xAB58,0x0000, 0xFBC0,0xAB59,0x0000,
4241
0xFBC0,0xAB5A,0x0000, 0xFBC0,0xAB5B,0x0000, 0xFBC0,0xAB5C,0x0000,
4242
0xFBC0,0xAB5D,0x0000, 0xFBC0,0xAB5E,0x0000, 0xFBC0,0xAB5F,0x0000,
4243
0xFBC0,0xAB60,0x0000, 0xFBC0,0xAB61,0x0000, 0xFBC0,0xAB62,0x0000,
4244
0xFBC0,0xAB63,0x0000, 0xFBC0,0xAB64,0x0000, 0xFBC0,0xAB65,0x0000,
4245
0xFBC0,0xAB66,0x0000, 0xFBC0,0xAB67,0x0000, 0xFBC0,0xAB68,0x0000,
4246
0xFBC0,0xAB69,0x0000, 0xFBC0,0xAB6A,0x0000, 0xFBC0,0xAB6B,0x0000,
4247
0xFBC0,0xAB6C,0x0000, 0xFBC0,0xAB6D,0x0000, 0xFBC0,0xAB6E,0x0000,
4248
0xFBC0,0xAB6F,0x0000, 0xFBC0,0xAB70,0x0000, 0xFBC0,0xAB71,0x0000,
4249
0xFBC0,0xAB72,0x0000, 0xFBC0,0xAB73,0x0000, 0xFBC0,0xAB74,0x0000,
4250
0xFBC0,0xAB75,0x0000, 0xFBC0,0xAB76,0x0000, 0xFBC0,0xAB77,0x0000,
4251
0xFBC0,0xAB78,0x0000, 0xFBC0,0xAB79,0x0000, 0xFBC0,0xAB7A,0x0000,
4252
0xFBC0,0xAB7B,0x0000, 0xFBC0,0xAB7C,0x0000, 0xFBC0,0xAB7D,0x0000,
4253
0xFBC0,0xAB7E,0x0000, 0xFBC0,0xAB7F,0x0000, 0xFBC0,0xAB80,0x0000,
4254
0xFBC0,0xAB81,0x0000, 0xFBC0,0xAB82,0x0000, 0xFBC0,0xAB83,0x0000,
4255
0xFBC0,0xAB84,0x0000, 0xFBC0,0xAB85,0x0000, 0xFBC0,0xAB86,0x0000,
4256
0xFBC0,0xAB87,0x0000, 0xFBC0,0xAB88,0x0000, 0xFBC0,0xAB89,0x0000,
4257
0xFBC0,0xAB8A,0x0000, 0xFBC0,0xAB8B,0x0000, 0xFBC0,0xAB8C,0x0000,
4258
0xFBC0,0xAB8D,0x0000, 0xFBC0,0xAB8E,0x0000, 0xFBC0,0xAB8F,0x0000,
4259
0xFBC0,0xAB90,0x0000, 0xFBC0,0xAB91,0x0000, 0xFBC0,0xAB92,0x0000,
4260
0xFBC0,0xAB93,0x0000, 0xFBC0,0xAB94,0x0000, 0xFBC0,0xAB95,0x0000,
4261
0xFBC0,0xAB96,0x0000, 0xFBC0,0xAB97,0x0000, 0xFBC0,0xAB98,0x0000,
4262
0xFBC0,0xAB99,0x0000, 0xFBC0,0xAB9A,0x0000, 0xFBC0,0xAB9B,0x0000,
4263
0xFBC0,0xAB9C,0x0000, 0xFBC0,0xAB9D,0x0000, 0xFBC0,0xAB9E,0x0000,
4264
0xFBC0,0xAB9F,0x0000, 0xFBC0,0xABA0,0x0000, 0xFBC0,0xABA1,0x0000,
4265
0xFBC0,0xABA2,0x0000, 0xFBC0,0xABA3,0x0000, 0xFBC0,0xABA4,0x0000,
4266
0xFBC0,0xABA5,0x0000, 0xFBC0,0xABA6,0x0000, 0xFBC0,0xABA7,0x0000,
4267
0xFBC0,0xABA8,0x0000, 0xFBC0,0xABA9,0x0000, 0xFBC0,0xABAA,0x0000,
4268
0xFBC0,0xABAB,0x0000, 0xFBC0,0xABAC,0x0000, 0xFBC0,0xABAD,0x0000,
4269
0xFBC0,0xABAE,0x0000, 0xFBC0,0xABAF,0x0000, 0xFBC0,0xABB0,0x0000,
4270
0xFBC0,0xABB1,0x0000, 0xFBC0,0xABB2,0x0000, 0xFBC0,0xABB3,0x0000,
4271
0xFBC0,0xABB4,0x0000, 0xFBC0,0xABB5,0x0000, 0xFBC0,0xABB6,0x0000,
4272
0xFBC0,0xABB7,0x0000, 0xFBC0,0xABB8,0x0000, 0xFBC0,0xABB9,0x0000,
4273
0xFBC0,0xABBA,0x0000, 0xFBC0,0xABBB,0x0000, 0xFBC0,0xABBC,0x0000,
4274
0xFBC0,0xABBD,0x0000, 0xFBC0,0xABBE,0x0000, 0xFBC0,0xABBF,0x0000,
4275
0xFBC0,0xABC0,0x0000, 0xFBC0,0xABC1,0x0000, 0xFBC0,0xABC2,0x0000,
4276
0xFBC0,0xABC3,0x0000, 0xFBC0,0xABC4,0x0000, 0xFBC0,0xABC5,0x0000,
4277
0xFBC0,0xABC6,0x0000, 0xFBC0,0xABC7,0x0000, 0xFBC0,0xABC8,0x0000,
4278
0xFBC0,0xABC9,0x0000, 0xFBC0,0xABCA,0x0000, 0xFBC0,0xABCB,0x0000,
4279
0xFBC0,0xABCC,0x0000, 0xFBC0,0xABCD,0x0000, 0xFBC0,0xABCE,0x0000,
4280
0xFBC0,0xABCF,0x0000, 0xFBC0,0xABD0,0x0000, 0xFBC0,0xABD1,0x0000,
4281
0xFBC0,0xABD2,0x0000, 0xFBC0,0xABD3,0x0000, 0xFBC0,0xABD4,0x0000,
4282
0xFBC0,0xABD5,0x0000, 0xFBC0,0xABD6,0x0000, 0xFBC0,0xABD7,0x0000,
4283
0xFBC0,0xABD8,0x0000, 0xFBC0,0xABD9,0x0000, 0xFBC0,0xABDA,0x0000,
4284
0xFBC0,0xABDB,0x0000, 0xFBC0,0xABDC,0x0000, 0xFBC0,0xABDD,0x0000,
4285
0xFBC0,0xABDE,0x0000, 0xFBC0,0xABDF,0x0000, 0xFBC0,0xABE0,0x0000,
4286
0xFBC0,0xABE1,0x0000, 0xFBC0,0xABE2,0x0000, 0xFBC0,0xABE3,0x0000,
4287
0xFBC0,0xABE4,0x0000, 0xFBC0,0xABE5,0x0000, 0xFBC0,0xABE6,0x0000,
4288
0xFBC0,0xABE7,0x0000, 0xFBC0,0xABE8,0x0000, 0xFBC0,0xABE9,0x0000,
4289
0xFBC0,0xABEA,0x0000, 0xFBC0,0xABEB,0x0000, 0xFBC0,0xABEC,0x0000,
4290
0xFBC0,0xABED,0x0000, 0xFBC0,0xABEE,0x0000, 0xFBC0,0xABEF,0x0000,
4291
0xFBC0,0xABF0,0x0000, 0xFBC0,0xABF1,0x0000, 0xFBC0,0xABF2,0x0000,
4292
0xFBC0,0xABF3,0x0000, 0xFBC0,0xABF4,0x0000, 0xFBC0,0xABF5,0x0000,
4293
0xFBC0,0xABF6,0x0000, 0xFBC0,0xABF7,0x0000, 0xFBC0,0xABF8,0x0000,
4294
0xFBC0,0xABF9,0x0000, 0xFBC0,0xABFA,0x0000, 0xFBC0,0xABFB,0x0000,
4295
0xFBC0,0xABFC,0x0000, 0xFBC0,0xABFD,0x0000, 0xFBC0,0xABFE,0x0000,
4296
0xFBC0,0xABFF,0x0000 };
4297
206 by Brian Aker
Removed final uint dead types.
4298
uint16_t page02Edata[]= { /* 2E00 (3 weights per char) */
1 by brian
clean slate
4299
0xFBC0,0xAE00,0x0000, 0xFBC0,0xAE01,0x0000, 0xFBC0,0xAE02,0x0000,
4300
0xFBC0,0xAE03,0x0000, 0xFBC0,0xAE04,0x0000, 0xFBC0,0xAE05,0x0000,
4301
0xFBC0,0xAE06,0x0000, 0xFBC0,0xAE07,0x0000, 0xFBC0,0xAE08,0x0000,
4302
0xFBC0,0xAE09,0x0000, 0xFBC0,0xAE0A,0x0000, 0xFBC0,0xAE0B,0x0000,
4303
0xFBC0,0xAE0C,0x0000, 0xFBC0,0xAE0D,0x0000, 0xFBC0,0xAE0E,0x0000,
4304
0xFBC0,0xAE0F,0x0000, 0xFBC0,0xAE10,0x0000, 0xFBC0,0xAE11,0x0000,
4305
0xFBC0,0xAE12,0x0000, 0xFBC0,0xAE13,0x0000, 0xFBC0,0xAE14,0x0000,
4306
0xFBC0,0xAE15,0x0000, 0xFBC0,0xAE16,0x0000, 0xFBC0,0xAE17,0x0000,
4307
0xFBC0,0xAE18,0x0000, 0xFBC0,0xAE19,0x0000, 0xFBC0,0xAE1A,0x0000,
4308
0xFBC0,0xAE1B,0x0000, 0xFBC0,0xAE1C,0x0000, 0xFBC0,0xAE1D,0x0000,
4309
0xFBC0,0xAE1E,0x0000, 0xFBC0,0xAE1F,0x0000, 0xFBC0,0xAE20,0x0000,
4310
0xFBC0,0xAE21,0x0000, 0xFBC0,0xAE22,0x0000, 0xFBC0,0xAE23,0x0000,
4311
0xFBC0,0xAE24,0x0000, 0xFBC0,0xAE25,0x0000, 0xFBC0,0xAE26,0x0000,
4312
0xFBC0,0xAE27,0x0000, 0xFBC0,0xAE28,0x0000, 0xFBC0,0xAE29,0x0000,
4313
0xFBC0,0xAE2A,0x0000, 0xFBC0,0xAE2B,0x0000, 0xFBC0,0xAE2C,0x0000,
4314
0xFBC0,0xAE2D,0x0000, 0xFBC0,0xAE2E,0x0000, 0xFBC0,0xAE2F,0x0000,
4315
0xFBC0,0xAE30,0x0000, 0xFBC0,0xAE31,0x0000, 0xFBC0,0xAE32,0x0000,
4316
0xFBC0,0xAE33,0x0000, 0xFBC0,0xAE34,0x0000, 0xFBC0,0xAE35,0x0000,
4317
0xFBC0,0xAE36,0x0000, 0xFBC0,0xAE37,0x0000, 0xFBC0,0xAE38,0x0000,
4318
0xFBC0,0xAE39,0x0000, 0xFBC0,0xAE3A,0x0000, 0xFBC0,0xAE3B,0x0000,
4319
0xFBC0,0xAE3C,0x0000, 0xFBC0,0xAE3D,0x0000, 0xFBC0,0xAE3E,0x0000,
4320
0xFBC0,0xAE3F,0x0000, 0xFBC0,0xAE40,0x0000, 0xFBC0,0xAE41,0x0000,
4321
0xFBC0,0xAE42,0x0000, 0xFBC0,0xAE43,0x0000, 0xFBC0,0xAE44,0x0000,
4322
0xFBC0,0xAE45,0x0000, 0xFBC0,0xAE46,0x0000, 0xFBC0,0xAE47,0x0000,
4323
0xFBC0,0xAE48,0x0000, 0xFBC0,0xAE49,0x0000, 0xFBC0,0xAE4A,0x0000,
4324
0xFBC0,0xAE4B,0x0000, 0xFBC0,0xAE4C,0x0000, 0xFBC0,0xAE4D,0x0000,
4325
0xFBC0,0xAE4E,0x0000, 0xFBC0,0xAE4F,0x0000, 0xFBC0,0xAE50,0x0000,
4326
0xFBC0,0xAE51,0x0000, 0xFBC0,0xAE52,0x0000, 0xFBC0,0xAE53,0x0000,
4327
0xFBC0,0xAE54,0x0000, 0xFBC0,0xAE55,0x0000, 0xFBC0,0xAE56,0x0000,
4328
0xFBC0,0xAE57,0x0000, 0xFBC0,0xAE58,0x0000, 0xFBC0,0xAE59,0x0000,
4329
0xFBC0,0xAE5A,0x0000, 0xFBC0,0xAE5B,0x0000, 0xFBC0,0xAE5C,0x0000,
4330
0xFBC0,0xAE5D,0x0000, 0xFBC0,0xAE5E,0x0000, 0xFBC0,0xAE5F,0x0000,
4331
0xFBC0,0xAE60,0x0000, 0xFBC0,0xAE61,0x0000, 0xFBC0,0xAE62,0x0000,
4332
0xFBC0,0xAE63,0x0000, 0xFBC0,0xAE64,0x0000, 0xFBC0,0xAE65,0x0000,
4333
0xFBC0,0xAE66,0x0000, 0xFBC0,0xAE67,0x0000, 0xFBC0,0xAE68,0x0000,
4334
0xFBC0,0xAE69,0x0000, 0xFBC0,0xAE6A,0x0000, 0xFBC0,0xAE6B,0x0000,
4335
0xFBC0,0xAE6C,0x0000, 0xFBC0,0xAE6D,0x0000, 0xFBC0,0xAE6E,0x0000,
4336
0xFBC0,0xAE6F,0x0000, 0xFBC0,0xAE70,0x0000, 0xFBC0,0xAE71,0x0000,
4337
0xFBC0,0xAE72,0x0000, 0xFBC0,0xAE73,0x0000, 0xFBC0,0xAE74,0x0000,
4338
0xFBC0,0xAE75,0x0000, 0xFBC0,0xAE76,0x0000, 0xFBC0,0xAE77,0x0000,
4339
0xFBC0,0xAE78,0x0000, 0xFBC0,0xAE79,0x0000, 0xFBC0,0xAE7A,0x0000,
4340
0xFBC0,0xAE7B,0x0000, 0xFBC0,0xAE7C,0x0000, 0xFBC0,0xAE7D,0x0000,
4341
0xFBC0,0xAE7E,0x0000, 0xFBC0,0xAE7F,0x0000, 0xFB40,0xCE36,0x0000,
4342
0xFB40,0xD382,0x0000, 0xFB40,0xCE5B,0x0000, 0xFB40,0xCE5A,0x0000,
4343
0xFB40,0xCE59,0x0000, 0xFB40,0xCEBB,0x0000, 0xFB40,0xD182,0x0000,
4344
0xFB40,0xD1E0,0x0000, 0xFB40,0xD200,0x0000, 0xFB40,0xD202,0x0000,
4345
0xFB40,0xD35C,0x0000, 0xFB40,0xD369,0x0000, 0xFB40,0xDC0F,0x0000,
4346
0xFB40,0xDC0F,0x0000, 0xFB40,0xDC22,0x0000, 0xFB40,0xDC23,0x0000,
4347
0xFB40,0xDC22,0x0000, 0xFB40,0xDC23,0x0000, 0xFB40,0xDDF3,0x0000,
4348
0xFB40,0xDE7A,0x0000, 0xFB40,0xDF51,0x0000, 0xFB40,0xDF50,0x0000,
4349
0xFB40,0xDFC4,0x0000, 0xFB40,0xDFC3,0x0000, 0xFB40,0xE24C,0x0000,
4350
0xFB40,0xE535,0x0000, 0xFBC0,0xAE9A,0x0000, 0xFB40,0xE5E1,0x0000,
4351
0xFB40,0xE5E5,0x0000, 0xFB40,0xE708,0x0000, 0xFB40,0xEB7A,0x0000,
4352
0xFB40,0xEBCD,0x0000, 0xFB40,0xEC11,0x0000, 0xFB40,0xEC35,0x0000,
4353
0xFB40,0xEC3A,0x0000, 0xFB40,0xF06C,0x0000, 0xFB40,0xF22B,0x0000,
4354
0xFB40,0xF22B,0x0000, 0xFB40,0xCE2C,0x0000, 0xFB40,0xF25B,0x0000,
4355
0xFB40,0xF2AD,0x0000, 0xFB40,0xF38B,0x0000, 0xFB40,0xF58B,0x0000,
4356
0xFB40,0xF6EE,0x0000, 0xFB40,0xF93A,0x0000, 0xFB40,0xF93B,0x0000,
4357
0xFB40,0xFAF9,0x0000, 0xFB40,0xFCF9,0x0000, 0xFB40,0xFE9F,0x0000,
4358
0xFB40,0xFF53,0x0000, 0xFB40,0xFF52,0x0000, 0xFB40,0xFF53,0x0000,
4359
0xFB40,0xFF53,0x0000, 0xFB40,0xFF52,0x0000, 0xFB40,0xFF8A,0x0000,
4360
0xFB40,0xFF8A,0x0000, 0xFB40,0xFF8B,0x0000, 0xFB41,0x8002,0x0000,
4361
0xFB41,0x8080,0x0000, 0xFB41,0x807F,0x0000, 0xFB41,0x8089,0x0000,
4362
0xFB41,0x81FC,0x0000, 0xFB41,0x8279,0x0000, 0xFB41,0x8279,0x0000,
4363
0xFB41,0x8279,0x0000, 0xFB41,0x864E,0x0000, 0xFB41,0x8864,0x0000,
4364
0xFB41,0x8980,0x0000, 0xFB41,0x897F,0x0000, 0xFB41,0x89C1,0x0000,
4365
0xFB41,0x89D2,0x0000, 0xFB41,0x89D2,0x0000, 0xFB41,0x8BA0,0x0000,
4366
0xFB41,0x8D1D,0x0000, 0xFB41,0x8DB3,0x0000, 0xFB41,0x8F66,0x0000,
4367
0xFB41,0x8FB6,0x0000, 0xFB41,0x8FB6,0x0000, 0xFB41,0x8FB6,0x0000,
4368
0xFB41,0x9091,0x0000, 0xFB41,0x9485,0x0000, 0xFB41,0x9577,0x0000,
4369
0xFB41,0x9578,0x0000, 0xFB41,0x957F,0x0000, 0xFB41,0x95E8,0x0000,
4370
0xFB41,0x961C,0x0000, 0xFB41,0x961D,0x0000, 0xFB41,0x96E8,0x0000,
4371
0xFB41,0x9752,0x0000, 0xFB41,0x97E6,0x0000, 0xFB41,0x9875,0x0000,
4372
0xFB41,0x98CE,0x0000, 0xFB41,0x98DE,0x0000, 0xFB41,0x98DF,0x0000,
4373
0xFB41,0x98E0,0x0000, 0xFB41,0x98E0,0x0000, 0xFB41,0x9963,0x0000,
4374
0xFB41,0x9996,0x0000, 0xFB41,0x9A6C,0x0000, 0xFB41,0x9AA8,0x0000,
4375
0xFB41,0x9B3C,0x0000, 0xFB41,0x9C7C,0x0000, 0xFB41,0x9E1F,0x0000,
4376
0xFB41,0x9E75,0x0000, 0xFB41,0x9EA6,0x0000, 0xFB41,0x9EC4,0x0000,
4377
0xFB41,0x9EFE,0x0000, 0xFB41,0x9F4A,0x0000, 0xFB41,0x9F50,0x0000,
4378
0xFB41,0x9F52,0x0000, 0xFB41,0x9F7F,0x0000, 0xFB41,0x9F8D,0x0000,
4379
0xFB41,0x9F99,0x0000, 0xFB41,0x9F9C,0x0000, 0xFB41,0x9F9C,0x0000,
4380
0xFB41,0x9F9F,0x0000, 0xFBC0,0xAEF4,0x0000, 0xFBC0,0xAEF5,0x0000,
4381
0xFBC0,0xAEF6,0x0000, 0xFBC0,0xAEF7,0x0000, 0xFBC0,0xAEF8,0x0000,
4382
0xFBC0,0xAEF9,0x0000, 0xFBC0,0xAEFA,0x0000, 0xFBC0,0xAEFB,0x0000,
4383
0xFBC0,0xAEFC,0x0000, 0xFBC0,0xAEFD,0x0000, 0xFBC0,0xAEFE,0x0000,
4384
0xFBC0,0xAEFF,0x0000 };
4385
206 by Brian Aker
Removed final uint dead types.
4386
uint16_t page02Fdata[]= { /* 2F00 (3 weights per char) */
1 by brian
clean slate
4387
0xFB40,0xCE00,0x0000, 0xFB40,0xCE28,0x0000, 0xFB40,0xCE36,0x0000,
4388
0xFB40,0xCE3F,0x0000, 0xFB40,0xCE59,0x0000, 0xFB40,0xCE85,0x0000,
4389
0xFB40,0xCE8C,0x0000, 0xFB40,0xCEA0,0x0000, 0xFB40,0xCEBA,0x0000,
4390
0xFB40,0xD13F,0x0000, 0xFB40,0xD165,0x0000, 0xFB40,0xD16B,0x0000,
4391
0xFB40,0xD182,0x0000, 0xFB40,0xD196,0x0000, 0xFB40,0xD1AB,0x0000,
4392
0xFB40,0xD1E0,0x0000, 0xFB40,0xD1F5,0x0000, 0xFB40,0xD200,0x0000,
4393
0xFB40,0xD29B,0x0000, 0xFB40,0xD2F9,0x0000, 0xFB40,0xD315,0x0000,
4394
0xFB40,0xD31A,0x0000, 0xFB40,0xD338,0x0000, 0xFB40,0xD341,0x0000,
4395
0xFB40,0xD35C,0x0000, 0xFB40,0xD369,0x0000, 0xFB40,0xD382,0x0000,
4396
0xFB40,0xD3B6,0x0000, 0xFB40,0xD3C8,0x0000, 0xFB40,0xD3E3,0x0000,
4397
0xFB40,0xD6D7,0x0000, 0xFB40,0xD71F,0x0000, 0xFB40,0xD8EB,0x0000,
4398
0xFB40,0xD902,0x0000, 0xFB40,0xD90A,0x0000, 0xFB40,0xD915,0x0000,
4399
0xFB40,0xD927,0x0000, 0xFB40,0xD973,0x0000, 0xFB40,0xDB50,0x0000,
4400
0xFB40,0xDB80,0x0000, 0xFB40,0xDBF8,0x0000, 0xFB40,0xDC0F,0x0000,
4401
0xFB40,0xDC22,0x0000, 0xFB40,0xDC38,0x0000, 0xFB40,0xDC6E,0x0000,
4402
0xFB40,0xDC71,0x0000, 0xFB40,0xDDDB,0x0000, 0xFB40,0xDDE5,0x0000,
4403
0xFB40,0xDDF1,0x0000, 0xFB40,0xDDFE,0x0000, 0xFB40,0xDE72,0x0000,
4404
0xFB40,0xDE7A,0x0000, 0xFB40,0xDE7F,0x0000, 0xFB40,0xDEF4,0x0000,
4405
0xFB40,0xDEFE,0x0000, 0xFB40,0xDF0B,0x0000, 0xFB40,0xDF13,0x0000,
4406
0xFB40,0xDF50,0x0000, 0xFB40,0xDF61,0x0000, 0xFB40,0xDF73,0x0000,
4407
0xFB40,0xDFC3,0x0000, 0xFB40,0xE208,0x0000, 0xFB40,0xE236,0x0000,
4408
0xFB40,0xE24B,0x0000, 0xFB40,0xE52F,0x0000, 0xFB40,0xE534,0x0000,
4409
0xFB40,0xE587,0x0000, 0xFB40,0xE597,0x0000, 0xFB40,0xE5A4,0x0000,
4410
0xFB40,0xE5B9,0x0000, 0xFB40,0xE5E0,0x0000, 0xFB40,0xE5E5,0x0000,
4411
0xFB40,0xE6F0,0x0000, 0xFB40,0xE708,0x0000, 0xFB40,0xE728,0x0000,
4412
0xFB40,0xEB20,0x0000, 0xFB40,0xEB62,0x0000, 0xFB40,0xEB79,0x0000,
4413
0xFB40,0xEBB3,0x0000, 0xFB40,0xEBCB,0x0000, 0xFB40,0xEBD4,0x0000,
4414
0xFB40,0xEBDB,0x0000, 0xFB40,0xEC0F,0x0000, 0xFB40,0xEC14,0x0000,
4415
0xFB40,0xEC34,0x0000, 0xFB40,0xF06B,0x0000, 0xFB40,0xF22A,0x0000,
4416
0xFB40,0xF236,0x0000, 0xFB40,0xF23B,0x0000, 0xFB40,0xF23F,0x0000,
4417
0xFB40,0xF247,0x0000, 0xFB40,0xF259,0x0000, 0xFB40,0xF25B,0x0000,
4418
0xFB40,0xF2AC,0x0000, 0xFB40,0xF384,0x0000, 0xFB40,0xF389,0x0000,
4419
0xFB40,0xF4DC,0x0000, 0xFB40,0xF4E6,0x0000, 0xFB40,0xF518,0x0000,
4420
0xFB40,0xF51F,0x0000, 0xFB40,0xF528,0x0000, 0xFB40,0xF530,0x0000,
4421
0xFB40,0xF58B,0x0000, 0xFB40,0xF592,0x0000, 0xFB40,0xF676,0x0000,
4422
0xFB40,0xF67D,0x0000, 0xFB40,0xF6AE,0x0000, 0xFB40,0xF6BF,0x0000,
4423
0xFB40,0xF6EE,0x0000, 0xFB40,0xF7DB,0x0000, 0xFB40,0xF7E2,0x0000,
4424
0xFB40,0xF7F3,0x0000, 0xFB40,0xF93A,0x0000, 0xFB40,0xF9B8,0x0000,
4425
0xFB40,0xF9BE,0x0000, 0xFB40,0xFA74,0x0000, 0xFB40,0xFACB,0x0000,
4426
0xFB40,0xFAF9,0x0000, 0xFB40,0xFC73,0x0000, 0xFB40,0xFCF8,0x0000,
4427
0xFB40,0xFF36,0x0000, 0xFB40,0xFF51,0x0000, 0xFB40,0xFF8A,0x0000,
4428
0xFB40,0xFFBD,0x0000, 0xFB41,0x8001,0x0000, 0xFB41,0x800C,0x0000,
4429
0xFB41,0x8012,0x0000, 0xFB41,0x8033,0x0000, 0xFB41,0x807F,0x0000,
4430
0xFB41,0x8089,0x0000, 0xFB41,0x81E3,0x0000, 0xFB41,0x81EA,0x0000,
4431
0xFB41,0x81F3,0x0000, 0xFB41,0x81FC,0x0000, 0xFB41,0x820C,0x0000,
4432
0xFB41,0x821B,0x0000, 0xFB41,0x821F,0x0000, 0xFB41,0x826E,0x0000,
4433
0xFB41,0x8272,0x0000, 0xFB41,0x8278,0x0000, 0xFB41,0x864D,0x0000,
4434
0xFB41,0x866B,0x0000, 0xFB41,0x8840,0x0000, 0xFB41,0x884C,0x0000,
4435
0xFB41,0x8863,0x0000, 0xFB41,0x897E,0x0000, 0xFB41,0x898B,0x0000,
4436
0xFB41,0x89D2,0x0000, 0xFB41,0x8A00,0x0000, 0xFB41,0x8C37,0x0000,
4437
0xFB41,0x8C46,0x0000, 0xFB41,0x8C55,0x0000, 0xFB41,0x8C78,0x0000,
4438
0xFB41,0x8C9D,0x0000, 0xFB41,0x8D64,0x0000, 0xFB41,0x8D70,0x0000,
4439
0xFB41,0x8DB3,0x0000, 0xFB41,0x8EAB,0x0000, 0xFB41,0x8ECA,0x0000,
4440
0xFB41,0x8F9B,0x0000, 0xFB41,0x8FB0,0x0000, 0xFB41,0x8FB5,0x0000,
4441
0xFB41,0x9091,0x0000, 0xFB41,0x9149,0x0000, 0xFB41,0x91C6,0x0000,
4442
0xFB41,0x91CC,0x0000, 0xFB41,0x91D1,0x0000, 0xFB41,0x9577,0x0000,
4443
0xFB41,0x9580,0x0000, 0xFB41,0x961C,0x0000, 0xFB41,0x96B6,0x0000,
4444
0xFB41,0x96B9,0x0000, 0xFB41,0x96E8,0x0000, 0xFB41,0x9751,0x0000,
4445
0xFB41,0x975E,0x0000, 0xFB41,0x9762,0x0000, 0xFB41,0x9769,0x0000,
4446
0xFB41,0x97CB,0x0000, 0xFB41,0x97ED,0x0000, 0xFB41,0x97F3,0x0000,
4447
0xFB41,0x9801,0x0000, 0xFB41,0x98A8,0x0000, 0xFB41,0x98DB,0x0000,
4448
0xFB41,0x98DF,0x0000, 0xFB41,0x9996,0x0000, 0xFB41,0x9999,0x0000,
4449
0xFB41,0x99AC,0x0000, 0xFB41,0x9AA8,0x0000, 0xFB41,0x9AD8,0x0000,
4450
0xFB41,0x9ADF,0x0000, 0xFB41,0x9B25,0x0000, 0xFB41,0x9B2F,0x0000,
4451
0xFB41,0x9B32,0x0000, 0xFB41,0x9B3C,0x0000, 0xFB41,0x9B5A,0x0000,
4452
0xFB41,0x9CE5,0x0000, 0xFB41,0x9E75,0x0000, 0xFB41,0x9E7F,0x0000,
4453
0xFB41,0x9EA5,0x0000, 0xFB41,0x9EBB,0x0000, 0xFB41,0x9EC3,0x0000,
4454
0xFB41,0x9ECD,0x0000, 0xFB41,0x9ED1,0x0000, 0xFB41,0x9EF9,0x0000,
4455
0xFB41,0x9EFD,0x0000, 0xFB41,0x9F0E,0x0000, 0xFB41,0x9F13,0x0000,
4456
0xFB41,0x9F20,0x0000, 0xFB41,0x9F3B,0x0000, 0xFB41,0x9F4A,0x0000,
4457
0xFB41,0x9F52,0x0000, 0xFB41,0x9F8D,0x0000, 0xFB41,0x9F9C,0x0000,
4458
0xFB41,0x9FA0,0x0000, 0xFBC0,0xAFD6,0x0000, 0xFBC0,0xAFD7,0x0000,
4459
0xFBC0,0xAFD8,0x0000, 0xFBC0,0xAFD9,0x0000, 0xFBC0,0xAFDA,0x0000,
4460
0xFBC0,0xAFDB,0x0000, 0xFBC0,0xAFDC,0x0000, 0xFBC0,0xAFDD,0x0000,
4461
0xFBC0,0xAFDE,0x0000, 0xFBC0,0xAFDF,0x0000, 0xFBC0,0xAFE0,0x0000,
4462
0xFBC0,0xAFE1,0x0000, 0xFBC0,0xAFE2,0x0000, 0xFBC0,0xAFE3,0x0000,
4463
0xFBC0,0xAFE4,0x0000, 0xFBC0,0xAFE5,0x0000, 0xFBC0,0xAFE6,0x0000,
4464
0xFBC0,0xAFE7,0x0000, 0xFBC0,0xAFE8,0x0000, 0xFBC0,0xAFE9,0x0000,
4465
0xFBC0,0xAFEA,0x0000, 0xFBC0,0xAFEB,0x0000, 0xFBC0,0xAFEC,0x0000,
4466
0xFBC0,0xAFED,0x0000, 0xFBC0,0xAFEE,0x0000, 0xFBC0,0xAFEF,0x0000,
4467
0x0DAF,0x0000,0x0000, 0x0DB0,0x0000,0x0000, 0x0DB1,0x0000,0x0000,
4468
0x0DB2,0x0000,0x0000, 0x0DB3,0x0000,0x0000, 0x0DB4,0x0000,0x0000,
4469
0x0DB5,0x0000,0x0000, 0x0DB6,0x0000,0x0000, 0x0DB7,0x0000,0x0000,
4470
0x0DB8,0x0000,0x0000, 0x0DB9,0x0000,0x0000, 0x0DBA,0x0000,0x0000,
4471
0xFBC0,0xAFFC,0x0000, 0xFBC0,0xAFFD,0x0000, 0xFBC0,0xAFFE,0x0000,
4472
0xFBC0,0xAFFF,0x0000 };
4473
206 by Brian Aker
Removed final uint dead types.
4474
uint16_t page030data[]= { /* 3000 (3 weights per char) */
1 by brian
clean slate
4475
0x0209,0x0000,0x0000, 0x0237,0x0000,0x0000, 0x0266,0x0000,0x0000,
4476
0x02E2,0x0000,0x0000, 0x0DBB,0x0000,0x0000, 0x0E05,0x0000,0x0000,
4477
0x1E5D,0x1E73,0x0000, 0x0E29,0x0000,0x0000, 0x02AE,0x0000,0x0000,
4478
0x02AF,0x0000,0x0000, 0x02B0,0x0000,0x0000, 0x02B1,0x0000,0x0000,
4479
0x02B2,0x0000,0x0000, 0x02B3,0x0000,0x0000, 0x02B4,0x0000,0x0000,
4480
0x02B5,0x0000,0x0000, 0x02B6,0x0000,0x0000, 0x02B7,0x0000,0x0000,
4481
0x0DBC,0x0000,0x0000, 0x0DBD,0x0000,0x0000, 0x02B8,0x0000,0x0000,
4482
0x02B9,0x0000,0x0000, 0x02BA,0x0000,0x0000, 0x02BB,0x0000,0x0000,
4483
0x02BC,0x0000,0x0000, 0x02BD,0x0000,0x0000, 0x02BE,0x0000,0x0000,
4484
0x02BF,0x0000,0x0000, 0x022B,0x0000,0x0000, 0x0283,0x0000,0x0000,
4485
0x0284,0x0000,0x0000, 0x0285,0x0000,0x0000, 0x0DBE,0x0000,0x0000,
4486
0x0E2A,0x0000,0x0000, 0x0E2B,0x0000,0x0000, 0x0E2C,0x0000,0x0000,
4487
0x0E2D,0x0000,0x0000, 0x0E2E,0x0000,0x0000, 0x0E2F,0x0000,0x0000,
4488
0x0E30,0x0000,0x0000, 0x0E31,0x0000,0x0000, 0x0E32,0x0000,0x0000,
4489
0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,
4490
0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,
4491
0x022C,0x0000,0x0000, 0x0E07,0x0000,0x0000, 0x0E07,0x0000,0x0000,
4492
0x0E08,0x0000,0x0000, 0x0E08,0x0000,0x0000, 0x0E09,0x0000,0x0000,
4493
0x0DBC,0x0000,0x0000, 0x0DBF,0x0000,0x0000, 0xFB40,0xD341,0x0000,
4494
0xFB40,0xD344,0x0000, 0xFB40,0xD345,0x0000, 0x0E06,0x0000,0x0000,
4495
0x1E70,0x1E5E,0x0000, 0x02E3,0x0000,0x0000, 0x0DC0,0x0000,0x0000,
4496
0x0DC1,0x0000,0x0000, 0xFBC0,0xB040,0x0000, 0x1E52,0x0000,0x0000,
4497
0x1E52,0x0000,0x0000, 0x1E53,0x0000,0x0000, 0x1E53,0x0000,0x0000,
4498
0x1E54,0x0000,0x0000, 0x1E54,0x0000,0x0000, 0x1E55,0x0000,0x0000,
4499
0x1E55,0x0000,0x0000, 0x1E56,0x0000,0x0000, 0x1E56,0x0000,0x0000,
4500
0x1E57,0x0000,0x0000, 0x1E57,0x0000,0x0000, 0x1E58,0x0000,0x0000,
4501
0x1E58,0x0000,0x0000, 0x1E59,0x0000,0x0000, 0x1E59,0x0000,0x0000,
4502
0x1E5A,0x0000,0x0000, 0x1E5A,0x0000,0x0000, 0x1E5B,0x0000,0x0000,
4503
0x1E5B,0x0000,0x0000, 0x1E5C,0x0000,0x0000, 0x1E5C,0x0000,0x0000,
4504
0x1E5D,0x0000,0x0000, 0x1E5D,0x0000,0x0000, 0x1E5E,0x0000,0x0000,
4505
0x1E5E,0x0000,0x0000, 0x1E5F,0x0000,0x0000, 0x1E5F,0x0000,0x0000,
4506
0x1E60,0x0000,0x0000, 0x1E60,0x0000,0x0000, 0x1E61,0x0000,0x0000,
4507
0x1E61,0x0000,0x0000, 0x1E62,0x0000,0x0000, 0x1E62,0x0000,0x0000,
4508
0x1E63,0x0000,0x0000, 0x1E63,0x0000,0x0000, 0x1E63,0x0000,0x0000,
4509
0x1E64,0x0000,0x0000, 0x1E64,0x0000,0x0000, 0x1E65,0x0000,0x0000,
4510
0x1E65,0x0000,0x0000, 0x1E66,0x0000,0x0000, 0x1E67,0x0000,0x0000,
4511
0x1E68,0x0000,0x0000, 0x1E69,0x0000,0x0000, 0x1E6A,0x0000,0x0000,
4512
0x1E6B,0x0000,0x0000, 0x1E6B,0x0000,0x0000, 0x1E6B,0x0000,0x0000,
4513
0x1E6C,0x0000,0x0000, 0x1E6C,0x0000,0x0000, 0x1E6C,0x0000,0x0000,
4514
0x1E6D,0x0000,0x0000, 0x1E6D,0x0000,0x0000, 0x1E6D,0x0000,0x0000,
4515
0x1E6E,0x0000,0x0000, 0x1E6E,0x0000,0x0000, 0x1E6E,0x0000,0x0000,
4516
0x1E6F,0x0000,0x0000, 0x1E6F,0x0000,0x0000, 0x1E6F,0x0000,0x0000,
4517
0x1E70,0x0000,0x0000, 0x1E71,0x0000,0x0000, 0x1E72,0x0000,0x0000,
4518
0x1E73,0x0000,0x0000, 0x1E74,0x0000,0x0000, 0x1E75,0x0000,0x0000,
4519
0x1E75,0x0000,0x0000, 0x1E76,0x0000,0x0000, 0x1E76,0x0000,0x0000,
4520
0x1E77,0x0000,0x0000, 0x1E77,0x0000,0x0000, 0x1E78,0x0000,0x0000,
4521
0x1E79,0x0000,0x0000, 0x1E7A,0x0000,0x0000, 0x1E7B,0x0000,0x0000,
4522
0x1E7C,0x0000,0x0000, 0x1E7D,0x0000,0x0000, 0x1E7D,0x0000,0x0000,
4523
0x1E7E,0x0000,0x0000, 0x1E7F,0x0000,0x0000, 0x1E80,0x0000,0x0000,
4524
0x1E81,0x0000,0x0000, 0x1E54,0x0000,0x0000, 0x1E57,0x0000,0x0000,
4525
0x1E5A,0x0000,0x0000, 0xFBC0,0xB097,0x0000, 0xFBC0,0xB098,0x0000,
4526
0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000, 0x021E,0x0000,0x0000,
4527
0x021F,0x0000,0x0000, 0x0E0A,0x0000,0x0000, 0x0E0A,0x0000,0x0000,
4528
0x1E77,0x1E79,0x0000, 0x022D,0x0000,0x0000, 0x1E52,0x0000,0x0000,
4529
0x1E52,0x0000,0x0000, 0x1E53,0x0000,0x0000, 0x1E53,0x0000,0x0000,
4530
0x1E54,0x0000,0x0000, 0x1E54,0x0000,0x0000, 0x1E55,0x0000,0x0000,
4531
0x1E55,0x0000,0x0000, 0x1E56,0x0000,0x0000, 0x1E56,0x0000,0x0000,
4532
0x1E57,0x0000,0x0000, 0x1E57,0x0000,0x0000, 0x1E58,0x0000,0x0000,
4533
0x1E58,0x0000,0x0000, 0x1E59,0x0000,0x0000, 0x1E59,0x0000,0x0000,
4534
0x1E5A,0x0000,0x0000, 0x1E5A,0x0000,0x0000, 0x1E5B,0x0000,0x0000,
4535
0x1E5B,0x0000,0x0000, 0x1E5C,0x0000,0x0000, 0x1E5C,0x0000,0x0000,
4536
0x1E5D,0x0000,0x0000, 0x1E5D,0x0000,0x0000, 0x1E5E,0x0000,0x0000,
4537
0x1E5E,0x0000,0x0000, 0x1E5F,0x0000,0x0000, 0x1E5F,0x0000,0x0000,
4538
0x1E60,0x0000,0x0000, 0x1E60,0x0000,0x0000, 0x1E61,0x0000,0x0000,
4539
0x1E61,0x0000,0x0000, 0x1E62,0x0000,0x0000, 0x1E62,0x0000,0x0000,
4540
0x1E63,0x0000,0x0000, 0x1E63,0x0000,0x0000, 0x1E63,0x0000,0x0000,
4541
0x1E64,0x0000,0x0000, 0x1E64,0x0000,0x0000, 0x1E65,0x0000,0x0000,
4542
0x1E65,0x0000,0x0000, 0x1E66,0x0000,0x0000, 0x1E67,0x0000,0x0000,
4543
0x1E68,0x0000,0x0000, 0x1E69,0x0000,0x0000, 0x1E6A,0x0000,0x0000,
4544
0x1E6B,0x0000,0x0000, 0x1E6B,0x0000,0x0000, 0x1E6B,0x0000,0x0000,
4545
0x1E6C,0x0000,0x0000, 0x1E6C,0x0000,0x0000, 0x1E6C,0x0000,0x0000,
4546
0x1E6D,0x0000,0x0000, 0x1E6D,0x0000,0x0000, 0x1E6D,0x0000,0x0000,
4547
0x1E6E,0x0000,0x0000, 0x1E6E,0x0000,0x0000, 0x1E6E,0x0000,0x0000,
4548
0x1E6F,0x0000,0x0000, 0x1E6F,0x0000,0x0000, 0x1E6F,0x0000,0x0000,
4549
0x1E70,0x0000,0x0000, 0x1E71,0x0000,0x0000, 0x1E72,0x0000,0x0000,
4550
0x1E73,0x0000,0x0000, 0x1E74,0x0000,0x0000, 0x1E75,0x0000,0x0000,
4551
0x1E75,0x0000,0x0000, 0x1E76,0x0000,0x0000, 0x1E76,0x0000,0x0000,
4552
0x1E77,0x0000,0x0000, 0x1E77,0x0000,0x0000, 0x1E78,0x0000,0x0000,
4553
0x1E79,0x0000,0x0000, 0x1E7A,0x0000,0x0000, 0x1E7B,0x0000,0x0000,
4554
0x1E7C,0x0000,0x0000, 0x1E7D,0x0000,0x0000, 0x1E7D,0x0000,0x0000,
4555
0x1E7E,0x0000,0x0000, 0x1E7F,0x0000,0x0000, 0x1E80,0x0000,0x0000,
4556
0x1E81,0x0000,0x0000, 0x1E54,0x0000,0x0000, 0x1E57,0x0000,0x0000,
4557
0x1E5A,0x0000,0x0000, 0x1E7D,0x0000,0x0000, 0x1E7E,0x0000,0x0000,
4558
0x1E7F,0x0000,0x0000, 0x1E80,0x0000,0x0000, 0x022E,0x0000,0x0000,
4559
0x0E0B,0x0000,0x0000, 0x0E0C,0x0000,0x0000, 0x0E0C,0x0000,0x0000,
4560
0x1E5B,0x1E65,0x0000 };
4561
206 by Brian Aker
Removed final uint dead types.
4562
uint16_t page031data[]= { /* 3100 (3 weights per char) */
1 by brian
clean slate
4563
0xFBC0,0xB100,0x0000, 0xFBC0,0xB101,0x0000, 0xFBC0,0xB102,0x0000,
4564
0xFBC0,0xB103,0x0000, 0xFBC0,0xB104,0x0000, 0x1E82,0x0000,0x0000,
4565
0x1E83,0x0000,0x0000, 0x1E84,0x0000,0x0000, 0x1E85,0x0000,0x0000,
4566
0x1E87,0x0000,0x0000, 0x1E88,0x0000,0x0000, 0x1E89,0x0000,0x0000,
4567
0x1E8A,0x0000,0x0000, 0x1E8B,0x0000,0x0000, 0x1E8C,0x0000,0x0000,
4568
0x1E8F,0x0000,0x0000, 0x1E90,0x0000,0x0000, 0x1E91,0x0000,0x0000,
4569
0x1E92,0x0000,0x0000, 0x1E94,0x0000,0x0000, 0x1E95,0x0000,0x0000,
4570
0x1E96,0x0000,0x0000, 0x1E97,0x0000,0x0000, 0x1E98,0x0000,0x0000,
4571
0x1E99,0x0000,0x0000, 0x1E9A,0x0000,0x0000, 0x1E9B,0x0000,0x0000,
4572
0x1E9C,0x0000,0x0000, 0x1E9E,0x0000,0x0000, 0x1E9F,0x0000,0x0000,
4573
0x1EA1,0x0000,0x0000, 0x1EA2,0x0000,0x0000, 0x1EA3,0x0000,0x0000,
4574
0x1EA4,0x0000,0x0000, 0x1EA5,0x0000,0x0000, 0x1EA6,0x0000,0x0000,
4575
0x1EA7,0x0000,0x0000, 0x1EA9,0x0000,0x0000, 0x1EAD,0x0000,0x0000,
4576
0x1EAE,0x0000,0x0000, 0x1EAF,0x0000,0x0000, 0x1EB0,0x0000,0x0000,
4577
0x1E86,0x0000,0x0000, 0x1E8D,0x0000,0x0000, 0x1E93,0x0000,0x0000,
4578
0xFBC0,0xB12D,0x0000, 0xFBC0,0xB12E,0x0000, 0xFBC0,0xB12F,0x0000,
4579
0xFBC0,0xB130,0x0000, 0x1D62,0x0000,0x0000, 0x1D63,0x0000,0x0000,
4580
0x1E02,0x0000,0x0000, 0x1D64,0x0000,0x0000, 0x1E04,0x0000,0x0000,
4581
0x1E05,0x0000,0x0000, 0x1D65,0x0000,0x0000, 0x1D66,0x0000,0x0000,
4582
0x1D67,0x0000,0x0000, 0x1E08,0x0000,0x0000, 0x1E09,0x0000,0x0000,
4583
0x1E0A,0x0000,0x0000, 0x1E0B,0x0000,0x0000, 0x1E0C,0x0000,0x0000,
4584
0x1E0D,0x0000,0x0000, 0x1D7C,0x0000,0x0000, 0x1D68,0x0000,0x0000,
4585
0x1D69,0x0000,0x0000, 0x1D6A,0x0000,0x0000, 0x1D83,0x0000,0x0000,
4586
0x1D6B,0x0000,0x0000, 0x1D6C,0x0000,0x0000, 0x1D6D,0x0000,0x0000,
4587
0x1D6E,0x0000,0x0000, 0x1D6F,0x0000,0x0000, 0x1D70,0x0000,0x0000,
4588
0x1D71,0x0000,0x0000, 0x1D72,0x0000,0x0000, 0x1D73,0x0000,0x0000,
4589
0x1D74,0x0000,0x0000, 0x1DBE,0x0000,0x0000, 0x1DBF,0x0000,0x0000,
4590
0x1DC0,0x0000,0x0000, 0x1DC1,0x0000,0x0000, 0x1DC2,0x0000,0x0000,
4591
0x1DC3,0x0000,0x0000, 0x1DC4,0x0000,0x0000, 0x1DC5,0x0000,0x0000,
4592
0x1DC6,0x0000,0x0000, 0x1DC7,0x0000,0x0000, 0x1DC8,0x0000,0x0000,
4593
0x1DC9,0x0000,0x0000, 0x1DCA,0x0000,0x0000, 0x1DCB,0x0000,0x0000,
4594
0x1DCC,0x0000,0x0000, 0x1DCD,0x0000,0x0000, 0x1DCE,0x0000,0x0000,
4595
0x1DCF,0x0000,0x0000, 0x1DD0,0x0000,0x0000, 0x1DD1,0x0000,0x0000,
4596
0x1DD2,0x0000,0x0000, 0x1DBD,0x0000,0x0000, 0x1D76,0x0000,0x0000,
4597
0x1D77,0x0000,0x0000, 0x1E1F,0x0000,0x0000, 0x1E20,0x0000,0x0000,
4598
0x1E24,0x0000,0x0000, 0x1E26,0x0000,0x0000, 0x1E2B,0x0000,0x0000,
4599
0x1E2F,0x0000,0x0000, 0x1E31,0x0000,0x0000, 0x1D7E,0x0000,0x0000,
4600
0x1E35,0x0000,0x0000, 0x1E37,0x0000,0x0000, 0x1D7F,0x0000,0x0000,
4601
0x1D80,0x0000,0x0000, 0x1D82,0x0000,0x0000, 0x1D84,0x0000,0x0000,
4602
0x1D85,0x0000,0x0000, 0x1D89,0x0000,0x0000, 0x1D8B,0x0000,0x0000,
4603
0x1D8D,0x0000,0x0000, 0x1D8E,0x0000,0x0000, 0x1D8F,0x0000,0x0000,
4604
0x1D90,0x0000,0x0000, 0x1D91,0x0000,0x0000, 0x1D94,0x0000,0x0000,
4605
0x1D98,0x0000,0x0000, 0x1DA2,0x0000,0x0000, 0x1DA9,0x0000,0x0000,
4606
0x1DAE,0x0000,0x0000, 0x1E49,0x0000,0x0000, 0x1E4A,0x0000,0x0000,
4607
0x1DB9,0x0000,0x0000, 0x1DBA,0x0000,0x0000, 0x1DBB,0x0000,0x0000,
4608
0x1DE1,0x0000,0x0000, 0x1DE2,0x0000,0x0000, 0x1DE5,0x0000,0x0000,
4609
0x1DEE,0x0000,0x0000, 0x1DEF,0x0000,0x0000, 0x1DF1,0x0000,0x0000,
4610
0x1DFB,0x0000,0x0000, 0x1DFE,0x0000,0x0000, 0xFBC0,0xB18F,0x0000,
4611
0x0DC2,0x0000,0x0000, 0x0DC3,0x0000,0x0000, 0xFB40,0xCE00,0x0000,
4612
0xFB40,0xCE8C,0x0000, 0xFB40,0xCE09,0x0000, 0xFB40,0xD6DB,0x0000,
4613
0xFB40,0xCE0A,0x0000, 0xFB40,0xCE2D,0x0000, 0xFB40,0xCE0B,0x0000,
4614
0xFB40,0xF532,0x0000, 0xFB40,0xCE59,0x0000, 0xFB40,0xCE19,0x0000,
4615
0xFB40,0xCE01,0x0000, 0xFB40,0xD929,0x0000, 0xFB40,0xD730,0x0000,
4616
0xFB40,0xCEBA,0x0000, 0x1E82,0x0000,0x0000, 0x1E98,0x0000,0x0000,
4617
0x1E90,0x0000,0x0000, 0x1E8B,0x0000,0x0000, 0x1EA0,0x0000,0x0000,
4618
0x1EA0,0x0000,0x0000, 0x1E9D,0x0000,0x0000, 0x1E9C,0x0000,0x0000,
4619
0x1EAF,0x0000,0x0000, 0x1E9B,0x0000,0x0000, 0x1EAE,0x0000,0x0000,
4620
0x1EAF,0x0000,0x0000, 0x1EAC,0x0000,0x0000, 0x1E8E,0x0000,0x0000,
4621
0x1EA1,0x0000,0x0000, 0x1EA3,0x0000,0x0000, 0x1EAA,0x0000,0x0000,
4622
0x1EAB,0x0000,0x0000, 0x1EA8,0x0000,0x0000, 0x1EAE,0x0000,0x0000,
4623
0x1E83,0x0000,0x0000, 0x1E88,0x0000,0x0000, 0x1E8C,0x0000,0x0000,
4624
0x1E8F,0x0000,0x0000, 0xFBC0,0xB1B8,0x0000, 0xFBC0,0xB1B9,0x0000,
4625
0xFBC0,0xB1BA,0x0000, 0xFBC0,0xB1BB,0x0000, 0xFBC0,0xB1BC,0x0000,
4626
0xFBC0,0xB1BD,0x0000, 0xFBC0,0xB1BE,0x0000, 0xFBC0,0xB1BF,0x0000,
4627
0xFBC0,0xB1C0,0x0000, 0xFBC0,0xB1C1,0x0000, 0xFBC0,0xB1C2,0x0000,
4628
0xFBC0,0xB1C3,0x0000, 0xFBC0,0xB1C4,0x0000, 0xFBC0,0xB1C5,0x0000,
4629
0xFBC0,0xB1C6,0x0000, 0xFBC0,0xB1C7,0x0000, 0xFBC0,0xB1C8,0x0000,
4630
0xFBC0,0xB1C9,0x0000, 0xFBC0,0xB1CA,0x0000, 0xFBC0,0xB1CB,0x0000,
4631
0xFBC0,0xB1CC,0x0000, 0xFBC0,0xB1CD,0x0000, 0xFBC0,0xB1CE,0x0000,
4632
0xFBC0,0xB1CF,0x0000, 0xFBC0,0xB1D0,0x0000, 0xFBC0,0xB1D1,0x0000,
4633
0xFBC0,0xB1D2,0x0000, 0xFBC0,0xB1D3,0x0000, 0xFBC0,0xB1D4,0x0000,
4634
0xFBC0,0xB1D5,0x0000, 0xFBC0,0xB1D6,0x0000, 0xFBC0,0xB1D7,0x0000,
4635
0xFBC0,0xB1D8,0x0000, 0xFBC0,0xB1D9,0x0000, 0xFBC0,0xB1DA,0x0000,
4636
0xFBC0,0xB1DB,0x0000, 0xFBC0,0xB1DC,0x0000, 0xFBC0,0xB1DD,0x0000,
4637
0xFBC0,0xB1DE,0x0000, 0xFBC0,0xB1DF,0x0000, 0xFBC0,0xB1E0,0x0000,
4638
0xFBC0,0xB1E1,0x0000, 0xFBC0,0xB1E2,0x0000, 0xFBC0,0xB1E3,0x0000,
4639
0xFBC0,0xB1E4,0x0000, 0xFBC0,0xB1E5,0x0000, 0xFBC0,0xB1E6,0x0000,
4640
0xFBC0,0xB1E7,0x0000, 0xFBC0,0xB1E8,0x0000, 0xFBC0,0xB1E9,0x0000,
4641
0xFBC0,0xB1EA,0x0000, 0xFBC0,0xB1EB,0x0000, 0xFBC0,0xB1EC,0x0000,
4642
0xFBC0,0xB1ED,0x0000, 0xFBC0,0xB1EE,0x0000, 0xFBC0,0xB1EF,0x0000,
4643
0x1E59,0x0000,0x0000, 0x1E5D,0x0000,0x0000, 0x1E5E,0x0000,0x0000,
4644
0x1E65,0x0000,0x0000, 0x1E68,0x0000,0x0000, 0x1E6B,0x0000,0x0000,
4645
0x1E6C,0x0000,0x0000, 0x1E6D,0x0000,0x0000, 0x1E6E,0x0000,0x0000,
4646
0x1E6F,0x0000,0x0000, 0x1E72,0x0000,0x0000, 0x1E78,0x0000,0x0000,
4647
0x1E79,0x0000,0x0000, 0x1E7A,0x0000,0x0000, 0x1E7B,0x0000,0x0000,
4648
0x1E7C,0x0000,0x0000 };
4649
206 by Brian Aker
Removed final uint dead types.
4650
uint16_t page032data[]= { /* 3200 (8 weights per char) */
1 by brian
clean slate
4651
0x0288,0x1D62,0x0289,0x0000,0x0000,0x0000,0x0000,0x0000,
4652
0x0288,0x1D64,0x0289,0x0000,0x0000,0x0000,0x0000,0x0000,
4653
0x0288,0x1D65,0x0289,0x0000,0x0000,0x0000,0x0000,0x0000,
4654
0x0288,0x1D67,0x0289,0x0000,0x0000,0x0000,0x0000,0x0000,
4655
0x0288,0x1D68,0x0289,0x0000,0x0000,0x0000,0x0000,0x0000,
4656
0x0288,0x1D69,0x0289,0x0000,0x0000,0x0000,0x0000,0x0000,
4657
0x0288,0x1D6B,0x0289,0x0000,0x0000,0x0000,0x0000,0x0000,
4658
0x0288,0x1D6D,0x0289,0x0000,0x0000,0x0000,0x0000,0x0000,
4659
0x0288,0x1D6E,0x0289,0x0000,0x0000,0x0000,0x0000,0x0000,
4660
0x0288,0x1D70,0x0289,0x0000,0x0000,0x0000,0x0000,0x0000,
4661
0x0288,0x1D71,0x0289,0x0000,0x0000,0x0000,0x0000,0x0000,
4662
0x0288,0x1D72,0x0289,0x0000,0x0000,0x0000,0x0000,0x0000,
4663
0x0288,0x1D73,0x0289,0x0000,0x0000,0x0000,0x0000,0x0000,
4664
0x0288,0x1D74,0x0289,0x0000,0x0000,0x0000,0x0000,0x0000,
4665
0x0288,0x1D62,0x1DBE,0x0289,0x0000,0x0000,0x0000,0x0000,
4666
0x0288,0x1D64,0x1DBE,0x0289,0x0000,0x0000,0x0000,0x0000,
4667
0x0288,0x1D65,0x1DBE,0x0289,0x0000,0x0000,0x0000,0x0000,
4668
0x0288,0x1D67,0x1DBE,0x0289,0x0000,0x0000,0x0000,0x0000,
4669
0x0288,0x1D68,0x1DBE,0x0289,0x0000,0x0000,0x0000,0x0000,
4670
0x0288,0x1D69,0x1DBE,0x0289,0x0000,0x0000,0x0000,0x0000,
4671
0x0288,0x1D6B,0x1DBE,0x0289,0x0000,0x0000,0x0000,0x0000,
4672
0x0288,0x1D6D,0x1DBE,0x0289,0x0000,0x0000,0x0000,0x0000,
4673
0x0288,0x1D6E,0x1DBE,0x0289,0x0000,0x0000,0x0000,0x0000,
4674
0x0288,0x1D70,0x1DBE,0x0289,0x0000,0x0000,0x0000,0x0000,
4675
0x0288,0x1D71,0x1DBE,0x0289,0x0000,0x0000,0x0000,0x0000,
4676
0x0288,0x1D72,0x1DBE,0x0289,0x0000,0x0000,0x0000,0x0000,
4677
0x0288,0x1D73,0x1DBE,0x0289,0x0000,0x0000,0x0000,0x0000,
4678
0x0288,0x1D74,0x1DBE,0x0289,0x0000,0x0000,0x0000,0x0000,
4679
0x0288,0x1D6E,0x1DCB,0x0289,0x0000,0x0000,0x0000,0x0000,
4680
0x0288,0x1D6D,0x1DC6,0x1D6E,0x1DC2,0x1E03,0x0289,0x0000,
4681
0x0288,0x1D6D,0x1DC6,0x1D74,0x1DCB,0x0289,0x0000,0x0000,
4682
0xFBC0,0xB21F,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
4683
0x0288,0xFB40,0xCE00,0x0289,0x0000,0x0000,0x0000,0x0000,
4684
0x0288,0xFB40,0xCE8C,0x0289,0x0000,0x0000,0x0000,0x0000,
4685
0x0288,0xFB40,0xCE09,0x0289,0x0000,0x0000,0x0000,0x0000,
4686
0x0288,0xFB40,0xD6DB,0x0289,0x0000,0x0000,0x0000,0x0000,
4687
0x0288,0xFB40,0xCE94,0x0289,0x0000,0x0000,0x0000,0x0000,
4688
0x0288,0xFB40,0xD16D,0x0289,0x0000,0x0000,0x0000,0x0000,
4689
0x0288,0xFB40,0xCE03,0x0289,0x0000,0x0000,0x0000,0x0000,
4690
0x0288,0xFB40,0xD16B,0x0289,0x0000,0x0000,0x0000,0x0000,
4691
0x0288,0xFB40,0xCE5D,0x0289,0x0000,0x0000,0x0000,0x0000,
4692
0x0288,0xFB40,0xD341,0x0289,0x0000,0x0000,0x0000,0x0000,
4693
0x0288,0xFB40,0xE708,0x0289,0x0000,0x0000,0x0000,0x0000,
4694
0x0288,0xFB40,0xF06B,0x0289,0x0000,0x0000,0x0000,0x0000,
4695
0x0288,0xFB40,0xEC34,0x0289,0x0000,0x0000,0x0000,0x0000,
4696
0x0288,0xFB40,0xE728,0x0289,0x0000,0x0000,0x0000,0x0000,
4697
0x0288,0xFB41,0x91D1,0x0289,0x0000,0x0000,0x0000,0x0000,
4698
0x0288,0xFB40,0xD71F,0x0289,0x0000,0x0000,0x0000,0x0000,
4699
0x0288,0xFB40,0xE5E5,0x0289,0x0000,0x0000,0x0000,0x0000,
4700
0x0288,0xFB40,0xE82A,0x0289,0x0000,0x0000,0x0000,0x0000,
4701
0x0288,0xFB40,0xE709,0x0289,0x0000,0x0000,0x0000,0x0000,
4702
0x0288,0xFB40,0xF93E,0x0289,0x0000,0x0000,0x0000,0x0000,
4703
0x0288,0xFB40,0xD40D,0x0289,0x0000,0x0000,0x0000,0x0000,
4704
0x0288,0xFB40,0xF279,0x0289,0x0000,0x0000,0x0000,0x0000,
4705
0x0288,0xFB41,0x8CA1,0x0289,0x0000,0x0000,0x0000,0x0000,
4706
0x0288,0xFB40,0xF95D,0x0289,0x0000,0x0000,0x0000,0x0000,
4707
0x0288,0xFB40,0xD2B4,0x0289,0x0000,0x0000,0x0000,0x0000,
4708
0x0288,0xFB40,0xCEE3,0x0289,0x0000,0x0000,0x0000,0x0000,
4709
0x0288,0xFB40,0xD47C,0x0289,0x0000,0x0000,0x0000,0x0000,
4710
0x0288,0xFB40,0xDB66,0x0289,0x0000,0x0000,0x0000,0x0000,
4711
0x0288,0xFB40,0xF6E3,0x0289,0x0000,0x0000,0x0000,0x0000,
4712
0x0288,0xFB40,0xCF01,0x0289,0x0000,0x0000,0x0000,0x0000,
4713
0x0288,0xFB41,0x8CC7,0x0289,0x0000,0x0000,0x0000,0x0000,
4714
0x0288,0xFB40,0xD354,0x0289,0x0000,0x0000,0x0000,0x0000,
4715
0x0288,0xFB40,0xF96D,0x0289,0x0000,0x0000,0x0000,0x0000,
4716
0x0288,0xFB40,0xCF11,0x0289,0x0000,0x0000,0x0000,0x0000,
4717
0x0288,0xFB41,0x81EA,0x0289,0x0000,0x0000,0x0000,0x0000,
4718
0x0288,0xFB41,0x81F3,0x0289,0x0000,0x0000,0x0000,0x0000,
4719
0xFBC0,0xB244,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
4720
0xFBC0,0xB245,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
4721
0xFBC0,0xB246,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
4722
0xFBC0,0xB247,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
4723
0xFBC0,0xB248,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
4724
0xFBC0,0xB249,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
4725
0xFBC0,0xB24A,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
4726
0xFBC0,0xB24B,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
4727
0xFBC0,0xB24C,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
4728
0xFBC0,0xB24D,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
4729
0xFBC0,0xB24E,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
4730
0xFBC0,0xB24F,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
4731
0x0FA7,0x1002,0x0E8B,0x0000,0x0000,0x0000,0x0000,0x0000,
4732
0x0E2B,0x0E2A,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
4733
0x0E2B,0x0E2B,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
4734
0x0E2B,0x0E2C,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
4735
0x0E2B,0x0E2D,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
4736
0x0E2B,0x0E2E,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
4737
0x0E2B,0x0E2F,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
4738
0x0E2B,0x0E30,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
4739
0x0E2B,0x0E31,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
4740
0x0E2B,0x0E32,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
4741
0x0E2C,0x0E29,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
4742
0x0E2C,0x0E2A,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
4743
0x0E2C,0x0E2B,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
4744
0x0E2C,0x0E2C,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
4745
0x0E2C,0x0E2D,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
4746
0x0E2C,0x0E2E,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
4747
0x1D62,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
4748
0x1D64,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
4749
0x1D65,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
4750
0x1D67,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
4751
0x1D68,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
4752
0x1D69,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
4753
0x1D6B,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
4754
0x1D6D,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
4755
0x1D6E,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
4756
0x1D70,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
4757
0x1D71,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
4758
0x1D72,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
4759
0x1D73,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
4760
0x1D74,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
4761
0x1D62,0x1DBE,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
4762
0x1D64,0x1DBE,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
4763
0x1D65,0x1DBE,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
4764
0x1D67,0x1DBE,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
4765
0x1D68,0x1DBE,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
4766
0x1D69,0x1DBE,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
4767
0x1D6B,0x1DBE,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
4768
0x1D6D,0x1DBE,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
4769
0x1D6E,0x1DBE,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
4770
0x1D70,0x1DBE,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
4771
0x1D71,0x1DBE,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
4772
0x1D72,0x1DBE,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
4773
0x1D73,0x1DBE,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
4774
0x1D74,0x1DBE,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
4775
0x1D70,0x1DBE,0x1E0F,0x1D62,0x1DC6,0x0000,0x0000,0x0000,
4776
0x1D6E,0x1DCB,0x1D6D,0x1DD1,0x0000,0x0000,0x0000,0x0000,
4777
0xFBC0,0xB27E,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
4778
0x0DC4,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
4779
0xFB40,0xCE00,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
4780
0xFB40,0xCE8C,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
4781
0xFB40,0xCE09,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
4782
0xFB40,0xD6DB,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
4783
0xFB40,0xCE94,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
4784
0xFB40,0xD16D,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
4785
0xFB40,0xCE03,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
4786
0xFB40,0xD16B,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
4787
0xFB40,0xCE5D,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
4788
0xFB40,0xD341,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
4789
0xFB40,0xE708,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
4790
0xFB40,0xF06B,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
4791
0xFB40,0xEC34,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
4792
0xFB40,0xE728,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
4793
0xFB41,0x91D1,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
4794
0xFB40,0xD71F,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
4795
0xFB40,0xE5E5,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
4796
0xFB40,0xE82A,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
4797
0xFB40,0xE709,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
4798
0xFB40,0xF93E,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
4799
0xFB40,0xD40D,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
4800
0xFB40,0xF279,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
4801
0xFB41,0x8CA1,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
4802
0xFB40,0xF95D,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
4803
0xFB40,0xD2B4,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
4804
0xFB40,0xF9D8,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
4805
0xFB40,0xF537,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
4806
0xFB40,0xD973,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
4807
0xFB41,0x9069,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
4808
0xFB40,0xD12A,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
4809
0xFB40,0xD370,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
4810
0xFB40,0xECE8,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
4811
0xFB41,0x9805,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
4812
0xFB40,0xCF11,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
4813
0xFB40,0xD199,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
4814
0xFB40,0xEB63,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
4815
0xFB40,0xCE0A,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
4816
0xFB40,0xCE2D,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
4817
0xFB40,0xCE0B,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
4818
0xFB40,0xDDE6,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
4819
0xFB40,0xD3F3,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
4820
0xFB40,0xD33B,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
4821
0xFB40,0xDB97,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
4822
0xFB40,0xDB66,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
4823
0xFB40,0xF6E3,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
4824
0xFB40,0xCF01,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
4825
0xFB41,0x8CC7,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
4826
0xFB40,0xD354,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
4827
0xFB40,0xD91C,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
4828
0x0E2C,0x0E2F,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
4829
0x0E2C,0x0E30,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
4830
0x0E2C,0x0E31,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
4831
0x0E2C,0x0E32,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
4832
0x0E2D,0x0E29,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
4833
0x0E2D,0x0E2A,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
4834
0x0E2D,0x0E2B,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
4835
0x0E2D,0x0E2C,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
4836
0x0E2D,0x0E2D,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
4837
0x0E2D,0x0E2E,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
4838
0x0E2D,0x0E2F,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
4839
0x0E2D,0x0E30,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
4840
0x0E2D,0x0E31,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
4841
0x0E2D,0x0E32,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
4842
0x0E2E,0x0E29,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
4843
0x0E2A,0xFB40,0xE708,0x0000,0x0000,0x0000,0x0000,0x0000,
4844
0x0E2B,0xFB40,0xE708,0x0000,0x0000,0x0000,0x0000,0x0000,
4845
0x0E2C,0xFB40,0xE708,0x0000,0x0000,0x0000,0x0000,0x0000,
4846
0x0E2D,0xFB40,0xE708,0x0000,0x0000,0x0000,0x0000,0x0000,
4847
0x0E2E,0xFB40,0xE708,0x0000,0x0000,0x0000,0x0000,0x0000,
4848
0x0E2F,0xFB40,0xE708,0x0000,0x0000,0x0000,0x0000,0x0000,
4849
0x0E30,0xFB40,0xE708,0x0000,0x0000,0x0000,0x0000,0x0000,
4850
0x0E31,0xFB40,0xE708,0x0000,0x0000,0x0000,0x0000,0x0000,
4851
0x0E32,0xFB40,0xE708,0x0000,0x0000,0x0000,0x0000,0x0000,
4852
0x0E2A,0x0E29,0xFB40,0xE708,0x0000,0x0000,0x0000,0x0000,
4853
0x0E2A,0x0E2A,0xFB40,0xE708,0x0000,0x0000,0x0000,0x0000,
4854
0x0E2A,0x0E2B,0xFB40,0xE708,0x0000,0x0000,0x0000,0x0000,
4855
0x0EE1,0x0EC1,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
4856
0x0E8B,0x0FC0,0x0EC1,0x0000,0x0000,0x0000,0x0000,0x0000,
4857
0x0E8B,0x1044,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
4858
0x0F2E,0x1002,0x0E6D,0x0000,0x0000,0x0000,0x0000,0x0000,
4859
0x1E52,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
4860
0x1E53,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
4861
0x1E54,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
4862
0x1E55,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
4863
0x1E56,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
4864
0x1E57,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
4865
0x1E58,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
4866
0x1E59,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
4867
0x1E5A,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
4868
0x1E5B,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
4869
0x1E5C,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
4870
0x1E5D,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
4871
0x1E5E,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
4872
0x1E5F,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
4873
0x1E60,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
4874
0x1E61,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
4875
0x1E62,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
4876
0x1E63,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
4877
0x1E64,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
4878
0x1E65,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
4879
0x1E66,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
4880
0x1E67,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
4881
0x1E68,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
4882
0x1E69,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
4883
0x1E6A,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
4884
0x1E6B,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
4885
0x1E6C,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
4886
0x1E6D,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
4887
0x1E6E,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
4888
0x1E6F,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
4889
0x1E70,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
4890
0x1E71,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
4891
0x1E72,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
4892
0x1E73,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
4893
0x1E74,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
4894
0x1E75,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
4895
0x1E76,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
4896
0x1E77,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
4897
0x1E78,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
4898
0x1E79,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
4899
0x1E7A,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
4900
0x1E7B,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
4901
0x1E7C,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
4902
0x1E7D,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
4903
0x1E7E,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
4904
0x1E7F,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
4905
0x1E80,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
4906
0xFBC0,0xB2FF,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000
4907
};
4908
206 by Brian Aker
Removed final uint dead types.
4909
uint16_t page033data[]= { /* 3300 (9 weights per char) */
1 by brian
clean slate
4910
0x1E52,0x1E6B,0x0E0B,0x1E65,0x0000,0x0000,0x0000,0x0000,0x0000,
4911
0x1E52,0x1E7A,0x1E6D,0x1E52,0x0000,0x0000,0x0000,0x0000,0x0000,
4912
0x1E52,0x1E81,0x1E6E,0x1E52,0x0000,0x0000,0x0000,0x0000,0x0000,
4913
0x1E52,0x0E0B,0x1E7A,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
4914
0x1E53,0x1E67,0x1E81,0x1E59,0x0000,0x0000,0x0000,0x0000,0x0000,
4915
0x1E53,0x1E81,0x1E62,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
4916
0x1E54,0x1E56,0x1E81,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
4917
0x1E55,0x1E5E,0x1E59,0x0E0B,0x1E65,0x0000,0x0000,0x0000,0x0000,
4918
0x1E55,0x0E0B,0x1E57,0x0E0B,0x0000,0x0000,0x0000,0x0000,0x0000,
4919
0x1E56,0x1E81,0x1E5E,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
4920
0x1E56,0x0E0B,0x1E72,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
4921
0x1E57,0x1E53,0x1E79,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
4922
0x1E57,0x1E78,0x1E63,0x1E65,0x0000,0x0000,0x0000,0x0000,0x0000,
4923
0x1E57,0x1E7C,0x1E79,0x0E0B,0x0000,0x0000,0x0000,0x0000,0x0000,
4924
0x1E57,0x1E7C,0x1E81,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
4925
0x1E57,0x1E81,0x1E70,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
4926
0x1E58,0x1E57,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
4927
0x1E58,0x1E67,0x0E0B,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
4928
0x1E58,0x1E76,0x1E79,0x0E0B,0x0000,0x0000,0x0000,0x0000,0x0000,
4929
0x1E58,0x1E7A,0x1E61,0x0E0B,0x0000,0x0000,0x0000,0x0000,0x0000,
4930
0x1E58,0x1E7C,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
4931
0x1E58,0x1E7C,0x1E59,0x1E78,0x1E72,0x0000,0x0000,0x0000,0x0000,
4932
0x1E58,0x1E7C,0x1E73,0x0E0B,0x1E65,0x1E7A,0x0000,0x0000,0x0000,
4933
0x1E58,0x1E7C,0x1E7D,0x1E63,0x1E65,0x0000,0x0000,0x0000,0x0000,
4934
0x1E59,0x1E78,0x1E72,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
4935
0x1E59,0x1E78,0x1E72,0x1E65,0x1E81,0x0000,0x0000,0x0000,0x0000,
4936
0x1E59,0x1E7A,0x1E5F,0x1E53,0x1E7C,0x0000,0x0000,0x0000,0x0000,
4937
0x1E59,0x1E7C,0x0E0B,0x1E69,0x0000,0x0000,0x0000,0x0000,0x0000,
4938
0x1E5A,0x0E0B,0x1E5E,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
4939
0x1E5B,0x1E7A,0x1E66,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
4940
0x1E5B,0x0E0B,0x1E6F,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
4941
0x1E5C,0x1E53,0x1E59,0x1E7A,0x0000,0x0000,0x0000,0x0000,0x0000,
4942
0x1E5C,0x1E81,0x1E62,0x0E0B,0x1E72,0x0000,0x0000,0x0000,0x0000,
4943
0x1E5D,0x1E79,0x1E81,0x1E59,0x0000,0x0000,0x0000,0x0000,0x0000,
4944
0x1E5F,0x1E81,0x1E62,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
4945
0x1E5F,0x1E81,0x1E65,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
4946
0x1E61,0x0E0B,0x1E5E,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
4947
0x1E64,0x1E5D,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
4948
0x1E65,0x1E7A,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
4949
0x1E65,0x1E81,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
4950
0x1E66,0x1E6A,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
4951
0x1E6A,0x1E63,0x1E65,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
4952
0x1E6B,0x1E53,0x1E63,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
4953
0x1E6B,0x0E0B,0x1E5F,0x1E81,0x1E65,0x0000,0x0000,0x0000,0x0000,
4954
0x1E6B,0x0E0B,0x1E63,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
4955
0x1E6B,0x0E0B,0x1E7B,0x1E7A,0x0000,0x0000,0x0000,0x0000,0x0000,
4956
0x1E6C,0x1E52,0x1E5E,0x1E65,0x1E7A,0x0000,0x0000,0x0000,0x0000,
4957
0x1E6C,0x1E59,0x1E7A,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
4958
0x1E6C,0x1E5B,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
4959
0x1E6C,0x1E7A,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
4960
0x1E6D,0x1E52,0x1E78,0x1E63,0x1E65,0x0000,0x0000,0x0000,0x0000,
4961
0x1E6D,0x1E53,0x0E0B,0x1E65,0x0000,0x0000,0x0000,0x0000,0x0000,
4962
0x1E6D,0x1E63,0x1E5D,0x1E55,0x1E7A,0x0000,0x0000,0x0000,0x0000,
4963
0x1E6D,0x1E78,0x1E81,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
4964
0x1E6E,0x1E59,0x1E61,0x0E0B,0x1E7A,0x0000,0x0000,0x0000,0x0000,
4965
0x1E6E,0x1E60,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
4966
0x1E6E,0x1E67,0x1E6C,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
4967
0x1E6E,0x1E7A,0x1E63,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
4968
0x1E6E,0x1E81,0x1E5E,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
4969
0x1E6E,0x0E0B,0x1E5D,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
4970
0x1E6E,0x0E0B,0x1E61,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
4971
0x1E6F,0x1E53,0x1E81,0x1E65,0x0000,0x0000,0x0000,0x0000,0x0000,
4972
0x1E6F,0x1E7A,0x1E65,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
4973
0x1E6F,0x1E81,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
4974
0x1E6F,0x1E81,0x1E65,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
4975
0x1E6F,0x0E0B,0x1E7A,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
4976
0x1E6F,0x0E0B,0x1E81,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
4977
0x1E70,0x1E53,0x1E59,0x1E7C,0x0000,0x0000,0x0000,0x0000,0x0000,
4978
0x1E70,0x1E53,0x1E7A,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
4979
0x1E70,0x1E63,0x1E6B,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
4980
0x1E70,0x1E7A,0x1E59,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
4981
0x1E70,0x1E81,0x1E5D,0x1E77,0x1E81,0x0000,0x0000,0x0000,0x0000,
4982
0x1E71,0x1E59,0x1E7C,0x1E81,0x0000,0x0000,0x0000,0x0000,0x0000,
4983
0x1E71,0x1E79,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
4984
0x1E71,0x1E79,0x1E6B,0x0E0B,0x1E7A,0x0000,0x0000,0x0000,0x0000,
4985
0x1E73,0x1E57,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
4986
0x1E73,0x1E57,0x1E65,0x1E81,0x0000,0x0000,0x0000,0x0000,0x0000,
4987
0x1E73,0x0E0B,0x1E65,0x1E7A,0x0000,0x0000,0x0000,0x0000,0x0000,
4988
0x1E75,0x0E0B,0x1E65,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
4989
0x1E75,0x0E0B,0x1E7A,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
4990
0x1E76,0x1E52,0x1E81,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
4991
0x1E79,0x1E63,0x1E65,0x1E7A,0x0000,0x0000,0x0000,0x0000,0x0000,
4992
0x1E79,0x1E78,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
4993
0x1E7A,0x1E6C,0x0E0B,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
4994
0x1E7A,0x0E0B,0x1E6D,0x1E7A,0x0000,0x0000,0x0000,0x0000,0x0000,
4995
0x1E7B,0x1E72,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
4996
0x1E7B,0x1E81,0x1E65,0x1E5A,0x1E81,0x0000,0x0000,0x0000,0x0000,
4997
0x1E7D,0x1E63,0x1E65,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
4998
0x0E29,0xFB40,0xF0B9,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
4999
0x0E2A,0xFB40,0xF0B9,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
5000
0x0E2B,0xFB40,0xF0B9,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
5001
0x0E2C,0xFB40,0xF0B9,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
5002
0x0E2D,0xFB40,0xF0B9,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
5003
0x0E2E,0xFB40,0xF0B9,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
5004
0x0E2F,0xFB40,0xF0B9,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
5005
0x0E30,0xFB40,0xF0B9,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
5006
0x0E31,0xFB40,0xF0B9,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
5007
0x0E32,0xFB40,0xF0B9,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
5008
0x0E2A,0x0E29,0xFB40,0xF0B9,0x0000,0x0000,0x0000,0x0000,0x0000,
5009
0x0E2A,0x0E2A,0xFB40,0xF0B9,0x0000,0x0000,0x0000,0x0000,0x0000,
5010
0x0E2A,0x0E2B,0xFB40,0xF0B9,0x0000,0x0000,0x0000,0x0000,0x0000,
5011
0x0E2A,0x0E2C,0xFB40,0xF0B9,0x0000,0x0000,0x0000,0x0000,0x0000,
5012
0x0E2A,0x0E2D,0xFB40,0xF0B9,0x0000,0x0000,0x0000,0x0000,0x0000,
5013
0x0E2A,0x0E2E,0xFB40,0xF0B9,0x0000,0x0000,0x0000,0x0000,0x0000,
5014
0x0E2A,0x0E2F,0xFB40,0xF0B9,0x0000,0x0000,0x0000,0x0000,0x0000,
5015
0x0E2A,0x0E30,0xFB40,0xF0B9,0x0000,0x0000,0x0000,0x0000,0x0000,
5016
0x0E2A,0x0E31,0xFB40,0xF0B9,0x0000,0x0000,0x0000,0x0000,0x0000,
5017
0x0E2A,0x0E32,0xFB40,0xF0B9,0x0000,0x0000,0x0000,0x0000,0x0000,
5018
0x0E2B,0x0E29,0xFB40,0xF0B9,0x0000,0x0000,0x0000,0x0000,0x0000,
5019
0x0E2B,0x0E2A,0xFB40,0xF0B9,0x0000,0x0000,0x0000,0x0000,0x0000,
5020
0x0E2B,0x0E2B,0xFB40,0xF0B9,0x0000,0x0000,0x0000,0x0000,0x0000,
5021
0x0E2B,0x0E2C,0xFB40,0xF0B9,0x0000,0x0000,0x0000,0x0000,0x0000,
5022
0x0E2B,0x0E2D,0xFB40,0xF0B9,0x0000,0x0000,0x0000,0x0000,0x0000,
5023
0x0EE1,0x0FA7,0x0E33,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
5024
0x0E6D,0x0E33,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
5025
0x0E33,0x101F,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
5026
0x0E4A,0x0E33,0x0FC0,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
5027
0x0F82,0x1044,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
5028
0x0FA7,0x0E60,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
5029
0x0E6D,0x0F5B,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
5030
0x0E6D,0x0F5B,0x0E2B,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
5031
0x0E6D,0x0F5B,0x0E2C,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
5032
0x0EFB,0x101F,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
5033
0xFB40,0xDE73,0xFB40,0xE210,0x0000,0x0000,0x0000,0x0000,0x0000,
5034
0xFB40,0xE62D,0xFB40,0xD48C,0x0000,0x0000,0x0000,0x0000,0x0000,
5035
0xFB40,0xD927,0xFB40,0xEB63,0x0000,0x0000,0x0000,0x0000,0x0000,
5036
0xFB40,0xE60E,0xFB40,0xECBB,0x0000,0x0000,0x0000,0x0000,0x0000,
5037
0xFB40,0xE82A,0xFB40,0xDF0F,0xFB40,0xCF1A,0xFB40,0xF93E,0x0000,
5038
0x0FA7,0x0E33,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
5039
0x0F64,0x0E33,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
5040
0x10F8,0x0E33,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
5041
0x0F5B,0x0E33,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
5042
0x0F21,0x0E33,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
5043
0x0F21,0x0E4A,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
5044
0x0F5B,0x0E4A,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
5045
0x0EC1,0x0E4A,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
5046
0x0E60,0x0E33,0x0F2E,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
5047
0x0F21,0x0E60,0x0E33,0x0F2E,0x0000,0x0000,0x0000,0x0000,0x0000,
5048
0x0FA7,0x0EB9,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
5049
0x0F64,0x0EB9,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
5050
0x10F8,0x0EB9,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
5051
0x10F8,0x0EC1,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
5052
0x0F5B,0x0EC1,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
5053
0x0F21,0x0EC1,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
5054
0x0EE1,0x106A,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
5055
0x0F21,0x0EE1,0x106A,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
5056
0x0F5B,0x0EE1,0x106A,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
5057
0x0EC1,0x0EE1,0x106A,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
5058
0x1002,0x0EE1,0x106A,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
5059
0x10F8,0x0F2E,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
5060
0x0F5B,0x0F2E,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
5061
0x0E6D,0x0F2E,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
5062
0x0F21,0x0F2E,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
5063
0x0EB9,0x0F5B,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
5064
0x0F64,0x0F5B,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
5065
0x10F8,0x0F5B,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
5066
0x0F5B,0x0F5B,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
5067
0x0E60,0x0F5B,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
5068
0x0F21,0x0F5B,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
5069
0x0F5B,0x0F5B,0x0E2B,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
5070
0x0E60,0x0F5B,0x0E2B,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
5071
0x0F5B,0x0E2B,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
5072
0x0F21,0x0F5B,0x0E2B,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
5073
0x0F5B,0x0F5B,0x0E2C,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
5074
0x0E60,0x0F5B,0x0E2C,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
5075
0x0F5B,0x0E2C,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
5076
0x0F21,0x0F5B,0x0E2C,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
5077
0x0F5B,0x0437,0x0FEA,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
5078
0x0F5B,0x0437,0x0FEA,0x0E2B,0x0000,0x0000,0x0000,0x0000,0x0000,
5079
0x0FA7,0x0E33,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
5080
0x0F21,0x0FA7,0x0E33,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
5081
0x0F5B,0x0FA7,0x0E33,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
5082
0x0EC1,0x0FA7,0x0E33,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
5083
0x0FC0,0x0E33,0x0E6D,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
5084
0x0FC0,0x0E33,0x0E6D,0x0437,0x0FEA,0x0000,0x0000,0x0000,0x0000,
5085
0x0FC0,0x0E33,0x0E6D,0x0437,0x0FEA,0x0E2B,0x0000,0x0000,0x0000,
5086
0x0FA7,0x0FEA,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
5087
0x0F64,0x0FEA,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
5088
0x10F8,0x0FEA,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
5089
0x0F5B,0x0FEA,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
5090
0x0FA7,0x1044,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
5091
0x0F64,0x1044,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
5092
0x10F8,0x1044,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
5093
0x0F5B,0x1044,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
5094
0x0F21,0x1044,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
5095
0x0F5B,0x1044,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
5096
0x0FA7,0x1051,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
5097
0x0F64,0x1051,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
5098
0x10F8,0x1051,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
5099
0x0F5B,0x1051,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
5100
0x0F21,0x1051,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
5101
0x0F5B,0x1051,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
5102
0x0F21,0x1109,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
5103
0x0F5B,0x1109,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
5104
0x0E33,0x025D,0x0F5B,0x025D,0x0000,0x0000,0x0000,0x0000,0x0000,
5105
0x0E4A,0x0FB4,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
5106
0x0E60,0x0E60,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
5107
0x0E60,0x0E6D,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
5108
0x0E60,0x0437,0x0F21,0x0EC1,0x0000,0x0000,0x0000,0x0000,0x0000,
5109
0x0E60,0x0F82,0x025D,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
5110
0x0E6D,0x0E4A,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
5111
0x0EC1,0x105E,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
5112
0x0EE1,0x0E33,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
5113
0x0EE1,0x0FA7,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
5114
0x0EFB,0x0F64,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
5115
0x0F21,0x0F21,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
5116
0x0F21,0x0F5B,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
5117
0x0F21,0x1002,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
5118
0x0F2E,0x0F5B,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
5119
0x0F2E,0x0F64,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
5120
0x0F2E,0x0F82,0x0EC1,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
5121
0x0F2E,0x105A,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
5122
0x0F5B,0x0E4A,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
5123
0x0F5B,0x0EFB,0x0F2E,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
5124
0x0F5B,0x0F82,0x0F2E,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
5125
0x0FA7,0x0EE1,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
5126
0x0FA7,0x025D,0x0F5B,0x025D,0x0000,0x0000,0x0000,0x0000,0x0000,
5127
0x0FA7,0x0FA7,0x0F5B,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
5128
0x0FA7,0x0FC0,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
5129
0x0FEA,0x0FC0,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
5130
0x0FEA,0x1044,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
5131
0x1051,0x0E4A,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
5132
0x1044,0x0437,0x0F5B,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
5133
0x0E33,0x0437,0x0F5B,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
5134
0x0E2A,0xFB40,0xE5E5,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
5135
0x0E2B,0xFB40,0xE5E5,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
5136
0x0E2C,0xFB40,0xE5E5,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
5137
0x0E2D,0xFB40,0xE5E5,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
5138
0x0E2E,0xFB40,0xE5E5,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
5139
0x0E2F,0xFB40,0xE5E5,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
5140
0x0E30,0xFB40,0xE5E5,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
5141
0x0E31,0xFB40,0xE5E5,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
5142
0x0E32,0xFB40,0xE5E5,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
5143
0x0E2A,0x0E29,0xFB40,0xE5E5,0x0000,0x0000,0x0000,0x0000,0x0000,
5144
0x0E2A,0x0E2A,0xFB40,0xE5E5,0x0000,0x0000,0x0000,0x0000,0x0000,
5145
0x0E2A,0x0E2B,0xFB40,0xE5E5,0x0000,0x0000,0x0000,0x0000,0x0000,
5146
0x0E2A,0x0E2C,0xFB40,0xE5E5,0x0000,0x0000,0x0000,0x0000,0x0000,
5147
0x0E2A,0x0E2D,0xFB40,0xE5E5,0x0000,0x0000,0x0000,0x0000,0x0000,
5148
0x0E2A,0x0E2E,0xFB40,0xE5E5,0x0000,0x0000,0x0000,0x0000,0x0000,
5149
0x0E2A,0x0E2F,0xFB40,0xE5E5,0x0000,0x0000,0x0000,0x0000,0x0000,
5150
0x0E2A,0x0E30,0xFB40,0xE5E5,0x0000,0x0000,0x0000,0x0000,0x0000,
5151
0x0E2A,0x0E31,0xFB40,0xE5E5,0x0000,0x0000,0x0000,0x0000,0x0000,
5152
0x0E2A,0x0E32,0xFB40,0xE5E5,0x0000,0x0000,0x0000,0x0000,0x0000,
5153
0x0E2B,0x0E29,0xFB40,0xE5E5,0x0000,0x0000,0x0000,0x0000,0x0000,
5154
0x0E2B,0x0E2A,0xFB40,0xE5E5,0x0000,0x0000,0x0000,0x0000,0x0000,
5155
0x0E2B,0x0E2B,0xFB40,0xE5E5,0x0000,0x0000,0x0000,0x0000,0x0000,
5156
0x0E2B,0x0E2C,0xFB40,0xE5E5,0x0000,0x0000,0x0000,0x0000,0x0000,
5157
0x0E2B,0x0E2D,0xFB40,0xE5E5,0x0000,0x0000,0x0000,0x0000,0x0000,
5158
0x0E2B,0x0E2E,0xFB40,0xE5E5,0x0000,0x0000,0x0000,0x0000,0x0000,
5159
0x0E2B,0x0E2F,0xFB40,0xE5E5,0x0000,0x0000,0x0000,0x0000,0x0000,
5160
0x0E2B,0x0E30,0xFB40,0xE5E5,0x0000,0x0000,0x0000,0x0000,0x0000,
5161
0x0E2B,0x0E31,0xFB40,0xE5E5,0x0000,0x0000,0x0000,0x0000,0x0000,
5162
0x0E2B,0x0E32,0xFB40,0xE5E5,0x0000,0x0000,0x0000,0x0000,0x0000,
5163
0x0E2C,0x0E29,0xFB40,0xE5E5,0x0000,0x0000,0x0000,0x0000,0x0000,
5164
0x0E2C,0x0E2A,0xFB40,0xE5E5,0x0000,0x0000,0x0000,0x0000,0x0000,
5165
0x0EC1,0x0E33,0x0F2E,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000
5166
};
5167
206 by Brian Aker
Removed final uint dead types.
5168
uint16_t page04Ddata[]= { /* 4D00 (3 weights per char) */
1 by brian
clean slate
5169
0xFB80,0xCD00,0x0000, 0xFB80,0xCD01,0x0000, 0xFB80,0xCD02,0x0000,
5170
0xFB80,0xCD03,0x0000, 0xFB80,0xCD04,0x0000, 0xFB80,0xCD05,0x0000,
5171
0xFB80,0xCD06,0x0000, 0xFB80,0xCD07,0x0000, 0xFB80,0xCD08,0x0000,
5172
0xFB80,0xCD09,0x0000, 0xFB80,0xCD0A,0x0000, 0xFB80,0xCD0B,0x0000,
5173
0xFB80,0xCD0C,0x0000, 0xFB80,0xCD0D,0x0000, 0xFB80,0xCD0E,0x0000,
5174
0xFB80,0xCD0F,0x0000, 0xFB80,0xCD10,0x0000, 0xFB80,0xCD11,0x0000,
5175
0xFB80,0xCD12,0x0000, 0xFB80,0xCD13,0x0000, 0xFB80,0xCD14,0x0000,
5176
0xFB80,0xCD15,0x0000, 0xFB80,0xCD16,0x0000, 0xFB80,0xCD17,0x0000,
5177
0xFB80,0xCD18,0x0000, 0xFB80,0xCD19,0x0000, 0xFB80,0xCD1A,0x0000,
5178
0xFB80,0xCD1B,0x0000, 0xFB80,0xCD1C,0x0000, 0xFB80,0xCD1D,0x0000,
5179
0xFB80,0xCD1E,0x0000, 0xFB80,0xCD1F,0x0000, 0xFB80,0xCD20,0x0000,
5180
0xFB80,0xCD21,0x0000, 0xFB80,0xCD22,0x0000, 0xFB80,0xCD23,0x0000,
5181
0xFB80,0xCD24,0x0000, 0xFB80,0xCD25,0x0000, 0xFB80,0xCD26,0x0000,
5182
0xFB80,0xCD27,0x0000, 0xFB80,0xCD28,0x0000, 0xFB80,0xCD29,0x0000,
5183
0xFB80,0xCD2A,0x0000, 0xFB80,0xCD2B,0x0000, 0xFB80,0xCD2C,0x0000,
5184
0xFB80,0xCD2D,0x0000, 0xFB80,0xCD2E,0x0000, 0xFB80,0xCD2F,0x0000,
5185
0xFB80,0xCD30,0x0000, 0xFB80,0xCD31,0x0000, 0xFB80,0xCD32,0x0000,
5186
0xFB80,0xCD33,0x0000, 0xFB80,0xCD34,0x0000, 0xFB80,0xCD35,0x0000,
5187
0xFB80,0xCD36,0x0000, 0xFB80,0xCD37,0x0000, 0xFB80,0xCD38,0x0000,
5188
0xFB80,0xCD39,0x0000, 0xFB80,0xCD3A,0x0000, 0xFB80,0xCD3B,0x0000,
5189
0xFB80,0xCD3C,0x0000, 0xFB80,0xCD3D,0x0000, 0xFB80,0xCD3E,0x0000,
5190
0xFB80,0xCD3F,0x0000, 0xFB80,0xCD40,0x0000, 0xFB80,0xCD41,0x0000,
5191
0xFB80,0xCD42,0x0000, 0xFB80,0xCD43,0x0000, 0xFB80,0xCD44,0x0000,
5192
0xFB80,0xCD45,0x0000, 0xFB80,0xCD46,0x0000, 0xFB80,0xCD47,0x0000,
5193
0xFB80,0xCD48,0x0000, 0xFB80,0xCD49,0x0000, 0xFB80,0xCD4A,0x0000,
5194
0xFB80,0xCD4B,0x0000, 0xFB80,0xCD4C,0x0000, 0xFB80,0xCD4D,0x0000,
5195
0xFB80,0xCD4E,0x0000, 0xFB80,0xCD4F,0x0000, 0xFB80,0xCD50,0x0000,
5196
0xFB80,0xCD51,0x0000, 0xFB80,0xCD52,0x0000, 0xFB80,0xCD53,0x0000,
5197
0xFB80,0xCD54,0x0000, 0xFB80,0xCD55,0x0000, 0xFB80,0xCD56,0x0000,
5198
0xFB80,0xCD57,0x0000, 0xFB80,0xCD58,0x0000, 0xFB80,0xCD59,0x0000,
5199
0xFB80,0xCD5A,0x0000, 0xFB80,0xCD5B,0x0000, 0xFB80,0xCD5C,0x0000,
5200
0xFB80,0xCD5D,0x0000, 0xFB80,0xCD5E,0x0000, 0xFB80,0xCD5F,0x0000,
5201
0xFB80,0xCD60,0x0000, 0xFB80,0xCD61,0x0000, 0xFB80,0xCD62,0x0000,
5202
0xFB80,0xCD63,0x0000, 0xFB80,0xCD64,0x0000, 0xFB80,0xCD65,0x0000,
5203
0xFB80,0xCD66,0x0000, 0xFB80,0xCD67,0x0000, 0xFB80,0xCD68,0x0000,
5204
0xFB80,0xCD69,0x0000, 0xFB80,0xCD6A,0x0000, 0xFB80,0xCD6B,0x0000,
5205
0xFB80,0xCD6C,0x0000, 0xFB80,0xCD6D,0x0000, 0xFB80,0xCD6E,0x0000,
5206
0xFB80,0xCD6F,0x0000, 0xFB80,0xCD70,0x0000, 0xFB80,0xCD71,0x0000,
5207
0xFB80,0xCD72,0x0000, 0xFB80,0xCD73,0x0000, 0xFB80,0xCD74,0x0000,
5208
0xFB80,0xCD75,0x0000, 0xFB80,0xCD76,0x0000, 0xFB80,0xCD77,0x0000,
5209
0xFB80,0xCD78,0x0000, 0xFB80,0xCD79,0x0000, 0xFB80,0xCD7A,0x0000,
5210
0xFB80,0xCD7B,0x0000, 0xFB80,0xCD7C,0x0000, 0xFB80,0xCD7D,0x0000,
5211
0xFB80,0xCD7E,0x0000, 0xFB80,0xCD7F,0x0000, 0xFB80,0xCD80,0x0000,
5212
0xFB80,0xCD81,0x0000, 0xFB80,0xCD82,0x0000, 0xFB80,0xCD83,0x0000,
5213
0xFB80,0xCD84,0x0000, 0xFB80,0xCD85,0x0000, 0xFB80,0xCD86,0x0000,
5214
0xFB80,0xCD87,0x0000, 0xFB80,0xCD88,0x0000, 0xFB80,0xCD89,0x0000,
5215
0xFB80,0xCD8A,0x0000, 0xFB80,0xCD8B,0x0000, 0xFB80,0xCD8C,0x0000,
5216
0xFB80,0xCD8D,0x0000, 0xFB80,0xCD8E,0x0000, 0xFB80,0xCD8F,0x0000,
5217
0xFB80,0xCD90,0x0000, 0xFB80,0xCD91,0x0000, 0xFB80,0xCD92,0x0000,
5218
0xFB80,0xCD93,0x0000, 0xFB80,0xCD94,0x0000, 0xFB80,0xCD95,0x0000,
5219
0xFB80,0xCD96,0x0000, 0xFB80,0xCD97,0x0000, 0xFB80,0xCD98,0x0000,
5220
0xFB80,0xCD99,0x0000, 0xFB80,0xCD9A,0x0000, 0xFB80,0xCD9B,0x0000,
5221
0xFB80,0xCD9C,0x0000, 0xFB80,0xCD9D,0x0000, 0xFB80,0xCD9E,0x0000,
5222
0xFB80,0xCD9F,0x0000, 0xFB80,0xCDA0,0x0000, 0xFB80,0xCDA1,0x0000,
5223
0xFB80,0xCDA2,0x0000, 0xFB80,0xCDA3,0x0000, 0xFB80,0xCDA4,0x0000,
5224
0xFB80,0xCDA5,0x0000, 0xFB80,0xCDA6,0x0000, 0xFB80,0xCDA7,0x0000,
5225
0xFB80,0xCDA8,0x0000, 0xFB80,0xCDA9,0x0000, 0xFB80,0xCDAA,0x0000,
5226
0xFB80,0xCDAB,0x0000, 0xFB80,0xCDAC,0x0000, 0xFB80,0xCDAD,0x0000,
5227
0xFB80,0xCDAE,0x0000, 0xFB80,0xCDAF,0x0000, 0xFB80,0xCDB0,0x0000,
5228
0xFB80,0xCDB1,0x0000, 0xFB80,0xCDB2,0x0000, 0xFB80,0xCDB3,0x0000,
5229
0xFB80,0xCDB4,0x0000, 0xFB80,0xCDB5,0x0000, 0xFBC0,0xCDB6,0x0000,
5230
0xFBC0,0xCDB7,0x0000, 0xFBC0,0xCDB8,0x0000, 0xFBC0,0xCDB9,0x0000,
5231
0xFBC0,0xCDBA,0x0000, 0xFBC0,0xCDBB,0x0000, 0xFBC0,0xCDBC,0x0000,
5232
0xFBC0,0xCDBD,0x0000, 0xFBC0,0xCDBE,0x0000, 0xFBC0,0xCDBF,0x0000,
5233
0x0B37,0x0000,0x0000, 0x0B38,0x0000,0x0000, 0x0B39,0x0000,0x0000,
5234
0x0B3A,0x0000,0x0000, 0x0B3B,0x0000,0x0000, 0x0B3C,0x0000,0x0000,
5235
0x0B3D,0x0000,0x0000, 0x0B3E,0x0000,0x0000, 0x0B3F,0x0000,0x0000,
5236
0x0B40,0x0000,0x0000, 0x0B41,0x0000,0x0000, 0x0B42,0x0000,0x0000,
5237
0x0B43,0x0000,0x0000, 0x0B44,0x0000,0x0000, 0x0B45,0x0000,0x0000,
5238
0x0B46,0x0000,0x0000, 0x0B47,0x0000,0x0000, 0x0B48,0x0000,0x0000,
5239
0x0B49,0x0000,0x0000, 0x0B4A,0x0000,0x0000, 0x0B4B,0x0000,0x0000,
5240
0x0B4C,0x0000,0x0000, 0x0B4D,0x0000,0x0000, 0x0B4E,0x0000,0x0000,
5241
0x0B4F,0x0000,0x0000, 0x0B50,0x0000,0x0000, 0x0B51,0x0000,0x0000,
5242
0x0B52,0x0000,0x0000, 0x0B53,0x0000,0x0000, 0x0B54,0x0000,0x0000,
5243
0x0B55,0x0000,0x0000, 0x0B56,0x0000,0x0000, 0x0B57,0x0000,0x0000,
5244
0x0B58,0x0000,0x0000, 0x0B59,0x0000,0x0000, 0x0B5A,0x0000,0x0000,
5245
0x0B5B,0x0000,0x0000, 0x0B5C,0x0000,0x0000, 0x0B5D,0x0000,0x0000,
5246
0x0B5E,0x0000,0x0000, 0x0B5F,0x0000,0x0000, 0x0B60,0x0000,0x0000,
5247
0x0B61,0x0000,0x0000, 0x0B62,0x0000,0x0000, 0x0B63,0x0000,0x0000,
5248
0x0B64,0x0000,0x0000, 0x0B65,0x0000,0x0000, 0x0B66,0x0000,0x0000,
5249
0x0B67,0x0000,0x0000, 0x0B68,0x0000,0x0000, 0x0B69,0x0000,0x0000,
5250
0x0B6A,0x0000,0x0000, 0x0B6B,0x0000,0x0000, 0x0B6C,0x0000,0x0000,
5251
0x0B6D,0x0000,0x0000, 0x0B6E,0x0000,0x0000, 0x0B6F,0x0000,0x0000,
5252
0x0B70,0x0000,0x0000, 0x0B71,0x0000,0x0000, 0x0B72,0x0000,0x0000,
5253
0x0B73,0x0000,0x0000, 0x0B74,0x0000,0x0000, 0x0B75,0x0000,0x0000,
5254
0x0B76,0x0000,0x0000 };
5255
206 by Brian Aker
Removed final uint dead types.
5256
uint16_t page0A0data[]= { /* A000 (2 weights per char) */
1 by brian
clean slate
5257
0x1EB1,0x0000, 0x1EB2,0x0000, 0x1EB3,0x0000, 0x1EB4,0x0000,
5258
0x1EB5,0x0000, 0x1EB6,0x0000, 0x1EB7,0x0000, 0x1EB8,0x0000,
5259
0x1EB9,0x0000, 0x1EBA,0x0000, 0x1EBB,0x0000, 0x1EBC,0x0000,
5260
0x1EBD,0x0000, 0x1EBE,0x0000, 0x1EBF,0x0000, 0x1EC0,0x0000,
5261
0x1EC1,0x0000, 0x1EC2,0x0000, 0x1EC3,0x0000, 0x1EC4,0x0000,
5262
0x1EC5,0x0000, 0x1EC6,0x0000, 0x1EC7,0x0000, 0x1EC8,0x0000,
5263
0x1EC9,0x0000, 0x1ECA,0x0000, 0x1ECB,0x0000, 0x1ECC,0x0000,
5264
0x1ECD,0x0000, 0x1ECE,0x0000, 0x1ECF,0x0000, 0x1ED0,0x0000,
5265
0x1ED1,0x0000, 0x1ED2,0x0000, 0x1ED3,0x0000, 0x1ED4,0x0000,
5266
0x1ED5,0x0000, 0x1ED6,0x0000, 0x1ED7,0x0000, 0x1ED8,0x0000,
5267
0x1ED9,0x0000, 0x1EDA,0x0000, 0x1EDB,0x0000, 0x1EDC,0x0000,
5268
0x1EDD,0x0000, 0x1EDE,0x0000, 0x1EDF,0x0000, 0x1EE0,0x0000,
5269
0x1EE1,0x0000, 0x1EE2,0x0000, 0x1EE3,0x0000, 0x1EE4,0x0000,
5270
0x1EE5,0x0000, 0x1EE6,0x0000, 0x1EE7,0x0000, 0x1EE8,0x0000,
5271
0x1EE9,0x0000, 0x1EEA,0x0000, 0x1EEB,0x0000, 0x1EEC,0x0000,
5272
0x1EED,0x0000, 0x1EEE,0x0000, 0x1EEF,0x0000, 0x1EF0,0x0000,
5273
0x1EF1,0x0000, 0x1EF2,0x0000, 0x1EF3,0x0000, 0x1EF4,0x0000,
5274
0x1EF5,0x0000, 0x1EF6,0x0000, 0x1EF7,0x0000, 0x1EF8,0x0000,
5275
0x1EF9,0x0000, 0x1EFA,0x0000, 0x1EFB,0x0000, 0x1EFC,0x0000,
5276
0x1EFD,0x0000, 0x1EFE,0x0000, 0x1EFF,0x0000, 0x1F00,0x0000,
5277
0x1F01,0x0000, 0x1F02,0x0000, 0x1F03,0x0000, 0x1F04,0x0000,
5278
0x1F05,0x0000, 0x1F06,0x0000, 0x1F07,0x0000, 0x1F08,0x0000,
5279
0x1F09,0x0000, 0x1F0A,0x0000, 0x1F0B,0x0000, 0x1F0C,0x0000,
5280
0x1F0D,0x0000, 0x1F0E,0x0000, 0x1F0F,0x0000, 0x1F10,0x0000,
5281
0x1F11,0x0000, 0x1F12,0x0000, 0x1F13,0x0000, 0x1F14,0x0000,
5282
0x1F15,0x0000, 0x1F16,0x0000, 0x1F17,0x0000, 0x1F18,0x0000,
5283
0x1F19,0x0000, 0x1F1A,0x0000, 0x1F1B,0x0000, 0x1F1C,0x0000,
5284
0x1F1D,0x0000, 0x1F1E,0x0000, 0x1F1F,0x0000, 0x1F20,0x0000,
5285
0x1F21,0x0000, 0x1F22,0x0000, 0x1F23,0x0000, 0x1F24,0x0000,
5286
0x1F25,0x0000, 0x1F26,0x0000, 0x1F27,0x0000, 0x1F28,0x0000,
5287
0x1F29,0x0000, 0x1F2A,0x0000, 0x1F2B,0x0000, 0x1F2C,0x0000,
5288
0x1F2D,0x0000, 0x1F2E,0x0000, 0x1F2F,0x0000, 0x1F30,0x0000,
5289
0x1F31,0x0000, 0x1F32,0x0000, 0x1F33,0x0000, 0x1F34,0x0000,
5290
0x1F35,0x0000, 0x1F36,0x0000, 0x1F37,0x0000, 0x1F38,0x0000,
5291
0x1F39,0x0000, 0x1F3A,0x0000, 0x1F3B,0x0000, 0x1F3C,0x0000,
5292
0x1F3D,0x0000, 0x1F3E,0x0000, 0x1F3F,0x0000, 0x1F40,0x0000,
5293
0x1F41,0x0000, 0x1F42,0x0000, 0x1F43,0x0000, 0x1F44,0x0000,
5294
0x1F45,0x0000, 0x1F46,0x0000, 0x1F47,0x0000, 0x1F48,0x0000,
5295
0x1F49,0x0000, 0x1F4A,0x0000, 0x1F4B,0x0000, 0x1F4C,0x0000,
5296
0x1F4D,0x0000, 0x1F4E,0x0000, 0x1F4F,0x0000, 0x1F50,0x0000,
5297
0x1F51,0x0000, 0x1F52,0x0000, 0x1F53,0x0000, 0x1F54,0x0000,
5298
0x1F55,0x0000, 0x1F56,0x0000, 0x1F57,0x0000, 0x1F58,0x0000,
5299
0x1F59,0x0000, 0x1F5A,0x0000, 0x1F5B,0x0000, 0x1F5C,0x0000,
5300
0x1F5D,0x0000, 0x1F5E,0x0000, 0x1F5F,0x0000, 0x1F60,0x0000,
5301
0x1F61,0x0000, 0x1F62,0x0000, 0x1F63,0x0000, 0x1F64,0x0000,
5302
0x1F65,0x0000, 0x1F66,0x0000, 0x1F67,0x0000, 0x1F68,0x0000,
5303
0x1F69,0x0000, 0x1F6A,0x0000, 0x1F6B,0x0000, 0x1F6C,0x0000,
5304
0x1F6D,0x0000, 0x1F6E,0x0000, 0x1F6F,0x0000, 0x1F70,0x0000,
5305
0x1F71,0x0000, 0x1F72,0x0000, 0x1F73,0x0000, 0x1F74,0x0000,
5306
0x1F75,0x0000, 0x1F76,0x0000, 0x1F77,0x0000, 0x1F78,0x0000,
5307
0x1F79,0x0000, 0x1F7A,0x0000, 0x1F7B,0x0000, 0x1F7C,0x0000,
5308
0x1F7D,0x0000, 0x1F7E,0x0000, 0x1F7F,0x0000, 0x1F80,0x0000,
5309
0x1F81,0x0000, 0x1F82,0x0000, 0x1F83,0x0000, 0x1F84,0x0000,
5310
0x1F85,0x0000, 0x1F86,0x0000, 0x1F87,0x0000, 0x1F88,0x0000,
5311
0x1F89,0x0000, 0x1F8A,0x0000, 0x1F8B,0x0000, 0x1F8C,0x0000,
5312
0x1F8D,0x0000, 0x1F8E,0x0000, 0x1F8F,0x0000, 0x1F90,0x0000,
5313
0x1F91,0x0000, 0x1F92,0x0000, 0x1F93,0x0000, 0x1F94,0x0000,
5314
0x1F95,0x0000, 0x1F96,0x0000, 0x1F97,0x0000, 0x1F98,0x0000,
5315
0x1F99,0x0000, 0x1F9A,0x0000, 0x1F9B,0x0000, 0x1F9C,0x0000,
5316
0x1F9D,0x0000, 0x1F9E,0x0000, 0x1F9F,0x0000, 0x1FA0,0x0000,
5317
0x1FA1,0x0000, 0x1FA2,0x0000, 0x1FA3,0x0000, 0x1FA4,0x0000,
5318
0x1FA5,0x0000, 0x1FA6,0x0000, 0x1FA7,0x0000, 0x1FA8,0x0000,
5319
0x1FA9,0x0000, 0x1FAA,0x0000, 0x1FAB,0x0000, 0x1FAC,0x0000,
5320
0x1FAD,0x0000, 0x1FAE,0x0000, 0x1FAF,0x0000, 0x1FB0,0x0000
5321
};
5322
206 by Brian Aker
Removed final uint dead types.
5323
uint16_t page0A1data[]= { /* A100 (2 weights per char) */
1 by brian
clean slate
5324
0x1FB1,0x0000, 0x1FB2,0x0000, 0x1FB3,0x0000, 0x1FB4,0x0000,
5325
0x1FB5,0x0000, 0x1FB6,0x0000, 0x1FB7,0x0000, 0x1FB8,0x0000,
5326
0x1FB9,0x0000, 0x1FBA,0x0000, 0x1FBB,0x0000, 0x1FBC,0x0000,
5327
0x1FBD,0x0000, 0x1FBE,0x0000, 0x1FBF,0x0000, 0x1FC0,0x0000,
5328
0x1FC1,0x0000, 0x1FC2,0x0000, 0x1FC3,0x0000, 0x1FC4,0x0000,
5329
0x1FC5,0x0000, 0x1FC6,0x0000, 0x1FC7,0x0000, 0x1FC8,0x0000,
5330
0x1FC9,0x0000, 0x1FCA,0x0000, 0x1FCB,0x0000, 0x1FCC,0x0000,
5331
0x1FCD,0x0000, 0x1FCE,0x0000, 0x1FCF,0x0000, 0x1FD0,0x0000,
5332
0x1FD1,0x0000, 0x1FD2,0x0000, 0x1FD3,0x0000, 0x1FD4,0x0000,
5333
0x1FD5,0x0000, 0x1FD6,0x0000, 0x1FD7,0x0000, 0x1FD8,0x0000,
5334
0x1FD9,0x0000, 0x1FDA,0x0000, 0x1FDB,0x0000, 0x1FDC,0x0000,
5335
0x1FDD,0x0000, 0x1FDE,0x0000, 0x1FDF,0x0000, 0x1FE0,0x0000,
5336
0x1FE1,0x0000, 0x1FE2,0x0000, 0x1FE3,0x0000, 0x1FE4,0x0000,
5337
0x1FE5,0x0000, 0x1FE6,0x0000, 0x1FE7,0x0000, 0x1FE8,0x0000,
5338
0x1FE9,0x0000, 0x1FEA,0x0000, 0x1FEB,0x0000, 0x1FEC,0x0000,
5339
0x1FED,0x0000, 0x1FEE,0x0000, 0x1FEF,0x0000, 0x1FF0,0x0000,
5340
0x1FF1,0x0000, 0x1FF2,0x0000, 0x1FF3,0x0000, 0x1FF4,0x0000,
5341
0x1FF5,0x0000, 0x1FF6,0x0000, 0x1FF7,0x0000, 0x1FF8,0x0000,
5342
0x1FF9,0x0000, 0x1FFA,0x0000, 0x1FFB,0x0000, 0x1FFC,0x0000,
5343
0x1FFD,0x0000, 0x1FFE,0x0000, 0x1FFF,0x0000, 0x2000,0x0000,
5344
0x2001,0x0000, 0x2002,0x0000, 0x2003,0x0000, 0x2004,0x0000,
5345
0x2005,0x0000, 0x2006,0x0000, 0x2007,0x0000, 0x2008,0x0000,
5346
0x2009,0x0000, 0x200A,0x0000, 0x200B,0x0000, 0x200C,0x0000,
5347
0x200D,0x0000, 0x200E,0x0000, 0x200F,0x0000, 0x2010,0x0000,
5348
0x2011,0x0000, 0x2012,0x0000, 0x2013,0x0000, 0x2014,0x0000,
5349
0x2015,0x0000, 0x2016,0x0000, 0x2017,0x0000, 0x2018,0x0000,
5350
0x2019,0x0000, 0x201A,0x0000, 0x201B,0x0000, 0x201C,0x0000,
5351
0x201D,0x0000, 0x201E,0x0000, 0x201F,0x0000, 0x2020,0x0000,
5352
0x2021,0x0000, 0x2022,0x0000, 0x2023,0x0000, 0x2024,0x0000,
5353
0x2025,0x0000, 0x2026,0x0000, 0x2027,0x0000, 0x2028,0x0000,
5354
0x2029,0x0000, 0x202A,0x0000, 0x202B,0x0000, 0x202C,0x0000,
5355
0x202D,0x0000, 0x202E,0x0000, 0x202F,0x0000, 0x2030,0x0000,
5356
0x2031,0x0000, 0x2032,0x0000, 0x2033,0x0000, 0x2034,0x0000,
5357
0x2035,0x0000, 0x2036,0x0000, 0x2037,0x0000, 0x2038,0x0000,
5358
0x2039,0x0000, 0x203A,0x0000, 0x203B,0x0000, 0x203C,0x0000,
5359
0x203D,0x0000, 0x203E,0x0000, 0x203F,0x0000, 0x2040,0x0000,
5360
0x2041,0x0000, 0x2042,0x0000, 0x2043,0x0000, 0x2044,0x0000,
5361
0x2045,0x0000, 0x2046,0x0000, 0x2047,0x0000, 0x2048,0x0000,
5362
0x2049,0x0000, 0x204A,0x0000, 0x204B,0x0000, 0x204C,0x0000,
5363
0x204D,0x0000, 0x204E,0x0000, 0x204F,0x0000, 0x2050,0x0000,
5364
0x2051,0x0000, 0x2052,0x0000, 0x2053,0x0000, 0x2054,0x0000,
5365
0x2055,0x0000, 0x2056,0x0000, 0x2057,0x0000, 0x2058,0x0000,
5366
0x2059,0x0000, 0x205A,0x0000, 0x205B,0x0000, 0x205C,0x0000,
5367
0x205D,0x0000, 0x205E,0x0000, 0x205F,0x0000, 0x2060,0x0000,
5368
0x2061,0x0000, 0x2062,0x0000, 0x2063,0x0000, 0x2064,0x0000,
5369
0x2065,0x0000, 0x2066,0x0000, 0x2067,0x0000, 0x2068,0x0000,
5370
0x2069,0x0000, 0x206A,0x0000, 0x206B,0x0000, 0x206C,0x0000,
5371
0x206D,0x0000, 0x206E,0x0000, 0x206F,0x0000, 0x2070,0x0000,
5372
0x2071,0x0000, 0x2072,0x0000, 0x2073,0x0000, 0x2074,0x0000,
5373
0x2075,0x0000, 0x2076,0x0000, 0x2077,0x0000, 0x2078,0x0000,
5374
0x2079,0x0000, 0x207A,0x0000, 0x207B,0x0000, 0x207C,0x0000,
5375
0x207D,0x0000, 0x207E,0x0000, 0x207F,0x0000, 0x2080,0x0000,
5376
0x2081,0x0000, 0x2082,0x0000, 0x2083,0x0000, 0x2084,0x0000,
5377
0x2085,0x0000, 0x2086,0x0000, 0x2087,0x0000, 0x2088,0x0000,
5378
0x2089,0x0000, 0x208A,0x0000, 0x208B,0x0000, 0x208C,0x0000,
5379
0x208D,0x0000, 0x208E,0x0000, 0x208F,0x0000, 0x2090,0x0000,
5380
0x2091,0x0000, 0x2092,0x0000, 0x2093,0x0000, 0x2094,0x0000,
5381
0x2095,0x0000, 0x2096,0x0000, 0x2097,0x0000, 0x2098,0x0000,
5382
0x2099,0x0000, 0x209A,0x0000, 0x209B,0x0000, 0x209C,0x0000,
5383
0x209D,0x0000, 0x209E,0x0000, 0x209F,0x0000, 0x20A0,0x0000,
5384
0x20A1,0x0000, 0x20A2,0x0000, 0x20A3,0x0000, 0x20A4,0x0000,
5385
0x20A5,0x0000, 0x20A6,0x0000, 0x20A7,0x0000, 0x20A8,0x0000,
5386
0x20A9,0x0000, 0x20AA,0x0000, 0x20AB,0x0000, 0x20AC,0x0000,
5387
0x20AD,0x0000, 0x20AE,0x0000, 0x20AF,0x0000, 0x20B0,0x0000
5388
};
5389
206 by Brian Aker
Removed final uint dead types.
5390
uint16_t page0A2data[]= { /* A200 (2 weights per char) */
1 by brian
clean slate
5391
0x20B1,0x0000, 0x20B2,0x0000, 0x20B3,0x0000, 0x20B4,0x0000,
5392
0x20B5,0x0000, 0x20B6,0x0000, 0x20B7,0x0000, 0x20B8,0x0000,
5393
0x20B9,0x0000, 0x20BA,0x0000, 0x20BB,0x0000, 0x20BC,0x0000,
5394
0x20BD,0x0000, 0x20BE,0x0000, 0x20BF,0x0000, 0x20C0,0x0000,
5395
0x20C1,0x0000, 0x20C2,0x0000, 0x20C3,0x0000, 0x20C4,0x0000,
5396
0x20C5,0x0000, 0x20C6,0x0000, 0x20C7,0x0000, 0x20C8,0x0000,
5397
0x20C9,0x0000, 0x20CA,0x0000, 0x20CB,0x0000, 0x20CC,0x0000,
5398
0x20CD,0x0000, 0x20CE,0x0000, 0x20CF,0x0000, 0x20D0,0x0000,
5399
0x20D1,0x0000, 0x20D2,0x0000, 0x20D3,0x0000, 0x20D4,0x0000,
5400
0x20D5,0x0000, 0x20D6,0x0000, 0x20D7,0x0000, 0x20D8,0x0000,
5401
0x20D9,0x0000, 0x20DA,0x0000, 0x20DB,0x0000, 0x20DC,0x0000,
5402
0x20DD,0x0000, 0x20DE,0x0000, 0x20DF,0x0000, 0x20E0,0x0000,
5403
0x20E1,0x0000, 0x20E2,0x0000, 0x20E3,0x0000, 0x20E4,0x0000,
5404
0x20E5,0x0000, 0x20E6,0x0000, 0x20E7,0x0000, 0x20E8,0x0000,
5405
0x20E9,0x0000, 0x20EA,0x0000, 0x20EB,0x0000, 0x20EC,0x0000,
5406
0x20ED,0x0000, 0x20EE,0x0000, 0x20EF,0x0000, 0x20F0,0x0000,
5407
0x20F1,0x0000, 0x20F2,0x0000, 0x20F3,0x0000, 0x20F4,0x0000,
5408
0x20F5,0x0000, 0x20F6,0x0000, 0x20F7,0x0000, 0x20F8,0x0000,
5409
0x20F9,0x0000, 0x20FA,0x0000, 0x20FB,0x0000, 0x20FC,0x0000,
5410
0x20FD,0x0000, 0x20FE,0x0000, 0x20FF,0x0000, 0x2100,0x0000,
5411
0x2101,0x0000, 0x2102,0x0000, 0x2103,0x0000, 0x2104,0x0000,
5412
0x2105,0x0000, 0x2106,0x0000, 0x2107,0x0000, 0x2108,0x0000,
5413
0x2109,0x0000, 0x210A,0x0000, 0x210B,0x0000, 0x210C,0x0000,
5414
0x210D,0x0000, 0x210E,0x0000, 0x210F,0x0000, 0x2110,0x0000,
5415
0x2111,0x0000, 0x2112,0x0000, 0x2113,0x0000, 0x2114,0x0000,
5416
0x2115,0x0000, 0x2116,0x0000, 0x2117,0x0000, 0x2118,0x0000,
5417
0x2119,0x0000, 0x211A,0x0000, 0x211B,0x0000, 0x211C,0x0000,
5418
0x211D,0x0000, 0x211E,0x0000, 0x211F,0x0000, 0x2120,0x0000,
5419
0x2121,0x0000, 0x2122,0x0000, 0x2123,0x0000, 0x2124,0x0000,
5420
0x2125,0x0000, 0x2126,0x0000, 0x2127,0x0000, 0x2128,0x0000,
5421
0x2129,0x0000, 0x212A,0x0000, 0x212B,0x0000, 0x212C,0x0000,
5422
0x212D,0x0000, 0x212E,0x0000, 0x212F,0x0000, 0x2130,0x0000,
5423
0x2131,0x0000, 0x2132,0x0000, 0x2133,0x0000, 0x2134,0x0000,
5424
0x2135,0x0000, 0x2136,0x0000, 0x2137,0x0000, 0x2138,0x0000,
5425
0x2139,0x0000, 0x213A,0x0000, 0x213B,0x0000, 0x213C,0x0000,
5426
0x213D,0x0000, 0x213E,0x0000, 0x213F,0x0000, 0x2140,0x0000,
5427
0x2141,0x0000, 0x2142,0x0000, 0x2143,0x0000, 0x2144,0x0000,
5428
0x2145,0x0000, 0x2146,0x0000, 0x2147,0x0000, 0x2148,0x0000,
5429
0x2149,0x0000, 0x214A,0x0000, 0x214B,0x0000, 0x214C,0x0000,
5430
0x214D,0x0000, 0x214E,0x0000, 0x214F,0x0000, 0x2150,0x0000,
5431
0x2151,0x0000, 0x2152,0x0000, 0x2153,0x0000, 0x2154,0x0000,
5432
0x2155,0x0000, 0x2156,0x0000, 0x2157,0x0000, 0x2158,0x0000,
5433
0x2159,0x0000, 0x215A,0x0000, 0x215B,0x0000, 0x215C,0x0000,
5434
0x215D,0x0000, 0x215E,0x0000, 0x215F,0x0000, 0x2160,0x0000,
5435
0x2161,0x0000, 0x2162,0x0000, 0x2163,0x0000, 0x2164,0x0000,
5436
0x2165,0x0000, 0x2166,0x0000, 0x2167,0x0000, 0x2168,0x0000,
5437
0x2169,0x0000, 0x216A,0x0000, 0x216B,0x0000, 0x216C,0x0000,
5438
0x216D,0x0000, 0x216E,0x0000, 0x216F,0x0000, 0x2170,0x0000,
5439
0x2171,0x0000, 0x2172,0x0000, 0x2173,0x0000, 0x2174,0x0000,
5440
0x2175,0x0000, 0x2176,0x0000, 0x2177,0x0000, 0x2178,0x0000,
5441
0x2179,0x0000, 0x217A,0x0000, 0x217B,0x0000, 0x217C,0x0000,
5442
0x217D,0x0000, 0x217E,0x0000, 0x217F,0x0000, 0x2180,0x0000,
5443
0x2181,0x0000, 0x2182,0x0000, 0x2183,0x0000, 0x2184,0x0000,
5444
0x2185,0x0000, 0x2186,0x0000, 0x2187,0x0000, 0x2188,0x0000,
5445
0x2189,0x0000, 0x218A,0x0000, 0x218B,0x0000, 0x218C,0x0000,
5446
0x218D,0x0000, 0x218E,0x0000, 0x218F,0x0000, 0x2190,0x0000,
5447
0x2191,0x0000, 0x2192,0x0000, 0x2193,0x0000, 0x2194,0x0000,
5448
0x2195,0x0000, 0x2196,0x0000, 0x2197,0x0000, 0x2198,0x0000,
5449
0x2199,0x0000, 0x219A,0x0000, 0x219B,0x0000, 0x219C,0x0000,
5450
0x219D,0x0000, 0x219E,0x0000, 0x219F,0x0000, 0x21A0,0x0000,
5451
0x21A1,0x0000, 0x21A2,0x0000, 0x21A3,0x0000, 0x21A4,0x0000,
5452
0x21A5,0x0000, 0x21A6,0x0000, 0x21A7,0x0000, 0x21A8,0x0000,
5453
0x21A9,0x0000, 0x21AA,0x0000, 0x21AB,0x0000, 0x21AC,0x0000,
5454
0x21AD,0x0000, 0x21AE,0x0000, 0x21AF,0x0000, 0x21B0,0x0000
5455
};
5456
206 by Brian Aker
Removed final uint dead types.
5457
uint16_t page0A3data[]= { /* A300 (2 weights per char) */
1 by brian
clean slate
5458
0x21B1,0x0000, 0x21B2,0x0000, 0x21B3,0x0000, 0x21B4,0x0000,
5459
0x21B5,0x0000, 0x21B6,0x0000, 0x21B7,0x0000, 0x21B8,0x0000,
5460
0x21B9,0x0000, 0x21BA,0x0000, 0x21BB,0x0000, 0x21BC,0x0000,
5461
0x21BD,0x0000, 0x21BE,0x0000, 0x21BF,0x0000, 0x21C0,0x0000,
5462
0x21C1,0x0000, 0x21C2,0x0000, 0x21C3,0x0000, 0x21C4,0x0000,
5463
0x21C5,0x0000, 0x21C6,0x0000, 0x21C7,0x0000, 0x21C8,0x0000,
5464
0x21C9,0x0000, 0x21CA,0x0000, 0x21CB,0x0000, 0x21CC,0x0000,
5465
0x21CD,0x0000, 0x21CE,0x0000, 0x21CF,0x0000, 0x21D0,0x0000,
5466
0x21D1,0x0000, 0x21D2,0x0000, 0x21D3,0x0000, 0x21D4,0x0000,
5467
0x21D5,0x0000, 0x21D6,0x0000, 0x21D7,0x0000, 0x21D8,0x0000,
5468
0x21D9,0x0000, 0x21DA,0x0000, 0x21DB,0x0000, 0x21DC,0x0000,
5469
0x21DD,0x0000, 0x21DE,0x0000, 0x21DF,0x0000, 0x21E0,0x0000,
5470
0x21E1,0x0000, 0x21E2,0x0000, 0x21E3,0x0000, 0x21E4,0x0000,
5471
0x21E5,0x0000, 0x21E6,0x0000, 0x21E7,0x0000, 0x21E8,0x0000,
5472
0x21E9,0x0000, 0x21EA,0x0000, 0x21EB,0x0000, 0x21EC,0x0000,
5473
0x21ED,0x0000, 0x21EE,0x0000, 0x21EF,0x0000, 0x21F0,0x0000,
5474
0x21F1,0x0000, 0x21F2,0x0000, 0x21F3,0x0000, 0x21F4,0x0000,
5475
0x21F5,0x0000, 0x21F6,0x0000, 0x21F7,0x0000, 0x21F8,0x0000,
5476
0x21F9,0x0000, 0x21FA,0x0000, 0x21FB,0x0000, 0x21FC,0x0000,
5477
0x21FD,0x0000, 0x21FE,0x0000, 0x21FF,0x0000, 0x2200,0x0000,
5478
0x2201,0x0000, 0x2202,0x0000, 0x2203,0x0000, 0x2204,0x0000,
5479
0x2205,0x0000, 0x2206,0x0000, 0x2207,0x0000, 0x2208,0x0000,
5480
0x2209,0x0000, 0x220A,0x0000, 0x220B,0x0000, 0x220C,0x0000,
5481
0x220D,0x0000, 0x220E,0x0000, 0x220F,0x0000, 0x2210,0x0000,
5482
0x2211,0x0000, 0x2212,0x0000, 0x2213,0x0000, 0x2214,0x0000,
5483
0x2215,0x0000, 0x2216,0x0000, 0x2217,0x0000, 0x2218,0x0000,
5484
0x2219,0x0000, 0x221A,0x0000, 0x221B,0x0000, 0x221C,0x0000,
5485
0x221D,0x0000, 0x221E,0x0000, 0x221F,0x0000, 0x2220,0x0000,
5486
0x2221,0x0000, 0x2222,0x0000, 0x2223,0x0000, 0x2224,0x0000,
5487
0x2225,0x0000, 0x2226,0x0000, 0x2227,0x0000, 0x2228,0x0000,
5488
0x2229,0x0000, 0x222A,0x0000, 0x222B,0x0000, 0x222C,0x0000,
5489
0x222D,0x0000, 0x222E,0x0000, 0x222F,0x0000, 0x2230,0x0000,
5490
0x2231,0x0000, 0x2232,0x0000, 0x2233,0x0000, 0x2234,0x0000,
5491
0x2235,0x0000, 0x2236,0x0000, 0x2237,0x0000, 0x2238,0x0000,
5492
0x2239,0x0000, 0x223A,0x0000, 0x223B,0x0000, 0x223C,0x0000,
5493
0x223D,0x0000, 0x223E,0x0000, 0x223F,0x0000, 0x2240,0x0000,
5494
0x2241,0x0000, 0x2242,0x0000, 0x2243,0x0000, 0x2244,0x0000,
5495
0x2245,0x0000, 0x2246,0x0000, 0x2247,0x0000, 0x2248,0x0000,
5496
0x2249,0x0000, 0x224A,0x0000, 0x224B,0x0000, 0x224C,0x0000,
5497
0x224D,0x0000, 0x224E,0x0000, 0x224F,0x0000, 0x2250,0x0000,
5498
0x2251,0x0000, 0x2252,0x0000, 0x2253,0x0000, 0x2254,0x0000,
5499
0x2255,0x0000, 0x2256,0x0000, 0x2257,0x0000, 0x2258,0x0000,
5500
0x2259,0x0000, 0x225A,0x0000, 0x225B,0x0000, 0x225C,0x0000,
5501
0x225D,0x0000, 0x225E,0x0000, 0x225F,0x0000, 0x2260,0x0000,
5502
0x2261,0x0000, 0x2262,0x0000, 0x2263,0x0000, 0x2264,0x0000,
5503
0x2265,0x0000, 0x2266,0x0000, 0x2267,0x0000, 0x2268,0x0000,
5504
0x2269,0x0000, 0x226A,0x0000, 0x226B,0x0000, 0x226C,0x0000,
5505
0x226D,0x0000, 0x226E,0x0000, 0x226F,0x0000, 0x2270,0x0000,
5506
0x2271,0x0000, 0x2272,0x0000, 0x2273,0x0000, 0x2274,0x0000,
5507
0x2275,0x0000, 0x2276,0x0000, 0x2277,0x0000, 0x2278,0x0000,
5508
0x2279,0x0000, 0x227A,0x0000, 0x227B,0x0000, 0x227C,0x0000,
5509
0x227D,0x0000, 0x227E,0x0000, 0x227F,0x0000, 0x2280,0x0000,
5510
0x2281,0x0000, 0x2282,0x0000, 0x2283,0x0000, 0x2284,0x0000,
5511
0x2285,0x0000, 0x2286,0x0000, 0x2287,0x0000, 0x2288,0x0000,
5512
0x2289,0x0000, 0x228A,0x0000, 0x228B,0x0000, 0x228C,0x0000,
5513
0x228D,0x0000, 0x228E,0x0000, 0x228F,0x0000, 0x2290,0x0000,
5514
0x2291,0x0000, 0x2292,0x0000, 0x2293,0x0000, 0x2294,0x0000,
5515
0x2295,0x0000, 0x2296,0x0000, 0x2297,0x0000, 0x2298,0x0000,
5516
0x2299,0x0000, 0x229A,0x0000, 0x229B,0x0000, 0x229C,0x0000,
5517
0x229D,0x0000, 0x229E,0x0000, 0x229F,0x0000, 0x22A0,0x0000,
5518
0x22A1,0x0000, 0x22A2,0x0000, 0x22A3,0x0000, 0x22A4,0x0000,
5519
0x22A5,0x0000, 0x22A6,0x0000, 0x22A7,0x0000, 0x22A8,0x0000,
5520
0x22A9,0x0000, 0x22AA,0x0000, 0x22AB,0x0000, 0x22AC,0x0000,
5521
0x22AD,0x0000, 0x22AE,0x0000, 0x22AF,0x0000, 0x22B0,0x0000
5522
};
5523
206 by Brian Aker
Removed final uint dead types.
5524
uint16_t page0A4data[]= { /* A400 (3 weights per char) */
1 by brian
clean slate
5525
0x22B1,0x0000,0x0000, 0x22B2,0x0000,0x0000, 0x22B3,0x0000,0x0000,
5526
0x22B4,0x0000,0x0000, 0x22B5,0x0000,0x0000, 0x22B6,0x0000,0x0000,
5527
0x22B7,0x0000,0x0000, 0x22B8,0x0000,0x0000, 0x22B9,0x0000,0x0000,
5528
0x22BA,0x0000,0x0000, 0x22BB,0x0000,0x0000, 0x22BC,0x0000,0x0000,
5529
0x22BD,0x0000,0x0000, 0x22BE,0x0000,0x0000, 0x22BF,0x0000,0x0000,
5530
0x22C0,0x0000,0x0000, 0x22C1,0x0000,0x0000, 0x22C2,0x0000,0x0000,
5531
0x22C3,0x0000,0x0000, 0x22C4,0x0000,0x0000, 0x22C5,0x0000,0x0000,
5532
0x22C6,0x0000,0x0000, 0x22C7,0x0000,0x0000, 0x22C8,0x0000,0x0000,
5533
0x22C9,0x0000,0x0000, 0x22CA,0x0000,0x0000, 0x22CB,0x0000,0x0000,
5534
0x22CC,0x0000,0x0000, 0x22CD,0x0000,0x0000, 0x22CE,0x0000,0x0000,
5535
0x22CF,0x0000,0x0000, 0x22D0,0x0000,0x0000, 0x22D1,0x0000,0x0000,
5536
0x22D2,0x0000,0x0000, 0x22D3,0x0000,0x0000, 0x22D4,0x0000,0x0000,
5537
0x22D5,0x0000,0x0000, 0x22D6,0x0000,0x0000, 0x22D7,0x0000,0x0000,
5538
0x22D8,0x0000,0x0000, 0x22D9,0x0000,0x0000, 0x22DA,0x0000,0x0000,
5539
0x22DB,0x0000,0x0000, 0x22DC,0x0000,0x0000, 0x22DD,0x0000,0x0000,
5540
0x22DE,0x0000,0x0000, 0x22DF,0x0000,0x0000, 0x22E0,0x0000,0x0000,
5541
0x22E1,0x0000,0x0000, 0x22E2,0x0000,0x0000, 0x22E3,0x0000,0x0000,
5542
0x22E4,0x0000,0x0000, 0x22E5,0x0000,0x0000, 0x22E6,0x0000,0x0000,
5543
0x22E7,0x0000,0x0000, 0x22E8,0x0000,0x0000, 0x22E9,0x0000,0x0000,
5544
0x22EA,0x0000,0x0000, 0x22EB,0x0000,0x0000, 0x22EC,0x0000,0x0000,
5545
0x22ED,0x0000,0x0000, 0x22EE,0x0000,0x0000, 0x22EF,0x0000,0x0000,
5546
0x22F0,0x0000,0x0000, 0x22F1,0x0000,0x0000, 0x22F2,0x0000,0x0000,
5547
0x22F3,0x0000,0x0000, 0x22F4,0x0000,0x0000, 0x22F5,0x0000,0x0000,
5548
0x22F6,0x0000,0x0000, 0x22F7,0x0000,0x0000, 0x22F8,0x0000,0x0000,
5549
0x22F9,0x0000,0x0000, 0x22FA,0x0000,0x0000, 0x22FB,0x0000,0x0000,
5550
0x22FC,0x0000,0x0000, 0x22FD,0x0000,0x0000, 0x22FE,0x0000,0x0000,
5551
0x22FF,0x0000,0x0000, 0x2300,0x0000,0x0000, 0x2301,0x0000,0x0000,
5552
0x2302,0x0000,0x0000, 0x2303,0x0000,0x0000, 0x2304,0x0000,0x0000,
5553
0x2305,0x0000,0x0000, 0x2306,0x0000,0x0000, 0x2307,0x0000,0x0000,
5554
0x2308,0x0000,0x0000, 0x2309,0x0000,0x0000, 0x230A,0x0000,0x0000,
5555
0x230B,0x0000,0x0000, 0x230C,0x0000,0x0000, 0x230D,0x0000,0x0000,
5556
0x230E,0x0000,0x0000, 0x230F,0x0000,0x0000, 0x2310,0x0000,0x0000,
5557
0x2311,0x0000,0x0000, 0x2312,0x0000,0x0000, 0x2313,0x0000,0x0000,
5558
0x2314,0x0000,0x0000, 0x2315,0x0000,0x0000, 0x2316,0x0000,0x0000,
5559
0x2317,0x0000,0x0000, 0x2318,0x0000,0x0000, 0x2319,0x0000,0x0000,
5560
0x231A,0x0000,0x0000, 0x231B,0x0000,0x0000, 0x231C,0x0000,0x0000,
5561
0x231D,0x0000,0x0000, 0x231E,0x0000,0x0000, 0x231F,0x0000,0x0000,
5562
0x2320,0x0000,0x0000, 0x2321,0x0000,0x0000, 0x2322,0x0000,0x0000,
5563
0x2323,0x0000,0x0000, 0x2324,0x0000,0x0000, 0x2325,0x0000,0x0000,
5564
0x2326,0x0000,0x0000, 0x2327,0x0000,0x0000, 0x2328,0x0000,0x0000,
5565
0x2329,0x0000,0x0000, 0x232A,0x0000,0x0000, 0x232B,0x0000,0x0000,
5566
0x232C,0x0000,0x0000, 0x232D,0x0000,0x0000, 0x232E,0x0000,0x0000,
5567
0x232F,0x0000,0x0000, 0x2330,0x0000,0x0000, 0x2331,0x0000,0x0000,
5568
0x2332,0x0000,0x0000, 0x2333,0x0000,0x0000, 0x2334,0x0000,0x0000,
5569
0x2335,0x0000,0x0000, 0x2336,0x0000,0x0000, 0x2337,0x0000,0x0000,
5570
0x2338,0x0000,0x0000, 0x2339,0x0000,0x0000, 0x233A,0x0000,0x0000,
5571
0x233B,0x0000,0x0000, 0x233C,0x0000,0x0000, 0x233D,0x0000,0x0000,
5572
0xFBC1,0xA48D,0x0000, 0xFBC1,0xA48E,0x0000, 0xFBC1,0xA48F,0x0000,
5573
0x0BCE,0x0000,0x0000, 0x0BCF,0x0000,0x0000, 0x0BD0,0x0000,0x0000,
5574
0x0BD1,0x0000,0x0000, 0x0BD2,0x0000,0x0000, 0x0BD3,0x0000,0x0000,
5575
0x0BD4,0x0000,0x0000, 0x0BD5,0x0000,0x0000, 0x0BD6,0x0000,0x0000,
5576
0x0BD7,0x0000,0x0000, 0x0BD8,0x0000,0x0000, 0x0BD9,0x0000,0x0000,
5577
0x0BDA,0x0000,0x0000, 0x0BDB,0x0000,0x0000, 0x0BDC,0x0000,0x0000,
5578
0x0BDD,0x0000,0x0000, 0x0BDE,0x0000,0x0000, 0x0BDF,0x0000,0x0000,
5579
0x0BE0,0x0000,0x0000, 0x0BE1,0x0000,0x0000, 0x0BE2,0x0000,0x0000,
5580
0x0BE3,0x0000,0x0000, 0x0BE4,0x0000,0x0000, 0x0BE5,0x0000,0x0000,
5581
0x0BE6,0x0000,0x0000, 0x0BE7,0x0000,0x0000, 0x0BE8,0x0000,0x0000,
5582
0x0BE9,0x0000,0x0000, 0x0BEA,0x0000,0x0000, 0x0BEB,0x0000,0x0000,
5583
0x0BEC,0x0000,0x0000, 0x0BED,0x0000,0x0000, 0x0BEE,0x0000,0x0000,
5584
0x0BEF,0x0000,0x0000, 0x0BF0,0x0000,0x0000, 0x0BF1,0x0000,0x0000,
5585
0x0BF2,0x0000,0x0000, 0x0BF3,0x0000,0x0000, 0x0BF4,0x0000,0x0000,
5586
0x0BF5,0x0000,0x0000, 0x0BF6,0x0000,0x0000, 0x0BF7,0x0000,0x0000,
5587
0x0BF8,0x0000,0x0000, 0x0BF9,0x0000,0x0000, 0x0BFA,0x0000,0x0000,
5588
0x0BFB,0x0000,0x0000, 0x0BFC,0x0000,0x0000, 0x0BFD,0x0000,0x0000,
5589
0x0BFE,0x0000,0x0000, 0x0BFF,0x0000,0x0000, 0x0C00,0x0000,0x0000,
5590
0x0C01,0x0000,0x0000, 0x0C02,0x0000,0x0000, 0x0C03,0x0000,0x0000,
5591
0x0C04,0x0000,0x0000, 0xFBC1,0xA4C7,0x0000, 0xFBC1,0xA4C8,0x0000,
5592
0xFBC1,0xA4C9,0x0000, 0xFBC1,0xA4CA,0x0000, 0xFBC1,0xA4CB,0x0000,
5593
0xFBC1,0xA4CC,0x0000, 0xFBC1,0xA4CD,0x0000, 0xFBC1,0xA4CE,0x0000,
5594
0xFBC1,0xA4CF,0x0000, 0xFBC1,0xA4D0,0x0000, 0xFBC1,0xA4D1,0x0000,
5595
0xFBC1,0xA4D2,0x0000, 0xFBC1,0xA4D3,0x0000, 0xFBC1,0xA4D4,0x0000,
5596
0xFBC1,0xA4D5,0x0000, 0xFBC1,0xA4D6,0x0000, 0xFBC1,0xA4D7,0x0000,
5597
0xFBC1,0xA4D8,0x0000, 0xFBC1,0xA4D9,0x0000, 0xFBC1,0xA4DA,0x0000,
5598
0xFBC1,0xA4DB,0x0000, 0xFBC1,0xA4DC,0x0000, 0xFBC1,0xA4DD,0x0000,
5599
0xFBC1,0xA4DE,0x0000, 0xFBC1,0xA4DF,0x0000, 0xFBC1,0xA4E0,0x0000,
5600
0xFBC1,0xA4E1,0x0000, 0xFBC1,0xA4E2,0x0000, 0xFBC1,0xA4E3,0x0000,
5601
0xFBC1,0xA4E4,0x0000, 0xFBC1,0xA4E5,0x0000, 0xFBC1,0xA4E6,0x0000,
5602
0xFBC1,0xA4E7,0x0000, 0xFBC1,0xA4E8,0x0000, 0xFBC1,0xA4E9,0x0000,
5603
0xFBC1,0xA4EA,0x0000, 0xFBC1,0xA4EB,0x0000, 0xFBC1,0xA4EC,0x0000,
5604
0xFBC1,0xA4ED,0x0000, 0xFBC1,0xA4EE,0x0000, 0xFBC1,0xA4EF,0x0000,
5605
0xFBC1,0xA4F0,0x0000, 0xFBC1,0xA4F1,0x0000, 0xFBC1,0xA4F2,0x0000,
5606
0xFBC1,0xA4F3,0x0000, 0xFBC1,0xA4F4,0x0000, 0xFBC1,0xA4F5,0x0000,
5607
0xFBC1,0xA4F6,0x0000, 0xFBC1,0xA4F7,0x0000, 0xFBC1,0xA4F8,0x0000,
5608
0xFBC1,0xA4F9,0x0000, 0xFBC1,0xA4FA,0x0000, 0xFBC1,0xA4FB,0x0000,
5609
0xFBC1,0xA4FC,0x0000, 0xFBC1,0xA4FD,0x0000, 0xFBC1,0xA4FE,0x0000,
5610
0xFBC1,0xA4FF,0x0000 };
5611
206 by Brian Aker
Removed final uint dead types.
5612
uint16_t page0F9data[]= { /* F900 (3 weights per char) */
1 by brian
clean slate
5613
0xFB41,0x8C48,0x0000, 0xFB40,0xE6F4,0x0000, 0xFB41,0x8ECA,0x0000,
5614
0xFB41,0x8CC8,0x0000, 0xFB40,0xEED1,0x0000, 0xFB40,0xCE32,0x0000,
5615
0xFB40,0xD3E5,0x0000, 0xFB41,0x9F9C,0x0000, 0xFB41,0x9F9C,0x0000,
5616
0xFB40,0xD951,0x0000, 0xFB41,0x91D1,0x0000, 0xFB40,0xD587,0x0000,
5617
0xFB40,0xD948,0x0000, 0xFB40,0xE1F6,0x0000, 0xFB40,0xF669,0x0000,
5618
0xFB40,0xFF85,0x0000, 0xFB41,0x863F,0x0000, 0xFB41,0x87BA,0x0000,
5619
0xFB41,0x88F8,0x0000, 0xFB41,0x908F,0x0000, 0xFB40,0xEA02,0x0000,
5620
0xFB40,0xED1B,0x0000, 0xFB40,0xF0D9,0x0000, 0xFB40,0xF3DE,0x0000,
5621
0xFB41,0x843D,0x0000, 0xFB41,0x916A,0x0000, 0xFB41,0x99F1,0x0000,
5622
0xFB40,0xCE82,0x0000, 0xFB40,0xD375,0x0000, 0xFB40,0xEB04,0x0000,
5623
0xFB40,0xF21B,0x0000, 0xFB41,0x862D,0x0000, 0xFB41,0x9E1E,0x0000,
5624
0xFB40,0xDD50,0x0000, 0xFB40,0xEFEB,0x0000, 0xFB41,0x85CD,0x0000,
5625
0xFB41,0x8964,0x0000, 0xFB40,0xE2C9,0x0000, 0xFB41,0x81D8,0x0000,
5626
0xFB41,0x881F,0x0000, 0xFB40,0xDECA,0x0000, 0xFB40,0xE717,0x0000,
5627
0xFB40,0xED6A,0x0000, 0xFB40,0xF2FC,0x0000, 0xFB41,0x90CE,0x0000,
5628
0xFB40,0xCF86,0x0000, 0xFB40,0xD1B7,0x0000, 0xFB40,0xD2DE,0x0000,
5629
0xFB40,0xE4C4,0x0000, 0xFB40,0xEAD3,0x0000, 0xFB40,0xF210,0x0000,
5630
0xFB40,0xF6E7,0x0000, 0xFB41,0x8001,0x0000, 0xFB41,0x8606,0x0000,
5631
0xFB41,0x865C,0x0000, 0xFB41,0x8DEF,0x0000, 0xFB41,0x9732,0x0000,
5632
0xFB41,0x9B6F,0x0000, 0xFB41,0x9DFA,0x0000, 0xFB40,0xF88C,0x0000,
5633
0xFB40,0xF97F,0x0000, 0xFB40,0xFDA0,0x0000, 0xFB41,0x83C9,0x0000,
5634
0xFB41,0x9304,0x0000, 0xFB41,0x9E7F,0x0000, 0xFB41,0x8AD6,0x0000,
5635
0xFB40,0xD8DF,0x0000, 0xFB40,0xDF04,0x0000, 0xFB40,0xFC60,0x0000,
5636
0xFB41,0x807E,0x0000, 0xFB40,0xF262,0x0000, 0xFB40,0xF8CA,0x0000,
5637
0xFB41,0x8CC2,0x0000, 0xFB41,0x96F7,0x0000, 0xFB40,0xD8D8,0x0000,
5638
0xFB40,0xDC62,0x0000, 0xFB40,0xEA13,0x0000, 0xFB40,0xEDDA,0x0000,
5639
0xFB40,0xEF0F,0x0000, 0xFB40,0xFD2F,0x0000, 0xFB40,0xFE37,0x0000,
5640
0xFB41,0x964B,0x0000, 0xFB40,0xD2D2,0x0000, 0xFB41,0x808B,0x0000,
5641
0xFB40,0xD1DC,0x0000, 0xFB40,0xD1CC,0x0000, 0xFB40,0xFA1C,0x0000,
5642
0xFB40,0xFDBE,0x0000, 0xFB41,0x83F1,0x0000, 0xFB41,0x9675,0x0000,
5643
0xFB41,0x8B80,0x0000, 0xFB40,0xE2CF,0x0000, 0xFB40,0xEA02,0x0000,
5644
0xFB41,0x8AFE,0x0000, 0xFB40,0xCE39,0x0000, 0xFB40,0xDBE7,0x0000,
5645
0xFB40,0xE012,0x0000, 0xFB40,0xF387,0x0000, 0xFB40,0xF570,0x0000,
5646
0xFB40,0xD317,0x0000, 0xFB40,0xF8FB,0x0000, 0xFB40,0xCFBF,0x0000,
5647
0xFB40,0xDFA9,0x0000, 0xFB40,0xCE0D,0x0000, 0xFB40,0xECCC,0x0000,
5648
0xFB40,0xE578,0x0000, 0xFB40,0xFD22,0x0000, 0xFB40,0xD3C3,0x0000,
5649
0xFB40,0xD85E,0x0000, 0xFB40,0xF701,0x0000, 0xFB41,0x8449,0x0000,
5650
0xFB41,0x8AAA,0x0000, 0xFB40,0xEBBA,0x0000, 0xFB41,0x8FB0,0x0000,
5651
0xFB40,0xEC88,0x0000, 0xFB40,0xE2FE,0x0000, 0xFB41,0x82E5,0x0000,
5652
0xFB40,0xE3A0,0x0000, 0xFB40,0xF565,0x0000, 0xFB40,0xCEAE,0x0000,
5653
0xFB40,0xD169,0x0000, 0xFB40,0xD1C9,0x0000, 0xFB40,0xE881,0x0000,
5654
0xFB40,0xFCE7,0x0000, 0xFB41,0x826F,0x0000, 0xFB41,0x8AD2,0x0000,
5655
0xFB41,0x91CF,0x0000, 0xFB40,0xD2F5,0x0000, 0xFB40,0xD442,0x0000,
5656
0xFB40,0xD973,0x0000, 0xFB40,0xDEEC,0x0000, 0xFB40,0xE5C5,0x0000,
5657
0xFB40,0xEFFE,0x0000, 0xFB40,0xF92A,0x0000, 0xFB41,0x95AD,0x0000,
5658
0xFB41,0x9A6A,0x0000, 0xFB41,0x9E97,0x0000, 0xFB41,0x9ECE,0x0000,
5659
0xFB40,0xD29B,0x0000, 0xFB40,0xE6C6,0x0000, 0xFB40,0xEB77,0x0000,
5660
0xFB41,0x8F62,0x0000, 0xFB40,0xDE74,0x0000, 0xFB40,0xE190,0x0000,
5661
0xFB40,0xE200,0x0000, 0xFB40,0xE49A,0x0000, 0xFB40,0xEF23,0x0000,
5662
0xFB40,0xF149,0x0000, 0xFB40,0xF489,0x0000, 0xFB40,0xF9CA,0x0000,
5663
0xFB40,0xFDF4,0x0000, 0xFB41,0x806F,0x0000, 0xFB41,0x8F26,0x0000,
5664
0xFB41,0x84EE,0x0000, 0xFB41,0x9023,0x0000, 0xFB41,0x934A,0x0000,
5665
0xFB40,0xD217,0x0000, 0xFB40,0xD2A3,0x0000, 0xFB40,0xD4BD,0x0000,
5666
0xFB40,0xF0C8,0x0000, 0xFB41,0x88C2,0x0000, 0xFB41,0x8AAA,0x0000,
5667
0xFB40,0xDEC9,0x0000, 0xFB40,0xDFF5,0x0000, 0xFB40,0xE37B,0x0000,
5668
0xFB40,0xEBAE,0x0000, 0xFB40,0xFC3E,0x0000, 0xFB40,0xF375,0x0000,
5669
0xFB40,0xCEE4,0x0000, 0xFB40,0xD6F9,0x0000, 0xFB40,0xDBE7,0x0000,
5670
0xFB40,0xDDBA,0x0000, 0xFB40,0xE01C,0x0000, 0xFB40,0xF3B2,0x0000,
5671
0xFB40,0xF469,0x0000, 0xFB40,0xFF9A,0x0000, 0xFB41,0x8046,0x0000,
5672
0xFB41,0x9234,0x0000, 0xFB41,0x96F6,0x0000, 0xFB41,0x9748,0x0000,
5673
0xFB41,0x9818,0x0000, 0xFB40,0xCF8B,0x0000, 0xFB40,0xF9AE,0x0000,
5674
0xFB41,0x91B4,0x0000, 0xFB41,0x96B8,0x0000, 0xFB40,0xE0E1,0x0000,
5675
0xFB40,0xCE86,0x0000, 0xFB40,0xD0DA,0x0000, 0xFB40,0xDBEE,0x0000,
5676
0xFB40,0xDC3F,0x0000, 0xFB40,0xE599,0x0000, 0xFB40,0xEA02,0x0000,
5677
0xFB40,0xF1CE,0x0000, 0xFB40,0xF642,0x0000, 0xFB41,0x84FC,0x0000,
5678
0xFB41,0x907C,0x0000, 0xFB41,0x9F8D,0x0000, 0xFB40,0xE688,0x0000,
5679
0xFB41,0x962E,0x0000, 0xFB40,0xD289,0x0000, 0xFB40,0xE77B,0x0000,
5680
0xFB40,0xE7F3,0x0000, 0xFB40,0xED41,0x0000, 0xFB40,0xEE9C,0x0000,
5681
0xFB40,0xF409,0x0000, 0xFB40,0xF559,0x0000, 0xFB40,0xF86B,0x0000,
5682
0xFB40,0xFD10,0x0000, 0xFB41,0x985E,0x0000, 0xFB40,0xD16D,0x0000,
5683
0xFB40,0xE22E,0x0000, 0xFB41,0x9678,0x0000, 0xFB40,0xD02B,0x0000,
5684
0xFB40,0xDD19,0x0000, 0xFB40,0xEDEA,0x0000, 0xFB41,0x8F2A,0x0000,
5685
0xFB40,0xDF8B,0x0000, 0xFB40,0xE144,0x0000, 0xFB40,0xE817,0x0000,
5686
0xFB40,0xF387,0x0000, 0xFB41,0x9686,0x0000, 0xFB40,0xD229,0x0000,
5687
0xFB40,0xD40F,0x0000, 0xFB40,0xDC65,0x0000, 0xFB40,0xE613,0x0000,
5688
0xFB40,0xE74E,0x0000, 0xFB40,0xE8A8,0x0000, 0xFB40,0xECE5,0x0000,
5689
0xFB40,0xF406,0x0000, 0xFB40,0xF5E2,0x0000, 0xFB40,0xFF79,0x0000,
5690
0xFB41,0x88CF,0x0000, 0xFB41,0x88E1,0x0000, 0xFB41,0x91CC,0x0000,
5691
0xFB41,0x96E2,0x0000, 0xFB40,0xD33F,0x0000, 0xFB40,0xEEBA,0x0000,
5692
0xFB40,0xD41D,0x0000, 0xFB40,0xF1D0,0x0000, 0xFB40,0xF498,0x0000,
5693
0xFB41,0x85FA,0x0000, 0xFB41,0x96A3,0x0000, 0xFB41,0x9C57,0x0000,
5694
0xFB41,0x9E9F,0x0000, 0xFB40,0xE797,0x0000, 0xFB40,0xEDCB,0x0000,
5695
0xFB41,0x81E8,0x0000, 0xFB40,0xFACB,0x0000, 0xFB40,0xFB20,0x0000,
5696
0xFB40,0xFC92,0x0000, 0xFB40,0xF2C0,0x0000, 0xFB40,0xF099,0x0000,
5697
0xFB41,0x8B58,0x0000, 0xFB40,0xCEC0,0x0000, 0xFB41,0x8336,0x0000,
5698
0xFB40,0xD23A,0x0000 };
5699
206 by Brian Aker
Removed final uint dead types.
5700
uint16_t page0FAdata[]= { /* FA00 (3 weights per char) */
1 by brian
clean slate
5701
0xFB40,0xD207,0x0000, 0xFB40,0xDEA6,0x0000, 0xFB40,0xE2D3,0x0000,
5702
0xFB40,0xFCD6,0x0000, 0xFB40,0xDB85,0x0000, 0xFB40,0xED1E,0x0000,
5703
0xFB40,0xE6B4,0x0000, 0xFB41,0x8F3B,0x0000, 0xFB41,0x884C,0x0000,
5704
0xFB41,0x964D,0x0000, 0xFB41,0x898B,0x0000, 0xFB40,0xDED3,0x0000,
5705
0xFB40,0xD140,0x0000, 0xFB40,0xD5C0,0x0000, 0xFB41,0xFA0E,0x0000,
5706
0xFB41,0xFA0F,0x0000, 0xFB40,0xD85A,0x0000, 0xFB41,0xFA11,0x0000,
5707
0xFB40,0xE674,0x0000, 0xFB41,0xFA13,0x0000, 0xFB41,0xFA14,0x0000,
5708
0xFB40,0xD1DE,0x0000, 0xFB40,0xF32A,0x0000, 0xFB40,0xF6CA,0x0000,
5709
0xFB40,0xF93C,0x0000, 0xFB40,0xF95E,0x0000, 0xFB40,0xF965,0x0000,
5710
0xFB40,0xF98F,0x0000, 0xFB41,0x9756,0x0000, 0xFB40,0xFCBE,0x0000,
5711
0xFB40,0xFFBD,0x0000, 0xFB41,0xFA1F,0x0000, 0xFB41,0x8612,0x0000,
5712
0xFB41,0xFA21,0x0000, 0xFB41,0x8AF8,0x0000, 0xFB41,0xFA23,0x0000,
5713
0xFB41,0xFA24,0x0000, 0xFB41,0x9038,0x0000, 0xFB41,0x90FD,0x0000,
5714
0xFB41,0xFA27,0x0000, 0xFB41,0xFA28,0x0000, 0xFB41,0xFA29,0x0000,
5715
0xFB41,0x98EF,0x0000, 0xFB41,0x98FC,0x0000, 0xFB41,0x9928,0x0000,
5716
0xFB41,0x9DB4,0x0000, 0xFBC1,0xFA2E,0x0000, 0xFBC1,0xFA2F,0x0000,
5717
0xFB40,0xCFAE,0x0000, 0xFB40,0xD0E7,0x0000, 0xFB40,0xD14D,0x0000,
5718
0xFB40,0xD2C9,0x0000, 0xFB40,0xD2E4,0x0000, 0xFB40,0xD351,0x0000,
5719
0xFB40,0xD59D,0x0000, 0xFB40,0xD606,0x0000, 0xFB40,0xD668,0x0000,
5720
0xFB40,0xD840,0x0000, 0xFB40,0xD8A8,0x0000, 0xFB40,0xDC64,0x0000,
5721
0xFB40,0xDC6E,0x0000, 0xFB40,0xE094,0x0000, 0xFB40,0xE168,0x0000,
5722
0xFB40,0xE18E,0x0000, 0xFB40,0xE1F2,0x0000, 0xFB40,0xE54F,0x0000,
5723
0xFB40,0xE5E2,0x0000, 0xFB40,0xE691,0x0000, 0xFB40,0xE885,0x0000,
5724
0xFB40,0xED77,0x0000, 0xFB40,0xEE1A,0x0000, 0xFB40,0xEF22,0x0000,
5725
0xFB40,0xF16E,0x0000, 0xFB40,0xF22B,0x0000, 0xFB40,0xF422,0x0000,
5726
0xFB40,0xF891,0x0000, 0xFB40,0xF93E,0x0000, 0xFB40,0xF949,0x0000,
5727
0xFB40,0xF948,0x0000, 0xFB40,0xF950,0x0000, 0xFB40,0xF956,0x0000,
5728
0xFB40,0xF95D,0x0000, 0xFB40,0xF98D,0x0000, 0xFB40,0xF98E,0x0000,
5729
0xFB40,0xFA40,0x0000, 0xFB40,0xFA81,0x0000, 0xFB40,0xFBC0,0x0000,
5730
0xFB40,0xFDF4,0x0000, 0xFB40,0xFE09,0x0000, 0xFB40,0xFE41,0x0000,
5731
0xFB40,0xFF72,0x0000, 0xFB41,0x8005,0x0000, 0xFB41,0x81ED,0x0000,
5732
0xFB41,0x8279,0x0000, 0xFB41,0x8279,0x0000, 0xFB41,0x8457,0x0000,
5733
0xFB41,0x8910,0x0000, 0xFB41,0x8996,0x0000, 0xFB41,0x8B01,0x0000,
5734
0xFB41,0x8B39,0x0000, 0xFB41,0x8CD3,0x0000, 0xFB41,0x8D08,0x0000,
5735
0xFB41,0x8FB6,0x0000, 0xFB41,0x9038,0x0000, 0xFB41,0x96E3,0x0000,
5736
0xFB41,0x97FF,0x0000, 0xFB41,0x983B,0x0000, 0xFBC1,0xFA6B,0x0000,
5737
0xFBC1,0xFA6C,0x0000, 0xFBC1,0xFA6D,0x0000, 0xFBC1,0xFA6E,0x0000,
5738
0xFBC1,0xFA6F,0x0000, 0xFBC1,0xFA70,0x0000, 0xFBC1,0xFA71,0x0000,
5739
0xFBC1,0xFA72,0x0000, 0xFBC1,0xFA73,0x0000, 0xFBC1,0xFA74,0x0000,
5740
0xFBC1,0xFA75,0x0000, 0xFBC1,0xFA76,0x0000, 0xFBC1,0xFA77,0x0000,
5741
0xFBC1,0xFA78,0x0000, 0xFBC1,0xFA79,0x0000, 0xFBC1,0xFA7A,0x0000,
5742
0xFBC1,0xFA7B,0x0000, 0xFBC1,0xFA7C,0x0000, 0xFBC1,0xFA7D,0x0000,
5743
0xFBC1,0xFA7E,0x0000, 0xFBC1,0xFA7F,0x0000, 0xFBC1,0xFA80,0x0000,
5744
0xFBC1,0xFA81,0x0000, 0xFBC1,0xFA82,0x0000, 0xFBC1,0xFA83,0x0000,
5745
0xFBC1,0xFA84,0x0000, 0xFBC1,0xFA85,0x0000, 0xFBC1,0xFA86,0x0000,
5746
0xFBC1,0xFA87,0x0000, 0xFBC1,0xFA88,0x0000, 0xFBC1,0xFA89,0x0000,
5747
0xFBC1,0xFA8A,0x0000, 0xFBC1,0xFA8B,0x0000, 0xFBC1,0xFA8C,0x0000,
5748
0xFBC1,0xFA8D,0x0000, 0xFBC1,0xFA8E,0x0000, 0xFBC1,0xFA8F,0x0000,
5749
0xFBC1,0xFA90,0x0000, 0xFBC1,0xFA91,0x0000, 0xFBC1,0xFA92,0x0000,
5750
0xFBC1,0xFA93,0x0000, 0xFBC1,0xFA94,0x0000, 0xFBC1,0xFA95,0x0000,
5751
0xFBC1,0xFA96,0x0000, 0xFBC1,0xFA97,0x0000, 0xFBC1,0xFA98,0x0000,
5752
0xFBC1,0xFA99,0x0000, 0xFBC1,0xFA9A,0x0000, 0xFBC1,0xFA9B,0x0000,
5753
0xFBC1,0xFA9C,0x0000, 0xFBC1,0xFA9D,0x0000, 0xFBC1,0xFA9E,0x0000,
5754
0xFBC1,0xFA9F,0x0000, 0xFBC1,0xFAA0,0x0000, 0xFBC1,0xFAA1,0x0000,
5755
0xFBC1,0xFAA2,0x0000, 0xFBC1,0xFAA3,0x0000, 0xFBC1,0xFAA4,0x0000,
5756
0xFBC1,0xFAA5,0x0000, 0xFBC1,0xFAA6,0x0000, 0xFBC1,0xFAA7,0x0000,
5757
0xFBC1,0xFAA8,0x0000, 0xFBC1,0xFAA9,0x0000, 0xFBC1,0xFAAA,0x0000,
5758
0xFBC1,0xFAAB,0x0000, 0xFBC1,0xFAAC,0x0000, 0xFBC1,0xFAAD,0x0000,
5759
0xFBC1,0xFAAE,0x0000, 0xFBC1,0xFAAF,0x0000, 0xFBC1,0xFAB0,0x0000,
5760
0xFBC1,0xFAB1,0x0000, 0xFBC1,0xFAB2,0x0000, 0xFBC1,0xFAB3,0x0000,
5761
0xFBC1,0xFAB4,0x0000, 0xFBC1,0xFAB5,0x0000, 0xFBC1,0xFAB6,0x0000,
5762
0xFBC1,0xFAB7,0x0000, 0xFBC1,0xFAB8,0x0000, 0xFBC1,0xFAB9,0x0000,
5763
0xFBC1,0xFABA,0x0000, 0xFBC1,0xFABB,0x0000, 0xFBC1,0xFABC,0x0000,
5764
0xFBC1,0xFABD,0x0000, 0xFBC1,0xFABE,0x0000, 0xFBC1,0xFABF,0x0000,
5765
0xFBC1,0xFAC0,0x0000, 0xFBC1,0xFAC1,0x0000, 0xFBC1,0xFAC2,0x0000,
5766
0xFBC1,0xFAC3,0x0000, 0xFBC1,0xFAC4,0x0000, 0xFBC1,0xFAC5,0x0000,
5767
0xFBC1,0xFAC6,0x0000, 0xFBC1,0xFAC7,0x0000, 0xFBC1,0xFAC8,0x0000,
5768
0xFBC1,0xFAC9,0x0000, 0xFBC1,0xFACA,0x0000, 0xFBC1,0xFACB,0x0000,
5769
0xFBC1,0xFACC,0x0000, 0xFBC1,0xFACD,0x0000, 0xFBC1,0xFACE,0x0000,
5770
0xFBC1,0xFACF,0x0000, 0xFBC1,0xFAD0,0x0000, 0xFBC1,0xFAD1,0x0000,
5771
0xFBC1,0xFAD2,0x0000, 0xFBC1,0xFAD3,0x0000, 0xFBC1,0xFAD4,0x0000,
5772
0xFBC1,0xFAD5,0x0000, 0xFBC1,0xFAD6,0x0000, 0xFBC1,0xFAD7,0x0000,
5773
0xFBC1,0xFAD8,0x0000, 0xFBC1,0xFAD9,0x0000, 0xFBC1,0xFADA,0x0000,
5774
0xFBC1,0xFADB,0x0000, 0xFBC1,0xFADC,0x0000, 0xFBC1,0xFADD,0x0000,
5775
0xFBC1,0xFADE,0x0000, 0xFBC1,0xFADF,0x0000, 0xFBC1,0xFAE0,0x0000,
5776
0xFBC1,0xFAE1,0x0000, 0xFBC1,0xFAE2,0x0000, 0xFBC1,0xFAE3,0x0000,
5777
0xFBC1,0xFAE4,0x0000, 0xFBC1,0xFAE5,0x0000, 0xFBC1,0xFAE6,0x0000,
5778
0xFBC1,0xFAE7,0x0000, 0xFBC1,0xFAE8,0x0000, 0xFBC1,0xFAE9,0x0000,
5779
0xFBC1,0xFAEA,0x0000, 0xFBC1,0xFAEB,0x0000, 0xFBC1,0xFAEC,0x0000,
5780
0xFBC1,0xFAED,0x0000, 0xFBC1,0xFAEE,0x0000, 0xFBC1,0xFAEF,0x0000,
5781
0xFBC1,0xFAF0,0x0000, 0xFBC1,0xFAF1,0x0000, 0xFBC1,0xFAF2,0x0000,
5782
0xFBC1,0xFAF3,0x0000, 0xFBC1,0xFAF4,0x0000, 0xFBC1,0xFAF5,0x0000,
5783
0xFBC1,0xFAF6,0x0000, 0xFBC1,0xFAF7,0x0000, 0xFBC1,0xFAF8,0x0000,
5784
0xFBC1,0xFAF9,0x0000, 0xFBC1,0xFAFA,0x0000, 0xFBC1,0xFAFB,0x0000,
5785
0xFBC1,0xFAFC,0x0000, 0xFBC1,0xFAFD,0x0000, 0xFBC1,0xFAFE,0x0000,
5786
0xFBC1,0xFAFF,0x0000 };
5787
206 by Brian Aker
Removed final uint dead types.
5788
uint16_t page0FBdata[]= { /* FB00 (4 weights per char) */
1 by brian
clean slate
5789
0x0EB9,0x0EB9,0x0000,0x0000, 0x0EB9,0x0EFB,0x0000,0x0000,
5790
0x0EB9,0x0F2E,0x0000,0x0000, 0x0EB9,0x0EB9,0x0EFB,0x0000,
5791
0x0EB9,0x0EB9,0x0F2E,0x0000, 0x0FEA,0x1002,0x0000,0x0000,
5792
0x0FEA,0x1002,0x0000,0x0000, 0xFBC1,0xFB07,0x0000,0x0000,
5793
0xFBC1,0xFB08,0x0000,0x0000, 0xFBC1,0xFB09,0x0000,0x0000,
5794
0xFBC1,0xFB0A,0x0000,0x0000, 0xFBC1,0xFB0B,0x0000,0x0000,
5795
0xFBC1,0xFB0C,0x0000,0x0000, 0xFBC1,0xFB0D,0x0000,0x0000,
5796
0xFBC1,0xFB0E,0x0000,0x0000, 0xFBC1,0xFB0F,0x0000,0x0000,
5797
0xFBC1,0xFB10,0x0000,0x0000, 0xFBC1,0xFB11,0x0000,0x0000,
5798
0xFBC1,0xFB12,0x0000,0x0000, 0x131D,0x131F,0x0000,0x0000,
5799
0x131D,0x130E,0x0000,0x0000, 0x131D,0x1314,0x0000,0x0000,
5800
0x1327,0x131F,0x0000,0x0000, 0x131D,0x1316,0x0000,0x0000,
5801
0xFBC1,0xFB18,0x0000,0x0000, 0xFBC1,0xFB19,0x0000,0x0000,
5802
0xFBC1,0xFB1A,0x0000,0x0000, 0xFBC1,0xFB1B,0x0000,0x0000,
5803
0xFBC1,0xFB1C,0x0000,0x0000, 0x133A,0x0000,0x0000,0x0000,
5804
0x0000,0x0000,0x0000,0x0000, 0x133A,0x133A,0x0000,0x0000,
5805
0x1340,0x0000,0x0000,0x0000, 0x1331,0x0000,0x0000,0x0000,
5806
0x1334,0x0000,0x0000,0x0000, 0x1335,0x0000,0x0000,0x0000,
5807
0x133B,0x0000,0x0000,0x0000, 0x133C,0x0000,0x0000,0x0000,
5808
0x133D,0x0000,0x0000,0x0000, 0x1344,0x0000,0x0000,0x0000,
5809
0x1346,0x0000,0x0000,0x0000, 0x0428,0x0000,0x0000,0x0000,
5810
0x1345,0x0000,0x0000,0x0000, 0x1345,0x0000,0x0000,0x0000,
5811
0x1345,0x0000,0x0000,0x0000, 0x1345,0x0000,0x0000,0x0000,
5812
0x1331,0x0000,0x0000,0x0000, 0x1331,0x0000,0x0000,0x0000,
5813
0x1331,0x0000,0x0000,0x0000, 0x1332,0x0000,0x0000,0x0000,
5814
0x1333,0x0000,0x0000,0x0000, 0x1334,0x0000,0x0000,0x0000,
5815
0x1335,0x0000,0x0000,0x0000, 0x1336,0x0000,0x0000,0x0000,
5816
0x1337,0x0000,0x0000,0x0000, 0xFBC1,0xFB37,0x0000,0x0000,
5817
0x1339,0x0000,0x0000,0x0000, 0x133A,0x0000,0x0000,0x0000,
5818
0x133B,0x0000,0x0000,0x0000, 0x133B,0x0000,0x0000,0x0000,
5819
0x133C,0x0000,0x0000,0x0000, 0xFBC1,0xFB3D,0x0000,0x0000,
5820
0x133D,0x0000,0x0000,0x0000, 0xFBC1,0xFB3F,0x0000,0x0000,
5821
0x133E,0x0000,0x0000,0x0000, 0x133F,0x0000,0x0000,0x0000,
5822
0xFBC1,0xFB42,0x0000,0x0000, 0x1341,0x0000,0x0000,0x0000,
5823
0x1341,0x0000,0x0000,0x0000, 0xFBC1,0xFB45,0x0000,0x0000,
5824
0x1342,0x0000,0x0000,0x0000, 0x1343,0x0000,0x0000,0x0000,
5825
0x1344,0x0000,0x0000,0x0000, 0x1345,0x0000,0x0000,0x0000,
5826
0x1346,0x0000,0x0000,0x0000, 0x1336,0x0000,0x0000,0x0000,
5827
0x1332,0x0000,0x0000,0x0000, 0x133B,0x0000,0x0000,0x0000,
5828
0x1341,0x0000,0x0000,0x0000, 0x1331,0x133C,0x0000,0x0000,
5829
0x134B,0x0000,0x0000,0x0000, 0x134B,0x0000,0x0000,0x0000,
5830
0x1353,0x0000,0x0000,0x0000, 0x1353,0x0000,0x0000,0x0000,
5831
0x1353,0x0000,0x0000,0x0000, 0x1353,0x0000,0x0000,0x0000,
5832
0x1354,0x0000,0x0000,0x0000, 0x1354,0x0000,0x0000,0x0000,
5833
0x1354,0x0000,0x0000,0x0000, 0x1354,0x0000,0x0000,0x0000,
5834
0x1355,0x0000,0x0000,0x0000, 0x1355,0x0000,0x0000,0x0000,
5835
0x1355,0x0000,0x0000,0x0000, 0x1355,0x0000,0x0000,0x0000,
5836
0x135A,0x0000,0x0000,0x0000, 0x135A,0x0000,0x0000,0x0000,
5837
0x135A,0x0000,0x0000,0x0000, 0x135A,0x0000,0x0000,0x0000,
5838
0x135D,0x0000,0x0000,0x0000, 0x135D,0x0000,0x0000,0x0000,
5839
0x135D,0x0000,0x0000,0x0000, 0x135D,0x0000,0x0000,0x0000,
5840
0x1359,0x0000,0x0000,0x0000, 0x1359,0x0000,0x0000,0x0000,
5841
0x1359,0x0000,0x0000,0x0000, 0x1359,0x0000,0x0000,0x0000,
5842
0x1397,0x0000,0x0000,0x0000, 0x1397,0x0000,0x0000,0x0000,
5843
0x1397,0x0000,0x0000,0x0000, 0x1397,0x0000,0x0000,0x0000,
5844
0x1399,0x0000,0x0000,0x0000, 0x1399,0x0000,0x0000,0x0000,
5845
0x1399,0x0000,0x0000,0x0000, 0x1399,0x0000,0x0000,0x0000,
5846
0x1360,0x0000,0x0000,0x0000, 0x1360,0x0000,0x0000,0x0000,
5847
0x1360,0x0000,0x0000,0x0000, 0x1360,0x0000,0x0000,0x0000,
5848
0x135F,0x0000,0x0000,0x0000, 0x135F,0x0000,0x0000,0x0000,
5849
0x135F,0x0000,0x0000,0x0000, 0x135F,0x0000,0x0000,0x0000,
5850
0x1361,0x0000,0x0000,0x0000, 0x1361,0x0000,0x0000,0x0000,
5851
0x1361,0x0000,0x0000,0x0000, 0x1361,0x0000,0x0000,0x0000,
5852
0x1363,0x0000,0x0000,0x0000, 0x1363,0x0000,0x0000,0x0000,
5853
0x1363,0x0000,0x0000,0x0000, 0x1363,0x0000,0x0000,0x0000,
5854
0x1370,0x0000,0x0000,0x0000, 0x1370,0x0000,0x0000,0x0000,
5855
0x136F,0x0000,0x0000,0x0000, 0x136F,0x0000,0x0000,0x0000,
5856
0x1371,0x0000,0x0000,0x0000, 0x1371,0x0000,0x0000,0x0000,
5857
0x136B,0x0000,0x0000,0x0000, 0x136B,0x0000,0x0000,0x0000,
5858
0x137E,0x0000,0x0000,0x0000, 0x137E,0x0000,0x0000,0x0000,
5859
0x1377,0x0000,0x0000,0x0000, 0x1377,0x0000,0x0000,0x0000,
5860
0x139F,0x0000,0x0000,0x0000, 0x139F,0x0000,0x0000,0x0000,
5861
0x139F,0x0000,0x0000,0x0000, 0x139F,0x0000,0x0000,0x0000,
5862
0x13A5,0x0000,0x0000,0x0000, 0x13A5,0x0000,0x0000,0x0000,
5863
0x13A5,0x0000,0x0000,0x0000, 0x13A5,0x0000,0x0000,0x0000,
5864
0x13A9,0x0000,0x0000,0x0000, 0x13A9,0x0000,0x0000,0x0000,
5865
0x13A9,0x0000,0x0000,0x0000, 0x13A9,0x0000,0x0000,0x0000,
5866
0x13A7,0x0000,0x0000,0x0000, 0x13A7,0x0000,0x0000,0x0000,
5867
0x13A7,0x0000,0x0000,0x0000, 0x13A7,0x0000,0x0000,0x0000,
5868
0x13B2,0x0000,0x0000,0x0000, 0x13B2,0x0000,0x0000,0x0000,
5869
0x13B3,0x0000,0x0000,0x0000, 0x13B3,0x0000,0x0000,0x0000,
5870
0x13B3,0x0000,0x0000,0x0000, 0x13B3,0x0000,0x0000,0x0000,
5871
0x13BC,0x0000,0x0000,0x0000, 0x13BC,0x0000,0x0000,0x0000,
5872
0x13B9,0x0000,0x0000,0x0000, 0x13B9,0x0000,0x0000,0x0000,
5873
0x13B9,0x0000,0x0000,0x0000, 0x13B9,0x0000,0x0000,0x0000,
5874
0x13B8,0x0000,0x0000,0x0000, 0x13B8,0x0000,0x0000,0x0000,
5875
0x13B8,0x0000,0x0000,0x0000, 0x13B8,0x0000,0x0000,0x0000,
5876
0x13CE,0x0000,0x0000,0x0000, 0x13CE,0x0000,0x0000,0x0000,
5877
0x13CE,0x0000,0x0000,0x0000, 0x13CE,0x0000,0x0000,0x0000,
5878
0xFBC1,0xFBB2,0x0000,0x0000, 0xFBC1,0xFBB3,0x0000,0x0000,
5879
0xFBC1,0xFBB4,0x0000,0x0000, 0xFBC1,0xFBB5,0x0000,0x0000,
5880
0xFBC1,0xFBB6,0x0000,0x0000, 0xFBC1,0xFBB7,0x0000,0x0000,
5881
0xFBC1,0xFBB8,0x0000,0x0000, 0xFBC1,0xFBB9,0x0000,0x0000,
5882
0xFBC1,0xFBBA,0x0000,0x0000, 0xFBC1,0xFBBB,0x0000,0x0000,
5883
0xFBC1,0xFBBC,0x0000,0x0000, 0xFBC1,0xFBBD,0x0000,0x0000,
5884
0xFBC1,0xFBBE,0x0000,0x0000, 0xFBC1,0xFBBF,0x0000,0x0000,
5885
0xFBC1,0xFBC0,0x0000,0x0000, 0xFBC1,0xFBC1,0x0000,0x0000,
5886
0xFBC1,0xFBC2,0x0000,0x0000, 0xFBC1,0xFBC3,0x0000,0x0000,
5887
0xFBC1,0xFBC4,0x0000,0x0000, 0xFBC1,0xFBC5,0x0000,0x0000,
5888
0xFBC1,0xFBC6,0x0000,0x0000, 0xFBC1,0xFBC7,0x0000,0x0000,
5889
0xFBC1,0xFBC8,0x0000,0x0000, 0xFBC1,0xFBC9,0x0000,0x0000,
5890
0xFBC1,0xFBCA,0x0000,0x0000, 0xFBC1,0xFBCB,0x0000,0x0000,
5891
0xFBC1,0xFBCC,0x0000,0x0000, 0xFBC1,0xFBCD,0x0000,0x0000,
5892
0xFBC1,0xFBCE,0x0000,0x0000, 0xFBC1,0xFBCF,0x0000,0x0000,
5893
0xFBC1,0xFBD0,0x0000,0x0000, 0xFBC1,0xFBD1,0x0000,0x0000,
5894
0xFBC1,0xFBD2,0x0000,0x0000, 0x13A3,0x0000,0x0000,0x0000,
5895
0x13A3,0x0000,0x0000,0x0000, 0x13A3,0x0000,0x0000,0x0000,
5896
0x13A3,0x0000,0x0000,0x0000, 0x13C1,0x0000,0x0000,0x0000,
5897
0x13C1,0x0000,0x0000,0x0000, 0x13C0,0x0000,0x0000,0x0000,
5898
0x13C0,0x0000,0x0000,0x0000, 0x13C2,0x0000,0x0000,0x0000,
5899
0x13C2,0x0000,0x0000,0x0000, 0x13C1,0x1347,0x0000,0x0000,
5900
0x13C5,0x0000,0x0000,0x0000, 0x13C5,0x0000,0x0000,0x0000,
5901
0x13BF,0x0000,0x0000,0x0000, 0x13BF,0x0000,0x0000,0x0000,
5902
0x13C3,0x0000,0x0000,0x0000, 0x13C3,0x0000,0x0000,0x0000,
5903
0x13CC,0x0000,0x0000,0x0000, 0x13CC,0x0000,0x0000,0x0000,
5904
0x13CC,0x0000,0x0000,0x0000, 0x13CC,0x0000,0x0000,0x0000,
5905
0x13C7,0x0000,0x0000,0x0000, 0x13C7,0x0000,0x0000,0x0000,
5906
0x134F,0x1350,0x0000,0x0000, 0x134F,0x1350,0x0000,0x0000,
5907
0x134F,0x13BC,0x0000,0x0000, 0x134F,0x13BC,0x0000,0x0000,
5908
0x134F,0x13BD,0x0000,0x0000, 0x134F,0x13BD,0x0000,0x0000,
5909
0x134F,0x13C1,0x0000,0x0000, 0x134F,0x13C1,0x0000,0x0000,
5910
0x134F,0x13C0,0x0000,0x0000, 0x134F,0x13C0,0x0000,0x0000,
5911
0x134F,0x13C2,0x0000,0x0000, 0x134F,0x13C2,0x0000,0x0000,
5912
0x134F,0x13CC,0x0000,0x0000, 0x134F,0x13CC,0x0000,0x0000,
5913
0x134F,0x13CC,0x0000,0x0000, 0x134F,0x13C7,0x0000,0x0000,
5914
0x134F,0x13C7,0x0000,0x0000, 0x134F,0x13C7,0x0000,0x0000,
5915
0x13C9,0x0000,0x0000,0x0000, 0x13C9,0x0000,0x0000,0x0000,
5916
0x13C9,0x0000,0x0000,0x0000, 0x13C9,0x0000,0x0000,0x0000
5917
};
5918
206 by Brian Aker
Removed final uint dead types.
5919
uint16_t page0FCdata[]= { /* FC00 (3 weights per char) */
1 by brian
clean slate
5920
0x134F,0x135E,0x0000, 0x134F,0x1364,0x0000, 0x134F,0x13B0,0x0000,
5921
0x134F,0x13C7,0x0000, 0x134F,0x13C8,0x0000, 0x1352,0x135E,0x0000,
5922
0x1352,0x1364,0x0000, 0x1352,0x1365,0x0000, 0x1352,0x13B0,0x0000,
5923
0x1352,0x13C7,0x0000, 0x1352,0x13C8,0x0000, 0x1357,0x135E,0x0000,
5924
0x1357,0x1364,0x0000, 0x1357,0x1365,0x0000, 0x1357,0x13B0,0x0000,
5925
0x1357,0x13C7,0x0000, 0x1357,0x13C8,0x0000, 0x1358,0x135E,0x0000,
5926
0x1358,0x13B0,0x0000, 0x1358,0x13C7,0x0000, 0x1358,0x13C8,0x0000,
5927
0x135E,0x1364,0x0000, 0x135E,0x13B0,0x0000, 0x1364,0x135E,0x0000,
5928
0x1364,0x13B0,0x0000, 0x1365,0x135E,0x0000, 0x1365,0x1364,0x0000,
5929
0x1365,0x13B0,0x0000, 0x1381,0x135E,0x0000, 0x1381,0x1364,0x0000,
5930
0x1381,0x1365,0x0000, 0x1381,0x13B0,0x0000, 0x1387,0x1364,0x0000,
5931
0x1387,0x13B0,0x0000, 0x1388,0x135E,0x0000, 0x1388,0x1364,0x0000,
5932
0x1388,0x1365,0x0000, 0x1388,0x13B0,0x0000, 0x138C,0x1364,0x0000,
5933
0x138C,0x13B0,0x0000, 0x138D,0x13B0,0x0000, 0x138F,0x135E,0x0000,
5934
0x138F,0x13B0,0x0000, 0x1390,0x135E,0x0000, 0x1390,0x13B0,0x0000,
5935
0x1393,0x135E,0x0000, 0x1393,0x1364,0x0000, 0x1393,0x1365,0x0000,
5936
0x1393,0x13B0,0x0000, 0x1393,0x13C7,0x0000, 0x1393,0x13C8,0x0000,
5937
0x139B,0x1364,0x0000, 0x139B,0x13B0,0x0000, 0x139B,0x13C7,0x0000,
5938
0x139B,0x13C8,0x0000, 0x139E,0x1350,0x0000, 0x139E,0x135E,0x0000,
5939
0x139E,0x1364,0x0000, 0x139E,0x1365,0x0000, 0x139E,0x13AB,0x0000,
5940
0x139E,0x13B0,0x0000, 0x139E,0x13C7,0x0000, 0x139E,0x13C8,0x0000,
5941
0x13AB,0x135E,0x0000, 0x13AB,0x1364,0x0000, 0x13AB,0x1365,0x0000,
5942
0x13AB,0x13B0,0x0000, 0x13AB,0x13C7,0x0000, 0x13AB,0x13C8,0x0000,
5943
0x13B0,0x135E,0x0000, 0x13B0,0x1364,0x0000, 0x13B0,0x1365,0x0000,
5944
0x13B0,0x13B0,0x0000, 0x13B0,0x13C7,0x0000, 0x13B0,0x13C8,0x0000,
5945
0x13B1,0x135E,0x0000, 0x13B1,0x1364,0x0000, 0x13B1,0x1365,0x0000,
5946
0x13B1,0x13B0,0x0000, 0x13B1,0x13C7,0x0000, 0x13B1,0x13C8,0x0000,
5947
0x13B7,0x135E,0x0000, 0x13B7,0x13B0,0x0000, 0x13B7,0x13C7,0x0000,
5948
0x13B7,0x13C8,0x0000, 0x13C8,0x135E,0x0000, 0x13C8,0x1364,0x0000,
5949
0x13C8,0x1365,0x0000, 0x13C8,0x13B0,0x0000, 0x13C8,0x13C7,0x0000,
5950
0x13C8,0x13C8,0x0000, 0x136A,0x0000,0x0000, 0x1375,0x0000,0x0000,
5951
0x13C7,0x0000,0x0000, 0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,
5952
0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,
5953
0x0000,0x0000,0x0000, 0x134F,0x1375,0x0000, 0x134F,0x1376,0x0000,
5954
0x134F,0x13B0,0x0000, 0x134F,0x13B1,0x0000, 0x134F,0x13C7,0x0000,
5955
0x134F,0x13C8,0x0000, 0x1352,0x1375,0x0000, 0x1352,0x1376,0x0000,
5956
0x1352,0x13B0,0x0000, 0x1352,0x13B1,0x0000, 0x1352,0x13C7,0x0000,
5957
0x1352,0x13C8,0x0000, 0x1357,0x1375,0x0000, 0x1357,0x1376,0x0000,
5958
0x1357,0x13B0,0x0000, 0x1357,0x13B1,0x0000, 0x1357,0x13C7,0x0000,
5959
0x1357,0x13C8,0x0000, 0x1358,0x1375,0x0000, 0x1358,0x1376,0x0000,
5960
0x1358,0x13B0,0x0000, 0x1358,0x13B1,0x0000, 0x1358,0x13C7,0x0000,
5961
0x1358,0x13C8,0x0000, 0x1393,0x13C7,0x0000, 0x1393,0x13C8,0x0000,
5962
0x139B,0x13C7,0x0000, 0x139B,0x13C8,0x0000, 0x139E,0x1350,0x0000,
5963
0x139E,0x13AB,0x0000, 0x139E,0x13B0,0x0000, 0x139E,0x13C7,0x0000,
5964
0x139E,0x13C8,0x0000, 0x13AB,0x13B0,0x0000, 0x13AB,0x13C7,0x0000,
5965
0x13AB,0x13C8,0x0000, 0x13B0,0x1350,0x0000, 0x13B0,0x13B0,0x0000,
5966
0x13B1,0x1375,0x0000, 0x13B1,0x1376,0x0000, 0x13B1,0x13B0,0x0000,
5967
0x13B1,0x13B1,0x0000, 0x13B1,0x13C7,0x0000, 0x13B1,0x13C8,0x0000,
5968
0x13C7,0x0000,0x0000, 0x13C8,0x1375,0x0000, 0x13C8,0x1376,0x0000,
5969
0x13C8,0x13B0,0x0000, 0x13C8,0x13B1,0x0000, 0x13C8,0x13C7,0x0000,
5970
0x13C8,0x13C8,0x0000, 0x134F,0x135E,0x0000, 0x134F,0x1364,0x0000,
5971
0x134F,0x1365,0x0000, 0x134F,0x13B0,0x0000, 0x134F,0x13B7,0x0000,
5972
0x1352,0x135E,0x0000, 0x1352,0x1364,0x0000, 0x1352,0x1365,0x0000,
5973
0x1352,0x13B0,0x0000, 0x1352,0x13B7,0x0000, 0x1357,0x135E,0x0000,
5974
0x1357,0x1364,0x0000, 0x1357,0x1365,0x0000, 0x1357,0x13B0,0x0000,
5975
0x1357,0x13B7,0x0000, 0x1358,0x13B0,0x0000, 0x135E,0x1364,0x0000,
5976
0x135E,0x13B0,0x0000, 0x1364,0x135E,0x0000, 0x1364,0x13B0,0x0000,
5977
0x1365,0x135E,0x0000, 0x1365,0x13B0,0x0000, 0x1381,0x135E,0x0000,
5978
0x1381,0x1364,0x0000, 0x1381,0x1365,0x0000, 0x1381,0x13B0,0x0000,
5979
0x1387,0x1364,0x0000, 0x1387,0x1365,0x0000, 0x1387,0x13B0,0x0000,
5980
0x1388,0x135E,0x0000, 0x1388,0x1364,0x0000, 0x1388,0x1365,0x0000,
5981
0x1388,0x13B0,0x0000, 0x138C,0x1364,0x0000, 0x138D,0x13B0,0x0000,
5982
0x138F,0x135E,0x0000, 0x138F,0x13B0,0x0000, 0x1390,0x135E,0x0000,
5983
0x1390,0x13B0,0x0000, 0x1393,0x135E,0x0000, 0x1393,0x1364,0x0000,
5984
0x1393,0x1365,0x0000, 0x1393,0x13B0,0x0000, 0x139B,0x1364,0x0000,
5985
0x139B,0x13B0,0x0000, 0x139E,0x135E,0x0000, 0x139E,0x1364,0x0000,
5986
0x139E,0x1365,0x0000, 0x139E,0x13AB,0x0000, 0x139E,0x13B0,0x0000,
5987
0x13AB,0x135E,0x0000, 0x13AB,0x1364,0x0000, 0x13AB,0x1365,0x0000,
5988
0x13AB,0x13B0,0x0000, 0x13AB,0x13B7,0x0000, 0x13B0,0x135E,0x0000,
5989
0x13B0,0x1364,0x0000, 0x13B0,0x1365,0x0000, 0x13B0,0x13B0,0x0000,
5990
0x13B1,0x135E,0x0000, 0x13B1,0x1364,0x0000, 0x13B1,0x1365,0x0000,
5991
0x13B1,0x13B0,0x0000, 0x13B1,0x13B7,0x0000, 0x13B7,0x135E,0x0000,
5992
0x13B7,0x13B0,0x0000, 0x13B7,0x0000,0x0000, 0x13C8,0x135E,0x0000,
5993
0x13C8,0x1364,0x0000, 0x13C8,0x1365,0x0000, 0x13C8,0x13B0,0x0000,
5994
0x13C8,0x13B7,0x0000, 0x134F,0x13B0,0x0000, 0x134F,0x13B7,0x0000,
5995
0x1352,0x13B0,0x0000, 0x1352,0x13B7,0x0000, 0x1357,0x13B0,0x0000,
5996
0x1357,0x13B7,0x0000, 0x1358,0x13B0,0x0000, 0x1358,0x13B7,0x0000,
5997
0x1381,0x13B0,0x0000, 0x1381,0x13B7,0x0000, 0x1382,0x13B0,0x0000,
5998
0x1382,0x13B7,0x0000, 0x139E,0x13AB,0x0000, 0x139E,0x13B0,0x0000,
5999
0x13AB,0x13B0,0x0000, 0x13B1,0x13B0,0x0000, 0x13B1,0x13B7,0x0000,
6000
0x13C8,0x13B0,0x0000, 0x13C8,0x13B7,0x0000, 0x0000,0x0000,0x0000,
6001
0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000, 0x138C,0x13C7,0x0000,
6002
0x138C,0x13C8,0x0000, 0x138F,0x13C7,0x0000, 0x138F,0x13C8,0x0000,
6003
0x1390,0x13C7,0x0000, 0x1390,0x13C8,0x0000, 0x1381,0x13C7,0x0000,
6004
0x1381,0x13C8,0x0000, 0x1382,0x13C7,0x0000, 0x1382,0x13C8,0x0000,
6005
0x1364,0x13C7,0x0000 };
6006
206 by Brian Aker
Removed final uint dead types.
6007
uint16_t page0FDdata[]= { /* FD00 (9 weights per char) */
1 by brian
clean slate
6008
0x1364,0x13C8,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
6009
0x135E,0x13C7,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
6010
0x135E,0x13C8,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
6011
0x1365,0x13C7,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
6012
0x1365,0x13C8,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
6013
0x1387,0x13C7,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
6014
0x1387,0x13C8,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
6015
0x1388,0x13C7,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
6016
0x1388,0x13C8,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
6017
0x1382,0x135E,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
6018
0x1382,0x1364,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
6019
0x1382,0x1365,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
6020
0x1382,0x13B0,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
6021
0x1382,0x1375,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
6022
0x1381,0x1375,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
6023
0x1387,0x1375,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
6024
0x1388,0x1375,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
6025
0x138C,0x13C7,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
6026
0x138C,0x13C8,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
6027
0x138F,0x13C7,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
6028
0x138F,0x13C8,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
6029
0x1390,0x13C7,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
6030
0x1390,0x13C8,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
6031
0x1381,0x13C7,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
6032
0x1381,0x13C8,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
6033
0x1382,0x13C7,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
6034
0x1382,0x13C8,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
6035
0x1364,0x13C7,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
6036
0x1364,0x13C8,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
6037
0x135E,0x13C7,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
6038
0x135E,0x13C8,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
6039
0x1365,0x13C7,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
6040
0x1365,0x13C8,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
6041
0x1387,0x13C7,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
6042
0x1387,0x13C8,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
6043
0x1388,0x13C7,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
6044
0x1388,0x13C8,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
6045
0x1382,0x135E,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
6046
0x1382,0x1364,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
6047
0x1382,0x1365,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
6048
0x1382,0x13B0,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
6049
0x1382,0x1375,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
6050
0x1381,0x1375,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
6051
0x1387,0x1375,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
6052
0x1388,0x1375,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
6053
0x1382,0x135E,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
6054
0x1382,0x1364,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
6055
0x1382,0x1365,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
6056
0x1382,0x13B0,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
6057
0x1381,0x13B7,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
6058
0x1382,0x13B7,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
6059
0x138C,0x13B0,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
6060
0x1381,0x135E,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
6061
0x1381,0x1364,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
6062
0x1381,0x1365,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
6063
0x1382,0x135E,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
6064
0x1382,0x1364,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
6065
0x1382,0x1365,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
6066
0x138C,0x13B0,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
6067
0x138D,0x13B0,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
6068
0x1350,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
6069
0x1350,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
6070
0x02C0,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
6071
0x02C1,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
6072
0xFBC1,0xFD40,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
6073
0xFBC1,0xFD41,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
6074
0xFBC1,0xFD42,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
6075
0xFBC1,0xFD43,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
6076
0xFBC1,0xFD44,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
6077
0xFBC1,0xFD45,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
6078
0xFBC1,0xFD46,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
6079
0xFBC1,0xFD47,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
6080
0xFBC1,0xFD48,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
6081
0xFBC1,0xFD49,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
6082
0xFBC1,0xFD4A,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
6083
0xFBC1,0xFD4B,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
6084
0xFBC1,0xFD4C,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
6085
0xFBC1,0xFD4D,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
6086
0xFBC1,0xFD4E,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
6087
0xFBC1,0xFD4F,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
6088
0x1357,0x135E,0x13B0,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
6089
0x1357,0x1364,0x135E,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
6090
0x1357,0x1364,0x135E,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
6091
0x1357,0x1364,0x13B0,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
6092
0x1357,0x1365,0x13B0,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
6093
0x1357,0x13B0,0x135E,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
6094
0x1357,0x13B0,0x1364,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
6095
0x1357,0x13B0,0x1365,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
6096
0x135E,0x13B0,0x1364,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
6097
0x135E,0x13B0,0x1364,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
6098
0x1364,0x13B0,0x13C8,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
6099
0x1364,0x13B0,0x13C7,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
6100
0x1381,0x1364,0x135E,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
6101
0x1381,0x135E,0x1364,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
6102
0x1381,0x135E,0x13C7,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
6103
0x1381,0x13B0,0x1364,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
6104
0x1381,0x13B0,0x1364,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
6105
0x1381,0x13B0,0x135E,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
6106
0x1381,0x13B0,0x13B0,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
6107
0x1381,0x13B0,0x13B0,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
6108
0x1387,0x1364,0x1364,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
6109
0x1387,0x1364,0x1364,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
6110
0x1387,0x13B0,0x13B0,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
6111
0x1382,0x1364,0x13B0,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
6112
0x1382,0x1364,0x13B0,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
6113
0x1382,0x135E,0x13C8,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
6114
0x1382,0x13B0,0x1365,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
6115
0x1382,0x13B0,0x1365,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
6116
0x1382,0x13B0,0x13B0,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
6117
0x1382,0x13B0,0x13B0,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
6118
0x1388,0x1364,0x13C7,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
6119
0x1388,0x1365,0x13B0,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
6120
0x1388,0x1365,0x13B0,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
6121
0x138C,0x13B0,0x1364,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
6122
0x138C,0x13B0,0x1364,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
6123
0x138C,0x13B0,0x13B0,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
6124
0x138C,0x13B0,0x13C8,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
6125
0x138F,0x135E,0x13B0,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
6126
0x138F,0x13B0,0x13B0,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
6127
0x138F,0x13B0,0x13B0,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
6128
0x138F,0x13B0,0x13C7,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
6129
0x1390,0x13B0,0x13B0,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
6130
0x1390,0x13B0,0x13C8,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
6131
0x1390,0x13B0,0x13C7,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
6132
0x1393,0x1365,0x13B0,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
6133
0x1393,0x1365,0x13B0,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
6134
0x139B,0x13B0,0x1364,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
6135
0x139B,0x13B0,0x13B0,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
6136
0x13AB,0x1364,0x13B0,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
6137
0x13AB,0x1364,0x13C8,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
6138
0x13AB,0x1364,0x13C7,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
6139
0x13AB,0x135E,0x135E,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
6140
0x13AB,0x135E,0x135E,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
6141
0x13AB,0x1365,0x13B0,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
6142
0x13AB,0x1365,0x13B0,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
6143
0x13AB,0x13B0,0x1364,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
6144
0x13AB,0x13B0,0x1364,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
6145
0x13B0,0x1364,0x135E,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
6146
0x13B0,0x1364,0x13B0,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
6147
0x13B0,0x1364,0x13C8,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
6148
0x13B0,0x135E,0x1364,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
6149
0x13B0,0x135E,0x13B0,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
6150
0x13B0,0x1365,0x135E,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
6151
0x13B0,0x1365,0x13B0,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
6152
0xFBC1,0xFD90,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
6153
0xFBC1,0xFD91,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
6154
0x13B0,0x135E,0x1365,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
6155
0x13B7,0x13B0,0x135E,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
6156
0x13B7,0x13B0,0x13B0,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
6157
0x13B1,0x1364,0x13B0,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
6158
0x13B1,0x1364,0x13C7,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
6159
0x13B1,0x135E,0x13B0,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
6160
0x13B1,0x135E,0x13B0,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
6161
0x13B1,0x135E,0x13C7,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
6162
0x13B1,0x13B0,0x13C8,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
6163
0x13B1,0x13B0,0x13C7,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
6164
0x13C8,0x13B0,0x13B0,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
6165
0x13C8,0x13B0,0x13B0,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
6166
0x1352,0x1365,0x13C8,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
6167
0x1357,0x135E,0x13C8,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
6168
0x1357,0x135E,0x13C7,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
6169
0x1357,0x1365,0x13C8,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
6170
0x1357,0x1365,0x13C7,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
6171
0x1357,0x13B0,0x13C8,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
6172
0x1357,0x13B0,0x13C7,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
6173
0x135E,0x13B0,0x13C8,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
6174
0x135E,0x1364,0x13C7,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
6175
0x135E,0x13B0,0x13C7,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
6176
0x1381,0x1365,0x13C7,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
6177
0x1387,0x1364,0x13C8,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
6178
0x1382,0x1364,0x13C8,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
6179
0x1388,0x1364,0x13C8,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
6180
0x13AB,0x135E,0x13C8,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
6181
0x13AB,0x13B0,0x13C8,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
6182
0x13C8,0x1364,0x13C8,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
6183
0x13C8,0x135E,0x13C8,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
6184
0x13C8,0x13B0,0x13C8,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
6185
0x13B0,0x13B0,0x13C8,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
6186
0x139B,0x13B0,0x13C8,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
6187
0x13B1,0x1364,0x13C8,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
6188
0x139B,0x13B0,0x1364,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
6189
0x13AB,0x1364,0x13B0,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
6190
0x138F,0x13B0,0x13C8,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
6191
0x139E,0x13B0,0x13C8,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
6192
0x13B1,0x135E,0x1364,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
6193
0x13B0,0x1365,0x13C8,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
6194
0x13AB,0x135E,0x13B0,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
6195
0x139E,0x13B0,0x13B0,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
6196
0x13AB,0x135E,0x13B0,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
6197
0x13B1,0x135E,0x1364,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
6198
0x135E,0x1364,0x13C8,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
6199
0x1364,0x135E,0x13C8,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
6200
0x13B0,0x135E,0x13C8,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
6201
0x1393,0x13B0,0x13C8,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
6202
0x1352,0x1364,0x13C8,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
6203
0x139E,0x13B0,0x13B0,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
6204
0x138F,0x135E,0x13B0,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
6205
0x1387,0x13B0,0x13B0,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
6206
0x1381,0x1365,0x13C8,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
6207
0x13B1,0x135E,0x13C8,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
6208
0xFBC1,0xFDC8,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
6209
0xFBC1,0xFDC9,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
6210
0xFBC1,0xFDCA,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
6211
0xFBC1,0xFDCB,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
6212
0xFBC1,0xFDCC,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
6213
0xFBC1,0xFDCD,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
6214
0xFBC1,0xFDCE,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
6215
0xFBC1,0xFDCF,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
6216
0xFBC1,0xFDD0,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
6217
0xFBC1,0xFDD1,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
6218
0xFBC1,0xFDD2,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
6219
0xFBC1,0xFDD3,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
6220
0xFBC1,0xFDD4,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
6221
0xFBC1,0xFDD5,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
6222
0xFBC1,0xFDD6,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
6223
0xFBC1,0xFDD7,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
6224
0xFBC1,0xFDD8,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
6225
0xFBC1,0xFDD9,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
6226
0xFBC1,0xFDDA,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
6227
0xFBC1,0xFDDB,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
6228
0xFBC1,0xFDDC,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
6229
0xFBC1,0xFDDD,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
6230
0xFBC1,0xFDDE,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
6231
0xFBC1,0xFDDF,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
6232
0xFBC1,0xFDE0,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
6233
0xFBC1,0xFDE1,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
6234
0xFBC1,0xFDE2,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
6235
0xFBC1,0xFDE3,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
6236
0xFBC1,0xFDE4,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
6237
0xFBC1,0xFDE5,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
6238
0xFBC1,0xFDE6,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
6239
0xFBC1,0xFDE7,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
6240
0xFBC1,0xFDE8,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
6241
0xFBC1,0xFDE9,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
6242
0xFBC1,0xFDEA,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
6243
0xFBC1,0xFDEB,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
6244
0xFBC1,0xFDEC,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
6245
0xFBC1,0xFDED,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
6246
0xFBC1,0xFDEE,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
6247
0xFBC1,0xFDEF,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
6248
0x1387,0x13AB,0x13CE,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
6249
0x139B,0x13AB,0x13CE,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
6250
0x1350,0x13AB,0x13AB,0x13B7,0x0000,0x0000,0x0000,0x0000,0x0000,
6251
0x1350,0x139E,0x1352,0x1375,0x0000,0x0000,0x0000,0x0000,0x0000,
6252
0x13B0,0x1364,0x13B0,0x1369,0x0000,0x0000,0x0000,0x0000,0x0000,
6253
0x1387,0x13AB,0x138F,0x13B0,0x0000,0x0000,0x0000,0x0000,0x0000,
6254
0x1375,0x1381,0x13BD,0x13AB,0x0000,0x0000,0x0000,0x0000,0x0000,
6255
0x138F,0x13AB,0x13C8,0x13B7,0x0000,0x0000,0x0000,0x0000,0x0000,
6256
0x13BD,0x1381,0x13AB,0x13B0,0x0000,0x0000,0x0000,0x0000,0x0000,
6257
0x1387,0x13AB,0x13C7,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
6258
0xFBC1,0xFDFA,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
6259
0x135E,0x13AB,0x0209,0x135E,0x13AB,0x1350,0x13AB,0x13B7,0x0000,
6260
0x1375,0x13C9,0x1350,0x13AB,0x0000,0x0000,0x0000,0x0000,0x0000,
6261
0x034F,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
6262
0xFBC1,0xFDFE,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
6263
0xFBC1,0xFDFF,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000
6264
};
6265
206 by Brian Aker
Removed final uint dead types.
6266
uint16_t page0FEdata[]= { /* FE00 (3 weights per char) */
1 by brian
clean slate
6267
0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,
6268
0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,
6269
0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,
6270
0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,
6271
0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,
6272
0x0000,0x0000,0x0000, 0xFBC1,0xFE10,0x0000, 0xFBC1,0xFE11,0x0000,
6273
0xFBC1,0xFE12,0x0000, 0xFBC1,0xFE13,0x0000, 0xFBC1,0xFE14,0x0000,
6274
0xFBC1,0xFE15,0x0000, 0xFBC1,0xFE16,0x0000, 0xFBC1,0xFE17,0x0000,
6275
0xFBC1,0xFE18,0x0000, 0xFBC1,0xFE19,0x0000, 0xFBC1,0xFE1A,0x0000,
6276
0xFBC1,0xFE1B,0x0000, 0xFBC1,0xFE1C,0x0000, 0xFBC1,0xFE1D,0x0000,
6277
0xFBC1,0xFE1E,0x0000, 0xFBC1,0xFE1F,0x0000, 0x0000,0x0000,0x0000,
6278
0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,
6279
0xFBC1,0xFE24,0x0000, 0xFBC1,0xFE25,0x0000, 0xFBC1,0xFE26,0x0000,
6280
0xFBC1,0xFE27,0x0000, 0xFBC1,0xFE28,0x0000, 0xFBC1,0xFE29,0x0000,
6281
0xFBC1,0xFE2A,0x0000, 0xFBC1,0xFE2B,0x0000, 0xFBC1,0xFE2C,0x0000,
6282
0xFBC1,0xFE2D,0x0000, 0xFBC1,0xFE2E,0x0000, 0xFBC1,0xFE2F,0x0000,
6283
0x025D,0x025D,0x0000, 0x0228,0x0000,0x0000, 0x0227,0x0000,0x0000,
6284
0x021B,0x0000,0x0000, 0x021B,0x0000,0x0000, 0x0288,0x0000,0x0000,
6285
0x0289,0x0000,0x0000, 0x028C,0x0000,0x0000, 0x028D,0x0000,0x0000,
6286
0x02B8,0x0000,0x0000, 0x02B9,0x0000,0x0000, 0x02B6,0x0000,0x0000,
6287
0x02B7,0x0000,0x0000, 0x02B0,0x0000,0x0000, 0x02B1,0x0000,0x0000,
6288
0x02AE,0x0000,0x0000, 0x02AF,0x0000,0x0000, 0x02B2,0x0000,0x0000,
6289
0x02B3,0x0000,0x0000, 0x02B4,0x0000,0x0000, 0x02B5,0x0000,0x0000,
6290
0x0238,0x0000,0x0000, 0x0239,0x0000,0x0000, 0x028A,0x0000,0x0000,
6291
0x028B,0x0000,0x0000, 0x0211,0x0000,0x0000, 0x0211,0x0000,0x0000,
6292
0x0211,0x0000,0x0000, 0x0211,0x0000,0x0000, 0x021B,0x0000,0x0000,
6293
0x021B,0x0000,0x0000, 0x021B,0x0000,0x0000, 0x022F,0x0000,0x0000,
6294
0x0237,0x0000,0x0000, 0x025D,0x0000,0x0000, 0xFBC1,0xFE53,0x0000,
6295
0x023A,0x0000,0x0000, 0x023D,0x0000,0x0000, 0x0255,0x0000,0x0000,
6296
0x0251,0x0000,0x0000, 0x0228,0x0000,0x0000, 0x0288,0x0000,0x0000,
6297
0x0289,0x0000,0x0000, 0x028C,0x0000,0x0000, 0x028D,0x0000,0x0000,
6298
0x02B8,0x0000,0x0000, 0x02B9,0x0000,0x0000, 0x02D2,0x0000,0x0000,
6299
0x02CF,0x0000,0x0000, 0x02C8,0x0000,0x0000, 0x0428,0x0000,0x0000,
6300
0x0221,0x0000,0x0000, 0x042C,0x0000,0x0000, 0x042E,0x0000,0x0000,
6301
0x042D,0x0000,0x0000, 0xFBC1,0xFE67,0x0000, 0x02CE,0x0000,0x0000,
6302
0x0E0F,0x0000,0x0000, 0x02D3,0x0000,0x0000, 0x02C7,0x0000,0x0000,
6303
0xFBC1,0xFE6C,0x0000, 0xFBC1,0xFE6D,0x0000, 0xFBC1,0xFE6E,0x0000,
6304
0xFBC1,0xFE6F,0x0000, 0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,
6305
0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,
6306
0xFBC1,0xFE75,0x0000, 0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,
6307
0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,
6308
0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,
6309
0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000, 0x1347,0x0000,0x0000,
6310
0x1348,0x0000,0x0000, 0x1348,0x0000,0x0000, 0x1349,0x0000,0x0000,
6311
0x1349,0x0000,0x0000, 0x134C,0x0000,0x0000, 0x134C,0x0000,0x0000,
6312
0x134D,0x0000,0x0000, 0x134D,0x0000,0x0000, 0x134F,0x0000,0x0000,
6313
0x134F,0x0000,0x0000, 0x134F,0x0000,0x0000, 0x134F,0x0000,0x0000,
6314
0x1350,0x0000,0x0000, 0x1350,0x0000,0x0000, 0x1352,0x0000,0x0000,
6315
0x1352,0x0000,0x0000, 0x1352,0x0000,0x0000, 0x1352,0x0000,0x0000,
6316
0x1356,0x0000,0x0000, 0x1356,0x0000,0x0000, 0x1357,0x0000,0x0000,
6317
0x1357,0x0000,0x0000, 0x1357,0x0000,0x0000, 0x1357,0x0000,0x0000,
6318
0x1358,0x0000,0x0000, 0x1358,0x0000,0x0000, 0x1358,0x0000,0x0000,
6319
0x1358,0x0000,0x0000, 0x135E,0x0000,0x0000, 0x135E,0x0000,0x0000,
6320
0x135E,0x0000,0x0000, 0x135E,0x0000,0x0000, 0x1364,0x0000,0x0000,
6321
0x1364,0x0000,0x0000, 0x1364,0x0000,0x0000, 0x1364,0x0000,0x0000,
6322
0x1365,0x0000,0x0000, 0x1365,0x0000,0x0000, 0x1365,0x0000,0x0000,
6323
0x1365,0x0000,0x0000, 0x1369,0x0000,0x0000, 0x1369,0x0000,0x0000,
6324
0x136A,0x0000,0x0000, 0x136A,0x0000,0x0000, 0x1375,0x0000,0x0000,
6325
0x1375,0x0000,0x0000, 0x1376,0x0000,0x0000, 0x1376,0x0000,0x0000,
6326
0x1381,0x0000,0x0000, 0x1381,0x0000,0x0000, 0x1381,0x0000,0x0000,
6327
0x1381,0x0000,0x0000, 0x1382,0x0000,0x0000, 0x1382,0x0000,0x0000,
6328
0x1382,0x0000,0x0000, 0x1382,0x0000,0x0000, 0x1387,0x0000,0x0000,
6329
0x1387,0x0000,0x0000, 0x1387,0x0000,0x0000, 0x1387,0x0000,0x0000,
6330
0x1388,0x0000,0x0000, 0x1388,0x0000,0x0000, 0x1388,0x0000,0x0000,
6331
0x1388,0x0000,0x0000, 0x138C,0x0000,0x0000, 0x138C,0x0000,0x0000,
6332
0x138C,0x0000,0x0000, 0x138C,0x0000,0x0000, 0x138D,0x0000,0x0000,
6333
0x138D,0x0000,0x0000, 0x138D,0x0000,0x0000, 0x138D,0x0000,0x0000,
6334
0x138F,0x0000,0x0000, 0x138F,0x0000,0x0000, 0x138F,0x0000,0x0000,
6335
0x138F,0x0000,0x0000, 0x1390,0x0000,0x0000, 0x1390,0x0000,0x0000,
6336
0x1390,0x0000,0x0000, 0x1390,0x0000,0x0000, 0x1393,0x0000,0x0000,
6337
0x1393,0x0000,0x0000, 0x1393,0x0000,0x0000, 0x1393,0x0000,0x0000,
6338
0x139B,0x0000,0x0000, 0x139B,0x0000,0x0000, 0x139B,0x0000,0x0000,
6339
0x139B,0x0000,0x0000, 0x139E,0x0000,0x0000, 0x139E,0x0000,0x0000,
6340
0x139E,0x0000,0x0000, 0x139E,0x0000,0x0000, 0x13AB,0x0000,0x0000,
6341
0x13AB,0x0000,0x0000, 0x13AB,0x0000,0x0000, 0x13AB,0x0000,0x0000,
6342
0x13B0,0x0000,0x0000, 0x13B0,0x0000,0x0000, 0x13B0,0x0000,0x0000,
6343
0x13B0,0x0000,0x0000, 0x13B1,0x0000,0x0000, 0x13B1,0x0000,0x0000,
6344
0x13B1,0x0000,0x0000, 0x13B1,0x0000,0x0000, 0x13B7,0x0000,0x0000,
6345
0x13B7,0x0000,0x0000, 0x13B7,0x0000,0x0000, 0x13B7,0x0000,0x0000,
6346
0x13BD,0x0000,0x0000, 0x13BD,0x0000,0x0000, 0x13C7,0x0000,0x0000,
6347
0x13C7,0x0000,0x0000, 0x13C8,0x0000,0x0000, 0x13C8,0x0000,0x0000,
6348
0x13C8,0x0000,0x0000, 0x13C8,0x0000,0x0000, 0x13AB,0x1348,0x0000,
6349
0x13AB,0x1348,0x0000, 0x13AB,0x1349,0x0000, 0x13AB,0x1349,0x0000,
6350
0x13AB,0x134D,0x0000, 0x13AB,0x134D,0x0000, 0x13AB,0x1350,0x0000,
6351
0x13AB,0x1350,0x0000, 0xFBC1,0xFEFD,0x0000, 0xFBC1,0xFEFE,0x0000,
6352
0x0000,0x0000,0x0000 };
6353
206 by Brian Aker
Removed final uint dead types.
6354
uint16_t page0FFdata[]= { /* FF00 (3 weights per char) */
1 by brian
clean slate
6355
0xFBC1,0xFF00,0x0000, 0x0251,0x0000,0x0000, 0x027E,0x0000,0x0000,
6356
0x02D2,0x0000,0x0000, 0x0E0F,0x0000,0x0000, 0x02D3,0x0000,0x0000,
6357
0x02CF,0x0000,0x0000, 0x0277,0x0000,0x0000, 0x0288,0x0000,0x0000,
6358
0x0289,0x0000,0x0000, 0x02C8,0x0000,0x0000, 0x0428,0x0000,0x0000,
6359
0x022F,0x0000,0x0000, 0x0221,0x0000,0x0000, 0x025D,0x0000,0x0000,
6360
0x02CC,0x0000,0x0000, 0x0E29,0x0000,0x0000, 0x0E2A,0x0000,0x0000,
6361
0x0E2B,0x0000,0x0000, 0x0E2C,0x0000,0x0000, 0x0E2D,0x0000,0x0000,
6362
0x0E2E,0x0000,0x0000, 0x0E2F,0x0000,0x0000, 0x0E30,0x0000,0x0000,
6363
0x0E31,0x0000,0x0000, 0x0E32,0x0000,0x0000, 0x023D,0x0000,0x0000,
6364
0x023A,0x0000,0x0000, 0x042C,0x0000,0x0000, 0x042D,0x0000,0x0000,
6365
0x042E,0x0000,0x0000, 0x0255,0x0000,0x0000, 0x02C7,0x0000,0x0000,
6366
0x0E33,0x0000,0x0000, 0x0E4A,0x0000,0x0000, 0x0E60,0x0000,0x0000,
6367
0x0E6D,0x0000,0x0000, 0x0E8B,0x0000,0x0000, 0x0EB9,0x0000,0x0000,
6368
0x0EC1,0x0000,0x0000, 0x0EE1,0x0000,0x0000, 0x0EFB,0x0000,0x0000,
6369
0x0F10,0x0000,0x0000, 0x0F21,0x0000,0x0000, 0x0F2E,0x0000,0x0000,
6370
0x0F5B,0x0000,0x0000, 0x0F64,0x0000,0x0000, 0x0F82,0x0000,0x0000,
6371
0x0FA7,0x0000,0x0000, 0x0FB4,0x0000,0x0000, 0x0FC0,0x0000,0x0000,
6372
0x0FEA,0x0000,0x0000, 0x1002,0x0000,0x0000, 0x101F,0x0000,0x0000,
6373
0x1044,0x0000,0x0000, 0x1051,0x0000,0x0000, 0x105A,0x0000,0x0000,
6374
0x105E,0x0000,0x0000, 0x106A,0x0000,0x0000, 0x028A,0x0000,0x0000,
6375
0x02CE,0x0000,0x0000, 0x028B,0x0000,0x0000, 0x020F,0x0000,0x0000,
6376
0x021B,0x0000,0x0000, 0x020C,0x0000,0x0000, 0x0E33,0x0000,0x0000,
6377
0x0E4A,0x0000,0x0000, 0x0E60,0x0000,0x0000, 0x0E6D,0x0000,0x0000,
6378
0x0E8B,0x0000,0x0000, 0x0EB9,0x0000,0x0000, 0x0EC1,0x0000,0x0000,
6379
0x0EE1,0x0000,0x0000, 0x0EFB,0x0000,0x0000, 0x0F10,0x0000,0x0000,
6380
0x0F21,0x0000,0x0000, 0x0F2E,0x0000,0x0000, 0x0F5B,0x0000,0x0000,
6381
0x0F64,0x0000,0x0000, 0x0F82,0x0000,0x0000, 0x0FA7,0x0000,0x0000,
6382
0x0FB4,0x0000,0x0000, 0x0FC0,0x0000,0x0000, 0x0FEA,0x0000,0x0000,
6383
0x1002,0x0000,0x0000, 0x101F,0x0000,0x0000, 0x1044,0x0000,0x0000,
6384
0x1051,0x0000,0x0000, 0x105A,0x0000,0x0000, 0x105E,0x0000,0x0000,
6385
0x106A,0x0000,0x0000, 0x028C,0x0000,0x0000, 0x0430,0x0000,0x0000,
6386
0x028D,0x0000,0x0000, 0x0433,0x0000,0x0000, 0x029A,0x0000,0x0000,
6387
0x029B,0x0000,0x0000, 0x0266,0x0000,0x0000, 0x02B2,0x0000,0x0000,
6388
0x02B3,0x0000,0x0000, 0x0237,0x0000,0x0000, 0x022E,0x0000,0x0000,
6389
0x1E80,0x0000,0x0000, 0x1E52,0x0000,0x0000, 0x1E53,0x0000,0x0000,
6390
0x1E54,0x0000,0x0000, 0x1E55,0x0000,0x0000, 0x1E56,0x0000,0x0000,
6391
0x1E75,0x0000,0x0000, 0x1E76,0x0000,0x0000, 0x1E77,0x0000,0x0000,
6392
0x1E63,0x0000,0x0000, 0x0E0B,0x0000,0x0000, 0x1E52,0x0000,0x0000,
6393
0x1E53,0x0000,0x0000, 0x1E54,0x0000,0x0000, 0x1E55,0x0000,0x0000,
6394
0x1E56,0x0000,0x0000, 0x1E57,0x0000,0x0000, 0x1E58,0x0000,0x0000,
6395
0x1E59,0x0000,0x0000, 0x1E5A,0x0000,0x0000, 0x1E5B,0x0000,0x0000,
6396
0x1E5C,0x0000,0x0000, 0x1E5D,0x0000,0x0000, 0x1E5E,0x0000,0x0000,
6397
0x1E5F,0x0000,0x0000, 0x1E60,0x0000,0x0000, 0x1E61,0x0000,0x0000,
6398
0x1E62,0x0000,0x0000, 0x1E63,0x0000,0x0000, 0x1E64,0x0000,0x0000,
6399
0x1E65,0x0000,0x0000, 0x1E66,0x0000,0x0000, 0x1E67,0x0000,0x0000,
6400
0x1E68,0x0000,0x0000, 0x1E69,0x0000,0x0000, 0x1E6A,0x0000,0x0000,
6401
0x1E6B,0x0000,0x0000, 0x1E6C,0x0000,0x0000, 0x1E6D,0x0000,0x0000,
6402
0x1E6E,0x0000,0x0000, 0x1E6F,0x0000,0x0000, 0x1E70,0x0000,0x0000,
6403
0x1E71,0x0000,0x0000, 0x1E72,0x0000,0x0000, 0x1E73,0x0000,0x0000,
6404
0x1E74,0x0000,0x0000, 0x1E75,0x0000,0x0000, 0x1E76,0x0000,0x0000,
6405
0x1E77,0x0000,0x0000, 0x1E78,0x0000,0x0000, 0x1E79,0x0000,0x0000,
6406
0x1E7A,0x0000,0x0000, 0x1E7B,0x0000,0x0000, 0x1E7C,0x0000,0x0000,
6407
0x1E7D,0x0000,0x0000, 0x1E81,0x0000,0x0000, 0x0000,0x0000,0x0000,
6408
0x0000,0x0000,0x0000, 0x1DBD,0x0000,0x0000, 0x1D62,0x0000,0x0000,
6409
0x1D63,0x0000,0x0000, 0x1E02,0x0000,0x0000, 0x1D64,0x0000,0x0000,
6410
0x1E04,0x0000,0x0000, 0x1E05,0x0000,0x0000, 0x1D65,0x0000,0x0000,
6411
0x1D66,0x0000,0x0000, 0x1D67,0x0000,0x0000, 0x1E08,0x0000,0x0000,
6412
0x1E09,0x0000,0x0000, 0x1E0A,0x0000,0x0000, 0x1E0B,0x0000,0x0000,
6413
0x1E0C,0x0000,0x0000, 0x1E0D,0x0000,0x0000, 0x1D7C,0x0000,0x0000,
6414
0x1D68,0x0000,0x0000, 0x1D69,0x0000,0x0000, 0x1D6A,0x0000,0x0000,
6415
0x1D83,0x0000,0x0000, 0x1D6B,0x0000,0x0000, 0x1D6C,0x0000,0x0000,
6416
0x1D6D,0x0000,0x0000, 0x1D6E,0x0000,0x0000, 0x1D6F,0x0000,0x0000,
6417
0x1D70,0x0000,0x0000, 0x1D71,0x0000,0x0000, 0x1D72,0x0000,0x0000,
6418
0x1D73,0x0000,0x0000, 0x1D74,0x0000,0x0000, 0xFBC1,0xFFBF,0x0000,
6419
0xFBC1,0xFFC0,0x0000, 0xFBC1,0xFFC1,0x0000, 0x1DBE,0x0000,0x0000,
6420
0x1DBF,0x0000,0x0000, 0x1DC0,0x0000,0x0000, 0x1DC1,0x0000,0x0000,
6421
0x1DC2,0x0000,0x0000, 0x1DC3,0x0000,0x0000, 0xFBC1,0xFFC8,0x0000,
6422
0xFBC1,0xFFC9,0x0000, 0x1DC4,0x0000,0x0000, 0x1DC5,0x0000,0x0000,
6423
0x1DC6,0x0000,0x0000, 0x1DC7,0x0000,0x0000, 0x1DC8,0x0000,0x0000,
6424
0x1DC9,0x0000,0x0000, 0xFBC1,0xFFD0,0x0000, 0xFBC1,0xFFD1,0x0000,
6425
0x1DCA,0x0000,0x0000, 0x1DCB,0x0000,0x0000, 0x1DCC,0x0000,0x0000,
6426
0x1DCD,0x0000,0x0000, 0x1DCE,0x0000,0x0000, 0x1DCF,0x0000,0x0000,
6427
0xFBC1,0xFFD8,0x0000, 0xFBC1,0xFFD9,0x0000, 0x1DD0,0x0000,0x0000,
6428
0x1DD1,0x0000,0x0000, 0x1DD2,0x0000,0x0000, 0xFBC1,0xFFDD,0x0000,
6429
0xFBC1,0xFFDE,0x0000, 0xFBC1,0xFFDF,0x0000, 0x0E0E,0x0000,0x0000,
6430
0x0E10,0x0000,0x0000, 0x042F,0x0000,0x0000, 0x0210,0x0000,0x0000,
6431
0x0431,0x0000,0x0000, 0x0E11,0x0000,0x0000, 0x0E20,0x0000,0x0000,
6432
0xFBC1,0xFFE7,0x0000, 0x05FE,0x0000,0x0000, 0x03AE,0x0000,0x0000,
6433
0x03B0,0x0000,0x0000, 0x03AF,0x0000,0x0000, 0x03B1,0x0000,0x0000,
6434
0x069C,0x0000,0x0000, 0x06C7,0x0000,0x0000, 0xFBC1,0xFFEF,0x0000,
6435
0xFBC1,0xFFF0,0x0000, 0xFBC1,0xFFF1,0x0000, 0xFBC1,0xFFF2,0x0000,
6436
0xFBC1,0xFFF3,0x0000, 0xFBC1,0xFFF4,0x0000, 0xFBC1,0xFFF5,0x0000,
6437
0xFBC1,0xFFF6,0x0000, 0xFBC1,0xFFF7,0x0000, 0xFBC1,0xFFF8,0x0000,
6438
0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,
6439
0x0DC5,0x0000,0x0000, 0x0DC6,0x0000,0x0000, 0xFBC1,0xFFFE,0x0000,
6440
0xFBC1,0xFFFF,0x0000 };
6441
481 by Brian Aker
Remove all of uchar.
6442
unsigned char uca_length[256]={
1 by brian
clean slate
6443
4,3,3,4,3,3,3,3,0,3,3,3,3,3,3,3,
6444
3,3,3,3,3,2,3,3,3,3,0,0,0,3,3,3,
6445
5,5,4,3,5,2,3,3,2,2,5,3,0,0,3,3,
6446
3,3,8,9,0,0,0,0,0,0,0,0,0,0,0,0,
6447
0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,
6448
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
6449
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
6450
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
6451
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
6452
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
6453
2,2,2,2,3,0,0,0,0,0,0,0,0,0,0,0,
6454
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
6455
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
6456
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
6457
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
6458
0,0,0,0,0,0,0,0,0,3,3,4,3,9,3,3
6459
};
206 by Brian Aker
Removed final uint dead types.
6460
uint16_t *uca_weight[256]={
1 by brian
clean slate
6461
page000data,page001data,page002data,page003data,
6462
page004data,page005data,page006data,page007data,
6463
NULL       ,page009data,page00Adata,page00Bdata,
6464
page00Cdata,page00Ddata,page00Edata,page00Fdata,
6465
page010data,page011data,page012data,page013data,
6466
page014data,page015data,page016data,page017data,
6467
page018data,page019data,NULL       ,NULL       ,
6468
NULL       ,page01Ddata,page01Edata,page01Fdata,
6469
page020data,page021data,page022data,page023data,
6470
page024data,page025data,page026data,page027data,
6471
page028data,page029data,page02Adata,page02Bdata,
6472
NULL       ,NULL       ,page02Edata,page02Fdata,
6473
page030data,page031data,page032data,page033data,
6474
NULL       ,NULL       ,NULL       ,NULL       ,
6475
NULL       ,NULL       ,NULL       ,NULL       ,
6476
NULL       ,NULL       ,NULL       ,NULL       ,
6477
NULL       ,NULL       ,NULL       ,NULL       ,
6478
NULL       ,NULL       ,NULL       ,NULL       ,
6479
NULL       ,NULL       ,NULL       ,NULL       ,
6480
NULL       ,page04Ddata,NULL       ,NULL       ,
6481
NULL       ,NULL       ,NULL       ,NULL       ,
6482
NULL       ,NULL       ,NULL       ,NULL       ,
6483
NULL       ,NULL       ,NULL       ,NULL       ,
6484
NULL       ,NULL       ,NULL       ,NULL       ,
6485
NULL       ,NULL       ,NULL       ,NULL       ,
6486
NULL       ,NULL       ,NULL       ,NULL       ,
6487
NULL       ,NULL       ,NULL       ,NULL       ,
6488
NULL       ,NULL       ,NULL       ,NULL       ,
6489
NULL       ,NULL       ,NULL       ,NULL       ,
6490
NULL       ,NULL       ,NULL       ,NULL       ,
6491
NULL       ,NULL       ,NULL       ,NULL       ,
6492
NULL       ,NULL       ,NULL       ,NULL       ,
6493
NULL       ,NULL       ,NULL       ,NULL       ,
6494
NULL       ,NULL       ,NULL       ,NULL       ,
6495
NULL       ,NULL       ,NULL       ,NULL       ,
6496
NULL       ,NULL       ,NULL       ,NULL       ,
6497
NULL       ,NULL       ,NULL       ,NULL       ,
6498
NULL       ,NULL       ,NULL       ,NULL       ,
6499
NULL       ,NULL       ,NULL       ,NULL       ,
6500
NULL       ,NULL       ,NULL       ,NULL       ,
6501
page0A0data,page0A1data,page0A2data,page0A3data,
6502
page0A4data,NULL       ,NULL       ,NULL       ,
6503
NULL       ,NULL       ,NULL       ,NULL       ,
6504
NULL       ,NULL       ,NULL       ,NULL       ,
6505
NULL       ,NULL       ,NULL       ,NULL       ,
6506
NULL       ,NULL       ,NULL       ,NULL       ,
6507
NULL       ,NULL       ,NULL       ,NULL       ,
6508
NULL       ,NULL       ,NULL       ,NULL       ,
6509
NULL       ,NULL       ,NULL       ,NULL       ,
6510
NULL       ,NULL       ,NULL       ,NULL       ,
6511
NULL       ,NULL       ,NULL       ,NULL       ,
6512
NULL       ,NULL       ,NULL       ,NULL       ,
6513
NULL       ,NULL       ,NULL       ,NULL       ,
6514
NULL       ,NULL       ,NULL       ,NULL       ,
6515
NULL       ,NULL       ,NULL       ,NULL       ,
6516
NULL       ,NULL       ,NULL       ,NULL       ,
6517
NULL       ,NULL       ,NULL       ,NULL       ,
6518
NULL       ,NULL       ,NULL       ,NULL       ,
6519
NULL       ,NULL       ,NULL       ,NULL       ,
6520
NULL       ,NULL       ,NULL       ,NULL       ,
6521
NULL       ,NULL       ,NULL       ,NULL       ,
6522
NULL       ,NULL       ,NULL       ,NULL       ,
6523
NULL       ,page0F9data,page0FAdata,page0FBdata,
6524
page0FCdata,page0FDdata,page0FEdata,page0FFdata
6525
};
6526
6527
/*
6528
  Some sources treat LETTER A WITH DIARESIS (00E4,00C4)
6529
  secondary greater than LETTER AE (00E6,00C6).
6530
  http://www.evertype.com/alphabets/icelandic.pdf
6531
  http://developer.mimer.com/collations/charts/icelandic.htm
6532
6533
  Other sources do not provide any special rules
6534
  for LETTER A WITH DIARESIS:
6535
  http://www.omniglot.com/writing/icelandic.htm
6536
  http://en.wikipedia.org/wiki/Icelandic_alphabet
6537
  http://oss.software.ibm.com/icu/charts/collation/is.html
6538
6539
  Let's go the first way.
6540
*/
6541
6542
static const char icelandic[]=
6543
    "& A < \\u00E1 <<< \\u00C1 "
6544
    "& D < \\u00F0 <<< \\u00D0 "
6545
    "& E < \\u00E9 <<< \\u00C9 "
6546
    "& I < \\u00ED <<< \\u00CD "
6547
    "& O < \\u00F3 <<< \\u00D3 "
6548
    "& U < \\u00FA <<< \\u00DA "
6549
    "& Y < \\u00FD <<< \\u00DD "
6550
    "& Z < \\u00FE <<< \\u00DE "
6551
        "< \\u00E6 <<< \\u00C6 << \\u00E4 <<< \\u00C4 "
6552
        "< \\u00F6 <<< \\u00D6 << \\u00F8 <<< \\u00D8 "
6553
        "< \\u00E5 <<< \\u00C5 ";
6554
6555
/*
6556
  Some sources treat I and Y primary different.
6557
  Other sources treat I and Y the same on primary level.
6558
  We'll go the first way.
6559
*/
6560
6561
static const char latvian[]=
6562
    "& C < \\u010D <<< \\u010C "
6563
    "& G < \\u0123 <<< \\u0122 "
6564
    "& I < \\u0079 <<< \\u0059 "
6565
    "& K < \\u0137 <<< \\u0136 "
6566
    "& L < \\u013C <<< \\u013B "
6567
    "& N < \\u0146 <<< \\u0145 "
6568
    "& R < \\u0157 <<< \\u0156 "
6569
    "& S < \\u0161 <<< \\u0160 "
6570
    "& Z < \\u017E <<< \\u017D ";
6571
6572
6573
static const char romanian[]=
6574
    "& A < \\u0103 <<< \\u0102 < \\u00E2 <<< \\u00C2 "
6575
    "& I < \\u00EE <<< \\u00CE "
6576
    "& S < \\u0219 <<< \\u0218 << \\u015F <<< \\u015E "
6577
    "& T < \\u021B <<< \\u021A << \\u0163 <<< \\u0162 ";
6578
6579
static const char slovenian[]=
6580
    "& C < \\u010D <<< \\u010C "
6581
    "& S < \\u0161 <<< \\u0160 "
6582
    "& Z < \\u017E <<< \\u017D ";
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
6583
1 by brian
clean slate
6584
6585
static const char polish[]=
6586
    "& A < \\u0105 <<< \\u0104 "
6587
    "& C < \\u0107 <<< \\u0106 "
6588
    "& E < \\u0119 <<< \\u0118 "
6589
    "& L < \\u0142 <<< \\u0141 "
6590
    "& N < \\u0144 <<< \\u0143 "
6591
    "& O < \\u00F3 <<< \\u00D3 "
6592
    "& S < \\u015B <<< \\u015A "
6593
    "& Z < \\u017A <<< \\u0179 < \\u017C <<< \\u017B";
6594
6595
static const char estonian[]=
6596
    "& S < \\u0161 <<< \\u0160 "
6597
       " < \\u007A <<< \\u005A "
6598
       " < \\u017E <<< \\u017D "
6599
    "& W < \\u00F5 <<< \\u00D5 "
6600
        "< \\u00E4 <<< \\u00C4 "
6601
        "< \\u00F6 <<< \\u00D6 "
6602
        "< \\u00FC <<< \\u00DC ";
6603
6604
static const char spanish[]= "& N < \\u00F1 <<< \\u00D1 ";
6605
6606
/*
6607
  Some sources treat V and W as similar on primary level.
6608
  We'll treat V and W as different on primary level.
6609
*/
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
6610
1 by brian
clean slate
6611
static const char swedish[]=
6612
    "& Y <<\\u00FC <<< \\u00DC "
6613
    "& Z < \\u00E5 <<< \\u00C5 "
6614
        "< \\u00E4 <<< \\u00C4 << \\u00E6 <<< \\u00C6 "
6615
        "< \\u00F6 <<< \\u00D6 << \\u00F8 <<< \\u00D8 ";
6616
6617
static const char turkish[]=
6618
    "& C < \\u00E7 <<< \\u00C7 "
6619
    "& G < \\u011F <<< \\u011E "
6620
    "& H < \\u0131 <<< \\u0049 "
6621
    "& O < \\u00F6 <<< \\u00D6 "
6622
    "& S < \\u015F <<< \\u015E "
6623
    "& U < \\u00FC <<< \\u00DC ";
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
6624
1 by brian
clean slate
6625
6626
static const char czech[]=
6627
    "& C < \\u010D <<< \\u010C "
6628
    "& H <      ch <<<      Ch <<< CH"
6629
    "& R < \\u0159 <<< \\u0158"
6630
    "& S < \\u0161 <<< \\u0160"
6631
    "& Z < \\u017E <<< \\u017D";
6632
6633
static const char danish[]=  /* Also good for Norwegian */
6634
    "& Y << \\u00FC <<< \\u00DC << \\u0171 <<< \\u0170"
6635
    "& Z  < \\u00E6 <<< \\u00C6 << \\u00E4 <<< \\u00C4"
6636
        " < \\u00F8 <<< \\u00D8 << \\u00F6 <<< \\u00D6 << \\u0151 <<< \\u0150"
6637
        " < \\u00E5 <<< \\u00C5 << aa <<<  Aa <<< AA";
6638
6639
static const char lithuanian[]=
6640
    "& C << ch <<< Ch <<< CH< \\u010D <<< \\u010C"
6641
    "& E << \\u0119 <<< \\u0118 << \\u0117 <<< \\u0116"
6642
    "& I << y <<< Y"
6643
    "& S  < \\u0161 <<< \\u0160"
6644
    "& Z  < \\u017E <<< \\u017D";
6645
6646
static const char slovak[]=
6647
    "& A < \\u00E4 <<< \\u00C4"
6648
    "& C < \\u010D <<< \\u010C"
6649
    "& H < ch <<< Ch <<< CH"
6650
    "& O < \\u00F4 <<< \\u00D4"
6651
    "& S < \\u0161 <<< \\u0160"
6652
    "& Z < \\u017E <<< \\u017D";
6653
6654
static const char spanish2[]=	/* Also good for Asturian and Galician */
6655
    "&C <  ch <<< Ch <<< CH"
6656
    "&L <  ll <<< Ll <<< LL"
6657
    "&N < \\u00F1 <<< \\u00D1";
6658
6659
static const char roman[]= /* i.e. Classical Latin */
6660
    "& I << j <<< J "
6661
    "& V << u <<< U ";
6662
6663
/*
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
6664
  Persian collation support was provided by
1 by brian
clean slate
6665
  Jody McIntyre <mysql@modernduck.com>
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
6666
1 by brian
clean slate
6667
  To: internals@lists.mysql.com
6668
  Subject: Persian UTF8 collation support
6669
  Date: 17.08.2004
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
6670
1 by brian
clean slate
6671
  Contraction is not implemented.  Some implementations do perform
6672
  contraction but others do not, and it is able to sort all my test
6673
  strings correctly.
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
6674
1 by brian
clean slate
6675
  Jody.
6676
*/
6677
static const char persian[]=
6678
    "& \\u066D < \\u064E < \\uFE76 < \\uFE77 < \\u0650 < \\uFE7A < \\uFE7B"
6679
             " < \\u064F < \\uFE78 < \\uFE79 < \\u064B < \\uFE70 < \\uFE71"
6680
             " < \\u064D < \\uFE74 < \\u064C < \\uFE72"
6681
    "& \\uFE7F < \\u0653 < \\u0654 < \\u0655 < \\u0670"
6682
    "& \\u0669 < \\u0622 < \\u0627 < \\u0671 < \\u0621 < \\u0623 < \\u0625"
6683
             " < \\u0624 < \\u0626"
6684
    "& \\u0642 < \\u06A9 < \\u0643"
6685
    "& \\u0648 < \\u0647 < \\u0629 < \\u06C0 < \\u06CC < \\u0649 < \\u064A"
6686
    "& \\uFE80 < \\uFE81 < \\uFE82 < \\uFE8D < \\uFE8E < \\uFB50 < \\uFB51"
6687
             " < \\uFE80 < \\uFE83 < \\uFE84 < \\uFE87 < \\uFE88 < \\uFE85"
6688
             " < \\uFE86 < \\u0689 < \\u068A"
6689
    "& \\uFEAE < \\uFDFC"
6690
    "& \\uFED8 < \\uFB8E < \\uFB8F < \\uFB90 < \\uFB91 < \\uFED9 < \\uFEDA"
6691
             " < \\uFEDB < \\uFEDC"
6692
    "& \\uFEEE < \\uFEE9 < \\uFEEA < \\uFEEB < \\uFEEC < \\uFE93 < \\uFE94"
6693
             " < \\uFBA4 < \\uFBA5 < \\uFBFC < \\uFBFD < \\uFBFE < \\uFBFF"
6694
             " < \\uFEEF < \\uFEF0 < \\uFEF1 < \\uFEF2 < \\uFEF3 < \\uFEF4"
6695
             " < \\uFEF5 < \\uFEF6 < \\uFEF7 < \\uFEF8 < \\uFEF9 < \\uFEFA"
6696
             " < \\uFEFB < \\uFEFC";
6697
6698
/*
6699
  Esperanto tailoring.
6700
  Contributed by Bertilo Wennergren <bertilow at gmail dot com>
6701
  September 1, 2005
6702
*/
6703
static const char esperanto[]=
6704
    "& C < \\u0109 <<< \\u0108"
6705
    "& G < \\u011D <<< \\u011C"
6706
    "& H < \\u0125 <<< \\u0124"
6707
    "& J < \\u0135 <<< \\u0134"
6708
    "& S < \\u015d <<< \\u015c"
6709
    "& U < \\u016d <<< \\u016c";
6710
6711
/*
6712
  A simplified version of Hungarian, without consonant contractions.
6713
*/
6714
static const char hungarian[]=
6715
    "&O < \\u00F6 <<< \\u00D6 << \\u0151 <<< \\u0150"
6716
    "&U < \\u00FC <<< \\u00DC << \\u0171 <<< \\u0170";
6717
6718
/*
6719
  SCCII Part 1 : Collation Sequence (SLS1134)
6720
  2006/11/24
6721
  Harshula Jayasuriya <harshula at gmail dot com>
6722
  Language Technology Research Lab, University of Colombo / ICTA
6723
*/
6724
#if 0
6725
static const char sinhala[]=
6726
    "& \\u0D96 < \\u0D82 < \\u0D83"
6727
    "& \\u0DA5 < \\u0DA4"
6728
    "& \\u0DD8 < \\u0DF2 < \\u0DDF < \\u0DF3"
6729
    "& \\u0DDE < \\u0DCA";
6730
#else
6731
static const char sinhala[]=
6732
    "& \\u0D96 < \\u0D82 < \\u0D83 < \\u0D9A < \\u0D9B < \\u0D9C < \\u0D9D"
6733
              "< \\u0D9E < \\u0D9F < \\u0DA0 < \\u0DA1 < \\u0DA2 < \\u0DA3"
6734
              "< \\u0DA5 < \\u0DA4 < \\u0DA6"
6735
              "< \\u0DA7 < \\u0DA8 < \\u0DA9 < \\u0DAA < \\u0DAB < \\u0DAC"
6736
              "< \\u0DAD < \\u0DAE < \\u0DAF < \\u0DB0 < \\u0DB1"
6737
              "< \\u0DB3 < \\u0DB4 < \\u0DB5 < \\u0DB6 < \\u0DB7 < \\u0DB8"
6738
              "< \\u0DB9 < \\u0DBA < \\u0DBB < \\u0DBD < \\u0DC0 < \\u0DC1"
6739
              "< \\u0DC2 < \\u0DC3 < \\u0DC4 < \\u0DC5 < \\u0DC6"
6740
              "< \\u0DCF"
6741
              "< \\u0DD0 < \\u0DD1 < \\u0DD2 < \\u0DD3 < \\u0DD4 < \\u0DD6"
6742
              "< \\u0DD8 < \\u0DF2 < \\u0DDF < \\u0DF3 < \\u0DD9 < \\u0DDA"
6743
              "< \\u0DDB < \\u0DDC < \\u0DDD < \\u0DDE < \\u0DCA";
6744
#endif
6745
6746
6747
/*
6748
  Unicode Collation Algorithm:
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
6749
  Collation element (weight) scanner,
1 by brian
clean slate
6750
  for consequent scan of collations
6751
  weights from a string.
6752
*/
6753
typedef struct my_uca_scanner_st
6754
{
206 by Brian Aker
Removed final uint dead types.
6755
  const uint16_t *wbeg;	/* Beginning of the current weight string */
481 by Brian Aker
Remove all of uchar.
6756
  const unsigned char  *sbeg;	/* Beginning of the input string          */
6757
  const unsigned char  *send;	/* End of the input string                */
6758
  unsigned char *uca_length;
206 by Brian Aker
Removed final uint dead types.
6759
  uint16_t **uca_weight;
6760
  uint16_t *contractions;
6761
  uint16_t implicit[2];
1 by brian
clean slate
6762
  int page;
6763
  int code;
2254 by Brian Aker
Shift CHARSET_INFO to charset_info_st
6764
  const charset_info_st * cs;
1 by brian
clean slate
6765
} my_uca_scanner;
6766
6767
/*
6768
  Charset dependent scanner part, to optimize
6769
  some character sets.
6770
*/
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
6771
typedef struct my_uca_scanner_handler_st
1 by brian
clean slate
6772
{
2254 by Brian Aker
Shift CHARSET_INFO to charset_info_st
6773
  void (*init)(my_uca_scanner *scanner, const charset_info_st * const cs,
481 by Brian Aker
Remove all of uchar.
6774
               const unsigned char *str, size_t length);
1 by brian
clean slate
6775
  int (*next)(my_uca_scanner *scanner);
6776
} my_uca_scanner_handler;
6777
206 by Brian Aker
Removed final uint dead types.
6778
static uint16_t nochar[]= {0,0};
1 by brian
clean slate
6779
6780
6781
6782
/*
6783
  The same two functions for any character set
6784
*/
6785
static void my_uca_scanner_init_any(my_uca_scanner *scanner,
2254 by Brian Aker
Shift CHARSET_INFO to charset_info_st
6786
				    const charset_info_st * const cs,
481 by Brian Aker
Remove all of uchar.
6787
				    const unsigned char *str, size_t length)
1 by brian
clean slate
6788
{
6789
  /* Note, no needs to initialize scanner->wbeg */
6790
  scanner->sbeg= str;
6791
  scanner->send= str + length;
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
6792
  scanner->wbeg= nochar;
1 by brian
clean slate
6793
  scanner->uca_length= cs->sort_order;
6794
  scanner->uca_weight= cs->sort_order_big;
6795
  scanner->contractions= cs->contractions;
6796
  scanner->cs= cs;
6797
}
6798
6799
static int my_uca_scanner_next_any(my_uca_scanner *scanner)
6800
{
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
6801
6802
  /*
1 by brian
clean slate
6803
    Check if the weights for the previous character have been
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
6804
    already fully scanned. If yes, then get the next character and
1 by brian
clean slate
6805
    initialize wbeg and wlength to its weight string.
6806
  */
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
6807
1 by brian
clean slate
6808
  if (scanner->wbeg[0])
6809
    return *scanner->wbeg++;
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
6810
6811
  do
1 by brian
clean slate
6812
  {
206 by Brian Aker
Removed final uint dead types.
6813
    uint16_t **ucaw= scanner->uca_weight;
481 by Brian Aker
Remove all of uchar.
6814
    unsigned char *ucal= scanner->uca_length;
1 by brian
clean slate
6815
    my_wc_t wc;
6816
    int mb_len;
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
6817
6818
    if (((mb_len= scanner->cs->cset->mb_wc(scanner->cs, &wc,
1 by brian
clean slate
6819
                                          scanner->sbeg,
6820
                                          scanner->send)) <= 0))
6821
      return -1;
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
6822
1 by brian
clean slate
6823
    scanner->sbeg+= mb_len;
6824
    if (wc > 0xFFFF)
6825
    {
6826
      /* Return 0xFFFD as weight for all characters outside BMP */
6827
      scanner->wbeg= nochar;
6828
      return 0xFFFD;
6829
    }
6830
    else
6831
    {
6832
      scanner->page= wc >> 8;
6833
      scanner->code= wc & 0xFF;
6834
    }
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
6835
1 by brian
clean slate
6836
    if (scanner->contractions && !scanner->page &&
6837
        (scanner->code > 0x40) && (scanner->code < 0x80))
6838
    {
482 by Brian Aker
Remove uint.
6839
      uint32_t page1, code1, cweight;
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
6840
1 by brian
clean slate
6841
      if (((mb_len= scanner->cs->cset->mb_wc(scanner->cs, &wc,
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
6842
                                            scanner->sbeg,
1 by brian
clean slate
6843
                                            scanner->send)) >=0) &&
6844
           (!(page1= (wc >> 8))) &&
6845
           ((code1= (wc & 0xFF)) > 0x40) &&
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
6846
           (code1 < 0x80) &&
1 by brian
clean slate
6847
           (cweight= scanner->contractions[(scanner->code-0x40)*0x40 + code1-0x40]))
6848
      {
6849
        scanner->implicit[0]= 0;
6850
        scanner->wbeg= scanner->implicit;
6851
        scanner->sbeg+= mb_len;
6852
        return cweight;
6853
      }
6854
    }
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
6855
1 by brian
clean slate
6856
    if (!ucaw[scanner->page])
6857
      goto implicit;
6858
    scanner->wbeg= ucaw[scanner->page] + scanner->code * ucal[scanner->page];
6859
  } while (!scanner->wbeg[0]);
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
6860
1 by brian
clean slate
6861
  return *scanner->wbeg++;
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
6862
1 by brian
clean slate
6863
implicit:
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
6864
1 by brian
clean slate
6865
  scanner->code= (scanner->page << 8) + scanner->code;
6866
  scanner->implicit[0]= (scanner->code & 0x7FFF) | 0x8000;
6867
  scanner->implicit[1]= 0;
6868
  scanner->wbeg= scanner->implicit;
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
6869
1 by brian
clean slate
6870
  scanner->page= scanner->page >> 7;
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
6871
1 by brian
clean slate
6872
  if (scanner->code >= 0x3400 && scanner->code <= 0x4DB5)
6873
    scanner->page+= 0xFB80;
6874
  else if (scanner->code >= 0x4E00 && scanner->code <= 0x9FA5)
6875
    scanner->page+= 0xFB40;
6876
  else
6877
    scanner->page+= 0xFBC0;
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
6878
1 by brian
clean slate
6879
  return scanner->page;
6880
}
6881
6882
6883
static my_uca_scanner_handler my_any_uca_scanner_handler=
6884
{
6885
  my_uca_scanner_init_any,
6886
  my_uca_scanner_next_any
6887
};
6888
6889
/*
6890
  Compares two strings according to the collation
6891
6892
  SYNOPSIS:
6893
    my_strnncoll_uca()
6894
    cs		Character set information
6895
    s		First string
6896
    slen	First string length
6897
    t		Second string
6898
    tlen	Seconf string length
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
6899
1 by brian
clean slate
6900
  NOTES:
6901
    Initializes two weight scanners and gets weights
6902
    corresponding to two strings in a loop. If weights are not
6903
    the same at some step then returns their difference.
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
6904
1 by brian
clean slate
6905
    In the while() comparison these situations are possible:
6906
    1. (s_res>0) and (t_res>0) and (s_res == t_res)
6907
       Weights are the same so far, continue comparison
6908
    2. (s_res>0) and (t_res>0) and (s_res!=t_res)
6909
       A difference has been found, return.
6910
    3. (s_res>0) and (t_res<0)
6911
       We have reached the end of the second string, or found
6912
       an illegal multibyte sequence in the second string.
6913
       Return a positive number, i.e. the first string is bigger.
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
6914
    4. (s_res<0) and (t_res>0)
1 by brian
clean slate
6915
       We have reached the end of the first string, or found
6916
       an illegal multibyte sequence in the first string.
6917
       Return a negative number, i.e. the second string is bigger.
6918
    5. (s_res<0) and (t_res<0)
6919
       Both scanners returned -1. It means we have riched
6920
       the end-of-string of illegal-sequence in both strings
6921
       at the same time. Return 0, strings are equal.
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
6922
1 by brian
clean slate
6923
  RETURN
6924
    Difference between two strings, according to the collation:
6925
    0               - means strings are equal
6926
    negative number - means the first string is smaller
6927
    positive number - means the first string is bigger
6928
*/
6929
2254 by Brian Aker
Shift CHARSET_INFO to charset_info_st
6930
static int my_strnncoll_uca(const charset_info_st * const cs,
1 by brian
clean slate
6931
                            my_uca_scanner_handler *scanner_handler,
481 by Brian Aker
Remove all of uchar.
6932
			    const unsigned char *s, size_t slen,
6933
                            const unsigned char *t, size_t tlen,
276 by Brian Aker
Cleaned out my_bool from strings.
6934
                            bool t_is_prefix)
1 by brian
clean slate
6935
{
6936
  my_uca_scanner sscanner;
6937
  my_uca_scanner tscanner;
6938
  int s_res;
6939
  int t_res;
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
6940
1 by brian
clean slate
6941
  scanner_handler->init(&sscanner, cs, s, slen);
6942
  scanner_handler->init(&tscanner, cs, t, tlen);
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
6943
1 by brian
clean slate
6944
  do
6945
  {
6946
    s_res= scanner_handler->next(&sscanner);
6947
    t_res= scanner_handler->next(&tscanner);
6948
  } while ( s_res == t_res && s_res >0);
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
6949
1 by brian
clean slate
6950
  return  (t_is_prefix && t_res < 0) ? 0 : (s_res - t_res);
6951
}
6952
6953
/*
6954
  Compares two strings according to the collation,
6955
  ignoring trailing spaces.
6956
6957
  SYNOPSIS:
6958
    my_strnncollsp_uca()
6959
    cs		Character set information
6960
    s		First string
6961
    slen	First string length
6962
    t		Second string
6963
    tlen	Seconf string length
6964
    diff_if_only_endspace_difference
6965
		        Set to 1 if the strings should be regarded as different
6966
                        if they only difference in end space
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
6967
1 by brian
clean slate
6968
  NOTES:
6969
    Works exactly the same with my_strnncoll_uca(),
6970
    but ignores trailing spaces.
6971
6972
    In the while() comparison these situations are possible:
6973
    1. (s_res>0) and (t_res>0) and (s_res == t_res)
6974
       Weights are the same so far, continue comparison
6975
    2. (s_res>0) and (t_res>0) and (s_res!=t_res)
6976
       A difference has been found, return.
6977
    3. (s_res>0) and (t_res<0)
6978
       We have reached the end of the second string, or found
6979
       an illegal multibyte sequence in the second string.
6980
       Compare the first string to an infinite array of
6981
       space characters until difference is found, or until
6982
       the end of the first string.
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
6983
    4. (s_res<0) and (t_res>0)
1 by brian
clean slate
6984
       We have reached the end of the first string, or found
6985
       an illegal multibyte sequence in the first string.
6986
       Compare the second string to an infinite array of
6987
       space characters until difference is found or until
6988
       the end of the second steing.
6989
    5. (s_res<0) and (t_res<0)
6990
       Both scanners returned -1. It means we have riched
6991
       the end-of-string of illegal-sequence in both strings
6992
       at the same time. Return 0, strings are equal.
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
6993
1 by brian
clean slate
6994
  RETURN
6995
    Difference between two strings, according to the collation:
6996
    0               - means strings are equal
6997
    negative number - means the first string is smaller
6998
    positive number - means the first string is bigger
6999
*/
7000
2254 by Brian Aker
Shift CHARSET_INFO to charset_info_st
7001
static int my_strnncollsp_uca(const charset_info_st * const cs,
1 by brian
clean slate
7002
                              my_uca_scanner_handler *scanner_handler,
481 by Brian Aker
Remove all of uchar.
7003
                              const unsigned char *s, size_t slen,
7004
                              const unsigned char *t, size_t tlen,
276 by Brian Aker
Cleaned out my_bool from strings.
7005
                              bool diff_if_only_endspace_difference)
1 by brian
clean slate
7006
{
7007
  my_uca_scanner sscanner, tscanner;
7008
  int s_res, t_res;
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
7009
1 by brian
clean slate
7010
#ifndef VARCHAR_WITH_DIFF_ENDSPACE_ARE_DIFFERENT_FOR_UNIQUE
7011
  diff_if_only_endspace_difference= 0;
7012
#endif
7013
7014
  scanner_handler->init(&sscanner, cs, s, slen);
7015
  scanner_handler->init(&tscanner, cs, t, tlen);
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
7016
1 by brian
clean slate
7017
  do
7018
  {
7019
    s_res= scanner_handler->next(&sscanner);
7020
    t_res= scanner_handler->next(&tscanner);
7021
  } while ( s_res == t_res && s_res >0);
7022
7023
  if (s_res > 0 && t_res < 0)
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
7024
  {
1 by brian
clean slate
7025
    /* Calculate weight for SPACE character */
7026
    t_res= cs->sort_order_big[0][0x20 * cs->sort_order[0]];
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
7027
1 by brian
clean slate
7028
    /* compare the first string to spaces */
7029
    do
7030
    {
7031
      if (s_res != t_res)
7032
        return (s_res - t_res);
7033
      s_res= scanner_handler->next(&sscanner);
7034
    } while (s_res > 0);
7035
    return diff_if_only_endspace_difference ? 1 : 0;
7036
  }
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
7037
1 by brian
clean slate
7038
  if (s_res < 0 && t_res > 0)
7039
  {
7040
    /* Calculate weight for SPACE character */
7041
    s_res= cs->sort_order_big[0][0x20 * cs->sort_order[0]];
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
7042
1 by brian
clean slate
7043
    /* compare the second string to spaces */
7044
    do
7045
    {
7046
      if (s_res != t_res)
7047
        return (s_res - t_res);
7048
      t_res= scanner_handler->next(&tscanner);
7049
    } while (t_res > 0);
7050
    return diff_if_only_endspace_difference ? -1 : 0;
7051
  }
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
7052
1 by brian
clean slate
7053
  return ( s_res - t_res );
7054
}
7055
7056
/*
7057
  Calculates hash value for the given string,
7058
  according to the collation, and ignoring trailing spaces.
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
7059
1 by brian
clean slate
7060
  SYNOPSIS:
7061
    my_hash_sort_uca()
7062
    cs		Character set information
7063
    s		String
7064
    slen	String's length
7065
    n1		First hash parameter
7066
    n2		Second hash parameter
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
7067
1 by brian
clean slate
7068
  NOTES:
7069
    Scans consequently weights and updates
7070
    hash parameters n1 and n2. In a case insensitive collation,
7071
    upper and lower case of the same letter will return the same
7072
    weight sequence, and thus will produce the same hash values
7073
    in n1 and n2.
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
7074
1 by brian
clean slate
7075
  RETURN
7076
    N/A
7077
*/
7078
2254 by Brian Aker
Shift CHARSET_INFO to charset_info_st
7079
static void my_hash_sort_uca(const charset_info_st * const cs,
1 by brian
clean slate
7080
                             my_uca_scanner_handler *scanner_handler,
481 by Brian Aker
Remove all of uchar.
7081
			     const unsigned char *s, size_t slen,
290 by Brian Aker
Update for ulong change over.
7082
			     uint32_t *n1, uint32_t *n2)
1 by brian
clean slate
7083
{
7084
  int   s_res;
7085
  my_uca_scanner scanner;
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
7086
1 by brian
clean slate
7087
  slen= cs->cset->lengthsp(cs, (char*) s, slen);
7088
  scanner_handler->init(&scanner, cs, s, slen);
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
7089
1 by brian
clean slate
7090
  while ((s_res= scanner_handler->next(&scanner)) >0)
7091
  {
7092
    n1[0]^= (((n1[0] & 63)+n2[0])*(s_res >> 8))+ (n1[0] << 8);
7093
    n2[0]+=3;
7094
    n1[0]^= (((n1[0] & 63)+n2[0])*(s_res & 0xFF))+ (n1[0] << 8);
7095
    n2[0]+=3;
7096
  }
7097
}
7098
7099
7100
/*
7101
  For the given string creates its "binary image", suitable
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
7102
  to be used in binary comparison, i.e. in memcmp().
7103
1 by brian
clean slate
7104
  SYNOPSIS:
7105
    my_strnxfrm_uca()
7106
    cs		Character set information
7107
    dst		Where to write the image
7108
    dstlen	Space available for the image, in bytes
7109
    src		The source string
7110
    srclen	Length of the source string, in bytes
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
7111
1 by brian
clean slate
7112
  NOTES:
7113
    In a loop, scans weights from the source string and writes
7114
    them into the binary image. In a case insensitive collation,
7115
    upper and lower cases of the same letter will produce the
7116
    same image subsequences. When we have reached the end-of-string
7117
    or found an illegal multibyte sequence, the loop stops.
7118
7119
    It is impossible to restore the original string using its
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
7120
    binary image.
7121
1 by brian
clean slate
7122
    Binary images are used for bulk comparison purposes,
7123
    e.g. in ORDER BY, when it is more efficient to create
7124
    a binary image and use it instead of weight scanner
7125
    for the original strings for every comparison.
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
7126
1 by brian
clean slate
7127
  RETURN
7128
    Number of bytes that have been written into the binary image.
7129
*/
7130
2254 by Brian Aker
Shift CHARSET_INFO to charset_info_st
7131
static size_t my_strnxfrm_uca(const charset_info_st * const cs,
1 by brian
clean slate
7132
                           my_uca_scanner_handler *scanner_handler,
482 by Brian Aker
Remove uint.
7133
                           unsigned char *dst, size_t dstlen, uint32_t nweights,
7134
                           const unsigned char *src, size_t srclen, uint32_t flags)
1 by brian
clean slate
7135
{
481 by Brian Aker
Remove all of uchar.
7136
  unsigned char *d0= dst;
7137
  unsigned char *de= dst + (dstlen & (size_t) ~1); /* add even length for easier code */
1 by brian
clean slate
7138
  int   s_res;
7139
  my_uca_scanner scanner;
7140
  scanner_handler->init(&scanner, cs, src, srclen);
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
7141
1 by brian
clean slate
7142
  for (; dst < de && nweights &&
7143
         (s_res= scanner_handler->next(&scanner)) > 0 ; nweights--)
7144
  {
7145
    *dst++= s_res >> 8;
7146
    *dst++= s_res & 0xFF;
7147
  }
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
7148
1 by brian
clean slate
7149
  if (dst < de && nweights && (flags & MY_STRXFRM_PAD_WITH_SPACE))
7150
  {
1067.4.9 by Nathan Williams
Converted all usages of cmin/cmax in mystrings directory to use std::min/max
7151
    uint32_t space_count= min((uint32_t) (de - dst) / 2, nweights);
1 by brian
clean slate
7152
    s_res= cs->sort_order_big[0][0x20 * cs->sort_order[0]];
7153
    for (; space_count ; space_count--)
7154
    {
7155
      *dst++= s_res >> 8;
7156
      *dst++= s_res & 0xFF;
7157
    }
7158
  }
7159
  my_strxfrm_desc_and_reverse(d0, dst, flags, 0);
7160
  return dst - d0;
7161
}
7162
7163
7164
7165
/*
7166
  This function compares if two characters are the same.
7167
  The sign +1 or -1 does not matter. The only
7168
  important thing is that the result is 0 or not 0.
7169
  This fact allows us to use memcmp() safely, on both
7170
  little-endian and big-endian machines.
7171
*/
7172
2254 by Brian Aker
Shift CHARSET_INFO to charset_info_st
7173
static int my_uca_charcmp(const charset_info_st * const cs, my_wc_t wc1, my_wc_t wc2)
1 by brian
clean slate
7174
{
7175
  size_t page1= wc1 >> MY_UCA_PSHIFT;
7176
  size_t page2= wc2 >> MY_UCA_PSHIFT;
481 by Brian Aker
Remove all of uchar.
7177
  unsigned char *ucal= cs->sort_order;
206 by Brian Aker
Removed final uint dead types.
7178
  uint16_t **ucaw= cs->sort_order_big;
1 by brian
clean slate
7179
  size_t length1= ucal[page1];
7180
  size_t length2= ucal[page2];
206 by Brian Aker
Removed final uint dead types.
7181
  uint16_t *weight1= ucaw[page1] + (wc1 & MY_UCA_CMASK) * ucal[page1];
7182
  uint16_t *weight2= ucaw[page2] + (wc2 & MY_UCA_CMASK) * ucal[page2];
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
7183
1 by brian
clean slate
7184
  if (!weight1 || !weight2)
7185
    return wc1 != wc2;
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
7186
1 by brian
clean slate
7187
  if (length1 > length2)
212.6.15 by Mats Kindahl
Removing redundant use of casts in mystrings/ for memcmp(), memcpy(), memset(), and memmove().
7188
    return memcmp(weight1, weight2, length2*2) ? 1 : weight1[length2];
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
7189
1 by brian
clean slate
7190
  if (length1 < length2)
212.6.15 by Mats Kindahl
Removing redundant use of casts in mystrings/ for memcmp(), memcpy(), memset(), and memmove().
7191
    return memcmp(weight1, weight2, length1*2) ? 1 : weight2[length1];
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
7192
212.6.15 by Mats Kindahl
Removing redundant use of casts in mystrings/ for memcmp(), memcpy(), memset(), and memmove().
7193
  return memcmp(weight1, weight2, length1*2);
1 by brian
clean slate
7194
}
7195
7196
/*
7197
** Compare string against string with wildcard
7198
**	0 if matched
7199
**	-1 if not matched with wildcard
7200
**	 1 if matched with wildcard
7201
*/
7202
2254 by Brian Aker
Shift CHARSET_INFO to charset_info_st
7203
int my_wildcmp_uca(const charset_info_st * const cs,
1 by brian
clean slate
7204
		   const char *str,const char *str_end,
7205
		   const char *wildstr,const char *wildend,
7206
		   int escape, int w_one, int w_many)
7207
{
7208
  int result= -1;			/* Not found, using wildcards */
7209
  my_wc_t s_wc, w_wc;
7210
  int scan;
236.3.9 by Andrey Hristov
- Fix build of exotic, mostly non-western, charsets (--with-extra-charsets)
7211
  my_charset_conv_mb_wc mb_wc= cs->cset->mb_wc;
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
7212
1 by brian
clean slate
7213
  while (wildstr != wildend)
7214
  {
7215
    while (1)
7216
    {
276 by Brian Aker
Cleaned out my_bool from strings.
7217
      bool escaped= 0;
481 by Brian Aker
Remove all of uchar.
7218
      if ((scan= mb_wc(cs, &w_wc, (const unsigned char*)wildstr,
7219
		       (const unsigned char*)wildend)) <= 0)
1 by brian
clean slate
7220
	return 1;
7221
7222
      if (w_wc == (my_wc_t)w_many)
7223
      {
7224
        result= 1;				/* Found an anchor char */
7225
        break;
7226
      }
7227
7228
      wildstr+= scan;
7229
      if (w_wc ==  (my_wc_t)escape)
7230
      {
481 by Brian Aker
Remove all of uchar.
7231
        if ((scan= mb_wc(cs, &w_wc, (const unsigned char*)wildstr,
7232
			(const unsigned char*)wildend)) <= 0)
1 by brian
clean slate
7233
          return 1;
7234
        wildstr+= scan;
7235
        escaped= 1;
7236
      }
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
7237
481 by Brian Aker
Remove all of uchar.
7238
      if ((scan= mb_wc(cs, &s_wc, (const unsigned char*)str,
7239
      		       (const unsigned char*)str_end)) <= 0)
1 by brian
clean slate
7240
        return 1;
7241
      str+= scan;
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
7242
1 by brian
clean slate
7243
      if (!escaped && w_wc == (my_wc_t)w_one)
7244
      {
7245
        result= 1;				/* Found an anchor char */
7246
      }
7247
      else
7248
      {
7249
        if (my_uca_charcmp(cs,s_wc,w_wc))
7250
          return 1;
7251
      }
7252
      if (wildstr == wildend)
7253
	return (str != str_end);		/* Match if both are at end */
7254
    }
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
7255
7256
1 by brian
clean slate
7257
    if (w_wc == (my_wc_t)w_many)
7258
    {						/* Found w_many */
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
7259
1 by brian
clean slate
7260
      /* Remove any '%' and '_' from the wild search string */
7261
      for ( ; wildstr != wildend ; )
7262
      {
481 by Brian Aker
Remove all of uchar.
7263
        if ((scan= mb_wc(cs, &w_wc, (const unsigned char*)wildstr,
7264
			 (const unsigned char*)wildend)) <= 0)
1 by brian
clean slate
7265
          return 1;
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
7266
1 by brian
clean slate
7267
	if (w_wc == (my_wc_t)w_many)
7268
	{
7269
	  wildstr+= scan;
7270
	  continue;
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
7271
	}
7272
1 by brian
clean slate
7273
	if (w_wc == (my_wc_t)w_one)
7274
	{
7275
	  wildstr+= scan;
481 by Brian Aker
Remove all of uchar.
7276
	  if ((scan= mb_wc(cs, &s_wc, (const unsigned char*)str,
7277
			   (const unsigned char*)str_end)) <= 0)
1 by brian
clean slate
7278
            return 1;
7279
          str+= scan;
7280
	  continue;
7281
	}
7282
	break;					/* Not a wild character */
7283
      }
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
7284
1 by brian
clean slate
7285
      if (wildstr == wildend)
7286
	return 0;				/* Ok if w_many is last */
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
7287
1 by brian
clean slate
7288
      if (str == str_end)
7289
	return -1;
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
7290
481 by Brian Aker
Remove all of uchar.
7291
      if ((scan= mb_wc(cs, &w_wc, (const unsigned char*)wildstr,
7292
		       (const unsigned char*)wildend)) <= 0)
1 by brian
clean slate
7293
        return 1;
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
7294
1 by brian
clean slate
7295
      if (w_wc ==  (my_wc_t)escape)
7296
      {
7297
        wildstr+= scan;
481 by Brian Aker
Remove all of uchar.
7298
        if ((scan= mb_wc(cs, &w_wc, (const unsigned char*)wildstr,
7299
			 (const unsigned char*)wildend)) <= 0)
1 by brian
clean slate
7300
          return 1;
7301
      }
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
7302
1 by brian
clean slate
7303
      while (1)
7304
      {
7305
        /* Skip until the first character from wildstr is found */
7306
        while (str != str_end)
7307
        {
481 by Brian Aker
Remove all of uchar.
7308
          if ((scan= mb_wc(cs, &s_wc, (const unsigned char*)str,
7309
			   (const unsigned char*)str_end)) <= 0)
1 by brian
clean slate
7310
            return 1;
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
7311
1 by brian
clean slate
7312
          if (!my_uca_charcmp(cs,s_wc,w_wc))
7313
            break;
7314
          str+= scan;
7315
        }
7316
        if (str == str_end)
7317
          return -1;
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
7318
1 by brian
clean slate
7319
        result= my_wildcmp_uca(cs, str, str_end, wildstr, wildend,
7320
        		       escape, w_one, w_many);
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
7321
1 by brian
clean slate
7322
        if (result <= 0)
7323
          return result;
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
7324
1 by brian
clean slate
7325
        str+= scan;
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
7326
      }
1 by brian
clean slate
7327
    }
7328
  }
7329
  return (str != str_end ? 1 : 0);
7330
}
7331
7332
7333
/*
7334
  Collation language is implemented according to
7335
  subset of ICU Collation Customization (tailorings):
7336
  http://icu.sourceforge.net/userguide/Collate_Customization.html
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
7337
1 by brian
clean slate
7338
  Collation language elements:
7339
  Delimiters:
7340
    space   - skipped
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
7341
1 by brian
clean slate
7342
  <char> :=  A-Z | a-z | \uXXXX
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
7343
1 by brian
clean slate
7344
  Shift command:
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
7345
    <shift>  := &       - reset at this letter.
7346
1 by brian
clean slate
7347
  Diff command:
7348
    <d1> :=  <     - Identifies a primary difference.
7349
    <d2> :=  <<    - Identifies a secondary difference.
7350
    <d3> := <<<    - Idenfifies a tertiary difference.
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
7351
7352
1 by brian
clean slate
7353
  Collation rules:
7354
    <ruleset> :=  <rule>  { <ruleset> }
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
7355
1 by brian
clean slate
7356
    <rule> :=   <d1>    <string>
7357
              | <d2>    <string>
7358
              | <d3>    <string>
7359
              | <shift> <char>
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
7360
1 by brian
clean slate
7361
    <string> := <char> [ <string> ]
7362
7363
  An example, Polish collation:
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
7364
1 by brian
clean slate
7365
    &A < \u0105 <<< \u0104
7366
    &C < \u0107 <<< \u0106
7367
    &E < \u0119 <<< \u0118
7368
    &L < \u0142 <<< \u0141
7369
    &N < \u0144 <<< \u0143
7370
    &O < \u00F3 <<< \u00D3
7371
    &S < \u015B <<< \u015A
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
7372
    &Z < \u017A <<< \u017B
1 by brian
clean slate
7373
*/
7374
7375
7376
typedef enum my_coll_lexem_num_en
7377
{
7378
  MY_COLL_LEXEM_EOF	= 0,
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
7379
  MY_COLL_LEXEM_DIFF	= 1,
1 by brian
clean slate
7380
  MY_COLL_LEXEM_SHIFT	= 4,
7381
  MY_COLL_LEXEM_CHAR	= 5,
7382
  MY_COLL_LEXEM_ERROR	= 6
7383
} my_coll_lexem_num;
7384
7385
7386
typedef struct my_coll_lexem_st
7387
{
7388
  const char *beg;
7389
  const char *end;
7390
  const char *prev;
7391
  int   diff;
7392
  int   code;
7393
} MY_COLL_LEXEM;
7394
7395
7396
/*
7397
  Initialize collation rule lexical anilizer
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
7398
1 by brian
clean slate
7399
  SYNOPSIS
7400
    my_coll_lexem_init
7401
    lexem                Lex analizer to init
7402
    str                  Const string to parse
7403
    str_end               End of the string
7404
  USAGE
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
7405
1 by brian
clean slate
7406
  RETURN VALUES
7407
    N/A
7408
*/
7409
7410
static void my_coll_lexem_init(MY_COLL_LEXEM *lexem,
7411
                               const char *str, const char *str_end)
7412
{
7413
  lexem->beg= str;
7414
  lexem->prev= str;
7415
  lexem->end= str_end;
7416
  lexem->diff= 0;
7417
  lexem->code= 0;
7418
}
7419
7420
7421
/*
7422
  Print collation customization expression parse error, with context.
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
7423
1 by brian
clean slate
7424
  SYNOPSIS
7425
    my_coll_lexem_print_error
7426
    lexem                Lex analizer to take context from
7427
    errstr               sting to write error to
7428
    errsize              errstr size
7429
    txt                  error message
7430
  USAGE
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
7431
1 by brian
clean slate
7432
  RETURN VALUES
7433
    N/A
7434
*/
7435
7436
static void my_coll_lexem_print_error(MY_COLL_LEXEM *lexem,
7437
                                      char *errstr, size_t errsize,
7438
                                      const char *txt)
7439
{
7440
  char tail[30];
7441
  size_t len= lexem->end - lexem->prev;
1067.4.9 by Nathan Williams
Converted all usages of cmin/cmax in mystrings directory to use std::min/max
7442
  strncpy(tail, lexem->prev, (size_t) min(len, sizeof(tail)-1));
1 by brian
clean slate
7443
  errstr[errsize-1]= '\0';
77.1.18 by Monty Taylor
Removed my_vsnprintf and my_snprintf.
7444
  snprintf(errstr,errsize-1,"%s at '%s'", txt, tail);
1 by brian
clean slate
7445
}
7446
7447
7448
/*
7449
  Convert a hex digit into its numeric value
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
7450
1 by brian
clean slate
7451
  SYNOPSIS
7452
    ch2x
7453
    ch                   hex digit to convert
7454
  USAGE
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
7455
1 by brian
clean slate
7456
  RETURN VALUES
7457
    an integer value in the range 0..15
7458
    -1 on error
7459
*/
7460
7461
static int ch2x(int ch)
7462
{
7463
  if (ch >= '0' && ch <= '9')
7464
    return ch - '0';
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
7465
1 by brian
clean slate
7466
  if (ch >= 'a' && ch <= 'f')
7467
    return 10 + ch - 'a';
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
7468
1 by brian
clean slate
7469
  if (ch >= 'A' && ch <= 'F')
7470
    return 10 + ch - 'A';
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
7471
1 by brian
clean slate
7472
  return -1;
7473
}
7474
7475
7476
/*
7477
  Collation language lexical parser:
7478
  Scans the next lexem.
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
7479
1 by brian
clean slate
7480
  SYNOPSIS
7481
    my_coll_lexem_next
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
7482
    lexem                Lex analizer, previously initialized by
1 by brian
clean slate
7483
                         my_coll_lexem_init.
7484
  USAGE
7485
    Call this function in a loop
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
7486
1 by brian
clean slate
7487
  RETURN VALUES
7488
    Lexem number: eof, diff, shift, char or error.
7489
*/
7490
7491
static my_coll_lexem_num my_coll_lexem_next(MY_COLL_LEXEM *lexem)
7492
{
7493
  const char *beg;
7494
  my_coll_lexem_num rc;
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
7495
1 by brian
clean slate
7496
  for (beg= lexem->beg ; beg < lexem->end ; beg++)
7497
  {
7498
    if (*beg == ' ' || *beg == '\t' || *beg == '\r' || *beg == '\n')
7499
      continue;
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
7500
1 by brian
clean slate
7501
    if (*beg == '&')
7502
    {
7503
      beg++;
7504
      rc= MY_COLL_LEXEM_SHIFT;
7505
      goto ex;
7506
    }
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
7507
1 by brian
clean slate
7508
    if (beg[0] == '<')
7509
    {
7510
      for (beg++, lexem->diff= 1;
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
7511
           (beg < lexem->end) &&
1 by brian
clean slate
7512
           (*beg == '<') && (lexem->diff<3);
575.3.1 by Monty Taylor
Made mysys and mystrings c++. Fixed the resulting bugs the compiler found.
7513
           beg++, lexem->diff++)
7514
      {}
1 by brian
clean slate
7515
      rc= MY_COLL_LEXEM_DIFF;
7516
      goto ex;
7517
    }
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
7518
1 by brian
clean slate
7519
    if ((*beg >= 'a' && *beg <= 'z') || (*beg >= 'A' && *beg <= 'Z'))
7520
    {
7521
      lexem->code= *beg++;
7522
      rc= MY_COLL_LEXEM_CHAR;
7523
      goto ex;
7524
    }
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
7525
1 by brian
clean slate
7526
    if ((*beg == '\\') && (beg+2 < lexem->end) && (beg[1] == 'u'))
7527
    {
7528
      int ch;
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
7529
1 by brian
clean slate
7530
      beg+= 2;
7531
      lexem->code= 0;
7532
      while ((beg < lexem->end) && ((ch= ch2x(beg[0])) >= 0))
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
7533
      {
1 by brian
clean slate
7534
        lexem->code= (lexem->code << 4) + ch;
7535
        beg++;
7536
      }
7537
      rc= MY_COLL_LEXEM_CHAR;
7538
      goto ex;
7539
    }
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
7540
1 by brian
clean slate
7541
    rc= MY_COLL_LEXEM_ERROR;
7542
    goto ex;
7543
  }
7544
  rc= MY_COLL_LEXEM_EOF;
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
7545
1 by brian
clean slate
7546
ex:
7547
  lexem->prev= lexem->beg;
7548
  lexem->beg= beg;
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
7549
  return rc;
1 by brian
clean slate
7550
}
7551
7552
7553
/*
7554
  Collation rule item
7555
*/
7556
7557
typedef struct my_coll_rule_item_st
7558
{
482 by Brian Aker
Remove uint.
7559
  uint32_t base;     /* Base character                             */
7560
  uint32_t curr[2];  /* Current character                          */
1 by brian
clean slate
7561
  int diff[3];   /* Primary, Secondary and Tertiary difference */
7562
} MY_COLL_RULE;
7563
7564
7565
/*
7566
  Collation language syntax parser.
7567
  Uses lexical parser.
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
7568
1 by brian
clean slate
7569
  SYNOPSIS
7570
    my_coll_rule_parse
7571
    rule                 Collation rule list to load to.
7572
    str                  A string containin collation language expression.
7573
    str_end              End of the string.
7574
  USAGE
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
7575
1 by brian
clean slate
7576
  RETURN VALUES
7577
    A positive number means the number of rules loaded.
7578
   -1 means ERROR, e.g. too many items, syntax error, etc.
7579
*/
7580
7581
static int my_coll_rule_parse(MY_COLL_RULE *rule, size_t mitems,
7582
                              const char *str, const char *str_end,
7583
                              char *errstr, size_t errsize)
7584
{
7585
  MY_COLL_LEXEM lexem;
7586
  my_coll_lexem_num lexnum;
7587
  my_coll_lexem_num prevlexnum= MY_COLL_LEXEM_ERROR;
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
7588
  MY_COLL_RULE item;
1 by brian
clean slate
7589
  int state= 0;
7590
  size_t nitems= 0;
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
7591
1 by brian
clean slate
7592
  /* Init all variables */
7593
  errstr[0]= '\0';
212.6.1 by Mats Kindahl
Replacing all bzero() calls with memset() calls and removing the bzero.c file.
7594
  memset(&item, 0, sizeof(item));
1 by brian
clean slate
7595
  my_coll_lexem_init(&lexem, str, str_end);
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
7596
1 by brian
clean slate
7597
  while ((lexnum= my_coll_lexem_next(&lexem)))
7598
  {
7599
    if (lexnum == MY_COLL_LEXEM_ERROR)
7600
    {
7601
      my_coll_lexem_print_error(&lexem,errstr,errsize-1,"Unknown character");
7602
      return -1;
7603
    }
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
7604
1 by brian
clean slate
7605
    switch (state) {
7606
    case 0:
7607
      if (lexnum != MY_COLL_LEXEM_SHIFT)
7608
      {
7609
        my_coll_lexem_print_error(&lexem,errstr,errsize-1,"& expected");
7610
        return -1;
7611
      }
7612
      prevlexnum= lexnum;
7613
      state= 2;
7614
      continue;
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
7615
1 by brian
clean slate
7616
    case 1:
7617
      if (lexnum != MY_COLL_LEXEM_SHIFT && lexnum != MY_COLL_LEXEM_DIFF)
7618
      {
7619
        my_coll_lexem_print_error(&lexem,errstr,errsize-1,"& or < expected");
7620
        return -1;
7621
      }
7622
      prevlexnum= lexnum;
7623
      state= 2;
7624
      continue;
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
7625
1 by brian
clean slate
7626
    case 2:
7627
      if (lexnum != MY_COLL_LEXEM_CHAR)
7628
      {
7629
        my_coll_lexem_print_error(&lexem,errstr,errsize-1,"character expected");
7630
        return -1;
7631
      }
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
7632
1 by brian
clean slate
7633
      if (prevlexnum == MY_COLL_LEXEM_SHIFT)
7634
      {
7635
        item.base= lexem.code;
7636
        item.diff[0]= 0;
7637
        item.diff[1]= 0;
7638
        item.diff[2]= 0;
7639
      }
7640
      else if (prevlexnum == MY_COLL_LEXEM_DIFF)
7641
      {
7642
        MY_COLL_LEXEM savlex;
7643
        savlex= lexem;
7644
        item.curr[0]= lexem.code;
7645
        if ((lexnum= my_coll_lexem_next(&lexem)) == MY_COLL_LEXEM_CHAR)
7646
        {
7647
          item.curr[1]= lexem.code;
7648
        }
7649
        else
7650
        {
7651
          item.curr[1]= 0;
7652
          lexem=savlex;   /* Restore previous parser state */
7653
        }
7654
        if (lexem.diff == 3)
7655
        {
7656
          item.diff[2]++;
7657
        }
7658
        else if (lexem.diff == 2)
7659
        {
7660
          item.diff[1]++;
7661
          item.diff[2]= 0;
7662
        }
7663
        else if (lexem.diff == 1)
7664
        {
7665
          item.diff[0]++;
7666
          item.diff[1]= 0;
7667
          item.diff[2]= 0;
7668
        }
7669
        if (nitems >= mitems)
7670
        {
7671
          my_coll_lexem_print_error(&lexem,errstr,errsize-1,"Too many rules");
7672
          return -1;
7673
        }
7674
        rule[nitems++]= item;
7675
      }
7676
      else
7677
      {
7678
        my_coll_lexem_print_error(&lexem,errstr,errsize-1,"Should never happen");
7679
        return -1;
7680
      }
7681
      state= 1;
7682
      continue;
7683
    }
7684
  }
7685
  return (int) nitems;
7686
}
7687
7688
#define MY_MAX_COLL_RULE 128
7689
7690
/*
7691
  This function copies an UCS2 collation from
7692
  the default Unicode Collation Algorithm (UCA)
7693
  weights applying tailorings, i.e. a set of
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
7694
  alternative weights for some characters.
7695
1 by brian
clean slate
7696
  The default UCA weights are stored in uca_weight/uca_length.
7697
  They consist of 256 pages, 256 character each.
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
7698
1 by brian
clean slate
7699
  If a page is not overwritten by tailoring rules,
7700
  it is copies as is from UCA as is.
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
7701
1 by brian
clean slate
7702
  If a page contains some overwritten characters, it is
7703
  allocated. Untouched characters are copied from the
7704
  default weights.
7705
*/
7706
2254 by Brian Aker
Shift CHARSET_INFO to charset_info_st
7707
static bool create_tailoring(charset_info_st *cs, cs_alloc_func alloc)
1 by brian
clean slate
7708
{
7709
  MY_COLL_RULE rule[MY_MAX_COLL_RULE];
7710
  char errstr[128];
481 by Brian Aker
Remove all of uchar.
7711
  unsigned char   *newlengths;
206 by Brian Aker
Removed final uint dead types.
7712
  uint16_t **newweights;
481 by Brian Aker
Remove all of uchar.
7713
  const unsigned char *deflengths= uca_length;
206 by Brian Aker
Removed final uint dead types.
7714
  uint16_t     **defweights= uca_weight;
1 by brian
clean slate
7715
  int rc, i;
7716
  int ncontractions= 0;
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
7717
1 by brian
clean slate
7718
  if (!cs->tailoring)
7719
    return 1;
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
7720
1 by brian
clean slate
7721
  /* Parse ICU Collation Customization expression */
7722
  if ((rc= my_coll_rule_parse(rule, MY_MAX_COLL_RULE,
7723
                              cs->tailoring,
7724
                              cs->tailoring + strlen(cs->tailoring),
7725
                              errstr, sizeof(errstr))) < 0)
7726
  {
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
7727
    /*
1 by brian
clean slate
7728
      TODO: add error message reporting.
7729
      printf("Error: %d '%s'\n", rc, errstr);
7730
    */
7731
    return 1;
7732
  }
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
7733
2318.6.90 by Olaf van der Spek
Refactor
7734
  newweights= (uint16_t**) (*alloc)(256*sizeof(uint16_t*));
212.6.1 by Mats Kindahl
Replacing all bzero() calls with memset() calls and removing the bzero.c file.
7735
  memset(newweights, 0, 256*sizeof(uint16_t*));
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
7736
2318.6.90 by Olaf van der Spek
Refactor
7737
  newlengths= (unsigned char*) (*alloc)(256);
1 by brian
clean slate
7738
  memcpy(newlengths, deflengths, 256);
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
7739
1 by brian
clean slate
7740
  /*
7741
    Calculate maximum lenghts for the pages
7742
    which will be overwritten.
7743
  */
7744
  for (i=0; i < rc; i++)
7745
  {
7746
    if (!rule[i].curr[1]) /* If not a contraction */
7747
    {
482 by Brian Aker
Remove uint.
7748
      uint32_t pageb= (rule[i].base >> 8) & 0xFF;
7749
      uint32_t pagec= (rule[i].curr[0] >> 8) & 0xFF;
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
7750
1 by brian
clean slate
7751
      if (newlengths[pagec] < deflengths[pageb])
7752
        newlengths[pagec]= deflengths[pageb];
7753
    }
7754
    else
7755
      ncontractions++;
7756
  }
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
7757
1 by brian
clean slate
7758
  for (i=0; i < rc;  i++)
7759
  {
482 by Brian Aker
Remove uint.
7760
    uint32_t pageb= (rule[i].base >> 8) & 0xFF;
7761
    uint32_t pagec= (rule[i].curr[0] >> 8) & 0xFF;
7762
    uint32_t chb, chc;
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
7763
1 by brian
clean slate
7764
    if (rule[i].curr[1]) /* Skip contraction */
7765
      continue;
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
7766
1 by brian
clean slate
7767
    if (!newweights[pagec])
7768
    {
7769
      /* Alloc new page and copy the default UCA weights */
482 by Brian Aker
Remove uint.
7770
      uint32_t size= 256*newlengths[pagec]*sizeof(uint16_t);
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
7771
2318.6.90 by Olaf van der Spek
Refactor
7772
      newweights[pagec]= (uint16_t*) (*alloc)(size);
212.6.15 by Mats Kindahl
Removing redundant use of casts in mystrings/ for memcmp(), memcpy(), memset(), and memmove().
7773
      memset(newweights[pagec], 0, size);
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
7774
1 by brian
clean slate
7775
      for (chc=0 ; chc < 256; chc++)
7776
      {
7777
        memcpy(newweights[pagec] + chc*newlengths[pagec],
7778
               defweights[pagec] + chc*deflengths[pagec],
206 by Brian Aker
Removed final uint dead types.
7779
               deflengths[pagec]*sizeof(uint16_t));
1 by brian
clean slate
7780
      }
7781
    }
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
7782
7783
    /*
1 by brian
clean slate
7784
      Aply the alternative rule:
7785
      shift to the base character and primary difference.
7786
    */
7787
    chc= rule[i].curr[0] & 0xFF;
7788
    chb= rule[i].base & 0xFF;
7789
    memcpy(newweights[pagec] + chc*newlengths[pagec],
7790
           defweights[pageb] + chb*deflengths[pageb],
206 by Brian Aker
Removed final uint dead types.
7791
           deflengths[pageb]*sizeof(uint16_t));
1 by brian
clean slate
7792
    /* Apply primary difference */
7793
    newweights[pagec][chc*newlengths[pagec]]+= rule[i].diff[0];
7794
  }
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
7795
1 by brian
clean slate
7796
  /* Copy non-overwritten pages from the default UCA weights */
7797
  for (i= 0; i < 256 ; i++)
7798
  {
7799
    if (!newweights[i])
7800
      newweights[i]= defweights[i];
7801
  }
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
7802
1 by brian
clean slate
7803
  cs->sort_order= newlengths;
7804
  cs->sort_order_big= newweights;
7805
  cs->contractions= NULL;
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
7806
1 by brian
clean slate
7807
  /* Now process contractions */
7808
  if (ncontractions)
7809
  {
7810
    /*
7811
      8K for weights for basic latin letter pairs,
7812
      plus 256 bytes for "is contraction part" flags.
7813
    */
482 by Brian Aker
Remove uint.
7814
    uint32_t size= 0x40*0x40*sizeof(uint16_t) + 256;
1 by brian
clean slate
7815
    char *contraction_flags;
2318.6.109 by Olaf van der Spek
Refactor
7816
    cs->contractions= (uint16_t*) (*alloc)(size);
212.6.15 by Mats Kindahl
Removing redundant use of casts in mystrings/ for memcmp(), memcpy(), memset(), and memmove().
7817
    memset(cs->contractions, 0, size);
1 by brian
clean slate
7818
    contraction_flags= ((char*) cs->contractions) + 0x40*0x40;
7819
    for (i=0; i < rc; i++)
7820
    {
7821
      if (rule[i].curr[1])
7822
      {
482 by Brian Aker
Remove uint.
7823
        uint32_t pageb= (rule[i].base >> 8) & 0xFF;
7824
        uint32_t chb= rule[i].base & 0xFF;
206 by Brian Aker
Removed final uint dead types.
7825
        uint16_t *offsb= defweights[pageb] + chb*deflengths[pageb];
482 by Brian Aker
Remove uint.
7826
        uint32_t offsc;
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
7827
7828
        if (offsb[1] ||
1 by brian
clean slate
7829
            rule[i].curr[0] < 0x40 || rule[i].curr[0] > 0x7f ||
7830
            rule[i].curr[1] < 0x40 || rule[i].curr[1] > 0x7f)
7831
        {
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
7832
          /*
1 by brian
clean slate
7833
           TODO: add error reporting;
7834
           We support only basic latin letters contractions at this point.
7835
           Also, We don't support contractions with weight longer than one.
7836
           Otherwise, we'd need much more memory.
7837
          */
7838
          return 1;
7839
        }
7840
        offsc= (rule[i].curr[0]-0x40)*0x40+(rule[i].curr[1]-0x40);
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
7841
1 by brian
clean slate
7842
        /* Copy base weight applying primary difference */
7843
        cs->contractions[offsc]= offsb[0] + rule[i].diff[0];
7844
        /* Mark both letters as "is contraction part */
7845
        contraction_flags[rule[i].curr[0]]= 1;
7846
        contraction_flags[rule[i].curr[1]]= 1;
7847
      }
7848
    }
7849
  }
7850
  return 0;
7851
}
7852
7853
7854
/*
2254 by Brian Aker
Shift CHARSET_INFO to charset_info_st
7855
  Universal charset_info_st compatible wrappers
1 by brian
clean slate
7856
  for the above internal functions.
7857
  Should work for any character set.
7858
*/
7859
2318.6.109 by Olaf van der Spek
Refactor
7860
static bool my_coll_init_uca(charset_info_st& cs, cs_alloc_func alloc)
1 by brian
clean slate
7861
{
2318.6.109 by Olaf van der Spek
Refactor
7862
  cs.pad_char= ' ';
7863
  return create_tailoring(&cs, alloc);
1 by brian
clean slate
7864
}
7865
2254 by Brian Aker
Shift CHARSET_INFO to charset_info_st
7866
int my_strnncoll_any_uca(const charset_info_st * const cs,
632.1.10 by Monty Taylor
Got rid of Sun Studio warnings.
7867
                         const unsigned char *s, size_t slen,
7868
                         const unsigned char *t, size_t tlen,
7869
                         bool t_is_prefix)
1 by brian
clean slate
7870
{
7871
  return my_strnncoll_uca(cs, &my_any_uca_scanner_handler,
7872
                          s, slen, t, tlen, t_is_prefix);
7873
}
7874
2254 by Brian Aker
Shift CHARSET_INFO to charset_info_st
7875
int my_strnncollsp_any_uca(const charset_info_st * const cs,
632.1.10 by Monty Taylor
Got rid of Sun Studio warnings.
7876
                           const unsigned char *s, size_t slen,
7877
                           const unsigned char *t, size_t tlen,
7878
                           bool diff_if_only_endspace_difference)
1 by brian
clean slate
7879
{
7880
  return my_strnncollsp_uca(cs, &my_any_uca_scanner_handler,
7881
                            s, slen, t, tlen,
7882
                            diff_if_only_endspace_difference);
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
7883
}
1 by brian
clean slate
7884
2254 by Brian Aker
Shift CHARSET_INFO to charset_info_st
7885
void my_hash_sort_any_uca(const charset_info_st * const cs,
612.2.11 by Monty Taylor
Cleanup up the extern+static combo (plus some attributes because I got bored.)
7886
                          const unsigned char *s, size_t slen,
7887
                          uint32_t *n1, uint32_t *n2)
1 by brian
clean slate
7888
{
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
7889
  my_hash_sort_uca(cs, &my_any_uca_scanner_handler, s, slen, n1, n2);
1 by brian
clean slate
7890
}
7891
2254 by Brian Aker
Shift CHARSET_INFO to charset_info_st
7892
size_t my_strnxfrm_any_uca(const charset_info_st * const cs,
632.1.10 by Monty Taylor
Got rid of Sun Studio warnings.
7893
                           unsigned char *dst, size_t dstlen, uint32_t nweights,
7894
                           const unsigned char *src, size_t srclen,
7895
                           uint32_t flags)
1 by brian
clean slate
7896
{
7897
  return my_strnxfrm_uca(cs, &my_any_uca_scanner_handler,
7898
                         dst, dstlen, nweights, src, srclen, flags);
7899
}
7900
7901
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
7902
/*
1 by brian
clean slate
7903
  We consider bytes with code more than 127 as a letter.
7904
  This garantees that word boundaries work fine with regular
7905
  expressions. Note, there is no need to mark byte 255  as a
7906
  letter, it is illegal byte in UTF8.
7907
*/
481 by Brian Aker
Remove all of uchar.
7908
static unsigned char ctype_utf8[]=
1 by brian
clean slate
7909
{
7910
    0,
7911
   32, 32, 32, 32, 32, 32, 32, 32, 32, 40, 40, 40, 40, 40, 32, 32,
7912
   32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32,
7913
   72, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16,
7914
  132,132,132,132,132,132,132,132,132,132, 16, 16, 16, 16, 16, 16,
7915
   16,129,129,129,129,129,129,  1,  1,  1,  1,  1,  1,  1,  1,  1,
7916
    1,  1,  1,  1,  1,  1,  1,  1,  1,  1,  1, 16, 16, 16, 16, 16,
7917
   16,130,130,130,130,130,130,  2,  2,  2,  2,  2,  2,  2,  2,  2,
7918
    2,  2,  2,  2,  2,  2,  2,  2,  2,  2,  2, 16, 16, 16, 16, 32,
7919
    3,  3,  3,  3,  3,  3,  3,  3,  3,  3,  3,  3,  3,  3,  3,  3,
7920
    3,  3,  3,  3,  3,  3,  3,  3,  3,  3,  3,  3,  3,  3,  3,  3,
7921
    3,  3,  3,  3,  3,  3,  3,  3,  3,  3,  3,  3,  3,  3,  3,  3,
7922
    3,  3,  3,  3,  3,  3,  3,  3,  3,  3,  3,  3,  3,  3,  3,  3,
7923
    3,  3,  3,  3,  3,  3,  3,  3,  3,  3,  3,  3,  3,  3,  3,  3,
7924
    3,  3,  3,  3,  3,  3,  3,  3,  3,  3,  3,  3,  3,  3,  3,  3,
7925
    3,  3,  3,  3,  3,  3,  3,  3,  3,  3,  3,  3,  3,  3,  3,  3,
7926
    3,  3,  3,  3,  3,  3,  3,  3,  3,  3,  3,  3,  3,  3,  3,  0
7927
};
7928
7929
7930
MY_COLLATION_HANDLER my_collation_any_uca_handler =
7931
{
7932
  my_coll_init_uca,        /* init */
7933
  my_strnncoll_any_uca,
7934
  my_strnncollsp_any_uca,
7935
  my_strnxfrm_any_uca,
7936
  my_strnxfrmlen_simple,
7937
  my_like_range_mb,
7938
  my_wildcmp_uca,
7939
  NULL,
7940
  my_instr_mb,
7941
  my_hash_sort_any_uca,
7942
  my_propagate_complex
7943
};
7944
7945
extern MY_CHARSET_HANDLER my_charset_utf8mb4_handler;
7946
2254 by Brian Aker
Shift CHARSET_INFO to charset_info_st
7947
charset_info_st my_charset_utf8mb4_unicode_ci=
1 by brian
clean slate
7948
{
7949
    224,0,0,             /* number       */
7950
    MY_CS_COMPILED|MY_CS_STRNXFRM|MY_CS_UNICODE,
7951
    MY_UTF8MB4,          /* csname      */
7952
    MY_UTF8MB4 "_unicode_ci",/* name    */
7953
    "",                  /* comment      */
7954
    "",                  /* tailoring    */
7955
    ctype_utf8,          /* ctype        */
7956
    NULL,                /* to_lower     */
7957
    NULL,                /* to_upper     */
7958
    uca_length,          /* sort_order   */
7959
    NULL,                /* contractions */
7960
    uca_weight,          /* sort_order_big*/
7961
    NULL,                /* tab_to_uni   */
7962
    NULL,                /* tab_from_uni */
7963
    my_unicase_default,  /* caseinfo     */
7964
    NULL,                /* state_map    */
7965
    NULL,                /* ident_map    */
7966
    8,                   /* strxfrm_multiply */
7967
    1,                   /* caseup_multiply  */
7968
    1,                   /* casedn_multiply  */
7969
    1,                   /* mbminlen     */
7970
    4,                   /* mbmaxlen     */
7971
    9,                   /* min_sort_char */
7972
    0xFFFF,              /* max_sort_char */
7973
    ' ',                 /* pad char      */
7974
    0,                   /* escape_with_backslash_is_dangerous */
7975
    1,                   /* levels_for_compare */
7976
    1,                   /* levels_for_order   */
7977
    &my_charset_utf8mb4_handler,
7978
    &my_collation_any_uca_handler
7979
};
7980
7981
2254 by Brian Aker
Shift CHARSET_INFO to charset_info_st
7982
charset_info_st my_charset_utf8mb4_icelandic_uca_ci=
1 by brian
clean slate
7983
{
7984
    225,0,0,             /* number       */
7985
    MY_CS_COMPILED|MY_CS_STRNXFRM|MY_CS_UNICODE,
7986
    MY_UTF8MB4,          /* csname     */
7987
    MY_UTF8MB4 "_icelandic_ci",/* name */
7988
    "",                  /* comment      */
7989
    icelandic,           /* tailoring    */
7990
    ctype_utf8,          /* ctype        */
7991
    NULL,                /* to_lower     */
7992
    NULL,                /* to_upper     */
7993
    NULL,                /* sort_order   */
7994
    NULL,                /* contractions */
7995
    NULL,                /* sort_order_big*/
7996
    NULL,                /* tab_to_uni   */
7997
    NULL,                /* tab_from_uni */
7998
    my_unicase_default,  /* caseinfo     */
7999
    NULL,                /* state_map    */
8000
    NULL,                /* ident_map    */
8001
    8,                   /* strxfrm_multiply */
8002
    1,                   /* caseup_multiply  */
8003
    1,                   /* casedn_multiply  */
8004
    1,                   /* mbminlen     */
8005
    4,                   /* mbmaxlen     */
8006
    9,                   /* min_sort_char */
8007
    0xFFFF,              /* max_sort_char */
8008
    ' ',                 /* pad char      */
8009
    0,                   /* escape_with_backslash_is_dangerous */
8010
    1,                   /* levels_for_compare */
8011
    1,                   /* levels_for_order   */
8012
    &my_charset_utf8mb4_handler,
8013
    &my_collation_any_uca_handler
8014
};
8015
2254 by Brian Aker
Shift CHARSET_INFO to charset_info_st
8016
charset_info_st my_charset_utf8mb4_latvian_uca_ci=
1 by brian
clean slate
8017
{
8018
    226,0,0,             /* number       */
8019
    MY_CS_COMPILED|MY_CS_STRNXFRM|MY_CS_UNICODE,
8020
    MY_UTF8MB4,          /* csname      */
8021
    MY_UTF8MB4 "_latvian_ci", /*   name */
8022
    "",                  /* comment      */
8023
    latvian,             /* tailoring    */
8024
    ctype_utf8,          /* ctype        */
8025
    NULL,                /* to_lower     */
8026
    NULL,                /* to_upper     */
8027
    NULL,                /* sort_order   */
8028
    NULL,                /* contractions */
8029
    NULL,                /* sort_order_big*/
8030
    NULL,                /* tab_to_uni   */
8031
    NULL,                /* tab_from_uni */
8032
    my_unicase_default,  /* caseinfo     */
8033
    NULL,                /* state_map    */
8034
    NULL,                /* ident_map    */
8035
    8,                   /* strxfrm_multiply */
8036
    1,                   /* caseup_multiply  */
8037
    1,                   /* casedn_multiply  */
8038
    1,                   /* mbminlen     */
8039
    4,                   /* mbmaxlen     */
8040
    9,                   /* min_sort_char */
8041
    0xFFFF,              /* max_sort_char */
8042
    ' ',                 /* pad char      */
8043
    0,                   /* escape_with_backslash_is_dangerous */
8044
    1,                   /* levels_for_compare */
8045
    1,                   /* levels_for_order   */
8046
    &my_charset_utf8mb4_handler,
8047
    &my_collation_any_uca_handler
8048
};
8049
2254 by Brian Aker
Shift CHARSET_INFO to charset_info_st
8050
charset_info_st my_charset_utf8mb4_romanian_uca_ci=
1 by brian
clean slate
8051
{
8052
    227,0,0,             /* number       */
8053
    MY_CS_COMPILED|MY_CS_STRNXFRM|MY_CS_UNICODE,
8054
    MY_UTF8MB4,          /* csname      */
8055
    MY_UTF8MB4 "_romanian_ci", /* name  */
8056
    "",                  /* comment      */
8057
    romanian,            /* tailoring    */
8058
    ctype_utf8,          /* ctype        */
8059
    NULL,                /* to_lower     */
8060
    NULL,                /* to_upper     */
8061
    NULL,                /* sort_order   */
8062
    NULL,                /* contractions */
8063
    NULL,                /* sort_order_big*/
8064
    NULL,                /* tab_to_uni   */
8065
    NULL,                /* tab_from_uni */
8066
    my_unicase_default,  /* caseinfo     */
8067
    NULL,                /* state_map    */
8068
    NULL,                /* ident_map    */
8069
    8,                   /* strxfrm_multiply */
8070
    1,                   /* caseup_multiply  */
8071
    1,                   /* casedn_multiply  */
8072
    1,                   /* mbminlen     */
8073
    4,                   /* mbmaxlen     */
8074
    9,                   /* min_sort_char */
8075
    0xFFFF,              /* max_sort_char */
8076
    ' ',                 /* pad char      */
8077
    0,                   /* escape_with_backslash_is_dangerous */
8078
    1,                   /* levels_for_compare */
8079
    1,                   /* levels_for_order   */
8080
    &my_charset_utf8mb4_handler,
8081
    &my_collation_any_uca_handler
8082
};
8083
2254 by Brian Aker
Shift CHARSET_INFO to charset_info_st
8084
charset_info_st my_charset_utf8mb4_slovenian_uca_ci=
1 by brian
clean slate
8085
{
8086
    228,0,0,             /* number       */
8087
    MY_CS_COMPILED|MY_CS_STRNXFRM|MY_CS_UNICODE,
8088
    MY_UTF8MB4,          /* csname      */
8089
    MY_UTF8MB4 "_slovenian_ci",/* name  */
8090
    "",                  /* comment      */
8091
    slovenian,           /* tailoring    */
8092
    ctype_utf8,          /* ctype        */
8093
    NULL,                /* to_lower     */
8094
    NULL,                /* to_upper     */
8095
    NULL,                /* sort_order   */
8096
    NULL,                /* contractions */
8097
    NULL,                /* sort_order_big*/
8098
    NULL,                /* tab_to_uni   */
8099
    NULL,                /* tab_from_uni */
8100
    my_unicase_default,  /* caseinfo     */
8101
    NULL,                /* state_map    */
8102
    NULL,                /* ident_map    */
8103
    8,                   /* strxfrm_multiply */
8104
    1,                   /* caseup_multiply  */
8105
    1,                   /* casedn_multiply  */
8106
    1,                   /* mbminlen     */
8107
    4,                   /* mbmaxlen     */
8108
    9,                   /* min_sort_char */
8109
    0xFFFF,              /* max_sort_char */
8110
    ' ',                 /* pad char      */
8111
    0,                   /* escape_with_backslash_is_dangerous */
8112
    1,                   /* levels_for_compare */
8113
    1,                   /* levels_for_order   */
8114
    &my_charset_utf8mb4_handler,
8115
    &my_collation_any_uca_handler
8116
};
8117
2254 by Brian Aker
Shift CHARSET_INFO to charset_info_st
8118
charset_info_st my_charset_utf8mb4_polish_uca_ci=
1 by brian
clean slate
8119
{
8120
    229,0,0,             /* number       */
8121
    MY_CS_COMPILED|MY_CS_STRNXFRM|MY_CS_UNICODE,
8122
    MY_UTF8MB4,          /* csname      */
8123
    MY_UTF8MB4 "_polish_ci", /* name    */
8124
    "",                  /* comment      */
8125
    polish,              /* tailoring    */
8126
    ctype_utf8,          /* ctype        */
8127
    NULL,                /* to_lower     */
8128
    NULL,                /* to_upper     */
8129
    NULL,                /* sort_order   */
8130
    NULL,                /* contractions */
8131
    NULL,                /* sort_order_big*/
8132
    NULL,                /* tab_to_uni   */
8133
    NULL,                /* tab_from_uni */
8134
    my_unicase_default,  /* caseinfo     */
8135
    NULL,                /* state_map    */
8136
    NULL,                /* ident_map    */
8137
    8,                   /* strxfrm_multiply */
8138
    1,                   /* caseup_multiply  */
8139
    1,                   /* casedn_multiply  */
8140
    1,                   /* mbminlen     */
8141
    4,                   /* mbmaxlen     */
8142
    9,                   /* min_sort_char */
8143
    0xFFFF,              /* max_sort_char */
8144
    ' ',                 /* pad char      */
8145
    0,                   /* escape_with_backslash_is_dangerous */
8146
    1,                   /* levels_for_compare */
8147
    1,                   /* levels_for_order   */
8148
    &my_charset_utf8mb4_handler,
8149
    &my_collation_any_uca_handler
8150
};
8151
2254 by Brian Aker
Shift CHARSET_INFO to charset_info_st
8152
charset_info_st my_charset_utf8mb4_estonian_uca_ci=
1 by brian
clean slate
8153
{
8154
    230,0,0,             /* number       */
8155
    MY_CS_COMPILED|MY_CS_STRNXFRM|MY_CS_UNICODE,
8156
    MY_UTF8MB4,          /* csname      */
8157
    MY_UTF8MB4 "_estonian_ci", /*  name */
8158
    "",                  /* comment      */
8159
    estonian,            /* tailoring    */
8160
    ctype_utf8,          /* ctype        */
8161
    NULL,                /* to_lower     */
8162
    NULL,                /* to_upper     */
8163
    NULL,                /* sort_order   */
8164
    NULL,                /* contractions */
8165
    NULL,                /* sort_order_big*/
8166
    NULL,                /* tab_to_uni   */
8167
    NULL,                /* tab_from_uni */
8168
    my_unicase_default,  /* caseinfo     */
8169
    NULL,                /* state_map    */
8170
    NULL,                /* ident_map    */
8171
    8,                   /* strxfrm_multiply */
8172
    1,                   /* caseup_multiply  */
8173
    1,                   /* casedn_multiply  */
8174
    1,                   /* mbminlen     */
8175
    4,                   /* mbmaxlen     */
8176
    9,                   /* min_sort_char */
8177
    0xFFFF,              /* max_sort_char */
8178
    ' ',                 /* pad char      */
8179
    0,                   /* escape_with_backslash_is_dangerous */
8180
    1,                   /* levels_for_compare */
8181
    1,                   /* levels_for_order   */
8182
    &my_charset_utf8mb4_handler,
8183
    &my_collation_any_uca_handler
8184
};
8185
2254 by Brian Aker
Shift CHARSET_INFO to charset_info_st
8186
charset_info_st my_charset_utf8mb4_spanish_uca_ci=
1 by brian
clean slate
8187
{
8188
    231,0,0,             /* number       */
8189
    MY_CS_COMPILED|MY_CS_STRNXFRM|MY_CS_UNICODE,
8190
    MY_UTF8MB4,          /* csname      */
8191
    MY_UTF8MB4 "_spanish_ci", /* name   */
8192
    "",                  /* comment      */
8193
    spanish,             /* tailoring    */
8194
    ctype_utf8,          /* ctype        */
8195
    NULL,                /* to_lower     */
8196
    NULL,                /* to_upper     */
8197
    NULL,                /* sort_order   */
8198
    NULL,                /* contractions */
8199
    NULL,                /* sort_order_big*/
8200
    NULL,                /* tab_to_uni   */
8201
    NULL,                /* tab_from_uni */
8202
    my_unicase_default,  /* caseinfo     */
8203
    NULL,                /* state_map    */
8204
    NULL,                /* ident_map    */
8205
    8,                   /* strxfrm_multiply */
8206
    1,                   /* caseup_multiply  */
8207
    1,                   /* casedn_multiply  */
8208
    1,                   /* mbminlen     */
8209
    4,                   /* mbmaxlen     */
8210
    9,                   /* min_sort_char */
8211
    0xFFFF,              /* max_sort_char */
8212
    ' ',                 /* pad char      */
8213
    0,                   /* escape_with_backslash_is_dangerous */
8214
    1,                   /* levels_for_compare */
8215
    1,                   /* levels_for_order   */
8216
    &my_charset_utf8mb4_handler,
8217
    &my_collation_any_uca_handler
8218
};
8219
2254 by Brian Aker
Shift CHARSET_INFO to charset_info_st
8220
charset_info_st my_charset_utf8mb4_swedish_uca_ci=
1 by brian
clean slate
8221
{
8222
    232,0,0,             /* number       */
8223
    MY_CS_COMPILED|MY_CS_STRNXFRM|MY_CS_UNICODE,
8224
    MY_UTF8MB4,          /* csname      */
8225
    MY_UTF8MB4 "_swedish_ci", /* name   */
8226
    "",                  /* comment      */
8227
    swedish,             /* tailoring    */
8228
    ctype_utf8,          /* ctype        */
8229
    NULL,                /* to_lower     */
8230
    NULL,                /* to_upper     */
8231
    NULL,                /* sort_order   */
8232
    NULL,                /* contractions */
8233
    NULL,                /* sort_order_big*/
8234
    NULL,                /* tab_to_uni   */
8235
    NULL,                /* tab_from_uni */
8236
    my_unicase_default,  /* caseinfo     */
8237
    NULL,                /* state_map    */
8238
    NULL,                /* ident_map    */
8239
    8,                   /* strxfrm_multiply */
8240
    1,                   /* caseup_multiply  */
8241
    1,                   /* casedn_multiply  */
8242
    1,                   /* mbminlen     */
8243
    4,                   /* mbmaxlen     */
8244
    9,                   /* min_sort_char */
8245
    0xFFFF,              /* max_sort_char */
8246
    ' ',                 /* pad char      */
8247
    0,                   /* escape_with_backslash_is_dangerous */
8248
    1,                   /* levels_for_compare */
8249
    1,                   /* levels_for_order   */
8250
    &my_charset_utf8mb4_handler,
8251
    &my_collation_any_uca_handler
8252
};
8253
2254 by Brian Aker
Shift CHARSET_INFO to charset_info_st
8254
charset_info_st my_charset_utf8mb4_turkish_uca_ci=
1 by brian
clean slate
8255
{
8256
    233,0,0,             /* number       */
8257
    MY_CS_COMPILED|MY_CS_STRNXFRM|MY_CS_UNICODE,
8258
    MY_UTF8MB4,          /* csname      */
8259
    MY_UTF8MB4 "_turkish_ci", /* name   */
8260
    "",                  /* comment      */
8261
    turkish,             /* tailoring    */
8262
    ctype_utf8,          /* ctype        */
8263
    NULL,                /* to_lower     */
8264
    NULL,                /* to_upper     */
8265
    NULL,                /* sort_order   */
8266
    NULL,                /* contractions */
8267
    NULL,                /* sort_order_big*/
8268
    NULL,                /* tab_to_uni   */
8269
    NULL,                /* tab_from_uni */
8270
    my_unicase_turkish,  /* caseinfo     */
8271
    NULL,                /* state_map    */
8272
    NULL,                /* ident_map    */
8273
    8,                   /* strxfrm_multiply */
8274
    2,                   /* caseup_multiply  */
8275
    2,                   /* casedn_multiply  */
8276
    1,                   /* mbminlen     */
8277
    4,                   /* mbmaxlen     */
8278
    9,                   /* min_sort_char */
8279
    0xFFFF,              /* max_sort_char */
8280
    ' ',                 /* pad char      */
8281
    0,                   /* escape_with_backslash_is_dangerous */
8282
    1,                   /* levels_for_compare */
8283
    1,                   /* levels_for_order   */
8284
    &my_charset_utf8mb4_handler,
8285
    &my_collation_any_uca_handler
8286
};
8287
2254 by Brian Aker
Shift CHARSET_INFO to charset_info_st
8288
charset_info_st my_charset_utf8mb4_czech_uca_ci=
1 by brian
clean slate
8289
{
8290
    234,0,0,             /* number       */
8291
    MY_CS_COMPILED|MY_CS_STRNXFRM|MY_CS_UNICODE,
8292
    MY_UTF8MB4,          /* csname      */
8293
    MY_UTF8MB4 "_czech_ci", /* name     */
8294
    "",                  /* comment      */
8295
    czech,               /* tailoring    */
8296
    ctype_utf8,          /* ctype        */
8297
    NULL,                /* to_lower     */
8298
    NULL,                /* to_upper     */
8299
    NULL,                /* sort_order   */
8300
    NULL,                /* contractions */
8301
    NULL,                /* sort_order_big*/
8302
    NULL,                /* tab_to_uni   */
8303
    NULL,                /* tab_from_uni */
8304
    my_unicase_default,  /* caseinfo     */
8305
    NULL,                /* state_map    */
8306
    NULL,                /* ident_map    */
8307
    8,                   /* strxfrm_multiply */
8308
    1,                   /* caseup_multiply  */
8309
    1,                   /* casedn_multiply  */
8310
    1,                   /* mbminlen     */
8311
    4,                   /* mbmaxlen     */
8312
    9,                   /* min_sort_char */
8313
    0xFFFF,              /* max_sort_char */
8314
    ' ',                 /* pad char      */
8315
    0,                   /* escape_with_backslash_is_dangerous */
8316
    1,                   /* levels_for_compare */
8317
    1,                   /* levels_for_order   */
8318
    &my_charset_utf8mb4_handler,
8319
    &my_collation_any_uca_handler
8320
};
8321
8322
2254 by Brian Aker
Shift CHARSET_INFO to charset_info_st
8323
charset_info_st my_charset_utf8mb4_danish_uca_ci=
1 by brian
clean slate
8324
{
8325
    235,0,0,             /* number       */
8326
    MY_CS_COMPILED|MY_CS_STRNXFRM|MY_CS_UNICODE,
8327
    MY_UTF8MB4,          /* csname      */
8328
    MY_UTF8MB4 "_danish_ci", /* name    */
8329
    "",                  /* comment      */
8330
    danish,              /* tailoring    */
8331
    ctype_utf8,          /* ctype        */
8332
    NULL,                /* to_lower     */
8333
    NULL,                /* to_upper     */
8334
    NULL,                /* sort_order   */
8335
    NULL,                /* contractions */
8336
    NULL,                /* sort_order_big*/
8337
    NULL,                /* tab_to_uni   */
8338
    NULL,                /* tab_from_uni */
8339
    my_unicase_default,  /* caseinfo     */
8340
    NULL,                /* state_map    */
8341
    NULL,                /* ident_map    */
8342
    8,                   /* strxfrm_multiply */
8343
    1,                   /* caseup_multiply  */
8344
    1,                   /* casedn_multiply  */
8345
    1,                   /* mbminlen     */
8346
    4,                   /* mbmaxlen     */
8347
    9,                   /* min_sort_char */
8348
    0xFFFF,              /* max_sort_char */
8349
    ' ',                 /* pad char      */
8350
    0,                   /* escape_with_backslash_is_dangerous */
8351
    1,                   /* levels_for_compare */
8352
    1,                   /* levels_for_order   */
8353
    &my_charset_utf8mb4_handler,
8354
    &my_collation_any_uca_handler
8355
};
8356
2254 by Brian Aker
Shift CHARSET_INFO to charset_info_st
8357
charset_info_st my_charset_utf8mb4_lithuanian_uca_ci=
1 by brian
clean slate
8358
{
8359
    236,0,0,             /* number       */
8360
    MY_CS_COMPILED|MY_CS_STRNXFRM|MY_CS_UNICODE,
8361
    MY_UTF8MB4,          /* csname      */
8362
    MY_UTF8MB4 "_lithuanian_ci",/* name */
8363
    "",                  /* comment      */
8364
    lithuanian,          /* tailoring    */
8365
    ctype_utf8,          /* ctype        */
8366
    NULL,                /* to_lower     */
8367
    NULL,                /* to_upper     */
8368
    NULL,                /* sort_order   */
8369
    NULL,                /* contractions */
8370
    NULL,                /* sort_order_big*/
8371
    NULL,                /* tab_to_uni   */
8372
    NULL,                /* tab_from_uni */
8373
    my_unicase_default,  /* caseinfo     */
8374
    NULL,                /* state_map    */
8375
    NULL,                /* ident_map    */
8376
    8,                   /* strxfrm_multiply */
8377
    1,                   /* caseup_multiply  */
8378
    1,                   /* casedn_multiply  */
8379
    1,                   /* mbminlen     */
8380
    4,                   /* mbmaxlen     */
8381
    9,                   /* min_sort_char */
8382
    0xFFFF,              /* max_sort_char */
8383
    ' ',                 /* pad char      */
8384
    0,                   /* escape_with_backslash_is_dangerous */
8385
    1,                   /* levels_for_compare */
8386
    1,                   /* levels_for_order   */
8387
    &my_charset_utf8mb4_handler,
8388
    &my_collation_any_uca_handler
8389
};
8390
2254 by Brian Aker
Shift CHARSET_INFO to charset_info_st
8391
charset_info_st my_charset_utf8mb4_slovak_uca_ci=
1 by brian
clean slate
8392
{
8393
    237,0,0,             /* number       */
8394
    MY_CS_COMPILED|MY_CS_STRNXFRM|MY_CS_UNICODE,
8395
    MY_UTF8MB4,          /* csname      */
8396
    MY_UTF8MB4 "_slovak_ci", /* name    */
8397
    "",                  /* comment      */
8398
    slovak,              /* tailoring    */
8399
    ctype_utf8,          /* ctype        */
8400
    NULL,                /* to_lower     */
8401
    NULL,                /* to_upper     */
8402
    NULL,                /* sort_order   */
8403
    NULL,                /* contractions */
8404
    NULL,                /* sort_order_big*/
8405
    NULL,                /* tab_to_uni   */
8406
    NULL,                /* tab_from_uni */
8407
    my_unicase_default,  /* caseinfo     */
8408
    NULL,                /* state_map    */
8409
    NULL,                /* ident_map    */
8410
    8,                   /* strxfrm_multiply */
8411
    1,                   /* caseup_multiply  */
8412
    1,                   /* casedn_multiply  */
8413
    1,                   /* mbminlen     */
8414
    4,                   /* mbmaxlen     */
8415
    9,                   /* min_sort_char */
8416
    0xFFFF,              /* max_sort_char */
8417
    ' ',                 /* pad char      */
8418
    0,                   /* escape_with_backslash_is_dangerous */
8419
    1,                   /* levels_for_compare */
8420
    1,                   /* levels_for_order   */
8421
    &my_charset_utf8mb4_handler,
8422
    &my_collation_any_uca_handler
8423
};
8424
2254 by Brian Aker
Shift CHARSET_INFO to charset_info_st
8425
charset_info_st my_charset_utf8mb4_spanish2_uca_ci=
1 by brian
clean slate
8426
{
8427
    238,0,0,             /* number       */
8428
    MY_CS_COMPILED|MY_CS_STRNXFRM|MY_CS_UNICODE,
8429
    MY_UTF8MB4,          /* csname      */
8430
    MY_UTF8MB4 "_spanish2_ci",      /* name */
8431
    "",                  /* comment      */
8432
    spanish2,            /* tailoring    */
8433
    ctype_utf8,          /* ctype        */
8434
    NULL,                /* to_lower     */
8435
    NULL,                /* to_upper     */
8436
    NULL,                /* sort_order   */
8437
    NULL,                /* contractions */
8438
    NULL,                /* sort_order_big*/
8439
    NULL,                /* tab_to_uni   */
8440
    NULL,                /* tab_from_uni */
8441
    my_unicase_default,  /* caseinfo     */
8442
    NULL,                /* state_map    */
8443
    NULL,                /* ident_map    */
8444
    8,                   /* strxfrm_multiply */
8445
    1,                   /* caseup_multiply  */
8446
    1,                   /* casedn_multiply  */
8447
    1,                   /* mbminlen     */
8448
    4,                   /* mbmaxlen     */
8449
    9,                   /* min_sort_char */
8450
    0xFFFF,              /* max_sort_char */
8451
    ' ',                 /* pad char      */
8452
    0,                   /* escape_with_backslash_is_dangerous */
8453
    1,                   /* levels_for_compare */
8454
    1,                   /* levels_for_order   */
8455
    &my_charset_utf8mb4_handler,
8456
    &my_collation_any_uca_handler
8457
};
8458
2254 by Brian Aker
Shift CHARSET_INFO to charset_info_st
8459
charset_info_st my_charset_utf8mb4_roman_uca_ci=
1 by brian
clean slate
8460
{
8461
    239,0,0,             /* number       */
8462
    MY_CS_COMPILED|MY_CS_STRNXFRM|MY_CS_UNICODE,
8463
    MY_UTF8MB4,          /* csname      */
8464
    MY_UTF8MB4 "_roman_ci", /* name     */
8465
    "",                  /* comment      */
8466
    roman,               /* tailoring    */
8467
    ctype_utf8,          /* ctype        */
8468
    NULL,                /* to_lower     */
8469
    NULL,                /* to_upper     */
8470
    NULL,                /* sort_order   */
8471
    NULL,                /* contractions */
8472
    NULL,                /* sort_order_big*/
8473
    NULL,                /* tab_to_uni   */
8474
    NULL,                /* tab_from_uni */
8475
    my_unicase_default,  /* caseinfo     */
8476
    NULL,                /* state_map    */
8477
    NULL,                /* ident_map    */
8478
    8,                   /* strxfrm_multiply */
8479
    1,                   /* caseup_multiply  */
8480
    1,                   /* casedn_multiply  */
8481
    1,                   /* mbminlen     */
8482
    4,                   /* mbmaxlen     */
8483
    9,                   /* min_sort_char */
8484
    0xFFFF,              /* max_sort_char */
8485
    ' ',                 /* pad char      */
8486
    0,                   /* escape_with_backslash_is_dangerous */
8487
    1,                   /* levels_for_compare */
8488
    1,                   /* levels_for_order   */
8489
    &my_charset_utf8mb4_handler,
8490
    &my_collation_any_uca_handler
8491
};
8492
2254 by Brian Aker
Shift CHARSET_INFO to charset_info_st
8493
charset_info_st my_charset_utf8mb4_persian_uca_ci=
1 by brian
clean slate
8494
{
8495
    240,0,0,             /* number       */
8496
    MY_CS_COMPILED|MY_CS_STRNXFRM|MY_CS_UNICODE,
8497
    MY_UTF8MB4,          /* csname      */
8498
    MY_UTF8MB4 "_persian_ci", /* name   */
8499
    "",                  /* comment      */
8500
    persian,             /* tailoring    */
8501
    ctype_utf8,          /* ctype        */
8502
    NULL,                /* to_lower     */
8503
    NULL,                /* to_upper     */
8504
    NULL,                /* sort_order   */
8505
    NULL,                /* contractions */
8506
    NULL,                /* sort_order_big*/
8507
    NULL,                /* tab_to_uni   */
8508
    NULL,                /* tab_from_uni */
8509
    my_unicase_default,  /* caseinfo     */
8510
    NULL,                /* state_map    */
8511
    NULL,                /* ident_map    */
8512
    8,                   /* strxfrm_multiply */
8513
    1,                   /* caseup_multiply  */
8514
    1,                   /* casedn_multiply  */
8515
    1,                   /* mbminlen     */
8516
    4,                   /* mbmaxlen     */
8517
    9,                   /* min_sort_char */
8518
    0xFFFF,              /* max_sort_char */
8519
    ' ',                 /* pad char      */
8520
    0,                   /* escape_with_backslash_is_dangerous */
8521
    1,                   /* levels_for_compare */
8522
    1,                   /* levels_for_order   */
8523
    &my_charset_utf8mb4_handler,
8524
    &my_collation_any_uca_handler
8525
};
8526
2254 by Brian Aker
Shift CHARSET_INFO to charset_info_st
8527
charset_info_st my_charset_utf8mb4_esperanto_uca_ci=
1 by brian
clean slate
8528
{
8529
    241,0,0,             /* number       */
8530
    MY_CS_COMPILED|MY_CS_STRNXFRM|MY_CS_UNICODE,
8531
    MY_UTF8MB4,          /* csname      */
8532
    MY_UTF8MB4 "_esperanto_ci",/* name  */
8533
    "",                  /* comment      */
8534
    esperanto,           /* tailoring    */
8535
    ctype_utf8,          /* ctype        */
8536
    NULL,                /* to_lower     */
8537
    NULL,                /* to_upper     */
8538
    NULL,                /* sort_order   */
8539
    NULL,                /* contractions */
8540
    NULL,                /* sort_order_big*/
8541
    NULL,                /* tab_to_uni   */
8542
    NULL,                /* tab_from_uni */
8543
    my_unicase_default,  /* caseinfo     */
8544
    NULL,                /* state_map    */
8545
    NULL,                /* ident_map    */
8546
    8,                   /* strxfrm_multiply */
8547
    1,                   /* caseup_multiply  */
8548
    1,                   /* casedn_multiply  */
8549
    1,                   /* mbminlen     */
8550
    4,                   /* mbmaxlen     */
8551
    9,                   /* min_sort_char */
8552
    0xFFFF,              /* max_sort_char */
8553
    ' ',                 /* pad char      */
8554
    0,                   /* escape_with_backslash_is_dangerous */
8555
    1,                   /* levels_for_compare */
8556
    1,                   /* levels_for_order   */
8557
    &my_charset_utf8mb4_handler,
8558
    &my_collation_any_uca_handler
8559
};
8560
2254 by Brian Aker
Shift CHARSET_INFO to charset_info_st
8561
charset_info_st my_charset_utf8mb4_hungarian_uca_ci=
1 by brian
clean slate
8562
{
8563
    242,0,0,             /* number       */
8564
    MY_CS_COMPILED|MY_CS_STRNXFRM|MY_CS_UNICODE,
8565
    MY_UTF8MB4,          /* csname      */
8566
    MY_UTF8MB4 "_hungarian_ci",/* name  */
8567
    "",                  /* comment      */
8568
    hungarian,           /* tailoring    */
8569
    ctype_utf8,          /* ctype        */
8570
    NULL,                /* to_lower     */
8571
    NULL,                /* to_upper     */
8572
    NULL,                /* sort_order   */
8573
    NULL,                /* contractions */
8574
    NULL,                /* sort_order_big*/
8575
    NULL,                /* tab_to_uni   */
8576
    NULL,                /* tab_from_uni */
8577
    my_unicase_default,  /* caseinfo     */
8578
    NULL,                /* state_map    */
8579
    NULL,                /* ident_map    */
8580
    8,                   /* strxfrm_multiply */
8581
    1,                   /* caseup_multiply  */
8582
    1,                   /* casedn_multiply  */
8583
    1,                   /* mbminlen     */
8584
    4,                   /* mbmaxlen     */
8585
    9,                   /* min_sort_char */
8586
    0xFFFF,              /* max_sort_char */
8587
    ' ',                 /* pad char      */
8588
    0,                   /* escape_with_backslash_is_dangerous */
8589
    1,                   /* levels_for_compare */
8590
    1,                   /* levels_for_order   */
8591
    &my_charset_utf8mb4_handler,
8592
    &my_collation_any_uca_handler
8593
};
8594
2254 by Brian Aker
Shift CHARSET_INFO to charset_info_st
8595
charset_info_st my_charset_utf8mb4_sinhala_uca_ci=
1 by brian
clean slate
8596
{
8597
    243,0,0,            /* number       */
8598
    MY_CS_COMPILED|MY_CS_STRNXFRM|MY_CS_UNICODE,
8599
    MY_UTF8MB4,         /* csname      */
8600
    MY_UTF8MB4 "_sinhala_ci",/* name  */
8601
    "",                 /* comment      */
8602
    sinhala,            /* tailoring    */
8603
    ctype_utf8,         /* ctype        */
8604
    NULL,               /* to_lower     */
8605
    NULL,               /* to_upper     */
8606
    NULL,               /* sort_order   */
8607
    NULL,               /* contractions */
8608
    NULL,               /* sort_order_big*/
8609
    NULL,               /* tab_to_uni   */
8610
    NULL,               /* tab_from_uni */
8611
    my_unicase_default, /* caseinfo     */
8612
    NULL,               /* state_map    */
8613
    NULL,               /* ident_map    */
8614
    8,                  /* strxfrm_multiply */
8615
    1,                  /* caseup_multiply  */
8616
    1,                  /* casedn_multiply  */
8617
    1,                  /* mbminlen      */
8618
    4,                  /* mbmaxlen      */
8619
    9,                  /* min_sort_char */
8620
    0xFFFF,             /* max_sort_char */
8621
    ' ',                /* pad char      */
8622
    0,                  /* escape_with_backslash_is_dangerous */
8623
    1,                  /* levels_for_compare */
8624
    1,                  /* levels_for_order   */
8625
    &my_charset_utf8mb4_handler,
8626
    &my_collation_any_uca_handler
8627
};
1280.1.10 by Monty Taylor
Put everything in drizzled into drizzled namespace.
8628
8629
} /* namespace drizzled */