-
Notifications
You must be signed in to change notification settings - Fork 0
/
ElianWideCapitalsLight.sfd
2027 lines (1947 loc) · 33.2 KB
/
ElianWideCapitalsLight.sfd
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
SplineFontDB: 3.0
FontName: ElianWideCapitalsLight
FullName: Elian Wide Capitals Light EWCL_1
FamilyName: Elian Wide Capitals
Weight: Light
Copyright: Copyright (c) 2017 and following, the Elian Wide Capitals Light contributors.\n\nThis font is available for use, bundling, modification and redistribution under the SIL Open Font License, version 1.1 and following.\n\nhttp://scripts.sil.org/cms/scripts/page.php?site_id=nrsi&id=OFL\nhttps://en.wikipedia.org/wiki/SIL_Open_Font_License
UComments: "2017-5-20: Created with FontForge (http://fontforge.org)"
Version: 001.000
ItalicAngle: 0
UnderlinePosition: -60
UnderlineWidth: 30
Ascent: 400
Descent: 200
InvalidEm: 0
LayerCount: 2
Layer: 0 0 "Back" 1
Layer: 1 0 "Fore" 0
XUID: [1021 634 1715875129 234171]
FSType: 0
OS2Version: 0
OS2_WeightWidthSlopeOnly: 0
OS2_UseTypoMetrics: 1
CreationTime: 1495304261
ModificationTime: 1496876938
PfmFamily: 17
TTFWeight: 400
TTFWidth: 5
LineGap: 49
VLineGap: 0
OS2TypoAscent: 0
OS2TypoAOffset: 1
OS2TypoDescent: 0
OS2TypoDOffset: 1
OS2TypoLinegap: 49
OS2WinAscent: 0
OS2WinAOffset: 1
OS2WinDescent: 0
OS2WinDOffset: 1
HheadAscent: 0
HheadAOffset: 1
HheadDescent: 0
HheadDOffset: 1
OS2Vendor: 'PfEd'
Lookup: 258 4 0 "qu" { "qu-1" [90,9,0] "qu-2" [90,0,2] "qu-3" [90,9,0] "/q" [90,9,0] "qu-4" [90,0,2] "slash-startlow" [90,9,2] } []
MarkAttachClasses: 1
DEI: 91125
KernClass2: 2 2 "slash-startlow"
5 slash
9 c k l t u
0 {} 0 {} 0 {} -50 {}
KernClass2: 2 2 "qu-4"
5 slash
41 a b d e f g h i j m n o p q r s v w x y z
0 {} 0 {} 0 {} -25 {}
KernClass2: 1 1 "/q"
0 {}
KernClass2: 1 1 "qu-3"
0 {}
KernClass2: 3 2 "qu-2"
9 g p q y z
0
7 c k t u
0 {} 0 {} 0 {} -80 {} 0 {} 0 {}
KernClass2: 1 1 "qu-1"
0 {}
LangName: 1033 "" "" "" "" "" "" "" "" "" "" "" "" "" "Copyright (c) 2017, The Elian Wide Capitals contributors+AAoACgAA-This Font Software is licensed under the SIL Open Font License, Version 1.1.+AAoA-This license is copied below, and is also available with a FAQ at:+AAoA-http://scripts.sil.org/OFL+AAoACgAK------------------------------------------------------------+AAoA-SIL OPEN FONT LICENSE Version 1.1 - 26 February 2007+AAoA------------------------------------------------------------+AAoACgAA-PREAMBLE+AAoA-The goals of the Open Font License (OFL) are to stimulate worldwide+AAoA-development of collaborative font projects, to support the font creation+AAoA-efforts of academic and linguistic communities, and to provide a free and+AAoA-open framework in which fonts may be shared and improved in partnership+AAoA-with others.+AAoACgAA-The OFL allows the licensed fonts to be used, studied, modified and+AAoA-redistributed freely as long as they are not sold by themselves. The+AAoA-fonts, including any derivative works, can be bundled, embedded, +AAoA-redistributed and/or sold with any software provided that any reserved+AAoA-names are not used by derivative works. The fonts and derivatives,+AAoA-however, cannot be released under any other type of license. The+AAoA-requirement for fonts to remain under this license does not apply+AAoA-to any document created using the fonts or their derivatives.+AAoACgAA-DEFINITIONS+AAoAIgAA-Font Software+ACIA refers to the set of files released by the Copyright+AAoA-Holder(s) under this license and clearly marked as such. This may+AAoA-include source files, build scripts and documentation.+AAoACgAi-Reserved Font Name+ACIA refers to any names specified as such after the+AAoA-copyright statement(s).+AAoACgAi-Original Version+ACIA refers to the collection of Font Software components as+AAoA-distributed by the Copyright Holder(s).+AAoACgAi-Modified Version+ACIA refers to any derivative made by adding to, deleting,+AAoA-or substituting -- in part or in whole -- any of the components of the+AAoA-Original Version, by changing formats or by porting the Font Software to a+AAoA-new environment.+AAoACgAi-Author+ACIA refers to any designer, engineer, programmer, technical+AAoA-writer or other person who contributed to the Font Software.+AAoACgAA-PERMISSION & CONDITIONS+AAoA-Permission is hereby granted, free of charge, to any person obtaining+AAoA-a copy of the Font Software, to use, study, copy, merge, embed, modify,+AAoA-redistribute, and sell modified and unmodified copies of the Font+AAoA-Software, subject to the following conditions:+AAoACgAA-1) Neither the Font Software nor any of its individual components,+AAoA-in Original or Modified Versions, may be sold by itself.+AAoACgAA-2) Original or Modified Versions of the Font Software may be bundled,+AAoA-redistributed and/or sold with any software, provided that each copy+AAoA-contains the above copyright notice and this license. These can be+AAoA-included either as stand-alone text files, human-readable headers or+AAoA-in the appropriate machine-readable metadata fields within text or+AAoA-binary files as long as those fields can be easily viewed by the user.+AAoACgAA-3) No Modified Version of the Font Software may use the Reserved Font+AAoA-Name(s) unless explicit written permission is granted by the corresponding+AAoA-Copyright Holder. This restriction only applies to the primary font name as+AAoA-presented to the users.+AAoACgAA-4) The name(s) of the Copyright Holder(s) or the Author(s) of the Font+AAoA-Software shall not be used to promote, endorse or advertise any+AAoA-Modified Version, except to acknowledge the contribution(s) of the+AAoA-Copyright Holder(s) and the Author(s) or with their explicit written+AAoA-permission.+AAoACgAA-5) The Font Software, modified or unmodified, in part or in whole,+AAoA-must be distributed entirely under this license, and must not be+AAoA-distributed under any other license. The requirement for fonts to+AAoA-remain under this license does not apply to any document created+AAoA-using the Font Software.+AAoACgAA-TERMINATION+AAoA-This license becomes null and void if any of the above conditions are+AAoA-not met.+AAoACgAA-DISCLAIMER+AAoA-THE FONT SOFTWARE IS PROVIDED +ACIA-AS IS+ACIA, WITHOUT WARRANTY OF ANY KIND,+AAoA-EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF+AAoA-MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT+AAoA-OF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL THE+AAoA-COPYRIGHT HOLDER BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,+AAoA-INCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL+AAoA-DAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING+AAoA-FROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM+AAoA-OTHER DEALINGS IN THE FONT SOFTWARE." "http://scripts.sil.org/OFL"
DesignSize: 160
Encoding: Custom
UnicodeInterp: none
NameList: AGL For New Fonts
DisplaySize: -48
AntiAlias: 1
FitToEm: 0
WinInfo: 0 16 7
BeginPrivate: 0
EndPrivate
Grid
-180 700 m 0
-180 -500 l 1024
-600 180 m 0
1200 180 l 1024
-600 200 m 0
1200 200 l 1024
Named: "x-height"
300 700 m 0
300 -500 l 1024
Named: "wide_center"
580 701 m 0
580 -499 l 1024
600 700 m 0
600 -500 l 1024
380 700 m 0
380 -500 l 1024
180 700 m 0
180 -500 l 1024
-600 20 m 0
1200 20 l 1024
-600 376 m 0
1200 376 l 1024
20 700 m 0
20 -500 l 1024
400 700 m 0
400 -500 l 1024
316 700 m 1024
335 700 m 1024
200 700 m 0
200 -500 l 1024
EndSplineSet
TeXData: 1 16777216 0 346030 173015 115343 0 1048576 115343 783286 444596 497025 792723 393216 433062 380633 303038 157286 324010 404750 52429 2506097 1059062 262144
BeginChars: 80 80
StartChar: A
Encoding: 0 65 0
Width: 440
VWidth: 0
Flags: W
HStem: 0 21G<400 420> 376 24<20 400>
VStem: 400 20<0 376>
LayerCount: 2
Fore
SplineSet
20 400 m 1
420 400 l 1
420 0 l 1
400 0 l 1
400 376 l 1
20 376 l 5
20 400 l 1
EndSplineSet
Validated: 1
EndChar
StartChar: E
Encoding: 1 69 1
Width: 440
VWidth: 0
Flags: W
HStem: 0 20<40 400> 376 24<40 400>
VStem: 20 20<20 376> 400 20<20 376>
LayerCount: 2
Fore
SplineSet
40 376 m 5
40 20 l 5
400 20 l 5
400 376 l 5
40 376 l 5
20 400 m 5
420 400 l 5
420 0 l 5
20 0 l 5
20 400 l 5
EndSplineSet
Validated: 1
EndChar
StartChar: B
Encoding: 2 66 2
Width: 440
VWidth: 0
Flags: W
HStem: 0 20<20 400> 376 24<20 400>
VStem: 400 20<20 376>
LayerCount: 2
Fore
SplineSet
20 400 m 5
420 400 l 1
420 0 l 1
20 0 l 1
20 20 l 1
400 20 l 1
400 376 l 1
20 376 l 1
20 400 l 5
EndSplineSet
Validated: 1
EndChar
StartChar: C
Encoding: 3 67 3
Width: 440
VWidth: 0
Flags: W
HStem: 0 20<20 400> 380 20G<400 420> 380 20G<400 420>
VStem: 400 20<20 400>
LayerCount: 2
Fore
SplineSet
400 20 m 1xd0
400 400 l 1
420 400 l 1
420 0 l 1
20 0 l 1
20 20 l 5
400 20 l 1xd0
EndSplineSet
Validated: 1
EndChar
StartChar: D
Encoding: 4 68 4
Width: 440
VWidth: 0
Flags: W
HStem: 0 21G<20 40 400 420> 376 24<40 400>
VStem: 20 20<0 376> 400 20<0 376>
LayerCount: 2
Fore
SplineSet
20 400 m 5
420 400 l 5
420 0 l 5
400 0 l 5
400 376 l 5
40 376 l 5
40 0 l 5
20 0 l 5
20 400 l 5
EndSplineSet
Validated: 1
EndChar
StartChar: F
Encoding: 5 70 5
Width: 440
VWidth: 0
Flags: W
HStem: 0 20<40 400> 380 20G<20 40 400 420> 380 20G<20 40 400 420>
VStem: 20 20<20 400> 400 20<20 400>
LayerCount: 2
Fore
SplineSet
420 0 m 1xd8
20 0 l 1
20 400 l 1
40 400 l 1
40 20 l 1
400 20 l 1
400 400 l 5
420 400 l 1
420 0 l 1xd8
EndSplineSet
Validated: 1
EndChar
StartChar: G
Encoding: 6 71 6
Width: 440
VWidth: 0
Flags: W
HStem: 0 21G<20 40> 376 24<40 420>
VStem: 20 20<0 376>
LayerCount: 2
Fore
SplineSet
420 400 m 5
420 376 l 1
40 376 l 1
40 0 l 1
20 0 l 1
20 400 l 1
420 400 l 5
EndSplineSet
Validated: 1
EndChar
StartChar: H
Encoding: 7 72 7
Width: 440
VWidth: 0
Flags: W
HStem: 0 20<40 420> 376 24<40 420>
VStem: 20 20<20 376>
LayerCount: 2
Fore
SplineSet
420 400 m 29
420 376 l 1
40 376 l 25
40 20 l 25
420 20 l 25
420 0 l 25
20 0 l 25
20 400 l 1
420 400 l 29
EndSplineSet
Validated: 1
EndChar
StartChar: I
Encoding: 8 73 8
Width: 440
VWidth: 0
Flags: W
HStem: 0 20<40 420> 380 20G<20 40> 380 20G<20 40>
VStem: 20 20<20 400>
LayerCount: 2
Fore
SplineSet
20 400 m 1xd0
40 400 l 1
40 20 l 1
420 20 l 5
420 0 l 1
20 0 l 1
20 400 l 1xd0
EndSplineSet
Validated: 1
EndChar
StartChar: J
Encoding: 9 74 9
Width: 640
VWidth: 0
Flags: W
HStem: 0 21G<600 620> 376 24<20 600>
VStem: 600 20<0 376>
LayerCount: 2
Fore
SplineSet
20 400 m 1
620 400 l 1
620 0 l 1
600 0 l 1
600 376 l 1
20 376 l 1
20 400 l 1
EndSplineSet
Validated: 1
EndChar
StartChar: K
Encoding: 10 75 10
Width: 640
VWidth: 0
Flags: W
HStem: 0 20<20 600> 376 24<20 600>
VStem: 600 20<20 375>
LayerCount: 2
Fore
SplineSet
20 400 m 1
620 400 l 1
620 0 l 1
20 0 l 1
20 20 l 1
600 20 l 5
600 375 l 1
20 376 l 1
20 400 l 1
EndSplineSet
Validated: 1
EndChar
StartChar: S
Encoding: 11 83 11
Width: 640
VWidth: 0
Flags: W
HStem: 0 21G<600 620> 170 40<301 339> 376 24<20 600>
VStem: 301 38<170 210> 600 20<0 376>
LayerCount: 2
Fore
SplineSet
301 170 m 5
301 210 l 5
339 210 l 5
339 170 l 5
301 170 l 5
20 400 m 1
620 400 l 1
620 0 l 1
600 0 l 1
600 376 l 1
20 376 l 1
20 400 l 1
EndSplineSet
Validated: 1
EndChar
StartChar: T
Encoding: 12 84 12
Width: 640
VWidth: 0
Flags: W
HStem: 0 20<20 600> 170 40<301 339> 376 24<20 600>
VStem: 301 38<170 210> 600 20<20 375>
LayerCount: 2
Fore
SplineSet
301 170 m 5
301 210 l 5
339 210 l 5
339 170 l 5
301 170 l 5
20 400 m 1
620 400 l 1
620 0 l 1
20 0 l 1
20 20 l 1
600 20 l 1
600 375 l 1
20 376 l 1
20 400 l 1
EndSplineSet
Validated: 1
EndChar
StartChar: L
Encoding: 13 76 13
Width: 640
VWidth: 0
Flags: W
HStem: 0 20<20 600> 380 20G<600 620> 380 20G<600 620>
VStem: 600 20<20 400>
LayerCount: 2
Fore
SplineSet
600 20 m 5xd0
600 400 l 5
620 400 l 5
620 0 l 5
20 0 l 1
20 20 l 1
600 20 l 5xd0
EndSplineSet
Validated: 1
EndChar
StartChar: U
Encoding: 14 85 14
Width: 640
VWidth: 0
Flags: W
HStem: 0 20<20 600> 170 40<301 339> 380 20G<600 620> 380 20G<600 620>
VStem: 301 38<170 210> 600 20<20 400>
LayerCount: 2
Fore
SplineSet
301 170 m 1xcc
301 210 l 1
339 210 l 1
339 170 l 1
301 170 l 1xcc
600 20 m 5
600 400 l 5
620 400 l 5xec
620 0 l 5
20 0 l 5
20 20 l 5
600 20 l 5
EndSplineSet
Validated: 1
EndChar
StartChar: M
Encoding: 15 77 15
Width: 640
VWidth: 0
Flags: W
HStem: 0 21G<20 40 600 620> 376 24<40 600>
VStem: 20 20<0 376> 600 20<0 376>
LayerCount: 2
Fore
SplineSet
20 400 m 1
620 400 l 5
620 0 l 5
600 0 l 5
600 376 l 5
40 376 l 1
40 0 l 1
20 0 l 1
20 400 l 1
EndSplineSet
Validated: 1
EndChar
StartChar: V
Encoding: 16 86 16
Width: 640
VWidth: 0
Flags: W
HStem: 0 21G<20 40 600 620> 170 40<301 339> 376 24<40 600>
VStem: 20 20<0 376> 301 38<170 210> 600 20<0 376>
CounterMasks: 1 1c
LayerCount: 2
Fore
SplineSet
301 170 m 5
301 210 l 5
339 210 l 5
339 170 l 5
301 170 l 5
20 400 m 1
620 400 l 1
620 0 l 1
600 0 l 1
600 376 l 1
40 376 l 1
40 0 l 1
20 0 l 1
20 400 l 1
EndSplineSet
Validated: 1
EndChar
StartChar: W
Encoding: 17 87 17
Width: 640
VWidth: 0
Flags: W
HStem: 0 20<40 600> 170 40<301 339> 376 24<40 600>
VStem: 20 20<20 376> 301 38<170 210> 600 20<20 376>
CounterMasks: 1 1c
LayerCount: 2
Fore
SplineSet
301 170 m 5
301 210 l 5
339 210 l 5
339 170 l 5
301 170 l 5
40 376 m 1
40 20 l 1
600 20 l 1
600 376 l 1
40 376 l 1
20 400 m 1
620 400 l 1
620 0 l 1
20 0 l 1
20 400 l 1
EndSplineSet
Validated: 1
EndChar
StartChar: N
Encoding: 18 78 18
Width: 640
VWidth: 0
Flags: W
HStem: 0 20<40 600> 376 24<40 600>
VStem: 20 20<20 376> 600 20<20 376>
LayerCount: 2
Fore
SplineSet
40 376 m 1
40 20 l 1
600 20 l 5
600 376 l 5
40 376 l 1
20 400 m 1
620 400 l 5
620 0 l 5
20 0 l 1
20 400 l 1
EndSplineSet
Validated: 1
EndChar
StartChar: X
Encoding: 19 88 19
Width: 640
VWidth: 0
Flags: W
HStem: 0 20<40 600> 170 40<301 339> 380 20G<20 40 600 620>
VStem: 20 20<20 400> 301 38<170 210> 600 20<22 402>
CounterMasks: 1 1c
LayerCount: 2
Fore
SplineSet
301 170 m 5
301 210 l 5
339 210 l 5
339 170 l 5
301 170 l 5
620 2 m 1
20 0 l 1
20 400 l 1
40 400 l 1
40 20 l 1
600 22 l 1
600 402 l 1
620 402 l 1
620 2 l 1
EndSplineSet
Validated: 1
EndChar
StartChar: O
Encoding: 20 79 20
Width: 640
VWidth: 0
Flags: W
HStem: 0 20<40 600> 380 20G<20 40 600 620>
VStem: 20 20<20 400> 600 20<22 402>
LayerCount: 2
Fore
SplineSet
620 2 m 5
20 0 l 1
20 400 l 1
40 400 l 1
40 20 l 1
600 22 l 5
600 402 l 5
620 402 l 5
620 2 l 5
EndSplineSet
Validated: 1
EndChar
StartChar: Y
Encoding: 21 89 21
Width: 640
VWidth: 0
Flags: W
HStem: 0 21G<20 40> 170 40<301 339> 376 24<40 620>
VStem: 20 20<0 376> 301 38<170 210>
LayerCount: 2
Fore
SplineSet
301 170 m 5
301 210 l 5
339 210 l 5
339 170 l 5
301 170 l 5
620 400 m 1
620 376 l 1
40 376 l 1
40 0 l 1
20 0 l 1
20 400 l 1
620 400 l 1
EndSplineSet
Validated: 1
EndChar
StartChar: P
Encoding: 22 80 22
Width: 640
VWidth: 0
Flags: W
HStem: 0 21G<20 40> 376 24<40 620>
VStem: 20 20<0 376>
LayerCount: 2
Fore
SplineSet
620 400 m 5
620 376 l 5
40 376 l 1
40 0 l 1
20 0 l 1
20 400 l 1
620 400 l 5
EndSplineSet
Validated: 1
EndChar
StartChar: Q
Encoding: 23 81 23
Width: 640
VWidth: 0
Flags: W
HStem: 0 20<40 620> 376 24<40 620>
VStem: 20 20<20 376>
LayerCount: 2
Fore
SplineSet
620 400 m 29
620 376 l 5
40 376 l 1
40 20 l 1
620 20 l 29
620 0 l 29
20 0 l 1
20 400 l 1
620 400 l 29
EndSplineSet
Validated: 1
EndChar
StartChar: Z
Encoding: 24 90 24
Width: 640
VWidth: 0
Flags: W
HStem: 0 20<40 620> 170 40<301 339> 376 24<40 620>
VStem: 20 20<20 376> 301 38<170 210>
LayerCount: 2
Fore
SplineSet
301 170 m 5
301 210 l 5
339 210 l 5
339 170 l 5
301 170 l 5
620 400 m 25
620 376 l 1
40 376 l 1
40 20 l 1
620 20 l 25
620 0 l 25
20 0 l 1
20 400 l 1
620 400 l 25
EndSplineSet
Validated: 1
EndChar
StartChar: R
Encoding: 25 82 25
Width: 640
VWidth: 0
Flags: W
HStem: 0 20<40 620> 380 20G<20 40> 380 20G<20 40>
VStem: 20 20<20 400>
LayerCount: 2
Fore
SplineSet
20 400 m 1xd0
40 400 l 1
40 20 l 1
620 20 l 5
620 0 l 5
20 0 l 1
20 400 l 1xd0
EndSplineSet
Validated: 1
EndChar
StartChar: a
Encoding: 26 97 26
Width: 240
VWidth: 0
Flags: W
HStem: 0 21G<200 220> 180 20<20 200>
VStem: 200 20<0 180>
LayerCount: 2
Fore
SplineSet
20 200 m 5
220 200 l 5
220 0 l 5
200 0 l 5
200 180 l 5
20 180 l 5
20 200 l 5
EndSplineSet
Validated: 1
EndChar
StartChar: b
Encoding: 27 98 27
Width: 240
VWidth: 0
Flags: W
HStem: 0 20<20 200> 180 20<20 200>
VStem: 200 20<20 180>
LayerCount: 2
Fore
SplineSet
20 200 m 5
220 200 l 1
220 0 l 1
20 0 l 1
20 20 l 1
200 20 l 1
200 180 l 1
20 180 l 1
20 200 l 5
EndSplineSet
Validated: 1
EndChar
StartChar: c
Encoding: 28 99 28
Width: 240
VWidth: 0
Flags: W
HStem: 0 20<20 200> 180 20G<200 220>
VStem: 200 20<20 200>
LayerCount: 2
Fore
SplineSet
200 20 m 1
200 200 l 5
220 200 l 5
220 0 l 1
20 0 l 1
20 20 l 1
200 20 l 1
EndSplineSet
Validated: 1
EndChar
StartChar: d
Encoding: 29 100 29
Width: 240
VWidth: 0
Flags: W
HStem: 0 21G<20 40 200 220> 180 20<40 200>
VStem: 20 20<0 180> 200 20<0 180>
LayerCount: 2
Fore
SplineSet
20 200 m 5
220 200 l 1
220 0 l 1
200 0 l 1
200 180 l 1
40 180 l 1
40 0 l 1
20 0 l 1
20 200 l 5
EndSplineSet
Validated: 1
EndChar
StartChar: e
Encoding: 30 101 30
Width: 240
VWidth: 0
Flags: W
HStem: 0 20<40 200> 180 20<40 200>
VStem: 20 20<20 180> 200 20<20 180>
LayerCount: 2
Fore
SplineSet
40 180 m 1
40 20 l 1
200 20 l 1
200 180 l 1
40 180 l 1
20 200 m 5
220 200 l 1
220 0 l 1
20 0 l 1
20 200 l 5
EndSplineSet
Validated: 1
EndChar
StartChar: f
Encoding: 31 102 31
Width: 240
VWidth: 0
Flags: W
HStem: 0 20<40 200> 180 20G<20 40 200 220>
VStem: 20 20<20 200> 200 20<20 200>
LayerCount: 2
Fore
SplineSet
220 0 m 1
20 0 l 1
20 200 l 1
40 200 l 1
40 20 l 1
200 20 l 1
200 200 l 5
220 200 l 5
220 0 l 1
EndSplineSet
Validated: 1
EndChar
StartChar: g
Encoding: 32 103 32
Width: 240
VWidth: 0
Flags: W
HStem: 0 21G<20 40> 180 20<40 220>
VStem: 20 20<0 180>
LayerCount: 2
Fore
SplineSet
220 200 m 1
220 180 l 1
40 180 l 1
40 0 l 1
20 0 l 1
20 200 l 1
220 200 l 1
EndSplineSet
Validated: 1
EndChar
StartChar: h
Encoding: 33 104 33
Width: 240
VWidth: 0
Flags: W
HStem: 0 20<40 220> 180 20<40 220>
VStem: 20 20<20 180>
LayerCount: 2
Fore
SplineSet
220 200 m 5
220 180 l 5
40 180 l 1
40 20 l 1
220 20 l 25
220 0 l 25
20 0 l 1
20 68 20 132 20 200 c 1
220 200 l 5
EndSplineSet
Validated: 1
EndChar
StartChar: i
Encoding: 34 105 34
Width: 240
VWidth: 0
Flags: W
HStem: 0 20<40 220> 180 20G<20 40>
VStem: 20 20<20 200>
LayerCount: 2
Fore
SplineSet
20 200 m 1
40 200 l 1
40 20 l 1
220 20 l 5
220 0 l 5
20 0 l 1
20 200 l 1
EndSplineSet
Validated: 1
EndChar
StartChar: j
Encoding: 35 106 35
Width: 240
VWidth: 0
Flags: W
HStem: -200 21G<200 220> 180 20<20 200>
VStem: 200 20<-200 180>
LayerCount: 2
Fore
SplineSet
20 200 m 1
220 200 l 1
220 -200 l 1
200 -200 l 1
200 180 l 1
20 180 l 1
20 200 l 1
EndSplineSet
Validated: 1
EndChar
StartChar: k
Encoding: 36 107 36
Width: 440
VWidth: 0
Flags: W
HStem: 0 20<20 400> 180 20<220 400>
VStem: 400 20<20 180>
LayerCount: 2
Fore
SplineSet
220 200 m 5
420 200 l 5
420 0 l 5
20 0 l 1
20 20 l 1
400 20 l 5
400 180 l 5
220 180 l 5
220 200 l 5
EndSplineSet
Validated: 1
EndChar
StartChar: l
Encoding: 37 108 37
Width: 240
VWidth: 0
Flags: W
HStem: 0 20<20 200> 379 20G<200 220> 379 20G<200 220>
VStem: 200 20<20 399>
LayerCount: 2
Fore
SplineSet
200 20 m 1xd0
200 399 l 5
220 399 l 5
220 0 l 1
20 0 l 1
20 20 l 1
200 20 l 1xd0
EndSplineSet
Validated: 1
EndChar
StartChar: m
Encoding: 38 109 38