mathtype 0.0.3 → 0.0.4

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 28c7465c5f6c8e4c701ee90b51c9d3c52cafe5f4
4
- data.tar.gz: 5b4264072775d86c25a78b64b7663acbe76eec8a
3
+ metadata.gz: 1fb67771d858b97094dc0a5636be37b959aab139
4
+ data.tar.gz: fbc9a6d560488bd155cc32be36fb3948cbabf0ec
5
5
  SHA512:
6
- metadata.gz: 842d64eface390636c6347e1bfff4c8327719ab2e4938a9a1bc9c48fd8d553362122b9ce2b73912f3742402dc31ad90c6ca3ba35e7195c4f6398ab78d8dfc5ff
7
- data.tar.gz: 2cd1f345b939570694b11513946b167c7fa6bc1b58459e3c606fccdd43a76dcfab405ece48b8b3d0ffef016598e2324c6ca00c72f078da71213926381d5e8062
6
+ metadata.gz: 705f9fd5caed5f5cf727697760f578010342d6644d479a3f705c70dd763485aa8a7fe040d50f35aaec4d6214a3d0bdc23fab301ce595db63c0746bd2b2e3cf16
7
+ data.tar.gz: e5119491360c30f9b9c5943d5f01e5cf0316c44987d9711fc30c7cbcf8ed4be06f3c52b49f88e6dec2f1b9802b1f65d82f87a2eeb30b58d03465c6b46a958e46
@@ -1,3 +1,3 @@
1
1
  module Mathtype
2
- VERSION = "0.0.3"
2
+ VERSION = "0.0.4"
3
3
  end
@@ -1,12 +1,19 @@
1
- # PILE record (4):
2
- # Consists of:
3
- # record type (4)
1
+ require_relative "snapshot"
2
+
3
+ # MATRIX record (5):
4
+ # record type (5)
4
5
  # options
5
6
  # [nudge] if mtefOPT_NUDGE is set
6
- # [halign] horizontal alignment
7
- # [valign] vertical alignment
8
- # [[RULER record]] if mtefOPT_LP_RULER is set
9
- # [object list] list of lines contained by the pile
7
+ # [valign] vertical alignment of matrix within container
8
+ # [h_just] horizontal alignment within columns
9
+ # [v_just] vertical alignment within columns
10
+ # [rows] number of rows
11
+ # [cols] number of columns
12
+ # [row_parts] row partition line types (see below)
13
+ # [col_parts] column partition line types (see below)
14
+ # [object list] list of lines, one for each element of the matrix, in order from
15
+ # left-to-right and top-to-bottom
16
+ # The values for valign, h_just, and v_just are described in PILE above.
10
17
 
11
18
  # The row partition line type list consists of two-bit values for each possible
12
19
  # partition line (one more than the number of rows), rounded out to the nearest
@@ -16,13 +23,16 @@
16
23
 
17
24
  module Mathtype
18
25
  class RecordMatrix < BinData::Record
26
+ include Snapshot
27
+ EXPOSED_IN_SNAPSHOT = %i(options nudge valign h_just v_just rows cols
28
+ row_parts col_parts object_list)
19
29
  int8 :options
20
30
 
21
31
  nudge :nudge, onlyif: lambda { options & OPTIONS["mtefOPT_NUDGE"] > 0 }
22
32
 
23
- int8 :valign
24
- int8 :h_just
25
- int8 :v_just
33
+ int8 :_valign
34
+ int8 :_h_just
35
+ int8 :_v_just
26
36
  int8 :rows
27
37
  int8 :cols
28
38
 
@@ -37,5 +47,17 @@ module Mathtype
37
47
  array :object_list, read_until: lambda { element.record_type == 0 } do
38
48
  named_record
39
49
  end
50
+
51
+ def valign
52
+ VALIGN[_valign]
53
+ end
54
+
55
+ def h_just
56
+ HALIGN[_h_just]
57
+ end
58
+
59
+ def v_just
60
+ VALIGN[_v_just]
61
+ end
40
62
  end
41
63
  end
@@ -64,6 +64,22 @@ module Mathtype
64
64
  "mtefCOLOR_NAME" => 0x04, # color has a name, else no name
65
65
  }
66
66
 
67
+ HALIGN = {
68
+ 1 => "left",
69
+ 2 => "center",
70
+ 3 => "right",
71
+ 4 => "al", # relational
72
+ 5 => "dec" # decimal
73
+ }
74
+
75
+ VALIGN = {
76
+ 0 => "top_baseline",
77
+ 1 => "center_baseline",
78
+ 2 => "bottom_baseline",
79
+ 3 => "center", # vertical centering
80
+ 4 => "axis" # math axis (center of +,-, brace points, etc.)
81
+ }
82
+
67
83
  ## Payload is the most important class to understand.
68
84
  ## This abstraction allows recursive formats.
69
85
  ## eg. lists can contain lists can contain lists.
@@ -1,3 +1,5 @@
1
+ require_relative "snapshot"
2
+
1
3
  # PILE record (4):
2
4
 
3
5
  # Consists of:
@@ -12,17 +14,28 @@
12
14
 
13
15
  module Mathtype
14
16
  class RecordPile < BinData::Record
17
+ include Snapshot
18
+ EXPOSED_IN_SNAPSHOT = %i(options halign valign object_list)
19
+
15
20
  int8 :options
16
21
 
17
22
  nudge :nudge, onlyif: lambda { options & OPTIONS["mtefOPT_NUDGE"] > 0 }
18
23
 
19
- int8 :halign
20
- int8 :valign
24
+ int8 :_halign
25
+ int8 :_valign
21
26
 
22
27
  record_ruler :ruler, onlyif: lambda { options & OPTIONS["mtefOPT_LP_RULER"] > 0 }
23
28
 
24
29
  array :object_list, read_until: lambda { element.record_type == 0 } do
25
30
  named_record
26
31
  end
32
+
33
+ def halign
34
+ HALIGN[_halign]
35
+ end
36
+
37
+ def valign
38
+ VALIGN[_valign]
39
+ end
27
40
  end
28
41
  end
@@ -412,7 +412,6 @@ module Mathtype
412
412
 
413
413
  def variation
414
414
  variation = (_variation_first_byte & 0x7F) | (_variation_second_byte << 8)
415
-
416
415
  variations = VARIATIONS.select do |selector, _|
417
416
  selector === _selector
418
417
  end.values.reduce(Hash.new, :merge)
@@ -0,0 +1,1406 @@
1
+ <?xml version="1.0"?>
2
+ <root>
3
+ <mtef>
4
+ <mtef_version>5</mtef_version>
5
+ <platform>0</platform>
6
+ <product>0</product>
7
+ <product_version>6</product_version>
8
+ <product_subversion>7</product_subversion>
9
+ <application_key>DSMT6</application_key>
10
+ <equation_options>0</equation_options>
11
+ <future>
12
+ <skip>3</skip>
13
+ </future>
14
+ <encoding_def>
15
+ <name>MacRoman</name>
16
+ </encoding_def>
17
+ <font_def>
18
+ <enc_def_index>5</enc_def_index>
19
+ <font_name>Cambria</font_name>
20
+ </font_def>
21
+ <font_def>
22
+ <enc_def_index>3</enc_def_index>
23
+ <font_name>Symbol</font_name>
24
+ </font_def>
25
+ <font_def>
26
+ <enc_def_index>5</enc_def_index>
27
+ <font_name>Courier</font_name>
28
+ </font_def>
29
+ <font_def>
30
+ <enc_def_index>4</enc_def_index>
31
+ <font_name>MT Extra</font_name>
32
+ </font_def>
33
+ <eqn_prefs>
34
+ <options>0</options>
35
+ <sizes_count>8</sizes_count>
36
+ <sizes>
37
+ <unit>2</unit>
38
+ <nibbles>1</nibbles>
39
+ <nibbles>2</nibbles>
40
+ <nibbles>15</nibbles>
41
+ </sizes>
42
+ <sizes>
43
+ <unit>4</unit>
44
+ <nibbles>5</nibbles>
45
+ <nibbles>8</nibbles>
46
+ <nibbles>15</nibbles>
47
+ </sizes>
48
+ <sizes>
49
+ <unit>4</unit>
50
+ <nibbles>4</nibbles>
51
+ <nibbles>2</nibbles>
52
+ <nibbles>15</nibbles>
53
+ </sizes>
54
+ <sizes>
55
+ <unit>4</unit>
56
+ <nibbles>1</nibbles>
57
+ <nibbles>5</nibbles>
58
+ <nibbles>0</nibbles>
59
+ <nibbles>15</nibbles>
60
+ </sizes>
61
+ <sizes>
62
+ <unit>1</unit>
63
+ <nibbles>0</nibbles>
64
+ <nibbles>0</nibbles>
65
+ <nibbles>15</nibbles>
66
+ </sizes>
67
+ <sizes>
68
+ <unit>4</unit>
69
+ <nibbles>7</nibbles>
70
+ <nibbles>5</nibbles>
71
+ <nibbles>15</nibbles>
72
+ </sizes>
73
+ <sizes>
74
+ <unit>4</unit>
75
+ <nibbles>1</nibbles>
76
+ <nibbles>5</nibbles>
77
+ <nibbles>0</nibbles>
78
+ <nibbles>15</nibbles>
79
+ </sizes>
80
+ <sizes>
81
+ <unit>1</unit>
82
+ <nibbles>15</nibbles>
83
+ </sizes>
84
+ <spaces_count>33</spaces_count>
85
+ <spaces>
86
+ <unit>4</unit>
87
+ <nibbles>1</nibbles>
88
+ <nibbles>5</nibbles>
89
+ <nibbles>0</nibbles>
90
+ <nibbles>15</nibbles>
91
+ </spaces>
92
+ <spaces>
93
+ <unit>1</unit>
94
+ <nibbles>5</nibbles>
95
+ <nibbles>0</nibbles>
96
+ <nibbles>15</nibbles>
97
+ </spaces>
98
+ <spaces>
99
+ <unit>4</unit>
100
+ <nibbles>1</nibbles>
101
+ <nibbles>0</nibbles>
102
+ <nibbles>0</nibbles>
103
+ <nibbles>15</nibbles>
104
+ </spaces>
105
+ <spaces>
106
+ <unit>4</unit>
107
+ <nibbles>5</nibbles>
108
+ <nibbles>15</nibbles>
109
+ </spaces>
110
+ <spaces>
111
+ <unit>2</unit>
112
+ <nibbles>5</nibbles>
113
+ <nibbles>15</nibbles>
114
+ </spaces>
115
+ <spaces>
116
+ <unit>8</unit>
117
+ <nibbles>15</nibbles>
118
+ </spaces>
119
+ <spaces>
120
+ <unit>4</unit>
121
+ <nibbles>2</nibbles>
122
+ <nibbles>5</nibbles>
123
+ <nibbles>15</nibbles>
124
+ </spaces>
125
+ <spaces>
126
+ <unit>4</unit>
127
+ <nibbles>1</nibbles>
128
+ <nibbles>0</nibbles>
129
+ <nibbles>0</nibbles>
130
+ <nibbles>15</nibbles>
131
+ </spaces>
132
+ <spaces>
133
+ <unit>1</unit>
134
+ <nibbles>0</nibbles>
135
+ <nibbles>0</nibbles>
136
+ <nibbles>15</nibbles>
137
+ </spaces>
138
+ <spaces>
139
+ <unit>4</unit>
140
+ <nibbles>3</nibbles>
141
+ <nibbles>5</nibbles>
142
+ <nibbles>15</nibbles>
143
+ </spaces>
144
+ <spaces>
145
+ <unit>4</unit>
146
+ <nibbles>1</nibbles>
147
+ <nibbles>0</nibbles>
148
+ <nibbles>0</nibbles>
149
+ <nibbles>15</nibbles>
150
+ </spaces>
151
+ <spaces>
152
+ <unit>8</unit>
153
+ <nibbles>15</nibbles>
154
+ </spaces>
155
+ <spaces>
156
+ <unit>4</unit>
157
+ <nibbles>5</nibbles>
158
+ <nibbles>15</nibbles>
159
+ </spaces>
160
+ <spaces>
161
+ <unit>2</unit>
162
+ <nibbles>10</nibbles>
163
+ <nibbles>5</nibbles>
164
+ <nibbles>15</nibbles>
165
+ </spaces>
166
+ <spaces>
167
+ <unit>4</unit>
168
+ <nibbles>8</nibbles>
169
+ <nibbles>15</nibbles>
170
+ </spaces>
171
+ <spaces>
172
+ <unit>8</unit>
173
+ <nibbles>15</nibbles>
174
+ </spaces>
175
+ <spaces>
176
+ <unit>4</unit>
177
+ <nibbles>1</nibbles>
178
+ <nibbles>0</nibbles>
179
+ <nibbles>0</nibbles>
180
+ <nibbles>15</nibbles>
181
+ </spaces>
182
+ <spaces>
183
+ <unit>1</unit>
184
+ <nibbles>0</nibbles>
185
+ <nibbles>0</nibbles>
186
+ <nibbles>15</nibbles>
187
+ </spaces>
188
+ <spaces>
189
+ <unit>4</unit>
190
+ <nibbles>0</nibbles>
191
+ <nibbles>15</nibbles>
192
+ </spaces>
193
+ <spaces>
194
+ <unit>8</unit>
195
+ <nibbles>15</nibbles>
196
+ </spaces>
197
+ <spaces>
198
+ <unit>4</unit>
199
+ <nibbles>1</nibbles>
200
+ <nibbles>7</nibbles>
201
+ <nibbles>15</nibbles>
202
+ </spaces>
203
+ <spaces>
204
+ <unit>4</unit>
205
+ <nibbles>8</nibbles>
206
+ <nibbles>15</nibbles>
207
+ </spaces>
208
+ <spaces>
209
+ <unit>1</unit>
210
+ <nibbles>0</nibbles>
211
+ <nibbles>0</nibbles>
212
+ <nibbles>15</nibbles>
213
+ </spaces>
214
+ <spaces>
215
+ <unit>4</unit>
216
+ <nibbles>1</nibbles>
217
+ <nibbles>2</nibbles>
218
+ <nibbles>10</nibbles>
219
+ <nibbles>5</nibbles>
220
+ <nibbles>15</nibbles>
221
+ </spaces>
222
+ <spaces>
223
+ <unit>4</unit>
224
+ <nibbles>4</nibbles>
225
+ <nibbles>5</nibbles>
226
+ <nibbles>15</nibbles>
227
+ </spaces>
228
+ <spaces>
229
+ <unit>4</unit>
230
+ <nibbles>5</nibbles>
231
+ <nibbles>15</nibbles>
232
+ </spaces>
233
+ <spaces>
234
+ <unit>5</unit>
235
+ <nibbles>15</nibbles>
236
+ </spaces>
237
+ <spaces>
238
+ <unit>4</unit>
239
+ <nibbles>5</nibbles>
240
+ <nibbles>15</nibbles>
241
+ </spaces>
242
+ <spaces>
243
+ <unit>5</unit>
244
+ <nibbles>15</nibbles>
245
+ </spaces>
246
+ <spaces>
247
+ <unit>4</unit>
248
+ <nibbles>1</nibbles>
249
+ <nibbles>0</nibbles>
250
+ <nibbles>15</nibbles>
251
+ </spaces>
252
+ <spaces>
253
+ <unit>4</unit>
254
+ <nibbles>2</nibbles>
255
+ <nibbles>0</nibbles>
256
+ <nibbles>15</nibbles>
257
+ </spaces>
258
+ <spaces>
259
+ <unit>4</unit>
260
+ <nibbles>2</nibbles>
261
+ <nibbles>0</nibbles>
262
+ <nibbles>15</nibbles>
263
+ </spaces>
264
+ <spaces>
265
+ <unit>4</unit>
266
+ <nibbles>2</nibbles>
267
+ <nibbles>0</nibbles>
268
+ <nibbles>15</nibbles>
269
+ </spaces>
270
+ <styles_count>12</styles_count>
271
+ <styles>
272
+ <font_def>1</font_def>
273
+ <font_style>0</font_style>
274
+ </styles>
275
+ <styles>
276
+ <font_def>1</font_def>
277
+ <font_style>0</font_style>
278
+ </styles>
279
+ <styles>
280
+ <font_def>1</font_def>
281
+ <font_style>2</font_style>
282
+ </styles>
283
+ <styles>
284
+ <font_def>2</font_def>
285
+ <font_style>2</font_style>
286
+ </styles>
287
+ <styles>
288
+ <font_def>2</font_def>
289
+ <font_style>0</font_style>
290
+ </styles>
291
+ <styles>
292
+ <font_def>2</font_def>
293
+ <font_style>0</font_style>
294
+ </styles>
295
+ <styles>
296
+ <font_def>1</font_def>
297
+ <font_style>1</font_style>
298
+ </styles>
299
+ <styles>
300
+ <font_def>1</font_def>
301
+ <font_style>0</font_style>
302
+ </styles>
303
+ <styles>
304
+ <font_def>3</font_def>
305
+ <font_style>0</font_style>
306
+ </styles>
307
+ <styles>
308
+ <font_def>1</font_def>
309
+ <font_style>0</font_style>
310
+ </styles>
311
+ <styles>
312
+ <font_def>4</font_def>
313
+ <font_style>0</font_style>
314
+ </styles>
315
+ <styles>
316
+ <font_def>0</font_def>
317
+ </styles>
318
+ </eqn_prefs>
319
+ <full/>
320
+ <pile>
321
+ <options>0</options>
322
+ <halign>left</halign>
323
+ <valign>center_baseline</valign>
324
+ <slot>
325
+ <options>0</options>
326
+ <char>
327
+ <typeface>3</typeface>
328
+ <mt_code_value>0x0061</mt_code_value>
329
+ <options>0</options>
330
+ </char>
331
+ <tmpl>
332
+ <selector>tmARROW</selector>
333
+ <variation>tvAR_SINGLE</variation>
334
+ <variation>tvAR_RIGHT</variation>
335
+ <variation>tvAR_TOP</variation>
336
+ <template_specific_options>0</template_specific_options>
337
+ <sub/>
338
+ <slot>
339
+ <options>0</options>
340
+ <char>
341
+ <typeface>3</typeface>
342
+ <mt_code_value>0x0062</mt_code_value>
343
+ <options>0</options>
344
+ </char>
345
+ <end/>
346
+ </slot>
347
+ <slot>
348
+ <options>1</options>
349
+ </slot>
350
+ <full/>
351
+ <char>
352
+ <typeface>22</typeface>
353
+ <mt_code_value>0x2192</mt_code_value>
354
+ <options>0</options>
355
+ </char>
356
+ <end/>
357
+ </tmpl>
358
+ <char>
359
+ <typeface>3</typeface>
360
+ <mt_code_value>0x0063</mt_code_value>
361
+ <options>0</options>
362
+ </char>
363
+ <char>
364
+ <typeface>6</typeface>
365
+ <mt_code_value>0x002B</mt_code_value>
366
+ <options>4</options>
367
+ <font_position>43</font_position>
368
+ </char>
369
+ <char>
370
+ <typeface>3</typeface>
371
+ <mt_code_value>0x0061</mt_code_value>
372
+ <options>0</options>
373
+ </char>
374
+ <tmpl>
375
+ <selector>tmARROW</selector>
376
+ <variation>tvAR_SINGLE</variation>
377
+ <variation>tvAR_RIGHT</variation>
378
+ <variation>tvAR_BOTTOM</variation>
379
+ <template_specific_options>0</template_specific_options>
380
+ <sub/>
381
+ <slot>
382
+ <options>1</options>
383
+ </slot>
384
+ <slot>
385
+ <options>0</options>
386
+ <char>
387
+ <typeface>3</typeface>
388
+ <mt_code_value>0x0062</mt_code_value>
389
+ <options>0</options>
390
+ </char>
391
+ <end/>
392
+ </slot>
393
+ <full/>
394
+ <char>
395
+ <typeface>22</typeface>
396
+ <mt_code_value>0x2192</mt_code_value>
397
+ <options>0</options>
398
+ </char>
399
+ <end/>
400
+ </tmpl>
401
+ <char>
402
+ <typeface>3</typeface>
403
+ <mt_code_value>0x0063</mt_code_value>
404
+ <options>0</options>
405
+ </char>
406
+ <char>
407
+ <typeface>6</typeface>
408
+ <mt_code_value>0x002B</mt_code_value>
409
+ <options>4</options>
410
+ <font_position>43</font_position>
411
+ </char>
412
+ <char>
413
+ <typeface>3</typeface>
414
+ <mt_code_value>0x0061</mt_code_value>
415
+ <options>0</options>
416
+ </char>
417
+ <tmpl>
418
+ <selector>tmARROW</selector>
419
+ <variation>tvAR_SINGLE</variation>
420
+ <variation>tvAR_RIGHT</variation>
421
+ <variation>tvAR_TOP</variation>
422
+ <variation>tvAR_BOTTOM</variation>
423
+ <variation>tvAR_TOPBOTTOM</variation>
424
+ <template_specific_options>0</template_specific_options>
425
+ <sub/>
426
+ <slot>
427
+ <options>0</options>
428
+ <char>
429
+ <typeface>3</typeface>
430
+ <mt_code_value>0x0062</mt_code_value>
431
+ <options>0</options>
432
+ </char>
433
+ <end/>
434
+ </slot>
435
+ <slot>
436
+ <options>0</options>
437
+ <char>
438
+ <typeface>3</typeface>
439
+ <mt_code_value>0x0063</mt_code_value>
440
+ <options>0</options>
441
+ </char>
442
+ <end/>
443
+ </slot>
444
+ <full/>
445
+ <char>
446
+ <typeface>22</typeface>
447
+ <mt_code_value>0x2192</mt_code_value>
448
+ <options>0</options>
449
+ </char>
450
+ <end/>
451
+ </tmpl>
452
+ <char>
453
+ <typeface>3</typeface>
454
+ <mt_code_value>0x0064</mt_code_value>
455
+ <options>0</options>
456
+ </char>
457
+ <char>
458
+ <typeface>6</typeface>
459
+ <mt_code_value>0x002B</mt_code_value>
460
+ <options>4</options>
461
+ <font_position>43</font_position>
462
+ </char>
463
+ <char>
464
+ <typeface>3</typeface>
465
+ <mt_code_value>0x0061</mt_code_value>
466
+ <options>0</options>
467
+ </char>
468
+ <tmpl>
469
+ <selector>tmARROW</selector>
470
+ <variation>tvAR_SINGLE</variation>
471
+ <variation>tvAR_LEFT</variation>
472
+ <variation>tvAR_TOP</variation>
473
+ <template_specific_options>0</template_specific_options>
474
+ <sub/>
475
+ <slot>
476
+ <options>0</options>
477
+ <char>
478
+ <typeface>3</typeface>
479
+ <mt_code_value>0x0062</mt_code_value>
480
+ <options>0</options>
481
+ </char>
482
+ <end/>
483
+ </slot>
484
+ <slot>
485
+ <options>1</options>
486
+ </slot>
487
+ <full/>
488
+ <char>
489
+ <typeface>22</typeface>
490
+ <mt_code_value>0x2190</mt_code_value>
491
+ <options>0</options>
492
+ </char>
493
+ <end/>
494
+ </tmpl>
495
+ <char>
496
+ <typeface>3</typeface>
497
+ <mt_code_value>0x0063</mt_code_value>
498
+ <options>0</options>
499
+ </char>
500
+ <char>
501
+ <typeface>6</typeface>
502
+ <mt_code_value>0x002B</mt_code_value>
503
+ <options>4</options>
504
+ <font_position>43</font_position>
505
+ </char>
506
+ <char>
507
+ <typeface>3</typeface>
508
+ <mt_code_value>0x0061</mt_code_value>
509
+ <options>0</options>
510
+ </char>
511
+ <tmpl>
512
+ <selector>tmARROW</selector>
513
+ <variation>tvAR_SINGLE</variation>
514
+ <variation>tvAR_LEFT</variation>
515
+ <variation>tvAR_BOTTOM</variation>
516
+ <template_specific_options>0</template_specific_options>
517
+ <sub/>
518
+ <slot>
519
+ <options>1</options>
520
+ </slot>
521
+ <slot>
522
+ <options>0</options>
523
+ <char>
524
+ <typeface>3</typeface>
525
+ <mt_code_value>0x0062</mt_code_value>
526
+ <options>0</options>
527
+ </char>
528
+ <end/>
529
+ </slot>
530
+ <full/>
531
+ <char>
532
+ <typeface>22</typeface>
533
+ <mt_code_value>0x2190</mt_code_value>
534
+ <options>0</options>
535
+ </char>
536
+ <end/>
537
+ </tmpl>
538
+ <char>
539
+ <typeface>3</typeface>
540
+ <mt_code_value>0x0063</mt_code_value>
541
+ <options>0</options>
542
+ </char>
543
+ <end/>
544
+ </slot>
545
+ <slot>
546
+ <options>0</options>
547
+ <char>
548
+ <typeface>3</typeface>
549
+ <mt_code_value>0x0061</mt_code_value>
550
+ <options>0</options>
551
+ </char>
552
+ <tmpl>
553
+ <selector>tmARROW</selector>
554
+ <variation>tvAR_SINGLE</variation>
555
+ <variation>tvAR_LEFT</variation>
556
+ <variation>tvAR_TOP</variation>
557
+ <variation>tvAR_BOTTOM</variation>
558
+ <variation>tvAR_TOPBOTTOM</variation>
559
+ <template_specific_options>0</template_specific_options>
560
+ <sub/>
561
+ <slot>
562
+ <options>0</options>
563
+ <char>
564
+ <typeface>3</typeface>
565
+ <mt_code_value>0x0062</mt_code_value>
566
+ <options>0</options>
567
+ </char>
568
+ <end/>
569
+ </slot>
570
+ <slot>
571
+ <options>0</options>
572
+ <char>
573
+ <typeface>3</typeface>
574
+ <mt_code_value>0x0063</mt_code_value>
575
+ <options>0</options>
576
+ </char>
577
+ <end/>
578
+ </slot>
579
+ <full/>
580
+ <char>
581
+ <typeface>22</typeface>
582
+ <mt_code_value>0x2190</mt_code_value>
583
+ <options>0</options>
584
+ </char>
585
+ <end/>
586
+ </tmpl>
587
+ <char>
588
+ <typeface>3</typeface>
589
+ <mt_code_value>0x0064</mt_code_value>
590
+ <options>0</options>
591
+ </char>
592
+ <char>
593
+ <typeface>6</typeface>
594
+ <mt_code_value>0x002B</mt_code_value>
595
+ <options>4</options>
596
+ <font_position>43</font_position>
597
+ </char>
598
+ <char>
599
+ <typeface>3</typeface>
600
+ <mt_code_value>0x0061</mt_code_value>
601
+ <options>0</options>
602
+ </char>
603
+ <tmpl>
604
+ <selector>tmARROW</selector>
605
+ <variation>tvAR_SINGLE</variation>
606
+ <variation>tvAR_LEFT</variation>
607
+ <variation>tvAR_RIGHT</variation>
608
+ <variation>tvAR_TOP</variation>
609
+ <template_specific_options>0</template_specific_options>
610
+ <sub/>
611
+ <slot>
612
+ <options>0</options>
613
+ <char>
614
+ <typeface>3</typeface>
615
+ <mt_code_value>0x0062</mt_code_value>
616
+ <options>0</options>
617
+ </char>
618
+ <end/>
619
+ </slot>
620
+ <slot>
621
+ <options>1</options>
622
+ </slot>
623
+ <full/>
624
+ <char>
625
+ <typeface>22</typeface>
626
+ <mt_code_value>0x2194</mt_code_value>
627
+ <options>0</options>
628
+ </char>
629
+ <end/>
630
+ </tmpl>
631
+ <char>
632
+ <typeface>3</typeface>
633
+ <mt_code_value>0x0063</mt_code_value>
634
+ <options>0</options>
635
+ </char>
636
+ <char>
637
+ <typeface>6</typeface>
638
+ <mt_code_value>0x002B</mt_code_value>
639
+ <options>4</options>
640
+ <font_position>43</font_position>
641
+ </char>
642
+ <char>
643
+ <typeface>3</typeface>
644
+ <mt_code_value>0x0061</mt_code_value>
645
+ <options>0</options>
646
+ </char>
647
+ <tmpl>
648
+ <selector>tmARROW</selector>
649
+ <variation>tvAR_SINGLE</variation>
650
+ <variation>tvAR_LEFT</variation>
651
+ <variation>tvAR_RIGHT</variation>
652
+ <variation>tvAR_BOTTOM</variation>
653
+ <template_specific_options>0</template_specific_options>
654
+ <sub/>
655
+ <slot>
656
+ <options>1</options>
657
+ </slot>
658
+ <slot>
659
+ <options>0</options>
660
+ <char>
661
+ <typeface>3</typeface>
662
+ <mt_code_value>0x0062</mt_code_value>
663
+ <options>0</options>
664
+ </char>
665
+ <end/>
666
+ </slot>
667
+ <full/>
668
+ <char>
669
+ <typeface>22</typeface>
670
+ <mt_code_value>0x2194</mt_code_value>
671
+ <options>0</options>
672
+ </char>
673
+ <end/>
674
+ </tmpl>
675
+ <char>
676
+ <typeface>3</typeface>
677
+ <mt_code_value>0x0063</mt_code_value>
678
+ <options>0</options>
679
+ </char>
680
+ <char>
681
+ <typeface>6</typeface>
682
+ <mt_code_value>0x002B</mt_code_value>
683
+ <options>4</options>
684
+ <font_position>43</font_position>
685
+ </char>
686
+ <char>
687
+ <typeface>3</typeface>
688
+ <mt_code_value>0x0061</mt_code_value>
689
+ <options>0</options>
690
+ </char>
691
+ <tmpl>
692
+ <selector>tmARROW</selector>
693
+ <variation>tvAR_SINGLE</variation>
694
+ <variation>tvAR_LEFT</variation>
695
+ <variation>tvAR_RIGHT</variation>
696
+ <variation>tvAR_TOP</variation>
697
+ <variation>tvAR_BOTTOM</variation>
698
+ <variation>tvAR_TOPBOTTOM</variation>
699
+ <template_specific_options>0</template_specific_options>
700
+ <sub/>
701
+ <slot>
702
+ <options>0</options>
703
+ <char>
704
+ <typeface>3</typeface>
705
+ <mt_code_value>0x0062</mt_code_value>
706
+ <options>0</options>
707
+ </char>
708
+ <end/>
709
+ </slot>
710
+ <slot>
711
+ <options>0</options>
712
+ <char>
713
+ <typeface>3</typeface>
714
+ <mt_code_value>0x0063</mt_code_value>
715
+ <options>0</options>
716
+ </char>
717
+ <end/>
718
+ </slot>
719
+ <full/>
720
+ <char>
721
+ <typeface>22</typeface>
722
+ <mt_code_value>0x2194</mt_code_value>
723
+ <options>0</options>
724
+ </char>
725
+ <end/>
726
+ </tmpl>
727
+ <char>
728
+ <typeface>3</typeface>
729
+ <mt_code_value>0x0064</mt_code_value>
730
+ <options>0</options>
731
+ </char>
732
+ <char>
733
+ <typeface>6</typeface>
734
+ <mt_code_value>0x002B</mt_code_value>
735
+ <options>4</options>
736
+ <font_position>43</font_position>
737
+ </char>
738
+ <char>
739
+ <typeface>3</typeface>
740
+ <mt_code_value>0x0061</mt_code_value>
741
+ <options>0</options>
742
+ </char>
743
+ <tmpl>
744
+ <selector>tmARROW</selector>
745
+ <variation>tvAR_SINGLE</variation>
746
+ <variation>tvAR_DOUBLE</variation>
747
+ <variation>tvAR_TOP</variation>
748
+ <template_specific_options>0</template_specific_options>
749
+ <sub/>
750
+ <slot>
751
+ <options>0</options>
752
+ <char>
753
+ <typeface>3</typeface>
754
+ <mt_code_value>0x0062</mt_code_value>
755
+ <options>0</options>
756
+ </char>
757
+ <end/>
758
+ </slot>
759
+ <slot>
760
+ <options>1</options>
761
+ </slot>
762
+ <full/>
763
+ <char>
764
+ <typeface>22</typeface>
765
+ <mt_code_value>0x2192</mt_code_value>
766
+ <options>0</options>
767
+ </char>
768
+ <char>
769
+ <typeface>22</typeface>
770
+ <mt_code_value>0x2190</mt_code_value>
771
+ <options>0</options>
772
+ </char>
773
+ <end/>
774
+ </tmpl>
775
+ <char>
776
+ <typeface>3</typeface>
777
+ <mt_code_value>0x0063</mt_code_value>
778
+ <options>0</options>
779
+ </char>
780
+ <end/>
781
+ </slot>
782
+ <slot>
783
+ <options>0</options>
784
+ <char>
785
+ <typeface>3</typeface>
786
+ <mt_code_value>0x0061</mt_code_value>
787
+ <options>0</options>
788
+ </char>
789
+ <tmpl>
790
+ <selector>tmARROW</selector>
791
+ <variation>tvAR_SINGLE</variation>
792
+ <variation>tvAR_DOUBLE</variation>
793
+ <variation>tvAR_BOTTOM</variation>
794
+ <template_specific_options>0</template_specific_options>
795
+ <sub/>
796
+ <slot>
797
+ <options>1</options>
798
+ </slot>
799
+ <slot>
800
+ <options>0</options>
801
+ <char>
802
+ <typeface>3</typeface>
803
+ <mt_code_value>0x0062</mt_code_value>
804
+ <options>0</options>
805
+ </char>
806
+ <end/>
807
+ </slot>
808
+ <full/>
809
+ <char>
810
+ <typeface>22</typeface>
811
+ <mt_code_value>0x2192</mt_code_value>
812
+ <options>0</options>
813
+ </char>
814
+ <char>
815
+ <typeface>22</typeface>
816
+ <mt_code_value>0x2190</mt_code_value>
817
+ <options>0</options>
818
+ </char>
819
+ <end/>
820
+ </tmpl>
821
+ <char>
822
+ <typeface>3</typeface>
823
+ <mt_code_value>0x0063</mt_code_value>
824
+ <options>0</options>
825
+ </char>
826
+ <char>
827
+ <typeface>6</typeface>
828
+ <mt_code_value>0x002B</mt_code_value>
829
+ <options>4</options>
830
+ <font_position>43</font_position>
831
+ </char>
832
+ <char>
833
+ <typeface>3</typeface>
834
+ <mt_code_value>0x0061</mt_code_value>
835
+ <options>0</options>
836
+ </char>
837
+ <tmpl>
838
+ <selector>tmARROW</selector>
839
+ <variation>tvAR_SINGLE</variation>
840
+ <variation>tvAR_DOUBLE</variation>
841
+ <variation>tvAR_TOP</variation>
842
+ <variation>tvAR_BOTTOM</variation>
843
+ <variation>tvAR_TOPBOTTOM</variation>
844
+ <template_specific_options>0</template_specific_options>
845
+ <sub/>
846
+ <slot>
847
+ <options>0</options>
848
+ <char>
849
+ <typeface>3</typeface>
850
+ <mt_code_value>0x0062</mt_code_value>
851
+ <options>0</options>
852
+ </char>
853
+ <end/>
854
+ </slot>
855
+ <slot>
856
+ <options>0</options>
857
+ <char>
858
+ <typeface>3</typeface>
859
+ <mt_code_value>0x0063</mt_code_value>
860
+ <options>0</options>
861
+ </char>
862
+ <end/>
863
+ </slot>
864
+ <full/>
865
+ <char>
866
+ <typeface>22</typeface>
867
+ <mt_code_value>0x2192</mt_code_value>
868
+ <options>0</options>
869
+ </char>
870
+ <char>
871
+ <typeface>22</typeface>
872
+ <mt_code_value>0x2190</mt_code_value>
873
+ <options>0</options>
874
+ </char>
875
+ <end/>
876
+ </tmpl>
877
+ <char>
878
+ <typeface>3</typeface>
879
+ <mt_code_value>0x0064</mt_code_value>
880
+ <options>0</options>
881
+ </char>
882
+ <char>
883
+ <typeface>6</typeface>
884
+ <mt_code_value>0x002B</mt_code_value>
885
+ <options>4</options>
886
+ <font_position>43</font_position>
887
+ </char>
888
+ <char>
889
+ <typeface>3</typeface>
890
+ <mt_code_value>0x0061</mt_code_value>
891
+ <options>0</options>
892
+ </char>
893
+ <tmpl>
894
+ <selector>tmARROW</selector>
895
+ <variation>tvAR_SINGLE</variation>
896
+ <variation>tvAR_DOUBLE</variation>
897
+ <variation>tvAR_LOS</variation>
898
+ <variation>tvAR_TOP</variation>
899
+ <template_specific_options>0</template_specific_options>
900
+ <sub/>
901
+ <slot>
902
+ <options>0</options>
903
+ <char>
904
+ <typeface>3</typeface>
905
+ <mt_code_value>0x0062</mt_code_value>
906
+ <options>0</options>
907
+ </char>
908
+ <end/>
909
+ </slot>
910
+ <slot>
911
+ <options>1</options>
912
+ </slot>
913
+ <full/>
914
+ <char>
915
+ <typeface>22</typeface>
916
+ <mt_code_value>0x2192</mt_code_value>
917
+ <options>0</options>
918
+ </char>
919
+ <char>
920
+ <typeface>22</typeface>
921
+ <mt_code_value>0x2190</mt_code_value>
922
+ <options>0</options>
923
+ </char>
924
+ <end/>
925
+ </tmpl>
926
+ <char>
927
+ <typeface>3</typeface>
928
+ <mt_code_value>0x0063</mt_code_value>
929
+ <options>0</options>
930
+ </char>
931
+ <char>
932
+ <typeface>6</typeface>
933
+ <mt_code_value>0x002B</mt_code_value>
934
+ <options>4</options>
935
+ <font_position>43</font_position>
936
+ </char>
937
+ <char>
938
+ <typeface>3</typeface>
939
+ <mt_code_value>0x0061</mt_code_value>
940
+ <options>0</options>
941
+ </char>
942
+ <tmpl>
943
+ <selector>tmARROW</selector>
944
+ <variation>tvAR_SINGLE</variation>
945
+ <variation>tvAR_DOUBLE</variation>
946
+ <variation>tvAR_LOS</variation>
947
+ <variation>tvAR_BOTTOM</variation>
948
+ <template_specific_options>0</template_specific_options>
949
+ <sub/>
950
+ <slot>
951
+ <options>1</options>
952
+ </slot>
953
+ <slot>
954
+ <options>0</options>
955
+ <char>
956
+ <typeface>3</typeface>
957
+ <mt_code_value>0x0062</mt_code_value>
958
+ <options>0</options>
959
+ </char>
960
+ <end/>
961
+ </slot>
962
+ <full/>
963
+ <char>
964
+ <typeface>22</typeface>
965
+ <mt_code_value>0x2192</mt_code_value>
966
+ <options>0</options>
967
+ </char>
968
+ <char>
969
+ <typeface>22</typeface>
970
+ <mt_code_value>0x2190</mt_code_value>
971
+ <options>0</options>
972
+ </char>
973
+ <end/>
974
+ </tmpl>
975
+ <char>
976
+ <typeface>3</typeface>
977
+ <mt_code_value>0x0063</mt_code_value>
978
+ <options>0</options>
979
+ </char>
980
+ <char>
981
+ <typeface>6</typeface>
982
+ <mt_code_value>0x002B</mt_code_value>
983
+ <options>4</options>
984
+ <font_position>43</font_position>
985
+ </char>
986
+ <char>
987
+ <typeface>3</typeface>
988
+ <mt_code_value>0x0061</mt_code_value>
989
+ <options>0</options>
990
+ </char>
991
+ <tmpl>
992
+ <selector>tmARROW</selector>
993
+ <variation>tvAR_SINGLE</variation>
994
+ <variation>tvAR_DOUBLE</variation>
995
+ <variation>tvAR_LOS</variation>
996
+ <variation>tvAR_TOP</variation>
997
+ <variation>tvAR_BOTTOM</variation>
998
+ <variation>tvAR_TOPBOTTOM</variation>
999
+ <template_specific_options>0</template_specific_options>
1000
+ <sub/>
1001
+ <slot>
1002
+ <options>0</options>
1003
+ <char>
1004
+ <typeface>3</typeface>
1005
+ <mt_code_value>0x0062</mt_code_value>
1006
+ <options>0</options>
1007
+ </char>
1008
+ <end/>
1009
+ </slot>
1010
+ <slot>
1011
+ <options>0</options>
1012
+ <char>
1013
+ <typeface>3</typeface>
1014
+ <mt_code_value>0x0063</mt_code_value>
1015
+ <options>0</options>
1016
+ </char>
1017
+ <end/>
1018
+ </slot>
1019
+ <full/>
1020
+ <char>
1021
+ <typeface>22</typeface>
1022
+ <mt_code_value>0x2192</mt_code_value>
1023
+ <options>0</options>
1024
+ </char>
1025
+ <char>
1026
+ <typeface>22</typeface>
1027
+ <mt_code_value>0x2190</mt_code_value>
1028
+ <options>0</options>
1029
+ </char>
1030
+ <end/>
1031
+ </tmpl>
1032
+ <char>
1033
+ <typeface>3</typeface>
1034
+ <mt_code_value>0x0064</mt_code_value>
1035
+ <options>0</options>
1036
+ </char>
1037
+ <end/>
1038
+ </slot>
1039
+ <slot>
1040
+ <options>0</options>
1041
+ <char>
1042
+ <typeface>3</typeface>
1043
+ <mt_code_value>0x0061</mt_code_value>
1044
+ <options>0</options>
1045
+ </char>
1046
+ <tmpl>
1047
+ <selector>tmARROW</selector>
1048
+ <variation>tvAR_SINGLE</variation>
1049
+ <variation>tvAR_DOUBLE</variation>
1050
+ <variation>tvAR_SOL</variation>
1051
+ <variation>tvAR_TOP</variation>
1052
+ <template_specific_options>0</template_specific_options>
1053
+ <sub/>
1054
+ <slot>
1055
+ <options>0</options>
1056
+ <char>
1057
+ <typeface>3</typeface>
1058
+ <mt_code_value>0x0062</mt_code_value>
1059
+ <options>0</options>
1060
+ </char>
1061
+ <end/>
1062
+ </slot>
1063
+ <slot>
1064
+ <options>1</options>
1065
+ </slot>
1066
+ <full/>
1067
+ <char>
1068
+ <typeface>22</typeface>
1069
+ <mt_code_value>0x2192</mt_code_value>
1070
+ <options>0</options>
1071
+ </char>
1072
+ <char>
1073
+ <typeface>22</typeface>
1074
+ <mt_code_value>0x2190</mt_code_value>
1075
+ <options>0</options>
1076
+ </char>
1077
+ <end/>
1078
+ </tmpl>
1079
+ <char>
1080
+ <typeface>3</typeface>
1081
+ <mt_code_value>0x0063</mt_code_value>
1082
+ <options>0</options>
1083
+ </char>
1084
+ <char>
1085
+ <typeface>6</typeface>
1086
+ <mt_code_value>0x002B</mt_code_value>
1087
+ <options>4</options>
1088
+ <font_position>43</font_position>
1089
+ </char>
1090
+ <char>
1091
+ <typeface>3</typeface>
1092
+ <mt_code_value>0x0061</mt_code_value>
1093
+ <options>0</options>
1094
+ </char>
1095
+ <tmpl>
1096
+ <selector>tmARROW</selector>
1097
+ <variation>tvAR_SINGLE</variation>
1098
+ <variation>tvAR_DOUBLE</variation>
1099
+ <variation>tvAR_SOL</variation>
1100
+ <variation>tvAR_BOTTOM</variation>
1101
+ <template_specific_options>0</template_specific_options>
1102
+ <sub/>
1103
+ <slot>
1104
+ <options>1</options>
1105
+ </slot>
1106
+ <slot>
1107
+ <options>0</options>
1108
+ <char>
1109
+ <typeface>3</typeface>
1110
+ <mt_code_value>0x0062</mt_code_value>
1111
+ <options>0</options>
1112
+ </char>
1113
+ <end/>
1114
+ </slot>
1115
+ <full/>
1116
+ <char>
1117
+ <typeface>22</typeface>
1118
+ <mt_code_value>0x2192</mt_code_value>
1119
+ <options>0</options>
1120
+ </char>
1121
+ <char>
1122
+ <typeface>22</typeface>
1123
+ <mt_code_value>0x2190</mt_code_value>
1124
+ <options>0</options>
1125
+ </char>
1126
+ <end/>
1127
+ </tmpl>
1128
+ <char>
1129
+ <typeface>3</typeface>
1130
+ <mt_code_value>0x0063</mt_code_value>
1131
+ <options>0</options>
1132
+ </char>
1133
+ <char>
1134
+ <typeface>6</typeface>
1135
+ <mt_code_value>0x002B</mt_code_value>
1136
+ <options>4</options>
1137
+ <font_position>43</font_position>
1138
+ </char>
1139
+ <char>
1140
+ <typeface>3</typeface>
1141
+ <mt_code_value>0x0061</mt_code_value>
1142
+ <options>0</options>
1143
+ </char>
1144
+ <tmpl>
1145
+ <selector>tmARROW</selector>
1146
+ <variation>tvAR_SINGLE</variation>
1147
+ <variation>tvAR_DOUBLE</variation>
1148
+ <variation>tvAR_SOL</variation>
1149
+ <variation>tvAR_TOP</variation>
1150
+ <variation>tvAR_BOTTOM</variation>
1151
+ <variation>tvAR_TOPBOTTOM</variation>
1152
+ <template_specific_options>0</template_specific_options>
1153
+ <sub/>
1154
+ <slot>
1155
+ <options>0</options>
1156
+ <char>
1157
+ <typeface>3</typeface>
1158
+ <mt_code_value>0x0062</mt_code_value>
1159
+ <options>0</options>
1160
+ </char>
1161
+ <end/>
1162
+ </slot>
1163
+ <slot>
1164
+ <options>0</options>
1165
+ <char>
1166
+ <typeface>3</typeface>
1167
+ <mt_code_value>0x0063</mt_code_value>
1168
+ <options>0</options>
1169
+ </char>
1170
+ <end/>
1171
+ </slot>
1172
+ <full/>
1173
+ <char>
1174
+ <typeface>22</typeface>
1175
+ <mt_code_value>0x2192</mt_code_value>
1176
+ <options>0</options>
1177
+ </char>
1178
+ <char>
1179
+ <typeface>22</typeface>
1180
+ <mt_code_value>0x2190</mt_code_value>
1181
+ <options>0</options>
1182
+ </char>
1183
+ <end/>
1184
+ </tmpl>
1185
+ <char>
1186
+ <typeface>3</typeface>
1187
+ <mt_code_value>0x0064</mt_code_value>
1188
+ <options>0</options>
1189
+ </char>
1190
+ <char>
1191
+ <typeface>6</typeface>
1192
+ <mt_code_value>0x002B</mt_code_value>
1193
+ <options>4</options>
1194
+ <font_position>43</font_position>
1195
+ </char>
1196
+ <char>
1197
+ <typeface>3</typeface>
1198
+ <mt_code_value>0x0061</mt_code_value>
1199
+ <options>0</options>
1200
+ </char>
1201
+ <tmpl>
1202
+ <selector>tmARROW</selector>
1203
+ <variation>tvAR_SINGLE</variation>
1204
+ <variation>tvAR_HARPOON</variation>
1205
+ <variation>tvAR_TOP</variation>
1206
+ <template_specific_options>0</template_specific_options>
1207
+ <sub/>
1208
+ <slot>
1209
+ <options>0</options>
1210
+ <char>
1211
+ <typeface>3</typeface>
1212
+ <mt_code_value>0x0062</mt_code_value>
1213
+ <options>0</options>
1214
+ </char>
1215
+ <end/>
1216
+ </slot>
1217
+ <slot>
1218
+ <options>1</options>
1219
+ </slot>
1220
+ <full/>
1221
+ <char>
1222
+ <typeface>22</typeface>
1223
+ <mt_code_value>0x21C0</mt_code_value>
1224
+ <options>0</options>
1225
+ </char>
1226
+ <char>
1227
+ <typeface>22</typeface>
1228
+ <mt_code_value>0x21BD</mt_code_value>
1229
+ <options>0</options>
1230
+ </char>
1231
+ <end/>
1232
+ </tmpl>
1233
+ <char>
1234
+ <typeface>3</typeface>
1235
+ <mt_code_value>0x0063</mt_code_value>
1236
+ <options>0</options>
1237
+ </char>
1238
+ <char>
1239
+ <typeface>6</typeface>
1240
+ <mt_code_value>0x002B</mt_code_value>
1241
+ <options>4</options>
1242
+ <font_position>43</font_position>
1243
+ </char>
1244
+ <char>
1245
+ <typeface>3</typeface>
1246
+ <mt_code_value>0x0061</mt_code_value>
1247
+ <options>0</options>
1248
+ </char>
1249
+ <tmpl>
1250
+ <selector>tmARROW</selector>
1251
+ <variation>tvAR_SINGLE</variation>
1252
+ <variation>tvAR_HARPOON</variation>
1253
+ <variation>tvAR_BOTTOM</variation>
1254
+ <template_specific_options>0</template_specific_options>
1255
+ <sub/>
1256
+ <slot>
1257
+ <options>1</options>
1258
+ </slot>
1259
+ <slot>
1260
+ <options>0</options>
1261
+ <char>
1262
+ <typeface>3</typeface>
1263
+ <mt_code_value>0x0062</mt_code_value>
1264
+ <options>0</options>
1265
+ </char>
1266
+ <end/>
1267
+ </slot>
1268
+ <full/>
1269
+ <char>
1270
+ <typeface>22</typeface>
1271
+ <mt_code_value>0x21C0</mt_code_value>
1272
+ <options>0</options>
1273
+ </char>
1274
+ <char>
1275
+ <typeface>22</typeface>
1276
+ <mt_code_value>0x21BD</mt_code_value>
1277
+ <options>0</options>
1278
+ </char>
1279
+ <end/>
1280
+ </tmpl>
1281
+ <char>
1282
+ <typeface>3</typeface>
1283
+ <mt_code_value>0x0063</mt_code_value>
1284
+ <options>0</options>
1285
+ </char>
1286
+ <end/>
1287
+ </slot>
1288
+ <slot>
1289
+ <options>0</options>
1290
+ <char>
1291
+ <typeface>3</typeface>
1292
+ <mt_code_value>0x0061</mt_code_value>
1293
+ <options>0</options>
1294
+ </char>
1295
+ <tmpl>
1296
+ <selector>tmARROW</selector>
1297
+ <variation>tvAR_SINGLE</variation>
1298
+ <variation>tvAR_HARPOON</variation>
1299
+ <variation>tvAR_TOP</variation>
1300
+ <variation>tvAR_BOTTOM</variation>
1301
+ <variation>tvAR_TOPBOTTOM</variation>
1302
+ <template_specific_options>0</template_specific_options>
1303
+ <sub/>
1304
+ <slot>
1305
+ <options>0</options>
1306
+ <char>
1307
+ <typeface>3</typeface>
1308
+ <mt_code_value>0x0062</mt_code_value>
1309
+ <options>0</options>
1310
+ </char>
1311
+ <end/>
1312
+ </slot>
1313
+ <slot>
1314
+ <options>0</options>
1315
+ <char>
1316
+ <typeface>3</typeface>
1317
+ <mt_code_value>0x0063</mt_code_value>
1318
+ <options>0</options>
1319
+ </char>
1320
+ <end/>
1321
+ </slot>
1322
+ <full/>
1323
+ <char>
1324
+ <typeface>22</typeface>
1325
+ <mt_code_value>0x21C0</mt_code_value>
1326
+ <options>0</options>
1327
+ </char>
1328
+ <char>
1329
+ <typeface>22</typeface>
1330
+ <mt_code_value>0x21BD</mt_code_value>
1331
+ <options>0</options>
1332
+ </char>
1333
+ <end/>
1334
+ </tmpl>
1335
+ <char>
1336
+ <typeface>3</typeface>
1337
+ <mt_code_value>0x0064</mt_code_value>
1338
+ <options>0</options>
1339
+ </char>
1340
+ <char>
1341
+ <typeface>6</typeface>
1342
+ <mt_code_value>0x002B</mt_code_value>
1343
+ <options>4</options>
1344
+ <font_position>43</font_position>
1345
+ </char>
1346
+ <char>
1347
+ <typeface>3</typeface>
1348
+ <mt_code_value>0x0061</mt_code_value>
1349
+ <options>0</options>
1350
+ </char>
1351
+ <tmpl>
1352
+ <selector>tmARROW</selector>
1353
+ <variation>tvAR_SINGLE</variation>
1354
+ <variation>tvAR_LOS</variation>
1355
+ <variation>tvAR_HARPOON</variation>
1356
+ <variation>tvAR_TOP</variation>
1357
+ <template_specific_options>0</template_specific_options>
1358
+ <sub/>
1359
+ <slot>
1360
+ <options>0</options>
1361
+ <char>
1362
+ <typeface>3</typeface>
1363
+ <mt_code_value>0x0062</mt_code_value>
1364
+ <options>0</options>
1365
+ </char>
1366
+ <end/>
1367
+ </slot>
1368
+ <slot>
1369
+ <options>1</options>
1370
+ </slot>
1371
+ <full/>
1372
+ <char>
1373
+ <typeface>22</typeface>
1374
+ <mt_code_value>0x21C0</mt_code_value>
1375
+ <options>0</options>
1376
+ </char>
1377
+ <char>
1378
+ <typeface>22</typeface>
1379
+ <mt_code_value>0x21BD</mt_code_value>
1380
+ <options>0</options>
1381
+ </char>
1382
+ <end/>
1383
+ </tmpl>
1384
+ <char>
1385
+ <typeface>3</typeface>
1386
+ <mt_code_value>0x0063</mt_code_value>
1387
+ <options>0</options>
1388
+ </char>
1389
+ <char>
1390
+ <typeface>6</typeface>
1391
+ <mt_code_value>0x002B</mt_code_value>
1392
+ <options>4</options>
1393
+ <font_position>43</font_position>
1394
+ </char>
1395
+ <char>
1396
+ <typeface>3</typeface>
1397
+ <mt_code_value>0x0061</mt_code_value>
1398
+ <options>0</options>
1399
+ </char>
1400
+ <end/>
1401
+ </slot>
1402
+ <end/>
1403
+ </pile>
1404
+ <end/>
1405
+ </mtef>
1406
+ </root>