combine_pdf 0.0.4 → 0.0.5

Sign up to get free protection for your applications and to get access to all the features.
@@ -0,0 +1,2211 @@
1
+ module CombinePDF
2
+ class PDFWriter < Hash
3
+ # with thanks to Jan Krutisch, the creator of the afm gem.
4
+ COURIER_METRICS =
5
+ {"space"=>{:charcode=>32,
6
+ :wx=>600,
7
+ :name=>"space",
8
+ :boundingbox=>[0,
9
+ 0,
10
+ 0,
11
+ 0]},
12
+ "exclam"=>{:charcode=>33,
13
+ :wx=>600,
14
+ :name=>"exclam",
15
+ :boundingbox=>[236,
16
+ -15,
17
+ 364,
18
+ 572]},
19
+ "quotedbl"=>{:charcode=>34,
20
+ :wx=>600,
21
+ :name=>"quotedbl",
22
+ :boundingbox=>[187,
23
+ 328,
24
+ 413,
25
+ 562]},
26
+ "numbersign"=>{:charcode=>35,
27
+ :wx=>600,
28
+ :name=>"numbersign",
29
+ :boundingbox=>[93,
30
+ -32,
31
+ 507,
32
+ 639]},
33
+ "dollar"=>{:charcode=>36,
34
+ :wx=>600,
35
+ :name=>"dollar",
36
+ :boundingbox=>[105,
37
+ -126,
38
+ 496,
39
+ 662]},
40
+ "percent"=>{:charcode=>37,
41
+ :wx=>600,
42
+ :name=>"percent",
43
+ :boundingbox=>[81,
44
+ -15,
45
+ 518,
46
+ 622]},
47
+ "ampersand"=>{:charcode=>38,
48
+ :wx=>600,
49
+ :name=>"ampersand",
50
+ :boundingbox=>[63,
51
+ -15,
52
+ 538,
53
+ 543]},
54
+ "quoteright"=>{:charcode=>39,
55
+ :wx=>600,
56
+ :name=>"quoteright",
57
+ :boundingbox=>[213,
58
+ 328,
59
+ 376,
60
+ 562]},
61
+ "parenleft"=>{:charcode=>40,
62
+ :wx=>600,
63
+ :name=>"parenleft",
64
+ :boundingbox=>[269,
65
+ -108,
66
+ 440,
67
+ 622]},
68
+ "parenright"=>{:charcode=>41,
69
+ :wx=>600,
70
+ :name=>"parenright",
71
+ :boundingbox=>[160,
72
+ -108,
73
+ 331,
74
+ 622]},
75
+ "asterisk"=>{:charcode=>42,
76
+ :wx=>600,
77
+ :name=>"asterisk",
78
+ :boundingbox=>[116,
79
+ 257,
80
+ 484,
81
+ 607]},
82
+ "plus"=>{:charcode=>43,
83
+ :wx=>600,
84
+ :name=>"plus",
85
+ :boundingbox=>[80,
86
+ 44,
87
+ 520,
88
+ 470]},
89
+ "comma"=>{:charcode=>44,
90
+ :wx=>600,
91
+ :name=>"comma",
92
+ :boundingbox=>[181,
93
+ -112,
94
+ 344,
95
+ 122]},
96
+ "hyphen"=>{:charcode=>45,
97
+ :wx=>600,
98
+ :name=>"hyphen",
99
+ :boundingbox=>[103,
100
+ 231,
101
+ 497,
102
+ 285]},
103
+ "period"=>{:charcode=>46,
104
+ :wx=>600,
105
+ :name=>"period",
106
+ :boundingbox=>[229,
107
+ -15,
108
+ 371,
109
+ 109]},
110
+ "slash"=>{:charcode=>47,
111
+ :wx=>600,
112
+ :name=>"slash",
113
+ :boundingbox=>[125,
114
+ -80,
115
+ 475,
116
+ 629]},
117
+ "zero"=>{:charcode=>48,
118
+ :wx=>600,
119
+ :name=>"zero",
120
+ :boundingbox=>[106,
121
+ -15,
122
+ 494,
123
+ 622]},
124
+ "one"=>{:charcode=>49,
125
+ :wx=>600,
126
+ :name=>"one",
127
+ :boundingbox=>[96,
128
+ 0,
129
+ 505,
130
+ 622]},
131
+ "two"=>{:charcode=>50,
132
+ :wx=>600,
133
+ :name=>"two",
134
+ :boundingbox=>[70,
135
+ 0,
136
+ 471,
137
+ 622]},
138
+ "three"=>{:charcode=>51,
139
+ :wx=>600,
140
+ :name=>"three",
141
+ :boundingbox=>[75,
142
+ -15,
143
+ 466,
144
+ 622]},
145
+ "four"=>{:charcode=>52,
146
+ :wx=>600,
147
+ :name=>"four",
148
+ :boundingbox=>[78,
149
+ 0,
150
+ 500,
151
+ 622]},
152
+ "five"=>{:charcode=>53,
153
+ :wx=>600,
154
+ :name=>"five",
155
+ :boundingbox=>[92,
156
+ -15,
157
+ 497,
158
+ 607]},
159
+ "six"=>{:charcode=>54,
160
+ :wx=>600,
161
+ :name=>"six",
162
+ :boundingbox=>[111,
163
+ -15,
164
+ 497,
165
+ 622]},
166
+ "seven"=>{:charcode=>55,
167
+ :wx=>600,
168
+ :name=>"seven",
169
+ :boundingbox=>[82,
170
+ 0,
171
+ 483,
172
+ 607]},
173
+ "eight"=>{:charcode=>56,
174
+ :wx=>600,
175
+ :name=>"eight",
176
+ :boundingbox=>[102,
177
+ -15,
178
+ 498,
179
+ 622]},
180
+ "nine"=>{:charcode=>57,
181
+ :wx=>600,
182
+ :name=>"nine",
183
+ :boundingbox=>[96,
184
+ -15,
185
+ 489,
186
+ 622]},
187
+ "colon"=>{:charcode=>58,
188
+ :wx=>600,
189
+ :name=>"colon",
190
+ :boundingbox=>[229,
191
+ -15,
192
+ 371,
193
+ 385]},
194
+ "semicolon"=>{:charcode=>59,
195
+ :wx=>600,
196
+ :name=>"semicolon",
197
+ :boundingbox=>[181,
198
+ -112,
199
+ 371,
200
+ 385]},
201
+ "less"=>{:charcode=>60,
202
+ :wx=>600,
203
+ :name=>"less",
204
+ :boundingbox=>[41,
205
+ 42,
206
+ 519,
207
+ 472]},
208
+ "equal"=>{:charcode=>61,
209
+ :wx=>600,
210
+ :name=>"equal",
211
+ :boundingbox=>[80,
212
+ 138,
213
+ 520,
214
+ 376]},
215
+ "greater"=>{:charcode=>62,
216
+ :wx=>600,
217
+ :name=>"greater",
218
+ :boundingbox=>[66,
219
+ 42,
220
+ 544,
221
+ 472]},
222
+ "question"=>{:charcode=>63,
223
+ :wx=>600,
224
+ :name=>"question",
225
+ :boundingbox=>[129,
226
+ -15,
227
+ 492,
228
+ 572]},
229
+ "at"=>{:charcode=>64,
230
+ :wx=>600,
231
+ :name=>"at",
232
+ :boundingbox=>[77,
233
+ -15,
234
+ 533,
235
+ 622]},
236
+ "A"=>{:charcode=>65,
237
+ :wx=>600,
238
+ :name=>"A",
239
+ :boundingbox=>[3,
240
+ 0,
241
+ 597,
242
+ 562]},
243
+ "B"=>{:charcode=>66,
244
+ :wx=>600,
245
+ :name=>"B",
246
+ :boundingbox=>[43,
247
+ 0,
248
+ 559,
249
+ 562]},
250
+ "C"=>{:charcode=>67,
251
+ :wx=>600,
252
+ :name=>"C",
253
+ :boundingbox=>[41,
254
+ -18,
255
+ 540,
256
+ 580]},
257
+ "D"=>{:charcode=>68,
258
+ :wx=>600,
259
+ :name=>"D",
260
+ :boundingbox=>[43,
261
+ 0,
262
+ 574,
263
+ 562]},
264
+ "E"=>{:charcode=>69,
265
+ :wx=>600,
266
+ :name=>"E",
267
+ :boundingbox=>[53,
268
+ 0,
269
+ 550,
270
+ 562]},
271
+ "F"=>{:charcode=>70,
272
+ :wx=>600,
273
+ :name=>"F",
274
+ :boundingbox=>[53,
275
+ 0,
276
+ 545,
277
+ 562]},
278
+ "G"=>{:charcode=>71,
279
+ :wx=>600,
280
+ :name=>"G",
281
+ :boundingbox=>[31,
282
+ -18,
283
+ 575,
284
+ 580]},
285
+ "H"=>{:charcode=>72,
286
+ :wx=>600,
287
+ :name=>"H",
288
+ :boundingbox=>[32,
289
+ 0,
290
+ 568,
291
+ 562]},
292
+ "I"=>{:charcode=>73,
293
+ :wx=>600,
294
+ :name=>"I",
295
+ :boundingbox=>[96,
296
+ 0,
297
+ 504,
298
+ 562]},
299
+ "J"=>{:charcode=>74,
300
+ :wx=>600,
301
+ :name=>"J",
302
+ :boundingbox=>[34,
303
+ -18,
304
+ 566,
305
+ 562]},
306
+ "K"=>{:charcode=>75,
307
+ :wx=>600,
308
+ :name=>"K",
309
+ :boundingbox=>[38,
310
+ 0,
311
+ 582,
312
+ 562]},
313
+ "L"=>{:charcode=>76,
314
+ :wx=>600,
315
+ :name=>"L",
316
+ :boundingbox=>[47,
317
+ 0,
318
+ 554,
319
+ 562]},
320
+ "M"=>{:charcode=>77,
321
+ :wx=>600,
322
+ :name=>"M",
323
+ :boundingbox=>[4,
324
+ 0,
325
+ 596,
326
+ 562]},
327
+ "N"=>{:charcode=>78,
328
+ :wx=>600,
329
+ :name=>"N",
330
+ :boundingbox=>[7,
331
+ -13,
332
+ 593,
333
+ 562]},
334
+ "O"=>{:charcode=>79,
335
+ :wx=>600,
336
+ :name=>"O",
337
+ :boundingbox=>[43,
338
+ -18,
339
+ 557,
340
+ 580]},
341
+ "P"=>{:charcode=>80,
342
+ :wx=>600,
343
+ :name=>"P",
344
+ :boundingbox=>[79,
345
+ 0,
346
+ 558,
347
+ 562]},
348
+ "Q"=>{:charcode=>81,
349
+ :wx=>600,
350
+ :name=>"Q",
351
+ :boundingbox=>[43,
352
+ -138,
353
+ 557,
354
+ 580]},
355
+ "R"=>{:charcode=>82,
356
+ :wx=>600,
357
+ :name=>"R",
358
+ :boundingbox=>[38,
359
+ 0,
360
+ 588,
361
+ 562]},
362
+ "S"=>{:charcode=>83,
363
+ :wx=>600,
364
+ :name=>"S",
365
+ :boundingbox=>[72,
366
+ -20,
367
+ 529,
368
+ 580]},
369
+ "T"=>{:charcode=>84,
370
+ :wx=>600,
371
+ :name=>"T",
372
+ :boundingbox=>[38,
373
+ 0,
374
+ 563,
375
+ 562]},
376
+ "U"=>{:charcode=>85,
377
+ :wx=>600,
378
+ :name=>"U",
379
+ :boundingbox=>[17,
380
+ -18,
381
+ 583,
382
+ 562]},
383
+ "V"=>{:charcode=>86,
384
+ :wx=>600,
385
+ :name=>"V",
386
+ :boundingbox=>[-4,
387
+ -13,
388
+ 604,
389
+ 562]},
390
+ "W"=>{:charcode=>87,
391
+ :wx=>600,
392
+ :name=>"W",
393
+ :boundingbox=>[-3,
394
+ -13,
395
+ 603,
396
+ 562]},
397
+ "X"=>{:charcode=>88,
398
+ :wx=>600,
399
+ :name=>"X",
400
+ :boundingbox=>[23,
401
+ 0,
402
+ 577,
403
+ 562]},
404
+ "Y"=>{:charcode=>89,
405
+ :wx=>600,
406
+ :name=>"Y",
407
+ :boundingbox=>[24,
408
+ 0,
409
+ 576,
410
+ 562]},
411
+ "Z"=>{:charcode=>90,
412
+ :wx=>600,
413
+ :name=>"Z",
414
+ :boundingbox=>[86,
415
+ 0,
416
+ 514,
417
+ 562]},
418
+ "bracketleft"=>{:charcode=>91,
419
+ :wx=>600,
420
+ :name=>"bracketleft",
421
+ :boundingbox=>[269,
422
+ -108,
423
+ 442,
424
+ 622]},
425
+ "backslash"=>{:charcode=>92,
426
+ :wx=>600,
427
+ :name=>"backslash",
428
+ :boundingbox=>[118,
429
+ -80,
430
+ 482,
431
+ 629]},
432
+ "bracketright"=>{:charcode=>93,
433
+ :wx=>600,
434
+ :name=>"bracketright",
435
+ :boundingbox=>[158,
436
+ -108,
437
+ 331,
438
+ 622]},
439
+ "asciicircum"=>{:charcode=>94,
440
+ :wx=>600,
441
+ :name=>"asciicircum",
442
+ :boundingbox=>[94,
443
+ 354,
444
+ 506,
445
+ 622]},
446
+ "underscore"=>{:charcode=>95,
447
+ :wx=>600,
448
+ :name=>"underscore",
449
+ :boundingbox=>[0,
450
+ -125,
451
+ 600,
452
+ -75]},
453
+ "quoteleft"=>{:charcode=>96,
454
+ :wx=>600,
455
+ :name=>"quoteleft",
456
+ :boundingbox=>[224,
457
+ 328,
458
+ 387,
459
+ 562]},
460
+ "a"=>{:charcode=>97,
461
+ :wx=>600,
462
+ :name=>"a",
463
+ :boundingbox=>[53,
464
+ -15,
465
+ 559,
466
+ 441]},
467
+ "b"=>{:charcode=>98,
468
+ :wx=>600,
469
+ :name=>"b",
470
+ :boundingbox=>[14,
471
+ -15,
472
+ 575,
473
+ 629]},
474
+ "c"=>{:charcode=>99,
475
+ :wx=>600,
476
+ :name=>"c",
477
+ :boundingbox=>[66,
478
+ -15,
479
+ 529,
480
+ 441]},
481
+ "d"=>{:charcode=>100,
482
+ :wx=>600,
483
+ :name=>"d",
484
+ :boundingbox=>[45,
485
+ -15,
486
+ 591,
487
+ 629]},
488
+ "e"=>{:charcode=>101,
489
+ :wx=>600,
490
+ :name=>"e",
491
+ :boundingbox=>[66,
492
+ -15,
493
+ 548,
494
+ 441]},
495
+ "f"=>{:charcode=>102,
496
+ :wx=>600,
497
+ :name=>"f",
498
+ :boundingbox=>[114,
499
+ 0,
500
+ 531,
501
+ 629]},
502
+ "g"=>{:charcode=>103,
503
+ :wx=>600,
504
+ :name=>"g",
505
+ :boundingbox=>[45,
506
+ -157,
507
+ 566,
508
+ 441]},
509
+ "h"=>{:charcode=>104,
510
+ :wx=>600,
511
+ :name=>"h",
512
+ :boundingbox=>[18,
513
+ 0,
514
+ 582,
515
+ 629]},
516
+ "i"=>{:charcode=>105,
517
+ :wx=>600,
518
+ :name=>"i",
519
+ :boundingbox=>[95,
520
+ 0,
521
+ 505,
522
+ 657]},
523
+ "j"=>{:charcode=>106,
524
+ :wx=>600,
525
+ :name=>"j",
526
+ :boundingbox=>[82,
527
+ -157,
528
+ 410,
529
+ 657]},
530
+ "k"=>{:charcode=>107,
531
+ :wx=>600,
532
+ :name=>"k",
533
+ :boundingbox=>[43,
534
+ 0,
535
+ 580,
536
+ 629]},
537
+ "l"=>{:charcode=>108,
538
+ :wx=>600,
539
+ :name=>"l",
540
+ :boundingbox=>[95,
541
+ 0,
542
+ 505,
543
+ 629]},
544
+ "m"=>{:charcode=>109,
545
+ :wx=>600,
546
+ :name=>"m",
547
+ :boundingbox=>[-5,
548
+ 0,
549
+ 605,
550
+ 441]},
551
+ "n"=>{:charcode=>110,
552
+ :wx=>600,
553
+ :name=>"n",
554
+ :boundingbox=>[26,
555
+ 0,
556
+ 575,
557
+ 441]},
558
+ "o"=>{:charcode=>111,
559
+ :wx=>600,
560
+ :name=>"o",
561
+ :boundingbox=>[62,
562
+ -15,
563
+ 538,
564
+ 441]},
565
+ "p"=>{:charcode=>112,
566
+ :wx=>600,
567
+ :name=>"p",
568
+ :boundingbox=>[9,
569
+ -157,
570
+ 555,
571
+ 441]},
572
+ "q"=>{:charcode=>113,
573
+ :wx=>600,
574
+ :name=>"q",
575
+ :boundingbox=>[45,
576
+ -157,
577
+ 591,
578
+ 441]},
579
+ "r"=>{:charcode=>114,
580
+ :wx=>600,
581
+ :name=>"r",
582
+ :boundingbox=>[60,
583
+ 0,
584
+ 559,
585
+ 441]},
586
+ "s"=>{:charcode=>115,
587
+ :wx=>600,
588
+ :name=>"s",
589
+ :boundingbox=>[80,
590
+ -15,
591
+ 513,
592
+ 441]},
593
+ "t"=>{:charcode=>116,
594
+ :wx=>600,
595
+ :name=>"t",
596
+ :boundingbox=>[87,
597
+ -15,
598
+ 530,
599
+ 561]},
600
+ "u"=>{:charcode=>117,
601
+ :wx=>600,
602
+ :name=>"u",
603
+ :boundingbox=>[21,
604
+ -15,
605
+ 562,
606
+ 426]},
607
+ "v"=>{:charcode=>118,
608
+ :wx=>600,
609
+ :name=>"v",
610
+ :boundingbox=>[10,
611
+ -10,
612
+ 590,
613
+ 426]},
614
+ "w"=>{:charcode=>119,
615
+ :wx=>600,
616
+ :name=>"w",
617
+ :boundingbox=>[-4,
618
+ -10,
619
+ 604,
620
+ 426]},
621
+ "x"=>{:charcode=>120,
622
+ :wx=>600,
623
+ :name=>"x",
624
+ :boundingbox=>[20,
625
+ 0,
626
+ 580,
627
+ 426]},
628
+ "y"=>{:charcode=>121,
629
+ :wx=>600,
630
+ :name=>"y",
631
+ :boundingbox=>[7,
632
+ -157,
633
+ 592,
634
+ 426]},
635
+ "z"=>{:charcode=>122,
636
+ :wx=>600,
637
+ :name=>"z",
638
+ :boundingbox=>[99,
639
+ 0,
640
+ 502,
641
+ 426]},
642
+ "braceleft"=>{:charcode=>123,
643
+ :wx=>600,
644
+ :name=>"braceleft",
645
+ :boundingbox=>[182,
646
+ -108,
647
+ 437,
648
+ 622]},
649
+ "bar"=>{:charcode=>124,
650
+ :wx=>600,
651
+ :name=>"bar",
652
+ :boundingbox=>[275,
653
+ -250,
654
+ 326,
655
+ 750]},
656
+ "braceright"=>{:charcode=>125,
657
+ :wx=>600,
658
+ :name=>"braceright",
659
+ :boundingbox=>[163,
660
+ -108,
661
+ 418,
662
+ 622]},
663
+ "asciitilde"=>{:charcode=>126,
664
+ :wx=>600,
665
+ :name=>"asciitilde",
666
+ :boundingbox=>[63,
667
+ 197,
668
+ 540,
669
+ 320]},
670
+ "exclamdown"=>{:charcode=>161,
671
+ :wx=>600,
672
+ :name=>"exclamdown",
673
+ :boundingbox=>[236,
674
+ -157,
675
+ 364,
676
+ 430]},
677
+ "cent"=>{:charcode=>162,
678
+ :wx=>600,
679
+ :name=>"cent",
680
+ :boundingbox=>[96,
681
+ -49,
682
+ 500,
683
+ 614]},
684
+ "sterling"=>{:charcode=>163,
685
+ :wx=>600,
686
+ :name=>"sterling",
687
+ :boundingbox=>[84,
688
+ -21,
689
+ 521,
690
+ 611]},
691
+ "fraction"=>{:charcode=>164,
692
+ :wx=>600,
693
+ :name=>"fraction",
694
+ :boundingbox=>[92,
695
+ -57,
696
+ 509,
697
+ 665]},
698
+ "yen"=>{:charcode=>165,
699
+ :wx=>600,
700
+ :name=>"yen",
701
+ :boundingbox=>[26,
702
+ 0,
703
+ 574,
704
+ 562]},
705
+ "florin"=>{:charcode=>166,
706
+ :wx=>600,
707
+ :name=>"florin",
708
+ :boundingbox=>[4,
709
+ -143,
710
+ 539,
711
+ 622]},
712
+ "section"=>{:charcode=>167,
713
+ :wx=>600,
714
+ :name=>"section",
715
+ :boundingbox=>[113,
716
+ -78,
717
+ 488,
718
+ 580]},
719
+ "currency"=>{:charcode=>168,
720
+ :wx=>600,
721
+ :name=>"currency",
722
+ :boundingbox=>[73,
723
+ 58,
724
+ 527,
725
+ 506]},
726
+ "quotesingle"=>{:charcode=>169,
727
+ :wx=>600,
728
+ :name=>"quotesingle",
729
+ :boundingbox=>[259,
730
+ 328,
731
+ 341,
732
+ 562]},
733
+ "quotedblleft"=>{:charcode=>170,
734
+ :wx=>600,
735
+ :name=>"quotedblleft",
736
+ :boundingbox=>[143,
737
+ 328,
738
+ 471,
739
+ 562]},
740
+ "guillemotleft"=>{:charcode=>171,
741
+ :wx=>600,
742
+ :name=>"guillemotleft",
743
+ :boundingbox=>[37,
744
+ 70,
745
+ 563,
746
+ 446]},
747
+ "guilsinglleft"=>{:charcode=>172,
748
+ :wx=>600,
749
+ :name=>"guilsinglleft",
750
+ :boundingbox=>[149,
751
+ 70,
752
+ 451,
753
+ 446]},
754
+ "guilsinglright"=>{:charcode=>173,
755
+ :wx=>600,
756
+ :name=>"guilsinglright",
757
+ :boundingbox=>[149,
758
+ 70,
759
+ 451,
760
+ 446]},
761
+ "fi"=>{:charcode=>174,
762
+ :wx=>600,
763
+ :name=>"fi",
764
+ :boundingbox=>[3,
765
+ 0,
766
+ 597,
767
+ 629]},
768
+ "fl"=>{:charcode=>175,
769
+ :wx=>600,
770
+ :name=>"fl",
771
+ :boundingbox=>[3,
772
+ 0,
773
+ 597,
774
+ 629]},
775
+ "endash"=>{:charcode=>177,
776
+ :wx=>600,
777
+ :name=>"endash",
778
+ :boundingbox=>[75,
779
+ 231,
780
+ 525,
781
+ 285]},
782
+ "dagger"=>{:charcode=>178,
783
+ :wx=>600,
784
+ :name=>"dagger",
785
+ :boundingbox=>[141,
786
+ -78,
787
+ 459,
788
+ 580]},
789
+ "daggerdbl"=>{:charcode=>179,
790
+ :wx=>600,
791
+ :name=>"daggerdbl",
792
+ :boundingbox=>[141,
793
+ -78,
794
+ 459,
795
+ 580]},
796
+ "periodcentered"=>{:charcode=>180,
797
+ :wx=>600,
798
+ :name=>"periodcentered",
799
+ :boundingbox=>[222,
800
+ 189,
801
+ 378,
802
+ 327]},
803
+ "paragraph"=>{:charcode=>182,
804
+ :wx=>600,
805
+ :name=>"paragraph",
806
+ :boundingbox=>[50,
807
+ -78,
808
+ 511,
809
+ 562]},
810
+ "bullet"=>{:charcode=>183,
811
+ :wx=>600,
812
+ :name=>"bullet",
813
+ :boundingbox=>[172,
814
+ 130,
815
+ 428,
816
+ 383]},
817
+ "quotesinglbase"=>{:charcode=>184,
818
+ :wx=>600,
819
+ :name=>"quotesinglbase",
820
+ :boundingbox=>[213,
821
+ -134,
822
+ 376,
823
+ 100]},
824
+ "quotedblbase"=>{:charcode=>185,
825
+ :wx=>600,
826
+ :name=>"quotedblbase",
827
+ :boundingbox=>[143,
828
+ -134,
829
+ 457,
830
+ 100]},
831
+ "quotedblright"=>{:charcode=>186,
832
+ :wx=>600,
833
+ :name=>"quotedblright",
834
+ :boundingbox=>[143,
835
+ 328,
836
+ 457,
837
+ 562]},
838
+ "guillemotright"=>{:charcode=>187,
839
+ :wx=>600,
840
+ :name=>"guillemotright",
841
+ :boundingbox=>[37,
842
+ 70,
843
+ 563,
844
+ 446]},
845
+ "ellipsis"=>{:charcode=>188,
846
+ :wx=>600,
847
+ :name=>"ellipsis",
848
+ :boundingbox=>[37,
849
+ -15,
850
+ 563,
851
+ 111]},
852
+ "perthousand"=>{:charcode=>189,
853
+ :wx=>600,
854
+ :name=>"perthousand",
855
+ :boundingbox=>[3,
856
+ -15,
857
+ 600,
858
+ 622]},
859
+ "questiondown"=>{:charcode=>191,
860
+ :wx=>600,
861
+ :name=>"questiondown",
862
+ :boundingbox=>[108,
863
+ -157,
864
+ 471,
865
+ 430]},
866
+ "grave"=>{:charcode=>193,
867
+ :wx=>600,
868
+ :name=>"grave",
869
+ :boundingbox=>[151,
870
+ 497,
871
+ 378,
872
+ 672]},
873
+ "acute"=>{:charcode=>194,
874
+ :wx=>600,
875
+ :name=>"acute",
876
+ :boundingbox=>[242,
877
+ 497,
878
+ 469,
879
+ 672]},
880
+ "circumflex"=>{:charcode=>195,
881
+ :wx=>600,
882
+ :name=>"circumflex",
883
+ :boundingbox=>[124,
884
+ 477,
885
+ 476,
886
+ 654]},
887
+ "tilde"=>{:charcode=>196,
888
+ :wx=>600,
889
+ :name=>"tilde",
890
+ :boundingbox=>[105,
891
+ 489,
892
+ 503,
893
+ 606]},
894
+ "macron"=>{:charcode=>197,
895
+ :wx=>600,
896
+ :name=>"macron",
897
+ :boundingbox=>[120,
898
+ 525,
899
+ 480,
900
+ 565]},
901
+ "breve"=>{:charcode=>198,
902
+ :wx=>600,
903
+ :name=>"breve",
904
+ :boundingbox=>[153,
905
+ 501,
906
+ 447,
907
+ 609]},
908
+ "dotaccent"=>{:charcode=>199,
909
+ :wx=>600,
910
+ :name=>"dotaccent",
911
+ :boundingbox=>[249,
912
+ 537,
913
+ 352,
914
+ 640]},
915
+ "dieresis"=>{:charcode=>200,
916
+ :wx=>600,
917
+ :name=>"dieresis",
918
+ :boundingbox=>[148,
919
+ 537,
920
+ 453,
921
+ 640]},
922
+ "ring"=>{:charcode=>202,
923
+ :wx=>600,
924
+ :name=>"ring",
925
+ :boundingbox=>[218,
926
+ 463,
927
+ 382,
928
+ 627]},
929
+ "cedilla"=>{:charcode=>203,
930
+ :wx=>600,
931
+ :name=>"cedilla",
932
+ :boundingbox=>[224,
933
+ -151,
934
+ 362,
935
+ 10]},
936
+ "hungarumlaut"=>{:charcode=>205,
937
+ :wx=>600,
938
+ :name=>"hungarumlaut",
939
+ :boundingbox=>[133,
940
+ 497,
941
+ 540,
942
+ 672]},
943
+ "ogonek"=>{:charcode=>206,
944
+ :wx=>600,
945
+ :name=>"ogonek",
946
+ :boundingbox=>[211,
947
+ -172,
948
+ 407,
949
+ 4]},
950
+ "caron"=>{:charcode=>207,
951
+ :wx=>600,
952
+ :name=>"caron",
953
+ :boundingbox=>[124,
954
+ 492,
955
+ 476,
956
+ 669]},
957
+ "emdash"=>{:charcode=>208,
958
+ :wx=>600,
959
+ :name=>"emdash",
960
+ :boundingbox=>[0,
961
+ 231,
962
+ 600,
963
+ 285]},
964
+ "AE"=>{:charcode=>225,
965
+ :wx=>600,
966
+ :name=>"AE",
967
+ :boundingbox=>[3,
968
+ 0,
969
+ 550,
970
+ 562]},
971
+ "ordfeminine"=>{:charcode=>227,
972
+ :wx=>600,
973
+ :name=>"ordfeminine",
974
+ :boundingbox=>[156,
975
+ 249,
976
+ 442,
977
+ 580]},
978
+ "Lslash"=>{:charcode=>232,
979
+ :wx=>600,
980
+ :name=>"Lslash",
981
+ :boundingbox=>[47,
982
+ 0,
983
+ 554,
984
+ 562]},
985
+ "Oslash"=>{:charcode=>233,
986
+ :wx=>600,
987
+ :name=>"Oslash",
988
+ :boundingbox=>[43,
989
+ -80,
990
+ 557,
991
+ 629]},
992
+ "OE"=>{:charcode=>234,
993
+ :wx=>600,
994
+ :name=>"OE",
995
+ :boundingbox=>[7,
996
+ 0,
997
+ 567,
998
+ 562]},
999
+ "ordmasculine"=>{:charcode=>235,
1000
+ :wx=>600,
1001
+ :name=>"ordmasculine",
1002
+ :boundingbox=>[157,
1003
+ 249,
1004
+ 443,
1005
+ 580]},
1006
+ "ae"=>{:charcode=>241,
1007
+ :wx=>600,
1008
+ :name=>"ae",
1009
+ :boundingbox=>[19,
1010
+ -15,
1011
+ 570,
1012
+ 441]},
1013
+ "dotlessi"=>{:charcode=>245,
1014
+ :wx=>600,
1015
+ :name=>"dotlessi",
1016
+ :boundingbox=>[95,
1017
+ 0,
1018
+ 505,
1019
+ 426]},
1020
+ "lslash"=>{:charcode=>248,
1021
+ :wx=>600,
1022
+ :name=>"lslash",
1023
+ :boundingbox=>[95,
1024
+ 0,
1025
+ 505,
1026
+ 629]},
1027
+ "oslash"=>{:charcode=>249,
1028
+ :wx=>600,
1029
+ :name=>"oslash",
1030
+ :boundingbox=>[62,
1031
+ -80,
1032
+ 538,
1033
+ 506]},
1034
+ "oe"=>{:charcode=>250,
1035
+ :wx=>600,
1036
+ :name=>"oe",
1037
+ :boundingbox=>[19,
1038
+ -15,
1039
+ 559,
1040
+ 441]},
1041
+ "germandbls"=>{:charcode=>251,
1042
+ :wx=>600,
1043
+ :name=>"germandbls",
1044
+ :boundingbox=>[48,
1045
+ -15,
1046
+ 588,
1047
+ 629]},
1048
+ "Idieresis"=>{:charcode=>-1,
1049
+ :wx=>600,
1050
+ :name=>"Idieresis",
1051
+ :boundingbox=>[96,
1052
+ 0,
1053
+ 504,
1054
+ 753]},
1055
+ "eacute"=>{:charcode=>-1,
1056
+ :wx=>600,
1057
+ :name=>"eacute",
1058
+ :boundingbox=>[66,
1059
+ -15,
1060
+ 548,
1061
+ 672]},
1062
+ "abreve"=>{:charcode=>-1,
1063
+ :wx=>600,
1064
+ :name=>"abreve",
1065
+ :boundingbox=>[53,
1066
+ -15,
1067
+ 559,
1068
+ 609]},
1069
+ "uhungarumlaut"=>{:charcode=>-1,
1070
+ :wx=>600,
1071
+ :name=>"uhungarumlaut",
1072
+ :boundingbox=>[21,
1073
+ -15,
1074
+ 580,
1075
+ 672]},
1076
+ "ecaron"=>{:charcode=>-1,
1077
+ :wx=>600,
1078
+ :name=>"ecaron",
1079
+ :boundingbox=>[66,
1080
+ -15,
1081
+ 548,
1082
+ 669]},
1083
+ "Ydieresis"=>{:charcode=>-1,
1084
+ :wx=>600,
1085
+ :name=>"Ydieresis",
1086
+ :boundingbox=>[24,
1087
+ 0,
1088
+ 576,
1089
+ 753]},
1090
+ "divide"=>{:charcode=>-1,
1091
+ :wx=>600,
1092
+ :name=>"divide",
1093
+ :boundingbox=>[87,
1094
+ 48,
1095
+ 513,
1096
+ 467]},
1097
+ "Yacute"=>{:charcode=>-1,
1098
+ :wx=>600,
1099
+ :name=>"Yacute",
1100
+ :boundingbox=>[24,
1101
+ 0,
1102
+ 576,
1103
+ 805]},
1104
+ "Acircumflex"=>{:charcode=>-1,
1105
+ :wx=>600,
1106
+ :name=>"Acircumflex",
1107
+ :boundingbox=>[3,
1108
+ 0,
1109
+ 597,
1110
+ 787]},
1111
+ "aacute"=>{:charcode=>-1,
1112
+ :wx=>600,
1113
+ :name=>"aacute",
1114
+ :boundingbox=>[53,
1115
+ -15,
1116
+ 559,
1117
+ 672]},
1118
+ "Ucircumflex"=>{:charcode=>-1,
1119
+ :wx=>600,
1120
+ :name=>"Ucircumflex",
1121
+ :boundingbox=>[17,
1122
+ -18,
1123
+ 583,
1124
+ 787]},
1125
+ "yacute"=>{:charcode=>-1,
1126
+ :wx=>600,
1127
+ :name=>"yacute",
1128
+ :boundingbox=>[7,
1129
+ -157,
1130
+ 592,
1131
+ 672]},
1132
+ "scommaaccent"=>{:charcode=>-1,
1133
+ :wx=>600,
1134
+ :name=>"scommaaccent",
1135
+ :boundingbox=>[80,
1136
+ -250,
1137
+ 513,
1138
+ 441]},
1139
+ "ecircumflex"=>{:charcode=>-1,
1140
+ :wx=>600,
1141
+ :name=>"ecircumflex",
1142
+ :boundingbox=>[66,
1143
+ -15,
1144
+ 548,
1145
+ 654]},
1146
+ "Uring"=>{:charcode=>-1,
1147
+ :wx=>600,
1148
+ :name=>"Uring",
1149
+ :boundingbox=>[17,
1150
+ -18,
1151
+ 583,
1152
+ 760]},
1153
+ "Udieresis"=>{:charcode=>-1,
1154
+ :wx=>600,
1155
+ :name=>"Udieresis",
1156
+ :boundingbox=>[17,
1157
+ -18,
1158
+ 583,
1159
+ 753]},
1160
+ "aogonek"=>{:charcode=>-1,
1161
+ :wx=>600,
1162
+ :name=>"aogonek",
1163
+ :boundingbox=>[53,
1164
+ -172,
1165
+ 587,
1166
+ 441]},
1167
+ "Uacute"=>{:charcode=>-1,
1168
+ :wx=>600,
1169
+ :name=>"Uacute",
1170
+ :boundingbox=>[17,
1171
+ -18,
1172
+ 583,
1173
+ 805]},
1174
+ "uogonek"=>{:charcode=>-1,
1175
+ :wx=>600,
1176
+ :name=>"uogonek",
1177
+ :boundingbox=>[21,
1178
+ -172,
1179
+ 590,
1180
+ 426]},
1181
+ "Edieresis"=>{:charcode=>-1,
1182
+ :wx=>600,
1183
+ :name=>"Edieresis",
1184
+ :boundingbox=>[53,
1185
+ 0,
1186
+ 550,
1187
+ 753]},
1188
+ "Dcroat"=>{:charcode=>-1,
1189
+ :wx=>600,
1190
+ :name=>"Dcroat",
1191
+ :boundingbox=>[30,
1192
+ 0,
1193
+ 574,
1194
+ 562]},
1195
+ "commaaccent"=>{:charcode=>-1,
1196
+ :wx=>600,
1197
+ :name=>"commaaccent",
1198
+ :boundingbox=>[198,
1199
+ -250,
1200
+ 335,
1201
+ -58]},
1202
+ "copyright"=>{:charcode=>-1,
1203
+ :wx=>600,
1204
+ :name=>"copyright",
1205
+ :boundingbox=>[0,
1206
+ -18,
1207
+ 600,
1208
+ 580]},
1209
+ "Emacron"=>{:charcode=>-1,
1210
+ :wx=>600,
1211
+ :name=>"Emacron",
1212
+ :boundingbox=>[53,
1213
+ 0,
1214
+ 550,
1215
+ 698]},
1216
+ "ccaron"=>{:charcode=>-1,
1217
+ :wx=>600,
1218
+ :name=>"ccaron",
1219
+ :boundingbox=>[66,
1220
+ -15,
1221
+ 529,
1222
+ 669]},
1223
+ "aring"=>{:charcode=>-1,
1224
+ :wx=>600,
1225
+ :name=>"aring",
1226
+ :boundingbox=>[53,
1227
+ -15,
1228
+ 559,
1229
+ 627]},
1230
+ "Ncommaaccent"=>{:charcode=>-1,
1231
+ :wx=>600,
1232
+ :name=>"Ncommaaccent",
1233
+ :boundingbox=>[7,
1234
+ -250,
1235
+ 593,
1236
+ 562]},
1237
+ "lacute"=>{:charcode=>-1,
1238
+ :wx=>600,
1239
+ :name=>"lacute",
1240
+ :boundingbox=>[95,
1241
+ 0,
1242
+ 505,
1243
+ 805]},
1244
+ "agrave"=>{:charcode=>-1,
1245
+ :wx=>600,
1246
+ :name=>"agrave",
1247
+ :boundingbox=>[53,
1248
+ -15,
1249
+ 559,
1250
+ 672]},
1251
+ "Tcommaaccent"=>{:charcode=>-1,
1252
+ :wx=>600,
1253
+ :name=>"Tcommaaccent",
1254
+ :boundingbox=>[38,
1255
+ -250,
1256
+ 563,
1257
+ 562]},
1258
+ "Cacute"=>{:charcode=>-1,
1259
+ :wx=>600,
1260
+ :name=>"Cacute",
1261
+ :boundingbox=>[41,
1262
+ -18,
1263
+ 540,
1264
+ 805]},
1265
+ "atilde"=>{:charcode=>-1,
1266
+ :wx=>600,
1267
+ :name=>"atilde",
1268
+ :boundingbox=>[53,
1269
+ -15,
1270
+ 559,
1271
+ 606]},
1272
+ "Edotaccent"=>{:charcode=>-1,
1273
+ :wx=>600,
1274
+ :name=>"Edotaccent",
1275
+ :boundingbox=>[53,
1276
+ 0,
1277
+ 550,
1278
+ 753]},
1279
+ "scaron"=>{:charcode=>-1,
1280
+ :wx=>600,
1281
+ :name=>"scaron",
1282
+ :boundingbox=>[80,
1283
+ -15,
1284
+ 513,
1285
+ 669]},
1286
+ "scedilla"=>{:charcode=>-1,
1287
+ :wx=>600,
1288
+ :name=>"scedilla",
1289
+ :boundingbox=>[80,
1290
+ -151,
1291
+ 513,
1292
+ 441]},
1293
+ "iacute"=>{:charcode=>-1,
1294
+ :wx=>600,
1295
+ :name=>"iacute",
1296
+ :boundingbox=>[95,
1297
+ 0,
1298
+ 505,
1299
+ 672]},
1300
+ "lozenge"=>{:charcode=>-1,
1301
+ :wx=>600,
1302
+ :name=>"lozenge",
1303
+ :boundingbox=>[18,
1304
+ 0,
1305
+ 443,
1306
+ 706]},
1307
+ "Rcaron"=>{:charcode=>-1,
1308
+ :wx=>600,
1309
+ :name=>"Rcaron",
1310
+ :boundingbox=>[38,
1311
+ 0,
1312
+ 588,
1313
+ 802]},
1314
+ "Gcommaaccent"=>{:charcode=>-1,
1315
+ :wx=>600,
1316
+ :name=>"Gcommaaccent",
1317
+ :boundingbox=>[31,
1318
+ -250,
1319
+ 575,
1320
+ 580]},
1321
+ "ucircumflex"=>{:charcode=>-1,
1322
+ :wx=>600,
1323
+ :name=>"ucircumflex",
1324
+ :boundingbox=>[21,
1325
+ -15,
1326
+ 562,
1327
+ 654]},
1328
+ "acircumflex"=>{:charcode=>-1,
1329
+ :wx=>600,
1330
+ :name=>"acircumflex",
1331
+ :boundingbox=>[53,
1332
+ -15,
1333
+ 559,
1334
+ 654]},
1335
+ "Amacron"=>{:charcode=>-1,
1336
+ :wx=>600,
1337
+ :name=>"Amacron",
1338
+ :boundingbox=>[3,
1339
+ 0,
1340
+ 597,
1341
+ 698]},
1342
+ "rcaron"=>{:charcode=>-1,
1343
+ :wx=>600,
1344
+ :name=>"rcaron",
1345
+ :boundingbox=>[60,
1346
+ 0,
1347
+ 559,
1348
+ 669]},
1349
+ "ccedilla"=>{:charcode=>-1,
1350
+ :wx=>600,
1351
+ :name=>"ccedilla",
1352
+ :boundingbox=>[66,
1353
+ -151,
1354
+ 529,
1355
+ 441]},
1356
+ "Zdotaccent"=>{:charcode=>-1,
1357
+ :wx=>600,
1358
+ :name=>"Zdotaccent",
1359
+ :boundingbox=>[86,
1360
+ 0,
1361
+ 514,
1362
+ 753]},
1363
+ "Thorn"=>{:charcode=>-1,
1364
+ :wx=>600,
1365
+ :name=>"Thorn",
1366
+ :boundingbox=>[79,
1367
+ 0,
1368
+ 538,
1369
+ 562]},
1370
+ "Omacron"=>{:charcode=>-1,
1371
+ :wx=>600,
1372
+ :name=>"Omacron",
1373
+ :boundingbox=>[43,
1374
+ -18,
1375
+ 557,
1376
+ 698]},
1377
+ "Racute"=>{:charcode=>-1,
1378
+ :wx=>600,
1379
+ :name=>"Racute",
1380
+ :boundingbox=>[38,
1381
+ 0,
1382
+ 588,
1383
+ 805]},
1384
+ "Sacute"=>{:charcode=>-1,
1385
+ :wx=>600,
1386
+ :name=>"Sacute",
1387
+ :boundingbox=>[72,
1388
+ -20,
1389
+ 529,
1390
+ 805]},
1391
+ "dcaron"=>{:charcode=>-1,
1392
+ :wx=>600,
1393
+ :name=>"dcaron",
1394
+ :boundingbox=>[45,
1395
+ -15,
1396
+ 715,
1397
+ 629]},
1398
+ "Umacron"=>{:charcode=>-1,
1399
+ :wx=>600,
1400
+ :name=>"Umacron",
1401
+ :boundingbox=>[17,
1402
+ -18,
1403
+ 583,
1404
+ 698]},
1405
+ "uring"=>{:charcode=>-1,
1406
+ :wx=>600,
1407
+ :name=>"uring",
1408
+ :boundingbox=>[21,
1409
+ -15,
1410
+ 562,
1411
+ 627]},
1412
+ "threesuperior"=>{:charcode=>-1,
1413
+ :wx=>600,
1414
+ :name=>"threesuperior",
1415
+ :boundingbox=>[155,
1416
+ 240,
1417
+ 406,
1418
+ 622]},
1419
+ "Ograve"=>{:charcode=>-1,
1420
+ :wx=>600,
1421
+ :name=>"Ograve",
1422
+ :boundingbox=>[43,
1423
+ -18,
1424
+ 557,
1425
+ 805]},
1426
+ "Agrave"=>{:charcode=>-1,
1427
+ :wx=>600,
1428
+ :name=>"Agrave",
1429
+ :boundingbox=>[3,
1430
+ 0,
1431
+ 597,
1432
+ 805]},
1433
+ "Abreve"=>{:charcode=>-1,
1434
+ :wx=>600,
1435
+ :name=>"Abreve",
1436
+ :boundingbox=>[3,
1437
+ 0,
1438
+ 597,
1439
+ 732]},
1440
+ "multiply"=>{:charcode=>-1,
1441
+ :wx=>600,
1442
+ :name=>"multiply",
1443
+ :boundingbox=>[87,
1444
+ 43,
1445
+ 515,
1446
+ 470]},
1447
+ "uacute"=>{:charcode=>-1,
1448
+ :wx=>600,
1449
+ :name=>"uacute",
1450
+ :boundingbox=>[21,
1451
+ -15,
1452
+ 562,
1453
+ 672]},
1454
+ "Tcaron"=>{:charcode=>-1,
1455
+ :wx=>600,
1456
+ :name=>"Tcaron",
1457
+ :boundingbox=>[38,
1458
+ 0,
1459
+ 563,
1460
+ 802]},
1461
+ "partialdiff"=>{:charcode=>-1,
1462
+ :wx=>600,
1463
+ :name=>"partialdiff",
1464
+ :boundingbox=>[17,
1465
+ -38,
1466
+ 459,
1467
+ 710]},
1468
+ "ydieresis"=>{:charcode=>-1,
1469
+ :wx=>600,
1470
+ :name=>"ydieresis",
1471
+ :boundingbox=>[7,
1472
+ -157,
1473
+ 592,
1474
+ 620]},
1475
+ "Nacute"=>{:charcode=>-1,
1476
+ :wx=>600,
1477
+ :name=>"Nacute",
1478
+ :boundingbox=>[7,
1479
+ -13,
1480
+ 593,
1481
+ 805]},
1482
+ "icircumflex"=>{:charcode=>-1,
1483
+ :wx=>600,
1484
+ :name=>"icircumflex",
1485
+ :boundingbox=>[94,
1486
+ 0,
1487
+ 505,
1488
+ 654]},
1489
+ "Ecircumflex"=>{:charcode=>-1,
1490
+ :wx=>600,
1491
+ :name=>"Ecircumflex",
1492
+ :boundingbox=>[53,
1493
+ 0,
1494
+ 550,
1495
+ 787]},
1496
+ "adieresis"=>{:charcode=>-1,
1497
+ :wx=>600,
1498
+ :name=>"adieresis",
1499
+ :boundingbox=>[53,
1500
+ -15,
1501
+ 559,
1502
+ 620]},
1503
+ "edieresis"=>{:charcode=>-1,
1504
+ :wx=>600,
1505
+ :name=>"edieresis",
1506
+ :boundingbox=>[66,
1507
+ -15,
1508
+ 548,
1509
+ 620]},
1510
+ "cacute"=>{:charcode=>-1,
1511
+ :wx=>600,
1512
+ :name=>"cacute",
1513
+ :boundingbox=>[66,
1514
+ -15,
1515
+ 529,
1516
+ 672]},
1517
+ "nacute"=>{:charcode=>-1,
1518
+ :wx=>600,
1519
+ :name=>"nacute",
1520
+ :boundingbox=>[26,
1521
+ 0,
1522
+ 575,
1523
+ 672]},
1524
+ "umacron"=>{:charcode=>-1,
1525
+ :wx=>600,
1526
+ :name=>"umacron",
1527
+ :boundingbox=>[21,
1528
+ -15,
1529
+ 562,
1530
+ 565]},
1531
+ "Ncaron"=>{:charcode=>-1,
1532
+ :wx=>600,
1533
+ :name=>"Ncaron",
1534
+ :boundingbox=>[7,
1535
+ -13,
1536
+ 593,
1537
+ 802]},
1538
+ "Iacute"=>{:charcode=>-1,
1539
+ :wx=>600,
1540
+ :name=>"Iacute",
1541
+ :boundingbox=>[96,
1542
+ 0,
1543
+ 504,
1544
+ 805]},
1545
+ "plusminus"=>{:charcode=>-1,
1546
+ :wx=>600,
1547
+ :name=>"plusminus",
1548
+ :boundingbox=>[87,
1549
+ 44,
1550
+ 513,
1551
+ 558]},
1552
+ "brokenbar"=>{:charcode=>-1,
1553
+ :wx=>600,
1554
+ :name=>"brokenbar",
1555
+ :boundingbox=>[275,
1556
+ -175,
1557
+ 326,
1558
+ 675]},
1559
+ "registered"=>{:charcode=>-1,
1560
+ :wx=>600,
1561
+ :name=>"registered",
1562
+ :boundingbox=>[0,
1563
+ -18,
1564
+ 600,
1565
+ 580]},
1566
+ "Gbreve"=>{:charcode=>-1,
1567
+ :wx=>600,
1568
+ :name=>"Gbreve",
1569
+ :boundingbox=>[31,
1570
+ -18,
1571
+ 575,
1572
+ 732]},
1573
+ "Idotaccent"=>{:charcode=>-1,
1574
+ :wx=>600,
1575
+ :name=>"Idotaccent",
1576
+ :boundingbox=>[96,
1577
+ 0,
1578
+ 504,
1579
+ 753]},
1580
+ "summation"=>{:charcode=>-1,
1581
+ :wx=>600,
1582
+ :name=>"summation",
1583
+ :boundingbox=>[15,
1584
+ -10,
1585
+ 585,
1586
+ 706]},
1587
+ "Egrave"=>{:charcode=>-1,
1588
+ :wx=>600,
1589
+ :name=>"Egrave",
1590
+ :boundingbox=>[53,
1591
+ 0,
1592
+ 550,
1593
+ 805]},
1594
+ "racute"=>{:charcode=>-1,
1595
+ :wx=>600,
1596
+ :name=>"racute",
1597
+ :boundingbox=>[60,
1598
+ 0,
1599
+ 559,
1600
+ 672]},
1601
+ "omacron"=>{:charcode=>-1,
1602
+ :wx=>600,
1603
+ :name=>"omacron",
1604
+ :boundingbox=>[62,
1605
+ -15,
1606
+ 538,
1607
+ 565]},
1608
+ "Zacute"=>{:charcode=>-1,
1609
+ :wx=>600,
1610
+ :name=>"Zacute",
1611
+ :boundingbox=>[86,
1612
+ 0,
1613
+ 514,
1614
+ 805]},
1615
+ "Zcaron"=>{:charcode=>-1,
1616
+ :wx=>600,
1617
+ :name=>"Zcaron",
1618
+ :boundingbox=>[86,
1619
+ 0,
1620
+ 514,
1621
+ 802]},
1622
+ "greaterequal"=>{:charcode=>-1,
1623
+ :wx=>600,
1624
+ :name=>"greaterequal",
1625
+ :boundingbox=>[98,
1626
+ 0,
1627
+ 502,
1628
+ 710]},
1629
+ "Eth"=>{:charcode=>-1,
1630
+ :wx=>600,
1631
+ :name=>"Eth",
1632
+ :boundingbox=>[30,
1633
+ 0,
1634
+ 574,
1635
+ 562]},
1636
+ "Ccedilla"=>{:charcode=>-1,
1637
+ :wx=>600,
1638
+ :name=>"Ccedilla",
1639
+ :boundingbox=>[41,
1640
+ -151,
1641
+ 540,
1642
+ 580]},
1643
+ "lcommaaccent"=>{:charcode=>-1,
1644
+ :wx=>600,
1645
+ :name=>"lcommaaccent",
1646
+ :boundingbox=>[95,
1647
+ -250,
1648
+ 505,
1649
+ 629]},
1650
+ "tcaron"=>{:charcode=>-1,
1651
+ :wx=>600,
1652
+ :name=>"tcaron",
1653
+ :boundingbox=>[87,
1654
+ -15,
1655
+ 530,
1656
+ 717]},
1657
+ "eogonek"=>{:charcode=>-1,
1658
+ :wx=>600,
1659
+ :name=>"eogonek",
1660
+ :boundingbox=>[66,
1661
+ -172,
1662
+ 548,
1663
+ 441]},
1664
+ "Uogonek"=>{:charcode=>-1,
1665
+ :wx=>600,
1666
+ :name=>"Uogonek",
1667
+ :boundingbox=>[17,
1668
+ -172,
1669
+ 583,
1670
+ 562]},
1671
+ "Aacute"=>{:charcode=>-1,
1672
+ :wx=>600,
1673
+ :name=>"Aacute",
1674
+ :boundingbox=>[3,
1675
+ 0,
1676
+ 597,
1677
+ 805]},
1678
+ "Adieresis"=>{:charcode=>-1,
1679
+ :wx=>600,
1680
+ :name=>"Adieresis",
1681
+ :boundingbox=>[3,
1682
+ 0,
1683
+ 597,
1684
+ 753]},
1685
+ "egrave"=>{:charcode=>-1,
1686
+ :wx=>600,
1687
+ :name=>"egrave",
1688
+ :boundingbox=>[66,
1689
+ -15,
1690
+ 548,
1691
+ 672]},
1692
+ "zacute"=>{:charcode=>-1,
1693
+ :wx=>600,
1694
+ :name=>"zacute",
1695
+ :boundingbox=>[99,
1696
+ 0,
1697
+ 502,
1698
+ 672]},
1699
+ "iogonek"=>{:charcode=>-1,
1700
+ :wx=>600,
1701
+ :name=>"iogonek",
1702
+ :boundingbox=>[95,
1703
+ -172,
1704
+ 505,
1705
+ 657]},
1706
+ "Oacute"=>{:charcode=>-1,
1707
+ :wx=>600,
1708
+ :name=>"Oacute",
1709
+ :boundingbox=>[43,
1710
+ -18,
1711
+ 557,
1712
+ 805]},
1713
+ "oacute"=>{:charcode=>-1,
1714
+ :wx=>600,
1715
+ :name=>"oacute",
1716
+ :boundingbox=>[62,
1717
+ -15,
1718
+ 538,
1719
+ 672]},
1720
+ "amacron"=>{:charcode=>-1,
1721
+ :wx=>600,
1722
+ :name=>"amacron",
1723
+ :boundingbox=>[53,
1724
+ -15,
1725
+ 559,
1726
+ 565]},
1727
+ "sacute"=>{:charcode=>-1,
1728
+ :wx=>600,
1729
+ :name=>"sacute",
1730
+ :boundingbox=>[80,
1731
+ -15,
1732
+ 513,
1733
+ 672]},
1734
+ "idieresis"=>{:charcode=>-1,
1735
+ :wx=>600,
1736
+ :name=>"idieresis",
1737
+ :boundingbox=>[95,
1738
+ 0,
1739
+ 505,
1740
+ 620]},
1741
+ "Ocircumflex"=>{:charcode=>-1,
1742
+ :wx=>600,
1743
+ :name=>"Ocircumflex",
1744
+ :boundingbox=>[43,
1745
+ -18,
1746
+ 557,
1747
+ 787]},
1748
+ "Ugrave"=>{:charcode=>-1,
1749
+ :wx=>600,
1750
+ :name=>"Ugrave",
1751
+ :boundingbox=>[17,
1752
+ -18,
1753
+ 583,
1754
+ 805]},
1755
+ "Delta"=>{:charcode=>-1,
1756
+ :wx=>600,
1757
+ :name=>"Delta",
1758
+ :boundingbox=>[6,
1759
+ 0,
1760
+ 598,
1761
+ 688]},
1762
+ "thorn"=>{:charcode=>-1,
1763
+ :wx=>600,
1764
+ :name=>"thorn",
1765
+ :boundingbox=>[-6,
1766
+ -157,
1767
+ 555,
1768
+ 629]},
1769
+ "twosuperior"=>{:charcode=>-1,
1770
+ :wx=>600,
1771
+ :name=>"twosuperior",
1772
+ :boundingbox=>[177,
1773
+ 249,
1774
+ 424,
1775
+ 622]},
1776
+ "Odieresis"=>{:charcode=>-1,
1777
+ :wx=>600,
1778
+ :name=>"Odieresis",
1779
+ :boundingbox=>[43,
1780
+ -18,
1781
+ 557,
1782
+ 753]},
1783
+ "mu"=>{:charcode=>-1,
1784
+ :wx=>600,
1785
+ :name=>"mu",
1786
+ :boundingbox=>[21,
1787
+ -157,
1788
+ 562,
1789
+ 426]},
1790
+ "igrave"=>{:charcode=>-1,
1791
+ :wx=>600,
1792
+ :name=>"igrave",
1793
+ :boundingbox=>[95,
1794
+ 0,
1795
+ 505,
1796
+ 672]},
1797
+ "ohungarumlaut"=>{:charcode=>-1,
1798
+ :wx=>600,
1799
+ :name=>"ohungarumlaut",
1800
+ :boundingbox=>[62,
1801
+ -15,
1802
+ 580,
1803
+ 672]},
1804
+ "Eogonek"=>{:charcode=>-1,
1805
+ :wx=>600,
1806
+ :name=>"Eogonek",
1807
+ :boundingbox=>[53,
1808
+ -172,
1809
+ 561,
1810
+ 562]},
1811
+ "dcroat"=>{:charcode=>-1,
1812
+ :wx=>600,
1813
+ :name=>"dcroat",
1814
+ :boundingbox=>[45,
1815
+ -15,
1816
+ 591,
1817
+ 629]},
1818
+ "threequarters"=>{:charcode=>-1,
1819
+ :wx=>600,
1820
+ :name=>"threequarters",
1821
+ :boundingbox=>[8,
1822
+ -56,
1823
+ 593,
1824
+ 666]},
1825
+ "Scedilla"=>{:charcode=>-1,
1826
+ :wx=>600,
1827
+ :name=>"Scedilla",
1828
+ :boundingbox=>[72,
1829
+ -151,
1830
+ 529,
1831
+ 580]},
1832
+ "lcaron"=>{:charcode=>-1,
1833
+ :wx=>600,
1834
+ :name=>"lcaron",
1835
+ :boundingbox=>[95,
1836
+ 0,
1837
+ 533,
1838
+ 629]},
1839
+ "Kcommaaccent"=>{:charcode=>-1,
1840
+ :wx=>600,
1841
+ :name=>"Kcommaaccent",
1842
+ :boundingbox=>[38,
1843
+ -250,
1844
+ 582,
1845
+ 562]},
1846
+ "Lacute"=>{:charcode=>-1,
1847
+ :wx=>600,
1848
+ :name=>"Lacute",
1849
+ :boundingbox=>[47,
1850
+ 0,
1851
+ 554,
1852
+ 805]},
1853
+ "trademark"=>{:charcode=>-1,
1854
+ :wx=>600,
1855
+ :name=>"trademark",
1856
+ :boundingbox=>[-23,
1857
+ 263,
1858
+ 623,
1859
+ 562]},
1860
+ "edotaccent"=>{:charcode=>-1,
1861
+ :wx=>600,
1862
+ :name=>"edotaccent",
1863
+ :boundingbox=>[66,
1864
+ -15,
1865
+ 548,
1866
+ 620]},
1867
+ "Igrave"=>{:charcode=>-1,
1868
+ :wx=>600,
1869
+ :name=>"Igrave",
1870
+ :boundingbox=>[96,
1871
+ 0,
1872
+ 504,
1873
+ 805]},
1874
+ "Imacron"=>{:charcode=>-1,
1875
+ :wx=>600,
1876
+ :name=>"Imacron",
1877
+ :boundingbox=>[96,
1878
+ 0,
1879
+ 504,
1880
+ 698]},
1881
+ "Lcaron"=>{:charcode=>-1,
1882
+ :wx=>600,
1883
+ :name=>"Lcaron",
1884
+ :boundingbox=>[47,
1885
+ 0,
1886
+ 554,
1887
+ 562]},
1888
+ "onehalf"=>{:charcode=>-1,
1889
+ :wx=>600,
1890
+ :name=>"onehalf",
1891
+ :boundingbox=>[0,
1892
+ -57,
1893
+ 611,
1894
+ 665]},
1895
+ "lessequal"=>{:charcode=>-1,
1896
+ :wx=>600,
1897
+ :name=>"lessequal",
1898
+ :boundingbox=>[98,
1899
+ 0,
1900
+ 502,
1901
+ 710]},
1902
+ "ocircumflex"=>{:charcode=>-1,
1903
+ :wx=>600,
1904
+ :name=>"ocircumflex",
1905
+ :boundingbox=>[62,
1906
+ -15,
1907
+ 538,
1908
+ 654]},
1909
+ "ntilde"=>{:charcode=>-1,
1910
+ :wx=>600,
1911
+ :name=>"ntilde",
1912
+ :boundingbox=>[26,
1913
+ 0,
1914
+ 575,
1915
+ 606]},
1916
+ "Uhungarumlaut"=>{:charcode=>-1,
1917
+ :wx=>600,
1918
+ :name=>"Uhungarumlaut",
1919
+ :boundingbox=>[17,
1920
+ -18,
1921
+ 590,
1922
+ 805]},
1923
+ "Eacute"=>{:charcode=>-1,
1924
+ :wx=>600,
1925
+ :name=>"Eacute",
1926
+ :boundingbox=>[53,
1927
+ 0,
1928
+ 550,
1929
+ 805]},
1930
+ "emacron"=>{:charcode=>-1,
1931
+ :wx=>600,
1932
+ :name=>"emacron",
1933
+ :boundingbox=>[66,
1934
+ -15,
1935
+ 548,
1936
+ 565]},
1937
+ "gbreve"=>{:charcode=>-1,
1938
+ :wx=>600,
1939
+ :name=>"gbreve",
1940
+ :boundingbox=>[45,
1941
+ -157,
1942
+ 566,
1943
+ 609]},
1944
+ "onequarter"=>{:charcode=>-1,
1945
+ :wx=>600,
1946
+ :name=>"onequarter",
1947
+ :boundingbox=>[0,
1948
+ -57,
1949
+ 600,
1950
+ 665]},
1951
+ "Scaron"=>{:charcode=>-1,
1952
+ :wx=>600,
1953
+ :name=>"Scaron",
1954
+ :boundingbox=>[72,
1955
+ -20,
1956
+ 529,
1957
+ 802]},
1958
+ "Scommaaccent"=>{:charcode=>-1,
1959
+ :wx=>600,
1960
+ :name=>"Scommaaccent",
1961
+ :boundingbox=>[72,
1962
+ -250,
1963
+ 529,
1964
+ 580]},
1965
+ "Ohungarumlaut"=>{:charcode=>-1,
1966
+ :wx=>600,
1967
+ :name=>"Ohungarumlaut",
1968
+ :boundingbox=>[43,
1969
+ -18,
1970
+ 580,
1971
+ 805]},
1972
+ "degree"=>{:charcode=>-1,
1973
+ :wx=>600,
1974
+ :name=>"degree",
1975
+ :boundingbox=>[123,
1976
+ 269,
1977
+ 477,
1978
+ 622]},
1979
+ "ograve"=>{:charcode=>-1,
1980
+ :wx=>600,
1981
+ :name=>"ograve",
1982
+ :boundingbox=>[62,
1983
+ -15,
1984
+ 538,
1985
+ 672]},
1986
+ "Ccaron"=>{:charcode=>-1,
1987
+ :wx=>600,
1988
+ :name=>"Ccaron",
1989
+ :boundingbox=>[41,
1990
+ -18,
1991
+ 540,
1992
+ 802]},
1993
+ "ugrave"=>{:charcode=>-1,
1994
+ :wx=>600,
1995
+ :name=>"ugrave",
1996
+ :boundingbox=>[21,
1997
+ -15,
1998
+ 562,
1999
+ 672]},
2000
+ "radical"=>{:charcode=>-1,
2001
+ :wx=>600,
2002
+ :name=>"radical",
2003
+ :boundingbox=>[3,
2004
+ -15,
2005
+ 597,
2006
+ 792]},
2007
+ "Dcaron"=>{:charcode=>-1,
2008
+ :wx=>600,
2009
+ :name=>"Dcaron",
2010
+ :boundingbox=>[43,
2011
+ 0,
2012
+ 574,
2013
+ 802]},
2014
+ "rcommaaccent"=>{:charcode=>-1,
2015
+ :wx=>600,
2016
+ :name=>"rcommaaccent",
2017
+ :boundingbox=>[60,
2018
+ -250,
2019
+ 559,
2020
+ 441]},
2021
+ "Ntilde"=>{:charcode=>-1,
2022
+ :wx=>600,
2023
+ :name=>"Ntilde",
2024
+ :boundingbox=>[7,
2025
+ -13,
2026
+ 593,
2027
+ 729]},
2028
+ "otilde"=>{:charcode=>-1,
2029
+ :wx=>600,
2030
+ :name=>"otilde",
2031
+ :boundingbox=>[62,
2032
+ -15,
2033
+ 538,
2034
+ 606]},
2035
+ "Rcommaaccent"=>{:charcode=>-1,
2036
+ :wx=>600,
2037
+ :name=>"Rcommaaccent",
2038
+ :boundingbox=>[38,
2039
+ -250,
2040
+ 588,
2041
+ 562]},
2042
+ "Lcommaaccent"=>{:charcode=>-1,
2043
+ :wx=>600,
2044
+ :name=>"Lcommaaccent",
2045
+ :boundingbox=>[47,
2046
+ -250,
2047
+ 554,
2048
+ 562]},
2049
+ "Atilde"=>{:charcode=>-1,
2050
+ :wx=>600,
2051
+ :name=>"Atilde",
2052
+ :boundingbox=>[3,
2053
+ 0,
2054
+ 597,
2055
+ 729]},
2056
+ "Aogonek"=>{:charcode=>-1,
2057
+ :wx=>600,
2058
+ :name=>"Aogonek",
2059
+ :boundingbox=>[3,
2060
+ -172,
2061
+ 608,
2062
+ 562]},
2063
+ "Aring"=>{:charcode=>-1,
2064
+ :wx=>600,
2065
+ :name=>"Aring",
2066
+ :boundingbox=>[3,
2067
+ 0,
2068
+ 597,
2069
+ 750]},
2070
+ "Otilde"=>{:charcode=>-1,
2071
+ :wx=>600,
2072
+ :name=>"Otilde",
2073
+ :boundingbox=>[43,
2074
+ -18,
2075
+ 557,
2076
+ 729]},
2077
+ "zdotaccent"=>{:charcode=>-1,
2078
+ :wx=>600,
2079
+ :name=>"zdotaccent",
2080
+ :boundingbox=>[99,
2081
+ 0,
2082
+ 502,
2083
+ 620]},
2084
+ "Ecaron"=>{:charcode=>-1,
2085
+ :wx=>600,
2086
+ :name=>"Ecaron",
2087
+ :boundingbox=>[53,
2088
+ 0,
2089
+ 550,
2090
+ 802]},
2091
+ "Iogonek"=>{:charcode=>-1,
2092
+ :wx=>600,
2093
+ :name=>"Iogonek",
2094
+ :boundingbox=>[96,
2095
+ -172,
2096
+ 504,
2097
+ 562]},
2098
+ "kcommaaccent"=>{:charcode=>-1,
2099
+ :wx=>600,
2100
+ :name=>"kcommaaccent",
2101
+ :boundingbox=>[43,
2102
+ -250,
2103
+ 580,
2104
+ 629]},
2105
+ "minus"=>{:charcode=>-1,
2106
+ :wx=>600,
2107
+ :name=>"minus",
2108
+ :boundingbox=>[80,
2109
+ 232,
2110
+ 520,
2111
+ 283]},
2112
+ "Icircumflex"=>{:charcode=>-1,
2113
+ :wx=>600,
2114
+ :name=>"Icircumflex",
2115
+ :boundingbox=>[96,
2116
+ 0,
2117
+ 504,
2118
+ 787]},
2119
+ "ncaron"=>{:charcode=>-1,
2120
+ :wx=>600,
2121
+ :name=>"ncaron",
2122
+ :boundingbox=>[26,
2123
+ 0,
2124
+ 575,
2125
+ 669]},
2126
+ "tcommaaccent"=>{:charcode=>-1,
2127
+ :wx=>600,
2128
+ :name=>"tcommaaccent",
2129
+ :boundingbox=>[87,
2130
+ -250,
2131
+ 530,
2132
+ 561]},
2133
+ "logicalnot"=>{:charcode=>-1,
2134
+ :wx=>600,
2135
+ :name=>"logicalnot",
2136
+ :boundingbox=>[87,
2137
+ 108,
2138
+ 513,
2139
+ 369]},
2140
+ "odieresis"=>{:charcode=>-1,
2141
+ :wx=>600,
2142
+ :name=>"odieresis",
2143
+ :boundingbox=>[62,
2144
+ -15,
2145
+ 538,
2146
+ 620]},
2147
+ "udieresis"=>{:charcode=>-1,
2148
+ :wx=>600,
2149
+ :name=>"udieresis",
2150
+ :boundingbox=>[21,
2151
+ -15,
2152
+ 562,
2153
+ 620]},
2154
+ "notequal"=>{:charcode=>-1,
2155
+ :wx=>600,
2156
+ :name=>"notequal",
2157
+ :boundingbox=>[15,
2158
+ -16,
2159
+ 540,
2160
+ 529]},
2161
+ "gcommaaccent"=>{:charcode=>-1,
2162
+ :wx=>600,
2163
+ :name=>"gcommaaccent",
2164
+ :boundingbox=>[45,
2165
+ -157,
2166
+ 566,
2167
+ 708]},
2168
+ "eth"=>{:charcode=>-1,
2169
+ :wx=>600,
2170
+ :name=>"eth",
2171
+ :boundingbox=>[62,
2172
+ -15,
2173
+ 538,
2174
+ 629]},
2175
+ "zcaron"=>{:charcode=>-1,
2176
+ :wx=>600,
2177
+ :name=>"zcaron",
2178
+ :boundingbox=>[99,
2179
+ 0,
2180
+ 502,
2181
+ 669]},
2182
+ "ncommaaccent"=>{:charcode=>-1,
2183
+ :wx=>600,
2184
+ :name=>"ncommaaccent",
2185
+ :boundingbox=>[26,
2186
+ -250,
2187
+ 575,
2188
+ 441]},
2189
+ "onesuperior"=>{:charcode=>-1,
2190
+ :wx=>600,
2191
+ :name=>"onesuperior",
2192
+ :boundingbox=>[172,
2193
+ 249,
2194
+ 428,
2195
+ 622]},
2196
+ "imacron"=>{:charcode=>-1,
2197
+ :wx=>600,
2198
+ :name=>"imacron",
2199
+ :boundingbox=>[95,
2200
+ 0,
2201
+ 505,
2202
+ 565]},
2203
+ "Euro"=>{:charcode=>-1,
2204
+ :wx=>600,
2205
+ :name=>"Euro",
2206
+ :boundingbox=>[0,
2207
+ 0,
2208
+ 0,
2209
+ 0]}}
2210
+ end
2211
+ end