blob: 91209e261986e0752c094650285c42e45869acbb (
plain) (
blame)
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
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
|
info face="Candara" size=256 bold=1 italic=0 charset="EASTEUROPE" unicode=0 stretchH=100 smooth=1 aa=1 padding=5,5,5,5 spacing=5,5 outline=10
common lineHeight=256 base=200 scaleW=1024 scaleH=1024 pages=5 packed=0 alphaChnl=2 redChnl=0 greenChnl=0 blueChnl=0
page id=0 file="FontO2_p_0.png"
page id=1 file="FontO2_p_1.png"
page id=2 file="FontO2_p_2.png"
page id=3 file="FontO2_p_3.png"
page id=4 file="FontO2_p_4.png"
chars count=220
char id=0 x=966 y=566 width=31 height=31 xoffset=-15 yoffset=185 xadvance=105 page=0 chnl=15
char id=13 x=966 y=530 width=31 height=31 xoffset=-15 yoffset=185 xadvance=46 page=0 chnl=15
char id=32 x=966 y=494 width=31 height=31 xoffset=-15 yoffset=185 xadvance=46 page=0 chnl=15
char id=33 x=518 y=175 width=65 height=168 xoffset=-7 yoffset=48 xadvance=53 page=3 chnl=15
char id=34 x=740 y=273 width=103 height=104 xoffset=-4 yoffset=40 xadvance=96 page=4 chnl=15
char id=35 x=846 y=685 width=128 height=164 xoffset=-11 yoffset=51 xadvance=106 page=3 chnl=15
char id=36 x=602 y=627 width=104 height=192 xoffset=-6 yoffset=50 xadvance=93 page=1 chnl=15
char id=37 x=637 y=347 width=127 height=165 xoffset=-10 yoffset=51 xadvance=106 page=3 chnl=15
char id=38 x=513 y=0 width=165 height=170 xoffset=-9 yoffset=48 xadvance=143 page=3 chnl=15
char id=39 x=956 y=885 width=61 height=104 xoffset=-4 yoffset=40 xadvance=53 page=0 chnl=15
char id=40 x=430 y=0 width=89 height=236 xoffset=-7 yoffset=29 xadvance=74 page=0 chnl=15
char id=41 x=524 y=0 width=89 height=236 xoffset=-7 yoffset=29 xadvance=74 page=0 chnl=15
char id=42 x=435 y=896 width=117 height=116 xoffset=-6 yoffset=38 xadvance=106 page=0 chnl=15
char id=43 x=316 y=896 width=114 height=118 xoffset=-4 yoffset=90 xadvance=106 page=0 chnl=15
char id=44 x=632 y=904 width=71 height=105 xoffset=-13 yoffset=151 xadvance=53 page=2 chnl=15
char id=45 x=623 y=483 width=75 height=50 xoffset=-11 yoffset=123 xadvance=53 page=4 chnl=15
char id=46 x=935 y=374 width=65 height=65 xoffset=-7 yoffset=151 xadvance=53 page=4 chnl=15
char id=47 x=873 y=458 width=85 height=210 xoffset=-14 yoffset=36 xadvance=56 page=0 chnl=15
char id=48 x=552 y=858 width=124 height=144 xoffset=-6 yoffset=75 xadvance=112 page=3 chnl=15
char id=49 x=424 y=0 width=79 height=138 xoffset=-10 yoffset=77 xadvance=70 page=4 chnl=15
char id=50 x=308 y=0 width=111 height=139 xoffset=-5 yoffset=76 xadvance=101 page=4 chnl=15
char id=51 x=0 y=836 width=116 height=180 xoffset=-11 yoffset=76 xadvance=99 page=1 chnl=15
char id=52 x=0 y=0 width=129 height=172 xoffset=-10 yoffset=77 xadvance=113 page=3 chnl=15
char id=53 x=597 y=365 width=112 height=176 xoffset=-6 yoffset=77 xadvance=99 page=2 chnl=15
char id=54 x=385 y=0 width=123 height=171 xoffset=-6 yoffset=48 xadvance=111 page=3 chnl=15
char id=55 x=264 y=0 width=116 height=172 xoffset=-10 yoffset=77 xadvance=98 page=3 chnl=15
char id=56 x=134 y=0 width=125 height=172 xoffset=-6 yoffset=45 xadvance=113 page=3 chnl=15
char id=57 x=608 y=824 width=123 height=181 xoffset=-6 yoffset=76 xadvance=111 page=1 chnl=15
char id=58 x=674 y=139 width=65 height=129 xoffset=-7 yoffset=87 xadvance=53 page=4 chnl=15
char id=59 x=942 y=723 width=71 height=169 xoffset=-13 yoffset=87 xadvance=53 page=2 chnl=15
char id=60 x=390 y=305 width=114 height=128 xoffset=-4 yoffset=85 xadvance=106 page=4 chnl=15
char id=61 x=216 y=438 width=114 height=91 xoffset=-4 yoffset=103 xadvance=106 page=4 chnl=15
char id=62 x=271 y=305 width=114 height=128 xoffset=-4 yoffset=85 xadvance=106 page=4 chnl=15
char id=63 x=418 y=176 width=95 height=168 xoffset=-9 yoffset=48 xadvance=74 page=3 chnl=15
char id=64 x=676 y=0 width=216 height=230 xoffset=-2 yoffset=34 xadvance=212 page=0 chnl=15
char id=65 x=194 y=520 width=161 height=164 xoffset=-14 yoffset=51 xadvance=132 page=3 chnl=15
char id=66 x=498 y=349 width=134 height=165 xoffset=-1 yoffset=51 xadvance=126 page=3 chnl=15
char id=67 x=279 y=177 width=134 height=168 xoffset=-8 yoffset=50 xadvance=116 page=3 chnl=15
char id=68 x=349 y=350 width=144 height=165 xoffset=-1 yoffset=51 xadvance=135 page=3 chnl=15
char id=69 x=841 y=855 width=119 height=164 xoffset=-1 yoffset=51 xadvance=111 page=3 chnl=15
char id=70 x=122 y=0 width=116 height=164 xoffset=-1 yoffset=51 xadvance=103 page=4 chnl=15
char id=71 x=130 y=177 width=144 height=168 xoffset=-8 yoffset=50 xadvance=131 page=3 chnl=15
char id=72 x=288 y=689 width=139 height=164 xoffset=-1 yoffset=51 xadvance=137 page=3 chnl=15
char id=73 x=243 y=0 width=60 height=164 xoffset=-1 yoffset=51 xadvance=59 page=4 chnl=15
char id=74 x=863 y=175 width=101 height=167 xoffset=-14 yoffset=51 xadvance=84 page=3 chnl=15
char id=75 x=144 y=690 width=139 height=164 xoffset=-1 yoffset=51 xadvance=124 page=3 chnl=15
char id=76 x=0 y=0 width=117 height=164 xoffset=-1 yoffset=51 xadvance=102 page=4 chnl=15
char id=77 x=0 y=521 width=189 height=164 xoffset=-5 yoffset=51 xadvance=181 page=3 chnl=15
char id=78 x=820 y=516 width=141 height=164 xoffset=-1 yoffset=51 xadvance=140 page=3 chnl=15
char id=79 x=683 y=0 width=162 height=170 xoffset=-8 yoffset=48 xadvance=146 page=3 chnl=15
char id=80 x=712 y=686 width=129 height=164 xoffset=-1 yoffset=51 xadvance=117 page=3 chnl=15
char id=81 x=426 y=466 width=166 height=213 xoffset=-8 yoffset=48 xadvance=146 page=0 chnl=15
char id=82 x=0 y=690 width=139 height=164 xoffset=-1 yoffset=51 xadvance=125 page=3 chnl=15
char id=83 x=0 y=177 width=125 height=169 xoffset=-8 yoffset=49 xadvance=110 page=3 chnl=15
char id=84 x=432 y=689 width=137 height=164 xoffset=-13 yoffset=51 xadvance=110 page=3 chnl=15
char id=85 x=588 y=175 width=144 height=167 xoffset=-3 yoffset=51 xadvance=138 page=3 chnl=15
char id=86 x=517 y=519 width=149 height=164 xoffset=-14 yoffset=51 xadvance=120 page=3 chnl=15
char id=87 x=769 y=347 width=221 height=164 xoffset=-14 yoffset=51 xadvance=192 page=3 chnl=15
char id=88 x=360 y=520 width=152 height=164 xoffset=-14 yoffset=51 xadvance=123 page=3 chnl=15
char id=89 x=671 y=517 width=144 height=164 xoffset=-14 yoffset=51 xadvance=116 page=3 chnl=15
char id=90 x=712 y=855 width=124 height=164 xoffset=-8 yoffset=51 xadvance=108 page=3 chnl=15
char id=91 x=58 y=0 width=80 height=238 xoffset=-4 yoffset=28 xadvance=74 page=0 chnl=15
char id=92 x=783 y=459 width=85 height=210 xoffset=-14 yoffset=36 xadvance=56 page=0 chnl=15
char id=93 x=143 y=0 width=80 height=237 xoffset=-3 yoffset=28 xadvance=74 page=0 chnl=15
char id=94 x=557 y=895 width=130 height=114 xoffset=-12 yoffset=40 xadvance=106 page=0 chnl=15
char id=95 x=0 y=611 width=136 height=48 xoffset=-15 yoffset=219 xadvance=106 page=4 chnl=15
char id=96 x=210 y=541 width=76 height=63 xoffset=-8 yoffset=41 xadvance=58 page=4 chnl=15
char id=97 x=756 y=0 width=118 height=134 xoffset=-8 yoffset=84 xadvance=103 page=4 chnl=15
char id=98 x=314 y=0 width=131 height=178 xoffset=-6 yoffset=40 xadvance=116 page=2 chnl=15
char id=99 x=879 y=0 width=112 height=134 xoffset=-8 yoffset=84 xadvance=94 page=4 chnl=15
char id=100 x=450 y=0 width=129 height=178 xoffset=-8 yoffset=40 xadvance=116 page=2 chnl=15
char id=101 x=627 y=0 width=124 height=134 xoffset=-8 yoffset=84 xadvance=108 page=4 chnl=15
char id=102 x=914 y=182 width=101 height=177 xoffset=-10 yoffset=38 xadvance=76 page=2 chnl=15
char id=103 x=456 y=627 width=141 height=197 xoffset=-12 yoffset=71 xadvance=116 page=1 chnl=15
char id=104 x=846 y=364 width=126 height=175 xoffset=-6 yoffset=40 xadvance=115 page=2 chnl=15
char id=105 x=871 y=723 width=66 height=173 xoffset=-5 yoffset=42 xadvance=52 page=2 chnl=15
char id=106 x=426 y=241 width=73 height=220 xoffset=-13 yoffset=41 xadvance=52 page=0 chnl=15
char id=107 x=714 y=364 width=127 height=175 xoffset=-6 yoffset=40 xadvance=107 page=2 chnl=15
char id=108 x=958 y=627 width=60 height=175 xoffset=-3 yoffset=40 xadvance=54 page=1 chnl=15
char id=109 x=111 y=169 width=187 height=131 xoffset=-8 yoffset=84 xadvance=175 page=4 chnl=15
char id=110 x=303 y=169 width=128 height=131 xoffset=-8 yoffset=84 xadvance=115 page=4 chnl=15
char id=111 x=817 y=885 width=134 height=134 xoffset=-8 yoffset=84 xadvance=117 page=0 chnl=15
char id=112 x=0 y=183 width=133 height=177 xoffset=-7 yoffset=84 xadvance=118 page=2 chnl=15
char id=113 x=138 y=183 width=129 height=177 xoffset=-8 yoffset=84 xadvance=116 page=2 chnl=15
char id=114 x=566 y=142 width=103 height=131 xoffset=-8 yoffset=84 xadvance=81 page=4 chnl=15
char id=115 x=0 y=169 width=106 height=134 xoffset=-9 yoffset=84 xadvance=88 page=4 chnl=15
char id=116 x=288 y=858 width=98 height=161 xoffset=-10 yoffset=57 xadvance=76 page=3 chnl=15
char id=117 x=436 y=143 width=125 height=131 xoffset=-7 yoffset=87 xadvance=114 page=4 chnl=15
char id=118 x=137 y=305 width=129 height=128 xoffset=-13 yoffset=87 xadvance=103 page=4 chnl=15
char id=119 x=744 y=139 width=190 height=128 xoffset=-12 yoffset=87 xadvance=165 page=4 chnl=15
char id=120 x=0 y=308 width=132 height=128 xoffset=-12 yoffset=87 xadvance=108 page=4 chnl=15
char id=121 x=616 y=546 width=127 height=174 xoffset=-12 yoffset=87 xadvance=103 page=2 chnl=15
char id=122 x=509 y=279 width=109 height=128 xoffset=-8 yoffset=87 xadvance=91 page=4 chnl=15
char id=123 x=228 y=0 width=97 height=236 xoffset=-10 yoffset=29 xadvance=74 page=0 chnl=15
char id=124 x=0 y=0 width=53 height=242 xoffset=0 yoffset=26 xadvance=53 page=0 chnl=15
char id=125 x=330 y=0 width=95 height=236 xoffset=-9 yoffset=29 xadvance=74 page=0 chnl=15
char id=126 x=425 y=438 width=135 height=73 xoffset=-14 yoffset=112 xadvance=106 page=4 chnl=15
char id=128 x=161 y=859 width=112 height=144 xoffset=-12 yoffset=74 xadvance=93 page=3 chnl=15
char id=130 x=860 y=902 width=71 height=105 xoffset=-13 yoffset=151 xadvance=53 page=2 chnl=15
char id=132 x=0 y=914 width=126 height=105 xoffset=-13 yoffset=151 xadvance=106 page=0 chnl=15
char id=133 x=668 y=409 width=192 height=65 xoffset=-7 yoffset=151 xadvance=210 page=4 chnl=15
char id=134 x=633 y=240 width=103 height=219 xoffset=-14 yoffset=38 xadvance=74 page=0 chnl=15
char id=135 x=741 y=235 width=103 height=219 xoffset=-14 yoffset=38 xadvance=74 page=0 chnl=15
char id=137 x=0 y=351 width=183 height=165 xoffset=-10 yoffset=51 xadvance=159 page=3 chnl=15
char id=138 x=561 y=0 width=125 height=206 xoffset=-9 yoffset=12 xadvance=108 page=1 chnl=15
char id=139 x=302 y=905 width=69 height=107 xoffset=-8 yoffset=96 xadvance=53 page=2 chnl=15
char id=140 x=431 y=0 width=125 height=206 xoffset=-9 yoffset=12 xadvance=108 page=1 chnl=15
char id=141 x=580 y=419 width=137 height=203 xoffset=-13 yoffset=12 xadvance=110 page=1 chnl=15
char id=142 x=722 y=419 width=124 height=203 xoffset=-8 yoffset=12 xadvance=108 page=1 chnl=15
char id=143 x=851 y=419 width=124 height=203 xoffset=-8 yoffset=12 xadvance=108 page=1 chnl=15
char id=145 x=784 y=902 width=71 height=105 xoffset=-9 yoffset=38 xadvance=53 page=2 chnl=15
char id=146 x=708 y=904 width=71 height=105 xoffset=-9 yoffset=38 xadvance=53 page=2 chnl=15
char id=147 x=376 y=905 width=123 height=105 xoffset=-9 yoffset=38 xadvance=106 page=2 chnl=15
char id=148 x=504 y=905 width=123 height=105 xoffset=-9 yoffset=38 xadvance=106 page=2 chnl=15
char id=149 x=0 y=441 width=92 height=97 xoffset=24 yoffset=86 xadvance=139 page=4 chnl=15
char id=150 x=141 y=609 width=123 height=48 xoffset=-9 yoffset=125 xadvance=105 page=4 chnl=15
char id=151 x=703 y=479 width=240 height=48 xoffset=-15 yoffset=125 xadvance=210 page=4 chnl=15
char id=153 x=848 y=272 width=163 height=97 xoffset=-12 yoffset=42 xadvance=144 page=4 chnl=15
char id=154 x=354 y=365 width=106 height=177 xoffset=-9 yoffset=41 xadvance=88 page=2 chnl=15
char id=155 x=228 y=906 width=69 height=107 xoffset=-8 yoffset=96 xadvance=53 page=2 chnl=15
char id=156 x=243 y=365 width=106 height=177 xoffset=-9 yoffset=41 xadvance=88 page=2 chnl=15
char id=157 x=850 y=0 width=127 height=170 xoffset=-10 yoffset=48 xadvance=98 page=3 chnl=15
char id=158 x=237 y=726 width=109 height=174 xoffset=-8 yoffset=41 xadvance=91 page=2 chnl=15
char id=159 x=123 y=727 width=109 height=174 xoffset=-8 yoffset=41 xadvance=91 page=2 chnl=15
char id=160 x=963 y=458 width=31 height=31 xoffset=-15 yoffset=185 xadvance=46 page=0 chnl=15
char id=161 x=109 y=541 width=96 height=63 xoffset=-8 yoffset=41 xadvance=80 page=4 chnl=15
char id=162 x=565 y=412 width=98 height=66 xoffset=-9 yoffset=39 xadvance=80 page=4 chnl=15
char id=163 x=574 y=688 width=133 height=164 xoffset=-17 yoffset=51 xadvance=102 page=3 chnl=15
char id=164 x=692 y=894 width=110 height=109 xoffset=-3 yoffset=96 xadvance=103 page=0 chnl=15
char id=165 x=137 y=479 width=160 height=214 xoffset=-14 yoffset=51 xadvance=132 page=0 chnl=15
char id=166 x=618 y=0 width=53 height=235 xoffset=-1 yoffset=31 xadvance=51 page=0 chnl=15
char id=167 x=897 y=0 width=104 height=220 xoffset=-8 yoffset=40 xadvance=88 page=0 chnl=15
char id=168 x=440 y=516 width=98 height=58 xoffset=-6 yoffset=44 xadvance=86 page=4 chnl=15
char id=169 x=391 y=858 width=156 height=155 xoffset=-9 yoffset=60 xadvance=139 page=3 chnl=15
char id=170 x=504 y=241 width=124 height=219 xoffset=-7 yoffset=49 xadvance=110 page=0 chnl=15
char id=171 x=0 y=906 width=111 height=107 xoffset=-8 yoffset=96 xadvance=95 page=2 chnl=15
char id=172 x=97 y=441 width=114 height=95 xoffset=-4 yoffset=104 xadvance=106 page=4 chnl=15
char id=173 x=543 y=516 width=75 height=50 xoffset=-11 yoffset=123 xadvance=53 page=4 chnl=15
char id=174 x=0 y=859 width=156 height=155 xoffset=-9 yoffset=43 xadvance=139 page=3 chnl=15
char id=175 x=691 y=0 width=124 height=206 xoffset=-8 yoffset=9 xadvance=108 page=1 chnl=15
char id=176 x=335 y=438 width=85 height=84 xoffset=-16 yoffset=28 xadvance=56 page=4 chnl=15
char id=177 x=508 y=0 width=114 height=137 xoffset=-4 yoffset=74 xadvance=106 page=4 chnl=15
char id=178 x=939 y=139 width=72 height=82 xoffset=-15 yoffset=183 xadvance=48 page=4 chnl=15
char id=179 x=0 y=547 width=104 height=175 xoffset=-15 yoffset=40 xadvance=66 page=2 chnl=15
char id=180 x=291 y=534 width=76 height=63 xoffset=-9 yoffset=41 xadvance=58 page=4 chnl=15
char id=181 x=465 y=365 width=127 height=176 xoffset=-7 yoffset=88 xadvance=116 page=2 chnl=15
char id=182 x=0 y=247 width=140 height=227 xoffset=-2 yoffset=39 xadvance=141 page=0 chnl=15
char id=183 x=865 y=374 width=65 height=65 xoffset=-7 yoffset=106 xadvance=53 page=4 chnl=15
char id=184 x=936 y=901 width=61 height=89 xoffset=-3 yoffset=179 xadvance=48 page=2 chnl=15
char id=185 x=736 y=820 width=120 height=181 xoffset=-8 yoffset=84 xadvance=103 page=1 chnl=15
char id=186 x=370 y=835 width=104 height=184 xoffset=-8 yoffset=84 xadvance=88 page=1 chnl=15
char id=187 x=167 y=910 width=111 height=107 xoffset=-8 yoffset=96 xadvance=95 page=0 chnl=15
char id=188 x=737 y=175 width=121 height=167 xoffset=-1 yoffset=48 xadvance=102 page=3 chnl=15
char id=189 x=0 y=543 width=104 height=63 xoffset=-7 yoffset=41 xadvance=90 page=4 chnl=15
char id=190 x=109 y=547 width=97 height=175 xoffset=-3 yoffset=40 xadvance=75 page=2 chnl=15
char id=191 x=351 y=726 width=109 height=174 xoffset=-8 yoffset=41 xadvance=91 page=2 chnl=15
char id=192 x=436 y=419 width=139 height=203 xoffset=-4 yoffset=12 xadvance=122 page=1 chnl=15
char id=193 x=605 y=211 width=161 height=203 xoffset=-14 yoffset=12 xadvance=132 page=1 chnl=15
char id=194 x=439 y=211 width=161 height=203 xoffset=-14 yoffset=12 xadvance=132 page=1 chnl=15
char id=195 x=273 y=211 width=161 height=203 xoffset=-14 yoffset=12 xadvance=132 page=1 chnl=15
char id=196 x=820 y=0 width=161 height=204 xoffset=-14 yoffset=11 xadvance=132 page=1 chnl=15
char id=197 x=248 y=628 width=117 height=203 xoffset=-1 yoffset=12 xadvance=102 page=1 chnl=15
char id=198 x=149 y=0 width=138 height=206 xoffset=-8 yoffset=12 xadvance=116 page=1 chnl=15
char id=199 x=0 y=479 width=132 height=218 xoffset=-7 yoffset=50 xadvance=116 page=0 chnl=15
char id=200 x=292 y=0 width=134 height=206 xoffset=-8 yoffset=12 xadvance=116 page=1 chnl=15
char id=201 x=124 y=628 width=119 height=203 xoffset=-1 yoffset=12 xadvance=111 page=1 chnl=15
char id=202 x=302 y=466 width=119 height=214 xoffset=-1 yoffset=51 xadvance=111 page=0 chnl=15
char id=203 x=149 y=211 width=119 height=204 xoffset=-1 yoffset=11 xadvance=111 page=1 chnl=15
char id=204 x=0 y=628 width=119 height=203 xoffset=-1 yoffset=12 xadvance=111 page=1 chnl=15
char id=205 x=370 y=627 width=81 height=203 xoffset=-1 yoffset=12 xadvance=59 page=1 chnl=15
char id=206 x=920 y=209 width=96 height=203 xoffset=-18 yoffset=12 xadvance=59 page=1 chnl=15
char id=207 x=0 y=211 width=144 height=204 xoffset=-1 yoffset=12 xadvance=135 page=1 chnl=15
char id=208 x=188 y=350 width=156 height=165 xoffset=-14 yoffset=51 xadvance=135 page=3 chnl=15
char id=209 x=146 y=420 width=141 height=203 xoffset=-1 yoffset=12 xadvance=140 page=1 chnl=15
char id=210 x=0 y=420 width=141 height=203 xoffset=-1 yoffset=12 xadvance=140 page=1 chnl=15
char id=211 x=650 y=683 width=162 height=206 xoffset=-8 yoffset=12 xadvance=146 page=0 chnl=15
char id=212 x=316 y=685 width=162 height=206 xoffset=-8 yoffset=12 xadvance=146 page=0 chnl=15
char id=213 x=483 y=684 width=162 height=206 xoffset=-8 yoffset=12 xadvance=146 page=0 chnl=15
char id=214 x=0 y=702 width=162 height=207 xoffset=-8 yoffset=11 xadvance=146 page=0 chnl=15
char id=215 x=116 y=906 width=107 height=107 xoffset=-1 yoffset=95 xadvance=105 page=2 chnl=15
char id=216 x=292 y=419 width=139 height=203 xoffset=-4 yoffset=12 xadvance=122 page=1 chnl=15
char id=217 x=145 y=242 width=144 height=220 xoffset=-3 yoffset=-2 xadvance=138 page=0 chnl=15
char id=218 x=817 y=674 width=144 height=206 xoffset=-3 yoffset=12 xadvance=138 page=0 chnl=15
char id=219 x=0 y=0 width=144 height=206 xoffset=-3 yoffset=12 xadvance=138 page=1 chnl=15
char id=220 x=167 y=698 width=144 height=207 xoffset=-3 yoffset=11 xadvance=138 page=0 chnl=15
char id=221 x=771 y=211 width=144 height=203 xoffset=-14 yoffset=12 xadvance=116 page=1 chnl=15
char id=222 x=849 y=235 width=137 height=218 xoffset=-13 yoffset=51 xadvance=110 page=0 chnl=15
char id=223 x=861 y=816 width=127 height=180 xoffset=-5 yoffset=38 xadvance=114 page=1 chnl=15
char id=224 x=465 y=726 width=104 height=174 xoffset=-8 yoffset=41 xadvance=81 page=2 chnl=15
char id=225 x=244 y=836 width=118 height=177 xoffset=-8 yoffset=41 xadvance=103 page=1 chnl=15
char id=226 x=791 y=182 width=118 height=177 xoffset=-8 yoffset=41 xadvance=103 page=2 chnl=15
char id=227 x=121 y=836 width=118 height=179 xoffset=-8 yoffset=39 xadvance=103 page=1 chnl=15
char id=228 x=0 y=727 width=118 height=174 xoffset=-8 yoffset=44 xadvance=103 page=2 chnl=15
char id=229 x=597 y=465 width=78 height=213 xoffset=-3 yoffset=2 xadvance=54 page=0 chnl=15
char id=230 x=0 y=365 width=117 height=177 xoffset=-8 yoffset=41 xadvance=94 page=2 chnl=15
char id=231 x=841 y=627 width=112 height=184 xoffset=-8 yoffset=84 xadvance=94 page=1 chnl=15
char id=232 x=122 y=365 width=116 height=177 xoffset=-8 yoffset=41 xadvance=94 page=2 chnl=15
char id=233 x=533 y=183 width=124 height=177 xoffset=-8 yoffset=41 xadvance=108 page=2 chnl=15
char id=234 x=479 y=829 width=124 height=181 xoffset=-8 yoffset=84 xadvance=108 page=1 chnl=15
char id=235 x=878 y=544 width=124 height=174 xoffset=-8 yoffset=44 xadvance=108 page=2 chnl=15
char id=236 x=662 y=182 width=124 height=177 xoffset=-8 yoffset=41 xadvance=108 page=2 chnl=15
char id=237 x=784 y=723 width=82 height=174 xoffset=-5 yoffset=41 xadvance=52 page=2 chnl=15
char id=238 x=683 y=725 width=96 height=174 xoffset=-21 yoffset=41 xadvance=52 page=2 chnl=15
char id=239 x=0 y=0 width=165 height=178 xoffset=-8 yoffset=40 xadvance=138 page=2 chnl=15
char id=240 x=170 y=0 width=139 height=178 xoffset=-8 yoffset=40 xadvance=116 page=2 chnl=15
char id=241 x=350 y=547 width=128 height=174 xoffset=-8 yoffset=41 xadvance=115 page=2 chnl=15
char id=242 x=483 y=546 width=128 height=174 xoffset=-8 yoffset=41 xadvance=115 page=2 chnl=15
char id=243 x=862 y=0 width=134 height=177 xoffset=-8 yoffset=41 xadvance=117 page=2 chnl=15
char id=244 x=723 y=0 width=134 height=177 xoffset=-8 yoffset=41 xadvance=117 page=2 chnl=15
char id=245 x=584 y=0 width=134 height=177 xoffset=-8 yoffset=41 xadvance=117 page=2 chnl=15
char id=246 x=211 y=547 width=134 height=174 xoffset=-8 yoffset=44 xadvance=117 page=2 chnl=15
char id=247 x=623 y=278 width=112 height=126 xoffset=-4 yoffset=86 xadvance=106 page=4 chnl=15
char id=248 x=574 y=725 width=104 height=174 xoffset=-8 yoffset=41 xadvance=81 page=2 chnl=15
char id=249 x=711 y=627 width=125 height=188 xoffset=-7 yoffset=30 xadvance=114 page=1 chnl=15
char id=250 x=403 y=183 width=125 height=177 xoffset=-7 yoffset=41 xadvance=114 page=2 chnl=15
char id=251 x=272 y=183 width=126 height=177 xoffset=-7 yoffset=41 xadvance=114 page=2 chnl=15
char id=252 x=748 y=544 width=125 height=174 xoffset=-7 yoffset=44 xadvance=114 page=2 chnl=15
char id=253 x=294 y=241 width=127 height=220 xoffset=-12 yoffset=41 xadvance=103 page=0 chnl=15
char id=254 x=680 y=464 width=98 height=212 xoffset=-10 yoffset=57 xadvance=76 page=0 chnl=15
char id=255 x=372 y=527 width=63 height=63 xoffset=-3 yoffset=41 xadvance=54 page=4 chnl=15
kernings count=2474
kerning first=65 second=84 amount=-5
kerning first=65 second=85 amount=-2
kerning first=65 second=86 amount=-3
kerning first=65 second=87 amount=-3
kerning first=65 second=89 amount=-5
kerning first=65 second=141 amount=-5
kerning first=65 second=84 amount=-3
kerning first=65 second=85 amount=-2
kerning first=65 second=218 amount=-2
kerning first=65 second=85 amount=-2
kerning first=65 second=85 amount=-2
kerning first=65 second=220 amount=-2
kerning first=65 second=85 amount=-2
kerning first=65 second=85 amount=-2
kerning first=65 second=217 amount=-2
kerning first=65 second=219 amount=-2
kerning first=65 second=85 amount=-2
kerning first=65 second=87 amount=-3
kerning first=65 second=221 amount=-5
kerning first=65 second=89 amount=-5
kerning first=65 second=89 amount=-5
kerning first=65 second=118 amount=-2
kerning first=65 second=119 amount=-2
kerning first=65 second=121 amount=-2
kerning first=65 second=119 amount=-2
kerning first=65 second=253 amount=-2
kerning first=65 second=121 amount=-2
kerning first=65 second=121 amount=-2
kerning first=65 second=146 amount=-10
kerning first=65 second=148 amount=-10
kerning first=65 second=39 amount=-10
kerning first=65 second=34 amount=-10
kerning first=65 second=85 amount=-2
kerning first=68 second=67 amount=2
kerning first=68 second=71 amount=2
kerning first=68 second=79 amount=2
kerning first=68 second=81 amount=2
kerning first=68 second=198 amount=2
kerning first=68 second=67 amount=2
kerning first=68 second=200 amount=2
kerning first=68 second=67 amount=2
kerning first=68 second=199 amount=2
kerning first=68 second=71 amount=2
kerning first=68 second=71 amount=2
kerning first=68 second=71 amount=2
kerning first=68 second=71 amount=2
kerning first=68 second=79 amount=2
kerning first=68 second=211 amount=2
kerning first=68 second=212 amount=2
kerning first=68 second=79 amount=2
kerning first=68 second=214 amount=2
kerning first=68 second=79 amount=2
kerning first=68 second=79 amount=2
kerning first=68 second=213 amount=2
kerning first=68 second=79 amount=2
kerning first=68 second=79 amount=2
kerning first=68 second=79 amount=2
kerning first=70 second=65 amount=-4
kerning first=70 second=74 amount=-6
kerning first=70 second=65 amount=-4
kerning first=70 second=193 amount=-4
kerning first=70 second=194 amount=-4
kerning first=70 second=65 amount=-4
kerning first=70 second=196 amount=-4
kerning first=70 second=65 amount=-4
kerning first=70 second=195 amount=-4
kerning first=70 second=65 amount=-4
kerning first=70 second=165 amount=-4
kerning first=70 second=65 amount=-4
kerning first=70 second=74 amount=-6
kerning first=70 second=105 amount=10
kerning first=70 second=238 amount=10
kerning first=70 second=105 amount=12
kerning first=70 second=105 amount=10
kerning first=70 second=105 amount=10
kerning first=70 second=105 amount=12
kerning first=70 second=105 amount=-6
kerning first=70 second=106 amount=8
kerning first=70 second=44 amount=-12
kerning first=70 second=46 amount=-12
kerning first=70 second=133 amount=-12
kerning first=74 second=65 amount=-2
kerning first=74 second=65 amount=-2
kerning first=74 second=193 amount=-2
kerning first=74 second=194 amount=-2
kerning first=74 second=65 amount=-2
kerning first=74 second=196 amount=-2
kerning first=74 second=65 amount=-2
kerning first=74 second=195 amount=-2
kerning first=74 second=65 amount=-2
kerning first=74 second=165 amount=-2
kerning first=74 second=65 amount=-2
kerning first=76 second=84 amount=-7
kerning first=76 second=86 amount=-6
kerning first=76 second=87 amount=-6
kerning first=76 second=89 amount=-7
kerning first=76 second=141 amount=-7
kerning first=76 second=84 amount=-6
kerning first=76 second=87 amount=-6
kerning first=76 second=221 amount=-7
kerning first=76 second=89 amount=-7
kerning first=76 second=89 amount=-7
kerning first=76 second=118 amount=-5
kerning first=76 second=119 amount=-5
kerning first=76 second=121 amount=-5
kerning first=76 second=119 amount=-5
kerning first=76 second=253 amount=-5
kerning first=76 second=121 amount=-5
kerning first=76 second=121 amount=-5
kerning first=76 second=146 amount=-10
kerning first=76 second=148 amount=-10
kerning first=76 second=39 amount=-10
kerning first=76 second=34 amount=-10
kerning first=79 second=67 amount=2
kerning first=79 second=71 amount=2
kerning first=79 second=79 amount=2
kerning first=79 second=81 amount=2
kerning first=79 second=198 amount=2
kerning first=79 second=67 amount=2
kerning first=79 second=200 amount=2
kerning first=79 second=67 amount=2
kerning first=79 second=199 amount=2
kerning first=79 second=71 amount=2
kerning first=79 second=71 amount=2
kerning first=79 second=71 amount=2
kerning first=79 second=71 amount=2
kerning first=79 second=79 amount=2
kerning first=79 second=211 amount=2
kerning first=79 second=212 amount=2
kerning first=79 second=79 amount=2
kerning first=79 second=214 amount=2
kerning first=79 second=79 amount=2
kerning first=79 second=79 amount=2
kerning first=79 second=213 amount=2
kerning first=79 second=79 amount=2
kerning first=79 second=79 amount=2
kerning first=79 second=79 amount=2
kerning first=80 second=65 amount=-4
kerning first=80 second=74 amount=-6
kerning first=80 second=65 amount=-4
kerning first=80 second=193 amount=-4
kerning first=80 second=194 amount=-4
kerning first=80 second=65 amount=-4
kerning first=80 second=196 amount=-4
kerning first=80 second=65 amount=-4
kerning first=80 second=195 amount=-4
kerning first=80 second=65 amount=-4
kerning first=80 second=165 amount=-4
kerning first=80 second=65 amount=-4
kerning first=80 second=74 amount=-6
kerning first=80 second=44 amount=-12
kerning first=80 second=46 amount=-12
kerning first=80 second=133 amount=-12
kerning first=81 second=67 amount=2
kerning first=81 second=71 amount=2
kerning first=81 second=79 amount=2
kerning first=81 second=81 amount=2
kerning first=81 second=198 amount=2
kerning first=81 second=67 amount=2
kerning first=81 second=200 amount=2
kerning first=81 second=67 amount=2
kerning first=81 second=199 amount=2
kerning first=81 second=71 amount=2
kerning first=81 second=71 amount=2
kerning first=81 second=71 amount=2
kerning first=81 second=71 amount=2
kerning first=81 second=79 amount=2
kerning first=81 second=211 amount=2
kerning first=81 second=212 amount=2
kerning first=81 second=79 amount=2
kerning first=81 second=214 amount=2
kerning first=81 second=79 amount=2
kerning first=81 second=79 amount=2
kerning first=81 second=213 amount=2
kerning first=81 second=79 amount=2
kerning first=81 second=79 amount=2
kerning first=81 second=79 amount=2
kerning first=84 second=65 amount=-4
kerning first=84 second=74 amount=-6
kerning first=84 second=65 amount=-4
kerning first=84 second=193 amount=-4
kerning first=84 second=194 amount=-4
kerning first=84 second=65 amount=-4
kerning first=84 second=196 amount=-4
kerning first=84 second=65 amount=-4
kerning first=84 second=195 amount=-4
kerning first=84 second=65 amount=-4
kerning first=84 second=165 amount=-4
kerning first=84 second=65 amount=-4
kerning first=84 second=74 amount=-6
kerning first=84 second=97 amount=-8
kerning first=84 second=99 amount=-12
kerning first=84 second=100 amount=-12
kerning first=84 second=101 amount=-12
kerning first=84 second=103 amount=-12
kerning first=84 second=109 amount=-8
kerning first=84 second=110 amount=-8
kerning first=84 second=111 amount=-12
kerning first=84 second=112 amount=-8
kerning first=84 second=113 amount=-12
kerning first=84 second=114 amount=-8
kerning first=84 second=115 amount=-12
kerning first=84 second=117 amount=-8
kerning first=84 second=118 amount=-8
kerning first=84 second=119 amount=-8
kerning first=84 second=120 amount=-8
kerning first=84 second=121 amount=-8
kerning first=84 second=122 amount=-8
kerning first=84 second=97 amount=-8
kerning first=84 second=225 amount=-8
kerning first=84 second=226 amount=-8
kerning first=84 second=97 amount=-8
kerning first=84 second=228 amount=-8
kerning first=84 second=97 amount=-8
kerning first=84 second=227 amount=-8
kerning first=84 second=97 amount=-8
kerning first=84 second=185 amount=-8
kerning first=84 second=97 amount=-8
kerning first=84 second=230 amount=-12
kerning first=84 second=99 amount=-12
kerning first=84 second=232 amount=-12
kerning first=84 second=99 amount=-12
kerning first=84 second=231 amount=-12
kerning first=84 second=239 amount=-12
kerning first=84 second=240 amount=-12
kerning first=84 second=101 amount=-12
kerning first=84 second=233 amount=-12
kerning first=84 second=101 amount=-12
kerning first=84 second=236 amount=-12
kerning first=84 second=235 amount=-12
kerning first=84 second=101 amount=-12
kerning first=84 second=101 amount=-12
kerning first=84 second=101 amount=-12
kerning first=84 second=234 amount=-12
kerning first=84 second=103 amount=-12
kerning first=84 second=103 amount=-12
kerning first=84 second=103 amount=-12
kerning first=84 second=103 amount=-12
kerning first=84 second=105 amount=10
kerning first=84 second=238 amount=10
kerning first=84 second=105 amount=14
kerning first=84 second=105 amount=12
kerning first=84 second=105 amount=10
kerning first=84 second=105 amount=12
kerning first=84 second=105 amount=-8
kerning first=84 second=106 amount=8
kerning first=84 second=241 amount=-8
kerning first=84 second=242 amount=-8
kerning first=84 second=110 amount=-8
kerning first=84 second=110 amount=-8
kerning first=84 second=111 amount=-12
kerning first=84 second=243 amount=-12
kerning first=84 second=244 amount=-12
kerning first=84 second=111 amount=-12
kerning first=84 second=246 amount=-12
kerning first=84 second=111 amount=-12
kerning first=84 second=111 amount=-12
kerning first=84 second=245 amount=-12
kerning first=84 second=111 amount=-12
kerning first=84 second=111 amount=-12
kerning first=84 second=224 amount=-8
kerning first=84 second=248 amount=-8
kerning first=84 second=114 amount=-8
kerning first=84 second=156 amount=-12
kerning first=84 second=115 amount=-12
kerning first=84 second=154 amount=-12
kerning first=84 second=186 amount=-12
kerning first=84 second=117 amount=-8
kerning first=84 second=250 amount=-8
kerning first=84 second=117 amount=-8
kerning first=84 second=117 amount=-8
kerning first=84 second=252 amount=-8
kerning first=84 second=117 amount=-8
kerning first=84 second=117 amount=-8
kerning first=84 second=249 amount=-8
kerning first=84 second=251 amount=-8
kerning first=84 second=117 amount=-8
kerning first=84 second=119 amount=-8
kerning first=84 second=253 amount=-8
kerning first=84 second=121 amount=-8
kerning first=84 second=121 amount=-8
kerning first=84 second=159 amount=-8
kerning first=84 second=158 amount=-8
kerning first=84 second=191 amount=-8
kerning first=84 second=44 amount=-12
kerning first=84 second=59 amount=-5
kerning first=84 second=58 amount=-5
kerning first=84 second=46 amount=-12
kerning first=84 second=133 amount=-12
kerning first=84 second=45 amount=-6
kerning first=84 second=155 amount=-6
kerning first=84 second=187 amount=-6
kerning first=84 second=150 amount=-6
kerning first=84 second=151 amount=-6
kerning first=84 second=111 amount=-12
kerning first=84 second=117 amount=-8
kerning first=85 second=65 amount=-2
kerning first=85 second=65 amount=-2
kerning first=85 second=193 amount=-2
kerning first=85 second=194 amount=-2
kerning first=85 second=65 amount=-2
kerning first=85 second=196 amount=-2
kerning first=85 second=65 amount=-2
kerning first=85 second=195 amount=-2
kerning first=85 second=65 amount=-2
kerning first=85 second=165 amount=-2
kerning first=85 second=65 amount=-2
kerning first=86 second=65 amount=-4
kerning first=86 second=74 amount=-6
kerning first=86 second=65 amount=-4
kerning first=86 second=193 amount=-4
kerning first=86 second=194 amount=-4
kerning first=86 second=65 amount=-4
kerning first=86 second=196 amount=-4
kerning first=86 second=65 amount=-4
kerning first=86 second=195 amount=-4
kerning first=86 second=65 amount=-4
kerning first=86 second=165 amount=-4
kerning first=86 second=65 amount=-4
kerning first=86 second=74 amount=-6
kerning first=86 second=97 amount=-3
kerning first=86 second=99 amount=-6
kerning first=86 second=100 amount=-6
kerning first=86 second=101 amount=-6
kerning first=86 second=103 amount=-6
kerning first=86 second=109 amount=-3
kerning first=86 second=110 amount=-3
kerning first=86 second=111 amount=-6
kerning first=86 second=112 amount=-3
kerning first=86 second=113 amount=-6
kerning first=86 second=114 amount=-3
kerning first=86 second=115 amount=-6
kerning first=86 second=117 amount=-3
kerning first=86 second=118 amount=-3
kerning first=86 second=119 amount=-3
kerning first=86 second=120 amount=-3
kerning first=86 second=121 amount=-3
kerning first=86 second=122 amount=-3
kerning first=86 second=97 amount=-3
kerning first=86 second=225 amount=-3
kerning first=86 second=226 amount=-3
kerning first=86 second=97 amount=-3
kerning first=86 second=228 amount=-3
kerning first=86 second=97 amount=-3
kerning first=86 second=227 amount=-3
kerning first=86 second=97 amount=-3
kerning first=86 second=185 amount=-3
kerning first=86 second=97 amount=-3
kerning first=86 second=230 amount=-6
kerning first=86 second=99 amount=-6
kerning first=86 second=232 amount=-6
kerning first=86 second=99 amount=-6
kerning first=86 second=231 amount=-6
kerning first=86 second=239 amount=-6
kerning first=86 second=240 amount=-6
kerning first=86 second=101 amount=-6
kerning first=86 second=233 amount=-6
kerning first=86 second=101 amount=-6
kerning first=86 second=236 amount=-6
kerning first=86 second=235 amount=-6
kerning first=86 second=101 amount=-6
kerning first=86 second=101 amount=-6
kerning first=86 second=101 amount=-6
kerning first=86 second=234 amount=-6
kerning first=86 second=103 amount=-6
kerning first=86 second=103 amount=-6
kerning first=86 second=103 amount=-6
kerning first=86 second=103 amount=-6
kerning first=86 second=105 amount=14
kerning first=86 second=238 amount=10
kerning first=86 second=105 amount=14
kerning first=86 second=105 amount=14
kerning first=86 second=105 amount=10
kerning first=86 second=105 amount=14
kerning first=86 second=105 amount=-3
kerning first=86 second=106 amount=4
kerning first=86 second=241 amount=-3
kerning first=86 second=242 amount=-3
kerning first=86 second=110 amount=-3
kerning first=86 second=110 amount=-3
kerning first=86 second=111 amount=-6
kerning first=86 second=243 amount=-6
kerning first=86 second=244 amount=-6
kerning first=86 second=111 amount=-6
kerning first=86 second=246 amount=-6
kerning first=86 second=111 amount=-6
kerning first=86 second=111 amount=-6
kerning first=86 second=245 amount=-6
kerning first=86 second=111 amount=-6
kerning first=86 second=111 amount=-6
kerning first=86 second=224 amount=-3
kerning first=86 second=248 amount=-3
kerning first=86 second=114 amount=-3
kerning first=86 second=156 amount=-6
kerning first=86 second=115 amount=-6
kerning first=86 second=154 amount=-6
kerning first=86 second=186 amount=-6
kerning first=86 second=117 amount=-3
kerning first=86 second=250 amount=-3
kerning first=86 second=117 amount=-3
kerning first=86 second=117 amount=-3
kerning first=86 second=252 amount=-3
kerning first=86 second=117 amount=-3
kerning first=86 second=117 amount=-3
kerning first=86 second=249 amount=-3
kerning first=86 second=251 amount=-3
kerning first=86 second=117 amount=-3
kerning first=86 second=119 amount=-3
kerning first=86 second=253 amount=-3
kerning first=86 second=121 amount=-3
kerning first=86 second=121 amount=-3
kerning first=86 second=159 amount=-3
kerning first=86 second=158 amount=-3
kerning first=86 second=191 amount=-3
kerning first=86 second=44 amount=-12
kerning first=86 second=59 amount=-4
kerning first=86 second=58 amount=-4
kerning first=86 second=46 amount=-12
kerning first=86 second=133 amount=-12
kerning first=86 second=45 amount=-4
kerning first=86 second=155 amount=-3
kerning first=86 second=187 amount=-3
kerning first=86 second=150 amount=-4
kerning first=86 second=151 amount=-4
kerning first=86 second=111 amount=-6
kerning first=86 second=117 amount=-3
kerning first=87 second=65 amount=-4
kerning first=87 second=74 amount=-6
kerning first=87 second=65 amount=-4
kerning first=87 second=193 amount=-4
kerning first=87 second=194 amount=-4
kerning first=87 second=65 amount=-4
kerning first=87 second=196 amount=-4
kerning first=87 second=65 amount=-4
kerning first=87 second=195 amount=-4
kerning first=87 second=65 amount=-4
kerning first=87 second=165 amount=-4
kerning first=87 second=65 amount=-4
kerning first=87 second=74 amount=-6
kerning first=87 second=97 amount=-3
kerning first=87 second=99 amount=-6
kerning first=87 second=100 amount=-6
kerning first=87 second=101 amount=-6
kerning first=87 second=103 amount=-6
kerning first=87 second=109 amount=-3
kerning first=87 second=110 amount=-3
kerning first=87 second=111 amount=-6
kerning first=87 second=112 amount=-3
kerning first=87 second=113 amount=-6
kerning first=87 second=114 amount=-3
kerning first=87 second=115 amount=-6
kerning first=87 second=117 amount=-3
kerning first=87 second=118 amount=-3
kerning first=87 second=119 amount=-3
kerning first=87 second=120 amount=-3
kerning first=87 second=121 amount=-3
kerning first=87 second=122 amount=-3
kerning first=87 second=97 amount=-3
kerning first=87 second=225 amount=-3
kerning first=87 second=226 amount=-3
kerning first=87 second=97 amount=-3
kerning first=87 second=228 amount=-3
kerning first=87 second=97 amount=-3
kerning first=87 second=227 amount=-3
kerning first=87 second=97 amount=-3
kerning first=87 second=185 amount=-3
kerning first=87 second=97 amount=-3
kerning first=87 second=230 amount=-6
kerning first=87 second=99 amount=-6
kerning first=87 second=232 amount=-6
kerning first=87 second=99 amount=-6
kerning first=87 second=231 amount=-6
kerning first=87 second=239 amount=-6
kerning first=87 second=240 amount=-6
kerning first=87 second=101 amount=-6
kerning first=87 second=233 amount=-6
kerning first=87 second=101 amount=-6
kerning first=87 second=236 amount=-6
kerning first=87 second=235 amount=-6
kerning first=87 second=101 amount=-6
kerning first=87 second=101 amount=-6
kerning first=87 second=101 amount=-6
kerning first=87 second=234 amount=-6
kerning first=87 second=103 amount=-6
kerning first=87 second=103 amount=-6
kerning first=87 second=103 amount=-6
kerning first=87 second=103 amount=-6
kerning first=87 second=105 amount=14
kerning first=87 second=238 amount=10
kerning first=87 second=105 amount=14
kerning first=87 second=105 amount=14
kerning first=87 second=105 amount=10
kerning first=87 second=105 amount=14
kerning first=87 second=105 amount=-3
kerning first=87 second=106 amount=4
kerning first=87 second=241 amount=-3
kerning first=87 second=242 amount=-3
kerning first=87 second=110 amount=-3
kerning first=87 second=110 amount=-3
kerning first=87 second=111 amount=-6
kerning first=87 second=243 amount=-6
kerning first=87 second=244 amount=-6
kerning first=87 second=111 amount=-6
kerning first=87 second=246 amount=-6
kerning first=87 second=111 amount=-6
kerning first=87 second=111 amount=-6
kerning first=87 second=245 amount=-6
kerning first=87 second=111 amount=-6
kerning first=87 second=111 amount=-6
kerning first=87 second=224 amount=-3
kerning first=87 second=248 amount=-3
kerning first=87 second=114 amount=-3
kerning first=87 second=156 amount=-6
kerning first=87 second=115 amount=-6
kerning first=87 second=154 amount=-6
kerning first=87 second=186 amount=-6
kerning first=87 second=117 amount=-3
kerning first=87 second=250 amount=-3
kerning first=87 second=117 amount=-3
kerning first=87 second=117 amount=-3
kerning first=87 second=252 amount=-3
kerning first=87 second=117 amount=-3
kerning first=87 second=117 amount=-3
kerning first=87 second=249 amount=-3
kerning first=87 second=251 amount=-3
kerning first=87 second=117 amount=-3
kerning first=87 second=119 amount=-3
kerning first=87 second=253 amount=-3
kerning first=87 second=121 amount=-3
kerning first=87 second=121 amount=-3
kerning first=87 second=159 amount=-3
kerning first=87 second=158 amount=-3
kerning first=87 second=191 amount=-3
kerning first=87 second=44 amount=-12
kerning first=87 second=59 amount=-4
kerning first=87 second=58 amount=-4
kerning first=87 second=46 amount=-12
kerning first=87 second=133 amount=-12
kerning first=87 second=45 amount=-4
kerning first=87 second=155 amount=-3
kerning first=87 second=187 amount=-3
kerning first=87 second=150 amount=-4
kerning first=87 second=151 amount=-4
kerning first=87 second=111 amount=-6
kerning first=87 second=117 amount=-3
kerning first=89 second=65 amount=-4
kerning first=89 second=74 amount=-6
kerning first=89 second=65 amount=-4
kerning first=89 second=193 amount=-4
kerning first=89 second=194 amount=-4
kerning first=89 second=65 amount=-4
kerning first=89 second=196 amount=-4
kerning first=89 second=65 amount=-4
kerning first=89 second=195 amount=-4
kerning first=89 second=65 amount=-4
kerning first=89 second=165 amount=-4
kerning first=89 second=65 amount=-4
kerning first=89 second=74 amount=-6
kerning first=89 second=97 amount=-3
kerning first=89 second=99 amount=-6
kerning first=89 second=100 amount=-6
kerning first=89 second=101 amount=-6
kerning first=89 second=103 amount=-6
kerning first=89 second=109 amount=-3
kerning first=89 second=110 amount=-3
kerning first=89 second=111 amount=-6
kerning first=89 second=112 amount=-3
kerning first=89 second=113 amount=-6
kerning first=89 second=114 amount=-3
kerning first=89 second=115 amount=-6
kerning first=89 second=117 amount=-3
kerning first=89 second=118 amount=-3
kerning first=89 second=119 amount=-3
kerning first=89 second=120 amount=-3
kerning first=89 second=121 amount=-3
kerning first=89 second=122 amount=-3
kerning first=89 second=97 amount=-3
kerning first=89 second=225 amount=-3
kerning first=89 second=226 amount=-3
kerning first=89 second=97 amount=-3
kerning first=89 second=228 amount=-3
kerning first=89 second=97 amount=-3
kerning first=89 second=227 amount=-3
kerning first=89 second=97 amount=-3
kerning first=89 second=185 amount=-3
kerning first=89 second=97 amount=-3
kerning first=89 second=230 amount=-6
kerning first=89 second=99 amount=-6
kerning first=89 second=232 amount=-6
kerning first=89 second=99 amount=-6
kerning first=89 second=231 amount=-6
kerning first=89 second=239 amount=-6
kerning first=89 second=240 amount=-6
kerning first=89 second=101 amount=-6
kerning first=89 second=233 amount=-6
kerning first=89 second=101 amount=-6
kerning first=89 second=236 amount=-6
kerning first=89 second=235 amount=-6
kerning first=89 second=101 amount=-6
kerning first=89 second=101 amount=-6
kerning first=89 second=101 amount=-6
kerning first=89 second=234 amount=-6
kerning first=89 second=103 amount=-6
kerning first=89 second=103 amount=-6
kerning first=89 second=103 amount=-6
kerning first=89 second=103 amount=-6
kerning first=89 second=105 amount=14
kerning first=89 second=238 amount=10
kerning first=89 second=105 amount=14
kerning first=89 second=105 amount=14
kerning first=89 second=105 amount=10
kerning first=89 second=105 amount=14
kerning first=89 second=105 amount=-3
kerning first=89 second=106 amount=4
kerning first=89 second=241 amount=-3
kerning first=89 second=242 amount=-3
kerning first=89 second=110 amount=-3
kerning first=89 second=110 amount=-3
kerning first=89 second=111 amount=-6
kerning first=89 second=243 amount=-6
kerning first=89 second=244 amount=-6
kerning first=89 second=111 amount=-6
kerning first=89 second=246 amount=-6
kerning first=89 second=111 amount=-6
kerning first=89 second=111 amount=-6
kerning first=89 second=245 amount=-6
kerning first=89 second=111 amount=-6
kerning first=89 second=111 amount=-6
kerning first=89 second=224 amount=-3
kerning first=89 second=248 amount=-3
kerning first=89 second=114 amount=-3
kerning first=89 second=156 amount=-6
kerning first=89 second=115 amount=-6
kerning first=89 second=154 amount=-6
kerning first=89 second=186 amount=-6
kerning first=89 second=117 amount=-3
kerning first=89 second=250 amount=-3
kerning first=89 second=117 amount=-3
kerning first=89 second=117 amount=-3
kerning first=89 second=252 amount=-3
kerning first=89 second=117 amount=-3
kerning first=89 second=117 amount=-3
kerning first=89 second=249 amount=-3
kerning first=89 second=251 amount=-3
kerning first=89 second=117 amount=-3
kerning first=89 second=119 amount=-3
kerning first=89 second=253 amount=-3
kerning first=89 second=121 amount=-3
kerning first=89 second=121 amount=-3
kerning first=89 second=159 amount=-3
kerning first=89 second=158 amount=-3
kerning first=89 second=191 amount=-3
kerning first=89 second=44 amount=-12
kerning first=89 second=59 amount=-4
kerning first=89 second=58 amount=-4
kerning first=89 second=46 amount=-12
kerning first=89 second=133 amount=-12
kerning first=89 second=45 amount=-4
kerning first=89 second=155 amount=-3
kerning first=89 second=187 amount=-3
kerning first=89 second=150 amount=-4
kerning first=89 second=151 amount=-4
kerning first=89 second=111 amount=-6
kerning first=89 second=117 amount=-3
kerning first=65 second=84 amount=-5
kerning first=65 second=85 amount=-2
kerning first=65 second=86 amount=-3
kerning first=65 second=87 amount=-3
kerning first=65 second=89 amount=-5
kerning first=65 second=141 amount=-5
kerning first=65 second=84 amount=-3
kerning first=65 second=85 amount=-2
kerning first=65 second=218 amount=-2
kerning first=65 second=85 amount=-2
kerning first=65 second=85 amount=-2
kerning first=65 second=220 amount=-2
kerning first=65 second=85 amount=-2
kerning first=65 second=85 amount=-2
kerning first=65 second=217 amount=-2
kerning first=65 second=219 amount=-2
kerning first=65 second=85 amount=-2
kerning first=65 second=87 amount=-3
kerning first=65 second=221 amount=-5
kerning first=65 second=89 amount=-5
kerning first=65 second=89 amount=-5
kerning first=65 second=118 amount=-2
kerning first=65 second=119 amount=-2
kerning first=65 second=121 amount=-2
kerning first=65 second=119 amount=-2
kerning first=65 second=253 amount=-2
kerning first=65 second=121 amount=-2
kerning first=65 second=121 amount=-2
kerning first=65 second=146 amount=-10
kerning first=65 second=148 amount=-10
kerning first=65 second=39 amount=-10
kerning first=65 second=34 amount=-10
kerning first=65 second=85 amount=-2
kerning first=193 second=84 amount=-5
kerning first=193 second=85 amount=-2
kerning first=193 second=86 amount=-3
kerning first=193 second=87 amount=-3
kerning first=193 second=89 amount=-5
kerning first=193 second=141 amount=-5
kerning first=193 second=84 amount=-3
kerning first=193 second=85 amount=-2
kerning first=193 second=218 amount=-2
kerning first=193 second=85 amount=-2
kerning first=193 second=85 amount=-2
kerning first=193 second=220 amount=-2
kerning first=193 second=85 amount=-2
kerning first=193 second=85 amount=-2
kerning first=193 second=217 amount=-2
kerning first=193 second=219 amount=-2
kerning first=193 second=85 amount=-2
kerning first=193 second=87 amount=-3
kerning first=193 second=221 amount=-5
kerning first=193 second=89 amount=-5
kerning first=193 second=89 amount=-5
kerning first=193 second=118 amount=-2
kerning first=193 second=119 amount=-2
kerning first=193 second=121 amount=-2
kerning first=193 second=119 amount=-2
kerning first=193 second=253 amount=-2
kerning first=193 second=121 amount=-2
kerning first=193 second=121 amount=-2
kerning first=193 second=146 amount=-10
kerning first=193 second=148 amount=-10
kerning first=193 second=39 amount=-10
kerning first=193 second=34 amount=-10
kerning first=193 second=85 amount=-2
kerning first=194 second=84 amount=-5
kerning first=194 second=85 amount=-2
kerning first=194 second=86 amount=-3
kerning first=194 second=87 amount=-3
kerning first=194 second=89 amount=-5
kerning first=194 second=141 amount=-5
kerning first=194 second=84 amount=-3
kerning first=194 second=85 amount=-2
kerning first=194 second=218 amount=-2
kerning first=194 second=85 amount=-2
kerning first=194 second=85 amount=-2
kerning first=194 second=220 amount=-2
kerning first=194 second=85 amount=-2
kerning first=194 second=85 amount=-2
kerning first=194 second=217 amount=-2
kerning first=194 second=219 amount=-2
kerning first=194 second=85 amount=-2
kerning first=194 second=87 amount=-3
kerning first=194 second=221 amount=-5
kerning first=194 second=89 amount=-5
kerning first=194 second=89 amount=-5
kerning first=194 second=118 amount=-2
kerning first=194 second=119 amount=-2
kerning first=194 second=121 amount=-2
kerning first=194 second=119 amount=-2
kerning first=194 second=253 amount=-2
kerning first=194 second=121 amount=-2
kerning first=194 second=121 amount=-2
kerning first=194 second=146 amount=-10
kerning first=194 second=148 amount=-10
kerning first=194 second=39 amount=-10
kerning first=194 second=34 amount=-10
kerning first=194 second=85 amount=-2
kerning first=65 second=84 amount=-5
kerning first=65 second=85 amount=-2
kerning first=65 second=86 amount=-3
kerning first=65 second=87 amount=-3
kerning first=65 second=89 amount=-5
kerning first=65 second=141 amount=-5
kerning first=65 second=84 amount=-3
kerning first=65 second=85 amount=-2
kerning first=65 second=218 amount=-2
kerning first=65 second=85 amount=-2
kerning first=65 second=85 amount=-2
kerning first=65 second=220 amount=-2
kerning first=65 second=85 amount=-2
kerning first=65 second=85 amount=-2
kerning first=65 second=217 amount=-2
kerning first=65 second=219 amount=-2
kerning first=65 second=85 amount=-2
kerning first=65 second=87 amount=-3
kerning first=65 second=221 amount=-5
kerning first=65 second=89 amount=-5
kerning first=65 second=89 amount=-5
kerning first=65 second=118 amount=-2
kerning first=65 second=119 amount=-2
kerning first=65 second=121 amount=-2
kerning first=65 second=119 amount=-2
kerning first=65 second=253 amount=-2
kerning first=65 second=121 amount=-2
kerning first=65 second=121 amount=-2
kerning first=65 second=146 amount=-10
kerning first=65 second=148 amount=-10
kerning first=65 second=39 amount=-10
kerning first=65 second=34 amount=-10
kerning first=65 second=85 amount=-2
kerning first=196 second=84 amount=-5
kerning first=196 second=85 amount=-2
kerning first=196 second=86 amount=-3
kerning first=196 second=87 amount=-3
kerning first=196 second=89 amount=-5
kerning first=196 second=141 amount=-5
kerning first=196 second=84 amount=-3
kerning first=196 second=85 amount=-2
kerning first=196 second=218 amount=-2
kerning first=196 second=85 amount=-2
kerning first=196 second=85 amount=-2
kerning first=196 second=220 amount=-2
kerning first=196 second=85 amount=-2
kerning first=196 second=85 amount=-2
kerning first=196 second=217 amount=-2
kerning first=196 second=219 amount=-2
kerning first=196 second=85 amount=-2
kerning first=196 second=87 amount=-3
kerning first=196 second=221 amount=-5
kerning first=196 second=89 amount=-5
kerning first=196 second=89 amount=-5
kerning first=196 second=118 amount=-2
kerning first=196 second=119 amount=-2
kerning first=196 second=121 amount=-2
kerning first=196 second=119 amount=-2
kerning first=196 second=253 amount=-2
kerning first=196 second=121 amount=-2
kerning first=196 second=121 amount=-2
kerning first=196 second=146 amount=-10
kerning first=196 second=148 amount=-10
kerning first=196 second=39 amount=-10
kerning first=196 second=34 amount=-10
kerning first=196 second=85 amount=-2
kerning first=65 second=84 amount=-5
kerning first=65 second=85 amount=-2
kerning first=65 second=86 amount=-3
kerning first=65 second=87 amount=-3
kerning first=65 second=89 amount=-5
kerning first=65 second=141 amount=-5
kerning first=65 second=84 amount=-3
kerning first=65 second=85 amount=-2
kerning first=65 second=218 amount=-2
kerning first=65 second=85 amount=-2
kerning first=65 second=85 amount=-2
kerning first=65 second=220 amount=-2
kerning first=65 second=85 amount=-2
kerning first=65 second=85 amount=-2
kerning first=65 second=217 amount=-2
kerning first=65 second=219 amount=-2
kerning first=65 second=85 amount=-2
kerning first=65 second=87 amount=-3
kerning first=65 second=221 amount=-5
kerning first=65 second=89 amount=-5
kerning first=65 second=89 amount=-5
kerning first=65 second=118 amount=-2
kerning first=65 second=119 amount=-2
kerning first=65 second=121 amount=-2
kerning first=65 second=119 amount=-2
kerning first=65 second=253 amount=-2
kerning first=65 second=121 amount=-2
kerning first=65 second=121 amount=-2
kerning first=65 second=146 amount=-10
kerning first=65 second=148 amount=-10
kerning first=65 second=39 amount=-10
kerning first=65 second=34 amount=-10
kerning first=65 second=85 amount=-2
kerning first=195 second=84 amount=-5
kerning first=195 second=85 amount=-2
kerning first=195 second=86 amount=-3
kerning first=195 second=87 amount=-3
kerning first=195 second=89 amount=-5
kerning first=195 second=141 amount=-5
kerning first=195 second=84 amount=-3
kerning first=195 second=85 amount=-2
kerning first=195 second=218 amount=-2
kerning first=195 second=85 amount=-2
kerning first=195 second=85 amount=-2
kerning first=195 second=220 amount=-2
kerning first=195 second=85 amount=-2
kerning first=195 second=85 amount=-2
kerning first=195 second=217 amount=-2
kerning first=195 second=219 amount=-2
kerning first=195 second=85 amount=-2
kerning first=195 second=87 amount=-3
kerning first=195 second=221 amount=-5
kerning first=195 second=89 amount=-5
kerning first=195 second=89 amount=-5
kerning first=195 second=118 amount=-2
kerning first=195 second=119 amount=-2
kerning first=195 second=121 amount=-2
kerning first=195 second=119 amount=-2
kerning first=195 second=253 amount=-2
kerning first=195 second=121 amount=-2
kerning first=195 second=121 amount=-2
kerning first=195 second=146 amount=-10
kerning first=195 second=148 amount=-10
kerning first=195 second=39 amount=-10
kerning first=195 second=34 amount=-10
kerning first=195 second=85 amount=-2
kerning first=65 second=84 amount=-5
kerning first=65 second=85 amount=-2
kerning first=65 second=86 amount=-3
kerning first=65 second=87 amount=-3
kerning first=65 second=89 amount=-5
kerning first=65 second=141 amount=-5
kerning first=65 second=84 amount=-3
kerning first=65 second=85 amount=-2
kerning first=65 second=218 amount=-2
kerning first=65 second=85 amount=-2
kerning first=65 second=85 amount=-2
kerning first=65 second=220 amount=-2
kerning first=65 second=85 amount=-2
kerning first=65 second=85 amount=-2
kerning first=65 second=217 amount=-2
kerning first=65 second=219 amount=-2
kerning first=65 second=85 amount=-2
kerning first=65 second=87 amount=-3
kerning first=65 second=221 amount=-5
kerning first=65 second=89 amount=-5
kerning first=65 second=89 amount=-5
kerning first=65 second=118 amount=-2
kerning first=65 second=119 amount=-2
kerning first=65 second=121 amount=-2
kerning first=65 second=119 amount=-2
kerning first=65 second=253 amount=-2
kerning first=65 second=121 amount=-2
kerning first=65 second=121 amount=-2
kerning first=65 second=146 amount=-10
kerning first=65 second=148 amount=-10
kerning first=65 second=39 amount=-10
kerning first=65 second=34 amount=-10
kerning first=65 second=85 amount=-2
kerning first=165 second=84 amount=-5
kerning first=165 second=85 amount=-2
kerning first=165 second=86 amount=-3
kerning first=165 second=87 amount=-3
kerning first=165 second=89 amount=-5
kerning first=165 second=141 amount=-5
kerning first=165 second=84 amount=-3
kerning first=165 second=85 amount=-2
kerning first=165 second=218 amount=-2
kerning first=165 second=85 amount=-2
kerning first=165 second=85 amount=-2
kerning first=165 second=220 amount=-2
kerning first=165 second=85 amount=-2
kerning first=165 second=85 amount=-2
kerning first=165 second=217 amount=-2
kerning first=165 second=219 amount=-2
kerning first=165 second=85 amount=-2
kerning first=165 second=87 amount=-3
kerning first=165 second=221 amount=-5
kerning first=165 second=89 amount=-5
kerning first=165 second=89 amount=-5
kerning first=165 second=118 amount=-2
kerning first=165 second=119 amount=-2
kerning first=165 second=121 amount=-2
kerning first=165 second=119 amount=-2
kerning first=165 second=253 amount=-2
kerning first=165 second=121 amount=-2
kerning first=165 second=121 amount=-2
kerning first=165 second=146 amount=-10
kerning first=165 second=148 amount=-10
kerning first=165 second=39 amount=-10
kerning first=165 second=34 amount=-10
kerning first=165 second=85 amount=-2
kerning first=207 second=67 amount=2
kerning first=207 second=71 amount=2
kerning first=207 second=79 amount=2
kerning first=207 second=81 amount=2
kerning first=207 second=198 amount=2
kerning first=207 second=67 amount=2
kerning first=207 second=200 amount=2
kerning first=207 second=67 amount=2
kerning first=207 second=199 amount=2
kerning first=207 second=71 amount=2
kerning first=207 second=71 amount=2
kerning first=207 second=71 amount=2
kerning first=207 second=71 amount=2
kerning first=207 second=79 amount=2
kerning first=207 second=211 amount=2
kerning first=207 second=212 amount=2
kerning first=207 second=79 amount=2
kerning first=207 second=214 amount=2
kerning first=207 second=79 amount=2
kerning first=207 second=79 amount=2
kerning first=207 second=213 amount=2
kerning first=207 second=79 amount=2
kerning first=207 second=79 amount=2
kerning first=207 second=79 amount=2
kerning first=208 second=67 amount=2
kerning first=208 second=71 amount=2
kerning first=208 second=79 amount=2
kerning first=208 second=81 amount=2
kerning first=208 second=198 amount=2
kerning first=208 second=67 amount=2
kerning first=208 second=200 amount=2
kerning first=208 second=67 amount=2
kerning first=208 second=199 amount=2
kerning first=208 second=71 amount=2
kerning first=208 second=71 amount=2
kerning first=208 second=71 amount=2
kerning first=208 second=71 amount=2
kerning first=208 second=79 amount=2
kerning first=208 second=211 amount=2
kerning first=208 second=212 amount=2
kerning first=208 second=79 amount=2
kerning first=208 second=214 amount=2
kerning first=208 second=79 amount=2
kerning first=208 second=79 amount=2
kerning first=208 second=213 amount=2
kerning first=208 second=79 amount=2
kerning first=208 second=79 amount=2
kerning first=208 second=79 amount=2
kerning first=74 second=65 amount=-2
kerning first=74 second=65 amount=-2
kerning first=74 second=193 amount=-2
kerning first=74 second=194 amount=-2
kerning first=74 second=65 amount=-2
kerning first=74 second=196 amount=-2
kerning first=74 second=65 amount=-2
kerning first=74 second=195 amount=-2
kerning first=74 second=65 amount=-2
kerning first=74 second=165 amount=-2
kerning first=74 second=65 amount=-2
kerning first=197 second=84 amount=-7
kerning first=197 second=86 amount=-6
kerning first=197 second=87 amount=-6
kerning first=197 second=89 amount=-7
kerning first=197 second=141 amount=-7
kerning first=197 second=84 amount=-6
kerning first=197 second=87 amount=-6
kerning first=197 second=221 amount=-7
kerning first=197 second=89 amount=-7
kerning first=197 second=89 amount=-7
kerning first=197 second=118 amount=-5
kerning first=197 second=119 amount=-5
kerning first=197 second=121 amount=-5
kerning first=197 second=119 amount=-5
kerning first=197 second=253 amount=-5
kerning first=197 second=121 amount=-5
kerning first=197 second=121 amount=-5
kerning first=197 second=146 amount=-10
kerning first=197 second=148 amount=-10
kerning first=197 second=39 amount=-10
kerning first=197 second=34 amount=-10
kerning first=188 second=84 amount=6
kerning first=188 second=86 amount=6
kerning first=188 second=87 amount=6
kerning first=188 second=89 amount=6
kerning first=188 second=141 amount=6
kerning first=188 second=84 amount=6
kerning first=188 second=87 amount=6
kerning first=188 second=221 amount=6
kerning first=188 second=89 amount=6
kerning first=188 second=89 amount=6
kerning first=76 second=84 amount=-7
kerning first=76 second=86 amount=-6
kerning first=76 second=87 amount=-6
kerning first=76 second=89 amount=-7
kerning first=76 second=141 amount=-7
kerning first=76 second=84 amount=-6
kerning first=76 second=87 amount=-6
kerning first=76 second=221 amount=-7
kerning first=76 second=89 amount=-7
kerning first=76 second=89 amount=-7
kerning first=76 second=118 amount=-5
kerning first=76 second=119 amount=-5
kerning first=76 second=121 amount=-5
kerning first=76 second=119 amount=-5
kerning first=76 second=253 amount=-5
kerning first=76 second=121 amount=-5
kerning first=76 second=121 amount=-5
kerning first=76 second=146 amount=-10
kerning first=76 second=148 amount=-10
kerning first=76 second=39 amount=-10
kerning first=76 second=34 amount=-10
kerning first=79 second=67 amount=2
kerning first=79 second=71 amount=2
kerning first=79 second=79 amount=2
kerning first=79 second=81 amount=2
kerning first=79 second=198 amount=2
kerning first=79 second=67 amount=2
kerning first=79 second=200 amount=2
kerning first=79 second=67 amount=2
kerning first=79 second=199 amount=2
kerning first=79 second=71 amount=2
kerning first=79 second=71 amount=2
kerning first=79 second=71 amount=2
kerning first=79 second=71 amount=2
kerning first=79 second=79 amount=2
kerning first=79 second=211 amount=2
kerning first=79 second=212 amount=2
kerning first=79 second=79 amount=2
kerning first=79 second=214 amount=2
kerning first=79 second=79 amount=2
kerning first=79 second=79 amount=2
kerning first=79 second=213 amount=2
kerning first=79 second=79 amount=2
kerning first=79 second=79 amount=2
kerning first=79 second=79 amount=2
kerning first=211 second=67 amount=2
kerning first=211 second=71 amount=2
kerning first=211 second=79 amount=2
kerning first=211 second=81 amount=2
kerning first=211 second=198 amount=2
kerning first=211 second=67 amount=2
kerning first=211 second=200 amount=2
kerning first=211 second=67 amount=2
kerning first=211 second=199 amount=2
kerning first=211 second=71 amount=2
kerning first=211 second=71 amount=2
kerning first=211 second=71 amount=2
kerning first=211 second=71 amount=2
kerning first=211 second=79 amount=2
kerning first=211 second=211 amount=2
kerning first=211 second=212 amount=2
kerning first=211 second=79 amount=2
kerning first=211 second=214 amount=2
kerning first=211 second=79 amount=2
kerning first=211 second=79 amount=2
kerning first=211 second=213 amount=2
kerning first=211 second=79 amount=2
kerning first=211 second=79 amount=2
kerning first=211 second=79 amount=2
kerning first=212 second=67 amount=2
kerning first=212 second=71 amount=2
kerning first=212 second=79 amount=2
kerning first=212 second=81 amount=2
kerning first=212 second=198 amount=2
kerning first=212 second=67 amount=2
kerning first=212 second=200 amount=2
kerning first=212 second=67 amount=2
kerning first=212 second=199 amount=2
kerning first=212 second=71 amount=2
kerning first=212 second=71 amount=2
kerning first=212 second=71 amount=2
kerning first=212 second=71 amount=2
kerning first=212 second=79 amount=2
kerning first=212 second=211 amount=2
kerning first=212 second=212 amount=2
kerning first=212 second=79 amount=2
kerning first=212 second=214 amount=2
kerning first=212 second=79 amount=2
kerning first=212 second=79 amount=2
kerning first=212 second=213 amount=2
kerning first=212 second=79 amount=2
kerning first=212 second=79 amount=2
kerning first=212 second=79 amount=2
kerning first=79 second=67 amount=2
kerning first=79 second=71 amount=2
kerning first=79 second=79 amount=2
kerning first=79 second=81 amount=2
kerning first=79 second=198 amount=2
kerning first=79 second=67 amount=2
kerning first=79 second=200 amount=2
kerning first=79 second=67 amount=2
kerning first=79 second=199 amount=2
kerning first=79 second=71 amount=2
kerning first=79 second=71 amount=2
kerning first=79 second=71 amount=2
kerning first=79 second=71 amount=2
kerning first=79 second=79 amount=2
kerning first=79 second=211 amount=2
kerning first=79 second=212 amount=2
kerning first=79 second=79 amount=2
kerning first=79 second=214 amount=2
kerning first=79 second=79 amount=2
kerning first=79 second=79 amount=2
kerning first=79 second=213 amount=2
kerning first=79 second=79 amount=2
kerning first=79 second=79 amount=2
kerning first=79 second=79 amount=2
kerning first=214 second=67 amount=2
kerning first=214 second=71 amount=2
kerning first=214 second=79 amount=2
kerning first=214 second=81 amount=2
kerning first=214 second=198 amount=2
kerning first=214 second=67 amount=2
kerning first=214 second=200 amount=2
kerning first=214 second=67 amount=2
kerning first=214 second=199 amount=2
kerning first=214 second=71 amount=2
kerning first=214 second=71 amount=2
kerning first=214 second=71 amount=2
kerning first=214 second=71 amount=2
kerning first=214 second=79 amount=2
kerning first=214 second=211 amount=2
kerning first=214 second=212 amount=2
kerning first=214 second=79 amount=2
kerning first=214 second=214 amount=2
kerning first=214 second=79 amount=2
kerning first=214 second=79 amount=2
kerning first=214 second=213 amount=2
kerning first=214 second=79 amount=2
kerning first=214 second=79 amount=2
kerning first=214 second=79 amount=2
kerning first=79 second=67 amount=2
kerning first=79 second=71 amount=2
kerning first=79 second=79 amount=2
kerning first=79 second=81 amount=2
kerning first=79 second=198 amount=2
kerning first=79 second=67 amount=2
kerning first=79 second=200 amount=2
kerning first=79 second=67 amount=2
kerning first=79 second=199 amount=2
kerning first=79 second=71 amount=2
kerning first=79 second=71 amount=2
kerning first=79 second=71 amount=2
kerning first=79 second=71 amount=2
kerning first=79 second=79 amount=2
kerning first=79 second=211 amount=2
kerning first=79 second=212 amount=2
kerning first=79 second=79 amount=2
kerning first=79 second=214 amount=2
kerning first=79 second=79 amount=2
kerning first=79 second=79 amount=2
kerning first=79 second=213 amount=2
kerning first=79 second=79 amount=2
kerning first=79 second=79 amount=2
kerning first=79 second=79 amount=2
kerning first=79 second=67 amount=2
kerning first=79 second=71 amount=2
kerning first=79 second=79 amount=2
kerning first=79 second=81 amount=2
kerning first=79 second=198 amount=2
kerning first=79 second=67 amount=2
kerning first=79 second=200 amount=2
kerning first=79 second=67 amount=2
kerning first=79 second=199 amount=2
kerning first=79 second=71 amount=2
kerning first=79 second=71 amount=2
kerning first=79 second=71 amount=2
kerning first=79 second=71 amount=2
kerning first=79 second=79 amount=2
kerning first=79 second=211 amount=2
kerning first=79 second=212 amount=2
kerning first=79 second=79 amount=2
kerning first=79 second=214 amount=2
kerning first=79 second=79 amount=2
kerning first=79 second=79 amount=2
kerning first=79 second=213 amount=2
kerning first=79 second=79 amount=2
kerning first=79 second=79 amount=2
kerning first=79 second=79 amount=2
kerning first=213 second=67 amount=2
kerning first=213 second=71 amount=2
kerning first=213 second=79 amount=2
kerning first=213 second=81 amount=2
kerning first=213 second=198 amount=2
kerning first=213 second=67 amount=2
kerning first=213 second=200 amount=2
kerning first=213 second=67 amount=2
kerning first=213 second=199 amount=2
kerning first=213 second=71 amount=2
kerning first=213 second=71 amount=2
kerning first=213 second=71 amount=2
kerning first=213 second=71 amount=2
kerning first=213 second=79 amount=2
kerning first=213 second=211 amount=2
kerning first=213 second=212 amount=2
kerning first=213 second=79 amount=2
kerning first=213 second=214 amount=2
kerning first=213 second=79 amount=2
kerning first=213 second=79 amount=2
kerning first=213 second=213 amount=2
kerning first=213 second=79 amount=2
kerning first=213 second=79 amount=2
kerning first=213 second=79 amount=2
kerning first=79 second=67 amount=2
kerning first=79 second=71 amount=2
kerning first=79 second=79 amount=2
kerning first=79 second=81 amount=2
kerning first=79 second=198 amount=2
kerning first=79 second=67 amount=2
kerning first=79 second=200 amount=2
kerning first=79 second=67 amount=2
kerning first=79 second=199 amount=2
kerning first=79 second=71 amount=2
kerning first=79 second=71 amount=2
kerning first=79 second=71 amount=2
kerning first=79 second=71 amount=2
kerning first=79 second=79 amount=2
kerning first=79 second=211 amount=2
kerning first=79 second=212 amount=2
kerning first=79 second=79 amount=2
kerning first=79 second=214 amount=2
kerning first=79 second=79 amount=2
kerning first=79 second=79 amount=2
kerning first=79 second=213 amount=2
kerning first=79 second=79 amount=2
kerning first=79 second=79 amount=2
kerning first=79 second=79 amount=2
kerning first=141 second=65 amount=-4
kerning first=141 second=74 amount=-6
kerning first=141 second=65 amount=-4
kerning first=141 second=193 amount=-4
kerning first=141 second=194 amount=-4
kerning first=141 second=65 amount=-4
kerning first=141 second=196 amount=-4
kerning first=141 second=65 amount=-4
kerning first=141 second=195 amount=-4
kerning first=141 second=65 amount=-4
kerning first=141 second=165 amount=-4
kerning first=141 second=65 amount=-4
kerning first=141 second=74 amount=-6
kerning first=141 second=97 amount=-8
kerning first=141 second=99 amount=-12
kerning first=141 second=100 amount=-12
kerning first=141 second=101 amount=-12
kerning first=141 second=103 amount=-12
kerning first=141 second=109 amount=-8
kerning first=141 second=110 amount=-8
kerning first=141 second=111 amount=-12
kerning first=141 second=112 amount=-8
kerning first=141 second=113 amount=-12
kerning first=141 second=114 amount=-8
kerning first=141 second=115 amount=-12
kerning first=141 second=117 amount=-8
kerning first=141 second=118 amount=-8
kerning first=141 second=119 amount=-8
kerning first=141 second=120 amount=-8
kerning first=141 second=121 amount=-8
kerning first=141 second=122 amount=-8
kerning first=141 second=97 amount=-8
kerning first=141 second=225 amount=-8
kerning first=141 second=226 amount=-8
kerning first=141 second=97 amount=-8
kerning first=141 second=228 amount=-8
kerning first=141 second=97 amount=-8
kerning first=141 second=227 amount=-8
kerning first=141 second=97 amount=-8
kerning first=141 second=185 amount=-8
kerning first=141 second=97 amount=-8
kerning first=141 second=230 amount=-12
kerning first=141 second=99 amount=-12
kerning first=141 second=232 amount=-12
kerning first=141 second=99 amount=-12
kerning first=141 second=231 amount=-12
kerning first=141 second=239 amount=-12
kerning first=141 second=240 amount=-12
kerning first=141 second=101 amount=-12
kerning first=141 second=233 amount=-12
kerning first=141 second=101 amount=-12
kerning first=141 second=236 amount=-12
kerning first=141 second=235 amount=-12
kerning first=141 second=101 amount=-12
kerning first=141 second=101 amount=-12
kerning first=141 second=101 amount=-12
kerning first=141 second=234 amount=-12
kerning first=141 second=103 amount=-12
kerning first=141 second=103 amount=-12
kerning first=141 second=103 amount=-12
kerning first=141 second=103 amount=-12
kerning first=141 second=105 amount=10
kerning first=141 second=238 amount=10
kerning first=141 second=105 amount=14
kerning first=141 second=105 amount=12
kerning first=141 second=105 amount=10
kerning first=141 second=105 amount=12
kerning first=141 second=105 amount=-8
kerning first=141 second=241 amount=-8
kerning first=141 second=242 amount=-8
kerning first=141 second=110 amount=-8
kerning first=141 second=110 amount=-8
kerning first=141 second=111 amount=-12
kerning first=141 second=243 amount=-12
kerning first=141 second=244 amount=-12
kerning first=141 second=111 amount=-12
kerning first=141 second=246 amount=-12
kerning first=141 second=111 amount=-12
kerning first=141 second=111 amount=-12
kerning first=141 second=245 amount=-12
kerning first=141 second=111 amount=-12
kerning first=141 second=111 amount=-12
kerning first=141 second=224 amount=-8
kerning first=141 second=248 amount=-8
kerning first=141 second=114 amount=-8
kerning first=141 second=156 amount=-12
kerning first=141 second=115 amount=-12
kerning first=141 second=154 amount=-12
kerning first=141 second=186 amount=-12
kerning first=141 second=117 amount=-8
kerning first=141 second=250 amount=-8
kerning first=141 second=117 amount=-8
kerning first=141 second=117 amount=-8
kerning first=141 second=252 amount=-8
kerning first=141 second=117 amount=-8
kerning first=141 second=117 amount=-8
kerning first=141 second=249 amount=-8
kerning first=141 second=251 amount=-8
kerning first=141 second=117 amount=-8
kerning first=141 second=119 amount=-8
kerning first=141 second=253 amount=-8
kerning first=141 second=121 amount=-8
kerning first=141 second=121 amount=-8
kerning first=141 second=159 amount=-8
kerning first=141 second=158 amount=-8
kerning first=141 second=191 amount=-8
kerning first=141 second=44 amount=-12
kerning first=141 second=59 amount=-5
kerning first=141 second=58 amount=-5
kerning first=141 second=46 amount=-12
kerning first=141 second=133 amount=-12
kerning first=141 second=45 amount=-6
kerning first=141 second=155 amount=-6
kerning first=141 second=187 amount=-6
kerning first=141 second=150 amount=-6
kerning first=141 second=151 amount=-6
kerning first=141 second=111 amount=-12
kerning first=141 second=117 amount=-8
kerning first=84 second=65 amount=-4
kerning first=84 second=74 amount=-5
kerning first=84 second=65 amount=-4
kerning first=84 second=193 amount=-4
kerning first=84 second=194 amount=-4
kerning first=84 second=65 amount=-4
kerning first=84 second=196 amount=-4
kerning first=84 second=65 amount=-4
kerning first=84 second=195 amount=-4
kerning first=84 second=65 amount=-4
kerning first=84 second=165 amount=-4
kerning first=84 second=65 amount=-4
kerning first=84 second=74 amount=-5
kerning first=84 second=97 amount=-3
kerning first=84 second=99 amount=-6
kerning first=84 second=100 amount=-6
kerning first=84 second=101 amount=-6
kerning first=84 second=103 amount=-6
kerning first=84 second=109 amount=-3
kerning first=84 second=110 amount=-3
kerning first=84 second=111 amount=-6
kerning first=84 second=112 amount=-3
kerning first=84 second=113 amount=-6
kerning first=84 second=114 amount=-3
kerning first=84 second=115 amount=-6
kerning first=84 second=117 amount=-3
kerning first=84 second=118 amount=-3
kerning first=84 second=119 amount=-3
kerning first=84 second=120 amount=-3
kerning first=84 second=121 amount=-3
kerning first=84 second=122 amount=-3
kerning first=84 second=97 amount=-3
kerning first=84 second=225 amount=-3
kerning first=84 second=226 amount=-3
kerning first=84 second=97 amount=-3
kerning first=84 second=228 amount=-3
kerning first=84 second=97 amount=-3
kerning first=84 second=227 amount=-3
kerning first=84 second=97 amount=-3
kerning first=84 second=185 amount=-3
kerning first=84 second=97 amount=-3
kerning first=84 second=230 amount=-6
kerning first=84 second=99 amount=-6
kerning first=84 second=232 amount=-6
kerning first=84 second=99 amount=-6
kerning first=84 second=231 amount=-6
kerning first=84 second=239 amount=-6
kerning first=84 second=240 amount=-6
kerning first=84 second=101 amount=-6
kerning first=84 second=233 amount=-6
kerning first=84 second=101 amount=-6
kerning first=84 second=236 amount=-6
kerning first=84 second=235 amount=-6
kerning first=84 second=101 amount=-6
kerning first=84 second=101 amount=-6
kerning first=84 second=101 amount=-6
kerning first=84 second=234 amount=-6
kerning first=84 second=103 amount=-6
kerning first=84 second=103 amount=-6
kerning first=84 second=103 amount=-6
kerning first=84 second=103 amount=-6
kerning first=84 second=105 amount=10
kerning first=84 second=238 amount=10
kerning first=84 second=105 amount=14
kerning first=84 second=105 amount=12
kerning first=84 second=105 amount=10
kerning first=84 second=105 amount=12
kerning first=84 second=105 amount=-3
kerning first=84 second=241 amount=-3
kerning first=84 second=242 amount=-3
kerning first=84 second=110 amount=-3
kerning first=84 second=110 amount=-3
kerning first=84 second=111 amount=-6
kerning first=84 second=243 amount=-6
kerning first=84 second=244 amount=-6
kerning first=84 second=111 amount=-6
kerning first=84 second=246 amount=-6
kerning first=84 second=111 amount=-6
kerning first=84 second=111 amount=-6
kerning first=84 second=245 amount=-6
kerning first=84 second=111 amount=-6
kerning first=84 second=111 amount=-6
kerning first=84 second=224 amount=-3
kerning first=84 second=248 amount=-3
kerning first=84 second=114 amount=-3
kerning first=84 second=156 amount=-6
kerning first=84 second=115 amount=-6
kerning first=84 second=154 amount=-6
kerning first=84 second=186 amount=-6
kerning first=84 second=117 amount=-3
kerning first=84 second=250 amount=-3
kerning first=84 second=117 amount=-3
kerning first=84 second=117 amount=-3
kerning first=84 second=252 amount=-3
kerning first=84 second=117 amount=-3
kerning first=84 second=117 amount=-3
kerning first=84 second=249 amount=-3
kerning first=84 second=251 amount=-3
kerning first=84 second=117 amount=-3
kerning first=84 second=119 amount=-3
kerning first=84 second=253 amount=-3
kerning first=84 second=121 amount=-3
kerning first=84 second=121 amount=-3
kerning first=84 second=159 amount=-3
kerning first=84 second=158 amount=-3
kerning first=84 second=191 amount=-3
kerning first=84 second=44 amount=-8
kerning first=84 second=59 amount=-4
kerning first=84 second=58 amount=-4
kerning first=84 second=46 amount=-8
kerning first=84 second=133 amount=-8
kerning first=84 second=45 amount=-4
kerning first=84 second=155 amount=-3
kerning first=84 second=187 amount=-3
kerning first=84 second=150 amount=-4
kerning first=84 second=151 amount=-4
kerning first=84 second=111 amount=-6
kerning first=84 second=117 amount=-3
kerning first=85 second=65 amount=-2
kerning first=85 second=65 amount=-2
kerning first=85 second=193 amount=-2
kerning first=85 second=194 amount=-2
kerning first=85 second=65 amount=-2
kerning first=85 second=196 amount=-2
kerning first=85 second=65 amount=-2
kerning first=85 second=195 amount=-2
kerning first=85 second=65 amount=-2
kerning first=85 second=165 amount=-2
kerning first=85 second=65 amount=-2
kerning first=218 second=65 amount=-2
kerning first=218 second=65 amount=-2
kerning first=218 second=193 amount=-2
kerning first=218 second=194 amount=-2
kerning first=218 second=65 amount=-2
kerning first=218 second=196 amount=-2
kerning first=218 second=65 amount=-2
kerning first=218 second=195 amount=-2
kerning first=218 second=65 amount=-2
kerning first=218 second=165 amount=-2
kerning first=218 second=65 amount=-2
kerning first=85 second=65 amount=-2
kerning first=85 second=65 amount=-2
kerning first=85 second=193 amount=-2
kerning first=85 second=194 amount=-2
kerning first=85 second=65 amount=-2
kerning first=85 second=196 amount=-2
kerning first=85 second=65 amount=-2
kerning first=85 second=195 amount=-2
kerning first=85 second=65 amount=-2
kerning first=85 second=165 amount=-2
kerning first=85 second=65 amount=-2
kerning first=85 second=65 amount=-2
kerning first=85 second=65 amount=-2
kerning first=85 second=193 amount=-2
kerning first=85 second=194 amount=-2
kerning first=85 second=65 amount=-2
kerning first=85 second=196 amount=-2
kerning first=85 second=65 amount=-2
kerning first=85 second=195 amount=-2
kerning first=85 second=65 amount=-2
kerning first=85 second=165 amount=-2
kerning first=85 second=65 amount=-2
kerning first=220 second=65 amount=-2
kerning first=220 second=65 amount=-2
kerning first=220 second=193 amount=-2
kerning first=220 second=194 amount=-2
kerning first=220 second=65 amount=-2
kerning first=220 second=196 amount=-2
kerning first=220 second=65 amount=-2
kerning first=220 second=195 amount=-2
kerning first=220 second=65 amount=-2
kerning first=220 second=165 amount=-2
kerning first=220 second=65 amount=-2
kerning first=85 second=65 amount=-2
kerning first=85 second=65 amount=-2
kerning first=85 second=193 amount=-2
kerning first=85 second=194 amount=-2
kerning first=85 second=65 amount=-2
kerning first=85 second=196 amount=-2
kerning first=85 second=65 amount=-2
kerning first=85 second=195 amount=-2
kerning first=85 second=65 amount=-2
kerning first=85 second=165 amount=-2
kerning first=85 second=65 amount=-2
kerning first=85 second=65 amount=-2
kerning first=85 second=65 amount=-2
kerning first=85 second=193 amount=-2
kerning first=85 second=194 amount=-2
kerning first=85 second=65 amount=-2
kerning first=85 second=196 amount=-2
kerning first=85 second=65 amount=-2
kerning first=85 second=195 amount=-2
kerning first=85 second=65 amount=-2
kerning first=85 second=165 amount=-2
kerning first=85 second=65 amount=-2
kerning first=217 second=65 amount=-2
kerning first=217 second=65 amount=-2
kerning first=217 second=193 amount=-2
kerning first=217 second=194 amount=-2
kerning first=217 second=65 amount=-2
kerning first=217 second=196 amount=-2
kerning first=217 second=65 amount=-2
kerning first=217 second=195 amount=-2
kerning first=217 second=65 amount=-2
kerning first=217 second=165 amount=-2
kerning first=217 second=65 amount=-2
kerning first=219 second=65 amount=-2
kerning first=219 second=65 amount=-2
kerning first=219 second=193 amount=-2
kerning first=219 second=194 amount=-2
kerning first=219 second=65 amount=-2
kerning first=219 second=196 amount=-2
kerning first=219 second=65 amount=-2
kerning first=219 second=195 amount=-2
kerning first=219 second=65 amount=-2
kerning first=219 second=165 amount=-2
kerning first=219 second=65 amount=-2
kerning first=85 second=65 amount=-2
kerning first=85 second=65 amount=-2
kerning first=85 second=193 amount=-2
kerning first=85 second=194 amount=-2
kerning first=85 second=65 amount=-2
kerning first=85 second=196 amount=-2
kerning first=85 second=65 amount=-2
kerning first=85 second=195 amount=-2
kerning first=85 second=65 amount=-2
kerning first=85 second=165 amount=-2
kerning first=85 second=65 amount=-2
kerning first=87 second=65 amount=-4
kerning first=87 second=74 amount=-6
kerning first=87 second=65 amount=-4
kerning first=87 second=193 amount=-4
kerning first=87 second=194 amount=-4
kerning first=87 second=65 amount=-4
kerning first=87 second=196 amount=-4
kerning first=87 second=65 amount=-4
kerning first=87 second=195 amount=-4
kerning first=87 second=65 amount=-4
kerning first=87 second=165 amount=-4
kerning first=87 second=65 amount=-4
kerning first=87 second=74 amount=-6
kerning first=87 second=97 amount=-3
kerning first=87 second=99 amount=-6
kerning first=87 second=100 amount=-6
kerning first=87 second=101 amount=-6
kerning first=87 second=103 amount=-6
kerning first=87 second=109 amount=-3
kerning first=87 second=110 amount=-3
kerning first=87 second=111 amount=-6
kerning first=87 second=112 amount=-3
kerning first=87 second=113 amount=-6
kerning first=87 second=114 amount=-3
kerning first=87 second=115 amount=-6
kerning first=87 second=117 amount=-3
kerning first=87 second=118 amount=-3
kerning first=87 second=119 amount=-3
kerning first=87 second=120 amount=-3
kerning first=87 second=121 amount=-3
kerning first=87 second=122 amount=-3
kerning first=87 second=97 amount=-3
kerning first=87 second=225 amount=-3
kerning first=87 second=226 amount=-3
kerning first=87 second=97 amount=-3
kerning first=87 second=228 amount=-3
kerning first=87 second=97 amount=-3
kerning first=87 second=227 amount=-3
kerning first=87 second=97 amount=-3
kerning first=87 second=185 amount=-3
kerning first=87 second=97 amount=-3
kerning first=87 second=230 amount=-6
kerning first=87 second=99 amount=-6
kerning first=87 second=232 amount=-6
kerning first=87 second=99 amount=-6
kerning first=87 second=231 amount=-6
kerning first=87 second=239 amount=-6
kerning first=87 second=240 amount=-6
kerning first=87 second=101 amount=-6
kerning first=87 second=233 amount=-6
kerning first=87 second=101 amount=-6
kerning first=87 second=236 amount=-6
kerning first=87 second=235 amount=-6
kerning first=87 second=101 amount=-6
kerning first=87 second=101 amount=-6
kerning first=87 second=101 amount=-6
kerning first=87 second=234 amount=-6
kerning first=87 second=103 amount=-6
kerning first=87 second=103 amount=-6
kerning first=87 second=103 amount=-6
kerning first=87 second=103 amount=-6
kerning first=87 second=105 amount=14
kerning first=87 second=238 amount=10
kerning first=87 second=105 amount=14
kerning first=87 second=105 amount=14
kerning first=87 second=105 amount=10
kerning first=87 second=105 amount=14
kerning first=87 second=105 amount=-3
kerning first=87 second=241 amount=-3
kerning first=87 second=242 amount=-3
kerning first=87 second=110 amount=-3
kerning first=87 second=110 amount=-3
kerning first=87 second=111 amount=-6
kerning first=87 second=243 amount=-6
kerning first=87 second=244 amount=-6
kerning first=87 second=111 amount=-6
kerning first=87 second=246 amount=-6
kerning first=87 second=111 amount=-6
kerning first=87 second=111 amount=-6
kerning first=87 second=245 amount=-6
kerning first=87 second=111 amount=-6
kerning first=87 second=111 amount=-6
kerning first=87 second=224 amount=-3
kerning first=87 second=248 amount=-3
kerning first=87 second=114 amount=-3
kerning first=87 second=156 amount=-6
kerning first=87 second=115 amount=-6
kerning first=87 second=154 amount=-6
kerning first=87 second=186 amount=-6
kerning first=87 second=117 amount=-3
kerning first=87 second=250 amount=-3
kerning first=87 second=117 amount=-3
kerning first=87 second=117 amount=-3
kerning first=87 second=252 amount=-3
kerning first=87 second=117 amount=-3
kerning first=87 second=117 amount=-3
kerning first=87 second=249 amount=-3
kerning first=87 second=251 amount=-3
kerning first=87 second=117 amount=-3
kerning first=87 second=119 amount=-3
kerning first=87 second=253 amount=-3
kerning first=87 second=121 amount=-3
kerning first=87 second=121 amount=-3
kerning first=87 second=159 amount=-3
kerning first=87 second=158 amount=-3
kerning first=87 second=191 amount=-3
kerning first=87 second=44 amount=-12
kerning first=87 second=59 amount=-4
kerning first=87 second=58 amount=-4
kerning first=87 second=46 amount=-12
kerning first=87 second=133 amount=-12
kerning first=87 second=45 amount=-4
kerning first=87 second=155 amount=-3
kerning first=87 second=187 amount=-3
kerning first=87 second=150 amount=-4
kerning first=87 second=151 amount=-4
kerning first=87 second=111 amount=-6
kerning first=87 second=117 amount=-3
kerning first=221 second=65 amount=-4
kerning first=221 second=74 amount=-6
kerning first=221 second=65 amount=-4
kerning first=221 second=193 amount=-4
kerning first=221 second=194 amount=-4
kerning first=221 second=65 amount=-4
kerning first=221 second=196 amount=-4
kerning first=221 second=65 amount=-4
kerning first=221 second=195 amount=-4
kerning first=221 second=65 amount=-4
kerning first=221 second=165 amount=-4
kerning first=221 second=65 amount=-4
kerning first=221 second=74 amount=-6
kerning first=221 second=97 amount=-3
kerning first=221 second=99 amount=-6
kerning first=221 second=100 amount=-6
kerning first=221 second=101 amount=-6
kerning first=221 second=103 amount=-6
kerning first=221 second=109 amount=-3
kerning first=221 second=110 amount=-3
kerning first=221 second=111 amount=-6
kerning first=221 second=112 amount=-3
kerning first=221 second=113 amount=-6
kerning first=221 second=114 amount=-3
kerning first=221 second=115 amount=-6
kerning first=221 second=117 amount=-3
kerning first=221 second=118 amount=-3
kerning first=221 second=119 amount=-3
kerning first=221 second=120 amount=-3
kerning first=221 second=121 amount=-3
kerning first=221 second=122 amount=-3
kerning first=221 second=97 amount=-3
kerning first=221 second=225 amount=-3
kerning first=221 second=226 amount=-3
kerning first=221 second=97 amount=-3
kerning first=221 second=228 amount=-3
kerning first=221 second=97 amount=-3
kerning first=221 second=227 amount=-3
kerning first=221 second=97 amount=-3
kerning first=221 second=185 amount=-3
kerning first=221 second=97 amount=-3
kerning first=221 second=230 amount=-6
kerning first=221 second=99 amount=-6
kerning first=221 second=232 amount=-6
kerning first=221 second=99 amount=-6
kerning first=221 second=231 amount=-6
kerning first=221 second=239 amount=-6
kerning first=221 second=240 amount=-6
kerning first=221 second=101 amount=-6
kerning first=221 second=233 amount=-6
kerning first=221 second=101 amount=-6
kerning first=221 second=236 amount=-6
kerning first=221 second=235 amount=-6
kerning first=221 second=101 amount=-6
kerning first=221 second=101 amount=-6
kerning first=221 second=101 amount=-6
kerning first=221 second=234 amount=-6
kerning first=221 second=103 amount=-6
kerning first=221 second=103 amount=-6
kerning first=221 second=103 amount=-6
kerning first=221 second=103 amount=-6
kerning first=221 second=105 amount=14
kerning first=221 second=238 amount=10
kerning first=221 second=105 amount=14
kerning first=221 second=105 amount=14
kerning first=221 second=105 amount=10
kerning first=221 second=105 amount=14
kerning first=221 second=105 amount=-3
kerning first=221 second=241 amount=-3
kerning first=221 second=242 amount=-3
kerning first=221 second=110 amount=-3
kerning first=221 second=110 amount=-3
kerning first=221 second=111 amount=-6
kerning first=221 second=243 amount=-6
kerning first=221 second=244 amount=-6
kerning first=221 second=111 amount=-6
kerning first=221 second=246 amount=-6
kerning first=221 second=111 amount=-6
kerning first=221 second=111 amount=-6
kerning first=221 second=245 amount=-6
kerning first=221 second=111 amount=-6
kerning first=221 second=111 amount=-6
kerning first=221 second=224 amount=-3
kerning first=221 second=248 amount=-3
kerning first=221 second=114 amount=-3
kerning first=221 second=156 amount=-6
kerning first=221 second=115 amount=-6
kerning first=221 second=154 amount=-6
kerning first=221 second=186 amount=-6
kerning first=221 second=117 amount=-3
kerning first=221 second=250 amount=-3
kerning first=221 second=117 amount=-3
kerning first=221 second=117 amount=-3
kerning first=221 second=252 amount=-3
kerning first=221 second=117 amount=-3
kerning first=221 second=117 amount=-3
kerning first=221 second=249 amount=-3
kerning first=221 second=251 amount=-3
kerning first=221 second=117 amount=-3
kerning first=221 second=119 amount=-3
kerning first=221 second=253 amount=-3
kerning first=221 second=121 amount=-3
kerning first=221 second=121 amount=-3
kerning first=221 second=159 amount=-3
kerning first=221 second=158 amount=-3
kerning first=221 second=191 amount=-3
kerning first=221 second=44 amount=-12
kerning first=221 second=59 amount=-4
kerning first=221 second=58 amount=-4
kerning first=221 second=46 amount=-12
kerning first=221 second=133 amount=-12
kerning first=221 second=45 amount=-4
kerning first=221 second=155 amount=-3
kerning first=221 second=187 amount=-3
kerning first=221 second=150 amount=-4
kerning first=221 second=151 amount=-4
kerning first=221 second=111 amount=-6
kerning first=221 second=117 amount=-3
kerning first=89 second=65 amount=-4
kerning first=89 second=74 amount=-6
kerning first=89 second=65 amount=-4
kerning first=89 second=193 amount=-4
kerning first=89 second=194 amount=-4
kerning first=89 second=65 amount=-4
kerning first=89 second=196 amount=-4
kerning first=89 second=65 amount=-4
kerning first=89 second=195 amount=-4
kerning first=89 second=65 amount=-4
kerning first=89 second=165 amount=-4
kerning first=89 second=65 amount=-4
kerning first=89 second=74 amount=-6
kerning first=89 second=97 amount=-3
kerning first=89 second=99 amount=-6
kerning first=89 second=100 amount=-6
kerning first=89 second=101 amount=-6
kerning first=89 second=103 amount=-6
kerning first=89 second=109 amount=-3
kerning first=89 second=110 amount=-3
kerning first=89 second=111 amount=-6
kerning first=89 second=112 amount=-3
kerning first=89 second=113 amount=-6
kerning first=89 second=114 amount=-3
kerning first=89 second=115 amount=-6
kerning first=89 second=117 amount=-3
kerning first=89 second=118 amount=-3
kerning first=89 second=119 amount=-3
kerning first=89 second=120 amount=-3
kerning first=89 second=121 amount=-3
kerning first=89 second=122 amount=-3
kerning first=89 second=97 amount=-3
kerning first=89 second=225 amount=-3
kerning first=89 second=226 amount=-3
kerning first=89 second=97 amount=-3
kerning first=89 second=228 amount=-3
kerning first=89 second=97 amount=-3
kerning first=89 second=227 amount=-3
kerning first=89 second=97 amount=-3
kerning first=89 second=185 amount=-3
kerning first=89 second=97 amount=-3
kerning first=89 second=230 amount=-6
kerning first=89 second=99 amount=-6
kerning first=89 second=232 amount=-6
kerning first=89 second=99 amount=-6
kerning first=89 second=231 amount=-6
kerning first=89 second=239 amount=-6
kerning first=89 second=240 amount=-6
kerning first=89 second=101 amount=-6
kerning first=89 second=233 amount=-6
kerning first=89 second=101 amount=-6
kerning first=89 second=236 amount=-6
kerning first=89 second=235 amount=-6
kerning first=89 second=101 amount=-6
kerning first=89 second=101 amount=-6
kerning first=89 second=101 amount=-6
kerning first=89 second=234 amount=-6
kerning first=89 second=103 amount=-6
kerning first=89 second=103 amount=-6
kerning first=89 second=103 amount=-6
kerning first=89 second=103 amount=-6
kerning first=89 second=105 amount=14
kerning first=89 second=238 amount=10
kerning first=89 second=105 amount=14
kerning first=89 second=105 amount=14
kerning first=89 second=105 amount=10
kerning first=89 second=105 amount=14
kerning first=89 second=105 amount=-3
kerning first=89 second=241 amount=-3
kerning first=89 second=242 amount=-3
kerning first=89 second=110 amount=-3
kerning first=89 second=110 amount=-3
kerning first=89 second=111 amount=-6
kerning first=89 second=243 amount=-6
kerning first=89 second=244 amount=-6
kerning first=89 second=111 amount=-6
kerning first=89 second=246 amount=-6
kerning first=89 second=111 amount=-6
kerning first=89 second=111 amount=-6
kerning first=89 second=245 amount=-6
kerning first=89 second=111 amount=-6
kerning first=89 second=111 amount=-6
kerning first=89 second=224 amount=-3
kerning first=89 second=248 amount=-3
kerning first=89 second=114 amount=-3
kerning first=89 second=156 amount=-6
kerning first=89 second=115 amount=-6
kerning first=89 second=154 amount=-6
kerning first=89 second=186 amount=-6
kerning first=89 second=117 amount=-3
kerning first=89 second=250 amount=-3
kerning first=89 second=117 amount=-3
kerning first=89 second=117 amount=-3
kerning first=89 second=252 amount=-3
kerning first=89 second=117 amount=-3
kerning first=89 second=117 amount=-3
kerning first=89 second=249 amount=-3
kerning first=89 second=251 amount=-3
kerning first=89 second=117 amount=-3
kerning first=89 second=119 amount=-3
kerning first=89 second=253 amount=-3
kerning first=89 second=121 amount=-3
kerning first=89 second=121 amount=-3
kerning first=89 second=159 amount=-3
kerning first=89 second=158 amount=-3
kerning first=89 second=191 amount=-3
kerning first=89 second=44 amount=-12
kerning first=89 second=59 amount=-4
kerning first=89 second=58 amount=-4
kerning first=89 second=46 amount=-12
kerning first=89 second=133 amount=-12
kerning first=89 second=45 amount=-4
kerning first=89 second=155 amount=-3
kerning first=89 second=187 amount=-3
kerning first=89 second=150 amount=-4
kerning first=89 second=151 amount=-4
kerning first=89 second=111 amount=-6
kerning first=89 second=117 amount=-3
kerning first=89 second=65 amount=-4
kerning first=89 second=74 amount=-6
kerning first=89 second=65 amount=-4
kerning first=89 second=193 amount=-4
kerning first=89 second=194 amount=-4
kerning first=89 second=65 amount=-4
kerning first=89 second=196 amount=-4
kerning first=89 second=65 amount=-4
kerning first=89 second=195 amount=-4
kerning first=89 second=65 amount=-4
kerning first=89 second=165 amount=-4
kerning first=89 second=65 amount=-4
kerning first=89 second=74 amount=-6
kerning first=89 second=97 amount=-3
kerning first=89 second=99 amount=-6
kerning first=89 second=100 amount=-6
kerning first=89 second=101 amount=-6
kerning first=89 second=103 amount=-6
kerning first=89 second=109 amount=-3
kerning first=89 second=110 amount=-3
kerning first=89 second=111 amount=-6
kerning first=89 second=112 amount=-3
kerning first=89 second=113 amount=-6
kerning first=89 second=114 amount=-3
kerning first=89 second=115 amount=-6
kerning first=89 second=117 amount=-3
kerning first=89 second=118 amount=-3
kerning first=89 second=119 amount=-3
kerning first=89 second=120 amount=-3
kerning first=89 second=121 amount=-3
kerning first=89 second=122 amount=-3
kerning first=89 second=97 amount=-3
kerning first=89 second=225 amount=-3
kerning first=89 second=226 amount=-3
kerning first=89 second=97 amount=-3
kerning first=89 second=228 amount=-3
kerning first=89 second=97 amount=-3
kerning first=89 second=227 amount=-3
kerning first=89 second=97 amount=-3
kerning first=89 second=185 amount=-3
kerning first=89 second=97 amount=-3
kerning first=89 second=230 amount=-6
kerning first=89 second=99 amount=-6
kerning first=89 second=232 amount=-6
kerning first=89 second=99 amount=-6
kerning first=89 second=231 amount=-6
kerning first=89 second=239 amount=-6
kerning first=89 second=240 amount=-6
kerning first=89 second=101 amount=-6
kerning first=89 second=233 amount=-6
kerning first=89 second=101 amount=-6
kerning first=89 second=236 amount=-6
kerning first=89 second=235 amount=-6
kerning first=89 second=101 amount=-6
kerning first=89 second=101 amount=-6
kerning first=89 second=101 amount=-6
kerning first=89 second=234 amount=-6
kerning first=89 second=103 amount=-6
kerning first=89 second=103 amount=-6
kerning first=89 second=103 amount=-6
kerning first=89 second=103 amount=-6
kerning first=89 second=105 amount=14
kerning first=89 second=238 amount=10
kerning first=89 second=105 amount=14
kerning first=89 second=105 amount=14
kerning first=89 second=105 amount=10
kerning first=89 second=105 amount=14
kerning first=89 second=105 amount=-3
kerning first=89 second=241 amount=-3
kerning first=89 second=242 amount=-3
kerning first=89 second=110 amount=-3
kerning first=89 second=110 amount=-3
kerning first=89 second=111 amount=-6
kerning first=89 second=243 amount=-6
kerning first=89 second=244 amount=-6
kerning first=89 second=111 amount=-6
kerning first=89 second=246 amount=-6
kerning first=89 second=111 amount=-6
kerning first=89 second=111 amount=-6
kerning first=89 second=245 amount=-6
kerning first=89 second=111 amount=-6
kerning first=89 second=111 amount=-6
kerning first=89 second=224 amount=-3
kerning first=89 second=248 amount=-3
kerning first=89 second=114 amount=-3
kerning first=89 second=156 amount=-6
kerning first=89 second=115 amount=-6
kerning first=89 second=154 amount=-6
kerning first=89 second=186 amount=-6
kerning first=89 second=117 amount=-3
kerning first=89 second=250 amount=-3
kerning first=89 second=117 amount=-3
kerning first=89 second=117 amount=-3
kerning first=89 second=252 amount=-3
kerning first=89 second=117 amount=-3
kerning first=89 second=117 amount=-3
kerning first=89 second=249 amount=-3
kerning first=89 second=251 amount=-3
kerning first=89 second=117 amount=-3
kerning first=89 second=119 amount=-3
kerning first=89 second=253 amount=-3
kerning first=89 second=121 amount=-3
kerning first=89 second=121 amount=-3
kerning first=89 second=159 amount=-3
kerning first=89 second=158 amount=-3
kerning first=89 second=191 amount=-3
kerning first=89 second=44 amount=-12
kerning first=89 second=59 amount=-4
kerning first=89 second=58 amount=-4
kerning first=89 second=46 amount=-12
kerning first=89 second=133 amount=-12
kerning first=89 second=45 amount=-4
kerning first=89 second=155 amount=-3
kerning first=89 second=187 amount=-3
kerning first=89 second=150 amount=-4
kerning first=89 second=151 amount=-4
kerning first=89 second=111 amount=-6
kerning first=89 second=117 amount=-3
kerning first=102 second=65 amount=-4
kerning first=102 second=74 amount=-6
kerning first=102 second=65 amount=-4
kerning first=102 second=193 amount=-4
kerning first=102 second=194 amount=-4
kerning first=102 second=65 amount=-4
kerning first=102 second=196 amount=-4
kerning first=102 second=65 amount=-4
kerning first=102 second=195 amount=-4
kerning first=102 second=65 amount=-4
kerning first=102 second=165 amount=-4
kerning first=102 second=65 amount=-4
kerning first=102 second=74 amount=-6
kerning first=102 second=104 amount=12
kerning first=102 second=105 amount=14
kerning first=102 second=238 amount=10
kerning first=102 second=105 amount=10
kerning first=102 second=105 amount=10
kerning first=102 second=105 amount=10
kerning first=102 second=105 amount=14
kerning first=102 second=44 amount=-12
kerning first=102 second=46 amount=-12
kerning first=102 second=133 amount=-12
kerning first=114 second=44 amount=-12
kerning first=114 second=46 amount=-12
kerning first=114 second=133 amount=-12
kerning first=118 second=44 amount=-12
kerning first=118 second=46 amount=-12
kerning first=118 second=133 amount=-12
kerning first=119 second=44 amount=-12
kerning first=119 second=46 amount=-12
kerning first=119 second=133 amount=-12
kerning first=121 second=44 amount=-12
kerning first=121 second=46 amount=-12
kerning first=121 second=133 amount=-12
kerning first=224 second=44 amount=-12
kerning first=224 second=46 amount=-12
kerning first=224 second=133 amount=-12
kerning first=248 second=44 amount=-12
kerning first=248 second=46 amount=-12
kerning first=248 second=133 amount=-12
kerning first=114 second=44 amount=-12
kerning first=114 second=46 amount=-12
kerning first=114 second=133 amount=-12
kerning first=119 second=44 amount=-12
kerning first=119 second=46 amount=-12
kerning first=119 second=133 amount=-12
kerning first=253 second=44 amount=-12
kerning first=253 second=46 amount=-12
kerning first=253 second=133 amount=-12
kerning first=121 second=44 amount=-12
kerning first=121 second=46 amount=-12
kerning first=121 second=133 amount=-12
kerning first=121 second=44 amount=-12
kerning first=121 second=46 amount=-12
kerning first=121 second=133 amount=-12
kerning first=45 second=84 amount=-6
kerning first=45 second=86 amount=-4
kerning first=45 second=87 amount=-4
kerning first=45 second=89 amount=-6
kerning first=45 second=141 amount=-6
kerning first=45 second=84 amount=-4
kerning first=45 second=87 amount=-4
kerning first=45 second=221 amount=-6
kerning first=45 second=89 amount=-6
kerning first=45 second=89 amount=-6
kerning first=145 second=65 amount=-12
kerning first=145 second=74 amount=-12
kerning first=145 second=65 amount=-12
kerning first=145 second=193 amount=-12
kerning first=145 second=194 amount=-12
kerning first=145 second=65 amount=-12
kerning first=145 second=196 amount=-12
kerning first=145 second=65 amount=-12
kerning first=145 second=195 amount=-12
kerning first=145 second=65 amount=-12
kerning first=145 second=165 amount=-12
kerning first=145 second=65 amount=-12
kerning first=146 second=65 amount=-12
kerning first=146 second=65 amount=-12
kerning first=146 second=193 amount=-12
kerning first=146 second=194 amount=-12
kerning first=146 second=65 amount=-12
kerning first=146 second=196 amount=-12
kerning first=146 second=65 amount=-12
kerning first=146 second=195 amount=-12
kerning first=146 second=65 amount=-12
kerning first=146 second=165 amount=-12
kerning first=146 second=65 amount=-12
kerning first=147 second=65 amount=-12
kerning first=147 second=74 amount=-12
kerning first=147 second=65 amount=-12
kerning first=147 second=193 amount=-12
kerning first=147 second=194 amount=-12
kerning first=147 second=65 amount=-12
kerning first=147 second=196 amount=-12
kerning first=147 second=65 amount=-12
kerning first=147 second=195 amount=-12
kerning first=147 second=65 amount=-12
kerning first=147 second=165 amount=-12
kerning first=147 second=65 amount=-12
kerning first=147 second=74 amount=-12
kerning first=148 second=65 amount=-12
kerning first=148 second=65 amount=-12
kerning first=148 second=193 amount=-12
kerning first=148 second=194 amount=-12
kerning first=148 second=65 amount=-12
kerning first=148 second=196 amount=-12
kerning first=148 second=65 amount=-12
kerning first=148 second=195 amount=-12
kerning first=148 second=65 amount=-12
kerning first=148 second=165 amount=-12
kerning first=148 second=65 amount=-12
kerning first=139 second=84 amount=-6
kerning first=139 second=86 amount=-3
kerning first=139 second=87 amount=-3
kerning first=139 second=89 amount=-6
kerning first=139 second=141 amount=-6
kerning first=139 second=84 amount=-3
kerning first=139 second=87 amount=-3
kerning first=139 second=221 amount=-6
kerning first=139 second=89 amount=-6
kerning first=139 second=89 amount=-6
kerning first=171 second=84 amount=-6
kerning first=171 second=86 amount=-3
kerning first=171 second=87 amount=-3
kerning first=171 second=89 amount=-6
kerning first=171 second=141 amount=-6
kerning first=171 second=84 amount=-3
kerning first=171 second=87 amount=-3
kerning first=171 second=221 amount=-6
kerning first=171 second=89 amount=-6
kerning first=171 second=89 amount=-6
kerning first=150 second=84 amount=-6
kerning first=150 second=86 amount=-4
kerning first=150 second=87 amount=-4
kerning first=150 second=89 amount=-6
kerning first=150 second=141 amount=-6
kerning first=150 second=84 amount=-4
kerning first=150 second=87 amount=-4
kerning first=150 second=221 amount=-6
kerning first=150 second=89 amount=-6
kerning first=150 second=89 amount=-6
kerning first=151 second=84 amount=-6
kerning first=151 second=86 amount=-4
kerning first=151 second=87 amount=-4
kerning first=151 second=89 amount=-6
kerning first=151 second=141 amount=-6
kerning first=151 second=84 amount=-4
kerning first=151 second=87 amount=-4
kerning first=151 second=221 amount=-6
kerning first=151 second=89 amount=-6
kerning first=151 second=89 amount=-6
kerning first=39 second=65 amount=-12
kerning first=39 second=74 amount=-12
kerning first=39 second=65 amount=-12
kerning first=39 second=193 amount=-12
kerning first=39 second=194 amount=-12
kerning first=39 second=65 amount=-12
kerning first=39 second=196 amount=-12
kerning first=39 second=65 amount=-12
kerning first=39 second=195 amount=-12
kerning first=39 second=65 amount=-12
kerning first=39 second=165 amount=-12
kerning first=39 second=65 amount=-12
kerning first=34 second=65 amount=-12
kerning first=34 second=74 amount=-12
kerning first=34 second=65 amount=-12
kerning first=34 second=193 amount=-12
kerning first=34 second=194 amount=-12
kerning first=34 second=65 amount=-12
kerning first=34 second=196 amount=-12
kerning first=34 second=65 amount=-12
kerning first=34 second=195 amount=-12
kerning first=34 second=65 amount=-12
kerning first=34 second=165 amount=-12
kerning first=34 second=65 amount=-12
kerning first=34 second=74 amount=-12
kerning first=79 second=65 amount=-7
kerning first=79 second=84 amount=2
kerning first=79 second=89 amount=2
kerning first=79 second=65 amount=-7
kerning first=79 second=193 amount=-7
kerning first=79 second=194 amount=-7
kerning first=79 second=65 amount=-7
kerning first=79 second=196 amount=-7
kerning first=79 second=65 amount=-7
kerning first=79 second=195 amount=-7
kerning first=79 second=65 amount=-7
kerning first=79 second=165 amount=-7
kerning first=79 second=65 amount=-7
kerning first=79 second=141 amount=2
kerning first=79 second=221 amount=2
kerning first=79 second=89 amount=2
kerning first=79 second=89 amount=2
kerning first=79 second=97 amount=-4
kerning first=79 second=99 amount=-5
kerning first=79 second=100 amount=-5
kerning first=79 second=101 amount=-5
kerning first=79 second=103 amount=-5
kerning first=79 second=109 amount=-4
kerning first=79 second=110 amount=-4
kerning first=79 second=111 amount=-5
kerning first=79 second=112 amount=-4
kerning first=79 second=113 amount=-5
kerning first=79 second=114 amount=-4
kerning first=79 second=115 amount=-5
kerning first=79 second=117 amount=-4
kerning first=79 second=120 amount=-4
kerning first=79 second=122 amount=-4
kerning first=79 second=97 amount=-4
kerning first=79 second=225 amount=-4
kerning first=79 second=226 amount=-4
kerning first=79 second=97 amount=-4
kerning first=79 second=228 amount=-4
kerning first=79 second=97 amount=-4
kerning first=79 second=227 amount=-4
kerning first=79 second=97 amount=-4
kerning first=79 second=185 amount=-4
kerning first=79 second=97 amount=-4
kerning first=79 second=230 amount=-5
kerning first=79 second=99 amount=-5
kerning first=79 second=232 amount=-5
kerning first=79 second=99 amount=-5
kerning first=79 second=231 amount=-5
kerning first=79 second=239 amount=-5
kerning first=79 second=240 amount=-5
kerning first=79 second=101 amount=-5
kerning first=79 second=233 amount=-5
kerning first=79 second=101 amount=-5
kerning first=79 second=236 amount=-5
kerning first=79 second=235 amount=-5
kerning first=79 second=101 amount=-5
kerning first=79 second=101 amount=-5
kerning first=79 second=101 amount=-5
kerning first=79 second=234 amount=-5
kerning first=79 second=103 amount=-5
kerning first=79 second=103 amount=-5
kerning first=79 second=103 amount=-5
kerning first=79 second=103 amount=-5
kerning first=79 second=241 amount=-4
kerning first=79 second=242 amount=-4
kerning first=79 second=110 amount=-4
kerning first=79 second=110 amount=-4
kerning first=79 second=111 amount=-5
kerning first=79 second=243 amount=-5
kerning first=79 second=244 amount=-5
kerning first=79 second=111 amount=-5
kerning first=79 second=246 amount=-5
kerning first=79 second=111 amount=-5
kerning first=79 second=111 amount=-5
kerning first=79 second=245 amount=-5
kerning first=79 second=111 amount=-5
kerning first=79 second=111 amount=-5
kerning first=79 second=224 amount=-4
kerning first=79 second=248 amount=-4
kerning first=79 second=114 amount=-4
kerning first=79 second=156 amount=-5
kerning first=79 second=115 amount=-5
kerning first=79 second=154 amount=-5
kerning first=79 second=186 amount=-5
kerning first=79 second=117 amount=-4
kerning first=79 second=250 amount=-4
kerning first=79 second=117 amount=-4
kerning first=79 second=117 amount=-4
kerning first=79 second=252 amount=-4
kerning first=79 second=117 amount=-4
kerning first=79 second=117 amount=-4
kerning first=79 second=249 amount=-4
kerning first=79 second=251 amount=-4
kerning first=79 second=117 amount=-4
kerning first=79 second=159 amount=-4
kerning first=79 second=158 amount=-4
kerning first=79 second=191 amount=-4
kerning first=79 second=111 amount=-5
kerning first=79 second=117 amount=-4
kerning first=85 second=65 amount=-12
kerning first=85 second=65 amount=-12
kerning first=85 second=193 amount=-12
kerning first=85 second=194 amount=-12
kerning first=85 second=65 amount=-12
kerning first=85 second=196 amount=-12
kerning first=85 second=65 amount=-12
kerning first=85 second=195 amount=-12
kerning first=85 second=65 amount=-12
kerning first=85 second=165 amount=-12
kerning first=85 second=65 amount=-12
kerning first=85 second=97 amount=-5
kerning first=85 second=99 amount=-8
kerning first=85 second=100 amount=-8
kerning first=85 second=101 amount=-8
kerning first=85 second=103 amount=-8
kerning first=85 second=109 amount=-5
kerning first=85 second=110 amount=-5
kerning first=85 second=111 amount=-8
kerning first=85 second=112 amount=-5
kerning first=85 second=113 amount=-8
kerning first=85 second=114 amount=-5
kerning first=85 second=115 amount=-8
kerning first=85 second=117 amount=-5
kerning first=85 second=120 amount=-5
kerning first=85 second=122 amount=-5
kerning first=85 second=97 amount=-5
kerning first=85 second=225 amount=-5
kerning first=85 second=226 amount=-5
kerning first=85 second=97 amount=-5
kerning first=85 second=228 amount=-5
kerning first=85 second=97 amount=-5
kerning first=85 second=227 amount=-5
kerning first=85 second=97 amount=-5
kerning first=85 second=185 amount=-5
kerning first=85 second=97 amount=-5
kerning first=85 second=230 amount=-8
kerning first=85 second=99 amount=-8
kerning first=85 second=232 amount=-8
kerning first=85 second=99 amount=-8
kerning first=85 second=231 amount=-8
kerning first=85 second=239 amount=-8
kerning first=85 second=240 amount=-8
kerning first=85 second=101 amount=-8
kerning first=85 second=233 amount=-8
kerning first=85 second=101 amount=-8
kerning first=85 second=236 amount=-8
kerning first=85 second=235 amount=-8
kerning first=85 second=101 amount=-8
kerning first=85 second=101 amount=-8
kerning first=85 second=101 amount=-8
kerning first=85 second=234 amount=-8
kerning first=85 second=103 amount=-8
kerning first=85 second=103 amount=-8
kerning first=85 second=103 amount=-8
kerning first=85 second=103 amount=-8
kerning first=85 second=241 amount=-5
kerning first=85 second=242 amount=-5
kerning first=85 second=110 amount=-5
kerning first=85 second=110 amount=-5
kerning first=85 second=111 amount=-8
kerning first=85 second=243 amount=-8
kerning first=85 second=244 amount=-8
kerning first=85 second=111 amount=-8
kerning first=85 second=246 amount=-8
kerning first=85 second=111 amount=-8
kerning first=85 second=111 amount=-8
kerning first=85 second=245 amount=-8
kerning first=85 second=111 amount=-8
kerning first=85 second=111 amount=-8
kerning first=85 second=224 amount=-5
kerning first=85 second=248 amount=-5
kerning first=85 second=114 amount=-5
kerning first=85 second=156 amount=-8
kerning first=85 second=115 amount=-8
kerning first=85 second=154 amount=-8
kerning first=85 second=186 amount=-8
kerning first=85 second=117 amount=-5
kerning first=85 second=250 amount=-5
kerning first=85 second=117 amount=-5
kerning first=85 second=117 amount=-5
kerning first=85 second=252 amount=-5
kerning first=85 second=117 amount=-5
kerning first=85 second=117 amount=-5
kerning first=85 second=249 amount=-5
kerning first=85 second=251 amount=-5
kerning first=85 second=117 amount=-5
kerning first=85 second=159 amount=-5
kerning first=85 second=158 amount=-5
kerning first=85 second=191 amount=-5
kerning first=85 second=111 amount=-8
kerning first=85 second=117 amount=-5
|