dd266e8a31d9cbae26395f9d100e4e4b.svg 105 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839
  1. <?xml version="1.0" standalone="no"?>
  2. <!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd" >
  3. <svg>
  4. <metadata>
  5. Created by FontForge 20120731 at Sun Jun 30 01:46:40 2019
  6. By www
  7. Copyright (c) 2012 by Ryoichi Tsunekawa. All rights reserved.
  8. </metadata>
  9. <defs>
  10. <font id="AllRoundGothicW01-Book" horiz-adv-x="522" >
  11. <font-face
  12. font-family="AllRoundGothicW01-Book"
  13. font-weight="300"
  14. font-stretch="normal"
  15. units-per-em="1000"
  16. panose-1="2 11 5 3 2 2 2 2 1 4"
  17. ascent="800"
  18. descent="-200"
  19. x-height="494"
  20. cap-height="654"
  21. bbox="-42 -224 1136 898"
  22. underline-thickness="50"
  23. underline-position="-125"
  24. unicode-range="U+0020-2122"
  25. />
  26. <missing-glyph horiz-adv-x="650"
  27. d="M100 0v654h450v-654h-450zM508 612h-366v-570h366v570z" />
  28. <glyph glyph-name=".notdef" horiz-adv-x="650"
  29. d="M100 0v654h450v-654h-450zM508 612h-366v-570h366v570z" />
  30. <glyph glyph-name=".null" horiz-adv-x="0"
  31. />
  32. <glyph glyph-name="nonmarkingreturn" horiz-adv-x="333"
  33. />
  34. <glyph glyph-name="space" unicode=" " horiz-adv-x="266"
  35. />
  36. <glyph glyph-name="exclam" unicode="!" horiz-adv-x="255"
  37. d="M128 -13q-21 0 -36 15t-15 36t15 36t36 15q20 0 35 -15t15 -36t-15 -36t-35 -15zM100 172l-10 482h75l-9 -482h-56z" />
  38. <glyph glyph-name="quotedbl" unicode="&#x22;" horiz-adv-x="365"
  39. d="M85 406l-13 248h74l-12 -248h-49zM231 406l-13 248h74l-12 -248h-49z" />
  40. <glyph glyph-name="numbersign" unicode="#" horiz-adv-x="582"
  41. d="M325 0l23 169h-159l-23 -169h-53l23 169h-98l7 51h99l29 214h-97l7 51h98l23 169h53l-24 -169h160l23 169h53l-24 -169h99l-7 -51h-99l-30 -214h98l-7 -51h-98l-23 -169h-53zM385 434h-159l-30 -214h160z" />
  42. <glyph glyph-name="dollar" unicode="$"
  43. d="M238 -70v74q-43 3 -79 17t-61.5 37.5t-40.5 56t-16 72.5h66q1 -54 36 -85.5t95 -36.5v237q-34 6 -67 15t-59 26.5t-42 46.5t-16 75q0 39 13.5 71.5t37.5 56.5t58 38.5t75 17.5v75h50v-75q78 -8 126.5 -55.5t51.5 -121.5h-65q-2 50 -32 80t-81 36v-232q35 -6 69 -15
  44. t61 -26t44 -46.5t17 -76.5q0 -41 -14 -73.5t-39 -56.5t-60.5 -38.5t-77.5 -18.5v-75h-50zM413 191q0 26 -10 43.5t-27 29t-40 18t-48 11.5v-228q58 7 91.5 39.5t33.5 86.5zM238 588q-54 -5 -85.5 -36.5t-31.5 -84.5q0 -26 9 -43t25 -28.5t37.5 -18.5t45.5 -12v223z" />
  45. <glyph glyph-name="percent" unicode="%" horiz-adv-x="684"
  46. d="M100 0l426 654h56l-426 -654h-56zM184 361q-32 0 -59.5 12t-48 33t-32.5 49t-12 60q0 31 12 58.5t32.5 48.5t48 33t59.5 12t60 -12t48.5 -33t32.5 -48.5t12 -58.5q0 -32 -12 -60t-32.5 -49t-48.5 -33t-60 -12zM184 409q45 0 74.5 31t29.5 75q0 21 -8 40t-22 33.5
  47. t-33 22.5t-41 8t-40.5 -8t-32.5 -22.5t-22 -33.5t-8 -40q0 -22 8 -41t22 -33.5t32.5 -23t40.5 -8.5zM500 -13q-32 0 -60 12t-48.5 33t-32.5 48.5t-12 59.5q0 31 12 59t32.5 49t48.5 33t60 12q31 0 59 -12t48.5 -33t32.5 -49t12 -59q0 -32 -12 -59.5t-32.5 -48.5t-48.5 -33
  48. t-59 -12zM500 35q44 0 73.5 30.5t29.5 74.5q0 21 -8 40.5t-22 33.5t-32.5 22.5t-40.5 8.5t-41 -8.5t-33 -22.5t-22 -33.5t-8 -40.5q0 -44 29.5 -74.5t74.5 -30.5z" />
  49. <glyph glyph-name="ampersand" unicode="&#x26;" horiz-adv-x="566"
  50. d="M403 319v-2q42 -19 65.5 -53t23.5 -85q0 -44 -17 -79.5t-47 -60.5t-72.5 -38.5t-93.5 -13.5t-93.5 13.5t-72.5 39t-47 61.5t-17 81q0 63 32.5 105t90.5 60v2q-47 17 -73 53.5t-26 91.5q0 39 15 71t42 54.5t65 35t84 12.5q88 0 143 -44t62 -124h-66q-5 45 -39 76t-99 31
  51. q-35 0 -61 -9.5t-43.5 -25.5t-26.5 -37t-9 -45q0 -54 36 -83.5t101 -29.5h274v-57h-131zM425 186q0 61 -41.5 97t-113.5 36h-17q-72 0 -113 -35t-41 -98q0 -29 10 -54.5t30.5 -44t51 -29t71.5 -10.5q40 0 70.5 10.5t51 29t31 44t10.5 54.5z" />
  52. <glyph glyph-name="quotesingle" unicode="'" horiz-adv-x="219"
  53. d="M85 406l-13 248h74l-12 -248h-49z" />
  54. <glyph glyph-name="parenleft" unicode="(" horiz-adv-x="364"
  55. d="M323 -219q-60 32 -109 78.5t-83.5 105.5t-53 129.5t-18.5 151.5t18.5 151.5t53 129.5t83.5 105.5t109 78.5v-64q-90 -58 -145 -159.5t-55 -241.5t55 -241.5t145 -159.5v-64z" />
  56. <glyph glyph-name="parenright" unicode=")" horiz-adv-x="364"
  57. d="M41 711q60 -32 109 -78.5t83.5 -105.5t53 -129.5t18.5 -151.5t-18.5 -151.5t-53 -129.5t-83.5 -105.5t-109 -78.5v64q90 58 145 159.5t55 241.5t-55 241.5t-145 159.5v64z" />
  58. <glyph glyph-name="asterisk" unicode="*" horiz-adv-x="526"
  59. d="M365 226l-101 175h-2l-101 -175l-60 44l138 150l-1 2l-200 42l23 71l185 -84l1 2l-21 201h74l-21 -201l1 -2l185 84l23 -71l-200 -42l-1 -2l138 -150z" />
  60. <glyph glyph-name="plus" unicode="+" horiz-adv-x="562"
  61. d="M252 31v202h-202v58h202v202h58v-202h202v-58h-202v-202h-58z" />
  62. <glyph glyph-name="comma" unicode="," horiz-adv-x="239"
  63. d="M71 -124l33 114q-15 5 -25 18t-10 30q0 21 15 36t36 15q20 0 35 -15t15 -36q0 -15 -6 -28l-53 -134h-40z" />
  64. <glyph glyph-name="hyphen" unicode="-" horiz-adv-x="346"
  65. d="M23 239v65h300v-65h-300z" />
  66. <glyph glyph-name="period" unicode="." horiz-adv-x="239"
  67. d="M120 -13q-21 0 -36 15t-15 36t15 36t36 15q20 0 35 -15t15 -36t-15 -36t-35 -15z" />
  68. <glyph glyph-name="slash" unicode="/" horiz-adv-x="426"
  69. d="M1 -100l342 754h62l-342 -754h-62z" />
  70. <glyph glyph-name="zero" unicode="0"
  71. d="M492 219q0 -53 -17 -95.5t-47.5 -73t-73 -47t-93.5 -16.5t-93.5 16.5t-73 47t-47.5 73t-17 95.5v216q0 52 17 95t47.5 73.5t73 47t93.5 16.5t93.5 -16.5t73 -47t47.5 -73.5t17 -95v-216zM425 435q0 39 -11.5 70.5t-33 53.5t-52 34t-67.5 12t-67.5 -12t-52 -34t-33 -53.5
  72. t-11.5 -70.5v-216q0 -39 11.5 -70.5t33 -53.5t52 -34t67.5 -12t67.5 12t52 34t33 53.5t11.5 70.5v216z" />
  73. <glyph glyph-name="one" unicode="1"
  74. d="M272 0v594h-156v60h223v-654h-67z" />
  75. <glyph glyph-name="two" unicode="2"
  76. d="M55 0v56l254 231q43 38 69 78.5t26 89.5q0 33 -9.5 60.5t-27.5 47.5t-44 31t-59 11q-67 0 -105 -43t-38 -115v-9h-65v9q0 49 14 90t41 69.5t65.5 44.5t87.5 16q48 0 86.5 -16t65.5 -44.5t41.5 -67t14.5 -84.5q0 -33 -8 -60.5t-22.5 -52t-36 -48t-48.5 -47.5l-205 -185v-2
  77. h312v-60h-409z" />
  78. <glyph glyph-name="three" unicode="3"
  79. d="M183 318v59h79q64 0 98 29t34 84q0 24 -8.5 44.5t-26 36.5t-42.5 25t-58 9q-66 0 -99 -34t-36 -82h-65q5 85 59 131.5t142 46.5q44 0 81 -12.5t63.5 -35t41.5 -54.5t15 -72q0 -55 -25 -91t-71 -53v-2q57 -18 88.5 -59.5t31.5 -105.5q0 -45 -17 -81t-47 -61.5t-71 -39
  80. t-90 -13.5t-90 13.5t-71 39t-47 62.5t-17 83h64q0 -28 11 -53t31 -43.5t50 -29t68 -10.5q39 0 68.5 10.5t49.5 29.5t30 43.5t10 53.5q0 61 -40 96.5t-115 35.5h-79z" />
  81. <glyph glyph-name="four" unicode="4"
  82. d="M363 0v150h-339v56l339 448h67v-444h77v-60h-77v-150h-67zM363 560l-263 -348v-2h265v350h-2z" />
  83. <glyph glyph-name="five" unicode="5"
  84. d="M146 594l-27 -220h2q24 31 61 48.5t88 17.5q47 0 87 -16.5t69.5 -45.5t46 -69.5t16.5 -89.5v-7q0 -49 -17 -90t-47 -71t-72.5 -47t-93.5 -17q-47 0 -86.5 14t-69.5 39t-49 60t-24 77h67q11 -57 54 -92.5t108 -35.5q37 0 67 12t51.5 34t33 51.5t11.5 65.5v7
  85. q0 36 -11.5 65.5t-33 51.5t-51.5 34t-67 12q-52 0 -90 -23t-57 -63l-60 19l42 339h339v-60h-287z" />
  86. <glyph glyph-name="six" unicode="6"
  87. d="M496 217q0 -51 -17 -93.5t-47.5 -73t-73 -47t-93.5 -16.5t-93.5 16.5t-73 47t-47.5 73t-17 93.5v3q0 47 13.5 87.5t48.5 91.5l172 255h75l-157 -229v-2q20 11 44 18t50 7q48 0 87.5 -17t68 -47t44.5 -71t16 -89v-7zM428 222q0 76 -44.5 122t-118.5 46q-36 0 -66 -12
  88. t-51.5 -34.5t-33.5 -53.5t-12 -68v-5q0 -76 44.5 -122t118.5 -46t118.5 46t44.5 122v5z" />
  89. <glyph glyph-name="seven" unicode="7"
  90. d="M152 0h-74l320 592v2h-346v60h423v-56z" />
  91. <glyph glyph-name="eight" unicode="8"
  92. d="M491 182q0 -45 -17 -81t-47.5 -61.5t-72.5 -39t-93 -13.5t-93 13.5t-72.5 39t-47.5 61.5t-17 81q0 64 33 105.5t91 59.5v2q-48 17 -74 53t-26 91q0 40 15 72t42 54.5t65 35t84 12.5t84 -12.5t65 -35t42 -54.5t15 -72q0 -55 -26.5 -91t-73.5 -53v-2q57 -18 90.5 -59.5
  93. t33.5 -105.5zM424 187q0 63 -41.5 97.5t-112.5 34.5h-18q-71 0 -112.5 -34.5t-41.5 -97.5q0 -29 10.5 -54.5t30.5 -44t50.5 -29.5t71.5 -11q40 0 71 11t51 29.5t30.5 44t10.5 54.5zM400 489q0 48 -34.5 82.5t-104.5 34.5t-104.5 -34.5t-34.5 -82.5q0 -54 35 -83.5t95 -29.5
  94. h18q60 0 95 29.5t35 83.5z" />
  95. <glyph glyph-name="nine" unicode="9"
  96. d="M179 0l157 229v2q-20 -11 -44 -18t-50 -7q-48 0 -88 17t-68.5 47t-44 71t-15.5 89v7q0 51 17 93.5t47.5 73t73 47t93.5 16.5t93.5 -16.5t73 -47t47.5 -73t17 -93.5v-3q0 -47 -13.5 -87.5t-48.5 -91.5l-172 -255h-75zM420 437q0 76 -44.5 122t-118.5 46t-118.5 -46
  97. t-44.5 -122v-5q0 -76 44.5 -122t118.5 -46q36 0 66 12t51.5 34.5t33.5 53t12 68.5v5z" />
  98. <glyph glyph-name="colon" unicode=":" horiz-adv-x="239"
  99. d="M120 -13q-21 0 -36 15t-15 36t15 36t36 15q20 0 35 -15t15 -36t-15 -36t-35 -15zM120 356q-21 0 -36 15t-15 36t15 36t36 15q20 0 35 -15t15 -36t-15 -36t-35 -15z" />
  100. <glyph glyph-name="semicolon" unicode=";" horiz-adv-x="239"
  101. d="M71 -124l33 114q-15 5 -25 18t-10 30q0 21 15 36t36 15q20 0 35 -15t15 -36q0 -15 -6 -28l-53 -134h-40zM120 356q-21 0 -36 15t-15 36t15 36t36 15q20 0 35 -15t15 -36t-15 -36t-35 -15z" />
  102. <glyph glyph-name="less" unicode="&#x3c;" horiz-adv-x="562"
  103. d="M50 235v54l462 205v-64l-388 -167v-2l388 -167v-64z" />
  104. <glyph glyph-name="equal" unicode="=" horiz-adv-x="562"
  105. d="M50 352v57h462v-57h-462zM50 115v57h462v-57h-462z" />
  106. <glyph glyph-name="greater" unicode="&#x3e;" horiz-adv-x="562"
  107. d="M50 30v64l388 167v2l-388 167v64l462 -205v-54z" />
  108. <glyph glyph-name="question" unicode="?" horiz-adv-x="471"
  109. d="M176 172v16q0 42 14.5 69.5t36.5 46.5t47 34t47 32.5t36.5 41.5t14.5 62q0 63 -38.5 97t-99.5 34q-60 0 -100.5 -35t-40.5 -98v-8h-63v10q0 44 15.5 80t43 61t65 38.5t81.5 13.5q45 0 82.5 -13.5t64.5 -38t42.5 -60.5t15.5 -81q0 -49 -15 -79.5t-37.5 -51.5t-49 -35.5
  110. t-49 -30t-37.5 -36t-15 -53.5v-16h-61zM207 -13q-20 0 -35.5 15t-15.5 36t15.5 36t35.5 15q21 0 36 -15t15 -36t-15 -36t-36 -15z" />
  111. <glyph glyph-name="at" unicode="@" horiz-adv-x="764"
  112. d="M457 230q-26 -35 -60.5 -55.5t-76.5 -20.5q-54 0 -80.5 34t-26.5 85q0 34 13 73.5t37 73.5t59 56t79 22q39 0 64.5 -23t31.5 -60h2l21 70h46l-60 -215q-2 -9 -3.5 -16.5t-1.5 -15.5q0 -18 10.5 -28.5t30.5 -10.5q25 0 49.5 14.5t43.5 41t31 63.5t12 82q0 43 -15 85.5
  113. t-47.5 76t-82.5 54.5t-120 21q-71 0 -130.5 -24.5t-103 -67.5t-68 -102.5t-24.5 -128.5q0 -66 22 -120.5t61.5 -94t96 -61t125.5 -21.5q61 0 115.5 17.5t96.5 47.5l-4 -50q-45 -29 -98 -44t-112 -15q-78 0 -142.5 25.5t-111 70.5t-72 107t-25.5 136q0 79 28 146.5t78.5 117
  114. t119 77.5t149.5 28q80 0 138.5 -25t97 -65.5t57 -91t18.5 -102.5q0 -51 -15.5 -95.5t-42 -77.5t-61 -51.5t-72.5 -18.5q-34 0 -54.5 17t-20.5 55v4h-2zM336 200q31 0 57 15.5t45 39.5t29.5 53t10.5 56q0 37 -19.5 63t-56.5 26q-33 0 -58.5 -18t-43 -44t-27 -56.5t-9.5 -55.5
  115. q0 -35 17 -57t55 -22z" />
  116. <glyph glyph-name="A" unicode="A" horiz-adv-x="668"
  117. d="M544 0v220h-423v-220h-70v387q0 64 18.5 116t54.5 88.5t88.5 56t120.5 19.5q69 0 121.5 -19.5t88.5 -56t54.5 -88.5t18.5 -116v-387h-72zM544 387q0 100 -53 157t-159 57q-104 0 -157.5 -57t-53.5 -157v-101h423v101z" />
  118. <glyph glyph-name="B" unicode="B" horiz-adv-x="623"
  119. d="M67 0v654h316q90 0 137 -46.5t47 -119.5q0 -52 -24.5 -90.5t-69.5 -57.5v-2q58 -15 91 -59.5t33 -105.5q0 -38 -12.5 -69.5t-36.5 -54.5t-59 -36t-80 -13h-342zM139 300v-234h261q63 0 93.5 33t30.5 84t-32.5 84t-89.5 33h-263zM139 588v-222h239q57 0 87 31t30 80
  120. t-28.5 80t-91.5 31h-236z" />
  121. <glyph glyph-name="C" unicode="C" horiz-adv-x="751"
  122. d="M638 435q-15 37 -39.5 68t-57.5 52.5t-73 33.5t-86 12q-61 0 -112 -20.5t-87.5 -57t-56.5 -87t-20 -109.5t20 -109.5t56.5 -87t87.5 -57t112 -20.5q46 0 86 12t73 33.5t57.5 52t39.5 68.5h76q-16 -52 -46.5 -95t-73.5 -73.5t-97 -47t-115 -16.5q-77 0 -140.5 25.5
  123. t-110 71t-72 107.5t-25.5 136q0 73 25.5 135.5t72 108t110 71t140.5 25.5q61 0 115 -16.5t97 -47t73.5 -73.5t46.5 -95h-76z" />
  124. <glyph glyph-name="D" unicode="D" horiz-adv-x="682"
  125. d="M67 0v654h234q85 0 149.5 -23.5t108.5 -66.5t66.5 -103.5t22.5 -133.5q0 -74 -22.5 -134t-66.5 -103t-108.5 -66.5t-149.5 -23.5h-234zM301 66q69 0 121 18.5t86 53t51 82.5t17 107t-17 107t-51 82.5t-86 53t-121 18.5h-162v-522h162z" />
  126. <glyph glyph-name="E" unicode="E" horiz-adv-x="593"
  127. d="M67 0v654h480v-66h-408v-223h350v-66h-350v-233h408v-66h-480z" />
  128. <glyph glyph-name="F" unicode="F" horiz-adv-x="568"
  129. d="M67 0v654h472v-66h-400v-222h342v-66h-342v-300h-72z" />
  130. <glyph glyph-name="G" unicode="G" horiz-adv-x="757"
  131. d="M631 449q-32 69 -96.5 110.5t-152.5 41.5q-61 0 -112 -20.5t-87.5 -57t-56.5 -87t-20 -109.5t20 -109.5t56.5 -87t87.5 -57t112 -20.5q53 0 98.5 14.5t80.5 41.5t58.5 65.5t33.5 86.5v2h-312v66h388v-34q-6 -67 -33.5 -123.5t-73 -97.5t-107 -64t-133.5 -23
  132. q-77 0 -140.5 25.5t-110 71t-72 107.5t-25.5 136q0 73 25.5 135.5t72 108t110 71t140.5 25.5q59 0 111.5 -15.5t94.5 -44t73.5 -69t48.5 -89.5h-79z" />
  133. <glyph glyph-name="H" unicode="H" horiz-adv-x="702"
  134. d="M563 0v299h-424v-299h-72v654h72v-289h424v289h72v-654h-72z" />
  135. <glyph glyph-name="I" unicode="I" horiz-adv-x="211"
  136. d="M70 0v654h72v-654h-72z" />
  137. <glyph glyph-name="J" unicode="J" horiz-adv-x="572"
  138. d="M448 654h72v-424q0 -111 -64 -177t-184 -66q-118 0 -181 65.5t-63 177.5v7h70v-7q0 -82 44 -129.5t131 -47.5t131 47.5t44 129.5v424z" />
  139. <glyph glyph-name="K" unicode="K" horiz-adv-x="572"
  140. d="M67 0v654h72v-304h2l308 304h93l-331 -323l341 -331h-95l-316 311h-2v-311h-72z" />
  141. <glyph glyph-name="L" unicode="L" horiz-adv-x="561"
  142. d="M67 0v654h72v-588h396v-66h-468z" />
  143. <glyph glyph-name="M" unicode="M" horiz-adv-x="929"
  144. d="M124 0h-72v434q0 58 17 101.5t46 73t69 44t87 14.5q68 0 118 -31t74 -90h2q24 59 73.5 90t118.5 31q46 0 86.5 -14.5t70 -44t46.5 -73t17 -101.5v-434h-72v434q0 83 -43.5 125t-109.5 42t-109 -43t-43 -124v-434h-72v434q0 81 -43 124t-109 43q-33 0 -60.5 -10.5
  145. t-48 -31.5t-32 -52t-11.5 -73v-434z" />
  146. <glyph glyph-name="N" unicode="N" horiz-adv-x="653"
  147. d="M529 0v397q0 95 -51 149.5t-151 54.5t-151.5 -54.5t-51.5 -149.5v-397h-72v397q0 62 18 112t53 85t86.5 54t117.5 19t117 -19t86 -54t53 -85t18 -112v-397h-72z" />
  148. <glyph glyph-name="O" unicode="O" horiz-adv-x="764"
  149. d="M730 327q0 -74 -25.5 -136t-72 -107.5t-110.5 -71t-140 -25.5q-77 0 -140.5 25.5t-110 71t-72 107.5t-25.5 136q0 73 25.5 135.5t72 108t110 71t140.5 25.5q76 0 140 -25.5t110.5 -71t72 -108t25.5 -135.5zM382 53q61 0 112 20.5t87.5 57t56.5 87t20 109.5t-20 109.5
  150. t-56.5 87t-87.5 57t-112 20.5t-112 -20.5t-87.5 -57t-56.5 -87t-20 -109.5t20 -109.5t56.5 -87t87.5 -57t112 -20.5z" />
  151. <glyph glyph-name="P" unicode="P" horiz-adv-x="599"
  152. d="M67 0v654h283q59 0 102 -15.5t71 -43.5t41.5 -66t13.5 -83t-13.5 -83t-41.5 -66t-71 -44t-102 -16h-211v-237h-72zM351 303q42 0 71.5 11t48 30t26.5 45.5t8 56.5t-8 56t-26.5 45t-48 30t-71.5 11h-212v-285h212z" />
  153. <glyph glyph-name="Q" unicode="Q" horiz-adv-x="764"
  154. d="M730 327q0 -85 -33.5 -154t-93.5 -115l130 -161h-84l-99 128q-74 -38 -168 -38q-77 0 -140.5 25.5t-110 71t-72 107.5t-25.5 136q0 73 25.5 135.5t72 108t110 71t140.5 25.5q76 0 140 -25.5t110.5 -71t72 -108t25.5 -135.5zM382 53q67 0 123 25v2l-124 152h84l95 -120
  155. q46 37 72 92t26 123q0 59 -20 109.5t-56.5 87t-87.5 57t-112 20.5t-112 -20.5t-87.5 -57t-56.5 -87t-20 -109.5t20 -109.5t56.5 -87t87.5 -57t112 -20.5z" />
  156. <glyph glyph-name="R" unicode="R" horiz-adv-x="630"
  157. d="M515 0l-177 248h-199v-248h-72v654h289q58 0 100 -15.5t69 -42.5t40 -64t13 -80q0 -76 -39.5 -130t-124.5 -69v-2l188 -251h-87zM357 314q41 0 69 10.5t45.5 29t25.5 44t8 54.5t-8 54t-25.5 43t-45.5 28.5t-69 10.5h-218v-274h218z" />
  158. <glyph glyph-name="S" unicode="S" horiz-adv-x="548"
  159. d="M429 477q-3 57 -43.5 90t-111.5 33q-72 0 -113.5 -34.5t-41.5 -92.5q0 -35 17 -55t44.5 -31.5t62.5 -17.5t72 -12.5t72 -15.5t62.5 -28t44.5 -49.5t17 -78.5q0 -46 -17 -82.5t-48 -62.5t-75 -40t-98 -14q-53 0 -96.5 13.5t-75 39t-49 62t-18.5 82.5h71q2 -63 46 -97
  160. t122 -34t123 35.5t45 95.5q0 35 -17 55.5t-44.5 32t-62.5 17.5t-72 12.5t-72 15.5t-62.5 27.5t-44.5 49t-17 78.5q0 43 16 79t45.5 62t71 40t92.5 14q49 0 90 -13.5t70 -38.5t45.5 -59.5t18.5 -77.5h-69z" />
  161. <glyph glyph-name="T" unicode="T" horiz-adv-x="570"
  162. d="M249 0v588h-222v66h516v-66h-222v-588h-72z" />
  163. <glyph glyph-name="U" unicode="U" horiz-adv-x="649"
  164. d="M528 654h70v-397q0 -62 -18 -112t-52.5 -85t-85 -54t-115.5 -19q-66 0 -117.5 19t-86.5 54t-53 85t-18 112v397h72v-397q0 -95 51 -149.5t151 -54.5t151 55t51 149v397z" />
  165. <glyph glyph-name="V" unicode="V" horiz-adv-x="648"
  166. d="M285 0l-260 654h80l219 -568h2l219 568h78l-261 -654h-77z" />
  167. <glyph glyph-name="W" unicode="W" horiz-adv-x="929"
  168. d="M805 654h72v-434q0 -58 -17 -101.5t-46 -73t-69.5 -44t-86.5 -14.5q-68 0 -118 31t-74 90h-2q-24 -59 -73.5 -90t-118.5 -31q-47 0 -87 14.5t-69.5 44t-46.5 73t-17 101.5v434h72v-434q0 -83 43.5 -125t109.5 -42t109 43t43 124v434h72v-434q0 -81 43 -124t109 -43
  169. q33 0 60.5 10.5t48 31.5t32 52t11.5 73v434z" />
  170. <glyph glyph-name="X" unicode="X" horiz-adv-x="635"
  171. d="M22 0l247 333l-236 321h88l197 -276h2l198 276h85l-237 -320l247 -334h-88l-207 289h-2l-208 -289h-86z" />
  172. <glyph glyph-name="Y" unicode="Y" horiz-adv-x="649"
  173. d="M289 0v287l-269 367h87l218 -306h2l217 306h85l-268 -366v-288h-72z" />
  174. <glyph glyph-name="Z" unicode="Z" horiz-adv-x="600"
  175. d="M133 68v-2h419v-66h-509v62l409 524v2h-394v66h484v-62z" />
  176. <glyph glyph-name="bracketleft" unicode="[" horiz-adv-x="364"
  177. d="M85 -197v886h249v-55h-185v-776h185v-55h-249z" />
  178. <glyph glyph-name="backslash" unicode="\" horiz-adv-x="426"
  179. d="M363 -100l-342 754h62l342 -754h-62z" />
  180. <glyph glyph-name="bracketright" unicode="]" horiz-adv-x="364"
  181. d="M30 -197v55h185v776h-185v55h249v-886h-249z" />
  182. <glyph glyph-name="asciicircum" unicode="^" horiz-adv-x="562"
  183. d="M29 230l221 424h55l228 -424h-66l-188 356h-2l-182 -356h-66z" />
  184. <glyph glyph-name="underscore" unicode="_" horiz-adv-x="500"
  185. d="M0 -128v45h500v-45h-500z" />
  186. <glyph glyph-name="grave" unicode="`" horiz-adv-x="320"
  187. d="M187 570l-115 150h72l103 -150h-60z" />
  188. <glyph glyph-name="a" unicode="a" horiz-adv-x="609"
  189. d="M560 0h-62v117h-2q-25 -60 -80.5 -95t-130.5 -35q-52 0 -98.5 18t-81.5 51.5t-55.5 82t-20.5 108.5q0 56 19.5 104t55 82.5t84 54t107.5 19.5q58 0 107 -19t84 -54t54.5 -83.5t19.5 -106.5v-244zM295 49q44 0 80.5 15t62.5 41.5t40.5 62.5t14.5 79t-14.5 79t-40.5 62.5
  190. t-62.5 41.5t-80.5 15t-80.5 -15t-62.5 -41.5t-40.5 -62.5t-14.5 -79t14.5 -79t40.5 -62.5t62.5 -41.5t80.5 -15z" />
  191. <glyph glyph-name="b" unicode="b" horiz-adv-x="609"
  192. d="M314 -13q-59 0 -107.5 19t-83.5 53.5t-54.5 83t-19.5 107.5v460h67v-318h2q27 53 80.5 84t125.5 31q52 0 98.5 -18t81.5 -51.5t55.5 -82t20.5 -108.5q0 -56 -19.5 -104t-55 -82.5t-84.5 -54t-107 -19.5zM314 49q44 0 80.5 15t62.5 41.5t40.5 62.5t14.5 79t-14.5 79
  193. t-40.5 62.5t-62.5 41.5t-80.5 15q-45 0 -81.5 -15t-62.5 -41.5t-40 -62.5t-14 -79t14 -79t40 -62.5t62.5 -41.5t81.5 -15z" />
  194. <glyph glyph-name="c" unicode="c" horiz-adv-x="580"
  195. d="M481 323q-20 56 -69 89t-117 33q-44 0 -80.5 -15t-62.5 -41.5t-40.5 -62.5t-14.5 -79t14.5 -79t40.5 -62.5t62.5 -41.5t80.5 -15q68 0 117 33t69 89h68q-11 -41 -34 -75t-56 -58t-74.5 -37.5t-89.5 -13.5q-59 0 -107.5 19.5t-84 54t-55 82.5t-19.5 104t19.5 104t55 82.5
  196. t84 54t107.5 19.5q48 0 89.5 -13.5t74.5 -37.5t56 -58t34 -75h-68z" />
  197. <glyph glyph-name="d" unicode="d" horiz-adv-x="609"
  198. d="M295 -13q-59 0 -107.5 19.5t-84 54t-55 82.5t-19.5 104q0 60 20.5 108.5t55.5 82t81.5 51.5t98.5 18q72 0 125.5 -31t80.5 -84h2v318h67v-460q0 -59 -19.5 -107.5t-54.5 -83t-84 -53.5t-107 -19zM295 49q44 0 80.5 15t62.5 41.5t40.5 62.5t14.5 79t-14.5 79t-40.5 62.5
  199. t-62.5 41.5t-80.5 15t-80.5 -15t-62.5 -41.5t-40.5 -62.5t-14.5 -79t14.5 -79t40.5 -62.5t62.5 -41.5t80.5 -15z" />
  200. <glyph glyph-name="e" unicode="e" horiz-adv-x="588"
  201. d="M98 225q3 -39 19 -71t41.5 -55.5t60 -36.5t76.5 -13q59 0 102.5 23t67.5 66h73q-29 -69 -92.5 -110t-150.5 -41q-59 0 -107.5 19.5t-84 54t-55 82.5t-19.5 104t19.5 104t55 82.5t84 54t107.5 19.5q58 0 107 -19.5t83.5 -54t54 -82.5t19.5 -104v-22h-461zM295 445
  202. q-79 0 -131 -43.5t-64 -114.5v-2h389v2q-6 35 -22.5 64t-41.5 50t-58 32.5t-72 11.5z" />
  203. <glyph glyph-name="f" unicode="f" horiz-adv-x="479"
  204. d="M65 0v514q0 52 15 91t42.5 65.5t66 39.5t84.5 13t84 -13.5t65.5 -40t42.5 -66t15 -92.5h-66q0 78 -39 114t-102 36q-64 0 -102.5 -36t-38.5 -111v-89h290v-61h-290v-364h-67z" />
  205. <glyph glyph-name="g" unicode="g" horiz-adv-x="609"
  206. d="M493 106h-2q-27 -54 -80.5 -85t-125.5 -31q-52 0 -98.5 17.5t-81.5 50.5t-55.5 81t-20.5 108q0 56 19.5 104t55 82.5t84 54t107.5 19.5q58 0 107 -19t84 -53.5t54.5 -83t19.5 -107.5v-203q0 -72 -20.5 -122t-55.5 -82t-83 -46.5t-103 -14.5q-90 0 -156 38t-92 121h68
  207. q20 -53 68.5 -76.5t111.5 -23.5q43 0 78.5 11t61.5 35.5t40.5 63t14.5 93.5v68zM493 247q0 43 -14.5 79t-40.5 62.5t-62.5 41.5t-80.5 15t-80.5 -15t-62.5 -41.5t-40.5 -62.5t-14.5 -79t14.5 -78.5t40.5 -61.5t62.5 -40.5t80.5 -14.5t80.5 14.5t62.5 40.5t40.5 61.5
  208. t14.5 78.5z" />
  209. <glyph glyph-name="h" unicode="h" horiz-adv-x="602"
  210. d="M309 445q-80 0 -128.5 -48t-48.5 -139v-258h-67v710h67v-308h2q25 50 72.5 77.5t112.5 27.5q49 0 92 -15t74.5 -46t49.5 -78t18 -110v-258h-67v258q0 92 -48 139.5t-129 47.5z" />
  211. <glyph glyph-name="i" unicode="i" horiz-adv-x="202"
  212. d="M101 577q-21 0 -36 15.5t-15 35.5q0 21 15 36t36 15t36 -15t15 -36q0 -20 -15 -35.5t-36 -15.5zM68 0v494h67v-494h-67z" />
  213. <glyph glyph-name="j" unicode="j" horiz-adv-x="202"
  214. d="M101 577q-21 0 -36 15.5t-15 35.5q0 21 15 36t36 15t36 -15t15 -36q0 -20 -15 -35.5t-36 -15.5zM-42 -218v58h8q56 0 78.5 26.5t22.5 89.5v538h67v-535q0 -89 -37.5 -133t-124.5 -44h-14z" />
  215. <glyph glyph-name="k" unicode="k" horiz-adv-x="517"
  216. d="M65 0v710h67v-436h2l260 220h94l-285 -240l295 -254h-95l-269 234h-2v-234h-67z" />
  217. <glyph glyph-name="l" unicode="l" horiz-adv-x="202"
  218. d="M68 0v710h67v-710h-67z" />
  219. <glyph glyph-name="m" unicode="m" horiz-adv-x="854"
  220. d="M394 0v289q0 78 -40 117t-100 39t-99 -38.5t-39 -117.5v-289h-67v289q0 55 15 96t42 68t63.5 40.5t79.5 13.5q60 0 106.5 -27.5t70.5 -81.5h2q23 54 69.5 81.5t107.5 27.5q43 0 79.5 -13.5t63.5 -40.5t42 -68t15 -96v-289h-67v289q0 79 -39 117.5t-99 38.5t-99.5 -39
  221. t-39.5 -117v-289h-67z" />
  222. <glyph glyph-name="n" unicode="n" horiz-adv-x="586"
  223. d="M470 0v258q0 92 -48 139.5t-129 47.5t-129 -47.5t-48 -139.5v-258h-67v258q0 61 17.5 108t49.5 78t77 47t100 16t100 -16t77 -47t49.5 -78t17.5 -108v-258h-67z" />
  224. <glyph glyph-name="o" unicode="o" horiz-adv-x="590"
  225. d="M561 247q0 -56 -19.5 -104t-55 -82.5t-84.5 -54t-107 -19.5q-59 0 -107.5 19.5t-84 54t-55 82.5t-19.5 104t19.5 104t55 82.5t84 54t107.5 19.5q58 0 107 -19.5t84.5 -54t55 -82.5t19.5 -104zM295 49q44 0 80.5 15t62.5 41.5t40.5 62.5t14.5 79t-14.5 79t-40.5 62.5
  226. t-62.5 41.5t-80.5 15t-80.5 -15t-62.5 -41.5t-40.5 -62.5t-14.5 -79t14.5 -79t40.5 -62.5t62.5 -41.5t80.5 -15z" />
  227. <glyph glyph-name="p" unicode="p" horiz-adv-x="609"
  228. d="M49 -211v455q0 59 19.5 107.5t54.5 83t83.5 53.5t107.5 19q58 0 107 -19.5t84.5 -54t55 -82.5t19.5 -104q0 -60 -20.5 -108.5t-55.5 -82t-81.5 -51.5t-98.5 -18q-72 0 -125.5 30.5t-80.5 84.5h-2v-313h-67zM314 49q44 0 80.5 15t62.5 41.5t40.5 62.5t14.5 79t-14.5 79
  229. t-40.5 62.5t-62.5 41.5t-80.5 15q-45 0 -81.5 -15t-62.5 -41.5t-40 -62.5t-14 -79t14 -79t40 -62.5t62.5 -41.5t81.5 -15z" />
  230. <glyph glyph-name="q" unicode="q" horiz-adv-x="609"
  231. d="M493 -211v313h-2q-27 -54 -80.5 -84.5t-125.5 -30.5q-52 0 -98.5 18t-81.5 51.5t-55.5 82t-20.5 108.5q0 56 19.5 104t55 82.5t84 54t107.5 19.5q58 0 107 -19t84 -53.5t54.5 -83t19.5 -107.5v-455h-67zM295 49q45 0 81.5 15t62.5 41.5t40 62.5t14 79t-14 79t-40 62.5
  232. t-62.5 41.5t-81.5 15q-44 0 -80.5 -15t-62.5 -41.5t-40.5 -62.5t-14.5 -79t14.5 -79t40.5 -62.5t62.5 -41.5t80.5 -15z" />
  233. <glyph glyph-name="r" unicode="r" horiz-adv-x="481"
  234. d="M398 289v7q0 78 -39 113.5t-102 35.5q-64 0 -102.5 -35.5t-38.5 -113.5v-296h-67v296q0 53 15 92.5t42.5 66t66 39.5t84.5 13t84 -13t65.5 -39.5t42.5 -66t15 -93.5v-6h-66z" />
  235. <glyph glyph-name="s" unicode="s" horiz-adv-x="468"
  236. d="M356 359q-2 37 -34 62t-88 25q-58 0 -90.5 -25t-32.5 -67q0 -32 24 -46t60 -20.5t78.5 -11t78.5 -17.5t60 -39.5t24 -76.5q0 -34 -14.5 -62.5t-40.5 -49.5t-63.5 -32.5t-83.5 -11.5t-82.5 11.5t-63 32t-41 48t-15.5 60.5h68q2 -40 36.5 -65.5t96.5 -25.5q66 0 100.5 26.5
  237. t34.5 68.5q0 32 -24 46t-60 20.5t-78 11t-78 17t-60 39t-24 77.5q0 33 13 61.5t38 48.5t59.5 31.5t78.5 11.5q43 0 78 -11.5t59.5 -31t37.5 -47t14 -58.5h-66z" />
  238. <glyph glyph-name="t" unicode="t" horiz-adv-x="470"
  239. d="M435 182q0 -49 -14 -85.5t-39.5 -61t-60.5 -36.5t-78 -12t-79 12t-61.5 36.5t-39.5 61t-14 85.5v486h67v-174h291v-61h-291v-251q0 -68 34.5 -100.5t92.5 -32.5q57 0 92 32t35 101v11h65v-11z" />
  240. <glyph glyph-name="u" unicode="u" horiz-adv-x="586"
  241. d="M470 494h67v-258q0 -62 -17.5 -108.5t-49.5 -77.5t-77 -47t-100 -16t-100 16t-77 47t-49.5 77.5t-17.5 108.5v258h67v-258q0 -91 48 -139t129 -48t129 48t48 139v258z" />
  242. <glyph glyph-name="v" unicode="v" horiz-adv-x="566"
  243. d="M243 0l-222 494h75l187 -428h2l187 428h73l-222 -494h-80z" />
  244. <glyph glyph-name="w" unicode="w" horiz-adv-x="854"
  245. d="M460 494v-289q0 -78 40 -117t100 -39t99 38.5t39 117.5v289h67v-289q0 -55 -15 -96t-42 -68t-63.5 -40.5t-79.5 -13.5q-60 0 -106.5 27.5t-70.5 81.5h-2q-23 -54 -69.5 -81.5t-107.5 -27.5q-43 0 -79.5 13.5t-63.5 40.5t-42 68t-15 96v289h67v-289q0 -79 39 -117.5
  246. t99 -38.5t99.5 39t39.5 117v289h67z" />
  247. <glyph glyph-name="x" unicode="x" horiz-adv-x="554"
  248. d="M19 0l210 251l-202 243h83l167 -206h2l167 206h81l-203 -243l211 -251h-83l-176 214h-2l-174 -214h-81z" />
  249. <glyph glyph-name="y" unicode="y" horiz-adv-x="602"
  250. d="M470 494h67v-476q0 -65 -19 -110.5t-52.5 -75t-78.5 -43t-97 -13.5q-42 0 -80 10t-68.5 29.5t-53 49.5t-34.5 70h67q20 -51 63.5 -75.5t105.5 -24.5q40 0 73 10t57 32t37 56.5t13 82.5v79h-2q-26 -50 -73 -77.5t-112 -27.5q-50 0 -92.5 15t-74 46t-49.5 78t-18 110v255
  251. h67v-255q0 -92 48 -139.5t129 -47.5q80 0 128.5 48t48.5 139v255z" />
  252. <glyph glyph-name="z" unicode="z" horiz-adv-x="534"
  253. d="M37 0v54l353 378v2h-338v60h430v-54l-353 -378v-2h363v-60h-455z" />
  254. <glyph glyph-name="braceleft" unicode="{" horiz-adv-x="364"
  255. d="M301 -197q-91 0 -136 41.5t-45 135.5v189q0 49 -48 49h-25v56h25q48 0 48 49v189q0 94 45 135.5t136 41.5h45v-54h-45q-57 0 -88 -29t-31 -90v-188q0 -33 -13 -54t-41 -27v-2q28 -6 41 -27t13 -54v-188q0 -61 31 -90t88 -29h45v-54h-45z" />
  256. <glyph glyph-name="bar" unicode="|" horiz-adv-x="346"
  257. d="M146 -211v1000h53v-1000h-53z" />
  258. <glyph glyph-name="braceright" unicode="}" horiz-adv-x="364"
  259. d="M64 689q91 0 136 -41.5t45 -135.5v-189q0 -49 48 -49h25v-56h-25q-48 0 -48 -49v-189q0 -94 -45 -135.5t-136 -41.5h-45v54h45q57 0 88 29t31 90v188q0 33 13 54t41 27v2q-28 6 -41 27t-13 54v188q0 61 -31 90t-88 29h-45v54h45z" />
  260. <glyph glyph-name="asciitilde" unicode="~" horiz-adv-x="562"
  261. d="M519 343q-3 -82 -38.5 -124t-92.5 -42q-38 0 -65.5 17t-50.5 37t-45 37t-49 17q-33 0 -55 -25t-25 -80h-55q3 83 38.5 124.5t92.5 41.5q38 0 65.5 -17t50.5 -37t45 -37t49 -17q33 0 55 25t25 80h55z" />
  262. <glyph glyph-name="uni00A0" unicode="&#xa0;" horiz-adv-x="266"
  263. />
  264. <glyph glyph-name="exclamdown" unicode="&#xa1;" horiz-adv-x="255"
  265. d="M127 456q21 0 36 -15t15 -36t-15 -36t-36 -15q-20 0 -35 15t-15 36t15 36t35 15zM155 271l10 -482h-75l9 482h56z" />
  266. <glyph glyph-name="cent" unicode="&#xa2;"
  267. d="M242 668h50v-110q76 -8 129 -51.5t71 -110.5h-69q-16 40 -50 66.5t-81 32.5v-335q47 6 81 32.5t50 67.5h69q-18 -68 -71 -111.5t-129 -50.5v-112h-50v112q-47 4 -86.5 22.5t-67.5 49t-43.5 71t-15.5 87.5t15.5 87t43.5 70.5t67.5 49.5t86.5 23v110zM96 328
  268. q0 -33 10.5 -62t29.5 -51t46 -36.5t60 -18.5v335q-66 -8 -106 -54t-40 -113z" />
  269. <glyph glyph-name="sterling" unicode="&#xa3;"
  270. d="M208 234q3 -18 3 -39q0 -41 -17.5 -77t-53.5 -56v-2h318v-60h-409v56q51 16 76.5 51t25.5 83q0 12 -1.5 22.5t-3.5 21.5h-97v51l75 4v2q-11 20 -22.5 40t-22 42.5t-17 48t-6.5 57.5q0 40 15 74t42.5 59.5t66 40t85.5 14.5q48 0 86.5 -16t65.5 -44.5t41.5 -69.5t14.5 -90
  271. v-9h-65v9q0 72 -38 115t-105 43q-66 0 -103.5 -36t-37.5 -94q0 -30 7 -53.5t17 -44.5t21.5 -41t20.5 -42h222v-60h-204z" />
  272. <glyph glyph-name="currency" unicode="&#xa4;"
  273. d="M370 185q-46 -35 -112 -35q-32 0 -59 8.5t-49 23.5l-91 -92l-35 34l91 91q-38 47 -38 113q0 32 10 60t27 51l-90 90l35 35l90 -92q22 16 49.5 24.5t59.5 8.5q65 0 112 -36l93 95l35 -35l-94 -92q17 -22 26.5 -49.5t9.5 -59.5t-10 -60t-27 -51l95 -93l-35 -34zM258 196
  274. q30 0 54.5 10t42 27.5t27.5 41.5t10 53q0 28 -10 52.5t-27.5 42t-42 27.5t-54.5 10q-29 0 -53.5 -10t-42 -27.5t-27 -42t-9.5 -52.5q0 -29 9.5 -53t27 -41.5t42 -27.5t53.5 -10z" />
  275. <glyph glyph-name="yen" unicode="&#xa5;"
  276. d="M295 119v-119h-67v119h-180v58h180v81h-180v58h180v2l-217 336h77l173 -287h2l172 287h76l-217 -336v-2h180v-58h-179v-81h179v-58h-179z" />
  277. <glyph glyph-name="brokenbar" unicode="&#xa6;" horiz-adv-x="346"
  278. d="M146 -211v400h53v-400h-53zM146 389v400h53v-400h-53z" />
  279. <glyph glyph-name="section" unicode="&#xa7;" horiz-adv-x="556"
  280. d="M137 -32q2 -50 39 -78.5t99 -28.5q65 0 101.5 29.5t36.5 80.5q0 38 -26.5 55.5t-66 26.5t-86 16t-86 23.5t-66 49t-26.5 92.5q0 55 31.5 90t80.5 52v2q-40 14 -66.5 41t-26.5 82q0 37 15 68t42.5 52.5t65 33.5t82.5 12t82 -11.5t64 -33t42.5 -51.5t16.5 -67h-66
  281. q-2 50 -39 78.5t-99 28.5q-65 0 -102 -29.5t-37 -80.5q0 -38 26.5 -55.5t66.5 -26.5t86 -16t86 -23.5t66.5 -49t26.5 -92.5q0 -55 -32.5 -90t-80.5 -52v-2q40 -14 67 -41t27 -82q0 -38 -15 -68.5t-42.5 -52t-65 -33.5t-82.5 -12q-91 0 -147 44.5t-58 118.5h66zM436 234
  282. q0 34 -14.5 55.5t-38 34.5t-54 19.5t-62.5 12.5q-27 -1 -53.5 -9t-47 -22.5t-33.5 -36t-13 -50.5q0 -35 14 -56t37.5 -34t54 -20t63.5 -12q27 1 53 8.5t47 22t34 36.5t13 51z" />
  283. <glyph glyph-name="dieresis" unicode="&#xa8;" horiz-adv-x="320"
  284. d="M253 589q-19 0 -32.5 14t-13.5 32q0 19 13.5 32.5t32.5 13.5t32.5 -13.5t13.5 -32.5q0 -18 -13.5 -32t-32.5 -14zM67 589q-18 0 -32 14t-14 32q0 19 14 32.5t32 13.5q19 0 32.5 -13.5t13.5 -32.5q0 -18 -13.5 -32t-32.5 -14z" />
  285. <glyph glyph-name="copyright" unicode="&#xa9;" horiz-adv-x="764"
  286. d="M730 327q0 -74 -25.5 -136t-72 -107.5t-110.5 -71t-140 -25.5q-77 0 -140.5 25.5t-110 71t-72 107.5t-25.5 136q0 73 25.5 135.5t72 108t110 71t140.5 25.5q76 0 140 -25.5t110.5 -71t72 -108t25.5 -135.5zM504 382q-15 35 -47 56t-76 21q-29 0 -53.5 -10t-42 -27.5
  287. t-27 -42t-9.5 -52.5q0 -29 9.5 -53t27 -41.5t42 -27.5t53.5 -10q44 0 76 21t47 56h47q-16 -54 -61 -87.5t-109 -33.5q-39 0 -72 13.5t-57 37t-37 55.5t-13 70t13 70t37 55.5t57 37t72 13.5q64 0 109 -33.5t61 -87.5h-47zM683 327q0 64 -22 118.5t-62 94t-95 61.5t-122 22
  288. t-122.5 -22t-95 -61.5t-61.5 -94t-22 -118.5t22 -118.5t61.5 -94t95 -61.5t122.5 -22t122.5 22t95 61.5t61.5 94t22 118.5z" />
  289. <glyph glyph-name="ordfeminine" unicode="&#xaa;" horiz-adv-x="435"
  290. d="M339 326v77h-2q-18 -39 -54.5 -62.5t-83.5 -23.5q-33 0 -64 11.5t-54.5 34t-37.5 55t-14 74.5q0 38 13 70t37 55.5t57 36.5t72 13t71.5 -13t56.5 -36t37 -55.5t13 -71.5v-165h-47zM39 194v47h347v-47h-347zM208 367q28 0 51 9.5t39.5 26t25.5 39.5t9 50q0 55 -34.5 90.5
  291. t-90.5 35.5t-90.5 -35.5t-34.5 -90.5q0 -27 9 -50t25.5 -39.5t39.5 -26t51 -9.5z" />
  292. <glyph glyph-name="guillemotleft" unicode="&#xab;" horiz-adv-x="540"
  293. d="M226 48l-170 199l170 199h74l-171 -199l171 -199h-74zM409 48l-170 199l170 199h74l-171 -199l171 -199h-74z" />
  294. <glyph glyph-name="logicalnot" unicode="&#xac;" horiz-adv-x="562"
  295. d="M454 61v202h-404v58h462v-260h-58z" />
  296. <glyph glyph-name="uni00AD" unicode="&#xad;" horiz-adv-x="346"
  297. d="M23 239v65h300v-65h-300z" />
  298. <glyph glyph-name="registered" unicode="&#xae;" horiz-adv-x="764"
  299. d="M730 327q0 -74 -25.5 -136t-72 -107.5t-110.5 -71t-140 -25.5q-77 0 -140.5 25.5t-110 71t-72 107.5t-25.5 136q0 73 25.5 135.5t72 108t110 71t140.5 25.5q76 0 140 -25.5t110.5 -71t72 -108t25.5 -135.5zM683 327q0 64 -22 118.5t-62 94t-95 61.5t-122 22t-122.5 -22
  300. t-95 -61.5t-61.5 -94t-22 -118.5t22 -118.5t61.5 -94t95 -61.5t122.5 -22t122.5 22t95 61.5t61.5 94t22 118.5zM487 161l-92 119h-97v-119h-47v332h168q54 0 84 -29t30 -77q0 -42 -22.5 -70t-64.5 -35v-2l98 -119h-57zM298 452v-131h117q35 0 53 18.5t18 47.5t-18 47t-53 18
  301. h-117z" />
  302. <glyph glyph-name="macron" unicode="&#xaf;" horiz-adv-x="320"
  303. d="M10 595v49h300v-49h-300z" />
  304. <glyph glyph-name="degree" unicode="&#xb0;" horiz-adv-x="318"
  305. d="M159 410q-27 0 -50.5 10t-41 27.5t-27.5 41t-10 50.5t10 50t27.5 40.5t41 27.5t50.5 10t50 -10t40.5 -27.5t27.5 -40.5t10 -50t-10 -50.5t-27.5 -41t-40.5 -27.5t-50 -10zM236 539q0 32 -22.5 54.5t-54.5 22.5t-54.5 -22.5t-22.5 -54.5q0 -16 6 -30.5t16.5 -25
  306. t24.5 -16.5t30 -6q32 0 54.5 23t22.5 55z" />
  307. <glyph glyph-name="plusminus" unicode="&#xb1;" horiz-adv-x="562"
  308. d="M50 10v57h202v179h-202v58h202v192h58v-192h202v-58h-202v-179h202v-57h-462z" />
  309. <glyph glyph-name="uni00B2" unicode="&#xb2;" horiz-adv-x="340"
  310. d="M40 242v45l155 144q26 23 41 46t15 51q0 38 -21 61.5t-59 23.5t-59 -24t-21 -65v-6h-51v6q0 63 34.5 100.5t97.5 37.5q60 0 95.5 -38t35.5 -96q0 -41 -19 -70t-52 -60l-116 -106v-2h182v-48h-258z" />
  311. <glyph glyph-name="uni00B3" unicode="&#xb3;" horiz-adv-x="340"
  312. d="M119 437v45h49q37 0 56.5 17t19.5 49q0 27 -19.5 46.5t-56.5 19.5t-55.5 -19.5t-20.5 -47.5h-51q3 56 37.5 85.5t89.5 29.5q57 0 92.5 -30t35.5 -81q0 -65 -56 -90v-2q34 -11 52.5 -37t18.5 -65q0 -57 -40 -90t-103 -33q-62 0 -101.5 33t-40.5 93h52q0 -32 23 -54.5
  313. t67 -22.5t67 22.5t23 55.5q0 36 -23 56t-68 20h-48z" />
  314. <glyph glyph-name="acute" unicode="&#xb4;" horiz-adv-x="320"
  315. d="M72 570l103 150h72l-115 -150h-60z" />
  316. <glyph glyph-name="mu" unicode="&#xb5;" horiz-adv-x="604"
  317. d="M66 -211v705h67v-258q0 -91 48.5 -139t128.5 -48q81 0 129 47.5t48 139.5v258h67v-258q0 -63 -18 -110t-49.5 -78t-74.5 -46t-92 -15q-65 0 -112.5 27.5t-72.5 77.5h-2v-303h-67z" />
  318. <glyph glyph-name="paragraph" unicode="&#xb6;" horiz-adv-x="596"
  319. d="M257 -172v377q-51 3 -91.5 21.5t-69 48t-43.5 69t-15 86.5q0 48 17 89t48 71t75.5 47t99.5 17h240v-826h-52v776h-157v-776h-52z" />
  320. <glyph glyph-name="periodcentered" unicode="&#xb7;" horiz-adv-x="239"
  321. d="M120 276q-21 0 -36 15t-15 36t15 36t36 15q20 0 35 -15t15 -36t-15 -36t-35 -15z" />
  322. <glyph glyph-name="cedilla" unicode="&#xb8;" horiz-adv-x="320"
  323. d="M101 -89l37 89h44l-27 -65v-2q8 3 13 4t13 1q35 0 58.5 -21t23.5 -56q0 -41 -27.5 -63t-75.5 -22q-45 0 -72.5 20t-31.5 56h50q2 -17 16.5 -26t37.5 -9q24 0 38 10t14 33q0 17 -11.5 27.5t-30.5 10.5q-11 0 -17.5 -1.5t-14.5 -6.5z" />
  324. <glyph glyph-name="uni00B9" unicode="&#xb9;" horiz-adv-x="340"
  325. d="M172 242v364h-93v48h146v-412h-53z" />
  326. <glyph glyph-name="ordmasculine" unicode="&#xba;" horiz-adv-x="415"
  327. d="M386 492q0 -38 -13 -70t-37 -55t-56.5 -36t-71.5 -13t-72 13t-57 36t-37 55t-13 70t13 70t37 55.5t57 36.5t72 13t71.5 -13t56.5 -36.5t37 -55.5t13 -70zM208 367q28 0 51 9.5t39.5 26t25.5 39.5t9 50q0 55 -34.5 90.5t-90.5 35.5t-91 -35.5t-35 -90.5q0 -27 9.5 -50
  328. t26 -39.5t39.5 -26t51 -9.5zM39 194v47h337v-47h-337z" />
  329. <glyph glyph-name="guillemotright" unicode="&#xbb;" horiz-adv-x="540"
  330. d="M57 48l171 199l-171 199h74l170 -199l-170 -199h-74zM240 48l171 199l-171 199h74l170 -199l-170 -199h-74z" />
  331. <glyph glyph-name="onequarter" unicode="&#xbc;" horiz-adv-x="824"
  332. d="M171 0l426 654h56l-426 -654h-56zM172 242v364h-93v48h146v-412h-53zM709 0v92h-205v44l205 276h53v-273h46v-47h-46v-92h-53zM708 338l-145 -197v-2h147v199h-2z" />
  333. <glyph glyph-name="onehalf" unicode="&#xbd;" horiz-adv-x="824"
  334. d="M171 0l426 654h56l-426 -654h-56zM172 242v364h-93v48h146v-412h-53zM524 0v45l155 144q26 23 41 46t15 51q0 38 -21 61.5t-59 23.5t-59 -24t-21 -65v-6h-51v6q0 63 34.5 100.5t97.5 37.5q60 0 95.5 -38t35.5 -96q0 -41 -19 -70t-52 -60l-116 -106v-2h182v-48h-258z" />
  335. <glyph glyph-name="threequarters" unicode="&#xbe;" horiz-adv-x="824"
  336. d="M218 0l426 654h56l-426 -654h-56zM709 0v92h-205v44l205 276h53v-273h46v-47h-46v-92h-53zM708 338l-145 -197v-2h147v199h-2zM119 437v45h49q37 0 56.5 17t19.5 49q0 27 -19.5 46.5t-56.5 19.5t-55.5 -19.5t-20.5 -47.5h-51q3 56 37.5 85.5t89.5 29.5q57 0 92.5 -30
  337. t35.5 -81q0 -65 -56 -90v-2q34 -11 52.5 -37t18.5 -65q0 -57 -40 -90t-103 -33q-62 0 -101.5 33t-40.5 93h52q0 -32 23 -54.5t67 -22.5t67 22.5t23 55.5q0 36 -23 56t-68 20h-48z" />
  338. <glyph glyph-name="questiondown" unicode="&#xbf;" horiz-adv-x="471"
  339. d="M295 271v-16q0 -42 -14.5 -69.5t-36.5 -46.5t-47 -34t-47 -32.5t-36.5 -41.5t-14.5 -62q0 -63 38.5 -97t99.5 -34q60 0 100.5 35t40.5 98v8h63v-10q0 -44 -15.5 -80t-43 -61t-65 -38.5t-81.5 -13.5q-45 0 -82.5 13.5t-64.5 38t-42.5 60.5t-15.5 81q0 48 15 79t37.5 52
  340. t49 35.5t49 30t37.5 36t15 53.5v16h61zM264 456q20 0 35.5 -15t15.5 -36t-15.5 -36t-35.5 -15q-21 0 -36 15t-15 36t15 36t36 15z" />
  341. <glyph glyph-name="Agrave" unicode="&#xc0;" horiz-adv-x="668"
  342. d="M544 0v220h-423v-220h-70v387q0 64 18.5 116t54.5 88.5t88.5 56t120.5 19.5q69 0 121.5 -19.5t88.5 -56t54.5 -88.5t18.5 -116v-387h-72zM544 387q0 100 -53 157t-159 57q-104 0 -157.5 -57t-53.5 -157v-101h423v101zM327 720l-115 150h72l103 -150h-60z" />
  343. <glyph glyph-name="Aacute" unicode="&#xc1;" horiz-adv-x="668"
  344. d="M544 0v220h-423v-220h-70v387q0 64 18.5 116t54.5 88.5t88.5 56t120.5 19.5q69 0 121.5 -19.5t88.5 -56t54.5 -88.5t18.5 -116v-387h-72zM544 387q0 100 -53 157t-159 57q-104 0 -157.5 -57t-53.5 -157v-101h423v101zM281 720l103 150h72l-115 -150h-60z" />
  345. <glyph glyph-name="Acircumflex" unicode="&#xc2;" horiz-adv-x="668"
  346. d="M544 0v220h-423v-220h-70v387q0 64 18.5 116t54.5 88.5t88.5 56t120.5 19.5q69 0 121.5 -19.5t88.5 -56t54.5 -88.5t18.5 -116v-387h-72zM544 387q0 100 -53 157t-159 57q-104 0 -157.5 -57t-53.5 -157v-101h423v101zM416 720l-81 107h-2l-81 -107h-59l108 150h66
  347. l108 -150h-59z" />
  348. <glyph glyph-name="Atilde" unicode="&#xc3;" horiz-adv-x="668"
  349. d="M544 0v220h-423v-220h-70v387q0 64 18.5 116t54.5 88.5t88.5 56t120.5 19.5q69 0 121.5 -19.5t88.5 -56t54.5 -88.5t18.5 -116v-387h-72zM544 387q0 100 -53 157t-159 57q-104 0 -157.5 -57t-53.5 -157v-101h423v101zM508 847q-18 -123 -103 -123q-27 0 -45.5 11
  350. t-33 23.5t-28 23.5t-32.5 11q-25 0 -38.5 -17.5t-20.5 -52.5h-47q18 122 103 122q27 0 45.5 -10.5t33 -23.5t28 -23.5t32.5 -10.5q25 0 38.5 17.5t20.5 52.5h47z" />
  351. <glyph glyph-name="Adieresis" unicode="&#xc4;" horiz-adv-x="668"
  352. d="M544 0v220h-423v-220h-70v387q0 64 18.5 116t54.5 88.5t88.5 56t120.5 19.5q69 0 121.5 -19.5t88.5 -56t54.5 -88.5t18.5 -116v-387h-72zM544 387q0 100 -53 157t-159 57q-104 0 -157.5 -57t-53.5 -157v-101h423v101zM427 739q-19 0 -32.5 14t-13.5 32q0 19 13.5 32.5
  353. t32.5 13.5t32.5 -13.5t13.5 -32.5q0 -18 -13.5 -32t-32.5 -14zM241 739q-18 0 -32 14t-14 32q0 19 14 32.5t32 13.5q19 0 32.5 -13.5t13.5 -32.5q0 -18 -13.5 -32t-32.5 -14z" />
  354. <glyph glyph-name="Aring" unicode="&#xc5;" horiz-adv-x="668"
  355. d="M544 0v220h-423v-220h-70v387q0 64 18.5 116t54.5 88.5t88.5 56t120.5 19.5q69 0 121.5 -19.5t88.5 -56t54.5 -88.5t18.5 -116v-387h-72zM544 387q0 100 -53 157t-159 57q-104 0 -157.5 -57t-53.5 -157v-101h423v101zM334 707q-41 0 -68.5 27t-27.5 68t27.5 68.5
  356. t68.5 27.5q42 0 69 -27.5t27 -68.5t-27 -68t-69 -27zM383 802q0 21 -13.5 35.5t-35.5 14.5q-21 0 -35 -14.5t-14 -35.5t14 -35.5t35 -14.5q22 0 35.5 14.5t13.5 35.5z" />
  357. <glyph glyph-name="AE" unicode="&#xc6;" horiz-adv-x="1028"
  358. d="M504 0v220h-383v-220h-70v374q0 64 18.5 116t54.5 88.5t88.5 56t120.5 19.5h649v-66h-406v-223h348v-66h-348v-233h406v-66h-478zM504 588h-172q-104 0 -157.5 -57t-53.5 -157v-88h383v302z" />
  359. <glyph glyph-name="Ccedilla" unicode="&#xc7;" horiz-adv-x="751"
  360. d="M317 -89l32 76v2q-70 5 -128 32.5t-99.5 72.5t-64.5 104.5t-23 128.5q0 73 25.5 135.5t72 108t110 71t140.5 25.5q61 0 115 -16.5t97 -47t73.5 -73.5t46.5 -95h-76q-15 37 -39.5 68t-57.5 52.5t-73 33.5t-86 12q-61 0 -112 -20.5t-87.5 -57t-56.5 -87t-20 -109.5
  361. t20 -109.5t56.5 -87t87.5 -57t112 -20.5q46 0 86 12t73 33.5t57.5 52t39.5 68.5h76q-15 -51 -45 -93t-71.5 -72.5t-93.5 -48t-112 -18.5l-21 -52v-2q8 3 13 4t13 1q35 0 58.5 -21t23.5 -56q0 -41 -27.5 -63t-75.5 -22q-45 0 -72.5 20t-31.5 56h50q2 -17 16.5 -26t37.5 -9
  362. q24 0 38 10t14 33q0 17 -11.5 27.5t-30.5 10.5q-11 0 -17.5 -1.5t-14.5 -6.5z" />
  363. <glyph glyph-name="Egrave" unicode="&#xc8;" horiz-adv-x="593"
  364. d="M67 0v654h480v-66h-408v-223h350v-66h-350v-233h408v-66h-480zM302 720l-115 150h72l103 -150h-60z" />
  365. <glyph glyph-name="Eacute" unicode="&#xc9;" horiz-adv-x="593"
  366. d="M67 0v654h480v-66h-408v-223h350v-66h-350v-233h408v-66h-480zM257 720l103 150h72l-115 -150h-60z" />
  367. <glyph glyph-name="Ecircumflex" unicode="&#xca;" horiz-adv-x="593"
  368. d="M67 0v654h480v-66h-408v-223h350v-66h-350v-233h408v-66h-480zM392 720l-81 107h-2l-81 -107h-59l108 150h66l108 -150h-59z" />
  369. <glyph glyph-name="Edieresis" unicode="&#xcb;" horiz-adv-x="593"
  370. d="M67 0v654h480v-66h-408v-223h350v-66h-350v-233h408v-66h-480zM402 739q-19 0 -32.5 14t-13.5 32q0 19 13.5 32.5t32.5 13.5t32.5 -13.5t13.5 -32.5q0 -18 -13.5 -32t-32.5 -14zM216 739q-18 0 -32 14t-14 32q0 19 14 32.5t32 13.5q19 0 32.5 -13.5t13.5 -32.5
  371. q0 -18 -13.5 -32t-32.5 -14z" />
  372. <glyph glyph-name="Igrave" unicode="&#xcc;" horiz-adv-x="211"
  373. d="M70 0v654h72v-654h-72zM99 720l-115 150h72l103 -150h-60z" />
  374. <glyph glyph-name="Iacute" unicode="&#xcd;" horiz-adv-x="211"
  375. d="M70 0v654h72v-654h-72zM53 720l103 150h72l-115 -150h-60z" />
  376. <glyph glyph-name="Icircumflex" unicode="&#xce;" horiz-adv-x="211"
  377. d="M70 0v654h72v-654h-72zM188 720l-81 107h-2l-81 -107h-59l108 150h66l108 -150h-59z" />
  378. <glyph glyph-name="Idieresis" unicode="&#xcf;" horiz-adv-x="211"
  379. d="M70 0v654h72v-654h-72zM199 739q-19 0 -32.5 14t-13.5 32q0 19 13.5 32.5t32.5 13.5t32.5 -13.5t13.5 -32.5q0 -18 -13.5 -32t-32.5 -14zM13 739q-18 0 -32 14t-14 32q0 19 14 32.5t32 13.5q19 0 32.5 -13.5t13.5 -32.5q0 -18 -13.5 -32t-32.5 -14z" />
  380. <glyph glyph-name="Eth" unicode="&#xd0;" horiz-adv-x="690"
  381. d="M75 0v299h-64v66h64v289h234q85 0 149.5 -23.5t108.5 -66.5t66.5 -103.5t22.5 -133.5q0 -74 -22.5 -134t-66.5 -103t-108.5 -66.5t-149.5 -23.5h-234zM309 66q69 0 121 18.5t86 53t51 82.5t17 107t-17 107t-51 82.5t-86 53t-121 18.5h-162v-223h213v-66h-213v-233h162z
  382. " />
  383. <glyph glyph-name="Ntilde" unicode="&#xd1;" horiz-adv-x="653"
  384. d="M529 0v397q0 95 -51 149.5t-151 54.5t-151.5 -54.5t-51.5 -149.5v-397h-72v397q0 62 18 112t53 85t86.5 54t117.5 19t117 -19t86 -54t53 -85t18 -112v-397h-72zM501 847q-18 -123 -103 -123q-27 0 -45.5 11t-33 23.5t-28 23.5t-32.5 11q-25 0 -38.5 -17.5t-20.5 -52.5
  385. h-47q18 122 103 122q27 0 45.5 -10.5t33 -23.5t28 -23.5t32.5 -10.5q25 0 38.5 17.5t20.5 52.5h47z" />
  386. <glyph glyph-name="Ograve" unicode="&#xd2;" horiz-adv-x="764"
  387. d="M730 327q0 -74 -25.5 -136t-72 -107.5t-110.5 -71t-140 -25.5q-77 0 -140.5 25.5t-110 71t-72 107.5t-25.5 136q0 73 25.5 135.5t72 108t110 71t140.5 25.5q76 0 140 -25.5t110.5 -71t72 -108t25.5 -135.5zM382 53q61 0 112 20.5t87.5 57t56.5 87t20 109.5t-20 109.5
  388. t-56.5 87t-87.5 57t-112 20.5t-112 -20.5t-87.5 -57t-56.5 -87t-20 -109.5t20 -109.5t56.5 -87t87.5 -57t112 -20.5zM374 720l-115 150h72l103 -150h-60z" />
  389. <glyph glyph-name="Oacute" unicode="&#xd3;" horiz-adv-x="764"
  390. d="M730 327q0 -74 -25.5 -136t-72 -107.5t-110.5 -71t-140 -25.5q-77 0 -140.5 25.5t-110 71t-72 107.5t-25.5 136q0 73 25.5 135.5t72 108t110 71t140.5 25.5q76 0 140 -25.5t110.5 -71t72 -108t25.5 -135.5zM382 53q61 0 112 20.5t87.5 57t56.5 87t20 109.5t-20 109.5
  391. t-56.5 87t-87.5 57t-112 20.5t-112 -20.5t-87.5 -57t-56.5 -87t-20 -109.5t20 -109.5t56.5 -87t87.5 -57t112 -20.5zM329 720l103 150h72l-115 -150h-60z" />
  392. <glyph glyph-name="Ocircumflex" unicode="&#xd4;" horiz-adv-x="764"
  393. d="M730 327q0 -74 -25.5 -136t-72 -107.5t-110.5 -71t-140 -25.5q-77 0 -140.5 25.5t-110 71t-72 107.5t-25.5 136q0 73 25.5 135.5t72 108t110 71t140.5 25.5q76 0 140 -25.5t110.5 -71t72 -108t25.5 -135.5zM382 53q61 0 112 20.5t87.5 57t56.5 87t20 109.5t-20 109.5
  394. t-56.5 87t-87.5 57t-112 20.5t-112 -20.5t-87.5 -57t-56.5 -87t-20 -109.5t20 -109.5t56.5 -87t87.5 -57t112 -20.5zM464 720l-81 107h-2l-81 -107h-59l108 150h66l108 -150h-59z" />
  395. <glyph glyph-name="Otilde" unicode="&#xd5;" horiz-adv-x="764"
  396. d="M730 327q0 -74 -25.5 -136t-72 -107.5t-110.5 -71t-140 -25.5q-77 0 -140.5 25.5t-110 71t-72 107.5t-25.5 136q0 73 25.5 135.5t72 108t110 71t140.5 25.5q76 0 140 -25.5t110.5 -71t72 -108t25.5 -135.5zM382 53q61 0 112 20.5t87.5 57t56.5 87t20 109.5t-20 109.5
  397. t-56.5 87t-87.5 57t-112 20.5t-112 -20.5t-87.5 -57t-56.5 -87t-20 -109.5t20 -109.5t56.5 -87t87.5 -57t112 -20.5zM556 847q-18 -123 -103 -123q-27 0 -45.5 11t-33 23.5t-28 23.5t-32.5 11q-25 0 -38.5 -17.5t-20.5 -52.5h-47q18 122 103 122q27 0 45.5 -10.5t33 -23.5
  398. t28 -23.5t32.5 -10.5q25 0 38.5 17.5t20.5 52.5h47z" />
  399. <glyph glyph-name="Odieresis" unicode="&#xd6;" horiz-adv-x="764"
  400. d="M730 327q0 -74 -25.5 -136t-72 -107.5t-110.5 -71t-140 -25.5q-77 0 -140.5 25.5t-110 71t-72 107.5t-25.5 136q0 73 25.5 135.5t72 108t110 71t140.5 25.5q76 0 140 -25.5t110.5 -71t72 -108t25.5 -135.5zM382 53q61 0 112 20.5t87.5 57t56.5 87t20 109.5t-20 109.5
  401. t-56.5 87t-87.5 57t-112 20.5t-112 -20.5t-87.5 -57t-56.5 -87t-20 -109.5t20 -109.5t56.5 -87t87.5 -57t112 -20.5zM475 739q-19 0 -32.5 14t-13.5 32q0 19 13.5 32.5t32.5 13.5t32.5 -13.5t13.5 -32.5q0 -18 -13.5 -32t-32.5 -14zM289 739q-18 0 -32 14t-14 32
  402. q0 19 14 32.5t32 13.5q19 0 32.5 -13.5t13.5 -32.5q0 -18 -13.5 -32t-32.5 -14z" />
  403. <glyph glyph-name="multiply" unicode="&#xd7;" horiz-adv-x="562"
  404. d="M281 221l-177 -177l-41 41l177 177l-177 177l41 41l177 -177l177 177l41 -41l-177 -177l177 -177l-41 -41z" />
  405. <glyph glyph-name="Oslash" unicode="&#xd8;" horiz-adv-x="764"
  406. d="M34 0l87 94q-42 45 -64.5 104t-22.5 129q0 73 25.5 135.5t72 108t110 71t140.5 25.5q62 0 115 -16.5t97 -47.5l47 51h89l-88 -94q42 -45 65 -104.5t23 -128.5q0 -74 -25.5 -136t-72 -107.5t-110.5 -71t-140 -25.5q-62 0 -115.5 16.5t-96.5 47.5l-47 -51h-89zM106 327
  407. q0 -107 62 -181h2l375 405v2q-68 48 -163 48q-61 0 -112 -20.5t-87.5 -57t-56.5 -87t-20 -109.5zM382 53q61 0 112 20.5t87.5 57t56.5 87t20 109.5q0 53 -16.5 99t-45.5 81h-2l-375 -404v-2q68 -48 163 -48z" />
  408. <glyph glyph-name="Ugrave" unicode="&#xd9;" horiz-adv-x="649"
  409. d="M528 654h70v-397q0 -62 -18 -112t-52.5 -85t-85 -54t-115.5 -19q-66 0 -117.5 19t-86.5 54t-53 85t-18 112v397h72v-397q0 -95 51 -149.5t151 -54.5t151 55t51 149v397zM317 720l-115 150h72l103 -150h-60z" />
  410. <glyph glyph-name="Uacute" unicode="&#xda;" horiz-adv-x="649"
  411. d="M528 654h70v-397q0 -62 -18 -112t-52.5 -85t-85 -54t-115.5 -19q-66 0 -117.5 19t-86.5 54t-53 85t-18 112v397h72v-397q0 -95 51 -149.5t151 -54.5t151 55t51 149v397zM271 720l103 150h72l-115 -150h-60z" />
  412. <glyph glyph-name="Ucircumflex" unicode="&#xdb;" horiz-adv-x="649"
  413. d="M528 654h70v-397q0 -62 -18 -112t-52.5 -85t-85 -54t-115.5 -19q-66 0 -117.5 19t-86.5 54t-53 85t-18 112v397h72v-397q0 -95 51 -149.5t151 -54.5t151 55t51 149v397zM406 720l-81 107h-2l-81 -107h-59l108 150h66l108 -150h-59z" />
  414. <glyph glyph-name="Udieresis" unicode="&#xdc;" horiz-adv-x="649"
  415. d="M528 654h70v-397q0 -62 -18 -112t-52.5 -85t-85 -54t-115.5 -19q-66 0 -117.5 19t-86.5 54t-53 85t-18 112v397h72v-397q0 -95 51 -149.5t151 -54.5t151 55t51 149v397zM417 739q-19 0 -32.5 14t-13.5 32q0 19 13.5 32.5t32.5 13.5t32.5 -13.5t13.5 -32.5
  416. q0 -18 -13.5 -32t-32.5 -14zM231 739q-18 0 -32 14t-14 32q0 19 14 32.5t32 13.5q19 0 32.5 -13.5t13.5 -32.5q0 -18 -13.5 -32t-32.5 -14z" />
  417. <glyph glyph-name="Yacute" unicode="&#xdd;" horiz-adv-x="649"
  418. d="M289 0v287l-269 367h87l218 -306h2l217 306h85l-268 -366v-288h-72zM271 720l103 150h72l-115 -150h-60z" />
  419. <glyph glyph-name="Thorn" unicode="&#xde;" horiz-adv-x="601"
  420. d="M67 0v654h72v-92h216q56 0 98 -16t69.5 -43.5t41.5 -65.5t14 -83t-14 -83.5t-41.5 -66t-69.5 -43.5t-98 -16h-216v-145h-72zM355 211q40 0 68.5 11t46.5 30t26.5 45.5t8.5 56.5t-8.5 56t-26.5 45t-46.5 30t-68.5 11h-216v-285h216z" />
  421. <glyph glyph-name="germandbls" unicode="&#xdf;" horiz-adv-x="598"
  422. d="M390 381q88 -11 133 -62.5t45 -131.5q0 -45 -14.5 -81.5t-41.5 -63t-66 -41t-88 -14.5q-46 0 -83 13t-64 36.5t-43.5 56t-19.5 72.5h60q5 -51 44.5 -84.5t101.5 -33.5q67 0 107 38t40 106q0 70 -45.5 108.5t-140.5 38.5h-57v60h15q63 0 102.5 32t39.5 98t-39.5 99.5
  423. t-102.5 33.5t-102 -36t-39 -111v-514h-67v514q0 52 15 91t42.5 65t66 39.5t84.5 13.5t84 -13t65.5 -37t42.5 -59t15 -79q0 -57 -24 -94.5t-66 -57.5v-2v0z" />
  424. <glyph glyph-name="agrave" unicode="&#xe0;" horiz-adv-x="609"
  425. d="M560 0h-62v117h-2q-25 -60 -80.5 -95t-130.5 -35q-52 0 -98.5 18t-81.5 51.5t-55.5 82t-20.5 108.5q0 56 19.5 104t55 82.5t84 54t107.5 19.5q58 0 107 -19t84 -54t54.5 -83.5t19.5 -106.5v-244zM295 49q44 0 80.5 15t62.5 41.5t40.5 62.5t14.5 79t-14.5 79t-40.5 62.5
  426. t-62.5 41.5t-80.5 15t-80.5 -15t-62.5 -41.5t-40.5 -62.5t-14.5 -79t14.5 -79t40.5 -62.5t62.5 -41.5t80.5 -15zM293 570l-115 150h72l103 -150h-60z" />
  427. <glyph glyph-name="aacute" unicode="&#xe1;" horiz-adv-x="609"
  428. d="M560 0h-62v117h-2q-25 -60 -80.5 -95t-130.5 -35q-52 0 -98.5 18t-81.5 51.5t-55.5 82t-20.5 108.5q0 56 19.5 104t55 82.5t84 54t107.5 19.5q58 0 107 -19t84 -54t54.5 -83.5t19.5 -106.5v-244zM295 49q44 0 80.5 15t62.5 41.5t40.5 62.5t14.5 79t-14.5 79t-40.5 62.5
  429. t-62.5 41.5t-80.5 15t-80.5 -15t-62.5 -41.5t-40.5 -62.5t-14.5 -79t14.5 -79t40.5 -62.5t62.5 -41.5t80.5 -15zM247 570l103 150h72l-115 -150h-60z" />
  430. <glyph glyph-name="acircumflex" unicode="&#xe2;" horiz-adv-x="609"
  431. d="M560 0h-62v117h-2q-25 -60 -80.5 -95t-130.5 -35q-52 0 -98.5 18t-81.5 51.5t-55.5 82t-20.5 108.5q0 56 19.5 104t55 82.5t84 54t107.5 19.5q58 0 107 -19t84 -54t54.5 -83.5t19.5 -106.5v-244zM295 49q44 0 80.5 15t62.5 41.5t40.5 62.5t14.5 79t-14.5 79t-40.5 62.5
  432. t-62.5 41.5t-80.5 15t-80.5 -15t-62.5 -41.5t-40.5 -62.5t-14.5 -79t14.5 -79t40.5 -62.5t62.5 -41.5t80.5 -15zM383 570l-81 107h-2l-81 -107h-59l108 150h66l108 -150h-59z" />
  433. <glyph glyph-name="atilde" unicode="&#xe3;" horiz-adv-x="609"
  434. d="M560 0h-62v117h-2q-25 -60 -80.5 -95t-130.5 -35q-52 0 -98.5 18t-81.5 51.5t-55.5 82t-20.5 108.5q0 56 19.5 104t55 82.5t84 54t107.5 19.5q58 0 107 -19t84 -54t54.5 -83.5t19.5 -106.5v-244zM295 49q44 0 80.5 15t62.5 41.5t40.5 62.5t14.5 79t-14.5 79t-40.5 62.5
  435. t-62.5 41.5t-80.5 15t-80.5 -15t-62.5 -41.5t-40.5 -62.5t-14.5 -79t14.5 -79t40.5 -62.5t62.5 -41.5t80.5 -15zM474 697q-18 -123 -103 -123q-27 0 -45.5 11t-33 23.5t-28 23.5t-32.5 11q-25 0 -38.5 -17.5t-20.5 -52.5h-47q18 122 103 122q27 0 45.5 -10.5t33 -23.5
  436. t28 -23.5t32.5 -10.5q25 0 38.5 17.5t20.5 52.5h47z" />
  437. <glyph glyph-name="adieresis" unicode="&#xe4;" horiz-adv-x="609"
  438. d="M560 0h-62v117h-2q-25 -60 -80.5 -95t-130.5 -35q-52 0 -98.5 18t-81.5 51.5t-55.5 82t-20.5 108.5q0 56 19.5 104t55 82.5t84 54t107.5 19.5q58 0 107 -19t84 -54t54.5 -83.5t19.5 -106.5v-244zM295 49q44 0 80.5 15t62.5 41.5t40.5 62.5t14.5 79t-14.5 79t-40.5 62.5
  439. t-62.5 41.5t-80.5 15t-80.5 -15t-62.5 -41.5t-40.5 -62.5t-14.5 -79t14.5 -79t40.5 -62.5t62.5 -41.5t80.5 -15zM393 589q-19 0 -32.5 14t-13.5 32q0 19 13.5 32.5t32.5 13.5t32.5 -13.5t13.5 -32.5q0 -18 -13.5 -32t-32.5 -14zM207 589q-18 0 -32 14t-14 32q0 19 14 32.5
  440. t32 13.5q19 0 32.5 -13.5t13.5 -32.5q0 -18 -13.5 -32t-32.5 -14z" />
  441. <glyph glyph-name="aring" unicode="&#xe5;" horiz-adv-x="609"
  442. d="M560 0h-62v117h-2q-25 -60 -80.5 -95t-130.5 -35q-52 0 -98.5 18t-81.5 51.5t-55.5 82t-20.5 108.5q0 56 19.5 104t55 82.5t84 54t107.5 19.5q58 0 107 -19t84 -54t54.5 -83.5t19.5 -106.5v-244zM295 49q44 0 80.5 15t62.5 41.5t40.5 62.5t14.5 79t-14.5 79t-40.5 62.5
  443. t-62.5 41.5t-80.5 15t-80.5 -15t-62.5 -41.5t-40.5 -62.5t-14.5 -79t14.5 -79t40.5 -62.5t62.5 -41.5t80.5 -15zM300 557q-41 0 -68.5 27t-27.5 68t27.5 68.5t68.5 27.5q42 0 69 -27.5t27 -68.5t-27 -68t-69 -27zM349 652q0 21 -13.5 35.5t-35.5 14.5q-21 0 -35 -14.5
  444. t-14 -35.5t14 -35.5t35 -14.5q22 0 35.5 14.5t13.5 35.5z" />
  445. <glyph glyph-name="ae" unicode="&#xe6;" horiz-adv-x="1052"
  446. d="M562 225q3 -39 18.5 -71t41 -55.5t60 -36.5t76.5 -13q60 0 103 23t68 66h73q-29 -68 -91.5 -109.5t-143.5 -41.5q-75 0 -129.5 34.5t-79.5 92.5h-2v-114h-61v114h-2q-25 -58 -79 -92.5t-129 -34.5q-52 0 -98.5 18t-81.5 51.5t-55.5 82t-20.5 108.5q0 56 19.5 104t54 82.5
  447. t83 54t106.5 19.5q85 0 145.5 -39.5t88.5 -105.5h2q28 66 87.5 105.5t146.5 39.5q58 0 106 -19.5t82.5 -54t53.5 -82.5t19 -104v-22h-461zM295 49q44 0 80.5 15t62.5 41.5t40.5 62.5t14.5 79t-14.5 79t-40.5 62.5t-62.5 41.5t-80.5 15t-80.5 -15t-62.5 -41.5t-40.5 -62.5
  448. t-14.5 -79t14.5 -79t40.5 -62.5t62.5 -41.5t80.5 -15zM758 445q-39 0 -72 -12t-58 -33t-41.5 -50.5t-22.5 -64.5h389v2q-12 71 -64 114.5t-131 43.5z" />
  449. <glyph glyph-name="ccedilla" unicode="&#xe7;" horiz-adv-x="580"
  450. d="M229 -89l31 76v2q-52 5 -94.5 26.5t-73 55.5t-47 79t-16.5 97q0 56 19.5 104t55 82.5t84 54t107.5 19.5q48 0 89.5 -13.5t74.5 -37.5t56 -58t34 -75h-68q-20 56 -69 89t-117 33q-44 0 -80.5 -15t-62.5 -41.5t-40.5 -62.5t-14.5 -79t14.5 -79t40.5 -62.5t62.5 -41.5
  451. t80.5 -15q68 0 117 33t69 89h68q-11 -41 -33 -74t-53.5 -57t-72 -38t-86.5 -15l-21 -52v-2q8 3 13 4t13 1q35 0 58.5 -21t23.5 -56q0 -41 -27.5 -63t-75.5 -22q-45 0 -72.5 20t-31.5 56h50q2 -17 16.5 -26t37.5 -9q24 0 38 10t14 33q0 17 -11.5 27.5t-30.5 10.5
  452. q-11 0 -17.5 -1.5t-14.5 -6.5z" />
  453. <glyph glyph-name="egrave" unicode="&#xe8;" horiz-adv-x="588"
  454. d="M98 225q3 -39 19 -71t41.5 -55.5t60 -36.5t76.5 -13q59 0 102.5 23t67.5 66h73q-29 -69 -92.5 -110t-150.5 -41q-59 0 -107.5 19.5t-84 54t-55 82.5t-19.5 104t19.5 104t55 82.5t84 54t107.5 19.5q58 0 107 -19.5t83.5 -54t54 -82.5t19.5 -104v-22h-461zM295 445
  455. q-79 0 -131 -43.5t-64 -114.5v-2h389v2q-6 35 -22.5 64t-41.5 50t-58 32.5t-72 11.5zM288 570l-115 150h72l103 -150h-60z" />
  456. <glyph glyph-name="eacute" unicode="&#xe9;" horiz-adv-x="588"
  457. d="M98 225q3 -39 19 -71t41.5 -55.5t60 -36.5t76.5 -13q59 0 102.5 23t67.5 66h73q-29 -69 -92.5 -110t-150.5 -41q-59 0 -107.5 19.5t-84 54t-55 82.5t-19.5 104t19.5 104t55 82.5t84 54t107.5 19.5q58 0 107 -19.5t83.5 -54t54 -82.5t19.5 -104v-22h-461zM295 445
  458. q-79 0 -131 -43.5t-64 -114.5v-2h389v2q-6 35 -22.5 64t-41.5 50t-58 32.5t-72 11.5zM242 570l103 150h72l-115 -150h-60z" />
  459. <glyph glyph-name="ecircumflex" unicode="&#xea;" horiz-adv-x="588"
  460. d="M98 225q3 -39 19 -71t41.5 -55.5t60 -36.5t76.5 -13q59 0 102.5 23t67.5 66h73q-29 -69 -92.5 -110t-150.5 -41q-59 0 -107.5 19.5t-84 54t-55 82.5t-19.5 104t19.5 104t55 82.5t84 54t107.5 19.5q58 0 107 -19.5t83.5 -54t54 -82.5t19.5 -104v-22h-461zM295 445
  461. q-79 0 -131 -43.5t-64 -114.5v-2h389v2q-6 35 -22.5 64t-41.5 50t-58 32.5t-72 11.5zM377 570l-81 107h-2l-81 -107h-59l108 150h66l108 -150h-59z" />
  462. <glyph glyph-name="edieresis" unicode="&#xeb;" horiz-adv-x="588"
  463. d="M98 225q3 -39 19 -71t41.5 -55.5t60 -36.5t76.5 -13q59 0 102.5 23t67.5 66h73q-29 -69 -92.5 -110t-150.5 -41q-59 0 -107.5 19.5t-84 54t-55 82.5t-19.5 104t19.5 104t55 82.5t84 54t107.5 19.5q58 0 107 -19.5t83.5 -54t54 -82.5t19.5 -104v-22h-461zM295 445
  464. q-79 0 -131 -43.5t-64 -114.5v-2h389v2q-6 35 -22.5 64t-41.5 50t-58 32.5t-72 11.5zM387 589q-19 0 -32.5 14t-13.5 32q0 19 13.5 32.5t32.5 13.5t32.5 -13.5t13.5 -32.5q0 -18 -13.5 -32t-32.5 -14zM201 589q-18 0 -32 14t-14 32q0 19 14 32.5t32 13.5q19 0 32.5 -13.5
  465. t13.5 -32.5q0 -18 -13.5 -32t-32.5 -14z" />
  466. <glyph glyph-name="igrave" unicode="&#xec;" horiz-adv-x="202"
  467. d="M94 570l-115 150h72l103 -150h-60zM68 0v494h67v-494h-67z" />
  468. <glyph glyph-name="iacute" unicode="&#xed;" horiz-adv-x="202"
  469. d="M49 570l103 150h72l-115 -150h-60zM68 0v494h67v-494h-67z" />
  470. <glyph glyph-name="icircumflex" unicode="&#xee;" horiz-adv-x="202"
  471. d="M68 0v494h67v-494h-67zM184 570l-81 107h-2l-81 -107h-59l108 150h66l108 -150h-59z" />
  472. <glyph glyph-name="idieresis" unicode="&#xef;" horiz-adv-x="202"
  473. d="M182 589q-18 0 -32 14t-14 32q0 19 14 32.5t32 13.5q19 0 32.5 -13.5t13.5 -32.5q0 -18 -13.5 -32t-32.5 -14zM20 589q-19 0 -32.5 14t-13.5 32q0 19 13.5 32.5t32.5 13.5t32.5 -13.5t13.5 -32.5q0 -18 -13.5 -32t-32.5 -14zM68 0v494h66v-494h-66z" />
  474. <glyph glyph-name="eth" unicode="&#xf0;" horiz-adv-x="589"
  475. d="M96 563l182 55v2q-36 21 -75.5 37t-84.5 26l81 27q84 -22 155 -70l133 41v-57l-79 -24v-2q72 -65 112 -150.5t40 -180.5q0 -66 -19.5 -118t-54.5 -88t-84 -55t-107 -19q-59 0 -107.5 19.5t-84 54t-55 82.5t-19.5 104t18.5 102.5t51 80t77.5 52t98 18.5q58 0 106.5 -22
  476. t82.5 -62h2q-21 46 -53 87t-75 76l-241 -73v57zM295 49q44 0 80.5 15t62.5 41.5t40.5 62.5t14.5 79t-14.5 79t-40.5 62.5t-62.5 41.5t-80.5 15t-80.5 -15t-62.5 -41.5t-40.5 -62.5t-14.5 -79t14.5 -79t40.5 -62.5t62.5 -41.5t80.5 -15z" />
  477. <glyph glyph-name="ntilde" unicode="&#xf1;" horiz-adv-x="586"
  478. d="M470 0v258q0 92 -48 139.5t-129 47.5t-129 -47.5t-48 -139.5v-258h-67v258q0 61 17.5 108t49.5 78t77 47t100 16t100 -16t77 -47t49.5 -78t17.5 -108v-258h-67zM467 697q-18 -123 -103 -123q-27 0 -45.5 11t-33 23.5t-28 23.5t-32.5 11q-25 0 -38.5 -17.5t-20.5 -52.5
  479. h-47q18 122 103 122q27 0 45.5 -10.5t33 -23.5t28 -23.5t32.5 -10.5q25 0 38.5 17.5t20.5 52.5h47z" />
  480. <glyph glyph-name="ograve" unicode="&#xf2;" horiz-adv-x="590"
  481. d="M561 247q0 -56 -19.5 -104t-55 -82.5t-84.5 -54t-107 -19.5q-59 0 -107.5 19.5t-84 54t-55 82.5t-19.5 104t19.5 104t55 82.5t84 54t107.5 19.5q58 0 107 -19.5t84.5 -54t55 -82.5t19.5 -104zM295 49q44 0 80.5 15t62.5 41.5t40.5 62.5t14.5 79t-14.5 79t-40.5 62.5
  482. t-62.5 41.5t-80.5 15t-80.5 -15t-62.5 -41.5t-40.5 -62.5t-14.5 -79t14.5 -79t40.5 -62.5t62.5 -41.5t80.5 -15zM287 570l-115 150h72l103 -150h-60z" />
  483. <glyph glyph-name="oacute" unicode="&#xf3;" horiz-adv-x="590"
  484. d="M561 247q0 -56 -19.5 -104t-55 -82.5t-84.5 -54t-107 -19.5q-59 0 -107.5 19.5t-84 54t-55 82.5t-19.5 104t19.5 104t55 82.5t84 54t107.5 19.5q58 0 107 -19.5t84.5 -54t55 -82.5t19.5 -104zM295 49q44 0 80.5 15t62.5 41.5t40.5 62.5t14.5 79t-14.5 79t-40.5 62.5
  485. t-62.5 41.5t-80.5 15t-80.5 -15t-62.5 -41.5t-40.5 -62.5t-14.5 -79t14.5 -79t40.5 -62.5t62.5 -41.5t80.5 -15zM242 570l103 150h72l-115 -150h-60z" />
  486. <glyph glyph-name="ocircumflex" unicode="&#xf4;" horiz-adv-x="590"
  487. d="M561 247q0 -56 -19.5 -104t-55 -82.5t-84.5 -54t-107 -19.5q-59 0 -107.5 19.5t-84 54t-55 82.5t-19.5 104t19.5 104t55 82.5t84 54t107.5 19.5q58 0 107 -19.5t84.5 -54t55 -82.5t19.5 -104zM295 49q44 0 80.5 15t62.5 41.5t40.5 62.5t14.5 79t-14.5 79t-40.5 62.5
  488. t-62.5 41.5t-80.5 15t-80.5 -15t-62.5 -41.5t-40.5 -62.5t-14.5 -79t14.5 -79t40.5 -62.5t62.5 -41.5t80.5 -15zM377 570l-81 107h-2l-81 -107h-59l108 150h66l108 -150h-59z" />
  489. <glyph glyph-name="otilde" unicode="&#xf5;" horiz-adv-x="590"
  490. d="M561 247q0 -56 -19.5 -104t-55 -82.5t-84.5 -54t-107 -19.5q-59 0 -107.5 19.5t-84 54t-55 82.5t-19.5 104t19.5 104t55 82.5t84 54t107.5 19.5q58 0 107 -19.5t84.5 -54t55 -82.5t19.5 -104zM295 49q44 0 80.5 15t62.5 41.5t40.5 62.5t14.5 79t-14.5 79t-40.5 62.5
  491. t-62.5 41.5t-80.5 15t-80.5 -15t-62.5 -41.5t-40.5 -62.5t-14.5 -79t14.5 -79t40.5 -62.5t62.5 -41.5t80.5 -15zM469 697q-18 -123 -103 -123q-27 0 -45.5 11t-33 23.5t-28 23.5t-32.5 11q-25 0 -38.5 -17.5t-20.5 -52.5h-47q18 122 103 122q27 0 45.5 -10.5t33 -23.5
  492. t28 -23.5t32.5 -10.5q25 0 38.5 17.5t20.5 52.5h47z" />
  493. <glyph glyph-name="odieresis" unicode="&#xf6;" horiz-adv-x="590"
  494. d="M561 247q0 -56 -19.5 -104t-55 -82.5t-84.5 -54t-107 -19.5q-59 0 -107.5 19.5t-84 54t-55 82.5t-19.5 104t19.5 104t55 82.5t84 54t107.5 19.5q58 0 107 -19.5t84.5 -54t55 -82.5t19.5 -104zM295 49q44 0 80.5 15t62.5 41.5t40.5 62.5t14.5 79t-14.5 79t-40.5 62.5
  495. t-62.5 41.5t-80.5 15t-80.5 -15t-62.5 -41.5t-40.5 -62.5t-14.5 -79t14.5 -79t40.5 -62.5t62.5 -41.5t80.5 -15zM388 589q-19 0 -32.5 14t-13.5 32q0 19 13.5 32.5t32.5 13.5t32.5 -13.5t13.5 -32.5q0 -18 -13.5 -32t-32.5 -14zM202 589q-18 0 -32 14t-14 32q0 19 14 32.5
  496. t32 13.5q19 0 32.5 -13.5t13.5 -32.5q0 -18 -13.5 -32t-32.5 -14z" />
  497. <glyph glyph-name="divide" unicode="&#xf7;" horiz-adv-x="562"
  498. d="M281 18q-20 0 -34 14t-14 34t14 33.5t34 13.5t34 -13.5t14 -33.5t-14 -34t-34 -14zM281 411q-20 0 -34 13.5t-14 33.5t14 34t34 14t34 -14t14 -34t-14 -33.5t-34 -13.5zM50 233v58h462v-58h-462z" />
  499. <glyph glyph-name="oslash" unicode="&#xf8;" horiz-adv-x="590"
  500. d="M29 0l65 71q-31 34 -48 78.5t-17 97.5q0 56 19.5 104t55 82.5t84 54t107.5 19.5q45 0 84.5 -12t71.5 -33l29 32h81l-65 -71q31 -35 48 -79.5t17 -96.5q0 -56 -19.5 -104t-55 -82.5t-84.5 -54t-107 -19.5q-45 0 -84.5 11.5t-71.5 33.5l-29 -32h-81zM295 49q44 0 80.5 15
  501. t62.5 41.5t40.5 62.5t14.5 79q0 37 -10.5 68.5t-30.5 57.5h-2l-266 -292v-2q46 -30 111 -30zM97 247q0 -75 40 -126h2l267 292v2q-47 30 -111 30q-44 0 -80.5 -15t-62.5 -41.5t-40.5 -62.5t-14.5 -79z" />
  502. <glyph glyph-name="ugrave" unicode="&#xf9;" horiz-adv-x="586"
  503. d="M470 494h67v-258q0 -62 -17.5 -108.5t-49.5 -77.5t-77 -47t-100 -16t-100 16t-77 47t-49.5 77.5t-17.5 108.5v258h67v-258q0 -91 48 -139t129 -48t129 48t48 139v258zM285 570l-115 150h72l103 -150h-60z" />
  504. <glyph glyph-name="uacute" unicode="&#xfa;" horiz-adv-x="586"
  505. d="M470 494h67v-258q0 -62 -17.5 -108.5t-49.5 -77.5t-77 -47t-100 -16t-100 16t-77 47t-49.5 77.5t-17.5 108.5v258h67v-258q0 -91 48 -139t129 -48t129 48t48 139v258zM240 570l103 150h72l-115 -150h-60z" />
  506. <glyph glyph-name="ucircumflex" unicode="&#xfb;" horiz-adv-x="586"
  507. d="M470 494h67v-258q0 -62 -17.5 -108.5t-49.5 -77.5t-77 -47t-100 -16t-100 16t-77 47t-49.5 77.5t-17.5 108.5v258h67v-258q0 -91 48 -139t129 -48t129 48t48 139v258zM375 570l-81 107h-2l-81 -107h-59l108 150h66l108 -150h-59z" />
  508. <glyph glyph-name="udieresis" unicode="&#xfc;" horiz-adv-x="586"
  509. d="M470 494h67v-258q0 -62 -17.5 -108.5t-49.5 -77.5t-77 -47t-100 -16t-100 16t-77 47t-49.5 77.5t-17.5 108.5v258h67v-258q0 -91 48 -139t129 -48t129 48t48 139v258zM386 589q-19 0 -32.5 14t-13.5 32q0 19 13.5 32.5t32.5 13.5t32.5 -13.5t13.5 -32.5q0 -18 -13.5 -32
  510. t-32.5 -14zM200 589q-18 0 -32 14t-14 32q0 19 14 32.5t32 13.5q19 0 32.5 -13.5t13.5 -32.5q0 -18 -13.5 -32t-32.5 -14z" />
  511. <glyph glyph-name="yacute" unicode="&#xfd;" horiz-adv-x="602"
  512. d="M470 494h67v-476q0 -65 -19 -110.5t-52.5 -75t-78.5 -43t-97 -13.5q-42 0 -80 10t-68.5 29.5t-53 49.5t-34.5 70h67q20 -51 63.5 -75.5t105.5 -24.5q40 0 73 10t57 32t37 56.5t13 82.5v79h-2q-26 -50 -73 -77.5t-112 -27.5q-50 0 -92.5 15t-74 46t-49.5 78t-18 110v255
  513. h67v-255q0 -92 48 -139.5t129 -47.5q80 0 128.5 48t48.5 139v255zM248 570l103 150h72l-115 -150h-60z" />
  514. <glyph glyph-name="thorn" unicode="&#xfe;" horiz-adv-x="625"
  515. d="M330 49q45 0 81.5 15t62.5 41t40 62.5t14 79.5t-14 79.5t-40 62.5t-62.5 41t-81.5 15t-81.5 -15t-62.5 -41t-40 -62.5t-14 -79.5t14 -79.5t40 -62.5t62.5 -41t81.5 -15zM65 710h67v-318h2q27 53 80.5 84t125.5 31q52 0 98.5 -18t81.5 -51.5t55.5 -82t20.5 -108.5
  516. t-20.5 -108.5t-55.5 -82t-81.5 -51.5t-98.5 -18q-72 0 -125.5 30.5t-80.5 84.5h-2v-313h-67v921z" />
  517. <glyph glyph-name="ydieresis" unicode="&#xff;" horiz-adv-x="602"
  518. d="M470 494h67v-476q0 -65 -19 -110.5t-52.5 -75t-78.5 -43t-97 -13.5q-42 0 -80 10t-68.5 29.5t-53 49.5t-34.5 70h67q20 -51 63.5 -75.5t105.5 -24.5q40 0 73 10t57 32t37 56.5t13 82.5v79h-2q-26 -50 -73 -77.5t-112 -27.5q-50 0 -92.5 15t-74 46t-49.5 78t-18 110v255
  519. h67v-255q0 -92 48 -139.5t129 -47.5q80 0 128.5 48t48.5 139v255zM394 589q-19 0 -32.5 14t-13.5 32q0 19 13.5 32.5t32.5 13.5t32.5 -13.5t13.5 -32.5q0 -18 -13.5 -32t-32.5 -14zM208 589q-18 0 -32 14t-14 32q0 19 14 32.5t32 13.5q19 0 32.5 -13.5t13.5 -32.5
  520. q0 -18 -13.5 -32t-32.5 -14z" />
  521. <glyph glyph-name="dotlessi" unicode="&#x131;" horiz-adv-x="202"
  522. d="M68 0v494h67v-494h-67z" />
  523. <glyph glyph-name="OE" unicode="&#x152;" horiz-adv-x="1182"
  524. d="M658 0v154h-2q-15 -33 -40 -63t-60 -53t-80 -37t-100 -14q-70 0 -132 23.5t-108.5 67.5t-74 107t-27.5 142t27.5 142t74 107t108.5 67.5t132 23.5q55 0 100 -14t80 -37.5t60 -53.5t40 -62h2v154h478v-66h-406v-223h348v-66h-348v-233h406v-66h-478zM382 53q61 0 112 20.5
  525. t87.5 57t56.5 87t20 109.5t-20 109.5t-56.5 87t-87.5 57t-112 20.5t-112 -20.5t-87.5 -57t-56.5 -87t-20 -109.5t20 -109.5t56.5 -87t87.5 -57t112 -20.5z" />
  526. <glyph glyph-name="oe" unicode="&#x153;" horiz-adv-x="1052"
  527. d="M295 49q44 0 80.5 15t62.5 41.5t40.5 62.5t14.5 79t-14.5 79t-40.5 62.5t-62.5 41.5t-80.5 15t-80.5 -15t-62.5 -41.5t-40.5 -62.5t-14.5 -79t14.5 -79t40.5 -62.5t62.5 -41.5t80.5 -15zM758 445q-39 0 -72 -12t-58 -33t-41.5 -50.5t-22.5 -64.5h389v2q-12 71 -64 114.5
  528. t-131 43.5zM762 507q58 0 106 -19.5t82.5 -54t53.5 -82.5t19 -104v-22h-461q3 -39 19 -71t41.5 -55.5t60 -36.5t75.5 -13q58 0 102.5 23t68.5 66h73q-29 -69 -91.5 -110t-148.5 -41q-87 0 -146.5 39.5t-87.5 105.5h-2q-28 -66 -88 -105.5t-146 -39.5q-58 0 -106.5 19.5
  529. t-83 54t-54 82.5t-19.5 104t19.5 104t54 82.5t83 54t106.5 19.5q85 0 145.5 -39.5t88.5 -105.5h2q28 66 87.5 105.5t146.5 39.5z" />
  530. <glyph glyph-name="Scaron" unicode="&#x160;" horiz-adv-x="548"
  531. d="M429 477q-3 57 -43.5 90t-111.5 33q-72 0 -113.5 -34.5t-41.5 -92.5q0 -35 17 -55t44.5 -31.5t62.5 -17.5t72 -12.5t72 -15.5t62.5 -28t44.5 -49.5t17 -78.5q0 -46 -17 -82.5t-48 -62.5t-75 -40t-98 -14q-53 0 -96.5 13.5t-75 39t-49 62t-18.5 82.5h71q2 -63 46 -97
  532. t122 -34t123 35.5t45 95.5q0 35 -17 55.5t-44.5 32t-62.5 17.5t-72 12.5t-72 15.5t-62.5 27.5t-44.5 49t-17 78.5q0 43 16 79t45.5 62t71 40t92.5 14q49 0 90 -13.5t70 -38.5t45.5 -59.5t18.5 -77.5h-69zM244 720l-108 150h59l81 -107h2l81 107h59l-108 -150h-66z" />
  533. <glyph glyph-name="scaron" unicode="&#x161;" horiz-adv-x="468"
  534. d="M356 359q-2 37 -34 62t-88 25q-58 0 -90.5 -25t-32.5 -67q0 -32 24 -46t60 -20.5t78.5 -11t78.5 -17.5t60 -39.5t24 -76.5q0 -34 -14.5 -62.5t-40.5 -49.5t-63.5 -32.5t-83.5 -11.5t-82.5 11.5t-63 32t-41 48t-15.5 60.5h68q2 -40 36.5 -65.5t96.5 -25.5q66 0 100.5 26.5
  535. t34.5 68.5q0 32 -24 46t-60 20.5t-78 11t-78 17t-60 39t-24 77.5q0 33 13 61.5t38 48.5t59.5 31.5t78.5 11.5q43 0 78 -11.5t59.5 -31t37.5 -47t14 -58.5h-66zM202 570l-108 150h59l81 -107h2l81 107h59l-108 -150h-66z" />
  536. <glyph glyph-name="Ydieresis" unicode="&#x178;" horiz-adv-x="649"
  537. d="M289 0v287l-269 367h87l218 -306h2l217 306h85l-268 -366v-288h-72zM417 739q-19 0 -32.5 14t-13.5 32q0 19 13.5 32.5t32.5 13.5t32.5 -13.5t13.5 -32.5q0 -18 -13.5 -32t-32.5 -14zM231 739q-18 0 -32 14t-14 32q0 19 14 32.5t32 13.5q19 0 32.5 -13.5t13.5 -32.5
  538. q0 -18 -13.5 -32t-32.5 -14z" />
  539. <glyph glyph-name="Zcaron" unicode="&#x17d;" horiz-adv-x="600"
  540. d="M133 68v-2h419v-66h-509v62l409 524v2h-394v66h484v-62zM267 720l-108 150h59l81 -107h2l81 107h59l-108 -150h-66z" />
  541. <glyph glyph-name="zcaron" unicode="&#x17e;" horiz-adv-x="534"
  542. d="M37 0v54l353 378v2h-338v60h430v-54l-353 -378v-2h363v-60h-455zM234 570l-108 150h59l81 -107h2l81 107h59l-108 -150h-66z" />
  543. <glyph glyph-name="florin" unicode="&#x192;"
  544. d="M56 -108v58h32q56 0 81 29.5t30 87.5l24 287h-128v59h133l8 91q7 88 48 133.5t129 45.5h53v-58h-52q-56 0 -81 -30t-30 -87l-8 -95h148v-59h-153l-24 -284q-8 -87 -48.5 -132.5t-128.5 -45.5h-33z" />
  545. <glyph glyph-name="uni0237" unicode="&#x237;" horiz-adv-x="202"
  546. d="M-42 -218v58h8q56 0 78.5 26.5t22.5 89.5v538h67v-535q0 -89 -37.5 -133t-124.5 -44h-14z" />
  547. <glyph glyph-name="circumflex" unicode="&#x2c6;" horiz-adv-x="320"
  548. d="M242 570l-81 107h-2l-81 -107h-59l108 150h66l108 -150h-59z" />
  549. <glyph glyph-name="tilde" unicode="&#x2dc;" horiz-adv-x="320"
  550. d="M334 697q-18 -123 -103 -123q-27 0 -45.5 11t-33 23.5t-28 23.5t-32.5 11q-25 0 -38.5 -17.5t-20.5 -52.5h-47q18 122 103 122q27 0 45.5 -10.5t33 -23.5t28 -23.5t32.5 -10.5q25 0 38.5 17.5t20.5 52.5h47z" />
  551. <glyph glyph-name="endash" unicode="&#x2013;" horiz-adv-x="500"
  552. d="M50 248v53h400v-53h-400z" />
  553. <glyph glyph-name="emdash" unicode="&#x2014;" horiz-adv-x="1000"
  554. d="M50 248v53h900v-53h-900z" />
  555. <glyph glyph-name="quoteleft" unicode="&#x2018;" horiz-adv-x="239"
  556. d="M128 654h40l-33 -114q15 -5 25 -18t10 -30q0 -20 -15 -35.5t-35 -15.5q-21 0 -36 15.5t-15 35.5q0 14 6 28z" />
  557. <glyph glyph-name="quoteright" unicode="&#x2019;" horiz-adv-x="239"
  558. d="M71 454l33 114q-15 5 -25 18t-10 30q0 21 15 36t36 15q20 0 35 -15t15 -36q0 -15 -6 -28l-53 -134h-40z" />
  559. <glyph glyph-name="quotesinglbase" unicode="&#x201a;" horiz-adv-x="239"
  560. d="M71 -124l33 114q-15 5 -25 18t-10 30q0 21 15 36t36 15q20 0 35 -15t15 -36q0 -15 -6 -28l-53 -134h-40z" />
  561. <glyph glyph-name="quotedblleft" unicode="&#x201c;" horiz-adv-x="392"
  562. d="M128 654h40l-33 -114q15 -5 25 -18t10 -30q0 -20 -15 -35.5t-35 -15.5q-21 0 -36 15.5t-15 35.5q0 14 6 28zM281 654h40l-33 -114q15 -5 25 -18t10 -30q0 -20 -15 -35.5t-35 -15.5q-21 0 -36 15.5t-15 35.5q0 14 6 28z" />
  563. <glyph glyph-name="quotedblright" unicode="&#x201d;" horiz-adv-x="392"
  564. d="M71 454l33 114q-15 5 -25 18t-10 30q0 21 15 36t36 15q20 0 35 -15t15 -36q0 -15 -6 -28l-53 -134h-40zM224 454l33 114q-15 5 -25 18t-10 30q0 21 15 36t36 15q20 0 35 -15t15 -36q0 -15 -6 -28l-53 -134h-40z" />
  565. <glyph glyph-name="quotedblbase" unicode="&#x201e;" horiz-adv-x="392"
  566. d="M71 -124l33 114q-15 5 -25 18t-10 30q0 21 15 36t36 15q20 0 35 -15t15 -36q0 -15 -6 -28l-53 -134h-40zM224 -124l33 114q-15 5 -25 18t-10 30q0 21 15 36t36 15q20 0 35 -15t15 -36q0 -15 -6 -28l-53 -134h-40z" />
  567. <glyph glyph-name="dagger" unicode="&#x2020;" horiz-adv-x="556"
  568. d="M265 -104l-24 310l20 206l-1 1l-206 -20v74l207 -20l1 1l-21 206h74l-21 -206l1 -1l207 20v-74l-206 20l-1 -1l20 -206l-24 -310h-26z" />
  569. <glyph glyph-name="daggerdbl" unicode="&#x2021;" horiz-adv-x="556"
  570. d="M241 -104l21 206l-1 1l-207 -20v74l206 -20l1 1l-20 137l20 137l-1 1l-206 -20v74l207 -20l1 1l-21 206h74l-21 -206l1 -1l207 20v-74l-206 20l-1 -1l20 -137l-20 -137l1 -1l206 20v-74l-207 20l-1 -1l21 -206h-74z" />
  571. <glyph glyph-name="bullet" unicode="&#x2022;" horiz-adv-x="396"
  572. d="M198 141q-27 0 -51 10.5t-41.5 28t-28 41.5t-10.5 51t10.5 51t28 41.5t41.5 28t51 10.5t51 -10.5t41.5 -28t28 -41.5t10.5 -51t-10.5 -51t-28 -41.5t-41.5 -28t-51 -10.5z" />
  573. <glyph glyph-name="ellipsis" unicode="&#x2026;" horiz-adv-x="1000"
  574. d="M197 -13q-21 0 -36 15t-15 36t15 36t36 15t36 -15t15 -36t-15 -36t-36 -15zM500 -13q-21 0 -36 15t-15 36t15 36t36 15t36 -15t15 -36t-15 -36t-36 -15zM803 -13q-21 0 -36 15t-15 36t15 36t36 15t36 -15t15 -36t-15 -36t-36 -15z" />
  575. <glyph glyph-name="perthousand" unicode="&#x2030;" horiz-adv-x="1034"
  576. d="M850 -13q-32 0 -60 12t-48.5 33t-32.5 48.5t-12 59.5q0 31 12 59t32.5 49t48.5 33t60 12q31 0 59 -12t48.5 -33t32.5 -49t12 -59q0 -32 -12 -59.5t-32.5 -48.5t-48.5 -33t-59 -12zM850 35q44 0 73.5 30.5t29.5 74.5q0 21 -8 40.5t-22 33.5t-32.5 22.5t-40.5 8.5t-41 -8.5
  577. t-33 -22.5t-22 -33.5t-8 -40.5q0 -44 29.5 -74.5t74.5 -30.5zM100 0l426 654h56l-426 -654h-56zM184 361q-32 0 -59.5 12t-48 33t-32.5 49t-12 60q0 31 12 58.5t32.5 48.5t48 33t59.5 12t60 -12t48.5 -33t32.5 -48.5t12 -58.5q0 -32 -12 -60t-32.5 -49t-48.5 -33t-60 -12z
  578. M184 409q45 0 74.5 31t29.5 75q0 21 -8 40t-22 33.5t-33 22.5t-41 8t-40.5 -8t-32.5 -22.5t-22 -33.5t-8 -40q0 -22 8 -41t22 -33.5t32.5 -23t40.5 -8.5zM500 -13q-32 0 -60 12t-48.5 33t-32.5 48.5t-12 59.5q0 31 12 59t32.5 49t48.5 33t60 12q31 0 59 -12t48.5 -33
  579. t32.5 -49t12 -59q0 -32 -12 -59.5t-32.5 -48.5t-48.5 -33t-59 -12zM500 35q44 0 73.5 30.5t29.5 74.5q0 21 -8 40.5t-22 33.5t-32.5 22.5t-40.5 8.5t-41 -8.5t-33 -22.5t-22 -33.5t-8 -40.5q0 -44 29.5 -74.5t74.5 -30.5z" />
  580. <glyph glyph-name="guilsinglleft" unicode="&#x2039;" horiz-adv-x="357"
  581. d="M226 48l-170 199l170 199h74l-171 -199l171 -199h-74z" />
  582. <glyph glyph-name="guilsinglright" unicode="&#x203a;" horiz-adv-x="357"
  583. d="M57 48l171 199l-171 199h74l170 -199l-170 -199h-74z" />
  584. <glyph glyph-name="Euro" unicode="&#x20ac;"
  585. d="M110 437h266l-19 -60h-247v-94h221l-19 -60h-202v-15q0 -36 11.5 -65.5t32 -50t49 -32t63.5 -11.5q60 0 100 31.5t51 84.5h67q-6 -39 -24.5 -72t-47 -56.5t-66 -36.5t-81.5 -13q-49 0 -89.5 16t-70 44.5t-45.5 69t-16 90.5v240q0 49 16 90t45.5 69.5t70 44.5t89.5 16
  586. q44 0 81.5 -13t66 -36.5t47 -56.5t24.5 -72h-67q-11 53 -51 84.5t-100 31.5q-35 0 -63.5 -11.5t-49 -32t-32 -50t-11.5 -65.5v-9z" />
  587. <glyph glyph-name="trademark" unicode="&#x2122;" horiz-adv-x="896"
  588. d="M783 282v311h-2l-147 -311h-44l-146 311h-2v-311h-44v372h68l145 -309h2l146 309h70v-372h-46zM155 282v330h-128v42h303v-42h-129v-330h-46z" />
  589. <hkern u1="&#x28;" u2="V" k="-10" />
  590. <hkern u1="&#x2c;" u2="v" k="68" />
  591. <hkern u1="&#x2c;" u2="s" k="3" />
  592. <hkern u1="&#x2c;" u2="q" k="23" />
  593. <hkern u1="&#x2c;" u2="V" k="83" />
  594. <hkern u1="&#x2c;" u2="Q" k="28" />
  595. <hkern u1="&#x2d;" u2="x" k="23" />
  596. <hkern u1="&#x2d;" u2="v" k="17" />
  597. <hkern u1="&#x2d;" u2="X" k="33" />
  598. <hkern u1="&#x2d;" u2="V" k="28" />
  599. <hkern u1="&#x2e;" u2="v" k="68" />
  600. <hkern u1="&#x2e;" u2="s" k="3" />
  601. <hkern u1="&#x2e;" u2="q" k="23" />
  602. <hkern u1="&#x2e;" u2="V" k="83" />
  603. <hkern u1="&#x2e;" u2="Q" k="28" />
  604. <hkern u1="A" u2="V" k="20" />
  605. <hkern u1="B" u2="V" k="29" />
  606. <hkern u1="C" u2="x" k="10" />
  607. <hkern u1="C" u2="X" k="31" />
  608. <hkern u1="C" u2="V" k="35" />
  609. <hkern u1="D" u2="x" k="10" />
  610. <hkern u1="D" u2="X" k="31" />
  611. <hkern u1="D" u2="V" k="35" />
  612. <hkern u1="F" u2="s" k="7" />
  613. <hkern u1="F" u2="q" k="12" />
  614. <hkern u1="F" u2="Q" k="12" />
  615. <hkern u1="G" u2="X" k="20" />
  616. <hkern u1="G" u2="V" k="21" />
  617. <hkern u1="K" u2="v" k="15" />
  618. <hkern u1="K" u2="q" k="16" />
  619. <hkern u1="K" u2="V" k="10" />
  620. <hkern u1="K" u2="Q" k="35" />
  621. <hkern u1="L" u2="&#x2122;" k="97" />
  622. <hkern u1="L" u2="v" k="51" />
  623. <hkern u1="L" u2="q" k="3" />
  624. <hkern u1="L" u2="V" k="91" />
  625. <hkern u1="L" u2="Q" k="42" />
  626. <hkern u1="L" u2="&#x3f;" k="40" />
  627. <hkern u1="M" u2="V" k="13" />
  628. <hkern u1="N" u2="V" k="20" />
  629. <hkern u1="O" u2="x" k="10" />
  630. <hkern u1="O" u2="X" k="31" />
  631. <hkern u1="O" u2="V" k="35" />
  632. <hkern u1="P" u2="&#xef;" k="-10" />
  633. <hkern u1="P" u2="&#xee;" k="-23" />
  634. <hkern u1="P" u2="X" k="16" />
  635. <hkern u1="P" u2="V" k="5" />
  636. <hkern u1="Q" u2="&#x2026;" k="28" />
  637. <hkern u1="Q" u2="&#x201e;" k="28" />
  638. <hkern u1="Q" u2="&#x201d;" k="13" />
  639. <hkern u1="Q" u2="&#x201c;" k="13" />
  640. <hkern u1="Q" u2="&#x201a;" k="28" />
  641. <hkern u1="Q" u2="&#x2019;" k="13" />
  642. <hkern u1="Q" u2="&#x2018;" k="13" />
  643. <hkern u1="Q" u2="&#x17d;" k="20" />
  644. <hkern u1="Q" u2="&#x178;" k="72" />
  645. <hkern u1="Q" u2="&#xdd;" k="72" />
  646. <hkern u1="Q" u2="Z" k="20" />
  647. <hkern u1="Q" u2="Y" k="72" />
  648. <hkern u1="Q" u2="T" k="50" />
  649. <hkern u1="Q" u2="&#x2e;" k="28" />
  650. <hkern u1="Q" u2="&#x2c;" k="28" />
  651. <hkern u1="Q" u2="x" k="10" />
  652. <hkern u1="Q" u2="X" k="31" />
  653. <hkern u1="Q" u2="V" k="35" />
  654. <hkern u1="R" u2="q" k="4" />
  655. <hkern u1="R" u2="V" k="19" />
  656. <hkern u1="R" u2="Q" k="4" />
  657. <hkern u1="S" u2="V" k="22" />
  658. <hkern u1="T" u2="x" k="33" />
  659. <hkern u1="T" u2="v" k="30" />
  660. <hkern u1="T" u2="s" k="52" />
  661. <hkern u1="T" u2="q" k="66" />
  662. <hkern u1="T" u2="Q" k="50" />
  663. <hkern u1="V" u2="&#x2026;" k="83" />
  664. <hkern u1="V" u2="&#x201e;" k="83" />
  665. <hkern u1="V" u2="&#x201a;" k="83" />
  666. <hkern u1="V" u2="&#x2014;" k="28" />
  667. <hkern u1="V" u2="&#x2013;" k="28" />
  668. <hkern u1="V" u2="&#x17e;" k="16" />
  669. <hkern u1="V" u2="&#x17d;" k="7" />
  670. <hkern u1="V" u2="&#x160;" k="21" />
  671. <hkern u1="V" u2="&#x153;" k="49" />
  672. <hkern u1="V" u2="&#x152;" k="35" />
  673. <hkern u1="V" u2="&#xff;" k="3" />
  674. <hkern u1="V" u2="&#xfd;" k="3" />
  675. <hkern u1="V" u2="&#xfc;" k="3" />
  676. <hkern u1="V" u2="&#xfb;" k="3" />
  677. <hkern u1="V" u2="&#xfa;" k="3" />
  678. <hkern u1="V" u2="&#xf9;" k="3" />
  679. <hkern u1="V" u2="&#xf8;" k="49" />
  680. <hkern u1="V" u2="&#xf6;" k="49" />
  681. <hkern u1="V" u2="&#xf5;" k="49" />
  682. <hkern u1="V" u2="&#xf4;" k="49" />
  683. <hkern u1="V" u2="&#xf3;" k="49" />
  684. <hkern u1="V" u2="&#xf2;" k="49" />
  685. <hkern u1="V" u2="&#xf1;" k="44" />
  686. <hkern u1="V" u2="&#xf0;" k="49" />
  687. <hkern u1="V" u2="&#xeb;" k="49" />
  688. <hkern u1="V" u2="&#xea;" k="49" />
  689. <hkern u1="V" u2="&#xe9;" k="49" />
  690. <hkern u1="V" u2="&#xe8;" k="49" />
  691. <hkern u1="V" u2="&#xe7;" k="49" />
  692. <hkern u1="V" u2="&#xe6;" k="49" />
  693. <hkern u1="V" u2="&#xe5;" k="49" />
  694. <hkern u1="V" u2="&#xe4;" k="49" />
  695. <hkern u1="V" u2="&#xe3;" k="49" />
  696. <hkern u1="V" u2="&#xe2;" k="49" />
  697. <hkern u1="V" u2="&#xe1;" k="49" />
  698. <hkern u1="V" u2="&#xe0;" k="49" />
  699. <hkern u1="V" u2="&#xd8;" k="35" />
  700. <hkern u1="V" u2="&#xd6;" k="35" />
  701. <hkern u1="V" u2="&#xd5;" k="35" />
  702. <hkern u1="V" u2="&#xd4;" k="35" />
  703. <hkern u1="V" u2="&#xd3;" k="35" />
  704. <hkern u1="V" u2="&#xd2;" k="35" />
  705. <hkern u1="V" u2="&#xd1;" k="20" />
  706. <hkern u1="V" u2="&#xc7;" k="35" />
  707. <hkern u1="V" u2="&#xc6;" k="20" />
  708. <hkern u1="V" u2="&#xc5;" k="20" />
  709. <hkern u1="V" u2="&#xc4;" k="20" />
  710. <hkern u1="V" u2="&#xc3;" k="20" />
  711. <hkern u1="V" u2="&#xc2;" k="20" />
  712. <hkern u1="V" u2="&#xc1;" k="20" />
  713. <hkern u1="V" u2="&#xc0;" k="20" />
  714. <hkern u1="V" u2="&#xad;" k="28" />
  715. <hkern u1="V" u2="&#x7d;" k="-10" />
  716. <hkern u1="V" u2="z" k="16" />
  717. <hkern u1="V" u2="y" k="3" />
  718. <hkern u1="V" u2="w" k="3" />
  719. <hkern u1="V" u2="u" k="3" />
  720. <hkern u1="V" u2="r" k="44" />
  721. <hkern u1="V" u2="p" k="44" />
  722. <hkern u1="V" u2="o" k="49" />
  723. <hkern u1="V" u2="n" k="44" />
  724. <hkern u1="V" u2="m" k="40" />
  725. <hkern u1="V" u2="g" k="49" />
  726. <hkern u1="V" u2="f" k="21" />
  727. <hkern u1="V" u2="e" k="49" />
  728. <hkern u1="V" u2="d" k="49" />
  729. <hkern u1="V" u2="c" k="49" />
  730. <hkern u1="V" u2="a" k="49" />
  731. <hkern u1="V" u2="]" k="-10" />
  732. <hkern u1="V" u2="Z" k="7" />
  733. <hkern u1="V" u2="S" k="21" />
  734. <hkern u1="V" u2="O" k="35" />
  735. <hkern u1="V" u2="N" k="20" />
  736. <hkern u1="V" u2="M" k="13" />
  737. <hkern u1="V" u2="J" k="70" />
  738. <hkern u1="V" u2="G" k="35" />
  739. <hkern u1="V" u2="C" k="35" />
  740. <hkern u1="V" u2="A" k="20" />
  741. <hkern u1="V" u2="&#x2e;" k="83" />
  742. <hkern u1="V" u2="&#x2d;" k="28" />
  743. <hkern u1="V" u2="&#x2c;" k="83" />
  744. <hkern u1="V" u2="&#x29;" k="-10" />
  745. <hkern u1="V" u2="&#xee;" k="-27" />
  746. <hkern u1="V" u2="&#xdf;" k="21" />
  747. <hkern u1="V" u2="x" k="13" />
  748. <hkern u1="V" u2="s" k="40" />
  749. <hkern u1="V" u2="q" k="49" />
  750. <hkern u1="V" u2="Q" k="35" />
  751. <hkern u1="X" u2="&#x2014;" k="33" />
  752. <hkern u1="X" u2="&#x2013;" k="33" />
  753. <hkern u1="X" u2="&#x153;" k="20" />
  754. <hkern u1="X" u2="&#x152;" k="31" />
  755. <hkern u1="X" u2="&#xf8;" k="20" />
  756. <hkern u1="X" u2="&#xf6;" k="20" />
  757. <hkern u1="X" u2="&#xf5;" k="20" />
  758. <hkern u1="X" u2="&#xf4;" k="20" />
  759. <hkern u1="X" u2="&#xf3;" k="20" />
  760. <hkern u1="X" u2="&#xf2;" k="20" />
  761. <hkern u1="X" u2="&#xf0;" k="20" />
  762. <hkern u1="X" u2="&#xeb;" k="20" />
  763. <hkern u1="X" u2="&#xea;" k="20" />
  764. <hkern u1="X" u2="&#xe9;" k="20" />
  765. <hkern u1="X" u2="&#xe8;" k="20" />
  766. <hkern u1="X" u2="&#xe7;" k="20" />
  767. <hkern u1="X" u2="&#xe6;" k="20" />
  768. <hkern u1="X" u2="&#xe5;" k="20" />
  769. <hkern u1="X" u2="&#xe4;" k="20" />
  770. <hkern u1="X" u2="&#xe3;" k="20" />
  771. <hkern u1="X" u2="&#xe2;" k="20" />
  772. <hkern u1="X" u2="&#xe1;" k="20" />
  773. <hkern u1="X" u2="&#xe0;" k="20" />
  774. <hkern u1="X" u2="&#xd8;" k="31" />
  775. <hkern u1="X" u2="&#xd6;" k="31" />
  776. <hkern u1="X" u2="&#xd5;" k="31" />
  777. <hkern u1="X" u2="&#xd4;" k="31" />
  778. <hkern u1="X" u2="&#xd3;" k="31" />
  779. <hkern u1="X" u2="&#xd2;" k="31" />
  780. <hkern u1="X" u2="&#xc7;" k="31" />
  781. <hkern u1="X" u2="&#xad;" k="33" />
  782. <hkern u1="X" u2="o" k="20" />
  783. <hkern u1="X" u2="g" k="20" />
  784. <hkern u1="X" u2="e" k="20" />
  785. <hkern u1="X" u2="d" k="20" />
  786. <hkern u1="X" u2="c" k="20" />
  787. <hkern u1="X" u2="a" k="20" />
  788. <hkern u1="X" u2="O" k="31" />
  789. <hkern u1="X" u2="G" k="31" />
  790. <hkern u1="X" u2="C" k="31" />
  791. <hkern u1="X" u2="&#x2d;" k="33" />
  792. <hkern u1="X" u2="v" k="10" />
  793. <hkern u1="X" u2="q" k="20" />
  794. <hkern u1="X" u2="Q" k="31" />
  795. <hkern u1="Y" u2="&#xdf;" k="13" />
  796. <hkern u1="Y" u2="x" k="27" />
  797. <hkern u1="Y" u2="v" k="27" />
  798. <hkern u1="Y" u2="s" k="79" />
  799. <hkern u1="Y" u2="q" k="89" />
  800. <hkern u1="Y" u2="Q" k="72" />
  801. <hkern u1="Z" u2="v" k="7" />
  802. <hkern u1="Z" u2="Q" k="20" />
  803. <hkern u1="[" u2="V" k="-10" />
  804. <hkern u1="a" u2="&#x2122;" k="50" />
  805. <hkern u1="a" u2="v" k="25" />
  806. <hkern u1="b" u2="&#x2122;" k="60" />
  807. <hkern u1="b" u2="x" k="27" />
  808. <hkern u1="b" u2="v" k="24" />
  809. <hkern u1="c" u2="&#x2122;" k="60" />
  810. <hkern u1="c" u2="x" k="27" />
  811. <hkern u1="c" u2="v" k="24" />
  812. <hkern u1="e" u2="&#x2122;" k="60" />
  813. <hkern u1="e" u2="x" k="27" />
  814. <hkern u1="e" u2="v" k="24" />
  815. <hkern u1="f" u2="&#x2122;" k="-30" />
  816. <hkern u1="f" u2="&#xee;" k="-60" />
  817. <hkern u1="f" u2="&#xec;" k="-7" />
  818. <hkern u1="f" u2="s" k="5" />
  819. <hkern u1="f" u2="q" k="9" />
  820. <hkern u1="f" u2="&#x3f;" k="-30" />
  821. <hkern u1="g" u2="&#x2122;" k="50" />
  822. <hkern u1="g" u2="v" k="25" />
  823. <hkern u1="h" u2="&#x2122;" k="50" />
  824. <hkern u1="h" u2="v" k="25" />
  825. <hkern u1="k" u2="&#x2122;" k="20" />
  826. <hkern u1="k" u2="v" k="6" />
  827. <hkern u1="k" u2="s" k="3" />
  828. <hkern u1="k" u2="q" k="26" />
  829. <hkern u1="m" u2="&#x2122;" k="50" />
  830. <hkern u1="m" u2="v" k="8" />
  831. <hkern u1="n" u2="&#x2122;" k="50" />
  832. <hkern u1="n" u2="v" k="25" />
  833. <hkern u1="o" u2="&#x2122;" k="60" />
  834. <hkern u1="o" u2="x" k="27" />
  835. <hkern u1="o" u2="v" k="24" />
  836. <hkern u1="p" u2="&#x2122;" k="60" />
  837. <hkern u1="p" u2="x" k="27" />
  838. <hkern u1="p" u2="v" k="24" />
  839. <hkern u1="q" u2="&#x201d;" k="23" />
  840. <hkern u1="q" u2="&#x201c;" k="23" />
  841. <hkern u1="q" u2="&#x2019;" k="23" />
  842. <hkern u1="q" u2="&#x2018;" k="23" />
  843. <hkern u1="q" u2="&#x2122;" k="50" />
  844. <hkern u1="q" u2="v" k="25" />
  845. <hkern u1="r" u2="x" k="20" />
  846. <hkern u1="r" u2="v" k="14" />
  847. <hkern u1="r" u2="s" k="4" />
  848. <hkern u1="s" u2="&#x2026;" k="13" />
  849. <hkern u1="s" u2="&#x201e;" k="13" />
  850. <hkern u1="s" u2="&#x201d;" k="12" />
  851. <hkern u1="s" u2="&#x201c;" k="12" />
  852. <hkern u1="s" u2="&#x201a;" k="13" />
  853. <hkern u1="s" u2="&#x2019;" k="12" />
  854. <hkern u1="s" u2="&#x2018;" k="12" />
  855. <hkern u1="s" u2="&#x2e;" k="13" />
  856. <hkern u1="s" u2="&#x2c;" k="13" />
  857. <hkern u1="s" u2="&#x2122;" k="50" />
  858. <hkern u1="s" u2="x" k="7" />
  859. <hkern u1="s" u2="v" k="15" />
  860. <hkern u1="t" u2="v" k="11" />
  861. <hkern u1="v" u2="&#x2026;" k="68" />
  862. <hkern u1="v" u2="&#x201e;" k="68" />
  863. <hkern u1="v" u2="&#x201a;" k="68" />
  864. <hkern u1="v" u2="&#x2014;" k="17" />
  865. <hkern u1="v" u2="&#x2013;" k="17" />
  866. <hkern u1="v" u2="&#x17e;" k="10" />
  867. <hkern u1="v" u2="&#x153;" k="24" />
  868. <hkern u1="v" u2="&#xf8;" k="24" />
  869. <hkern u1="v" u2="&#xf6;" k="24" />
  870. <hkern u1="v" u2="&#xf5;" k="24" />
  871. <hkern u1="v" u2="&#xf4;" k="24" />
  872. <hkern u1="v" u2="&#xf3;" k="24" />
  873. <hkern u1="v" u2="&#xf2;" k="24" />
  874. <hkern u1="v" u2="&#xf1;" k="25" />
  875. <hkern u1="v" u2="&#xf0;" k="24" />
  876. <hkern u1="v" u2="&#xeb;" k="24" />
  877. <hkern u1="v" u2="&#xea;" k="24" />
  878. <hkern u1="v" u2="&#xe9;" k="24" />
  879. <hkern u1="v" u2="&#xe8;" k="24" />
  880. <hkern u1="v" u2="&#xe7;" k="24" />
  881. <hkern u1="v" u2="&#xe6;" k="24" />
  882. <hkern u1="v" u2="&#xe5;" k="24" />
  883. <hkern u1="v" u2="&#xe4;" k="24" />
  884. <hkern u1="v" u2="&#xe3;" k="24" />
  885. <hkern u1="v" u2="&#xe2;" k="24" />
  886. <hkern u1="v" u2="&#xe1;" k="24" />
  887. <hkern u1="v" u2="&#xe0;" k="24" />
  888. <hkern u1="v" u2="&#xad;" k="17" />
  889. <hkern u1="v" u2="z" k="10" />
  890. <hkern u1="v" u2="r" k="25" />
  891. <hkern u1="v" u2="p" k="25" />
  892. <hkern u1="v" u2="o" k="24" />
  893. <hkern u1="v" u2="n" k="25" />
  894. <hkern u1="v" u2="m" k="8" />
  895. <hkern u1="v" u2="g" k="24" />
  896. <hkern u1="v" u2="e" k="24" />
  897. <hkern u1="v" u2="d" k="24" />
  898. <hkern u1="v" u2="c" k="24" />
  899. <hkern u1="v" u2="a" k="24" />
  900. <hkern u1="v" u2="&#x2e;" k="68" />
  901. <hkern u1="v" u2="&#x2d;" k="17" />
  902. <hkern u1="v" u2="&#x2c;" k="68" />
  903. <hkern u1="v" u2="s" k="17" />
  904. <hkern u1="v" u2="q" k="24" />
  905. <hkern u1="x" u2="&#x2014;" k="23" />
  906. <hkern u1="x" u2="&#x2013;" k="23" />
  907. <hkern u1="x" u2="&#x153;" k="27" />
  908. <hkern u1="x" u2="&#xf8;" k="27" />
  909. <hkern u1="x" u2="&#xf6;" k="27" />
  910. <hkern u1="x" u2="&#xf5;" k="27" />
  911. <hkern u1="x" u2="&#xf4;" k="27" />
  912. <hkern u1="x" u2="&#xf3;" k="27" />
  913. <hkern u1="x" u2="&#xf2;" k="27" />
  914. <hkern u1="x" u2="&#xf0;" k="27" />
  915. <hkern u1="x" u2="&#xeb;" k="27" />
  916. <hkern u1="x" u2="&#xea;" k="27" />
  917. <hkern u1="x" u2="&#xe9;" k="27" />
  918. <hkern u1="x" u2="&#xe8;" k="27" />
  919. <hkern u1="x" u2="&#xe7;" k="27" />
  920. <hkern u1="x" u2="&#xe6;" k="27" />
  921. <hkern u1="x" u2="&#xe5;" k="27" />
  922. <hkern u1="x" u2="&#xe4;" k="27" />
  923. <hkern u1="x" u2="&#xe3;" k="27" />
  924. <hkern u1="x" u2="&#xe2;" k="27" />
  925. <hkern u1="x" u2="&#xe1;" k="27" />
  926. <hkern u1="x" u2="&#xe0;" k="27" />
  927. <hkern u1="x" u2="&#xad;" k="23" />
  928. <hkern u1="x" u2="o" k="27" />
  929. <hkern u1="x" u2="g" k="27" />
  930. <hkern u1="x" u2="e" k="27" />
  931. <hkern u1="x" u2="d" k="27" />
  932. <hkern u1="x" u2="c" k="27" />
  933. <hkern u1="x" u2="a" k="27" />
  934. <hkern u1="x" u2="&#x2d;" k="23" />
  935. <hkern u1="x" u2="v" k="5" />
  936. <hkern u1="x" u2="s" k="5" />
  937. <hkern u1="x" u2="q" k="27" />
  938. <hkern u1="z" u2="q" k="12" />
  939. <hkern u1="&#x7b;" u2="V" k="-10" />
  940. <hkern u1="&#xa1;" u2="&#x178;" k="63" />
  941. <hkern u1="&#xa1;" u2="&#xdd;" k="63" />
  942. <hkern u1="&#xa1;" u2="Y" k="63" />
  943. <hkern u1="&#xa1;" u2="T" k="37" />
  944. <hkern u1="&#xa1;" u2="v" k="15" />
  945. <hkern u1="&#xa1;" u2="V" k="32" />
  946. <hkern u1="&#xad;" u2="x" k="23" />
  947. <hkern u1="&#xad;" u2="v" k="17" />
  948. <hkern u1="&#xad;" u2="X" k="33" />
  949. <hkern u1="&#xad;" u2="V" k="28" />
  950. <hkern u1="&#xbf;" u2="&#x178;" k="90" />
  951. <hkern u1="&#xbf;" u2="&#x160;" k="37" />
  952. <hkern u1="&#xbf;" u2="&#x152;" k="48" />
  953. <hkern u1="&#xbf;" u2="&#xdd;" k="90" />
  954. <hkern u1="&#xbf;" u2="&#xd8;" k="48" />
  955. <hkern u1="&#xbf;" u2="&#xd6;" k="48" />
  956. <hkern u1="&#xbf;" u2="&#xd5;" k="48" />
  957. <hkern u1="&#xbf;" u2="&#xd4;" k="48" />
  958. <hkern u1="&#xbf;" u2="&#xd3;" k="48" />
  959. <hkern u1="&#xbf;" u2="&#xd2;" k="48" />
  960. <hkern u1="&#xbf;" u2="&#xc7;" k="48" />
  961. <hkern u1="&#xbf;" u2="Y" k="90" />
  962. <hkern u1="&#xbf;" u2="T" k="67" />
  963. <hkern u1="&#xbf;" u2="S" k="37" />
  964. <hkern u1="&#xbf;" u2="O" k="48" />
  965. <hkern u1="&#xbf;" u2="J" k="30" />
  966. <hkern u1="&#xbf;" u2="G" k="48" />
  967. <hkern u1="&#xbf;" u2="C" k="48" />
  968. <hkern u1="&#xbf;" u2="v" k="47" />
  969. <hkern u1="&#xbf;" u2="V" k="85" />
  970. <hkern u1="&#xbf;" u2="Q" k="48" />
  971. <hkern u1="&#xc0;" u2="V" k="20" />
  972. <hkern u1="&#xc1;" u2="V" k="20" />
  973. <hkern u1="&#xc2;" u2="V" k="20" />
  974. <hkern u1="&#xc3;" u2="V" k="20" />
  975. <hkern u1="&#xc4;" u2="V" k="20" />
  976. <hkern u1="&#xc5;" u2="V" k="20" />
  977. <hkern u1="&#xc7;" u2="x" k="10" />
  978. <hkern u1="&#xc7;" u2="X" k="31" />
  979. <hkern u1="&#xc7;" u2="V" k="35" />
  980. <hkern u1="&#xd0;" u2="x" k="10" />
  981. <hkern u1="&#xd0;" u2="X" k="31" />
  982. <hkern u1="&#xd0;" u2="V" k="35" />
  983. <hkern u1="&#xd1;" u2="V" k="20" />
  984. <hkern u1="&#xd2;" u2="x" k="10" />
  985. <hkern u1="&#xd2;" u2="X" k="31" />
  986. <hkern u1="&#xd2;" u2="V" k="35" />
  987. <hkern u1="&#xd3;" u2="x" k="10" />
  988. <hkern u1="&#xd3;" u2="X" k="31" />
  989. <hkern u1="&#xd3;" u2="V" k="35" />
  990. <hkern u1="&#xd4;" u2="x" k="10" />
  991. <hkern u1="&#xd4;" u2="X" k="31" />
  992. <hkern u1="&#xd4;" u2="V" k="35" />
  993. <hkern u1="&#xd5;" u2="x" k="10" />
  994. <hkern u1="&#xd5;" u2="X" k="31" />
  995. <hkern u1="&#xd5;" u2="V" k="35" />
  996. <hkern u1="&#xd6;" u2="x" k="10" />
  997. <hkern u1="&#xd6;" u2="X" k="31" />
  998. <hkern u1="&#xd6;" u2="V" k="35" />
  999. <hkern u1="&#xd8;" u2="x" k="10" />
  1000. <hkern u1="&#xd8;" u2="X" k="31" />
  1001. <hkern u1="&#xd8;" u2="V" k="35" />
  1002. <hkern u1="&#xdd;" u2="&#xdf;" k="13" />
  1003. <hkern u1="&#xdd;" u2="x" k="27" />
  1004. <hkern u1="&#xdd;" u2="v" k="27" />
  1005. <hkern u1="&#xdd;" u2="s" k="79" />
  1006. <hkern u1="&#xdd;" u2="q" k="89" />
  1007. <hkern u1="&#xdd;" u2="Q" k="72" />
  1008. <hkern u1="&#xde;" u2="&#x2026;" k="42" />
  1009. <hkern u1="&#xde;" u2="&#x201e;" k="42" />
  1010. <hkern u1="&#xde;" u2="&#x201a;" k="42" />
  1011. <hkern u1="&#xde;" u2="&#x17d;" k="17" />
  1012. <hkern u1="&#xde;" u2="&#x178;" k="67" />
  1013. <hkern u1="&#xde;" u2="&#x152;" k="-5" />
  1014. <hkern u1="&#xde;" u2="&#xdd;" k="67" />
  1015. <hkern u1="&#xde;" u2="&#xd8;" k="-5" />
  1016. <hkern u1="&#xde;" u2="&#xd6;" k="-5" />
  1017. <hkern u1="&#xde;" u2="&#xd5;" k="-5" />
  1018. <hkern u1="&#xde;" u2="&#xd4;" k="-5" />
  1019. <hkern u1="&#xde;" u2="&#xd3;" k="-5" />
  1020. <hkern u1="&#xde;" u2="&#xd2;" k="-5" />
  1021. <hkern u1="&#xde;" u2="&#xc7;" k="-5" />
  1022. <hkern u1="&#xde;" u2="Z" k="17" />
  1023. <hkern u1="&#xde;" u2="Y" k="67" />
  1024. <hkern u1="&#xde;" u2="T" k="25" />
  1025. <hkern u1="&#xde;" u2="O" k="-5" />
  1026. <hkern u1="&#xde;" u2="J" k="3" />
  1027. <hkern u1="&#xde;" u2="G" k="-5" />
  1028. <hkern u1="&#xde;" u2="C" k="-5" />
  1029. <hkern u1="&#xde;" u2="&#x2e;" k="42" />
  1030. <hkern u1="&#xde;" u2="&#x2c;" k="42" />
  1031. <hkern u1="&#xde;" u2="&#x2122;" k="20" />
  1032. <hkern u1="&#xde;" u2="v" k="-20" />
  1033. <hkern u1="&#xde;" u2="X" k="47" />
  1034. <hkern u1="&#xde;" u2="V" k="27" />
  1035. <hkern u1="&#xde;" u2="Q" k="-5" />
  1036. <hkern u1="&#xdf;" u2="&#x2026;" k="13" />
  1037. <hkern u1="&#xdf;" u2="&#x201e;" k="13" />
  1038. <hkern u1="&#xdf;" u2="&#x201d;" k="27" />
  1039. <hkern u1="&#xdf;" u2="&#x201c;" k="27" />
  1040. <hkern u1="&#xdf;" u2="&#x201a;" k="13" />
  1041. <hkern u1="&#xdf;" u2="&#x2019;" k="27" />
  1042. <hkern u1="&#xdf;" u2="&#x2018;" k="27" />
  1043. <hkern u1="&#xdf;" u2="&#x2e;" k="13" />
  1044. <hkern u1="&#xdf;" u2="&#x2c;" k="13" />
  1045. <hkern u1="&#xdf;" u2="&#x2122;" k="40" />
  1046. <hkern u1="&#xdf;" u2="x" k="2" />
  1047. <hkern u1="&#xdf;" u2="v" k="21" />
  1048. <hkern u1="&#xe0;" u2="&#x2122;" k="50" />
  1049. <hkern u1="&#xe0;" u2="v" k="25" />
  1050. <hkern u1="&#xe1;" u2="&#x2122;" k="50" />
  1051. <hkern u1="&#xe1;" u2="v" k="25" />
  1052. <hkern u1="&#xe2;" u2="&#x2122;" k="50" />
  1053. <hkern u1="&#xe2;" u2="v" k="25" />
  1054. <hkern u1="&#xe3;" u2="&#x2122;" k="50" />
  1055. <hkern u1="&#xe3;" u2="v" k="25" />
  1056. <hkern u1="&#xe4;" u2="&#x2122;" k="50" />
  1057. <hkern u1="&#xe4;" u2="v" k="25" />
  1058. <hkern u1="&#xe5;" u2="&#x2122;" k="50" />
  1059. <hkern u1="&#xe5;" u2="v" k="25" />
  1060. <hkern u1="&#xe6;" u2="&#x2122;" k="60" />
  1061. <hkern u1="&#xe6;" u2="x" k="27" />
  1062. <hkern u1="&#xe6;" u2="v" k="24" />
  1063. <hkern u1="&#xe7;" u2="&#x2122;" k="60" />
  1064. <hkern u1="&#xe7;" u2="x" k="27" />
  1065. <hkern u1="&#xe7;" u2="v" k="24" />
  1066. <hkern u1="&#xe8;" u2="&#x2122;" k="60" />
  1067. <hkern u1="&#xe8;" u2="x" k="27" />
  1068. <hkern u1="&#xe8;" u2="v" k="24" />
  1069. <hkern u1="&#xe9;" u2="&#x2122;" k="60" />
  1070. <hkern u1="&#xe9;" u2="x" k="27" />
  1071. <hkern u1="&#xe9;" u2="v" k="24" />
  1072. <hkern u1="&#xea;" u2="&#x2122;" k="60" />
  1073. <hkern u1="&#xea;" u2="x" k="27" />
  1074. <hkern u1="&#xea;" u2="v" k="24" />
  1075. <hkern u1="&#xeb;" u2="&#x2122;" k="60" />
  1076. <hkern u1="&#xeb;" u2="x" k="27" />
  1077. <hkern u1="&#xeb;" u2="v" k="24" />
  1078. <hkern u1="&#xee;" u2="t" k="-23" />
  1079. <hkern u1="&#xf1;" u2="&#x2122;" k="50" />
  1080. <hkern u1="&#xf1;" u2="v" k="25" />
  1081. <hkern u1="&#xf2;" u2="&#x2122;" k="60" />
  1082. <hkern u1="&#xf2;" u2="x" k="27" />
  1083. <hkern u1="&#xf2;" u2="v" k="24" />
  1084. <hkern u1="&#xf3;" u2="&#x2122;" k="60" />
  1085. <hkern u1="&#xf3;" u2="x" k="27" />
  1086. <hkern u1="&#xf3;" u2="v" k="24" />
  1087. <hkern u1="&#xf4;" u2="&#x2122;" k="60" />
  1088. <hkern u1="&#xf4;" u2="x" k="27" />
  1089. <hkern u1="&#xf4;" u2="v" k="24" />
  1090. <hkern u1="&#xf5;" u2="&#x2122;" k="60" />
  1091. <hkern u1="&#xf5;" u2="x" k="27" />
  1092. <hkern u1="&#xf5;" u2="v" k="24" />
  1093. <hkern u1="&#xf6;" u2="&#x2122;" k="60" />
  1094. <hkern u1="&#xf6;" u2="x" k="27" />
  1095. <hkern u1="&#xf6;" u2="v" k="24" />
  1096. <hkern u1="&#xf8;" u2="&#x2122;" k="60" />
  1097. <hkern u1="&#xf8;" u2="x" k="27" />
  1098. <hkern u1="&#xf8;" u2="v" k="24" />
  1099. <hkern u1="&#xfe;" u2="&#x2122;" k="60" />
  1100. <hkern u1="&#xfe;" u2="x" k="27" />
  1101. <hkern u1="&#xfe;" u2="v" k="24" />
  1102. <hkern u1="&#x153;" u2="&#x2122;" k="60" />
  1103. <hkern u1="&#x153;" u2="x" k="27" />
  1104. <hkern u1="&#x153;" u2="v" k="24" />
  1105. <hkern u1="&#x160;" u2="V" k="22" />
  1106. <hkern u1="&#x178;" u2="&#xdf;" k="13" />
  1107. <hkern u1="&#x178;" u2="x" k="27" />
  1108. <hkern u1="&#x178;" u2="v" k="27" />
  1109. <hkern u1="&#x178;" u2="s" k="79" />
  1110. <hkern u1="&#x178;" u2="q" k="89" />
  1111. <hkern u1="&#x178;" u2="Q" k="72" />
  1112. <hkern u1="&#x17d;" u2="v" k="7" />
  1113. <hkern u1="&#x17d;" u2="Q" k="20" />
  1114. <hkern u1="&#x17e;" u2="q" k="12" />
  1115. <hkern u1="&#x2013;" u2="x" k="23" />
  1116. <hkern u1="&#x2013;" u2="v" k="17" />
  1117. <hkern u1="&#x2013;" u2="X" k="33" />
  1118. <hkern u1="&#x2013;" u2="V" k="28" />
  1119. <hkern u1="&#x2014;" u2="x" k="23" />
  1120. <hkern u1="&#x2014;" u2="v" k="17" />
  1121. <hkern u1="&#x2014;" u2="X" k="33" />
  1122. <hkern u1="&#x2014;" u2="V" k="28" />
  1123. <hkern u1="&#x2018;" u2="&#xdf;" k="7" />
  1124. <hkern u1="&#x2018;" u2="s" k="25" />
  1125. <hkern u1="&#x2018;" u2="q" k="25" />
  1126. <hkern u1="&#x2018;" u2="Q" k="28" />
  1127. <hkern u1="&#x2019;" u2="&#xdf;" k="7" />
  1128. <hkern u1="&#x2019;" u2="s" k="25" />
  1129. <hkern u1="&#x2019;" u2="q" k="25" />
  1130. <hkern u1="&#x2019;" u2="Q" k="28" />
  1131. <hkern u1="&#x201a;" u2="v" k="68" />
  1132. <hkern u1="&#x201a;" u2="s" k="3" />
  1133. <hkern u1="&#x201a;" u2="q" k="23" />
  1134. <hkern u1="&#x201a;" u2="V" k="83" />
  1135. <hkern u1="&#x201a;" u2="Q" k="28" />
  1136. <hkern u1="&#x201c;" u2="&#xdf;" k="7" />
  1137. <hkern u1="&#x201c;" u2="s" k="25" />
  1138. <hkern u1="&#x201c;" u2="q" k="25" />
  1139. <hkern u1="&#x201c;" u2="Q" k="28" />
  1140. <hkern u1="&#x201d;" u2="&#xdf;" k="7" />
  1141. <hkern u1="&#x201d;" u2="s" k="25" />
  1142. <hkern u1="&#x201d;" u2="q" k="25" />
  1143. <hkern u1="&#x201d;" u2="Q" k="28" />
  1144. <hkern u1="&#x201e;" u2="v" k="68" />
  1145. <hkern u1="&#x201e;" u2="s" k="3" />
  1146. <hkern u1="&#x201e;" u2="q" k="23" />
  1147. <hkern u1="&#x201e;" u2="V" k="83" />
  1148. <hkern u1="&#x201e;" u2="Q" k="28" />
  1149. <hkern u1="&#x2026;" u2="v" k="68" />
  1150. <hkern u1="&#x2026;" u2="s" k="3" />
  1151. <hkern u1="&#x2026;" u2="q" k="23" />
  1152. <hkern u1="&#x2026;" u2="V" k="83" />
  1153. <hkern u1="&#x2026;" u2="Q" k="28" />
  1154. <hkern g1="quoteleft,quoteright,quotedblleft,quotedblright"
  1155. g2="d,eth"
  1156. k="25" />
  1157. <hkern g1="quoteleft,quoteright,quotedblleft,quotedblright"
  1158. g2="c,ccedilla"
  1159. k="25" />
  1160. <hkern g1="quoteleft,quoteright,quotedblleft,quotedblright"
  1161. g2="e,egrave,eacute,ecircumflex,edieresis"
  1162. k="25" />
  1163. <hkern g1="quoteleft,quoteright,quotedblleft,quotedblright"
  1164. g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring,ae"
  1165. k="25" />
  1166. <hkern g1="quoteleft,quoteright,quotedblleft,quotedblright"
  1167. g2="g"
  1168. k="25" />
  1169. <hkern g1="quoteleft,quoteright,quotedblleft,quotedblright"
  1170. g2="O,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE"
  1171. k="28" />
  1172. <hkern g1="quoteleft,quoteright,quotedblleft,quotedblright"
  1173. g2="C,Ccedilla"
  1174. k="28" />
  1175. <hkern g1="quoteleft,quoteright,quotedblleft,quotedblright"
  1176. g2="G"
  1177. k="28" />
  1178. <hkern g1="quoteleft,quoteright,quotedblleft,quotedblright"
  1179. g2="S,Scaron"
  1180. k="15" />
  1181. <hkern g1="quoteleft,quoteright,quotedblleft,quotedblright"
  1182. g2="o,ograve,oacute,ocircumflex,otilde,odieresis,oslash,oe"
  1183. k="25" />
  1184. <hkern g1="quoteleft,quoteright,quotedblleft,quotedblright"
  1185. g2="n,ntilde"
  1186. k="25" />
  1187. <hkern g1="quoteleft,quoteright,quotedblleft,quotedblright"
  1188. g2="p"
  1189. k="25" />
  1190. <hkern g1="quoteleft,quoteright,quotedblleft,quotedblright"
  1191. g2="m"
  1192. k="25" />
  1193. <hkern g1="quoteleft,quoteright,quotedblleft,quotedblright"
  1194. g2="N,Ntilde"
  1195. k="8" />
  1196. <hkern g1="quoteleft,quoteright,quotedblleft,quotedblright"
  1197. g2="J"
  1198. k="88" />
  1199. <hkern g1="quoteleft,quoteright,quotedblleft,quotedblright"
  1200. g2="f"
  1201. k="7" />
  1202. <hkern g1="quoteleft,quoteright,quotedblleft,quotedblright"
  1203. g2="r"
  1204. k="25" />
  1205. <hkern g1="quoteleft,quoteright,quotedblleft,quotedblright"
  1206. g2="M"
  1207. k="8" />
  1208. <hkern g1="quoteleft,quoteright,quotedblleft,quotedblright"
  1209. g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE"
  1210. k="8" />
  1211. <hkern g1="hyphen,uni00AD,endash,emdash"
  1212. g2="T"
  1213. k="77" />
  1214. <hkern g1="hyphen,uni00AD,endash,emdash"
  1215. g2="Y,Yacute,Ydieresis"
  1216. k="77" />
  1217. <hkern g1="parenleft,bracketleft,braceleft"
  1218. g2="T"
  1219. k="-13" />
  1220. <hkern g1="parenleft,bracketleft,braceleft"
  1221. g2="Y,Yacute,Ydieresis"
  1222. k="-10" />
  1223. <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring"
  1224. g2="T"
  1225. k="21" />
  1226. <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring"
  1227. g2="Y,Yacute,Ydieresis"
  1228. k="37" />
  1229. <hkern g1="B"
  1230. g2="T"
  1231. k="21" />
  1232. <hkern g1="B"
  1233. g2="Y,Yacute,Ydieresis"
  1234. k="37" />
  1235. <hkern g1="C,Ccedilla"
  1236. g2="T"
  1237. k="50" />
  1238. <hkern g1="C,Ccedilla"
  1239. g2="Y,Yacute,Ydieresis"
  1240. k="72" />
  1241. <hkern g1="C,Ccedilla"
  1242. g2="Z,Zcaron"
  1243. k="20" />
  1244. <hkern g1="C,Ccedilla"
  1245. g2="comma,period,quotesinglbase,quotedblbase,ellipsis"
  1246. k="28" />
  1247. <hkern g1="C,Ccedilla"
  1248. g2="quoteleft,quoteright,quotedblleft,quotedblright"
  1249. k="13" />
  1250. <hkern g1="D,Eth"
  1251. g2="T"
  1252. k="50" />
  1253. <hkern g1="D,Eth"
  1254. g2="Y,Yacute,Ydieresis"
  1255. k="72" />
  1256. <hkern g1="D,Eth"
  1257. g2="Z,Zcaron"
  1258. k="20" />
  1259. <hkern g1="D,Eth"
  1260. g2="comma,period,quotesinglbase,quotedblbase,ellipsis"
  1261. k="28" />
  1262. <hkern g1="D,Eth"
  1263. g2="quoteleft,quoteright,quotedblleft,quotedblright"
  1264. k="13" />
  1265. <hkern g1="F"
  1266. g2="d,eth"
  1267. k="12" />
  1268. <hkern g1="F"
  1269. g2="c,ccedilla"
  1270. k="12" />
  1271. <hkern g1="F"
  1272. g2="e,egrave,eacute,ecircumflex,edieresis"
  1273. k="12" />
  1274. <hkern g1="F"
  1275. g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring,ae"
  1276. k="12" />
  1277. <hkern g1="F"
  1278. g2="g"
  1279. k="12" />
  1280. <hkern g1="F"
  1281. g2="O,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE"
  1282. k="12" />
  1283. <hkern g1="F"
  1284. g2="C,Ccedilla"
  1285. k="12" />
  1286. <hkern g1="F"
  1287. g2="G"
  1288. k="12" />
  1289. <hkern g1="F"
  1290. g2="S,Scaron"
  1291. k="8" />
  1292. <hkern g1="F"
  1293. g2="T"
  1294. k="-4" />
  1295. <hkern g1="F"
  1296. g2="o,ograve,oacute,ocircumflex,otilde,odieresis,oslash,oe"
  1297. k="12" />
  1298. <hkern g1="F"
  1299. g2="n,ntilde"
  1300. k="12" />
  1301. <hkern g1="F"
  1302. g2="p"
  1303. k="12" />
  1304. <hkern g1="F"
  1305. g2="m"
  1306. k="7" />
  1307. <hkern g1="F"
  1308. g2="N,Ntilde"
  1309. k="4" />
  1310. <hkern g1="F"
  1311. g2="J"
  1312. k="47" />
  1313. <hkern g1="F"
  1314. g2="r"
  1315. k="12" />
  1316. <hkern g1="F"
  1317. g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE"
  1318. k="4" />
  1319. <hkern g1="F"
  1320. g2="Z,Zcaron"
  1321. k="3" />
  1322. <hkern g1="F"
  1323. g2="comma,period,quotesinglbase,quotedblbase,ellipsis"
  1324. k="83" />
  1325. <hkern g1="F"
  1326. g2="parenright,bracketright,braceright"
  1327. k="-13" />
  1328. <hkern g1="G"
  1329. g2="T"
  1330. k="39" />
  1331. <hkern g1="G"
  1332. g2="Y,Yacute,Ydieresis"
  1333. k="60" />
  1334. <hkern g1="G"
  1335. g2="Z,Zcaron"
  1336. k="9" />
  1337. <hkern g1="G"
  1338. g2="comma,period,quotesinglbase,quotedblbase,ellipsis"
  1339. k="23" />
  1340. <hkern g1="G"
  1341. g2="quoteleft,quoteright,quotedblleft,quotedblright"
  1342. k="13" />
  1343. <hkern g1="J"
  1344. g2="comma,period,quotesinglbase,quotedblbase,ellipsis"
  1345. k="8" />
  1346. <hkern g1="K"
  1347. g2="b"
  1348. k="2" />
  1349. <hkern g1="K"
  1350. g2="d,eth"
  1351. k="16" />
  1352. <hkern g1="K"
  1353. g2="c,ccedilla"
  1354. k="16" />
  1355. <hkern g1="K"
  1356. g2="e,egrave,eacute,ecircumflex,edieresis"
  1357. k="16" />
  1358. <hkern g1="K"
  1359. g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring,ae"
  1360. k="16" />
  1361. <hkern g1="K"
  1362. g2="g"
  1363. k="16" />
  1364. <hkern g1="K"
  1365. g2="O,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE"
  1366. k="35" />
  1367. <hkern g1="K"
  1368. g2="C,Ccedilla"
  1369. k="35" />
  1370. <hkern g1="K"
  1371. g2="G"
  1372. k="35" />
  1373. <hkern g1="K"
  1374. g2="T"
  1375. k="10" />
  1376. <hkern g1="K"
  1377. g2="Y,Yacute,Ydieresis"
  1378. k="10" />
  1379. <hkern g1="K"
  1380. g2="o,ograve,oacute,ocircumflex,otilde,odieresis,oslash,oe"
  1381. k="16" />
  1382. <hkern g1="K"
  1383. g2="hyphen,uni00AD,endash,emdash"
  1384. k="47" />
  1385. <hkern g1="L"
  1386. g2="b"
  1387. k="9" />
  1388. <hkern g1="L"
  1389. g2="d,eth"
  1390. k="3" />
  1391. <hkern g1="L"
  1392. g2="c,ccedilla"
  1393. k="3" />
  1394. <hkern g1="L"
  1395. g2="e,egrave,eacute,ecircumflex,edieresis"
  1396. k="3" />
  1397. <hkern g1="L"
  1398. g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring,ae"
  1399. k="3" />
  1400. <hkern g1="L"
  1401. g2="g"
  1402. k="3" />
  1403. <hkern g1="L"
  1404. g2="O,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE"
  1405. k="42" />
  1406. <hkern g1="L"
  1407. g2="C,Ccedilla"
  1408. k="42" />
  1409. <hkern g1="L"
  1410. g2="G"
  1411. k="42" />
  1412. <hkern g1="L"
  1413. g2="S,Scaron"
  1414. k="5" />
  1415. <hkern g1="L"
  1416. g2="T"
  1417. k="127" />
  1418. <hkern g1="L"
  1419. g2="Y,Yacute,Ydieresis"
  1420. k="145" />
  1421. <hkern g1="L"
  1422. g2="o,ograve,oacute,ocircumflex,otilde,odieresis,oslash,oe"
  1423. k="3" />
  1424. <hkern g1="L"
  1425. g2="quoteleft,quoteright,quotedblleft,quotedblright"
  1426. k="88" />
  1427. <hkern g1="L"
  1428. g2="hyphen,uni00AD,endash,emdash"
  1429. k="64" />
  1430. <hkern g1="M"
  1431. g2="T"
  1432. k="17" />
  1433. <hkern g1="M"
  1434. g2="Y,Yacute,Ydieresis"
  1435. k="30" />
  1436. <hkern g1="N,Ntilde"
  1437. g2="T"
  1438. k="21" />
  1439. <hkern g1="N,Ntilde"
  1440. g2="Y,Yacute,Ydieresis"
  1441. k="37" />
  1442. <hkern g1="O,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash"
  1443. g2="T"
  1444. k="50" />
  1445. <hkern g1="O,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash"
  1446. g2="Y,Yacute,Ydieresis"
  1447. k="72" />
  1448. <hkern g1="O,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash"
  1449. g2="Z,Zcaron"
  1450. k="20" />
  1451. <hkern g1="O,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash"
  1452. g2="comma,period,quotesinglbase,quotedblbase,ellipsis"
  1453. k="28" />
  1454. <hkern g1="O,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash"
  1455. g2="quoteleft,quoteright,quotedblleft,quotedblright"
  1456. k="13" />
  1457. <hkern g1="P"
  1458. g2="Y,Yacute,Ydieresis"
  1459. k="8" />
  1460. <hkern g1="P"
  1461. g2="J"
  1462. k="15" />
  1463. <hkern g1="P"
  1464. g2="Z,Zcaron"
  1465. k="5" />
  1466. <hkern g1="P"
  1467. g2="comma,period,quotesinglbase,quotedblbase,ellipsis"
  1468. k="87" />
  1469. <hkern g1="R"
  1470. g2="d,eth"
  1471. k="4" />
  1472. <hkern g1="R"
  1473. g2="c,ccedilla"
  1474. k="4" />
  1475. <hkern g1="R"
  1476. g2="e,egrave,eacute,ecircumflex,edieresis"
  1477. k="4" />
  1478. <hkern g1="R"
  1479. g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring,ae"
  1480. k="4" />
  1481. <hkern g1="R"
  1482. g2="g"
  1483. k="4" />
  1484. <hkern g1="R"
  1485. g2="O,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE"
  1486. k="4" />
  1487. <hkern g1="R"
  1488. g2="C,Ccedilla"
  1489. k="4" />
  1490. <hkern g1="R"
  1491. g2="G"
  1492. k="4" />
  1493. <hkern g1="R"
  1494. g2="T"
  1495. k="11" />
  1496. <hkern g1="R"
  1497. g2="Y,Yacute,Ydieresis"
  1498. k="39" />
  1499. <hkern g1="R"
  1500. g2="o,ograve,oacute,ocircumflex,otilde,odieresis,oslash,oe"
  1501. k="4" />
  1502. <hkern g1="S,Scaron"
  1503. g2="T"
  1504. k="20" />
  1505. <hkern g1="S,Scaron"
  1506. g2="Y,Yacute,Ydieresis"
  1507. k="43" />
  1508. <hkern g1="T"
  1509. g2="u,ugrave,uacute,ucircumflex,udieresis"
  1510. k="20" />
  1511. <hkern g1="T"
  1512. g2="d,eth"
  1513. k="66" />
  1514. <hkern g1="T"
  1515. g2="c,ccedilla"
  1516. k="66" />
  1517. <hkern g1="T"
  1518. g2="e,egrave,eacute,ecircumflex,edieresis"
  1519. k="66" />
  1520. <hkern g1="T"
  1521. g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring,ae"
  1522. k="66" />
  1523. <hkern g1="T"
  1524. g2="g"
  1525. k="66" />
  1526. <hkern g1="T"
  1527. g2="y,yacute,ydieresis"
  1528. k="20" />
  1529. <hkern g1="T"
  1530. g2="O,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE"
  1531. k="50" />
  1532. <hkern g1="T"
  1533. g2="C,Ccedilla"
  1534. k="50" />
  1535. <hkern g1="T"
  1536. g2="G"
  1537. k="50" />
  1538. <hkern g1="T"
  1539. g2="S,Scaron"
  1540. k="15" />
  1541. <hkern g1="T"
  1542. g2="w"
  1543. k="20" />
  1544. <hkern g1="T"
  1545. g2="o,ograve,oacute,ocircumflex,otilde,odieresis,oslash,oe"
  1546. k="66" />
  1547. <hkern g1="T"
  1548. g2="n,ntilde"
  1549. k="50" />
  1550. <hkern g1="T"
  1551. g2="p"
  1552. k="50" />
  1553. <hkern g1="T"
  1554. g2="m"
  1555. k="45" />
  1556. <hkern g1="T"
  1557. g2="N,Ntilde"
  1558. k="21" />
  1559. <hkern g1="T"
  1560. g2="J"
  1561. k="100" />
  1562. <hkern g1="T"
  1563. g2="r"
  1564. k="50" />
  1565. <hkern g1="T"
  1566. g2="M"
  1567. k="17" />
  1568. <hkern g1="T"
  1569. g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE"
  1570. k="21" />
  1571. <hkern g1="T"
  1572. g2="Z,Zcaron"
  1573. k="10" />
  1574. <hkern g1="T"
  1575. g2="comma,period,quotesinglbase,quotedblbase,ellipsis"
  1576. k="98" />
  1577. <hkern g1="T"
  1578. g2="parenright,bracketright,braceright"
  1579. k="-13" />
  1580. <hkern g1="T"
  1581. g2="hyphen,uni00AD,endash,emdash"
  1582. k="77" />
  1583. <hkern g1="T"
  1584. g2="z,zcaron"
  1585. k="29" />
  1586. <hkern g1="U,Ugrave,Uacute,Ucircumflex,Udieresis"
  1587. g2="comma,period,quotesinglbase,quotedblbase,ellipsis"
  1588. k="8" />
  1589. <hkern g1="W"
  1590. g2="comma,period,quotesinglbase,quotedblbase,ellipsis"
  1591. k="8" />
  1592. <hkern g1="Y,Yacute,Ydieresis"
  1593. g2="u,ugrave,uacute,ucircumflex,udieresis"
  1594. k="21" />
  1595. <hkern g1="Y,Yacute,Ydieresis"
  1596. g2="d,eth"
  1597. k="89" />
  1598. <hkern g1="Y,Yacute,Ydieresis"
  1599. g2="c,ccedilla"
  1600. k="89" />
  1601. <hkern g1="Y,Yacute,Ydieresis"
  1602. g2="e,egrave,eacute,ecircumflex,edieresis"
  1603. k="89" />
  1604. <hkern g1="Y,Yacute,Ydieresis"
  1605. g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring,ae"
  1606. k="89" />
  1607. <hkern g1="Y,Yacute,Ydieresis"
  1608. g2="g"
  1609. k="89" />
  1610. <hkern g1="Y,Yacute,Ydieresis"
  1611. g2="y,yacute,ydieresis"
  1612. k="21" />
  1613. <hkern g1="Y,Yacute,Ydieresis"
  1614. g2="O,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE"
  1615. k="72" />
  1616. <hkern g1="Y,Yacute,Ydieresis"
  1617. g2="C,Ccedilla"
  1618. k="72" />
  1619. <hkern g1="Y,Yacute,Ydieresis"
  1620. g2="G"
  1621. k="72" />
  1622. <hkern g1="Y,Yacute,Ydieresis"
  1623. g2="S,Scaron"
  1624. k="40" />
  1625. <hkern g1="Y,Yacute,Ydieresis"
  1626. g2="w"
  1627. k="21" />
  1628. <hkern g1="Y,Yacute,Ydieresis"
  1629. g2="o,ograve,oacute,ocircumflex,otilde,odieresis,oslash,oe"
  1630. k="89" />
  1631. <hkern g1="Y,Yacute,Ydieresis"
  1632. g2="n,ntilde"
  1633. k="80" />
  1634. <hkern g1="Y,Yacute,Ydieresis"
  1635. g2="p"
  1636. k="80" />
  1637. <hkern g1="Y,Yacute,Ydieresis"
  1638. g2="m"
  1639. k="70" />
  1640. <hkern g1="Y,Yacute,Ydieresis"
  1641. g2="N,Ntilde"
  1642. k="37" />
  1643. <hkern g1="Y,Yacute,Ydieresis"
  1644. g2="J"
  1645. k="129" />
  1646. <hkern g1="Y,Yacute,Ydieresis"
  1647. g2="f"
  1648. k="13" />
  1649. <hkern g1="Y,Yacute,Ydieresis"
  1650. g2="r"
  1651. k="80" />
  1652. <hkern g1="Y,Yacute,Ydieresis"
  1653. g2="M"
  1654. k="30" />
  1655. <hkern g1="Y,Yacute,Ydieresis"
  1656. g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE"
  1657. k="37" />
  1658. <hkern g1="Y,Yacute,Ydieresis"
  1659. g2="Z,Zcaron"
  1660. k="11" />
  1661. <hkern g1="Y,Yacute,Ydieresis"
  1662. g2="comma,period,quotesinglbase,quotedblbase,ellipsis"
  1663. k="103" />
  1664. <hkern g1="Y,Yacute,Ydieresis"
  1665. g2="parenright,bracketright,braceright"
  1666. k="-10" />
  1667. <hkern g1="Y,Yacute,Ydieresis"
  1668. g2="hyphen,uni00AD,endash,emdash"
  1669. k="77" />
  1670. <hkern g1="Y,Yacute,Ydieresis"
  1671. g2="z,zcaron"
  1672. k="26" />
  1673. <hkern g1="Z,Zcaron"
  1674. g2="O,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE"
  1675. k="20" />
  1676. <hkern g1="Z,Zcaron"
  1677. g2="C,Ccedilla"
  1678. k="20" />
  1679. <hkern g1="Z,Zcaron"
  1680. g2="G"
  1681. k="20" />
  1682. <hkern g1="a,agrave,aacute,acircumflex,atilde,adieresis,aring"
  1683. g2="quoteleft,quoteright,quotedblleft,quotedblright"
  1684. k="23" />
  1685. <hkern g1="b"
  1686. g2="comma,period,quotesinglbase,quotedblbase,ellipsis"
  1687. k="23" />
  1688. <hkern g1="b"
  1689. g2="quoteleft,quoteright,quotedblleft,quotedblright"
  1690. k="23" />
  1691. <hkern g1="b"
  1692. g2="z,zcaron"
  1693. k="12" />
  1694. <hkern g1="c,ccedilla"
  1695. g2="comma,period,quotesinglbase,quotedblbase,ellipsis"
  1696. k="23" />
  1697. <hkern g1="c,ccedilla"
  1698. g2="quoteleft,quoteright,quotedblleft,quotedblright"
  1699. k="23" />
  1700. <hkern g1="c,ccedilla"
  1701. g2="z,zcaron"
  1702. k="12" />
  1703. <hkern g1="d,eth"
  1704. g2="comma,period,quotesinglbase,quotedblbase,ellipsis"
  1705. k="23" />
  1706. <hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,oe"
  1707. g2="comma,period,quotesinglbase,quotedblbase,ellipsis"
  1708. k="23" />
  1709. <hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,oe"
  1710. g2="quoteleft,quoteright,quotedblleft,quotedblright"
  1711. k="23" />
  1712. <hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,oe"
  1713. g2="z,zcaron"
  1714. k="12" />
  1715. <hkern g1="f"
  1716. g2="d,eth"
  1717. k="9" />
  1718. <hkern g1="f"
  1719. g2="c,ccedilla"
  1720. k="9" />
  1721. <hkern g1="f"
  1722. g2="e,egrave,eacute,ecircumflex,edieresis"
  1723. k="9" />
  1724. <hkern g1="f"
  1725. g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring,ae"
  1726. k="9" />
  1727. <hkern g1="f"
  1728. g2="g"
  1729. k="9" />
  1730. <hkern g1="f"
  1731. g2="o,ograve,oacute,ocircumflex,otilde,odieresis,oslash,oe"
  1732. k="9" />
  1733. <hkern g1="f"
  1734. g2="n,ntilde"
  1735. k="13" />
  1736. <hkern g1="f"
  1737. g2="p"
  1738. k="13" />
  1739. <hkern g1="f"
  1740. g2="r"
  1741. k="13" />
  1742. <hkern g1="f"
  1743. g2="comma,period,quotesinglbase,quotedblbase,ellipsis"
  1744. k="87" />
  1745. <hkern g1="f"
  1746. g2="quoteleft,quoteright,quotedblleft,quotedblright"
  1747. k="-23" />
  1748. <hkern g1="f"
  1749. g2="parenright,bracketright,braceright"
  1750. k="-30" />
  1751. <hkern g1="g"
  1752. g2="quoteleft,quoteright,quotedblleft,quotedblright"
  1753. k="23" />
  1754. <hkern g1="h"
  1755. g2="quoteleft,quoteright,quotedblleft,quotedblright"
  1756. k="23" />
  1757. <hkern g1="k"
  1758. g2="d,eth"
  1759. k="26" />
  1760. <hkern g1="k"
  1761. g2="c,ccedilla"
  1762. k="26" />
  1763. <hkern g1="k"
  1764. g2="e,egrave,eacute,ecircumflex,edieresis"
  1765. k="26" />
  1766. <hkern g1="k"
  1767. g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring,ae"
  1768. k="26" />
  1769. <hkern g1="k"
  1770. g2="g"
  1771. k="26" />
  1772. <hkern g1="k"
  1773. g2="o,ograve,oacute,ocircumflex,otilde,odieresis,oslash,oe"
  1774. k="26" />
  1775. <hkern g1="k"
  1776. g2="hyphen,uni00AD,endash,emdash"
  1777. k="23" />
  1778. <hkern g1="m"
  1779. g2="quoteleft,quoteright,quotedblleft,quotedblright"
  1780. k="23" />
  1781. <hkern g1="n,ntilde"
  1782. g2="quoteleft,quoteright,quotedblleft,quotedblright"
  1783. k="23" />
  1784. <hkern g1="o,ograve,oacute,ocircumflex,otilde,odieresis,oslash"
  1785. g2="comma,period,quotesinglbase,quotedblbase,ellipsis"
  1786. k="23" />
  1787. <hkern g1="o,ograve,oacute,ocircumflex,otilde,odieresis,oslash"
  1788. g2="quoteleft,quoteright,quotedblleft,quotedblright"
  1789. k="23" />
  1790. <hkern g1="o,ograve,oacute,ocircumflex,otilde,odieresis,oslash"
  1791. g2="z,zcaron"
  1792. k="12" />
  1793. <hkern g1="p,thorn"
  1794. g2="comma,period,quotesinglbase,quotedblbase,ellipsis"
  1795. k="23" />
  1796. <hkern g1="p,thorn"
  1797. g2="quoteleft,quoteright,quotedblleft,quotedblright"
  1798. k="23" />
  1799. <hkern g1="p,thorn"
  1800. g2="z,zcaron"
  1801. k="12" />
  1802. <hkern g1="r"
  1803. g2="comma,period,quotesinglbase,quotedblbase,ellipsis"
  1804. k="93" />
  1805. <hkern g1="r"
  1806. g2="quoteleft,quoteright,quotedblleft,quotedblright"
  1807. k="15" />
  1808. <hkern g1="r"
  1809. g2="z,zcaron"
  1810. k="18" />
  1811. <hkern g1="t"
  1812. g2="z,zcaron"
  1813. k="5" />
  1814. <hkern g1="u,ugrave,uacute,ucircumflex,udieresis"
  1815. g2="comma,period,quotesinglbase,quotedblbase,ellipsis"
  1816. k="23" />
  1817. <hkern g1="w"
  1818. g2="comma,period,quotesinglbase,quotedblbase,ellipsis"
  1819. k="15" />
  1820. <hkern g1="z,zcaron"
  1821. g2="d,eth"
  1822. k="12" />
  1823. <hkern g1="z,zcaron"
  1824. g2="c,ccedilla"
  1825. k="12" />
  1826. <hkern g1="z,zcaron"
  1827. g2="e,egrave,eacute,ecircumflex,edieresis"
  1828. k="12" />
  1829. <hkern g1="z,zcaron"
  1830. g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring,ae"
  1831. k="12" />
  1832. <hkern g1="z,zcaron"
  1833. g2="g"
  1834. k="12" />
  1835. <hkern g1="z,zcaron"
  1836. g2="o,ograve,oacute,ocircumflex,otilde,odieresis,oslash,oe"
  1837. k="12" />
  1838. </font>
  1839. </defs></svg>