forked from ImageMagick/ImageMagick
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtype-apple.xml.in
1371 lines (1371 loc) · 31.6 KB
/
type-apple.xml.in
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE typemap [
<!ELEMENT typemap (type)+>
<!ELEMENT type (#PCDATA)>
<!ELEMENT include (#PCDATA)>
<!ATTLIST type name CDATA #REQUIRED>
<!ATTLIST type fullname CDATA #IMPLIED>
<!ATTLIST type family CDATA #IMPLIED>
<!ATTLIST type foundry CDATA #IMPLIED>
<!ATTLIST type weight CDATA #IMPLIED>
<!ATTLIST type style CDATA #IMPLIED>
<!ATTLIST type stretch CDATA #IMPLIED>
<!ATTLIST type format CDATA #IMPLIED>
<!ATTLIST type metrics CDATA #IMPLIED>
<!ATTLIST type glyphs CDATA #REQUIRED>
<!ATTLIST type version CDATA #IMPLIED>
<!ATTLIST include file CDATA #REQUIRED>
]>
<typemap>
<type
format="ttf"
name="AlBayan"
fullname="Al Bayan Plain"
family="Al Bayan"
glyphs="@apple_font_dir@/AlBayan.ttf"
/>
<type
format="ttf"
name="AlBayanB"
fullname="Al Bayan Bold"
family="Al Bayan"
glyphs="@apple_font_dir@/AlBayanBold.ttf"
/>
<type
format="ttf"
name="AndaleMono"
fullname="Andale Mono"
family="Andale Mono"
glyphs="@apple_font_dir@/Andale Mono.ttf"
/>
<type
format="ttf"
name="AppleChancery"
fullname="Apple Chancery"
family="Apple Chancery"
glyphs="@apple_font_dir@/Apple Chancery.ttf"
/>
<type
format="ttf"
name="AppleLiGothicM"
fullname="Apple LiGothic Medium"
family="Apple LiGothic"
glyphs="@apple_font_dir@/Apple LiGothic Medium.ttf"
/>
<type
format="ttf"
name="AppleLiSungL"
fullname="Apple LiSung Light"
family="Apple LiSung"
glyphs="@apple_font_dir@/Apple LiSung Light.ttf"
/>
<type
format="ttf"
name="AppleMyungjo"
fullname="AppleMyungjo Regular"
family="AppleMyungjo"
glyphs="@apple_font_dir@/AppleMyungjo.ttf"
/>
<type
format="ttf"
name="ArialBk"
fullname="Arial Black"
family="Arial Black"
glyphs="@apple_font_dir@/Arial Black.ttf"
/>
<type
format="ttf"
name="ArialBI"
fullname="Arial Bold Italic"
family="Arial"
glyphs="@apple_font_dir@/Arial Bold Italic.ttf"
/>
<type
format="ttf"
name="ArialB"
fullname="Arial Bold"
family="Arial"
glyphs="@apple_font_dir@/Arial Bold.ttf"
/>
<type
format="ttf"
name="ArialI"
fullname="Arial Italic"
family="Arial"
glyphs="@apple_font_dir@/Arial Italic.ttf"
/>
<type
format="ttf"
name="ArialNarrowBI"
fullname="Arial Narrow Bold Italic"
family="Arial Narrow"
glyphs="@apple_font_dir@/Arial Narrow Bold Italic.ttf"
/>
<type
format="ttf"
name="ArialNarrowB"
fullname="Arial Narrow Bold"
family="Arial Narrow"
glyphs="@apple_font_dir@/Arial Narrow Bold.ttf"
/>
<type
format="ttf"
name="ArialNarrowI"
fullname="Arial Narrow Italic"
family="Arial Narrow"
glyphs="@apple_font_dir@/Arial Narrow Italic.ttf"
/>
<type
format="ttf"
name="ArialNarrow"
fullname="Arial Narrow"
family="Arial Narrow"
glyphs="@apple_font_dir@/Arial Narrow.ttf"
/>
<type
format="ttf"
name="ArialRoundedB"
fullname="Arial Rounded MT Bold"
family="Arial Rounded Bold"
glyphs="@apple_font_dir@/Arial Rounded Bold.ttf"
/>
<type
format="ttf"
name="ArialUnicode"
fullname="Arial Unicode MS"
family="Arial Unicode"
glyphs="@apple_font_dir@/Arial Unicode.ttf"
/>
<type
format="ttf"
name="Arial"
fullname="Arial"
family="Arial"
glyphs="@apple_font_dir@/Arial.ttf"
/>
<type
format="ttf"
name="ArialHebrew"
fullname="Arial Hebrew"
family="Arial Hebrew"
glyphs="@apple_font_dir@/ArialHB.ttf"
/>
<type
format="ttf"
name="ArialHebrewB"
fullname="Arial Hebrew Bold"
family="Arial Hebrew"
glyphs="@apple_font_dir@/ArialHBBold.ttf"
/>
<type
format="ttf"
name="AsapB"
fullname="Asap Bold"
family="Asap"
glyphs="@apple_font_dir@/Asap-Bold.ttf"
/>
<type
format="ttf"
name="AsapBI"
fullname="Asap Bold Italic"
family="Asap"
glyphs="@apple_font_dir@/Asap-BoldItalic.ttf"
/>
<type
format="ttf"
name="AsapI"
fullname="Asap Italic"
family="Asap"
glyphs="@apple_font_dir@/Asap-Italic.ttf"
/>
<type
format="ttf"
name="Asap"
fullname="Asap"
family="Asap"
glyphs="@apple_font_dir@/Asap-Regular.ttf"
/>
<type
format="ttf"
name="AvantGardeDemi"
fullname="Avant Garde Demi BT"
family="AvantGarde Bk BT"
glyphs="@apple_font_dir@/Avant Garde Demi.ttf"
/>
<type
format="ttf"
name="Ayuthaya"
fullname="Ayuthaya"
family="Ayuthaya"
glyphs="@apple_font_dir@/Ayuthaya.ttf"
/>
<type
format="ttf"
name="Baghdad"
fullname="Baghdad"
family="Baghdad"
glyphs="@apple_font_dir@/Baghdad.ttf"
/>
<type
format="ttf"
name="BiauKai"
fullname="BiauKai"
family="BiauKai"
glyphs="@apple_font_dir@/BiauKai.ttf"
/>
<type
format="ttf"
name="BigCaslonM"
fullname="Big Caslon Medium"
family="Big Caslon"
glyphs="@apple_font_dir@/BigCaslon.ttf"
/>
<type
format="ttf"
name="BrushScriptI"
fullname="Brush Script MT Italic"
family="Brush Script "
glyphs="@apple_font_dir@/Brush Script.ttf"
/>
<type
format="ttf"
name="Candice"
fullname="Candice"
family="Candice"
glyphs="@apple_font_dir@/Candice.ttf"
/>
<type
format="ttf"
name="Chalkduster"
fullname="Chalkduster"
family="Chalkduster"
glyphs="@apple_font_dir@/Chalkduster.ttf"
/>
<type
format="ttf"
name="ComicSansMSB"
fullname="Comic Sans MS Bold"
family="Comic Sans"
glyphs="@apple_font_dir@/Comic Sans MS Bold.ttf"
/>
<type
format="ttf"
name="ComicSans"
fullname="Comic Sans MS"
family="Comic Sans"
glyphs="@apple_font_dir@/Comic Sans MS.ttf"
/>
<type
format="ttf"
name="ComicSans"
fullname="Comic Sans MS"
family="Comic Sans"
glyphs="@apple_font_dir@/comic.ttf"
/>
<type
format="ttf"
name="ComicSansMSB"
fullname="Comic Sans MS Bold"
family="Comic Sans"
glyphs="@apple_font_dir@/comicbd.ttf"
/>
<type
format="ttf"
name="CorsivaHebrew"
fullname="Corsiva Hebrew"
family="Corsiva Hebrew"
glyphs="@apple_font_dir@/Corsiva.ttf"
/>
<type
format="ttf"
name="CorsivaHebrewB"
fullname="Corsiva Hebrew Bold"
family="Corsiva Hebrew"
glyphs="@apple_font_dir@/CorsivaBold.ttf"
/>
<type
format="ttf"
name="CourierNewBI"
fullname="Courier New Bold Italic"
family="Courier New"
glyphs="@apple_font_dir@/Courier New Bold Italic.ttf"
/>
<type
format="ttf"
name="CourierNewB"
fullname="Courier New Bold"
family="Courier New"
glyphs="@apple_font_dir@/Courier New Bold.ttf"
/>
<type
format="ttf"
name="CourierNewI"
fullname="Courier New Italic"
family="Courier New"
glyphs="@apple_font_dir@/Courier New Italic.ttf"
/>
<type
format="ttf"
name="CourierNew"
fullname="Courier New"
family="Courier New"
glyphs="@apple_font_dir@/Courier New.ttf"
/>
<type
format="ttf"
name="DecoTypeNaskh"
fullname="DecoType Naskh"
family="DecoType Naskh"
glyphs="@apple_font_dir@/DecoTypeNaskh.ttf"
/>
<type
format="ttf"
name="Devanagari"
fullname="Devanagari MT"
family="Devanagari "
glyphs="@apple_font_dir@/DevanagariMT.ttf"
/>
<type
format="ttf"
name="DevanagariB"
fullname="Devanagari MT Bold"
family="Devanagari "
glyphs="@apple_font_dir@/DevanagariMTBold.ttf"
/>
<type
format="ttf"
name="EuphemiaUCASB"
fullname="Euphemia UCAS Bold"
family="Euphemia UCAS"
glyphs="@apple_font_dir@/EuphemiaCASBold.ttf"
/>
<type
format="ttf"
name="EuphemiaUCASI"
fullname="Euphemia UCAS Italic"
family="Euphemia UCAS"
glyphs="@apple_font_dir@/EuphemiaCASItalic.ttf"
/>
<type
format="ttf"
name="EuphemiaUCAS"
fullname="Euphemia UCAS"
family="Euphemia UCAS"
glyphs="@apple_font_dir@/EuphemiaCASRegular.ttf"
/>
<type
format="ttf"
name="GeorgiaBI"
fullname="Georgia Bold Italic"
family="Georgia"
glyphs="@apple_font_dir@/Georgia Bold Italic.ttf"
/>
<type
format="ttf"
name="GeorgiaB"
fullname="Georgia Bold"
family="Georgia"
glyphs="@apple_font_dir@/Georgia Bold.ttf"
/>
<type
format="ttf"
name="GeorgiaI"
fullname="Georgia Italic"
family="Georgia"
glyphs="@apple_font_dir@/Georgia Italic.ttf"
/>
<type
format="ttf"
name="Georgia"
fullname="Georgia"
family="Georgia"
glyphs="@apple_font_dir@/Georgia.ttf"
/>
<type
format="ttf"
name="GreekMathSymbols"
fullname="GreekMathSymbols Normal"
family="GreekMathSymbols"
glyphs="@apple_font_dir@/GreekMathSymbols Normal.ttf"
/>
<type
format="ttf"
name="Gujarati"
fullname="Gujarati MT"
family="Gujarati "
glyphs="@apple_font_dir@/GujaratiMT.ttf"
/>
<type
format="ttf"
name="GujaratiB"
fullname="Gujarati MT Bold"
family="Gujarati "
glyphs="@apple_font_dir@/GujaratiMTBold.ttf"
/>
<type
format="ttf"
name="Gulim"
fullname="Gulim"
family="Gulim"
glyphs="@apple_font_dir@/Gulim.ttf"
/>
<type
format="ttf"
name="GungSeo"
fullname="GungSeo Regular"
family="GungSeo"
glyphs="@apple_font_dir@/Gungseouche.ttf"
/>
<type
format="ttf"
name="Gurmukhi"
fullname="Gurmukhi MT"
family="Gurmukhi "
glyphs="@apple_font_dir@/Gurmukhi.ttf"
/>
<type
format="ttf"
name="HeadLineA"
fullname="HeadLineA Regular"
family="HeadLineA"
glyphs="@apple_font_dir@/HeadlineA.ttf"
/>
<type
format="ttf"
name="Hei"
fullname="Hei Regular"
family="Hei"
glyphs="@apple_font_dir@/Hei.ttf"
/>
<type
format="ttf"
name="Herculanum"
fullname="Herculanum"
family="Herculanum"
glyphs="@apple_font_dir@/Herculanum.ttf"
/>
<type
format="ttf"
name="HoeflerTextOrnaments"
fullname="Hoefler Text Ornaments"
family="Hoefler Text"
glyphs="@apple_font_dir@/Hoefler Text Ornaments.ttf"
/>
<type
format="ttf"
name="Impact"
fullname="Impact"
family="Impact"
glyphs="@apple_font_dir@/Impact.ttf"
/>
<type
format="ttf"
name="InaiMathi"
fullname="InaiMathi"
family="InaiMathi"
glyphs="@apple_font_dir@/InaiMathi.ttf"
/>
<type
format="ttf"
name="Kai"
fullname="Kai Regular"
family="Kai"
glyphs="@apple_font_dir@/Kai.ttf"
/>
<type
format="ttf"
name="Kailasa"
fullname="Kailasa Regular"
family="Kailasa"
glyphs="@apple_font_dir@/Kailasa.ttf"
/>
<type
format="ttf"
name="Kokonor"
fullname="Kokonor Regular"
family="Kokonor"
glyphs="@apple_font_dir@/Kokonor.ttf"
/>
<type
format="ttf"
name="Krungthep"
fullname="Krungthep"
family="Krungthep"
glyphs="@apple_font_dir@/Krungthep.ttf"
/>
<type
format="ttf"
name="KufiStandardGK"
fullname="KufiStandardGK"
family="KufiStandardGK"
glyphs="@apple_font_dir@/KufiStandardGK.ttf"
/>
<type
format="ttf"
name="Symbol"
fullname="Symbol"
family="Symbol"
glyphs="@apple_font_dir@/MathSymbol.ttf"
/>
<type
format="ttf"
name="Batang"
fullname="Batang"
family="Batang"
glyphs="@apple_font_dir@/Microsoft/Batang.ttf"
/>
<type
format="ttf"
name="BookshelfSymbol7"
fullname="Bookshelf Symbol 7"
family="Bookshelf Symbol 7"
glyphs="@apple_font_dir@/Microsoft/Bookshelf Symbol 7.ttf"
/>
<type
format="ttf"
name="BrushScriptI"
fullname="Brush Script MT Italic"
family="Brush Script "
glyphs="@apple_font_dir@/Microsoft/Brush Script.ttf"
/>
<type
format="ttf"
name="CalibriBI"
fullname="Calibri Bold Italic"
family="Calibri"
glyphs="@apple_font_dir@/Microsoft/Calibri Bold Italic.ttf"
/>
<type
format="ttf"
name="CalibriB"
fullname="Calibri Bold"
family="Calibri"
glyphs="@apple_font_dir@/Microsoft/Calibri Bold.ttf"
/>
<type
format="ttf"
name="CalibriI"
fullname="Calibri Italic"
family="Calibri"
glyphs="@apple_font_dir@/Microsoft/Calibri Italic.ttf"
/>
<type
format="ttf"
name="Calibri"
fullname="Calibri"
family="Calibri"
glyphs="@apple_font_dir@/Microsoft/Calibri.ttf"
/>
<type
format="ttf"
name="CambriaBI"
fullname="Cambria Bold Italic"
family="Cambria"
glyphs="@apple_font_dir@/Microsoft/Cambria Bold Italic.ttf"
/>
<type
format="ttf"
name="CambriaB"
fullname="Cambria Bold"
family="Cambria"
glyphs="@apple_font_dir@/Microsoft/Cambria Bold.ttf"
/>
<type
format="ttf"
name="CambriaI"
fullname="Cambria Italic"
family="Cambria"
glyphs="@apple_font_dir@/Microsoft/Cambria Italic.ttf"
/>
<type
format="ttf"
name="Cambria"
fullname="Cambria"
family="Cambria"
glyphs="@apple_font_dir@/Microsoft/Cambria.ttf"
/>
<type
format="ttf"
name="CandaraBI"
fullname="Candara Bold Italic"
family="Candara"
glyphs="@apple_font_dir@/Microsoft/Candara Bold Italic.ttf"
/>
<type
format="ttf"
name="CandaraB"
fullname="Candara Bold"
family="Candara"
glyphs="@apple_font_dir@/Microsoft/Candara Bold.ttf"
/>
<type
format="ttf"
name="CandaraI"
fullname="Candara Italic"
family="Candara"
glyphs="@apple_font_dir@/Microsoft/Candara Italic.ttf"
/>
<type
format="ttf"
name="Candara"
fullname="Candara"
family="Candara"
glyphs="@apple_font_dir@/Microsoft/Candara.ttf"
/>
<type
format="ttf"
name="ConsolasBI"
fullname="Consolas Bold Italic"
family="Consolas"
glyphs="@apple_font_dir@/Microsoft/Consolas Bold Italic.ttf"
/>
<type
format="ttf"
name="ConsolasB"
fullname="Consolas Bold"
family="Consolas"
glyphs="@apple_font_dir@/Microsoft/Consolas Bold.ttf"
/>
<type
format="ttf"
name="ConsolasI"
fullname="Consolas Italic"
family="Consolas"
glyphs="@apple_font_dir@/Microsoft/Consolas Italic.ttf"
/>
<type
format="ttf"
name="Consolas"
fullname="Consolas"
family="Consolas"
glyphs="@apple_font_dir@/Microsoft/Consolas.ttf"
/>
<type
format="ttf"
name="ConstantiaTestI"
fullname="Constantia Test Italic"
family="Constantia"
glyphs="@apple_font_dir@/Microsoft/Constantia Bold Italic.ttf"
/>
<type
format="ttf"
name="ConstantiaB"
fullname="Constantia Bold"
family="Constantia"
glyphs="@apple_font_dir@/Microsoft/Constantia Bold.ttf"
/>
<type
format="ttf"
name="ConstantiaI"
fullname="Constantia Italic"
family="Constantia"
glyphs="@apple_font_dir@/Microsoft/Constantia Italic.ttf"
/>
<type
format="ttf"
name="Constantia"
fullname="Constantia"
family="Constantia"
glyphs="@apple_font_dir@/Microsoft/Constantia.ttf"
/>
<type
format="ttf"
name="CorbelTestBI"
fullname="Corbel Test Bold Italic"
family="Corbel"
glyphs="@apple_font_dir@/Microsoft/Corbel Bold Italic.ttf"
/>
<type
format="ttf"
name="CorbelTestB"
fullname="Corbel Test Bold"
family="Corbel"
glyphs="@apple_font_dir@/Microsoft/Corbel Bold.ttf"
/>
<type
format="ttf"
name="CorbelI"
fullname="Corbel Italic"
family="Corbel"
glyphs="@apple_font_dir@/Microsoft/Corbel Italic.ttf"
/>
<type
format="ttf"
name="Corbel"
fullname="Corbel"
family="Corbel"
glyphs="@apple_font_dir@/Microsoft/Corbel.ttf"
/>
<type
format="ttf"
name="FranklinGothicBookI"
fullname="Franklin Gothic Book Italic"
family="Franklin Gothic Book"
glyphs="@apple_font_dir@/Microsoft/Franklin Gothic Book Italic.ttf"
/>
<type
format="ttf"
name="FranklinGothicBook"
fullname="Franklin Gothic Book"
family="Franklin Gothic Book"
glyphs="@apple_font_dir@/Microsoft/Franklin Gothic Book.ttf"
/>
<type
format="ttf"
name="FranklinGothicMI"
fullname="Franklin Gothic Medium Italic"
family="Franklin Gothic Medium"
glyphs="@apple_font_dir@/Microsoft/Franklin Gothic Medium Italic.ttf"
/>
<type
format="ttf"
name="FranklinGothicM"
fullname="Franklin Gothic Medium"
family="Franklin Gothic Medium"
glyphs="@apple_font_dir@/Microsoft/Franklin Gothic Medium.ttf"
/>
<type
format="ttf"
name="GillSansBI"
fullname="Gill Sans MT Bold Italic"
family="Gill Sans "
glyphs="@apple_font_dir@/Microsoft/Gill Sans MT Bold Italic.ttf"
/>
<type
format="ttf"
name="GillSansB"
fullname="Gill Sans MT Bold"
family="Gill Sans "
glyphs="@apple_font_dir@/Microsoft/Gill Sans MT Bold.ttf"
/>
<type
format="ttf"
name="GillSansI"
fullname="Gill Sans MT Italic"
family="Gill Sans "
glyphs="@apple_font_dir@/Microsoft/Gill Sans MT Italic.ttf"
/>
<type
format="ttf"
name="GillSans"
fullname="Gill Sans MT"
family="Gill Sans "
glyphs="@apple_font_dir@/Microsoft/Gill Sans MT.ttf"
/>
<type
format="ttf"
name="Gulim"
fullname="Gulim"
family="Gulim"
glyphs="@apple_font_dir@/Microsoft/Gulim.ttf"
/>
<type
format="ttf"
name="LucidaConsole"
fullname="Lucida Console"
family="Lucida Console"
glyphs="@apple_font_dir@/Microsoft/Lucida Console.ttf"
/>
<type
format="ttf"
name="LucidaSansUnicode"
fullname="Lucida Sans Unicode"
family="Lucida Sans Unicode"
glyphs="@apple_font_dir@/Microsoft/Lucida Sans Unicode.ttf"
/>
<type
format="ttf"
name="Marlett"
fullname="Marlett"
family="Marlett"
glyphs="@apple_font_dir@/Microsoft/Marlett.ttf"
/>
<type
format="ttf"
name="MeiryoBI"
fullname="Meiryo Bold Italic"
family="Meiryo"
glyphs="@apple_font_dir@/Microsoft/Meiryo Bold Italic.ttf"
/>
<type
format="ttf"
name="MeiryoB"
fullname="Meiryo Bold"
family="Meiryo"
glyphs="@apple_font_dir@/Microsoft/Meiryo Bold.ttf"
/>
<type
format="ttf"
name="MeiryoI"
fullname="Meiryo Italic"
family="Meiryo"
glyphs="@apple_font_dir@/Microsoft/Meiryo Italic.ttf"
/>
<type
format="ttf"
name="Meiryo"
fullname="Meiryo"
family="Meiryo"
glyphs="@apple_font_dir@/Microsoft/Meiryo.ttf"
/>
<type
format="ttf"
name="Gothic"
fullname="MS Gothic"
family="Gothic"
glyphs="@apple_font_dir@/Microsoft/MS Gothic.ttf"
/>
<type
format="ttf"
name="Mincho"
fullname="MS Mincho"
family="Mincho"
glyphs="@apple_font_dir@/Microsoft/MS Mincho.ttf"
/>
<type
format="ttf"
name="PGothic"
fullname="MS PGothic"
family="PGothic"
glyphs="@apple_font_dir@/Microsoft/MS PGothic.ttf"
/>
<type
format="ttf"
name="PMincho"
fullname="MS PMincho"
family="PMincho"
glyphs="@apple_font_dir@/Microsoft/MS PMincho.ttf"
/>
<type
format="ttf"
name="ReferenceSansSerif"
fullname="MS Reference Sans Serif"
family="Reference Sans Serif"
glyphs="@apple_font_dir@/Microsoft/MS Reference Sans Serif.ttf"
/>
<type
format="ttf"
name="ReferenceSpecialty"
fullname="MS Reference Specialty"
family="Reference Specialty"
glyphs="@apple_font_dir@/Microsoft/MS Reference Specialty.ttf"
/>
<type
format="ttf"
name="PerpetuaBI"
fullname="Perpetua Bold Italic"
family="Perpetua"
glyphs="@apple_font_dir@/Microsoft/Perpetua Bold Italic.ttf"
/>
<type
format="ttf"
name="PerpetuaB"
fullname="Perpetua Bold"
family="Perpetua"
glyphs="@apple_font_dir@/Microsoft/Perpetua Bold.ttf"
/>
<type
format="ttf"
name="PerpetuaI"
fullname="Perpetua Italic"
family="Perpetua"
glyphs="@apple_font_dir@/Microsoft/Perpetua Italic.ttf"
/>
<type
format="ttf"
name="Perpetua"
fullname="Perpetua"
family="Perpetua"
glyphs="@apple_font_dir@/Microsoft/Perpetua.ttf"
/>
<type
format="ttf"
name="PMingLiU"
fullname="PMingLiU"
family="PMingLiU"
glyphs="@apple_font_dir@/Microsoft/PMingLiU.ttf"
/>
<type
format="ttf"
name="SimSun"
fullname="SimSun"
family="SimSun"
glyphs="@apple_font_dir@/Microsoft/SimSun.ttf"
/>
<type
format="ttf"
name="TwCenBI"
fullname="Tw Cen MT Bold Italic"
family="Tw Cen "
glyphs="@apple_font_dir@/Microsoft/Tw Cen MT Bold Italic.ttf"
/>
<type
format="ttf"
name="TwCenB"
fullname="Tw Cen MT Bold"
family="Tw Cen "
glyphs="@apple_font_dir@/Microsoft/Tw Cen MT Bold.ttf"
/>
<type
format="ttf"
name="TwCenI"
fullname="Tw Cen MT Italic"
family="Tw Cen "
glyphs="@apple_font_dir@/Microsoft/Tw Cen MT Italic.ttf"
/>
<type
format="ttf"
name="TwCen"
fullname="Tw Cen MT"
family="Tw Cen "
glyphs="@apple_font_dir@/Microsoft/Tw Cen MT.ttf"
/>
<type
format="ttf"
name="MicrosoftSansSerif"
fullname="Microsoft Sans Serif"
family="Microsoft Sans Serif"
glyphs="@apple_font_dir@/Microsoft Sans Serif.ttf"
/>
<type
format="ttf"
name="Gothic"
fullname="MS Gothic"
family="Gothic"
glyphs="@apple_font_dir@/MS Gothic.ttf"
/>
<type
format="ttf"
name="Mincho"
fullname="MS Mincho"
family="Mincho"
glyphs="@apple_font_dir@/MS Mincho.ttf"
/>
<type
format="ttf"
name="PGothic"
fullname="MS PGothic"
family="PGothic"
glyphs="@apple_font_dir@/MS PGothic.ttf"
/>
<type
format="ttf"
name="PMincho"
fullname="MS PMincho"
family="PMincho"
glyphs="@apple_font_dir@/MS PMincho.ttf"
/>
<type
format="ttf"
name="MshtakanB"
fullname="Mshtakan Bold"
family="Mshtakan"
glyphs="@apple_font_dir@/MshtakanBold.ttf"
/>
<type
format="ttf"
name="MshtakanBoldOblique"
fullname="Mshtakan BoldOblique"
family="Mshtakan"
glyphs="@apple_font_dir@/MshtakanBoldOblique.ttf"
/>
<type
format="ttf"
name="MshtakanOb"
fullname="Mshtakan Oblique"
family="Mshtakan"
glyphs="@apple_font_dir@/MshtakanOblique.ttf"
/>
<type
format="ttf"
name="Mshtakan"
fullname="Mshtakan"
family="Mshtakan"
glyphs="@apple_font_dir@/MshtakanRegular.ttf"
/>
<type
format="ttf"
name="Nadeem"
fullname="Nadeem"
family="Nadeem"
glyphs="@apple_font_dir@/Nadeem.ttf"
/>
<type
format="ttf"
name="NewPeninim"
fullname="New Peninim MT"
family="New Peninim "
glyphs="@apple_font_dir@/NewPeninimMT.ttf"
/>
<type