Package: fonts-liberation / 1:1.07.4-2

0002-resolved-1094779.patch Patch series | download
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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
From b72da688058b451a9aef8baf0fc1d4ddc49060e5 Mon Sep 17 00:00:00 2001
From: Pravin Satpute <psatpute@redhat.com>
Date: Fri, 9 May 2014 15:23:31 +0530
Subject: [PATCH 2/3] resolved 1094779

---
 ChangeLog                               |   1 +
 src/LiberationMono-Bold.sfd             |  66 ++-------------
 src/LiberationMono-BoldItalic.sfd       | 146 ++------------------------------
 src/LiberationMono-Italic.sfd           | 140 ++----------------------------
 src/LiberationMono-Regular.sfd          |  59 ++-----------
 src/LiberationSans-Bold.sfd             |  65 +-------------
 src/LiberationSans-BoldItalic.sfd       | 130 +---------------------------
 src/LiberationSans-Italic.sfd           | 130 +---------------------------
 src/LiberationSans-Regular.sfd          |  59 ++-----------
 src/LiberationSansNarrow-Bold.sfd       |  62 +-------------
 src/LiberationSansNarrow-BoldItalic.sfd | 128 +---------------------------
 src/LiberationSansNarrow-Italic.sfd     | 135 +----------------------------
 src/LiberationSansNarrow-Regular.sfd    |  54 +-----------
 13 files changed, 54 insertions(+), 1121 deletions(-)

diff --git a/ChangeLog b/ChangeLog
index 1737886..515cf48 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,6 @@
 
 - Resolved #1009650, Resolved issue with Liberation Sans Italic
+- Resolved #1094779,  No Cyrillic Italic Glyphs for Sans, Sans Narrow and Mono
 
 * Fri 18 2014 Pravin Satpute <psatpute@redhat.com> 1.07.4
 - Restored Liberation Sans Bold 'u' instructions
diff --git a/src/LiberationMono-Bold.sfd b/src/LiberationMono-Bold.sfd
index d7833a1..47784dc 100644
--- a/src/LiberationMono-Bold.sfd
+++ b/src/LiberationMono-Bold.sfd
@@ -19,7 +19,7 @@ OS2Version: 3
 OS2_WeightWidthSlopeOnly: 0
 OS2_UseTypoMetrics: 1
 CreationTime: 1095817380
-ModificationTime: 1386049070
+ModificationTime: 1399616628
 PfmFamily: 17
 TTFWeight: 700
 TTFWidth: 5
@@ -53,7 +53,6 @@ OS2FamilyClass: 2053
 OS2Vendor: '1ASC'
 OS2CodePages: 6000009f.dfd70000
 OS2UnicodeRanges: a00002af.400078fb.00000000.00000000
-Lookup: 1 0 0 "'locl' Localized Forms lookup 0"  {"'locl' Localized Forms lookup 0-1"  } ['locl' ('cyrl' <'SRB ' > ) ]
 MarkAttachClasses: 1
 DEI: 91125
 TtTable: prep
@@ -3229,11 +3228,11 @@ NameList: Adobe Glyph List
 DisplaySize: -24
 AntiAlias: 1
 FitToEm: 1
-WinInfo: 9744 56 18
+WinInfo: 1113168 56 18
 BeginPrivate: 0
 EndPrivate
 TeXData: 1 0 0 346030 173015 115343 553984 -1048576 115343 783286 444596 497025 792723 393216 433062 380633 303038 157286 324010 404750 52429 2506097 1059062 262144
-BeginChars: 1114127 675
+BeginChars: 1114127 674
 
 StartChar: .notdef
 Encoding: 1114112 -1 0
@@ -42290,7 +42289,6 @@ SplineSet
  464 982 464 982 531.5 1004.5 c 128,-1,58
  599 1027 599 1027 685 1027 c 0,20,21
 EndSplineSet
-Substitution2: "'locl' Localized Forms lookup 0-1" afii10066.alt1
 EndChar
 
 StartChar: afii10067
@@ -64406,62 +64404,8 @@ Refer: 67 96 N 1 0 0 1 -82 34 2
 Refer: 462 1080 N 1 0 0 1 0 0 2
 EndChar
 
-StartChar: afii10066.alt1
-Encoding: 1114109 -1 672
-Width: 1229
-VWidth: 0
-LayerCount: 2
-Fore
-SplineSet
-878 504 m 0,0,1
- 878 584.886 878 584.886 854.815 653.496 c 0,2,3
- 822.093 750.337 822.093 750.337 800.876 774.82 c 0,4,5
- 795.793 780.343 795.793 780.343 791.18 785.094 c 0,6,7
- 705.473 873.576 705.473 873.576 620.908 872.521 c 128,-1,8
- 536.344 871.466 536.344 871.466 442.646 780.29 c 1,9,10
- 398.682 735.29 398.682 735.29 367.123 658.497 c 0,11,12
- 339 590.066 339 590.066 339 504 c 0,13,14
- 339 431.284 339 431.284 355.652 368.953 c 0,15,16
- 371.881 308.214 371.881 308.214 405.4 264.133 c 0,17,18
- 438.351 220.8 438.351 220.8 488.6 195.9 c 128,-1,19
- 538.854 171.001 538.854 171.001 610 171 c 0,20,21
- 685.288 171 685.288 171 736.143 195.52 c 0,22,23
- 786.473 219.786 786.473 219.786 817.272 262.19 c 0,24,25
- 848.826 305.637 848.826 305.637 863.172 366.257 c 0,26,27
- 878 428.916 878 428.916 878 504 c 0,0,1
-1024.69 844.269 m 0,28,29
- 1063.71 781.667 1063.71 781.667 1091.39 691.861 c 0,30,31
- 1117 608.74 1117 608.74 1117 508 c 0,32,33
- 1117 393.716 1117 393.716 1083.58 298.707 c 0,34,35
- 1049.83 202.72 1049.83 202.72 984.727 133.388 c 0,36,37
- 919.431 63.8467 919.431 63.8467 824.285 25.7881 c 0,38,39
- 729.815 -12 729.815 -12 610 -12 c 0,40,41
- 491.438 -12 491.438 -12 397.165 23.6133 c 0,42,43
- 302.033 59.5518 302.033 59.5518 235.684 126.963 c 128,-1,44
- 169.339 194.367 169.339 194.367 134.482 291.02 c 0,45,46
- 100 386.632 100 386.632 100 506 c 0,47,48
- 100 622.979 100 622.979 138.407 715.578 c 0,49,50
- 175.588 805.22 175.588 805.22 212.992 868.345 c 0,51,52
- 245.067 922.479 245.067 922.479 299.472 975.325 c 1,53,54
- 136.422 1104.5 136.422 1104.5 148.001 1269.9 c 1,55,56
- 148.412 1403.98 148.412 1403.98 252.603 1504.95 c 128,-1,57
- 356.873 1606 356.873 1606 525 1606 c 2,58,-1
- 1033 1606 l 2,59,60
- 1043 1606 1043 1606 1050.5 1598.5 c 128,-1,61
- 1058 1591 1058 1591 1058 1581 c 2,62,-1
- 1058 1434 l 2,63,64
- 1058 1424 1058 1424 1050.5 1416.5 c 128,-1,65
- 1043 1409 1043 1409 1033 1409 c 2,66,-1
- 561 1409 l 2,67,68
- 470.521 1409 470.521 1409 429.262 1369.24 c 128,-1,69
- 388 1329.47 388 1329.47 388 1243.2 c 0,70,71
- 388 1137.53 388 1137.53 522.076 1071.96 c 1,72,73
- 856.16 1114.64 856.16 1114.64 1024.69 844.269 c 0,28,29
-EndSplineSet
-EndChar
-
 StartChar: uni266C
-Encoding: 9836 9836 673
+Encoding: 9836 9836 672
 Width: 1229
 Flags: W
 LayerCount: 2
@@ -64511,7 +64455,7 @@ EndSplineSet
 EndChar
 
 StartChar: musicalnotedbl
-Encoding: 9835 9835 674
+Encoding: 9835 9835 673
 Width: 1229
 VWidth: 0
 Flags: W
diff --git a/src/LiberationMono-BoldItalic.sfd b/src/LiberationMono-BoldItalic.sfd
index da9bb0f..2b4b105 100644
--- a/src/LiberationMono-BoldItalic.sfd
+++ b/src/LiberationMono-BoldItalic.sfd
@@ -19,7 +19,7 @@ OS2Version: 3
 OS2_WeightWidthSlopeOnly: 0
 OS2_UseTypoMetrics: 1
 CreationTime: 1095817380
-ModificationTime: 1385998735
+ModificationTime: 1399621376
 PfmFamily: 17
 TTFWeight: 700
 TTFWidth: 5
@@ -53,7 +53,6 @@ OS2FamilyClass: 2053
 OS2Vendor: '1ASC'
 OS2CodePages: 6000009f.dfd70000
 OS2UnicodeRanges: a00002af.400078fb.00000000.00000000
-Lookup: 1 0 0 "'locl' Localized Forms lookup 0"  {"'locl' Localized Forms lookup 0-1"  } ['locl' ('cyrl' <'SRB ' > 'cyrl' <'MKD ' > ) ]
 MarkAttachClasses: 1
 DEI: 91125
 TtTable: prep
@@ -2841,10 +2840,10 @@ NameList: Adobe Glyph List
 DisplaySize: -24
 AntiAlias: 1
 FitToEm: 1
-WinInfo: 9744 56 18
+WinInfo: 1113168 56 18
 BeginPrivate: 0
 EndPrivate
-BeginChars: 1114127 680
+BeginChars: 1114127 674
 
 StartChar: .notdef
 Encoding: 1114112 -1 0
@@ -50389,7 +50388,6 @@ SplineSet
  550 982 550 982 622 1004.5 c 128,-1,67
  694 1027 694 1027 780 1027 c 0,25,26
 EndSplineSet
-Substitution2: "'locl' Localized Forms lookup 0-1" afii10066.alt1
 EndChar
 
 StartChar: afii10067
@@ -50703,7 +50701,6 @@ SplineSet
  348 1082 l 1,5,-1
  1173 1082 l 1,0,-1
 EndSplineSet
-Substitution2: "'locl' Localized Forms lookup 0-1" afii10068.alt1
 EndChar
 
 StartChar: afii10069
@@ -50984,7 +50981,6 @@ SplineSet
  832 0 l 1,23,-1
  154 0 l 1,8,-1
 EndSplineSet
-Substitution2: "'locl' Localized Forms lookup 0-1" afii10069.alt1
 EndChar
 
 StartChar: afii10070
@@ -52993,7 +52989,6 @@ SplineSet
  243 1082 l 1,7,-1
  1196 1082 l 1,0,-1
 EndSplineSet
-Substitution2: "'locl' Localized Forms lookup 0-1" afii10081.alt1
 EndChar
 
 StartChar: afii10082
@@ -53115,7 +53110,6 @@ SplineSet
  178 892 l 1,7,-1
  215 1082 l 1,0,-1
 EndSplineSet
-Substitution2: "'locl' Localized Forms lookup 0-1" afii10084.alt1
 EndChar
 
 StartChar: afii10085
@@ -54088,7 +54082,6 @@ SplineSet
  1045 0 l 1,11,-1
  -26 0 l 1,0,-1
 EndSplineSet
-Substitution2: "'locl' Localized Forms lookup 0-1" afii10090.alt1
 EndChar
 
 StartChar: afii10091
@@ -74880,137 +74873,8 @@ Refer: 67 96 N 1 0 0 1 -97 34 2
 Refer: 462 1080 N 1 0 0 1 0 0 2
 EndChar
 
-StartChar: afii10066.alt1
-Encoding: 1114109 -1 672
-Width: 1229
-VWidth: 0
-LayerCount: 2
-Fore
-SplineSet
-810.491 504 m 0,0,1
- 832.164 584.886 832.164 584.886 827.363 653.496 c 0,2,3
- 820.59 750.337 820.59 750.337 805.933 774.82 c 0,4,5
- 802.33 780.343 802.33 780.343 798.989 785.094 c 0,6,7
- 736.991 873.576 736.991 873.576 652.144 872.521 c 128,-1,8
- 567.297 871.466 567.297 871.466 449.169 780.29 c 1,9,10
- 393.146 735.29 393.146 735.29 341.012 658.497 c 0,11,12
- 294.553 590.066 294.553 590.066 271.491 504 c 0,13,14
- 252.007 431.284 252.007 431.284 251.957 368.953 c 0,15,16
- 251.911 308.214 251.911 308.214 273.619 264.133 c 0,17,18
- 294.958 220.8 294.958 220.8 338.536 195.9 c 128,-1,19
- 382.118 171.001 382.118 171.001 453.264 171 c 0,20,21
- 528.552 171 528.552 171 585.977 195.52 c 0,22,23
- 642.809 219.786 642.809 219.786 684.971 262.19 c 0,24,25
- 728.166 305.637 728.166 305.637 758.755 366.257 c 0,26,27
- 790.372 428.916 790.372 428.916 810.491 504 c 0,0,1
-1048.35 844.269 m 0,28,29
- 1070.6 781.667 1070.6 781.667 1074.22 691.861 c 0,30,31
- 1077.56 608.74 1077.56 608.74 1050.56 508 c 0,32,33
- 1019.94 393.716 1019.94 393.716 961.066 298.707 c 0,34,35
- 901.588 202.72 901.588 202.72 817.911 133.388 c 0,36,37
- 733.982 63.8467 733.982 63.8467 628.64 25.7881 c 0,38,39
- 524.045 -12 524.045 -12 404.229 -12 c 0,40,41
- 285.666 -12 285.666 -12 200.937 23.6133 c 0,42,43
- 115.435 59.5518 115.435 59.5518 67.1465 126.963 c 128,-1,44
- 18.8643 194.367 18.8643 194.367 9.90527 291.02 c 0,45,46
- 1.04199 386.632 1.04199 386.632 33.0264 506 c 0,47,48
- 64.3711 622.979 64.3711 622.979 127.59 715.578 c 0,49,50
- 188.79 805.22 188.79 805.22 243.109 868.345 c 0,51,52
- 289.689 922.479 289.689 922.479 358.254 975.325 c 1,53,54
- 229.817 1104.5 229.817 1104.5 285.715 1269.9 c 1,55,56
- 322.054 1403.98 322.054 1403.98 453.298 1504.95 c 128,-1,57
- 584.645 1606 584.645 1606 752.771 1606 c 2,58,-1
- 1260.77 1606 l 2,59,60
- 1270.77 1606 1270.77 1606 1276.26 1598.5 c 128,-1,61
- 1281.75 1591 1281.75 1591 1279.07 1581 c 2,62,-1
- 1239.68 1434 l 2,63,64
- 1237 1424 1237 1424 1227.49 1416.5 c 128,-1,65
- 1217.98 1409 1217.98 1409 1207.98 1409 c 2,66,-1
- 735.984 1409 l 2,67,68
- 645.508 1409 645.508 1409 593.592 1369.24 c 128,-1,69
- 541.675 1329.47 541.675 1329.47 518.56 1243.2 c 0,70,71
- 490.245 1137.53 490.245 1137.53 606.752 1071.96 c 1,72,73
- 952.271 1114.64 952.271 1114.64 1048.35 844.269 c 0,28,29
-EndSplineSet
-EndChar
-
-StartChar: afii10084.alt1
-Encoding: 1114108 -1 673
-Width: 1229
-Flags: W
-LayerCount: 2
-Fore
-SplineSet
-239 1371 m 1,0,-1
- 1311 1371 l 1,1,-1
- 1279 1203 l 1,2,-1
- 207 1203 l 1,3,-1
- 239 1371 l 1,0,-1
-EndSplineSet
-Refer: 478 1096 N 1 0 0 1 0 0 2
-EndChar
-
-StartChar: afii10090.alt1
-Encoding: 1114107 -1 674
-Width: 1229
-Flags: W
-LayerCount: 2
-Fore
-SplineSet
--61 -129 m 5,0,-1
- 1011 -129 l 5,1,-1
- 979 -297 l 5,2,-1
- -93 -297 l 5,3,-1
- -61 -129 l 5,0,-1
-EndSplineSet
-Refer: 478 1096 N 1 0 0 1 0 0 2
-EndChar
-
-StartChar: afii10081.alt1
-Encoding: 1114106 -1 675
-Width: 1229
-Flags: W
-LayerCount: 2
-Fore
-SplineSet
-309 1421 m 1,0,-1
- 1251 1421 l 1,1,-1
- 1219 1253 l 1,2,-1
- 277 1253 l 1,3,-1
- 309 1421 l 1,0,-1
-934 0 m 1,4,-1
- 1165 1082 l 1,5,-1
- 883 1082 l 1,6,-1
- 710 190 l 1,7,-1
- 353 190 l 1,8,-1
- 526 1082 l 1,9,-1
- 244 1082 l 1,10,-1
- 34 0 l 1,11,-1
- 934 0 l 1,4,-1
-EndSplineSet
-EndChar
-
-StartChar: afii10068.alt1
-Encoding: 1114105 -1 676
-Width: 1229
-Flags: W
-LayerCount: 2
-Fore
-Refer: 329 713 N 1 0 0 1 8 0 2
-Refer: 241 305 N 1 0 0 1 0 0 3
-EndChar
-
-StartChar: afii10069.alt1
-Encoding: 1114104 -1 677
-Width: 1229
-Flags: W
-LayerCount: 2
-Fore
-Refer: 74 103 N 1 0 0 1 0 0 2
-EndChar
-
 StartChar: uni266C
-Encoding: 9836 9836 678
+Encoding: 9836 9836 672
 Width: 1229
 Flags: W
 LayerCount: 2
@@ -75060,7 +74924,7 @@ EndSplineSet
 EndChar
 
 StartChar: musicalnotedbl
-Encoding: 9835 9835 679
+Encoding: 9835 9835 673
 Width: 1229
 VWidth: 0
 Flags: W
diff --git a/src/LiberationMono-Italic.sfd b/src/LiberationMono-Italic.sfd
index 685d263..9ff3617 100644
--- a/src/LiberationMono-Italic.sfd
+++ b/src/LiberationMono-Italic.sfd
@@ -19,7 +19,7 @@ OS2Version: 3
 OS2_WeightWidthSlopeOnly: 0
 OS2_UseTypoMetrics: 1
 CreationTime: 1095817380
-ModificationTime: 1385998703
+ModificationTime: 1399615336
 PfmFamily: 17
 TTFWeight: 400
 TTFWidth: 5
@@ -53,7 +53,6 @@ OS2FamilyClass: 2053
 OS2Vendor: '1ASC'
 OS2CodePages: 6000009f.dfd70000
 OS2UnicodeRanges: a00002af.400078fb.00000000.00000000
-Lookup: 1 0 0 "'locl' Localized Forms lookup 0"  {"'locl' Localized Forms lookup 0-1"  } ['locl' ('cyrl' <'SRB ' > 'cyrl' <'MKD ' > ) ]
 MarkAttachClasses: 1
 DEI: 91125
 TtTable: prep
@@ -3415,7 +3414,7 @@ NameList: Adobe Glyph List
 DisplaySize: -24
 AntiAlias: 1
 FitToEm: 1
-WinInfo: 9744 56 18
+WinInfo: 0 56 18
 BeginPrivate: 0
 EndPrivate
 Grid
@@ -3425,7 +3424,7 @@ Grid
  1229 1705 l 1
  1229 -452 l 1
 EndSplineSet
-BeginChars: 1114127 680
+BeginChars: 1114127 674
 
 StartChar: .notdef
 Encoding: 1114112 -1 0
@@ -54345,7 +54344,6 @@ SplineSet
  556 986 556 986 623.5 1006.5 c 128,-1,66
  691 1027 691 1027 770 1027 c 0,25,26
 EndSplineSet
-Substitution2: "'locl' Localized Forms lookup 0-1" afii10066.alt1
 EndChar
 
 StartChar: afii10067
@@ -54649,7 +54647,6 @@ SplineSet
  370 1082 l 1,5,-1
  1155 1082 l 1,0,-1
 EndSplineSet
-Substitution2: "'locl' Localized Forms lookup 0-1" afii10068.alt1
 EndChar
 
 StartChar: afii10069
@@ -55021,7 +55018,6 @@ SplineSet
  1065 142 l 1,25,-1
  958 -408 l 1,8,-1
 EndSplineSet
-Substitution2: "'locl' Localized Forms lookup 0-1" afii10069.alt1
 EndChar
 
 StartChar: afii10070
@@ -56826,7 +56822,6 @@ SplineSet
  286 1082 l 1,7,-1
  1153 1082 l 1,0,-1
 EndSplineSet
-Substitution2: "'locl' Localized Forms lookup 0-1" afii10081.alt1
 EndChar
 
 StartChar: afii10082
@@ -56943,7 +56938,6 @@ SplineSet
  208 940 l 1,7,-1
  235 1082 l 1,0,-1
 EndSplineSet
-Substitution2: "'locl' Localized Forms lookup 0-1" afii10084.alt1
 EndChar
 
 StartChar: afii10085
@@ -58149,7 +58143,6 @@ SplineSet
  1022 0 l 1,11,-1
  -3 0 l 1,0,-1
 EndSplineSet
-Substitution2: "'locl' Localized Forms lookup 0-1" afii10090.alt1
 EndChar
 
 StartChar: afii10091
@@ -80195,131 +80188,8 @@ Refer: 67 96 N 1 0 0 1 -59 12 2
 Refer: 462 1080 N 1 0 0 1 0 0 2
 EndChar
 
-StartChar: afii10066.alt1
-Encoding: 1114109 -1 672
-Width: 1229
-VWidth: 0
-Flags: W
-LayerCount: 2
-Fore
-SplineSet
-852.812 491 m 0,0,1
- 875.587 576 875.587 576 870.514 648.5 c 0,2,3
- 863.36 750.711 863.36 750.711 846.347 778.5 c 0,4,5
- 712.232 985.2 712.232 985.2 453.589 785 c 1,6,7
- 393.298 736.812 393.298 736.812 337.755 655 c 0,8,9
- 288.194 582 288.194 582 263.812 491 c 0,10,11
- 243.447 415 243.447 415 243.396 349.5 c 128,-1,12
- 243.346 284 243.346 284 266.984 236 c 128,-1,13
- 290.623 188 290.623 188 338.754 160.5 c 128,-1,14
- 386.886 133.001 386.886 133.001 463.886 133 c 0,15,16
- 544.886 133 544.886 133 608.12 160 c 128,-1,17
- 671.354 187 671.354 187 718.582 234.5 c 128,-1,18
- 765.811 282.001 765.811 282.001 798.86 347.5 c 128,-1,19
- 831.911 413 831.911 413 852.812 491 c 0,0,1
-1040.93 818 m 0,20,21
- 1062.19 758.189 1062.19 758.189 1065.68 671.5 c 0,22,23
- 1068.87 592 1068.87 592 1042.88 495 c 0,24,25
- 1013.41 385 1013.41 385 957.025 294 c 128,-1,26
- 900.642 202.999 900.642 202.999 821.592 137.5 c 128,-1,27
- 742.541 72 742.541 72 642.895 36 c 128,-1,28
- 543.248 0 543.248 0 428.248 0 c 0,29,30
- 314.248 0 314.248 0 233.358 34 c 128,-1,31
- 152.469 68 152.469 68 106.983 131.5 c 128,-1,32
- 61.4971 195 61.4971 195 53.0156 286.5 c 128,-1,33
- 44.5332 378 44.5332 378 75.3477 493 c 0,34,35
- 105.357 605 105.357 605 165.438 693 c 128,-1,36
- 225.516 781 225.516 781 278.522 842.601 c 128,-1,37
- 331.528 904.2 331.528 904.2 415.187 964.5 c 1,38,39
- 269.965 1090.2 269.965 1090.2 333.151 1276 c 1,40,41
- 366.377 1400 366.377 1400 488.564 1494 c 128,-1,42
- 610.752 1588 610.752 1588 768.752 1588 c 2,43,-1
- 1276.75 1588 l 1,44,-1
- 1237.36 1441 l 1,45,-1
- 765.363 1441 l 2,46,47
- 567.363 1441 567.363 1441 516.238 1250.2 c 0,48,49
- 477.507 1105.65 477.507 1105.65 613.094 1033.2 c 1,50,51
- 947.294 1077.58 947.294 1077.58 1040.93 818 c 0,20,21
-EndSplineSet
-EndChar
-
-StartChar: afii10084.alt1
-Encoding: 1114108 -1 673
-Width: 1229
-Flags: W
-LayerCount: 2
-Fore
-SplineSet
-1243 1236 m 1,0,-1
- 232 1236 l 1,1,-1
- 257 1363 l 1,2,-1
- 1268 1363 l 1,3,-1
- 1243 1236 l 1,0,-1
-EndSplineSet
-Refer: 478 1096 N 1 0 0 1 0 0 2
-EndChar
-
-StartChar: afii10090.alt1
-Encoding: 1114107 -1 674
-Width: 1229
-Flags: W
-LayerCount: 2
-Fore
-SplineSet
-963 -274 m 5,0,-1
- -68 -274 l 5,1,-1
- -43 -147 l 5,2,-1
- 988 -147 l 5,3,-1
- 963 -274 l 5,0,-1
-EndSplineSet
-Refer: 478 1096 N 1 0 0 1 0 0 2
-EndChar
-
-StartChar: afii10081.alt1
-Encoding: 1114106 -1 675
-Width: 1229
-Flags: W
-LayerCount: 2
-Fore
-SplineSet
-1193 1246 m 5,0,-1
- 312 1246 l 5,1,-1
- 337 1373 l 5,2,-1
- 1218 1373 l 5,3,-1
- 1193 1246 l 5,0,-1
-921 0 m 1,4,-1
- 1148 1082 l 1,5,-1
- 968 1082 l 1,6,-1
- 783 131 l 1,7,-1
- 276 131 l 1,8,-1
- 461 1082 l 1,9,-1
- 281 1082 l 1,10,-1
- 71 0 l 1,11,-1
- 921 0 l 1,4,-1
-EndSplineSet
-EndChar
-
-StartChar: afii10068.alt1
-Encoding: 1114105 -1 676
-Width: 1229
-Flags: W
-LayerCount: 2
-Fore
-Refer: 329 713 N 1 0 0 1 8 0 2
-Refer: 241 305 N 1 0 0 1 0 0 3
-EndChar
-
-StartChar: afii10069.alt1
-Encoding: 1114104 -1 677
-Width: 1229
-Flags: W
-LayerCount: 2
-Fore
-Refer: 74 103 N 1 0 0 1 0 0 2
-EndChar
-
 StartChar: uni266C
-Encoding: 9836 9836 678
+Encoding: 9836 9836 672
 Width: 1229
 Flags: W
 LayerCount: 2
@@ -80369,7 +80239,7 @@ EndSplineSet
 EndChar
 
 StartChar: musicalnotedbl
-Encoding: 9835 9835 679
+Encoding: 9835 9835 673
 Width: 1229
 VWidth: 0
 Flags: W
diff --git a/src/LiberationMono-Regular.sfd b/src/LiberationMono-Regular.sfd
index d70f6a8..3251b6c 100644
--- a/src/LiberationMono-Regular.sfd
+++ b/src/LiberationMono-Regular.sfd
@@ -19,7 +19,7 @@ OS2Version: 3
 OS2_WeightWidthSlopeOnly: 0
 OS2_UseTypoMetrics: 1
 CreationTime: 1095817380
-ModificationTime: 1386064046
+ModificationTime: 1399615248
 PfmFamily: 17
 TTFWeight: 400
 TTFWidth: 5
@@ -53,7 +53,6 @@ OS2FamilyClass: 2053
 OS2Vendor: '1ASC'
 OS2CodePages: 6000009f.dfd70000
 OS2UnicodeRanges: a00002af.400078fb.00000000.00000000
-Lookup: 1 0 0 "'locl' Localized Forms lookup 0"  {"'locl' Localized Forms lookup 0-1"  } ['locl' ('cyrl' <'SRB ' > ) ]
 MarkAttachClasses: 1
 DEI: 91125
 TtTable: prep
@@ -3213,7 +3212,7 @@ FitToEm: 1
 WinInfo: 0 56 18
 BeginPrivate: 0
 EndPrivate
-BeginChars: 1114127 675
+BeginChars: 1114127 674
 
 StartChar: .notdef
 Encoding: 1114112 -1 0
@@ -14722,7 +14721,7 @@ EndChar
 StartChar: l
 Encoding: 108 108 79
 Width: 1229
-Flags: WO
+Flags: W
 TtInstrs:
 NPUSHB
  26
@@ -45723,7 +45722,6 @@ SplineSet
  469 986 469 986 532.5 1006.5 c 128,-1,56
  596 1027 596 1027 675 1027 c 0,20,21
 EndSplineSet
-Substitution2: "'locl' Localized Forms lookup 0-1" afii10066.alt1
 EndChar
 
 StartChar: afii10067
@@ -67549,55 +67547,8 @@ Refer: 67 96 S 1 0 0 1 -98 13 2
 Refer: 462 1080 N 1 0 0 1 0 0 2
 EndChar
 
-StartChar: afii10066.alt1
-Encoding: 1114109 -1 672
-Width: 1229
-Flags: W
-LayerCount: 2
-Fore
-SplineSet
-894 491 m 4,0,1
- 894 576 894 576 869.5 648.5 c 4,2,3
- 834.96 750.711 834.96 750.711 810.5 778.5 c 4,4,5
- 621 985.2 621 985.2 416 785 c 5,6,7
- 368.621 736.812 368.621 736.812 335 655 c 4,8,9
- 305 582 305 582 305 491 c 4,10,11
- 305 415 305 415 322.5 349.5 c 132,-1,12
- 340 284 340 284 376.5 236 c 132,-1,13
- 413 188 413 188 468.5 160.5 c 132,-1,14
- 524 133.001 524 133.001 601 133 c 4,15,16
- 682 133 682 133 738 160 c 132,-1,17
- 794 187 794 187 828.5 234.5 c 132,-1,18
- 863 282.001 863 282.001 878.5 347.5 c 132,-1,19
- 894 413 894 413 894 491 c 4,0,1
-994.5 818 m 4,20,21
- 1031.78 758.189 1031.78 758.189 1058.5 671.5 c 4,22,23
- 1083 592 1083 592 1083 495 c 4,24,25
- 1083 385 1083 385 1051 294 c 132,-1,26
- 1019 202.999 1019 202.999 957.5 137.5 c 132,-1,27
- 896 72 896 72 806 36 c 132,-1,28
- 716 0 716 0 601 0 c 4,29,30
- 487 0 487 0 397 34 c 132,-1,31
- 307 68 307 68 244.5 131.5 c 132,-1,32
- 181.999 195 181.999 195 149 286.5 c 132,-1,33
- 116 378 116 378 116 493 c 4,34,35
- 116 605 116 605 152.5 693 c 132,-1,36
- 188.999 781 188.999 781 225.5 842.601 c 132,-1,37
- 262 904.2 262 904.2 329.5 964.5 c 5,38,39
- 150.598 1090.2 150.598 1090.2 164 1276 c 5,40,41
- 164 1400 164 1400 261 1494 c 132,-1,42
- 358 1588 358 1588 516 1588 c 6,43,-1
- 1024 1588 l 5,44,-1
- 1024 1441 l 5,45,-1
- 552 1441 l 6,46,47
- 354 1441 354 1441 354 1250.2 c 4,48,49
- 354 1105.65 354 1105.65 509 1033.2 c 5,50,51
- 831.31 1077.58 831.31 1077.58 994.5 818 c 4,20,21
-EndSplineSet
-EndChar
-
 StartChar: uni266C
-Encoding: 9836 9836 673
+Encoding: 9836 9836 672
 Width: 1229
 Flags: W
 LayerCount: 2
@@ -67647,7 +67598,7 @@ EndSplineSet
 EndChar
 
 StartChar: musicalnotedbl
-Encoding: 9835 9835 674
+Encoding: 9835 9835 673
 Width: 1229
 VWidth: 0
 Flags: W
diff --git a/src/LiberationSans-Bold.sfd b/src/LiberationSans-Bold.sfd
index fcbcccd..6153304 100644
--- a/src/LiberationSans-Bold.sfd
+++ b/src/LiberationSans-Bold.sfd
@@ -19,7 +19,7 @@ OS2Version: 3
 OS2_WeightWidthSlopeOnly: 0
 OS2_UseTypoMetrics: 1
 CreationTime: 1123372800
-ModificationTime: 1386048736
+ModificationTime: 1399627167
 PfmFamily: 17
 TTFWeight: 700
 TTFWidth: 5
@@ -53,7 +53,6 @@ OS2FamilyClass: 2053
 OS2Vendor: '1ASC'
 OS2CodePages: 6000009f.dfd70000
 OS2UnicodeRanges: a00002af.500078fb.00000000.00000000
-Lookup: 1 0 0 "'locl' Localized Forms lookup 0"  {"'locl' Localized Forms lookup 0-1"  } ['locl' ('cyrl' <'SRB ' > ) ]
 Lookup: 258 0 0 "'kern' Horizontal Kerning lookup 0"  {"'kern' Horizontal Kerning lookup 0 subtable"  } ['kern' ('DFLT' <'dflt' > 'cyrl' <'dflt' > 'cyrl' <'SRB ' > 'cyrl' <'MKD ' > 'grek' <'dflt' > 'latn' <'dflt' > ) ]
 MarkAttachClasses: 1
 DEI: 91125
@@ -3103,10 +3102,10 @@ NameList: Adobe Glyph List
 DisplaySize: -36
 AntiAlias: 1
 FitToEm: 1
-WinInfo: 9766 38 14
+WinInfo: 1113628 38 14
 BeginPrivate: 0
 EndPrivate
-BeginChars: 1114132 682
+BeginChars: 1114132 681
 
 StartChar: .notdef
 Encoding: 1114112 -1 0
@@ -57488,7 +57487,6 @@ SplineSet
  603 1027 603 1027 697 1027 c 0,20,21
 EndSplineSet
 Kerns2: 485 -27 "'kern' Horizontal Kerning lookup 0 subtable"  483 -27 "'kern' Horizontal Kerning lookup 0 subtable"  480 -27 "'kern' Horizontal Kerning lookup 0 subtable"  477 -51 "'kern' Horizontal Kerning lookup 0 subtable"  475 -51 "'kern' Horizontal Kerning lookup 0 subtable"  473 -27 "'kern' Horizontal Kerning lookup 0 subtable"  471 -27 "'kern' Horizontal Kerning lookup 0 subtable"  466 -27 "'kern' Horizontal Kerning lookup 0 subtable"  465 -51 "'kern' Horizontal Kerning lookup 0 subtable"  461 -27 "'kern' Horizontal Kerning lookup 0 subtable"  460 -27 "'kern' Horizontal Kerning lookup 0 subtable"  458 -51 "'kern' Horizontal Kerning lookup 0 subtable" 
-Substitution2: "'locl' Localized Forms lookup 0-1" afii10066.alt1
 EndChar
 
 StartChar: afii10067
@@ -83908,63 +83906,8 @@ EndSplineSet
 Refer: 468 1086 N 1 0 0 1 0 0 2
 EndChar
 
-StartChar: afii10066.alt1
-Encoding: 1114109 -1 680
-Width: 1140
-Flags: W
-LayerCount: 2
-Fore
-SplineSet
-839 504 m 0,0,1
- 839 584.886 839 584.886 815.815 653.496 c 0,2,3
- 783.093 750.337 783.093 750.337 761.876 774.82 c 0,4,5
- 756.793 780.343 756.793 780.343 752.18 785.094 c 0,6,7
- 666.473 873.576 666.473 873.576 581.908 872.521 c 128,-1,8
- 497.344 871.466 497.344 871.466 403.646 780.29 c 1,9,10
- 359.682 735.29 359.682 735.29 328.123 658.497 c 0,11,12
- 300 590.067 300 590.067 300 504 c 0,13,14
- 300 431.284 300 431.284 316.652 368.953 c 0,15,16
- 332.881 308.214 332.881 308.214 366.4 264.133 c 0,17,18
- 399.351 220.8 399.351 220.8 449.6 195.901 c 128,-1,19
- 499.854 171.001 499.854 171.001 571 171 c 0,20,21
- 646.288 171 646.288 171 697.143 195.52 c 0,22,23
- 747.473 219.786 747.473 219.786 778.272 262.191 c 0,24,25
- 809.826 305.637 809.826 305.637 824.172 366.257 c 0,26,27
- 839 428.916 839 428.916 839 504 c 0,0,1
-985.688 844.269 m 0,28,29
- 1024.71 781.667 1024.71 781.667 1052.39 691.861 c 0,30,31
- 1078 608.74 1078 608.74 1078 508 c 0,32,33
- 1078 393.716 1078 393.716 1044.58 298.707 c 0,34,35
- 1010.83 202.72 1010.83 202.72 945.726 133.388 c 0,36,37
- 880.431 63.8467 880.431 63.8467 785.285 25.7881 c 0,38,39
- 690.815 -12 690.815 -12 571 -12 c 0,40,41
- 452.437 -12 452.437 -12 358.165 23.6133 c 0,42,43
- 263.033 59.5518 263.033 59.5518 196.683 126.963 c 128,-1,44
- 130.339 194.367 130.339 194.367 95.4824 291.019 c 0,45,46
- 61 386.632 61 386.632 61 506 c 0,47,48
- 61 622.979 61 622.979 99.4072 715.578 c 0,49,50
- 136.588 805.22 136.588 805.22 173.992 868.345 c 0,51,52
- 206.068 922.478 206.068 922.478 260.472 975.325 c 1,53,54
- 97.4221 1104.5 97.4221 1104.5 109.001 1269.9 c 1,55,56
- 109.412 1403.98 109.412 1403.98 213.603 1504.95 c 128,-1,57
- 317.873 1606 317.873 1606 486 1606 c 2,58,-1
- 994 1606 l 2,59,60
- 1004 1606 1004 1606 1011.5 1598.5 c 128,-1,61
- 1019 1591 1019 1591 1019 1581 c 2,62,-1
- 1019 1434 l 2,63,64
- 1019 1424 1019 1424 1011.5 1416.5 c 128,-1,65
- 1004 1409 1004 1409 994 1409 c 2,66,-1
- 522 1409 l 2,67,68
- 431.522 1409 431.522 1409 390.262 1369.24 c 128,-1,69
- 349 1329.47 349 1329.47 349 1243.2 c 0,70,71
- 349 1137.53 349 1137.53 483.076 1071.96 c 1,72,73
- 817.16 1114.64 817.16 1114.64 985.688 844.269 c 0,28,29
-EndSplineSet
-Kerns2: 393 -57 "'kern' Horizontal Kerning lookup 0 subtable"  397 -57 "'kern' Horizontal Kerning lookup 0 subtable"  400 -74 "'kern' Horizontal Kerning lookup 0 subtable" 
-EndChar
-
 StartChar: uni266C
-Encoding: 9836 9836 681
+Encoding: 9836 9836 680
 Width: 1536
 Flags: W
 LayerCount: 2
diff --git a/src/LiberationSans-BoldItalic.sfd b/src/LiberationSans-BoldItalic.sfd
index 812da5b..f694262 100644
--- a/src/LiberationSans-BoldItalic.sfd
+++ b/src/LiberationSans-BoldItalic.sfd
@@ -19,7 +19,7 @@ OS2Version: 3
 OS2_WeightWidthSlopeOnly: 0
 OS2_UseTypoMetrics: 1
 CreationTime: 1123372800
-ModificationTime: 1385997808
+ModificationTime: 1399627185
 PfmFamily: 17
 TTFWeight: 700
 TTFWidth: 5
@@ -3000,10 +3000,10 @@ NameList: Adobe Glyph List
 DisplaySize: -36
 AntiAlias: 1
 FitToEm: 1
-WinInfo: 9766 38 14
+WinInfo: 1113628 38 14
 BeginPrivate: 0
 EndPrivate
-BeginChars: 1114132 687
+BeginChars: 1114132 681
 
 StartChar: .notdef
 Encoding: 1114112 -1 0
@@ -80940,130 +80940,8 @@ EndSplineSet
 Refer: 467 1086 N 1 0 0 1 0 0 2
 EndChar
 
-StartChar: afii10066.alt1
-Encoding: 1114109 -1 680
-Width: 1140
-Flags: W
-LayerCount: 2
-Fore
-SplineSet
-760.491 504 m 0,0,1
- 782.164 584.886 782.164 584.886 777.363 653.496 c 0,2,3
- 770.59 750.337 770.59 750.337 755.933 774.82 c 0,4,5
- 752.33 780.343 752.33 780.343 748.989 785.094 c 0,6,7
- 686.991 873.576 686.991 873.576 602.144 872.521 c 128,-1,8
- 517.297 871.466 517.297 871.466 399.169 780.29 c 1,9,10
- 343.146 735.29 343.146 735.29 291.012 658.497 c 0,11,12
- 244.553 590.067 244.553 590.067 221.491 504 c 0,13,14
- 202.007 431.284 202.007 431.284 201.957 368.953 c 0,15,16
- 201.911 308.214 201.911 308.214 223.619 264.133 c 0,17,18
- 244.958 220.8 244.958 220.8 288.536 195.901 c 128,-1,19
- 332.118 171.001 332.118 171.001 403.264 171 c 0,20,21
- 478.552 171 478.552 171 535.977 195.52 c 0,22,23
- 592.809 219.786 592.809 219.786 634.971 262.191 c 0,24,25
- 678.166 305.637 678.166 305.637 708.755 366.257 c 0,26,27
- 740.372 428.916 740.372 428.916 760.491 504 c 0,0,1
-998.354 844.269 m 0,28,29
- 1020.6 781.667 1020.6 781.667 1024.22 691.861 c 0,30,31
- 1027.56 608.74 1027.56 608.74 1000.56 508 c 0,32,33
- 969.94 393.716 969.94 393.716 911.066 298.707 c 0,34,35
- 851.588 202.72 851.588 202.72 767.911 133.388 c 0,36,37
- 683.982 63.8467 683.982 63.8467 578.64 25.7881 c 0,38,39
- 474.045 -12 474.045 -12 354.229 -12 c 0,40,41
- 235.666 -12 235.666 -12 150.937 23.6133 c 0,42,43
- 65.4346 59.5518 65.4346 59.5518 17.1465 126.963 c 128,-1,44
- -31.1357 194.367 -31.1357 194.367 -40.0947 291.019 c 0,45,46
- -48.958 386.632 -48.958 386.632 -16.9736 506 c 0,47,48
- 14.3711 622.979 14.3711 622.979 77.5898 715.578 c 0,49,50
- 138.79 805.22 138.79 805.22 193.109 868.345 c 0,51,52
- 239.689 922.478 239.689 922.478 308.254 975.325 c 1,53,54
- 179.817 1104.5 179.817 1104.5 235.715 1269.9 c 1,55,56
- 272.053 1403.98 272.053 1403.98 403.298 1504.95 c 128,-1,57
- 534.644 1606 534.644 1606 702.771 1606 c 2,58,-1
- 1210.77 1606 l 2,59,60
- 1220.77 1606 1220.77 1606 1226.26 1598.5 c 128,-1,61
- 1231.75 1591 1231.75 1591 1229.07 1581 c 2,62,-1
- 1189.68 1434 l 2,63,64
- 1187 1424 1187 1424 1177.49 1416.5 c 128,-1,65
- 1167.98 1409 1167.98 1409 1157.98 1409 c 2,66,-1
- 685.984 1409 l 2,67,68
- 595.508 1409 595.508 1409 543.592 1369.24 c 128,-1,69
- 491.675 1329.47 491.675 1329.47 468.559 1243.2 c 0,70,71
- 440.245 1137.53 440.245 1137.53 556.752 1071.96 c 1,72,73
- 902.271 1114.64 902.271 1114.64 998.354 844.269 c 0,28,29
-EndSplineSet
-Kerns2: 379 -37 "'kern' Horizontal Kerning lookup 0 subtable"  392 -35 "'kern' Horizontal Kerning lookup 0 subtable"  399 -57 "'kern' Horizontal Kerning lookup 0 subtable" 
-EndChar
-
-StartChar: afii10084.alt1
-Encoding: 1114108 -1 681
-Width: 1821
-Flags: W
-LayerCount: 2
-Fore
-SplineSet
-297 1321 m 1,0,-1
- 323 1498 l 1,1,-1
- 1861 1498 l 1,2,-1
- 1834 1321 l 1,3,-1
- 297 1321 l 1,0,-1
-EndSplineSet
-Refer: 477 1096 N 1 0 0 1 0 0 2
-EndChar
-
-StartChar: afii10090.alt1
-Encoding: 1114107 -1 682
-Width: 1821
-Flags: W
-LayerCount: 2
-Fore
-SplineSet
-17 -399 m 1,0,-1
- 43 -222 l 1,1,-1
- 1581 -222 l 1,2,-1
- 1554 -399 l 1,3,-1
- 17 -399 l 1,0,-1
-EndSplineSet
-Refer: 477 1096 N 1 0 0 1 0 0 2
-EndChar
-
-StartChar: afii10081.alt1
-Encoding: 1114106 -1 683
-Width: 1251
-Flags: W
-LayerCount: 2
-Fore
-SplineSet
-1233 1283 m 1,0,-1
- 277 1283 l 1,1,-1
- 310 1451 l 1,2,-1
- 1270 1451 l 1,3,-1
- 1233 1283 l 1,0,-1
-EndSplineSet
-Refer: 88 117 N 1 0 0 1 0 0 3
-EndChar
-
-StartChar: afii10068.alt1
-Encoding: 1114105 1114105 684
-Width: 569
-Flags: W
-LayerCount: 2
-Fore
-Refer: 328 713 N 1 0 0 1 -56 0 2
-Refer: 241 305 N 1 0 0 1 0 0 3
-EndChar
-
-StartChar: afii10069.alt1
-Encoding: 1114104 1114104 685
-Width: 1251
-Flags: W
-LayerCount: 2
-Fore
-Refer: 74 103 N 1 0 0 1 0 0 2
-EndChar
-
 StartChar: uni266C
-Encoding: 9836 9836 686
+Encoding: 9836 9836 680
 Width: 1536
 Flags: W
 LayerCount: 2
diff --git a/src/LiberationSans-Italic.sfd b/src/LiberationSans-Italic.sfd
index 0675b6c..167705e 100644
--- a/src/LiberationSans-Italic.sfd
+++ b/src/LiberationSans-Italic.sfd
@@ -19,7 +19,7 @@ OS2Version: 3
 OS2_WeightWidthSlopeOnly: 0
 OS2_UseTypoMetrics: 1
 CreationTime: 1123372800
-ModificationTime: 1385997794
+ModificationTime: 1399627137
 PfmFamily: 17
 TTFWeight: 400
 TTFWidth: 5
@@ -53,7 +53,6 @@ OS2FamilyClass: 2053
 OS2Vendor: '1ASC'
 OS2CodePages: 6000009f.dfd70000
 OS2UnicodeRanges: a00002af.500078fb.00000000.00000000
-Lookup: 1 0 0 "'locl' Localized Forms lookup 0"  {"'locl' Localized Forms lookup 0-1"  } ['locl' ('cyrl' <'SRB ' > 'cyrl' <'MKD ' > ) ]
 Lookup: 258 0 0 "'kern' Horizontal Kerning lookup 0"  {"'kern' Horizontal Kerning lookup 0 subtable"  } ['kern' ('DFLT' <'dflt' > 'cyrl' <'dflt' > 'cyrl' <'SRB ' > 'cyrl' <'MKD ' > 'grek' <'dflt' > 'latn' <'dflt' > ) ]
 MarkAttachClasses: 1
 DEI: 91125
@@ -3144,10 +3143,10 @@ NameList: Adobe Glyph List
 DisplaySize: -36
 AntiAlias: 1
 FitToEm: 1
-WinInfo: 1026 38 14
+WinInfo: 1113628 38 14
 BeginPrivate: 0
 EndPrivate
-BeginChars: 1114132 687
+BeginChars: 1114132 681
 
 StartChar: .notdef
 Encoding: 1114112 -1 0
@@ -72000,7 +71999,6 @@ SplineSet
  621 1027 621 1027 700 1027 c 0,26,27
 EndSplineSet
 Kerns2: 485 -23 "'kern' Horizontal Kerning lookup 0 subtable"  480 -68 "'kern' Horizontal Kerning lookup 0 subtable"  477 -68 "'kern' Horizontal Kerning lookup 0 subtable"  475 -68 "'kern' Horizontal Kerning lookup 0 subtable"  473 -45 "'kern' Horizontal Kerning lookup 0 subtable"  465 -45 "'kern' Horizontal Kerning lookup 0 subtable"  460 -23 "'kern' Horizontal Kerning lookup 0 subtable"  458 23 "'kern' Horizontal Kerning lookup 0 subtable" 
-Substitution2: "'locl' Localized Forms lookup 0-1" afii10066.alt1
 EndChar
 
 StartChar: afii10067
@@ -72458,7 +72456,6 @@ SplineSet
  637 962 637 962 579 962 c 0,0,1
 EndSplineSet
 Kerns2: 485 -45 "'kern' Horizontal Kerning lookup 0 subtable"  471 -23 "'kern' Horizontal Kerning lookup 0 subtable"  468 -23 "'kern' Horizontal Kerning lookup 0 subtable"  466 -23 "'kern' Horizontal Kerning lookup 0 subtable"  465 -23 "'kern' Horizontal Kerning lookup 0 subtable"  461 -23 "'kern' Horizontal Kerning lookup 0 subtable"  459 -23 "'kern' Horizontal Kerning lookup 0 subtable"  458 -23 "'kern' Horizontal Kerning lookup 0 subtable"  454 -23 "'kern' Horizontal Kerning lookup 0 subtable" 
-Substitution2: "'locl' Localized Forms lookup 0-1" afii10068.alt1
 EndChar
 
 StartChar: afii10069
@@ -72685,7 +72682,6 @@ SplineSet
  437 113 437 113 501 113 c 0,42,43
 EndSplineSet
 Kerns2: 473 -23 "'kern' Horizontal Kerning lookup 0 subtable" 
-Substitution2: "'locl' Localized Forms lookup 0-1" afii10069.alt1
 EndChar
 
 StartChar: afii10070
@@ -74689,7 +74685,6 @@ SplineSet
  898 0 l 1,39,-1
  717 0 l 1,0,-1
 EndSplineSet
-Substitution2: "'locl' Localized Forms lookup 0-1" afii10081.alt1
 EndChar
 
 StartChar: afii10082
@@ -74720,7 +74715,6 @@ LayerCount: 2
 Fore
 Refer: 80 109 N 1 0 0 1 0 0 3
 Kerns2: 485 -23 "'kern' Horizontal Kerning lookup 0 subtable"  483 -23 "'kern' Horizontal Kerning lookup 0 subtable"  473 -45 "'kern' Horizontal Kerning lookup 0 subtable"  471 -23 "'kern' Horizontal Kerning lookup 0 subtable"  470 -23 "'kern' Horizontal Kerning lookup 0 subtable"  468 -23 "'kern' Horizontal Kerning lookup 0 subtable"  466 -23 "'kern' Horizontal Kerning lookup 0 subtable"  465 -45 "'kern' Horizontal Kerning lookup 0 subtable"  461 -23 "'kern' Horizontal Kerning lookup 0 subtable"  460 -23 "'kern' Horizontal Kerning lookup 0 subtable"  458 -23 "'kern' Horizontal Kerning lookup 0 subtable"  454 -23 "'kern' Horizontal Kerning lookup 0 subtable"  17 -23 "'kern' Horizontal Kerning lookup 0 subtable"  15 -23 "'kern' Horizontal Kerning lookup 0 subtable" 
-Substitution2: "'locl' Localized Forms lookup 0-1" afii10084.alt1
 EndChar
 
 StartChar: afii10085
@@ -76317,7 +76311,6 @@ SplineSet
  859 1082 l 1,65,-1
  1037 1082 l 1,0,-1
 EndSplineSet
-Substitution2: "'locl' Localized Forms lookup 0-1" afii10090.alt1
 EndChar
 
 StartChar: afii10091
@@ -105485,123 +105478,8 @@ EndSplineSet
 Refer: 468 1086 N 1 0 0 1 0 0 2
 EndChar
 
-StartChar: afii10066.alt1
-Encoding: 1114109 -1 680
-Width: 1140
-Flags: W
-LayerCount: 2
-Fore
-SplineSet
-782.812 491 m 0,0,1
- 805.587 576 805.587 576 800.514 648.5 c 0,2,3
- 793.36 750.711 793.36 750.711 776.347 778.5 c 0,4,5
- 642.232 985.2 642.232 985.2 383.589 785 c 0,6,7
- 323.298 736.812 323.298 736.812 267.755 655 c 0,8,9
- 218.194 582 218.194 582 193.812 491 c 0,10,11
- 173.447 415 173.447 415 173.396 349.5 c 128,-1,12
- 173.346 284 173.346 284 196.984 236 c 128,-1,13
- 220.623 188 220.623 188 268.754 160.5 c 128,-1,14
- 316.886 133.001 316.886 133.001 393.886 133 c 0,15,16
- 474.886 133 474.886 133 538.12 160 c 128,-1,17
- 601.354 187 601.354 187 648.582 234.5 c 128,-1,18
- 695.811 282.001 695.811 282.001 728.86 347.5 c 128,-1,19
- 761.911 413 761.911 413 782.812 491 c 0,0,1
-970.931 818 m 0,20,21
- 992.188 758.189 992.188 758.189 995.676 671.5 c 0,22,23
- 998.869 592 998.869 592 972.883 495 c 0,24,25
- 943.409 385 943.409 385 887.025 294 c 128,-1,26
- 830.642 202.999 830.642 202.999 751.592 137.5 c 128,-1,27
- 672.541 72 672.541 72 572.895 36 c 128,-1,28
- 473.248 0 473.248 0 358.248 0 c 0,29,30
- 244.248 0 244.248 0 163.358 34 c 128,-1,31
- 82.4688 68 82.4688 68 36.9834 131.5 c 128,-1,32
- -8.50293 195 -8.50293 195 -16.9844 286.5 c 128,-1,33
- -25.4668 378 -25.4668 378 5.34766 493 c 0,34,35
- 35.3574 605 35.3574 605 95.4375 693 c 128,-1,36
- 155.516 781 155.516 781 208.522 842.601 c 128,-1,37
- 261.528 904.2 261.528 904.2 345.186 964.5 c 9,38,39
- 199.965 1090.2 199.965 1090.2 263.151 1276 c 1,40,41
- 296.377 1400 296.377 1400 418.564 1494 c 128,-1,42
- 540.752 1588 540.752 1588 698.752 1588 c 2,43,-1
- 1206.75 1588 l 1,44,-1
- 1167.36 1441 l 1,45,-1
- 695.363 1441 l 2,46,47
- 497.363 1441 497.363 1441 446.238 1250.2 c 0,48,49
- 407.507 1105.65 407.507 1105.65 543.094 1033.2 c 9,50,51
- 877.294 1077.58 877.294 1077.58 970.931 818 c 0,20,21
-EndSplineSet
-Kerns2: 400 -59 "'kern' Horizontal Kerning lookup 0 subtable"  397 -45 "'kern' Horizontal Kerning lookup 0 subtable"  393 -45 "'kern' Horizontal Kerning lookup 0 subtable"  380 -37 "'kern' Horizontal Kerning lookup 0 subtable" 
-EndChar
-
-StartChar: afii10084.alt1
-Encoding: 1114108 -1 681
-Width: 1700
-Flags: W
-LayerCount: 2
-Fore
-SplineSet
-287 1301 m 1,0,-1
- 313 1438 l 1,1,-1
- 1751 1438 l 1,2,-1
- 1724 1301 l 1,3,-1
- 287 1301 l 1,0,-1
-EndSplineSet
-Refer: 478 1096 N 1 0 0 1 0 0 2
-EndChar
-
-StartChar: afii10090.alt1
-Encoding: 1114107 -1 682
-Width: 1700
-Flags: W
-LayerCount: 2
-Fore
-SplineSet
--13 -339 m 1,0,-1
- 13 -202 l 1,1,-1
- 1451 -202 l 1,2,-1
- 1424 -339 l 1,3,-1
- -13 -339 l 1,0,-1
-EndSplineSet
-Refer: 478 1096 N 1 0 0 1 0 0 2
-EndChar
-
-StartChar: afii10081.alt1
-Encoding: 1114106 -1 683
-Width: 1139
-Flags: W
-LayerCount: 2
-Fore
-SplineSet
-1122 1306 m 1,0,-1
- 272 1306 l 1,1,-1
- 298 1433 l 1,2,-1
- 1148 1433 l 1,3,-1
- 1122 1306 l 1,0,-1
-EndSplineSet
-Refer: 88 117 N 1 0 0 1 0 0 3
-EndChar
-
-StartChar: afii10068.alt1
-Encoding: 1114105 1114105 684
-Width: 569
-Flags: W
-LayerCount: 2
-Fore
-Refer: 329 713 N 1 0 0 1 -6 0 2
-Refer: 241 305 N 1 0 0 1 0 0 2
-EndChar
-
-StartChar: afii10069.alt1
-Encoding: 1114104 1114104 685
-Width: 1139
-Flags: W
-LayerCount: 2
-Fore
-Refer: 74 103 N 1 0 0 1 0 0 2
-EndChar
-
 StartChar: uni266C
-Encoding: 9836 9836 686
+Encoding: 9836 9836 680
 Width: 1536
 Flags: W
 LayerCount: 2
diff --git a/src/LiberationSans-Regular.sfd b/src/LiberationSans-Regular.sfd
index 1c02929..36528ff 100644
--- a/src/LiberationSans-Regular.sfd
+++ b/src/LiberationSans-Regular.sfd
@@ -19,7 +19,7 @@ OS2Version: 3
 OS2_WeightWidthSlopeOnly: 0
 OS2_UseTypoMetrics: 1
 CreationTime: 1123372800
-ModificationTime: 1386048712
+ModificationTime: 1399627105
 PfmFamily: 17
 TTFWeight: 400
 TTFWidth: 5
@@ -53,7 +53,6 @@ OS2FamilyClass: 2053
 OS2Vendor: '1ASC'
 OS2CodePages: 6000009f.dfd70000
 OS2UnicodeRanges: a00002af.500078fb.00000000.00000000
-Lookup: 1 0 0 "'locl' Localized Forms lookup 0"  {"'locl' Localized Forms lookup 0-1"  } ['locl' ('cyrl' <'SRB ' > ) ]
 Lookup: 258 0 0 "'kern' Horizontal Kerning lookup 0"  {"'kern' Horizontal Kerning lookup 0 subtable"  } ['kern' ('DFLT' <'dflt' > 'cyrl' <'dflt' > 'cyrl' <'SRB ' > 'cyrl' <'MKD ' > 'grek' <'dflt' > 'latn' <'dflt' > ) ]
 MarkAttachClasses: 1
 DEI: 91125
@@ -2837,15 +2836,16 @@ EndShort
 LangName: 1033 "" "" "Regular" "Ascender - Liberation Sans" "" "Version 1.07.4" "" "Liberation is a trademark of Red Hat, Inc. registered in U.S. Patent and Trademark Office and certain other jurisdictions." "Ascender Corporation" "Steve Matteson" "" "http://www.ascendercorp.com/" "http://www.ascendercorp.com/typedesigners.html" "Licensed under the Liberation Fonts license, see https://fedoraproject.org/wiki/Licensing/LiberationFontLicense" "https://fedoraproject.org/wiki/Licensing/LiberationFontLicense" 
 GaspTable: 3 8 2 17 1 65535 3 0
 Encoding: UnicodeFull
+Compacted: 1
 UnicodeInterp: none
 NameList: Adobe Glyph List
 DisplaySize: -36
 AntiAlias: 1
 FitToEm: 1
-WinInfo: 9798 23 14
+WinInfo: 368 23 14
 BeginPrivate: 0
 EndPrivate
-BeginChars: 1114132 682
+BeginChars: 1114132 681
 
 StartChar: .notdef
 Encoding: 1114112 -1 0
@@ -62190,7 +62190,6 @@ SplineSet
  575 1027 575 1027 655 1027 c 0,20,21
 EndSplineSet
 Kerns2: 485 -45 "'kern' Horizontal Kerning lookup 0 subtable"  483 -23 "'kern' Horizontal Kerning lookup 0 subtable"  480 -68 "'kern' Horizontal Kerning lookup 0 subtable"  477 -68 "'kern' Horizontal Kerning lookup 0 subtable"  475 -68 "'kern' Horizontal Kerning lookup 0 subtable"  474 -23 "'kern' Horizontal Kerning lookup 0 subtable"  473 -45 "'kern' Horizontal Kerning lookup 0 subtable"  471 -23 "'kern' Horizontal Kerning lookup 0 subtable"  466 -45 "'kern' Horizontal Kerning lookup 0 subtable"  465 -92 "'kern' Horizontal Kerning lookup 0 subtable"  461 -45 "'kern' Horizontal Kerning lookup 0 subtable"  460 -23 "'kern' Horizontal Kerning lookup 0 subtable"  459 -23 "'kern' Horizontal Kerning lookup 0 subtable"  458 -92 "'kern' Horizontal Kerning lookup 0 subtable"  454 -47 "'kern' Horizontal Kerning lookup 0 subtable" 
-Substitution2: "'locl' Localized Forms lookup 0-1" afii10066.alt1
 EndChar
 
 StartChar: afii10067
@@ -86897,56 +86896,8 @@ EndSplineSet
 Refer: 468 1086 N 1 0 0 1 0 0 2
 EndChar
 
-StartChar: afii10066.alt1
-Encoding: 1114109 -1 680
-Width: 1140
-Flags: W
-LayerCount: 2
-Fore
-SplineSet
-864 491 m 0,0,1
- 864 576 864 576 839.5 648.5 c 0,2,3
- 804.96 750.711 804.96 750.711 780.5 778.5 c 0,4,5
- 591 985.2 591 985.2 386 785 c 0,6,7
- 338.621 736.812 338.621 736.812 305 655 c 0,8,9
- 275 582 275 582 275 491 c 0,10,11
- 275 415 275 415 292.5 349.5 c 128,-1,12
- 310 284 310 284 346.5 236 c 128,-1,13
- 383 188 383 188 438.5 160.5 c 128,-1,14
- 494 133.001 494 133.001 571 133 c 0,15,16
- 652 133 652 133 708 160 c 128,-1,17
- 764 187 764 187 798.5 234.5 c 128,-1,18
- 833 282.001 833 282.001 848.5 347.5 c 128,-1,19
- 864 413 864 413 864 491 c 0,0,1
-964.5 818 m 0,20,21
- 1001.78 758.189 1001.78 758.189 1028.5 671.5 c 0,22,23
- 1053 592 1053 592 1053 495 c 0,24,25
- 1053 385 1053 385 1021 294 c 128,-1,26
- 989 202.999 989 202.999 927.5 137.5 c 128,-1,27
- 866 72 866 72 776 36 c 128,-1,28
- 686 0 686 0 571 0 c 0,29,30
- 457 0 457 0 367 34 c 128,-1,31
- 277 68 277 68 214.5 131.5 c 128,-1,32
- 151.999 195 151.999 195 119 286.5 c 128,-1,33
- 86 378 86 378 86 493 c 0,34,35
- 86 605 86 605 122.5 693 c 128,-1,36
- 158.999 781 158.999 781 195.5 842.601 c 128,-1,37
- 232 904.2 232 904.2 299.5 964.5 c 9,38,39
- 120.598 1090.2 120.598 1090.2 134 1276 c 1,40,41
- 134 1400 134 1400 231 1494 c 128,-1,42
- 328 1588 328 1588 486 1588 c 2,43,-1
- 994 1588 l 1,44,-1
- 994 1441 l 1,45,-1
- 522 1441 l 2,46,47
- 324 1441 324 1441 324 1250.2 c 0,48,49
- 324 1105.65 324 1105.65 479 1033.2 c 9,50,51
- 801.31 1077.58 801.31 1077.58 964.5 818 c 0,20,21
-EndSplineSet
-Kerns2: 388 -39 "'kern' Horizontal Kerning lookup 0 subtable"  393 -29 "'kern' Horizontal Kerning lookup 0 subtable"  397 -29 "'kern' Horizontal Kerning lookup 0 subtable"  400 -55 "'kern' Horizontal Kerning lookup 0 subtable" 
-EndChar
-
 StartChar: uni266C
-Encoding: 9836 9836 681
+Encoding: 9836 9836 680
 Width: 1536
 Flags: W
 LayerCount: 2
diff --git a/src/LiberationSansNarrow-Bold.sfd b/src/LiberationSansNarrow-Bold.sfd
index 9168eb0..04f47be 100644
--- a/src/LiberationSansNarrow-Bold.sfd
+++ b/src/LiberationSansNarrow-Bold.sfd
@@ -18,7 +18,7 @@ OS2Version: 1
 OS2_WeightWidthSlopeOnly: 0
 OS2_UseTypoMetrics: 1
 CreationTime: 1123372800
-ModificationTime: 1386048884
+ModificationTime: 1399627334
 PfmFamily: 17
 TTFWeight: 700
 TTFWidth: 3
@@ -52,7 +52,6 @@ OS2FamilyClass: 2053
 OS2Vendor: 'OOoH'
 OS2CodePages: 6000009f.dfd70000
 OS2UnicodeRanges: a00002af.500078fb.00000000.00000000
-Lookup: 1 0 0 "'locl' Localized Forms lookup 0"  {"'locl' Localized Forms lookup 0-1"  } ['locl' ('cyrl' <'SRB ' > ) ]
 Lookup: 258 0 0 "'kern' Horizontal Kerning lookup 0"  {"'kern' Horizontal Kerning lookup 0 subtable"  } ['kern' ('DFLT' <'dflt' > 'cyrl' <'dflt' > 'cyrl' <'SRB ' > 'cyrl' <'MKD ' > 'grek' <'dflt' > 'latn' <'dflt' > ) ]
 MarkAttachClasses: 1
 DEI: 91125
@@ -799,10 +798,10 @@ NameList: Adobe Glyph List
 DisplaySize: -36
 AntiAlias: 1
 FitToEm: 1
-WinInfo: 9766 38 14
+WinInfo: 65056 38 14
 BeginPrivate: 0
 EndPrivate
-BeginChars: 65556 682
+BeginChars: 65556 681
 
 StartChar: .notdef
 Encoding: 65536 -1 0
@@ -36014,7 +36013,6 @@ SplineSet
  495 1027 495 1027 572 1027 c 0,20,21
 EndSplineSet
 Kerns2: 485 -27 "'kern' Horizontal Kerning lookup 0 subtable"  483 -27 "'kern' Horizontal Kerning lookup 0 subtable"  480 -27 "'kern' Horizontal Kerning lookup 0 subtable"  477 -51 "'kern' Horizontal Kerning lookup 0 subtable"  475 -51 "'kern' Horizontal Kerning lookup 0 subtable"  473 -27 "'kern' Horizontal Kerning lookup 0 subtable"  471 -27 "'kern' Horizontal Kerning lookup 0 subtable"  466 -27 "'kern' Horizontal Kerning lookup 0 subtable"  465 -51 "'kern' Horizontal Kerning lookup 0 subtable"  461 -27 "'kern' Horizontal Kerning lookup 0 subtable"  460 -27 "'kern' Horizontal Kerning lookup 0 subtable"  458 -51 "'kern' Horizontal Kerning lookup 0 subtable" 
-Substitution2: "'locl' Localized Forms lookup 0-1" afii10066.alt1
 EndChar
 
 StartChar: afii10067
@@ -59605,60 +59603,8 @@ EndSplineSet
 Refer: 468 1086 N 1 0 0 1 0 0 2
 EndChar
 
-StartChar: afii10066.alt1
-Encoding: 65522 -1 680
-Width: 968
-Flags: W
-LayerCount: 2
-Fore
-SplineSet
-683 491 m 0,0,1
- 683 571.885 683 571.885 659.816 640.496 c 0,2,3
- 631.052 725.62 631.052 725.62 603.787 764.495 c 0,4,5
- 588.534 787.909 588.534 787.909 572.786 803.468 c 0,6,7
- 537.13 842.024 537.13 842.024 491.824 834.595 c 128,-1,8
- 446.518 827.166 446.518 827.166 387.827 767.473 c 0,9,10
- 343.882 722.778 343.882 722.778 312.124 645.497 c 0,11,12
- 284 577.067 284 577.067 284 491 c 0,13,14
- 284 419.295 284 419.295 300.358 357.06 c 1,15,16
- 343.086 241.591 343.086 241.591 402.961 200.616 c 128,-1,17
- 462.836 159.641 462.836 159.641 544.954 183.987 c 0,18,19
- 582.942 195.04 582.942 195.04 622.272 249.191 c 0,20,21
- 653.826 292.637 653.826 292.637 668.172 353.257 c 0,22,23
- 683 415.916 683 415.916 683 491 c 0,0,1
-829.817 831.061 m 0,24,25
- 868.95 767.889 868.95 767.889 896.391 678.863 c 0,26,27
- 922 595.763 922 595.763 922 495 c 0,28,29
- 922 373.787 922 373.787 889.983 284.422 c 1,30,31
- 852.281 183.205 852.281 183.205 796.667 116.449 c 0,32,33
- 720.433 25.901 720.433 25.901 643.733 0.311623 c 0,34,35
- 513.061 -44.1774 513.061 -44.1774 410.311 -24.5563 c 0,36,37
- 273.879 1.49621 273.879 1.49621 179.26 115.537 c 0,38,39
- 106.419 203.328 106.419 203.328 79.4827 278.018 c 0,40,41
- 45 373.631 45 373.631 45 493 c 0,42,43
- 45 609.978 45 609.978 83.4075 702.578 c 0,44,45
- 120.588 792.22 120.588 792.22 157.992 855.345 c 0,46,47
- 190.07 909.481 190.07 909.481 244.471 962.325 c 1,48,49
- 81.4222 1091.5 81.4222 1091.5 93.001 1256.9 c 1,50,51
- 93.4121 1390.98 93.4121 1390.98 197.603 1491.95 c 128,-1,52
- 301.873 1593 301.873 1593 470 1593 c 2,53,-1
- 888 1593 l 2,54,55
- 898 1593 898 1593 905.5 1585.5 c 128,-1,56
- 913 1578 913 1578 913 1568 c 2,57,-1
- 913 1421 l 2,58,59
- 913 1411 913 1411 905.5 1403.5 c 128,-1,60
- 898 1396 898 1396 888 1396 c 2,61,-1
- 506 1396 l 2,62,63
- 415.522 1396 415.522 1396 374.262 1356.24 c 128,-1,64
- 333 1316.47 333 1316.47 333 1230.2 c 0,65,66
- 333 1124.53 333 1124.53 467.869 1058.57 c 1,67,68
- 681.706 1070.15 681.706 1070.15 829.817 831.061 c 0,24,25
-EndSplineSet
-Kerns2: 393 -57 "'kern' Horizontal Kerning lookup 0 subtable"  397 -57 "'kern' Horizontal Kerning lookup 0 subtable"  400 -74 "'kern' Horizontal Kerning lookup 0 subtable" 
-EndChar
-
 StartChar: uni266C
-Encoding: 9836 9836 681
+Encoding: 9836 9836 680
 Width: 1536
 Flags: W
 LayerCount: 2
diff --git a/src/LiberationSansNarrow-BoldItalic.sfd b/src/LiberationSansNarrow-BoldItalic.sfd
index f494c9c..b42d4a4 100644
--- a/src/LiberationSansNarrow-BoldItalic.sfd
+++ b/src/LiberationSansNarrow-BoldItalic.sfd
@@ -18,7 +18,7 @@ OS2Version: 1
 OS2_WeightWidthSlopeOnly: 0
 OS2_UseTypoMetrics: 1
 CreationTime: 1123372800
-ModificationTime: 1385998219
+ModificationTime: 1399627489
 PfmFamily: 17
 TTFWeight: 700
 TTFWidth: 3
@@ -52,7 +52,6 @@ OS2FamilyClass: 2053
 OS2Vendor: 'OOoH'
 OS2CodePages: 6000009f.dfd70000
 OS2UnicodeRanges: a00002af.500078fb.00000000.00000000
-Lookup: 1 0 0 "'locl' Localized Forms lookup 0"  {"'locl' Localized Forms lookup 0-1"  } ['locl' ('cyrl' <'SRB ' > 'cyrl' <'MKD ' > ) ]
 Lookup: 258 0 0 "'kern' Horizontal Kerning lookup 0"  {"'kern' Horizontal Kerning lookup 0 subtable"  } ['kern' ('DFLT' <'dflt' > 'cyrl' <'dflt' > 'cyrl' <'SRB ' > 'cyrl' <'MKD ' > 'grek' <'dflt' > 'latn' <'dflt' > ) ]
 MarkAttachClasses: 1
 DEI: 91125
@@ -804,10 +803,10 @@ NameList: Adobe Glyph List
 DisplaySize: -36
 AntiAlias: 1
 FitToEm: 1
-WinInfo: 9807 21 14
+WinInfo: 65268 21 14
 BeginPrivate: 0
 EndPrivate
-BeginChars: 65558 687
+BeginChars: 65558 681
 
 StartChar: .notdef
 Encoding: 65536 -1 0
@@ -47785,7 +47784,6 @@ SplineSet
  563 -20 563 -20 471 -20 c 0,26,27
 EndSplineSet
 Kerns2: 483 -27 "'kern' Horizontal Kerning lookup 0 subtable"  480 -104 "'kern' Horizontal Kerning lookup 0 subtable"  477 -78 "'kern' Horizontal Kerning lookup 0 subtable"  475 -51 "'kern' Horizontal Kerning lookup 0 subtable"  473 -51 "'kern' Horizontal Kerning lookup 0 subtable"  466 -27 "'kern' Horizontal Kerning lookup 0 subtable"  465 -27 "'kern' Horizontal Kerning lookup 0 subtable"  461 -27 "'kern' Horizontal Kerning lookup 0 subtable"  460 -27 "'kern' Horizontal Kerning lookup 0 subtable" 
-Substitution2: "'locl' Localized Forms lookup 0-1" afii10066.alt1
 EndChar
 
 StartChar: afii10067
@@ -48214,7 +48212,6 @@ SplineSet
  521 911 521 911 476 911 c 0,0,1
 EndSplineSet
 Kerns2: 485 -27 "'kern' Horizontal Kerning lookup 0 subtable"  471 -51 "'kern' Horizontal Kerning lookup 0 subtable"  468 -51 "'kern' Horizontal Kerning lookup 0 subtable"  466 -51 "'kern' Horizontal Kerning lookup 0 subtable"  461 -51 "'kern' Horizontal Kerning lookup 0 subtable"  459 -51 "'kern' Horizontal Kerning lookup 0 subtable"  458 -78 "'kern' Horizontal Kerning lookup 0 subtable"  454 -27 "'kern' Horizontal Kerning lookup 0 subtable"  17 -27 "'kern' Horizontal Kerning lookup 0 subtable"  15 -27 "'kern' Horizontal Kerning lookup 0 subtable" 
-Substitution2: "'locl' Localized Forms lookup 0-1" afii10068.alt1
 EndChar
 
 StartChar: afii10069
@@ -48378,7 +48375,6 @@ SplineSet
  377 172 377 172 465 172 c 0,49,50
 EndSplineSet
 Kerns2: 461 -27 "'kern' Horizontal Kerning lookup 0 subtable" 
-Substitution2: "'locl' Localized Forms lookup 0-1" afii10069.alt1
 EndChar
 
 StartChar: afii10070
@@ -50472,7 +50468,6 @@ SplineSet
  834 0 l 1,45,-1
  605 0 l 1,0,-1
 EndSplineSet
-Substitution2: "'locl' Localized Forms lookup 0-1" afii10081.alt1
 EndChar
 
 StartChar: afii10082
@@ -50506,7 +50501,6 @@ LayerCount: 2
 Fore
 Refer: 80 109 N 1 0 0 1 0 0 3
 Kerns2: 483 -51 "'kern' Horizontal Kerning lookup 0 subtable"  473 -51 "'kern' Horizontal Kerning lookup 0 subtable"  471 -27 "'kern' Horizontal Kerning lookup 0 subtable"  468 -27 "'kern' Horizontal Kerning lookup 0 subtable"  466 -27 "'kern' Horizontal Kerning lookup 0 subtable"  465 -27 "'kern' Horizontal Kerning lookup 0 subtable"  461 -51 "'kern' Horizontal Kerning lookup 0 subtable"  460 -27 "'kern' Horizontal Kerning lookup 0 subtable"  459 -27 "'kern' Horizontal Kerning lookup 0 subtable"  458 -27 "'kern' Horizontal Kerning lookup 0 subtable"  17 -27 "'kern' Horizontal Kerning lookup 0 subtable"  15 -27 "'kern' Horizontal Kerning lookup 0 subtable" 
-Substitution2: "'locl' Localized Forms lookup 0-1" afii10084.alt1
 EndChar
 
 StartChar: afii10085
@@ -52352,7 +52346,6 @@ SplineSet
  305 311 l 1,66,67
  307 190 307 190 407 190 c 0,0,1
 EndSplineSet
-Substitution2: "'locl' Localized Forms lookup 0-1" afii10090.alt1
 EndChar
 
 StartChar: afii10091
@@ -75026,121 +75019,8 @@ EndSplineSet
 Refer: 468 1086 N 1 0 0 1 0 0 2
 EndChar
 
-StartChar: afii10066.alt1
-Encoding: 65556 -1 680
-Width: 1018
-Flags: W
-LayerCount: 2
-Fore
-SplineSet
-604.432 491 m 0,0,1
- 626.104 571.885 626.104 571.885 621.305 640.496 c 0,2,3
- 615.35 725.62 615.35 725.62 598.501 764.495 c 0,4,5
- 589.521 787.909 589.521 787.909 577.942 803.468 c 0,6,7
- 552.618 842.024 552.618 842.024 505.321 834.595 c 128,-1,8
- 458.025 827.166 458.025 827.166 383.339 767.473 c 0,9,10
- 327.418 722.778 327.418 722.778 274.952 645.497 c 0,11,12
- 228.493 577.067 228.493 577.067 205.432 491 c 0,13,14
- 186.219 419.295 186.219 419.295 185.9 357.061 c 1,15,16
- 197.688 241.592 197.688 241.592 246.584 200.616 c 128,-1,17
- 295.479 159.641 295.479 159.641 384.121 183.986 c 0,18,19
- 425.071 195.04 425.071 195.04 478.911 249.191 c 0,20,21
- 522.106 292.637 522.106 292.637 552.695 353.257 c 0,22,23
- 584.312 415.916 584.312 415.916 604.432 491 c 0,0,1
-842.368 831.061 m 0,24,25
- 864.574 767.89 864.574 767.89 868.16 678.862 c 0,26,27
- 871.503 595.763 871.503 595.763 844.503 495 c 0,28,29
- 812.024 373.787 812.024 373.787 756.062 284.423 c 1,30,31
- 691.239 183.205 691.239 183.205 617.737 116.448 c 0,32,33
- 517.242 25.9014 517.242 25.9014 433.685 0.311523 c 0,34,35
- 291.092 -44.1777 291.092 -44.1777 193.6 -24.5566 c 0,36,37
- 64.1484 1.49609 64.1484 1.49609 0.0869141 115.537 c 0,38,39
- -49.2305 203.328 -49.2305 203.328 -56.1543 278.019 c 0,40,41
- -65.0176 373.632 -65.0176 373.632 -33.0322 493 c 0,42,43
- -1.68848 609.979 -1.68848 609.979 61.5312 702.578 c 0,44,45
- 122.73 792.22 122.73 792.22 177.05 855.345 c 0,46,47
- 223.634 909.48 223.634 909.48 292.194 962.325 c 1,48,49
- 163.758 1091.5 163.758 1091.5 219.655 1256.9 c 1,50,51
- 255.994 1390.98 255.994 1390.98 387.238 1491.95 c 128,-1,52
- 518.585 1593 518.585 1593 686.712 1593 c 2,53,-1
- 1104.71 1593 l 2,54,55
- 1114.71 1593 1114.71 1593 1120.2 1585.5 c 128,-1,56
- 1125.69 1578 1125.69 1578 1123.01 1568 c 2,57,-1
- 1083.62 1421 l 2,58,59
- 1080.94 1411 1080.94 1411 1071.44 1403.5 c 128,-1,60
- 1061.93 1396 1061.93 1396 1051.93 1396 c 2,61,-1
- 669.926 1396 l 2,62,63
- 579.448 1396 579.448 1396 527.532 1356.24 c 128,-1,64
- 475.615 1316.47 475.615 1316.47 452.5 1230.2 c 0,65,66
- 424.186 1124.53 424.186 1124.53 541.381 1058.57 c 1,67,68
- 758.321 1070.15 758.321 1070.15 842.368 831.061 c 0,24,25
-EndSplineSet
-Kerns2: 380 -37 "'kern' Horizontal Kerning lookup 0 subtable"  393 -35 "'kern' Horizontal Kerning lookup 0 subtable"  400 -57 "'kern' Horizontal Kerning lookup 0 subtable" 
-EndChar
-
-StartChar: afii10084.alt1
-Encoding: 65557 -1 681
-Width: 1487
-Flags: W
-LayerCount: 2
-Fore
-SplineSet
-1481 1203 m 1,0,-1
- 221 1203 l 1,1,-1
- 270 1371 l 1,2,-1
- 1536 1371 l 1,3,-1
- 1481 1203 l 1,0,-1
-EndSplineSet
-Refer: 478 1096 N 1 0 0 1 0 0 2
-EndChar
-
-StartChar: afii10090.alt1
-Encoding: 65531 -1 682
-Width: 1487
-Flags: W
-LayerCount: 2
-Fore
-SplineSet
-1251 -297 m 1,0,-1
- -9 -297 l 1,1,-1
- 40 -129 l 1,2,-1
- 1306 -129 l 1,3,-1
- 1251 -297 l 1,0,-1
-EndSplineSet
-Refer: 478 1096 N 1 0 0 1 0 0 2
-EndChar
-
-StartChar: afii10081.alt1
-Encoding: 65530 -1 683
-Width: 1026
-Flags: W
-LayerCount: 2
-Fore
-Refer: 329 713 N 1 0 0 1 -76 0 2
-Refer: 88 117 N 1 0 0 1 0 0 3
-EndChar
-
-StartChar: afii10068.alt1
-Encoding: 65528 -1 684
-Width: 467
-Flags: W
-LayerCount: 2
-Fore
-Refer: 329 713 N 1 0 0 1 -336 0 2
-Refer: 241 305 N 1 0 0 1 0 0 3
-EndChar
-
-StartChar: afii10069.alt1
-Encoding: 65527 -1 685
-Width: 1026
-Flags: W
-LayerCount: 2
-Fore
-Refer: 74 103 N 1 0 0 1 0 0 2
-EndChar
-
 StartChar: uni266C
-Encoding: 9836 9836 686
+Encoding: 9836 9836 680
 Width: 1536
 Flags: W
 LayerCount: 2
diff --git a/src/LiberationSansNarrow-Italic.sfd b/src/LiberationSansNarrow-Italic.sfd
index a72ce11..5cf6e6f 100644
--- a/src/LiberationSansNarrow-Italic.sfd
+++ b/src/LiberationSansNarrow-Italic.sfd
@@ -18,7 +18,7 @@ OS2Version: 1
 OS2_WeightWidthSlopeOnly: 0
 OS2_UseTypoMetrics: 1
 CreationTime: 1123372800
-ModificationTime: 1385998213
+ModificationTime: 1399627309
 PfmFamily: 17
 TTFWeight: 400
 TTFWidth: 3
@@ -52,7 +52,6 @@ OS2FamilyClass: 2053
 OS2Vendor: 'OOoH'
 OS2CodePages: 6000009f.dfd70000
 OS2UnicodeRanges: a00002af.500078fb.00000000.00000000
-Lookup: 1 0 0 "'locl' Localized Forms lookup 0"  {"'locl' Localized Forms lookup 0-1"  } ['locl' ('cyrl' <'SRB ' > 'cyrl' <'MKD ' > ) ]
 Lookup: 258 0 0 "'kern' Horizontal Kerning lookup 0"  {"'kern' Horizontal Kerning lookup 0 subtable"  } ['kern' ('DFLT' <'dflt' > 'cyrl' <'dflt' > 'cyrl' <'SRB ' > 'cyrl' <'MKD ' > 'grek' <'dflt' > 'latn' <'dflt' > ) ]
 MarkAttachClasses: 1
 DEI: 91125
@@ -789,10 +788,10 @@ NameList: Adobe Glyph List
 DisplaySize: -36
 AntiAlias: 1
 FitToEm: 1
-WinInfo: 9766 38 14
+WinInfo: 65056 38 14
 BeginPrivate: 0
 EndPrivate
-BeginChars: 65558 687
+BeginChars: 65558 681
 
 StartChar: .notdef
 Encoding: 65536 -1 0
@@ -50136,7 +50135,6 @@ SplineSet
  509 1027 509 1027 574 1027 c 0,26,27
 EndSplineSet
 Kerns2: 485 -23 "'kern' Horizontal Kerning lookup 0 subtable"  480 -68 "'kern' Horizontal Kerning lookup 0 subtable"  477 -68 "'kern' Horizontal Kerning lookup 0 subtable"  475 -68 "'kern' Horizontal Kerning lookup 0 subtable"  473 -45 "'kern' Horizontal Kerning lookup 0 subtable"  465 -45 "'kern' Horizontal Kerning lookup 0 subtable"  460 -23 "'kern' Horizontal Kerning lookup 0 subtable"  458 23 "'kern' Horizontal Kerning lookup 0 subtable" 
-Substitution2: "'locl' Localized Forms lookup 0-1" afii10066.alt1
 EndChar
 
 StartChar: afii10067
@@ -50481,7 +50479,6 @@ SplineSet
  523 962 523 962 475 962 c 0,0,1
 EndSplineSet
 Kerns2: 485 -45 "'kern' Horizontal Kerning lookup 0 subtable"  471 -23 "'kern' Horizontal Kerning lookup 0 subtable"  468 -23 "'kern' Horizontal Kerning lookup 0 subtable"  466 -23 "'kern' Horizontal Kerning lookup 0 subtable"  465 -23 "'kern' Horizontal Kerning lookup 0 subtable"  461 -23 "'kern' Horizontal Kerning lookup 0 subtable"  459 -23 "'kern' Horizontal Kerning lookup 0 subtable"  458 -23 "'kern' Horizontal Kerning lookup 0 subtable"  454 -23 "'kern' Horizontal Kerning lookup 0 subtable" 
-Substitution2: "'locl' Localized Forms lookup 0-1" afii10068.alt1
 EndChar
 
 StartChar: afii10069
@@ -50646,7 +50643,6 @@ SplineSet
  359 113 359 113 411 113 c 0,42,43
 EndSplineSet
 Kerns2: 473 -23 "'kern' Horizontal Kerning lookup 0 subtable" 
-Substitution2: "'locl' Localized Forms lookup 0-1" afii10069.alt1
 EndChar
 
 StartChar: afii10070
@@ -52893,7 +52889,6 @@ SplineSet
  736 0 l 1,41,-1
  588 0 l 1,0,-1
 EndSplineSet
-Substitution2: "'locl' Localized Forms lookup 0-1" afii10081.alt1
 EndChar
 
 StartChar: afii10082
@@ -52927,7 +52922,6 @@ LayerCount: 2
 Fore
 Refer: 80 109 N 1 0 0 1 0 0 3
 Kerns2: 485 -23 "'kern' Horizontal Kerning lookup 0 subtable"  483 -23 "'kern' Horizontal Kerning lookup 0 subtable"  473 -45 "'kern' Horizontal Kerning lookup 0 subtable"  471 -23 "'kern' Horizontal Kerning lookup 0 subtable"  470 -23 "'kern' Horizontal Kerning lookup 0 subtable"  468 -23 "'kern' Horizontal Kerning lookup 0 subtable"  466 -23 "'kern' Horizontal Kerning lookup 0 subtable"  465 -45 "'kern' Horizontal Kerning lookup 0 subtable"  461 -23 "'kern' Horizontal Kerning lookup 0 subtable"  460 -23 "'kern' Horizontal Kerning lookup 0 subtable"  458 -23 "'kern' Horizontal Kerning lookup 0 subtable"  454 -23 "'kern' Horizontal Kerning lookup 0 subtable"  17 -23 "'kern' Horizontal Kerning lookup 0 subtable"  15 -23 "'kern' Horizontal Kerning lookup 0 subtable" 
-Substitution2: "'locl' Localized Forms lookup 0-1" afii10084.alt1
 EndChar
 
 StartChar: afii10085
@@ -54573,7 +54567,6 @@ SplineSet
  705 1082 l 1,68,-1
  851 1082 l 1,0,-1
 EndSplineSet
-Substitution2: "'locl' Localized Forms lookup 0-1" afii10090.alt1
 EndChar
 
 StartChar: afii10091
@@ -78328,128 +78321,8 @@ EndSplineSet
 Refer: 468 1086 N 1 0 0 1 0 0 2
 EndChar
 
-StartChar: afii10066.alt1
-Encoding: 65556 -1 680
-Width: 968
-Flags: W
-LayerCount: 2
-Fore
-SplineSet
-626.812 491 m 0,0,1
- 645.438 560.515 645.438 560.515 645.438 621.67 c 0,2,3
- 645.438 635.293 645.438 635.293 644.514 648.5 c 0,4,5
- 638.317 737.041 638.317 737.041 620.347 778.5 c 0,6,7
- 589.107 859.958 589.107 859.958 523.913 859.958 c 0,8,9
- 461.373 859.958 461.373 859.958 367.589 785 c 0,10,11
- 307.298 736.812 307.298 736.812 251.755 655 c 0,12,13
- 202.194 582 202.194 582 177.812 491 c 0,14,15
- 157.447 415 157.447 415 157.396 349.5 c 1,16,17
- 177.388 149.902 177.388 149.902 314.509 149.902 c 0,18,19
- 345.352 149.902 345.352 149.902 382.12 160 c 0,20,21
- 431.858 173.426 431.858 173.426 492.582 234.5 c 0,22,23
- 539.811 282.001 539.811 282.001 572.86 347.5 c 128,-1,24
- 605.911 413 605.911 413 626.812 491 c 0,0,1
-814.931 818 m 0,25,26
- 836.214 757.456 836.214 757.456 839.676 671.5 c 0,27,28
- 840.026 662.789 840.026 662.789 840.026 653.869 c 0,29,30
- 840.026 581.372 840.026 581.372 816.883 495 c 0,31,32
- 785.569 378.136 785.569 378.136 732.258 293 c 0,33,34
- 670.099 195.938 670.099 195.938 600.252 132.5 c 0,35,36
- 505.788 47.3877 505.788 47.3877 429.43 24.0029 c 0,37,38
- 334.677 -5.56049 334.677 -5.56049 261.579 -5.56049 c 0,39,40
- 229.877 -5.56049 229.877 -5.56049 202.248 0 c 0,41,42
- 81.1641 24.3682 81.1641 24.3682 20.9834 131.5 c 0,43,44
- -26.4424 215.926 -26.4424 215.926 -32.9844 286.5 c 0,45,46
- -34.8153 306.251 -34.8153 306.251 -34.8153 327.096 c 0,47,48
- -34.8153 402.823 -34.8153 402.823 -10.6523 493 c 0,49,50
- 19.3574 605 19.3574 605 79.4375 693 c 128,-1,51
- 139.516 781 139.516 781 192.522 842.601 c 128,-1,52
- 245.528 904.2 245.528 904.2 329.186 964.5 c 1,53,54
- 227.994 1052.09 227.994 1052.09 227.994 1168.86 c 0,55,56
- 227.994 1219.67 227.994 1219.67 247.151 1276 c 1,57,58
- 280.377 1400 280.377 1400 402.564 1494 c 128,-1,59
- 524.752 1588 524.752 1588 682.752 1588 c 2,60,-1
- 1050.75 1588 l 1,61,-1
- 1011.36 1441 l 1,62,-1
- 679.363 1441 l 2,63,64
- 481.363 1441 481.363 1441 430.238 1250.2 c 0,65,66
- 421.633 1218.08 421.633 1218.08 421.633 1189.53 c 0,67,68
- 421.633 1089.55 421.633 1089.55 527.094 1033.2 c 1,69,70
- 540.168 1034.15 540.168 1034.15 552.73 1034.15 c 0,71,72
- 741.807 1034.15 741.807 1034.15 814.931 818 c 0,25,26
-EndSplineSet
-Kerns2: 380 -37 "'kern' Horizontal Kerning lookup 0 subtable"  393 -45 "'kern' Horizontal Kerning lookup 0 subtable"  397 -45 "'kern' Horizontal Kerning lookup 0 subtable"  400 -59 "'kern' Horizontal Kerning lookup 0 subtable" 
-EndChar
-
-StartChar: afii10084.alt1
-Encoding: 65557 -1 681
-Width: 1395
-Flags: W
-LayerCount: 2
-Fore
-SplineSet
-1389 1236 m 1,0,-1
- 213 1236 l 1,1,-1
- 252 1363 l 1,2,-1
- 1428 1363 l 1,3,-1
- 1389 1236 l 1,0,-1
-EndSplineSet
-Refer: 478 1096 N 1 0 0 1 0 0 2
-EndChar
-
-StartChar: afii10090.alt1
-Encoding: 65531 -1 682
-Width: 1395
-Flags: W
-LayerCount: 2
-Fore
-SplineSet
-1169 -254 m 1,0,-1
- -7 -254 l 1,1,-1
- 32 -127 l 1,2,-1
- 1208 -127 l 1,3,-1
- 1169 -254 l 1,0,-1
-EndSplineSet
-Refer: 478 1096 N 1 0 0 1 0 0 2
-EndChar
-
-StartChar: afii10081.alt1
-Encoding: 65530 -1 683
-Width: 934
-Flags: W
-LayerCount: 2
-Fore
-SplineSet
-929 1236 m 1,0,-1
- 203 1236 l 1,1,-1
- 242 1363 l 1,2,-1
- 968 1363 l 1,3,-1
- 929 1236 l 1,0,-1
-EndSplineSet
-Refer: 88 117 N 1 0 0 1 0 0 3
-EndChar
-
-StartChar: afii10068.alt1
-Encoding: 65528 -1 684
-Width: 467
-Flags: W
-LayerCount: 2
-Fore
-Refer: 329 713 S 1 0 0 1 -284 0 2
-Refer: 241 305 N 1 0 0 1 0 0 2
-EndChar
-
-StartChar: afii10069.alt1
-Encoding: 65527 -1 685
-Width: 934
-Flags: W
-LayerCount: 2
-Fore
-Refer: 74 103 N 1 0 0 1 0 0 2
-EndChar
-
 StartChar: uni266C
-Encoding: 9836 9836 686
+Encoding: 9836 9836 680
 Width: 1536
 Flags: W
 LayerCount: 2
diff --git a/src/LiberationSansNarrow-Regular.sfd b/src/LiberationSansNarrow-Regular.sfd
index fee2e44..7ab8cc6 100644
--- a/src/LiberationSansNarrow-Regular.sfd
+++ b/src/LiberationSansNarrow-Regular.sfd
@@ -18,7 +18,7 @@ OS2Version: 1
 OS2_WeightWidthSlopeOnly: 0
 OS2_UseTypoMetrics: 1
 CreationTime: 1123372800
-ModificationTime: 1386048848
+ModificationTime: 1399627238
 PfmFamily: 17
 TTFWeight: 400
 TTFWidth: 3
@@ -52,7 +52,6 @@ OS2FamilyClass: 2053
 OS2Vendor: 'OOoH'
 OS2CodePages: 6000009f.dfd70000
 OS2UnicodeRanges: a00002af.500078fb.00000000.00000000
-Lookup: 1 0 0 "'locl' Localized Forms lookup 0"  {"'locl' Localized Forms lookup 0-1"  } ['locl' ('cyrl' <'SRB ' > ) ]
 Lookup: 258 0 0 "'kern' Horizontal Kerning lookup 0"  {"'kern' Horizontal Kerning lookup 0 subtable"  } ['kern' ('DFLT' <'dflt' > 'cyrl' <'dflt' > 'cyrl' <'SRB ' > 'cyrl' <'MKD ' > 'grek' <'dflt' > 'latn' <'dflt' > ) ]
 MarkAttachClasses: 1
 DEI: 91125
@@ -784,10 +783,10 @@ NameList: Adobe Glyph List
 DisplaySize: -36
 AntiAlias: 1
 FitToEm: 1
-WinInfo: 9766 38 14
+WinInfo: 65056 38 14
 BeginPrivate: 0
 EndPrivate
-BeginChars: 65556 682
+BeginChars: 65556 681
 
 StartChar: .notdef
 Encoding: 65536 -1 0
@@ -38339,7 +38338,6 @@ SplineSet
  471 1027 471 1027 537 1027 c 0,20,21
 EndSplineSet
 Kerns2: 485 -45 "'kern' Horizontal Kerning lookup 0 subtable"  483 -23 "'kern' Horizontal Kerning lookup 0 subtable"  480 -68 "'kern' Horizontal Kerning lookup 0 subtable"  477 -68 "'kern' Horizontal Kerning lookup 0 subtable"  475 -68 "'kern' Horizontal Kerning lookup 0 subtable"  474 -23 "'kern' Horizontal Kerning lookup 0 subtable"  473 -45 "'kern' Horizontal Kerning lookup 0 subtable"  471 -23 "'kern' Horizontal Kerning lookup 0 subtable"  466 -45 "'kern' Horizontal Kerning lookup 0 subtable"  465 -92 "'kern' Horizontal Kerning lookup 0 subtable"  461 -45 "'kern' Horizontal Kerning lookup 0 subtable"  460 -23 "'kern' Horizontal Kerning lookup 0 subtable"  459 -23 "'kern' Horizontal Kerning lookup 0 subtable"  458 -92 "'kern' Horizontal Kerning lookup 0 subtable"  454 -47 "'kern' Horizontal Kerning lookup 0 subtable" 
-Substitution2: "'locl' Localized Forms lookup 0-1" afii10066.alt1
 EndChar
 
 StartChar: afii10067
@@ -61885,52 +61883,8 @@ EndSplineSet
 Refer: 468 1086 N 1 0 0 1 0 0 2
 EndChar
 
-StartChar: afii10066.alt1
-Encoding: 65522 -1 680
-Width: 968
-Flags: W
-LayerCount: 2
-Fore
-SplineSet
-708 491 m 0,0,1
- 708 576 708 576 683.5 648.5 c 0,2,3
- 653.579 737.041 653.579 737.041 624.5 778.5 c 0,4,5
- 520.528 938.099 520.528 938.099 370 785 c 0,6,7
- 322.621 736.812 322.621 736.812 289 655 c 0,8,9
- 259 582 259 582 259 491 c 0,10,11
- 259 415 259 415 276.5 349.5 c 1,12,13
- 366.5 105.006 366.5 105.006 552 160 c 0,14,15
- 598.141 173.426 598.141 173.426 642.5 234.5 c 0,16,17
- 677 282.001 677 282.001 692.5 347.5 c 128,-1,18
- 708 413 708 413 708 491 c 0,0,1
-808.5 818 m 0,19,20
- 846.006 757.456 846.006 757.456 872.5 671.5 c 0,21,22
- 897 592 897 592 897 495 c 0,23,24
- 897 378.136 897 378.136 866.5 293 c 0,25,26
- 830.349 195.938 830.349 195.938 777.5 132.5 c 0,27,28
- 705.842 47.3877 705.842 47.3877 635.75 24.0029 c 0,29,30
- 511.261 -18.3818 511.261 -18.3818 415 0 c 0,31,32
- 287.387 24.3682 287.387 24.3682 198.5 131.5 c 0,33,34
- 128.452 215.926 128.452 215.926 103 286.5 c 0,35,36
- 70 378 70 378 70 493 c 0,37,38
- 70 605 70 605 106.5 693 c 128,-1,39
- 142.999 781 142.999 781 179.5 842.601 c 128,-1,40
- 216 904.2 216 904.2 283.5 964.5 c 9,41,42
- 104.598 1090.2 104.598 1090.2 118 1276 c 1,43,44
- 118 1400 118 1400 215 1494 c 128,-1,45
- 312 1588 312 1588 470 1588 c 2,46,-1
- 838 1588 l 1,47,-1
- 838 1441 l 1,48,-1
- 506 1441 l 2,49,50
- 308 1441 308 1441 308 1250.2 c 0,51,52
- 308 1105.65 308 1105.65 463 1033.2 c 1,53,54
- 668.752 1048.52 668.752 1048.52 808.5 818 c 0,19,20
-EndSplineSet
-Kerns2: 388 -39 "'kern' Horizontal Kerning lookup 0 subtable"  393 -29 "'kern' Horizontal Kerning lookup 0 subtable"  397 -29 "'kern' Horizontal Kerning lookup 0 subtable"  400 -55 "'kern' Horizontal Kerning lookup 0 subtable" 
-EndChar
-
 StartChar: uni266C
-Encoding: 9836 9836 681
+Encoding: 9836 9836 680
 Width: 1536
 Flags: W
 LayerCount: 2
-- 
2.8.1