mathtype 0.0.8 → 0.1.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (110) hide show
  1. checksums.yaml +4 -4
  2. data/.gitignore +3 -0
  3. data/.travis.yml +7 -0
  4. data/Rakefile +8 -0
  5. data/lib/file_parser/ole.rb +15 -0
  6. data/lib/file_parser/parser.rb +19 -0
  7. data/lib/file_parser/wmf.rb +28 -0
  8. data/lib/mathtype.rb +30 -7
  9. data/lib/mathtype/version.rb +1 -1
  10. data/lib/records/bintypes.rb +18 -0
  11. data/lib/records/mtef.rb +8 -114
  12. data/lib/records/nudge.rb +9 -5
  13. data/lib/records/ruler.rb +1 -1
  14. data/lib/records/typesizes.rb +5 -10
  15. data/lib/records3/char.rb +53 -0
  16. data/lib/records3/embell.rb +109 -0
  17. data/lib/records3/font.rb +27 -0
  18. data/lib/records3/line.rb +47 -0
  19. data/lib/records3/matrix.rb +80 -0
  20. data/lib/records3/mtef.rb +97 -0
  21. data/lib/records3/options.rb +5 -0
  22. data/lib/records3/pile.rb +43 -0
  23. data/lib/records3/size.rb +75 -0
  24. data/lib/records3/snapshot.rb +19 -0
  25. data/lib/records3/tmpl.rb +751 -0
  26. data/lib/{records → records5}/char.rb +6 -12
  27. data/lib/{records → records5}/color.rb +1 -1
  28. data/lib/{records → records5}/color_def.rb +8 -8
  29. data/lib/{records → records5}/embell.rb +2 -2
  30. data/lib/{records → records5}/encoding_def.rb +1 -1
  31. data/lib/{records → records5}/eqn_prefs.rb +2 -2
  32. data/lib/{records → records5}/font_def.rb +1 -1
  33. data/lib/{records → records5}/font_style_def.rb +1 -1
  34. data/lib/{records → records5}/future.rb +1 -1
  35. data/lib/{records → records5}/line.rb +3 -3
  36. data/lib/{records → records5}/matrix.rb +11 -3
  37. data/lib/records5/mtef.rb +129 -0
  38. data/lib/{records → records5}/pile.rb +2 -2
  39. data/lib/{records → records5}/size.rb +9 -7
  40. data/lib/records5/snapshot.rb +19 -0
  41. data/lib/{records → records5}/tmpl.rb +2 -2
  42. data/spec/fixtures/expected/mathtype3/ceil.xml +38 -0
  43. data/spec/fixtures/expected/mathtype3/fence.xml +77 -0
  44. data/spec/fixtures/expected/mathtype3/floor.xml +38 -0
  45. data/spec/fixtures/expected/mathtype3/frac.xml +136 -0
  46. data/spec/fixtures/expected/mathtype3/large_nudge.xml +135 -0
  47. data/spec/fixtures/expected/mathtype3/lim_embell.xml +247 -0
  48. data/spec/fixtures/expected/mathtype3/matrix_2x1.xml +500 -0
  49. data/spec/fixtures/expected/mathtype3/pile.xml +188 -0
  50. data/spec/fixtures/expected/mathtype3/sigma_subsup.xml +46 -0
  51. data/spec/fixtures/expected/mathtype3/small_nudge.xml +90 -0
  52. data/spec/fixtures/expected/mathtype3/sqrt.xml +132 -0
  53. data/spec/fixtures/expected/{299.xml → mathtype5/299.xml} +30 -15
  54. data/spec/fixtures/expected/{arrows.xml → mathtype5/arrows.xml} +30 -15
  55. data/spec/fixtures/expected/{embedded.xml → mathtype5/embedded.xml} +29 -14
  56. data/spec/fixtures/expected/{embellishments.xml → mathtype5/embellishments.xml} +30 -15
  57. data/spec/fixtures/expected/{equation1.xml → mathtype5/equation1.xml} +30 -15
  58. data/spec/fixtures/expected/{equation10.xml → mathtype5/equation10.xml} +30 -15
  59. data/spec/fixtures/expected/{equation11.xml → mathtype5/equation11.xml} +30 -15
  60. data/spec/fixtures/expected/{equation12.xml → mathtype5/equation12.xml} +30 -15
  61. data/spec/fixtures/expected/{equation13.xml → mathtype5/equation13.xml} +30 -15
  62. data/spec/fixtures/expected/{equation2.xml → mathtype5/equation2.xml} +30 -15
  63. data/spec/fixtures/expected/{equation3.xml → mathtype5/equation3.xml} +30 -15
  64. data/spec/fixtures/expected/{equation4.xml → mathtype5/equation4.xml} +30 -15
  65. data/spec/fixtures/expected/{equation5.xml → mathtype5/equation5.xml} +30 -15
  66. data/spec/fixtures/expected/{equation6.xml → mathtype5/equation6.xml} +30 -15
  67. data/spec/fixtures/expected/{equation7.xml → mathtype5/equation7.xml} +30 -15
  68. data/spec/fixtures/expected/{equation8.xml → mathtype5/equation8.xml} +30 -15
  69. data/spec/fixtures/expected/{equation9.xml → mathtype5/equation9.xml} +30 -15
  70. data/spec/fixtures/expected/{fences.xml → mathtype5/fences.xml} +30 -15
  71. data/spec/fixtures/expected/{integrals.xml → mathtype5/integrals.xml} +30 -15
  72. data/spec/fixtures/expected/mathtype5/matrix-border.xml +365 -0
  73. data/spec/fixtures/expected/mathtype5/matrix.xml +382 -0
  74. data/spec/fixtures/expected/{sizes.xml → mathtype5/sizes.xml} +30 -15
  75. data/spec/fixtures/input/mathtype3/ceil.bin +0 -0
  76. data/spec/fixtures/input/mathtype3/fence.bin +0 -0
  77. data/spec/fixtures/input/mathtype3/floor.bin +0 -0
  78. data/spec/fixtures/input/mathtype3/frac.bin +0 -0
  79. data/spec/fixtures/input/mathtype3/large_nudge.bin +0 -0
  80. data/spec/fixtures/input/mathtype3/lim_embell.bin +0 -0
  81. data/spec/fixtures/input/mathtype3/matrix_2x1.bin +0 -0
  82. data/spec/fixtures/input/mathtype3/pile.bin +0 -0
  83. data/spec/fixtures/input/mathtype3/sigma_subsup.bin +0 -0
  84. data/spec/fixtures/input/mathtype3/small_nudge.bin +0 -0
  85. data/spec/fixtures/input/mathtype3/sqrt.bin +0 -0
  86. data/spec/fixtures/input/{299.bin → mathtype5/299.bin} +0 -0
  87. data/spec/fixtures/input/{arrows.bin → mathtype5/arrows.bin} +0 -0
  88. data/spec/fixtures/input/{embedded.bin → mathtype5/embedded.bin} +0 -0
  89. data/spec/fixtures/input/{embellishments.bin → mathtype5/embellishments.bin} +0 -0
  90. data/spec/fixtures/input/{equation1.bin → mathtype5/equation1.bin} +0 -0
  91. data/spec/fixtures/input/{equation10.bin → mathtype5/equation10.bin} +0 -0
  92. data/spec/fixtures/input/{equation11.bin → mathtype5/equation11.bin} +0 -0
  93. data/spec/fixtures/input/{equation12.bin → mathtype5/equation12.bin} +0 -0
  94. data/spec/fixtures/input/{equation13.bin → mathtype5/equation13.bin} +0 -0
  95. data/spec/fixtures/input/{equation2.bin → mathtype5/equation2.bin} +0 -0
  96. data/spec/fixtures/input/{equation3.bin → mathtype5/equation3.bin} +0 -0
  97. data/spec/fixtures/input/{equation4.bin → mathtype5/equation4.bin} +0 -0
  98. data/spec/fixtures/input/{equation5.bin → mathtype5/equation5.bin} +0 -0
  99. data/spec/fixtures/input/{equation6.bin → mathtype5/equation6.bin} +0 -0
  100. data/spec/fixtures/input/{equation7.bin → mathtype5/equation7.bin} +0 -0
  101. data/spec/fixtures/input/{equation8.bin → mathtype5/equation8.bin} +0 -0
  102. data/spec/fixtures/input/{equation9.bin → mathtype5/equation9.bin} +0 -0
  103. data/spec/fixtures/input/{fences.bin → mathtype5/fences.bin} +0 -0
  104. data/spec/fixtures/input/{integrals.bin → mathtype5/integrals.bin} +0 -0
  105. data/spec/fixtures/input/mathtype5/matrix-border.bin +0 -0
  106. data/spec/fixtures/input/mathtype5/matrix.bin +0 -0
  107. data/spec/fixtures/input/{sizes.bin → mathtype5/sizes.bin} +0 -0
  108. data/spec/mathtype_spec.rb +11 -9
  109. data/test-mathtype.rb +2 -0
  110. metadata +168 -97
@@ -0,0 +1,500 @@
1
+ <?xml version="1.0"?>
2
+ <root>
3
+ <mtef>
4
+ <mtef_version>3</mtef_version>
5
+ <platform>1</platform>
6
+ <product>1</product>
7
+ <product_version>3</product_version>
8
+ <product_subversion>10</product_subversion>
9
+ <full/>
10
+ <slot>
11
+ <options>0</options>
12
+ <char>
13
+ <options>0</options>
14
+ <typeface>4</typeface>
15
+ <mt_code_value>0x03C9</mt_code_value>
16
+ </char>
17
+ <tmpl>
18
+ <options>0</options>
19
+ <selector>tmSUBSUP</selector>
20
+ <template_specific_options>0</template_specific_options>
21
+ <sub/>
22
+ <slot>
23
+ <options>0</options>
24
+ <char>
25
+ <options>1</options>
26
+ <typeface>3</typeface>
27
+ <mt_code_value>0x0072</mt_code_value>
28
+ </char>
29
+ <char>
30
+ <options>1</options>
31
+ <typeface>3</typeface>
32
+ <mt_code_value>0x0073</mt_code_value>
33
+ </char>
34
+ <end/>
35
+ </slot>
36
+ <slot>
37
+ <options>0</options>
38
+ <char>
39
+ <options>0</options>
40
+ <typeface>2</typeface>
41
+ <mt_code_value>0x002A</mt_code_value>
42
+ </char>
43
+ <end/>
44
+ </slot>
45
+ <end/>
46
+ </tmpl>
47
+ <full/>
48
+ <char>
49
+ <options>0</options>
50
+ <typeface>6</typeface>
51
+ <mt_code_value>0x003D</mt_code_value>
52
+ </char>
53
+ <tmpl>
54
+ <options>0</options>
55
+ <selector>tmBRACE</selector>
56
+ <variation>tvFENCE_L</variation>
57
+ <template_specific_options>0</template_specific_options>
58
+ <slot>
59
+ <options>0</options>
60
+ <matrix>
61
+ <options>0</options>
62
+ <valign>center_baseline</valign>
63
+ <h_just>left</h_just>
64
+ <v_just>center_baseline</v_just>
65
+ <rows>2</rows>
66
+ <cols>1</cols>
67
+ <row_parts>0</row_parts>
68
+ <row_parts>0</row_parts>
69
+ <row_parts>0</row_parts>
70
+ <col_parts>0</col_parts>
71
+ <col_parts>0</col_parts>
72
+ <slot>
73
+ <options>0</options>
74
+ <char>
75
+ <options>0</options>
76
+ <typeface>8</typeface>
77
+ <mt_code_value>0x0031</mt_code_value>
78
+ </char>
79
+ <char>
80
+ <options>0</options>
81
+ <typeface>24</typeface>
82
+ <mt_code_value>0xEB04</mt_code_value>
83
+ </char>
84
+ <char>
85
+ <options>0</options>
86
+ <typeface>24</typeface>
87
+ <mt_code_value>0xEB04</mt_code_value>
88
+ </char>
89
+ <char>
90
+ <options>1</options>
91
+ <typeface>3</typeface>
92
+ <mt_code_value>0x0069</mt_code_value>
93
+ </char>
94
+ <char>
95
+ <options>1</options>
96
+ <typeface>3</typeface>
97
+ <mt_code_value>0x0066</mt_code_value>
98
+ </char>
99
+ <char>
100
+ <options>0</options>
101
+ <typeface>24</typeface>
102
+ <mt_code_value>0xEB04</mt_code_value>
103
+ </char>
104
+ <char>
105
+ <options>0</options>
106
+ <typeface>24</typeface>
107
+ <mt_code_value>0xEB01</mt_code_value>
108
+ </char>
109
+ <char>
110
+ <options>1</options>
111
+ <typeface>3</typeface>
112
+ <mt_code_value>0x0072</mt_code_value>
113
+ </char>
114
+ <char>
115
+ <options>1</options>
116
+ <typeface>3</typeface>
117
+ <mt_code_value>0x0065</mt_code_value>
118
+ </char>
119
+ <char>
120
+ <options>1</options>
121
+ <typeface>3</typeface>
122
+ <mt_code_value>0x0067</mt_code_value>
123
+ </char>
124
+ <char>
125
+ <options>1</options>
126
+ <typeface>3</typeface>
127
+ <mt_code_value>0x0069</mt_code_value>
128
+ </char>
129
+ <char>
130
+ <options>1</options>
131
+ <typeface>3</typeface>
132
+ <mt_code_value>0x006F</mt_code_value>
133
+ </char>
134
+ <char>
135
+ <options>1</options>
136
+ <typeface>3</typeface>
137
+ <mt_code_value>0x006E</mt_code_value>
138
+ </char>
139
+ <char>
140
+ <options>1</options>
141
+ <typeface>3</typeface>
142
+ <mt_code_value>0x0073</mt_code_value>
143
+ </char>
144
+ <char>
145
+ <options>0</options>
146
+ <typeface>24</typeface>
147
+ <mt_code_value>0xEB04</mt_code_value>
148
+ </char>
149
+ <char>
150
+ <options>1</options>
151
+ <typeface>3</typeface>
152
+ <mt_code_value>0x0072</mt_code_value>
153
+ </char>
154
+ <char>
155
+ <options>0</options>
156
+ <typeface>24</typeface>
157
+ <mt_code_value>0xEB04</mt_code_value>
158
+ </char>
159
+ <char>
160
+ <options>1</options>
161
+ <typeface>3</typeface>
162
+ <mt_code_value>0x0061</mt_code_value>
163
+ </char>
164
+ <char>
165
+ <options>1</options>
166
+ <typeface>3</typeface>
167
+ <mt_code_value>0x006E</mt_code_value>
168
+ </char>
169
+ <char>
170
+ <options>1</options>
171
+ <typeface>3</typeface>
172
+ <mt_code_value>0x0064</mt_code_value>
173
+ </char>
174
+ <char>
175
+ <options>0</options>
176
+ <typeface>24</typeface>
177
+ <mt_code_value>0xEB04</mt_code_value>
178
+ </char>
179
+ <char>
180
+ <options>1</options>
181
+ <typeface>3</typeface>
182
+ <mt_code_value>0x0073</mt_code_value>
183
+ </char>
184
+ <char>
185
+ <options>0</options>
186
+ <typeface>24</typeface>
187
+ <mt_code_value>0xEB04</mt_code_value>
188
+ </char>
189
+ <char>
190
+ <options>1</options>
191
+ <typeface>3</typeface>
192
+ <mt_code_value>0x0073</mt_code_value>
193
+ </char>
194
+ <char>
195
+ <options>1</options>
196
+ <typeface>3</typeface>
197
+ <mt_code_value>0x0068</mt_code_value>
198
+ </char>
199
+ <char>
200
+ <options>1</options>
201
+ <typeface>3</typeface>
202
+ <mt_code_value>0x0061</mt_code_value>
203
+ </char>
204
+ <char>
205
+ <options>1</options>
206
+ <typeface>3</typeface>
207
+ <mt_code_value>0x0072</mt_code_value>
208
+ </char>
209
+ <char>
210
+ <options>1</options>
211
+ <typeface>3</typeface>
212
+ <mt_code_value>0x0065</mt_code_value>
213
+ </char>
214
+ <char>
215
+ <options>0</options>
216
+ <typeface>24</typeface>
217
+ <mt_code_value>0xEB04</mt_code_value>
218
+ </char>
219
+ <char>
220
+ <options>1</options>
221
+ <typeface>3</typeface>
222
+ <mt_code_value>0x0061</mt_code_value>
223
+ </char>
224
+ <char>
225
+ <options>0</options>
226
+ <typeface>24</typeface>
227
+ <mt_code_value>0xEB04</mt_code_value>
228
+ </char>
229
+ <char>
230
+ <options>1</options>
231
+ <typeface>3</typeface>
232
+ <mt_code_value>0x0063</mt_code_value>
233
+ </char>
234
+ <char>
235
+ <options>1</options>
236
+ <typeface>3</typeface>
237
+ <mt_code_value>0x006F</mt_code_value>
238
+ </char>
239
+ <char>
240
+ <options>1</options>
241
+ <typeface>3</typeface>
242
+ <mt_code_value>0x006D</mt_code_value>
243
+ </char>
244
+ <char>
245
+ <options>1</options>
246
+ <typeface>3</typeface>
247
+ <mt_code_value>0x006D</mt_code_value>
248
+ </char>
249
+ <char>
250
+ <options>1</options>
251
+ <typeface>3</typeface>
252
+ <mt_code_value>0x006F</mt_code_value>
253
+ </char>
254
+ <char>
255
+ <options>1</options>
256
+ <typeface>3</typeface>
257
+ <mt_code_value>0x006E</mt_code_value>
258
+ </char>
259
+ <char>
260
+ <options>0</options>
261
+ <typeface>24</typeface>
262
+ <mt_code_value>0xEB04</mt_code_value>
263
+ </char>
264
+ <char>
265
+ <options>1</options>
266
+ <typeface>3</typeface>
267
+ <mt_code_value>0x0062</mt_code_value>
268
+ </char>
269
+ <char>
270
+ <options>1</options>
271
+ <typeface>3</typeface>
272
+ <mt_code_value>0x006F</mt_code_value>
273
+ </char>
274
+ <char>
275
+ <options>1</options>
276
+ <typeface>3</typeface>
277
+ <mt_code_value>0x0075</mt_code_value>
278
+ </char>
279
+ <char>
280
+ <options>1</options>
281
+ <typeface>3</typeface>
282
+ <mt_code_value>0x006E</mt_code_value>
283
+ </char>
284
+ <char>
285
+ <options>1</options>
286
+ <typeface>3</typeface>
287
+ <mt_code_value>0x0064</mt_code_value>
288
+ </char>
289
+ <char>
290
+ <options>1</options>
291
+ <typeface>3</typeface>
292
+ <mt_code_value>0x0061</mt_code_value>
293
+ </char>
294
+ <char>
295
+ <options>1</options>
296
+ <typeface>3</typeface>
297
+ <mt_code_value>0x0072</mt_code_value>
298
+ </char>
299
+ <char>
300
+ <options>1</options>
301
+ <typeface>3</typeface>
302
+ <mt_code_value>0x0079</mt_code_value>
303
+ </char>
304
+ <char>
305
+ <options>0</options>
306
+ <typeface>24</typeface>
307
+ <mt_code_value>0xEB04</mt_code_value>
308
+ </char>
309
+ <char>
310
+ <options>0</options>
311
+ <typeface>2</typeface>
312
+ <mt_code_value>0x0028</mt_code_value>
313
+ </char>
314
+ <char>
315
+ <options>1</options>
316
+ <typeface>3</typeface>
317
+ <mt_code_value>0x0065</mt_code_value>
318
+ </char>
319
+ <char>
320
+ <options>1</options>
321
+ <typeface>3</typeface>
322
+ <mt_code_value>0x0064</mt_code_value>
323
+ </char>
324
+ <char>
325
+ <options>1</options>
326
+ <typeface>3</typeface>
327
+ <mt_code_value>0x0067</mt_code_value>
328
+ </char>
329
+ <char>
330
+ <options>1</options>
331
+ <typeface>3</typeface>
332
+ <mt_code_value>0x0065</mt_code_value>
333
+ </char>
334
+ <char>
335
+ <options>0</options>
336
+ <typeface>2</typeface>
337
+ <mt_code_value>0x0029</mt_code_value>
338
+ </char>
339
+ <end/>
340
+ </slot>
341
+ <slot>
342
+ <options>0</options>
343
+ <char>
344
+ <options>0</options>
345
+ <typeface>8</typeface>
346
+ <mt_code_value>0x0030</mt_code_value>
347
+ </char>
348
+ <char>
349
+ <options>0</options>
350
+ <typeface>24</typeface>
351
+ <mt_code_value>0xEB04</mt_code_value>
352
+ </char>
353
+ <char>
354
+ <options>1</options>
355
+ <typeface>3</typeface>
356
+ <mt_code_value>0x006F</mt_code_value>
357
+ </char>
358
+ <char>
359
+ <options>1</options>
360
+ <typeface>3</typeface>
361
+ <mt_code_value>0x0074</mt_code_value>
362
+ </char>
363
+ <char>
364
+ <options>1</options>
365
+ <typeface>3</typeface>
366
+ <mt_code_value>0x0068</mt_code_value>
367
+ </char>
368
+ <char>
369
+ <options>1</options>
370
+ <typeface>3</typeface>
371
+ <mt_code_value>0x0065</mt_code_value>
372
+ </char>
373
+ <char>
374
+ <options>1</options>
375
+ <typeface>3</typeface>
376
+ <mt_code_value>0x0072</mt_code_value>
377
+ </char>
378
+ <char>
379
+ <options>1</options>
380
+ <typeface>3</typeface>
381
+ <mt_code_value>0x0077</mt_code_value>
382
+ </char>
383
+ <char>
384
+ <options>1</options>
385
+ <typeface>3</typeface>
386
+ <mt_code_value>0x0069</mt_code_value>
387
+ </char>
388
+ <char>
389
+ <options>1</options>
390
+ <typeface>3</typeface>
391
+ <mt_code_value>0x0073</mt_code_value>
392
+ </char>
393
+ <char>
394
+ <options>1</options>
395
+ <typeface>3</typeface>
396
+ <mt_code_value>0x0065</mt_code_value>
397
+ </char>
398
+ <char>
399
+ <options>0</options>
400
+ <typeface>24</typeface>
401
+ <mt_code_value>0xEB04</mt_code_value>
402
+ </char>
403
+ <char>
404
+ <options>0</options>
405
+ <typeface>24</typeface>
406
+ <mt_code_value>0xEB04</mt_code_value>
407
+ </char>
408
+ <char>
409
+ <options>0</options>
410
+ <typeface>24</typeface>
411
+ <mt_code_value>0xEB05</mt_code_value>
412
+ </char>
413
+ <char>
414
+ <options>0</options>
415
+ <typeface>24</typeface>
416
+ <mt_code_value>0xEB05</mt_code_value>
417
+ </char>
418
+ <char>
419
+ <options>0</options>
420
+ <typeface>24</typeface>
421
+ <mt_code_value>0xEB05</mt_code_value>
422
+ </char>
423
+ <char>
424
+ <options>0</options>
425
+ <typeface>24</typeface>
426
+ <mt_code_value>0xEB05</mt_code_value>
427
+ </char>
428
+ <char>
429
+ <options>0</options>
430
+ <typeface>24</typeface>
431
+ <mt_code_value>0xEB05</mt_code_value>
432
+ </char>
433
+ <char>
434
+ <options>0</options>
435
+ <typeface>24</typeface>
436
+ <mt_code_value>0xEB05</mt_code_value>
437
+ </char>
438
+ <char>
439
+ <options>0</options>
440
+ <typeface>24</typeface>
441
+ <mt_code_value>0xEB05</mt_code_value>
442
+ </char>
443
+ <char>
444
+ <options>0</options>
445
+ <typeface>24</typeface>
446
+ <mt_code_value>0xEB05</mt_code_value>
447
+ </char>
448
+ <char>
449
+ <options>0</options>
450
+ <typeface>24</typeface>
451
+ <mt_code_value>0xEB05</mt_code_value>
452
+ </char>
453
+ <char>
454
+ <options>0</options>
455
+ <typeface>24</typeface>
456
+ <mt_code_value>0xEB05</mt_code_value>
457
+ </char>
458
+ <char>
459
+ <options>0</options>
460
+ <typeface>24</typeface>
461
+ <mt_code_value>0xEB05</mt_code_value>
462
+ </char>
463
+ <char>
464
+ <options>0</options>
465
+ <typeface>24</typeface>
466
+ <mt_code_value>0xEB05</mt_code_value>
467
+ </char>
468
+ <char>
469
+ <options>0</options>
470
+ <typeface>24</typeface>
471
+ <mt_code_value>0xEB05</mt_code_value>
472
+ </char>
473
+ <char>
474
+ <options>0</options>
475
+ <typeface>24</typeface>
476
+ <mt_code_value>0xEB05</mt_code_value>
477
+ </char>
478
+ <char>
479
+ <options>0</options>
480
+ <typeface>24</typeface>
481
+ <mt_code_value>0xEB05</mt_code_value>
482
+ </char>
483
+ <end/>
484
+ </slot>
485
+ <end/>
486
+ </matrix>
487
+ <end/>
488
+ </slot>
489
+ <char>
490
+ <options>0</options>
491
+ <typeface>22</typeface>
492
+ <mt_code_value>0x007B</mt_code_value>
493
+ </char>
494
+ <end/>
495
+ </tmpl>
496
+ <end/>
497
+ </slot>
498
+ <end/>
499
+ </mtef>
500
+ </root>