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