-
Notifications
You must be signed in to change notification settings - Fork 1
/
boon-700-oblique.sfd
29486 lines (28598 loc) · 682 KB
/
boon-700-oblique.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: boon-700-oblique
FullName: Boon Bold Oblique
FamilyName: Boon
Weight: 700
Copyright: Copyright (C) 2013 Sungsit Sawaiwan <http://sungsit.com/>
UComments: "Created with FontForge 2.0 <http://fontforge.org/>"
FontLog: "## Boon v0.6, 2013-09-24+AAoA - Redesigned Long S, Small Ezh & Small German Eszett+AAoA - Improved some Latin diacritics compositions+AAoA - Added **boon-300**, **boon-300-oblique**, **boon-500** & **boon-500-oblique**+AAoACgAA## Boon v0.5, 2013-09-17+AAoA - Redraw all glyphs+AAoA - Match Latin x-height with Thai +DhoA--height+AAoA - Reduce Latin cap-height+AAoA - Add more character spacing+AAoA - Complete **Basic Latin**, **Latin-1 supplement** & **Thai**+AAoA - Rename all font files+AAoA 1. Boon-Book +AD0A> **boon-400**+AAoA 2. Boon-Book-Italic +AD0A> **boon-400-oblique**+AAoA 3. Boon-Bold +AD0A> **boon-700**+AAoA 4. Boon-Bold-italic +AD0A> **boon-700-oblique**+AAoA - Move source files to **boon-dev** repository <https://github.com/sungsit/boon-dev>+AAoACgAA## Boon v0.4, 2013-07-15+AAoA - Improve kerning+AAoACgAA## Boon v0.3.1, 2013-07-01+AAoA - Corrected font version+AAoACgAA## Boon v0.3, 2013-07-01+AAoA - Improved Latin kerning+AAoA - Added HTML/CSS and project page+AAoACgAA## Boon v0.2, 2013-06-30+AAoA - Included Boon-Bold and Boon-Bold-Italic (auto-generated)+AAoA - Renamed Boon-Italic to Boon-Book-Italic+AAoACgAA## Boon v0.1, 2013-06-27+AAoA - Released Boon-Book and Boon-Italic (auto-generated)"
Version: 0.6
ItalicAngle: -13
UnderlinePosition: -60
UnderlineWidth: 20
Ascent: 840
Descent: 360
woffMajor: 0
woffMinor: 6
LayerCount: 2
Layer: 0 0 "Back" 1
Layer: 1 0 "Fore" 0
FSType: 8
OS2Version: 0
OS2_WeightWidthSlopeOnly: 0
OS2_UseTypoMetrics: 1
CreationTime: 1369324892
ModificationTime: 1379947710
PfmFamily: 33
TTFWeight: 700
TTFWidth: 5
LineGap: 108
VLineGap: 0
OS2TypoAscent: 0
OS2TypoAOffset: 1
OS2TypoDescent: 0
OS2TypoDOffset: 1
OS2TypoLinegap: 108
OS2WinAscent: 0
OS2WinAOffset: 1
OS2WinDescent: 0
OS2WinDOffset: 1
HheadAscent: 0
HheadAOffset: 1
HheadDescent: 0
HheadDOffset: 1
OS2FamilyClass: 2048
OS2Vendor: 'PfEd'
Lookup: 4 1 1 "'liga' Thai Ligatures" {"'liga' Thai Ligatures" } ['liga' ('DFLT' <'dflt' > 'latn' <'VIT ' 'dflt' > 'thai' <'dflt' > ) ]
Lookup: 4 0 1 "'liga' Latin Standard Ligatures" {"'liga' Latin Standard Ligatures-1" } ['liga' ('DFLT' <'dflt' > 'armn' <'dflt' > 'deva' <'dflt' > 'lao ' <'dflt' > 'latn' <'VIT ' 'dflt' > 'thai' <'dflt' > ) ]
Lookup: 1 0 0 "Latin Diacritic Substitution" {"Latin Diacritic Substitution-1" ("narrow" ) } []
Lookup: 1 0 0 "Thai Tone & Vowel Above-Narrow" {"Thai Tone & Vowel Above-Narrow" ("narrow" ) } []
Lookup: 1 0 0 "Thai Ascent Substitute" {"Ascent Substitute" ("alt" ) } []
Lookup: 1 0 0 "Thai Descent Shorten" {"Descent Shorten" ("shorten" ) } []
Lookup: 1 0 0 "Thai Descent Substitute" {"Descent Substitute" ("descless" ) } []
Lookup: 1 0 0 "Thai Sara AA Substitute" {"Sara AA Substitute" } []
Lookup: 1 0 0 "Thai Tone Low-High" {"Tone Low-High" ("low" ) } []
Lookup: 1 0 0 "Thai Special Tone for Asc" {"Thai Special Tone for Asc" ("low" ) } []
Lookup: 2 0 0 "'ccmp' Thai General Composite" {"Sara Am Decomposite" "Tone High-Low" } ['ccmp' ('DFLT' <'dflt' > 'latn' <'dflt' > 'thai' <'dflt' > ) ]
Lookup: 6 0 0 "'ccmp' Thai Contextual Substitute" {"Thai Contextual Substitute" "Thai Asc Consonant Handle" } ['ccmp' ('DFLT' <'dflt' > 'deva' <'dflt' > 'lao ' <'dflt' > 'latn' <'dflt' > 'thai' <'dflt' > ) ]
Lookup: 6 0 0 "'ccmp' Latin Contextual Substitution" {"'ccmp' Latin Contextual Substitution-1" } ['ccmp' ('DFLT' <'dflt' > 'latn' <'VIT ' 'dflt' > 'thai' <'dflt' > ) ]
Lookup: 258 0 0 "'kern' Kerning" {"Thai Kerning" [140,0,4] "Latin Kerning" [180,0,6] } ['kern' ('DFLT' <'dflt' > 'armn' <'dflt' > 'deva' <'dflt' > 'lao ' <'dflt' > 'latn' <'VIT ' 'dflt' > 'thai' <'dflt' > ) ]
Lookup: 260 0 0 "'mark' Thai Mark Positioning" {"'mark' Thai Mark Positioning" } ['mark' ('DFLT' <'dflt' > 'latn' <'VIT ' 'dflt' > 'thai' <'dflt' > ) ]
Lookup: 260 0 0 "'mark' Diacritic Marks" {"'mark' Diacritic Marks-1" } ['mark' ('DFLT' <'dflt' > 'deva' <'dflt' > 'lao ' <'dflt' > 'latn' <'VIT ' 'dflt' > 'thai' <'dflt' > ) ]
Lookup: 257 0 0 "Thai Tone Low-Left" {"Tone Low-Left" } []
Lookup: 257 0 0 "Thai Tone High-Left" {"Tone High-Left" } []
Lookup: 257 0 0 "Thai Vowel Above-Left" {"Vowel Above-Left" } []
Lookup: 257 0 0 "Thai Vowel Below-Low" {"Vowel Below-Low" } []
Lookup: 257 0 0 "Thai Nikhahit & Tone High-Left" {"Nikhahit & Tone High-Left" } []
Lookup: 257 0 0 "Thai Mai Han-Akat & Tone High-Left" {"Mai Han-Akat & Tone High-Left" } []
Lookup: 264 0 0 "'ccmp' Thai Contextual Mark Position" {"Thai Contextual Mark Position-1" } ['ccmp' ('DFLT' <'dflt' > 'latn' <'dflt' > 'thai' <'dflt' > ) ]
MarkAttachClasses: 1
DEI: 91125
KernClass2: 15 13 "Latin Kerning"
1 A
1 T
3 V Y
1 W
1 L
9 a c e o s
5 d g q
3 b h
1 K
1 X
5 v w y
9 C G O Q S
11 m n p r u z
1 F
1 A
1 T
3 V Y
1 W
1 L
9 a c e o s
5 d g q
3 b h
1 X
5 v w y
9 C G O Q S
11 m n p r u z
0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -60 {} -80 {} -40 {} 0 {} 0 {} 0 {} 0 {} 0 {} -30 {} 0 {} 0 {} 0 {} -60 {} 0 {} 0 {} 0 {} 0 {} -60 {} -60 {} 0 {} 0 {} -50 {} 0 {} -40 {} 0 {} -80 {} 0 {} 0 {} 0 {} 0 {} -70 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -40 {} 0 {} 0 {} 0 {} 0 {} -30 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -80 {} -80 {} -40 {} 0 {} 0 {} 0 {} 0 {} 0 {} -60 {} 0 {} 0 {} 0 {} 0 {} -60 {} -60 {} 0 {} 0 {} 0 {} 0 {} 0 {} -20 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -60 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -20 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -20 {} 0 {} 0 {} 0 {} 0 {} -20 {} 0 {} 0 {} 0 {} -40 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -20 {} 0 {} 0 {} 0 {} 0 {} 0 {} -30 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -30 {} -30 {} 0 {} 0 {} 0 {} 0 {} 0 {}
KernClass2: 3 3 "Thai Kerning"
39 uni0E40 uni0E41 uni0E42 uni0E43 uni0E44
15 uni0E54 uni0E55
184 uni0E02 uni0E03 uni0E07 uni0E0A uni0E0B uni0E10 uni0E11 uni0E17 uni0E19 uni0E1A uni0E1B uni0E1E uni0E1F uni0E23 uni0E27 uni0E29 uni0E2B uni0E2C uni0E10.descless uni0E0A.alt uni0E0B.alt
63 uni0E50 uni0E51 uni0E53 uni0E54 uni0E55 uni0E57 uni0E58 uni0E59
0 {} 0 {} 0 {} 0 {} -30 {} 0 {} 0 {} 0 {} -60 {}
ChainSub2: class "'ccmp' Latin Contextual Substitution-1" 3 3 3 1
Class: 40 I J L b d f h i j k l t dotlessi uni0237
Class: 33 uni0302 tildecomb uni0304 uni030C
BClass: 40 I J L b d f h i j k l t dotlessi uni0237
BClass: 33 uni0302 tildecomb uni0304 uni030C
FClass: 40 I J L b d f h i j k l t dotlessi uni0237
FClass: 33 uni0302 tildecomb uni0304 uni030C
1 1 0
ClsList: 2
BClsList: 1
FClsList:
1
SeqLookup: 0 "Latin Diacritic Substitution"
ClassNames: "All_Others" "narrow" "diac"
BClassNames: "All_Others" "narrow" "diac"
FClassNames: "All_Others" "narrow" "diac"
EndFPST
ChainSub2: class "Thai Asc Consonant Handle" 4 4 4 2
Class: 23 uni0E1B uni0E1D uni0E1F
Class: 231 uni0E31 uni0E34 uni0E35 uni0E36 uni0E37 uni0E47 uni0E48 uni0E49 uni0E4A uni0E4B uni0E4C uni0E49.low uni0E4A.low uni0E34.narrow uni0E35.narrow uni0E36.narrow uni0E37.narrow uni0E31.narrow uni0E47.narrow uni0E49.narrow uni0E4A.narrow
Class: 23 uni0E38 uni0E39 uni0E3A
BClass: 23 uni0E1B uni0E1D uni0E1F
BClass: 231 uni0E31 uni0E34 uni0E35 uni0E36 uni0E37 uni0E47 uni0E48 uni0E49 uni0E4A uni0E4B uni0E4C uni0E49.low uni0E4A.low uni0E34.narrow uni0E35.narrow uni0E36.narrow uni0E37.narrow uni0E31.narrow uni0E47.narrow uni0E49.narrow uni0E4A.narrow
BClass: 23 uni0E38 uni0E39 uni0E3A
FClass: 23 uni0E1B uni0E1D uni0E1F
FClass: 231 uni0E31 uni0E34 uni0E35 uni0E36 uni0E37 uni0E47 uni0E48 uni0E49 uni0E4A uni0E4B uni0E4C uni0E49.low uni0E4A.low uni0E34.narrow uni0E35.narrow uni0E36.narrow uni0E37.narrow uni0E31.narrow uni0E47.narrow uni0E49.narrow uni0E4A.narrow
FClass: 23 uni0E38 uni0E39 uni0E3A
1 1 0
ClsList: 2
BClsList: 1
FClsList:
1
SeqLookup: 0 "Thai Tone & Vowel Above-Narrow"
1 2 0
ClsList: 2
BClsList: 3 1
FClsList:
1
SeqLookup: 0 "Thai Tone & Vowel Above-Narrow"
ClassNames: "All_Others" "Asc_long" "Left" "Vowel_below"
BClassNames: "All_Others" "Asc_long" "Left" "Vowel_below"
FClassNames: "All_Others" "Asc_long" "Left" "Vowel_below"
EndFPST
ChainPos2: class "Thai Contextual Mark Position-1" 9 9 9 11
Class: 23 uni0E1B uni0E1D uni0E1F
Class: 31 uni0E0F.shorten uni0E0E.shorten
Class: 39 uni0E48 uni0E49 uni0E4A uni0E4B uni0E4C
Class: 59 uni0E48.low uni0E49.low uni0E4A.low uni0E4B.low uni0E4C.low
Class: 114 uni0E34 uni0E35 uni0E36 uni0E37 uni0E47 uni0E34.narrow uni0E35.narrow uni0E36.narrow uni0E37.narrow uni0E47.narrow
Class: 23 uni0E38 uni0E39 uni0E3A
Class: 22 uni0E31 uni0E31.narrow
Class: 7 uni0E4D
BClass: 23 uni0E1B uni0E1D uni0E1F
BClass: 31 uni0E0F.shorten uni0E0E.shorten
BClass: 39 uni0E48 uni0E49 uni0E4A uni0E4B uni0E4C
BClass: 59 uni0E48.low uni0E49.low uni0E4A.low uni0E4B.low uni0E4C.low
BClass: 114 uni0E34 uni0E35 uni0E36 uni0E37 uni0E47 uni0E34.narrow uni0E35.narrow uni0E36.narrow uni0E37.narrow uni0E47.narrow
BClass: 23 uni0E38 uni0E39 uni0E3A
BClass: 22 uni0E31 uni0E31.narrow
BClass: 7 uni0E4D
FClass: 23 uni0E1B uni0E1D uni0E1F
FClass: 31 uni0E0F.shorten uni0E0E.shorten
FClass: 39 uni0E48 uni0E49 uni0E4A uni0E4B uni0E4C
FClass: 59 uni0E48.low uni0E49.low uni0E4A.low uni0E4B.low uni0E4C.low
FClass: 114 uni0E34 uni0E35 uni0E36 uni0E37 uni0E47 uni0E34.narrow uni0E35.narrow uni0E36.narrow uni0E37.narrow uni0E47.narrow
FClass: 23 uni0E38 uni0E39 uni0E3A
FClass: 22 uni0E31 uni0E31.narrow
FClass: 7 uni0E4D
2 1 0
ClsList: 7 3
BClsList: 1
FClsList:
2
SeqLookup: 0 "Thai Vowel Above-Left"
SeqLookup: 1 "Thai Mai Han-Akat & Tone High-Left"
3 0 0
ClsList: 1 5 3
BClsList:
FClsList:
2
SeqLookup: 1 "Thai Vowel Above-Left"
SeqLookup: 2 "Thai Tone High-Left"
3 0 0
ClsList: 1 3 5
BClsList:
FClsList:
2
SeqLookup: 1 "Thai Tone High-Left"
SeqLookup: 2 "Thai Vowel Above-Left"
3 0 0
ClsList: 1 6 4
BClsList:
FClsList:
1
SeqLookup: 2 "Thai Tone Low-Left"
1 1 0
ClsList: 5
BClsList: 1
FClsList:
1
SeqLookup: 0 "Thai Vowel Above-Left"
1 1 0
ClsList: 4
BClsList: 1
FClsList:
1
SeqLookup: 0 "Thai Tone Low-Left"
1 1 0
ClsList: 7
BClsList: 1
FClsList:
1
SeqLookup: 0 "Thai Vowel Above-Left"
3 0 0
ClsList: 1 8 3
BClsList:
FClsList:
2
SeqLookup: 1 "Thai Vowel Above-Left"
SeqLookup: 2 "Thai Nikhahit & Tone High-Left"
3 0 0
ClsList: 1 3 8
BClsList:
FClsList:
2
SeqLookup: 1 "Thai Nikhahit & Tone High-Left"
SeqLookup: 2 "Thai Vowel Above-Left"
1 1 0
ClsList: 8
BClsList: 1
FClsList:
1
SeqLookup: 0 "Thai Vowel Above-Left"
1 1 0
ClsList: 6
BClsList: 2
FClsList:
1
SeqLookup: 0 "Thai Vowel Below-Low"
ClassNames: "All_Others" "Asc" "Desc" "Tone_High" "Tone_Low" "Vowel_Above" "Vowel_Below" "Mai_Hanakat" "Nikhahit"
BClassNames: "All_Others" "Asc" "Desc" "Tone_High" "Tone_Low" "Vowel_Above" "Vowel_Below" "Mai_Hanakat" "Nikhahit"
FClassNames: "All_Others" "Asc" "Desc" "Tone_High" "Tone_Low" "Vowel_Above" "Vowel_Below" "Mai_Hanakat" "Nikhahit"
EndFPST
ChainSub2: class "Thai Contextual Substitute" 10 10 10 10
Class: 47 uni0E0A uni0E0B uni0E28 uni0E2A uni0E2C uni0E2E
Class: 15 uni0E0D uni0E10
Class: 15 uni0E0E uni0E0F
Class: 137 uni0E31 uni0E34 uni0E35 uni0E36 uni0E37 uni0E47 uni0E34.narrow uni0E35.narrow uni0E36.narrow uni0E37.narrow uni0E31.narrow uni0E47.narrow
Class: 23 uni0E38 uni0E39 uni0E3A
Class: 59 uni0E48.low uni0E49.low uni0E4A.low uni0E4B.low uni0E4C.low
Class: 7 uni0E4D
Class: 15 uni0E24 uni0E26
Class: 7 uni0E32
BClass: 47 uni0E0A uni0E0B uni0E28 uni0E2A uni0E2C uni0E2E
BClass: 15 uni0E0D uni0E10
BClass: 15 uni0E0E uni0E0F
BClass: 137 uni0E31 uni0E34 uni0E35 uni0E36 uni0E37 uni0E47 uni0E34.narrow uni0E35.narrow uni0E36.narrow uni0E37.narrow uni0E31.narrow uni0E47.narrow
BClass: 23 uni0E38 uni0E39 uni0E3A
BClass: 59 uni0E48.low uni0E49.low uni0E4A.low uni0E4B.low uni0E4C.low
BClass: 7 uni0E4D
BClass: 15 uni0E24 uni0E26
BClass: 7 uni0E32
FClass: 47 uni0E0A uni0E0B uni0E28 uni0E2A uni0E2C uni0E2E
FClass: 15 uni0E0D uni0E10
FClass: 15 uni0E0E uni0E0F
FClass: 137 uni0E31 uni0E34 uni0E35 uni0E36 uni0E37 uni0E47 uni0E34.narrow uni0E35.narrow uni0E36.narrow uni0E37.narrow uni0E31.narrow uni0E47.narrow
FClass: 23 uni0E38 uni0E39 uni0E3A
FClass: 59 uni0E48.low uni0E49.low uni0E4A.low uni0E4B.low uni0E4C.low
FClass: 7 uni0E4D
FClass: 15 uni0E24 uni0E26
FClass: 7 uni0E32
1 1 0
ClsList: 6
BClsList: 4
FClsList:
1
SeqLookup: 0 "Thai Tone Low-High"
1 0 1
ClsList: 1
BClsList:
FClsList: 6
1
SeqLookup: 0 "Thai Ascent Substitute"
1 0 1
ClsList: 1
BClsList:
FClsList: 4
1
SeqLookup: 0 "Thai Ascent Substitute"
1 0 2
ClsList: 1
BClsList:
FClsList: 5 6
1
SeqLookup: 0 "Thai Ascent Substitute"
1 0 1
ClsList: 6
BClsList:
FClsList: 7
1
SeqLookup: 0 "Thai Tone Low-High"
1 1 0
ClsList: 6
BClsList: 7
FClsList:
1
SeqLookup: 0 "Thai Tone Low-High"
1 0 1
ClsList: 1
BClsList:
FClsList: 7
1
SeqLookup: 0 "Thai Ascent Substitute"
1 0 1
ClsList: 2
BClsList:
FClsList: 5
1
SeqLookup: 0 "Thai Descent Substitute"
1 0 1
ClsList: 3
BClsList:
FClsList: 5
1
SeqLookup: 0 "Thai Descent Shorten"
1 1 0
ClsList: 9
BClsList: 8
FClsList:
1
SeqLookup: 0 "Thai Sara AA Substitute"
ClassNames: "All_Others" "Asc" "Desc_G1" "Desc_G2" "Vowel_Above" "Vowel_Below" "Tone_Low" "Nikhahit" "Desc_G3" "Sara_Aa"
BClassNames: "All_Others" "Asc" "Desc_G1" "Desc_G2" "Vowel_Above" "Vowel_Below" "Tone_Low" "Nikhahit" "Desc_G3" "Sara_Aa"
FClassNames: "All_Others" "Asc" "Desc_G1" "Desc_G2" "Vowel_Above" "Vowel_Below" "Tone_Low" "Nikhahit" "Desc_G3" "Sara_Aa"
EndFPST
LangName: 1054 "" "" "" "" "" "" "" "" "" "" "" "" "" "" "" "" "" "" "" "+DiQOMg4pDjUOQA4dDkkOMg4WDkkOMw4dDjgOSA4ZDiMOOQ5JDgEOFQ4xDg0ODQ45DkQOFA5JDkMOCg5JDhsOMQ4NDg0OMg4BDg4ODw40DkwOGw5KDjMOEA44DkwOOAAA"
LangName: 1033 "" "" "" "" "" "" "" "" "Sungsit Sawaiwan" "Sungsit Sawaiwan" "" "http://sungsit.com/boon/" "http://sungsit.com/" "SIL Open Font License v1.1" "http://scripts.sil.org/OFL" "" "Boon"
GaspTable: 1 65535 15 1
Encoding: UnicodeFull
Compacted: 1
UnicodeInterp: none
NameList: Adobe Glyph List
DisplaySize: -48
AntiAlias: 1
FitToEm: 1
WinInfo: 572 26 10
BeginPrivate: 0
EndPrivate
TeXData: 1 0 0 349525 174762 116508 0 1048576 116508 783286 444596 497025 792723 393216 433062 380633 303038 157286 324010 404750 52429 2506097 1059062 262144
AnchorClass2: "diac_top" "'mark' Diacritic Marks-1" "thai_above" "'mark' Thai Mark Positioning" "hook_above" "'mark' Diacritic Marks-1" "ring_above" "'mark' Diacritic Marks-1" "ogonek" "'mark' Diacritic Marks-1" "cedilla" "'mark' Diacritic Marks-1" "diac_bottom" "'mark' Diacritic Marks-1"
BeginChars: 1114132 888
StartChar: uni0E04
Encoding: 3588 3588 0
Width: 670
VWidth: 0
Flags: W
HStem: 0 21G<460 614.617> 220 45<358.008 434.729> 355 45<368.927 444.89> 510 110<355.333 528.723>
LayerCount: 2
Fore
SplineSet
411.958 355 m 0
386.958 355 362.341 335 356.569 310 c 0
350.798 285 366.18 265 391.18 265 c 0
416.18 265 440.798 285 446.569 310 c 0
452.341 335 436.958 355 411.958 355 c 0
422.348 400 m 0
472.348 400 503.112 360 491.569 310 c 0
480.025 260 430.791 220 380.791 220 c 0
350.791 220 327.254 235 316.333 257 c 1
287.099 217 266.708 159 253.087 100 c 2
227.691 -10 l 1
227.691 -10 59.6152 -6 66.9258 30 c 1
66.9258 30 98.2383 79 112.321 140 c 0
135.87 242 108.871 255 140.039 390 c 0
169.128 516 290.139 620 473.139 620 c 0
656.139 620 729.128 516 700.039 390 c 2
610 0 l 1
460 0 l 1
550.039 390 l 2
569.201 473 516.743 510 447.743 510 c 0
378.743 510 309.2 473 290.039 390 c 0
282.189 356 277.725 328 274.723 302 c 1
311.65 358 363.348 400 422.348 400 c 0
EndSplineSet
EndChar
StartChar: space
Encoding: 32 32 1
Width: 360
VWidth: 0
Flags: W
LayerCount: 2
EndChar
StartChar: uni0E05
Encoding: 3589 3589 2
Width: 670
VWidth: 0
Flags: W
HStem: 0 21G<460 614.617> 220 45<358.008 434.729> 355 45<368.195 444.89> 600 20G<348.639 402.752 534.29 597.639>
LayerCount: 2
Fore
SplineSet
411.958 355 m 0
386.958 355 362.341 335 356.569 310 c 0
350.798 285 366.18 265 391.18 265 c 0
416.18 265 440.798 285 446.569 310 c 0
452.341 335 436.958 355 411.958 355 c 0
422.348 400 m 0
472.348 400 503.112 360 491.569 310 c 0
480.025 260 430.791 220 380.791 220 c 0
350.791 220 327.254 235 316.333 257 c 1
287.099 217 266.708 159 253.087 100 c 2
227.691 -10 l 1
227.691 -10 59.6152 -6 66.9258 30 c 1
66.9258 30 98.2383 79 112.321 140 c 0
135.87 242 113.488 275 144.656 410 c 0
177.901 554 319.139 620 378.139 620 c 1
458.132 555 l 1
568.139 620 l 1
627.139 620 737.901 554 704.656 410 c 2
610 0 l 1
460 0 l 1
554.656 410 l 2
572.433 487 532.743 510 532.743 510 c 1
435.045 455 l 1
362.743 510 l 1
362.743 510 312.433 487 294.656 410 c 0
285.652 371 280.803 337 276.646 306 c 1
314.112 360 364.348 400 422.348 400 c 0
EndSplineSet
EndChar
StartChar: uni0E14
Encoding: 3604 3604 3
Width: 670
VWidth: 0
Flags: W
HStem: 0 21G<460 614.617> 355 45<368.41 444.89> 510 110<355.333 528.723>
LayerCount: 2
Fore
SplineSet
411.958 355 m 0
386.958 355 362.341 335 356.569 310 c 0
350.798 285 366.18 265 391.18 265 c 0
416.18 265 440.798 285 446.569 310 c 0
452.341 335 436.958 355 411.958 355 c 0
422.348 400 m 0
472.348 400 503.112 360 491.569 310 c 0
459.017 169 257.084 74 237.691 -10 c 1
237.691 -10 59.6152 -6 66.9258 30 c 1
66.9258 30 98.2383 79 112.321 140 c 0
135.87 242 108.871 255 140.039 390 c 0
169.128 516 290.139 620 473.139 620 c 0
656.139 620 729.128 516 700.039 390 c 2
610 0 l 1
460 0 l 1
550.039 390 l 2
569.201 473 516.743 510 447.743 510 c 0
378.743 510 309.2 473 290.039 390 c 0
260.719 263 267.713 211 245.626 111 c 1
286.707 146 335.095 178 371.021 221 c 1
327.176 226 300.949 264 311.569 310 c 0
323.112 360 372.348 400 422.348 400 c 0
EndSplineSet
EndChar
StartChar: uni0E15
Encoding: 3605 3605 4
Width: 670
VWidth: 0
Flags: W
HStem: 0 21G<460 614.617> 355 45<368.41 444.89> 600 20G<348.639 402.752 534.29 597.639>
LayerCount: 2
Fore
SplineSet
411.958 355 m 0
386.958 355 362.341 335 356.569 310 c 0
350.798 285 366.18 265 391.18 265 c 0
416.18 265 440.798 285 446.569 310 c 0
452.341 335 436.958 355 411.958 355 c 0
422.348 400 m 0
472.348 400 503.112 360 491.569 310 c 0
459.017 169 257.084 74 237.691 -10 c 1
237.691 -10 59.6152 -6 66.9258 30 c 1
66.9258 30 98.2383 79 112.321 140 c 0
135.87 242 113.488 275 144.656 410 c 0
177.901 554 319.139 620 378.139 620 c 1
458.132 555 l 1
568.139 620 l 1
627.139 620 737.901 554 704.656 410 c 2
610 0 l 1
460 0 l 1
554.656 410 l 2
572.433 487 532.743 510 532.743 510 c 1
435.045 455 l 1
362.743 510 l 1
362.743 510 312.433 487 294.656 410 c 0
265.336 283 267.944 212 245.626 111 c 1
286.707 146 335.095 178 371.021 221 c 1
327.176 226 300.949 264 311.569 310 c 0
323.112 360 372.348 400 422.348 400 c 0
EndSplineSet
EndChar
StartChar: uni0E01
Encoding: 3585 3585 5
Width: 670
VWidth: 0
Flags: W
HStem: 0 21G<100 254.617 460 614.617> 505 115<346.609 533.138>
LayerCount: 2
Fore
SplineSet
250 0 m 1
100 0 l 1
162.334 270 l 2
178.957 342 224.883 372 250.423 383 c 1
146.965 420 l 1
183.818 493 304.139 620 483.139 620 c 0
634.139 620 733.745 536 702.348 400 c 2
610 0 l 1
460 0 l 1
552.348 400 l 2
569.201 473 522.589 505 456.589 505 c 0
378.589 505 319.432 474 285.89 437 c 1
412.348 400 l 1
407.729 380 l 1
407.729 380 333.805 363 312.334 270 c 2
250 0 l 1
EndSplineSet
EndChar
StartChar: uni0E16
Encoding: 3606 3606 6
Width: 670
VWidth: 0
Flags: W
HStem: -10 80<206.727 286.681> 0 21G<460 614.617> 505 115<346.609 533.138>
LayerCount: 2
Fore
SplineSet
261.938 160 m 0xa0
236.938 160 212.321 140 206.55 115 c 0
200.778 90 216.161 70 241.161 70 c 0
266.161 70 290.778 90 296.55 115 c 0
302.321 140 286.938 160 261.938 160 c 0xa0
126.55 115 m 2
162.334 270 l 2
178.957 342 224.883 372 250.423 383 c 1
146.965 420 l 1
183.818 493 304.139 620 483.139 620 c 0
634.139 620 733.745 536 702.348 400 c 2
610 0 l 1
460 0 l 1x60
552.348 400 l 2
569.201 473 522.589 505 456.589 505 c 0
378.589 505 319.432 474 285.89 437 c 1
412.348 400 l 1
407.729 380 l 1
407.729 380 333.805 363 312.334 270 c 2
304.946 238 l 1
359.176 226 390.402 175 376.55 115 c 0
360.62 46 291.691 -10 222.691 -10 c 0
153.691 -10 110.62 46 126.55 115 c 2
EndSplineSet
EndChar
StartChar: uni0E28
Encoding: 3624 3624 7
Width: 680
VWidth: 0
Flags: W
HStem: 0 21G<460 614.617> 220 45<358.008 434.729> 355 45<368.927 444.89> 510 110<355.333 528.566>
VStem: 716.225 120<644.902 720>
LayerCount: 2
Fore
SplineSet
422.348 400 m 0
472.348 400 503.112 360 491.569 310 c 0
480.025 260 430.791 220 380.791 220 c 0
350.791 220 327.254 235 316.333 257 c 1
287.099 217 266.708 159 253.087 100 c 2
227.691 -10 l 1
227.691 -10 59.6152 -6 66.9258 30 c 1
66.9258 30 98.2383 79 112.321 140 c 0
135.87 242 108.871 255 140.039 390 c 0
169.128 516 290.139 620 473.139 620 c 0
548.139 620 604.214 603 643.287 573 c 1
678.599 609 699.833 649 716.225 720 c 1
836.225 720 l 1
813.139 620 756.669 540 697.203 499 c 1
707.815 467 709.273 430 700.039 390 c 2
610 0 l 1
460 0 l 1
550.039 390 l 2
569.201 473 516.743 510 447.743 510 c 0
378.743 510 309.2 473 290.039 390 c 0
282.189 356 277.725 328 274.723 302 c 1
311.65 358 363.348 400 422.348 400 c 0
411.958 355 m 0
386.958 355 362.341 335 356.569 310 c 0
350.798 285 366.18 265 391.18 265 c 0
416.18 265 440.798 285 446.569 310 c 0
452.341 335 436.958 355 411.958 355 c 0
EndSplineSet
Substitution2: "Ascent Substitute" uni0E28.alt
EndChar
StartChar: uni0E20
Encoding: 3616 3616 8
Width: 690
VWidth: 0
Flags: W
HStem: -10 80<146.727 226.681> 0 21G<480 634.617> 505 115<366.843 553.138>
LayerCount: 2
Fore
SplineSet
201.938 160 m 0xa0
176.938 160 152.321 140 146.55 115 c 0
140.778 90 156.161 70 181.161 70 c 0
206.161 70 230.778 90 236.55 115 c 0
242.321 140 226.938 160 201.938 160 c 0xa0
306.12 438 m 1
442.348 400 l 1
437.729 380 l 1
437.729 380 373.805 363 352.334 270 c 2
316.55 115 l 2
300.62 46 231.691 -10 162.691 -10 c 0xa0
93.6914 -10 50.6201 46 66.5498 115 c 0
80.4023 175 135.176 226 194.946 238 c 1
202.334 270 l 2
218.265 339 257.421 370 280.191 382 c 1
166.965 420 l 1
203.818 493 324.139 620 503.139 620 c 0
654.139 620 753.745 536 722.348 400 c 2
630 0 l 1
480 0 l 1x60
572.348 400 l 2
589.201 473 542.589 505 476.589 505 c 0
399.589 505 339.662 475 306.12 438 c 1
EndSplineSet
EndChar
StartChar: uni0E48
Encoding: 3656 3656 9
Width: 0
VWidth: 0
Flags: W
HStem: 990 250
VStem: 28.4873 167.789
LayerCount: 2
Fore
SplineSet
76.2764 1240 m 1
196.276 1240 l 1
138.56 990 l 1
28.4873 1033 l 1
76.2764 1240 l 1
EndSplineSet
Position2: "Nikhahit & Tone High-Left" dx=-240 dy=0 dh=0 dv=0
Position2: "Mai Han-Akat & Tone High-Left" dx=-300 dy=0 dh=0 dv=0
Position2: "Tone High-Left" dx=-180 dy=0 dh=0 dv=0
MultipleSubs2: "Tone High-Low" uni0E48.low
EndChar
StartChar: uni0E34
Encoding: 3636 3636 10
Width: 0
VWidth: 0
Flags: W
HStem: 880 100<-226.526 -75.9458>
AnchorPoint: "thai_above" 333.267 630 mark 0
LayerCount: 2
Fore
SplineSet
-407.614 790 m 1
-396.764 837 -300.749 980 -143.749 980 c 0
45.251 980 100.77 783 81.6074 700 c 1
-90.3848 778 -286.614 790 -407.614 790 c 1
-250.61 829 m 1
-179.765 824 -99.7656 811 -23.0762 788 c 1
-43.6865 833 -79.8359 880 -156.836 880 c 0
-194.836 880 -230.453 860 -250.61 829 c 1
EndSplineSet
Substitution2: "Thai Tone & Vowel Above-Narrow" uni0E34.narrow
Position2: "Vowel Above-Left" dx=-140 dy=0 dh=0 dv=0
EndChar
StartChar: uni0E38
Encoding: 3640 3640 11
Width: 0
VWidth: 0
Flags: W
HStem: -350 145<-252.045 -170.87> -115 55<-243.314 -161.883>
VStem: -306.938 200
LayerCount: 2
Fore
SplineSet
-196.55 -115 m 0
-221.55 -115 -246.167 -135 -251.938 -160 c 0
-257.711 -185 -242.328 -205 -217.328 -205 c 0
-192.328 -205 -167.711 -185 -161.938 -160 c 0
-156.167 -135 -171.55 -115 -196.55 -115 c 0
-258.871 -255 m 1
-297.101 -243 -317.328 -205 -306.938 -160 c 0
-294.241 -105 -238.853 -60 -183.853 -60 c 0
-128.853 -60 -94.2412 -105 -106.938 -160 c 2
-150.804 -350 l 1
-280.804 -350 l 1
-258.871 -255 l 1
EndSplineSet
Position2: "Vowel Below-Low" dx=0 dy=-200 dh=0 dv=0
EndChar
StartChar: uni0E35
Encoding: 3637 3637 12
Width: 0
VWidth: 0
Flags: W
HStem: 860 100<-221.144 -67.6522>
AnchorPoint: "thai_above" 333.267 630 mark 0
LayerCount: 2
Fore
SplineSet
38.5596 990 m 1
149.325 950 l 1
86.9902 680 l 1
-85.002 758 -281.231 770 -402.231 770 c 1
-391.381 817 -295.366 960 -138.366 960 c 0
-46.3662 960 0.397461 907 24.0068 849 c 1
19.9336 879 19.8594 909 24.707 930 c 2
38.5596 990 l 1
-245.228 809 m 1
-174.382 804 -94.3828 791 -17.6934 768 c 1
-38.3037 813 -74.4531 860 -151.453 860 c 0
-189.453 860 -225.07 840 -245.228 809 c 1
EndSplineSet
Substitution2: "Thai Tone & Vowel Above-Narrow" uni0E35.narrow
Position2: "Vowel Above-Left" dx=-140 dy=0 dh=0 dv=0
EndChar
StartChar: uni0E48.low
Encoding: 63237 63237 13
Width: 0
VWidth: 0
Flags: W
HStem: 700 260<-3.36621 76.6074>
VStem: -63.3926 200.026
AnchorPoint: "thai_above" 333.267 630 mark 0
LayerCount: 2
Fore
SplineSet
-3.36621 960 m 1
136.634 960 l 1
76.6074 700 l 1
-63.3926 700 l 1
-3.36621 960 l 1
EndSplineSet
Position2: "Tone Low-Left" dx=-220 dy=0 dh=0 dv=0
Substitution2: "Tone Low-High" uni0E48
EndChar
StartChar: uni0E49.low
Encoding: 63238 63238 14
Width: 0
VWidth: 0
Flags: W
HStem: 700 145<-197.708 -129.952> 700 90<-308.268 -216.16 -125.614 -15.9672> 915 55<-193.337 -126.743>
VStem: 42.3984 140<852.661 920>
AnchorPoint: "thai_above" 333.267 630 mark 0
LayerCount: 2
Fore
SplineSet
-153.756 915 m 0xb0
-172.756 915 -192.449 899 -196.836 880 c 0
-201.223 861 -188.916 845 -169.916 845 c 0
-150.916 845 -131.223 861 -126.836 880 c 0
-122.449 899 -134.756 915 -153.756 915 c 0xb0
-141.058 970 m 0
-91.0576 970 -60.293 930 -71.8359 880 c 0
-80.8398 841 -106.228 809 -125.614 790 c 1
-117.614 790 l 2x70
-34.6143 790 18.3887 816 42.3984 920 c 1
182.398 920 l 1
152.386 790 59.6074 700 -138.393 700 c 2xb0
-283.393 700 l 2
-339.393 700 -327.614 790 -327.614 790 c 1
-224.614 790 l 1x70
-222.152 792 -219.46 795 -215.998 797 c 1
-245.766 811 -260.378 843 -251.836 880 c 0
-240.293 930 -191.058 970 -141.058 970 c 0
EndSplineSet
Substitution2: "Thai Tone & Vowel Above-Narrow" uni0E49.narrow
Substitution2: "Thai Special Tone for Asc" uni0E49
Position2: "Tone Low-Left" dx=-220 dy=0 dh=0 dv=0
Substitution2: "Tone Low-High" uni0E49
EndChar
StartChar: uni0E4A.low
Encoding: 63239 63239 15
Width: 0
VWidth: 0
Flags: W
HStem: 695 55<-260.009 -201.833> 700 65<-88.3857 -68.0291> 810 55<-224.528 -199.609> 890 70<-224.12 -151.605 -59.5273 -44.6641>
VStem: 74.707 130<858.512 930>
AnchorPoint: "thai_above" 333.267 630 mark 0
LayerCount: 2
Fore
SplineSet
-222.997 810 m 0xb8
-239.997 810 -255.998 797 -259.923 780 c 0
-263.848 763 -253.849 750 -236.849 750 c 0
-219.849 750 -203.848 763 -199.923 780 c 0
-195.998 797 -205.997 810 -222.997 810 c 0xb8
-59.5273 890 m 1
-93.7617 850 l 1
-148.762 850 l 1
-148.837 867 -162.527 890 -184.527 890 c 0
-202.527 890 -216.066 879 -224.761 863 c 1
-218.53 864 -211.299 865 -204.299 865 c 0
-157.299 865 -134.072 827 -144.923 780 c 0
-155.773 733 -202.547 695 -249.547 695 c 0xb8
-303.547 695 -337.311 748 -319.534 825 c 0
-303.835 893 -237.366 960 -173.366 960 c 0
-126.366 960 -108.369 934 -100.448 912 c 1
-63.3662 960 l 1
-43.3662 960 l 2
12.6338 960 47.5508 899 31.6211 830 c 0
28.8506 818 24.0801 806 19.3096 794 c 1
37.6963 813 56.6992 852 74.707 930 c 1
204.707 930 l 1
165.69 761 50.6074 700 -103.393 700 c 1
-88.3857 765 l 1x78
-73.3857 765 -56.46 795 -48.3789 830 c 0
-40.2988 865 -45.5273 890 -59.5273 890 c 1
EndSplineSet
Substitution2: "Thai Tone & Vowel Above-Narrow" uni0E4A.narrow
Substitution2: "Thai Special Tone for Asc" uni0E4A
Position2: "Tone Low-Left" dx=-200 dy=0 dh=0 dv=0
Substitution2: "Tone Low-High" uni0E4A
EndChar
StartChar: uni0E4B.low
Encoding: 63240 63240 16
Width: 0
VWidth: 0
Flags: W
HStem: 790 80<-159.145 -77.6143 60.8555 142.386>
VStem: -177.614 338.47
AnchorPoint: "thai_above" 333.267 630 mark 0
LayerCount: 2
Fore
SplineSet
-38.3662 960 m 1
81.6338 960 l 1
60.8555 870 l 1
160.855 870 l 1
142.386 790 l 1
42.3857 790 l 1
21.6074 700 l 1
-98.3926 700 l 1
-77.6143 790 l 1
-177.614 790 l 1
-159.145 870 l 1
-59.1445 870 l 1
-38.3662 960 l 1
EndSplineSet
Position2: "Tone Low-Left" dx=-230 dy=0 dh=0 dv=0
Substitution2: "Tone Low-High" uni0E4B
EndChar
StartChar: uni0E4C.low
Encoding: 63241 63241 17
Width: 0
VWidth: 0
Flags: W
HStem: 690 50<-86.5154 -20.6252>
VStem: -139.923 295.25
AnchorPoint: "thai_above" 333.267 630 mark 0
LayerCount: 2
Fore
SplineSet
30.3271 976 m 1
155.327 976 l 1
140.321 911 75.9336 879 28.8525 844 c 1
40.9277 827 45.8486 805 40.0771 780 c 0
28.7646 731 -20.7012 690 -70.7012 690 c 0
-120.701 690 -151.235 731 -139.923 780 c 0
-117.528 877 14.6279 908 30.3271 976 c 1
-42.9971 810 m 0
-61.9971 810 -81.46 795 -85.8467 776 c 0
-90.4639 756 -78.1572 740 -59.1572 740 c 0
-40.1572 740 -20.4639 756 -15.8467 776 c 0
-11.46 795 -23.9971 810 -42.9971 810 c 0
EndSplineSet
Position2: "Tone Low-Left" dx=-140 dy=0 dh=0 dv=0
Substitution2: "Tone Low-High" uni0E4C
EndChar
StartChar: uni0E10.descless
Encoding: 63232 63232 18
Width: 600
VWidth: 0
Flags: W
HStem: 90 65<176.352 257.388> 245 65<185.431 264.992> 365 60<299.119 396.004> 505 95<635.878 676.589> 520 100<357.998 553.861>
LayerCount: 2
Fore
SplineSet
231.562 245 m 0xe0
206.562 245 181.945 225 176.174 200 c 0
170.402 175 185.784 155 210.784 155 c 0
235.784 155 260.402 175 266.174 200 c 0
271.945 225 256.562 245 231.562 245 c 0xe0
144.267 365 m 1
181.437 526 322.139 620 463.139 620 c 0xe8
558.139 620 599.133 568 613.132 555 c 1
632.519 574 667.521 600 698.521 600 c 1
676.589 505 l 1xf0
647.589 505 609.971 485 591.199 460 c 1
564.818 493 526.052 520 460.052 520 c 0xe8
368.052 520 317.2 473 299.119 425 c 1
484.119 425 606.503 418 579.261 300 c 2
523.853 60 l 2
513.463 15 421.691 -10 327.691 -10 c 1
336.545 63 331.936 121 314.938 160 c 1
289.474 119 242.778 90 195.778 90 c 0
134.778 90 97.0908 139 111.174 200 c 0
125.257 261 185.569 310 246.569 310 c 0
341.569 310 378.097 204 382.163 96 c 1
429.261 300 l 2
443.574 362 251.267 365 144.267 365 c 1
EndSplineSet
EndChar
StartChar: uni0E0D.descless
Encoding: 63247 63247 19
Width: 930
VWidth: 0
Flags: W
HStem: -20 110<640.974 742.454> -10 80<206.727 286.681> 505 115<346.609 533.138> 580 20G<853.903 1008.52>
LayerCount: 2
Fore
SplineSet
126.55 115 m 2x60
162.334 270 l 2
178.957 342 224.883 372 250.423 383 c 1
146.965 420 l 1
183.818 493 304.139 620 483.139 620 c 0x60
634.139 620 733.745 536 702.348 400 c 2
640.013 130 l 2
634.703 107 647.778 90 685.778 90 c 0
723.778 90 744.703 107 750.013 130 c 2
858.521 600 l 1
1008.52 600 l 1
900.013 130 l 2
891.24 92 855.383 -20 660.383 -20 c 0x90
465.383 -20 481.24 92 490.013 130 c 2
552.348 400 l 2
569.201 473 522.589 505 456.589 505 c 0
378.589 505 319.432 474 285.89 437 c 1
412.348 400 l 1
407.729 380 l 1
407.729 380 333.805 363 312.334 270 c 2
304.946 238 l 1
359.176 226 390.402 175 376.55 115 c 0
360.62 46 291.691 -10 222.691 -10 c 0
153.691 -10 110.62 46 126.55 115 c 2x60
261.938 160 m 0
236.938 160 212.321 140 206.55 115 c 0
200.778 90 216.161 70 241.161 70 c 0
266.161 70 290.778 90 296.55 115 c 0
302.321 140 286.938 160 261.938 160 c 0
EndSplineSet
EndChar
StartChar: uni0E36
Encoding: 3638 3638 20
Width: 0
VWidth: 0
Flags: W
HStem: 860 100<-231.144 -77.212> 925 65<3.59346 71.2042>
AnchorPoint: "thai_above" 333.267 630 mark 0
LayerCount: 2
Fore
SplineSet
58.5596 990 m 0x40
113.56 990 148.171 945 135.473 890 c 0
126.931 853 99.3115 820 64.3867 803 c 1
80.7676 757 84.1475 711 76.9902 680 c 1
-95.002 758 -291.231 770 -412.231 770 c 1
-401.381 817 -305.366 960 -148.366 960 c 0x80
-107.366 960 -72.4443 951 -43.1387 935 c 1
-19.5195 968 19.5596 990 58.5596 990 c 0x40
43.5527 925 m 0x40