IndivisaTextSans-LightItalic.svg 604 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741
  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 xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1">
  4. <metadata></metadata>
  5. <defs>
  6. <font id="indivisa_text_sansLtIt" horiz-adv-x="560" >
  7. <font-face units-per-em="1000" ascent="755" descent="-245" />
  8. <missing-glyph horiz-adv-x="260" />
  9. <glyph unicode="&#x2f;symbol&#x33;&#x2f;" horiz-adv-x="957" d="M505 638l68 -270h270l-203 -135l136 -270l-271 135l-270 -270l135 405l-270 203l338 -68zM814 87q18 0 30.5 -12.5t12.5 -31.5q0 -18 -12.5 -30.5t-30.5 -12.5t-30.5 12.5t-12.5 30.5q0 19 12.5 31.5t30.5 12.5zM854 43q0 17 -11.5 29t-28.5 12t-28.5 -12t-11.5 -29 t12 -28.5t28 -11.5t28 11.5t12 28.5zM796 68h18q8 0 11 -2q6 -3 6 -10q0 -5 -4 -9q-3 -3 -6 -3q7 -3 8 -10q2 -14 3 -16h-7q-1 2 -2 7.5t-1 6.5q0 9 -10 9h-9v-23h-7v50zM803 47h10q5 0 7 1q3 3 3 6q0 9 -10 9h-10v-16z" />
  10. <glyph unicode="&#x2f;symbol&#x32;&#x2f;" horiz-adv-x="932" d="M494 570l52 -90l-137 -240h-103l137 240l-52 90h103zM357 570l52 -90l-138 -240h-103l138 240l-52 90h103zM752 120h-103l-137 240l51 90l137 -240h103zM683 0h-103l-137 240l51 90l138 -240h103zM100 120l51 90h275l51 -90h-274l-52 -90zM168 0l52 90h274l52 -90h-275 l-51 -90zM789 88q18 0 30.5 -13t12.5 -31t-12.5 -31t-30.5 -13t-30.5 13t-12.5 31t12.5 31t30.5 13zM829 44q0 16 -11.5 28t-28.5 12t-28.5 -12t-11.5 -28t11.5 -28t28.5 -12t28.5 12t11.5 28zM771 69h18q7 0 11 -2q5 -4 5 -11q0 -5 -3 -8q-1 -2 -6 -4q7 -1 8 -9q0 -8 3 -16 h-8q-1 2 -1.5 6.5t-0.5 6.5q-1 10 -11 10h-8v-23h-7v50zM778 47h10q5 0 7 1q3 3 3 7q0 8 -10 8h-10v-16z" />
  11. <glyph unicode="&#x2f;symbol&#x35;&#x2f;" horiz-adv-x="705" d="M232 -6l-132 136l124 234l129 -136zM474 -6l-121 234l128 136l124 -234z" />
  12. <glyph unicode="&#x2f;symbol&#x31;&#x2f;" horiz-adv-x="5534" d="M1865 412q-25 0 -40.5 14.5t-15.5 37.5q0 35 32.5 64t70.5 29q24 0 39 -13.5t15 -37.5q0 -36 -31 -65t-70 -29zM1284 412q-26 0 -41.5 14.5t-15.5 37.5q0 35 33 64t71 29q24 0 38.5 -13.5t14.5 -37.5q0 -36 -31 -65t-69 -29zM959 0q0 42 11 108q-16 -50 -51.5 -82.5 t-78.5 -32.5q-41 0 -63 29.5t-22 82.5q0 62 27 121t84 101t132 42q17 0 25 -1l16 73l6 102l136 7q0 -67 -46 -273t-46 -277h-130zM100 0l78 364q17 86 21 136l128 7l11 -15l-104 -492h-134zM3503 492l-57 -492h-131l20 175q5 50 33 215h-3q-31 -102 -81 -215l-76 -175h-149 l-2 175q-2 121 9 215h-2q-32 -130 -59 -215l-53 -175h-109l154 500l184 6l1 -137q2 -134 -15 -259h2q39 126 94 259l56 131l169 7zM5316 300q-37 -177 -37 -183q0 -34 36 -34q25 0 59 18l-9 -79q-52 -29 -114 -29q-105 0 -105 100q0 20 40 210l-47 1l9 44l54 14l53 95l81 6 l13 -15l-20 -86h99l6 -14l-17 -51zM336 0q0 79 41 260l6 102l137 7q0 -31 -7 -89h2q52 89 134 89q34 0 53 -19.5t19 -51.5q0 -27 -26 -147q-18 -85 -18 -151h-131q0 55 19 150q15 78 15 87q0 24 -17 24q-34 0 -64 -82.5t-32 -178.5h-131zM1170 0q0 72 27 193l14 67l6 102 l137 7q0 -46 -27 -177t-27 -192h-130zM1399 362l140 7q13 -129 -5 -289h2q76 151 91 284q22 5 50 5q32 0 48.5 -8.5t16.5 -33.5q0 -46 -51 -147.5t-116 -179.5h-149q-5 228 -27 362zM1752 0q0 69 26 193l15 67l6 102l137 7q0 -46 -27 -177t-27 -192h-130zM4716 0 q0 79 41 260l6 102l137 7q0 -12 -7 -89h2q52 89 134 89q34 0 53 -19.5t19 -51.5q0 -27 -26 -147q-19 -90 -19 -151h-130q0 55 19 150q15 78 15 87q0 24 -17 24q-35 0 -65 -82t-32 -179h-130zM2245 256q-52 30 -97 30q-18 0 -30 -7t-12 -19q0 -14 20 -26.5t44 -22t44 -33 t20 -56.5q0 -57 -53 -93t-128 -36q-78 0 -118 28l27 93q57 -38 111 -38q19 0 29.5 7.5t10.5 18.5q0 13 -20 26t-44 23t-44 33t-20 55q0 56 54.5 93t128.5 37q58 0 104 -18zM2525 369q88 0 146 -32l-29 -128q-31 -145 -31 -209h-130q0 37 12 112q-15 -52 -51 -85.5t-81 -33.5 q-41 0 -62.5 29.5t-21.5 83.5q0 62 26.5 120.5t85 100.5t136.5 42zM4653 51q-67 -58 -159 -58q-65 0 -103.5 35t-38.5 102q0 94 68.5 166.5t167.5 72.5q54 0 86.5 -23.5t32.5 -64.5q0 -57 -60 -96.5t-161 -43.5v-1q0 -64 63 -64q42 0 90 28zM3936 0q0 74 42 260l5 102l137 7 q0 -31 -7 -89h2q53 89 134 89q34 0 53 -19.5t19 -51.5q0 -27 -26 -147q-18 -85 -18 -151h-131q0 55 19 150q15 71 15 87q0 24 -17 24q-34 0 -64 -82.5t-32 -178.5h-131zM3768 369q87 0 145 -32l-28 -128q-31 -145 -31 -209h-130q0 45 12 112q-15 -52 -51 -85.5t-81 -33.5 q-41 0 -63 29.5t-22 83.5q0 46 16 91.5t46 84t79 63t108 24.5zM4490 177q47 10 73 34t26 59q0 31 -22 31q-28 0 -48.5 -38.5t-28.5 -85.5zM3677 101q23 0 47 43t38 101q1 8 4.5 24.5t4.5 19.5q-16 8 -27 8q-34 0 -62.5 -54.5t-28.5 -101.5q0 -40 24 -40zM913 101 q22 0 44.5 39.5t37.5 94.5q1 9 8 40l3 14q-14 8 -27 8q-33 0 -61.5 -54.5t-28.5 -101.5q0 -40 24 -40zM2435 101q23 0 47 43.5t37 100.5q3 14 9 44q-14 8 -27 8q-34 0 -62 -54.5t-28 -101.5q0 -40 24 -40z" />
  13. <glyph unicode="&#x2f;symbol&#x34;&#x2f;" horiz-adv-x="2607" d="M1684 406q0 65 -11 128l126 14l15 -15v-533h-130v406zM1889 406q0 62 -10 128l126 14l14 -15v-533h-130v406zM427 101v-101h-320v362q0 80 -7 135l126 7l14 -14v-396zM925 21l7 109q62 -36 144 -36q50 0 50 36q0 20 -31.5 41.5t-69 40.5t-69 57t-31.5 88q0 69 55 108 t138 39q80 0 127 -18l-14 -111q-56 29 -111 29q-27 0 -42.5 -11t-15.5 -29q0 -20 20.5 -38t50 -34t59.5 -35t50.5 -51t20.5 -72q0 -66 -53.5 -103.5t-139.5 -37.5q-41 0 -83.5 8t-61.5 20zM795 0l-106 -7q-11 16 -21 49h-4q-34 -49 -104 -49q-43 0 -70 23t-27 66 q0 113 191 118v20q0 54 -58 54q-55 0 -108 -29l-8 97q72 26 150 26q154 0 154 -135q0 -25 -2 -69t-2 -70q0 -51 15 -94zM1626 0l-107 -7q-12 20 -21 49h-3q-34 -49 -105 -49q-43 0 -69.5 23t-26.5 66q0 113 191 118v20q0 54 -58 54q-54 0 -109 -29l-7 97q72 26 150 26 q153 0 153 -135q0 -25 -1.5 -69.5t-1.5 -69.5q0 -51 15 -94zM2405 213q0 -24 -1 -36l-11 -11h-191q14 -83 98 -83q44 0 84 21l7 -81q-46 -30 -127 -30q-90 0 -144 47.5t-54 134.5q0 85 52 139t132 54q72 0 113.5 -43t41.5 -112zM2199 207l78 4q2 14 2 26q0 59 -34 59 q-44 0 -46 -89zM654 74v88q-29 -3 -47 -18t-18 -39q0 -18 10 -29t27 -11q16 0 28 9zM1485 74v88q-29 -3 -47 -18t-18 -39q0 -18 10 -29t27 -11q16 0 28 9zM2464 85q18 0 30.5 -13t12.5 -31t-12.5 -31t-30.5 -13t-31 13t-13 31t13 31t31 13zM2504 41q0 17 -12 28.5t-28 11.5 t-28 -11.5t-12 -28.5t12 -28.5t28 -11.5t28 11.5t12 28.5zM2446 66h18q7 0 11 -3q5 -3 5 -10q0 -5 -3 -9q-3 -3 -6 -3q7 -1 8 -10q0 -7 3 -15h-8q-1 2 -1.5 6.5t-0.5 6.5q-1 9 -11 9h-8v-22h-7v50zM2453 44h10q5 0 7 1q3 3 3 7q0 8 -10 8h-10v-16z" />
  14. <glyph unicode=" " horiz-adv-x="260" />
  15. <glyph unicode="&#x09;" horiz-adv-x="260" />
  16. <glyph unicode="&#xa0;" horiz-adv-x="260" />
  17. <glyph unicode="!" horiz-adv-x="257" d="M129 190h-31q27 140 60 304t38 191l44 10l4 -5q-57 -249 -115 -500zM119 51q0 -24 -15 -42.5t-34 -18.5q-27 0 -27 30q0 23 15.5 41.5t33.5 18.5q27 0 27 -29z" />
  18. <glyph unicode="&#x22;" horiz-adv-x="228" d="M191 755l4 -5l-64 -229h-20l37 234h43zM291 755l4 -5l-64 -229h-20l37 234h43z" />
  19. <glyph unicode="#" horiz-adv-x="719" d="M185 -10l-27 2l-7 8l71 155h-141l-6 8l11 28h153l73 158h-147l-7 8l11 28h159l74 160l28 -2l6 -8l-69 -150h179l74 160l28 -2l6 -8l-69 -150h136l6 -8l-9 -28h-150l-72 -158h147l6 -8l-10 -28h-160l-76 -165l-27 2l-7 8l71 155h-179zM278 191h179l73 158h-180z" />
  20. <glyph unicode="$" horiz-adv-x="460" d="M136 -140l-6 8l26 122h-2q-81 0 -141 35l17 43q54 -40 136 -40q73 0 122 39t49 106q0 36 -15.5 66.5t-39 51t-51 44t-51 44.5t-39 52.5t-15.5 68.5q0 73 54 127t135 65l27 130l23 3l6 -8l-26 -122h7q78 0 129 -33l-17 -43q-48 38 -121 38q-75 0 -123 -43t-48 -106 q0 -39 21.5 -72t52.5 -57t62 -49.5t52.5 -62.5t21.5 -82q0 -78 -55.5 -131t-140.5 -62l-27 -129z" />
  21. <glyph unicode="%" horiz-adv-x="936" d="M436 558q0 -99 -59 -181.5t-149 -82.5q-55 0 -84.5 36t-29.5 103q0 100 59 181.5t148 81.5q56 0 85.5 -35.5t29.5 -102.5zM734 695l-422 -705h-40l421 705h41zM152 436q0 -112 85 -112q72 0 116.5 73t44.5 158q0 111 -85 111q-72 0 -116.5 -73t-44.5 -157zM848 186 q0 -99 -59 -181.5t-149 -82.5q-55 0 -84.5 36t-29.5 103q0 100 59 181.5t148 81.5q56 0 85.5 -35.5t29.5 -102.5zM564 64q0 -112 85 -112q72 0 116.5 73t44.5 158q0 111 -85 111q-72 0 -116.5 -73t-44.5 -157z" />
  22. <glyph unicode="&#x26;" horiz-adv-x="753" d="M681 57q0 -53 -54 -67l-7 7q18 22 18 56q0 30 -26 55.5t-76 54.5q-50 -79 -119 -126t-151 -47q-85 0 -132.5 48.5t-47.5 120.5q0 69 46 130t123 95q-23 46 -23 102q0 94 59 151.5t141 57.5q54 0 84 -25.5t30 -66.5q0 -31 -16.5 -61t-42.5 -49q141 3 268 12l5 -5 q0 -21 -6 -43q-6 0 -128 5q-3 -141 -72 -268q63 -35 95 -66t32 -71zM275 489q0 -51 19.5 -93t59.5 -76t72 -54t86 -50q10 -5 15 -8q61 120 63 256q-6 0 -127 9l-5 11q45 55 45 101q0 32 -19 53t-61 21q-62 0 -105 -46.5t-43 -123.5zM129 164q0 -62 42 -100t110 -38 q69 0 127.5 40.5t101.5 110.5q-5 3 -32 17.5t-35 19t-32 19t-34.5 22.5t-30.5 22.5t-31 26t-24.5 27t-23.5 31.5q-69 -34 -103.5 -88t-34.5 -110z" />
  23. <glyph unicode="'" horiz-adv-x="128" d="M191 755l4 -5l-64 -229h-20l37 234h43z" />
  24. <glyph unicode="(" horiz-adv-x="351" d="M103 114q0 182 81 360t217 281l14 -19q-129 -119 -200.5 -286t-71.5 -338q0 -168 78 -288l-22 -19q-96 111 -96 309z" />
  25. <glyph unicode=")" horiz-adv-x="352" d="M262 446q0 -182 -81 -360t-217 -281l-14 19q129 119 200.5 286t71.5 338q0 168 -78 288l22 19q96 -111 96 -309z" />
  26. <glyph unicode="*" horiz-adv-x="481" d="M255 376l-4 4l39 152l-148 -85l-9 26l1 7l153 69l-126 71l21 26l6 3l110 -82l26 155h30l4 -4l-41 -153l150 86l9 -26l-1 -7l-150 -69l123 -71l-21 -26l-6 -3l-111 84l-25 -157h-30z" />
  27. <glyph unicode="+" d="M521 328h-199l-43 -203h-40l42 203h-210l7 35q147 3 211 3l41 199h42l-42 -198q77 1 199 1l3 -5z" />
  28. <glyph unicode="," horiz-adv-x="207" d="M-40 -177q57 87 84 167q-14 0 -22.5 9t-8.5 23q0 23 17 40.5t39 17.5q30 0 30 -33q0 -36 -39.5 -109t-83.5 -125z" />
  29. <glyph unicode="-" horiz-adv-x="349" d="M41 279l3 35h285l-3 -35h-285z" />
  30. <glyph unicode="." horiz-adv-x="211" d="M104 48q0 -22 -17 -40t-37 -18q-14 0 -23.5 9t-9.5 24q0 22 17.5 39.5t37.5 17.5q14 0 23 -9t9 -23z" />
  31. <glyph unicode="/" horiz-adv-x="349" d="M389 753l6 -8l-346 -747l-29 5l-6 8l346 747z" />
  32. <glyph unicode="0" horiz-adv-x="692" d="M629 458q0 -119 -47.5 -227t-128.5 -174.5t-171 -66.5q-84 0 -131.5 61t-47.5 177q0 118 47.5 226t128.5 174.5t171 66.5q84 0 131.5 -60.5t47.5 -176.5zM147 233q0 -99 36.5 -153t107.5 -54q77 0 145.5 60.5t108.5 159t40 206.5q0 100 -37 153.5t-108 53.5 q-77 0 -145 -60.5t-108 -159t-40 -206.5z" />
  33. <glyph unicode="1" horiz-adv-x="294" d="M209 639h-1l-130 -33l-2 24l179 65l4 -5l-147 -690h-40l104 491q24 111 33 148z" />
  34. <glyph unicode="2" horiz-adv-x="541" d="M0 0l2 43q103 78 178 140.5t146.5 132.5t109 130.5t37.5 108.5t-36 76t-102 28q-84 0 -209 -55l3 36q114 55 221 55q77 0 122 -36t45 -95q0 -46 -31.5 -103t-74.5 -106.5t-114.5 -113.5t-122.5 -104.5t-127 -98.5h225q88 0 162 10l-20 -48h-414z" />
  35. <glyph unicode="3" horiz-adv-x="494" d="M151 640q102 55 201 55q64 0 101.5 -29t37.5 -83q0 -68 -62 -128.5t-171 -98.5q186 -10 186 -139q0 -92 -84 -159.5t-204 -67.5q-82 0 -154 24l13 36q74 -24 150 -24q98 0 166 53.5t68 127.5q0 63 -50.5 91t-128.5 28q-36 0 -67 -7l7 35q128 28 207.5 88.5t79.5 131.5 q0 41 -28 63t-81 22q-78 0 -190 -55z" />
  36. <glyph unicode="4" horiz-adv-x="550" d="M52 235l395 448l42 10l4 -5l-96 -452q74 4 107 9l-20 -48h-95l-42 -197h-40l43 197h-298v38zM92 234v-1q83 2 228 2h22h16l53 247q27 125 33 152h-1z" />
  37. <glyph unicode="5" horiz-adv-x="544" d="M27 14l13 36q69 -24 140 -24q101 0 170.5 62.5t69.5 150.5q0 65 -41.5 97t-108.5 32q-84 0 -135 -20l-8 10l70 327h188q86 0 162 10l-14 -48h-306l-56 -258q60 14 116 14q78 0 127.5 -38.5t49.5 -116.5q0 -105 -85.5 -181.5t-207.5 -76.5q-76 0 -144 24z" />
  38. <glyph unicode="6" horiz-adv-x="592" d="M242 -10q-162 0 -162 204q0 124 55 240t149 188.5t198 72.5q58 0 80 -15l-13 -36q-23 15 -72 15q-112 0 -205.5 -90t-133.5 -263h1q40 42 99.5 65t114.5 23q71 0 112 -39.5t41 -109.5q0 -102 -78.5 -178.5t-185.5 -76.5zM339 358q-58 0 -119 -28t-90 -75q-5 -38 -5 -67 q0 -75 31.5 -118.5t98.5 -43.5q84 0 145.5 63t61.5 147q0 57 -31.5 89.5t-91.5 32.5z" />
  39. <glyph unicode="7" horiz-adv-x="514" d="M148 637l21 48h398l4 -5l-6 -28q-139 -136 -260.5 -312t-168.5 -340h-43q44 156 170 335.5t254 310.5l1 1h-207q-87 0 -163 -10z" />
  40. <glyph unicode="8" horiz-adv-x="539" d="M198 -10q-82 0 -133 36.5t-51 96.5q0 63 57.5 121.5t154.5 98.5v1q-112 64 -112 160q0 78 67.5 134.5t158.5 56.5q73 0 120 -38t47 -100q0 -65 -53.5 -121.5t-141.5 -89.5l-1 -1q59 -28 97 -71t38 -96q0 -75 -71.5 -131.5t-176.5 -56.5zM332 659q-73 0 -124 -42t-51 -103 q0 -91 125 -150q84 34 133 82.5t49 105.5q0 48 -36 77.5t-96 29.5zM256 325q-91 -36 -145 -89.5t-54 -106.5q0 -46 41 -74.5t107 -28.5q84 0 141 44.5t57 103.5q0 48 -38.5 83t-108.5 68z" />
  41. <glyph unicode="9" horiz-adv-x="588" d="M277 270q-76 0 -119 42.5t-43 118.5q0 104 73.5 184t180.5 80q82 0 129 -54t47 -158q0 -84 -31.5 -172t-84 -159t-129 -116.5t-159.5 -45.5q-49 0 -73 8l7 36q24 -8 66 -8q117 0 214 95.5t130 242.5h-1q-37 -46 -93 -70t-114 -24zM360 659q-84 0 -142 -67t-58 -154 q0 -62 33 -97t97 -35q57 0 112 27t91 82q7 36 7 72q0 79 -36.5 125.5t-103.5 46.5z" />
  42. <glyph unicode=":" horiz-adv-x="212" d="M174 375q0 -22 -17 -40t-37 -18q-14 0 -23.5 9t-9.5 24q0 22 17.5 39.5t37.5 17.5q14 0 23 -9t9 -23zM104 48q0 -22 -17 -40t-37 -18q-14 0 -23.5 9t-9.5 24q0 22 17.5 39.5t37.5 17.5q14 0 23 -9t9 -23z" />
  43. <glyph unicode=";" horiz-adv-x="221" d="M183 375q0 -22 -17 -40t-37 -18q-14 0 -23.5 9t-9.5 24q0 22 17.5 39.5t37.5 17.5q14 0 23 -9t9 -23zM-40 -177q57 87 84 167q-14 0 -22.5 9t-8.5 23q0 23 17 40.5t39 17.5q30 0 30 -33q0 -36 -39.5 -109t-83.5 -125z" />
  44. <glyph unicode="&#x3c;" d="M543 558l-10 -45l-397 -180l323 -166l-9 -40q-225 107 -372 190l-2 6l5 27z" />
  45. <glyph unicode="=" d="M540 421h-450l8 35q170 5 450 5l4 -5zM501 237h-450l7 35q172 5 451 5l3 -5z" />
  46. <glyph unicode="&#x3e;" d="M57 127l10 45l397 180l-323 166l9 40q225 -107 372 -190l2 -6l-5 -27z" />
  47. <glyph unicode="?" horiz-adv-x="423" d="M177 209h-28q0 5 3 40q4 26 30.5 53t62 52t70 53t58.5 68t24 86q0 44 -28 71t-78 27q-44 0 -93.5 -22.5t-88.5 -68.5l-21 21q42 50 100 78t116 28q64 0 101 -32t38 -86q0 -44 -18 -84t-45 -67.5t-59 -54.5t-60.5 -46t-48.5 -40.5t-23 -39.5q-2 -14 -2 -28zM165 51 q0 -24 -15 -42.5t-34 -18.5q-27 0 -27 30q0 23 15.5 41.5t33.5 18.5q27 0 27 -29z" />
  48. <glyph unicode="@" horiz-adv-x="1118" d="M820 -163q-138 -92 -304 -92q-190 0 -312 121t-122 312q0 118 49.5 226t131 184.5t188.5 121.5t218 45q186 0 303.5 -114.5t117.5 -284.5q0 -151 -90 -258.5t-217 -107.5q-68 0 -101.5 36t-30.5 89.5t20 115.5h-4q-38 -92 -100 -166.5t-124 -74.5q-40 0 -65.5 35.5 t-25.5 106.5q0 91 39.5 176.5t112 141t156.5 55.5q53 0 103 -15l-56 -228q-5 -21 -8 -35.5t-7 -41t-4 -45.5t4.5 -42t15.5 -37.5t31 -24.5t48 -10q97 0 178.5 94t81.5 234q0 158 -107.5 261.5t-269.5 103.5q-97 0 -194 -39.5t-175 -107.5t-127 -169.5t-49 -215.5 q0 -178 111 -292t292 -114q83 0 146.5 21t131.5 59zM455 26q35 0 75 39.5t72.5 96t57.5 114.5t35 100l20 81q-42 12 -78 12q-94 0 -168 -104.5t-74 -227.5q0 -52 15.5 -81.5t44.5 -29.5z" />
  49. <glyph unicode="A" horiz-adv-x="589" d="M13 0h-41l344 592q37 64 56 100l28 3l4 -5l107 -690h-44l-35 222h-290zM267 437l-104 -179h264l-28 179q-21 139 -22 200h-1q-23 -51 -109 -200z" />
  50. <glyph unicode="B" horiz-adv-x="593" d="M229 0h-150l115 538q17 83 24 147h138q90 0 139.5 -36.5t49.5 -102.5t-44 -118t-111 -69q65 -10 97.5 -47.5t32.5 -91.5q0 -100 -82 -160t-209 -60zM346 650h-86l-60 -279h64q102 0 168.5 47.5t66.5 116.5q0 115 -153 115zM287 336h-94l-65 -301h115q103 0 167.5 49 t64.5 131q0 60 -44 90.5t-144 30.5z" />
  51. <glyph unicode="C" horiz-adv-x="578" d="M498 86l-2 -38q-40 -27 -94 -42.5t-102 -15.5q-95 0 -148 63t-53 180q0 111 43.5 216t127.5 175.5t188 70.5q95 0 159 -45l-18 -42q-56 49 -148 49q-94 0 -166.5 -66.5t-106.5 -159t-34 -188.5q0 -101 43 -158t127 -57q95 0 184 58z" />
  52. <glyph unicode="D" horiz-adv-x="689" d="M629 433q0 -81 -29.5 -158.5t-82 -138.5t-131 -98.5t-169.5 -37.5h-138l115 538q17 83 24 147h147q125 0 194.5 -63t69.5 -189zM351 649h-92l-130 -613h94q84 0 154 34t114.5 89.5t68.5 125.5t24 144q0 110 -56.5 165t-176.5 55z" />
  53. <glyph unicode="E" horiz-adv-x="532" d="M437 39l-8 -39h-350l115 538q17 83 24 147h342l4 -5l-7 -34l-297 4l-63 -292l257 2l-9 -39l-255 2l-62 -288z" />
  54. <glyph unicode="F" horiz-adv-x="502" d="M121 0h-42l115 538q17 83 24 147h342l4 -5l-7 -34l-297 4l-65 -302l257 2l-9 -39l-255 2l4 22z" />
  55. <glyph unicode="G" horiz-adv-x="639" d="M563 288l4 -5l-53 -242q-77 -51 -193 -51q-106 0 -163.5 62.5t-57.5 187.5q0 114 44.5 218t127.5 170.5t182 66.5q94 0 158 -45l-18 -42q-56 49 -147 49q-88 0 -159 -62t-107 -155t-36 -193q0 -219 191 -219q72 0 140 30l15 73q17 83 24 147z" />
  56. <glyph unicode="H" horiz-adv-x="713" d="M121 0h-42l114 538q19 93 25 147l46 10l4 -5l-71 -331h372l38 179q18 80 25 147l46 10l4 -5l-147 -690h-42l68 323h-371z" />
  57. <glyph unicode="I" horiz-adv-x="299" d="M121 0h-42l114 538q18 80 25 147l46 10l4 -5z" />
  58. <glyph unicode="J" horiz-adv-x="269" d="M-66 -182l-10 26q104 51 135 199l105 495q17 80 24 147l46 10l4 -5l-137 -647q-35 -166 -167 -225z" />
  59. <glyph unicode="K" horiz-adv-x="598" d="M194 538q17 83 24 147l44 10l4 -5l-70 -331h109q102 112 308 336l25 -13l4 -5l-305 -333l183 -344l-43 -10l-177 333h-112l-69 -323h-40z" />
  60. <glyph unicode="L" horiz-adv-x="504" d="M121 0h-42l115 539q17 84 24 146l46 10l4 -5zM429 39l-8 -39h-300l8 35z" />
  61. <glyph unicode="M" horiz-adv-x="826" d="M765 695l4 -5l-56 -690h-42l22 271q17 224 32 341h-1q-43 -84 -187 -341l-154 -271h-46l-37 271q-38 270 -44 341h-1q-18 -61 -114 -341l-94 -271h-40l239 691l36 4l60 -424q22 -148 27 -230h1q55 106 126 230l237 420z" />
  62. <glyph unicode="N" horiz-adv-x="728" d="M395 384q14 -34 38.5 -91.5t36.5 -87t27 -72.5t25 -82h1q16 95 99 487q18 80 25 147l46 10l4 -5l-147 -690h-45q-22 52 -65 155.5t-64 155.5q-10 24 -30.5 73.5t-29 70t-22 56t-23 64t-18.5 59.5h-1q-18 -108 -50 -252l-81 -382h-42l114 538q18 80 25 147l48 10 q35 -83 129 -311z" />
  63. <glyph unicode="O" horiz-adv-x="689" d="M630 448q0 -111 -42.5 -215.5t-122 -173.5t-174.5 -69q-90 0 -141.5 62.5t-51.5 178.5q0 111 43.5 217t123.5 176.5t174 70.5q89 0 140 -64.5t51 -182.5zM143 240q0 -100 41 -156t118 -56q83 0 149.5 64t100 158.5t33.5 193.5q0 101 -39 157t-115 56q-82 0 -150 -65 t-103 -160t-35 -192z" />
  64. <glyph unicode="P" horiz-adv-x="538" d="M121 0h-42l115 538q17 83 24 147h140q91 0 142 -42t51 -116q0 -116 -85 -188t-212 -72h-76zM348 650h-88l-75 -348h85q105 0 170.5 61.5t65.5 159.5q0 59 -39 93t-119 34z" />
  65. <glyph unicode="Q" horiz-adv-x="666" d="M740 -125q0 -38 -92 -38q-95 0 -199 42.5t-189 112.5q-76 11 -119 72t-43 167q0 111 43.5 217t123.5 176.5t174 70.5q89 0 140 -64.5t51 -182.5q0 -106 -39 -207t-113 -171t-164 -79q62 -43 156 -76t180 -33q45 0 84 10q6 -6 6 -17zM302 28q83 0 149.5 64t100 158.5 t33.5 193.5q0 101 -39 157t-115 56q-82 0 -150 -65t-103 -160t-35 -192q0 -100 41 -156t118 -56z" />
  66. <glyph unicode="R" horiz-adv-x="571" d="M121 0h-42l115 538q17 83 24 147h140q91 0 142.5 -42.5t51.5 -115.5q0 -85 -54.5 -146.5t-143.5 -82.5l134 -298l-41 -10q-23 49 -67 148t-67 149h-131zM348 650h-88l-70 -328h85q104 0 167.5 54.5t63.5 146.5q0 58 -39 92.5t-119 34.5z" />
  67. <glyph unicode="S" horiz-adv-x="493" d="M417 190q0 -87 -69 -143.5t-177 -56.5q-92 0 -158 35l17 43q60 -40 150 -40q83 0 138 45t55 111q0 28 -9.5 50t-31.5 41t-36.5 28.5t-44.5 27.5l-37.5 22.5t-33.5 24t-31 31t-18.5 37.5t-8.5 49q0 84 68.5 142t174.5 58q90 0 146 -33l-17 -43q-53 38 -136 38 q-82 0 -136.5 -43.5t-54.5 -107.5q0 -33 19 -61t39 -42t59 -37q2 -1 3.5 -2t4 -2.5t4.5 -2.5q27 -16 43.5 -28t37 -33t30.5 -48t10 -60z" />
  68. <glyph unicode="T" horiz-adv-x="491" d="M214 0h-42l139 650q-95 0 -217 -5l12 40h465l-6 -40q-117 5 -212 5z" />
  69. <glyph unicode="U" horiz-adv-x="634" d="M87 157q0 41 45.5 245.5t50.5 284.5l54 8v-1q-22 -101 -53 -246q-55 -254 -55 -281q0 -66 40.5 -101.5t106.5 -35.5q78 0 139 49t80 138q12 54 25.5 118t20 95t14.5 69.5t11.5 56t7.5 39t5.5 34.5t3 27t2.5 31l54 8l-101 -475q-24 -110 -100.5 -170t-175.5 -60 q-79 0 -127 43t-48 124z" />
  70. <glyph unicode="V" horiz-adv-x="586" d="M228 -5l-109 696l43 4l67 -427q23 -147 23 -219q32 70 133 244l232 402l33 -5l4 -5l-401 -690h-25z" />
  71. <glyph unicode="W" horiz-adv-x="956" d="M197 -5l-78 695l41 5l48 -428q17 -141 14 -215q22 57 117 238l215 401l39 4l48 -428q17 -141 14 -215q26 68 116 235l218 408l31 -5l4 -5l-369 -690h-25l-55 492q-11 105 -13 151h-1q-26 -58 -77 -151l-262 -492h-25z" />
  72. <glyph unicode="X" horiz-adv-x="541" d="M-22 0v5l287 343l-142 337l44 10l134 -319h1l265 319l37 -5v-5l-286 -338l140 -347h-47l-129 319h-1l-263 -319h-40z" />
  73. <glyph unicode="Y" horiz-adv-x="524" d="M243 256l-124 435l43 4l74 -260q2 -9 12 -42.5t15.5 -59t7.5 -48.5h1q16 30 101 152l182 258l33 -5l4 -5l-308 -433l-54 -252h-42z" />
  74. <glyph unicode="Z" horiz-adv-x="507" d="M-16 0l-1 25l522 625l-379 -3l11 38h417l4 -25l-522 -625l397 4l-11 -39h-438z" />
  75. <glyph unicode="[" horiz-adv-x="298" d="M188 755h193l-8 -36h-151l-186 -878h151l-8 -36h-193l194 914z" />
  76. <glyph unicode="\" horiz-adv-x="349" d="M194 -2l-28 747l10 8l31 5l28 -747l-10 -8z" />
  77. <glyph unicode="]" horiz-adv-x="298" d="M124 -195h-193l8 36h151l186 878h-151l8 36h193l-194 -914z" />
  78. <glyph unicode="^" horiz-adv-x="525" d="M127 210h-45l213 335h56l76 -335h-44l-68 299z" />
  79. <glyph unicode="_" horiz-adv-x="340" d="M-92 -183l8 35h340l-8 -35h-340z" />
  80. <glyph unicode="`" horiz-adv-x="341" d="M283 580q-91 66 -130 151l5 8l42 16q26 -71 96 -162z" />
  81. <glyph unicode="a" horiz-adv-x="506" d="M52 132q0 91 39.5 176.5t112 141t156.5 55.5q53 0 103 -15l-42 -173q-17 -72 -25 -108.5t-15.5 -95t-7.5 -113.5h-40q0 101 29 232q-112 -242 -219 -242q-40 0 -65.5 35.5t-25.5 106.5zM95 137q0 -52 15.5 -81.5t44.5 -29.5q45 0 100.5 74.5t93 158.5t52.5 143 q3 10 7.5 29.5t6.5 25.5q-42 12 -78 12q-94 0 -168 -104.5t-74 -227.5z" />
  82. <glyph unicode="b" horiz-adv-x="512" d="M366 505q43 0 68.5 -35t25.5 -107q0 -141 -90.5 -257t-218.5 -116q-58 0 -104 15q49 206 85 375l49 229l8 136l49 10q0 -53 -16 -145t-30 -154t-45 -193q43 102 99 172t120 70zM357 469q-45 0 -100 -69.5t-94.5 -154t-55.5 -149.5q-1 -6 -3.5 -18t-4.5 -21.5t-4 -17.5 q40 -13 80 -13q94 0 168 104.5t74 227.5q0 52 -15.5 81.5t-44.5 29.5z" />
  83. <glyph unicode="c" horiz-adv-x="444" d="M366 119l18 -13q-74 -116 -181 -116q-66 0 -105 47t-39 131q0 130 82 233.5t186 103.5q57 0 101 -42l-17 -41q-40 47 -94 47q-81 0 -148 -93.5t-67 -203.5q0 -66 28.5 -106t82.5 -40q79 0 153 93z" />
  84. <glyph unicode="d" horiz-adv-x="509" d="M376 0h-40q0 77 32 238q-106 -248 -225 -248q-40 0 -65.5 35.5t-25.5 106.5q0 91 39.5 176.5t112 141t156.5 55.5q27 0 63 -6l23 110l8 136l49 10q0 -94 -63.5 -371t-63.5 -384zM95 137q0 -52 15.5 -81.5t44.5 -29.5q44 0 99.5 71.5t93.5 155.5t52 143l14 61 q-42 12 -77 12q-94 0 -168 -104.5t-74 -227.5z" />
  85. <glyph unicode="e" horiz-adv-x="447" d="M364 119l18 -13q-30 -54 -79 -85t-100 -31q-64 0 -104 47.5t-40 131.5q0 78 33.5 156t91.5 129t123 51q47 0 76 -27.5t29 -74.5q0 -70 -71 -120t-234 -58q-5 -30 -5 -53q0 -66 29 -106t80 -40q78 0 153 93zM298 469q-60 0 -111.5 -64.5t-73.5 -150.5q140 9 198 53t58 95 q0 30 -19.5 48.5t-51.5 18.5z" />
  86. <glyph unicode="f" horiz-adv-x="318" d="M-11 -203l-15 21q67 76 90 182l98 462l-76 2l5 24l78 7q3 14 7 37t6.5 38.5t4.5 23.5q16 76 60.5 118.5t113.5 42.5q56 0 99 -26l-21 -40q-36 30 -89 30q-52 0 -81 -32t-43 -96q-11 -53 -18 -96h136l4 -5l-9 -31l-137 3l-98 -462q-24 -116 -115 -203z" />
  87. <glyph unicode="g" horiz-adv-x="415" d="M120 -255q-76 0 -117.5 32.5t-41.5 85.5q0 69 78 118l14 -16q-49 -47 -49 -94q0 -39 33 -64.5t91 -25.5q69 0 113 32.5t44 74.5q0 25 -19.5 44.5t-65.5 42.5q-3 2 -14 7t-14.5 7t-12.5 6.5t-12.5 7l-10.5 7.5t-9.5 8.5t-6 8.5t-5 10.5t-1.5 11.5q0 39 82 101v1 q-8 -1 -9 -1q-58 0 -87.5 35t-29.5 94q0 91 58.5 158.5t142.5 67.5q107 0 151 10q5 -8 5 -21q0 -26 -37 -26q-23 0 -73 12v-1q48 -31 48 -105q0 -53 -21.5 -99.5t-52 -77.5t-61 -56t-52 -45t-21.5 -35q0 -4 1 -7.5t4 -7t5.5 -6.5t7 -6l7.5 -5t8.5 -5t7.5 -4l8 -4t7 -3 q61 -29 88 -56t27 -61q0 -57 -56.5 -104t-151.5 -47zM325 370q0 47 -20 74t-55 27q-53 0 -96.5 -59.5t-43.5 -129.5q0 -47 21 -72t57 -25q57 0 97 58t40 127z" />
  88. <glyph unicode="h" horiz-adv-x="537" d="M111 0h-40q0 96 61 380l49 229l8 136l49 10q0 -98 -65 -381q-5 -19 -7 -29h2q35 78 89.5 119t110.5 41q45 0 69.5 -25.5t24.5 -70.5q0 -26 -4.5 -50.5t-29.5 -140.5q-27 -127 -27 -218h-40q0 86 34 238q27 124 27 162q0 69 -65 69q-68 0 -124 -66t-87.5 -172.5 t-34.5 -230.5z" />
  89. <glyph unicode="i" horiz-adv-x="241" d="M227 682q0 -24 -15 -42.5t-34 -18.5q-27 0 -27 30q0 23 15.5 41.5t33.5 18.5q27 0 27 -29zM111 0h-40q0 96 37 267l20 92l8 136l49 10q0 -73 -37 -248t-37 -257z" />
  90. <glyph unicode="j" horiz-adv-x="218" d="M219 682q0 -24 -15 -42.5t-34 -18.5q-27 0 -27 30q0 23 15.5 41.5t33.5 18.5q27 0 27 -29zM-70 -255l-15 21q91 52 119 182l88 411l8 136l49 10q0 -19 -1 -36.5t-5.5 -45.5t-8.5 -50.5t-14 -72t-18 -87t-25.5 -119t-31.5 -146.5q-29 -132 -145 -203z" />
  91. <glyph unicode="k" horiz-adv-x="474" d="M449 429q0 -60 -58 -119.5t-139 -100.5q76 -132 149 -209h-52q-73 85 -144 225q201 102 201 196q0 48 -47 48q-57 0 -114.5 -74t-94 -183t-39.5 -212h-40q0 96 61 380l49 229l8 136l49 10q0 -34 -4.5 -75.5t-15 -95t-19 -91.5t-24.5 -107t-23 -100h2q38 104 98 161.5 t121 57.5q37 0 56.5 -21t19.5 -55z" />
  92. <glyph unicode="l" horiz-adv-x="240" d="M111 0h-40q0 96 61 380l49 229l8 136l49 10q0 -94 -63.5 -371t-63.5 -384z" />
  93. <glyph unicode="m" horiz-adv-x="807" d="M165 345q34 77 86.5 118.5t107.5 41.5q56 0 79 -42t8 -113l-1 -5h2q33 77 85 118.5t107 41.5q56 0 79 -42t8 -113l-42 -199q-13 -59 -13 -151h-40q0 80 42 287q21 96 11 139t-58 43q-65 0 -119.5 -67t-84.5 -174t-31 -228h-40q0 80 42 287q21 97 11 139.5t-58 42.5 q-69 0 -124 -75t-81.5 -180t-29.5 -214h-40q0 59 11.5 130.5t45.5 228.5l8 136l49 10q0 -65 -22 -160h2z" />
  94. <glyph unicode="n" horiz-adv-x="537" d="M111 0h-40q0 22 1.5 45.5t3.5 41.5t6.5 45.5t6.5 41t9 46.5t9 43t10.5 49t10.5 47l8 136l49 10q0 -67 -22 -160h2q36 78 91.5 119t112.5 41q45 0 69 -25t24 -69q0 -41 -32 -185q-18 -82 -23.5 -124.5t-5.5 -101.5h-40q0 73 34 245q22 112 22 150q0 74 -63 74 q-64 0 -119 -64t-88 -172t-36 -233z" />
  95. <glyph unicode="o" horiz-adv-x="494" d="M436 337q0 -82 -30 -160.5t-88.5 -132.5t-129.5 -54q-62 0 -95.5 43t-33.5 126t30.5 162t88.5 131.5t128 52.5q62 0 96 -42.5t34 -125.5zM102 164q0 -138 97 -138q57 0 103 48.5t68.5 117.5t22.5 139q0 138 -97 138q-57 0 -103 -48.5t-68.5 -117.5t-22.5 -139z" />
  96. <glyph unicode="p" horiz-adv-x="507" d="M147 -10q-28 0 -62 6q-33 -155 -33 -241h-40q0 91 61 375l49 229l8 136l49 10q0 -75 -32 -230q100 230 217 230q40 0 65.5 -35.5t25.5 -106.5q0 -91 -39.5 -176.5t-112 -141t-156.5 -55.5zM352 469q-43 0 -97.5 -69.5t-92.5 -152.5t-54 -145q-11 -49 -14 -64 q40 -12 76 -12q94 0 168 104.5t74 227.5q0 52 -15.5 81.5t-44.5 29.5z" />
  97. <glyph unicode="q" horiz-adv-x="501" d="M143 -10q-40 0 -65.5 35.5t-25.5 106.5q0 91 39.5 176.5t112 141t156.5 55.5q53 0 103 -15l-102 -443q-43 -189 -43 -292h-40q0 111 65 391l19 81q-20 -43 -42.5 -81t-51 -75t-61 -59t-64.5 -22zM95 137q0 -52 15.5 -81.5t44.5 -29.5q34 0 75 42t74.5 102.5t59.5 121 t37 103.5l14 62q-41 12 -78 12q-94 0 -168 -104.5t-74 -227.5z" />
  98. <glyph unicode="r" horiz-adv-x="368" d="M111 0h-40q0 96 37 267l20 92l8 136l49 10q0 -67 -25 -180h2q36 92 84 136t101 44q38 0 62 -19l-25 -34q-23 14 -49 14q-58 0 -110.5 -74.5t-82 -181.5t-31.5 -210z" />
  99. <glyph unicode="s" horiz-adv-x="425" d="M376 479l-17 -41q-48 31 -103 31t-89.5 -28t-34.5 -71q0 -31 21 -54t51.5 -38.5t61 -32t51.5 -44t21 -65.5q0 -62 -51.5 -104t-130.5 -42q-73 0 -127 32l17 41q50 -37 120 -37q53 0 90 29.5t37 72.5q0 30 -21.5 52.5t-51.5 37.5t-60.5 31t-52 43.5t-21.5 65.5 q0 64 53.5 105.5t128.5 41.5q58 0 108 -26z" />
  100. <glyph unicode="t" horiz-adv-x="338" d="M330 462h-138q-70 -327 -72 -354q-1 -7 -1 -15q0 -67 62 -67q43 0 86 25l2 -33q-49 -28 -104 -28q-89 0 -89 88q0 28 42 223q20 96 34 161h-76l6 26l77 7l33 112l30 4l4 -5l-27 -111h135l4 -5z" />
  101. <glyph unicode="u" horiz-adv-x="510" d="M76 145l45 214l8 136l49 10q0 -34 -5 -74.5t-10 -68.5t-15.5 -79t-15.5 -75q-9 -50 -12 -79.5t0 -55t17.5 -36.5t40.5 -11q64 0 114.5 62t81.5 165q29 129 34 191q3 26 3 51l40 10q0 -35 -5.5 -79t-12 -77t-18 -86.5t-16.5 -80.5q-22 -114 -22 -182h-40q0 61 13 137 q-33 -71 -83 -109t-101 -38q-56 0 -80.5 42t-9.5 113z" />
  102. <glyph unicode="v" horiz-adv-x="398" d="M126 0q0 261 -58 495l40 10q59 -211 59 -445h1q180 263 200 441q9 4 19 4q18 0 18 -18q0 -68 -72.5 -216.5t-168.5 -270.5h-38z" />
  103. <glyph unicode="w" horiz-adv-x="606" d="M595 505q18 0 18 -18q0 -70 -64.5 -217t-154.5 -270h-40q4 207 -14 417h-1q-20 -92 -75 -206t-124 -211h-40q5 269 -32 495l41 7q38 -209 33 -447h1q156 242 178 440h44q36 -206 31 -440h1q72 110 120 228t59 218q9 4 19 4z" />
  104. <glyph unicode="x" horiz-adv-x="419" d="M4 0q70 147 182 254q-39 166 -83 241l40 10q45 -76 80 -222q124 111 151 217q6 5 16 5q20 0 20 -19q0 -38 -54.5 -107.5t-124.5 -130.5q44 -177 85 -248h-46q-39 67 -76 218q-95 -94 -150 -218h-40z" />
  105. <glyph unicode="y" horiz-adv-x="398" d="M387 505q18 0 18 -18q0 -61 -59 -185.5t-140.5 -247.5t-176 -216t-157.5 -93q-37 0 -37 27q0 13 8 23q21 -3 37 -3q96 0 246 210q0 261 -58 493l40 10q59 -217 59 -445h1q180 263 200 441q9 4 19 4z" />
  106. <glyph unicode="z" horiz-adv-x="392" d="M-1 -10l-18 23q135 153 208.5 243.5t128.5 174.5q-86 38 -154 38q-57 0 -97 -58l-21 8q23 50 51 68t69 18q71 0 167 -50q25 43 29 50q28 0 28 -17q0 -30 -105 -166.5t-235 -278.5q10 3 25 3q22 0 75.5 -10t73.5 -10q54 0 101 61l21 -8q-27 -52 -56.5 -70.5t-72.5 -18.5 q-31 0 -90.5 10t-82.5 10q-26 0 -45 -20z" />
  107. <glyph unicode="{" horiz-adv-x="290" d="M137 174q0 36 -21 60t-62 31l8 39q65 3 101.5 57t36.5 154q0 10 -0.5 30.5t-0.5 28.5q0 105 45 143t130 38l-3 -30q-75 0 -104 -34t-29 -123v-55q0 -108 -36 -164t-90 -69q65 -27 65 -98q0 -51 -45 -146.5t-45 -136.5q0 -34 22 -49t73 -15l-10 -30q-67 0 -96 18t-29 63 q0 49 45 147.5t45 140.5z" />
  108. <glyph unicode="|" horiz-adv-x="321" d="M41 -255l-6 7l213 1000l33 3l6 -7l-213 -1000z" />
  109. <glyph unicode="}" horiz-adv-x="289" d="M166 386q0 -36 21 -60t62 -31l-8 -39q-65 -3 -101.5 -57t-36.5 -154q0 -10 0.5 -30.5t0.5 -28.5q0 -105 -45 -143t-130 -38l3 30q75 0 104 34t29 123v55q0 108 36 164t90 69q-65 27 -65 98q0 51 45 146.5t45 136.5q0 34 -22 49t-73 15l10 30q67 0 96 -18t29 -63 q0 -49 -45 -147.5t-45 -140.5z" />
  110. <glyph unicode="~" d="M402 227q-25 0 -127 38t-112 38q-18 0 -86 -75q-3 -3 -4.5 -5t-4 -4.5l-4.5 -4.5l-22 18q86 111 131 111q25 0 126 -38t112 -38q3 0 7 1.5t9 4.5t9 6.5t10.5 9t11.5 10t12.5 12.5t12.5 13.5t14 15t15 15.5l21 -17q-86 -111 -131 -111z" />
  111. <glyph unicode="&#xa1;" horiz-adv-x="257" d="M138 444q0 24 15 42.5t34 18.5q27 0 27 -30q0 -23 -15.5 -41.5t-33.5 -18.5q-27 0 -27 29zM128 305h31q-27 -140 -60 -304t-38 -191l-44 -10l-4 5q57 249 115 500z" />
  112. <glyph unicode="&#xa2;" horiz-adv-x="448" d="M172 -140l-6 8l26 123q-59 4 -94 51t-35 137q0 139 79 245.5t186 114.5l30 137l22 3l7 -8l-29 -133q50 -5 81 -41l-17 -41q-33 47 -91 47q-90 0 -156.5 -94.5t-66.5 -222.5q0 -78 27.5 -119t79.5 -41q85 0 155 93l18 -13q-68 -106 -166 -115l-27 -128z" />
  113. <glyph unicode="&#xa3;" horiz-adv-x="506" d="M177 298l-109 2l7 27l112 7q47 173 63 213q44 116 116 140q22 7 48 7q62 0 95 -26l-23 -47q-33 37 -80 37q-63 0 -96.5 -65.5t-82.5 -258.5h182l4 -5l-13 -31h-182l-16 -59q-43 -163 -91 -215q21 -9 87 -44t117 -54t94 -19q45 0 68 14l-23 -48q-18 -10 -58 -10 q-46 0 -98 23t-117.5 62t-97.5 54q-21 -13 -45 -13q-40 0 -37 27q2 28 40 28q13 0 38 -7q25 22 43 70t43 145z" />
  114. <glyph unicode="&#xa4;" horiz-adv-x="577" d="M442 48l-68 90q-60 -44 -131 -44q-60 0 -99 34l-95 -77l-18 23l94 78q-21 31 -21 77q0 91 76 159l-62 81l25 21q9 -11 31.5 -39.5t33.5 -41.5q56 37 120 37q67 0 105 -41l102 85l19 -23l-104 -86q17 -32 17 -71q0 -83 -65 -148q58 -71 69 -91v-4zM317 414 q-70 0 -121.5 -52.5t-51.5 -122.5q0 -49 28.5 -81t83.5 -32q71 0 121 52t50 123q0 52 -29.5 82.5t-80.5 30.5z" />
  115. <glyph unicode="&#xa5;" horiz-adv-x="542" d="M47 134l7 33h179l21 100h-179l7 33h179l-142 391l45 4l85 -237q26 -67 41 -124h1q16 23 33 44.5t35.5 45t28.5 36.5l183 235l35 -5l4 -5l-305 -385h177l-7 -33h-179l-21 -100h179l-7 -33h-179l-29 -134h-42l29 134h-179z" />
  116. <glyph unicode="&#xa6;" horiz-adv-x="321" d="M208 377l-24 -3l-15 7l79 371l33 3l6 -7zM74 -252l-23 -3l-16 7l79 371l34 3l5 -7z" />
  117. <glyph unicode="&#xa7;" horiz-adv-x="532" d="M415 629q-61 0 -100 -39t-39 -101q0 -46 25 -96t54.5 -88.5t54.5 -94.5t25 -111q0 -114 -89.5 -191.5t-226.5 -77.5q-76 0 -117 23l25 69q31 -26 86 -26q67 0 109.5 41t42.5 104q0 37 -16.5 75t-40 72t-47.5 69t-40.5 79t-16.5 90q0 113 88.5 191t218.5 78q73 0 114 -23 l-25 -69q-31 26 -85 26zM119 -138q125 0 198.5 67t73.5 160q0 50 -25.5 103.5t-55.5 92t-55.5 89t-25.5 96.5q0 73 53.5 129.5t136.5 59.5l1 4q-125 0 -198.5 -66.5t-73.5 -160.5q0 -51 25.5 -104.5t55.5 -91.5t55.5 -88.5t25.5 -96.5q0 -73 -53.5 -129.5t-136.5 -59.5z" />
  118. <glyph unicode="&#xa8;" horiz-adv-x="360" d="M210 678q0 -24 -14.5 -43t-33.5 -19q-26 0 -26 30q0 22 15.5 41t33.5 19q25 0 25 -28zM398 678q0 -24 -14.5 -43t-33.5 -19q-26 0 -26 30q0 22 15.5 41t33.5 19q25 0 25 -28z" />
  119. <glyph unicode="&#xa9;" horiz-adv-x="692" d="M283 -36q-103 0 -166.5 62.5t-63.5 160.5q0 133 108.5 241t246.5 108q102 0 166.5 -63t64.5 -162q0 -132 -108.5 -239.5t-247.5 -107.5zM290 0q121 0 216.5 93t95.5 208q0 86 -57 142.5t-146 56.5q-120 0 -214.5 -94t-94.5 -211q0 -86 55.5 -140.5t144.5 -54.5zM459 379 l-18 -33q-27 31 -68 31q-50 0 -85 -43t-35 -106q0 -45 19 -71t54 -26q53 0 99 56l16 -12q-24 -35 -59 -55t-71 -20q-44 0 -70 30.5t-26 86.5q0 79 49.5 135t117.5 56q50 0 77 -29z" />
  120. <glyph unicode="&#xaa;" horiz-adv-x="419" d="M92 397q0 109 73.5 198t178.5 89q45 0 87 -13l-32 -135q-15 -64 -20 -88t-11 -70t-6 -88h-35q-1 72 20 174q-89 -182 -177 -182q-34 0 -56 29t-22 86zM130 402q0 -88 50 -88q37 0 81.5 56t75 121t43.5 114q6 26 9 40q-30 9 -61 9q-78 0 -138 -79.5t-60 -172.5z" />
  121. <glyph unicode="&#xab;" horiz-adv-x="439" d="M68 287l3 12q82 65 208 197l11 -8q-75 -107 -165 -195q54 -93 82 -195l-14 -8q-77 142 -125 197zM228 287l3 12q82 65 208 197l11 -8q-75 -107 -165 -195q54 -93 82 -195l-14 -8q-77 142 -125 197z" />
  122. <glyph unicode="&#xac;" horiz-adv-x="520" d="M482 305l-46 -209h-40l38 177h-395l7 35q163 5 430 5z" />
  123. <glyph unicode="&#xae;" horiz-adv-x="693" d="M283 -36q-102 0 -165.5 63t-63.5 162q0 87 50 167.5t132.5 130t172.5 49.5q103 0 167 -64t64 -162q0 -86 -50 -166.5t-133.5 -130t-173.5 -49.5zM292 0q121 0 216 93t95 208q0 86 -57 142.5t-146 56.5q-120 0 -214.5 -94t-94.5 -211q0 -87 56.5 -141t144.5 -54zM260 92 h-32l49 229q14 64 15 100h97q91 0 91 -79q0 -42 -28.5 -74.5t-70.5 -39.5l43 -136l-36 -5q-7 21 -21.5 72.5t-17.5 61.5h-62zM384 390h-61l-29 -138h59q39 0 64.5 25t25.5 61q0 24 -15.5 38t-43.5 14z" />
  124. <glyph unicode="&#xaf;" horiz-adv-x="324" d="M135 646l7 34h264l-7 -34h-264z" />
  125. <glyph unicode="&#xb0;" horiz-adv-x="331" d="M173 310q-39 0 -64 23.5t-25 63.5q0 57 46 102.5t104 45.5q40 0 64.5 -23.5t24.5 -62.5q0 -57 -46.5 -103t-103.5 -46zM223 510q-39 0 -69.5 -31.5t-30.5 -70.5q0 -29 16.5 -46t44.5 -17q39 0 69.5 31.5t30.5 71.5q0 30 -17 46t-44 16z" />
  126. <glyph unicode="&#xb1;" horiz-adv-x="569" d="M553 421h-184l-35 -166h-40l34 166h-189l7 35q129 3 190 3l34 166h42l-35 -165q72 1 184 1l3 -5zM530 98h-450l7 35q172 5 451 5l3 -5z" />
  127. <glyph unicode="&#xb2;" horiz-adv-x="359" d="M115 352l2 33q68 41 109 68.5t87.5 65t68.5 73t22 70.5t-22.5 54.5t-61.5 19.5q-66 0 -134 -45l3 31q27 20 67.5 32t76.5 12q50 0 81.5 -25.5t31.5 -69.5q0 -40 -25 -80.5t-71 -78.5t-89.5 -66.5t-101.5 -61.5h135q54 0 105 6l-14 -38h-270z" />
  128. <glyph unicode="&#xb3;" horiz-adv-x="346" d="M205 733q56 33 127 33q44 0 72 -19t28 -52q0 -43 -42.5 -79.5t-107.5 -55.5q57 0 90.5 -22t33.5 -62q0 -55 -55 -93.5t-135 -38.5q-54 0 -100 14l10 29q46 -14 94 -14q61 0 103 28t42 68q0 69 -114 69q-25 0 -45 -4l7 29q81 16 129 49t48 74q0 23 -19 36.5t-54 13.5 q-57 0 -114 -32z" />
  129. <glyph unicode="&#xb4;" horiz-adv-x="237" d="M271 736l1 -8q-79 -87 -194 -151l-7 13q114 96 164 162z" />
  130. <glyph unicode="&#xb6;" horiz-adv-x="604" d="M164 -131q177 0 225 227l100 469l18 85h-74l-89 -420h-31q-13 0 -26.5 1t-44.5 10.5t-53.5 26t-40.5 53t-18 85.5q0 115 82.5 197t201.5 82h142l-25 -120l-102 -480q-26 -123 -95 -189.5t-170 -66.5q-73 0 -142 26l13 40q69 -26 129 -26z" />
  131. <glyph unicode="&#xb7;" horiz-adv-x="283" d="M193 298q0 -22 -17 -40t-37 -18q-14 0 -23.5 9t-9.5 24q0 22 17.5 39.5t37.5 17.5q14 0 23 -9t9 -23z" />
  132. <glyph unicode="&#xb8;" horiz-adv-x="300" d="M142 -115q0 -37 -45 -63.5t-99 -33.5l-1 22q102 23 102 66q0 27 -55 33l-5 11l44 81l29 -1l-34 -62q64 -10 64 -53z" />
  133. <glyph unicode="&#xb9;" horiz-adv-x="227" d="M254 722h-1l-81 -17l-2 22l126 39l3 -4l-87 -410h-38l60 283q9 44 20 87z" />
  134. <glyph unicode="&#xba;" horiz-adv-x="415" d="M419 546q0 -99 -59 -181.5t-149 -82.5q-55 0 -84.5 36t-29.5 103q0 100 59 181.5t148 81.5q56 0 85.5 -35.5t29.5 -102.5zM135 424q0 -112 85 -112q72 0 116.5 73t44.5 158q0 111 -85 111q-72 0 -116.5 -73t-44.5 -157z" />
  135. <glyph unicode="&#xbb;" horiz-adv-x="439" d="M390 299l-3 -12q-82 -65 -208 -197l-11 8q75 107 165 195q-54 93 -82 195l14 8q77 -142 125 -197zM230 299l-3 -12q-82 -65 -208 -197l-11 8q75 107 165 195q-54 93 -82 195l14 8q77 -142 125 -197z" />
  136. <glyph unicode="&#xbc;" horiz-adv-x="787" d="M271 662h-1l-81 -17l-2 22l126 39l3 -4l-87 -410h-38l60 283q9 44 20 87zM732 700l-576 -710h-45l575 710h46zM434 132l247 266l41 6l3 -4l-56 -266q46 2 68 5l-15 -36h-60l-24 -113h-37l25 113h-192v29zM469 133v-1q49 1 142 1h20h1l29 133q5 24 11 53t10 44h-1z" />
  137. <glyph unicode="&#xbd;" horiz-adv-x="849" d="M271 662h-1l-81 -17l-2 22l126 39l3 -4l-87 -410h-38l60 283q9 44 20 87zM744 700l-576 -710h-45l575 710h46zM498 -10l2 33q68 41 109 68.5t87.5 65t68.5 73t22 70.5t-22.5 54.5t-61.5 19.5q-67 0 -134 -45l3 31q27 20 67.5 32t76.5 12q50 0 81.5 -25.5t31.5 -69.5 q0 -40 -25 -80.5t-71 -78.5t-89.5 -66.5t-101.5 -61.5h135q54 0 105 6l-14 -38h-270z" />
  138. <glyph unicode="&#xbe;" horiz-adv-x="926" d="M222 671q56 33 127 33q44 0 72 -19t28 -52q0 -43 -42.5 -79.5t-107.5 -55.5q57 0 90.5 -22t33.5 -62q0 -55 -55 -93.5t-135 -38.5q-54 0 -100 14l10 29q46 -14 94 -14q61 0 103 28t42 68q0 69 -114 69q-25 0 -45 -4l7 29q81 16 129 49t48 74q0 23 -19 36.5t-54 13.5 q-57 0 -114 -32zM864 700l-576 -710h-45l575 710h46zM573 132l247 266l41 6l3 -4l-56 -266q46 2 68 5l-15 -36h-60l-24 -113h-37l25 113h-192v29zM608 133v-1q49 1 142 1h20h1l29 133q5 24 11 53t10 44h-1z" />
  139. <glyph unicode="&#xbf;" horiz-adv-x="422" d="M258 445q0 24 15 42.5t34 18.5q27 0 27 -30q0 -23 -15.5 -41.5t-33.5 -18.5q-27 0 -27 29zM246 287h28q0 -5 -3 -40q-4 -26 -30.5 -53t-62 -52t-70 -53t-58.5 -68t-24 -86q0 -44 28 -71t78 -27q44 0 93.5 22.5t88.5 68.5l21 -21q-42 -50 -100 -78t-116 -28q-64 0 -101 32 t-38 86q0 44 18 84t45 67.5t59 54.5t60.5 46t48.5 40.5t23 39.5q2 14 2 28z" />
  140. <glyph unicode="&#xc0;" horiz-adv-x="589" d="M518 779q-126 20 -207 78l1 8l36 31q64 -54 181 -100zM13 0h-41l344 592q37 64 56 100l28 3l4 -5l107 -690h-44l-35 222h-290zM267 437l-104 -179h264l-28 179q-21 139 -22 200h-1q-23 -51 -109 -200z" />
  141. <glyph unicode="&#xc1;" horiz-adv-x="589" d="M544 865l-3 -8q-108 -58 -241 -78l-3 17q144 50 223 100zM13 0h-41l344 592q37 64 56 100l28 3l4 -5l107 -690h-44l-35 222h-290zM267 437l-104 -179h264l-28 179q-21 139 -22 200h-1q-23 -51 -109 -200z" />
  142. <glyph unicode="&#xc2;" horiz-adv-x="589" d="M290 770l-10 13q81 62 138 118l44 5q47 -70 99 -123l-16 -13q-70 55 -113 97q-69 -53 -142 -97zM13 0h-41l344 592q37 64 56 100l28 3l4 -5l107 -690h-44l-35 222h-290zM267 437l-104 -179h264l-28 179q-21 139 -22 200h-1q-23 -51 -109 -200z" />
  143. <glyph unicode="&#xc3;" horiz-adv-x="589" d="M364 890q29 0 68 -28t61 -28q40 0 82 57l15 -3q-13 -37 -43.5 -64.5t-66.5 -27.5q-30 0 -69 28t-61 28q-40 0 -82 -57l-15 3q13 35 43 63.5t68 28.5zM13 0h-41l344 592q37 64 56 100l28 3l4 -5l107 -690h-44l-35 222h-290zM267 437l-104 -179h264l-28 179 q-21 139 -22 200h-1q-23 -51 -109 -200z" />
  144. <glyph unicode="&#xc4;" horiz-adv-x="589" d="M555 849q0 -22 -15.5 -39.5t-34.5 -17.5q-14 0 -22 8.5t-8 21.5q0 20 16 37.5t35 17.5q29 0 29 -28zM365 849q0 -22 -15.5 -39.5t-34.5 -17.5q-14 0 -22 8.5t-8 21.5q0 20 16 37.5t35 17.5q29 0 29 -28zM13 0h-41l344 592q37 64 56 100l28 3l4 -5l107 -690h-44l-35 222 h-290zM267 437l-104 -179h264l-28 179q-21 139 -22 200h-1q-23 -51 -109 -200z" />
  145. <glyph unicode="&#xc5;" horiz-adv-x="589" d="M500 852q0 -35 -30.5 -63.5t-68.5 -28.5q-26 0 -44 16t-18 40q0 34 31 62t69 28q27 0 44 -15t17 -39zM374 821q0 -16 9.5 -25t25.5 -9q22 0 39 18t17 41q0 33 -35 33q-22 0 -39 -17.5t-17 -40.5zM13 0h-41l344 592q37 64 56 100l28 3l4 -5l107 -690h-44l-35 222h-290z M267 437l-104 -179h264l-28 179q-21 139 -22 200h-1q-23 -51 -109 -200z" />
  146. <glyph unicode="&#xc6;" horiz-adv-x="833" d="M13 0h-41l438 592q2 3 15.5 21.5t51.5 71.5h304l4 -5l-8 -34l-268 4l-26 -292l232 2l-9 -39l-226 2l-26 -288l284 4l-8 -39h-323l23 222h-253zM336 437l-132 -179h230l19 179q17 159 24 200h-1q-43 -69 -140 -200z" />
  147. <glyph unicode="&#xc7;" horiz-adv-x="578" d="M368 -115q0 -37 -45 -63.5t-99 -33.5l-1 22q102 23 102 66q0 27 -55 33l-5 11l38 70h-3q-95 0 -148 63t-53 180q0 111 43.5 216t127.5 175.5t188 70.5q95 0 159 -45l-18 -42q-56 49 -148 49q-94 0 -166.5 -66.5t-106.5 -159t-34 -188.5q0 -101 43 -158t127 -57 q95 0 184 58l-2 -38q-66 -45 -162 -56l-30 -54q64 -10 64 -53z" />
  148. <glyph unicode="&#xc8;" horiz-adv-x="532" d="M523 779q-126 20 -207 78l1 8l36 31q64 -54 181 -100zM437 39l-8 -39h-350l115 538q17 83 24 147h342l4 -5l-7 -34l-297 4l-63 -292l257 2l-9 -39l-255 2l-62 -288z" />
  149. <glyph unicode="&#xc9;" horiz-adv-x="532" d="M549 865l-3 -8q-108 -58 -241 -78l-3 17q144 50 223 100zM437 39l-8 -39h-350l115 538q17 83 24 147h342l4 -5l-7 -34l-297 4l-63 -292l257 2l-9 -39l-255 2l-62 -288z" />
  150. <glyph unicode="&#xca;" horiz-adv-x="532" d="M295 770l-10 13q81 62 138 118l44 5q47 -70 99 -123l-16 -13q-70 55 -113 97q-69 -53 -142 -97zM437 39l-8 -39h-350l115 538q17 83 24 147h342l4 -5l-7 -34l-297 4l-63 -292l257 2l-9 -39l-255 2l-62 -288z" />
  151. <glyph unicode="&#xcb;" horiz-adv-x="532" d="M560 849q0 -22 -15.5 -39.5t-34.5 -17.5q-14 0 -22 8.5t-8 21.5q0 20 16 37.5t35 17.5q29 0 29 -28zM370 849q0 -22 -15.5 -39.5t-34.5 -17.5q-14 0 -22 8.5t-8 21.5q0 20 16 37.5t35 17.5q29 0 29 -28zM437 39l-8 -39h-350l115 538q17 83 24 147h342l4 -5l-7 -34l-297 4 l-63 -292l257 2l-9 -39l-255 2l-62 -288z" />
  152. <glyph unicode="&#xcc;" horiz-adv-x="299" d="M373 779q-126 20 -207 78l1 8l36 31q64 -54 181 -100zM121 0h-42l114 538q18 80 25 147l46 10l4 -5z" />
  153. <glyph unicode="&#xcd;" horiz-adv-x="299" d="M399 865l-3 -8q-108 -58 -241 -78l-3 17q144 50 223 100zM121 0h-42l114 538q18 80 25 147l46 10l4 -5z" />
  154. <glyph unicode="&#xce;" horiz-adv-x="299" d="M145 770l-10 13q81 62 138 118l44 5q47 -70 99 -123l-16 -13q-70 55 -113 97q-69 -53 -142 -97zM121 0h-42l114 538q18 80 25 147l46 10l4 -5z" />
  155. <glyph unicode="&#xcf;" horiz-adv-x="299" d="M410 849q0 -22 -15.5 -39.5t-34.5 -17.5q-14 0 -22 8.5t-8 21.5q0 20 16 37.5t35 17.5q29 0 29 -28zM220 849q0 -22 -15.5 -39.5t-34.5 -17.5q-14 0 -22 8.5t-8 21.5q0 20 16 37.5t35 17.5q29 0 29 -28zM121 0h-42l114 538q18 80 25 147l46 10l4 -5z" />
  156. <glyph unicode="&#xd0;" horiz-adv-x="689" d="M629 433q0 -81 -29.5 -158.5t-82 -138.5t-131 -98.5t-169.5 -37.5h-138l70 328h-87l6 30h88l38 180q17 83 24 147h147q125 0 194.5 -63t69.5 -189zM422 328h-231l-62 -292h94q84 0 154 34t114.5 89.5t68.5 125.5t24 144q0 110 -56.5 165t-176.5 55h-92l-62 -291h231z" />
  157. <glyph unicode="&#xd1;" horiz-adv-x="728" d="M425 890q29 0 68 -28t61 -28q40 0 82 57l15 -3q-13 -37 -43.5 -64.5t-66.5 -27.5q-30 0 -69 28t-61 28q-40 0 -82 -57l-15 3q13 35 43 63.5t68 28.5zM395 384q14 -34 38.5 -91.5t36.5 -87t27 -72.5t25 -82h1q16 95 99 487q18 80 25 147l46 10l4 -5l-147 -690h-45 q-22 52 -65 155.5t-64 155.5q-10 24 -30.5 73.5t-29 70t-22 56t-23 64t-18.5 59.5h-1q-18 -108 -50 -252l-81 -382h-42l114 538q18 80 25 147l48 10q35 -83 129 -311z" />
  158. <glyph unicode="&#xd2;" horiz-adv-x="689" d="M575 779q-126 20 -207 78l1 8l36 31q64 -54 181 -100zM630 448q0 -111 -42.5 -215.5t-122 -173.5t-174.5 -69q-90 0 -141.5 62.5t-51.5 178.5q0 111 43.5 217t123.5 176.5t174 70.5q89 0 140 -64.5t51 -182.5zM143 240q0 -100 41 -156t118 -56q83 0 149.5 64t100 158.5 t33.5 193.5q0 101 -39 157t-115 56q-82 0 -150 -65t-103 -160t-35 -192z" />
  159. <glyph unicode="&#xd3;" horiz-adv-x="689" d="M601 865l-3 -8q-108 -58 -241 -78l-3 17q144 50 223 100zM630 448q0 -111 -42.5 -215.5t-122 -173.5t-174.5 -69q-90 0 -141.5 62.5t-51.5 178.5q0 111 43.5 217t123.5 176.5t174 70.5q89 0 140 -64.5t51 -182.5zM143 240q0 -100 41 -156t118 -56q83 0 149.5 64 t100 158.5t33.5 193.5q0 101 -39 157t-115 56q-82 0 -150 -65t-103 -160t-35 -192z" />
  160. <glyph unicode="&#xd4;" horiz-adv-x="689" d="M347 770l-10 13q81 62 138 118l44 5q47 -70 99 -123l-16 -13q-70 55 -113 97q-69 -53 -142 -97zM630 448q0 -111 -42.5 -215.5t-122 -173.5t-174.5 -69q-90 0 -141.5 62.5t-51.5 178.5q0 111 43.5 217t123.5 176.5t174 70.5q89 0 140 -64.5t51 -182.5zM143 240 q0 -100 41 -156t118 -56q83 0 149.5 64t100 158.5t33.5 193.5q0 101 -39 157t-115 56q-82 0 -150 -65t-103 -160t-35 -192z" />
  161. <glyph unicode="&#xd5;" horiz-adv-x="689" d="M421 890q29 0 68 -28t61 -28q40 0 82 57l15 -3q-13 -37 -43.5 -64.5t-66.5 -27.5q-30 0 -69 28t-61 28q-40 0 -82 -57l-15 3q13 35 43 63.5t68 28.5zM630 448q0 -111 -42.5 -215.5t-122 -173.5t-174.5 -69q-90 0 -141.5 62.5t-51.5 178.5q0 111 43.5 217t123.5 176.5 t174 70.5q89 0 140 -64.5t51 -182.5zM143 240q0 -100 41 -156t118 -56q83 0 149.5 64t100 158.5t33.5 193.5q0 101 -39 157t-115 56q-82 0 -150 -65t-103 -160t-35 -192z" />
  162. <glyph unicode="&#xd6;" horiz-adv-x="689" d="M612 849q0 -22 -15.5 -39.5t-34.5 -17.5q-14 0 -22 8.5t-8 21.5q0 20 16 37.5t35 17.5q29 0 29 -28zM422 849q0 -22 -15.5 -39.5t-34.5 -17.5q-14 0 -22 8.5t-8 21.5q0 20 16 37.5t35 17.5q29 0 29 -28zM630 448q0 -111 -42.5 -215.5t-122 -173.5t-174.5 -69 q-90 0 -141.5 62.5t-51.5 178.5q0 111 43.5 217t123.5 176.5t174 70.5q89 0 140 -64.5t51 -182.5zM143 240q0 -100 41 -156t118 -56q83 0 149.5 64t100 158.5t33.5 193.5q0 101 -39 157t-115 56q-82 0 -150 -65t-103 -160t-35 -192z" />
  163. <glyph unicode="&#xd7;" d="M429 154l-133 167l-203 -168l-19 25l203 168l-133 167l32 25q28 -35 39 -49.5t33.5 -43.5t58.5 -74l203 168l19 -26l-202 -167q15 -19 57.5 -73t72.5 -92l-3 -7z" />
  164. <glyph unicode="&#xd8;" horiz-adv-x="689" d="M630 448q0 -111 -42.5 -215.5t-122 -173.5t-174.5 -69q-119 0 -167 103l-101 -93l-20 22l110 101q-15 47 -15 108q0 111 43.5 217t123.5 176.5t174 70.5q122 0 168 -114l114 105l22 -21l-125 -116q12 -44 12 -101zM143 240q0 -43 8 -81l420 389q-33 109 -140 109 q-82 0 -150 -65t-103 -160t-35 -192zM585 444q0 38 -6 70l-418 -387q38 -99 141 -99q83 0 149.5 64t100 158.5t33.5 193.5z" />
  165. <glyph unicode="&#xd9;" horiz-adv-x="634" d="M545 779q-126 20 -207 78l1 8l36 31q64 -54 181 -100zM87 157q0 41 45.5 245.5t50.5 284.5l54 8v-1q-22 -101 -53 -246q-55 -254 -55 -281q0 -66 40.5 -101.5t106.5 -35.5q78 0 139 49t80 138q12 54 25.5 118t20 95t14.5 69.5t11.5 56t7.5 39t5.5 34.5t3 27t2.5 31l54 8 l-101 -475q-24 -110 -100.5 -170t-175.5 -60q-79 0 -127 43t-48 124z" />
  166. <glyph unicode="&#xda;" horiz-adv-x="634" d="M571 865l-3 -8q-108 -58 -241 -78l-3 17q144 50 223 100zM87 157q0 41 45.5 245.5t50.5 284.5l54 8v-1q-22 -101 -53 -246q-55 -254 -55 -281q0 -66 40.5 -101.5t106.5 -35.5q78 0 139 49t80 138q12 54 25.5 118t20 95t14.5 69.5t11.5 56t7.5 39t5.5 34.5t3 27t2.5 31 l54 8l-101 -475q-24 -110 -100.5 -170t-175.5 -60q-79 0 -127 43t-48 124z" />
  167. <glyph unicode="&#xdb;" horiz-adv-x="634" d="M317 770l-10 13q81 62 138 118l44 5q47 -70 99 -123l-16 -13q-70 55 -113 97q-69 -53 -142 -97zM87 157q0 41 45.5 245.5t50.5 284.5l54 8v-1q-22 -101 -53 -246q-55 -254 -55 -281q0 -66 40.5 -101.5t106.5 -35.5q78 0 139 49t80 138q12 54 25.5 118t20 95t14.5 69.5 t11.5 56t7.5 39t5.5 34.5t3 27t2.5 31l54 8l-101 -475q-24 -110 -100.5 -170t-175.5 -60q-79 0 -127 43t-48 124z" />
  168. <glyph unicode="&#xdc;" horiz-adv-x="634" d="M582 849q0 -22 -15.5 -39.5t-34.5 -17.5q-14 0 -22 8.5t-8 21.5q0 20 16 37.5t35 17.5q29 0 29 -28zM392 849q0 -22 -15.5 -39.5t-34.5 -17.5q-14 0 -22 8.5t-8 21.5q0 20 16 37.5t35 17.5q29 0 29 -28zM87 157q0 41 45.5 245.5t50.5 284.5l54 8v-1q-22 -101 -53 -246 q-55 -254 -55 -281q0 -66 40.5 -101.5t106.5 -35.5q78 0 139 49t80 138q12 54 25.5 118t20 95t14.5 69.5t11.5 56t7.5 39t5.5 34.5t3 27t2.5 31l54 8l-101 -475q-24 -110 -100.5 -170t-175.5 -60q-79 0 -127 43t-48 124z" />
  169. <glyph unicode="&#xdd;" horiz-adv-x="524" d="M511 865l-3 -8q-108 -58 -241 -78l-3 17q144 50 223 100zM243 256l-124 435l43 4l74 -260q2 -9 12 -42.5t15.5 -59t7.5 -48.5h1q16 30 101 152l182 258l33 -5l4 -5l-308 -433l-54 -252h-42z" />
  170. <glyph unicode="&#xde;" horiz-adv-x="553" d="M121 0h-42l114 538q18 87 25 147h49l-26 -123h105q92 0 143 -42t51 -122q0 -107 -84.5 -180.5t-212.5 -73.5h-91zM337 527h-104l-74 -348h100q103 0 169.5 61.5t66.5 153.5q0 133 -158 133z" />
  171. <glyph unicode="&#xdf;" horiz-adv-x="551" d="M-12 -203l-15 21q67 76 90 182l98 462l-75 2l5 24l77 7l6 30q27 125 83 177.5t121 52.5q55 0 88.5 -34t33.5 -92q0 -69 -46.5 -121.5t-127.5 -73.5q63 -35 101 -100.5t38 -142.5q0 -90 -50.5 -145.5t-131.5 -55.5q-45 0 -91 17l8 40q42 -21 88 -21q66 0 100 46t34 115 q0 77 -41.5 142.5t-112.5 99.5l6 28q85 13 133 60t48 110q0 43 -22.5 67.5t-63.5 24.5q-115 0 -155 -191l-111 -528q-24 -116 -115 -203z" />
  172. <glyph unicode="&#xe0;" horiz-adv-x="506" d="M413 580q-91 66 -130 151l5 8l42 16q26 -71 96 -162zM52 132q0 91 39.5 176.5t112 141t156.5 55.5q53 0 103 -15l-42 -173q-17 -72 -25 -108.5t-15.5 -95t-7.5 -113.5h-40q0 101 29 232q-112 -242 -219 -242q-40 0 -65.5 35.5t-25.5 106.5zM95 137q0 -52 15.5 -81.5 t44.5 -29.5q45 0 100.5 74.5t93 158.5t52.5 143q3 10 7.5 29.5t6.5 25.5q-42 12 -78 12q-94 0 -168 -104.5t-74 -227.5z" />
  173. <glyph unicode="&#xe1;" horiz-adv-x="506" d="M453 736l1 -8q-79 -87 -194 -151l-7 13q114 96 164 162zM52 132q0 91 39.5 176.5t112 141t156.5 55.5q53 0 103 -15l-42 -173q-17 -72 -25 -108.5t-15.5 -95t-7.5 -113.5h-40q0 101 29 232q-112 -242 -219 -242q-40 0 -65.5 35.5t-25.5 106.5zM95 137q0 -52 15.5 -81.5 t44.5 -29.5q45 0 100.5 74.5t93 158.5t52.5 143q3 10 7.5 29.5t6.5 25.5q-42 12 -78 12q-94 0 -168 -104.5t-74 -227.5z" />
  174. <glyph unicode="&#xe2;" horiz-adv-x="506" d="M238 579l-11 11q82 87 133 154l44 5q31 -79 78 -159l-15 -11q-47 57 -94 126q-56 -56 -135 -126zM52 132q0 91 39.5 176.5t112 141t156.5 55.5q53 0 103 -15l-42 -173q-17 -72 -25 -108.5t-15.5 -95t-7.5 -113.5h-40q0 101 29 232q-112 -242 -219 -242q-40 0 -65.5 35.5 t-25.5 106.5zM95 137q0 -52 15.5 -81.5t44.5 -29.5q45 0 100.5 74.5t93 158.5t52.5 143q3 10 7.5 29.5t6.5 25.5q-42 12 -78 12q-94 0 -168 -104.5t-74 -227.5z" />
  175. <glyph unicode="&#xe3;" horiz-adv-x="506" d="M299 710q26 0 62 -28t55 -28q33 0 75 57l15 -3q-14 -36 -42.5 -64t-60.5 -28q-27 0 -63 28t-55 28q-33 0 -75 -57l-15 3q15 35 43 63.5t61 28.5zM52 132q0 91 39.5 176.5t112 141t156.5 55.5q53 0 103 -15l-42 -173q-17 -72 -25 -108.5t-15.5 -95t-7.5 -113.5h-40 q0 101 29 232q-112 -242 -219 -242q-40 0 -65.5 35.5t-25.5 106.5zM95 137q0 -52 15.5 -81.5t44.5 -29.5q45 0 100.5 74.5t93 158.5t52.5 143q3 10 7.5 29.5t6.5 25.5q-42 12 -78 12q-94 0 -168 -104.5t-74 -227.5z" />
  176. <glyph unicode="&#xe4;" horiz-adv-x="506" d="M298 680q0 -24 -14.5 -43t-33.5 -19q-26 0 -26 30q0 22 15.5 41t33.5 19q25 0 25 -28zM486 680q0 -24 -14.5 -43t-33.5 -19q-26 0 -26 30q0 22 15.5 41t33.5 19q25 0 25 -28zM52 132q0 91 39.5 176.5t112 141t156.5 55.5q53 0 103 -15l-42 -173q-17 -72 -25 -108.5 t-15.5 -95t-7.5 -113.5h-40q0 101 29 232q-112 -242 -219 -242q-40 0 -65.5 35.5t-25.5 106.5zM95 137q0 -52 15.5 -81.5t44.5 -29.5q45 0 100.5 74.5t93 158.5t52.5 143q3 10 7.5 29.5t6.5 25.5q-42 12 -78 12q-94 0 -168 -104.5t-74 -227.5z" />
  177. <glyph unicode="&#xe5;" horiz-adv-x="506" d="M432 666q0 -35 -30.5 -63.5t-68.5 -28.5q-26 0 -44 16t-18 40q0 34 31 62t69 28q27 0 44 -15t17 -39zM306 635q0 -16 9.5 -25t25.5 -9q22 0 39 18t17 41q0 33 -35 33q-22 0 -39 -17.5t-17 -40.5zM52 132q0 91 39.5 176.5t112 141t156.5 55.5q53 0 103 -15l-42 -173 q-17 -72 -25 -108.5t-15.5 -95t-7.5 -113.5h-40q0 101 29 232q-112 -242 -219 -242q-40 0 -65.5 35.5t-25.5 106.5zM95 137q0 -52 15.5 -81.5t44.5 -29.5q45 0 100.5 74.5t93 158.5t52.5 143q3 10 7.5 29.5t6.5 25.5q-42 12 -78 12q-94 0 -168 -104.5t-74 -227.5z" />
  178. <glyph unicode="&#xe6;" horiz-adv-x="730" d="M52 133q0 91 39 175.5t114 140.5t168 56q61 0 127 -27q44 27 90 27q47 0 76 -27.5t29 -74.5q0 -70 -71 -120t-234 -58q-5 -30 -5 -53q0 -66 29 -106t80 -40q78 0 153 93l18 -13q-30 -54 -79 -85t-100 -31q-64 0 -104 47.5t-40 131.5q0 16 1 24q-103 -203 -200 -203 q-40 0 -65.5 35.5t-25.5 107.5zM95 137q0 -111 59 -111q36 0 78.5 47.5t75.5 107t62 128.5q31 82 88 136q-48 24 -103 24q-111 0 -185.5 -102.5t-74.5 -229.5zM581 469q-60 0 -111.5 -64.5t-73.5 -150.5q140 9 198 53t58 95q0 30 -19.5 48.5t-51.5 18.5z" />
  179. <glyph unicode="&#xe7;" horiz-adv-x="444" d="M265 -115q0 -37 -45 -63.5t-99 -33.5l-1 22q102 23 102 66q0 27 -55 33l-5 11l38 70q-65 1 -103 47.5t-38 130.5q0 130 82 233.5t186 103.5q57 0 101 -42l-17 -41q-40 47 -94 47q-81 0 -148 -93.5t-67 -203.5q0 -66 28.5 -106t82.5 -40q79 0 153 93l18 -13 q-63 -99 -153 -114l-30 -54q64 -10 64 -53z" />
  180. <glyph unicode="&#xe8;" horiz-adv-x="447" d="M367 580q-91 66 -130 151l5 8l42 16q26 -71 96 -162zM364 119l18 -13q-30 -54 -79 -85t-100 -31q-64 0 -104 47.5t-40 131.5q0 78 33.5 156t91.5 129t123 51q47 0 76 -27.5t29 -74.5q0 -70 -71 -120t-234 -58q-5 -30 -5 -53q0 -66 29 -106t80 -40q78 0 153 93zM298 469 q-60 0 -111.5 -64.5t-73.5 -150.5q140 9 198 53t58 95q0 30 -19.5 48.5t-51.5 18.5z" />
  181. <glyph unicode="&#xe9;" horiz-adv-x="447" d="M407 736l1 -8q-79 -87 -194 -151l-7 13q114 96 164 162zM364 119l18 -13q-30 -54 -79 -85t-100 -31q-64 0 -104 47.5t-40 131.5q0 78 33.5 156t91.5 129t123 51q47 0 76 -27.5t29 -74.5q0 -70 -71 -120t-234 -58q-5 -30 -5 -53q0 -66 29 -106t80 -40q78 0 153 93z M298 469q-60 0 -111.5 -64.5t-73.5 -150.5q140 9 198 53t58 95q0 30 -19.5 48.5t-51.5 18.5z" />
  182. <glyph unicode="&#xea;" horiz-adv-x="447" d="M192 579l-11 11q82 87 133 154l44 5q31 -79 78 -159l-15 -11q-47 57 -94 126q-56 -56 -135 -126zM364 119l18 -13q-30 -54 -79 -85t-100 -31q-64 0 -104 47.5t-40 131.5q0 78 33.5 156t91.5 129t123 51q47 0 76 -27.5t29 -74.5q0 -70 -71 -120t-234 -58q-5 -30 -5 -53 q0 -66 29 -106t80 -40q78 0 153 93zM298 469q-60 0 -111.5 -64.5t-73.5 -150.5q140 9 198 53t58 95q0 30 -19.5 48.5t-51.5 18.5z" />
  183. <glyph unicode="&#xeb;" horiz-adv-x="447" d="M252 680q0 -24 -14.5 -43t-33.5 -19q-26 0 -26 30q0 22 15.5 41t33.5 19q25 0 25 -28zM440 680q0 -24 -14.5 -43t-33.5 -19q-26 0 -26 30q0 22 15.5 41t33.5 19q25 0 25 -28zM364 119l18 -13q-30 -54 -79 -85t-100 -31q-64 0 -104 47.5t-40 131.5q0 78 33.5 156t91.5 129 t123 51q47 0 76 -27.5t29 -74.5q0 -70 -71 -120t-234 -58q-5 -30 -5 -53q0 -66 29 -106t80 -40q78 0 153 93zM298 469q-60 0 -111.5 -64.5t-73.5 -150.5q140 9 198 53t58 95q0 30 -19.5 48.5t-51.5 18.5z" />
  184. <glyph unicode="&#xec;" horiz-adv-x="241" d="M247 580q-91 66 -130 151l5 8l42 16q26 -71 96 -162zM111 0h-40q0 96 37 267l20 92l8 136l49 10q0 -73 -37 -248t-37 -257z" />
  185. <glyph unicode="&#xed;" horiz-adv-x="241" d="M287 736l1 -8q-79 -87 -194 -151l-7 13q114 96 164 162zM111 0h-40q0 96 37 267l20 92l8 136l49 10q0 -73 -37 -248t-37 -257z" />
  186. <glyph unicode="&#xee;" horiz-adv-x="241" d="M92 586l-8 10q62 86 103 154l44 5q25 -92 48 -159l-12 -10q-33 52 -67 121q-78 -91 -108 -121zM111 0h-40q0 96 37 267l20 92l8 136l49 10q0 -73 -37 -248t-37 -257z" />
  187. <glyph unicode="&#xef;" horiz-adv-x="241" d="M158 683q0 -24 -14.5 -43t-33.5 -19q-26 0 -26 30q0 22 15.5 41t33.5 19q25 0 25 -28zM294 683q0 -24 -14.5 -43t-33.5 -19q-26 0 -26 30q0 22 15.5 41t33.5 19q25 0 25 -28zM111 0h-40q0 96 37 267l20 92l8 136l49 10q0 -73 -37 -248t-37 -257z" />
  188. <glyph unicode="&#xf0;" horiz-adv-x="513" d="M196 -10q-61 0 -95.5 43t-34.5 126t30.5 162t88.5 131.5t128 52.5q63 0 97 -45q-13 91 -72 168l-160 -82l-11 29l151 77q-42 45 -91 76l24 27q63 -34 107 -83l144 74l11 -28l-136 -70q74 -99 74 -254q0 -168 -73.5 -286t-181.5 -118zM303 469q-57 0 -103 -48.5 t-68.5 -117.5t-22.5 -139q0 -138 97 -138q57 0 103 48.5t68.5 117.5t22.5 139q0 138 -97 138z" />
  189. <glyph unicode="&#xf1;" horiz-adv-x="537" d="M293 710q26 0 62 -28t55 -28q33 0 75 57l15 -3q-14 -36 -42.5 -64t-60.5 -28q-27 0 -63 28t-55 28q-33 0 -75 -57l-15 3q15 35 43 63.5t61 28.5zM111 0h-40q0 22 1.5 45.5t3.5 41.5t6.5 45.5t6.5 41t9 46.5t9 43t10.5 49t10.5 47l8 136l49 10q0 -67 -22 -160h2 q36 78 91.5 119t112.5 41q45 0 69 -25t24 -69q0 -41 -32 -185q-18 -82 -23.5 -124.5t-5.5 -101.5h-40q0 73 34 245q22 112 22 150q0 74 -63 74q-64 0 -119 -64t-88 -172t-36 -233z" />
  190. <glyph unicode="&#xf2;" horiz-adv-x="494" d="M391 580q-91 66 -130 151l5 8l42 16q26 -71 96 -162zM436 337q0 -82 -30 -160.5t-88.5 -132.5t-129.5 -54q-62 0 -95.5 43t-33.5 126t30.5 162t88.5 131.5t128 52.5q62 0 96 -42.5t34 -125.5zM102 164q0 -138 97 -138q57 0 103 48.5t68.5 117.5t22.5 139q0 138 -97 138 q-57 0 -103 -48.5t-68.5 -117.5t-22.5 -139z" />
  191. <glyph unicode="&#xf3;" horiz-adv-x="494" d="M431 736l1 -8q-79 -87 -194 -151l-7 13q114 96 164 162zM436 337q0 -82 -30 -160.5t-88.5 -132.5t-129.5 -54q-62 0 -95.5 43t-33.5 126t30.5 162t88.5 131.5t128 52.5q62 0 96 -42.5t34 -125.5zM102 164q0 -138 97 -138q57 0 103 48.5t68.5 117.5t22.5 139 q0 138 -97 138q-57 0 -103 -48.5t-68.5 -117.5t-22.5 -139z" />
  192. <glyph unicode="&#xf4;" horiz-adv-x="494" d="M216 579l-11 11q82 87 133 154l44 5q31 -79 78 -159l-15 -11q-47 57 -94 126q-56 -56 -135 -126zM436 337q0 -82 -30 -160.5t-88.5 -132.5t-129.5 -54q-62 0 -95.5 43t-33.5 126t30.5 162t88.5 131.5t128 52.5q62 0 96 -42.5t34 -125.5zM102 164q0 -138 97 -138 q57 0 103 48.5t68.5 117.5t22.5 139q0 138 -97 138q-57 0 -103 -48.5t-68.5 -117.5t-22.5 -139z" />
  193. <glyph unicode="&#xf5;" horiz-adv-x="494" d="M277 710q26 0 62 -28t55 -28q33 0 75 57l15 -3q-14 -36 -42.5 -64t-60.5 -28q-27 0 -63 28t-55 28q-33 0 -75 -57l-15 3q15 35 43 63.5t61 28.5zM436 337q0 -82 -30 -160.5t-88.5 -132.5t-129.5 -54q-62 0 -95.5 43t-33.5 126t30.5 162t88.5 131.5t128 52.5 q62 0 96 -42.5t34 -125.5zM102 164q0 -138 97 -138q57 0 103 48.5t68.5 117.5t22.5 139q0 138 -97 138q-57 0 -103 -48.5t-68.5 -117.5t-22.5 -139z" />
  194. <glyph unicode="&#xf6;" horiz-adv-x="494" d="M276 680q0 -24 -14.5 -43t-33.5 -19q-26 0 -26 30q0 22 15.5 41t33.5 19q25 0 25 -28zM464 680q0 -24 -14.5 -43t-33.5 -19q-26 0 -26 30q0 22 15.5 41t33.5 19q25 0 25 -28zM436 337q0 -82 -30 -160.5t-88.5 -132.5t-129.5 -54q-62 0 -95.5 43t-33.5 126t30.5 162 t88.5 131.5t128 52.5q62 0 96 -42.5t34 -125.5zM102 164q0 -138 97 -138q57 0 103 48.5t68.5 117.5t22.5 139q0 138 -97 138q-57 0 -103 -48.5t-68.5 -117.5t-22.5 -139z" />
  195. <glyph unicode="&#xf7;" d="M388 547q0 -21 -17.5 -39t-39.5 -18q-14 0 -22 8.5t-8 21.5q0 22 18 40t40 18q13 0 21 -8.5t8 -22.5zM521 328h-450l7 35q172 5 451 5l3 -5zM310 175q0 -21 -17.5 -39t-39.5 -18q-14 0 -22 8.5t-8 21.5q0 22 18 40t40 18q13 0 21 -8.5t8 -22.5z" />
  196. <glyph unicode="&#xf8;" horiz-adv-x="494" d="M436 337q0 -82 -30 -160.5t-88.5 -132.5t-129.5 -54q-88 0 -117 84l-82 -72l-18 22l92 81q-4 21 -4 54q0 83 30.5 162t88.5 131.5t128 52.5q89 0 118 -86l86 75l19 -22l-97 -84q4 -21 4 -51zM102 164q0 -17 1 -25l285 248q-18 82 -92 82q-57 0 -103 -48.5t-68.5 -117.5 t-22.5 -139zM393 331q0 15 -1 22l-284 -248q17 -79 91 -79q57 0 103 48.5t68.5 117.5t22.5 139z" />
  197. <glyph unicode="&#xf9;" horiz-adv-x="510" d="M388 580q-91 66 -130 151l5 8l42 16q26 -71 96 -162zM76 145l45 214l8 136l49 10q0 -34 -5 -74.5t-10 -68.5t-15.5 -79t-15.5 -75q-9 -50 -12 -79.5t0 -55t17.5 -36.5t40.5 -11q64 0 114.5 62t81.5 165q29 129 34 191q3 26 3 51l40 10q0 -35 -5.5 -79t-12 -77t-18 -86.5 t-16.5 -80.5q-22 -114 -22 -182h-40q0 61 13 137q-33 -71 -83 -109t-101 -38q-56 0 -80.5 42t-9.5 113z" />
  198. <glyph unicode="&#xfa;" horiz-adv-x="510" d="M428 736l1 -8q-79 -87 -194 -151l-7 13q114 96 164 162zM76 145l45 214l8 136l49 10q0 -34 -5 -74.5t-10 -68.5t-15.5 -79t-15.5 -75q-9 -50 -12 -79.5t0 -55t17.5 -36.5t40.5 -11q64 0 114.5 62t81.5 165q29 129 34 191q3 26 3 51l40 10q0 -35 -5.5 -79t-12 -77 t-18 -86.5t-16.5 -80.5q-22 -114 -22 -182h-40q0 61 13 137q-33 -71 -83 -109t-101 -38q-56 0 -80.5 42t-9.5 113z" />
  199. <glyph unicode="&#xfb;" horiz-adv-x="510" d="M213 579l-11 11q82 87 133 154l44 5q31 -79 78 -159l-15 -11q-47 57 -94 126q-56 -56 -135 -126zM76 145l45 214l8 136l49 10q0 -34 -5 -74.5t-10 -68.5t-15.5 -79t-15.5 -75q-9 -50 -12 -79.5t0 -55t17.5 -36.5t40.5 -11q64 0 114.5 62t81.5 165q29 129 34 191 q3 26 3 51l40 10q0 -35 -5.5 -79t-12 -77t-18 -86.5t-16.5 -80.5q-22 -114 -22 -182h-40q0 61 13 137q-33 -71 -83 -109t-101 -38q-56 0 -80.5 42t-9.5 113z" />
  200. <glyph unicode="&#xfc;" horiz-adv-x="510" d="M273 680q0 -24 -14.5 -43t-33.5 -19q-26 0 -26 30q0 22 15.5 41t33.5 19q25 0 25 -28zM461 680q0 -24 -14.5 -43t-33.5 -19q-26 0 -26 30q0 22 15.5 41t33.5 19q25 0 25 -28zM76 145l45 214l8 136l49 10q0 -34 -5 -74.5t-10 -68.5t-15.5 -79t-15.5 -75q-9 -50 -12 -79.5 t0 -55t17.5 -36.5t40.5 -11q64 0 114.5 62t81.5 165q29 129 34 191q3 26 3 51l40 10q0 -35 -5.5 -79t-12 -77t-18 -86.5t-16.5 -80.5q-22 -114 -22 -182h-40q0 61 13 137q-33 -71 -83 -109t-101 -38q-56 0 -80.5 42t-9.5 113z" />
  201. <glyph unicode="&#xfd;" horiz-adv-x="398" d="M364 736l1 -8q-79 -87 -194 -151l-7 13q114 96 164 162zM387 505q18 0 18 -18q0 -61 -59 -185.5t-140.5 -247.5t-176 -216t-157.5 -93q-37 0 -37 27q0 13 8 23q21 -3 37 -3q96 0 246 210q0 261 -58 493l40 10q59 -217 59 -445h1q180 263 200 441q9 4 19 4z" />
  202. <glyph unicode="&#xfe;" horiz-adv-x="507" d="M52 -245h-40q0 89 61 375l102 479l8 136l49 10q0 -28 -4.5 -66.5t-9.5 -70t-17 -89.5t-18 -85.5t-22.5 -99t-21.5 -92.5q42 105 99 179t123 74q43 0 68.5 -35t25.5 -107q0 -91 -39.5 -176.5t-112 -141t-156.5 -55.5q-28 0 -63 6q-32 -160 -32 -241zM352 469 q-44 0 -97.5 -68t-96.5 -166.5t-65 -196.5q41 -12 77 -12q94 0 168 104.5t74 227.5q0 52 -15.5 81.5t-44.5 29.5z" />
  203. <glyph unicode="&#xff;" horiz-adv-x="398" d="M209 680q0 -24 -14.5 -43t-33.5 -19q-26 0 -26 30q0 22 15.5 41t33.5 19q25 0 25 -28zM397 680q0 -24 -14.5 -43t-33.5 -19q-26 0 -26 30q0 22 15.5 41t33.5 19q25 0 25 -28zM387 505q18 0 18 -18q0 -61 -59 -185.5t-140.5 -247.5t-176 -216t-157.5 -93q-37 0 -37 27 q0 13 8 23q21 -3 37 -3q96 0 246 210q0 261 -58 493l40 10q59 -217 59 -445h1q180 263 200 441q9 4 19 4z" />
  204. <glyph unicode="&#x100;" horiz-adv-x="589" d="M289 817l8 39h254l-8 -39h-254zM13 0h-41l344 592q37 64 56 100l28 3l4 -5l107 -690h-44l-35 222h-290zM267 437l-104 -179h264l-28 179q-21 139 -22 200h-1q-23 -51 -109 -200z" />
  205. <glyph unicode="&#x101;" horiz-adv-x="506" d="M219 646l7 34h264l-7 -34h-264zM52 132q0 91 39.5 176.5t112 141t156.5 55.5q53 0 103 -15l-42 -173q-17 -72 -25 -108.5t-15.5 -95t-7.5 -113.5h-40q0 101 29 232q-112 -242 -219 -242q-40 0 -65.5 35.5t-25.5 106.5zM95 137q0 -52 15.5 -81.5t44.5 -29.5 q45 0 100.5 74.5t93 158.5t52.5 143q3 10 7.5 29.5t6.5 25.5q-42 12 -78 12q-94 0 -168 -104.5t-74 -227.5z" />
  206. <glyph unicode="&#x102;" horiz-adv-x="589" d="M517 890l22 -3q-22 -48 -60 -75t-84 -27q-45 0 -70.5 27.5t-23.5 74.5l23 3q4 -29 26.5 -45.5t58.5 -16.5q70 0 108 62zM13 0h-41l344 592q37 64 56 100l28 3l4 -5l107 -690h-44l-35 222h-290zM267 437l-104 -179h264l-28 179q-21 139 -22 200h-1q-23 -51 -109 -200z" />
  207. <glyph unicode="&#x103;" horiz-adv-x="506" d="M452 727l22 -3q-23 -57 -63 -89.5t-85 -32.5t-69.5 32.5t-20.5 89.5l23 3q2 -39 23.5 -60.5t57.5 -21.5q33 0 62.5 22t49.5 60zM52 132q0 91 39.5 176.5t112 141t156.5 55.5q53 0 103 -15l-42 -173q-17 -72 -25 -108.5t-15.5 -95t-7.5 -113.5h-40q0 101 29 232 q-112 -242 -219 -242q-40 0 -65.5 35.5t-25.5 106.5zM95 137q0 -52 15.5 -81.5t44.5 -29.5q45 0 100.5 74.5t93 158.5t52.5 143q3 10 7.5 29.5t6.5 25.5q-42 12 -78 12q-94 0 -168 -104.5t-74 -227.5z" />
  208. <glyph unicode="&#x104;" horiz-adv-x="589" d="M13 0h-41l344 592q37 64 56 100l28 3l4 -5l107 -690h-3q-139 -71 -139 -142q0 -37 46 -37q24 0 59 12l4 -22q-34 -23 -79 -23q-35 0 -55 14.5t-20 41.5q0 83 143 156l-35 222h-290zM267 437l-104 -179h264l-28 179q-21 139 -22 200h-1q-23 -51 -109 -200z" />
  209. <glyph unicode="&#x105;" horiz-adv-x="506" d="M52 132q0 91 39.5 176.5t112 141t156.5 55.5q53 0 103 -15l-42 -173q-17 -72 -25 -108.5t-15.5 -95t-7.5 -113.5q-139 -71 -139 -142q0 -37 46 -37q24 0 59 12l4 -22q-34 -23 -79 -23q-35 0 -55 14.5t-20 41.5q0 85 144 156q0 102 29 232q-112 -242 -219 -242 q-40 0 -65.5 35.5t-25.5 106.5zM95 137q0 -52 15.5 -81.5t44.5 -29.5q45 0 100.5 74.5t93 158.5t52.5 143q3 10 7.5 29.5t6.5 25.5q-42 12 -78 12q-94 0 -168 -104.5t-74 -227.5z" />
  210. <glyph unicode="&#x106;" horiz-adv-x="578" d="M592 865l-3 -8q-108 -58 -241 -78l-3 17q144 50 223 100zM498 86l-2 -38q-40 -27 -94 -42.5t-102 -15.5q-95 0 -148 63t-53 180q0 111 43.5 216t127.5 175.5t188 70.5q95 0 159 -45l-18 -42q-56 49 -148 49q-94 0 -166.5 -66.5t-106.5 -159t-34 -188.5q0 -101 43 -158 t127 -57q95 0 184 58z" />
  211. <glyph unicode="&#x107;" horiz-adv-x="444" d="M418 736l1 -8q-79 -87 -194 -151l-7 13q114 96 164 162zM366 119l18 -13q-74 -116 -181 -116q-66 0 -105 47t-39 131q0 130 82 233.5t186 103.5q57 0 101 -42l-17 -41q-40 47 -94 47q-81 0 -148 -93.5t-67 -203.5q0 -66 28.5 -106t82.5 -40q79 0 153 93z" />
  212. <glyph unicode="&#x108;" horiz-adv-x="578" d="M338 770l-10 13q81 62 138 118l44 5q47 -70 99 -123l-16 -13q-70 55 -113 97q-69 -53 -142 -97zM498 86l-2 -38q-40 -27 -94 -42.5t-102 -15.5q-95 0 -148 63t-53 180q0 111 43.5 216t127.5 175.5t188 70.5q95 0 159 -45l-18 -42q-56 49 -148 49q-94 0 -166.5 -66.5 t-106.5 -159t-34 -188.5q0 -101 43 -158t127 -57q95 0 184 58z" />
  213. <glyph unicode="&#x109;" horiz-adv-x="444" d="M203 579l-11 11q82 87 133 154l44 5q31 -79 78 -159l-15 -11q-47 57 -94 126q-56 -56 -135 -126zM366 119l18 -13q-74 -116 -181 -116q-66 0 -105 47t-39 131q0 130 82 233.5t186 103.5q57 0 101 -42l-17 -41q-40 47 -94 47q-81 0 -148 -93.5t-67 -203.5q0 -66 28.5 -106 t82.5 -40q79 0 153 93z" />
  214. <glyph unicode="&#x10a;" horiz-adv-x="578" d="M511 857q0 -22 -15 -38t-36 -16q-32 0 -32 29q0 20 16 36.5t36 16.5q31 0 31 -28zM498 86l-2 -38q-40 -27 -94 -42.5t-102 -15.5q-95 0 -148 63t-53 180q0 111 43.5 216t127.5 175.5t188 70.5q95 0 159 -45l-18 -42q-56 49 -148 49q-94 0 -166.5 -66.5t-106.5 -159 t-34 -188.5q0 -101 43 -158t127 -57q95 0 184 58z" />
  215. <glyph unicode="&#x10b;" horiz-adv-x="444" d="M358 682q0 -24 -15 -42.5t-34 -18.5q-27 0 -27 30q0 23 15.5 41.5t33.5 18.5q27 0 27 -29zM366 119l18 -13q-74 -116 -181 -116q-66 0 -105 47t-39 131q0 130 82 233.5t186 103.5q57 0 101 -42l-17 -41q-40 47 -94 47q-81 0 -148 -93.5t-67 -203.5q0 -66 28.5 -106 t82.5 -40q79 0 153 93z" />
  216. <glyph unicode="&#x10c;" horiz-adv-x="578" d="M599 906l10 -13q-81 -62 -138 -118l-44 -5q-47 70 -99 123l16 13q70 -55 113 -97q69 53 142 97zM498 86l-2 -38q-40 -27 -94 -42.5t-102 -15.5q-95 0 -148 63t-53 180q0 111 43.5 216t127.5 175.5t188 70.5q95 0 159 -45l-18 -42q-56 49 -148 49q-94 0 -166.5 -66.5 t-106.5 -159t-34 -188.5q0 -101 43 -158t127 -57q95 0 184 58z" />
  217. <glyph unicode="&#x10d;" horiz-adv-x="444" d="M437 750l11 -11q-82 -87 -133 -154l-44 -5q-31 79 -78 159l15 11q47 -57 94 -126q56 56 135 126zM366 119l18 -13q-74 -116 -181 -116q-66 0 -105 47t-39 131q0 130 82 233.5t186 103.5q57 0 101 -42l-17 -41q-40 47 -94 47q-81 0 -148 -93.5t-67 -203.5q0 -66 28.5 -106 t82.5 -40q79 0 153 93z" />
  218. <glyph unicode="&#x10e;" horiz-adv-x="689" d="M587 906l10 -13q-81 -62 -138 -118l-44 -5q-47 70 -99 123l16 13q70 -55 113 -97q69 53 142 97zM629 433q0 -81 -29.5 -158.5t-82 -138.5t-131 -98.5t-169.5 -37.5h-138l115 538q17 83 24 147h147q125 0 194.5 -63t69.5 -189zM351 649h-92l-130 -613h94q84 0 154 34 t114.5 89.5t68.5 125.5t24 144q0 110 -56.5 165t-176.5 55z" />
  219. <glyph unicode="&#x10f;" horiz-adv-x="509" d="M376 0h-40q0 77 32 238q-106 -248 -225 -248q-40 0 -65.5 35.5t-25.5 106.5q0 91 39.5 176.5t112 141t156.5 55.5q27 0 63 -6l23 110l8 136l49 10q0 -94 -63.5 -371t-63.5 -384zM672 755l5 -6q-29 -102 -109 -212l-15 6q59 122 76 206zM95 137q0 -52 15.5 -81.5 t44.5 -29.5q44 0 99.5 71.5t93.5 155.5t52 143l14 61q-42 12 -77 12q-94 0 -168 -104.5t-74 -227.5z" />
  220. <glyph unicode="&#x110;" horiz-adv-x="689" d="M629 433q0 -81 -29.5 -158.5t-82 -138.5t-131 -98.5t-169.5 -37.5h-138l70 328h-87l6 30h88l38 180q17 83 24 147h147q125 0 194.5 -63t69.5 -189zM422 328h-231l-62 -292h94q84 0 154 34t114.5 89.5t68.5 125.5t24 144q0 110 -56.5 165t-176.5 55h-92l-62 -291h231z" />
  221. <glyph unicode="&#x111;" horiz-adv-x="509" d="M376 0h-40q0 77 32 238q-106 -248 -225 -248q-40 0 -65.5 35.5t-25.5 106.5q0 91 39.5 176.5t112 141t156.5 55.5q27 0 63 -6l21 101h-221l6 30h218l7 115l49 10q0 -46 -12 -125h98l-6 -30h-97q-12 -64 -42 -194.5t-49 -232.5t-19 -173zM95 137q0 -52 15.5 -81.5 t44.5 -29.5q44 0 99.5 71.5t93.5 155.5t52 143l14 61q-42 12 -77 12q-94 0 -168 -104.5t-74 -227.5z" />
  222. <glyph unicode="&#x112;" horiz-adv-x="532" d="M294 817l8 39h254l-8 -39h-254zM437 39l-8 -39h-350l115 538q17 83 24 147h342l4 -5l-7 -34l-297 4l-63 -292l257 2l-9 -39l-255 2l-62 -288z" />
  223. <glyph unicode="&#x113;" horiz-adv-x="447" d="M173 646l7 34h264l-7 -34h-264zM364 119l18 -13q-30 -54 -79 -85t-100 -31q-64 0 -104 47.5t-40 131.5q0 78 33.5 156t91.5 129t123 51q47 0 76 -27.5t29 -74.5q0 -70 -71 -120t-234 -58q-5 -30 -5 -53q0 -66 29 -106t80 -40q78 0 153 93zM298 469q-60 0 -111.5 -64.5 t-73.5 -150.5q140 9 198 53t58 95q0 30 -19.5 48.5t-51.5 18.5z" />
  224. <glyph unicode="&#x114;" horiz-adv-x="532" d="M522 890l22 -3q-22 -48 -60 -75t-84 -27q-45 0 -70.5 27.5t-23.5 74.5l23 3q4 -29 26.5 -45.5t58.5 -16.5q70 0 108 62zM437 39l-8 -39h-350l115 538q17 83 24 147h342l4 -5l-7 -34l-297 4l-63 -292l257 2l-9 -39l-255 2l-62 -288z" />
  225. <glyph unicode="&#x115;" horiz-adv-x="447" d="M406 727l22 -3q-23 -57 -63 -89.5t-85 -32.5t-69.5 32.5t-20.5 89.5l23 3q2 -39 23.5 -60.5t57.5 -21.5q33 0 62.5 22t49.5 60zM364 119l18 -13q-30 -54 -79 -85t-100 -31q-64 0 -104 47.5t-40 131.5q0 78 33.5 156t91.5 129t123 51q47 0 76 -27.5t29 -74.5 q0 -70 -71 -120t-234 -58q-5 -30 -5 -53q0 -66 29 -106t80 -40q78 0 153 93zM298 469q-60 0 -111.5 -64.5t-73.5 -150.5q140 9 198 53t58 95q0 30 -19.5 48.5t-51.5 18.5z" />
  226. <glyph unicode="&#x116;" horiz-adv-x="532" d="M468 857q0 -22 -15 -38t-36 -16q-32 0 -32 29q0 20 16 36.5t36 16.5q31 0 31 -28zM437 39l-8 -39h-350l115 538q17 83 24 147h342l4 -5l-7 -34l-297 4l-63 -292l257 2l-9 -39l-255 2l-62 -288z" />
  227. <glyph unicode="&#x117;" horiz-adv-x="447" d="M347 682q0 -24 -15 -42.5t-34 -18.5q-27 0 -27 30q0 23 15.5 41.5t33.5 18.5q27 0 27 -29zM364 119l18 -13q-30 -54 -79 -85t-100 -31q-64 0 -104 47.5t-40 131.5q0 78 33.5 156t91.5 129t123 51q47 0 76 -27.5t29 -74.5q0 -70 -71 -120t-234 -58q-5 -30 -5 -53 q0 -66 29 -106t80 -40q78 0 153 93zM298 469q-60 0 -111.5 -64.5t-73.5 -150.5q140 9 198 53t58 95q0 30 -19.5 48.5t-51.5 18.5z" />
  228. <glyph unicode="&#x118;" horiz-adv-x="532" d="M429 0q-139 -71 -139 -142q0 -37 46 -37q24 0 59 12l4 -22q-34 -23 -79 -23q-35 0 -55 14.5t-20 41.5q0 83 143 156h-309l115 538q17 83 24 147h342l4 -5l-7 -34l-297 4l-63 -292l257 2l-9 -39l-255 2l-62 -288l309 4z" />
  229. <glyph unicode="&#x119;" horiz-adv-x="447" d="M305 22q-51 -36 -75 -55t-44 -46t-20 -54q0 -46 47 -46q23 0 58 12l4 -22q-34 -23 -79 -23q-35 0 -55 17.5t-20 48.5q0 64 102 137q-7 -1 -20 -1q-64 0 -104 47.5t-40 131.5q0 78 33.5 156t91.5 129t123 51q47 0 76 -27.5t29 -74.5q0 -70 -71 -120t-234 -58 q-5 -30 -5 -53q0 -66 29 -106t80 -40q78 0 153 93l18 -13q-29 -52 -77 -84zM298 469q-60 0 -111.5 -64.5t-73.5 -150.5q140 9 198 53t58 95q0 30 -19.5 48.5t-51.5 18.5z" />
  230. <glyph unicode="&#x11a;" horiz-adv-x="532" d="M556 906l10 -13q-81 -62 -138 -118l-44 -5q-47 70 -99 123l16 13q70 -55 113 -97q69 53 142 97zM437 39l-8 -39h-350l115 538q17 83 24 147h342l4 -5l-7 -34l-297 4l-63 -292l257 2l-9 -39l-255 2l-62 -288z" />
  231. <glyph unicode="&#x11b;" horiz-adv-x="447" d="M426 750l11 -11q-82 -87 -133 -154l-44 -5q-31 79 -78 159l15 11q47 -57 94 -126q56 56 135 126zM364 119l18 -13q-30 -54 -79 -85t-100 -31q-64 0 -104 47.5t-40 131.5q0 78 33.5 156t91.5 129t123 51q47 0 76 -27.5t29 -74.5q0 -70 -71 -120t-234 -58q-5 -30 -5 -53 q0 -66 29 -106t80 -40q78 0 153 93zM298 469q-60 0 -111.5 -64.5t-73.5 -150.5q140 9 198 53t58 95q0 30 -19.5 48.5t-51.5 18.5z" />
  232. <glyph unicode="&#x11c;" horiz-adv-x="639" d="M325 770l-10 13q81 62 138 118l44 5q47 -70 99 -123l-16 -13q-70 55 -113 97q-69 -53 -142 -97zM563 288l4 -5l-53 -242q-77 -51 -193 -51q-106 0 -163.5 62.5t-57.5 187.5q0 114 44.5 218t127.5 170.5t182 66.5q94 0 158 -45l-18 -42q-56 49 -147 49q-88 0 -159 -62 t-107 -155t-36 -193q0 -219 191 -219q72 0 140 30l15 73q17 83 24 147z" />
  233. <glyph unicode="&#x11d;" horiz-adv-x="415" d="M180 579l-11 11q82 87 133 154l44 5q31 -79 78 -159l-15 -11q-47 57 -94 126q-56 -56 -135 -126zM120 -255q-76 0 -117.5 32.5t-41.5 85.5q0 69 78 118l14 -16q-49 -47 -49 -94q0 -39 33 -64.5t91 -25.5q69 0 113 32.5t44 74.5q0 25 -19.5 44.5t-65.5 42.5q-3 2 -14 7 t-14.5 7t-12.5 6.5t-12.5 7l-10.5 7.5t-9.5 8.5t-6 8.5t-5 10.5t-1.5 11.5q0 39 82 101v1q-8 -1 -9 -1q-58 0 -87.5 35t-29.5 94q0 91 58.5 158.5t142.5 67.5q107 0 151 10q5 -8 5 -21q0 -26 -37 -26q-23 0 -73 12v-1q48 -31 48 -105q0 -53 -21.5 -99.5t-52 -77.5t-61 -56 t-52 -45t-21.5 -35q0 -4 1 -7.5t4 -7t5.5 -6.5t7 -6l7.5 -5t8.5 -5t7.5 -4l8 -4t7 -3q61 -29 88 -56t27 -61q0 -57 -56.5 -104t-151.5 -47zM325 370q0 47 -20 74t-55 27q-53 0 -96.5 -59.5t-43.5 -129.5q0 -47 21 -72t57 -25q57 0 97 58t40 127z" />
  234. <glyph unicode="&#x11e;" horiz-adv-x="639" d="M552 890l22 -3q-22 -48 -60 -75t-84 -27q-45 0 -70.5 27.5t-23.5 74.5l23 3q4 -29 26.5 -45.5t58.5 -16.5q70 0 108 62zM563 288l4 -5l-53 -242q-77 -51 -193 -51q-106 0 -163.5 62.5t-57.5 187.5q0 114 44.5 218t127.5 170.5t182 66.5q94 0 158 -45l-18 -42 q-56 49 -147 49q-88 0 -159 -62t-107 -155t-36 -193q0 -219 191 -219q72 0 140 30l15 73q17 83 24 147z" />
  235. <glyph unicode="&#x11f;" horiz-adv-x="415" d="M394 727l22 -3q-23 -57 -63 -89.5t-85 -32.5t-69.5 32.5t-20.5 89.5l23 3q2 -39 23.5 -60.5t57.5 -21.5q33 0 62.5 22t49.5 60zM120 -255q-76 0 -117.5 32.5t-41.5 85.5q0 69 78 118l14 -16q-49 -47 -49 -94q0 -39 33 -64.5t91 -25.5q69 0 113 32.5t44 74.5 q0 25 -19.5 44.5t-65.5 42.5q-3 2 -14 7t-14.5 7t-12.5 6.5t-12.5 7l-10.5 7.5t-9.5 8.5t-6 8.5t-5 10.5t-1.5 11.5q0 39 82 101v1q-8 -1 -9 -1q-58 0 -87.5 35t-29.5 94q0 91 58.5 158.5t142.5 67.5q107 0 151 10q5 -8 5 -21q0 -26 -37 -26q-23 0 -73 12v-1q48 -31 48 -105 q0 -53 -21.5 -99.5t-52 -77.5t-61 -56t-52 -45t-21.5 -35q0 -4 1 -7.5t4 -7t5.5 -6.5t7 -6l7.5 -5t8.5 -5t7.5 -4l8 -4t7 -3q61 -29 88 -56t27 -61q0 -57 -56.5 -104t-151.5 -47zM325 370q0 47 -20 74t-55 27q-53 0 -96.5 -59.5t-43.5 -129.5q0 -47 21 -72t57 -25 q57 0 97 58t40 127z" />
  236. <glyph unicode="&#x120;" horiz-adv-x="639" d="M498 857q0 -22 -15 -38t-36 -16q-32 0 -32 29q0 20 16 36.5t36 16.5q31 0 31 -28zM563 288l4 -5l-53 -242q-77 -51 -193 -51q-106 0 -163.5 62.5t-57.5 187.5q0 114 44.5 218t127.5 170.5t182 66.5q94 0 158 -45l-18 -42q-56 49 -147 49q-88 0 -159 -62t-107 -155 t-36 -193q0 -219 191 -219q72 0 140 30l15 73q17 83 24 147z" />
  237. <glyph unicode="&#x121;" horiz-adv-x="415" d="M335 682q0 -24 -15 -42.5t-34 -18.5q-27 0 -27 30q0 23 15.5 41.5t33.5 18.5q27 0 27 -29zM120 -255q-76 0 -117.5 32.5t-41.5 85.5q0 69 78 118l14 -16q-49 -47 -49 -94q0 -39 33 -64.5t91 -25.5q69 0 113 32.5t44 74.5q0 25 -19.5 44.5t-65.5 42.5q-3 2 -14 7t-14.5 7 t-12.5 6.5t-12.5 7l-10.5 7.5t-9.5 8.5t-6 8.5t-5 10.5t-1.5 11.5q0 39 82 101v1q-8 -1 -9 -1q-58 0 -87.5 35t-29.5 94q0 91 58.5 158.5t142.5 67.5q107 0 151 10q5 -8 5 -21q0 -26 -37 -26q-23 0 -73 12v-1q48 -31 48 -105q0 -53 -21.5 -99.5t-52 -77.5t-61 -56t-52 -45 t-21.5 -35q0 -4 1 -7.5t4 -7t5.5 -6.5t7 -6l7.5 -5t8.5 -5t7.5 -4l8 -4t7 -3q61 -29 88 -56t27 -61q0 -57 -56.5 -104t-151.5 -47zM325 370q0 47 -20 74t-55 27q-53 0 -96.5 -59.5t-43.5 -129.5q0 -47 21 -72t57 -25q57 0 97 58t40 127z" />
  238. <glyph unicode="&#x122;" horiz-adv-x="639" d="M563 288l4 -5l-53 -242q-77 -51 -193 -51q-106 0 -163.5 62.5t-57.5 187.5q0 114 44.5 218t127.5 170.5t182 66.5q94 0 158 -45l-18 -42q-56 49 -147 49q-88 0 -159 -62t-107 -155t-36 -193q0 -219 191 -219q72 0 140 30l15 73q17 83 24 147zM244 -306q37 53 54 94h-2 q-28 0 -28 32q0 21 14.5 40t37.5 19q30 0 30 -32q0 -65 -89 -164z" />
  239. <glyph unicode="&#x123;" horiz-adv-x="415" d="M404 759q-37 -53 -54 -94h2q28 0 28 -32q0 -21 -14.5 -40t-37.5 -19q-30 0 -30 32q0 65 89 164zM120 -255q-76 0 -117.5 32.5t-41.5 85.5q0 69 78 118l14 -16q-49 -47 -49 -94q0 -39 33 -64.5t91 -25.5q69 0 113 32.5t44 74.5q0 25 -19.5 44.5t-65.5 42.5q-3 2 -14 7 t-14.5 7t-12.5 6.5t-12.5 7l-10.5 7.5t-9.5 8.5t-6 8.5t-5 10.5t-1.5 11.5q0 39 82 101v1q-8 -1 -9 -1q-58 0 -87.5 35t-29.5 94q0 91 58.5 158.5t142.5 67.5q107 0 151 10q5 -8 5 -21q0 -26 -37 -26q-23 0 -73 12v-1q48 -31 48 -105q0 -53 -21.5 -99.5t-52 -77.5t-61 -56 t-52 -45t-21.5 -35q0 -4 1 -7.5t4 -7t5.5 -6.5t7 -6l7.5 -5t8.5 -5t7.5 -4l8 -4t7 -3q61 -29 88 -56t27 -61q0 -57 -56.5 -104t-151.5 -47zM325 370q0 47 -20 74t-55 27q-53 0 -96.5 -59.5t-43.5 -129.5q0 -47 21 -72t57 -25q57 0 97 58t40 127z" />
  240. <glyph unicode="&#x124;" horiz-adv-x="713" d="M350 770l-10 13q81 62 138 118l44 5q47 -70 99 -123l-16 -13q-70 55 -113 97q-69 -53 -142 -97zM121 0h-42l114 538q19 93 25 147l46 10l4 -5l-71 -331h372l38 179q18 80 25 147l46 10l4 -5l-147 -690h-42l68 323h-371z" />
  241. <glyph unicode="&#x125;" horiz-adv-x="537" d="M163 830l-10 13q81 62 138 118l44 5q47 -70 99 -123l-16 -13q-70 55 -113 97q-69 -53 -142 -97zM111 0h-40q0 96 61 380l49 229l8 136l49 10q0 -98 -65 -381q-5 -19 -7 -29h2q35 78 89.5 119t110.5 41q45 0 69.5 -25.5t24.5 -70.5q0 -26 -4.5 -50.5t-29.5 -140.5 q-27 -127 -27 -218h-40q0 86 34 238q27 124 27 162q0 69 -65 69q-68 0 -124 -66t-87.5 -172.5t-34.5 -230.5z" />
  242. <glyph unicode="&#x126;" horiz-adv-x="713" d="M121 0h-42l106 498h-86l6 30h86l2 10q19 93 25 147l46 10l4 -5l-35 -162h372l2 10q18 80 25 147l46 10l4 -5l-35 -162h78l-6 -30h-78l-106 -498h-42l68 323h-371zM197 359h372l30 139h-372z" />
  243. <glyph unicode="&#x127;" horiz-adv-x="537" d="M111 0h-40q0 96 61 380l45 211h-86l6 30h85l7 124l49 10q0 -53 -13 -134h232l-6 -30h-231q-7 -37 -54 -246h2q35 78 89.5 119t110.5 41q45 0 69.5 -25.5t24.5 -70.5q0 -26 -4.5 -50.5t-29.5 -140.5q-27 -127 -27 -218h-40q0 86 34 238q27 124 27 162q0 69 -65 69 q-68 0 -124 -66t-87.5 -172.5t-34.5 -230.5z" />
  244. <glyph unicode="&#x128;" horiz-adv-x="299" d="M219 890q29 0 68 -28t61 -28q40 0 82 57l15 -3q-13 -37 -43.5 -64.5t-66.5 -27.5q-30 0 -69 28t-61 28q-40 0 -82 -57l-15 3q13 35 43 63.5t68 28.5zM121 0h-42l114 538q18 80 25 147l46 10l4 -5z" />
  245. <glyph unicode="&#x129;" horiz-adv-x="241" d="M155 714q21 0 45 -28t38 -28q28 0 60 57l15 -3q-9 -32 -35 -62t-53 -30q-21 0 -45.5 28t-38.5 28q-28 0 -60 -57l-15 3q10 33 35.5 62.5t53.5 29.5zM111 0h-40q0 96 37 267l20 92l8 136l49 10q0 -73 -37 -248t-37 -257z" />
  246. <glyph unicode="&#x12a;" horiz-adv-x="299" d="M144 817l8 39h254l-8 -39h-254zM121 0h-42l114 538q18 80 25 147l46 10l4 -5z" />
  247. <glyph unicode="&#x12b;" horiz-adv-x="241" d="M78 646l6 34h198l-6 -34h-198zM111 0h-40q0 96 37 267l20 92l8 136l49 10q0 -73 -37 -248t-37 -257z" />
  248. <glyph unicode="&#x12c;" horiz-adv-x="299" d="M372 890l22 -3q-22 -48 -60 -75t-84 -27q-45 0 -70.5 27.5t-23.5 74.5l23 3q4 -29 26.5 -45.5t58.5 -16.5q70 0 108 62zM121 0h-42l114 538q18 80 25 147l46 10l4 -5z" />
  249. <glyph unicode="&#x12d;" horiz-adv-x="241" d="M271 730l23 -3q-23 -58 -58 -90t-75 -32q-39 0 -59.5 32.5t-15.5 89.5l22 3q1 -38 18.5 -60t48.5 -22q27 0 53 22t43 60zM111 0h-40q0 96 37 267l20 92l8 136l49 10q0 -73 -37 -248t-37 -257z" />
  250. <glyph unicode="&#x12e;" horiz-adv-x="299" d="M121 0q-83 -76 -83 -133q0 -46 47 -46q23 0 58 12l4 -22q-34 -23 -79 -23q-36 0 -55.5 17t-19.5 48q0 71 96 147h-10l114 538q18 80 25 147l46 10l4 -5z" />
  251. <glyph unicode="&#x12f;" horiz-adv-x="241" d="M227 682q0 -24 -15 -42.5t-34 -18.5q-27 0 -27 30q0 23 15.5 41.5t33.5 18.5q27 0 27 -29zM111 0q-81 -73 -81 -130q0 -49 47 -49q23 0 58 12l4 -22q-34 -23 -79 -23q-36 0 -55.5 17.5t-19.5 50.5q0 71 93 144h-7q0 96 37 267l20 92l8 136l49 10q0 -73 -37 -248t-37 -257 z" />
  252. <glyph unicode="&#x130;" horiz-adv-x="299" d="M318 857q0 -22 -15 -38t-36 -16q-32 0 -32 29q0 20 16 36.5t36 16.5q31 0 31 -28zM121 0h-42l114 538q18 80 25 147l46 10l4 -5z" />
  253. <glyph unicode="&#x131;" horiz-adv-x="241" d="M111 0h-40q0 96 37 267l20 92l8 136l49 10q0 -73 -37 -248t-37 -257z" />
  254. <glyph unicode="&#x132;" horiz-adv-x="568" d="M121 0h-42l114 538q18 80 25 147l46 10l4 -5zM233 -182l-10 26q104 51 135 199l105 495q17 80 24 147l46 10l4 -5l-137 -647q-35 -166 -167 -225z" />
  255. <glyph unicode="&#x133;" horiz-adv-x="459" d="M227 682q0 -24 -15 -42.5t-34 -18.5q-27 0 -27 30q0 23 15.5 41.5t33.5 18.5q27 0 27 -29zM460 682q0 -24 -15 -42.5t-34 -18.5q-27 0 -27 30q0 23 15.5 41.5t33.5 18.5q27 0 27 -29zM111 0h-40q0 96 37 267l20 92l8 136l49 10q0 -73 -37 -248t-37 -257zM171 -255l-15 21 q91 52 119 182l88 411l8 136l49 10q0 -19 -1 -36.5t-5.5 -45.5t-8.5 -50.5t-14 -72t-18 -87t-25.5 -119t-31.5 -146.5q-29 -132 -145 -203z" />
  256. <glyph unicode="&#x134;" horiz-adv-x="269" d="M115 770l-10 13q81 62 138 118l44 5q47 -70 99 -123l-16 -13q-70 55 -113 97q-69 -53 -142 -97zM-66 -182l-10 26q104 51 135 199l105 495q17 80 24 147l46 10l4 -5l-137 -647q-35 -166 -167 -225z" />
  257. <glyph unicode="&#x135;" horiz-adv-x="218" d="M84 586l-8 10q62 86 103 154l44 5q25 -92 48 -159l-12 -10q-33 52 -67 121q-78 -91 -108 -121zM-70 -255l-15 21q91 52 119 182l88 411l8 136l49 10q0 -19 -1 -36.5t-5.5 -45.5t-8.5 -50.5t-14 -72t-18 -87t-25.5 -119t-31.5 -146.5q-29 -132 -145 -203z" />
  258. <glyph unicode="&#x136;" horiz-adv-x="598" d="M194 538q17 83 24 147l44 10l4 -5l-70 -331h109q102 112 308 336l25 -13l4 -5l-305 -333l183 -344l-43 -10l-177 333h-112l-69 -323h-40zM161 -306q37 53 54 94h-2q-28 0 -28 32q0 21 14.5 40t37.5 19q30 0 30 -32q0 -65 -89 -164z" />
  259. <glyph unicode="&#x137;" horiz-adv-x="474" d="M449 429q0 -60 -58 -119.5t-139 -100.5q76 -132 149 -209h-52q-73 85 -144 225q201 102 201 196q0 48 -47 48q-57 0 -114.5 -74t-94 -183t-39.5 -212h-40q0 96 61 380l49 229l8 136l49 10q0 -34 -4.5 -75.5t-15 -95t-19 -91.5t-24.5 -107t-23 -100h2q38 104 98 161.5 t121 57.5q37 0 56.5 -21t19.5 -55zM132 -306q37 53 54 94h-2q-28 0 -28 32q0 21 14.5 40t37.5 19q30 0 30 -32q0 -65 -89 -164z" />
  260. <glyph unicode="&#x138;" horiz-adv-x="474" d="M349 0q-54 64 -91 145t-47 143q-44 -77 -72 -158.5t-28 -129.5h-40q0 96 37 267l20 92l8 136l49 10q0 -33 -5.5 -76t-11 -72t-18 -87.5t-16.5 -79.5h3q49 142 125 228.5t155 86.5q33 0 63 -15l-21 -38q-20 17 -55 17q-75 0 -162 -129q6 -71 50 -166t109 -174h-52z" />
  261. <glyph unicode="&#x139;" horiz-adv-x="504" d="M516 865l-3 -8q-108 -58 -241 -78l-3 17q144 50 223 100zM121 0h-42l115 539q17 84 24 146l46 10l4 -5zM429 39l-8 -39h-300l8 35z" />
  262. <glyph unicode="&#x13a;" horiz-adv-x="240" d="M423 914l-3 -8q-108 -58 -241 -78l-3 17q144 50 223 100zM111 0h-40q0 96 61 380l49 229l8 136l49 10q0 -94 -63.5 -371t-63.5 -384z" />
  263. <glyph unicode="&#x13b;" horiz-adv-x="504" d="M121 0h-42l115 539q17 84 24 146l46 10l4 -5zM429 39l-8 -39h-300l8 35zM114 -306q37 53 54 94h-2q-28 0 -28 32q0 21 14.5 40t37.5 19q30 0 30 -32q0 -65 -89 -164z" />
  264. <glyph unicode="&#x13c;" horiz-adv-x="240" d="M111 0h-40q0 96 61 380l49 229l8 136l49 10q0 -94 -63.5 -371t-63.5 -384zM-4 -306q37 53 54 94h-2q-28 0 -28 32q0 21 14.5 40t37.5 19q30 0 30 -32q0 -65 -89 -164z" />
  265. <glyph unicode="&#x13d;" horiz-adv-x="504" d="M476 727l5 -6q-29 -102 -109 -212l-15 6q59 122 76 206zM121 0h-42l115 539q17 84 24 146l46 10l4 -5zM429 39l-8 -39h-300l8 35z" />
  266. <glyph unicode="&#x13e;" horiz-adv-x="240" d="M111 0h-40q0 96 61 380l49 229l8 136l49 10q0 -94 -63.5 -371t-63.5 -384zM403 755l5 -6q-29 -102 -109 -212l-15 6q59 122 76 206z" />
  267. <glyph unicode="&#x13f;" horiz-adv-x="600" d="M121 0h-42l115 539q17 84 24 146l46 10l4 -5zM403 358q0 -22 -17 -40t-37 -18q-14 0 -23.5 9t-9.5 24q0 22 17.5 39.5t37.5 17.5q14 0 23 -9t9 -23zM429 39l-8 -39h-300l8 35z" />
  268. <glyph unicode="&#x140;" horiz-adv-x="414" d="M111 0h-40q0 96 61 380l49 229l8 136l49 10q0 -94 -63.5 -371t-63.5 -384zM354 328q0 -22 -17 -40t-37 -18q-14 0 -23.5 9t-9.5 24q0 22 17.5 39.5t37.5 17.5q14 0 23 -9t9 -23z" />
  269. <glyph unicode="&#x141;" horiz-adv-x="504" d="M121 0h-42l67 314l-139 -69l-10 29l157 78l40 187q17 84 24 146l46 10l4 -5l-67 -315l132 66l11 -29l-151 -75zM429 39l-8 -39h-300l8 35z" />
  270. <glyph unicode="&#x142;" horiz-adv-x="240" d="M111 0h-40q0 96 61 380l1 4l-136 -67l-10 29l154 77l40 186l8 136l49 10q0 -89 -49 -309l134 67l11 -29l-154 -76q-69 -298 -69 -408z" />
  271. <glyph unicode="&#x143;" horiz-adv-x="728" d="M605 865l-3 -8q-108 -58 -241 -78l-3 17q144 50 223 100zM395 384q14 -34 38.5 -91.5t36.5 -87t27 -72.5t25 -82h1q16 95 99 487q18 80 25 147l46 10l4 -5l-147 -690h-45q-22 52 -65 155.5t-64 155.5q-10 24 -30.5 73.5t-29 70t-22 56t-23 64t-18.5 59.5h-1 q-18 -108 -50 -252l-81 -382h-42l114 538q18 80 25 147l48 10q35 -83 129 -311z" />
  272. <glyph unicode="&#x144;" horiz-adv-x="537" d="M447 736l1 -8q-79 -87 -194 -151l-7 13q114 96 164 162zM111 0h-40q0 22 1.5 45.5t3.5 41.5t6.5 45.5t6.5 41t9 46.5t9 43t10.5 49t10.5 47l8 136l49 10q0 -67 -22 -160h2q36 78 91.5 119t112.5 41q45 0 69 -25t24 -69q0 -41 -32 -185q-18 -82 -23.5 -124.5t-5.5 -101.5 h-40q0 73 34 245q22 112 22 150q0 74 -63 74q-64 0 -119 -64t-88 -172t-36 -233z" />
  273. <glyph unicode="&#x145;" horiz-adv-x="728" d="M395 384q14 -34 38.5 -91.5t36.5 -87t27 -72.5t25 -82h1q16 95 99 487q18 80 25 147l46 10l4 -5l-147 -690h-45q-22 52 -65 155.5t-64 155.5q-10 24 -30.5 73.5t-29 70t-22 56t-23 64t-18.5 59.5h-1q-18 -108 -50 -252l-81 -382h-42l114 538q18 80 25 147l48 10 q35 -83 129 -311zM225 -306q37 53 54 94h-2q-28 0 -28 32q0 21 14.5 40t37.5 19q30 0 30 -32q0 -65 -89 -164z" />
  274. <glyph unicode="&#x146;" horiz-adv-x="537" d="M111 0h-40q0 22 1.5 45.5t3.5 41.5t6.5 45.5t6.5 41t9 46.5t9 43t10.5 49t10.5 47l8 136l49 10q0 -67 -22 -160h2q36 78 91.5 119t112.5 41q45 0 69 -25t24 -69q0 -41 -32 -185q-18 -82 -23.5 -124.5t-5.5 -101.5h-40q0 73 34 245q22 112 22 150q0 74 -63 74 q-64 0 -119 -64t-88 -172t-36 -233zM147 -306q37 53 54 94h-2q-28 0 -28 32q0 21 14.5 40t37.5 19q30 0 30 -32q0 -65 -89 -164z" />
  275. <glyph unicode="&#x147;" horiz-adv-x="728" d="M612 906l10 -13q-81 -62 -138 -118l-44 -5q-47 70 -99 123l16 13q70 -55 113 -97q69 53 142 97zM395 384q14 -34 38.5 -91.5t36.5 -87t27 -72.5t25 -82h1q16 95 99 487q18 80 25 147l46 10l4 -5l-147 -690h-45q-22 52 -65 155.5t-64 155.5q-10 24 -30.5 73.5t-29 70 t-22 56t-23 64t-18.5 59.5h-1q-18 -108 -50 -252l-81 -382h-42l114 538q18 80 25 147l48 10q35 -83 129 -311z" />
  276. <glyph unicode="&#x148;" horiz-adv-x="537" d="M466 750l11 -11q-82 -87 -133 -154l-44 -5q-31 79 -78 159l15 11q47 -57 94 -126q56 56 135 126zM111 0h-40q0 22 1.5 45.5t3.5 41.5t6.5 45.5t6.5 41t9 46.5t9 43t10.5 49t10.5 47l8 136l49 10q0 -67 -22 -160h2q36 78 91.5 119t112.5 41q45 0 69 -25t24 -69 q0 -41 -32 -185q-18 -82 -23.5 -124.5t-5.5 -101.5h-40q0 73 34 245q22 112 22 150q0 74 -63 74q-64 0 -119 -64t-88 -172t-36 -233z" />
  277. <glyph unicode="&#x149;" horiz-adv-x="606" d="M104 500q57 87 84 167q-14 0 -22.5 9t-8.5 23q0 23 17 40.5t39 17.5q30 0 30 -33q0 -36 -39.5 -109t-83.5 -125zM180 0h-40q0 22 1.5 45.5t3.5 41.5t6.5 45.5t6.5 41t9 46.5t9 43t10.5 49t10.5 47l8 136l49 10q0 -67 -22 -160h2q36 78 91.5 119t112.5 41q45 0 69 -25 t24 -69q0 -41 -32 -185q-18 -82 -23.5 -124.5t-5.5 -101.5h-40q0 73 34 245q22 112 22 150q0 74 -63 74q-64 0 -119 -64t-88 -172t-36 -233z" />
  278. <glyph unicode="&#x14a;" horiz-adv-x="728" d="M392 -182l-9 26q94 48 123 152q-58 142 -130 315q-9 23 -28 67.5t-26 61.5t-19.5 49t-19 50.5t-15 44t-15.5 50.5h-1q-14 -81 -50 -252l-81 -382h-42l114 538q19 90 25 147l48 10q113 -271 129 -311q15 -36 39.5 -95t36.5 -88.5t26.5 -71t24.5 -78.5h1q16 91 99 486 q16 74 25 148l46 10l4 -5l-138 -647q-37 -168 -167 -225z" />
  279. <glyph unicode="&#x14b;" horiz-adv-x="514" d="M111 0h-40q1 108 57 359l8 136l49 10q0 -67 -22 -160h2q36 78 91.5 119t111.5 41q57 0 80 -41.5t8 -113.5l-42 -199q-38 -179 -60.5 -235.5t-87.5 -118.5l-15 21q67 76 90 182l66 309q17 84 6 122t-58 38q-67 0 -123 -67t-87 -174t-34 -228z" />
  280. <glyph unicode="&#x14c;" horiz-adv-x="689" d="M346 817l8 39h254l-8 -39h-254zM630 448q0 -111 -42.5 -215.5t-122 -173.5t-174.5 -69q-90 0 -141.5 62.5t-51.5 178.5q0 111 43.5 217t123.5 176.5t174 70.5q89 0 140 -64.5t51 -182.5zM143 240q0 -100 41 -156t118 -56q83 0 149.5 64t100 158.5t33.5 193.5 q0 101 -39 157t-115 56q-82 0 -150 -65t-103 -160t-35 -192z" />
  281. <glyph unicode="&#x14d;" horiz-adv-x="494" d="M197 646l7 34h264l-7 -34h-264zM436 337q0 -82 -30 -160.5t-88.5 -132.5t-129.5 -54q-62 0 -95.5 43t-33.5 126t30.5 162t88.5 131.5t128 52.5q62 0 96 -42.5t34 -125.5zM102 164q0 -138 97 -138q57 0 103 48.5t68.5 117.5t22.5 139q0 138 -97 138q-57 0 -103 -48.5 t-68.5 -117.5t-22.5 -139z" />
  282. <glyph unicode="&#x14e;" horiz-adv-x="689" d="M574 890l22 -3q-22 -48 -60 -75t-84 -27q-45 0 -70.5 27.5t-23.5 74.5l23 3q4 -29 26.5 -45.5t58.5 -16.5q70 0 108 62zM630 448q0 -111 -42.5 -215.5t-122 -173.5t-174.5 -69q-90 0 -141.5 62.5t-51.5 178.5q0 111 43.5 217t123.5 176.5t174 70.5q89 0 140 -64.5 t51 -182.5zM143 240q0 -100 41 -156t118 -56q83 0 149.5 64t100 158.5t33.5 193.5q0 101 -39 157t-115 56q-82 0 -150 -65t-103 -160t-35 -192z" />
  283. <glyph unicode="&#x14f;" horiz-adv-x="494" d="M430 727l22 -3q-23 -57 -63 -89.5t-85 -32.5t-69.5 32.5t-20.5 89.5l23 3q2 -39 23.5 -60.5t57.5 -21.5q33 0 62.5 22t49.5 60zM436 337q0 -82 -30 -160.5t-88.5 -132.5t-129.5 -54q-62 0 -95.5 43t-33.5 126t30.5 162t88.5 131.5t128 52.5q62 0 96 -42.5t34 -125.5z M102 164q0 -138 97 -138q57 0 103 48.5t68.5 117.5t22.5 139q0 138 -97 138q-57 0 -103 -48.5t-68.5 -117.5t-22.5 -139z" />
  284. <glyph unicode="&#x150;" horiz-adv-x="689" d="M486 865l-3 -8q-86 -58 -191 -78l-3 17q113 51 173 100zM666 865l-3 -8q-86 -58 -191 -78l-3 17q113 51 173 100zM630 448q0 -111 -42.5 -215.5t-122 -173.5t-174.5 -69q-90 0 -141.5 62.5t-51.5 178.5q0 111 43.5 217t123.5 176.5t174 70.5q89 0 140 -64.5t51 -182.5z M143 240q0 -100 41 -156t118 -56q83 0 149.5 64t100 158.5t33.5 193.5q0 101 -39 157t-115 56q-82 0 -150 -65t-103 -160t-35 -192z" />
  285. <glyph unicode="&#x151;" horiz-adv-x="494" d="M385 742l1 -8q-81 -90 -189 -154l-7 13q103 82 164 162zM499 742l1 -8q-79 -89 -189 -154l-7 13q103 82 164 162zM436 337q0 -82 -30 -160.5t-88.5 -132.5t-129.5 -54q-62 0 -95.5 43t-33.5 126t30.5 162t88.5 131.5t128 52.5q62 0 96 -42.5t34 -125.5zM102 164 q0 -138 97 -138q57 0 103 48.5t68.5 117.5t22.5 139q0 138 -97 138q-57 0 -103 -48.5t-68.5 -117.5t-22.5 -139z" />
  286. <glyph unicode="&#x152;" horiz-adv-x="925" d="M652 460q0 -52 -9 -102l204 2l-9 -39l-203 2q-23 -93 -73.5 -168.5t-117.5 -118.5l386 3l-8 -39h-456q-33 -10 -71 -10q-91 0 -145 60.5t-54 170.5q0 121 50.5 231t134 176.5t176.5 66.5q36 0 65 -10h431l4 -5l-8 -34l-366 3q69 -61 69 -189zM142 230q0 -95 43.5 -148.5 t121.5 -53.5q121 0 210.5 127.5t89.5 300.5q0 94 -41 147.5t-117 53.5q-121 0 -214 -129t-93 -298z" />
  287. <glyph unicode="&#x153;" horiz-adv-x="764" d="M681 119l18 -13q-30 -54 -79 -85t-100 -31q-54 0 -92 35t-48 98q-76 -133 -192 -133q-62 0 -95.5 43t-33.5 126t30.5 162t88.5 131.5t128 52.5q55 0 88 -33.5t40 -99.5q36 60 86 96.5t104 36.5q47 0 76 -27.5t29 -74.5q0 -70 -71 -120t-234 -58q-5 -30 -5 -53 q0 -66 29 -106t80 -40q78 0 153 93zM102 164q0 -138 97 -138q57 0 103 48.5t68.5 117.5t22.5 139q0 138 -97 138q-57 0 -103 -48.5t-68.5 -117.5t-22.5 -139zM615 469q-60 0 -111.5 -64.5t-73.5 -150.5q140 9 198 53t58 95q0 30 -19.5 48.5t-51.5 18.5z" />
  288. <glyph unicode="&#x154;" horiz-adv-x="571" d="M550 865l-3 -8q-108 -58 -241 -78l-3 17q144 50 223 100zM121 0h-42l115 538q17 83 24 147h140q91 0 142.5 -42.5t51.5 -115.5q0 -85 -54.5 -146.5t-143.5 -82.5l134 -298l-41 -10q-23 49 -67 148t-67 149h-131zM348 650h-88l-70 -328h85q104 0 167.5 54.5t63.5 146.5 q0 58 -39 92.5t-119 34.5z" />
  289. <glyph unicode="&#x155;" horiz-adv-x="368" d="M375 736l1 -8q-79 -87 -194 -151l-7 13q114 96 164 162zM111 0h-40q0 96 37 267l20 92l8 136l49 10q0 -67 -25 -180h2q36 92 84 136t101 44q38 0 62 -19l-25 -34q-23 14 -49 14q-58 0 -110.5 -74.5t-82 -181.5t-31.5 -210z" />
  290. <glyph unicode="&#x156;" horiz-adv-x="571" d="M121 0h-42l115 538q17 83 24 147h140q91 0 142.5 -42.5t51.5 -115.5q0 -85 -54.5 -146.5t-143.5 -82.5l134 -298l-41 -10q-23 49 -67 148t-67 149h-131zM348 650h-88l-70 -328h85q104 0 167.5 54.5t63.5 146.5q0 58 -39 92.5t-119 34.5zM148 -306q37 53 54 94h-2 q-28 0 -28 32q0 21 14.5 40t37.5 19q30 0 30 -32q0 -65 -89 -164z" />
  291. <glyph unicode="&#x157;" horiz-adv-x="368" d="M111 0h-40q0 96 37 267l20 92l8 136l49 10q0 -67 -25 -180h2q36 92 84 136t101 44q38 0 62 -19l-25 -34q-23 14 -49 14q-58 0 -110.5 -74.5t-82 -181.5t-31.5 -210zM-4 -306q37 53 54 94h-2q-28 0 -28 32q0 21 14.5 40t37.5 19q30 0 30 -32q0 -65 -89 -164z" />
  292. <glyph unicode="&#x158;" horiz-adv-x="571" d="M557 906l10 -13q-81 -62 -138 -118l-44 -5q-47 70 -99 123l16 13q70 -55 113 -97q69 53 142 97zM121 0h-42l115 538q17 83 24 147h140q91 0 142.5 -42.5t51.5 -115.5q0 -85 -54.5 -146.5t-143.5 -82.5l134 -298l-41 -10q-23 49 -67 148t-67 149h-131zM348 650h-88 l-70 -328h85q104 0 167.5 54.5t63.5 146.5q0 58 -39 92.5t-119 34.5z" />
  293. <glyph unicode="&#x159;" horiz-adv-x="368" d="M394 750l11 -11q-82 -87 -133 -154l-44 -5q-31 79 -78 159l15 11q47 -57 94 -126q56 56 135 126zM111 0h-40q0 96 37 267l20 92l8 136l49 10q0 -67 -25 -180h2q36 92 84 136t101 44q38 0 62 -19l-25 -34q-23 14 -49 14q-58 0 -110.5 -74.5t-82 -181.5t-31.5 -210z" />
  294. <glyph unicode="&#x15a;" horiz-adv-x="493" d="M496 865l-3 -8q-108 -58 -241 -78l-3 17q144 50 223 100zM417 190q0 -87 -69 -143.5t-177 -56.5q-92 0 -158 35l17 43q60 -40 150 -40q83 0 138 45t55 111q0 28 -9.5 50t-31.5 41t-36.5 28.5t-44.5 27.5l-37.5 22.5t-33.5 24t-31 31t-18.5 37.5t-8.5 49q0 84 68.5 142 t174.5 58q90 0 146 -33l-17 -43q-53 38 -136 38q-82 0 -136.5 -43.5t-54.5 -107.5q0 -33 19 -61t39 -42t59 -37q2 -1 3.5 -2t4 -2.5t4.5 -2.5q27 -16 43.5 -28t37 -33t30.5 -48t10 -60z" />
  295. <glyph unicode="&#x15b;" horiz-adv-x="425" d="M360 736l1 -8q-79 -87 -194 -151l-7 13q114 96 164 162zM376 479l-17 -41q-48 31 -103 31t-89.5 -28t-34.5 -71q0 -31 21 -54t51.5 -38.5t61 -32t51.5 -44t21 -65.5q0 -62 -51.5 -104t-130.5 -42q-73 0 -127 32l17 41q50 -37 120 -37q53 0 90 29.5t37 72.5 q0 30 -21.5 52.5t-51.5 37.5t-60.5 31t-52 43.5t-21.5 65.5q0 64 53.5 105.5t128.5 41.5q58 0 108 -26z" />
  296. <glyph unicode="&#x15c;" horiz-adv-x="493" d="M242 770l-10 13q81 62 138 118l44 5q47 -70 99 -123l-16 -13q-70 55 -113 97q-69 -53 -142 -97zM417 190q0 -87 -69 -143.5t-177 -56.5q-92 0 -158 35l17 43q60 -40 150 -40q83 0 138 45t55 111q0 28 -9.5 50t-31.5 41t-36.5 28.5t-44.5 27.5l-37.5 22.5t-33.5 24t-31 31 t-18.5 37.5t-8.5 49q0 84 68.5 142t174.5 58q90 0 146 -33l-17 -43q-53 38 -136 38q-82 0 -136.5 -43.5t-54.5 -107.5q0 -33 19 -61t39 -42t59 -37q2 -1 3.5 -2t4 -2.5t4.5 -2.5q27 -16 43.5 -28t37 -33t30.5 -48t10 -60z" />
  297. <glyph unicode="&#x15d;" horiz-adv-x="425" d="M145 579l-11 11q82 87 133 154l44 5q31 -79 78 -159l-15 -11q-47 57 -94 126q-56 -56 -135 -126zM376 479l-17 -41q-48 31 -103 31t-89.5 -28t-34.5 -71q0 -31 21 -54t51.5 -38.5t61 -32t51.5 -44t21 -65.5q0 -62 -51.5 -104t-130.5 -42q-73 0 -127 32l17 41 q50 -37 120 -37q53 0 90 29.5t37 72.5q0 30 -21.5 52.5t-51.5 37.5t-60.5 31t-52 43.5t-21.5 65.5q0 64 53.5 105.5t128.5 41.5q58 0 108 -26z" />
  298. <glyph unicode="&#x15e;" horiz-adv-x="493" d="M250 -115q0 -37 -45 -63.5t-99 -33.5l-1 22q102 23 102 66q0 27 -55 33l-5 11l38 70h-14q-92 0 -158 35l17 43q60 -40 150 -40q83 0 138 45t55 111q0 28 -9.5 50t-31.5 41t-36.5 28.5t-44.5 27.5l-37.5 22.5t-33.5 24t-31 31t-18.5 37.5t-8.5 49q0 84 68.5 142t174.5 58 q90 0 146 -33l-17 -43q-53 38 -136 38q-82 0 -136.5 -43.5t-54.5 -107.5q0 -33 19 -61t39 -42t59 -37q2 -1 3.5 -2t4 -2.5t4.5 -2.5q27 -16 43.5 -28t37 -33t30.5 -48t10 -60q0 -77 -55 -131t-146 -66l-30 -55q64 -10 64 -53z" />
  299. <glyph unicode="&#x15f;" horiz-adv-x="425" d="M234 -115q0 -37 -45 -63.5t-99 -33.5l-1 22q102 23 102 66q0 27 -55 33l-5 11l38 70h-13q-73 0 -127 32l17 41q50 -37 120 -37q53 0 90 29.5t37 72.5q0 30 -21.5 52.5t-51.5 37.5t-60.5 31t-52 43.5t-21.5 65.5q0 64 53.5 105.5t128.5 41.5q58 0 108 -26l-17 -41 q-48 31 -103 31t-89.5 -28t-34.5 -71q0 -31 21 -54t51.5 -38.5t61 -32t51.5 -44t21 -65.5q0 -52 -37.5 -91.5t-99.5 -50.5l-31 -56q64 -10 64 -53z" />
  300. <glyph unicode="&#x160;" horiz-adv-x="493" d="M503 906l10 -13q-81 -62 -138 -118l-44 -5q-47 70 -99 123l16 13q70 -55 113 -97q69 53 142 97zM417 190q0 -87 -69 -143.5t-177 -56.5q-92 0 -158 35l17 43q60 -40 150 -40q83 0 138 45t55 111q0 28 -9.5 50t-31.5 41t-36.5 28.5t-44.5 27.5l-37.5 22.5t-33.5 24t-31 31 t-18.5 37.5t-8.5 49q0 84 68.5 142t174.5 58q90 0 146 -33l-17 -43q-53 38 -136 38q-82 0 -136.5 -43.5t-54.5 -107.5q0 -33 19 -61t39 -42t59 -37q2 -1 3.5 -2t4 -2.5t4.5 -2.5q27 -16 43.5 -28t37 -33t30.5 -48t10 -60z" />
  301. <glyph unicode="&#x161;" horiz-adv-x="425" d="M379 750l11 -11q-82 -87 -133 -154l-44 -5q-31 79 -78 159l15 11q47 -57 94 -126q56 56 135 126zM376 479l-17 -41q-48 31 -103 31t-89.5 -28t-34.5 -71q0 -31 21 -54t51.5 -38.5t61 -32t51.5 -44t21 -65.5q0 -62 -51.5 -104t-130.5 -42q-73 0 -127 32l17 41 q50 -37 120 -37q53 0 90 29.5t37 72.5q0 30 -21.5 52.5t-51.5 37.5t-60.5 31t-52 43.5t-21.5 65.5q0 64 53.5 105.5t128.5 41.5q58 0 108 -26z" />
  302. <glyph unicode="&#x162;" horiz-adv-x="491" d="M214 0h-1l-34 -62q64 -10 64 -53q0 -37 -45 -63.5t-99 -33.5l-1 22q102 23 102 66q0 27 -55 33l-5 11l43 80h-11l139 650q-95 0 -217 -5l12 40h465l-6 -40q-117 5 -212 5z" />
  303. <glyph unicode="&#x163;" horiz-adv-x="338" d="M204 -115q0 -37 -45 -63.5t-99 -33.5l-1 22q102 23 102 66q0 27 -55 33l-5 11l39 72q-64 11 -64 86q0 28 42 223q20 96 34 161h-76l6 26l77 7l33 112l30 4l4 -5l-27 -111h135l4 -5l-8 -28h-138q-70 -327 -72 -354q-1 -7 -1 -15q0 -67 62 -67q43 0 86 25l2 -33 q-49 -28 -100 -28l-29 -52q64 -10 64 -53z" />
  304. <glyph unicode="&#x164;" horiz-adv-x="491" d="M502 906l10 -13q-81 -62 -138 -118l-44 -5q-47 70 -99 123l16 13q70 -55 113 -97q69 53 142 97zM214 0h-42l139 650q-95 0 -217 -5l12 40h465l-6 -40q-117 5 -212 5z" />
  305. <glyph unicode="&#x165;" horiz-adv-x="338" d="M432 744l5 -6q-29 -102 -109 -212l-15 6q59 122 76 206zM330 462h-138q-70 -327 -72 -354q-1 -7 -1 -15q0 -67 62 -67q43 0 86 25l2 -33q-49 -28 -104 -28q-89 0 -89 88q0 28 42 223q20 96 34 161h-76l6 26l77 7l33 112l30 4l4 -5l-27 -111h135l4 -5z" />
  306. <glyph unicode="&#x166;" horiz-adv-x="491" d="M214 0h-42l70 328h-159l6 30h159l63 292q-95 0 -217 -5l12 40h465l-6 -40q-117 5 -212 5l-63 -292h159l-6 -30h-159z" />
  307. <glyph unicode="&#x167;" horiz-adv-x="338" d="M296 293h-140q-37 -169 -37 -200q0 -67 62 -67q43 0 86 25l2 -33q-49 -28 -104 -28q-89 0 -89 88q0 29 40 215h-72l4 30h75q5 23 15.5 72.5t13.5 66.5h-76l6 26l77 7l33 112l30 4l4 -5l-27 -111h135l4 -5l-8 -28h-138q-25 -114 -30 -139h138z" />
  308. <glyph unicode="&#x168;" horiz-adv-x="634" d="M391 890q29 0 68 -28t61 -28q40 0 82 57l15 -3q-13 -37 -43.5 -64.5t-66.5 -27.5q-30 0 -69 28t-61 28q-40 0 -82 -57l-15 3q13 35 43 63.5t68 28.5zM87 157q0 41 45.5 245.5t50.5 284.5l54 8v-1q-22 -101 -53 -246q-55 -254 -55 -281q0 -66 40.5 -101.5t106.5 -35.5 q78 0 139 49t80 138q12 54 25.5 118t20 95t14.5 69.5t11.5 56t7.5 39t5.5 34.5t3 27t2.5 31l54 8l-101 -475q-24 -110 -100.5 -170t-175.5 -60q-79 0 -127 43t-48 124z" />
  309. <glyph unicode="&#x169;" horiz-adv-x="510" d="M274 710q26 0 62 -28t55 -28q33 0 75 57l15 -3q-14 -36 -42.5 -64t-60.5 -28q-27 0 -63 28t-55 28q-33 0 -75 -57l-15 3q15 35 43 63.5t61 28.5zM76 145l45 214l8 136l49 10q0 -34 -5 -74.5t-10 -68.5t-15.5 -79t-15.5 -75q-9 -50 -12 -79.5t0 -55t17.5 -36.5t40.5 -11 q64 0 114.5 62t81.5 165q29 129 34 191q3 26 3 51l40 10q0 -35 -5.5 -79t-12 -77t-18 -86.5t-16.5 -80.5q-22 -114 -22 -182h-40q0 61 13 137q-33 -71 -83 -109t-101 -38q-56 0 -80.5 42t-9.5 113z" />
  310. <glyph unicode="&#x16a;" horiz-adv-x="634" d="M316 817l8 39h254l-8 -39h-254zM87 157q0 41 45.5 245.5t50.5 284.5l54 8v-1q-22 -101 -53 -246q-55 -254 -55 -281q0 -66 40.5 -101.5t106.5 -35.5q78 0 139 49t80 138q12 54 25.5 118t20 95t14.5 69.5t11.5 56t7.5 39t5.5 34.5t3 27t2.5 31l54 8l-101 -475 q-24 -110 -100.5 -170t-175.5 -60q-79 0 -127 43t-48 124z" />
  311. <glyph unicode="&#x16b;" horiz-adv-x="510" d="M194 646l7 34h264l-7 -34h-264zM76 145l45 214l8 136l49 10q0 -34 -5 -74.5t-10 -68.5t-15.5 -79t-15.5 -75q-9 -50 -12 -79.5t0 -55t17.5 -36.5t40.5 -11q64 0 114.5 62t81.5 165q29 129 34 191q3 26 3 51l40 10q0 -35 -5.5 -79t-12 -77t-18 -86.5t-16.5 -80.5 q-22 -114 -22 -182h-40q0 61 13 137q-33 -71 -83 -109t-101 -38q-56 0 -80.5 42t-9.5 113z" />
  312. <glyph unicode="&#x16c;" horiz-adv-x="634" d="M544 890l22 -3q-22 -48 -60 -75t-84 -27q-45 0 -70.5 27.5t-23.5 74.5l23 3q4 -29 26.5 -45.5t58.5 -16.5q70 0 108 62zM87 157q0 41 45.5 245.5t50.5 284.5l54 8v-1q-22 -101 -53 -246q-55 -254 -55 -281q0 -66 40.5 -101.5t106.5 -35.5q78 0 139 49t80 138 q12 54 25.5 118t20 95t14.5 69.5t11.5 56t7.5 39t5.5 34.5t3 27t2.5 31l54 8l-101 -475q-24 -110 -100.5 -170t-175.5 -60q-79 0 -127 43t-48 124z" />
  313. <glyph unicode="&#x16d;" horiz-adv-x="510" d="M427 727l22 -3q-23 -57 -63 -89.5t-85 -32.5t-69.5 32.5t-20.5 89.5l23 3q2 -39 23.5 -60.5t57.5 -21.5q33 0 62.5 22t49.5 60zM76 145l45 214l8 136l49 10q0 -34 -5 -74.5t-10 -68.5t-15.5 -79t-15.5 -75q-9 -50 -12 -79.5t0 -55t17.5 -36.5t40.5 -11q64 0 114.5 62 t81.5 165q29 129 34 191q3 26 3 51l40 10q0 -35 -5.5 -79t-12 -77t-18 -86.5t-16.5 -80.5q-22 -114 -22 -182h-40q0 61 13 137q-33 -71 -83 -109t-101 -38q-56 0 -80.5 42t-9.5 113z" />
  314. <glyph unicode="&#x16e;" horiz-adv-x="634" d="M527 852q0 -35 -30.5 -63.5t-68.5 -28.5q-26 0 -44 16t-18 40q0 34 31 62t69 28q27 0 44 -15t17 -39zM401 821q0 -16 9.5 -25t25.5 -9q22 0 39 18t17 41q0 33 -35 33q-22 0 -39 -17.5t-17 -40.5zM87 157q0 41 45.5 245.5t50.5 284.5l54 8v-1q-22 -101 -53 -246 q-55 -254 -55 -281q0 -66 40.5 -101.5t106.5 -35.5q78 0 139 49t80 138q12 54 25.5 118t20 95t14.5 69.5t11.5 56t7.5 39t5.5 34.5t3 27t2.5 31l54 8l-101 -475q-24 -110 -100.5 -170t-175.5 -60q-79 0 -127 43t-48 124z" />
  315. <glyph unicode="&#x16f;" horiz-adv-x="510" d="M407 666q0 -35 -30.5 -63.5t-68.5 -28.5q-26 0 -44 16t-18 40q0 34 31 62t69 28q27 0 44 -15t17 -39zM281 635q0 -16 9.5 -25t25.5 -9q22 0 39 18t17 41q0 33 -35 33q-22 0 -39 -17.5t-17 -40.5zM76 145l45 214l8 136l49 10q0 -34 -5 -74.5t-10 -68.5t-15.5 -79 t-15.5 -75q-9 -50 -12 -79.5t0 -55t17.5 -36.5t40.5 -11q64 0 114.5 62t81.5 165q29 129 34 191q3 26 3 51l40 10q0 -35 -5.5 -79t-12 -77t-18 -86.5t-16.5 -80.5q-22 -114 -22 -182h-40q0 61 13 137q-33 -71 -83 -109t-101 -38q-56 0 -80.5 42t-9.5 113z" />
  316. <glyph unicode="&#x170;" horiz-adv-x="634" d="M456 865l-3 -8q-86 -58 -191 -78l-3 17q113 51 173 100zM636 865l-3 -8q-86 -58 -191 -78l-3 17q113 51 173 100zM87 157q0 41 45.5 245.5t50.5 284.5l54 8v-1q-22 -101 -53 -246q-55 -254 -55 -281q0 -66 40.5 -101.5t106.5 -35.5q78 0 139 49t80 138q12 54 25.5 118 t20 95t14.5 69.5t11.5 56t7.5 39t5.5 34.5t3 27t2.5 31l54 8l-101 -475q-24 -110 -100.5 -170t-175.5 -60q-79 0 -127 43t-48 124z" />
  317. <glyph unicode="&#x171;" horiz-adv-x="510" d="M382 742l1 -8q-81 -90 -189 -154l-7 13q103 82 164 162zM496 742l1 -8q-79 -89 -189 -154l-7 13q103 82 164 162zM76 145l45 214l8 136l49 10q0 -34 -5 -74.5t-10 -68.5t-15.5 -79t-15.5 -75q-9 -50 -12 -79.5t0 -55t17.5 -36.5t40.5 -11q64 0 114.5 62t81.5 165 q29 129 34 191q3 26 3 51l40 10q0 -35 -5.5 -79t-12 -77t-18 -86.5t-16.5 -80.5q-22 -114 -22 -182h-40q0 61 13 137q-33 -71 -83 -109t-101 -38q-56 0 -80.5 42t-9.5 113z" />
  318. <glyph unicode="&#x172;" horiz-adv-x="634" d="M87 157q0 41 45.5 245.5t50.5 284.5l54 8v-1q-22 -101 -53 -246q-55 -254 -55 -281q0 -66 40.5 -101.5t106.5 -35.5q78 0 139 49t80 138q12 54 25.5 118t20 95t14.5 69.5t11.5 56t7.5 39t5.5 34.5t3 27t2.5 31l54 8l-101 -475q-17 -78 -61.5 -131.5t-107.5 -78.5 q-145 -72 -145 -148q0 -41 46 -41q24 0 59 12l4 -22q-34 -23 -79 -23q-75 0 -75 60q0 77 114 144q-20 -2 -31 -2q-79 0 -127 43t-48 124z" />
  319. <glyph unicode="&#x173;" horiz-adv-x="510" d="M76 145l45 214l8 136l49 10q0 -34 -5 -74.5t-10 -68.5t-15.5 -79t-15.5 -75q-9 -50 -12 -79.5t0 -55t17.5 -36.5t40.5 -11q64 0 114.5 62t81.5 165q29 129 34 191q3 26 3 51l40 10q0 -35 -5.5 -79t-12 -77t-18 -86.5t-16.5 -80.5q-22 -114 -22 -182q-139 -71 -139 -142 q0 -37 46 -37q24 0 59 12l4 -22q-34 -23 -79 -23q-35 0 -55 14.5t-20 41.5q0 85 144 156q0 50 13 137q-33 -71 -83 -109t-101 -38q-56 0 -80.5 42t-9.5 113z" />
  320. <glyph unicode="&#x174;" horiz-adv-x="956" d="M473 770l-10 13q81 62 138 118l44 5q47 -70 99 -123l-16 -13q-70 55 -113 97q-69 -53 -142 -97zM197 -5l-78 695l41 5l48 -428q17 -141 14 -215q22 57 117 238l215 401l39 4l48 -428q17 -141 14 -215q26 68 116 235l218 408l31 -5l4 -5l-369 -690h-25l-55 492 q-11 105 -13 151h-1q-26 -58 -77 -151l-262 -492h-25z" />
  321. <glyph unicode="&#x175;" horiz-adv-x="606" d="M249 579l-11 11q82 87 133 154l44 5q31 -79 78 -159l-15 -11q-47 57 -94 126q-56 -56 -135 -126zM595 505q18 0 18 -18q0 -70 -64.5 -217t-154.5 -270h-40q4 207 -14 417h-1q-20 -92 -75 -206t-124 -211h-40q5 269 -32 495l41 7q38 -209 33 -447h1q156 242 178 440h44 q36 -206 31 -440h1q72 110 120 228t59 218q9 4 19 4z" />
  322. <glyph unicode="&#x176;" horiz-adv-x="524" d="M257 770l-10 13q81 62 138 118l44 5q47 -70 99 -123l-16 -13q-70 55 -113 97q-69 -53 -142 -97zM243 256l-124 435l43 4l74 -260q2 -9 12 -42.5t15.5 -59t7.5 -48.5h1q16 30 101 152l182 258l33 -5l4 -5l-308 -433l-54 -252h-42z" />
  323. <glyph unicode="&#x177;" horiz-adv-x="398" d="M149 579l-11 11q82 87 133 154l44 5q31 -79 78 -159l-15 -11q-47 57 -94 126q-56 -56 -135 -126zM387 505q18 0 18 -18q0 -61 -59 -185.5t-140.5 -247.5t-176 -216t-157.5 -93q-37 0 -37 27q0 13 8 23q21 -3 37 -3q96 0 246 210q0 261 -58 493l40 10q59 -217 59 -445h1 q180 263 200 441q9 4 19 4z" />
  324. <glyph unicode="&#x178;" horiz-adv-x="524" d="M522 849q0 -22 -15.5 -39.5t-34.5 -17.5q-14 0 -22 8.5t-8 21.5q0 20 16 37.5t35 17.5q29 0 29 -28zM332 849q0 -22 -15.5 -39.5t-34.5 -17.5q-14 0 -22 8.5t-8 21.5q0 20 16 37.5t35 17.5q29 0 29 -28zM243 256l-124 435l43 4l74 -260q2 -9 12 -42.5t15.5 -59t7.5 -48.5 h1q16 30 101 152l182 258l33 -5l4 -5l-308 -433l-54 -252h-42z" />
  325. <glyph unicode="&#x179;" horiz-adv-x="507" d="M503 865l-3 -8q-108 -58 -241 -78l-3 17q144 50 223 100zM-16 0l-1 25l522 625l-379 -3l11 38h417l4 -25l-522 -625l397 4l-11 -39h-438z" />
  326. <glyph unicode="&#x17a;" horiz-adv-x="392" d="M332 736l1 -8q-79 -87 -194 -151l-7 13q114 96 164 162zM-1 -10l-18 23q135 153 208.5 243.5t128.5 174.5q-86 38 -154 38q-57 0 -97 -58l-21 8q23 50 51 68t69 18q71 0 167 -50q25 43 29 50q28 0 28 -17q0 -30 -105 -166.5t-235 -278.5q10 3 25 3q22 0 75.5 -10 t73.5 -10q54 0 101 61l21 -8q-27 -52 -56.5 -70.5t-72.5 -18.5q-31 0 -90.5 10t-82.5 10q-26 0 -45 -20z" />
  327. <glyph unicode="&#x17b;" horiz-adv-x="507" d="M422 857q0 -22 -15 -38t-36 -16q-32 0 -32 29q0 20 16 36.5t36 16.5q31 0 31 -28zM-16 0l-1 25l522 625l-379 -3l11 38h417l4 -25l-522 -625l397 4l-11 -39h-438z" />
  328. <glyph unicode="&#x17c;" horiz-adv-x="392" d="M272 682q0 -24 -15 -42.5t-34 -18.5q-27 0 -27 30q0 23 15.5 41.5t33.5 18.5q27 0 27 -29zM-1 -10l-18 23q135 153 208.5 243.5t128.5 174.5q-86 38 -154 38q-57 0 -97 -58l-21 8q23 50 51 68t69 18q71 0 167 -50q25 43 29 50q28 0 28 -17q0 -30 -105 -166.5t-235 -278.5 q10 3 25 3q22 0 75.5 -10t73.5 -10q54 0 101 61l21 -8q-27 -52 -56.5 -70.5t-72.5 -18.5q-31 0 -90.5 10t-82.5 10q-26 0 -45 -20z" />
  329. <glyph unicode="&#x17d;" horiz-adv-x="507" d="M510 906l10 -13q-81 -62 -138 -118l-44 -5q-47 70 -99 123l16 13q70 -55 113 -97q69 53 142 97zM-16 0l-1 25l522 625l-379 -3l11 38h417l4 -25l-522 -625l397 4l-11 -39h-438z" />
  330. <glyph unicode="&#x17e;" horiz-adv-x="392" d="M351 750l11 -11q-82 -87 -133 -154l-44 -5q-31 79 -78 159l15 11q47 -57 94 -126q56 56 135 126zM-1 -10l-18 23q135 153 208.5 243.5t128.5 174.5q-86 38 -154 38q-57 0 -97 -58l-21 8q23 50 51 68t69 18q71 0 167 -50q25 43 29 50q28 0 28 -17q0 -30 -105 -166.5 t-235 -278.5q10 3 25 3q22 0 75.5 -10t73.5 -10q54 0 101 61l21 -8q-27 -52 -56.5 -70.5t-72.5 -18.5q-31 0 -90.5 10t-82.5 10q-26 0 -45 -20z" />
  331. <glyph unicode="&#x18f;" horiz-adv-x="655" d="M124 366l19 18h401q2 30 2 45q0 228 -169 228q-82 0 -172 -53l4 38q81 53 181 53q97 0 150 -63.5t53 -192.5q0 -184 -98 -316.5t-236 -132.5q-83 0 -128.5 51.5t-45.5 142.5q0 86 39 182zM540 351l-378 -7q-31 -72 -31 -151t36.5 -122t102.5 -43q102 0 178.5 95.5 t93.5 236.5z" />
  332. <glyph unicode="&#x192;" horiz-adv-x="419" d="M176 298l-112 2l7 27l113 7h1l22 100q28 127 74 194t131 67q56 0 97 -26l-22 -40q-36 30 -78 30q-61 0 -97 -50.5t-66 -184.5l-20 -90h181l4 -5l-12 -31h-181l-78 -352q-7 -30 -12.5 -49.5t-19.5 -51t-31.5 -51t-47.5 -34.5t-67 -15q-55 0 -93 26l22 40q32 -30 81 -30 q25 0 45 10.5t32 25t22.5 39.5t15 43t11.5 48l79 351h-1z" />
  333. <glyph unicode="&#x19d;" horiz-adv-x="698" d="M-67 -182l-9 26q103 51 134 199l106 495q16 67 24 147l48 10q64 -149 129 -311q13 -31 38.5 -92t37 -89.5t26.5 -71.5t25 -80h1q15 87 99 485q18 83 25 149l46 10l4 -5l-147 -690h-45q-14 35 -40.5 99t-48 116t-40.5 97q-9 21 -30.5 72.5t-29 70.5t-21.5 55t-23.5 64.5 t-18.5 59.5h-1q-14 -84 -50 -252l-72 -339q-37 -168 -167 -225z" />
  334. <glyph unicode="&#x1cd;" horiz-adv-x="589" d="M551 906l10 -13q-81 -62 -138 -118l-44 -5q-47 70 -99 123l16 13q70 -55 113 -97q69 53 142 97zM13 0h-41l344 592q37 64 56 100l28 3l4 -5l107 -690h-44l-35 222h-290zM267 437l-104 -179h264l-28 179q-21 139 -22 200h-1q-23 -51 -109 -200z" />
  335. <glyph unicode="&#x1ce;" horiz-adv-x="506" d="M472 750l11 -11q-82 -87 -133 -154l-44 -5q-31 79 -78 159l15 11q47 -57 94 -126q56 56 135 126zM52 132q0 91 39.5 176.5t112 141t156.5 55.5q53 0 103 -15l-42 -173q-17 -72 -25 -108.5t-15.5 -95t-7.5 -113.5h-40q0 101 29 232q-112 -242 -219 -242q-40 0 -65.5 35.5 t-25.5 106.5zM95 137q0 -52 15.5 -81.5t44.5 -29.5q45 0 100.5 74.5t93 158.5t52.5 143q3 10 7.5 29.5t6.5 25.5q-42 12 -78 12q-94 0 -168 -104.5t-74 -227.5z" />
  336. <glyph unicode="&#x1cf;" horiz-adv-x="299" d="M406 906l10 -13q-81 -62 -138 -118l-44 -5q-47 70 -99 123l16 13q70 -55 113 -97q69 53 142 97zM121 0h-42l114 538q18 80 25 147l46 10l4 -5z" />
  337. <glyph unicode="&#x1d0;" horiz-adv-x="241" d="M289 755l8 -10q-62 -86 -103 -154l-44 -5q-25 91 -48 159l12 10q33 -52 67 -121q78 91 108 121zM111 0h-40q0 96 37 267l20 92l8 136l49 10q0 -73 -37 -248t-37 -257z" />
  338. <glyph unicode="&#x1d1;" horiz-adv-x="689" d="M608 906l10 -13q-81 -62 -138 -118l-44 -5q-47 70 -99 123l16 13q70 -55 113 -97q69 53 142 97zM630 448q0 -111 -42.5 -215.5t-122 -173.5t-174.5 -69q-90 0 -141.5 62.5t-51.5 178.5q0 111 43.5 217t123.5 176.5t174 70.5q89 0 140 -64.5t51 -182.5zM143 240 q0 -100 41 -156t118 -56q83 0 149.5 64t100 158.5t33.5 193.5q0 101 -39 157t-115 56q-82 0 -150 -65t-103 -160t-35 -192z" />
  339. <glyph unicode="&#x1d2;" horiz-adv-x="494" d="M450 750l11 -11q-82 -87 -133 -154l-44 -5q-31 79 -78 159l15 11q47 -57 94 -126q56 56 135 126zM436 337q0 -82 -30 -160.5t-88.5 -132.5t-129.5 -54q-62 0 -95.5 43t-33.5 126t30.5 162t88.5 131.5t128 52.5q62 0 96 -42.5t34 -125.5zM102 164q0 -138 97 -138 q57 0 103 48.5t68.5 117.5t22.5 139q0 138 -97 138q-57 0 -103 -48.5t-68.5 -117.5t-22.5 -139z" />
  340. <glyph unicode="&#x1d3;" horiz-adv-x="634" d="M578 906l10 -13q-81 -62 -138 -118l-44 -5q-47 70 -99 123l16 13q70 -55 113 -97q69 53 142 97zM87 157q0 41 45.5 245.5t50.5 284.5l54 8v-1q-22 -101 -53 -246q-55 -254 -55 -281q0 -66 40.5 -101.5t106.5 -35.5q78 0 139 49t80 138q12 54 25.5 118t20 95t14.5 69.5 t11.5 56t7.5 39t5.5 34.5t3 27t2.5 31l54 8l-101 -475q-24 -110 -100.5 -170t-175.5 -60q-79 0 -127 43t-48 124z" />
  341. <glyph unicode="&#x1d4;" horiz-adv-x="510" d="M447 750l11 -11q-82 -87 -133 -154l-44 -5q-31 79 -78 159l15 11q47 -57 94 -126q56 56 135 126zM76 145l45 214l8 136l49 10q0 -34 -5 -74.5t-10 -68.5t-15.5 -79t-15.5 -75q-9 -50 -12 -79.5t0 -55t17.5 -36.5t40.5 -11q64 0 114.5 62t81.5 165q29 129 34 191 q3 26 3 51l40 10q0 -35 -5.5 -79t-12 -77t-18 -86.5t-16.5 -80.5q-22 -114 -22 -182h-40q0 61 13 137q-33 -71 -83 -109t-101 -38q-56 0 -80.5 42t-9.5 113z" />
  342. <glyph unicode="&#x1d5;" horiz-adv-x="634" d="M357 1009l8 39h254l-8 -39h-254zM582 849q0 -22 -15.5 -39.5t-34.5 -17.5q-14 0 -22 8.5t-8 21.5q0 20 16 37.5t35 17.5q29 0 29 -28zM392 849q0 -22 -15.5 -39.5t-34.5 -17.5q-14 0 -22 8.5t-8 21.5q0 20 16 37.5t35 17.5q29 0 29 -28zM87 157q0 41 45.5 245.5 t50.5 284.5l54 8v-1q-22 -101 -53 -246q-55 -254 -55 -281q0 -66 40.5 -101.5t106.5 -35.5q78 0 139 49t80 138q12 54 25.5 118t20 95t14.5 69.5t11.5 56t7.5 39t5.5 34.5t3 27t2.5 31l54 8l-101 -475q-24 -110 -100.5 -170t-175.5 -60q-79 0 -127 43t-48 124z" />
  343. <glyph unicode="&#x1d6;" horiz-adv-x="510" d="M240 859l7 34h264l-7 -34h-264zM273 680q0 -24 -14.5 -43t-33.5 -19q-26 0 -26 30q0 22 15.5 41t33.5 19q25 0 25 -28zM461 680q0 -24 -14.5 -43t-33.5 -19q-26 0 -26 30q0 22 15.5 41t33.5 19q25 0 25 -28zM76 145l45 214l8 136l49 10q0 -34 -5 -74.5t-10 -68.5 t-15.5 -79t-15.5 -75q-9 -50 -12 -79.5t0 -55t17.5 -36.5t40.5 -11q64 0 114.5 62t81.5 165q29 129 34 191q3 26 3 51l40 10q0 -35 -5.5 -79t-12 -77t-18 -86.5t-16.5 -80.5q-22 -114 -22 -182h-40q0 61 13 137q-33 -71 -83 -109t-101 -38q-56 0 -80.5 42t-9.5 113z" />
  344. <glyph unicode="&#x1d7;" horiz-adv-x="634" d="M612 1057l-3 -8q-108 -58 -241 -78l-3 17q144 50 223 100zM582 849q0 -22 -15.5 -39.5t-34.5 -17.5q-14 0 -22 8.5t-8 21.5q0 20 16 37.5t35 17.5q29 0 29 -28zM392 849q0 -22 -15.5 -39.5t-34.5 -17.5q-14 0 -22 8.5t-8 21.5q0 20 16 37.5t35 17.5q29 0 29 -28zM87 157 q0 41 45.5 245.5t50.5 284.5l54 8v-1q-22 -101 -53 -246q-55 -254 -55 -281q0 -66 40.5 -101.5t106.5 -35.5q78 0 139 49t80 138q12 54 25.5 118t20 95t14.5 69.5t11.5 56t7.5 39t5.5 34.5t3 27t2.5 31l54 8l-101 -475q-24 -110 -100.5 -170t-175.5 -60q-79 0 -127 43 t-48 124z" />
  345. <glyph unicode="&#x1d8;" horiz-adv-x="510" d="M474 949l1 -8q-79 -87 -194 -151l-7 13q114 96 164 162zM273 680q0 -24 -14.5 -43t-33.5 -19q-26 0 -26 30q0 22 15.5 41t33.5 19q25 0 25 -28zM461 680q0 -24 -14.5 -43t-33.5 -19q-26 0 -26 30q0 22 15.5 41t33.5 19q25 0 25 -28zM76 145l45 214l8 136l49 10 q0 -34 -5 -74.5t-10 -68.5t-15.5 -79t-15.5 -75q-9 -50 -12 -79.5t0 -55t17.5 -36.5t40.5 -11q64 0 114.5 62t81.5 165q29 129 34 191q3 26 3 51l40 10q0 -35 -5.5 -79t-12 -77t-18 -86.5t-16.5 -80.5q-22 -114 -22 -182h-40q0 61 13 137q-33 -71 -83 -109t-101 -38 q-56 0 -80.5 42t-9.5 113z" />
  346. <glyph unicode="&#x1d9;" horiz-adv-x="634" d="M609 1132l11 -11q-82 -87 -133 -154l-44 -5q-31 79 -78 159l15 11q47 -57 94 -126q56 56 135 126zM582 849q0 -22 -15.5 -39.5t-34.5 -17.5q-14 0 -22 8.5t-8 21.5q0 20 16 37.5t35 17.5q29 0 29 -28zM392 849q0 -22 -15.5 -39.5t-34.5 -17.5q-14 0 -22 8.5t-8 21.5 q0 20 16 37.5t35 17.5q29 0 29 -28zM87 157q0 41 45.5 245.5t50.5 284.5l54 8v-1q-22 -101 -53 -246q-55 -254 -55 -281q0 -66 40.5 -101.5t106.5 -35.5q78 0 139 49t80 138q12 54 25.5 118t20 95t14.5 69.5t11.5 56t7.5 39t5.5 34.5t3 27t2.5 31l54 8l-101 -475 q-24 -110 -100.5 -170t-175.5 -60q-79 0 -127 43t-48 124z" />
  347. <glyph unicode="&#x1da;" horiz-adv-x="510" d="M493 963l11 -11q-82 -87 -133 -154l-44 -5q-31 79 -78 159l15 11q47 -57 94 -126q56 56 135 126zM273 680q0 -24 -14.5 -43t-33.5 -19q-26 0 -26 30q0 22 15.5 41t33.5 19q25 0 25 -28zM461 680q0 -24 -14.5 -43t-33.5 -19q-26 0 -26 30q0 22 15.5 41t33.5 19 q25 0 25 -28zM76 145l45 214l8 136l49 10q0 -34 -5 -74.5t-10 -68.5t-15.5 -79t-15.5 -75q-9 -50 -12 -79.5t0 -55t17.5 -36.5t40.5 -11q64 0 114.5 62t81.5 165q29 129 34 191q3 26 3 51l40 10q0 -35 -5.5 -79t-12 -77t-18 -86.5t-16.5 -80.5q-22 -114 -22 -182h-40 q0 61 13 137q-33 -71 -83 -109t-101 -38q-56 0 -80.5 42t-9.5 113z" />
  348. <glyph unicode="&#x1db;" horiz-adv-x="634" d="M586 971q-126 20 -207 78l1 8l36 31q64 -54 181 -100zM582 849q0 -22 -15.5 -39.5t-34.5 -17.5q-14 0 -22 8.5t-8 21.5q0 20 16 37.5t35 17.5q29 0 29 -28zM392 849q0 -22 -15.5 -39.5t-34.5 -17.5q-14 0 -22 8.5t-8 21.5q0 20 16 37.5t35 17.5q29 0 29 -28zM87 157 q0 41 45.5 245.5t50.5 284.5l54 8v-1q-22 -101 -53 -246q-55 -254 -55 -281q0 -66 40.5 -101.5t106.5 -35.5q78 0 139 49t80 138q12 54 25.5 118t20 95t14.5 69.5t11.5 56t7.5 39t5.5 34.5t3 27t2.5 31l54 8l-101 -475q-24 -110 -100.5 -170t-175.5 -60q-79 0 -127 43 t-48 124z" />
  349. <glyph unicode="&#x1dc;" horiz-adv-x="510" d="M434 793q-91 66 -130 151l5 8l42 16q26 -71 96 -162zM273 680q0 -24 -14.5 -43t-33.5 -19q-26 0 -26 30q0 22 15.5 41t33.5 19q25 0 25 -28zM461 680q0 -24 -14.5 -43t-33.5 -19q-26 0 -26 30q0 22 15.5 41t33.5 19q25 0 25 -28zM76 145l45 214l8 136l49 10 q0 -34 -5 -74.5t-10 -68.5t-15.5 -79t-15.5 -75q-9 -50 -12 -79.5t0 -55t17.5 -36.5t40.5 -11q64 0 114.5 62t81.5 165q29 129 34 191q3 26 3 51l40 10q0 -35 -5.5 -79t-12 -77t-18 -86.5t-16.5 -80.5q-22 -114 -22 -182h-40q0 61 13 137q-33 -71 -83 -109t-101 -38 q-56 0 -80.5 42t-9.5 113z" />
  350. <glyph unicode="&#x1e6;" horiz-adv-x="639" d="M586 906l10 -13q-81 -62 -138 -118l-44 -5q-47 70 -99 123l16 13q70 -55 113 -97q69 53 142 97zM563 288l4 -5l-53 -242q-77 -51 -193 -51q-106 0 -163.5 62.5t-57.5 187.5q0 114 44.5 218t127.5 170.5t182 66.5q94 0 158 -45l-18 -42q-56 49 -147 49q-88 0 -159 -62 t-107 -155t-36 -193q0 -219 191 -219q72 0 140 30l15 73q17 83 24 147z" />
  351. <glyph unicode="&#x1e7;" horiz-adv-x="415" d="M414 750l11 -11q-82 -87 -133 -154l-44 -5q-31 79 -78 159l15 11q47 -57 94 -126q56 56 135 126zM120 -255q-76 0 -117.5 32.5t-41.5 85.5q0 69 78 118l14 -16q-49 -47 -49 -94q0 -39 33 -64.5t91 -25.5q69 0 113 32.5t44 74.5q0 25 -19.5 44.5t-65.5 42.5q-3 2 -14 7 t-14.5 7t-12.5 6.5t-12.5 7l-10.5 7.5t-9.5 8.5t-6 8.5t-5 10.5t-1.5 11.5q0 39 82 101v1q-8 -1 -9 -1q-58 0 -87.5 35t-29.5 94q0 91 58.5 158.5t142.5 67.5q107 0 151 10q5 -8 5 -21q0 -26 -37 -26q-23 0 -73 12v-1q48 -31 48 -105q0 -53 -21.5 -99.5t-52 -77.5t-61 -56 t-52 -45t-21.5 -35q0 -4 1 -7.5t4 -7t5.5 -6.5t7 -6l7.5 -5t8.5 -5t7.5 -4l8 -4t7 -3q61 -29 88 -56t27 -61q0 -57 -56.5 -104t-151.5 -47zM325 370q0 47 -20 74t-55 27q-53 0 -96.5 -59.5t-43.5 -129.5q0 -47 21 -72t57 -25q57 0 97 58t40 127z" />
  352. <glyph unicode="&#x1ea;" horiz-adv-x="689" d="M630 448q0 -134 -62 -256.5t-162 -173.5q-147 -79 -147 -155q0 -42 46 -42q24 0 59 12l4 -22q-34 -23 -82 -23q-72 0 -72 64q0 71 105 140q-18 -2 -28 -2q-90 0 -141.5 62.5t-51.5 178.5q0 111 43.5 217t123.5 176.5t174 70.5q89 0 140 -64.5t51 -182.5zM143 240 q0 -100 41 -156t118 -56q83 0 149.5 64t100 158.5t33.5 193.5q0 101 -39 157t-115 56q-82 0 -150 -65t-103 -160t-35 -192z" />
  353. <glyph unicode="&#x1eb;" horiz-adv-x="494" d="M289 21q-140 -106 -140 -161q0 -39 46 -39q24 0 59 12l4 -22q-34 -23 -80 -23q-34 0 -54 15.5t-20 41.5q0 64 109 147q-16 -2 -25 -2q-62 0 -95.5 43t-33.5 126t30.5 162t88.5 131.5t128 52.5q62 0 96 -42.5t34 -125.5q0 -93 -40.5 -182.5t-106.5 -133.5zM102 164 q0 -138 97 -138q57 0 103 48.5t68.5 117.5t22.5 139q0 138 -97 138q-57 0 -103 -48.5t-68.5 -117.5t-22.5 -139z" />
  354. <glyph unicode="&#x1f4;" horiz-adv-x="639" d="M579 865l-3 -8q-108 -58 -241 -78l-3 17q144 50 223 100zM563 288l4 -5l-53 -242q-77 -51 -193 -51q-106 0 -163.5 62.5t-57.5 187.5q0 114 44.5 218t127.5 170.5t182 66.5q94 0 158 -45l-18 -42q-56 49 -147 49q-88 0 -159 -62t-107 -155t-36 -193q0 -219 191 -219 q72 0 140 30l15 73q17 83 24 147z" />
  355. <glyph unicode="&#x1f5;" horiz-adv-x="415" d="M395 736l1 -8q-79 -87 -194 -151l-7 13q114 96 164 162zM120 -255q-76 0 -117.5 32.5t-41.5 85.5q0 69 78 118l14 -16q-49 -47 -49 -94q0 -39 33 -64.5t91 -25.5q69 0 113 32.5t44 74.5q0 25 -19.5 44.5t-65.5 42.5q-3 2 -14 7t-14.5 7t-12.5 6.5t-12.5 7l-10.5 7.5 t-9.5 8.5t-6 8.5t-5 10.5t-1.5 11.5q0 39 82 101v1q-8 -1 -9 -1q-58 0 -87.5 35t-29.5 94q0 91 58.5 158.5t142.5 67.5q107 0 151 10q5 -8 5 -21q0 -26 -37 -26q-23 0 -73 12v-1q48 -31 48 -105q0 -53 -21.5 -99.5t-52 -77.5t-61 -56t-52 -45t-21.5 -35q0 -4 1 -7.5t4 -7 t5.5 -6.5t7 -6l7.5 -5t8.5 -5t7.5 -4l8 -4t7 -3q61 -29 88 -56t27 -61q0 -57 -56.5 -104t-151.5 -47zM325 370q0 47 -20 74t-55 27q-53 0 -96.5 -59.5t-43.5 -129.5q0 -47 21 -72t57 -25q57 0 97 58t40 127z" />
  356. <glyph unicode="&#x1fa;" horiz-adv-x="589" d="M591 1086l-3 -8q-108 -58 -241 -78l-3 17q144 50 223 100zM500 852q0 -35 -30.5 -63.5t-68.5 -28.5q-26 0 -44 16t-18 40q0 34 31 62t69 28q27 0 44 -15t17 -39zM374 821q0 -16 9.5 -25t25.5 -9q22 0 39 18t17 41q0 33 -35 33q-22 0 -39 -17.5t-17 -40.5zM13 0h-41 l344 592q37 64 56 100l28 3l4 -5l107 -690h-44l-35 222h-290zM267 437l-104 -179h264l-28 179q-21 139 -22 200h-1q-23 -51 -109 -200z" />
  357. <glyph unicode="&#x1fb;" horiz-adv-x="506" d="M501 961l1 -8q-79 -87 -194 -151l-7 13q114 96 164 162zM432 666q0 -35 -30.5 -63.5t-68.5 -28.5q-26 0 -44 16t-18 40q0 34 31 62t69 28q27 0 44 -15t17 -39zM306 635q0 -16 9.5 -25t25.5 -9q22 0 39 18t17 41q0 33 -35 33q-22 0 -39 -17.5t-17 -40.5zM52 132 q0 91 39.5 176.5t112 141t156.5 55.5q53 0 103 -15l-42 -173q-17 -72 -25 -108.5t-15.5 -95t-7.5 -113.5h-40q0 101 29 232q-112 -242 -219 -242q-40 0 -65.5 35.5t-25.5 106.5zM95 137q0 -52 15.5 -81.5t44.5 -29.5q45 0 100.5 74.5t93 158.5t52.5 143q3 10 7.5 29.5 t6.5 25.5q-42 12 -78 12q-94 0 -168 -104.5t-74 -227.5z" />
  358. <glyph unicode="&#x1fc;" horiz-adv-x="833" d="M661 865l-3 -8q-108 -58 -241 -78l-3 17q144 50 223 100zM13 0h-41l438 592q2 3 15.5 21.5t51.5 71.5h304l4 -5l-8 -34l-268 4l-26 -292l232 2l-9 -39l-226 2l-26 -288l284 4l-8 -39h-323l23 222h-253zM336 437l-132 -179h230l19 179q17 159 24 200h-1q-43 -69 -140 -200 z" />
  359. <glyph unicode="&#x1fd;" horiz-adv-x="730" d="M563 736l1 -8q-79 -87 -194 -151l-7 13q114 96 164 162zM52 133q0 91 39 175.5t114 140.5t168 56q61 0 127 -27q44 27 90 27q47 0 76 -27.5t29 -74.5q0 -70 -71 -120t-234 -58q-5 -30 -5 -53q0 -66 29 -106t80 -40q78 0 153 93l18 -13q-30 -54 -79 -85t-100 -31 q-64 0 -104 47.5t-40 131.5q0 16 1 24q-103 -203 -200 -203q-40 0 -65.5 35.5t-25.5 107.5zM95 137q0 -111 59 -111q36 0 78.5 47.5t75.5 107t62 128.5q31 82 88 136q-48 24 -103 24q-111 0 -185.5 -102.5t-74.5 -229.5zM581 469q-60 0 -111.5 -64.5t-73.5 -150.5 q140 9 198 53t58 95q0 30 -19.5 48.5t-51.5 18.5z" />
  360. <glyph unicode="&#x1fe;" horiz-adv-x="689" d="M601 865l-3 -8q-108 -58 -241 -78l-3 17q144 50 223 100zM630 448q0 -111 -42.5 -215.5t-122 -173.5t-174.5 -69q-119 0 -167 103l-101 -93l-20 22l110 101q-15 47 -15 108q0 111 43.5 217t123.5 176.5t174 70.5q122 0 168 -114l114 105l22 -21l-125 -116q12 -44 12 -101 zM143 240q0 -43 8 -81l420 389q-33 109 -140 109q-82 0 -150 -65t-103 -160t-35 -192zM585 444q0 38 -6 70l-418 -387q38 -99 141 -99q83 0 149.5 64t100 158.5t33.5 193.5z" />
  361. <glyph unicode="&#x1ff;" horiz-adv-x="494" d="M431 736l1 -8q-79 -87 -194 -151l-7 13q114 96 164 162zM436 337q0 -82 -30 -160.5t-88.5 -132.5t-129.5 -54q-88 0 -117 84l-82 -72l-18 22l92 81q-4 21 -4 54q0 83 30.5 162t88.5 131.5t128 52.5q89 0 118 -86l86 75l19 -22l-97 -84q4 -21 4 -51zM102 164q0 -17 1 -25 l285 248q-18 82 -92 82q-57 0 -103 -48.5t-68.5 -117.5t-22.5 -139zM393 331q0 15 -1 22l-284 -248q17 -79 91 -79q57 0 103 48.5t68.5 117.5t22.5 139z" />
  362. <glyph unicode="&#x218;" horiz-adv-x="493" d="M417 190q0 -87 -69 -143.5t-177 -56.5q-92 0 -158 35l17 43q60 -40 150 -40q83 0 138 45t55 111q0 28 -9.5 50t-31.5 41t-36.5 28.5t-44.5 27.5l-37.5 22.5t-33.5 24t-31 31t-18.5 37.5t-8.5 49q0 84 68.5 142t174.5 58q90 0 146 -33l-17 -43q-53 38 -136 38 q-82 0 -136.5 -43.5t-54.5 -107.5q0 -33 19 -61t39 -42t59 -37q2 -1 3.5 -2t4 -2.5t4.5 -2.5q27 -16 43.5 -28t37 -33t30.5 -48t10 -60zM100 -306q37 53 54 94h-2q-28 0 -28 32q0 21 14.5 40t37.5 19q30 0 30 -32q0 -65 -89 -164z" />
  363. <glyph unicode="&#x219;" horiz-adv-x="425" d="M376 479l-17 -41q-48 31 -103 31t-89.5 -28t-34.5 -71q0 -31 21 -54t51.5 -38.5t61 -32t51.5 -44t21 -65.5q0 -62 -51.5 -104t-130.5 -42q-73 0 -127 32l17 41q50 -37 120 -37q53 0 90 29.5t37 72.5q0 30 -21.5 52.5t-51.5 37.5t-60.5 31t-52 43.5t-21.5 65.5 q0 64 53.5 105.5t128.5 41.5q58 0 108 -26zM84 -306q37 53 54 94h-2q-28 0 -28 32q0 21 14.5 40t37.5 19q30 0 30 -32q0 -65 -89 -164z" />
  364. <glyph unicode="&#x21a;" horiz-adv-x="491" d="M214 0h-42l139 650q-95 0 -217 -5l12 40h465l-6 -40q-117 5 -212 5zM93 -306q37 53 54 94h-2q-28 0 -28 32q0 21 14.5 40t37.5 19q30 0 30 -32q0 -65 -89 -164z" />
  365. <glyph unicode="&#x21b;" horiz-adv-x="338" d="M330 462h-138q-70 -327 -72 -354q-1 -7 -1 -15q0 -67 62 -67q43 0 86 25l2 -33q-49 -28 -104 -28q-89 0 -89 88q0 28 42 223q20 96 34 161h-76l6 26l77 7l33 112l30 4l4 -5l-27 -111h135l4 -5zM54 -306q37 53 54 94h-2q-28 0 -28 32q0 21 14.5 40t37.5 19q30 0 30 -32 q0 -65 -89 -164z" />
  366. <glyph unicode="&#x232;" horiz-adv-x="524" d="M256 817l8 39h254l-8 -39h-254zM243 256l-124 435l43 4l74 -260q2 -9 12 -42.5t15.5 -59t7.5 -48.5h1q16 30 101 152l182 258l33 -5l4 -5l-308 -433l-54 -252h-42z" />
  367. <glyph unicode="&#x233;" horiz-adv-x="398" d="M130 646l7 34h264l-7 -34h-264zM387 505q18 0 18 -18q0 -61 -59 -185.5t-140.5 -247.5t-176 -216t-157.5 -93q-37 0 -37 27q0 13 8 23q21 -3 37 -3q96 0 246 210q0 261 -58 493l40 10q59 -217 59 -445h1q180 263 200 441q9 4 19 4z" />
  368. <glyph unicode="&#x237;" horiz-adv-x="218" d="M-70 -255l-15 21q91 52 119 182l88 411l8 136l49 10q0 -19 -1 -36.5t-5.5 -45.5t-8.5 -50.5t-14 -72t-18 -87t-25.5 -119t-31.5 -146.5q-29 -132 -145 -203z" />
  369. <glyph unicode="&#x259;" horiz-adv-x="435" d="M76 417l4 40q67 48 147 48q68 0 108.5 -47t40.5 -131q0 -79 -33.5 -156.5t-91.5 -129t-123 -51.5q-47 0 -76 27.5t-29 74.5q0 70 71 120t234 58q5 32 5 54q0 65 -29.5 105t-85.5 40q-60 0 -142 -52zM66 93q0 -30 19.5 -48.5t51.5 -18.5q60 0 111.5 64t73.5 151 q-140 -9 -198 -53t-58 -95z" />
  370. <glyph unicode="&#x272;" horiz-adv-x="564" d="M7 -203l-15 21q67 76 90 182l77 359l8 136l49 10q0 -67 -22 -160h2q36 78 91.5 119t111.5 41q57 0 80 -41.5t8 -113.5l-42 -199q-13 -59 -13 -151h-40q0 80 42 287q21 96 11 139t-59 43q-78 0 -139 -88.5t-88 -225.5q-17 -78 -33 -155q-24 -115 -119 -203z" />
  371. <glyph unicode="&#x2c6;" horiz-adv-x="355" d="M134 579l-11 11q82 87 133 154l44 5q31 -79 78 -159l-15 -11q-47 57 -94 126q-56 -56 -135 -126z" />
  372. <glyph unicode="&#x2c7;" horiz-adv-x="355" d="M401 762l11 -11q-82 -87 -133 -154l-44 -5q-31 79 -78 159l15 11q47 -57 94 -126q56 56 135 126z" />
  373. <glyph unicode="&#x2d8;" horiz-adv-x="338" d="M368 730l22 -3q-23 -57 -63 -89.5t-85 -32.5t-69.5 32.5t-20.5 89.5l23 3q2 -39 23.5 -60.5t57.5 -21.5q33 0 62.5 22t49.5 60z" />
  374. <glyph unicode="&#x2d9;" horiz-adv-x="172" d="M212 679q0 -24 -15 -42.5t-34 -18.5q-27 0 -27 30q0 23 15.5 41.5t33.5 18.5q27 0 27 -29z" />
  375. <glyph unicode="&#x2da;" horiz-adv-x="256" d="M297 682q0 -35 -30.5 -63.5t-68.5 -28.5q-26 0 -44 16t-18 40q0 34 31 62t69 28q27 0 44 -15t17 -39zM171 651q0 -16 9.5 -25t25.5 -9q22 0 39 18t17 41q0 33 -35 33q-22 0 -39 -17.5t-17 -40.5z" />
  376. <glyph unicode="&#x2db;" horiz-adv-x="365" d="M215 0q-139 -71 -139 -142q0 -37 46 -37q24 0 59 12l4 -22q-34 -23 -79 -23q-35 0 -55 14.5t-20 41.5q0 91 166 167z" />
  377. <glyph unicode="&#x2dc;" horiz-adv-x="402" d="M233 710q26 0 62 -28t55 -28q33 0 75 57l15 -3q-14 -36 -42.5 -64t-60.5 -28q-27 0 -63 28t-55 28q-33 0 -75 -57l-15 3q15 35 43 63.5t61 28.5z" />
  378. <glyph unicode="&#x2dd;" horiz-adv-x="364" d="M318 742l1 -8q-81 -90 -189 -154l-7 13q103 82 164 162zM432 742l1 -8q-79 -89 -189 -154l-7 13q103 82 164 162z" />
  379. <glyph unicode="&#x394;" horiz-adv-x="570" d="M362 690h35l100 -670l-6 -20h-516l2 20zM22 33h431l-92 583z" />
  380. <glyph unicode="&#x3a9;" horiz-adv-x="728" d="M244 0h-242l3 36l6 5l200 -16q-44 41 -71 114.5t-27 158.5q0 167 98.5 282t236.5 115q101 0 160.5 -65.5t59.5 -172.5q0 -119 -71 -243t-173 -189l205 16l4 -5l-13 -36h-242l2 23q105 73 173 190.5t68 231.5q0 96 -49 154t-132 58q-116 0 -200 -106t-84 -257 q0 -81 25.5 -154t70.5 -117z" />
  381. <glyph unicode="&#x3bc;" horiz-adv-x="510" d="M337 0q0 61 13 137q-33 -71 -83 -109t-101 -38q-61 0 -85 52q-3 -42 -16 -142.5t-13 -144.5h-40q0 91 61 375l49 229l8 136l48 10q0 -34 -5 -74.5t-10 -68.5t-15.5 -79t-15.5 -75q-9 -50 -12 -79.5t0 -55t17.5 -36.5t40.5 -11q64 0 114.5 62t81.5 165q29 129 34 191 q3 26 3 51l40 10q0 -35 -5.5 -79t-12 -77t-18 -86.5t-16.5 -80.5q-22 -114 -22 -182h-40z" />
  382. <glyph unicode="&#x3c0;" horiz-adv-x="620" d="M78 471l16 30l556 4l4 -5l-11 -25l-118 -1q-70 -299 -80 -408q-1 -11 -0.5 -20t6.5 -14.5t19 -5.5q17 0 45 7l-8 -33q-28 -10 -53 -10q-29 0 -41 16t-10 52q4 68 79 416l-234 -2q-4 -16 -22 -95.5t-24.5 -109.5t-18 -89t-15.5 -100.5t-4 -77.5h-40q0 100 61 380l20 92z " />
  383. <glyph unicode="&#x1e0c;" horiz-adv-x="689" d="M629 433q0 -81 -29.5 -158.5t-82 -138.5t-131 -98.5t-169.5 -37.5h-138l115 538q17 83 24 147h147q125 0 194.5 -63t69.5 -189zM351 649h-92l-130 -613h94q84 0 154 34t114.5 89.5t68.5 125.5t24 144q0 110 -56.5 165t-176.5 55zM296 -145q0 -24 -15 -42.5t-34 -18.5 q-27 0 -27 30q0 23 15.5 41.5t33.5 18.5q27 0 27 -29z" />
  384. <glyph unicode="&#x1e0d;" horiz-adv-x="509" d="M376 0h-40q0 77 32 238q-106 -248 -225 -248q-40 0 -65.5 35.5t-25.5 106.5q0 91 39.5 176.5t112 141t156.5 55.5q27 0 63 -6l23 110l8 136l49 10q0 -94 -63.5 -371t-63.5 -384zM95 137q0 -52 15.5 -81.5t44.5 -29.5q44 0 99.5 71.5t93.5 155.5t52 143l14 61 q-42 12 -77 12q-94 0 -168 -104.5t-74 -227.5zM207 -145q0 -24 -15 -42.5t-34 -18.5q-27 0 -27 30q0 23 15.5 41.5t33.5 18.5q27 0 27 -29z" />
  385. <glyph unicode="&#x1e24;" horiz-adv-x="713" d="M121 0h-42l114 538q19 93 25 147l46 10l4 -5l-71 -331h372l38 179q18 80 25 147l46 10l4 -5l-147 -690h-42l68 323h-371zM308 -145q0 -24 -15 -42.5t-34 -18.5q-27 0 -27 30q0 23 15.5 41.5t33.5 18.5q27 0 27 -29z" />
  386. <glyph unicode="&#x1e25;" horiz-adv-x="537" d="M111 0h-40q0 96 61 380l49 229l8 136l49 10q0 -98 -65 -381q-5 -19 -7 -29h2q35 78 89.5 119t110.5 41q45 0 69.5 -25.5t24.5 -70.5q0 -26 -4.5 -50.5t-29.5 -140.5q-27 -127 -27 -218h-40q0 86 34 238q27 124 27 162q0 69 -65 69q-68 0 -124 -66t-87.5 -172.5 t-34.5 -230.5zM267 -145q0 -24 -15 -42.5t-34 -18.5q-27 0 -27 30q0 23 15.5 41.5t33.5 18.5q27 0 27 -29z" />
  387. <glyph unicode="&#x1e44;" horiz-adv-x="728" d="M524 857q0 -22 -15 -38t-36 -16q-32 0 -32 29q0 20 16 36.5t36 16.5q31 0 31 -28zM395 384q14 -34 38.5 -91.5t36.5 -87t27 -72.5t25 -82h1q16 95 99 487q18 80 25 147l46 10l4 -5l-147 -690h-45q-22 52 -65 155.5t-64 155.5q-10 24 -30.5 73.5t-29 70t-22 56t-23 64 t-18.5 59.5h-1q-18 -108 -50 -252l-81 -382h-42l114 538q18 80 25 147l48 10q35 -83 129 -311z" />
  388. <glyph unicode="&#x1e45;" horiz-adv-x="537" d="M387 682q0 -24 -15 -42.5t-34 -18.5q-27 0 -27 30q0 23 15.5 41.5t33.5 18.5q27 0 27 -29zM111 0h-40q0 22 1.5 45.5t3.5 41.5t6.5 45.5t6.5 41t9 46.5t9 43t10.5 49t10.5 47l8 136l49 10q0 -67 -22 -160h2q36 78 91.5 119t112.5 41q45 0 69 -25t24 -69q0 -41 -32 -185 q-18 -82 -23.5 -124.5t-5.5 -101.5h-40q0 73 34 245q22 112 22 150q0 74 -63 74q-64 0 -119 -64t-88 -172t-36 -233z" />
  389. <glyph unicode="&#x1e5a;" horiz-adv-x="571" d="M121 0h-42l115 538q17 83 24 147h140q91 0 142.5 -42.5t51.5 -115.5q0 -85 -54.5 -146.5t-143.5 -82.5l134 -298l-41 -10q-23 49 -67 148t-67 149h-131zM348 650h-88l-70 -328h85q104 0 167.5 54.5t63.5 146.5q0 58 -39 92.5t-119 34.5zM252 -145q0 -24 -15 -42.5 t-34 -18.5q-27 0 -27 30q0 23 15.5 41.5t33.5 18.5q27 0 27 -29z" />
  390. <glyph unicode="&#x1e5b;" horiz-adv-x="368" d="M111 0h-40q0 96 37 267l20 92l8 136l49 10q0 -67 -25 -180h2q36 92 84 136t101 44q38 0 62 -19l-25 -34q-23 14 -49 14q-58 0 -110.5 -74.5t-82 -181.5t-31.5 -210zM100 -145q0 -24 -15 -42.5t-34 -18.5q-27 0 -27 30q0 23 15.5 41.5t33.5 18.5q27 0 27 -29z" />
  391. <glyph unicode="&#x1e62;" horiz-adv-x="493" d="M417 190q0 -87 -69 -143.5t-177 -56.5q-92 0 -158 35l17 43q60 -40 150 -40q83 0 138 45t55 111q0 28 -9.5 50t-31.5 41t-36.5 28.5t-44.5 27.5l-37.5 22.5t-33.5 24t-31 31t-18.5 37.5t-8.5 49q0 84 68.5 142t174.5 58q90 0 146 -33l-17 -43q-53 38 -136 38 q-82 0 -136.5 -43.5t-54.5 -107.5q0 -33 19 -61t39 -42t59 -37q2 -1 3.5 -2t4 -2.5t4.5 -2.5q27 -16 43.5 -28t37 -33t30.5 -48t10 -60zM204 -145q0 -24 -15 -42.5t-34 -18.5q-27 0 -27 30q0 23 15.5 41.5t33.5 18.5q27 0 27 -29z" />
  392. <glyph unicode="&#x1e63;" horiz-adv-x="425" d="M376 479l-17 -41q-48 31 -103 31t-89.5 -28t-34.5 -71q0 -31 21 -54t51.5 -38.5t61 -32t51.5 -44t21 -65.5q0 -62 -51.5 -104t-130.5 -42q-73 0 -127 32l17 41q50 -37 120 -37q53 0 90 29.5t37 72.5q0 30 -21.5 52.5t-51.5 37.5t-60.5 31t-52 43.5t-21.5 65.5 q0 64 53.5 105.5t128.5 41.5q58 0 108 -26zM188 -145q0 -24 -15 -42.5t-34 -18.5q-27 0 -27 30q0 23 15.5 41.5t33.5 18.5q27 0 27 -29z" />
  393. <glyph unicode="&#x1e6c;" horiz-adv-x="491" d="M214 0h-42l139 650q-95 0 -217 -5l12 40h465l-6 -40q-117 5 -212 5zM197 -145q0 -24 -15 -42.5t-34 -18.5q-27 0 -27 30q0 23 15.5 41.5t33.5 18.5q27 0 27 -29z" />
  394. <glyph unicode="&#x1e6d;" horiz-adv-x="338" d="M330 462h-138q-70 -327 -72 -354q-1 -7 -1 -15q0 -67 62 -67q43 0 86 25l2 -33q-49 -28 -104 -28q-89 0 -89 88q0 28 42 223q20 96 34 161h-76l6 26l77 7l33 112l30 4l4 -5l-27 -111h135l4 -5zM158 -145q0 -24 -15 -42.5t-34 -18.5q-27 0 -27 30q0 23 15.5 41.5 t33.5 18.5q27 0 27 -29z" />
  395. <glyph unicode="&#x1e80;" horiz-adv-x="956" d="M701 779q-126 20 -207 78l1 8l36 31q64 -54 181 -100zM197 -5l-78 695l41 5l48 -428q17 -141 14 -215q22 57 117 238l215 401l39 4l48 -428q17 -141 14 -215q26 68 116 235l218 408l31 -5l4 -5l-369 -690h-25l-55 492q-11 105 -13 151h-1q-26 -58 -77 -151l-262 -492h-25 z" />
  396. <glyph unicode="&#x1e81;" horiz-adv-x="606" d="M424 580q-91 66 -130 151l5 8l42 16q26 -71 96 -162zM595 505q18 0 18 -18q0 -70 -64.5 -217t-154.5 -270h-40q4 207 -14 417h-1q-20 -92 -75 -206t-124 -211h-40q5 269 -32 495l41 7q38 -209 33 -447h1q156 242 178 440h44q36 -206 31 -440h1q72 110 120 228t59 218 q9 4 19 4z" />
  397. <glyph unicode="&#x1e82;" horiz-adv-x="956" d="M727 865l-3 -8q-108 -58 -241 -78l-3 17q144 50 223 100zM197 -5l-78 695l41 5l48 -428q17 -141 14 -215q22 57 117 238l215 401l39 4l48 -428q17 -141 14 -215q26 68 116 235l218 408l31 -5l4 -5l-369 -690h-25l-55 492q-11 105 -13 151h-1q-26 -58 -77 -151l-262 -492 h-25z" />
  398. <glyph unicode="&#x1e83;" horiz-adv-x="606" d="M464 736l1 -8q-79 -87 -194 -151l-7 13q114 96 164 162zM595 505q18 0 18 -18q0 -70 -64.5 -217t-154.5 -270h-40q4 207 -14 417h-1q-20 -92 -75 -206t-124 -211h-40q5 269 -32 495l41 7q38 -209 33 -447h1q156 242 178 440h44q36 -206 31 -440h1q72 110 120 228t59 218 q9 4 19 4z" />
  399. <glyph unicode="&#x1e84;" horiz-adv-x="956" d="M738 849q0 -22 -15.5 -39.5t-34.5 -17.5q-14 0 -22 8.5t-8 21.5q0 20 16 37.5t35 17.5q29 0 29 -28zM548 849q0 -22 -15.5 -39.5t-34.5 -17.5q-14 0 -22 8.5t-8 21.5q0 20 16 37.5t35 17.5q29 0 29 -28zM197 -5l-78 695l41 5l48 -428q17 -141 14 -215q22 57 117 238 l215 401l39 4l48 -428q17 -141 14 -215q26 68 116 235l218 408l31 -5l4 -5l-369 -690h-25l-55 492q-11 105 -13 151h-1q-26 -58 -77 -151l-262 -492h-25z" />
  400. <glyph unicode="&#x1e85;" horiz-adv-x="606" d="M309 680q0 -24 -14.5 -43t-33.5 -19q-26 0 -26 30q0 22 15.5 41t33.5 19q25 0 25 -28zM497 680q0 -24 -14.5 -43t-33.5 -19q-26 0 -26 30q0 22 15.5 41t33.5 19q25 0 25 -28zM595 505q18 0 18 -18q0 -70 -64.5 -217t-154.5 -270h-40q4 207 -14 417h-1q-20 -92 -75 -206 t-124 -211h-40q5 269 -32 495l41 7q38 -209 33 -447h1q156 242 178 440h44q36 -206 31 -440h1q72 110 120 228t59 218q9 4 19 4z" />
  401. <glyph unicode="&#x1e92;" horiz-adv-x="507" d="M-16 0l-1 25l522 625l-379 -3l11 38h417l4 -25l-522 -625l397 4l-11 -39h-438zM197 -145q0 -24 -15 -42.5t-34 -18.5q-27 0 -27 30q0 23 15.5 41.5t33.5 18.5q27 0 27 -29z" />
  402. <glyph unicode="&#x1e93;" horiz-adv-x="392" d="M-1 -10l-18 23q135 153 208.5 243.5t128.5 174.5q-86 38 -154 38q-57 0 -97 -58l-21 8q23 50 51 68t69 18q71 0 167 -50q25 43 29 50q28 0 28 -17q0 -30 -105 -166.5t-235 -278.5q10 3 25 3q22 0 75.5 -10t73.5 -10q54 0 101 61l21 -8q-27 -52 -56.5 -70.5t-72.5 -18.5 q-31 0 -90.5 10t-82.5 10q-26 0 -45 -20zM138 -145q0 -24 -15 -42.5t-34 -18.5q-27 0 -27 30q0 23 15.5 41.5t33.5 18.5q27 0 27 -29z" />
  403. <glyph unicode="&#x1e9e;" horiz-adv-x="602" d="M65 77l83 388q24 111 98.5 170.5t171.5 59.5q57 0 100 -23.5t62 -66.5l-227 -216q81 -37 126.5 -82t45.5 -117q0 -84 -61 -142t-163 -58q-68 0 -117 25l9 43q46 -30 119 -30q81 0 125 44t44 110q0 67 -46 108.5t-134 72.5l5 23l220 212q-32 59 -111 59q-84 0 -145 -52 t-79 -137l-83 -390q-12 -53 -33 -88l-38 10q21 45 28 77z" />
  404. <glyph unicode="&#x1ea0;" horiz-adv-x="589" d="M13 0h-41l344 592q37 64 56 100l28 3l4 -5l107 -690h-44l-35 222h-290zM267 437l-104 -179h264l-28 179q-21 139 -22 200h-1q-23 -51 -109 -200zM260 -145q0 -24 -15 -42.5t-34 -18.5q-27 0 -27 30q0 23 15.5 41.5t33.5 18.5q27 0 27 -29z" />
  405. <glyph unicode="&#x1ea1;" horiz-adv-x="506" d="M52 132q0 91 39.5 176.5t112 141t156.5 55.5q53 0 103 -15l-42 -173q-17 -72 -25 -108.5t-15.5 -95t-7.5 -113.5h-40q0 101 29 232q-112 -242 -219 -242q-40 0 -65.5 35.5t-25.5 106.5zM95 137q0 -52 15.5 -81.5t44.5 -29.5q45 0 100.5 74.5t93 158.5t52.5 143 q3 10 7.5 29.5t6.5 25.5q-42 12 -78 12q-94 0 -168 -104.5t-74 -227.5zM227 -145q0 -24 -15 -42.5t-34 -18.5q-27 0 -27 30q0 23 15.5 41.5t33.5 18.5q27 0 27 -29z" />
  406. <glyph unicode="&#x1eb8;" horiz-adv-x="532" d="M437 39l-8 -39h-350l115 538q17 83 24 147h342l4 -5l-7 -34l-297 4l-63 -292l257 2l-9 -39l-255 2l-62 -288zM261 -145q0 -24 -15 -42.5t-34 -18.5q-27 0 -27 30q0 23 15.5 41.5t33.5 18.5q27 0 27 -29z" />
  407. <glyph unicode="&#x1eb9;" horiz-adv-x="447" d="M364 119l18 -13q-30 -54 -79 -85t-100 -31q-64 0 -104 47.5t-40 131.5q0 78 33.5 156t91.5 129t123 51q47 0 76 -27.5t29 -74.5q0 -70 -71 -120t-234 -58q-5 -30 -5 -53q0 -66 29 -106t80 -40q78 0 153 93zM298 469q-60 0 -111.5 -64.5t-73.5 -150.5q140 9 198 53t58 95 q0 30 -19.5 48.5t-51.5 18.5zM188 -145q0 -24 -15 -42.5t-34 -18.5q-27 0 -27 30q0 23 15.5 41.5t33.5 18.5q27 0 27 -29z" />
  408. <glyph unicode="&#x1ebc;" horiz-adv-x="532" d="M369 890q29 0 68 -28t61 -28q40 0 82 57l15 -3q-13 -37 -43.5 -64.5t-66.5 -27.5q-30 0 -69 28t-61 28q-40 0 -82 -57l-15 3q13 35 43 63.5t68 28.5zM437 39l-8 -39h-350l115 538q17 83 24 147h342l4 -5l-7 -34l-297 4l-63 -292l257 2l-9 -39l-255 2l-62 -288z" />
  409. <glyph unicode="&#x1ebd;" horiz-adv-x="447" d="M253 710q26 0 62 -28t55 -28q33 0 75 57l15 -3q-14 -36 -42.5 -64t-60.5 -28q-27 0 -63 28t-55 28q-33 0 -75 -57l-15 3q15 35 43 63.5t61 28.5zM364 119l18 -13q-30 -54 -79 -85t-100 -31q-64 0 -104 47.5t-40 131.5q0 78 33.5 156t91.5 129t123 51q47 0 76 -27.5 t29 -74.5q0 -70 -71 -120t-234 -58q-5 -30 -5 -53q0 -66 29 -106t80 -40q78 0 153 93zM298 469q-60 0 -111.5 -64.5t-73.5 -150.5q140 9 198 53t58 95q0 30 -19.5 48.5t-51.5 18.5z" />
  410. <glyph unicode="&#x1eca;" horiz-adv-x="299" d="M121 0h-42l114 538q18 80 25 147l46 10l4 -5zM101 -145q0 -24 -15 -42.5t-34 -18.5q-27 0 -27 30q0 23 15.5 41.5t33.5 18.5q27 0 27 -29z" />
  411. <glyph unicode="&#x1ecb;" horiz-adv-x="241" d="M227 682q0 -24 -15 -42.5t-34 -18.5q-27 0 -27 30q0 23 15.5 41.5t33.5 18.5q27 0 27 -29zM111 0h-40q0 96 37 267l20 92l8 136l49 10q0 -73 -37 -248t-37 -257zM110 -145q0 -24 -15 -42.5t-34 -18.5q-27 0 -27 30q0 23 15.5 41.5t33.5 18.5q27 0 27 -29z" />
  412. <glyph unicode="&#x1ecc;" horiz-adv-x="689" d="M630 448q0 -111 -42.5 -215.5t-122 -173.5t-174.5 -69q-90 0 -141.5 62.5t-51.5 178.5q0 111 43.5 217t123.5 176.5t174 70.5q89 0 140 -64.5t51 -182.5zM143 240q0 -100 41 -156t118 -56q83 0 149.5 64t100 158.5t33.5 193.5q0 101 -39 157t-115 56q-82 0 -150 -65 t-103 -160t-35 -192zM294 -145q0 -24 -15 -42.5t-34 -18.5q-27 0 -27 30q0 23 15.5 41.5t33.5 18.5q27 0 27 -29z" />
  413. <glyph unicode="&#x1ecd;" horiz-adv-x="494" d="M436 337q0 -82 -30 -160.5t-88.5 -132.5t-129.5 -54q-62 0 -95.5 43t-33.5 126t30.5 162t88.5 131.5t128 52.5q62 0 96 -42.5t34 -125.5zM102 164q0 -138 97 -138q57 0 103 48.5t68.5 117.5t22.5 139q0 138 -97 138q-57 0 -103 -48.5t-68.5 -117.5t-22.5 -139zM203 -145 q0 -24 -15 -42.5t-34 -18.5q-27 0 -27 30q0 23 15.5 41.5t33.5 18.5q27 0 27 -29z" />
  414. <glyph unicode="&#x1ee4;" horiz-adv-x="634" d="M87 157q0 41 45.5 245.5t50.5 284.5l54 8v-1q-22 -101 -53 -246q-55 -254 -55 -281q0 -66 40.5 -101.5t106.5 -35.5q78 0 139 49t80 138q12 54 25.5 118t20 95t14.5 69.5t11.5 56t7.5 39t5.5 34.5t3 27t2.5 31l54 8l-101 -475q-24 -110 -100.5 -170t-175.5 -60 q-79 0 -127 43t-48 124zM273 -145q0 -24 -15 -42.5t-34 -18.5q-27 0 -27 30q0 23 15.5 41.5t33.5 18.5q27 0 27 -29z" />
  415. <glyph unicode="&#x1ee5;" horiz-adv-x="510" d="M76 145l45 214l8 136l49 10q0 -34 -5 -74.5t-10 -68.5t-15.5 -79t-15.5 -75q-9 -50 -12 -79.5t0 -55t17.5 -36.5t40.5 -11q64 0 114.5 62t81.5 165q29 129 34 191q3 26 3 51l40 10q0 -35 -5.5 -79t-12 -77t-18 -86.5t-16.5 -80.5q-22 -114 -22 -182h-40q0 61 13 137 q-33 -71 -83 -109t-101 -38q-56 0 -80.5 42t-9.5 113zM256 -145q0 -24 -15 -42.5t-34 -18.5q-27 0 -27 30q0 23 15.5 41.5t33.5 18.5q27 0 27 -29z" />
  416. <glyph unicode="&#x1ef2;" horiz-adv-x="524" d="M485 779q-126 20 -207 78l1 8l36 31q64 -54 181 -100zM243 256l-124 435l43 4l74 -260q2 -9 12 -42.5t15.5 -59t7.5 -48.5h1q16 30 101 152l182 258l33 -5l4 -5l-308 -433l-54 -252h-42z" />
  417. <glyph unicode="&#x1ef3;" horiz-adv-x="398" d="M324 580q-91 66 -130 151l5 8l42 16q26 -71 96 -162zM387 505q18 0 18 -18q0 -61 -59 -185.5t-140.5 -247.5t-176 -216t-157.5 -93q-37 0 -37 27q0 13 8 23q21 -3 37 -3q96 0 246 210q0 261 -58 493l40 10q59 -217 59 -445h1q180 263 200 441q9 4 19 4z" />
  418. <glyph unicode="&#x1ef8;" horiz-adv-x="524" d="M331 890q29 0 68 -28t61 -28q40 0 82 57l15 -3q-13 -37 -43.5 -64.5t-66.5 -27.5q-30 0 -69 28t-61 28q-40 0 -82 -57l-15 3q13 35 43 63.5t68 28.5zM243 256l-124 435l43 4l74 -260q2 -9 12 -42.5t15.5 -59t7.5 -48.5h1q16 30 101 152l182 258l33 -5l4 -5l-308 -433 l-54 -252h-42z" />
  419. <glyph unicode="&#x1ef9;" horiz-adv-x="398" d="M210 710q26 0 62 -28t55 -28q33 0 75 57l15 -3q-14 -36 -42.5 -64t-60.5 -28q-27 0 -63 28t-55 28q-33 0 -75 -57l-15 3q15 35 43 63.5t61 28.5zM387 505q18 0 18 -18q0 -61 -59 -185.5t-140.5 -247.5t-176 -216t-157.5 -93q-37 0 -37 27q0 13 8 23q21 -3 37 -3 q96 0 246 210q0 261 -58 493l40 10q59 -217 59 -445h1q180 263 200 441q9 4 19 4z" />
  420. <glyph unicode="&#x2007;" />
  421. <glyph unicode="&#x2013;" horiz-adv-x="494" d="M40 279l4 35h431l-5 -35h-430z" />
  422. <glyph unicode="&#x2014;" horiz-adv-x="754" d="M37 279l7 35h694l-7 -35h-694z" />
  423. <glyph unicode="&#x2018;" horiz-adv-x="207" d="M263 744q-57 -87 -84 -167q14 0 22.5 -9t8.5 -23q0 -23 -17 -40.5t-39 -17.5q-30 0 -30 33q0 36 39.5 109t83.5 125z" />
  424. <glyph unicode="&#x2019;" horiz-adv-x="207" d="M104 500q57 87 84 167q-14 0 -22.5 9t-8.5 23q0 23 17 40.5t39 17.5q30 0 30 -33q0 -36 -39.5 -109t-83.5 -125z" />
  425. <glyph unicode="&#x201a;" horiz-adv-x="207" d="M-40 -177q57 87 84 167q-14 0 -22.5 9t-8.5 23q0 23 17 40.5t39 17.5q30 0 30 -33q0 -36 -39.5 -109t-83.5 -125z" />
  426. <glyph unicode="&#x201c;" horiz-adv-x="364" d="M263 744q-57 -87 -84 -167q14 0 22.5 -9t8.5 -23q0 -23 -17 -40.5t-39 -17.5q-30 0 -30 33q0 36 39.5 109t83.5 125zM420 744q-57 -87 -84 -167q14 0 22.5 -9t8.5 -23q0 -23 -17 -40.5t-39 -17.5q-30 0 -30 33q0 36 39.5 109t83.5 125z" />
  427. <glyph unicode="&#x201d;" horiz-adv-x="364" d="M261 501q57 87 84 167q-14 0 -22.5 9t-8.5 23q0 23 17 40.5t39 17.5q30 0 30 -33q0 -36 -39.5 -109t-83.5 -125zM104 501q57 87 84 167q-14 0 -22.5 9t-8.5 23q0 23 17 40.5t39 17.5q30 0 30 -33q0 -36 -39.5 -109t-83.5 -125z" />
  428. <glyph unicode="&#x201e;" horiz-adv-x="364" d="M-40 -177q57 87 84 167q-14 0 -22.5 9t-8.5 23q0 23 17 40.5t39 17.5q30 0 30 -33q0 -36 -39.5 -109t-83.5 -125zM117 -177q57 87 84 167q-14 0 -22.5 9t-8.5 23q0 23 17 40.5t39 17.5q30 0 30 -33q0 -36 -39.5 -109t-83.5 -125z" />
  429. <glyph unicode="&#x2020;" horiz-adv-x="504" d="M209 0l-17 -3l-6 7l27 168l71 298l-168 -5l-2 3q0 14 3 28l8 7l165 -5l35 191l4 3q20 3 31 3l6 -7l-46 -190l168 5l3 -3q0 -14 -3 -28l-9 -7l-166 5l-55 -298l-45 -169z" />
  430. <glyph unicode="&#x2021;" horiz-adv-x="504" d="M183 -3l-6 7l49 192l-167 -7l-6 7q4 19 10 32l4 3l164 -9q16 115 19 129q3 13 35 120l-169 -7l-2 3q0 14 4 32l8 7l165 -9l32 192l4 3q23 3 35 3l6 -7l-48 -191l169 9l2 -3q0 -5 -3 -32l-9 -7l-164 7l-18 -120q-3 -14 -35 -129l168 9l5 -7q-4 -19 -10 -32l-3 -3l-166 7 l-34 -193l-4 -3q-6 0 -17.5 -1t-17.5 -2z" />
  431. <glyph unicode="&#x2022;" horiz-adv-x="394" d="M182 190q-36 0 -56 21t-20 54q0 53 41 96t91 43q34 0 52.5 -20t18.5 -52q0 -55 -38.5 -98.5t-88.5 -43.5z" />
  432. <glyph unicode="&#x2026;" horiz-adv-x="553" d="M104 48q0 -22 -17 -40t-37 -18q-14 0 -23.5 9t-9.5 24q0 22 17.5 39.5t37.5 17.5q14 0 23 -9t9 -23zM275 48q0 -22 -17 -40t-37 -18q-14 0 -23.5 9t-9.5 24q0 22 17.5 39.5t37.5 17.5q14 0 23 -9t9 -23zM446 48q0 -22 -17 -40t-37 -18q-14 0 -23.5 9t-9.5 24 q0 22 17.5 39.5t37.5 17.5q14 0 23 -9t9 -23z" />
  433. <glyph unicode="&#x2030;" horiz-adv-x="1333" d="M436 558q0 -99 -59 -181.5t-149 -82.5q-55 0 -84.5 36t-29.5 103q0 100 59 181.5t148 81.5q56 0 85.5 -35.5t29.5 -102.5zM734 695l-422 -705h-40l421 705h41zM152 436q0 -112 85 -112q72 0 116.5 73t44.5 158q0 111 -85 111q-72 0 -116.5 -73t-44.5 -157zM848 186 q0 -99 -59 -181.5t-149 -82.5q-55 0 -84.5 36t-29.5 103q0 100 59 181.5t148 81.5q56 0 85.5 -35.5t29.5 -102.5zM1245 186q0 -99 -59 -181.5t-149 -82.5q-55 0 -84.5 36t-29.5 103q0 100 59 181.5t148 81.5q56 0 85.5 -35.5t29.5 -102.5zM564 64q0 -112 85 -112 q72 0 116.5 73t44.5 158q0 111 -85 111q-72 0 -116.5 -73t-44.5 -157zM961 64q0 -112 85 -112q72 0 116.5 73t44.5 158q0 111 -85 111q-72 0 -116.5 -73t-44.5 -157z" />
  434. <glyph unicode="&#x2039;" horiz-adv-x="279" d="M68 286l3 12q82 65 208 197l11 -8q-75 -107 -165 -195q54 -93 82 -195l-14 -8q-77 142 -125 197z" />
  435. <glyph unicode="&#x203a;" horiz-adv-x="279" d="M230 298l-3 -12q-82 -65 -208 -197l-11 8q75 107 165 195q-54 93 -82 195l14 8q77 -142 125 -197z" />
  436. <glyph unicode="&#x2044;" horiz-adv-x="520" d="M616 700l-576 -710h-45l575 710h46z" />
  437. <glyph unicode="&#x2070;" horiz-adv-x="470" d="M526 617q0 -108 -66.5 -190.5t-156.5 -82.5q-58 0 -90.5 37.5t-32.5 109.5q0 108 67 191.5t156 83.5q57 0 90 -38.5t33 -110.5zM220 494q0 -59 23 -90.5t67 -31.5q71 0 123 74t52 170q0 122 -88 122q-71 0 -124 -74t-53 -170z" />
  438. <glyph unicode="&#x2074;" horiz-adv-x="391" d="M145 494l247 266l41 6l3 -4l-56 -266q46 2 68 5l-15 -36h-60l-24 -113h-37l25 113h-192v29zM180 495v-1q49 1 142 1h20h1l29 133q5 24 11 53t10 44h-1z" />
  439. <glyph unicode="&#x2075;" horiz-adv-x="366" d="M131 358l11 30q42 -15 92 -15q61 0 103 32t42 79q0 39 -27.5 60t-70.5 21q-50 0 -84 -13l-6 6l42 200h128q64 0 105 6l-11 -38h-195l-29 -140q29 7 67 7q53 0 87.5 -26t34.5 -75q0 -62 -55.5 -105t-136.5 -43q-48 0 -97 14z" />
  440. <glyph unicode="&#x2076;" horiz-adv-x="406" d="M297 344q-121 0 -121 133q0 113 79 201t184 88q36 0 51 -9l-10 -30q-18 9 -47 9q-69 0 -126 -48.5t-81 -142.5h1q48 41 116 41q53 0 84.5 -26.5t31.5 -72.5q0 -59 -47.5 -101t-114.5 -42zM335 559q-32 0 -65 -14.5t-50 -38.5q-3 -18 -3 -35q0 -97 87 -97q48 0 81.5 32 t33.5 77q0 34 -21.5 55t-62.5 21z" />
  441. <glyph unicode="&#x2077;" horiz-adv-x="345" d="M193 719l15 39h258l4 -5l-5 -23q-90 -81 -165 -182t-101 -196h-40q26 92 105 196.5t160 176.5v1h-121q-61 0 -110 -7z" />
  442. <glyph unicode="&#x2078;" horiz-adv-x="385" d="M272 344q-59 0 -94.5 23.5t-35.5 61.5q0 37 35 71t99 55v1q-73 43 -73 99q0 47 44 79t103 32q50 0 82.5 -24t32.5 -62q0 -36 -32.5 -70t-86.5 -54v-1q86 -43 86 -105q0 -45 -46 -75.5t-114 -30.5zM342 738q-41 0 -70.5 -21.5t-29.5 -56.5q0 -54 75 -89q50 18 80 46.5 t30 58.5q0 28 -24 45t-61 17zM300 540q-47 -16 -83 -44t-36 -62q0 -28 25.5 -45.5t70.5 -17.5q52 0 84 22.5t32 53.5q0 47 -93 93z" />
  443. <glyph unicode="&#x2079;" horiz-adv-x="406" d="M290 512q-51 0 -80 26t-29 71q0 63 47.5 110t115.5 47q56 0 89.5 -36.5t33.5 -106.5q0 -112 -79.5 -195.5t-180.5 -83.5q-38 0 -51 5l6 29q24 -4 46 -4q74 0 135.5 56t74.5 135q-47 -53 -128 -53zM340 737q-49 0 -83 -36t-34 -84q0 -35 20.5 -56t59.5 -21q79 0 119 57 q3 21 3 37q0 47 -22 75t-63 28zM438 628l-2 -6q1 4 2 6z" />
  444. <glyph unicode="&#x207f;" horiz-adv-x="449" d="M185 560q27 57 73.5 90.5t94.5 33.5q40 0 63 -23t23 -63q0 -22 -29 -150q-20 -88 -17 -158h-35q-1 67 23 183q19 89 19 119q0 60 -58 60q-82 0 -139.5 -104.5t-58.5 -257.5h-35q-1 47 7.5 100t35.5 180l4 106l43 8q1 -51 -16 -124h2z" />
  445. <glyph unicode="&#x2080;" horiz-adv-x="470" d="M436 193q0 -108 -66.5 -190.5t-156.5 -82.5q-58 0 -90.5 37.5t-32.5 109.5q0 108 67 191.5t156 83.5q57 0 90 -38.5t33 -110.5zM130 70q0 -59 23 -90.5t67 -31.5q71 0 123 74t52 170q0 122 -88 122q-71 0 -124 -74t-53 -170z" />
  446. <glyph unicode="&#x2081;" horiz-adv-x="227" d="M164 300h-1l-81 -17l-2 22l126 39l3 -4l-87 -410h-38l60 283q9 44 20 87z" />
  447. <glyph unicode="&#x2082;" horiz-adv-x="359" d="M25 -70l2 33q68 41 109 68.5t87.5 65t68.5 73t22 70.5t-22.5 54.5t-61.5 19.5q-66 0 -134 -45l3 31q27 20 67.5 32t76.5 12q50 0 81.5 -25.5t31.5 -69.5q0 -40 -25 -80.5t-71 -78.5t-89.5 -66.5t-101.5 -61.5h135q54 0 105 6l-14 -38h-270z" />
  448. <glyph unicode="&#x2083;" horiz-adv-x="346" d="M115 309q56 33 127 33q44 0 72 -19t28 -52q0 -43 -42.5 -79.5t-107.5 -55.5q57 0 90.5 -22t33.5 -62q0 -55 -55 -93.5t-135 -38.5q-54 0 -100 14l10 29q46 -14 94 -14q61 0 103 28t42 68q0 69 -114 69q-25 0 -45 -4l7 29q81 16 129 49t48 74q0 23 -19 36.5t-54 13.5 q-57 0 -114 -32z" />
  449. <glyph unicode="&#x2084;" horiz-adv-x="391" d="M55 72l247 266l41 6l3 -4l-56 -266q46 2 68 5l-15 -36h-60l-24 -113h-37l25 113h-192v29zM90 73v-1q49 1 142 1h20h1l29 133q5 24 11 53t10 44h-1z" />
  450. <glyph unicode="&#x2085;" horiz-adv-x="366" d="M41 -66l11 30q42 -15 92 -15q61 0 103 32t42 79q0 39 -27.5 60t-70.5 21q-50 0 -84 -13l-6 6l42 200h128q64 0 105 6l-11 -38h-195l-29 -140q29 7 67 7q53 0 87.5 -26t34.5 -75q0 -62 -55.5 -105t-136.5 -43q-48 0 -97 14z" />
  451. <glyph unicode="&#x2086;" horiz-adv-x="406" d="M207 -80q-121 0 -121 133q0 113 79 201t184 88q36 0 51 -9l-10 -30q-18 9 -47 9q-69 0 -126 -48.5t-81 -142.5h1q48 41 116 41q53 0 84.5 -26.5t31.5 -72.5q0 -59 -47.5 -101t-114.5 -42zM245 135q-32 0 -65 -14.5t-50 -38.5q-3 -18 -3 -35q0 -97 87 -97q48 0 81.5 32 t33.5 77q0 34 -21.5 55t-62.5 21z" />
  452. <glyph unicode="&#x2087;" horiz-adv-x="345" d="M103 297l15 39h258l4 -5l-5 -23q-90 -81 -165 -182t-101 -196h-40q26 92 105 196.5t160 176.5v1h-121q-61 0 -110 -7z" />
  453. <glyph unicode="&#x2088;" horiz-adv-x="385" d="M182 -80q-59 0 -94.5 23.5t-35.5 61.5q0 37 35 71t99 55v1q-73 43 -73 99q0 47 44 79t103 32q50 0 82.5 -24t32.5 -62q0 -36 -32.5 -70t-86.5 -54v-1q86 -43 86 -105q0 -45 -46 -75.5t-114 -30.5zM252 314q-41 0 -70.5 -21.5t-29.5 -56.5q0 -54 75 -89q50 18 80 46.5 t30 58.5q0 28 -24 45t-61 17zM210 116q-47 -16 -83 -44t-36 -62q0 -28 25.5 -45.5t70.5 -17.5q52 0 84 22.5t32 53.5q0 47 -93 93z" />
  454. <glyph unicode="&#x2089;" horiz-adv-x="406" d="M200 88q-51 0 -80 26t-29 71q0 63 47.5 110t115.5 47q56 0 89.5 -36.5t33.5 -106.5q0 -112 -79.5 -195.5t-180.5 -83.5q-38 0 -51 5l6 29q24 -4 46 -4q74 0 135.5 56t74.5 135q-47 -53 -128 -53zM250 313q-49 0 -83 -36t-34 -84q0 -35 20.5 -56t59.5 -21q79 0 119 57 q3 21 3 37q0 47 -22 75t-63 28zM348 204l-2 -6q1 4 2 6z" />
  455. <glyph unicode="&#x20ac;" horiz-adv-x="611" d="M71 250l10 30h83q5 50 22 108h-70l11 30h70q45 121 131 199t184 78q87 0 138 -45l-17 -42q-20 22 -55.5 35.5t-72.5 13.5q-81 0 -153 -67t-111 -172h249l-10 -30h-249q-17 -60 -21 -108h234l-9 -30h-227v-15q0 -101 39.5 -154t114.5 -53q89 0 169 58l-2 -38 q-78 -58 -182 -58q-88 0 -137 58.5t-49 174.5q0 18 1 27h-91z" />
  456. <glyph unicode="&#x2122;" horiz-adv-x="597" d="M576 688l3 -3l-21 -225h-28l9 87q9 89 11 104h-1q-47 -94 -53 -105l-47 -86h-32l-10 86q-7 61 -9 106h-1q-11 -38 -34 -106l-29 -86h-25l77 226l35 2l14 -114q5 -38 5 -86h1q38 79 42 86l61 112zM214 460h-30l43 203q-25 0 -69 -2l7 24h164l-3 -24q-42 2 -69 2z" />
  457. <glyph unicode="&#x2202;" horiz-adv-x="598" d="M388 755q193 0 193 -272q0 -132 -41 -243.5t-120 -180.5t-180 -69q-81 0 -122.5 43.5t-41.5 119.5q0 117 86 200.5t210 83.5q88 0 158 -49q5 45 5 83q0 122 -39 185t-111 63q-35 0 -76 -13t-70 -33l-13 32q74 50 162 50zM120 162q0 -136 129 -136q107 0 179 91t96 230 q-63 54 -152 54q-112 0 -182 -68t-70 -171z" />
  458. <glyph unicode="&#x220f;" horiz-adv-x="733" d="M812 680l-11 -35h-130l-167 -785h-40l167 785h-259l-167 -785h-40l167 785h-130l7 35l599 5z" />
  459. <glyph unicode="&#x2211;" horiz-adv-x="557" d="M47 -87l343 373l-184 374l15 25h442l4 -5l-10 -33l-408 5l181 -358l-3 -15l-333 -358l410 5l-10 -38h-442z" />
  460. <glyph unicode="&#x2212;" d="M521 328h-450l7 35q172 5 451 5l3 -5z" />
  461. <glyph unicode="&#x221a;" horiz-adv-x="584" d="M715 745l-387 -745h-51l-80 462h-79l7 33h108l78 -456l369 716l31 -5z" />
  462. <glyph unicode="&#x221e;" horiz-adv-x="818" d="M773 377q0 -78 -57.5 -136.5t-138.5 -58.5q-34 0 -60.5 11t-45 32t-29 38.5t-21.5 43.5q-98 -125 -202 -125q-59 0 -95.5 36t-36.5 97q0 78 54.5 135.5t130.5 57.5q60 0 97 -36t66 -95q99 131 207 131q59 0 95 -35t36 -96zM632 472q-92 0 -183 -127q14 -32 23.5 -49.5 t25.5 -38.5t36 -30t47 -9q60 0 105 46t45 107q0 46 -27 73.5t-72 27.5zM129 325q0 -49 28 -77.5t73 -28.5q90 0 178 119q-27 62 -59 98t-85 36q-58 0 -96.5 -44.5t-38.5 -102.5z" />
  463. <glyph unicode="&#x222b;" horiz-adv-x="493" d="M137 -255q-60 0 -114 32l17 41q49 -37 103 -37q45 0 73.5 23t42 70t18 95.5t4.5 122.5q0 27 -1 110t-1 141q0 70 1.5 114t7.5 97t18 85t32 61t51.5 42t74.5 13q59 0 113 -32l-17 -41q-49 37 -103 37q-30 0 -53 -10.5t-37.5 -31.5t-24.5 -46.5t-14.5 -61.5t-6.5 -69.5 t-2 -77.5q0 -22 1 -107t1 -149q0 -63 -1 -104t-5 -89.5t-11.5 -79t-21 -62t-33 -48t-47.5 -27.5t-65 -11z" />
  464. <glyph unicode="&#x2248;" d="M450 367q-26 0 -127.5 38t-111.5 38q-18 0 -86 -75q-9 -9 -13 -14l-22 18q86 111 131 111q25 0 126 -38t112 -38q3 0 7 1.5t9 4.5t9 6.5t10.5 9t11.5 10t12.5 12.5t12.5 13.5t14 15t15 15.5l21 -17q-86 -111 -131 -111zM408 174q-26 0 -127 38t-112 38q-18 0 -86 -75 q-3 -3 -4.5 -5t-4 -4.5l-4.5 -4.5l-22 18q86 111 131 111q25 0 126.5 -38t111.5 -38q3 0 7 1.5t9 4.5t9 6.5t10.5 9t11.5 10t12.5 12.5t12.5 13.5t14 15t15 15.5l21 -17q-86 -111 -131 -111z" />
  465. <glyph unicode="&#x2260;" d="M116 120l85 123h-149l7 35q46 1 168 3l101 146h-237l8 35q55 2 256 4l92 133l7 2l24 -14l-84 -121q61 1 155 1l4 -5l-12 -35h-174l-101 -146q184 2 244 2l3 -5l-11 -35h-262l-93 -134l-8 -2z" />
  466. <glyph unicode="&#x2264;" d="M152 438l358 -145l-9 -40l-410 171l5 26l6 6q202 72 475 155l-9 -40zM477 103h-450l7 35q172 5 451 5l3 -5z" />
  467. <glyph unicode="&#x2265;" d="M61 253l9 40l422 146l-362 132l8 40q272 -97 409 -155l3 -6l-6 -30zM473 103h-450l7 35q172 5 451 5l3 -5z" />
  468. <glyph unicode="&#x25ca;" horiz-adv-x="600" d="M74 330l5 25l288 335l50 10l149 -345l-5 -27l-289 -328l-49 -10zM381 655l-263 -313l133 -306l8 1l265 305l-134 313h-9z" />
  469. <glyph unicode="&#x25fc;" horiz-adv-x="505" d="M0 505h505v-505h-505v505z" />
  470. <glyph unicode="&#xfb00;" horiz-adv-x="573" d="M-12 -203l-15 21q67 76 90 182l98 462l-75 2l5 24l77 7q2 9 6.5 38t7.5 42q18 84 69 122t119 38t122 -34q46 54 124 54q56 0 99 -26l-21 -40q-36 30 -89 30q-52 0 -81 -32t-43 -96q-10 -53 -18 -96h136l4 -5l-9 -31l-137 3l-98 -462q-24 -116 -115 -203l-15 21 q67 76 90 182l98 462h-216l-98 -462q-24 -116 -115 -203zM221 573q-3 -12 -7 -38t-7 -40h217q3 14 7 37t6.5 38.5t4.5 23.5q9 42 25 72q-51 33 -108 33q-56 0 -90 -29.5t-48 -96.5z" />
  471. <glyph unicode="&#xfb01;" horiz-adv-x="501" d="M-12 -203l-15 21q67 76 90 182l98 462l-75 2l5 24l77 7q5 23 11 59t7 40q15 75 65 118t125 43q79 0 131 -46l-30 -34q-46 44 -113 44q-111 0 -138 -126q-6 -29 -19 -98h189l49 10q0 -73 -37 -248t-37 -257h-40q0 96 37 267l20 92l6 100l-193 3l-98 -462 q-24 -116 -115 -203z" />
  472. <glyph unicode="&#xfb02;" horiz-adv-x="508" d="M-12 -203l-15 21q67 76 90 182l98 462l-75 2l5 24l77 7q5 23 11 59t7 40q15 75 65 118t125 43q44 0 81 -15v5l49 10q0 -94 -63.5 -371t-63.5 -384h-40q0 96 61 380l17 79l-216 3l-98 -462q-24 -116 -115 -203zM226 593q-6 -29 -19 -98h216l1 -2l25 116l5 84 q-36 26 -90 26q-111 0 -138 -126z" />
  473. <glyph unicode="&#xfb03;" horiz-adv-x="751" d="M-12 -203l-15 21q67 76 90 182l98 462l-75 2l5 24l77 7q2 9 6.5 38t7.5 42q18 84 69 122t119 38q67 0 121 -33q51 53 135 53q79 0 131 -46l-30 -34q-46 44 -113 44q-111 0 -138 -126q-6 -29 -19 -98h189l49 10q0 -73 -37 -248t-37 -257h-40q0 96 37 267l20 92l6 100 l-193 3l-98 -462q-24 -116 -115 -203l-15 21q67 76 90 182l98 462h-210l-98 -462q-24 -116 -115 -203zM221 573q-3 -12 -7 -38t-7 -40h211q5 23 11 59t7 40q9 44 28 74q-49 31 -105 31t-90 -29.5t-48 -96.5z" />
  474. <glyph unicode="&#xfb04;" horiz-adv-x="764" d="M-12 -203l-15 21q67 76 90 182l98 462l-75 2l5 24l77 7q2 9 6.5 38t7.5 42q19 84 69.5 122t118.5 38t124 -35q53 55 138 55q44 0 81 -15v5l49 10q0 -94 -63.5 -371t-63.5 -384h-40q0 96 61 380l17 79l-216 3l-98 -462q-24 -116 -115 -203l-15 21q67 76 90 182l98 462 h-216l-98 -462q-24 -116 -115 -203zM482 593q-6 -29 -19 -98h216l1 -2l25 116l5 84q-36 26 -90 26q-111 0 -138 -126zM221 573q-3 -12 -7 -38t-7 -40h217q5 23 11 59t7 40q7 38 26 71q-50 34 -109 34q-56 0 -89.5 -29.5t-48.5 -96.5z" />
  475. <glyph unicode="&#xfb06;" horiz-adv-x="728" d="M376 479l-17 -41q-48 31 -103 31t-89.5 -28t-34.5 -71q0 -31 21 -54t51.5 -38.5t61 -32t51.5 -44t21 -65.5q0 -62 -51.5 -104t-130.5 -42q-73 0 -127 32l17 41q50 -37 120 -37q53 0 90 29.5t37 72.5q0 30 -21.5 52.5t-51.5 37.5t-60.5 31t-52 43.5t-21.5 65.5 q0 64 53.5 105.5t128.5 41.5q31 0 60 -8q-15 29 -15 68q0 76 57 128t133 52q59 0 94 -32t35 -82q0 -39 -20.5 -76t-54.5 -60h167l4 -5l-8 -28h-138q-71 -330 -73 -355v-11q0 -38 15.5 -54t46.5 -16q43 0 86 25l2 -33q-49 -28 -104 -28q-89 0 -89 90q0 26 42 223 q21 95 34 159h-76l6 23q54 17 87 57t33 86q0 39 -25.5 60t-67.5 21q-61 0 -103.5 -43t-42.5 -107q0 -43 23 -80z" />
  476. <glyph horiz-adv-x="269" d="M369 865l-3 -8q-108 -58 -241 -78l-3 17q144 50 223 100zM-66 -182l-10 26q104 51 135 199l105 495q17 80 24 147l46 10l4 -5l-137 -647q-35 -166 -167 -225z" />
  477. <glyph horiz-adv-x="218" d="M279 736l1 -8q-79 -87 -194 -151l-7 13q114 96 164 162zM-70 -255l-15 21q91 52 119 182l88 411l8 136l49 10q0 -19 -1 -36.5t-5.5 -45.5t-8.5 -50.5t-14 -72t-18 -87t-25.5 -119t-31.5 -146.5q-29 -132 -145 -203z" />
  478. <glyph horiz-adv-x="419" d="M16 37q0 109 73.5 198t178.5 89q45 0 87 -13l-32 -135q-15 -64 -20 -88t-11 -70t-6 -88h-35q-1 72 20 174q-89 -182 -177 -182q-34 0 -56 29t-22 86zM54 42q0 -88 50 -88q37 0 81.5 56t75 121t43.5 114q6 26 9 40q-30 9 -61 9q-78 0 -138 -79.5t-60 -172.5z" />
  479. <glyph horiz-adv-x="429" d="M116 405l4 106l43 8q2 -88 -69 -378q84 183 184 183q37 0 60 -29t23 -86q0 -108 -74.5 -197.5t-183.5 -89.5q-52 0 -92 13q42 173 67 291zM61 0v2q-3 -14 -9 -40q27 -10 61 -10q86 0 148 78.5t62 172.5q0 42 -14 65.5t-39 23.5q-39 0 -86.5 -55.5t-79.5 -122t-43 -114.5z " />
  480. <glyph horiz-adv-x="375" d="M271 24l15 -12q-26 -40 -69 -65t-86 -25q-52 0 -82 37.5t-30 101.5q0 102 69 182.5t158 80.5q44 0 79 -20l-14 -35q-36 25 -72 25q-72 0 -127 -74.5t-55 -159.5q0 -48 21.5 -77.5t61.5 -29.5q69 0 131 71z" />
  481. <glyph horiz-adv-x="429" d="M297 -70h-35q-1 58 23 186q-37 -82 -86 -138t-105 -56q-34 0 -56.5 29.5t-22.5 87.5q0 109 78.5 197t190.5 88q23 0 44 -4l18 85l4 106l43 8q1 -73 -48.5 -289.5t-47.5 -299.5zM53 44q0 -42 14 -66t39 -24q39 0 85.5 56t78.5 122t41 111v-2l10 44q-24 9 -52 9 q-89 0 -152.5 -78t-63.5 -172z" />
  482. <glyph horiz-adv-x="379" d="M284 24l16 -12q-26 -42 -69 -66t-87 -24q-56 0 -90 39.5t-34 105.5q0 98 68 177.5t149 79.5q39 0 61.5 -20t22.5 -54q0 -55 -63 -98t-197 -50q-3 -18 -3 -34q0 -52 25 -83.5t67 -31.5q70 0 134 71zM231 294q-52 0 -100 -50.5t-66 -118.5q63 5 108.5 18.5t68 32.5t32 36.5 t9.5 35.5q0 21 -13.5 33.5t-38.5 12.5z" />
  483. <glyph horiz-adv-x="252" d="M-41 -230l-14 18q57 64 74 144l76 356l-65 2l4 20l67 6q3 16 7.5 42t6.5 34q12 60 49.5 93.5t97.5 33.5q49 0 86 -20l-17 -34q-33 23 -77 23q-83 0 -104 -96q-8 -40 -14 -76h116l4 -5l-7 -25l-118 2h-1l-75 -354q-21 -96 -96 -164z" />
  484. <glyph horiz-adv-x="358" d="M86 -269q-66 0 -103 26t-37 68q0 53 65 90l13 -13q-40 -35 -40 -70q0 -31 28.5 -51t79.5 -20q55 0 93.5 23.5t38.5 57.5q0 19 -17 34.5t-58 33.5q-40 17 -57 29t-17 30q0 32 69 77v1q-5 -1 -14 -1q-43 0 -70 28t-27 75q0 70 50 122.5t121 52.5q91 0 128 8q5 -7 5 -17 q0 -21 -31 -21q-20 0 -63 9h-1q44 -23 44 -88q0 -40 -18 -75t-43.5 -58.5t-51 -42t-43.5 -34t-18 -26.5q0 -19 50 -38q100 -39 100 -95q0 -43 -48 -79t-128 -36zM251 215q0 37 -18 59t-48 22q-45 0 -81 -44.5t-36 -98.5q0 -38 19 -58t49 -20q48 0 81.5 44.5t33.5 95.5z" />
  485. <glyph horiz-adv-x="449" d="M67 -70h-35q-2 68 46 296l38 179l5 106l43 8q0 -14 -0.5 -28.5t-3 -32.5t-4 -31.5t-6 -37t-7 -34.5t-8.5 -39t-8 -37l-9 -40.5t-9 -38.5h1q30 58 76.5 91t96.5 33q38 0 58.5 -22t20.5 -60q0 -19 -27 -145q-18 -87 -18 -167h-36q-1 71 28 204q14 63 14 93q0 35 -12.5 50 t-40.5 15q-85 0 -143.5 -108t-59.5 -254z" />
  486. <glyph horiz-adv-x="202" d="M152 495q0 -18 -11.5 -33.5t-29.5 -15.5q-23 0 -23 25q0 18 13 33.5t28 15.5q23 0 23 -25zM68 -70h-35q-3 69 27 208l16 72l4 106l43 8q1 -57 -27.5 -193.5t-27.5 -200.5z" />
  487. <glyph horiz-adv-x="188" d="M153 495q0 -18 -11.5 -33.5t-29.5 -15.5q-23 0 -23 25q0 18 13 33.5t28 15.5q23 0 23 -25zM-53 -271l-14 18q57 66 74 144l69 319l5 106l43 8q0 -16 -0.5 -30.5t-4 -36.5t-6.5 -40t-11 -55t-14.5 -66.5t-20 -90.5t-24.5 -112q-21 -95 -96 -164z" />
  488. <glyph horiz-adv-x="401" d="M351 262q0 -46 -48.5 -91.5t-116.5 -76.5q67 -103 131 -164h-46q-69 74 -127 174q169 81 169 151q0 39 -41 39q-49 0 -97 -57.5t-77.5 -142t-30.5 -164.5h-35q-2 68 46 296l38 179l5 106l43 8q1 -32 -6 -81t-14 -81.5t-23.5 -105t-21.5 -95.5q31 80 81.5 124t103.5 44 q32 0 49.5 -17t17.5 -45z" />
  489. <glyph horiz-adv-x="200" d="M67 -70h-35q-2 68 46 296l38 179l5 106l43 8q1 -74 -49 -290t-48 -299z" />
  490. <glyph horiz-adv-x="682" d="M109 200q26 56 72.5 90t92.5 34q38 0 59.5 -22.5t21.5 -61.5q0 -17 -4 -36q28 56 72 88t89 32q40 0 61.5 -22t21.5 -62q0 -30 -25 -137q-22 -94 -20 -173h-35q-2 68 21 176q20 96 20 127q0 59 -53 59q-77 0 -136 -101t-58 -261h-35q-1 67 23 183q18 88 18 116 q0 63 -54 63q-77 0 -134.5 -106t-58.5 -256h-35q-1 47 7.5 100t35.5 180l4 106l43 8q1 -51 -16 -124h2z" />
  491. <glyph horiz-adv-x="449" d="M109 200q27 57 73.5 90.5t94.5 33.5q40 0 63 -23t23 -63q0 -22 -29 -150q-20 -88 -17 -158h-35q-1 67 23 183q19 89 19 119q0 60 -58 60q-82 0 -139.5 -104.5t-58.5 -257.5h-35q-1 47 7.5 100t35.5 180l4 106l43 8q1 -51 -16 -124h2z" />
  492. <glyph horiz-adv-x="415" d="M342 186q0 -99 -59 -181.5t-149 -82.5q-55 0 -84.5 36t-29.5 103q0 100 59 181.5t148 81.5q56 0 85.5 -35.5t29.5 -102.5zM58 64q0 -112 85 -112q72 0 116.5 73t44.5 158q0 111 -85 111q-72 0 -116.5 -73t-44.5 -157z" />
  493. <glyph horiz-adv-x="434" d="M105 -78q-23 0 -53 5q-25 -126 -24 -188h-35q-1 69 46 292l38 179l5 106l43 8q1 -61 -23 -175q83 175 179 175q37 0 60.5 -29t23.5 -87q0 -109 -76 -197.5t-184 -88.5zM274 292q-38 0 -82.5 -51t-76 -115.5t-45.5 -118.5q-2 -8 -5.5 -23.5t-5.5 -23.5q29 -8 59 -8 q85 0 147 78.5t62 172.5q0 42 -14 65.5t-39 23.5z" />
  494. <glyph horiz-adv-x="426" d="M99 -78q-36 0 -59.5 29t-23.5 88q0 110 76 197.5t189 87.5q40 0 83 -13l-79 -344q-34 -148 -33 -228h-35q-3 81 49 304l13 54q-36 -72 -82.5 -123.5t-97.5 -51.5zM54 43q0 -42 14 -65.5t39 -23.5q39 0 83.5 50.5t76 113.5t44.5 116l12 51q-31 9 -59 9q-86 0 -148 -78 t-62 -173z" />
  495. <glyph horiz-adv-x="312" d="M68 -70h-35q-1 79 27 208l16 72l4 106l43 8q1 -54 -18 -140h2q57 140 155 140q32 0 54 -15l-21 -31q-20 11 -42 11q-50 0 -94 -57.5t-68 -140t-23 -161.5z" />
  496. <glyph horiz-adv-x="365" d="M293 304l-14 -35q-43 25 -92 25q-47 0 -74 -21t-27 -53q0 -29 28 -51t62 -34t62 -37.5t28 -62.5q0 -48 -43.5 -80.5t-110.5 -32.5q-63 0 -110 25l14 35q44 -29 104 -29q45 0 76 21.5t31 53.5q0 28 -28.5 49t-62.5 33t-62.5 38t-28.5 63q0 50 43 81.5t108 31.5 q55 0 97 -20z" />
  497. <glyph horiz-adv-x="293" d="M255 289h-119q-56 -259 -56 -281q0 -55 55 -55q35 0 73 19l2 -28q-44 -22 -89 -22q-79 0 -79 74q0 5 0.5 9t1.5 11l2 14t4 20.5t5.5 26.5t7.5 36t10 45.5l13 58.5l16 72h-66l5 21l66 6l27 88l26 3l3 -4l-21 -87h116l4 -4z" />
  498. <glyph horiz-adv-x="434" d="M36 8q0 19 39 202l5 106l42 8q1 -22 0 -41t-4.5 -40.5t-5 -31t-7.5 -36.5t-7 -32q-22 -101 -22 -133q0 -56 55 -56q56 0 102 56t68.5 137t20.5 162v7l35 8q1 -27 -3 -60.5t-9 -59t-14 -68t-13 -65.5q-17 -91 -16 -141h-35q-1 43 10 108q-27 -56 -70 -86t-87 -30 q-39 0 -61.5 22.5t-22.5 63.5z" />
  499. <glyph horiz-adv-x="344" d="M86 -70q-4 205 -58 386l35 8q54 -163 58 -346h1q150 206 163 340q7 6 18 6q16 0 16 -20q0 -51 -60 -166t-139 -208h-34z" />
  500. <glyph horiz-adv-x="525" d="M483 324q16 0 16 -20q0 -52 -53.5 -166t-127.5 -208h-35q0 165 -19 322h-1q-16 -71 -60.5 -158t-103.5 -164h-35q0 209 -36 386l36 6q36 -162 36 -347h1q129 187 145 341h39q34 -157 34 -341h1q60 86 99 177t46 166q7 6 18 6z" />
  501. <glyph horiz-adv-x="306" d="M-44 -70q57 114 151 199q-35 127 -75 187l36 8q39 -57 73 -174q84 72 109 169q5 5 17 5q16 0 16 -17q0 -28 -41 -84t-93 -99q37 -134 76 -194h-40q-37 56 -69 169q-74 -64 -125 -169h-35z" />
  502. <glyph horiz-adv-x="345" d="M304 324q16 0 16 -18q0 -64 -79 -202.5t-187.5 -255.5t-178.5 -117q-34 0 -34 24q0 11 7 19q18 -3 32 -3q85 0 207 160q-6 210 -58 385l35 8q54 -167 58 -346h1q150 207 163 340q8 6 18 6z" />
  503. <glyph horiz-adv-x="370" d="M-19 -78l-16 20q130 125 199 196.5t120 140.5q-30 2 -89.5 8t-77.5 6q-48 0 -85 -36l-18 7q19 34 43.5 47t64.5 13q21 0 48.5 -3.5t66 -9t64.5 -8.5q3 4 7 11t7 10q24 0 24 -14q0 -23 -98.5 -130.5t-213.5 -212.5q14 2 21 2q21 0 78.5 -7.5t76.5 -7.5q48 0 87 47l18 -7 q-22 -42 -47.5 -57t-64.5 -15q-29 0 -91.5 8t-83.5 8q-24 0 -40 -16z" />
  504. <glyph horiz-adv-x="419" d="M92 397q0 109 73.5 198t178.5 89q45 0 87 -13l-32 -135q-15 -64 -20 -88t-11 -70t-6 -88h-35q-1 72 20 174q-89 -182 -177 -182q-34 0 -56 29t-22 86zM130 402q0 -88 50 -88q37 0 81.5 56t75 121t43.5 114q6 26 9 40q-30 9 -61 9q-78 0 -138 -79.5t-60 -172.5z" />
  505. <glyph horiz-adv-x="430" d="M355 684q37 0 60 -29t23 -86q0 -108 -74.5 -197.5t-183.5 -89.5q-52 0 -92 13q42 173 67 291l38 179l4 106l43 8q2 -88 -69 -378q84 183 184 183zM138 360v2q-3 -14 -9 -40q27 -10 61 -10q86 0 148 78.5t62 172.5q0 42 -14 65.5t-39 23.5q-39 0 -86.5 -55.5t-79.5 -122 t-43 -114.5z" />
  506. <glyph horiz-adv-x="376" d="M348 384l15 -12q-26 -40 -69 -65t-86 -25q-52 0 -82 37.5t-30 101.5q0 102 69 182.5t158 80.5q44 0 79 -20l-14 -35q-36 25 -72 25q-72 0 -127 -74.5t-55 -159.5q0 -48 21.5 -77.5t61.5 -29.5q69 0 131 71z" />
  507. <glyph horiz-adv-x="429" d="M373 290h-35q-1 58 23 186q-37 -82 -86 -138t-105 -56q-34 0 -56.5 29.5t-22.5 87.5q0 109 78.5 197t190.5 88q23 0 44 -4l18 85l4 106l43 8q1 -73 -48.5 -289.5t-47.5 -299.5zM129 404q0 -42 14 -66t39 -24q39 0 85.5 56t78.5 122t41 111v-2l10 44q-24 9 -52 9 q-89 0 -152.5 -78t-63.5 -172z" />
  508. <glyph horiz-adv-x="380" d="M361 384l16 -12q-26 -42 -69 -66t-87 -24q-56 0 -90 39.5t-34 105.5q0 98 68 177.5t149 79.5q39 0 61.5 -20t22.5 -54q0 -55 -63 -98t-197 -50q-3 -18 -3 -34q0 -52 25 -83.5t67 -31.5q70 0 134 71zM308 654q-52 0 -100 -50.5t-66 -118.5q63 5 108.5 18.5t68 32.5 t32 36.5t9.5 35.5q0 21 -13.5 33.5t-38.5 12.5z" />
  509. <glyph horiz-adv-x="252" d="M36 130l-14 18q57 64 74 144l76 356l-65 2l4 20l67 6q3 16 7.5 42t6.5 34q12 60 49.5 93.5t97.5 33.5q49 0 86 -20l-17 -34q-33 23 -77 23q-83 0 -104 -96q-8 -40 -14 -76h116l4 -5l-7 -25l-118 2h-1l-75 -354q-21 -96 -96 -164z" />
  510. <glyph horiz-adv-x="358" d="M163 91q-66 0 -103 26t-37 68q0 53 65 90l13 -13q-40 -35 -40 -70q0 -31 28.5 -51t79.5 -20q55 0 93.5 23.5t38.5 57.5q0 19 -17 34.5t-58 33.5q-40 17 -57 29t-17 30q0 32 69 77v1q-5 -1 -14 -1q-43 0 -70 28t-27 75q0 70 50 122.5t121 52.5q91 0 128 8q5 -7 5 -17 q0 -21 -31 -21q-20 0 -63 9h-1q44 -23 44 -88q0 -40 -18 -75t-43.5 -58.5t-51 -42t-43.5 -34t-18 -26.5q0 -19 50 -38q100 -39 100 -95q0 -43 -48 -79t-128 -36zM328 575q0 37 -18 59t-48 22q-45 0 -81 -44.5t-36 -98.5q0 -38 19 -58t49 -20q49 0 82 44.5t33 95.5z" />
  511. <glyph horiz-adv-x="450" d="M144 290h-35q-2 68 46 296l38 179l5 106l43 8q0 -14 -0.5 -28.5t-3 -32.5t-4 -31.5t-6 -37t-7 -34.5t-8.5 -39t-8 -37l-9 -40.5t-9 -38.5h1q30 58 76.5 91t96.5 33q38 0 58.5 -22t20.5 -60q0 -19 -27 -145q-18 -87 -18 -167h-36q-1 71 28 204q14 63 14 93q0 35 -12.5 50 t-40.5 15q-85 0 -143.5 -108t-59.5 -254z" />
  512. <glyph horiz-adv-x="203" d="M229 855q0 -18 -11.5 -33.5t-29.5 -15.5q-23 0 -23 25q0 18 13 33.5t28 15.5q23 0 23 -25zM145 290h-35q-3 69 27 208l16 72l4 106l43 8q1 -57 -27.5 -193.5t-27.5 -200.5z" />
  513. <glyph horiz-adv-x="187" d="M229 855q0 -18 -11.5 -33.5t-29.5 -15.5q-23 0 -23 25q0 18 13 33.5t28 15.5q23 0 23 -25zM23 89l-14 18q57 66 74 144l69 319l5 106l43 8q0 -16 -0.5 -30.5t-4 -36.5t-6.5 -40t-11 -55t-14.5 -66.5t-20 -90.5t-24.5 -112q-21 -95 -96 -164z" />
  514. <glyph horiz-adv-x="402" d="M428 622q0 -46 -48.5 -91.5t-116.5 -76.5q67 -103 131 -164h-46q-69 74 -127 174q169 81 169 151q0 39 -41 39q-49 0 -97 -57.5t-77.5 -142t-30.5 -164.5h-35q-2 68 46 296l38 179l5 106l43 8q1 -32 -6 -81t-14 -81.5t-23.5 -105t-21.5 -95.5q31 80 81.5 124t103.5 44 q33 0 50 -17t17 -45z" />
  515. <glyph horiz-adv-x="201" d="M144 290h-35q-2 68 46 296l38 179l5 106l43 8q1 -74 -49 -290t-48 -299z" />
  516. <glyph horiz-adv-x="682" d="M185 560q26 56 72.5 90t92.5 34q38 0 59.5 -22.5t21.5 -61.5q0 -17 -4 -36q28 56 72 88t89 32q40 0 61.5 -22t21.5 -62q0 -30 -25 -137q-22 -94 -20 -173h-35q-2 68 21 176q20 96 20 127q0 59 -53 59q-77 0 -136 -101t-58 -261h-35q-1 67 23 183q18 88 18 116 q0 63 -54 63q-77 0 -134.5 -106t-58.5 -256h-35q-1 47 7.5 100t35.5 180l4 106l43 8q1 -51 -16 -124h2z" />
  517. <glyph horiz-adv-x="415" d="M419 546q0 -99 -59 -181.5t-149 -82.5q-55 0 -84.5 36t-29.5 103q0 100 59 181.5t148 81.5q56 0 85.5 -35.5t29.5 -102.5zM135 424q0 -112 85 -112q72 0 116.5 73t44.5 158q0 111 -85 111q-72 0 -116.5 -73t-44.5 -157z" />
  518. <glyph horiz-adv-x="433" d="M104 99h-35q-1 69 46 292l38 179l5 106l43 8q1 -61 -23 -175q83 175 179 175q37 0 60.5 -29t23.5 -87q0 -109 -76 -197.5t-184 -88.5q-23 0 -53 5q-25 -126 -24 -188zM350 652q-38 0 -82.5 -51t-76 -115.5t-45.5 -118.5q-2 -8 -5.5 -23.5t-5.5 -23.5q29 -8 59 -8 q85 0 147 78.5t62 172.5q0 42 -14 65.5t-39 23.5z" />
  519. <glyph horiz-adv-x="426" d="M175 282q-36 0 -59.5 29t-23.5 88q0 110 76 197.5t189 87.5q40 0 83 -13l-79 -344q-34 -148 -33 -228h-35q-3 81 49 304l13 54q-36 -72 -82.5 -123.5t-97.5 -51.5zM130 403q0 -42 14 -65.5t39 -23.5q39 0 83.5 50.5t76 113.5t44.5 116l12 51q-31 9 -59 9q-86 0 -148 -78 t-62 -173z" />
  520. <glyph horiz-adv-x="311" d="M144 290h-35q-1 79 27 208l16 72l4 106l43 8q1 -54 -18 -140h2q57 140 155 140q32 0 54 -15l-21 -31q-20 11 -42 11q-50 0 -94 -57.5t-68 -140t-23 -161.5z" />
  521. <glyph horiz-adv-x="366" d="M370 664l-14 -35q-43 25 -92 25q-47 0 -74 -21t-27 -53q0 -29 28 -51t62 -34t62 -37.5t28 -62.5q0 -48 -43.5 -80.5t-110.5 -32.5q-63 0 -110 25l14 35q43 -29 104 -29q45 0 76 21.5t31 53.5q0 28 -28.5 49t-62.5 33t-62.5 38t-28.5 63q0 50 43 81.5t108 31.5 q55 0 97 -20z" />
  522. <glyph horiz-adv-x="292" d="M331 649h-119q-56 -259 -56 -281q0 -55 55 -55q35 0 73 19l2 -28q-44 -22 -89 -22q-79 0 -79 74q0 5 0.5 9t1.5 11l2 14t4 20.5t5.5 26.5t7.5 36t10 45.5l13 58.5l16 72h-66l5 21l66 6l27 88l26 3l3 -4l-21 -87h116l4 -4z" />
  523. <glyph horiz-adv-x="434" d="M112 368q0 19 39 202l5 106l42 8q1 -22 0 -41t-4.5 -40.5t-5 -31t-7.5 -36.5t-7 -32q-22 -101 -22 -133q0 -56 55 -56q56 0 102 56t68.5 137t20.5 162v7l35 8q1 -27 -3 -60.5t-9 -59t-14 -68t-13 -65.5q-17 -91 -16 -141h-35q-1 43 10 108q-27 -56 -70 -86t-87 -30 q-39 0 -61.5 22.5t-22.5 63.5z" />
  524. <glyph horiz-adv-x="344" d="M162 290q-4 205 -58 386l35 8q54 -163 58 -346h1q150 206 163 340q7 6 18 6q16 0 16 -20q0 -51 -60 -166t-139 -208h-34z" />
  525. <glyph horiz-adv-x="524" d="M559 684q16 0 16 -20q0 -52 -53.5 -166t-127.5 -208h-35q0 165 -19 322h-1q-16 -71 -60.5 -158t-103.5 -164h-35q0 209 -36 386l36 6q36 -162 36 -347h1q129 187 145 341h39q34 -157 34 -341h1q60 86 99 177t46 166q7 6 18 6z" />
  526. <glyph horiz-adv-x="306" d="M32 290q57 114 151 199q-35 127 -75 187l36 8q39 -57 73 -174q84 72 109 169q5 5 17 5q16 0 16 -17q0 -28 -41 -84t-93 -99q37 -134 76 -194h-40q-37 56 -69 169q-74 -64 -125 -169h-35z" />
  527. <glyph horiz-adv-x="345" d="M380 684q16 0 16 -18q0 -64 -79 -202.5t-187.5 -255.5t-178.5 -117q-34 0 -34 24q0 11 7 19q18 -3 32 -3q85 0 207 160q-6 210 -58 385l35 8q54 -167 58 -346h1q150 207 163 340q8 6 18 6z" />
  528. <glyph horiz-adv-x="369" d="M57 282l-16 20q130 125 199 196.5t120 140.5q-30 2 -89.5 8t-77.5 6q-48 0 -85 -36l-18 7q19 34 43.5 47t64.5 13q21 0 48.5 -3.5t66 -9t64.5 -8.5q3 3 7.5 10t6.5 11q24 0 24 -14q0 -23 -98.5 -130.5t-213.5 -212.5q14 2 21 2q21 0 78.5 -7.5t76.5 -7.5q48 0 87 47 l18 -7q-22 -42 -47.5 -57t-64.5 -15q-29 0 -91.5 8t-83.5 8q-24 0 -40 -16z" />
  529. <glyph horiz-adv-x="974" d="M366 119l18 -13q-74 -116 -181 -116q-66 0 -105 47t-39 131q0 130 82 233.5t185 103.5q22 0 35 -4q-19 33 -19 71q0 79 76.5 131t192.5 52q27 0 64 -5q0 -93 -65 -375q-5 -20 -7 -30h2q35 78 90 119t112 41q44 0 68 -26t24 -75q0 -13 -2.5 -30t-5 -31t-11.5 -54t-15 -71 q-27 -131 -27 -218h-40q0 86 34 238q27 124 27 162q0 69 -65 69q-68 0 -124 -66t-87.5 -172.5t-34.5 -230.5h-40q0 95 61 380l39 182q15 71 18 155q-24 2 -34 2q-80 0 -143.5 -38.5t-63.5 -108.5q0 -59 43 -109l-17 -41q-40 47 -94 47q-81 0 -148 -93.5t-67 -203.5 q0 -66 28.5 -106t82.5 -40q79 0 153 93z" />
  530. <glyph horiz-adv-x="780" d="M366 119l18 -13q-74 -116 -181 -116q-66 0 -105 47t-39 131q0 130 82 233.5t186 103.5q25 0 49 -8q-11 28 -11 68q0 76 57 128t133 52q59 0 94 -32t35 -82q0 -39 -20.5 -76t-54.5 -60h167l4 -5l-8 -28h-138q-71 -330 -73 -355v-11q0 -38 15.5 -54t46.5 -16q43 0 86 25 l2 -33q-49 -28 -104 -28q-89 0 -89 90q0 26 42 223q21 95 34 159h-76l6 23q54 17 87 57t33 86q0 39 -25.5 60t-67.5 21q-61 0 -103.5 -43t-42.5 -107q0 -53 23 -96l-17 -41q-40 47 -94 47q-81 0 -148 -93.5t-67 -203.5q0 -66 28.5 -106t82.5 -40q79 0 153 93z" />
  531. <glyph horiz-adv-x="926" d="M500 0h-40q0 94 61 380l39 182q15 71 18 155q-24 2 -34 2q-80 0 -143.5 -38.5t-63.5 -108.5q0 -50 39 -93l-17 -41q-48 31 -103 31t-89.5 -28t-34.5 -71q0 -31 21 -54t51.5 -38.5t61 -32t51.5 -44t21 -65.5q0 -62 -51.5 -104t-130.5 -42q-73 0 -127 32l17 41 q50 -37 120 -37q53 0 90 29.5t37 72.5q0 30 -21.5 52.5t-51.5 37.5t-60.5 31t-52 43.5t-21.5 65.5q0 64 53.5 105.5t128.5 41.5q28 0 52 -6q-26 33 -26 73q0 79 76.5 131t192.5 52q27 0 64 -5q0 -93 -65 -375q-5 -20 -7 -30h2q35 78 90 119t112 41q44 0 68 -26t24 -75 q0 -13 -2.5 -30t-5 -31t-11.5 -54t-15 -71q-27 -131 -27 -218h-40q0 86 34 238q27 124 27 162q0 69 -65 69q-68 0 -124 -66t-87.5 -172.5t-34.5 -230.5z" />
  532. <glyph horiz-adv-x="571" d="M41 0h-39l282 465q42 70 47 79l29 3l4 -5l99 -542h-42l-31 169h-246zM246 336l-81 -133h219l-25 133q-20 106 -22 159h-1q-24 -51 -90 -159z" />
  533. <glyph horiz-adv-x="571" d="M480 771l1 -8q-79 -87 -194 -151l-7 13q114 96 164 162zM41 0h-39l282 465q42 70 47 79l29 3l4 -5l99 -542h-42l-31 169h-246zM246 336l-81 -133h219l-25 133q-20 106 -22 159h-1q-24 -51 -90 -159z" />
  534. <glyph horiz-adv-x="571" d="M479 762l22 -3q-23 -57 -63 -89.5t-85 -32.5t-69.5 32.5t-20.5 89.5l23 3q2 -39 23.5 -60.5t57.5 -21.5q33 0 62.5 22t49.5 60zM41 0h-39l282 465q42 70 47 79l29 3l4 -5l99 -542h-42l-31 169h-246zM246 336l-81 -133h219l-25 133q-20 106 -22 159h-1q-24 -51 -90 -159z " />
  535. <glyph horiz-adv-x="600" d="M492 762l11 -11q-82 -87 -133 -154l-44 -5q-31 79 -78 159l15 11q47 -57 94 -126q56 56 135 126zM41 0h-39l282 465q42 70 47 79l29 3l4 -5l99 -542h-42l-31 169h-246zM246 336l-81 -133h219l-25 133q-20 106 -22 159h-1q-24 -51 -90 -159z" />
  536. <glyph horiz-adv-x="571" d="M265 614l-11 11q82 87 133 154l44 5q31 -79 78 -159l-15 -11q-47 57 -94 126q-56 -56 -135 -126zM41 0h-39l282 465q42 70 47 79l29 3l4 -5l99 -542h-42l-31 169h-246zM246 336l-81 -133h219l-25 133q-20 106 -22 159h-1q-24 -51 -90 -159z" />
  537. <glyph horiz-adv-x="571" d="M325 715q0 -24 -14.5 -43t-33.5 -19q-26 0 -26 30q0 22 15.5 41t33.5 19q25 0 25 -28zM513 715q0 -24 -14.5 -43t-33.5 -19q-26 0 -26 30q0 22 15.5 41t33.5 19q25 0 25 -28zM41 0h-39l282 465q42 70 47 79l29 3l4 -5l99 -542h-42l-31 169h-246zM246 336l-81 -133h219 l-25 133q-20 106 -22 159h-1q-24 -51 -90 -159z" />
  538. <glyph horiz-adv-x="571" d="M41 0h-39l282 465q42 70 47 79l29 3l4 -5l99 -542h-42l-31 169h-246zM246 336l-81 -133h219l-25 133q-20 106 -22 159h-1q-24 -51 -90 -159zM249 -130q0 -24 -15 -42.5t-34 -18.5q-27 0 -27 30q0 23 15.5 41.5t33.5 18.5q27 0 27 -29z" />
  539. <glyph horiz-adv-x="571" d="M440 615q-91 66 -130 151l5 8l42 16q26 -71 96 -162zM41 0h-39l282 465q42 70 47 79l29 3l4 -5l99 -542h-42l-31 169h-246zM246 336l-81 -133h219l-25 133q-20 106 -22 159h-1q-24 -51 -90 -159z" />
  540. <glyph horiz-adv-x="571" d="M246 681l7 34h264l-7 -34h-264zM41 0h-39l282 465q42 70 47 79l29 3l4 -5l99 -542h-42l-31 169h-246zM246 336l-81 -133h219l-25 133q-20 106 -22 159h-1q-24 -51 -90 -159z" />
  541. <glyph horiz-adv-x="571" d="M41 0h-39l282 465q42 70 47 79l29 3l4 -5l99 -542q-139 -71 -139 -142q0 -37 46 -37q24 0 59 12l4 -22q-34 -23 -79 -23q-35 0 -55 14.5t-20 41.5q0 83 143 156h-1l-31 169h-246zM246 336l-81 -133h219l-25 133q-20 106 -22 159h-1q-24 -51 -90 -159z" />
  542. <glyph horiz-adv-x="571" d="M459 701q0 -35 -30.5 -63.5t-68.5 -28.5q-26 0 -44 16t-18 40q0 34 31 62t69 28q27 0 44 -15t17 -39zM333 670q0 -16 9.5 -25t25.5 -9q22 0 39 18t17 41q0 33 -35 33q-22 0 -39 -17.5t-17 -40.5zM41 0h-39l282 465q42 70 47 79l29 3l4 -5l99 -542h-42l-31 169h-246z M246 336l-81 -133h219l-25 133q-20 106 -22 159h-1q-24 -51 -90 -159z" />
  543. <glyph horiz-adv-x="571" d="M528 996l1 -8q-79 -87 -194 -151l-7 13q114 96 164 162zM459 701q0 -35 -30.5 -63.5t-68.5 -28.5q-26 0 -44 16t-18 40q0 34 31 62t69 28q27 0 44 -15t17 -39zM333 670q0 -16 9.5 -25t25.5 -9q22 0 39 18t17 41q0 33 -35 33q-22 0 -39 -17.5t-17 -40.5zM41 0h-39l282 465 q42 70 47 79l29 3l4 -5l99 -542h-42l-31 169h-246zM246 336l-81 -133h219l-25 133q-20 106 -22 159h-1q-24 -51 -90 -159z" />
  544. <glyph horiz-adv-x="571" d="M326 745q26 0 62 -28t55 -28q33 0 75 57l15 -3q-14 -36 -42.5 -64t-60.5 -28q-27 0 -63 28t-55 28q-33 0 -75 -57l-15 3q15 35 43 63.5t61 28.5zM41 0h-39l282 465q42 70 47 79l29 3l4 -5l99 -542h-42l-31 169h-246zM246 336l-81 -133h219l-25 133q-20 106 -22 159h-1 q-24 -51 -90 -159z" />
  545. <glyph horiz-adv-x="708" d="M41 0h-39l316 465q34 52 47 74h297l4 -5l-8 -32l-243 4l-17 -222l198 2l-8 -36l-193 2l-16 -219l229 4l-8 -37h-266l13 169h-191q-10 -15 -115 -169zM373 495q-36 -61 -194 -292h171q21 257 26 292h-3z" />
  546. <glyph horiz-adv-x="708" d="M555 771l1 -8q-79 -87 -194 -151l-7 13q114 96 164 162zM41 0h-39l316 465q34 52 47 74h297l4 -5l-8 -32l-243 4l-17 -222l198 2l-8 -36l-193 2l-16 -219l229 4l-8 -37h-266l13 169h-191q-10 -15 -115 -169zM373 495q-36 -61 -194 -292h171q21 257 26 292h-3z" />
  547. <glyph horiz-adv-x="513" d="M172 0h-119l90 422q12 56 19 117h128q76 0 119 -29.5t43 -80.5q0 -50 -35 -91t-93 -58q100 -21 100 -104q0 -78 -70 -127t-182 -49zM280 506h-79l-45 -212h75q82 0 130 34t48 93q0 39 -32.5 62t-96.5 23zM228 261h-79l-49 -228h84q91 0 144.5 37.5t53.5 101.5 q0 89 -154 89z" />
  548. <glyph horiz-adv-x="543" d="M430 73l-2 -36q-70 -45 -169 -45q-86 0 -135 49t-49 139q0 148 92.5 257.5t217.5 109.5q86 0 138 -35l-17 -40q-43 38 -126 38q-107 0 -184 -93.5t-77 -223.5q0 -76 39.5 -120t115.5 -44q83 0 156 44z" />
  549. <glyph horiz-adv-x="543" d="M492 771l1 -8q-79 -87 -194 -151l-7 13q114 96 164 162zM430 73l-2 -36q-70 -45 -169 -45q-86 0 -135 49t-49 139q0 148 92.5 257.5t217.5 109.5q86 0 138 -35l-17 -40q-43 38 -126 38q-107 0 -184 -93.5t-77 -223.5q0 -76 39.5 -120t115.5 -44q83 0 156 44z" />
  550. <glyph horiz-adv-x="543" d="M511 785l11 -11q-82 -87 -133 -154l-44 -5q-31 79 -78 159l15 11q47 -57 94 -126q56 56 135 126zM430 73l-2 -36q-70 -45 -169 -45q-86 0 -135 49t-49 139q0 148 92.5 257.5t217.5 109.5q86 0 138 -35l-17 -40q-43 38 -126 38q-107 0 -184 -93.5t-77 -223.5 q0 -76 39.5 -120t115.5 -44q83 0 156 44z" />
  551. <glyph horiz-adv-x="543" d="M321 -100q0 -37 -45 -63.5t-99 -33.5l-1 22q102 23 102 66q0 27 -55 33l-5 11l31 57q-81 3 -127.5 52t-46.5 136q0 148 92.5 257.5t217.5 109.5q86 0 138 -35l-17 -40q-43 38 -126 38q-107 0 -184 -93.5t-77 -223.5q0 -76 39.5 -120t115.5 -44q83 0 156 44l-2 -36 q-60 -39 -149 -44l-22 -40q64 -10 64 -53z" />
  552. <glyph horiz-adv-x="543" d="M277 614l-11 11q82 87 133 154l44 5q31 -79 78 -159l-15 -11q-47 57 -94 126q-56 -56 -135 -126zM430 73l-2 -36q-70 -45 -169 -45q-86 0 -135 49t-49 139q0 148 92.5 257.5t217.5 109.5q86 0 138 -35l-17 -40q-43 38 -126 38q-107 0 -184 -93.5t-77 -223.5 q0 -76 39.5 -120t115.5 -44q83 0 156 44z" />
  553. <glyph horiz-adv-x="543" d="M432 717q0 -24 -15 -42.5t-34 -18.5q-27 0 -27 30q0 23 15.5 41.5t33.5 18.5q27 0 27 -29zM430 73l-2 -36q-70 -45 -169 -45q-86 0 -135 49t-49 139q0 148 92.5 257.5t217.5 109.5q86 0 138 -35l-17 -40q-43 38 -126 38q-107 0 -184 -93.5t-77 -223.5q0 -76 39.5 -120 t115.5 -44q83 0 156 44z" />
  554. <glyph horiz-adv-x="593" d="M524 335q0 -137 -102 -236t-244 -99h-125l90 422q12 56 19 117h134q100 0 164 -54.5t64 -149.5zM282 505h-81l-101 -471h84q125 0 210.5 85.5t85.5 210.5q0 82 -52.5 128.5t-145.5 46.5z" />
  555. <glyph horiz-adv-x="593" d="M524 335q0 -137 -102 -236t-244 -99h-125l53 249h-73l5 30h75l30 143q12 56 19 117h134q100 0 164 -54.5t64 -149.5zM339 249h-193l-46 -215h84q125 0 210.5 85.5t85.5 210.5q0 82 -52.5 128.5t-145.5 46.5h-81l-48 -226h191z" />
  556. <glyph horiz-adv-x="593" d="M510 785l11 -11q-82 -87 -133 -154l-44 -5q-31 79 -78 159l15 11q47 -57 94 -126q56 56 135 126zM524 335q0 -137 -102 -236t-244 -99h-125l90 422q12 56 19 117h134q100 0 164 -54.5t64 -149.5zM282 505h-81l-101 -471h84q125 0 210.5 85.5t85.5 210.5q0 82 -52.5 128.5 t-145.5 46.5z" />
  557. <glyph horiz-adv-x="593" d="M524 335q0 -137 -102 -236t-244 -99h-125l53 249h-73l5 30h75l30 143q12 56 19 117h134q100 0 164 -54.5t64 -149.5zM339 249h-193l-46 -215h84q125 0 210.5 85.5t85.5 210.5q0 82 -52.5 128.5t-145.5 46.5h-81l-48 -226h191z" />
  558. <glyph horiz-adv-x="593" d="M524 335q0 -137 -102 -236t-244 -99h-125l90 422q12 56 19 117h134q100 0 164 -54.5t64 -149.5zM282 505h-81l-101 -471h84q125 0 210.5 85.5t85.5 210.5q0 82 -52.5 128.5t-145.5 46.5zM241 -130q0 -24 -15 -42.5t-34 -18.5q-27 0 -27 30q0 23 15.5 41.5t33.5 18.5 q27 0 27 -29z" />
  559. <glyph horiz-adv-x="462" d="M362 37l-8 -37h-301l90 422q12 56 19 117h294l4 -5l-8 -32l-251 4l-47 -222l216 2l-8 -36l-215 2l-47 -219z" />
  560. <glyph horiz-adv-x="462" d="M442 771l1 -8q-79 -87 -194 -151l-7 13q114 96 164 162zM362 37l-8 -37h-301l90 422q12 56 19 117h294l4 -5l-8 -32l-251 4l-47 -222l216 2l-8 -36l-215 2l-47 -219z" />
  561. <glyph horiz-adv-x="462" d="M441 762l22 -3q-23 -57 -63 -89.5t-85 -32.5t-69.5 32.5t-20.5 89.5l23 3q2 -39 23.5 -60.5t57.5 -21.5q33 0 62.5 22t49.5 60zM362 37l-8 -37h-301l90 422q12 56 19 117h294l4 -5l-8 -32l-251 4l-47 -222l216 2l-8 -36l-215 2l-47 -219z" />
  562. <glyph horiz-adv-x="462" d="M461 785l11 -11q-82 -87 -133 -154l-44 -5q-31 79 -78 159l15 11q47 -57 94 -126q56 56 135 126zM362 37l-8 -37h-301l90 422q12 56 19 117h294l4 -5l-8 -32l-251 4l-47 -222l216 2l-8 -36l-215 2l-47 -219z" />
  563. <glyph horiz-adv-x="462" d="M227 614l-11 11q82 87 133 154l44 5q31 -79 78 -159l-15 -11q-47 57 -94 126q-56 -56 -135 -126zM362 37l-8 -37h-301l90 422q12 56 19 117h294l4 -5l-8 -32l-251 4l-47 -222l216 2l-8 -36l-215 2l-47 -219z" />
  564. <glyph horiz-adv-x="462" d="M287 715q0 -24 -14.5 -43t-33.5 -19q-26 0 -26 30q0 22 15.5 41t33.5 19q25 0 25 -28zM475 715q0 -24 -14.5 -43t-33.5 -19q-26 0 -26 30q0 22 15.5 41t33.5 19q25 0 25 -28zM362 37l-8 -37h-301l90 422q12 56 19 117h294l4 -5l-8 -32l-251 4l-47 -222l216 2l-8 -36 l-215 2l-47 -219z" />
  565. <glyph horiz-adv-x="462" d="M382 717q0 -24 -15 -42.5t-34 -18.5q-27 0 -27 30q0 23 15.5 41.5t33.5 18.5q27 0 27 -29zM362 37l-8 -37h-301l90 422q12 56 19 117h294l4 -5l-8 -32l-251 4l-47 -222l216 2l-8 -36l-215 2l-47 -219z" />
  566. <glyph horiz-adv-x="462" d="M362 37l-8 -37h-301l90 422q12 56 19 117h294l4 -5l-8 -32l-251 4l-47 -222l216 2l-8 -36l-215 2l-47 -219zM233 -130q0 -24 -15 -42.5t-34 -18.5q-27 0 -27 30q0 23 15.5 41.5t33.5 18.5q27 0 27 -29z" />
  567. <glyph horiz-adv-x="462" d="M402 615q-91 66 -130 151l5 8l42 16q26 -71 96 -162zM362 37l-8 -37h-301l90 422q12 56 19 117h294l4 -5l-8 -32l-251 4l-47 -222l216 2l-8 -36l-215 2l-47 -219z" />
  568. <glyph horiz-adv-x="462" d="M208 681l7 34h264l-7 -34h-264zM362 37l-8 -37h-301l90 422q12 56 19 117h294l4 -5l-8 -32l-251 4l-47 -222l216 2l-8 -36l-215 2l-47 -219z" />
  569. <glyph horiz-adv-x="462" d="M354 0q-139 -71 -139 -142q0 -37 46 -37q24 0 59 12l4 -22q-34 -23 -79 -23q-35 0 -55 14.5t-20 41.5q0 83 143 156h-260l90 422q12 56 19 117h294l4 -5l-8 -32l-251 4l-47 -222l216 2l-8 -36l-215 2l-47 -219l262 4z" />
  570. <glyph horiz-adv-x="462" d="M288 745q26 0 62 -28t55 -28q33 0 75 57l15 -3q-14 -36 -42.5 -64t-60.5 -28q-27 0 -63 28t-55 28q-33 0 -75 -57l-15 3q15 35 43 63.5t61 28.5zM362 37l-8 -37h-301l90 422q12 56 19 117h294l4 -5l-8 -32l-251 4l-47 -222l216 2l-8 -36l-215 2l-47 -219z" />
  571. <glyph horiz-adv-x="582" d="M80 234l18 15h362q12 45 12 95q0 81 -45 124t-123 43q-80 0 -165 -47l3 36q78 47 175 47q94 0 146.5 -51t52.5 -143q0 -147 -93.5 -255t-220.5 -108q-68 0 -105.5 33.5t-37.5 101.5q0 22 7.5 58.5t13.5 50.5zM102 134q0 -53 29 -80.5t82 -27.5q78 0 142.5 53.5 t94.5 139.5l-335 -7q-13 -41 -13 -78z" />
  572. <glyph horiz-adv-x="426" d="M76 0h-40l90 422q12 56 19 117h46zM438 539l4 -5l-7 -32l-251 4l7 33h247zM351 277l-8 -36l-215 2l7 33z" />
  573. <glyph horiz-adv-x="572" d="M485 229l2 -5l-41 -192q-80 -40 -183 -40q-88 0 -138 49t-50 138q0 154 95 261t232 107q80 0 129 -30l-17 -40q-45 34 -118 34q-117 0 -197 -92.5t-80 -226.5q0 -76 40 -120t119 -44q62 0 132 24l10 49q14 67 20 120z" />
  574. <glyph horiz-adv-x="572" d="M479 771l1 -8q-79 -87 -194 -151l-7 13q114 96 164 162zM485 229l2 -5l-41 -192q-80 -40 -183 -40q-88 0 -138 49t-50 138q0 154 95 261t232 107q80 0 129 -30l-17 -40q-45 34 -118 34q-117 0 -197 -92.5t-80 -226.5q0 -76 40 -120t119 -44q62 0 132 24l10 49 q14 67 20 120z" />
  575. <glyph horiz-adv-x="572" d="M478 762l22 -3q-23 -57 -63 -89.5t-85 -32.5t-69.5 32.5t-20.5 89.5l23 3q2 -39 23.5 -60.5t57.5 -21.5q33 0 62.5 22t49.5 60zM485 229l2 -5l-41 -192q-80 -40 -183 -40q-88 0 -138 49t-50 138q0 154 95 261t232 107q80 0 129 -30l-17 -40q-45 34 -118 34 q-117 0 -197 -92.5t-80 -226.5q0 -76 40 -120t119 -44q62 0 132 24l10 49q14 67 20 120z" />
  576. <glyph horiz-adv-x="572" d="M498 785l11 -11q-82 -87 -133 -154l-44 -5q-31 79 -78 159l15 11q47 -57 94 -126q56 56 135 126zM485 229l2 -5l-41 -192q-80 -40 -183 -40q-88 0 -138 49t-50 138q0 154 95 261t232 107q80 0 129 -30l-17 -40q-45 34 -118 34q-117 0 -197 -92.5t-80 -226.5 q0 -76 40 -120t119 -44q62 0 132 24l10 49q14 67 20 120z" />
  577. <glyph horiz-adv-x="572" d="M264 614l-11 11q82 87 133 154l44 5q31 -79 78 -159l-15 -11q-47 57 -94 126q-56 -56 -135 -126zM485 229l2 -5l-41 -192q-80 -40 -183 -40q-88 0 -138 49t-50 138q0 154 95 261t232 107q80 0 129 -30l-17 -40q-45 34 -118 34q-117 0 -197 -92.5t-80 -226.5 q0 -76 40 -120t119 -44q62 0 132 24l10 49q14 67 20 120z" />
  578. <glyph horiz-adv-x="572" d="M485 229l2 -5l-41 -192q-80 -40 -183 -40q-88 0 -138 49t-50 138q0 154 95 261t232 107q80 0 129 -30l-17 -40q-45 34 -118 34q-117 0 -197 -92.5t-80 -226.5q0 -76 40 -120t119 -44q62 0 132 24l10 49q14 67 20 120zM194 -291q37 53 54 94h-2q-28 0 -28 32q0 21 14.5 40 t37.5 19q30 0 30 -32q0 -65 -89 -164z" />
  579. <glyph horiz-adv-x="572" d="M419 717q0 -24 -15 -42.5t-34 -18.5q-27 0 -27 30q0 23 15.5 41.5t33.5 18.5q27 0 27 -29zM485 229l2 -5l-41 -192q-80 -40 -183 -40q-88 0 -138 49t-50 138q0 154 95 261t232 107q80 0 129 -30l-17 -40q-45 34 -118 34q-117 0 -197 -92.5t-80 -226.5q0 -76 40 -120 t119 -44q62 0 132 24l10 49q14 67 20 120z" />
  580. <glyph horiz-adv-x="610" d="M93 0h-40l89 421q14 67 20 118l42 8l4 -5l-55 -257h324l29 136q11 51 20 118l42 8l4 -5l-115 -542h-40l53 251h-324z" />
  581. <glyph horiz-adv-x="610" d="M93 0h-40l86 408h-84l6 30h85q12 64 16 101l42 8l4 -5l-22 -104h324q3 18 16 101l42 8l4 -5l-22 -104h69l-6 -30h-69l-87 -408h-40l53 251h-324zM153 285h324l26 123h-323z" />
  582. <glyph horiz-adv-x="610" d="M287 614l-11 11q82 87 133 154l44 5q31 -79 78 -159l-15 -11q-47 57 -94 126q-56 -56 -135 -126zM93 0h-40l89 421q14 67 20 118l42 8l4 -5l-55 -257h324l29 136q11 51 20 118l42 8l4 -5l-115 -542h-40l53 251h-324z" />
  583. <glyph horiz-adv-x="610" d="M93 0h-40l89 421q14 67 20 118l42 8l4 -5l-55 -257h324l29 136q11 51 20 118l42 8l4 -5l-115 -542h-40l53 251h-324zM262 -130q0 -24 -15 -42.5t-34 -18.5q-27 0 -27 30q0 23 15.5 41.5t33.5 18.5q27 0 27 -29z" />
  584. <glyph horiz-adv-x="246" d="M93 0h-40l89 421q14 67 20 118l42 8l4 -5z" />
  585. <glyph horiz-adv-x="246" d="M93 0h-40l89 421q14 67 20 118l42 8l4 -5z" />
  586. <glyph horiz-adv-x="246" d="M317 771l1 -8q-79 -87 -194 -151l-7 13q114 96 164 162zM93 0h-40l89 421q14 67 20 118l42 8l4 -5z" />
  587. <glyph horiz-adv-x="246" d="M316 762l22 -3q-23 -57 -63 -89.5t-85 -32.5t-69.5 32.5t-20.5 89.5l23 3q2 -39 23.5 -60.5t57.5 -21.5q33 0 62.5 22t49.5 60zM93 0h-40l89 421q14 67 20 118l42 8l4 -5z" />
  588. <glyph horiz-adv-x="246" d="M336 785l11 -11q-82 -87 -133 -154l-44 -5q-31 79 -78 159l15 11q47 -57 94 -126q56 56 135 126zM93 0h-40l89 421q14 67 20 118l42 8l4 -5z" />
  589. <glyph horiz-adv-x="246" d="M102 614l-11 11q82 87 133 154l44 5q31 -79 78 -159l-15 -11q-47 57 -94 126q-56 -56 -135 -126zM93 0h-40l89 421q14 67 20 118l42 8l4 -5z" />
  590. <glyph horiz-adv-x="246" d="M162 715q0 -24 -14.5 -43t-33.5 -19q-26 0 -26 30q0 22 15.5 41t33.5 19q25 0 25 -28zM350 715q0 -24 -14.5 -43t-33.5 -19q-26 0 -26 30q0 22 15.5 41t33.5 19q25 0 25 -28zM93 0h-40l89 421q14 67 20 118l42 8l4 -5z" />
  591. <glyph horiz-adv-x="246" d="M257 717q0 -24 -15 -42.5t-34 -18.5q-27 0 -27 30q0 23 15.5 41.5t33.5 18.5q27 0 27 -29zM93 0h-40l89 421q14 67 20 118l42 8l4 -5z" />
  592. <glyph horiz-adv-x="246" d="M93 0h-40l89 421q14 67 20 118l42 8l4 -5zM77 -130q0 -24 -15 -42.5t-34 -18.5q-27 0 -27 30q0 23 15.5 41.5t33.5 18.5q27 0 27 -29z" />
  593. <glyph horiz-adv-x="246" d="M277 615q-91 66 -130 151l5 8l42 16q26 -71 96 -162zM93 0h-40l89 421q14 67 20 118l42 8l4 -5z" />
  594. <glyph horiz-adv-x="491" d="M93 0h-40l89 421q14 67 20 118l42 8l4 -5zM204 -144l-9 22q87 44 112 162l81 381q15 70 18 118l44 8l4 -5l-107 -502q-16 -73 -50.5 -116t-92.5 -68z" />
  595. <glyph horiz-adv-x="246" d="M83 681l7 34h264l-7 -34h-264zM93 0h-40l89 421q14 67 20 118l42 8l4 -5z" />
  596. <glyph horiz-adv-x="247" d="M94 0q-81 -73 -81 -130q0 -49 47 -49q23 0 58 12l4 -22q-34 -23 -79 -23q-36 0 -55.5 17.5t-19.5 50.5q0 71 93 144h-7l89 421q14 67 20 118l42 8l4 -5z" />
  597. <glyph horiz-adv-x="246" d="M163 745q26 0 62 -28t55 -28q33 0 75 57l15 -3q-14 -36 -42.5 -64t-60.5 -28q-27 0 -63 28t-55 28q-33 0 -75 -57l-15 3q15 35 43 63.5t61 28.5zM93 0h-40l89 421q14 67 20 118l42 8l4 -5z" />
  598. <glyph horiz-adv-x="245" d="M-42 -144l-9 22q87 44 112 162l81 381q15 70 18 118l44 8l4 -5l-107 -502q-16 -73 -50.5 -116t-92.5 -68z" />
  599. <glyph horiz-adv-x="245" d="M-42 -144l-9 22q87 44 112 162l81 381q15 70 18 118l44 8l4 -5l-107 -502q-16 -73 -50.5 -116t-92.5 -68z" />
  600. <glyph horiz-adv-x="245" d="M319 771l1 -8q-79 -87 -194 -151l-7 13q114 96 164 162zM-42 -144l-9 22q87 44 112 162l81 381q15 70 18 118l44 8l4 -5l-107 -502q-16 -73 -50.5 -116t-92.5 -68z" />
  601. <glyph horiz-adv-x="245" d="M104 614l-11 11q82 87 133 154l44 5q31 -79 78 -159l-15 -11q-47 57 -94 126q-56 -56 -135 -126zM-42 -144l-9 22q87 44 112 162l81 381q15 70 18 118l44 8l4 -5l-107 -502q-16 -73 -50.5 -116t-92.5 -68z" />
  602. <glyph horiz-adv-x="505" d="M142 421q16 82 20 118l41 8l3 -5l-55 -258h91q171 176 255 263l26 -10l4 -5l-253 -259l158 -273l-42 -8q-11 18 -45 76t-107 182h-94l-53 -250h-38z" />
  603. <glyph horiz-adv-x="505" d="M142 421q16 82 20 118l41 8l3 -5l-55 -258h91q171 176 255 263l26 -10l4 -5l-253 -259l158 -273l-42 -8q-11 18 -45 76t-107 182h-94l-53 -250h-38zM108 -291q37 53 54 94h-2q-28 0 -28 32q0 21 14.5 40t37.5 19q30 0 30 -32q0 -65 -89 -164z" />
  604. <glyph horiz-adv-x="505" d="M142 421q16 82 20 118l41 8l3 -5l-55 -258h91q171 176 255 263l26 -10l4 -5l-253 -259l158 -273l-42 -8q-11 18 -45 76t-107 182h-94l-53 -250h-38z" />
  605. <glyph horiz-adv-x="455" d="M355 37l-8 -37h-294l90 422q13 65 19 117l42 8l4 -5l-108 -509z" />
  606. <glyph horiz-adv-x="455" d="M356 771l1 -8q-79 -87 -194 -151l-7 13q114 96 164 162zM355 37l-8 -37h-294l90 422q13 65 19 117l42 8l4 -5l-108 -509z" />
  607. <glyph horiz-adv-x="455" d="M416 580l5 -6q-29 -102 -109 -212l-15 6q59 122 76 206zM355 37l-8 -37h-294l90 422q13 65 19 117l42 8l4 -5l-108 -509z" />
  608. <glyph horiz-adv-x="455" d="M355 37l-8 -37h-294l90 422q13 65 19 117l42 8l4 -5l-108 -509zM124 -291q37 53 54 94h-2q-28 0 -28 32q0 21 14.5 40t37.5 19q30 0 30 -32q0 -65 -89 -164z" />
  609. <glyph horiz-adv-x="399" d="M355 37l-8 -37h-294l90 422q13 65 19 117l42 8l4 -5l-108 -509zM351 266q0 -24 -15 -42.5t-34 -18.5q-27 0 -27 30q0 23 15.5 41.5t33.5 18.5q27 0 27 -29z" />
  610. <glyph horiz-adv-x="455" d="M355 37l-8 -37h-294l45 212l-98 -49l-10 29l116 58l37 172q13 65 19 117l42 8l4 -5l-57 -270l175 87l11 -29l-194 -96l-43 -201z" />
  611. <glyph horiz-adv-x="744" d="M656 547l4 -5l-39 -542h-40l15 211q14 195 23 265h-1q-42 -80 -152 -265l-125 -211h-44l-35 211q-31 184 -40 265h-1q-21 -65 -91 -265l-75 -211h-38l193 543l37 4l56 -319q19 -116 25 -188h1q40 78 105 188l188 315z" />
  612. <glyph horiz-adv-x="610" d="M320 304q17 -36 38.5 -80.5t31 -64.5t21 -48.5t20.5 -58.5h1q17 98 74 366q13 59 20 121l42 8l4 -5l-115 -542h-43q-18 39 -113 242q-5 11 -27.5 57.5t-31 65t-23 54.5t-25.5 68h-1q-11 -67 -38 -195l-62 -292h-40l90 422q13 62 19 117l44 8q16 -33 114 -243z" />
  613. <glyph horiz-adv-x="610" d="M502 771l1 -8q-79 -87 -194 -151l-7 13q114 96 164 162zM320 304q17 -36 38.5 -80.5t31 -64.5t21 -48.5t20.5 -58.5h1q17 98 74 366q13 59 20 121l42 8l4 -5l-115 -542h-43q-18 39 -113 242q-5 11 -27.5 57.5t-31 65t-23 54.5t-25.5 68h-1q-11 -67 -38 -195l-62 -292h-40 l90 422q13 62 19 117l44 8q16 -33 114 -243z" />
  614. <glyph horiz-adv-x="610" d="M521 785l11 -11q-82 -87 -133 -154l-44 -5q-31 79 -78 159l15 11q47 -57 94 -126q56 56 135 126zM320 304q17 -36 38.5 -80.5t31 -64.5t21 -48.5t20.5 -58.5h1q17 98 74 366q13 59 20 121l42 8l4 -5l-115 -542h-43q-18 39 -113 242q-5 11 -27.5 57.5t-31 65t-23 54.5 t-25.5 68h-1q-11 -67 -38 -195l-62 -292h-40l90 422q13 62 19 117l44 8q16 -33 114 -243z" />
  615. <glyph horiz-adv-x="610" d="M320 304q17 -36 38.5 -80.5t31 -64.5t21 -48.5t20.5 -58.5h1q17 98 74 366q13 59 20 121l42 8l4 -5l-115 -542h-43q-18 39 -113 242q-5 11 -27.5 57.5t-31 65t-23 54.5t-25.5 68h-1q-11 -67 -38 -195l-62 -292h-40l90 422q13 62 19 117l44 8q16 -33 114 -243zM168 -291 q37 53 54 94h-2q-28 0 -28 32q0 21 14.5 40t37.5 19q30 0 30 -32q0 -65 -89 -164z" />
  616. <glyph horiz-adv-x="610" d="M442 717q0 -24 -15 -42.5t-34 -18.5q-27 0 -27 30q0 23 15.5 41.5t33.5 18.5q27 0 27 -29zM320 304q17 -36 38.5 -80.5t31 -64.5t21 -48.5t20.5 -58.5h1q17 98 74 366q13 59 20 121l42 8l4 -5l-115 -542h-43q-18 39 -113 242q-5 11 -27.5 57.5t-31 65t-23 54.5t-25.5 68 h-1q-11 -67 -38 -195l-62 -292h-40l90 422q13 62 19 117l44 8q16 -33 114 -243z" />
  617. <glyph horiz-adv-x="610" d="M322 -144l-9 22q71 38 102 123l-1 -1q-18 39 -113 242q-5 11 -27.5 57.5t-31 65t-23 54.5t-25.5 68h-1q-11 -67 -38 -195l-62 -292h-40l90 422q13 62 19 117l44 8q16 -33 114 -243q17 -36 38.5 -80.5t31 -64.5t21 -48.5t20.5 -58.5h1q17 98 74 366q13 59 20 121l42 8 l4 -5l-106 -502q-28 -135 -144 -184z" />
  618. <glyph horiz-adv-x="610" d="M-42 -144l-9 22q88 45 112 162l82 382q14 66 18 117l45 8q14 -29 33 -70.5t80 -171.5q12 -26 39.5 -81.5t43 -92.5t29.5 -79h1q16 95 74 367q15 68 19 120l43 8l4 -5l-115 -542h-43q-48 104 -113 241q-85 179 -108 246h-1q-7 -49 -37 -195l-54 -252q-30 -136 -143 -184z " />
  619. <glyph horiz-adv-x="610" d="M348 745q26 0 62 -28t55 -28q33 0 75 57l15 -3q-14 -36 -42.5 -64t-60.5 -28q-27 0 -63 28t-55 28q-33 0 -75 -57l-15 3q15 35 43 63.5t61 28.5zM320 304q17 -36 38.5 -80.5t31 -64.5t21 -48.5t20.5 -58.5h1q17 98 74 366q13 59 20 121l42 8l4 -5l-115 -542h-43 q-18 39 -113 242q-5 11 -27.5 57.5t-31 65t-23 54.5t-25.5 68h-1q-11 -67 -38 -195l-62 -292h-40l90 422q13 62 19 117l44 8q16 -33 114 -243z" />
  620. <glyph horiz-adv-x="629" d="M562 351q0 -147 -90.5 -254t-215.5 -107q-83 0 -132.5 49.5t-49.5 139.5q0 146 93 256t217 110q81 0 129.5 -51.5t48.5 -142.5zM118 190q0 -77 38.5 -120.5t109.5 -43.5q105 0 179 94t74 226q0 76 -37 119.5t-106 43.5q-105 0 -181.5 -95t-76.5 -224z" />
  621. <glyph horiz-adv-x="629" d="M479 771l1 -8q-79 -87 -194 -151l-7 13q114 96 164 162zM562 351q0 -147 -90.5 -254t-215.5 -107q-83 0 -132.5 49.5t-49.5 139.5q0 146 93 256t217 110q81 0 129.5 -51.5t48.5 -142.5zM118 190q0 -77 38.5 -120.5t109.5 -43.5q105 0 179 94t74 226q0 76 -37 119.5 t-106 43.5q-105 0 -181.5 -95t-76.5 -224z" />
  622. <glyph horiz-adv-x="629" d="M478 762l22 -3q-23 -57 -63 -89.5t-85 -32.5t-69.5 32.5t-20.5 89.5l23 3q2 -39 23.5 -60.5t57.5 -21.5q33 0 62.5 22t49.5 60zM562 351q0 -147 -90.5 -254t-215.5 -107q-83 0 -132.5 49.5t-49.5 139.5q0 146 93 256t217 110q81 0 129.5 -51.5t48.5 -142.5zM118 190 q0 -77 38.5 -120.5t109.5 -43.5q105 0 179 94t74 226q0 76 -37 119.5t-106 43.5q-105 0 -181.5 -95t-76.5 -224z" />
  623. <glyph horiz-adv-x="629" d="M498 785l11 -11q-82 -87 -133 -154l-44 -5q-31 79 -78 159l15 11q47 -57 94 -126q56 56 135 126zM562 351q0 -147 -90.5 -254t-215.5 -107q-83 0 -132.5 49.5t-49.5 139.5q0 146 93 256t217 110q81 0 129.5 -51.5t48.5 -142.5zM118 190q0 -77 38.5 -120.5t109.5 -43.5 q105 0 179 94t74 226q0 76 -37 119.5t-106 43.5q-105 0 -181.5 -95t-76.5 -224z" />
  624. <glyph horiz-adv-x="629" d="M264 614l-11 11q82 87 133 154l44 5q31 -79 78 -159l-15 -11q-47 57 -94 126q-56 -56 -135 -126zM562 351q0 -147 -90.5 -254t-215.5 -107q-83 0 -132.5 49.5t-49.5 139.5q0 146 93 256t217 110q81 0 129.5 -51.5t48.5 -142.5zM118 190q0 -77 38.5 -120.5t109.5 -43.5 q105 0 179 94t74 226q0 76 -37 119.5t-106 43.5q-105 0 -181.5 -95t-76.5 -224z" />
  625. <glyph horiz-adv-x="629" d="M324 715q0 -24 -14.5 -43t-33.5 -19q-26 0 -26 30q0 22 15.5 41t33.5 19q25 0 25 -28zM512 715q0 -24 -14.5 -43t-33.5 -19q-26 0 -26 30q0 22 15.5 41t33.5 19q25 0 25 -28zM562 351q0 -147 -90.5 -254t-215.5 -107q-83 0 -132.5 49.5t-49.5 139.5q0 146 93 256t217 110 q81 0 129.5 -51.5t48.5 -142.5zM118 190q0 -77 38.5 -120.5t109.5 -43.5q105 0 179 94t74 226q0 76 -37 119.5t-106 43.5q-105 0 -181.5 -95t-76.5 -224z" />
  626. <glyph horiz-adv-x="629" d="M562 351q0 -147 -90.5 -254t-215.5 -107q-83 0 -132.5 49.5t-49.5 139.5q0 146 93 256t217 110q81 0 129.5 -51.5t48.5 -142.5zM118 190q0 -77 38.5 -120.5t109.5 -43.5q105 0 179 94t74 226q0 76 -37 119.5t-106 43.5q-105 0 -181.5 -95t-76.5 -224zM267 -130 q0 -24 -15 -42.5t-34 -18.5q-27 0 -27 30q0 23 15.5 41.5t33.5 18.5q27 0 27 -29z" />
  627. <glyph horiz-adv-x="629" d="M439 615q-91 66 -130 151l5 8l42 16q26 -71 96 -162zM562 351q0 -147 -90.5 -254t-215.5 -107q-83 0 -132.5 49.5t-49.5 139.5q0 146 93 256t217 110q81 0 129.5 -51.5t48.5 -142.5zM118 190q0 -77 38.5 -120.5t109.5 -43.5q105 0 179 94t74 226q0 76 -37 119.5 t-106 43.5q-105 0 -181.5 -95t-76.5 -224z" />
  628. <glyph horiz-adv-x="629" d="M433 777l1 -8q-81 -90 -189 -154l-7 13q103 82 164 162zM547 777l1 -8q-79 -89 -189 -154l-7 13q103 82 164 162zM562 351q0 -147 -90.5 -254t-215.5 -107q-83 0 -132.5 49.5t-49.5 139.5q0 146 93 256t217 110q81 0 129.5 -51.5t48.5 -142.5zM118 190q0 -77 38.5 -120.5 t109.5 -43.5q105 0 179 94t74 226q0 76 -37 119.5t-106 43.5q-105 0 -181.5 -95t-76.5 -224z" />
  629. <glyph horiz-adv-x="629" d="M245 681l7 34h264l-7 -34h-264zM562 351q0 -147 -90.5 -254t-215.5 -107q-83 0 -132.5 49.5t-49.5 139.5q0 146 93 256t217 110q81 0 129.5 -51.5t48.5 -142.5zM118 190q0 -77 38.5 -120.5t109.5 -43.5q105 0 179 94t74 226q0 76 -37 119.5t-106 43.5q-105 0 -181.5 -95 t-76.5 -224z" />
  630. <glyph horiz-adv-x="630" d="M562 351q0 -115 -58 -209t-149 -132q-55 -32 -89.5 -71t-34.5 -74q0 -20 12 -32t34 -12q24 0 59 12l4 -22q-34 -23 -80 -23q-34 0 -54 17.5t-20 47.5q0 32 27 69t74 70q-20 -2 -31 -2q-83 0 -132.5 49.5t-49.5 139.5q0 146 93 256t217 110q81 0 129.5 -51.5t48.5 -142.5z M118 190q0 -77 38.5 -120.5t109.5 -43.5q105 0 179 94t74 226q0 76 -37 119.5t-106 43.5q-105 0 -181.5 -95t-76.5 -224z" />
  631. <glyph horiz-adv-x="629" d="M562 351q0 -147 -90.5 -254t-215.5 -107q-83 0 -132.5 49.5t-49.5 139.5q0 146 93 256t217 110q81 0 129.5 -51.5t48.5 -142.5zM118 190q0 -77 38.5 -120.5t109.5 -43.5q105 0 179 94t74 226q0 76 -37 119.5t-106 43.5q-105 0 -181.5 -95t-76.5 -224z" />
  632. <glyph horiz-adv-x="629" d="M479 771l1 -8q-79 -87 -194 -151l-7 13q114 96 164 162zM562 351q0 -147 -90.5 -254t-215.5 -107q-83 0 -132.5 49.5t-49.5 139.5q0 146 93 256t217 110q81 0 129.5 -51.5t48.5 -142.5zM118 190q0 -77 38.5 -120.5t109.5 -43.5q105 0 179 94t74 226q0 76 -37 119.5 t-106 43.5q-105 0 -181.5 -95t-76.5 -224z" />
  633. <glyph horiz-adv-x="629" d="M325 745q26 0 62 -28t55 -28q33 0 75 57l15 -3q-14 -36 -42.5 -64t-60.5 -28q-27 0 -63 28t-55 28q-33 0 -75 -57l-15 3q15 35 43 63.5t61 28.5zM562 351q0 -147 -90.5 -254t-215.5 -107q-83 0 -132.5 49.5t-49.5 139.5q0 146 93 256t217 110q81 0 129.5 -51.5 t48.5 -142.5zM118 190q0 -77 38.5 -120.5t109.5 -43.5q105 0 179 94t74 226q0 76 -37 119.5t-106 43.5q-105 0 -181.5 -95t-76.5 -224z" />
  634. <glyph horiz-adv-x="795" d="M563 353q0 -35 -6 -69l145 2l-7 -36l-145 2q-18 -70 -58 -127t-94 -91l296 3l-7 -37h-361v2q-31 -10 -69 -10q-83 0 -132.5 49.5t-49.5 139.5q0 146 93 256t217 110q29 0 58 -8h345l4 -5l-8 -32l-279 3q58 -52 58 -152zM119 192q0 -77 38.5 -120.5t109.5 -43.5 q105 0 179 94t74 226q0 76 -37 119.5t-106 43.5q-105 0 -181.5 -95t-76.5 -224z" />
  635. <glyph horiz-adv-x="474" d="M93 0h-40l90 422q12 56 19 117h135q78 0 122.5 -34t44.5 -94q0 -89 -71 -147t-180 -58h-76zM287 506h-86l-57 -266h83q86 0 139.5 46t53.5 121q0 46 -33 72.5t-100 26.5z" />
  636. <glyph horiz-adv-x="473" d="M93 0h-40l90 422q12 56 19 117h46l-20 -96h88q78 0 122.5 -34t44.5 -94q0 -89 -71 -147t-180 -58h-76zM266 410h-86l-59 -279l3 13h83q86 0 139.5 46t53.5 121q0 46 -33.5 72.5t-100.5 26.5z" />
  637. <glyph horiz-adv-x="629" d="M386 545q81 0 128.5 -52t47.5 -150q0 -131 -80 -233.5t-195 -117.5q62 -47 156 -81t187 -34q39 0 78 10q6 -6 6 -17q0 -38 -89 -38q-98 0 -202 43.5t-187 115.5q-74 5 -118 55.5t-44 140.5q0 139 93.5 248.5t218.5 109.5zM378 509q-105 0 -182.5 -94t-77.5 -218 q0 -82 38 -126.5t108 -44.5q105 0 180 93.5t75 218.5q0 83 -36.5 127t-104.5 44z" />
  638. <glyph horiz-adv-x="530" d="M93 0h-40l90 422q12 56 19 117h134q78 0 123 -34.5t45 -92.5q0 -65 -44 -113.5t-120 -66.5l117 -232l-40 -8l-115 230h-122zM287 506h-86l-54 -251h83q86 0 138.5 42t52.5 111q0 44 -33.5 71t-100.5 27z" />
  639. <glyph horiz-adv-x="530" d="M459 771l1 -8q-79 -87 -194 -151l-7 13q114 96 164 162zM93 0h-40l90 422q12 56 19 117h134q78 0 123 -34.5t45 -92.5q0 -65 -44 -113.5t-120 -66.5l117 -232l-40 -8l-115 230h-122zM287 506h-86l-54 -251h83q86 0 138.5 42t52.5 111q0 44 -33.5 71t-100.5 27z" />
  640. <glyph horiz-adv-x="530" d="M478 785l11 -11q-82 -87 -133 -154l-44 -5q-31 79 -78 159l15 11q47 -57 94 -126q56 56 135 126zM93 0h-40l90 422q12 56 19 117h134q78 0 123 -34.5t45 -92.5q0 -65 -44 -113.5t-120 -66.5l117 -232l-40 -8l-115 230h-122zM287 506h-86l-54 -251h83q86 0 138.5 42 t52.5 111q0 44 -33.5 71t-100.5 27z" />
  641. <glyph horiz-adv-x="530" d="M93 0h-40l90 422q12 56 19 117h134q78 0 123 -34.5t45 -92.5q0 -65 -44 -113.5t-120 -66.5l117 -232l-40 -8l-115 230h-122zM287 506h-86l-54 -251h83q86 0 138.5 42t52.5 111q0 44 -33.5 71t-100.5 27zM128 -291q37 53 54 94h-2q-28 0 -28 32q0 21 14.5 40t37.5 19 q30 0 30 -32q0 -65 -89 -164z" />
  642. <glyph horiz-adv-x="530" d="M93 0h-40l90 422q12 56 19 117h134q78 0 123 -34.5t45 -92.5q0 -65 -44 -113.5t-120 -66.5l117 -232l-40 -8l-115 230h-122zM287 506h-86l-54 -251h83q86 0 138.5 42t52.5 111q0 44 -33.5 71t-100.5 27zM232 -130q0 -24 -15 -42.5t-34 -18.5q-27 0 -27 30q0 23 15.5 41.5 t33.5 18.5q27 0 27 -29z" />
  643. <glyph horiz-adv-x="459" d="M367 156q0 -69 -61.5 -116.5t-150.5 -47.5q-74 0 -133 28l16 40q52 -32 130 -32q68 0 112.5 33t44.5 85q0 30 -22.5 54t-54.5 41t-63.5 34.5t-54 44.5t-22.5 62q0 69 60.5 117t148.5 48q74 0 123 -26l-16 -40q-47 30 -116 30q-68 0 -113 -33.5t-45 -84.5q0 -30 22.5 -54 t54 -41.5t63.5 -35.5t54.5 -45t22.5 -61z" />
  644. <glyph horiz-adv-x="459" d="M424 771l1 -8q-79 -87 -194 -151l-7 13q114 96 164 162zM367 156q0 -69 -61.5 -116.5t-150.5 -47.5q-74 0 -133 28l16 40q52 -32 130 -32q68 0 112.5 33t44.5 85q0 30 -22.5 54t-54.5 41t-63.5 34.5t-54 44.5t-22.5 62q0 69 60.5 117t148.5 48q74 0 123 -26l-16 -40 q-47 30 -116 30q-68 0 -113 -33.5t-45 -84.5q0 -30 22.5 -54t54 -41.5t63.5 -35.5t54.5 -45t22.5 -61z" />
  645. <glyph horiz-adv-x="459" d="M443 785l11 -11q-82 -87 -133 -154l-44 -5q-31 79 -78 159l15 11q47 -57 94 -126q56 56 135 126zM367 156q0 -69 -61.5 -116.5t-150.5 -47.5q-74 0 -133 28l16 40q52 -32 130 -32q68 0 112.5 33t44.5 85q0 30 -22.5 54t-54.5 41t-63.5 34.5t-54 44.5t-22.5 62 q0 69 60.5 117t148.5 48q74 0 123 -26l-16 -40q-47 30 -116 30q-68 0 -113 -33.5t-45 -84.5q0 -30 22.5 -54t54 -41.5t63.5 -35.5t54.5 -45t22.5 -61z" />
  646. <glyph horiz-adv-x="459" d="M248 -100q0 -37 -45 -63.5t-99 -33.5l-1 22q102 23 102 66q0 27 -55 33l-5 11l31 58q-7 -1 -21 -1q-74 0 -133 28l16 40q52 -32 130 -32q68 0 112.5 33t44.5 85q0 30 -22.5 54t-54.5 41t-63.5 34.5t-54 44.5t-22.5 62q0 69 60.5 117t148.5 48q74 0 123 -26l-16 -40 q-47 30 -116 30q-68 0 -113 -33.5t-45 -84.5q0 -30 22.5 -54t54 -41.5t63.5 -35.5t54.5 -45t22.5 -61q0 -58 -44.5 -101.5t-114.5 -57.5l-24 -44q64 -10 64 -53z" />
  647. <glyph horiz-adv-x="459" d="M209 614l-11 11q82 87 133 154l44 5q31 -79 78 -159l-15 -11q-47 57 -94 126q-56 -56 -135 -126zM367 156q0 -69 -61.5 -116.5t-150.5 -47.5q-74 0 -133 28l16 40q52 -32 130 -32q68 0 112.5 33t44.5 85q0 30 -22.5 54t-54.5 41t-63.5 34.5t-54 44.5t-22.5 62 q0 69 60.5 117t148.5 48q74 0 123 -26l-16 -40q-47 30 -116 30q-68 0 -113 -33.5t-45 -84.5q0 -30 22.5 -54t54 -41.5t63.5 -35.5t54.5 -45t22.5 -61z" />
  648. <glyph horiz-adv-x="459" d="M367 156q0 -69 -61.5 -116.5t-150.5 -47.5q-74 0 -133 28l16 40q52 -32 130 -32q68 0 112.5 33t44.5 85q0 30 -22.5 54t-54.5 41t-63.5 34.5t-54 44.5t-22.5 62q0 69 60.5 117t148.5 48q74 0 123 -26l-16 -40q-47 30 -116 30q-68 0 -113 -33.5t-45 -84.5q0 -30 22.5 -54 t54 -41.5t63.5 -35.5t54.5 -45t22.5 -61zM98 -291q37 53 54 94h-2q-28 0 -28 32q0 21 14.5 40t37.5 19q30 0 30 -32q0 -65 -89 -164z" />
  649. <glyph horiz-adv-x="459" d="M367 156q0 -69 -61.5 -116.5t-150.5 -47.5q-74 0 -133 28l16 40q52 -32 130 -32q68 0 112.5 33t44.5 85q0 30 -22.5 54t-54.5 41t-63.5 34.5t-54 44.5t-22.5 62q0 69 60.5 117t148.5 48q74 0 123 -26l-16 -40q-47 30 -116 30q-68 0 -113 -33.5t-45 -84.5q0 -30 22.5 -54 t54 -41.5t63.5 -35.5t54.5 -45t22.5 -61zM202 -130q0 -24 -15 -42.5t-34 -18.5q-27 0 -27 30q0 23 15.5 41.5t33.5 18.5q27 0 27 -29z" />
  650. <glyph horiz-adv-x="557" d="M75 -10l-38 10q33 49 54 138l49 227q19 87 77.5 134.5t132.5 47.5q64 0 105.5 -30.5t38.5 -86.5l-188 -145q77 -15 126.5 -50.5t49.5 -90.5q0 -64 -53 -108t-131 -44q-63 0 -98 19l9 40q40 -23 102 -23q56 0 92.5 30t36.5 77t-51 79t-136 46l6 27l190 149q-7 35 -36 54 t-70 19q-56 0 -102.5 -38t-60.5 -105l-52 -242q-17 -81 -53 -134z" />
  651. <glyph horiz-adv-x="513" d="M225 0h-40l107 506q-81 0 -183 -5l11 38h397l-5 -38q-100 5 -180 5z" />
  652. <glyph horiz-adv-x="513" d="M225 0h-40l56 263h-160l6 30h160l45 213q-81 0 -183 -5l11 38h397l-5 -38q-100 5 -180 5l-45 -213h160l-6 -30h-160z" />
  653. <glyph horiz-adv-x="513" d="M470 785l11 -11q-82 -87 -133 -154l-44 -5q-31 79 -78 159l15 11q47 -57 94 -126q56 56 135 126zM225 0h-40l107 506q-81 0 -183 -5l11 38h397l-5 -38q-100 5 -180 5z" />
  654. <glyph horiz-adv-x="513" d="M225 0h-5l-26 -47q64 -10 64 -53q0 -37 -45 -63.5t-99 -33.5l-1 22q102 23 102 66q0 27 -55 33l-5 11l35 65h-5l107 506q-81 0 -183 -5l11 38h397l-5 -38q-100 5 -180 5z" />
  655. <glyph horiz-adv-x="513" d="M225 0h-40l107 506q-81 0 -183 -5l11 38h397l-5 -38q-100 5 -180 5zM108 -291q37 53 54 94h-2q-28 0 -28 32q0 21 14.5 40t37.5 19q30 0 30 -32q0 -65 -89 -164z" />
  656. <glyph horiz-adv-x="513" d="M225 0h-40l107 506q-81 0 -183 -5l11 38h397l-5 -38q-100 5 -180 5zM212 -130q0 -24 -15 -42.5t-34 -18.5q-27 0 -27 30q0 23 15.5 41.5t33.5 18.5q27 0 27 -29z" />
  657. <glyph horiz-adv-x="570" d="M136 423q13 69 16 118l49 6l1 -2l-79 -372q-14 -68 20 -105.5t99 -37.5q66 0 117 37.5t65 105.5l53 252q15 72 17 116l49 6l-79 -373q-19 -87 -84 -134.5t-150 -47.5q-82 0 -123.5 48t-23.5 134z" />
  658. <glyph horiz-adv-x="570" d="M485 771l1 -8q-79 -87 -194 -151l-7 13q114 96 164 162zM136 423q13 69 16 118l49 6l1 -2l-79 -372q-14 -68 20 -105.5t99 -37.5q66 0 117 37.5t65 105.5l53 252q15 72 17 116l49 6l-79 -373q-19 -87 -84 -134.5t-150 -47.5q-82 0 -123.5 48t-23.5 134z" />
  659. <glyph horiz-adv-x="570" d="M484 762l22 -3q-23 -57 -63 -89.5t-85 -32.5t-69.5 32.5t-20.5 89.5l23 3q2 -39 23.5 -60.5t57.5 -21.5q33 0 62.5 22t49.5 60zM136 423q13 69 16 118l49 6l1 -2l-79 -372q-14 -68 20 -105.5t99 -37.5q66 0 117 37.5t65 105.5l53 252q15 72 17 116l49 6l-79 -373 q-19 -87 -84 -134.5t-150 -47.5q-82 0 -123.5 48t-23.5 134z" />
  660. <glyph horiz-adv-x="570" d="M504 785l11 -11q-82 -87 -133 -154l-44 -5q-31 79 -78 159l15 11q47 -57 94 -126q56 56 135 126zM136 423q13 69 16 118l49 6l1 -2l-79 -372q-14 -68 20 -105.5t99 -37.5q66 0 117 37.5t65 105.5l53 252q15 72 17 116l49 6l-79 -373q-19 -87 -84 -134.5t-150 -47.5 q-82 0 -123.5 48t-23.5 134z" />
  661. <glyph horiz-adv-x="570" d="M270 614l-11 11q82 87 133 154l44 5q31 -79 78 -159l-15 -11q-47 57 -94 126q-56 -56 -135 -126zM136 423q13 69 16 118l49 6l1 -2l-79 -372q-14 -68 20 -105.5t99 -37.5q66 0 117 37.5t65 105.5l53 252q15 72 17 116l49 6l-79 -373q-19 -87 -84 -134.5t-150 -47.5 q-82 0 -123.5 48t-23.5 134z" />
  662. <glyph horiz-adv-x="570" d="M330 715q0 -24 -14.5 -43t-33.5 -19q-26 0 -26 30q0 22 15.5 41t33.5 19q25 0 25 -28zM518 715q0 -24 -14.5 -43t-33.5 -19q-26 0 -26 30q0 22 15.5 41t33.5 19q25 0 25 -28zM136 423q13 69 16 118l49 6l1 -2l-79 -372q-14 -68 20 -105.5t99 -37.5q66 0 117 37.5 t65 105.5l53 252q15 72 17 116l49 6l-79 -373q-19 -87 -84 -134.5t-150 -47.5q-82 0 -123.5 48t-23.5 134z" />
  663. <glyph horiz-adv-x="570" d="M531 984l1 -8q-79 -87 -194 -151l-7 13q114 96 164 162zM330 715q0 -24 -14.5 -43t-33.5 -19q-26 0 -26 30q0 22 15.5 41t33.5 19q25 0 25 -28zM518 715q0 -24 -14.5 -43t-33.5 -19q-26 0 -26 30q0 22 15.5 41t33.5 19q25 0 25 -28zM136 423q13 69 16 118l49 6l1 -2 l-79 -372q-14 -68 20 -105.5t99 -37.5q66 0 117 37.5t65 105.5l53 252q15 72 17 116l49 6l-79 -373q-19 -87 -84 -134.5t-150 -47.5q-82 0 -123.5 48t-23.5 134z" />
  664. <glyph horiz-adv-x="570" d="M550 998l11 -11q-82 -87 -133 -154l-44 -5q-31 79 -78 159l15 11q47 -57 94 -126q56 56 135 126zM330 715q0 -24 -14.5 -43t-33.5 -19q-26 0 -26 30q0 22 15.5 41t33.5 19q25 0 25 -28zM518 715q0 -24 -14.5 -43t-33.5 -19q-26 0 -26 30q0 22 15.5 41t33.5 19 q25 0 25 -28zM136 423q13 69 16 118l49 6l1 -2l-79 -372q-14 -68 20 -105.5t99 -37.5q66 0 117 37.5t65 105.5l53 252q15 72 17 116l49 6l-79 -373q-19 -87 -84 -134.5t-150 -47.5q-82 0 -123.5 48t-23.5 134z" />
  665. <glyph horiz-adv-x="570" d="M491 828q-91 66 -130 151l5 8l42 16q26 -71 96 -162zM330 715q0 -24 -14.5 -43t-33.5 -19q-26 0 -26 30q0 22 15.5 41t33.5 19q25 0 25 -28zM518 715q0 -24 -14.5 -43t-33.5 -19q-26 0 -26 30q0 22 15.5 41t33.5 19q25 0 25 -28zM136 423q13 69 16 118l49 6l1 -2 l-79 -372q-14 -68 20 -105.5t99 -37.5q66 0 117 37.5t65 105.5l53 252q15 72 17 116l49 6l-79 -373q-19 -87 -84 -134.5t-150 -47.5q-82 0 -123.5 48t-23.5 134z" />
  666. <glyph horiz-adv-x="570" d="M297 894l7 34h264l-7 -34h-264zM330 715q0 -24 -14.5 -43t-33.5 -19q-26 0 -26 30q0 22 15.5 41t33.5 19q25 0 25 -28zM518 715q0 -24 -14.5 -43t-33.5 -19q-26 0 -26 30q0 22 15.5 41t33.5 19q25 0 25 -28zM136 423q13 69 16 118l49 6l1 -2l-79 -372q-14 -68 20 -105.5 t99 -37.5q66 0 117 37.5t65 105.5l53 252q15 72 17 116l49 6l-79 -373q-19 -87 -84 -134.5t-150 -47.5q-82 0 -123.5 48t-23.5 134z" />
  667. <glyph horiz-adv-x="570" d="M136 423q13 69 16 118l49 6l1 -2l-79 -372q-14 -68 20 -105.5t99 -37.5q66 0 117 37.5t65 105.5l53 252q15 72 17 116l49 6l-79 -373q-19 -87 -84 -134.5t-150 -47.5q-82 0 -123.5 48t-23.5 134zM242 -134q0 -24 -15 -42.5t-34 -18.5q-27 0 -27 30q0 23 15.5 41.5 t33.5 18.5q27 0 27 -29z" />
  668. <glyph horiz-adv-x="570" d="M445 615q-91 66 -130 151l5 8l42 16q26 -71 96 -162zM136 423q13 69 16 118l49 6l1 -2l-79 -372q-14 -68 20 -105.5t99 -37.5q66 0 117 37.5t65 105.5l53 252q15 72 17 116l49 6l-79 -373q-19 -87 -84 -134.5t-150 -47.5q-82 0 -123.5 48t-23.5 134z" />
  669. <glyph horiz-adv-x="570" d="M439 777l1 -8q-81 -90 -189 -154l-7 13q103 82 164 162zM553 777l1 -8q-79 -89 -189 -154l-7 13q103 82 164 162zM136 423q13 69 16 118l49 6l1 -2l-79 -372q-14 -68 20 -105.5t99 -37.5q66 0 117 37.5t65 105.5l53 252q15 72 17 116l49 6l-79 -373q-19 -87 -84 -134.5 t-150 -47.5q-82 0 -123.5 48t-23.5 134z" />
  670. <glyph horiz-adv-x="570" d="M251 681l7 34h264l-7 -34h-264zM136 423q13 69 16 118l49 6l1 -2l-79 -372q-14 -68 20 -105.5t99 -37.5q66 0 117 37.5t65 105.5l53 252q15 72 17 116l49 6l-79 -373q-19 -87 -84 -134.5t-150 -47.5q-82 0 -123.5 48t-23.5 134z" />
  671. <glyph horiz-adv-x="570" d="M136 423q13 69 16 118l49 6l1 -2l-79 -372q-14 -68 20 -105.5t99 -37.5q66 0 117 37.5t65 105.5l53 252q15 72 17 116l49 6l-79 -373q-23 -108 -119 -156q-60 -33 -99 -74.5t-39 -78.5q0 -20 12 -32t34 -12q24 0 59 12l4 -22q-34 -23 -80 -23q-34 0 -54 17.5t-20 47.5 q0 32 28 70t76 71q-24 -2 -36 -2q-82 0 -123.5 48t-23.5 134z" />
  672. <glyph horiz-adv-x="570" d="M464 701q0 -35 -30.5 -63.5t-68.5 -28.5q-26 0 -44 16t-18 40q0 34 31 62t69 28q27 0 44 -15t17 -39zM338 670q0 -16 9.5 -25t25.5 -9q22 0 39 18t17 41q0 33 -35 33q-22 0 -39 -17.5t-17 -40.5zM136 423q13 69 16 118l49 6l1 -2l-79 -372q-14 -68 20 -105.5t99 -37.5 q66 0 117 37.5t65 105.5l53 252q15 72 17 116l49 6l-79 -373q-19 -87 -84 -134.5t-150 -47.5q-82 0 -123.5 48t-23.5 134z" />
  673. <glyph horiz-adv-x="570" d="M331 745q26 0 62 -28t55 -28q33 0 75 57l15 -3q-14 -36 -42.5 -64t-60.5 -28q-27 0 -63 28t-55 28q-33 0 -75 -57l-15 3q15 35 43 63.5t61 28.5zM136 423q13 69 16 118l49 6l1 -2l-79 -372q-14 -68 20 -105.5t99 -37.5q66 0 117 37.5t65 105.5l53 252q15 72 17 116l49 6 l-79 -373q-19 -87 -84 -134.5t-150 -47.5q-82 0 -123.5 48t-23.5 134z" />
  674. <glyph horiz-adv-x="549" d="M209 -4l-101 547l42 4l62 -332q21 -119 22 -168q19 41 107 186l190 314l32 -4l3 -5l-330 -542h-27z" />
  675. <glyph horiz-adv-x="871" d="M186 -4l-73 546l40 5l45 -332q16 -118 14 -166q19 47 95 183l174 311l38 4l46 -332q16 -115 14 -166q18 45 94 181l177 317l30 -4l3 -5l-303 -542h-26l-53 371q-10 86 -12 123h-1q-21 -46 -65 -123l-210 -371h-27z" />
  676. <glyph horiz-adv-x="871" d="M630 771l1 -8q-79 -87 -194 -151l-7 13q114 96 164 162zM186 -4l-73 546l40 5l45 -332q16 -118 14 -166q19 47 95 183l174 311l38 4l46 -332q16 -115 14 -166q18 45 94 181l177 317l30 -4l3 -5l-303 -542h-26l-53 371q-10 86 -12 123h-1q-21 -46 -65 -123l-210 -371h-27z " />
  677. <glyph horiz-adv-x="871" d="M415 614l-11 11q82 87 133 154l44 5q31 -79 78 -159l-15 -11q-47 57 -94 126q-56 -56 -135 -126zM186 -4l-73 546l40 5l45 -332q16 -118 14 -166q19 47 95 183l174 311l38 4l46 -332q16 -115 14 -166q18 45 94 181l177 317l30 -4l3 -5l-303 -542h-26l-53 371 q-10 86 -12 123h-1q-21 -46 -65 -123l-210 -371h-27z" />
  678. <glyph horiz-adv-x="871" d="M475 715q0 -24 -14.5 -43t-33.5 -19q-26 0 -26 30q0 22 15.5 41t33.5 19q25 0 25 -28zM663 715q0 -24 -14.5 -43t-33.5 -19q-26 0 -26 30q0 22 15.5 41t33.5 19q25 0 25 -28zM186 -4l-73 546l40 5l45 -332q16 -118 14 -166q19 47 95 183l174 311l38 4l46 -332 q16 -115 14 -166q18 45 94 181l177 317l30 -4l3 -5l-303 -542h-26l-53 371q-10 86 -12 123h-1q-21 -46 -65 -123l-210 -371h-27z" />
  679. <glyph horiz-adv-x="871" d="M590 615q-91 66 -130 151l5 8l42 16q26 -71 96 -162zM186 -4l-73 546l40 5l45 -332q16 -118 14 -166q19 47 95 183l174 311l38 4l46 -332q16 -115 14 -166q18 45 94 181l177 317l30 -4l3 -5l-303 -542h-26l-53 371q-10 86 -12 123h-1q-21 -46 -65 -123l-210 -371h-27z " />
  680. <glyph horiz-adv-x="512" d="M-2 0v5l238 267l-124 267l40 7l118 -247h1l217 248l35 -4v-5l-237 -266l123 -272h-44l-113 246h-1l-215 -246h-38z" />
  681. <glyph horiz-adv-x="496" d="M218 199l-110 344l41 4l65 -201q27 -87 31 -118h1q15 28 84 120l148 199l31 -4l4 -5l-256 -342l-41 -196h-40z" />
  682. <glyph horiz-adv-x="496" d="M442 771l1 -8q-79 -87 -194 -151l-7 13q114 96 164 162zM218 199l-110 344l41 4l65 -201q27 -87 31 -118h1q15 28 84 120l148 199l31 -4l4 -5l-256 -342l-41 -196h-40z" />
  683. <glyph horiz-adv-x="496" d="M227 614l-11 11q82 87 133 154l44 5q31 -79 78 -159l-15 -11q-47 57 -94 126q-56 -56 -135 -126zM218 199l-110 344l41 4l65 -201q27 -87 31 -118h1q15 28 84 120l148 199l31 -4l4 -5l-256 -342l-41 -196h-40z" />
  684. <glyph horiz-adv-x="496" d="M287 715q0 -24 -14.5 -43t-33.5 -19q-26 0 -26 30q0 22 15.5 41t33.5 19q25 0 25 -28zM475 715q0 -24 -14.5 -43t-33.5 -19q-26 0 -26 30q0 22 15.5 41t33.5 19q25 0 25 -28zM218 199l-110 344l41 4l65 -201q27 -87 31 -118h1q15 28 84 120l148 199l31 -4l4 -5l-256 -342 l-41 -196h-40z" />
  685. <glyph horiz-adv-x="496" d="M402 615q-91 66 -130 151l5 8l42 16q26 -71 96 -162zM218 199l-110 344l41 4l65 -201q27 -87 31 -118h1q15 28 84 120l148 199l31 -4l4 -5l-256 -342l-41 -196h-40z" />
  686. <glyph horiz-adv-x="496" d="M208 681l7 34h264l-7 -34h-264zM218 199l-110 344l41 4l65 -201q27 -87 31 -118h1q15 28 84 120l148 199l31 -4l4 -5l-256 -342l-41 -196h-40z" />
  687. <glyph horiz-adv-x="496" d="M288 745q26 0 62 -28t55 -28q33 0 75 57l15 -3q-14 -36 -42.5 -64t-60.5 -28q-27 0 -63 28t-55 28q-33 0 -75 -57l-15 3q15 35 43 63.5t61 28.5zM218 199l-110 344l41 4l65 -201q27 -87 31 -118h1q15 28 84 120l148 199l31 -4l4 -5l-256 -342l-41 -196h-40z" />
  688. <glyph horiz-adv-x="483" d="M4 0l-1 25l431 480l-321 -3l11 37h355l5 -25l-429 -479l333 3l-11 -38h-373z" />
  689. <glyph horiz-adv-x="483" d="M445 771l1 -8q-79 -87 -194 -151l-7 13q114 96 164 162zM4 0l-1 25l431 480l-321 -3l11 37h355l5 -25l-429 -479l333 3l-11 -38h-373z" />
  690. <glyph horiz-adv-x="483" d="M464 785l11 -11q-82 -87 -133 -154l-44 -5q-31 79 -78 159l15 11q47 -57 94 -126q56 56 135 126zM4 0l-1 25l431 480l-321 -3l11 37h355l5 -25l-429 -479l333 3l-11 -38h-373z" />
  691. <glyph horiz-adv-x="483" d="M385 717q0 -24 -15 -42.5t-34 -18.5q-27 0 -27 30q0 23 15.5 41.5t33.5 18.5q27 0 27 -29zM4 0l-1 25l431 480l-321 -3l11 37h355l5 -25l-429 -479l333 3l-11 -38h-373z" />
  692. <glyph horiz-adv-x="483" d="M4 0l-1 25l431 480l-321 -3l11 37h355l5 -25l-429 -479l333 3l-11 -38h-373zM206 -130q0 -24 -15 -42.5t-34 -18.5q-27 0 -27 30q0 23 15.5 41.5t33.5 18.5q27 0 27 -29z" />
  693. <glyph horiz-adv-x="470" d="M449 255q0 -108 -66.5 -190.5t-156.5 -82.5q-58 0 -90.5 37.5t-32.5 109.5q0 108 67 191.5t156 83.5q57 0 90 -38.5t33 -110.5zM143 132q0 -59 23 -90.5t67 -31.5q71 0 123 74t52 170q0 122 -88 122q-71 0 -124 -74t-53 -170z" />
  694. <glyph horiz-adv-x="227" d="M177 360h-1l-81 -17l-2 22l126 39l3 -4l-87 -410h-38l60 283q9 44 20 87z" />
  695. <glyph horiz-adv-x="359" d="M38 -10l2 33q68 41 109 68.5t87.5 65t68.5 73t22 70.5t-22.5 54.5t-61.5 19.5q-67 0 -134 -45l3 31q27 20 67.5 32t76.5 12q50 0 81.5 -25.5t31.5 -69.5q0 -40 -25 -80.5t-71 -78.5t-89.5 -66.5t-101.5 -61.5h135q54 0 105 6l-14 -38h-270z" />
  696. <glyph horiz-adv-x="346" d="M128 371q56 33 127 33q44 0 72 -19t28 -52q0 -43 -42.5 -79.5t-107.5 -55.5q57 0 90.5 -22t33.5 -62q0 -55 -55 -93.5t-135 -38.5q-54 0 -100 14l10 29q46 -14 94 -14q61 0 103 28t42 68q0 69 -114 69q-25 0 -45 -4l7 29q81 16 129 49t48 74q0 23 -19 36.5t-54 13.5 q-57 0 -114 -32z" />
  697. <glyph horiz-adv-x="391" d="M68 132l247 266l41 6l3 -4l-56 -266q46 2 68 5l-15 -36h-60l-24 -113h-37l25 113h-192v29zM103 133v-1q49 1 142 1h20h1l29 133q5 24 11 53t10 44h-1z" />
  698. <glyph horiz-adv-x="366" d="M54 -4l11 30q42 -15 92 -15q61 0 103 32t42 79q0 39 -27.5 60t-70.5 21q-50 0 -84 -13l-6 6l42 200h128q64 0 105 6l-11 -38h-195l-29 -140q29 7 67 7q53 0 87.5 -26t34.5 -75q0 -62 -55.5 -105t-136.5 -43q-48 0 -97 14z" />
  699. <glyph horiz-adv-x="406" d="M220 -18q-121 0 -121 133q0 113 79 201t184 88q36 0 51 -9l-10 -30q-18 9 -47 9q-69 0 -126 -48.5t-81 -142.5h1q48 41 116 41q53 0 84.5 -26.5t31.5 -72.5q0 -59 -47.5 -101t-114.5 -42zM258 197q-32 0 -65 -14.5t-50 -38.5q-3 -18 -3 -35q0 -97 87 -97q48 0 81.5 32 t33.5 77q0 34 -21.5 55t-62.5 21z" />
  700. <glyph horiz-adv-x="345" d="M116 357l15 39h258l4 -5l-5 -23q-90 -81 -165 -182t-101 -196h-40q26 92 105 196.5t160 176.5v1h-121q-61 0 -110 -7z" />
  701. <glyph horiz-adv-x="385" d="M195 -18q-59 0 -94.5 23.5t-35.5 61.5q0 37 35 71t99 55v1q-73 43 -73 99q0 47 44 79t103 32q50 0 82.5 -24t32.5 -62q0 -36 -32.5 -70t-86.5 -54v-1q86 -43 86 -105q0 -45 -46 -75.5t-114 -30.5zM265 376q-41 0 -70.5 -21.5t-29.5 -56.5q0 -54 75 -89q50 18 80 46.5 t30 58.5q0 28 -24 45t-61 17zM223 178q-47 -16 -83 -44t-36 -62q0 -28 25.5 -45.5t70.5 -17.5q52 0 84 22.5t32 53.5q0 47 -93 93z" />
  702. <glyph horiz-adv-x="406" d="M213 150q-51 0 -80 26t-29 71q0 63 47.5 110t115.5 47q56 0 89.5 -36.5t33.5 -106.5q0 -112 -79.5 -195.5t-180.5 -83.5q-38 0 -51 5l6 29q24 -4 46 -4q74 0 135.5 56t74.5 135q-47 -53 -128 -53zM263 375q-49 0 -83 -36t-34 -84q0 -35 20.5 -56t59.5 -21q79 0 119 57 q3 21 3 37q0 47 -22 75t-63 28zM361 266l-2 -6q1 4 2 6z" />
  703. <glyph horiz-adv-x="712" d="M639 458q0 -119 -47.5 -227t-128.5 -174.5t-171 -66.5q-84 0 -131.5 61t-47.5 177q0 118 47.5 226t128.5 174.5t171 66.5q84 0 131.5 -60.5t47.5 -176.5zM157 233q0 -99 36.5 -153t107.5 -54q77 0 145.5 60.5t108.5 159t40 206.5q0 100 -37 153.5t-108 53.5 q-77 0 -145 -60.5t-108 -159t-40 -206.5z" />
  704. <glyph horiz-adv-x="294" d="M209 639h-1l-130 -33l-2 24l179 65l4 -5l-147 -690h-40l104 491q24 111 33 148z" />
  705. <glyph horiz-adv-x="541" d="M0 0l2 43q103 78 178 140.5t146.5 132.5t109 130.5t37.5 108.5t-36 76t-102 28q-84 0 -209 -55l3 36q114 55 221 55q77 0 122 -36t45 -95q0 -46 -31.5 -103t-74.5 -106.5t-114.5 -113.5t-122.5 -104.5t-127 -98.5h225q88 0 162 10l-20 -48h-414z" />
  706. <glyph horiz-adv-x="489" d="M151 640q102 55 201 55q64 0 101.5 -29t37.5 -83q0 -68 -62 -128.5t-171 -98.5q186 -10 186 -139q0 -92 -84 -159.5t-204 -67.5q-82 0 -154 24l13 36q74 -24 150 -24q98 0 166 53.5t68 127.5q0 63 -50.5 91t-128.5 28q-36 0 -67 -7l7 35q128 28 207.5 88.5t79.5 131.5 q0 41 -28 63t-81 22q-78 0 -190 -55z" />
  707. <glyph horiz-adv-x="550" d="M52 235l395 448l42 10l4 -5l-96 -452q74 4 107 9l-20 -48h-95l-42 -197h-40l43 197h-298v38zM92 234v-1q83 2 228 2h22h16l53 247q27 125 33 152h-1z" />
  708. <glyph horiz-adv-x="544" d="M27 14l13 36q69 -24 140 -24q101 0 170.5 62.5t69.5 150.5q0 65 -41.5 97t-108.5 32q-84 0 -135 -20l-8 10l70 327h188q86 0 162 10l-14 -48h-306l-56 -258q60 14 116 14q78 0 127.5 -38.5t49.5 -116.5q0 -105 -85.5 -181.5t-207.5 -76.5q-76 0 -144 24z" />
  709. <glyph horiz-adv-x="586" d="M237 -10q-162 0 -162 204q0 124 55 240t149 188.5t198 72.5q57 0 80 -15l-13 -36q-23 15 -72 15q-112 0 -205.5 -90t-133.5 -263h1q40 42 99.5 65t114.5 23q71 0 112 -39.5t41 -109.5q0 -102 -78.5 -178.5t-185.5 -76.5zM334 358q-58 0 -119 -28t-90 -75q-5 -38 -5 -67 q0 -75 31.5 -118.5t98.5 -43.5q84 0 145.5 63t61.5 147q0 57 -31.5 89.5t-91.5 32.5z" />
  710. <glyph horiz-adv-x="514" d="M148 637l21 48h398l4 -5l-6 -28q-139 -136 -260.5 -312t-168.5 -340h-43q44 156 170 335.5t254 310.5l1 1h-207q-87 0 -163 -10z" />
  711. <glyph horiz-adv-x="539" d="M198 -10q-82 0 -133 36.5t-51 96.5q0 63 57.5 121.5t154.5 98.5v1q-112 64 -112 160q0 78 67.5 134.5t158.5 56.5q73 0 120 -38t47 -100q0 -65 -53.5 -121.5t-141.5 -89.5l-1 -1q59 -28 97 -71t38 -96q0 -75 -71.5 -131.5t-176.5 -56.5zM332 659q-73 0 -124 -42t-51 -103 q0 -91 125 -150q84 34 133 82.5t49 105.5q0 48 -36 77.5t-96 29.5zM256 325q-91 -36 -145 -89.5t-54 -106.5q0 -46 41 -74.5t107 -28.5q84 0 141 44.5t57 103.5q0 48 -38.5 83t-108.5 68z" />
  712. <glyph horiz-adv-x="588" d="M277 270q-76 0 -119 42.5t-43 118.5q0 104 73.5 184t180.5 80q82 0 129 -54t47 -158q0 -84 -31.5 -172t-84 -159t-129 -116.5t-159.5 -45.5q-49 0 -73 8l7 36q24 -8 66 -8q117 0 214 95.5t130 242.5h-1q-37 -46 -93 -70t-114 -24zM360 659q-84 0 -142 -67t-58 -154 q0 -62 33 -97t97 -35q57 0 112 27t91 82q7 36 7 72q0 79 -36.5 125.5t-103.5 46.5z" />
  713. <glyph horiz-adv-x="470" d="M513 555q0 -108 -66.5 -190.5t-156.5 -82.5q-58 0 -90.5 37.5t-32.5 109.5q0 108 67 191.5t156 83.5q57 0 90 -38.5t33 -110.5zM207 432q0 -59 23 -90.5t67 -31.5q71 0 123 74t52 170q0 122 -88 122q-71 0 -124 -74t-53 -170z" />
  714. <glyph horiz-adv-x="227" d="M241 662h-1l-81 -17l-2 22l126 39l3 -4l-87 -410h-38l60 283q9 44 20 87z" />
  715. <glyph horiz-adv-x="359" d="M102 292l2 33q68 41 109 68.5t87.5 65t68.5 73t22 70.5t-22.5 54.5t-61.5 19.5q-67 0 -134 -45l3 31q27 20 67.5 32t76.5 12q50 0 81.5 -25.5t31.5 -69.5q0 -40 -25 -80.5t-71 -78.5t-89.5 -66.5t-101.5 -61.5h135q54 0 105 6l-14 -38h-270z" />
  716. <glyph horiz-adv-x="346" d="M192 671q56 33 127 33q44 0 72 -19t28 -52q0 -43 -42.5 -79.5t-107.5 -55.5q57 0 90.5 -22t33.5 -62q0 -55 -55 -93.5t-135 -38.5q-54 0 -100 14l10 29q46 -14 94 -14q61 0 103 28t42 68q0 69 -114 69q-25 0 -45 -4l7 29q81 16 129 49t48 74q0 23 -19 36.5t-54 13.5 q-57 0 -114 -32z" />
  717. <glyph horiz-adv-x="391" d="M132 434l247 266l41 6l3 -4l-56 -266q46 2 68 5l-15 -36h-60l-24 -113h-37l25 113h-192v29zM167 435v-1q49 1 142 1h20h1l29 133q5 24 11 53t10 44h-1z" />
  718. <glyph horiz-adv-x="366" d="M118 296l11 30q42 -15 92 -15q61 0 103 32t42 79q0 39 -27.5 60t-70.5 21q-50 0 -84 -13l-6 6l42 200h128q64 0 105 6l-11 -38h-195l-29 -140q29 7 67 7q53 0 87.5 -26t34.5 -75q0 -62 -55.5 -105t-136.5 -43q-48 0 -97 14z" />
  719. <glyph horiz-adv-x="406" d="M284 282q-121 0 -121 133q0 113 79 201t184 88q36 0 51 -9l-10 -30q-18 9 -47 9q-69 0 -126 -48.5t-81 -142.5h1q48 41 116 41q53 0 84.5 -26.5t31.5 -72.5q0 -59 -47.5 -101t-114.5 -42zM322 497q-32 0 -65 -14.5t-50 -38.5q-3 -18 -3 -35q0 -97 87 -97q48 0 81.5 32 t33.5 77q0 34 -21.5 55t-62.5 21z" />
  720. <glyph horiz-adv-x="345" d="M180 659l15 39h258l4 -5l-5 -23q-90 -81 -165 -182t-101 -196h-40q26 92 105 196.5t160 176.5v1h-121q-61 0 -110 -7z" />
  721. <glyph horiz-adv-x="385" d="M259 284q-59 0 -94.5 23.5t-35.5 61.5q0 37 35 71t99 55v1q-73 43 -73 99q0 47 44 79t103 32q50 0 82.5 -24t32.5 -62q0 -36 -32.5 -70t-86.5 -54v-1q86 -43 86 -105q0 -45 -46 -75.5t-114 -30.5zM329 678q-41 0 -70.5 -21.5t-29.5 -56.5q0 -54 75 -89q50 18 80 46.5 t30 58.5q0 28 -24 45t-61 17zM287 480q-47 -16 -83 -44t-36 -62q0 -28 25.5 -45.5t70.5 -17.5q52 0 84 22.5t32 53.5q0 47 -93 93z" />
  722. <glyph horiz-adv-x="406" d="M277 452q-51 0 -80 26t-29 71q0 63 47.5 110t115.5 47q56 0 89.5 -36.5t33.5 -106.5q0 -112 -79.5 -195.5t-180.5 -83.5q-38 0 -51 5l6 29q24 -4 46 -4q74 0 135.5 56t74.5 135q-47 -53 -128 -53zM327 677q-49 0 -83 -36t-34 -84q0 -35 20.5 -56t59.5 -21q79 0 119 57 q3 21 3 37q0 47 -22 75t-63 28zM425 568l-2 -6q1 4 2 6z" />
  723. <glyph horiz-adv-x="649" d="M557 349q0 -86 -36 -168t-104.5 -136.5t-151.5 -54.5q-78 0 -122 49t-44 141q0 86 36 168t104.5 136.5t151.5 54.5q78 0 122 -49t44 -141zM143 186q0 -77 33.5 -118.5t97.5 -41.5q71 0 127 50t84 121.5t28 145.5q0 77 -33.5 118.5t-97.5 41.5q-71 0 -127 -50t-84 -121.5 t-28 -145.5z" />
  724. <glyph horiz-adv-x="295" d="M176 483h-1l-130 -33l-2 24l179 65l4 -5l-113 -534h-40l71 335q21 104 32 148z" />
  725. <glyph horiz-adv-x="485" d="M0 0l2 43q158 86 274 191t116 188q0 39 -28 60t-80 21q-76 0 -181 -55l3 36q96 55 191 55q63 0 101 -28.5t38 -80.5q0 -41 -26 -88t-66 -88.5t-93 -83.5t-102 -74t-97 -58h164q86 0 162 10l-20 -48h-358z" />
  726. <glyph horiz-adv-x="489" d="M118 484q100 55 201 55q64 0 102 -28.5t38 -81.5q0 -74 -68 -134.5t-171 -92.5q192 -5 192 -133q0 -93 -85 -156.5t-202 -63.5q-81 0 -153 24l12 36q74 -24 150 -24q95 0 164 50.5t69 124.5q0 115 -178 115q-37 0 -69 -7l8 35q141 32 213.5 93.5t72.5 125.5q0 81 -109 81 q-80 0 -190 -55z" />
  727. <glyph horiz-adv-x="590" d="M20 81l415 448l42 10l4 -5l-96 -453q56 1 127 10l-20 -48h-115l-39 -184h-40l39 184h-317v38zM60 80l-1 -1q91 2 249 2h37l53 247q17 77 34 152h-1z" />
  728. <glyph horiz-adv-x="544" d="M-3 -127l12 36q69 -24 142 -24q100 0 168.5 60.5t68.5 149.5q0 59 -42 91t-109 32q-83 0 -134 -20l-8 10l68 321h188q88 0 162 10l-14 -48h-306l-54 -252q59 14 115 14q78 0 128.5 -38t50.5 -110q0 -109 -85.5 -182.5t-204.5 -73.5q-78 0 -146 24z" />
  729. <glyph horiz-adv-x="582" d="M235 -10q-103 0 -141.5 81.5t-7.5 226.5q39 184 147 290.5t240 106.5q59 0 81 -15l-13 -36q-23 15 -72 15q-112 0 -205.5 -90t-133.5 -263h1q44 43 102 65.5t111 22.5q85 0 126.5 -53.5t22.5 -140.5q-20 -95 -94 -152.5t-164 -57.5zM330 358q-58 0 -118.5 -28t-89.5 -75 q-15 -104 14.5 -166.5t111.5 -62.5q71 0 127.5 46.5t73.5 124.5q15 71 -16 116t-103 45z" />
  730. <glyph horiz-adv-x="503" d="M117 491l20 48h386l6 -5l-6 -28q-147 -136 -273.5 -311t-173.5 -336h-43q43 154 175.5 333t267.5 308v1h-197q-86 0 -162 -10z" />
  731. <glyph horiz-adv-x="540" d="M15 124q0 39 18.5 74t52.5 63.5t66.5 48.5t76.5 41v1q-56 37 -84.5 71.5t-28.5 83.5q0 79 69 132.5t163 53.5q74 0 117.5 -34.5t43.5 -93.5q0 -37 -17 -69.5t-48 -59t-60.5 -45t-68.5 -37.5v-1q32 -21 50.5 -34.5t40 -35t31.5 -46.5t10 -55q0 -84 -75.5 -138.5 t-179.5 -54.5q-82 0 -129.5 36t-47.5 99zM341 657q-76 0 -129 -40t-53 -100q0 -43 30 -74.5t95 -71.5q81 40 132 85t51 103q0 45 -33.5 71.5t-92.5 26.5zM259 333q-43 -22 -72 -39.5t-62 -43.5t-50 -56.5t-17 -63.5q0 -49 37.5 -77t105.5 -28q85 0 144 41.5t59 106.5 q0 48 -34 81t-111 79z" />
  732. <glyph horiz-adv-x="583" d="M80 272q0 102 79 184.5t184 82.5q78 0 122 -52t44 -149q0 -112 -54 -225t-149 -188.5t-200 -75.5q-48 0 -72 8l7 36q24 -8 66 -8q112 0 206.5 90t135.5 240h-1q-36 -46 -92.5 -70t-114.5 -24q-76 0 -118.5 40t-42.5 111zM330 503q-84 0 -145 -69.5t-61 -153.5 q0 -58 33 -90.5t98 -32.5q57 0 112 27t90 82q7 35 7 70q0 78 -35 122.5t-99 44.5z" />
  733. <glyph d="M547 459q0 -122 -46.5 -231t-123 -173.5t-159.5 -64.5q-78 0 -121.5 61t-43.5 176q0 122 47 231t123.5 173t158.5 64q77 0 121 -60.5t44 -175.5zM97 232q0 -99 33 -152.5t98 -53.5q108 0 191.5 130.5t83.5 298.5q0 98 -33.5 151t-97.5 53q-69 0 -133 -58.5t-103 -158 t-39 -210.5z" />
  734. <glyph d="M20 0l7 33h170l97 458q19 93 33 148h-1l-130 -33l-2 24l179 65l4 -5l-140 -657h170l-7 -33h-380z" />
  735. <glyph d="M18 0l2 43q101 77 171.5 135.5t141 127t106.5 128t36 108.5q0 51 -37 84t-104 33q-76 0 -190 -55l3 36q104 55 203 55q77 0 123 -40.5t46 -102.5q0 -47 -31 -103.5t-71.5 -104t-112 -111t-117 -100t-122.5 -95.5h209q88 0 162 10l-20 -48h-398z" />
  736. <glyph d="M142 640q90 55 180 55q62 0 101 -32t39 -89q0 -69 -58.5 -128.5t-156.5 -89.5q77 -5 122 -43t45 -107q0 -94 -79.5 -155t-194.5 -61q-79 0 -147 24l13 36q69 -24 143 -24q92 0 156.5 47t64.5 122q0 60 -42.5 95.5t-114.5 35.5q-28 0 -69 -7l7 35q122 27 195 84.5 t73 127.5q0 44 -29 68.5t-80 24.5q-72 0 -171 -55z" />
  737. <glyph d="M25 235l413 448l42 10l4 -5l-97 -452q70 4 105 9l-20 -48h-93l-42 -197h-40l43 197h-315v38zM65 234v-1q89 2 245 2h20h18l53 247q29 134 33 152h-1z" />
  738. <glyph d="M19 14l13 36q69 -24 140 -24q96 0 162.5 62.5t66.5 150.5q0 62 -36.5 95.5t-103.5 33.5q-83 0 -134 -20l-8 10l70 327h177q86 0 162 10l-14 -48h-295l-56 -258q60 14 116 14q73 0 119.5 -38.5t46.5 -116.5q0 -105 -82.5 -181.5t-199.5 -76.5q-76 0 -144 24z" />
  739. <glyph d="M228 -10q-160 0 -160 206q0 123 53 238.5t143.5 188t190.5 72.5q57 0 79 -15l-13 -36q-23 15 -72 15q-107 0 -196 -90t-127 -263h1q37 43 92.5 65.5t107.5 22.5q70 0 110.5 -40t40.5 -112q0 -100 -73.5 -176t-176.5 -76zM314 358q-55 0 -112 -28t-84 -75q-5 -38 -5 -67 q0 -74 31.5 -118t96.5 -44q81 0 137 62.5t56 145.5q0 58 -31.5 91t-88.5 33z" />
  740. <glyph d="M144 637l20 48h384l4 -5l-6 -28q-134 -131 -251 -309t-164 -343h-43q43 158 166 340.5t245 305.5v1h-193q-88 0 -162 -10z" />
  741. <glyph d="M207 -10q-78 0 -126 36.5t-48 96.5q0 63 55 121.5t147 98.5v1q-102 64 -102 160q0 79 65 135t150 56q69 0 113.5 -38t44.5 -100q0 -65 -50.5 -121.5t-134.5 -89.5l-1 -1q55 -28 90 -71t35 -96q0 -75 -68.5 -131.5t-169.5 -56.5zM341 659q-68 0 -116.5 -42t-48.5 -103 q0 -91 115 -150q79 34 125.5 82.5t46.5 105.5q0 48 -33.5 77.5t-88.5 29.5zM265 325q-86 -36 -137.5 -89.5t-51.5 -106.5q0 -46 38 -74.5t100 -28.5q80 0 134 44.5t54 103.5q0 48 -36 83t-101 68z" />
  742. <glyph d="M239 270q-70 0 -110 42.5t-40 116.5q0 105 73 185.5t175 80.5q78 0 120 -53t42 -156q0 -116 -49.5 -229.5t-140 -190t-194.5 -76.5q-49 0 -73 8l7 36q24 -8 66 -8q110 0 201.5 95.5t122.5 242.5h-1q-36 -46 -90 -70t-109 -24zM328 659q-80 0 -137 -67.5t-57 -155.5 q0 -60 30.5 -95t90.5 -35q52 0 105 27t87 82q7 36 7 74q0 79 -31.5 124.5t-94.5 45.5z" />
  743. <glyph d="M498 355q0 -142 -83.5 -252.5t-194.5 -110.5q-69 0 -108.5 49t-39.5 142t38 176.5t102.5 134.5t137.5 51q69 0 108.5 -49t39.5 -141zM114 188q0 -79 29 -121t86 -42q91 0 159 98.5t68 226.5q0 78 -29.5 120t-85.5 42q-92 0 -159.5 -98t-67.5 -226z" />
  744. <glyph d="M27 0l7 33h185l63 302q19 93 33 148h-1l-171 -46l-2 24l220 78l4 -5l-106 -501h155l-7 -33h-380z" />
  745. <glyph d="M44 0l2 43q64 41 104.5 68.5t97.5 71.5t90 79t57.5 77.5t24.5 81.5q0 42 -27 65t-77 23q-70 0 -169 -55l3 36q94 55 180 55q61 0 98 -30.5t37 -84.5q0 -85 -96 -185t-274 -207h152q88 0 162 10l-20 -48h-345z" />
  746. <glyph d="M148 490q90 55 180 55q62 0 101 -32t39 -89q0 -69 -58.5 -128.5t-156.5 -89.5q77 -5 122 -43t45 -107q0 -94 -79.5 -155t-194.5 -61q-79 0 -147 24l13 36q69 -24 143 -24q92 0 156.5 47t64.5 122q0 60 -42.5 95.5t-114.5 35.5q-28 0 -69 -7l7 35q122 27 195 84.5 t73 127.5q0 44 -29 68.5t-80 24.5q-72 0 -171 -55z" />
  747. <glyph d="M-7 81l413 448l42 10l4 -5l-97 -452q70 4 105 9l-20 -48h-93l-42 -197h-40l43 197h-315v38zM33 80v-1q89 2 245 2h20h18l53 247q29 134 33 152h-1z" />
  748. <glyph d="M8 -136l13 36q69 -24 140 -24q96 0 162.5 62.5t66.5 150.5q0 62 -36.5 95.5t-103.5 33.5q-83 0 -134 -20l-8 10l70 327h177q86 0 162 10l-14 -48h-295l-56 -258q59 14 116 14q73 0 119.5 -38.5t46.5 -116.5q0 -105 -82.5 -181.5t-199.5 -76.5q-76 0 -144 24z" />
  749. <glyph d="M232 -10q-160 0 -160 206q0 123 53 238.5t143.5 188t190.5 72.5q57 0 79 -15l-13 -36q-23 15 -72 15q-107 0 -196 -90t-127 -263h1q37 43 92.5 65.5t107.5 22.5q70 0 110.5 -40t40.5 -112q0 -100 -73.5 -176t-176.5 -76zM318 358q-55 0 -112 -28t-84 -75q-5 -38 -5 -67 q0 -74 31.5 -118t96.5 -44q81 0 137 62.5t56 145.5q0 58 -31.5 91t-88.5 33z" />
  750. <glyph d="M131 487l20 48h384l4 -5l-6 -28q-134 -131 -251 -309t-164 -343h-43q43 158 166 340.5t245 305.5v1h-193q-88 0 -162 -10z" />
  751. <glyph d="M227 -10q-78 0 -126 36.5t-48 96.5q0 63 55 121.5t147 98.5v1q-102 64 -102 160q0 79 65 135t150 56q69 0 113.5 -38t44.5 -100q0 -65 -50.5 -121.5t-134.5 -89.5l-1 -1q55 -28 90 -71t35 -96q0 -75 -68.5 -131.5t-169.5 -56.5zM361 659q-68 0 -116.5 -42t-48.5 -103 q0 -91 115 -150q79 34 125.5 82.5t46.5 105.5q0 48 -33.5 77.5t-88.5 29.5zM285 325q-86 -36 -137.5 -89.5t-51.5 -106.5q0 -46 38 -74.5t100 -28.5q80 0 134 44.5t54 103.5q0 48 -36 83t-101 68z" />
  752. <glyph d="M264 270q-70 0 -110 42.5t-40 116.5q0 105 73 185.5t175 80.5q78 0 120 -53t42 -156q0 -116 -49.5 -229.5t-140 -190t-194.5 -76.5q-49 0 -73 8l7 36q24 -8 66 -8q110 0 201.5 95.5t122.5 242.5h-1q-36 -46 -90 -70t-109 -24zM353 659q-80 0 -137 -67.5t-57 -155.5 q0 -60 30.5 -95t90.5 -35q52 0 105 27t87 82q7 36 7 74q0 79 -31.5 124.5t-94.5 45.5z" />
  753. <glyph horiz-adv-x="637" d="M546 362q0 -149 -86 -259.5t-201 -110.5q-74 0 -116.5 48.5t-42.5 135.5q0 149 85.5 260t200.5 111q75 0 117.5 -49t42.5 -136zM142 181q0 -73 32 -114.5t94 -41.5q95 0 165.5 99t70.5 234q0 72 -32.5 114t-94.5 42q-95 0 -165 -99.5t-70 -233.5z" />
  754. <glyph horiz-adv-x="274" d="M159 495h-1l-108 -24l-2 24l155 52l4 -5l-115 -542h-39l81 380q3 16 11 52.5t14 62.5z" />
  755. <glyph horiz-adv-x="477" d="M-1 0l2 39q176 111 282 208t106 178q0 41 -30 64.5t-86 23.5q-72 0 -175 -44l2 35q96 43 187 43q68 0 106.5 -30t38.5 -82q0 -166 -386 -399h186q77 0 137 8l-18 -44h-352z" />
  756. <glyph horiz-adv-x="431" d="M120 504q84 43 170 43q55 0 88.5 -26t33.5 -71q0 -52 -50 -99t-131 -71q145 -14 145 -114q0 -73 -70 -123.5t-172 -50.5q-73 0 -132 19l11 33q61 -18 129 -18q81 0 137 38.5t56 95.5q0 48 -42 70.5t-108 22.5q-33 0 -61 -5l7 32q109 21 173.5 64.5t64.5 96.5 q0 34 -24.5 53t-70.5 19q-66 0 -157 -43z" />
  757. <glyph horiz-adv-x="486" d="M42 187l329 351l40 7l3 -4l-75 -352q48 2 91 6l-18 -43h-81l-32 -152h-38l33 152h-251zM80 187v-1q50 2 141 2h71h9l40 185q9 44 27 122h-1z" />
  758. <glyph horiz-adv-x="490" d="M27 11l12 34q60 -19 126 -19q86 0 138.5 40.5t52.5 107.5q0 55 -36 83t-93 28q-71 0 -113 -17l-7 9l55 262h162q78 0 138 8l-13 -44h-259l-42 -196q45 12 94 12q67 0 111 -34.5t44 -102.5q0 -83 -66.5 -136.5t-174.5 -53.5q-72 0 -129 19z" />
  759. <glyph horiz-adv-x="527" d="M224 -8q-75 0 -117 43t-42 129q0 92 45 180.5t124 145.5t167 57q51 0 69 -12l-11 -34q-22 12 -62 12q-93 0 -170.5 -67t-106.5 -194h1q64 59 156 59q69 0 110.5 -36t41.5 -98q0 -74 -57.5 -129.5t-147.5 -55.5zM273 278q-47 0 -93 -20.5t-69 -55.5q-4 -34 -4 -49 q0 -58 30.5 -93t91.5 -35q69 0 113.5 43t44.5 103q0 49 -30 78t-84 29z" />
  760. <glyph horiz-adv-x="458" d="M118 495l18 44h344l4 -5l-6 -26q-117 -108 -217 -245t-136 -263h-41q35 123 137.5 263t205.5 239v1h-170q-69 0 -139 -8z" />
  761. <glyph horiz-adv-x="480" d="M167 -8q-76 0 -117 30t-41 78q0 51 47 95.5t131 75.5v1q-41 24 -69.5 61.5t-28.5 78.5q0 58 55.5 96.5t131.5 38.5q67 0 108 -31.5t41 -79.5q0 -49 -43.5 -92.5t-116.5 -70.5v-1q50 -24 82 -59.5t32 -77.5q0 -59 -60 -101t-152 -42zM272 515q-58 0 -100.5 -28t-42.5 -72 q0 -37 30.5 -70.5t76.5 -54.5q71 26 110 63.5t39 78.5q0 36 -30 59.5t-83 23.5zM216 254q-81 -29 -123.5 -67.5t-42.5 -80.5q0 -36 31.5 -59t91.5 -23q71 0 118.5 31.5t47.5 77.5q0 36 -31 64t-92 57z" />
  762. <glyph horiz-adv-x="530" d="M244 212q-68 0 -108 36.5t-40 99.5q0 81 59.5 140t143.5 59q74 0 119 -50t45 -140q0 -89 -44 -173t-122.5 -138t-169.5 -54q-49 0 -64 6l6 34q15 -6 68 -6q88 0 168.5 70.5t101.5 177.5q-63 -62 -163 -62zM289 514q-63 0 -106.5 -46t-43.5 -111q0 -52 30.5 -82.5 t89.5 -30.5q45 0 88 20.5t70 61.5q3 16 3 34q0 69 -35.5 111.5t-95.5 42.5z" />
  763. <glyph d="M498 355q0 -142 -83.5 -252.5t-194.5 -110.5q-69 0 -108.5 49t-39.5 142t38 176.5t102.5 134.5t137.5 51q69 0 108.5 -49t39.5 -141zM114 188q0 -79 29 -121t86 -42q91 0 159 98.5t68 226.5q0 78 -29.5 120t-85.5 42q-92 0 -159.5 -98t-67.5 -226z" />
  764. <glyph d="M64 0l7 33h185l63 302q19 93 33 148h-1l-171 -46l-2 24l220 78l4 -5l-106 -501h155l-7 -33h-380z" />
  765. <glyph d="M45 0l2 43q64 41 104.5 68.5t97.5 71.5t90 79t57.5 77.5t24.5 81.5q0 42 -27 65t-77 23q-70 0 -169 -55l3 36q94 55 180 55q61 0 98 -30.5t37 -84.5q0 -85 -96 -185t-274 -207h152q88 0 162 10l-20 -48h-345z" />
  766. <glyph d="M148 498q71 49 172 49q61 0 98.5 -24.5t37.5 -65.5q0 -54 -52.5 -101t-142.5 -75q159 -8 159 -107q0 -77 -70.5 -129.5t-174.5 -52.5q-77 0 -144 19l11 33q67 -18 140 -18q84 0 140.5 39.5t56.5 99.5q0 46 -44.5 67t-116.5 21q-35 0 -65 -5l7 32q116 22 184.5 67 t68.5 100q0 31 -28 48.5t-77 17.5q-84 0 -164 -49z" />
  767. <glyph d="M34 187l352 351l40 7l3 -4l-75 -352q48 2 91 6l-18 -43h-81l-32 -152h-38l33 152h-274zM72 187v-1q76 2 214 2h21h9l40 185q9 45 27 122h-1z" />
  768. <glyph d="M47 11l12 34q60 -19 126 -19q86 0 138.5 40.5t52.5 107.5q0 55 -36 83t-93 28q-71 0 -113 -17l-7 9l55 262h162q78 0 138 8l-13 -44h-259l-42 -196q45 12 94 12q67 0 111 -34.5t44 -102.5q0 -83 -66.5 -136.5t-174.5 -53.5q-72 0 -129 19z" />
  769. <glyph d="M262 -8q-75 0 -117 43t-42 129q0 92 45 180.5t124 145.5t167 57q51 0 69 -12l-11 -34q-22 12 -62 12q-93 0 -170.5 -67t-106.5 -194h1q64 59 156 59q69 0 110.5 -36t41.5 -98q0 -74 -57.5 -129.5t-147.5 -55.5zM311 278q-47 0 -93 -20.5t-69 -55.5q-4 -34 -4 -49 q0 -58 30.5 -93t91.5 -35q69 0 113.5 43t44.5 103q0 49 -30 78t-84 29z" />
  770. <glyph d="M148 495l18 44h357l4 -5l-6 -26q-117 -108 -217 -245t-136 -263h-41q24 85 88 187t128.5 178t128.5 137v1h-185q-69 0 -139 -8z" />
  771. <glyph d="M205 -8q-76 0 -117 30t-41 78q0 51 47 95.5t131 75.5v1q-41 24 -69.5 61.5t-28.5 78.5q0 58 55.5 96.5t131.5 38.5q67 0 108 -31.5t41 -79.5q0 -49 -43.5 -92.5t-116.5 -70.5v-1q50 -24 82 -59.5t32 -77.5q0 -59 -60 -101t-152 -42zM310 515q-58 0 -100.5 -28t-42.5 -72 q0 -37 30.5 -70.5t76.5 -54.5q71 26 110 63.5t39 78.5q0 36 -30 59.5t-83 23.5zM254 254q-81 -29 -123.5 -67.5t-42.5 -80.5q0 -36 31.5 -59t91.5 -23q71 0 118.5 31.5t47.5 77.5q0 36 -31 64t-92 57z" />
  772. <glyph d="M237 212q-68 0 -108 36.5t-40 99.5q0 81 59.5 140t143.5 59q74 0 119 -50t45 -140q0 -89 -44 -173t-122.5 -138t-169.5 -54q-49 0 -64 6l6 34q15 -6 68 -6q88 0 168.5 70.5t101.5 177.5q-63 -62 -163 -62zM282 514q-63 0 -106.5 -46t-43.5 -111q0 -52 30.5 -82.5 t89.5 -30.5q45 0 88 20.5t70 61.5q3 16 3 34q0 69 -35.5 111.5t-95.5 42.5z" />
  773. <glyph horiz-adv-x="257" d="M129 190h-31q27 140 60 304t38 191l44 10l4 -5q-57 -249 -115 -500zM119 51q0 -24 -15 -42.5t-34 -18.5q-27 0 -27 30q0 23 15.5 41.5t33.5 18.5q27 0 27 -29z" />
  774. <glyph horiz-adv-x="258" d="M174 634q0 24 15 42.5t34 18.5q27 0 27 -30q0 -23 -15.5 -41.5t-33.5 -18.5q-27 0 -27 29zM164 495h31q-27 -140 -60 -304t-38 -191l-44 -10l-4 5q57 249 115 500z" />
  775. <glyph horiz-adv-x="423" d="M177 209h-28q0 5 3 40q4 26 30.5 53t62 52t70 53t58.5 68t24 86q0 44 -28 71t-78 27q-44 0 -93.5 -22.5t-88.5 -68.5l-21 21q42 50 100 78t116 28q64 0 101 -32t38 -86q0 -44 -18 -84t-45 -67.5t-59 -54.5t-60.5 -46t-48.5 -40.5t-23 -39.5q-2 -14 -2 -28zM165 51 q0 -24 -15 -42.5t-34 -18.5q-27 0 -27 30q0 23 15.5 41.5t33.5 18.5q27 0 27 -29z" />
  776. <glyph horiz-adv-x="422" d="M298 635q0 24 15 42.5t34 18.5q27 0 27 -30q0 -23 -15.5 -41.5t-33.5 -18.5q-27 0 -27 29zM286 477h28q0 -5 -3 -40q-4 -26 -30.5 -53t-62 -52t-70 -53t-58.5 -68t-24 -86q0 -44 28 -71t78 -27q44 0 93.5 22.5t88.5 68.5l21 -21q-42 -50 -100 -78t-116 -28q-64 0 -101 32 t-38 86q0 44 18 84t45 67.5t59 54.5t60.5 46t48.5 40.5t23 39.5q2 14 2 28z" />
  777. <glyph horiz-adv-x="284" d="M209 370q0 -22 -17 -40t-37 -18q-14 0 -23.5 9t-9.5 24q0 22 17.5 39.5t37.5 17.5q14 0 23 -9t9 -23z" />
  778. <glyph horiz-adv-x="394" d="M197 262q-36 0 -56 21t-20 54q0 53 41 96t91 43q34 0 52.5 -20t18.5 -52q0 -55 -38.5 -98.5t-88.5 -43.5z" />
  779. <glyph horiz-adv-x="481" d="M255 376l-4 4l39 152l-148 -85l-9 26l1 7l153 69l-126 71l21 26l6 3l110 -82l26 155h30l4 -4l-41 -153l150 86l9 -26l-1 -7l-150 -69l123 -71l-21 -26l-6 -3l-111 84l-25 -157h-30z" />
  780. <glyph horiz-adv-x="349" d="M383 724l6 -8l-346 -747l-29 5l-6 8l346 747z" />
  781. <glyph horiz-adv-x="349" d="M188 -28l-28 747l10 8l31 5l28 -747l-10 -8z" />
  782. <glyph horiz-adv-x="742" d="M163 -10l-27 2l-7 8l89 193h-129l-6 8l11 28h140l106 230h-130l-6 8l10 28h143l92 200l28 -2l6 -8l-87 -190h205l92 200l28 -2l6 -8l-87 -190h126l7 -8l-10 -28h-140l-106 -230h134l6 -8l-10 -28h-147l-93 -203l-27 2l-7 8l89 193h-206zM273 229h205l106 230h-205z" />
  783. <glyph horiz-adv-x="719" d="M185 -10l-27 2l-7 8l71 155h-141l-6 8l11 28h153l73 158h-147l-7 8l11 28h159l74 160l28 -2l6 -8l-69 -150h179l74 160l28 -2l6 -8l-69 -150h136l6 -8l-9 -28h-150l-72 -158h147l6 -8l-10 -28h-160l-76 -165l-27 2l-7 8l71 155h-179zM278 191h179l73 158h-180z" />
  784. <glyph horiz-adv-x="347" d="M232 -10q-49 42 -78.5 110t-29.5 151q0 129 72.5 252t185.5 192l16 -20q-105 -78 -169 -190.5t-64 -231.5q0 -141 91 -243z" />
  785. <glyph horiz-adv-x="348" d="M156 695q49 -42 78.5 -110t29.5 -151q0 -129 -72.5 -252t-185.5 -192l-16 20q105 78 169 190.5t64 231.5q0 141 -91 243z" />
  786. <glyph horiz-adv-x="289" d="M67 327l7 33q65 4 95 32.5t30 83.5q0 14 -3 45.5t-3 46.5q0 71 42.5 99t125.5 28l-3 -30q-69 0 -97.5 -21.5t-28.5 -73.5q0 -12 2 -42.5t2 -43.5q0 -66 -32 -99.5t-79 -42.5q68 -14 68 -76q0 -37 -35.5 -108t-35.5 -92q0 -46 99 -46l-10 -30q-68 0 -98 15t-30 54 q0 36 34.5 104.5t34.5 98.5q0 56 -85 65z" />
  787. <glyph horiz-adv-x="290" d="M263 357l-7 -33q-65 -4 -95 -32.5t-30 -83.5q0 -14 3 -45.5t3 -46.5q0 -71 -42.5 -99t-125.5 -28l3 30q69 0 97.5 21.5t28.5 73.5q0 12 -2 42.5t-2 43.5q0 66 32 99.5t79 42.5q-68 14 -68 76q0 37 35.5 108t35.5 92q0 46 -99 46l10 30q68 0 98 -15t30 -54 q0 -36 -34.5 -104.5t-34.5 -98.5q0 -56 85 -65z" />
  788. <glyph horiz-adv-x="298" d="M173 685h193l-8 -36h-154l-130 -613h154l-8 -36h-193l138 649z" />
  789. <glyph horiz-adv-x="298" d="M165 0h-193l8 36h154l130 613h-154l8 36h193l-138 -649z" />
  790. <glyph horiz-adv-x="349" d="M56 351l3 35h285l-3 -35h-285z" />
  791. <glyph horiz-adv-x="493" d="M55 351l4 35h431l-5 -35h-430z" />
  792. <glyph horiz-adv-x="754" d="M52 351l7 35h694l-7 -35h-694z" />
  793. <glyph horiz-adv-x="207" d="M-40 -177q57 87 84 167q-14 0 -22.5 9t-8.5 23q0 23 17 40.5t39 17.5q30 0 30 -33q0 -36 -39.5 -109t-83.5 -125z" />
  794. <glyph horiz-adv-x="450" d="M-28 -177q57 87 84 167q-14 0 -22.5 9t-8.5 23q0 23 17 40.5t39 17.5q30 0 30 -33q0 -36 -39.5 -109t-83.5 -125zM129 -177q57 87 84 167q-14 0 -22.5 9t-8.5 23q0 23 17 40.5t39 17.5q30 0 30 -33q0 -36 -39.5 -109t-83.5 -125z" />
  795. <glyph horiz-adv-x="364" d="M263 744q-57 -87 -84 -167q14 0 22.5 -9t8.5 -23q0 -23 -17 -40.5t-39 -17.5q-30 0 -30 33q0 36 39.5 109t83.5 125zM420 744q-57 -87 -84 -167q14 0 22.5 -9t8.5 -23q0 -23 -17 -40.5t-39 -17.5q-30 0 -30 33q0 36 39.5 109t83.5 125z" />
  796. <glyph horiz-adv-x="364" d="M261 501q57 87 84 167q-14 0 -22.5 9t-8.5 23q0 23 17 40.5t39 17.5q30 0 30 -33q0 -36 -39.5 -109t-83.5 -125zM104 501q57 87 84 167q-14 0 -22.5 9t-8.5 23q0 23 17 40.5t39 17.5q30 0 30 -33q0 -36 -39.5 -109t-83.5 -125z" />
  797. <glyph horiz-adv-x="207" d="M262 743q-57 -87 -84 -167q14 0 22.5 -9t8.5 -23q0 -23 -17 -40.5t-39 -17.5q-30 0 -30 33q0 36 39.5 109t83.5 125z" />
  798. <glyph horiz-adv-x="207" d="M104 500q57 87 84 167q-14 0 -22.5 9t-8.5 23q0 23 17 40.5t39 17.5q30 0 30 -33q0 -36 -39.5 -109t-83.5 -125z" />
  799. <glyph horiz-adv-x="439" d="M88 379l3 12q82 65 208 197l11 -8q-75 -107 -165 -195q54 -93 82 -195l-14 -8q-77 142 -125 197zM248 379l3 12q82 65 208 197l11 -8q-75 -107 -165 -195q54 -93 82 -195l-14 -8q-77 142 -125 197z" />
  800. <glyph horiz-adv-x="439" d="M410 391l-3 -12q-82 -65 -208 -197l-11 8q75 107 165 195q-54 93 -82 195l14 8q77 -142 125 -197zM250 391l-3 -12q-82 -65 -208 -197l-11 8q75 107 165 195q-54 93 -82 195l14 8q77 -142 125 -197z" />
  801. <glyph horiz-adv-x="279" d="M88 379l3 12q82 65 208 197l11 -8q-75 -107 -165 -195q54 -93 82 -195l-14 -8q-77 142 -125 197z" />
  802. <glyph horiz-adv-x="279" d="M250 391l-3 -12q-82 -65 -208 -197l-11 8q75 107 165 195q-54 93 -82 195l14 8q77 -142 125 -197z" />
  803. <glyph horiz-adv-x="285" d="M191 755l4 -5l-64 -229h-20l37 234h43zM348 755l4 -5l-64 -229h-20l37 234h43z" />
  804. <glyph horiz-adv-x="185" d="M174 763l4 3q23 3 44 3l8 -11l-73 -245h-19l20 123z" />
  805. <glyph horiz-adv-x="349" d="M40 276l3 35h285l-3 -35h-285z" />
  806. <glyph horiz-adv-x="493" d="M39 276l4 35h431l-5 -35h-430z" />
  807. <glyph horiz-adv-x="755" d="M37 277l7 35h694l-7 -35h-694z" />
  808. <glyph horiz-adv-x="347" d="M216 -85q-49 42 -78.5 110t-29.5 151q0 129 72.5 252t185.5 192l16 -20q-105 -78 -169 -190.5t-64 -231.5q0 -141 91 -243z" />
  809. <glyph horiz-adv-x="348" d="M141 625q49 -42 78.5 -110t29.5 -151q0 -129 -72.5 -252t-185.5 -192l-16 20q105 78 169 190.5t64 231.5q0 141 -91 243z" />
  810. <glyph horiz-adv-x="290" d="M51 250l7 33q65 4 95 32.5t30 83.5q0 14 -3 45.5t-3 46.5q0 71 42.5 99t125.5 28l-3 -30q-69 0 -97.5 -21.5t-28.5 -73.5q0 -12 2 -42.5t2 -43.5q0 -66 -32 -99.5t-79 -42.5q68 -14 68 -76q0 -37 -35.5 -108t-35.5 -92q0 -46 99 -46l-10 -30q-68 0 -98 15t-30 54 q0 36 34.5 104.5t34.5 98.5q0 56 -85 65z" />
  811. <glyph horiz-adv-x="289" d="M246 280l-7 -33q-65 -4 -95 -32.5t-30 -83.5q0 -14 3 -45.5t3 -46.5q0 -71 -42.5 -99t-125.5 -28l3 30q69 0 97.5 21.5t28.5 73.5q0 12 -2 42.5t-2 43.5q0 66 32 99.5t79 42.5q-68 14 -68 76q0 37 35.5 108t35.5 92q0 46 -99 46l10 30q68 0 98 -15t30 -54 q0 -36 -34.5 -104.5t-34.5 -98.5q0 -56 85 -65z" />
  812. <glyph horiz-adv-x="298" d="M157 608h193l-8 -36h-154l-130 -613h154l-8 -36h-193l138 649z" />
  813. <glyph horiz-adv-x="298" d="M149 -77h-193l8 36h154l130 613h-154l8 36h193l-138 -649z" />
  814. <glyph horiz-adv-x="258" d="M119 158h-24q55 315 57 371l61 10l4 -5q-62 -260 -98 -376zM114 26q0 -24 -15 -42.5t-34 -18.5q-27 0 -27 30q0 23 15.5 41.5t33.5 18.5q27 0 27 -29z" />
  815. <glyph horiz-adv-x="257" d="M151 503q0 24 15 42.5t34 18.5q27 0 27 -30q0 -23 -15.5 -41.5t-33.5 -18.5q-27 0 -27 29zM146 371h24q-55 -315 -57 -371l-61 -10l-4 5q62 260 98 376z" />
  816. <glyph horiz-adv-x="394" d="M167 151h-26q0 2 -0.5 6.5t-0.5 7.5q0 25 23 50t55.5 47.5t64.5 45.5t55 53.5t23 62.5q0 35 -26 57t-72 22q-47 0 -100 -25t-98 -71l-16 23q49 52 109 80.5t119 28.5q57 0 93 -28t36 -75t-34.5 -90t-76 -69t-78.5 -53.5t-41 -45.5q-1 -3 -1.5 -9.5t-1.5 -9.5zM176 51 q0 -24 -15 -42.5t-34 -18.5q-27 0 -27 30q0 23 15.5 41.5t33.5 18.5q27 0 27 -29z" />
  817. <glyph horiz-adv-x="393" d="M225 479q0 24 15 42.5t34 18.5q27 0 27 -30q0 -23 -15.5 -41.5t-33.5 -18.5q-27 0 -27 29zM234 379h26q0 -2 0.5 -6.5t0.5 -7.5q0 -25 -23 -50t-55.5 -47.5t-64.5 -45.5t-55 -53.5t-23 -62.5q0 -35 26 -57t72 -22q47 0 100 25t98 71l16 -23q-49 -52 -109 -80.5 t-119 -28.5q-57 0 -93 28t-36 75t34.5 90t76 69t78.5 53.5t41 45.5q1 3 1.5 9.5t1.5 9.5z" />
  818. <glyph horiz-adv-x="283" d="M192 293q0 -22 -17 -40t-37 -18q-14 0 -23.5 9t-9.5 24q0 22 17.5 39.5t37.5 17.5q14 0 23 -9t9 -23z" />
  819. <glyph horiz-adv-x="395" d="M182 187q-36 0 -56 21t-20 54q0 53 41 96t91 43q34 0 52.5 -20t18.5 -52q0 -55 -38.5 -98.5t-88.5 -43.5z" />
  820. <glyph horiz-adv-x="207" d="M-40 -177q57 87 84 167q-14 0 -22.5 9t-8.5 23q0 23 17 40.5t39 17.5q30 0 30 -33q0 -36 -39.5 -109t-83.5 -125z" />
  821. <glyph horiz-adv-x="364" d="M-40 -177q57 87 84 167q-14 0 -22.5 9t-8.5 23q0 23 17 40.5t39 17.5q30 0 30 -33q0 -36 -39.5 -109t-83.5 -125zM117 -177q57 87 84 167q-14 0 -22.5 9t-8.5 23q0 23 17 40.5t39 17.5q30 0 30 -33q0 -36 -39.5 -109t-83.5 -125z" />
  822. <glyph horiz-adv-x="354" d="M353 599l22 -10q-45 -72 -66 -137q14 0 22.5 -9t8.5 -23q0 -23 -17 -40.5t-39 -17.5q-30 0 -30 33q0 31 30 90.5t69 113.5zM196 599l22 -10q-45 -72 -66 -137q14 0 22.5 -9t8.5 -23q0 -23 -17 -40.5t-39 -17.5q-30 0 -30 33q0 31 30 90.5t69 113.5z" />
  823. <glyph horiz-adv-x="355" d="M101 363l-22 10q45 72 66 137q-14 0 -22.5 9t-8.5 23q0 23 17 40.5t39 17.5q30 0 30 -33q0 -31 -30 -90.5t-69 -113.5zM258 363l-22 10q45 72 66 137q-14 0 -22.5 9t-8.5 23q0 23 17 40.5t39 17.5q30 0 30 -33q0 -31 -30 -90.5t-69 -113.5z" />
  824. <glyph horiz-adv-x="197" d="M196 599l22 -10q-45 -72 -66 -137q14 0 22.5 -9t8.5 -23q0 -23 -17 -40.5t-39 -17.5q-30 0 -30 33q0 31 30 90.5t69 113.5z" />
  825. <glyph horiz-adv-x="198" d="M101 363l-22 10q45 72 66 137q-14 0 -22.5 9t-8.5 23q0 23 17 40.5t39 17.5q30 0 30 -33q0 -31 -30 -90.5t-69 -113.5z" />
  826. <glyph horiz-adv-x="481" d="M255 376l-4 4l39 152l-148 -85l-9 26l1 7l153 69l-126 71l21 26l6 3l110 -82l26 155h30l4 -4l-41 -153l150 86l9 -26l-1 -7l-150 -69l123 -71l-21 -26l-6 -3l-111 84l-25 -157h-30z" />
  827. <glyph horiz-adv-x="440" d="M58 237l3 12q82 65 208 197l11 -8q-75 -107 -165 -195q54 -93 82 -195l-14 -8q-77 142 -125 197zM218 237l3 12q82 65 208 197l11 -8q-75 -107 -165 -195q54 -93 82 -195l-14 -8q-77 142 -125 197z" />
  828. <glyph horiz-adv-x="440" d="M380 249l-3 -12q-82 -65 -208 -197l-11 8q75 107 165 195q-54 93 -82 195l14 8q77 -142 125 -197zM220 249l-3 -12q-82 -65 -208 -197l-11 8q75 107 165 195q-54 93 -82 195l14 8q77 -142 125 -197z" />
  829. <glyph horiz-adv-x="280" d="M58 237l3 12q82 65 208 197l11 -8q-75 -107 -165 -195q54 -93 82 -195l-14 -8q-77 142 -125 197z" />
  830. <glyph horiz-adv-x="280" d="M220 249l-3 -12q-82 -65 -208 -197l-11 8q75 107 165 195q-54 93 -82 195l14 8q77 -142 125 -197z" />
  831. <glyph horiz-adv-x="719" d="M185 -10l-27 2l-7 8l71 155h-141l-6 8l11 28h153l73 158h-147l-7 8l11 28h159l74 160l28 -2l6 -8l-69 -150h179l74 160l28 -2l6 -8l-69 -150h136l6 -8l-9 -28h-150l-72 -158h147l6 -8l-10 -28h-160l-76 -165l-27 2l-7 8l71 155h-179zM278 191h179l73 158h-180z" />
  832. <glyph horiz-adv-x="268" d="M84 -37l-11 -3l-28 14l259 557l12 4l28 -15z" />
  833. <glyph horiz-adv-x="268" d="M182 -40l-81 564l9 8l30 3l82 -564l-8 -8z" />
  834. <glyph horiz-adv-x="226" d="M160 610l4 -5l-64 -229h-20l37 234h43zM258 610l4 -5l-64 -229h-20l37 234h43z" />
  835. <glyph horiz-adv-x="128" d="M160 610l4 -5l-64 -229h-20l37 234h43z" />
  836. <glyph horiz-adv-x="448" d="M172 -140l-6 8l26 123q-59 4 -94 51t-35 137q0 139 79 245.5t186 114.5l30 137l22 3l7 -8l-29 -133q50 -5 81 -41l-17 -41q-33 47 -91 47q-90 0 -156.5 -94.5t-66.5 -222.5q0 -78 27.5 -119t79.5 -41q85 0 155 93l18 -13q-68 -106 -166 -115l-27 -128z" />
  837. <glyph horiz-adv-x="577" d="M458 123l-68 90q-60 -44 -131 -44q-60 0 -99 34l-95 -77l-18 23l94 78q-21 31 -21 77q0 91 76 159l-62 81l25 21q9 -11 31.5 -39.5t33.5 -41.5q56 37 120 37q67 0 105 -41l102 85l19 -23l-104 -86q17 -32 17 -71q0 -83 -65 -148q58 -71 69 -91v-4zM333 489 q-70 0 -121.5 -52.5t-51.5 -122.5q0 -49 28.5 -81t83.5 -32q71 0 121 52t50 123q0 52 -29.5 82.5t-80.5 30.5z" />
  838. <glyph horiz-adv-x="460" d="M136 -140l-6 8l26 122h-2q-81 0 -141 35l17 43q54 -40 136 -40q73 0 122 39t49 106q0 36 -15.5 66.5t-39 51t-51 44t-51 44.5t-39 52.5t-15.5 68.5q0 73 54 127t135 65l27 130l23 3l6 -8l-26 -122h7q78 0 129 -33l-17 -43q-48 38 -121 38q-75 0 -123 -43t-48 -106 q0 -39 21.5 -72t52.5 -57t62 -49.5t52.5 -62.5t21.5 -82q0 -78 -55.5 -131t-140.5 -62l-27 -129z" />
  839. <glyph horiz-adv-x="611" d="M71 250l10 30h83q5 50 22 108h-70l11 30h70q45 121 131 199t184 78q87 0 138 -45l-17 -42q-20 22 -55.5 35.5t-72.5 13.5q-81 0 -153 -67t-111 -172h249l-10 -30h-249q-17 -60 -21 -108h234l-9 -30h-227v-15q0 -101 39.5 -154t114.5 -53q89 0 169 58l-2 -38 q-78 -58 -182 -58q-88 0 -137 58.5t-49 174.5q0 18 1 27h-91z" />
  840. <glyph horiz-adv-x="419" d="M176 298l-112 2l7 27l113 7h1l22 100q28 127 74 194t131 67q56 0 97 -26l-22 -40q-36 30 -78 30q-61 0 -97 -50.5t-66 -184.5l-20 -90h181l4 -5l-12 -31h-181l-78 -352q-7 -30 -12.5 -49.5t-19.5 -51t-31.5 -51t-47.5 -34.5t-67 -15q-55 0 -93 26l22 40q32 -30 81 -30 q25 0 45 10.5t32 25t22.5 39.5t15 43t11.5 48l79 351h-1z" />
  841. <glyph horiz-adv-x="506" d="M177 298l-109 2l7 27l112 7q47 173 63 213q44 116 116 140q22 7 48 7q62 0 95 -26l-23 -47q-33 37 -80 37q-63 0 -96.5 -65.5t-82.5 -258.5h182l4 -5l-13 -31h-182l-16 -59q-43 -163 -91 -215q21 -9 87 -44t117 -54t94 -19q45 0 68 14l-23 -48q-18 -10 -58 -10 q-46 0 -98 23t-117.5 62t-97.5 54q-21 -13 -45 -13q-40 0 -37 27q2 28 40 28q13 0 38 -7q25 22 43 70t43 145z" />
  842. <glyph horiz-adv-x="542" d="M47 134l7 33h179l21 100h-179l7 33h179l-142 391l45 4l85 -237q26 -67 41 -124h1q16 23 33 44.5t35.5 45t28.5 36.5l183 235l35 -5l4 -5l-305 -385h177l-7 -33h-179l-21 -100h179l-7 -33h-179l-29 -134h-42l29 134h-179z" />
  843. <glyph horiz-adv-x="448" d="M172 -140l-6 8l26 123q-59 4 -94 51t-35 137q0 139 79 245.5t186 114.5l30 137l22 3l7 -8l-29 -133q50 -5 81 -41l-17 -41q-33 47 -91 47q-90 0 -156.5 -94.5t-66.5 -222.5q0 -78 27.5 -119t79.5 -41q85 0 155 93l18 -13q-68 -106 -166 -115l-27 -128z" />
  844. <glyph horiz-adv-x="577" d="M442 48l-68 90q-60 -44 -131 -44q-60 0 -99 34l-95 -77l-18 23l94 78q-21 31 -21 77q0 91 76 159l-62 81l25 21q9 -11 31.5 -39.5t33.5 -41.5q56 37 120 37q67 0 105 -41l102 85l19 -23l-104 -86q17 -32 17 -71q0 -83 -65 -148q58 -71 69 -91v-4zM317 414 q-70 0 -121.5 -52.5t-51.5 -122.5q0 -49 28.5 -81t83.5 -32q71 0 121 52t50 123q0 52 -29.5 82.5t-80.5 30.5z" />
  845. <glyph horiz-adv-x="459" d="M123 -140l-7 8l26 124q-71 4 -120 28l16 40q52 -32 130 -32q68 0 112.5 33t44.5 85q0 30 -22.5 54t-54.5 41t-63.5 34.5t-54 44.5t-22.5 62q0 61 49 106.5t124 56.5l28 134l22 3l7 -8l-27 -127h6q74 0 123 -26l-16 -40q-47 30 -116 30q-68 0 -113 -33.5t-45 -84.5 q0 -30 22.5 -54t54 -41.5t63.5 -35.5t54.5 -45t22.5 -61q0 -65 -56 -111.5t-139 -51.5l-27 -130z" />
  846. <glyph horiz-adv-x="600" d="M50 201l10 30h75q6 40 18 80h-64l10 30h66q40 92 114.5 149t162.5 57q86 0 138 -35l-17 -40q-43 38 -126 38q-72 0 -134 -46.5t-96 -122.5h247l-10 -30h-249q-13 -40 -17 -80h237l-10 -30h-229v-8q0 -76 39.5 -120t115.5 -44q83 0 156 44l-2 -36q-71 -45 -169 -45 q-86 0 -135 49t-49 139q0 14 1 21h-83z" />
  847. <glyph horiz-adv-x="419" d="M174 288l-112 2l8 27l112 7l7 30q8 38 15.5 65t24.5 67.5t37 65.5t53.5 44t74.5 19q55 0 98 -26l-23 -40q-36 30 -81 30q-30 0 -55 -16t-40.5 -37.5t-29 -57.5t-20 -60.5t-15.5 -63.5l-4 -20h181l4 -5l-12 -31h-181l-50 -222q-7 -30 -12.5 -49.5t-19.5 -51t-31.5 -51 t-47.5 -34.5t-67 -15q-54 0 -94 26l23 40q32 -30 80 -30q25 0 45 10.5t32 24.5t22.5 40t15.5 43.5t12 47.5z" />
  848. <glyph horiz-adv-x="500" d="M372 509q-33 0 -57 -15.5t-42 -54t-26.5 -66t-24.5 -88.5q-1 -3 -1.5 -5t-1 -5t-1.5 -5h173l3 -5l-11 -31h-173l-7 -28q-32 -131 -84 -183q20 -9 82.5 -44t108 -53t84.5 -18q50 0 77 16l-23 -48q-17 -11 -56 -11q-49 0 -100 22.5t-112.5 61.5t-89.5 53q-26 -12 -50 -12 q-20 0 -29.5 7t-8.5 21q2 29 38 29q18 0 45 -10q47 36 81 170l7 27l-96 2l7 27l98 7q2 7 9 36t9.5 39t10.5 36.5t13 37.5t15 32.5t19 31.5t22.5 24.5t27.5 21t32.5 11.5t39.5 5q67 0 112 -39l-22 -40q-15 18 -41.5 30.5t-56.5 12.5z" />
  849. <glyph horiz-adv-x="496" d="M48 103l6 30h150l17 80h-150l7 30h143l-113 300l41 4l68 -188q20 -55 36 -95h1q11 13 39 47.5t40 49.5l145 186l31 -4l4 -5l-237 -295h142l-7 -30h-150l-17 -80h150l-6 -30h-150l-22 -103h-40l22 103h-150z" />
  850. <glyph d="M208 -140l-6 8l26 123q-59 4 -94 51t-35 137q0 139 79 245.5t186 114.5l30 137l22 3l7 -8l-29 -133q50 -5 81 -41l-17 -41q-33 47 -91 47q-90 0 -156.5 -94.5t-66.5 -222.5q0 -78 27.5 -119t79.5 -41q85 0 155 93l18 -13q-68 -106 -166 -115l-27 -128z" />
  851. <glyph d="M464 192l-68 90q-60 -44 -131 -44q-60 0 -99 34l-95 -77l-18 23l94 78q-21 32 -21 77q0 91 76 159l-62 81l25 21q9 -11 31.5 -39.5t33.5 -41.5q56 37 120 37q67 0 105 -41l102 85l19 -23l-104 -86q17 -32 17 -71q0 -83 -65 -148q58 -71 69 -91v-4zM339 558 q-70 0 -121.5 -52.5t-51.5 -122.5q0 -49 28.5 -81t83.5 -32q71 0 121 52t50 123q0 52 -29.5 82.5t-80.5 30.5z" />
  852. <glyph d="M186 -140l-6 8l26 122h-2q-81 0 -141 35l17 43q54 -40 136 -40q73 0 122 39t49 106q0 36 -15.5 66.5t-39 51t-51 44t-51 44.5t-39 52.5t-15.5 68.5q0 73 54 127t135 65l27 130l23 3l6 -8l-26 -122h7q78 0 129 -33l-17 -43q-48 38 -121 38q-75 0 -123 -43t-48 -106 q0 -39 21.5 -72t52.5 -57t62 -49.5t52.5 -62.5t21.5 -82q0 -78 -55.5 -131t-140.5 -62l-27 -129z" />
  853. <glyph d="M26 250l10 30h83q5 50 22 108h-70l11 30h70q45 121 131 199t184 78q87 0 138 -45l-17 -42q-20 22 -55.5 35.5t-72.5 13.5q-81 0 -153 -67t-111 -172h249l-10 -30h-249q-17 -60 -21 -108h234l-9 -30h-227v-15q0 -101 39.5 -154t114.5 -53q89 0 169 58l-2 -38 q-78 -58 -182 -58q-88 0 -137 58.5t-49 174.5q0 18 1 27h-91z" />
  854. <glyph d="M246 298l-107 2l7 27l108 7h1l31 140q9 41 15.5 64.5t20 57.5t30 52.5t44 32.5t62.5 14q52 0 89 -26l-22 -40q-30 30 -75 30q-24 0 -43 -11t-29.5 -23.5t-20.5 -38.5t-13 -39t-10 -43l-38 -170h176l4 -5l-12 -31h-176l-78 -352q-7 -31 -12 -50t-18 -51.5t-28 -51 t-41 -33.5t-59 -15q-49 0 -83 26l22 40q28 -30 71 -30q20 0 36.5 11t26.5 24.5t19.5 39.5t13.5 43t11 48l78 351h-1z" />
  855. <glyph d="M379 659q-56 0 -87 -66.5t-76 -258.5h164l3 -5l-11 -31h-164l-23 -98q-30 -128 -73 -177q15 -8 75 -44t103.5 -53.5t82.5 -17.5q43 0 68 14l-23 -48q-20 -10 -57 -10q-42 0 -88 23t-101.5 62t-83.5 54q-21 -13 -44 -13q-43 0 -40 27q3 28 39 28q16 0 38 -8q34 34 65 166 l22 95l-99 2l7 27l100 7q45 197 70 255q37 87 103 102q17 4 37 4q61 0 96 -26l-23 -47q-33 37 -80 37z" />
  856. <glyph d="M56 134l7 33h179l21 100h-179l7 33h179l-110 391l45 4l66 -239q21 -80 30 -115h1q26 41 80 117l166 237l35 -5l4 -5l-273 -385h177l-7 -33h-179l-21 -100h179l-7 -33h-179l-29 -134h-42l29 134h-179z" />
  857. <glyph d="M200 -140l-6 8l26 123q-59 4 -94 51t-35 137q0 139 79 245.5t186 114.5l30 137l22 3l7 -8l-29 -133q50 -5 81 -41l-17 -41q-33 47 -91 47q-90 0 -156.5 -94.5t-66.5 -222.5q0 -78 27.5 -119t79.5 -41q85 0 155 93l18 -13q-68 -106 -166 -115l-27 -128z" />
  858. <glyph d="M433 48l-68 90q-60 -44 -131 -44q-60 0 -99 34l-95 -77l-18 23l94 78q-21 31 -21 77q0 91 76 159l-62 81l25 21q9 -11 31.5 -39.5t33.5 -41.5q56 37 120 37q67 0 105 -41l102 85l19 -23l-104 -86q17 -32 17 -71q0 -83 -65 -148q58 -71 69 -91v-4zM308 414 q-70 0 -121.5 -52.5t-51.5 -122.5q0 -49 28.5 -81t83.5 -32q71 0 121 52t50 123q0 52 -29.5 82.5t-80.5 30.5z" />
  859. <glyph d="M173 -140l-7 8l26 124q-71 4 -120 28l16 40q52 -32 130 -32q68 0 112.5 33t44.5 85q0 30 -22.5 54t-54.5 41t-63.5 34.5t-54 44.5t-22.5 62q0 61 49 106.5t124 56.5l28 134l22 3l7 -8l-27 -127h6q74 0 123 -26l-16 -40q-47 30 -116 30q-68 0 -113 -33.5t-45 -84.5 q0 -30 22.5 -54t54 -41.5t63.5 -35.5t54.5 -45t22.5 -61q0 -65 -56 -111.5t-139 -51.5l-27 -130z" />
  860. <glyph d="M5 201l10 30h75q6 40 18 80h-64l10 30h66q40 92 114.5 149t162.5 57q86 0 138 -35l-17 -40q-43 38 -126 38q-72 0 -134 -46.5t-96 -122.5h247l-10 -30h-249q-13 -40 -17 -80h237l-10 -30h-229v-8q0 -76 39.5 -120t115.5 -44q83 0 156 44l-2 -36q-71 -45 -169 -45 q-86 0 -135 49t-49 139q0 14 1 21h-83z" />
  861. <glyph d="M255 288l-112 2l8 27l112 7l7 30q7 30 11 45.5t13.5 47.5t18.5 51t24 44t32 39t40.5 24t50.5 10q50 0 88 -26l-23 -40q-32 30 -71 30q-22 0 -41 -9.5t-33.5 -30.5t-24.5 -39.5t-19.5 -52t-14 -51t-12.5 -52.5l-4 -20h181l4 -5l-12 -31h-181l-50 -222q-8 -34 -12 -49.5 t-17.5 -50t-28 -52.5t-41.5 -33.5t-61 -15.5q-49 0 -87 26l23 40q30 -30 72 -30q22 0 39 11t27 24t19.5 40.5t13.5 42.5t11 48z" />
  862. <glyph d="M340 509q-30 0 -52 -17t-37 -51.5t-24.5 -69t-22.5 -87.5q-2 -9 -3 -14h165l3 -5l-11 -31h-165l-7 -28q-34 -136 -75 -182q13 -7 72.5 -44t103.5 -54.5t86 -17.5q41 0 68 16l-23 -48q-17 -11 -56 -11q-45 0 -91.5 22.5t-102.5 62.5t-81 54q-20 -14 -46 -14q-18 0 -27.5 7 t-8.5 21q2 29 37 29q19 0 40 -9q35 34 69 169l7 27l-98 2l7 27l100 7q3 12 11 45t12 48.5t13 45t17 44.5t21.5 35.5t28 31t35 18t44.5 7.5q54 0 95 -26l-22 -40q-12 11 -35.5 20.5t-46.5 9.5z" />
  863. <glyph d="M80 103l6 30h150l17 80h-150l7 30h143l-88 300l41 4l55 -186q15 -54 24 -97h1q30 50 66 99l133 184l31 -4l4 -5l-213 -295h143l-7 -30h-150l-17 -80h150l-6 -30h-150l-22 -103h-40l22 103h-150z" />
  864. <glyph d="M521 328h-199l-43 -203h-40l42 203h-210l7 35q147 3 211 3l41 199h42l-42 -198q77 1 199 1l3 -5z" />
  865. <glyph d="M521 328h-450l7 35q172 5 451 5l3 -5z" />
  866. <glyph d="M429 154l-133 167l-203 -168l-19 25l203 168l-133 167l32 25q28 -35 39 -49.5t33.5 -43.5t58.5 -74l203 168l19 -26l-202 -167q15 -19 57.5 -73t72.5 -92l-3 -7z" />
  867. <glyph d="M388 547q0 -21 -17.5 -39t-39.5 -18q-14 0 -22 8.5t-8 21.5q0 22 18 40t40 18q13 0 21 -8.5t8 -22.5zM521 328h-450l7 35q172 5 451 5l3 -5zM310 175q0 -21 -17.5 -39t-39.5 -18q-14 0 -22 8.5t-8 21.5q0 22 18 40t40 18q13 0 21 -8.5t8 -22.5z" />
  868. <glyph d="M540 421h-450l8 35q170 5 450 5l4 -5zM501 237h-450l7 35q172 5 451 5l3 -5z" />
  869. <glyph d="M116 120l85 123h-149l7 35q46 1 168 3l101 146h-237l8 35q55 2 256 4l92 133l7 2l24 -14l-84 -121q61 1 155 1l4 -5l-12 -35h-174l-101 -146q184 2 244 2l3 -5l-11 -35h-262l-93 -134l-8 -2z" />
  870. <glyph d="M57 127l10 45l397 180l-323 166l9 40q225 -107 372 -190l2 -6l-5 -27z" />
  871. <glyph d="M543 558l-10 -45l-397 -180l323 -166l-9 -40q-225 107 -372 190l-2 6l5 27z" />
  872. <glyph d="M61 253l9 40l422 146l-362 132l8 40q272 -97 409 -155l3 -6l-6 -30zM473 103h-450l7 35q172 5 451 5l3 -5z" />
  873. <glyph d="M148 438l358 -145l-9 -40l-410 171l5 26l6 6q202 72 475 155l-9 -40zM473 103h-450l7 35q172 5 451 5l3 -5z" />
  874. <glyph horiz-adv-x="569" d="M504 421h-184l-35 -166h-40l34 166h-189l7 35q129 3 190 3l34 166h42l-35 -165q72 1 184 1l3 -5zM481 98h-450l7 35q172 5 451 5l3 -5z" />
  875. <glyph horiz-adv-x="561" d="M450 368q-26 0 -127.5 38t-111.5 38q-18 0 -86 -75q-9 -9 -13 -14l-22 18q86 111 131 111q25 0 126 -38t112 -38q3 0 7 1.5t9 4.5t9 6.5t10.5 9t11.5 10t12.5 12.5t12.5 13.5t14 15t15 15.5l21 -17q-86 -111 -131 -111zM408 175q-26 0 -127 38t-112 38q-18 0 -86 -75 q-3 -3 -4.5 -5t-4 -4.5l-4.5 -4.5l-22 18q86 111 131 111q25 0 126.5 -38t111.5 -38q3 0 7 1.5t9 4.5t9 6.5t10.5 9t11.5 10t12.5 12.5t12.5 13.5t14 15t15 15.5l21 -17q-86 -111 -131 -111z" />
  876. <glyph horiz-adv-x="520" d="M498 381l-46 -209h-40l38 177h-395l7 35q163 5 430 5z" />
  877. <glyph horiz-adv-x="818" d="M773 377q0 -78 -57.5 -136.5t-138.5 -58.5q-34 0 -60.5 11t-45 32t-29 38.5t-21.5 43.5q-98 -125 -202 -125q-59 0 -95.5 36t-36.5 97q0 78 54.5 135.5t130.5 57.5q60 0 97 -36t66 -95q99 131 207 131q59 0 95 -35t36 -96zM632 472q-92 0 -183 -127q14 -32 23.5 -49.5 t25.5 -38.5t36 -30t47 -9q60 0 105 46t45 107q0 46 -27 73.5t-72 27.5zM129 325q0 -49 28 -77.5t73 -28.5q90 0 178 119q-27 62 -59 98t-85 36q-58 0 -96.5 -44.5t-38.5 -102.5z" />
  878. <glyph horiz-adv-x="936" d="M436 558q0 -99 -59 -181.5t-149 -82.5q-55 0 -84.5 36t-29.5 103q0 100 59 181.5t148 81.5q56 0 85.5 -35.5t29.5 -102.5zM734 695l-422 -705h-40l421 705h41zM152 436q0 -112 85 -112q72 0 116.5 73t44.5 158q0 111 -85 111q-72 0 -116.5 -73t-44.5 -157zM848 186 q0 -99 -59 -181.5t-149 -82.5q-55 0 -84.5 36t-29.5 103q0 100 59 181.5t148 81.5q56 0 85.5 -35.5t29.5 -102.5zM564 64q0 -112 85 -112q72 0 116.5 73t44.5 158q0 111 -85 111q-72 0 -116.5 -73t-44.5 -157z" />
  879. <glyph horiz-adv-x="1333" d="M436 558q0 -99 -59 -181.5t-149 -82.5q-55 0 -84.5 36t-29.5 103q0 100 59 181.5t148 81.5q56 0 85.5 -35.5t29.5 -102.5zM734 695l-422 -705h-40l421 705h41zM152 436q0 -112 85 -112q72 0 116.5 73t44.5 158q0 111 -85 111q-72 0 -116.5 -73t-44.5 -157zM848 186 q0 -99 -59 -181.5t-149 -82.5q-55 0 -84.5 36t-29.5 103q0 100 59 181.5t148 81.5q56 0 85.5 -35.5t29.5 -102.5zM1245 186q0 -99 -59 -181.5t-149 -82.5q-55 0 -84.5 36t-29.5 103q0 100 59 181.5t148 81.5q56 0 85.5 -35.5t29.5 -102.5zM564 64q0 -112 85 -112 q72 0 116.5 73t44.5 158q0 111 -85 111q-72 0 -116.5 -73t-44.5 -157zM961 64q0 -112 85 -112q72 0 116.5 73t44.5 158q0 111 -85 111q-72 0 -116.5 -73t-44.5 -157z" />
  880. <glyph d="M505 253h-199l-43 -203h-40l42 203h-210l7 35q147 3 211 3l41 199h42l-42 -198q77 1 199 1l3 -5z" />
  881. <glyph horiz-adv-x="520" d="M485 253h-450l7 35q172 5 451 5l3 -5z" />
  882. <glyph d="M413 75l-133 167l-203 -168l-19 25l203 168l-133 167l32 25q28 -35 39 -49.5t33.5 -43.5t58.5 -74l203 168l19 -26l-202 -167q15 -19 57.5 -73t72.5 -92l-3 -7z" />
  883. <glyph d="M372 472q0 -21 -17.5 -39t-39.5 -18q-14 0 -22 8.5t-8 21.5q0 22 18 40t40 18q13 0 21 -8.5t8 -22.5zM505 253h-450l7 35q172 5 451 5l3 -5zM294 100q0 -21 -17.5 -39t-39.5 -18q-14 0 -22 8.5t-8 21.5q0 22 18 40t40 18q13 0 21 -8.5t8 -22.5z" />
  884. <glyph d="M523 345h-450l8 35q170 5 450 5l4 -5zM484 161h-450l7 35q172 5 451 5l3 -5z" />
  885. <glyph d="M98 38l85 123h-149l7 35q46 1 168 3l101 146h-237l8 35q55 2 256 4l92 133l7 2l24 -14l-84 -121q61 1 155 1l4 -5l-12 -35h-174l-101 -146q184 2 244 2l3 -5l-11 -35h-262l-93 -134l-8 -2z" />
  886. <glyph d="M41 50l10 45l397 180l-323 166l9 40q225 -107 372 -190l2 -6l-5 -27z" />
  887. <glyph d="M527 481l-10 -45l-397 -180l323 -166l-9 -40q-225 107 -372 190l-2 6l5 27z" />
  888. <glyph horiz-adv-x="561" d="M45 173l9 40l422 146l-362 132l8 40q272 -97 409 -155l3 -6l-6 -30zM456 23h-450l7 35q172 5 451 5l3 -5z" />
  889. <glyph horiz-adv-x="564" d="M139 358l358 -145l-9 -40l-410 171l5 26l6 6q202 72 475 155l-9 -40zM448 23h-450l7 35q172 5 451 5l3 -5z" />
  890. <glyph horiz-adv-x="562" d="M488 346h-184l-35 -166h-40l34 166h-189l7 35q129 3 190 3l34 166h42l-35 -165q72 1 184 1l3 -5zM458 23h-450l7 35q172 5 451 5l3 -5z" />
  891. <glyph d="M450 367q-26 0 -127.5 38t-111.5 38q-18 0 -86 -75q-9 -9 -13 -14l-22 18q86 111 131 111q25 0 126 -38t112 -38q3 0 7 1.5t9 4.5t9 6.5t10.5 9t11.5 10t12.5 12.5t12.5 13.5t14 15t15 15.5l21 -17q-86 -111 -131 -111zM408 174q-26 0 -127 38t-112 38q-18 0 -86 -75 q-3 -3 -4.5 -5t-4 -4.5l-4.5 -4.5l-22 18q86 111 131 111q25 0 126.5 -38t111.5 -38q3 0 7 1.5t9 4.5t9 6.5t10.5 9t11.5 10t12.5 12.5t12.5 13.5t14 15t15 15.5l21 -17q-86 -111 -131 -111z" />
  892. <glyph horiz-adv-x="520" d="M498 381l-46 -209h-40l38 177h-395l7 35q163 5 430 5z" />
  893. <glyph horiz-adv-x="817" d="M772 376q0 -78 -57.5 -136.5t-138.5 -58.5q-34 0 -60.5 11t-45 32t-29 38.5t-21.5 43.5q-98 -125 -202 -125q-59 0 -95.5 36t-36.5 97q0 78 54.5 135.5t130.5 57.5q60 0 97 -36t66 -95q99 131 207 131q59 0 95 -35t36 -96zM631 471q-92 0 -183 -127q14 -32 23.5 -49.5 t25.5 -38.5t36 -30t47 -9q60 0 105 46t45 107q0 46 -27 73.5t-72 27.5zM128 324q0 -49 28 -77.5t73 -28.5q90 0 178 119q-27 62 -59 98t-85 36q-58 0 -96.5 -44.5t-38.5 -102.5z" />
  894. <glyph horiz-adv-x="853" d="M675 545l-450 -555h-39l449 555h40zM386 430q0 -75 -55.5 -134.5t-127.5 -59.5q-52 0 -80 33t-28 85q0 76 54 133.5t127 57.5q53 0 81.5 -32t28.5 -83zM130 359q0 -43 20.5 -70t59.5 -27q55 0 98 50.5t43 113.5q0 41 -20.5 67t-60.5 26q-57 0 -98.5 -48t-41.5 -112z M768 184q0 -75 -55.5 -134.5t-127.5 -59.5q-52 0 -80 33.5t-28 85.5q0 76 54 133t127 57q53 0 81.5 -32t28.5 -83zM512 112q0 -43 20 -69.5t59 -26.5q56 0 99 50.5t43 114.5q0 41 -20.5 66.5t-60.5 25.5q-57 0 -98.5 -48t-41.5 -113z" />
  895. <glyph horiz-adv-x="1197" d="M675 545l-450 -555h-39l449 555h40zM386 430q0 -75 -55.5 -134.5t-127.5 -59.5q-52 0 -80 33t-28 85q0 76 54 133.5t127 57.5q53 0 81.5 -32t28.5 -83zM130 359q0 -43 20.5 -70t59.5 -27q55 0 98 50.5t43 113.5q0 41 -20.5 67t-60.5 26q-57 0 -98.5 -48t-41.5 -112z M1112 184q0 -75 -55.5 -134.5t-127.5 -59.5q-52 0 -80 33t-28 85q0 76 54 133.5t127 57.5q53 0 81.5 -32t28.5 -83zM768 184q0 -75 -55.5 -134.5t-127.5 -59.5q-52 0 -80 33.5t-28 85.5q0 76 54 133t127 57q53 0 81.5 -32t28.5 -83zM856 113q0 -42 20.5 -69.5t59.5 -27.5 q55 0 98 50.5t43 113.5q0 41 -20.5 67t-60.5 26q-57 0 -98.5 -48t-41.5 -112zM512 112q0 -43 20 -69.5t59 -26.5q56 0 99 50.5t43 114.5q0 41 -20.5 66.5t-60.5 25.5q-57 0 -98.5 -48t-41.5 -113z" />
  896. <glyph horiz-adv-x="753" d="M681 57q0 -53 -54 -67l-7 7q18 22 18 56q0 30 -26 55.5t-76 54.5q-50 -79 -119 -126t-151 -47q-85 0 -132.5 48.5t-47.5 120.5q0 69 46 130t123 95q-23 46 -23 102q0 94 59 151.5t141 57.5q54 0 84 -25.5t30 -66.5q0 -31 -16.5 -61t-42.5 -49q141 3 268 12l5 -5 q0 -21 -6 -43q-6 0 -128 5q-3 -141 -72 -268q63 -35 95 -66t32 -71zM275 489q0 -51 19.5 -93t59.5 -76t72 -54t86 -50q10 -5 15 -8q61 120 63 256q-6 0 -127 9l-5 11q45 55 45 101q0 32 -19 53t-61 21q-62 0 -105 -46.5t-43 -123.5zM129 164q0 -62 42 -100t110 -38 q69 0 127.5 40.5t101.5 110.5q-5 3 -32 17.5t-35 19t-32 19t-34.5 22.5t-30.5 22.5t-31 26t-24.5 27t-23.5 31.5q-69 -34 -103.5 -88t-34.5 -110z" />
  897. <glyph horiz-adv-x="451" d="M245 460q-39 0 -64 23.5t-25 63.5q0 57 46 102.5t104 45.5q40 0 64.5 -23.5t24.5 -62.5q0 -57 -46.5 -103t-103.5 -46zM295 660q-39 0 -69.5 -31.5t-30.5 -70.5q0 -29 16.5 -46t44.5 -17q39 0 69.5 31.5t30.5 71.5q0 30 -17 46t-44 16z" />
  898. <glyph horiz-adv-x="331" d="M173 310q-39 0 -64 23.5t-25 63.5q0 57 46 102.5t104 45.5q40 0 64.5 -23.5t24.5 -62.5q0 -57 -46.5 -103t-103.5 -46zM223 510q-39 0 -69.5 -31.5t-30.5 -70.5q0 -29 16.5 -46t44.5 -17q39 0 69.5 31.5t30.5 71.5q0 30 -17 46t-44 16z" />
  899. <glyph horiz-adv-x="645" d="M561 48q0 -44 -48 -56l-6 6q14 16 14 40t-22 44t-65 43q-90 -133 -225 -133q-72 0 -113.5 38t-41.5 96q0 54 38.5 101t100.5 73q-20 40 -20 83q0 72 49.5 115.5t118.5 43.5q47 0 73.5 -20t26.5 -53q0 -52 -50 -84q137 3 227 9l4 -4q0 -22 -5 -39q-24 1 -110 5 q-2 -103 -54 -199q53 -27 80.5 -52t27.5 -57zM216 386q0 -39 17 -72t49 -58t63 -43t73 -39q7 -3 11 -5q46 89 46 189q-8 1 -48.5 3.5t-57.5 4.5l-4 9q35 43 35 77q0 24 -16 40.5t-50 16.5q-49 0 -83.5 -33.5t-34.5 -89.5zM97 133q0 -48 35.5 -77.5t91.5 -29.5q112 0 186 112 q-3 1 -23.5 11.5t-26 13.5t-24 13t-26 14.5t-23.5 14.5t-24.5 17t-20 17t-20.5 20t-16 21q-55 -25 -82 -65.5t-27 -81.5z" />
  900. <glyph horiz-adv-x="451" d="M213 310q-39 0 -64 23.5t-25 63.5q0 57 46 102.5t104 45.5q40 0 64.5 -23.5t24.5 -62.5q0 -57 -46.5 -103t-103.5 -46zM263 510q-39 0 -69.5 -31.5t-30.5 -70.5q0 -29 16.5 -46t44.5 -17q39 0 69.5 31.5t30.5 71.5q0 30 -17 46t-44 16z" />
  901. <glyph horiz-adv-x="543" d="M223 -140l-6 8l26 124q-78 5 -123 54t-45 134q0 140 84 247t202 119l28 131l22 3l6 -8l-26 -125q82 -2 132 -35l-17 -40q-43 38 -126 38q-107 0 -184 -93.5t-77 -223.5q0 -76 39.5 -120t115.5 -44q83 0 156 44l-2 -36q-63 -40 -155 -45l-28 -129z" />
  902. <glyph horiz-adv-x="577" d="M442 48l-68 90q-60 -44 -131 -44q-60 0 -99 34l-95 -77l-18 23l94 78q-21 31 -21 77q0 91 76 159l-62 81l25 21q9 -11 31.5 -39.5t33.5 -41.5q56 37 120 37q67 0 105 -41l102 85l19 -23l-104 -86q17 -32 17 -71q0 -83 -65 -148q58 -71 69 -91v-4zM317 414 q-70 0 -121.5 -52.5t-51.5 -122.5q0 -49 28.5 -81t83.5 -32q71 0 121 52t50 123q0 52 -29.5 82.5t-80.5 30.5z" />
  903. <glyph horiz-adv-x="439" d="M113 -140l-7 8l26 124q-71 4 -120 28l16 40q52 -32 130 -32q68 0 112.5 33t44.5 85q0 30 -22.5 54t-54.5 41t-63.5 34.5t-54 44.5t-22.5 62q0 61 49 106.5t124 56.5l28 134l22 3l7 -8l-27 -127h6q74 0 123 -26l-16 -40q-47 30 -116 30q-68 0 -113 -33.5t-45 -84.5 q0 -30 22.5 -54t54 -41.5t63.5 -35.5t54.5 -45t22.5 -61q0 -65 -56 -111.5t-139 -51.5l-27 -130z" />
  904. <glyph horiz-adv-x="580" d="M60 201l10 30h75q6 40 18 80h-64l10 30h66q40 92 114.5 149t162.5 57q86 0 138 -35l-17 -40q-43 38 -126 38q-72 0 -134 -46.5t-96 -122.5h247l-10 -30h-249q-13 -40 -17 -80h237l-10 -30h-229v-8q0 -76 39.5 -120t115.5 -44q83 0 156 44l-2 -36q-71 -45 -169 -45 q-86 0 -135 49t-49 139q0 14 1 21h-83z" />
  905. <glyph d="M521 328h-199l-43 -203h-40l42 203h-210l7 35q147 3 211 3l41 199h42l-42 -198q77 1 199 1l3 -5z" />
  906. <glyph d="M521 328h-450l7 35q172 5 451 5l3 -5z" />
  907. <glyph d="M429 154l-133 167l-203 -168l-19 25l203 168l-133 167l32 25q28 -35 39 -49.5t33.5 -43.5t58.5 -74l203 168l19 -26l-202 -167q15 -19 57.5 -73t72.5 -92l-3 -7z" />
  908. <glyph d="M388 547q0 -21 -17.5 -39t-39.5 -18q-14 0 -22 8.5t-8 21.5q0 22 18 40t40 18q13 0 21 -8.5t8 -22.5zM521 328h-450l7 35q172 5 451 5l3 -5zM310 175q0 -21 -17.5 -39t-39.5 -18q-14 0 -22 8.5t-8 21.5q0 22 18 40t40 18q13 0 21 -8.5t8 -22.5z" />
  909. <glyph d="M540 421h-450l8 35q170 5 450 5l4 -5zM501 237h-450l7 35q172 5 451 5l3 -5z" />
  910. <glyph d="M116 120l85 123h-149l7 35q46 1 168 3l101 146h-237l8 35q55 2 256 4l92 133l7 2l24 -14l-84 -121q61 1 155 1l4 -5l-12 -35h-174l-101 -146q184 2 244 2l3 -5l-11 -35h-262l-93 -134l-8 -2z" />
  911. <glyph d="M57 127l10 45l397 180l-323 166l9 40q225 -107 372 -190l2 -6l-5 -27z" />
  912. <glyph d="M543 558l-10 -45l-397 -180l323 -166l-9 -40q-225 107 -372 190l-2 6l5 27z" />
  913. <glyph d="M61 253l9 40l422 146l-362 132l8 40q272 -97 409 -155l3 -6l-6 -30zM473 103h-450l7 35q172 5 451 5l3 -5z" />
  914. <glyph d="M152 438l358 -145l-9 -40l-410 171l5 26l6 6q202 72 475 155l-9 -40zM477 103h-450l7 35q172 5 451 5l3 -5z" />
  915. <glyph horiz-adv-x="569" d="M504 421h-184l-35 -166h-40l34 166h-189l7 35q129 3 190 3l34 166h42l-35 -165q72 1 184 1l3 -5zM481 98h-450l7 35q172 5 451 5l3 -5z" />
  916. <glyph horiz-adv-x="586" d="M440 327q-26 0 -127 38t-112 38q-18 0 -86 -75q-9 -9 -13 -14l-22 18q86 111 131 111q25 0 126 -38t112 -38q3 0 7 1.5t9 4.5t9 6.5t10.5 9t11.5 10t12.5 12.5t12.5 13.5t14 15t15 15.5l21 -17q-86 -111 -131 -111zM419 103q-25 0 -127 38t-112 38q-18 0 -86 -75 q-9 -9 -13 -14l-22 18q86 111 131 111q26 0 127 -38t111 -38q3 0 7 1.5t9 4.5t9 6.5t10.5 9t11.5 10t12.5 12.5t12.5 13.5t14 15t15 15.5l21 -17q-86 -111 -131 -111z" />
  917. <glyph horiz-adv-x="520" d="M482 305l-46 -209h-40l38 177h-395l7 35q163 5 430 5z" />
  918. <glyph horiz-adv-x="818" d="M773 377q0 -78 -57.5 -136.5t-138.5 -58.5q-34 0 -60.5 11t-45 32t-29 38.5t-21.5 43.5q-98 -125 -202 -125q-59 0 -95.5 36t-36.5 97q0 78 54.5 135.5t130.5 57.5q60 0 97 -36t66 -95q99 131 207 131q59 0 95 -35t36 -96zM632 472q-92 0 -183 -127q14 -32 23.5 -49.5 t25.5 -38.5t36 -30t47 -9q60 0 105 46t45 107q0 46 -27 73.5t-72 27.5zM129 325q0 -49 28 -77.5t73 -28.5q90 0 178 119q-27 62 -59 98t-85 36q-58 0 -96.5 -44.5t-38.5 -102.5z" />
  919. <glyph horiz-adv-x="936" d="M436 558q0 -99 -59 -181.5t-149 -82.5q-55 0 -84.5 36t-29.5 103q0 100 59 181.5t148 81.5q56 0 85.5 -35.5t29.5 -102.5zM734 695l-422 -705h-40l421 705h41zM152 436q0 -112 85 -112q72 0 116.5 73t44.5 158q0 111 -85 111q-72 0 -116.5 -73t-44.5 -157zM848 186 q0 -99 -59 -181.5t-149 -82.5q-55 0 -84.5 36t-29.5 103q0 100 59 181.5t148 81.5q56 0 85.5 -35.5t29.5 -102.5zM564 64q0 -112 85 -112q72 0 116.5 73t44.5 158q0 111 -85 111q-72 0 -116.5 -73t-44.5 -157z" />
  920. <glyph horiz-adv-x="1333" d="M436 558q0 -99 -59 -181.5t-149 -82.5q-55 0 -84.5 36t-29.5 103q0 100 59 181.5t148 81.5q56 0 85.5 -35.5t29.5 -102.5zM734 695l-422 -705h-40l421 705h41zM152 436q0 -112 85 -112q72 0 116.5 73t44.5 158q0 111 -85 111q-72 0 -116.5 -73t-44.5 -157zM848 186 q0 -99 -59 -181.5t-149 -82.5q-55 0 -84.5 36t-29.5 103q0 100 59 181.5t148 81.5q56 0 85.5 -35.5t29.5 -102.5zM1245 186q0 -99 -59 -181.5t-149 -82.5q-55 0 -84.5 36t-29.5 103q0 100 59 181.5t148 81.5q56 0 85.5 -35.5t29.5 -102.5zM564 64q0 -112 85 -112 q72 0 116.5 73t44.5 158q0 111 -85 111q-72 0 -116.5 -73t-44.5 -157zM961 64q0 -112 85 -112q72 0 116.5 73t44.5 158q0 111 -85 111q-72 0 -116.5 -73t-44.5 -157z" />
  921. <glyph horiz-adv-x="500" d="M372 509q-33 0 -57 -15.5t-42 -54t-26.5 -66t-24.5 -88.5q-1 -3 -1.5 -5t-1 -5t-1.5 -5h173l3 -5l-11 -31h-173l-7 -28q-32 -131 -84 -183q20 -9 82.5 -44t108 -53t84.5 -18q50 0 77 16l-23 -48q-17 -11 -56 -11q-49 0 -100 22.5t-112.5 61.5t-89.5 53q-26 -12 -50 -12 q-20 0 -29.5 7t-8.5 21q2 29 38 29q18 0 45 -10q47 36 81 170l7 27l-96 2l7 27l98 7q2 7 9 36t9.5 39t10.5 36.5t13 37.5t15 32.5t19 31.5t22.5 24.5t27.5 21t32.5 11.5t39.5 5q67 0 112 -39l-22 -40q-15 18 -41.5 30.5t-56.5 12.5z" />
  922. <glyph d="M209 -140l-6 8l26 123q-59 4 -94 51t-35 137q0 139 79 245.5t186 114.5l30 137l22 3l7 -8l-29 -133q50 -5 81 -41l-17 -41q-33 47 -91 47q-90 0 -156.5 -94.5t-66.5 -222.5q0 -78 27.5 -119t79.5 -41q85 0 155 93l18 -13q-68 -106 -166 -115l-27 -128z" />
  923. <glyph d="M434 48l-68 90q-60 -44 -131 -44q-60 0 -99 34l-95 -77l-18 23l94 78q-21 31 -21 77q0 91 76 159l-62 81l25 21q9 -11 31.5 -39.5t33.5 -41.5q56 37 120 37q67 0 105 -41l102 85l19 -23l-104 -86q17 -32 17 -71q0 -83 -65 -148q58 -71 69 -91v-4zM309 414 q-70 0 -121.5 -52.5t-51.5 -122.5q0 -49 28.5 -81t83.5 -32q71 0 121 52t50 123q0 52 -29.5 82.5t-80.5 30.5z" />
  924. <glyph d="M174 -140l-7 8l26 124q-71 4 -120 28l16 40q52 -32 130 -32q68 0 112.5 33t44.5 85q0 30 -22.5 54t-54.5 41t-63.5 34.5t-54 44.5t-22.5 62q0 61 49 106.5t124 56.5l28 134l22 3l7 -8l-27 -127h6q74 0 123 -26l-16 -40q-47 30 -116 30q-68 0 -113 -33.5t-45 -84.5 q0 -30 22.5 -54t54.5 -41.5t63.5 -35.5t54 -45t22.5 -61q0 -65 -56 -111.5t-139 -51.5l-27 -130z" />
  925. <glyph d="M51 201l10 30h75q6 40 18 80h-64l10 30h66q40 92 114.5 149t162.5 57q86 0 138 -35l-17 -40q-43 38 -126 38q-72 0 -134 -46.5t-96 -122.5h247l-10 -30h-249q-13 -40 -17 -80h237l-10 -30h-229v-8q0 -76 39.5 -120t115.5 -44q83 0 156 44l-2 -36q-70 -45 -169 -45 q-86 0 -135 49t-49 139q0 14 1 21h-83z" />
  926. <glyph d="M340 509q-30 0 -52 -17t-37 -51.5t-24.5 -69t-22.5 -87.5q-2 -9 -3 -14h165l3 -5l-11 -31h-165l-7 -28q-34 -136 -75 -182q13 -7 72.5 -44t103.5 -54.5t86 -17.5q41 0 68 16l-23 -48q-17 -11 -56 -11q-45 0 -91.5 22.5t-102.5 62.5t-81 54q-20 -14 -46 -14q-18 0 -27.5 7 t-8.5 21q2 29 37 29q19 0 40 -9q35 34 69 169l7 27l-98 2l7 27l100 7q3 12 11 45t12 48.5t13 45t17 44.5t21.5 35.5t28 31t35 18t44.5 7.5q54 0 95 -26l-22 -40q-12 11 -35.5 20.5t-46.5 9.5z" />
  927. <glyph d="M80 103l6 30h150l17 80h-150l7 30h143l-88 300l41 4l55 -186q15 -54 24 -97h1q30 50 66 99l133 184l31 -4l4 -5l-213 -295h143l-7 -30h-150l-17 -80h150l-6 -30h-150l-22 -103h-40l22 103h-150z" />
  928. <glyph horiz-adv-x="456" d="M28 103l6 30h150l17 80h-150l7 30h143l-113 300l41 4l68 -188q20 -55 36 -95h1q11 13 39 47.5t40 49.5l145 186l31 -4l4 -5l-237 -295h142l-7 -30h-150l-17 -80h150l-6 -30h-150l-22 -103h-40l22 103h-150z" />
  929. <glyph horiz-adv-x="419" d="M174 288l-112 2l8 27l112 7l7 30q8 38 15.5 65t24.5 67.5t37 65.5t53.5 44t74.5 19q55 0 98 -26l-23 -40q-36 30 -81 30q-30 0 -55 -16t-40.5 -37.5t-29 -57.5t-20 -60.5t-15.5 -63.5l-4 -20h181l4 -5l-12 -31h-181l-50 -222q-7 -30 -12.5 -49.5t-19.5 -51t-31.5 -51 t-47.5 -34.5t-67 -15q-54 0 -94 26l23 40q32 -30 80 -30q25 0 45 10.5t32 24.5t22.5 40t15.5 43.5t12 47.5z" />
  930. <glyph d="M255 288l-112 2l8 27l112 7l7 30q7 30 11 45.5t13.5 47.5t18.5 51t24 44t32 39t40.5 24t50.5 10q50 0 88 -26l-23 -40q-32 30 -71 30q-22 0 -41 -9.5t-33.5 -30.5t-24.5 -39.5t-19.5 -52t-14 -51t-12.5 -52.5l-4 -20h181l4 -5l-12 -31h-181l-50 -222q-8 -34 -12 -49.5 t-17.5 -50t-28 -52.5t-41.5 -33.5t-61 -15.5q-49 0 -87 26l23 40q30 -30 72 -30q22 0 39 11t27 24t19.5 40.5t13.5 42.5t11 48z" />
  931. <glyph horiz-adv-x="568" d="M399 865l-3 -8q-108 -58 -241 -78l-3 17q144 50 223 100zM668 865l-3 -8q-108 -58 -241 -78l-3 17q144 50 223 100zM121 0h-42l114 538q18 80 25 147l46 10l4 -5zM233 -182l-10 26q104 51 135 199l105 495q17 80 24 147l46 10l4 -5l-137 -647q-35 -166 -167 -225z" />
  932. <glyph horiz-adv-x="459" d="M287 736l1 -8q-79 -87 -194 -151l-7 13q114 96 164 162zM520 736l1 -8q-79 -87 -194 -151l-7 13q114 96 164 162zM111 0h-40q0 96 37 267l20 92l8 136l49 10q0 -73 -37 -248t-37 -257zM171 -255l-15 21q91 52 119 182l88 411l8 136l49 10q0 -19 -1 -36.5t-5.5 -45.5 t-8.5 -50.5t-14 -72t-18 -87t-25.5 -119t-31.5 -146.5q-29 -132 -145 -203z" />
  933. <glyph horiz-adv-x="491" d="M317 771l1 -8q-79 -87 -194 -151l-7 13q114 96 164 162zM565 771l1 -8q-79 -87 -194 -151l-7 13q114 96 164 162zM93 0h-40l89 421q14 67 20 118l42 8l4 -5zM204 -144l-9 22q87 44 112 162l81 381q15 70 18 118l44 8l4 -5l-107 -502q-16 -73 -50.5 -116t-92.5 -68z" />
  934. <hkern u1="&#x21;" u2="&#x1ef8;" k="10" />
  935. <hkern u1="&#x21;" u2="&#x1ef2;" k="10" />
  936. <hkern u1="&#x21;" u2="&#x1e84;" k="10" />
  937. <hkern u1="&#x21;" u2="&#x1e82;" k="10" />
  938. <hkern u1="&#x21;" u2="&#x1e80;" k="10" />
  939. <hkern u1="&#x21;" u2="&#x232;" k="10" />
  940. <hkern u1="&#x21;" u2="&#x178;" k="10" />
  941. <hkern u1="&#x21;" u2="&#x176;" k="10" />
  942. <hkern u1="&#x21;" u2="&#x174;" k="10" />
  943. <hkern u1="&#x21;" u2="&#xdd;" k="10" />
  944. <hkern u1="&#x21;" u2="Y" k="10" />
  945. <hkern u1="&#x21;" u2="W" k="10" />
  946. <hkern u1="&#x21;" u2="V" k="10" />
  947. <hkern u1="&#x21;" u2="M" k="10" />
  948. <hkern u1="&#x27;" g2="Jacute" k="-30" />
  949. <hkern u1="&#x27;" u2="&#x19d;" k="-30" />
  950. <hkern u1="&#x27;" u2="&#x134;" k="-30" />
  951. <hkern u1="&#x27;" u2="J" k="-30" />
  952. <hkern u1="&#x2f;" g2="x.sc" k="20" />
  953. <hkern u1="&#x2f;" u2="&#x222b;" k="100" />
  954. <hkern u1="&#x2f;" u2="&#x221a;" k="40" />
  955. <hkern u1="&#x2f;" u2="&#x2211;" k="60" />
  956. <hkern u1="&#x2f;" u2="X" k="30" />
  957. <hkern u1="A" g2="ampersand.caps" k="10" />
  958. <hkern u1="A" g2="quotesingle.caps" k="80" />
  959. <hkern u1="A" g2="quotedbl.caps" k="80" />
  960. <hkern u1="A" g2="emdash.caps" k="10" />
  961. <hkern u1="A" g2="endash.caps" k="10" />
  962. <hkern u1="A" g2="hyphen.caps" k="30" />
  963. <hkern u1="A" g2="asterisk.caps" k="90" />
  964. <hkern u1="A" g2="periodcentered.caps" k="10" />
  965. <hkern u1="A" g2="question.caps" k="40" />
  966. <hkern u1="A" u2="&#x2013;" k="10" />
  967. <hkern u1="A" u2="&#x27;" k="80" />
  968. <hkern u1="B" g2="ampersand.caps" k="40" />
  969. <hkern u1="B" g2="quotesingle.caps" k="40" />
  970. <hkern u1="B" g2="quotedbl.caps" k="20" />
  971. <hkern u1="B" g2="periodcentered.caps" k="20" />
  972. <hkern u1="B" g2="questiondown.caps" k="20" />
  973. <hkern u1="B" g2="question.caps" k="40" />
  974. <hkern u1="B" u2="&#x2122;" k="30" />
  975. <hkern u1="B" u2="X" k="10" />
  976. <hkern u1="C" g2="ampersand.caps" k="20" />
  977. <hkern u1="C" g2="quotesingle.caps" k="-30" />
  978. <hkern u1="C" g2="slash.caps" k="-10" />
  979. <hkern u1="C" g2="periodcentered.caps" k="20" />
  980. <hkern u1="C" g2="question.caps" k="10" />
  981. <hkern u1="C" g2="exclamdown.caps" k="-20" />
  982. <hkern u1="C" g2="exclam.caps" k="-20" />
  983. <hkern u1="D" g2="ampersand.caps" k="30" />
  984. <hkern u1="D" g2="quotesingle.caps" k="10" />
  985. <hkern u1="D" g2="quotedbl.caps" k="30" />
  986. <hkern u1="D" g2="asterisk.caps" k="40" />
  987. <hkern u1="D" g2="questiondown.caps" k="10" />
  988. <hkern u1="D" g2="question.caps" k="20" />
  989. <hkern u1="D" u2="&#x22;" k="30" />
  990. <hkern u1="E" g2="periodcentered.caps" k="50" />
  991. <hkern u1="F" u2="&#x2122;" k="-40" />
  992. <hkern u1="F" u2="X" k="10" />
  993. <hkern u1="F" u2="M" k="10" />
  994. <hkern u1="G" g2="ampersand.caps" k="-20" />
  995. <hkern u1="G" g2="asterisk.caps" k="10" />
  996. <hkern u1="H" g2="asterisk.caps" k="-20" />
  997. <hkern u1="H" g2="question.caps" k="10" />
  998. <hkern u1="I" g2="asterisk.caps" k="-20" />
  999. <hkern u1="I" g2="question.caps" k="10" />
  1000. <hkern u1="L" g2="ampersand.caps" k="20" />
  1001. <hkern u1="L" g2="quotesingle.caps" k="70" />
  1002. <hkern u1="L" g2="quotedbl.caps" k="90" />
  1003. <hkern u1="L" g2="asterisk.caps" k="150" />
  1004. <hkern u1="L" g2="question.caps" k="40" />
  1005. <hkern u1="N" g2="asterisk.caps" k="-20" />
  1006. <hkern u1="N" g2="question.caps" k="10" />
  1007. <hkern u1="O" g2="ampersand.caps" k="30" />
  1008. <hkern u1="O" g2="quotesingle.caps" k="10" />
  1009. <hkern u1="O" g2="quotedbl.caps" k="30" />
  1010. <hkern u1="O" g2="asterisk.caps" k="40" />
  1011. <hkern u1="O" g2="questiondown.caps" k="10" />
  1012. <hkern u1="O" g2="question.caps" k="20" />
  1013. <hkern u1="O" u2="&#x22;" k="30" />
  1014. <hkern u1="P" u2="x" k="20" />
  1015. <hkern u1="P" u2="X" k="15" />
  1016. <hkern u1="P" u2="M" k="5" />
  1017. <hkern u1="Q" g2="ampersand.caps" k="30" />
  1018. <hkern u1="Q" g2="quotesingle.caps" k="10" />
  1019. <hkern u1="Q" g2="quotedbl.caps" k="30" />
  1020. <hkern u1="Q" g2="asterisk.caps" k="40" />
  1021. <hkern u1="Q" g2="questiondown.caps" k="10" />
  1022. <hkern u1="Q" g2="question.caps" k="20" />
  1023. <hkern u1="Q" u2="&#x22;" k="30" />
  1024. <hkern u1="T" g2="periodcentered.caps" k="50" />
  1025. <hkern u1="T" g2="questiondown.caps" k="70" />
  1026. <hkern u1="T" u2="&#x27;" k="-20" />
  1027. <hkern u1="U" g2="questiondown.caps" k="10" />
  1028. <hkern u1="V" g2="periodcentered.caps" k="40" />
  1029. <hkern u1="V" g2="questiondown.caps" k="30" />
  1030. <hkern u1="W" g2="periodcentered.caps" k="40" />
  1031. <hkern u1="W" g2="questiondown.caps" k="30" />
  1032. <hkern u1="X" g2="ampersand.caps" k="20" />
  1033. <hkern u1="X" g2="emdash.caps" k="40" />
  1034. <hkern u1="X" g2="endash.caps" k="20" />
  1035. <hkern u1="X" g2="questiondown.caps" k="20" />
  1036. <hkern u1="X" u2="x" k="10" />
  1037. <hkern u1="Y" g2="ampersand.caps" k="20" />
  1038. <hkern u1="Y" g2="quotedbl.caps" k="-10" />
  1039. <hkern u1="Y" g2="slash.caps" k="60" />
  1040. <hkern u1="Y" g2="periodcentered.caps" k="80" />
  1041. <hkern u1="Y" g2="questiondown.caps" k="80" />
  1042. <hkern u1="Y" g2="question.caps" k="10" />
  1043. <hkern u1="Z" g2="periodcentered.caps" k="20" />
  1044. <hkern u1="_" u2="&#x221a;" k="50" />
  1045. <hkern u1="_" u2="&#x220f;" k="40" />
  1046. <hkern u1="_" u2="&#x2202;" k="20" />
  1047. <hkern u1="_" u2="&#x259;" k="25" />
  1048. <hkern u1="a" u2="&#x27;" k="30" />
  1049. <hkern u1="b" u2="&#x22;" k="30" />
  1050. <hkern u1="i" u2="&#x27;" k="30" />
  1051. <hkern u1="o" u2="&#x22;" k="30" />
  1052. <hkern u1="p" u2="&#x22;" k="30" />
  1053. <hkern u1="q" u2="&#x27;" k="30" />
  1054. <hkern u1="s" g2="asterisk.caps" k="20" />
  1055. <hkern u1="x" g2="asterisk.caps" k="40" />
  1056. <hkern u1="x" u2="x" k="15" />
  1057. <hkern u1="z" g2="asterisk.caps" k="30" />
  1058. <hkern u1="&#xa1;" g2="IJacute" k="45" />
  1059. <hkern u1="&#xa1;" u2="&#x1eca;" k="45" />
  1060. <hkern u1="&#xa1;" u2="&#x1ebc;" k="45" />
  1061. <hkern u1="&#xa1;" u2="&#x1eb8;" k="45" />
  1062. <hkern u1="&#xa1;" u2="&#x1ea0;" k="10" />
  1063. <hkern u1="&#xa1;" u2="&#x1e5a;" k="45" />
  1064. <hkern u1="&#xa1;" u2="&#x1e44;" k="45" />
  1065. <hkern u1="&#xa1;" u2="&#x1e24;" k="45" />
  1066. <hkern u1="&#xa1;" u2="&#x1e0c;" k="45" />
  1067. <hkern u1="&#xa1;" u2="&#x1fc;" k="10" />
  1068. <hkern u1="&#xa1;" u2="&#x1fa;" k="10" />
  1069. <hkern u1="&#xa1;" u2="&#x1cf;" k="45" />
  1070. <hkern u1="&#xa1;" u2="&#x1cd;" k="10" />
  1071. <hkern u1="&#xa1;" u2="&#x158;" k="45" />
  1072. <hkern u1="&#xa1;" u2="&#x156;" k="45" />
  1073. <hkern u1="&#xa1;" u2="&#x154;" k="45" />
  1074. <hkern u1="&#xa1;" u2="&#x14a;" k="45" />
  1075. <hkern u1="&#xa1;" u2="&#x147;" k="45" />
  1076. <hkern u1="&#xa1;" u2="&#x145;" k="45" />
  1077. <hkern u1="&#xa1;" u2="&#x143;" k="45" />
  1078. <hkern u1="&#xa1;" u2="&#x141;" k="45" />
  1079. <hkern u1="&#xa1;" u2="&#x13f;" k="45" />
  1080. <hkern u1="&#xa1;" u2="&#x13d;" k="45" />
  1081. <hkern u1="&#xa1;" u2="&#x13b;" k="45" />
  1082. <hkern u1="&#xa1;" u2="&#x139;" k="45" />
  1083. <hkern u1="&#xa1;" u2="&#x136;" k="45" />
  1084. <hkern u1="&#xa1;" u2="&#x132;" k="45" />
  1085. <hkern u1="&#xa1;" u2="&#x130;" k="45" />
  1086. <hkern u1="&#xa1;" u2="&#x12e;" k="45" />
  1087. <hkern u1="&#xa1;" u2="&#x12c;" k="45" />
  1088. <hkern u1="&#xa1;" u2="&#x12a;" k="45" />
  1089. <hkern u1="&#xa1;" u2="&#x128;" k="45" />
  1090. <hkern u1="&#xa1;" u2="&#x126;" k="45" />
  1091. <hkern u1="&#xa1;" u2="&#x124;" k="45" />
  1092. <hkern u1="&#xa1;" u2="&#x11a;" k="45" />
  1093. <hkern u1="&#xa1;" u2="&#x118;" k="45" />
  1094. <hkern u1="&#xa1;" u2="&#x116;" k="45" />
  1095. <hkern u1="&#xa1;" u2="&#x114;" k="45" />
  1096. <hkern u1="&#xa1;" u2="&#x112;" k="45" />
  1097. <hkern u1="&#xa1;" u2="&#x110;" k="45" />
  1098. <hkern u1="&#xa1;" u2="&#x10e;" k="45" />
  1099. <hkern u1="&#xa1;" u2="&#x104;" k="10" />
  1100. <hkern u1="&#xa1;" u2="&#x102;" k="10" />
  1101. <hkern u1="&#xa1;" u2="&#x100;" k="10" />
  1102. <hkern u1="&#xa1;" u2="&#xde;" k="45" />
  1103. <hkern u1="&#xa1;" u2="&#xd1;" k="45" />
  1104. <hkern u1="&#xa1;" u2="&#xd0;" k="45" />
  1105. <hkern u1="&#xa1;" u2="&#xcf;" k="45" />
  1106. <hkern u1="&#xa1;" u2="&#xce;" k="45" />
  1107. <hkern u1="&#xa1;" u2="&#xcd;" k="45" />
  1108. <hkern u1="&#xa1;" u2="&#xcc;" k="45" />
  1109. <hkern u1="&#xa1;" u2="&#xcb;" k="45" />
  1110. <hkern u1="&#xa1;" u2="&#xca;" k="45" />
  1111. <hkern u1="&#xa1;" u2="&#xc9;" k="45" />
  1112. <hkern u1="&#xa1;" u2="&#xc8;" k="45" />
  1113. <hkern u1="&#xa1;" u2="&#xc6;" k="10" />
  1114. <hkern u1="&#xa1;" u2="&#xc5;" k="10" />
  1115. <hkern u1="&#xa1;" u2="&#xc4;" k="10" />
  1116. <hkern u1="&#xa1;" u2="&#xc3;" k="10" />
  1117. <hkern u1="&#xa1;" u2="&#xc2;" k="10" />
  1118. <hkern u1="&#xa1;" u2="&#xc1;" k="10" />
  1119. <hkern u1="&#xa1;" u2="&#xc0;" k="10" />
  1120. <hkern u1="&#xa1;" u2="R" k="45" />
  1121. <hkern u1="&#xa1;" u2="P" k="45" />
  1122. <hkern u1="&#xa1;" u2="N" k="45" />
  1123. <hkern u1="&#xa1;" u2="L" k="45" />
  1124. <hkern u1="&#xa1;" u2="K" k="45" />
  1125. <hkern u1="&#xa1;" u2="I" k="45" />
  1126. <hkern u1="&#xa1;" u2="H" k="45" />
  1127. <hkern u1="&#xa1;" u2="F" k="45" />
  1128. <hkern u1="&#xa1;" u2="E" k="45" />
  1129. <hkern u1="&#xa1;" u2="D" k="45" />
  1130. <hkern u1="&#xa1;" u2="B" k="45" />
  1131. <hkern u1="&#xa1;" u2="A" k="10" />
  1132. <hkern u1="&#xc0;" g2="ampersand.caps" k="10" />
  1133. <hkern u1="&#xc0;" g2="quotesingle.caps" k="80" />
  1134. <hkern u1="&#xc0;" g2="quotedbl.caps" k="80" />
  1135. <hkern u1="&#xc0;" g2="emdash.caps" k="10" />
  1136. <hkern u1="&#xc0;" g2="endash.caps" k="10" />
  1137. <hkern u1="&#xc0;" g2="hyphen.caps" k="30" />
  1138. <hkern u1="&#xc0;" g2="asterisk.caps" k="90" />
  1139. <hkern u1="&#xc0;" g2="periodcentered.caps" k="10" />
  1140. <hkern u1="&#xc0;" g2="question.caps" k="40" />
  1141. <hkern u1="&#xc0;" u2="&#x2013;" k="10" />
  1142. <hkern u1="&#xc0;" u2="&#x27;" k="80" />
  1143. <hkern u1="&#xc1;" g2="ampersand.caps" k="10" />
  1144. <hkern u1="&#xc1;" g2="quotesingle.caps" k="80" />
  1145. <hkern u1="&#xc1;" g2="quotedbl.caps" k="80" />
  1146. <hkern u1="&#xc1;" g2="emdash.caps" k="10" />
  1147. <hkern u1="&#xc1;" g2="endash.caps" k="10" />
  1148. <hkern u1="&#xc1;" g2="hyphen.caps" k="30" />
  1149. <hkern u1="&#xc1;" g2="asterisk.caps" k="90" />
  1150. <hkern u1="&#xc1;" g2="periodcentered.caps" k="10" />
  1151. <hkern u1="&#xc1;" g2="question.caps" k="40" />
  1152. <hkern u1="&#xc1;" u2="&#x2013;" k="10" />
  1153. <hkern u1="&#xc1;" u2="&#x27;" k="80" />
  1154. <hkern u1="&#xc2;" g2="ampersand.caps" k="10" />
  1155. <hkern u1="&#xc2;" g2="quotesingle.caps" k="80" />
  1156. <hkern u1="&#xc2;" g2="quotedbl.caps" k="80" />
  1157. <hkern u1="&#xc2;" g2="emdash.caps" k="10" />
  1158. <hkern u1="&#xc2;" g2="endash.caps" k="10" />
  1159. <hkern u1="&#xc2;" g2="hyphen.caps" k="30" />
  1160. <hkern u1="&#xc2;" g2="asterisk.caps" k="90" />
  1161. <hkern u1="&#xc2;" g2="periodcentered.caps" k="10" />
  1162. <hkern u1="&#xc2;" g2="question.caps" k="40" />
  1163. <hkern u1="&#xc2;" u2="&#x2013;" k="10" />
  1164. <hkern u1="&#xc2;" u2="&#x27;" k="80" />
  1165. <hkern u1="&#xc3;" g2="ampersand.caps" k="10" />
  1166. <hkern u1="&#xc3;" g2="quotesingle.caps" k="80" />
  1167. <hkern u1="&#xc3;" g2="quotedbl.caps" k="80" />
  1168. <hkern u1="&#xc3;" g2="emdash.caps" k="10" />
  1169. <hkern u1="&#xc3;" g2="endash.caps" k="10" />
  1170. <hkern u1="&#xc3;" g2="hyphen.caps" k="30" />
  1171. <hkern u1="&#xc3;" g2="asterisk.caps" k="90" />
  1172. <hkern u1="&#xc3;" g2="periodcentered.caps" k="10" />
  1173. <hkern u1="&#xc3;" g2="question.caps" k="40" />
  1174. <hkern u1="&#xc3;" u2="&#x2013;" k="10" />
  1175. <hkern u1="&#xc3;" u2="&#x27;" k="80" />
  1176. <hkern u1="&#xc4;" g2="ampersand.caps" k="10" />
  1177. <hkern u1="&#xc4;" g2="quotesingle.caps" k="80" />
  1178. <hkern u1="&#xc4;" g2="quotedbl.caps" k="80" />
  1179. <hkern u1="&#xc4;" g2="emdash.caps" k="10" />
  1180. <hkern u1="&#xc4;" g2="endash.caps" k="10" />
  1181. <hkern u1="&#xc4;" g2="hyphen.caps" k="30" />
  1182. <hkern u1="&#xc4;" g2="asterisk.caps" k="90" />
  1183. <hkern u1="&#xc4;" g2="periodcentered.caps" k="10" />
  1184. <hkern u1="&#xc4;" g2="question.caps" k="40" />
  1185. <hkern u1="&#xc4;" u2="&#x2013;" k="10" />
  1186. <hkern u1="&#xc4;" u2="&#x27;" k="80" />
  1187. <hkern u1="&#xc5;" g2="ampersand.caps" k="10" />
  1188. <hkern u1="&#xc5;" g2="quotesingle.caps" k="80" />
  1189. <hkern u1="&#xc5;" g2="quotedbl.caps" k="80" />
  1190. <hkern u1="&#xc5;" g2="emdash.caps" k="10" />
  1191. <hkern u1="&#xc5;" g2="endash.caps" k="10" />
  1192. <hkern u1="&#xc5;" g2="hyphen.caps" k="30" />
  1193. <hkern u1="&#xc5;" g2="asterisk.caps" k="90" />
  1194. <hkern u1="&#xc5;" g2="periodcentered.caps" k="10" />
  1195. <hkern u1="&#xc5;" g2="question.caps" k="40" />
  1196. <hkern u1="&#xc5;" u2="&#x2013;" k="10" />
  1197. <hkern u1="&#xc5;" u2="&#x27;" k="80" />
  1198. <hkern u1="&#xc6;" g2="periodcentered.caps" k="50" />
  1199. <hkern u1="&#xc7;" g2="ampersand.caps" k="20" />
  1200. <hkern u1="&#xc7;" g2="quotesingle.caps" k="-30" />
  1201. <hkern u1="&#xc7;" g2="slash.caps" k="-10" />
  1202. <hkern u1="&#xc7;" g2="periodcentered.caps" k="20" />
  1203. <hkern u1="&#xc7;" g2="question.caps" k="10" />
  1204. <hkern u1="&#xc7;" g2="exclamdown.caps" k="-20" />
  1205. <hkern u1="&#xc7;" g2="exclam.caps" k="-20" />
  1206. <hkern u1="&#xc8;" g2="periodcentered.caps" k="50" />
  1207. <hkern u1="&#xc9;" g2="periodcentered.caps" k="50" />
  1208. <hkern u1="&#xca;" g2="periodcentered.caps" k="50" />
  1209. <hkern u1="&#xcb;" g2="periodcentered.caps" k="50" />
  1210. <hkern u1="&#xcc;" g2="asterisk.caps" k="-20" />
  1211. <hkern u1="&#xcc;" g2="question.caps" k="10" />
  1212. <hkern u1="&#xcd;" g2="asterisk.caps" k="-20" />
  1213. <hkern u1="&#xcd;" g2="question.caps" k="10" />
  1214. <hkern u1="&#xce;" g2="asterisk.caps" k="-20" />
  1215. <hkern u1="&#xce;" g2="question.caps" k="10" />
  1216. <hkern u1="&#xcf;" g2="asterisk.caps" k="-20" />
  1217. <hkern u1="&#xcf;" g2="question.caps" k="10" />
  1218. <hkern u1="&#xd0;" g2="ampersand.caps" k="30" />
  1219. <hkern u1="&#xd0;" g2="quotesingle.caps" k="10" />
  1220. <hkern u1="&#xd0;" g2="quotedbl.caps" k="30" />
  1221. <hkern u1="&#xd0;" g2="asterisk.caps" k="40" />
  1222. <hkern u1="&#xd0;" g2="questiondown.caps" k="10" />
  1223. <hkern u1="&#xd0;" g2="question.caps" k="20" />
  1224. <hkern u1="&#xd0;" u2="&#x22;" k="30" />
  1225. <hkern u1="&#xd1;" g2="asterisk.caps" k="-20" />
  1226. <hkern u1="&#xd1;" g2="question.caps" k="10" />
  1227. <hkern u1="&#xd2;" g2="ampersand.caps" k="30" />
  1228. <hkern u1="&#xd2;" g2="quotesingle.caps" k="10" />
  1229. <hkern u1="&#xd2;" g2="quotedbl.caps" k="30" />
  1230. <hkern u1="&#xd2;" g2="asterisk.caps" k="40" />
  1231. <hkern u1="&#xd2;" g2="questiondown.caps" k="10" />
  1232. <hkern u1="&#xd2;" g2="question.caps" k="20" />
  1233. <hkern u1="&#xd2;" u2="&#x22;" k="30" />
  1234. <hkern u1="&#xd3;" g2="ampersand.caps" k="30" />
  1235. <hkern u1="&#xd3;" g2="quotesingle.caps" k="10" />
  1236. <hkern u1="&#xd3;" g2="quotedbl.caps" k="30" />
  1237. <hkern u1="&#xd3;" g2="asterisk.caps" k="40" />
  1238. <hkern u1="&#xd3;" g2="questiondown.caps" k="10" />
  1239. <hkern u1="&#xd3;" g2="question.caps" k="20" />
  1240. <hkern u1="&#xd3;" u2="&#x22;" k="30" />
  1241. <hkern u1="&#xd4;" g2="ampersand.caps" k="30" />
  1242. <hkern u1="&#xd4;" g2="quotesingle.caps" k="10" />
  1243. <hkern u1="&#xd4;" g2="quotedbl.caps" k="30" />
  1244. <hkern u1="&#xd4;" g2="asterisk.caps" k="40" />
  1245. <hkern u1="&#xd4;" g2="questiondown.caps" k="10" />
  1246. <hkern u1="&#xd4;" g2="question.caps" k="20" />
  1247. <hkern u1="&#xd4;" u2="&#x22;" k="30" />
  1248. <hkern u1="&#xd5;" g2="ampersand.caps" k="30" />
  1249. <hkern u1="&#xd5;" g2="quotesingle.caps" k="10" />
  1250. <hkern u1="&#xd5;" g2="quotedbl.caps" k="30" />
  1251. <hkern u1="&#xd5;" g2="asterisk.caps" k="40" />
  1252. <hkern u1="&#xd5;" g2="questiondown.caps" k="10" />
  1253. <hkern u1="&#xd5;" g2="question.caps" k="20" />
  1254. <hkern u1="&#xd5;" u2="&#x22;" k="30" />
  1255. <hkern u1="&#xd6;" g2="ampersand.caps" k="30" />
  1256. <hkern u1="&#xd6;" g2="quotesingle.caps" k="10" />
  1257. <hkern u1="&#xd6;" g2="quotedbl.caps" k="30" />
  1258. <hkern u1="&#xd6;" g2="asterisk.caps" k="40" />
  1259. <hkern u1="&#xd6;" g2="questiondown.caps" k="10" />
  1260. <hkern u1="&#xd6;" g2="question.caps" k="20" />
  1261. <hkern u1="&#xd6;" u2="&#x22;" k="30" />
  1262. <hkern u1="&#xd8;" g2="ampersand.caps" k="30" />
  1263. <hkern u1="&#xd8;" g2="quotesingle.caps" k="10" />
  1264. <hkern u1="&#xd8;" g2="quotedbl.caps" k="30" />
  1265. <hkern u1="&#xd8;" g2="asterisk.caps" k="40" />
  1266. <hkern u1="&#xd8;" g2="questiondown.caps" k="10" />
  1267. <hkern u1="&#xd8;" g2="question.caps" k="20" />
  1268. <hkern u1="&#xd8;" u2="&#x22;" k="30" />
  1269. <hkern u1="&#xd9;" g2="questiondown.caps" k="10" />
  1270. <hkern u1="&#xda;" g2="questiondown.caps" k="10" />
  1271. <hkern u1="&#xdb;" g2="questiondown.caps" k="10" />
  1272. <hkern u1="&#xdc;" g2="questiondown.caps" k="10" />
  1273. <hkern u1="&#xdd;" g2="ampersand.caps" k="20" />
  1274. <hkern u1="&#xdd;" g2="quotedbl.caps" k="-10" />
  1275. <hkern u1="&#xdd;" g2="slash.caps" k="60" />
  1276. <hkern u1="&#xdd;" g2="periodcentered.caps" k="80" />
  1277. <hkern u1="&#xdd;" g2="questiondown.caps" k="80" />
  1278. <hkern u1="&#xdd;" g2="question.caps" k="10" />
  1279. <hkern u1="&#xde;" u2="x" k="30" />
  1280. <hkern u1="&#xde;" u2="X" k="45" />
  1281. <hkern u1="&#xe0;" u2="&#x27;" k="30" />
  1282. <hkern u1="&#xe1;" u2="&#x27;" k="30" />
  1283. <hkern u1="&#xe2;" u2="&#x27;" k="30" />
  1284. <hkern u1="&#xe3;" u2="&#x27;" k="30" />
  1285. <hkern u1="&#xe4;" u2="&#x27;" k="30" />
  1286. <hkern u1="&#xe5;" u2="&#x27;" k="30" />
  1287. <hkern u1="&#xec;" u2="&#x27;" k="30" />
  1288. <hkern u1="&#xed;" u2="&#x27;" k="30" />
  1289. <hkern u1="&#xee;" u2="&#x27;" k="30" />
  1290. <hkern u1="&#xef;" u2="&#x27;" k="30" />
  1291. <hkern u1="&#xf0;" g2="ampersand.caps" k="30" />
  1292. <hkern u1="&#xf0;" g2="quotesingle.caps" k="10" />
  1293. <hkern u1="&#xf0;" g2="quotedbl.caps" k="30" />
  1294. <hkern u1="&#xf0;" g2="asterisk.caps" k="40" />
  1295. <hkern u1="&#xf0;" g2="questiondown.caps" k="10" />
  1296. <hkern u1="&#xf0;" g2="question.caps" k="20" />
  1297. <hkern u1="&#xf0;" u2="&#x22;" k="30" />
  1298. <hkern u1="&#xf2;" u2="&#x22;" k="30" />
  1299. <hkern u1="&#xf3;" u2="&#x22;" k="30" />
  1300. <hkern u1="&#xf4;" u2="&#x22;" k="30" />
  1301. <hkern u1="&#xf5;" u2="&#x22;" k="30" />
  1302. <hkern u1="&#xf6;" u2="&#x22;" k="30" />
  1303. <hkern u1="&#xf8;" u2="&#x22;" k="30" />
  1304. <hkern u1="&#xfe;" u2="&#x22;" k="30" />
  1305. <hkern u1="&#x100;" g2="ampersand.caps" k="10" />
  1306. <hkern u1="&#x100;" g2="quotesingle.caps" k="80" />
  1307. <hkern u1="&#x100;" g2="quotedbl.caps" k="80" />
  1308. <hkern u1="&#x100;" g2="emdash.caps" k="10" />
  1309. <hkern u1="&#x100;" g2="endash.caps" k="10" />
  1310. <hkern u1="&#x100;" g2="hyphen.caps" k="30" />
  1311. <hkern u1="&#x100;" g2="asterisk.caps" k="90" />
  1312. <hkern u1="&#x100;" g2="periodcentered.caps" k="10" />
  1313. <hkern u1="&#x100;" g2="question.caps" k="40" />
  1314. <hkern u1="&#x100;" u2="&#x2013;" k="10" />
  1315. <hkern u1="&#x100;" u2="&#x27;" k="80" />
  1316. <hkern u1="&#x101;" u2="&#x27;" k="30" />
  1317. <hkern u1="&#x102;" g2="ampersand.caps" k="10" />
  1318. <hkern u1="&#x102;" g2="quotesingle.caps" k="80" />
  1319. <hkern u1="&#x102;" g2="quotedbl.caps" k="80" />
  1320. <hkern u1="&#x102;" g2="emdash.caps" k="10" />
  1321. <hkern u1="&#x102;" g2="endash.caps" k="10" />
  1322. <hkern u1="&#x102;" g2="hyphen.caps" k="30" />
  1323. <hkern u1="&#x102;" g2="asterisk.caps" k="90" />
  1324. <hkern u1="&#x102;" g2="periodcentered.caps" k="10" />
  1325. <hkern u1="&#x102;" g2="question.caps" k="40" />
  1326. <hkern u1="&#x102;" u2="&#x2013;" k="10" />
  1327. <hkern u1="&#x102;" u2="&#x27;" k="80" />
  1328. <hkern u1="&#x103;" u2="&#x27;" k="30" />
  1329. <hkern u1="&#x104;" g2="ampersand.caps" k="10" />
  1330. <hkern u1="&#x104;" g2="quotesingle.caps" k="80" />
  1331. <hkern u1="&#x104;" g2="quotedbl.caps" k="80" />
  1332. <hkern u1="&#x104;" g2="emdash.caps" k="10" />
  1333. <hkern u1="&#x104;" g2="endash.caps" k="10" />
  1334. <hkern u1="&#x104;" g2="hyphen.caps" k="30" />
  1335. <hkern u1="&#x104;" g2="asterisk.caps" k="90" />
  1336. <hkern u1="&#x104;" g2="periodcentered.caps" k="10" />
  1337. <hkern u1="&#x104;" g2="question.caps" k="40" />
  1338. <hkern u1="&#x104;" u2="&#x2013;" k="10" />
  1339. <hkern u1="&#x104;" u2="&#x27;" k="80" />
  1340. <hkern u1="&#x105;" u2="&#x27;" k="30" />
  1341. <hkern u1="&#x106;" g2="ampersand.caps" k="20" />
  1342. <hkern u1="&#x106;" g2="quotesingle.caps" k="-30" />
  1343. <hkern u1="&#x106;" g2="slash.caps" k="-10" />
  1344. <hkern u1="&#x106;" g2="periodcentered.caps" k="20" />
  1345. <hkern u1="&#x106;" g2="question.caps" k="10" />
  1346. <hkern u1="&#x106;" g2="exclamdown.caps" k="-20" />
  1347. <hkern u1="&#x106;" g2="exclam.caps" k="-20" />
  1348. <hkern u1="&#x108;" g2="ampersand.caps" k="20" />
  1349. <hkern u1="&#x108;" g2="quotesingle.caps" k="-30" />
  1350. <hkern u1="&#x108;" g2="slash.caps" k="-10" />
  1351. <hkern u1="&#x108;" g2="periodcentered.caps" k="20" />
  1352. <hkern u1="&#x108;" g2="question.caps" k="10" />
  1353. <hkern u1="&#x108;" g2="exclamdown.caps" k="-20" />
  1354. <hkern u1="&#x108;" g2="exclam.caps" k="-20" />
  1355. <hkern u1="&#x10a;" g2="ampersand.caps" k="20" />
  1356. <hkern u1="&#x10a;" g2="quotesingle.caps" k="-30" />
  1357. <hkern u1="&#x10a;" g2="slash.caps" k="-10" />
  1358. <hkern u1="&#x10a;" g2="periodcentered.caps" k="20" />
  1359. <hkern u1="&#x10a;" g2="question.caps" k="10" />
  1360. <hkern u1="&#x10a;" g2="exclamdown.caps" k="-20" />
  1361. <hkern u1="&#x10a;" g2="exclam.caps" k="-20" />
  1362. <hkern u1="&#x10c;" g2="ampersand.caps" k="20" />
  1363. <hkern u1="&#x10c;" g2="quotesingle.caps" k="-30" />
  1364. <hkern u1="&#x10c;" g2="slash.caps" k="-10" />
  1365. <hkern u1="&#x10c;" g2="periodcentered.caps" k="20" />
  1366. <hkern u1="&#x10c;" g2="question.caps" k="10" />
  1367. <hkern u1="&#x10c;" g2="exclamdown.caps" k="-20" />
  1368. <hkern u1="&#x10c;" g2="exclam.caps" k="-20" />
  1369. <hkern u1="&#x10e;" g2="ampersand.caps" k="30" />
  1370. <hkern u1="&#x10e;" g2="quotesingle.caps" k="10" />
  1371. <hkern u1="&#x10e;" g2="quotedbl.caps" k="30" />
  1372. <hkern u1="&#x10e;" g2="asterisk.caps" k="40" />
  1373. <hkern u1="&#x10e;" g2="questiondown.caps" k="10" />
  1374. <hkern u1="&#x10e;" g2="question.caps" k="20" />
  1375. <hkern u1="&#x10e;" u2="&#x22;" k="30" />
  1376. <hkern u1="&#x110;" g2="ampersand.caps" k="30" />
  1377. <hkern u1="&#x110;" g2="quotesingle.caps" k="10" />
  1378. <hkern u1="&#x110;" g2="quotedbl.caps" k="30" />
  1379. <hkern u1="&#x110;" g2="asterisk.caps" k="40" />
  1380. <hkern u1="&#x110;" g2="questiondown.caps" k="10" />
  1381. <hkern u1="&#x110;" g2="question.caps" k="20" />
  1382. <hkern u1="&#x110;" u2="&#x22;" k="30" />
  1383. <hkern u1="&#x112;" g2="periodcentered.caps" k="50" />
  1384. <hkern u1="&#x114;" g2="periodcentered.caps" k="50" />
  1385. <hkern u1="&#x116;" g2="periodcentered.caps" k="50" />
  1386. <hkern u1="&#x118;" g2="periodcentered.caps" k="50" />
  1387. <hkern u1="&#x11a;" g2="periodcentered.caps" k="50" />
  1388. <hkern u1="&#x11c;" g2="ampersand.caps" k="-20" />
  1389. <hkern u1="&#x11c;" g2="asterisk.caps" k="10" />
  1390. <hkern u1="&#x11e;" g2="ampersand.caps" k="-20" />
  1391. <hkern u1="&#x11e;" g2="asterisk.caps" k="10" />
  1392. <hkern u1="&#x120;" g2="ampersand.caps" k="-20" />
  1393. <hkern u1="&#x120;" g2="asterisk.caps" k="10" />
  1394. <hkern u1="&#x122;" g2="ampersand.caps" k="-20" />
  1395. <hkern u1="&#x122;" g2="asterisk.caps" k="10" />
  1396. <hkern u1="&#x124;" g2="asterisk.caps" k="-20" />
  1397. <hkern u1="&#x124;" g2="question.caps" k="10" />
  1398. <hkern u1="&#x126;" g2="asterisk.caps" k="-20" />
  1399. <hkern u1="&#x126;" g2="question.caps" k="10" />
  1400. <hkern u1="&#x128;" g2="asterisk.caps" k="-20" />
  1401. <hkern u1="&#x128;" g2="question.caps" k="10" />
  1402. <hkern u1="&#x129;" u2="&#x27;" k="30" />
  1403. <hkern u1="&#x12a;" g2="asterisk.caps" k="-20" />
  1404. <hkern u1="&#x12a;" g2="question.caps" k="10" />
  1405. <hkern u1="&#x12b;" u2="&#x27;" k="30" />
  1406. <hkern u1="&#x12c;" g2="asterisk.caps" k="-20" />
  1407. <hkern u1="&#x12c;" g2="question.caps" k="10" />
  1408. <hkern u1="&#x12d;" u2="&#x27;" k="30" />
  1409. <hkern u1="&#x12e;" g2="asterisk.caps" k="-20" />
  1410. <hkern u1="&#x12e;" g2="question.caps" k="10" />
  1411. <hkern u1="&#x12f;" u2="&#x27;" k="30" />
  1412. <hkern u1="&#x130;" g2="asterisk.caps" k="-20" />
  1413. <hkern u1="&#x130;" g2="question.caps" k="10" />
  1414. <hkern u1="&#x131;" u2="&#x27;" k="30" />
  1415. <hkern u1="&#x139;" g2="ampersand.caps" k="20" />
  1416. <hkern u1="&#x139;" g2="quotesingle.caps" k="70" />
  1417. <hkern u1="&#x139;" g2="quotedbl.caps" k="90" />
  1418. <hkern u1="&#x139;" g2="asterisk.caps" k="150" />
  1419. <hkern u1="&#x139;" g2="question.caps" k="40" />
  1420. <hkern u1="&#x13b;" g2="ampersand.caps" k="20" />
  1421. <hkern u1="&#x13b;" g2="quotesingle.caps" k="70" />
  1422. <hkern u1="&#x13b;" g2="quotedbl.caps" k="90" />
  1423. <hkern u1="&#x13b;" g2="asterisk.caps" k="150" />
  1424. <hkern u1="&#x13b;" g2="question.caps" k="40" />
  1425. <hkern u1="&#x13d;" g2="ampersand.caps" k="20" />
  1426. <hkern u1="&#x13d;" g2="quotesingle.caps" k="70" />
  1427. <hkern u1="&#x13d;" g2="quotedbl.caps" k="90" />
  1428. <hkern u1="&#x13d;" g2="asterisk.caps" k="150" />
  1429. <hkern u1="&#x13d;" g2="question.caps" k="40" />
  1430. <hkern u1="&#x13f;" g2="ampersand.caps" k="20" />
  1431. <hkern u1="&#x13f;" g2="quotesingle.caps" k="70" />
  1432. <hkern u1="&#x13f;" g2="quotedbl.caps" k="90" />
  1433. <hkern u1="&#x13f;" g2="asterisk.caps" k="150" />
  1434. <hkern u1="&#x13f;" g2="question.caps" k="40" />
  1435. <hkern u1="&#x141;" g2="ampersand.caps" k="20" />
  1436. <hkern u1="&#x141;" g2="quotesingle.caps" k="70" />
  1437. <hkern u1="&#x141;" g2="quotedbl.caps" k="90" />
  1438. <hkern u1="&#x141;" g2="asterisk.caps" k="150" />
  1439. <hkern u1="&#x141;" g2="question.caps" k="40" />
  1440. <hkern u1="&#x143;" g2="asterisk.caps" k="-20" />
  1441. <hkern u1="&#x143;" g2="question.caps" k="10" />
  1442. <hkern u1="&#x145;" g2="asterisk.caps" k="-20" />
  1443. <hkern u1="&#x145;" g2="question.caps" k="10" />
  1444. <hkern u1="&#x147;" g2="asterisk.caps" k="-20" />
  1445. <hkern u1="&#x147;" g2="question.caps" k="10" />
  1446. <hkern u1="&#x14a;" g2="asterisk.caps" k="-20" />
  1447. <hkern u1="&#x14a;" g2="question.caps" k="10" />
  1448. <hkern u1="&#x14c;" g2="ampersand.caps" k="30" />
  1449. <hkern u1="&#x14c;" g2="quotesingle.caps" k="10" />
  1450. <hkern u1="&#x14c;" g2="quotedbl.caps" k="30" />
  1451. <hkern u1="&#x14c;" g2="asterisk.caps" k="40" />
  1452. <hkern u1="&#x14c;" g2="questiondown.caps" k="10" />
  1453. <hkern u1="&#x14c;" g2="question.caps" k="20" />
  1454. <hkern u1="&#x14c;" u2="&#x22;" k="30" />
  1455. <hkern u1="&#x14d;" u2="&#x22;" k="30" />
  1456. <hkern u1="&#x14e;" g2="ampersand.caps" k="30" />
  1457. <hkern u1="&#x14e;" g2="quotesingle.caps" k="10" />
  1458. <hkern u1="&#x14e;" g2="quotedbl.caps" k="30" />
  1459. <hkern u1="&#x14e;" g2="asterisk.caps" k="40" />
  1460. <hkern u1="&#x14e;" g2="questiondown.caps" k="10" />
  1461. <hkern u1="&#x14e;" g2="question.caps" k="20" />
  1462. <hkern u1="&#x14e;" u2="&#x22;" k="30" />
  1463. <hkern u1="&#x14f;" u2="&#x22;" k="30" />
  1464. <hkern u1="&#x150;" g2="ampersand.caps" k="30" />
  1465. <hkern u1="&#x150;" g2="quotesingle.caps" k="10" />
  1466. <hkern u1="&#x150;" g2="quotedbl.caps" k="30" />
  1467. <hkern u1="&#x150;" g2="asterisk.caps" k="40" />
  1468. <hkern u1="&#x150;" g2="questiondown.caps" k="10" />
  1469. <hkern u1="&#x150;" g2="question.caps" k="20" />
  1470. <hkern u1="&#x150;" u2="&#x22;" k="30" />
  1471. <hkern u1="&#x151;" u2="&#x22;" k="30" />
  1472. <hkern u1="&#x152;" g2="periodcentered.caps" k="50" />
  1473. <hkern u1="&#x15b;" g2="asterisk.caps" k="20" />
  1474. <hkern u1="&#x15d;" g2="asterisk.caps" k="20" />
  1475. <hkern u1="&#x15f;" g2="asterisk.caps" k="20" />
  1476. <hkern u1="&#x161;" g2="asterisk.caps" k="20" />
  1477. <hkern u1="&#x162;" g2="periodcentered.caps" k="50" />
  1478. <hkern u1="&#x162;" g2="questiondown.caps" k="70" />
  1479. <hkern u1="&#x162;" u2="&#x27;" k="-20" />
  1480. <hkern u1="&#x164;" g2="periodcentered.caps" k="50" />
  1481. <hkern u1="&#x164;" g2="questiondown.caps" k="70" />
  1482. <hkern u1="&#x164;" u2="&#x27;" k="-20" />
  1483. <hkern u1="&#x166;" g2="periodcentered.caps" k="50" />
  1484. <hkern u1="&#x166;" g2="questiondown.caps" k="70" />
  1485. <hkern u1="&#x166;" u2="&#x27;" k="-20" />
  1486. <hkern u1="&#x168;" g2="questiondown.caps" k="10" />
  1487. <hkern u1="&#x16a;" g2="questiondown.caps" k="10" />
  1488. <hkern u1="&#x16c;" g2="questiondown.caps" k="10" />
  1489. <hkern u1="&#x16e;" g2="questiondown.caps" k="10" />
  1490. <hkern u1="&#x170;" g2="questiondown.caps" k="10" />
  1491. <hkern u1="&#x172;" g2="questiondown.caps" k="10" />
  1492. <hkern u1="&#x174;" g2="periodcentered.caps" k="40" />
  1493. <hkern u1="&#x174;" g2="questiondown.caps" k="30" />
  1494. <hkern u1="&#x176;" g2="ampersand.caps" k="20" />
  1495. <hkern u1="&#x176;" g2="quotedbl.caps" k="-10" />
  1496. <hkern u1="&#x176;" g2="slash.caps" k="60" />
  1497. <hkern u1="&#x176;" g2="periodcentered.caps" k="80" />
  1498. <hkern u1="&#x176;" g2="questiondown.caps" k="80" />
  1499. <hkern u1="&#x176;" g2="question.caps" k="10" />
  1500. <hkern u1="&#x178;" g2="ampersand.caps" k="20" />
  1501. <hkern u1="&#x178;" g2="quotedbl.caps" k="-10" />
  1502. <hkern u1="&#x178;" g2="slash.caps" k="60" />
  1503. <hkern u1="&#x178;" g2="periodcentered.caps" k="80" />
  1504. <hkern u1="&#x178;" g2="questiondown.caps" k="80" />
  1505. <hkern u1="&#x178;" g2="question.caps" k="10" />
  1506. <hkern u1="&#x179;" g2="periodcentered.caps" k="20" />
  1507. <hkern u1="&#x17a;" g2="asterisk.caps" k="30" />
  1508. <hkern u1="&#x17b;" g2="periodcentered.caps" k="20" />
  1509. <hkern u1="&#x17c;" g2="asterisk.caps" k="30" />
  1510. <hkern u1="&#x17d;" g2="periodcentered.caps" k="20" />
  1511. <hkern u1="&#x17e;" g2="asterisk.caps" k="30" />
  1512. <hkern u1="&#x18f;" g2="ampersand.caps" k="30" />
  1513. <hkern u1="&#x18f;" g2="quotesingle.caps" k="10" />
  1514. <hkern u1="&#x18f;" g2="quotedbl.caps" k="30" />
  1515. <hkern u1="&#x18f;" g2="asterisk.caps" k="40" />
  1516. <hkern u1="&#x18f;" g2="questiondown.caps" k="10" />
  1517. <hkern u1="&#x18f;" g2="question.caps" k="20" />
  1518. <hkern u1="&#x18f;" u2="&#x22;" k="30" />
  1519. <hkern u1="&#x19d;" g2="asterisk.caps" k="-20" />
  1520. <hkern u1="&#x19d;" g2="question.caps" k="10" />
  1521. <hkern u1="&#x1cd;" g2="ampersand.caps" k="10" />
  1522. <hkern u1="&#x1cd;" g2="quotesingle.caps" k="80" />
  1523. <hkern u1="&#x1cd;" g2="quotedbl.caps" k="80" />
  1524. <hkern u1="&#x1cd;" g2="emdash.caps" k="10" />
  1525. <hkern u1="&#x1cd;" g2="endash.caps" k="10" />
  1526. <hkern u1="&#x1cd;" g2="hyphen.caps" k="30" />
  1527. <hkern u1="&#x1cd;" g2="asterisk.caps" k="90" />
  1528. <hkern u1="&#x1cd;" g2="periodcentered.caps" k="10" />
  1529. <hkern u1="&#x1cd;" g2="question.caps" k="40" />
  1530. <hkern u1="&#x1cd;" u2="&#x2013;" k="10" />
  1531. <hkern u1="&#x1cd;" u2="&#x27;" k="80" />
  1532. <hkern u1="&#x1ce;" u2="&#x27;" k="30" />
  1533. <hkern u1="&#x1cf;" g2="asterisk.caps" k="-20" />
  1534. <hkern u1="&#x1cf;" g2="question.caps" k="10" />
  1535. <hkern u1="&#x1d0;" u2="&#x27;" k="30" />
  1536. <hkern u1="&#x1d1;" g2="ampersand.caps" k="30" />
  1537. <hkern u1="&#x1d1;" g2="quotesingle.caps" k="10" />
  1538. <hkern u1="&#x1d1;" g2="quotedbl.caps" k="30" />
  1539. <hkern u1="&#x1d1;" g2="asterisk.caps" k="40" />
  1540. <hkern u1="&#x1d1;" g2="questiondown.caps" k="10" />
  1541. <hkern u1="&#x1d1;" g2="question.caps" k="20" />
  1542. <hkern u1="&#x1d1;" u2="&#x22;" k="30" />
  1543. <hkern u1="&#x1d2;" u2="&#x22;" k="30" />
  1544. <hkern u1="&#x1d3;" g2="questiondown.caps" k="10" />
  1545. <hkern u1="&#x1d5;" g2="questiondown.caps" k="10" />
  1546. <hkern u1="&#x1d7;" g2="questiondown.caps" k="10" />
  1547. <hkern u1="&#x1d9;" g2="questiondown.caps" k="10" />
  1548. <hkern u1="&#x1db;" g2="questiondown.caps" k="10" />
  1549. <hkern u1="&#x1e6;" g2="ampersand.caps" k="-20" />
  1550. <hkern u1="&#x1e6;" g2="asterisk.caps" k="10" />
  1551. <hkern u1="&#x1ea;" g2="ampersand.caps" k="30" />
  1552. <hkern u1="&#x1ea;" g2="quotesingle.caps" k="10" />
  1553. <hkern u1="&#x1ea;" g2="quotedbl.caps" k="30" />
  1554. <hkern u1="&#x1ea;" g2="asterisk.caps" k="40" />
  1555. <hkern u1="&#x1ea;" g2="questiondown.caps" k="10" />
  1556. <hkern u1="&#x1ea;" g2="question.caps" k="20" />
  1557. <hkern u1="&#x1ea;" u2="&#x22;" k="30" />
  1558. <hkern u1="&#x1eb;" u2="&#x22;" k="30" />
  1559. <hkern u1="&#x1f4;" g2="ampersand.caps" k="-20" />
  1560. <hkern u1="&#x1f4;" g2="asterisk.caps" k="10" />
  1561. <hkern u1="&#x1fa;" g2="ampersand.caps" k="10" />
  1562. <hkern u1="&#x1fa;" g2="quotesingle.caps" k="80" />
  1563. <hkern u1="&#x1fa;" g2="quotedbl.caps" k="80" />
  1564. <hkern u1="&#x1fa;" g2="emdash.caps" k="10" />
  1565. <hkern u1="&#x1fa;" g2="endash.caps" k="10" />
  1566. <hkern u1="&#x1fa;" g2="hyphen.caps" k="30" />
  1567. <hkern u1="&#x1fa;" g2="asterisk.caps" k="90" />
  1568. <hkern u1="&#x1fa;" g2="periodcentered.caps" k="10" />
  1569. <hkern u1="&#x1fa;" g2="question.caps" k="40" />
  1570. <hkern u1="&#x1fa;" u2="&#x2013;" k="10" />
  1571. <hkern u1="&#x1fa;" u2="&#x27;" k="80" />
  1572. <hkern u1="&#x1fb;" u2="&#x27;" k="30" />
  1573. <hkern u1="&#x1fc;" g2="periodcentered.caps" k="50" />
  1574. <hkern u1="&#x1fe;" g2="ampersand.caps" k="30" />
  1575. <hkern u1="&#x1fe;" g2="quotesingle.caps" k="10" />
  1576. <hkern u1="&#x1fe;" g2="quotedbl.caps" k="30" />
  1577. <hkern u1="&#x1fe;" g2="asterisk.caps" k="40" />
  1578. <hkern u1="&#x1fe;" g2="questiondown.caps" k="10" />
  1579. <hkern u1="&#x1fe;" g2="question.caps" k="20" />
  1580. <hkern u1="&#x1fe;" u2="&#x22;" k="30" />
  1581. <hkern u1="&#x1ff;" u2="&#x22;" k="30" />
  1582. <hkern u1="&#x219;" g2="asterisk.caps" k="20" />
  1583. <hkern u1="&#x21a;" g2="periodcentered.caps" k="50" />
  1584. <hkern u1="&#x21a;" g2="questiondown.caps" k="70" />
  1585. <hkern u1="&#x21a;" u2="&#x27;" k="-20" />
  1586. <hkern u1="&#x232;" g2="ampersand.caps" k="20" />
  1587. <hkern u1="&#x232;" g2="quotedbl.caps" k="-10" />
  1588. <hkern u1="&#x232;" g2="slash.caps" k="60" />
  1589. <hkern u1="&#x232;" g2="periodcentered.caps" k="80" />
  1590. <hkern u1="&#x232;" g2="questiondown.caps" k="80" />
  1591. <hkern u1="&#x232;" g2="question.caps" k="10" />
  1592. <hkern u1="&#x259;" u2="&#x22;" k="30" />
  1593. <hkern u1="&#x1e0c;" g2="ampersand.caps" k="30" />
  1594. <hkern u1="&#x1e0c;" g2="quotesingle.caps" k="10" />
  1595. <hkern u1="&#x1e0c;" g2="quotedbl.caps" k="30" />
  1596. <hkern u1="&#x1e0c;" g2="asterisk.caps" k="40" />
  1597. <hkern u1="&#x1e0c;" g2="questiondown.caps" k="10" />
  1598. <hkern u1="&#x1e0c;" g2="question.caps" k="20" />
  1599. <hkern u1="&#x1e0c;" u2="&#x22;" k="30" />
  1600. <hkern u1="&#x1e24;" g2="asterisk.caps" k="-20" />
  1601. <hkern u1="&#x1e24;" g2="question.caps" k="10" />
  1602. <hkern u1="&#x1e44;" g2="asterisk.caps" k="-20" />
  1603. <hkern u1="&#x1e44;" g2="question.caps" k="10" />
  1604. <hkern u1="&#x1e63;" g2="asterisk.caps" k="20" />
  1605. <hkern u1="&#x1e6c;" g2="periodcentered.caps" k="50" />
  1606. <hkern u1="&#x1e6c;" g2="questiondown.caps" k="70" />
  1607. <hkern u1="&#x1e6c;" u2="&#x27;" k="-20" />
  1608. <hkern u1="&#x1e80;" g2="periodcentered.caps" k="40" />
  1609. <hkern u1="&#x1e80;" g2="questiondown.caps" k="30" />
  1610. <hkern u1="&#x1e82;" g2="periodcentered.caps" k="40" />
  1611. <hkern u1="&#x1e82;" g2="questiondown.caps" k="30" />
  1612. <hkern u1="&#x1e84;" g2="periodcentered.caps" k="40" />
  1613. <hkern u1="&#x1e84;" g2="questiondown.caps" k="30" />
  1614. <hkern u1="&#x1e92;" g2="periodcentered.caps" k="20" />
  1615. <hkern u1="&#x1e93;" g2="asterisk.caps" k="30" />
  1616. <hkern u1="&#x1ea0;" g2="ampersand.caps" k="10" />
  1617. <hkern u1="&#x1ea0;" g2="quotesingle.caps" k="80" />
  1618. <hkern u1="&#x1ea0;" g2="quotedbl.caps" k="80" />
  1619. <hkern u1="&#x1ea0;" g2="emdash.caps" k="10" />
  1620. <hkern u1="&#x1ea0;" g2="endash.caps" k="10" />
  1621. <hkern u1="&#x1ea0;" g2="hyphen.caps" k="30" />
  1622. <hkern u1="&#x1ea0;" g2="asterisk.caps" k="90" />
  1623. <hkern u1="&#x1ea0;" g2="periodcentered.caps" k="10" />
  1624. <hkern u1="&#x1ea0;" g2="question.caps" k="40" />
  1625. <hkern u1="&#x1ea0;" u2="&#x2013;" k="10" />
  1626. <hkern u1="&#x1ea0;" u2="&#x27;" k="80" />
  1627. <hkern u1="&#x1ea1;" u2="&#x27;" k="30" />
  1628. <hkern u1="&#x1eb8;" g2="periodcentered.caps" k="50" />
  1629. <hkern u1="&#x1ebc;" g2="periodcentered.caps" k="50" />
  1630. <hkern u1="&#x1eca;" g2="asterisk.caps" k="-20" />
  1631. <hkern u1="&#x1eca;" g2="question.caps" k="10" />
  1632. <hkern u1="&#x1ecb;" u2="&#x27;" k="30" />
  1633. <hkern u1="&#x1ecc;" g2="ampersand.caps" k="30" />
  1634. <hkern u1="&#x1ecc;" g2="quotesingle.caps" k="10" />
  1635. <hkern u1="&#x1ecc;" g2="quotedbl.caps" k="30" />
  1636. <hkern u1="&#x1ecc;" g2="asterisk.caps" k="40" />
  1637. <hkern u1="&#x1ecc;" g2="questiondown.caps" k="10" />
  1638. <hkern u1="&#x1ecc;" g2="question.caps" k="20" />
  1639. <hkern u1="&#x1ecc;" u2="&#x22;" k="30" />
  1640. <hkern u1="&#x1ecd;" u2="&#x22;" k="30" />
  1641. <hkern u1="&#x1ee4;" g2="questiondown.caps" k="10" />
  1642. <hkern u1="&#x1ef2;" g2="ampersand.caps" k="20" />
  1643. <hkern u1="&#x1ef2;" g2="quotedbl.caps" k="-10" />
  1644. <hkern u1="&#x1ef2;" g2="slash.caps" k="60" />
  1645. <hkern u1="&#x1ef2;" g2="periodcentered.caps" k="80" />
  1646. <hkern u1="&#x1ef2;" g2="questiondown.caps" k="80" />
  1647. <hkern u1="&#x1ef2;" g2="question.caps" k="10" />
  1648. <hkern u1="&#x1ef8;" g2="ampersand.caps" k="20" />
  1649. <hkern u1="&#x1ef8;" g2="quotedbl.caps" k="-10" />
  1650. <hkern u1="&#x1ef8;" g2="slash.caps" k="60" />
  1651. <hkern u1="&#x1ef8;" g2="periodcentered.caps" k="80" />
  1652. <hkern u1="&#x1ef8;" g2="questiondown.caps" k="80" />
  1653. <hkern u1="&#x1ef8;" g2="question.caps" k="10" />
  1654. <hkern u1="&#x2044;" g2="seven.denominator" k="180" />
  1655. <hkern u1="&#x2044;" g2="four.denominator" k="260" />
  1656. <hkern u1="&#x2044;" g2="one.denominator" k="140" />
  1657. <hkern u1="&#x2044;" g2="zero.denominator" k="230" />
  1658. <hkern u1="&#xfb01;" u2="&#x27;" k="30" />
  1659. <hkern g1="a.sc" g2="periodcentered.sc" k="80" />
  1660. <hkern g1="a.sc" g2="emdash.sc" k="20" />
  1661. <hkern g1="a.sc" g2="endash.sc" k="30" />
  1662. <hkern g1="aacute.sc" g2="periodcentered.sc" k="80" />
  1663. <hkern g1="aacute.sc" g2="emdash.sc" k="20" />
  1664. <hkern g1="aacute.sc" g2="endash.sc" k="30" />
  1665. <hkern g1="abreve.sc" g2="periodcentered.sc" k="80" />
  1666. <hkern g1="abreve.sc" g2="emdash.sc" k="20" />
  1667. <hkern g1="abreve.sc" g2="endash.sc" k="30" />
  1668. <hkern g1="acaron.sc" g2="periodcentered.sc" k="80" />
  1669. <hkern g1="acaron.sc" g2="emdash.sc" k="20" />
  1670. <hkern g1="acaron.sc" g2="endash.sc" k="30" />
  1671. <hkern g1="acircumflex.sc" g2="periodcentered.sc" k="80" />
  1672. <hkern g1="acircumflex.sc" g2="emdash.sc" k="20" />
  1673. <hkern g1="acircumflex.sc" g2="endash.sc" k="30" />
  1674. <hkern g1="adieresis.sc" g2="periodcentered.sc" k="80" />
  1675. <hkern g1="adieresis.sc" g2="emdash.sc" k="20" />
  1676. <hkern g1="adieresis.sc" g2="endash.sc" k="30" />
  1677. <hkern g1="adotbelow.sc" g2="periodcentered.sc" k="80" />
  1678. <hkern g1="adotbelow.sc" g2="emdash.sc" k="20" />
  1679. <hkern g1="adotbelow.sc" g2="endash.sc" k="30" />
  1680. <hkern g1="agrave.sc" g2="periodcentered.sc" k="80" />
  1681. <hkern g1="agrave.sc" g2="emdash.sc" k="20" />
  1682. <hkern g1="agrave.sc" g2="endash.sc" k="30" />
  1683. <hkern g1="amacron.sc" g2="periodcentered.sc" k="80" />
  1684. <hkern g1="amacron.sc" g2="emdash.sc" k="20" />
  1685. <hkern g1="amacron.sc" g2="endash.sc" k="30" />
  1686. <hkern g1="aogonek.sc" g2="periodcentered.sc" k="80" />
  1687. <hkern g1="aogonek.sc" g2="emdash.sc" k="20" />
  1688. <hkern g1="aogonek.sc" g2="endash.sc" k="30" />
  1689. <hkern g1="aring.sc" g2="periodcentered.sc" k="80" />
  1690. <hkern g1="aring.sc" g2="emdash.sc" k="20" />
  1691. <hkern g1="aring.sc" g2="endash.sc" k="30" />
  1692. <hkern g1="aringacute.sc" g2="periodcentered.sc" k="80" />
  1693. <hkern g1="aringacute.sc" g2="emdash.sc" k="20" />
  1694. <hkern g1="aringacute.sc" g2="endash.sc" k="30" />
  1695. <hkern g1="atilde.sc" g2="periodcentered.sc" k="80" />
  1696. <hkern g1="atilde.sc" g2="emdash.sc" k="20" />
  1697. <hkern g1="atilde.sc" g2="endash.sc" k="30" />
  1698. <hkern g1="b.sc" g2="x.sc" k="20" />
  1699. <hkern g1="b.sc" g2="m.sc" k="10" />
  1700. <hkern g1="b.sc" u2="&#x2122;" k="100" />
  1701. <hkern g1="b.sc" u2="&#x2021;" k="10" />
  1702. <hkern g1="f.sc" g2="x.sc" k="15" />
  1703. <hkern g1="f.sc" g2="m.sc" k="15" />
  1704. <hkern g1="f.sc" u2="&#x2122;" k="10" />
  1705. <hkern g1="k.sc" g2="periodcentered.sc" k="70" />
  1706. <hkern g1="kcommaaccent.sc" g2="periodcentered.sc" k="70" />
  1707. <hkern g1="kgreenlandic.sc" g2="periodcentered.sc" k="70" />
  1708. <hkern g1="l.sc" g2="emdash.sc" k="50" />
  1709. <hkern g1="l.sc" g2="endash.sc" k="40" />
  1710. <hkern g1="l.sc" g2="hyphen.sc" k="70" />
  1711. <hkern g1="l.sc" u2="&#x2021;" k="70" />
  1712. <hkern g1="lacute.sc" g2="emdash.sc" k="50" />
  1713. <hkern g1="lacute.sc" g2="endash.sc" k="40" />
  1714. <hkern g1="lacute.sc" g2="hyphen.sc" k="70" />
  1715. <hkern g1="lacute.sc" u2="&#x2021;" k="70" />
  1716. <hkern g1="lcaron.sc" g2="emdash.sc" k="50" />
  1717. <hkern g1="lcaron.sc" g2="endash.sc" k="40" />
  1718. <hkern g1="lcaron.sc" g2="hyphen.sc" k="70" />
  1719. <hkern g1="lcaron.sc" u2="&#x2021;" k="70" />
  1720. <hkern g1="lcommaaccent.sc" g2="emdash.sc" k="50" />
  1721. <hkern g1="lcommaaccent.sc" g2="endash.sc" k="40" />
  1722. <hkern g1="lcommaaccent.sc" g2="hyphen.sc" k="70" />
  1723. <hkern g1="lcommaaccent.sc" u2="&#x2021;" k="70" />
  1724. <hkern g1="ldot.sc" g2="emdash.sc" k="50" />
  1725. <hkern g1="ldot.sc" g2="endash.sc" k="40" />
  1726. <hkern g1="ldot.sc" g2="hyphen.sc" k="70" />
  1727. <hkern g1="ldot.sc" u2="&#x2021;" k="70" />
  1728. <hkern g1="lslash.sc" g2="emdash.sc" k="50" />
  1729. <hkern g1="lslash.sc" g2="endash.sc" k="40" />
  1730. <hkern g1="lslash.sc" g2="hyphen.sc" k="70" />
  1731. <hkern g1="lslash.sc" u2="&#x2021;" k="70" />
  1732. <hkern g1="m.sc" g2="x.sc" k="10" />
  1733. <hkern g1="p.sc" g2="x.sc" k="15" />
  1734. <hkern g1="p.sc" g2="m.sc" k="15" />
  1735. <hkern g1="x.sc" g2="x.sc" k="5" />
  1736. <hkern g1="x.sc" g2="m.sc" k="10" />
  1737. <hkern g1="zero.numerator" u2="&#x2044;" k="160" />
  1738. <hkern g1="seven.numerator" u2="&#x2044;" k="200" />
  1739. <hkern g1="exclam.caps" u2="&#x1ea0;" k="-10" />
  1740. <hkern g1="exclam.caps" u2="&#x1fc;" k="-10" />
  1741. <hkern g1="exclam.caps" u2="&#x1fa;" k="-10" />
  1742. <hkern g1="exclam.caps" u2="&#x1cd;" k="-10" />
  1743. <hkern g1="exclam.caps" u2="&#x104;" k="-10" />
  1744. <hkern g1="exclam.caps" u2="&#x102;" k="-10" />
  1745. <hkern g1="exclam.caps" u2="&#x100;" k="-10" />
  1746. <hkern g1="exclam.caps" u2="&#xc6;" k="-10" />
  1747. <hkern g1="exclam.caps" u2="&#xc5;" k="-10" />
  1748. <hkern g1="exclam.caps" u2="&#xc4;" k="-10" />
  1749. <hkern g1="exclam.caps" u2="&#xc3;" k="-10" />
  1750. <hkern g1="exclam.caps" u2="&#xc2;" k="-10" />
  1751. <hkern g1="exclam.caps" u2="&#xc1;" k="-10" />
  1752. <hkern g1="exclam.caps" u2="&#xc0;" k="-10" />
  1753. <hkern g1="exclam.caps" u2="A" k="-10" />
  1754. <hkern g1="exclamdown.caps" u2="&#x1ef8;" k="10" />
  1755. <hkern g1="exclamdown.caps" u2="&#x1ef2;" k="10" />
  1756. <hkern g1="exclamdown.caps" u2="&#x1e84;" k="10" />
  1757. <hkern g1="exclamdown.caps" u2="&#x1e82;" k="10" />
  1758. <hkern g1="exclamdown.caps" u2="&#x1e80;" k="10" />
  1759. <hkern g1="exclamdown.caps" u2="&#x232;" k="10" />
  1760. <hkern g1="exclamdown.caps" u2="&#x178;" k="10" />
  1761. <hkern g1="exclamdown.caps" u2="&#x176;" k="10" />
  1762. <hkern g1="exclamdown.caps" u2="&#x174;" k="10" />
  1763. <hkern g1="exclamdown.caps" u2="&#xdd;" k="10" />
  1764. <hkern g1="exclamdown.caps" u2="Y" k="10" />
  1765. <hkern g1="exclamdown.caps" u2="W" k="10" />
  1766. <hkern g1="exclamdown.caps" u2="V" k="10" />
  1767. <hkern g1="question.caps" u2="&#x1ee4;" k="20" />
  1768. <hkern g1="question.caps" u2="&#x1ecc;" k="10" />
  1769. <hkern g1="question.caps" u2="&#x1e92;" k="-20" />
  1770. <hkern g1="question.caps" u2="&#x1e62;" k="20" />
  1771. <hkern g1="question.caps" u2="&#x218;" k="20" />
  1772. <hkern g1="question.caps" u2="&#x1fe;" k="10" />
  1773. <hkern g1="question.caps" u2="&#x1f4;" k="10" />
  1774. <hkern g1="question.caps" u2="&#x1ea;" k="10" />
  1775. <hkern g1="question.caps" u2="&#x1e6;" k="10" />
  1776. <hkern g1="question.caps" u2="&#x1db;" k="20" />
  1777. <hkern g1="question.caps" u2="&#x1d9;" k="20" />
  1778. <hkern g1="question.caps" u2="&#x1d7;" k="20" />
  1779. <hkern g1="question.caps" u2="&#x1d5;" k="20" />
  1780. <hkern g1="question.caps" u2="&#x1d3;" k="20" />
  1781. <hkern g1="question.caps" u2="&#x1d1;" k="10" />
  1782. <hkern g1="question.caps" u2="&#x17d;" k="-20" />
  1783. <hkern g1="question.caps" u2="&#x17b;" k="-20" />
  1784. <hkern g1="question.caps" u2="&#x179;" k="-20" />
  1785. <hkern g1="question.caps" u2="&#x172;" k="20" />
  1786. <hkern g1="question.caps" u2="&#x170;" k="20" />
  1787. <hkern g1="question.caps" u2="&#x16e;" k="20" />
  1788. <hkern g1="question.caps" u2="&#x16c;" k="20" />
  1789. <hkern g1="question.caps" u2="&#x16a;" k="20" />
  1790. <hkern g1="question.caps" u2="&#x168;" k="20" />
  1791. <hkern g1="question.caps" u2="&#x160;" k="20" />
  1792. <hkern g1="question.caps" u2="&#x15e;" k="20" />
  1793. <hkern g1="question.caps" u2="&#x15c;" k="20" />
  1794. <hkern g1="question.caps" u2="&#x15a;" k="20" />
  1795. <hkern g1="question.caps" u2="&#x152;" k="10" />
  1796. <hkern g1="question.caps" u2="&#x150;" k="10" />
  1797. <hkern g1="question.caps" u2="&#x14e;" k="10" />
  1798. <hkern g1="question.caps" u2="&#x14c;" k="10" />
  1799. <hkern g1="question.caps" u2="&#x122;" k="10" />
  1800. <hkern g1="question.caps" u2="&#x120;" k="10" />
  1801. <hkern g1="question.caps" u2="&#x11e;" k="10" />
  1802. <hkern g1="question.caps" u2="&#x11c;" k="10" />
  1803. <hkern g1="question.caps" u2="&#x10c;" k="10" />
  1804. <hkern g1="question.caps" u2="&#x10a;" k="10" />
  1805. <hkern g1="question.caps" u2="&#x108;" k="10" />
  1806. <hkern g1="question.caps" u2="&#x106;" k="10" />
  1807. <hkern g1="question.caps" u2="&#xdc;" k="20" />
  1808. <hkern g1="question.caps" u2="&#xdb;" k="20" />
  1809. <hkern g1="question.caps" u2="&#xda;" k="20" />
  1810. <hkern g1="question.caps" u2="&#xd9;" k="20" />
  1811. <hkern g1="question.caps" u2="&#xd8;" k="10" />
  1812. <hkern g1="question.caps" u2="&#xd6;" k="10" />
  1813. <hkern g1="question.caps" u2="&#xd5;" k="10" />
  1814. <hkern g1="question.caps" u2="&#xd4;" k="10" />
  1815. <hkern g1="question.caps" u2="&#xd3;" k="10" />
  1816. <hkern g1="question.caps" u2="&#xd2;" k="10" />
  1817. <hkern g1="question.caps" u2="&#xc7;" k="10" />
  1818. <hkern g1="question.caps" u2="Z" k="-20" />
  1819. <hkern g1="question.caps" u2="U" k="20" />
  1820. <hkern g1="question.caps" u2="S" k="20" />
  1821. <hkern g1="question.caps" u2="Q" k="10" />
  1822. <hkern g1="question.caps" u2="O" k="10" />
  1823. <hkern g1="question.caps" u2="G" k="10" />
  1824. <hkern g1="question.caps" u2="C" k="10" />
  1825. <hkern g1="questiondown.caps" u2="&#x1ef8;" k="110" />
  1826. <hkern g1="questiondown.caps" u2="&#x1ef2;" k="110" />
  1827. <hkern g1="questiondown.caps" u2="&#x1ee4;" k="60" />
  1828. <hkern g1="questiondown.caps" u2="&#x1ecc;" k="10" />
  1829. <hkern g1="questiondown.caps" u2="&#x1ea0;" k="30" />
  1830. <hkern g1="questiondown.caps" u2="&#x1e84;" k="40" />
  1831. <hkern g1="questiondown.caps" u2="&#x1e82;" k="40" />
  1832. <hkern g1="questiondown.caps" u2="&#x1e80;" k="40" />
  1833. <hkern g1="questiondown.caps" u2="&#x1e6c;" k="70" />
  1834. <hkern g1="questiondown.caps" u2="&#x232;" k="110" />
  1835. <hkern g1="questiondown.caps" u2="&#x21a;" k="70" />
  1836. <hkern g1="questiondown.caps" u2="&#x1fe;" k="10" />
  1837. <hkern g1="questiondown.caps" u2="&#x1fc;" k="30" />
  1838. <hkern g1="questiondown.caps" u2="&#x1fa;" k="30" />
  1839. <hkern g1="questiondown.caps" u2="&#x1f4;" k="10" />
  1840. <hkern g1="questiondown.caps" u2="&#x1ea;" k="10" />
  1841. <hkern g1="questiondown.caps" u2="&#x1e6;" k="10" />
  1842. <hkern g1="questiondown.caps" u2="&#x1db;" k="60" />
  1843. <hkern g1="questiondown.caps" u2="&#x1d9;" k="60" />
  1844. <hkern g1="questiondown.caps" u2="&#x1d7;" k="60" />
  1845. <hkern g1="questiondown.caps" u2="&#x1d5;" k="60" />
  1846. <hkern g1="questiondown.caps" u2="&#x1d3;" k="60" />
  1847. <hkern g1="questiondown.caps" u2="&#x1d1;" k="10" />
  1848. <hkern g1="questiondown.caps" u2="&#x1cd;" k="30" />
  1849. <hkern g1="questiondown.caps" u2="&#x178;" k="110" />
  1850. <hkern g1="questiondown.caps" u2="&#x176;" k="110" />
  1851. <hkern g1="questiondown.caps" u2="&#x174;" k="40" />
  1852. <hkern g1="questiondown.caps" u2="&#x172;" k="60" />
  1853. <hkern g1="questiondown.caps" u2="&#x170;" k="60" />
  1854. <hkern g1="questiondown.caps" u2="&#x16e;" k="60" />
  1855. <hkern g1="questiondown.caps" u2="&#x16c;" k="60" />
  1856. <hkern g1="questiondown.caps" u2="&#x16a;" k="60" />
  1857. <hkern g1="questiondown.caps" u2="&#x168;" k="60" />
  1858. <hkern g1="questiondown.caps" u2="&#x166;" k="70" />
  1859. <hkern g1="questiondown.caps" u2="&#x164;" k="70" />
  1860. <hkern g1="questiondown.caps" u2="&#x162;" k="70" />
  1861. <hkern g1="questiondown.caps" u2="&#x152;" k="10" />
  1862. <hkern g1="questiondown.caps" u2="&#x150;" k="10" />
  1863. <hkern g1="questiondown.caps" u2="&#x14e;" k="10" />
  1864. <hkern g1="questiondown.caps" u2="&#x14c;" k="10" />
  1865. <hkern g1="questiondown.caps" u2="&#x122;" k="10" />
  1866. <hkern g1="questiondown.caps" u2="&#x120;" k="10" />
  1867. <hkern g1="questiondown.caps" u2="&#x11e;" k="10" />
  1868. <hkern g1="questiondown.caps" u2="&#x11c;" k="10" />
  1869. <hkern g1="questiondown.caps" u2="&#x10c;" k="10" />
  1870. <hkern g1="questiondown.caps" u2="&#x10a;" k="10" />
  1871. <hkern g1="questiondown.caps" u2="&#x108;" k="10" />
  1872. <hkern g1="questiondown.caps" u2="&#x106;" k="10" />
  1873. <hkern g1="questiondown.caps" u2="&#x104;" k="30" />
  1874. <hkern g1="questiondown.caps" u2="&#x102;" k="30" />
  1875. <hkern g1="questiondown.caps" u2="&#x100;" k="30" />
  1876. <hkern g1="questiondown.caps" u2="&#xdd;" k="110" />
  1877. <hkern g1="questiondown.caps" u2="&#xdc;" k="60" />
  1878. <hkern g1="questiondown.caps" u2="&#xdb;" k="60" />
  1879. <hkern g1="questiondown.caps" u2="&#xda;" k="60" />
  1880. <hkern g1="questiondown.caps" u2="&#xd9;" k="60" />
  1881. <hkern g1="questiondown.caps" u2="&#xd8;" k="10" />
  1882. <hkern g1="questiondown.caps" u2="&#xd6;" k="10" />
  1883. <hkern g1="questiondown.caps" u2="&#xd5;" k="10" />
  1884. <hkern g1="questiondown.caps" u2="&#xd4;" k="10" />
  1885. <hkern g1="questiondown.caps" u2="&#xd3;" k="10" />
  1886. <hkern g1="questiondown.caps" u2="&#xd2;" k="10" />
  1887. <hkern g1="questiondown.caps" u2="&#xc7;" k="10" />
  1888. <hkern g1="questiondown.caps" u2="&#xc6;" k="30" />
  1889. <hkern g1="questiondown.caps" u2="&#xc5;" k="30" />
  1890. <hkern g1="questiondown.caps" u2="&#xc4;" k="30" />
  1891. <hkern g1="questiondown.caps" u2="&#xc3;" k="30" />
  1892. <hkern g1="questiondown.caps" u2="&#xc2;" k="30" />
  1893. <hkern g1="questiondown.caps" u2="&#xc1;" k="30" />
  1894. <hkern g1="questiondown.caps" u2="&#xc0;" k="30" />
  1895. <hkern g1="questiondown.caps" u2="Y" k="110" />
  1896. <hkern g1="questiondown.caps" u2="W" k="40" />
  1897. <hkern g1="questiondown.caps" u2="V" k="40" />
  1898. <hkern g1="questiondown.caps" u2="U" k="60" />
  1899. <hkern g1="questiondown.caps" u2="T" k="70" />
  1900. <hkern g1="questiondown.caps" u2="Q" k="10" />
  1901. <hkern g1="questiondown.caps" u2="O" k="10" />
  1902. <hkern g1="questiondown.caps" u2="G" k="10" />
  1903. <hkern g1="questiondown.caps" u2="C" k="10" />
  1904. <hkern g1="questiondown.caps" u2="A" k="30" />
  1905. <hkern g1="periodcentered.caps" u2="&#x1ef8;" k="110" />
  1906. <hkern g1="periodcentered.caps" u2="&#x1ef2;" k="110" />
  1907. <hkern g1="periodcentered.caps" u2="&#x1ea0;" k="20" />
  1908. <hkern g1="periodcentered.caps" u2="&#x1e84;" k="80" />
  1909. <hkern g1="periodcentered.caps" u2="&#x1e82;" k="80" />
  1910. <hkern g1="periodcentered.caps" u2="&#x1e80;" k="80" />
  1911. <hkern g1="periodcentered.caps" u2="&#x1e6c;" k="70" />
  1912. <hkern g1="periodcentered.caps" u2="&#x232;" k="110" />
  1913. <hkern g1="periodcentered.caps" u2="&#x21a;" k="70" />
  1914. <hkern g1="periodcentered.caps" u2="&#x1fc;" k="20" />
  1915. <hkern g1="periodcentered.caps" u2="&#x1fa;" k="20" />
  1916. <hkern g1="periodcentered.caps" u2="&#x1cd;" k="20" />
  1917. <hkern g1="periodcentered.caps" u2="&#x178;" k="110" />
  1918. <hkern g1="periodcentered.caps" u2="&#x176;" k="110" />
  1919. <hkern g1="periodcentered.caps" u2="&#x174;" k="80" />
  1920. <hkern g1="periodcentered.caps" u2="&#x166;" k="70" />
  1921. <hkern g1="periodcentered.caps" u2="&#x164;" k="70" />
  1922. <hkern g1="periodcentered.caps" u2="&#x162;" k="70" />
  1923. <hkern g1="periodcentered.caps" u2="&#x104;" k="20" />
  1924. <hkern g1="periodcentered.caps" u2="&#x102;" k="20" />
  1925. <hkern g1="periodcentered.caps" u2="&#x100;" k="20" />
  1926. <hkern g1="periodcentered.caps" u2="&#xdd;" k="110" />
  1927. <hkern g1="periodcentered.caps" u2="&#xc6;" k="20" />
  1928. <hkern g1="periodcentered.caps" u2="&#xc5;" k="20" />
  1929. <hkern g1="periodcentered.caps" u2="&#xc4;" k="20" />
  1930. <hkern g1="periodcentered.caps" u2="&#xc3;" k="20" />
  1931. <hkern g1="periodcentered.caps" u2="&#xc2;" k="20" />
  1932. <hkern g1="periodcentered.caps" u2="&#xc1;" k="20" />
  1933. <hkern g1="periodcentered.caps" u2="&#xc0;" k="20" />
  1934. <hkern g1="periodcentered.caps" u2="Y" k="110" />
  1935. <hkern g1="periodcentered.caps" u2="W" k="80" />
  1936. <hkern g1="periodcentered.caps" u2="V" k="80" />
  1937. <hkern g1="periodcentered.caps" u2="T" k="70" />
  1938. <hkern g1="periodcentered.caps" u2="A" k="20" />
  1939. <hkern g1="asterisk.caps" u2="&#x1ecc;" k="-10" />
  1940. <hkern g1="asterisk.caps" u2="&#x1fe;" k="-10" />
  1941. <hkern g1="asterisk.caps" u2="&#x1f4;" k="-10" />
  1942. <hkern g1="asterisk.caps" u2="&#x1ea;" k="-10" />
  1943. <hkern g1="asterisk.caps" u2="&#x1e6;" k="-10" />
  1944. <hkern g1="asterisk.caps" u2="&#x1d1;" k="-10" />
  1945. <hkern g1="asterisk.caps" u2="&#x152;" k="-10" />
  1946. <hkern g1="asterisk.caps" u2="&#x150;" k="-10" />
  1947. <hkern g1="asterisk.caps" u2="&#x14e;" k="-10" />
  1948. <hkern g1="asterisk.caps" u2="&#x14c;" k="-10" />
  1949. <hkern g1="asterisk.caps" u2="&#x122;" k="-10" />
  1950. <hkern g1="asterisk.caps" u2="&#x120;" k="-10" />
  1951. <hkern g1="asterisk.caps" u2="&#x11e;" k="-10" />
  1952. <hkern g1="asterisk.caps" u2="&#x11c;" k="-10" />
  1953. <hkern g1="asterisk.caps" u2="&#x10c;" k="-10" />
  1954. <hkern g1="asterisk.caps" u2="&#x10a;" k="-10" />
  1955. <hkern g1="asterisk.caps" u2="&#x108;" k="-10" />
  1956. <hkern g1="asterisk.caps" u2="&#x106;" k="-10" />
  1957. <hkern g1="asterisk.caps" u2="&#xd8;" k="-10" />
  1958. <hkern g1="asterisk.caps" u2="&#xd6;" k="-10" />
  1959. <hkern g1="asterisk.caps" u2="&#xd5;" k="-10" />
  1960. <hkern g1="asterisk.caps" u2="&#xd4;" k="-10" />
  1961. <hkern g1="asterisk.caps" u2="&#xd3;" k="-10" />
  1962. <hkern g1="asterisk.caps" u2="&#xd2;" k="-10" />
  1963. <hkern g1="asterisk.caps" u2="&#xc7;" k="-10" />
  1964. <hkern g1="asterisk.caps" u2="Q" k="-10" />
  1965. <hkern g1="asterisk.caps" u2="O" k="-10" />
  1966. <hkern g1="asterisk.caps" u2="G" k="-10" />
  1967. <hkern g1="asterisk.caps" u2="C" k="-10" />
  1968. <hkern g1="backslash.caps" u2="&#x222b;" k="60" />
  1969. <hkern g1="quotedbl.caps" u2="&#x1ef8;" k="-30" />
  1970. <hkern g1="quotedbl.caps" u2="&#x1ef2;" k="-30" />
  1971. <hkern g1="quotedbl.caps" u2="&#x1ecc;" k="-10" />
  1972. <hkern g1="quotedbl.caps" u2="&#x232;" k="-30" />
  1973. <hkern g1="quotedbl.caps" u2="&#x1fe;" k="-10" />
  1974. <hkern g1="quotedbl.caps" u2="&#x1f4;" k="-10" />
  1975. <hkern g1="quotedbl.caps" u2="&#x1ea;" k="-10" />
  1976. <hkern g1="quotedbl.caps" u2="&#x1e6;" k="-10" />
  1977. <hkern g1="quotedbl.caps" u2="&#x1d1;" k="-10" />
  1978. <hkern g1="quotedbl.caps" u2="&#x178;" k="-30" />
  1979. <hkern g1="quotedbl.caps" u2="&#x176;" k="-30" />
  1980. <hkern g1="quotedbl.caps" u2="&#x152;" k="-10" />
  1981. <hkern g1="quotedbl.caps" u2="&#x150;" k="-10" />
  1982. <hkern g1="quotedbl.caps" u2="&#x14e;" k="-10" />
  1983. <hkern g1="quotedbl.caps" u2="&#x14c;" k="-10" />
  1984. <hkern g1="quotedbl.caps" u2="&#x122;" k="-10" />
  1985. <hkern g1="quotedbl.caps" u2="&#x120;" k="-10" />
  1986. <hkern g1="quotedbl.caps" u2="&#x11e;" k="-10" />
  1987. <hkern g1="quotedbl.caps" u2="&#x11c;" k="-10" />
  1988. <hkern g1="quotedbl.caps" u2="&#x10c;" k="-10" />
  1989. <hkern g1="quotedbl.caps" u2="&#x10a;" k="-10" />
  1990. <hkern g1="quotedbl.caps" u2="&#x108;" k="-10" />
  1991. <hkern g1="quotedbl.caps" u2="&#x106;" k="-10" />
  1992. <hkern g1="quotedbl.caps" u2="&#xdd;" k="-30" />
  1993. <hkern g1="quotedbl.caps" u2="&#xd8;" k="-10" />
  1994. <hkern g1="quotedbl.caps" u2="&#xd6;" k="-10" />
  1995. <hkern g1="quotedbl.caps" u2="&#xd5;" k="-10" />
  1996. <hkern g1="quotedbl.caps" u2="&#xd4;" k="-10" />
  1997. <hkern g1="quotedbl.caps" u2="&#xd3;" k="-10" />
  1998. <hkern g1="quotedbl.caps" u2="&#xd2;" k="-10" />
  1999. <hkern g1="quotedbl.caps" u2="&#xc7;" k="-10" />
  2000. <hkern g1="quotedbl.caps" u2="Y" k="-30" />
  2001. <hkern g1="quotedbl.caps" u2="Q" k="-10" />
  2002. <hkern g1="quotedbl.caps" u2="O" k="-10" />
  2003. <hkern g1="quotedbl.caps" u2="G" k="-10" />
  2004. <hkern g1="quotedbl.caps" u2="C" k="-10" />
  2005. <hkern g1="quotesingle.caps" u2="&#x1ecc;" k="-10" />
  2006. <hkern g1="quotesingle.caps" u2="&#x1ea0;" k="50" />
  2007. <hkern g1="quotesingle.caps" u2="&#x1fe;" k="-10" />
  2008. <hkern g1="quotesingle.caps" u2="&#x1fc;" k="50" />
  2009. <hkern g1="quotesingle.caps" u2="&#x1fa;" k="50" />
  2010. <hkern g1="quotesingle.caps" u2="&#x1f4;" k="-10" />
  2011. <hkern g1="quotesingle.caps" u2="&#x1ea;" k="-10" />
  2012. <hkern g1="quotesingle.caps" u2="&#x1e6;" k="-10" />
  2013. <hkern g1="quotesingle.caps" u2="&#x1d1;" k="-10" />
  2014. <hkern g1="quotesingle.caps" u2="&#x1cd;" k="50" />
  2015. <hkern g1="quotesingle.caps" u2="&#x152;" k="-10" />
  2016. <hkern g1="quotesingle.caps" u2="&#x150;" k="-10" />
  2017. <hkern g1="quotesingle.caps" u2="&#x14e;" k="-10" />
  2018. <hkern g1="quotesingle.caps" u2="&#x14c;" k="-10" />
  2019. <hkern g1="quotesingle.caps" u2="&#x122;" k="-10" />
  2020. <hkern g1="quotesingle.caps" u2="&#x120;" k="-10" />
  2021. <hkern g1="quotesingle.caps" u2="&#x11e;" k="-10" />
  2022. <hkern g1="quotesingle.caps" u2="&#x11c;" k="-10" />
  2023. <hkern g1="quotesingle.caps" u2="&#x10c;" k="-10" />
  2024. <hkern g1="quotesingle.caps" u2="&#x10a;" k="-10" />
  2025. <hkern g1="quotesingle.caps" u2="&#x108;" k="-10" />
  2026. <hkern g1="quotesingle.caps" u2="&#x106;" k="-10" />
  2027. <hkern g1="quotesingle.caps" u2="&#x104;" k="50" />
  2028. <hkern g1="quotesingle.caps" u2="&#x102;" k="50" />
  2029. <hkern g1="quotesingle.caps" u2="&#x100;" k="50" />
  2030. <hkern g1="quotesingle.caps" u2="&#xd8;" k="-10" />
  2031. <hkern g1="quotesingle.caps" u2="&#xd6;" k="-10" />
  2032. <hkern g1="quotesingle.caps" u2="&#xd5;" k="-10" />
  2033. <hkern g1="quotesingle.caps" u2="&#xd4;" k="-10" />
  2034. <hkern g1="quotesingle.caps" u2="&#xd3;" k="-10" />
  2035. <hkern g1="quotesingle.caps" u2="&#xd2;" k="-10" />
  2036. <hkern g1="quotesingle.caps" u2="&#xc7;" k="-10" />
  2037. <hkern g1="quotesingle.caps" u2="&#xc6;" k="50" />
  2038. <hkern g1="quotesingle.caps" u2="&#xc5;" k="50" />
  2039. <hkern g1="quotesingle.caps" u2="&#xc4;" k="50" />
  2040. <hkern g1="quotesingle.caps" u2="&#xc3;" k="50" />
  2041. <hkern g1="quotesingle.caps" u2="&#xc2;" k="50" />
  2042. <hkern g1="quotesingle.caps" u2="&#xc1;" k="50" />
  2043. <hkern g1="quotesingle.caps" u2="&#xc0;" k="50" />
  2044. <hkern g1="quotesingle.caps" u2="Q" k="-10" />
  2045. <hkern g1="quotesingle.caps" u2="O" k="-10" />
  2046. <hkern g1="quotesingle.caps" u2="G" k="-10" />
  2047. <hkern g1="quotesingle.caps" u2="C" k="-10" />
  2048. <hkern g1="quotesingle.caps" u2="A" k="50" />
  2049. <hkern g1="slash.sc" g2="x.sc" k="-40" />
  2050. <hkern g1="slash.sc" u2="&#x40;" k="-60" />
  2051. <hkern g1="ampersand.caps" u2="&#x1ea0;" k="-20" />
  2052. <hkern g1="ampersand.caps" u2="&#x1fc;" k="-20" />
  2053. <hkern g1="ampersand.caps" u2="&#x1fa;" k="-20" />
  2054. <hkern g1="ampersand.caps" u2="&#x1cd;" k="-20" />
  2055. <hkern g1="ampersand.caps" u2="&#x104;" k="-20" />
  2056. <hkern g1="ampersand.caps" u2="&#x102;" k="-20" />
  2057. <hkern g1="ampersand.caps" u2="&#x100;" k="-20" />
  2058. <hkern g1="ampersand.caps" u2="&#xc6;" k="-20" />
  2059. <hkern g1="ampersand.caps" u2="&#xc5;" k="-20" />
  2060. <hkern g1="ampersand.caps" u2="&#xc4;" k="-20" />
  2061. <hkern g1="ampersand.caps" u2="&#xc3;" k="-20" />
  2062. <hkern g1="ampersand.caps" u2="&#xc2;" k="-20" />
  2063. <hkern g1="ampersand.caps" u2="&#xc1;" k="-20" />
  2064. <hkern g1="ampersand.caps" u2="&#xc0;" k="-20" />
  2065. <hkern g1="ampersand.caps" u2="A" k="-20" />
  2066. <hkern g1="B" g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE,Amacron,Abreve,Aogonek,Acaron,Aringacute,AEacute,Adotbelow" k="10" />
  2067. <hkern g1="B" g2="B,D,E,F,H,I,K,L,N,P,R,Egrave,Eacute,Ecircumflex,Edieresis,Igrave,Iacute,Icircumflex,Idieresis,Eth,Ntilde,Thorn,Dcaron,Dcroat,Emacron,Ebreve,Edotaccent,Eogonek,Ecaron,Hcircumflex,Hbar,Itilde,Imacron,Ibreve,Iogonek,Idotaccent,IJ,Kcommaaccent,Lacute,Lcommaaccent,Lcaron,Ldot,Lslash,Nacute,Ncommaaccent,Ncaron,Eng,Racute,Rcommaaccent,Rcaron,Icaron,Ddotbelow,Hdotbelow,Ndotaccent,Rdotbelow,Edotbelow,Etilde,Idotbelow,IJacute" k="15" />
  2068. <hkern g1="B" g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,Cacute,Ccircumflex,Cdotaccent,Ccaron,Gcircumflex,Gbreve,Gdotaccent,Gcommaaccent,Omacron,Obreve,Ohungarumlaut,OE,Ocaron,Gcaron,Oogonek,Gacute,Oslashacute,Odotbelow" k="10" />
  2069. <hkern g1="B" g2="T,Tcedilla,Tcaron,Tbar,Tcommaaccent,Tdotbelow" k="20" />
  2070. <hkern g1="B" g2="U,Ugrave,Uacute,Ucircumflex,Udieresis,Utilde,Umacron,Ubreve,Uring,Uhungarumlaut,Uogonek,Ucaron,Udieresismacron,Udieresisacute,Udieresiscaron,Udieresisgrave,Udotbelow" k="10" />
  2071. <hkern g1="B" g2="V,W,Wcircumflex,Wgrave,Wacute,Wdieresis" k="20" />
  2072. <hkern g1="B" g2="Y,Yacute,Ycircumflex,Ydieresis,Ymacron,Ygrave,Ytilde" k="20" />
  2073. <hkern g1="B" g2="ampersand,ampersand.caps,ampersand.sc" k="30" />
  2074. <hkern g1="B" g2="asterisk,asterisk.caps,asterisk.sc" k="50" />
  2075. <hkern g1="B" g2="braceright,braceright.caps,braceright.sc" k="10" />
  2076. <hkern g1="B" g2="bracketright,bracketright.caps,bracketright.sc" k="50" />
  2077. <hkern g1="B" g2="colon,semicolon" k="10" />
  2078. <hkern g1="B" g2="guillemetleft,guilsinglleft,guillemetleft.caps,guilsinglleft.caps,guillemetleft.sc,guilsinglleft.sc" k="30" />
  2079. <hkern g1="B" g2="question,question.caps,question.sc" k="30" />
  2080. <hkern g1="B" g2="quotedbl,quotesingle,quotedbl.caps,quotesingle.caps,quotedbl.sc,quotesingle.sc" k="60" />
  2081. <hkern g1="B" g2="quoteleft,quotedblleft,quotedblleft.caps,quoteleft.caps" k="110" />
  2082. <hkern g1="B" g2="napostrophe,quoteright,quotedblright,quotedblright.caps,quoteright.caps" k="40" />
  2083. <hkern g1="Delta" g2="asterisk,asterisk.caps,asterisk.sc" k="60" />
  2084. <hkern g1="Delta" g2="periodcentered,bullet,periodcentered.caps,bullet.caps,periodcentered.sc,bullet.sc" k="30" />
  2085. <hkern g1="F" g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE,Amacron,Abreve,Aogonek,Acaron,Aringacute,AEacute,Adotbelow" k="15" />
  2086. <hkern g1="F" g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,Cacute,Ccircumflex,Cdotaccent,Ccaron,Gcircumflex,Gbreve,Gdotaccent,Gcommaaccent,Omacron,Obreve,Ohungarumlaut,OE,Ocaron,Gcaron,Oogonek,Gacute,Oslashacute,Odotbelow" k="10" />
  2087. <hkern g1="F" g2="U,Ugrave,Uacute,Ucircumflex,Udieresis,Utilde,Umacron,Ubreve,Uring,Uhungarumlaut,Uogonek,Ucaron,Udieresismacron,Udieresisacute,Udieresiscaron,Udieresisgrave,Udotbelow" k="10" />
  2088. <hkern g1="F" g2="Y,Yacute,Ycircumflex,Ydieresis,Ymacron,Ygrave,Ytilde" k="10" />
  2089. <hkern g1="F" g2="ampersand,ampersand.caps,ampersand.sc" k="30" />
  2090. <hkern g1="F" g2="asterisk,asterisk.caps,asterisk.sc" k="30" />
  2091. <hkern g1="F" g2="bracketright,bracketright.caps,bracketright.sc" k="20" />
  2092. <hkern g1="F" g2="question,question.caps,question.sc" k="-15" />
  2093. <hkern g1="F" g2="quotedbl,quotesingle,quotedbl.caps,quotesingle.caps,quotedbl.sc,quotesingle.sc" k="10" />
  2094. <hkern g1="F" g2="quoteleft,quotedblleft,quotedblleft.caps,quoteleft.caps" k="-10" />
  2095. <hkern g1="F" g2="napostrophe,quoteright,quotedblright,quotedblright.caps,quoteright.caps" k="-40" />
  2096. <hkern g1="F" g2="S,Sacute,Scircumflex,Scedilla,Scaron,Scommaaccent,Sdotbelow" k="10" />
  2097. <hkern g1="F" g2="a,d,q,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,amacron,abreve,aogonek,dcaron,dcroat,acaron,aringacute,aeacute,ddotbelow,adotbelow" k="60" />
  2098. <hkern g1="F" g2="a.sc,aacute.sc,abreve.sc,acaron.sc,acircumflex.sc,adieresis.sc,adotbelow.sc,agrave.sc,amacron.sc,aogonek.sc,aring.sc,aringacute.sc,atilde.sc,ae.sc,aeacute.sc" k="20" />
  2099. <hkern g1="F" g2="exclam,exclamdown,exclam.caps,exclamdown.caps,exclam.sc,exclamdown.sc" k="10" />
  2100. <hkern g1="M" g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,Cacute,Ccircumflex,Cdotaccent,Ccaron,Gcircumflex,Gbreve,Gdotaccent,Gcommaaccent,Omacron,Obreve,Ohungarumlaut,OE,Ocaron,Gcaron,Oogonek,Gacute,Oslashacute,Odotbelow" k="5" />
  2101. <hkern g1="M" g2="T,Tcedilla,Tcaron,Tbar,Tcommaaccent,Tdotbelow" k="20" />
  2102. <hkern g1="M" g2="U,Ugrave,Uacute,Ucircumflex,Udieresis,Utilde,Umacron,Ubreve,Uring,Uhungarumlaut,Uogonek,Ucaron,Udieresismacron,Udieresisacute,Udieresiscaron,Udieresisgrave,Udotbelow" k="10" />
  2103. <hkern g1="M" g2="V,W,Wcircumflex,Wgrave,Wacute,Wdieresis" k="5" />
  2104. <hkern g1="M" g2="Y,Yacute,Ycircumflex,Ydieresis,Ymacron,Ygrave,Ytilde" k="15" />
  2105. <hkern g1="M" g2="asterisk,asterisk.caps,asterisk.sc" k="40" />
  2106. <hkern g1="M" g2="bracketright,bracketright.caps,bracketright.sc" k="50" />
  2107. <hkern g1="M" g2="question,question.caps,question.sc" k="20" />
  2108. <hkern g1="M" g2="quotedbl,quotesingle,quotedbl.caps,quotesingle.caps,quotedbl.sc,quotesingle.sc" k="30" />
  2109. <hkern g1="M" g2="quoteleft,quotedblleft,quotedblleft.caps,quoteleft.caps" k="70" />
  2110. <hkern g1="M" g2="napostrophe,quoteright,quotedblright,quotedblright.caps,quoteright.caps" k="50" />
  2111. <hkern g1="M" g2="S,Sacute,Scircumflex,Scedilla,Scaron,Scommaaccent,Sdotbelow" k="10" />
  2112. <hkern g1="M" g2="exclam,exclamdown,exclam.caps,exclamdown.caps,exclam.sc,exclamdown.sc" k="10" />
  2113. <hkern g1="M" g2="c,e,o,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oslash,cacute,ccircumflex,cdotaccent,ccaron,emacron,ebreve,edotaccent,eogonek,ecaron,omacron,obreve,ohungarumlaut,oe,ocaron,oogonek,oslashacute,edotbelow,etilde,odotbelow,c_h,c_t" k="5" />
  2114. <hkern g1="M" g2="s,sacute,scircumflex,scedilla,scaron,scommaaccent,sdotbelow,s_h" k="10" />
  2115. <hkern g1="P" g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE,Amacron,Abreve,Aogonek,Acaron,Aringacute,AEacute,Adotbelow" k="25" />
  2116. <hkern g1="P" g2="B,D,E,F,H,I,K,L,N,P,R,Egrave,Eacute,Ecircumflex,Edieresis,Igrave,Iacute,Icircumflex,Idieresis,Eth,Ntilde,Thorn,Dcaron,Dcroat,Emacron,Ebreve,Edotaccent,Eogonek,Ecaron,Hcircumflex,Hbar,Itilde,Imacron,Ibreve,Iogonek,Idotaccent,IJ,Kcommaaccent,Lacute,Lcommaaccent,Lcaron,Ldot,Lslash,Nacute,Ncommaaccent,Ncaron,Eng,Racute,Rcommaaccent,Rcaron,Icaron,Ddotbelow,Hdotbelow,Ndotaccent,Rdotbelow,Edotbelow,Etilde,Idotbelow,IJacute" k="10" />
  2117. <hkern g1="P" g2="T,Tcedilla,Tcaron,Tbar,Tcommaaccent,Tdotbelow" k="15" />
  2118. <hkern g1="P" g2="U,Ugrave,Uacute,Ucircumflex,Udieresis,Utilde,Umacron,Ubreve,Uring,Uhungarumlaut,Uogonek,Ucaron,Udieresismacron,Udieresisacute,Udieresiscaron,Udieresisgrave,Udotbelow" k="10" />
  2119. <hkern g1="P" g2="Y,Yacute,Ycircumflex,Ydieresis,Ymacron,Ygrave,Ytilde" k="10" />
  2120. <hkern g1="P" g2="asterisk,asterisk.caps,asterisk.sc" k="40" />
  2121. <hkern g1="P" g2="bracketright,bracketright.caps,bracketright.sc" k="20" />
  2122. <hkern g1="P" g2="quoteleft,quotedblleft,quotedblleft.caps,quoteleft.caps" k="20" />
  2123. <hkern g1="P" g2="napostrophe,quoteright,quotedblright,quotedblright.caps,quoteright.caps" k="30" />
  2124. <hkern g1="P" g2="S,Sacute,Scircumflex,Scedilla,Scaron,Scommaaccent,Sdotbelow" k="5" />
  2125. <hkern g1="P" g2="a,d,q,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,amacron,abreve,aogonek,dcaron,dcroat,acaron,aringacute,aeacute,ddotbelow,adotbelow" k="30" />
  2126. <hkern g1="P" g2="exclam,exclamdown,exclam.caps,exclamdown.caps,exclam.sc,exclamdown.sc" k="30" />
  2127. <hkern g1="P" g2="c,e,o,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oslash,cacute,ccircumflex,cdotaccent,ccaron,emacron,ebreve,edotaccent,eogonek,ecaron,omacron,obreve,ohungarumlaut,oe,ocaron,oogonek,oslashacute,edotbelow,etilde,odotbelow,c_h,c_t" k="30" />
  2128. <hkern g1="P" g2="s,sacute,scircumflex,scedilla,scaron,scommaaccent,sdotbelow,s_h" k="10" />
  2129. <hkern g1="P" g2="Z,Zacute,Zdotaccent,Zcaron,Zdotbelow" k="10" />
  2130. <hkern g1="P" g2="c.sc,cacute.sc,ccaron.sc,ccedilla.sc,ccircumflex.sc,cdotaccent.sc,schwa.sc,g.sc,gacute.sc,gbreve.sc,gcaron.sc,gcircumflex.sc,gcommaaccent.sc,gdotaccent.sc,o.sc,oacute.sc,obreve.sc,ocaron.sc,ocircumflex.sc,odieresis.sc,odotbelow.sc,ograve.sc,ohungarumlaut.sc,omacron.sc,oogonek.sc,oslash.sc,oslashacute.sc,otilde.sc,oe.sc,q.sc" k="20" />
  2131. <hkern g1="P" g2="g,gcircumflex,gbreve,gdotaccent,gcommaaccent,gcaron,gacute" k="15" />
  2132. <hkern g1="P" g2="hyphen,endash,emdash,hyphen.caps,endash.caps,emdash.caps,hyphen.sc,endash.sc,emdash.sc" k="-10" />
  2133. <hkern g1="P" g2="m,n,p,r,ntilde,dotlessi,kgreenlandic,nacute,ncommaaccent,ncaron,eng,racute,rcommaaccent,rcaron,ndotaccent,rdotbelow" k="10" />
  2134. <hkern g1="P" g2="comma,period,quotesinglbase,quotedblbase,ellipsis,quotesinglbase.caps,quotedblbase.caps,quotesinglbase.sc,quotedblbase.sc" k="60" />
  2135. <hkern g1="P" g2="t,tcedilla,tcaron,tbar,tcommaaccent,tdotbelow" k="20" />
  2136. <hkern g1="P" g2="u,ugrave,uacute,ucircumflex,udieresis,utilde,umacron,ubreve,uring,uhungarumlaut,uogonek,ucaron,udieresismacron,udieresisacute,udieresiscaron,udieresisgrave,udotbelow" k="15" />
  2137. <hkern g1="P" g2="v,w,wcircumflex,wgrave,wacute,wdieresis" k="5" />
  2138. <hkern g1="P" g2="y,yacute,ydieresis,ycircumflex,ymacron,ygrave,ytilde" k="5" />
  2139. <hkern g1="Thorn" g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE,Amacron,Abreve,Aogonek,Acaron,Aringacute,AEacute,Adotbelow" k="10" />
  2140. <hkern g1="Thorn" g2="B,D,E,F,H,I,K,L,N,P,R,Egrave,Eacute,Ecircumflex,Edieresis,Igrave,Iacute,Icircumflex,Idieresis,Eth,Ntilde,Thorn,Dcaron,Dcroat,Emacron,Ebreve,Edotaccent,Eogonek,Ecaron,Hcircumflex,Hbar,Itilde,Imacron,Ibreve,Iogonek,Idotaccent,IJ,Kcommaaccent,Lacute,Lcommaaccent,Lcaron,Ldot,Lslash,Nacute,Ncommaaccent,Ncaron,Eng,Racute,Rcommaaccent,Rcaron,Icaron,Ddotbelow,Hdotbelow,Ndotaccent,Rdotbelow,Edotbelow,Etilde,Idotbelow,IJacute" k="5" />
  2141. <hkern g1="Thorn" g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,Cacute,Ccircumflex,Cdotaccent,Ccaron,Gcircumflex,Gbreve,Gdotaccent,Gcommaaccent,Omacron,Obreve,Ohungarumlaut,OE,Ocaron,Gcaron,Oogonek,Gacute,Oslashacute,Odotbelow" k="10" />
  2142. <hkern g1="Thorn" g2="T,Tcedilla,Tcaron,Tbar,Tcommaaccent,Tdotbelow" k="30" />
  2143. <hkern g1="Thorn" g2="U,Ugrave,Uacute,Ucircumflex,Udieresis,Utilde,Umacron,Ubreve,Uring,Uhungarumlaut,Uogonek,Ucaron,Udieresismacron,Udieresisacute,Udieresiscaron,Udieresisgrave,Udotbelow" k="10" />
  2144. <hkern g1="Thorn" g2="V,W,Wcircumflex,Wgrave,Wacute,Wdieresis" k="20" />
  2145. <hkern g1="Thorn" g2="Y,Yacute,Ycircumflex,Ydieresis,Ymacron,Ygrave,Ytilde" k="40" />
  2146. <hkern g1="Thorn" g2="asterisk,asterisk.caps,asterisk.sc" k="60" />
  2147. <hkern g1="Thorn" g2="question,question.caps,question.sc" k="30" />
  2148. <hkern g1="Thorn" g2="quotedbl,quotesingle,quotedbl.caps,quotesingle.caps,quotedbl.sc,quotesingle.sc" k="20" />
  2149. <hkern g1="Thorn" g2="quoteleft,quotedblleft,quotedblleft.caps,quoteleft.caps" k="100" />
  2150. <hkern g1="Thorn" g2="napostrophe,quoteright,quotedblright,quotedblright.caps,quoteright.caps" k="30" />
  2151. <hkern g1="Thorn" g2="periodcentered,bullet,periodcentered.caps,bullet.caps,periodcentered.sc,bullet.sc" k="-10" />
  2152. <hkern g1="Thorn" g2="S,Sacute,Scircumflex,Scedilla,Scaron,Scommaaccent,Sdotbelow" k="10" />
  2153. <hkern g1="Thorn" g2="a,d,q,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,amacron,abreve,aogonek,dcaron,dcroat,acaron,aringacute,aeacute,ddotbelow,adotbelow" k="10" />
  2154. <hkern g1="Thorn" g2="exclam,exclamdown,exclam.caps,exclamdown.caps,exclam.sc,exclamdown.sc" k="30" />
  2155. <hkern g1="Thorn" g2="c,e,o,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oslash,cacute,ccircumflex,cdotaccent,ccaron,emacron,ebreve,edotaccent,eogonek,ecaron,omacron,obreve,ohungarumlaut,oe,ocaron,oogonek,oslashacute,edotbelow,etilde,odotbelow,c_h,c_t" k="10" />
  2156. <hkern g1="Thorn" g2="s,sacute,scircumflex,scedilla,scaron,scommaaccent,sdotbelow,s_h" k="30" />
  2157. <hkern g1="Thorn" g2="Z,Zacute,Zdotaccent,Zcaron,Zdotbelow" k="40" />
  2158. <hkern g1="Thorn" g2="g,gcircumflex,gbreve,gdotaccent,gcommaaccent,gcaron,gacute" k="30" />
  2159. <hkern g1="Thorn" g2="hyphen,endash,emdash,hyphen.caps,endash.caps,emdash.caps,hyphen.sc,endash.sc,emdash.sc" k="-20" />
  2160. <hkern g1="Thorn" g2="m,n,p,r,ntilde,dotlessi,kgreenlandic,nacute,ncommaaccent,ncaron,eng,racute,rcommaaccent,rcaron,ndotaccent,rdotbelow" k="20" />
  2161. <hkern g1="Thorn" g2="comma,period,quotesinglbase,quotedblbase,ellipsis,quotesinglbase.caps,quotedblbase.caps,quotesinglbase.sc,quotedblbase.sc" k="20" />
  2162. <hkern g1="Thorn" g2="t,tcedilla,tcaron,tbar,tcommaaccent,tdotbelow" k="30" />
  2163. <hkern g1="Thorn" g2="u,ugrave,uacute,ucircumflex,udieresis,utilde,umacron,ubreve,uring,uhungarumlaut,uogonek,ucaron,udieresismacron,udieresisacute,udieresiscaron,udieresisgrave,udotbelow" k="20" />
  2164. <hkern g1="Thorn" g2="v,w,wcircumflex,wgrave,wacute,wdieresis" k="20" />
  2165. <hkern g1="Thorn" g2="y,yacute,ydieresis,ycircumflex,ymacron,ygrave,ytilde" k="20" />
  2166. <hkern g1="Thorn" g2="J,Jcircumflex,Nhookleft,Jacute" k="10" />
  2167. <hkern g1="Thorn" g2="b,h,k,l,thorn,hcircumflex,hbar,kcommaaccent,lacute,lcommaaccent,lcaron,ldot,lslash,hdotbelow" k="10" />
  2168. <hkern g1="Thorn" g2="f,germandbls,Germandbls,fi,fl" k="20" />
  2169. <hkern g1="Thorn" g2="i,igrave,iacute,icircumflex,idieresis,itilde,imacron,ibreve,iogonek,ij,icaron,idotbelow,ijacute" k="10" />
  2170. <hkern g1="Thorn" g2="z,zacute,zdotaccent,zcaron,zdotbelow" k="30" />
  2171. <hkern g1="X" g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE,Amacron,Abreve,Aogonek,Acaron,Aringacute,AEacute,Adotbelow" k="5" />
  2172. <hkern g1="X" g2="B,D,E,F,H,I,K,L,N,P,R,Egrave,Eacute,Ecircumflex,Edieresis,Igrave,Iacute,Icircumflex,Idieresis,Eth,Ntilde,Thorn,Dcaron,Dcroat,Emacron,Ebreve,Edotaccent,Eogonek,Ecaron,Hcircumflex,Hbar,Itilde,Imacron,Ibreve,Iogonek,Idotaccent,IJ,Kcommaaccent,Lacute,Lcommaaccent,Lcaron,Ldot,Lslash,Nacute,Ncommaaccent,Ncaron,Eng,Racute,Rcommaaccent,Rcaron,Icaron,Ddotbelow,Hdotbelow,Ndotaccent,Rdotbelow,Edotbelow,Etilde,Idotbelow,IJacute" k="5" />
  2173. <hkern g1="X" g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,Cacute,Ccircumflex,Cdotaccent,Ccaron,Gcircumflex,Gbreve,Gdotaccent,Gcommaaccent,Omacron,Obreve,Ohungarumlaut,OE,Ocaron,Gcaron,Oogonek,Gacute,Oslashacute,Odotbelow" k="10" />
  2174. <hkern g1="X" g2="T,Tcedilla,Tcaron,Tbar,Tcommaaccent,Tdotbelow" k="10" />
  2175. <hkern g1="X" g2="U,Ugrave,Uacute,Ucircumflex,Udieresis,Utilde,Umacron,Ubreve,Uring,Uhungarumlaut,Uogonek,Ucaron,Udieresismacron,Udieresisacute,Udieresiscaron,Udieresisgrave,Udotbelow" k="10" />
  2176. <hkern g1="X" g2="Y,Yacute,Ycircumflex,Ydieresis,Ymacron,Ygrave,Ytilde" k="15" />
  2177. <hkern g1="X" g2="asterisk,asterisk.caps,asterisk.sc" k="20" />
  2178. <hkern g1="X" g2="bracketright,bracketright.caps,bracketright.sc" k="30" />
  2179. <hkern g1="X" g2="guillemetleft,guilsinglleft,guillemetleft.caps,guilsinglleft.caps,guillemetleft.sc,guilsinglleft.sc" k="40" />
  2180. <hkern g1="X" g2="question,question.caps,question.sc" k="-10" />
  2181. <hkern g1="X" g2="quoteleft,quotedblleft,quotedblleft.caps,quoteleft.caps" k="50" />
  2182. <hkern g1="X" g2="napostrophe,quoteright,quotedblright,quotedblright.caps,quoteright.caps" k="40" />
  2183. <hkern g1="X" g2="periodcentered,bullet,periodcentered.caps,bullet.caps,periodcentered.sc,bullet.sc" k="30" />
  2184. <hkern g1="X" g2="S,Sacute,Scircumflex,Scedilla,Scaron,Scommaaccent,Sdotbelow" k="10" />
  2185. <hkern g1="X" g2="a,d,q,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,amacron,abreve,aogonek,dcaron,dcroat,acaron,aringacute,aeacute,ddotbelow,adotbelow" k="20" />
  2186. <hkern g1="X" g2="c,e,o,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oslash,cacute,ccircumflex,cdotaccent,ccaron,emacron,ebreve,edotaccent,eogonek,ecaron,omacron,obreve,ohungarumlaut,oe,ocaron,oogonek,oslashacute,edotbelow,etilde,odotbelow,c_h,c_t" k="20" />
  2187. <hkern g1="X" g2="s,sacute,scircumflex,scedilla,scaron,scommaaccent,sdotbelow,s_h" k="25" />
  2188. <hkern g1="X" g2="g,gcircumflex,gbreve,gdotaccent,gcommaaccent,gcaron,gacute" k="25" />
  2189. <hkern g1="X" g2="m,n,p,r,ntilde,dotlessi,kgreenlandic,nacute,ncommaaccent,ncaron,eng,racute,rcommaaccent,rcaron,ndotaccent,rdotbelow" k="10" />
  2190. <hkern g1="X" g2="comma,period,quotesinglbase,quotedblbase,ellipsis,quotesinglbase.caps,quotedblbase.caps,quotesinglbase.sc,quotedblbase.sc" k="10" />
  2191. <hkern g1="X" g2="t,tcedilla,tcaron,tbar,tcommaaccent,tdotbelow" k="15" />
  2192. <hkern g1="X" g2="u,ugrave,uacute,ucircumflex,udieresis,utilde,umacron,ubreve,uring,uhungarumlaut,uogonek,ucaron,udieresismacron,udieresisacute,udieresiscaron,udieresisgrave,udotbelow" k="15" />
  2193. <hkern g1="X" g2="v,w,wcircumflex,wgrave,wacute,wdieresis" k="20" />
  2194. <hkern g1="X" g2="y,yacute,ydieresis,ycircumflex,ymacron,ygrave,ytilde" k="20" />
  2195. <hkern g1="X" g2="i,igrave,iacute,icircumflex,idieresis,itilde,imacron,ibreve,iogonek,ij,icaron,idotbelow,ijacute" k="10" />
  2196. <hkern g1="X" g2="z,zacute,zdotaccent,zcaron,zdotbelow" k="10" />
  2197. <hkern g1="X" g2="y.sc,yacute.sc,ycircumflex.sc,ydieresis.sc,ygrave.sc,ymacron.sc,ytilde.sc" k="25" />
  2198. <hkern g1="at" g2="hyphen,endash,emdash,hyphen.caps,endash.caps,emdash.caps,hyphen.sc,endash.sc,emdash.sc" k="-30" />
  2199. <hkern g1="b.sc" g2="ampersand,ampersand.caps,ampersand.sc" k="20" />
  2200. <hkern g1="b.sc" g2="asterisk,asterisk.caps,asterisk.sc" k="50" />
  2201. <hkern g1="b.sc" g2="colon,semicolon" k="10" />
  2202. <hkern g1="b.sc" g2="periodcentered,bullet,periodcentered.caps,bullet.caps,periodcentered.sc,bullet.sc" k="10" />
  2203. <hkern g1="b.sc" g2="a.sc,aacute.sc,abreve.sc,acaron.sc,acircumflex.sc,adieresis.sc,adotbelow.sc,agrave.sc,amacron.sc,aogonek.sc,aring.sc,aringacute.sc,atilde.sc,ae.sc,aeacute.sc" k="10" />
  2204. <hkern g1="b.sc" g2="c.sc,cacute.sc,ccaron.sc,ccedilla.sc,ccircumflex.sc,cdotaccent.sc,schwa.sc,g.sc,gacute.sc,gbreve.sc,gcaron.sc,gcircumflex.sc,gcommaaccent.sc,gdotaccent.sc,o.sc,oacute.sc,obreve.sc,ocaron.sc,ocircumflex.sc,odieresis.sc,odotbelow.sc,ograve.sc,ohungarumlaut.sc,omacron.sc,oogonek.sc,oslash.sc,oslashacute.sc,otilde.sc,oe.sc,q.sc" k="10" />
  2205. <hkern g1="b.sc" g2="comma,period,quotesinglbase,quotedblbase,ellipsis,quotesinglbase.caps,quotedblbase.caps,quotesinglbase.sc,quotedblbase.sc" k="10" />
  2206. <hkern g1="b.sc" g2="y.sc,yacute.sc,ycircumflex.sc,ydieresis.sc,ygrave.sc,ymacron.sc,ytilde.sc" k="30" />
  2207. <hkern g1="b.sc" g2="b.sc,d.sc,eth.sc,dcaron.sc,dcroat.sc,ddotbelow.sc,e.sc,eacute.sc,ebreve.sc,ecaron.sc,ecircumflex.sc,edieresis.sc,edotaccent.sc,edotbelow.sc,egrave.sc,emacron.sc,eogonek.sc,etilde.sc,f.sc,h.sc,hbar.sc,hcircumflex.sc,hdotbelow.sc,i.sc,dotlessi.sc,iacute.sc,ibreve.sc,icaron.sc,icircumflex.sc,idieresis.sc,idotaccent.sc,idotbelow.sc,igrave.sc,ij.sc,imacron.sc,iogonek.sc,itilde.sc,k.sc,kcommaaccent.sc,kgreenlandic.sc,l.sc,lacute.sc,lcaron.sc,lcommaaccent.sc,ldot.sc,lslash.sc,n.sc,nacute.sc,ncaron.sc,ncommaaccent.sc,ndotaccent.sc,eng.sc,ntilde.sc,p.sc,thorn.sc,r.sc,racute.sc,rcaron.sc,rcommaaccent.sc,rdotbelow.sc,germandbls.sc" k="10" />
  2208. <hkern g1="b.sc" g2="numbersign,numbersign.lf,numbersign.osf,numbersign.sc" k="50" />
  2209. <hkern g1="b.sc" g2="s.sc,sacute.sc,scaron.sc,scedilla.sc,scircumflex.sc,scommaaccent.sc,sdotbelow.sc" k="10" />
  2210. <hkern g1="b.sc" g2="slash,slash.caps,slash.sc" k="50" />
  2211. <hkern g1="b.sc" g2="t.sc,tbar.sc,tcaron.sc,tcedilla.sc,tcommaaccent.sc,tdotbelow.sc" k="50" />
  2212. <hkern g1="b.sc" g2="u.sc,uacute.sc,ubreve.sc,ucaron.sc,ucircumflex.sc,udieresis.sc,udieresisacute.sc,udieresiscaron.sc,udieresisgrave.sc,udieresismacron.sc,udotbelow.sc,ugrave.sc,uhungarumlaut.sc,umacron.sc,uogonek.sc,uring.sc,utilde.sc" k="10" />
  2213. <hkern g1="b.sc" g2="v.sc,w.sc,wacute.sc,wcircumflex.sc,wdieresis.sc,wgrave.sc" k="20" />
  2214. <hkern g1="b.sc" g2="z.sc,zacute.sc,zcaron.sc,zdotaccent.sc,zdotbelow.sc" k="15" />
  2215. <hkern g1="backslash" g2="quotedbl,quotesingle,quotedbl.caps,quotesingle.caps,quotedbl.sc,quotesingle.sc" k="30" />
  2216. <hkern g1="backslash.caps" g2="T,Tcedilla,Tcaron,Tbar,Tcommaaccent,Tdotbelow" k="30" />
  2217. <hkern g1="backslash.caps" g2="U,Ugrave,Uacute,Ucircumflex,Udieresis,Utilde,Umacron,Ubreve,Uring,Uhungarumlaut,Uogonek,Ucaron,Udieresismacron,Udieresisacute,Udieresiscaron,Udieresisgrave,Udotbelow" k="10" />
  2218. <hkern g1="backslash.caps" g2="V,W,Wcircumflex,Wgrave,Wacute,Wdieresis" k="10" />
  2219. <hkern g1="backslash.caps" g2="Y,Yacute,Ycircumflex,Ydieresis,Ymacron,Ygrave,Ytilde" k="20" />
  2220. <hkern g1="backslash.caps" g2="ampersand,ampersand.caps,ampersand.sc" k="20" />
  2221. <hkern g1="backslash.caps" g2="asterisk,asterisk.caps,asterisk.sc" k="90" />
  2222. <hkern g1="backslash.caps" g2="periodcentered,bullet,periodcentered.caps,bullet.caps,periodcentered.sc,bullet.sc" k="30" />
  2223. <hkern g1="backslash.caps" g2="seven,seven.lf,seven.osf,seven.sc" k="20" />
  2224. <hkern g1="backslash.caps" g2="backslash,backslash.caps,backslash.sc" k="40" />
  2225. <hkern g1="backslash.caps" g2="euro,euro.lf,euro.osf,euro.sc" k="30" />
  2226. <hkern g1="backslash.caps" g2="percent.lf,perthousand.lf" k="30" />
  2227. <hkern g1="backslash.sc" g2="asterisk,asterisk.caps,asterisk.sc" k="60" />
  2228. <hkern g1="backslash.sc" g2="euro,euro.lf,euro.osf,euro.sc" k="10" />
  2229. <hkern g1="backslash.sc" g2="dollar,dollar.lf,dollar.osf,dollar.sc" k="-10" />
  2230. <hkern g1="backslash.sc" g2="guillemetright,guilsinglright,guillemetright.caps,guilsinglright.caps,guillemetright.sc,guilsinglright.sc" k="-30" />
  2231. <hkern g1="backslash.sc" g2="plus.lf,minus.lf,multiply.lf,divide.lf,equal.lf,notequal.lf,greater.lf,less.lf,greaterequal.lf,lessequal.lf,plusminus.lf,approxequal.lf,logicalnot.lf,infinity.lf,plus.sc,minus.sc,multiply.sc,divide.sc,equal.sc,notequal.sc,greater.sc,less.sc,greaterequal.sc,lessequal.sc,plusminus.sc,approxequal.sc,logicalnot.sc,infinity.sc" k="-50" />
  2232. <hkern g1="backslash.sc" g2="parenright,parenright.caps,parenright.sc" k="-30" />
  2233. <hkern g1="backslash.sc" g2="percent,perthousand,percent.osf,perthousand.osf,percent.sc,perthousand.sc" k="50" />
  2234. <hkern g1="backslash.sc" g2="questiondown,questiondown.caps,questiondown.sc" k="-50" />
  2235. <hkern g1="backslash.sc" g2="sterling,sterling.lf,sterling.osf,sterling.sc" k="-10" />
  2236. <hkern g1="f.sc" g2="asterisk,asterisk.caps,asterisk.sc" k="-10" />
  2237. <hkern g1="f.sc" g2="a.sc,aacute.sc,abreve.sc,acaron.sc,acircumflex.sc,adieresis.sc,adotbelow.sc,agrave.sc,amacron.sc,aogonek.sc,aring.sc,aringacute.sc,atilde.sc,ae.sc,aeacute.sc" k="40" />
  2238. <hkern g1="f.sc" g2="c.sc,cacute.sc,ccaron.sc,ccedilla.sc,ccircumflex.sc,cdotaccent.sc,schwa.sc,g.sc,gacute.sc,gbreve.sc,gcaron.sc,gcircumflex.sc,gcommaaccent.sc,gdotaccent.sc,o.sc,oacute.sc,obreve.sc,ocaron.sc,ocircumflex.sc,odieresis.sc,odotbelow.sc,ograve.sc,ohungarumlaut.sc,omacron.sc,oogonek.sc,oslash.sc,oslashacute.sc,otilde.sc,oe.sc,q.sc" k="20" />
  2239. <hkern g1="f.sc" g2="comma,period,quotesinglbase,quotedblbase,ellipsis,quotesinglbase.caps,quotedblbase.caps,quotesinglbase.sc,quotedblbase.sc" k="10" />
  2240. <hkern g1="f.sc" g2="y.sc,yacute.sc,ycircumflex.sc,ydieresis.sc,ygrave.sc,ymacron.sc,ytilde.sc" k="15" />
  2241. <hkern g1="f.sc" g2="b.sc,d.sc,eth.sc,dcaron.sc,dcroat.sc,ddotbelow.sc,e.sc,eacute.sc,ebreve.sc,ecaron.sc,ecircumflex.sc,edieresis.sc,edotaccent.sc,edotbelow.sc,egrave.sc,emacron.sc,eogonek.sc,etilde.sc,f.sc,h.sc,hbar.sc,hcircumflex.sc,hdotbelow.sc,i.sc,dotlessi.sc,iacute.sc,ibreve.sc,icaron.sc,icircumflex.sc,idieresis.sc,idotaccent.sc,idotbelow.sc,igrave.sc,ij.sc,imacron.sc,iogonek.sc,itilde.sc,k.sc,kcommaaccent.sc,kgreenlandic.sc,l.sc,lacute.sc,lcaron.sc,lcommaaccent.sc,ldot.sc,lslash.sc,n.sc,nacute.sc,ncaron.sc,ncommaaccent.sc,ndotaccent.sc,eng.sc,ntilde.sc,p.sc,thorn.sc,r.sc,racute.sc,rcaron.sc,rcommaaccent.sc,rdotbelow.sc,germandbls.sc" k="10" />
  2242. <hkern g1="f.sc" g2="s.sc,sacute.sc,scaron.sc,scedilla.sc,scircumflex.sc,scommaaccent.sc,sdotbelow.sc" k="10" />
  2243. <hkern g1="f.sc" g2="slash,slash.caps,slash.sc" k="40" />
  2244. <hkern g1="f.sc" g2="t.sc,tbar.sc,tcaron.sc,tcedilla.sc,tcommaaccent.sc,tdotbelow.sc" k="20" />
  2245. <hkern g1="f.sc" g2="u.sc,uacute.sc,ubreve.sc,ucaron.sc,ucircumflex.sc,udieresis.sc,udieresisacute.sc,udieresiscaron.sc,udieresisgrave.sc,udieresismacron.sc,udotbelow.sc,ugrave.sc,uhungarumlaut.sc,umacron.sc,uogonek.sc,uring.sc,utilde.sc" k="15" />
  2246. <hkern g1="f.sc" g2="v.sc,w.sc,wacute.sc,wcircumflex.sc,wdieresis.sc,wgrave.sc" k="10" />
  2247. <hkern g1="f.sc" g2="z.sc,zacute.sc,zcaron.sc,zdotaccent.sc,zdotbelow.sc" k="10" />
  2248. <hkern g1="f.sc" g2="quotedblright.sc,quoteright.sc" k="-40" />
  2249. <hkern g1="fraction" g2="zero.denominator,one.denominator,two.denominator,three.denominator,four.denominator,five.denominator,six.denominator,seven.denominator,eight.denominator,nine.denominator" k="190" />
  2250. <hkern g1="integral" g2="quotedbl,quotesingle,quotedbl.caps,quotesingle.caps,quotedbl.sc,quotesingle.sc" k="-20" />
  2251. <hkern g1="integral" g2="napostrophe,quoteright,quotedblright,quotedblright.caps,quoteright.caps" k="-50" />
  2252. <hkern g1="integral" g2="periodcentered,bullet,periodcentered.caps,bullet.caps,periodcentered.sc,bullet.sc" k="10" />
  2253. <hkern g1="integral" g2="backslash,backslash.caps,backslash.sc" k="-20" />
  2254. <hkern g1="m.sc" g2="c.sc,cacute.sc,ccaron.sc,ccedilla.sc,ccircumflex.sc,cdotaccent.sc,schwa.sc,g.sc,gacute.sc,gbreve.sc,gcaron.sc,gcircumflex.sc,gcommaaccent.sc,gdotaccent.sc,o.sc,oacute.sc,obreve.sc,ocaron.sc,ocircumflex.sc,odieresis.sc,odotbelow.sc,ograve.sc,ohungarumlaut.sc,omacron.sc,oogonek.sc,oslash.sc,oslashacute.sc,otilde.sc,oe.sc,q.sc" k="20" />
  2255. <hkern g1="m.sc" g2="y.sc,yacute.sc,ycircumflex.sc,ydieresis.sc,ygrave.sc,ymacron.sc,ytilde.sc" k="20" />
  2256. <hkern g1="m.sc" g2="b.sc,d.sc,eth.sc,dcaron.sc,dcroat.sc,ddotbelow.sc,e.sc,eacute.sc,ebreve.sc,ecaron.sc,ecircumflex.sc,edieresis.sc,edotaccent.sc,edotbelow.sc,egrave.sc,emacron.sc,eogonek.sc,etilde.sc,f.sc,h.sc,hbar.sc,hcircumflex.sc,hdotbelow.sc,i.sc,dotlessi.sc,iacute.sc,ibreve.sc,icaron.sc,icircumflex.sc,idieresis.sc,idotaccent.sc,idotbelow.sc,igrave.sc,ij.sc,imacron.sc,iogonek.sc,itilde.sc,k.sc,kcommaaccent.sc,kgreenlandic.sc,l.sc,lacute.sc,lcaron.sc,lcommaaccent.sc,ldot.sc,lslash.sc,n.sc,nacute.sc,ncaron.sc,ncommaaccent.sc,ndotaccent.sc,eng.sc,ntilde.sc,p.sc,thorn.sc,r.sc,racute.sc,rcaron.sc,rcommaaccent.sc,rdotbelow.sc,germandbls.sc" k="5" />
  2257. <hkern g1="m.sc" g2="numbersign,numbersign.lf,numbersign.osf,numbersign.sc" k="20" />
  2258. <hkern g1="m.sc" g2="s.sc,sacute.sc,scaron.sc,scedilla.sc,scircumflex.sc,scommaaccent.sc,sdotbelow.sc" k="10" />
  2259. <hkern g1="m.sc" g2="t.sc,tbar.sc,tcaron.sc,tcedilla.sc,tcommaaccent.sc,tdotbelow.sc" k="50" />
  2260. <hkern g1="m.sc" g2="u.sc,uacute.sc,ubreve.sc,ucaron.sc,ucircumflex.sc,udieresis.sc,udieresisacute.sc,udieresiscaron.sc,udieresisgrave.sc,udieresismacron.sc,udotbelow.sc,ugrave.sc,uhungarumlaut.sc,umacron.sc,uogonek.sc,uring.sc,utilde.sc" k="10" />
  2261. <hkern g1="m.sc" g2="v.sc,w.sc,wacute.sc,wcircumflex.sc,wdieresis.sc,wgrave.sc" k="35" />
  2262. <hkern g1="m.sc" g2="euro,euro.lf,euro.osf,euro.sc" k="20" />
  2263. <hkern g1="mu" g2="numbersign,numbersign.lf,numbersign.osf,numbersign.sc" k="20" />
  2264. <hkern g1="p.sc" g2="a.sc,aacute.sc,abreve.sc,acaron.sc,acircumflex.sc,adieresis.sc,adotbelow.sc,agrave.sc,amacron.sc,aogonek.sc,aring.sc,aringacute.sc,atilde.sc,ae.sc,aeacute.sc" k="30" />
  2265. <hkern g1="p.sc" g2="c.sc,cacute.sc,ccaron.sc,ccedilla.sc,ccircumflex.sc,cdotaccent.sc,schwa.sc,g.sc,gacute.sc,gbreve.sc,gcaron.sc,gcircumflex.sc,gcommaaccent.sc,gdotaccent.sc,o.sc,oacute.sc,obreve.sc,ocaron.sc,ocircumflex.sc,odieresis.sc,odotbelow.sc,ograve.sc,ohungarumlaut.sc,omacron.sc,oogonek.sc,oslash.sc,oslashacute.sc,otilde.sc,oe.sc,q.sc" k="10" />
  2266. <hkern g1="p.sc" g2="y.sc,yacute.sc,ycircumflex.sc,ydieresis.sc,ygrave.sc,ymacron.sc,ytilde.sc" k="5" />
  2267. <hkern g1="p.sc" g2="b.sc,d.sc,eth.sc,dcaron.sc,dcroat.sc,ddotbelow.sc,e.sc,eacute.sc,ebreve.sc,ecaron.sc,ecircumflex.sc,edieresis.sc,edotaccent.sc,edotbelow.sc,egrave.sc,emacron.sc,eogonek.sc,etilde.sc,f.sc,h.sc,hbar.sc,hcircumflex.sc,hdotbelow.sc,i.sc,dotlessi.sc,iacute.sc,ibreve.sc,icaron.sc,icircumflex.sc,idieresis.sc,idotaccent.sc,idotbelow.sc,igrave.sc,ij.sc,imacron.sc,iogonek.sc,itilde.sc,k.sc,kcommaaccent.sc,kgreenlandic.sc,l.sc,lacute.sc,lcaron.sc,lcommaaccent.sc,ldot.sc,lslash.sc,n.sc,nacute.sc,ncaron.sc,ncommaaccent.sc,ndotaccent.sc,eng.sc,ntilde.sc,p.sc,thorn.sc,r.sc,racute.sc,rcaron.sc,rcommaaccent.sc,rdotbelow.sc,germandbls.sc" k="5" />
  2268. <hkern g1="p.sc" g2="s.sc,sacute.sc,scaron.sc,scedilla.sc,scircumflex.sc,scommaaccent.sc,sdotbelow.sc" k="10" />
  2269. <hkern g1="p.sc" g2="t.sc,tbar.sc,tcaron.sc,tcedilla.sc,tcommaaccent.sc,tdotbelow.sc" k="25" />
  2270. <hkern g1="p.sc" g2="u.sc,uacute.sc,ubreve.sc,ucaron.sc,ucircumflex.sc,udieresis.sc,udieresisacute.sc,udieresiscaron.sc,udieresisgrave.sc,udieresismacron.sc,udotbelow.sc,ugrave.sc,uhungarumlaut.sc,umacron.sc,uogonek.sc,uring.sc,utilde.sc" k="10" />
  2271. <hkern g1="p.sc" g2="v.sc,w.sc,wacute.sc,wcircumflex.sc,wdieresis.sc,wgrave.sc" k="15" />
  2272. <hkern g1="p.sc" g2="z.sc,zacute.sc,zcaron.sc,zdotaccent.sc,zdotbelow.sc" k="15" />
  2273. <hkern g1="p.sc" g2="backslash,backslash.caps,backslash.sc" k="10" />
  2274. <hkern g1="pi" g2="numbersign,numbersign.lf,numbersign.osf,numbersign.sc" k="20" />
  2275. <hkern g1="product" g2="napostrophe,quoteright,quotedblright,quotedblright.caps,quoteright.caps" k="-20" />
  2276. <hkern g1="radical" g2="bracketright,bracketright.caps,bracketright.sc" k="-40" />
  2277. <hkern g1="radical" g2="quotedbl,quotesingle,quotedbl.caps,quotesingle.caps,quotedbl.sc,quotesingle.sc" k="-30" />
  2278. <hkern g1="radical" g2="napostrophe,quoteright,quotedblright,quotedblright.caps,quoteright.caps" k="-50" />
  2279. <hkern g1="slash" g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE,Amacron,Abreve,Aogonek,Acaron,Aringacute,AEacute,Adotbelow" k="60" />
  2280. <hkern g1="slash" g2="B,D,E,F,H,I,K,L,N,P,R,Egrave,Eacute,Ecircumflex,Edieresis,Igrave,Iacute,Icircumflex,Idieresis,Eth,Ntilde,Thorn,Dcaron,Dcroat,Emacron,Ebreve,Edotaccent,Eogonek,Ecaron,Hcircumflex,Hbar,Itilde,Imacron,Ibreve,Iogonek,Idotaccent,IJ,Kcommaaccent,Lacute,Lcommaaccent,Lcaron,Ldot,Lslash,Nacute,Ncommaaccent,Ncaron,Eng,Racute,Rcommaaccent,Rcaron,Icaron,Ddotbelow,Hdotbelow,Ndotaccent,Rdotbelow,Edotbelow,Etilde,Idotbelow,IJacute" k="20" />
  2281. <hkern g1="slash" g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,Cacute,Ccircumflex,Cdotaccent,Ccaron,Gcircumflex,Gbreve,Gdotaccent,Gcommaaccent,Omacron,Obreve,Ohungarumlaut,OE,Ocaron,Gcaron,Oogonek,Gacute,Oslashacute,Odotbelow" k="20" />
  2282. <hkern g1="slash" g2="ampersand,ampersand.caps,ampersand.sc" k="70" />
  2283. <hkern g1="slash" g2="periodcentered,bullet,periodcentered.caps,bullet.caps,periodcentered.sc,bullet.sc" k="60" />
  2284. <hkern g1="slash" g2="a,d,q,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,amacron,abreve,aogonek,dcaron,dcroat,acaron,aringacute,aeacute,ddotbelow,adotbelow" k="50" />
  2285. <hkern g1="slash" g2="a.sc,aacute.sc,abreve.sc,acaron.sc,acircumflex.sc,adieresis.sc,adotbelow.sc,agrave.sc,amacron.sc,aogonek.sc,aring.sc,aringacute.sc,atilde.sc,ae.sc,aeacute.sc" k="80" />
  2286. <hkern g1="slash" g2="c,e,o,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oslash,cacute,ccircumflex,cdotaccent,ccaron,emacron,ebreve,edotaccent,eogonek,ecaron,omacron,obreve,ohungarumlaut,oe,ocaron,oogonek,oslashacute,edotbelow,etilde,odotbelow,c_h,c_t" k="50" />
  2287. <hkern g1="slash" g2="s,sacute,scircumflex,scedilla,scaron,scommaaccent,sdotbelow,s_h" k="40" />
  2288. <hkern g1="slash" g2="c.sc,cacute.sc,ccaron.sc,ccedilla.sc,ccircumflex.sc,cdotaccent.sc,schwa.sc,g.sc,gacute.sc,gbreve.sc,gcaron.sc,gcircumflex.sc,gcommaaccent.sc,gdotaccent.sc,o.sc,oacute.sc,obreve.sc,ocaron.sc,ocircumflex.sc,odieresis.sc,odotbelow.sc,ograve.sc,ohungarumlaut.sc,omacron.sc,oogonek.sc,oslash.sc,oslashacute.sc,otilde.sc,oe.sc,q.sc" k="40" />
  2289. <hkern g1="slash" g2="g,gcircumflex,gbreve,gdotaccent,gcommaaccent,gcaron,gacute" k="60" />
  2290. <hkern g1="slash" g2="comma,period,quotesinglbase,quotedblbase,ellipsis,quotesinglbase.caps,quotedblbase.caps,quotesinglbase.sc,quotedblbase.sc" k="70" />
  2291. <hkern g1="slash" g2="u,ugrave,uacute,ucircumflex,udieresis,utilde,umacron,ubreve,uring,uhungarumlaut,uogonek,ucaron,udieresismacron,udieresisacute,udieresiscaron,udieresisgrave,udotbelow" k="10" />
  2292. <hkern g1="slash" g2="i,igrave,iacute,icircumflex,idieresis,itilde,imacron,ibreve,iogonek,ij,icaron,idotbelow,ijacute" k="10" />
  2293. <hkern g1="slash" g2="y.sc,yacute.sc,ycircumflex.sc,ydieresis.sc,ygrave.sc,ymacron.sc,ytilde.sc" k="20" />
  2294. <hkern g1="slash" g2="b.sc,d.sc,eth.sc,dcaron.sc,dcroat.sc,ddotbelow.sc,e.sc,eacute.sc,ebreve.sc,ecaron.sc,ecircumflex.sc,edieresis.sc,edotaccent.sc,edotbelow.sc,egrave.sc,emacron.sc,eogonek.sc,etilde.sc,f.sc,h.sc,hbar.sc,hcircumflex.sc,hdotbelow.sc,i.sc,dotlessi.sc,iacute.sc,ibreve.sc,icaron.sc,icircumflex.sc,idieresis.sc,idotaccent.sc,idotbelow.sc,igrave.sc,ij.sc,imacron.sc,iogonek.sc,itilde.sc,k.sc,kcommaaccent.sc,kgreenlandic.sc,l.sc,lacute.sc,lcaron.sc,lcommaaccent.sc,ldot.sc,lslash.sc,n.sc,nacute.sc,ncaron.sc,ncommaaccent.sc,ndotaccent.sc,eng.sc,ntilde.sc,p.sc,thorn.sc,r.sc,racute.sc,rcaron.sc,rcommaaccent.sc,rdotbelow.sc,germandbls.sc" k="30" />
  2295. <hkern g1="slash" g2="numbersign,numbersign.lf,numbersign.osf,numbersign.sc" k="110" />
  2296. <hkern g1="slash" g2="s.sc,sacute.sc,scaron.sc,scedilla.sc,scircumflex.sc,scommaaccent.sc,sdotbelow.sc" k="30" />
  2297. <hkern g1="slash" g2="slash,slash.caps,slash.sc" k="60" />
  2298. <hkern g1="slash" g2="t.sc,tbar.sc,tcaron.sc,tcedilla.sc,tcommaaccent.sc,tdotbelow.sc" k="40" />
  2299. <hkern g1="slash" g2="u.sc,uacute.sc,ubreve.sc,ucaron.sc,ucircumflex.sc,udieresis.sc,udieresisacute.sc,udieresiscaron.sc,udieresisgrave.sc,udieresismacron.sc,udotbelow.sc,ugrave.sc,uhungarumlaut.sc,umacron.sc,uogonek.sc,uring.sc,utilde.sc" k="20" />
  2300. <hkern g1="slash" g2="v.sc,w.sc,wacute.sc,wcircumflex.sc,wdieresis.sc,wgrave.sc" k="20" />
  2301. <hkern g1="slash" g2="z.sc,zacute.sc,zcaron.sc,zdotaccent.sc,zdotbelow.sc" k="10" />
  2302. <hkern g1="slash" g2="euro,euro.lf,euro.osf,euro.sc" k="40" />
  2303. <hkern g1="slash" g2="plus.lf,minus.lf,multiply.lf,divide.lf,equal.lf,notequal.lf,greater.lf,less.lf,greaterequal.lf,lessequal.lf,plusminus.lf,approxequal.lf,logicalnot.lf,infinity.lf,plus.sc,minus.sc,multiply.sc,divide.sc,equal.sc,notequal.sc,greater.sc,less.sc,greaterequal.sc,lessequal.sc,plusminus.sc,approxequal.sc,logicalnot.sc,infinity.sc" k="20" />
  2304. <hkern g1="slash" g2="percent,perthousand,percent.osf,perthousand.osf,percent.sc,perthousand.sc" k="30" />
  2305. <hkern g1="slash" g2="sterling,sterling.lf,sterling.osf,sterling.sc" k="20" />
  2306. <hkern g1="slash" g2="zero,six,nine,zero.lf,six.lf,nine.lf,zero.osf,six.osf,nine.osf,zero.sc,six.sc,nine.sc" k="10" />
  2307. <hkern g1="slash" g2="one,one.lf,one.osf,one.sc" k="-40" />
  2308. <hkern g1="slash" g2="four,four.lf,four.osf,four.sc" k="20" />
  2309. <hkern g1="slash" g2="eight,eight.lf,eight.osf,eight.sc" k="-10" />
  2310. <hkern g1="slash" g2="cent,cent.lf,cent.osf,cent.sc" k="30" />
  2311. <hkern g1="slash" g2="currency,currency.lf,currency.osf,currency.sc" k="20" />
  2312. <hkern g1="slash" g2="florin,florin.lf,florin.osf,florin.sc" k="20" />
  2313. <hkern g1="slash" g2="j.sc,dotlessj.sc,jacute.sc,jcircumflex.sc,nhookleft.sc" k="40" />
  2314. <hkern g1="slash" g2="plus,less,equal,greater,asciitilde,logicalnot,plusminus,multiply,divide,minus,infinity,approxequal,notequal,lessequal,greaterequal" k="20" />
  2315. <hkern g1="slash" g2="plus.osf,minus.osf,multiply.osf,divide.osf,equal.osf,notequal.osf,greater.osf,less.osf,greaterequal.osf,lessequal.osf,plusminus.osf,approxequal.osf,logicalnot.osf,infinity.osf" k="20" />
  2316. <hkern g1="slash.caps" g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE,Amacron,Abreve,Aogonek,Acaron,Aringacute,AEacute,Adotbelow" k="10" />
  2317. <hkern g1="slash.caps" g2="B,D,E,F,H,I,K,L,N,P,R,Egrave,Eacute,Ecircumflex,Edieresis,Igrave,Iacute,Icircumflex,Idieresis,Eth,Ntilde,Thorn,Dcaron,Dcroat,Emacron,Ebreve,Edotaccent,Eogonek,Ecaron,Hcircumflex,Hbar,Itilde,Imacron,Ibreve,Iogonek,Idotaccent,IJ,Kcommaaccent,Lacute,Lcommaaccent,Lcaron,Ldot,Lslash,Nacute,Ncommaaccent,Ncaron,Eng,Racute,Rcommaaccent,Rcaron,Icaron,Ddotbelow,Hdotbelow,Ndotaccent,Rdotbelow,Edotbelow,Etilde,Idotbelow,IJacute" k="10" />
  2318. <hkern g1="slash.caps" g2="ampersand,ampersand.caps,ampersand.sc" k="50" />
  2319. <hkern g1="slash.caps" g2="comma,period,quotesinglbase,quotedblbase,ellipsis,quotesinglbase.caps,quotedblbase.caps,quotesinglbase.sc,quotedblbase.sc" k="50" />
  2320. <hkern g1="slash.caps" g2="slash,slash.caps,slash.sc" k="50" />
  2321. <hkern g1="slash.caps" g2="euro,euro.lf,euro.osf,euro.sc" k="10" />
  2322. <hkern g1="slash.caps" g2="sterling,sterling.lf,sterling.osf,sterling.sc" k="20" />
  2323. <hkern g1="slash.sc" g2="ampersand,ampersand.caps,ampersand.sc" k="-50" />
  2324. <hkern g1="slash.sc" g2="guillemetleft,guilsinglleft,guillemetleft.caps,guilsinglleft.caps,guillemetleft.sc,guilsinglleft.sc" k="-30" />
  2325. <hkern g1="slash.sc" g2="quotedbl,quotesingle,quotedbl.caps,quotesingle.caps,quotedbl.sc,quotesingle.sc" k="-110" />
  2326. <hkern g1="slash.sc" g2="periodcentered,bullet,periodcentered.caps,bullet.caps,periodcentered.sc,bullet.sc" k="-40" />
  2327. <hkern g1="slash.sc" g2="a.sc,aacute.sc,abreve.sc,acaron.sc,acircumflex.sc,adieresis.sc,adotbelow.sc,agrave.sc,amacron.sc,aogonek.sc,aring.sc,aringacute.sc,atilde.sc,ae.sc,aeacute.sc" k="-50" />
  2328. <hkern g1="slash.sc" g2="exclam,exclamdown,exclam.caps,exclamdown.caps,exclam.sc,exclamdown.sc" k="-60" />
  2329. <hkern g1="slash.sc" g2="c.sc,cacute.sc,ccaron.sc,ccedilla.sc,ccircumflex.sc,cdotaccent.sc,schwa.sc,g.sc,gacute.sc,gbreve.sc,gcaron.sc,gcircumflex.sc,gcommaaccent.sc,gdotaccent.sc,o.sc,oacute.sc,obreve.sc,ocaron.sc,ocircumflex.sc,odieresis.sc,odotbelow.sc,ograve.sc,ohungarumlaut.sc,omacron.sc,oogonek.sc,oslash.sc,oslashacute.sc,otilde.sc,oe.sc,q.sc" k="-60" />
  2330. <hkern g1="slash.sc" g2="y.sc,yacute.sc,ycircumflex.sc,ydieresis.sc,ygrave.sc,ymacron.sc,ytilde.sc" k="-50" />
  2331. <hkern g1="slash.sc" g2="b.sc,d.sc,eth.sc,dcaron.sc,dcroat.sc,ddotbelow.sc,e.sc,eacute.sc,ebreve.sc,ecaron.sc,ecircumflex.sc,edieresis.sc,edotaccent.sc,edotbelow.sc,egrave.sc,emacron.sc,eogonek.sc,etilde.sc,f.sc,h.sc,hbar.sc,hcircumflex.sc,hdotbelow.sc,i.sc,dotlessi.sc,iacute.sc,ibreve.sc,icaron.sc,icircumflex.sc,idieresis.sc,idotaccent.sc,idotbelow.sc,igrave.sc,ij.sc,imacron.sc,iogonek.sc,itilde.sc,k.sc,kcommaaccent.sc,kgreenlandic.sc,l.sc,lacute.sc,lcaron.sc,lcommaaccent.sc,ldot.sc,lslash.sc,n.sc,nacute.sc,ncaron.sc,ncommaaccent.sc,ndotaccent.sc,eng.sc,ntilde.sc,p.sc,thorn.sc,r.sc,racute.sc,rcaron.sc,rcommaaccent.sc,rdotbelow.sc,germandbls.sc" k="-80" />
  2332. <hkern g1="slash.sc" g2="s.sc,sacute.sc,scaron.sc,scedilla.sc,scircumflex.sc,scommaaccent.sc,sdotbelow.sc" k="-60" />
  2333. <hkern g1="slash.sc" g2="v.sc,w.sc,wacute.sc,wcircumflex.sc,wdieresis.sc,wgrave.sc" k="-50" />
  2334. <hkern g1="slash.sc" g2="z.sc,zacute.sc,zcaron.sc,zdotaccent.sc,zdotbelow.sc" k="-80" />
  2335. <hkern g1="slash.sc" g2="seven,seven.lf,seven.osf,seven.sc" k="-70" />
  2336. <hkern g1="slash.sc" g2="backslash,backslash.caps,backslash.sc" k="-20" />
  2337. <hkern g1="slash.sc" g2="euro,euro.lf,euro.osf,euro.sc" k="-30" />
  2338. <hkern g1="slash.sc" g2="dollar,dollar.lf,dollar.osf,dollar.sc" k="-80" />
  2339. <hkern g1="slash.sc" g2="plus.lf,minus.lf,multiply.lf,divide.lf,equal.lf,notequal.lf,greater.lf,less.lf,greaterequal.lf,lessequal.lf,plusminus.lf,approxequal.lf,logicalnot.lf,infinity.lf,plus.sc,minus.sc,multiply.sc,divide.sc,equal.sc,notequal.sc,greater.sc,less.sc,greaterequal.sc,lessequal.sc,plusminus.sc,approxequal.sc,logicalnot.sc,infinity.sc" k="-120" />
  2340. <hkern g1="slash.sc" g2="percent,perthousand,percent.osf,perthousand.osf,percent.sc,perthousand.sc" k="-50" />
  2341. <hkern g1="slash.sc" g2="questiondown,questiondown.caps,questiondown.sc" k="-40" />
  2342. <hkern g1="slash.sc" g2="sterling,sterling.lf,sterling.osf,sterling.sc" k="-70" />
  2343. <hkern g1="slash.sc" g2="quotedblright.sc,quoteright.sc" k="-70" />
  2344. <hkern g1="slash.sc" g2="zero,six,nine,zero.lf,six.lf,nine.lf,zero.osf,six.osf,nine.osf,zero.sc,six.sc,nine.sc" k="-30" />
  2345. <hkern g1="slash.sc" g2="one,one.lf,one.osf,one.sc" k="-130" />
  2346. <hkern g1="slash.sc" g2="four,four.lf,four.osf,four.sc" k="-30" />
  2347. <hkern g1="slash.sc" g2="eight,eight.lf,eight.osf,eight.sc" k="-70" />
  2348. <hkern g1="slash.sc" g2="cent,cent.lf,cent.osf,cent.sc" k="-50" />
  2349. <hkern g1="slash.sc" g2="j.sc,dotlessj.sc,jacute.sc,jcircumflex.sc,nhookleft.sc" k="-90" />
  2350. <hkern g1="slash.sc" g2="two,two.lf,two.osf,two.sc" k="-80" />
  2351. <hkern g1="slash.sc" g2="five,five.lf,five.osf,five.sc" k="-50" />
  2352. <hkern g1="slash.sc" g2="braceleft,braceleft.caps,braceleft.sc" k="-70" />
  2353. <hkern g1="slash.sc" g2="bracketleft,bracketleft.caps,bracketleft.sc" k="-50" />
  2354. <hkern g1="slash.sc" g2="parenleft,parenleft.caps,parenleft.sc" k="-30" />
  2355. <hkern g1="slash.sc" g2="quotedblleft.sc,quoteleft.sc" k="-60" />
  2356. <hkern g1="slash.sc" g2="yen,yen.lf,yen.osf,yen.sc" k="-130" />
  2357. <hkern g1="summation" g2="bracketright,bracketright.caps,bracketright.sc" k="-60" />
  2358. <hkern g1="summation" g2="napostrophe,quoteright,quotedblright,quotedblright.caps,quoteright.caps" k="-50" />
  2359. <hkern g1="underscore" g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,Cacute,Ccircumflex,Cdotaccent,Ccaron,Gcircumflex,Gbreve,Gdotaccent,Gcommaaccent,Omacron,Obreve,Ohungarumlaut,OE,Ocaron,Gcaron,Oogonek,Gacute,Oslashacute,Odotbelow" k="20" />
  2360. <hkern g1="underscore" g2="T,Tcedilla,Tcaron,Tbar,Tcommaaccent,Tdotbelow" k="40" />
  2361. <hkern g1="underscore" g2="U,Ugrave,Uacute,Ucircumflex,Udieresis,Utilde,Umacron,Ubreve,Uring,Uhungarumlaut,Uogonek,Ucaron,Udieresismacron,Udieresisacute,Udieresiscaron,Udieresisgrave,Udotbelow" k="5" />
  2362. <hkern g1="underscore" g2="V,W,Wcircumflex,Wgrave,Wacute,Wdieresis" k="50" />
  2363. <hkern g1="underscore" g2="Y,Yacute,Ycircumflex,Ydieresis,Ymacron,Ygrave,Ytilde" k="40" />
  2364. <hkern g1="underscore" g2="ampersand,ampersand.caps,ampersand.sc" k="20" />
  2365. <hkern g1="underscore" g2="asterisk,asterisk.caps,asterisk.sc" k="40" />
  2366. <hkern g1="underscore" g2="periodcentered,bullet,periodcentered.caps,bullet.caps,periodcentered.sc,bullet.sc" k="30" />
  2367. <hkern g1="underscore" g2="a,d,q,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,amacron,abreve,aogonek,dcaron,dcroat,acaron,aringacute,aeacute,ddotbelow,adotbelow" k="25" />
  2368. <hkern g1="underscore" g2="c,e,o,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oslash,cacute,ccircumflex,cdotaccent,ccaron,emacron,ebreve,edotaccent,eogonek,ecaron,omacron,obreve,ohungarumlaut,oe,ocaron,oogonek,oslashacute,edotbelow,etilde,odotbelow,c_h,c_t" k="25" />
  2369. <hkern g1="underscore" g2="s,sacute,scircumflex,scedilla,scaron,scommaaccent,sdotbelow,s_h" k="15" />
  2370. <hkern g1="underscore" g2="c.sc,cacute.sc,ccaron.sc,ccedilla.sc,ccircumflex.sc,cdotaccent.sc,schwa.sc,g.sc,gacute.sc,gbreve.sc,gcaron.sc,gcircumflex.sc,gcommaaccent.sc,gdotaccent.sc,o.sc,oacute.sc,obreve.sc,ocaron.sc,ocircumflex.sc,odieresis.sc,odotbelow.sc,ograve.sc,ohungarumlaut.sc,omacron.sc,oogonek.sc,oslash.sc,oslashacute.sc,otilde.sc,oe.sc,q.sc" k="30" />
  2371. <hkern g1="underscore" g2="t,tcedilla,tcaron,tbar,tcommaaccent,tdotbelow" k="20" />
  2372. <hkern g1="underscore" g2="u,ugrave,uacute,ucircumflex,udieresis,utilde,umacron,ubreve,uring,uhungarumlaut,uogonek,ucaron,udieresismacron,udieresisacute,udieresiscaron,udieresisgrave,udotbelow" k="10" />
  2373. <hkern g1="underscore" g2="v,w,wcircumflex,wgrave,wacute,wdieresis" k="30" />
  2374. <hkern g1="underscore" g2="J,Jcircumflex,Nhookleft,Jacute" k="-10" />
  2375. <hkern g1="underscore" g2="y.sc,yacute.sc,ycircumflex.sc,ydieresis.sc,ygrave.sc,ymacron.sc,ytilde.sc" k="45" />
  2376. <hkern g1="underscore" g2="numbersign,numbersign.lf,numbersign.osf,numbersign.sc" k="20" />
  2377. <hkern g1="underscore" g2="t.sc,tbar.sc,tcaron.sc,tcedilla.sc,tcommaaccent.sc,tdotbelow.sc" k="55" />
  2378. <hkern g1="underscore" g2="u.sc,uacute.sc,ubreve.sc,ucaron.sc,ucircumflex.sc,udieresis.sc,udieresisacute.sc,udieresiscaron.sc,udieresisgrave.sc,udieresismacron.sc,udotbelow.sc,ugrave.sc,uhungarumlaut.sc,umacron.sc,uogonek.sc,uring.sc,utilde.sc" k="5" />
  2379. <hkern g1="underscore" g2="v.sc,w.sc,wacute.sc,wcircumflex.sc,wdieresis.sc,wgrave.sc" k="40" />
  2380. <hkern g1="underscore" g2="backslash,backslash.caps,backslash.sc" k="20" />
  2381. <hkern g1="underscore" g2="euro,euro.lf,euro.osf,euro.sc" k="40" />
  2382. <hkern g1="underscore" g2="percent.lf,perthousand.lf" k="30" />
  2383. <hkern g1="underscore" g2="dollar,dollar.lf,dollar.osf,dollar.sc" k="10" />
  2384. <hkern g1="underscore" g2="plus.lf,minus.lf,multiply.lf,divide.lf,equal.lf,notequal.lf,greater.lf,less.lf,greaterequal.lf,lessequal.lf,plusminus.lf,approxequal.lf,logicalnot.lf,infinity.lf,plus.sc,minus.sc,multiply.sc,divide.sc,equal.sc,notequal.sc,greater.sc,less.sc,greaterequal.sc,lessequal.sc,plusminus.sc,approxequal.sc,logicalnot.sc,infinity.sc" k="20" />
  2385. <hkern g1="underscore" g2="percent,perthousand,percent.osf,perthousand.osf,percent.sc,perthousand.sc" k="35" />
  2386. <hkern g1="underscore" g2="zero,six,nine,zero.lf,six.lf,nine.lf,zero.osf,six.osf,nine.osf,zero.sc,six.sc,nine.sc" k="15" />
  2387. <hkern g1="underscore" g2="four,four.lf,four.osf,four.sc" k="40" />
  2388. <hkern g1="underscore" g2="cent,cent.lf,cent.osf,cent.sc" k="30" />
  2389. <hkern g1="underscore" g2="currency,currency.lf,currency.osf,currency.sc" k="10" />
  2390. <hkern g1="underscore" g2="plus,less,equal,greater,asciitilde,logicalnot,plusminus,multiply,divide,minus,infinity,approxequal,notequal,lessequal,greaterequal" k="20" />
  2391. <hkern g1="underscore" g2="plus.osf,minus.osf,multiply.osf,divide.osf,equal.osf,notequal.osf,greater.osf,less.osf,greaterequal.osf,lessequal.osf,plusminus.osf,approxequal.osf,logicalnot.osf,infinity.osf" k="20" />
  2392. <hkern g1="underscore" g2="yen,yen.lf,yen.osf,yen.sc" k="5" />
  2393. <hkern g1="x" g2="napostrophe,quoteright,quotedblright,quotedblright.caps,quoteright.caps" k="30" />
  2394. <hkern g1="x" g2="a,d,q,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,amacron,abreve,aogonek,dcaron,dcroat,acaron,aringacute,aeacute,ddotbelow,adotbelow" k="15" />
  2395. <hkern g1="x" g2="c,e,o,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oslash,cacute,ccircumflex,cdotaccent,ccaron,emacron,ebreve,edotaccent,eogonek,ecaron,omacron,obreve,ohungarumlaut,oe,ocaron,oogonek,oslashacute,edotbelow,etilde,odotbelow,c_h,c_t" k="15" />
  2396. <hkern g1="x" g2="s,sacute,scircumflex,scedilla,scaron,scommaaccent,sdotbelow,s_h" k="10" />
  2397. <hkern g1="x" g2="g,gcircumflex,gbreve,gdotaccent,gcommaaccent,gcaron,gacute" k="10" />
  2398. <hkern g1="x" g2="t,tcedilla,tcaron,tbar,tcommaaccent,tdotbelow" k="10" />
  2399. <hkern g1="x" g2="u,ugrave,uacute,ucircumflex,udieresis,utilde,umacron,ubreve,uring,uhungarumlaut,uogonek,ucaron,udieresismacron,udieresisacute,udieresiscaron,udieresisgrave,udotbelow" k="10" />
  2400. <hkern g1="x" g2="f,germandbls,Germandbls,fi,fl" k="10" />
  2401. <hkern g1="x" g2="numbersign,numbersign.lf,numbersign.osf,numbersign.sc" k="40" />
  2402. <hkern g1="x" g2="braceleft,braceleft.caps,braceleft.sc" k="10" />
  2403. <hkern g1="x" g2="j,jcircumflex,dotlessj,nhookleft,jacute" k="15" />
  2404. <hkern g1="x.sc" g2="periodcentered,bullet,periodcentered.caps,bullet.caps,periodcentered.sc,bullet.sc" k="50" />
  2405. <hkern g1="x.sc" g2="a.sc,aacute.sc,abreve.sc,acaron.sc,acircumflex.sc,adieresis.sc,adotbelow.sc,agrave.sc,amacron.sc,aogonek.sc,aring.sc,aringacute.sc,atilde.sc,ae.sc,aeacute.sc" k="20" />
  2406. <hkern g1="x.sc" g2="c.sc,cacute.sc,ccaron.sc,ccedilla.sc,ccircumflex.sc,cdotaccent.sc,schwa.sc,g.sc,gacute.sc,gbreve.sc,gcaron.sc,gcircumflex.sc,gcommaaccent.sc,gdotaccent.sc,o.sc,oacute.sc,obreve.sc,ocaron.sc,ocircumflex.sc,odieresis.sc,odotbelow.sc,ograve.sc,ohungarumlaut.sc,omacron.sc,oogonek.sc,oslash.sc,oslashacute.sc,otilde.sc,oe.sc,q.sc" k="25" />
  2407. <hkern g1="x.sc" g2="b.sc,d.sc,eth.sc,dcaron.sc,dcroat.sc,ddotbelow.sc,e.sc,eacute.sc,ebreve.sc,ecaron.sc,ecircumflex.sc,edieresis.sc,edotaccent.sc,edotbelow.sc,egrave.sc,emacron.sc,eogonek.sc,etilde.sc,f.sc,h.sc,hbar.sc,hcircumflex.sc,hdotbelow.sc,i.sc,dotlessi.sc,iacute.sc,ibreve.sc,icaron.sc,icircumflex.sc,idieresis.sc,idotaccent.sc,idotbelow.sc,igrave.sc,ij.sc,imacron.sc,iogonek.sc,itilde.sc,k.sc,kcommaaccent.sc,kgreenlandic.sc,l.sc,lacute.sc,lcaron.sc,lcommaaccent.sc,ldot.sc,lslash.sc,n.sc,nacute.sc,ncaron.sc,ncommaaccent.sc,ndotaccent.sc,eng.sc,ntilde.sc,p.sc,thorn.sc,r.sc,racute.sc,rcaron.sc,rcommaaccent.sc,rdotbelow.sc,germandbls.sc" k="10" />
  2408. <hkern g1="x.sc" g2="numbersign,numbersign.lf,numbersign.osf,numbersign.sc" k="40" />
  2409. <hkern g1="x.sc" g2="s.sc,sacute.sc,scaron.sc,scedilla.sc,scircumflex.sc,scommaaccent.sc,sdotbelow.sc" k="10" />
  2410. <hkern g1="x.sc" g2="slash,slash.caps,slash.sc" k="10" />
  2411. <hkern g1="x.sc" g2="t.sc,tbar.sc,tcaron.sc,tcedilla.sc,tcommaaccent.sc,tdotbelow.sc" k="20" />
  2412. <hkern g1="x.sc" g2="u.sc,uacute.sc,ubreve.sc,ucaron.sc,ucircumflex.sc,udieresis.sc,udieresisacute.sc,udieresiscaron.sc,udieresisgrave.sc,udieresismacron.sc,udotbelow.sc,ugrave.sc,uhungarumlaut.sc,umacron.sc,uogonek.sc,uring.sc,utilde.sc" k="10" />
  2413. <hkern g1="x.sc" g2="v.sc,w.sc,wacute.sc,wcircumflex.sc,wdieresis.sc,wgrave.sc" k="5" />
  2414. <hkern g1="x.sc" g2="euro,euro.lf,euro.osf,euro.sc" k="50" />
  2415. <hkern g1="zero.numerator,one.numerator,two.numerator,three.numerator,four.numerator,five.numerator,six.numerator,seven.numerator,eight.numerator,nine.numerator" g2="fraction" k="130" />
  2416. <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,Amacron,Abreve,Aogonek,Acaron,Aringacute,Adotbelow" g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,Cacute,Ccircumflex,Cdotaccent,Ccaron,Gcircumflex,Gbreve,Gdotaccent,Gcommaaccent,Omacron,Obreve,Ohungarumlaut,OE,Ocaron,Gcaron,Oogonek,Gacute,Oslashacute,Odotbelow" k="20" />
  2417. <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,Amacron,Abreve,Aogonek,Acaron,Aringacute,Adotbelow" g2="T,Tcedilla,Tcaron,Tbar,Tcommaaccent,Tdotbelow" k="30" />
  2418. <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,Amacron,Abreve,Aogonek,Acaron,Aringacute,Adotbelow" g2="U,Ugrave,Uacute,Ucircumflex,Udieresis,Utilde,Umacron,Ubreve,Uring,Uhungarumlaut,Uogonek,Ucaron,Udieresismacron,Udieresisacute,Udieresiscaron,Udieresisgrave,Udotbelow" k="15" />
  2419. <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,Amacron,Abreve,Aogonek,Acaron,Aringacute,Adotbelow" g2="V,W,Wcircumflex,Wgrave,Wacute,Wdieresis" k="25" />
  2420. <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,Amacron,Abreve,Aogonek,Acaron,Aringacute,Adotbelow" g2="Y,Yacute,Ycircumflex,Ydieresis,Ymacron,Ygrave,Ytilde" k="25" />
  2421. <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,Amacron,Abreve,Aogonek,Acaron,Aringacute,Adotbelow" g2="ampersand,ampersand.caps,ampersand.sc" k="30" />
  2422. <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,Amacron,Abreve,Aogonek,Acaron,Aringacute,Adotbelow" g2="asterisk,asterisk.caps,asterisk.sc" k="110" />
  2423. <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,Amacron,Abreve,Aogonek,Acaron,Aringacute,Adotbelow" g2="bracketright,bracketright.caps,bracketright.sc" k="20" />
  2424. <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,Amacron,Abreve,Aogonek,Acaron,Aringacute,Adotbelow" g2="guillemetleft,guilsinglleft,guillemetleft.caps,guilsinglleft.caps,guillemetleft.sc,guilsinglleft.sc" k="40" />
  2425. <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,Amacron,Abreve,Aogonek,Acaron,Aringacute,Adotbelow" g2="question,question.caps,question.sc" k="50" />
  2426. <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,Amacron,Abreve,Aogonek,Acaron,Aringacute,Adotbelow" g2="quotedbl,quotesingle,quotedbl.caps,quotesingle.caps,quotedbl.sc,quotesingle.sc" k="100" />
  2427. <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,Amacron,Abreve,Aogonek,Acaron,Aringacute,Adotbelow" g2="quoteleft,quotedblleft,quotedblleft.caps,quoteleft.caps" k="140" />
  2428. <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,Amacron,Abreve,Aogonek,Acaron,Aringacute,Adotbelow" g2="napostrophe,quoteright,quotedblright,quotedblright.caps,quoteright.caps" k="120" />
  2429. <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,Amacron,Abreve,Aogonek,Acaron,Aringacute,Adotbelow" g2="S,Sacute,Scircumflex,Scedilla,Scaron,Scommaaccent,Sdotbelow" k="5" />
  2430. <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,Amacron,Abreve,Aogonek,Acaron,Aringacute,Adotbelow" g2="a,d,q,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,amacron,abreve,aogonek,dcaron,dcroat,acaron,aringacute,aeacute,ddotbelow,adotbelow" k="10" />
  2431. <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,Amacron,Abreve,Aogonek,Acaron,Aringacute,Adotbelow" g2="exclam,exclamdown,exclam.caps,exclamdown.caps,exclam.sc,exclamdown.sc" k="30" />
  2432. <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,Amacron,Abreve,Aogonek,Acaron,Aringacute,Adotbelow" g2="c,e,o,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oslash,cacute,ccircumflex,cdotaccent,ccaron,emacron,ebreve,edotaccent,eogonek,ecaron,omacron,obreve,ohungarumlaut,oe,ocaron,oogonek,oslashacute,edotbelow,etilde,odotbelow,c_h,c_t" k="15" />
  2433. <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,Amacron,Abreve,Aogonek,Acaron,Aringacute,Adotbelow" g2="s,sacute,scircumflex,scedilla,scaron,scommaaccent,sdotbelow,s_h" k="20" />
  2434. <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,Amacron,Abreve,Aogonek,Acaron,Aringacute,Adotbelow" g2="g,gcircumflex,gbreve,gdotaccent,gcommaaccent,gcaron,gacute" k="15" />
  2435. <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,Amacron,Abreve,Aogonek,Acaron,Aringacute,Adotbelow" g2="hyphen,endash,emdash,hyphen.caps,endash.caps,emdash.caps,hyphen.sc,endash.sc,emdash.sc" k="20" />
  2436. <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,Amacron,Abreve,Aogonek,Acaron,Aringacute,Adotbelow" g2="m,n,p,r,ntilde,dotlessi,kgreenlandic,nacute,ncommaaccent,ncaron,eng,racute,rcommaaccent,rcaron,ndotaccent,rdotbelow" k="5" />
  2437. <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,Amacron,Abreve,Aogonek,Acaron,Aringacute,Adotbelow" g2="t,tcedilla,tcaron,tbar,tcommaaccent,tdotbelow" k="20" />
  2438. <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,Amacron,Abreve,Aogonek,Acaron,Aringacute,Adotbelow" g2="u,ugrave,uacute,ucircumflex,udieresis,utilde,umacron,ubreve,uring,uhungarumlaut,uogonek,ucaron,udieresismacron,udieresisacute,udieresiscaron,udieresisgrave,udotbelow" k="15" />
  2439. <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,Amacron,Abreve,Aogonek,Acaron,Aringacute,Adotbelow" g2="v,w,wcircumflex,wgrave,wacute,wdieresis" k="15" />
  2440. <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,Amacron,Abreve,Aogonek,Acaron,Aringacute,Adotbelow" g2="y,yacute,ydieresis,ycircumflex,ymacron,ygrave,ytilde" k="15" />
  2441. <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,Amacron,Abreve,Aogonek,Acaron,Aringacute,Adotbelow" g2="i,igrave,iacute,icircumflex,idieresis,itilde,imacron,ibreve,iogonek,ij,icaron,idotbelow,ijacute" k="5" />
  2442. <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,Amacron,Abreve,Aogonek,Acaron,Aringacute,Adotbelow" g2="z,zacute,zdotaccent,zcaron,zdotbelow" k="5" />
  2443. <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,Amacron,Abreve,Aogonek,Acaron,Aringacute,Adotbelow" g2="slash,slash.caps,slash.sc" k="-20" />
  2444. <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,Amacron,Abreve,Aogonek,Acaron,Aringacute,Adotbelow" g2="backslash,backslash.caps,backslash.sc" k="10" />
  2445. <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,Amacron,Abreve,Aogonek,Acaron,Aringacute,Adotbelow" g2="X" k="5" />
  2446. <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,Amacron,Abreve,Aogonek,Acaron,Aringacute,Adotbelow" g2="trademark" k="60" />
  2447. <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,Amacron,Abreve,Aogonek,Acaron,Aringacute,Adotbelow" g2="x" k="10" />
  2448. <hkern g1="C,Ccedilla,Cacute,Ccircumflex,Cdotaccent,Ccaron" g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,Cacute,Ccircumflex,Cdotaccent,Ccaron,Gcircumflex,Gbreve,Gdotaccent,Gcommaaccent,Omacron,Obreve,Ohungarumlaut,OE,Ocaron,Gcaron,Oogonek,Gacute,Oslashacute,Odotbelow" k="15" />
  2449. <hkern g1="C,Ccedilla,Cacute,Ccircumflex,Cdotaccent,Ccaron" g2="U,Ugrave,Uacute,Ucircumflex,Udieresis,Utilde,Umacron,Ubreve,Uring,Uhungarumlaut,Uogonek,Ucaron,Udieresismacron,Udieresisacute,Udieresiscaron,Udieresisgrave,Udotbelow" k="10" />
  2450. <hkern g1="C,Ccedilla,Cacute,Ccircumflex,Cdotaccent,Ccaron" g2="Y,Yacute,Ycircumflex,Ydieresis,Ymacron,Ygrave,Ytilde" k="5" />
  2451. <hkern g1="C,Ccedilla,Cacute,Ccircumflex,Cdotaccent,Ccaron" g2="ampersand,ampersand.caps,ampersand.sc" k="40" />
  2452. <hkern g1="C,Ccedilla,Cacute,Ccircumflex,Cdotaccent,Ccaron" g2="braceright,braceright.caps,braceright.sc" k="-80" />
  2453. <hkern g1="C,Ccedilla,Cacute,Ccircumflex,Cdotaccent,Ccaron" g2="bracketright,bracketright.caps,bracketright.sc" k="-10" />
  2454. <hkern g1="C,Ccedilla,Cacute,Ccircumflex,Cdotaccent,Ccaron" g2="guillemetleft,guilsinglleft,guillemetleft.caps,guilsinglleft.caps,guillemetleft.sc,guilsinglleft.sc" k="30" />
  2455. <hkern g1="C,Ccedilla,Cacute,Ccircumflex,Cdotaccent,Ccaron" g2="question,question.caps,question.sc" k="-40" />
  2456. <hkern g1="C,Ccedilla,Cacute,Ccircumflex,Cdotaccent,Ccaron" g2="quoteleft,quotedblleft,quotedblleft.caps,quoteleft.caps" k="10" />
  2457. <hkern g1="C,Ccedilla,Cacute,Ccircumflex,Cdotaccent,Ccaron" g2="napostrophe,quoteright,quotedblright,quotedblright.caps,quoteright.caps" k="-40" />
  2458. <hkern g1="C,Ccedilla,Cacute,Ccircumflex,Cdotaccent,Ccaron" g2="S,Sacute,Scircumflex,Scedilla,Scaron,Scommaaccent,Sdotbelow" k="5" />
  2459. <hkern g1="C,Ccedilla,Cacute,Ccircumflex,Cdotaccent,Ccaron" g2="exclam,exclamdown,exclam.caps,exclamdown.caps,exclam.sc,exclamdown.sc" k="-20" />
  2460. <hkern g1="C,Ccedilla,Cacute,Ccircumflex,Cdotaccent,Ccaron" g2="hyphen,endash,emdash,hyphen.caps,endash.caps,emdash.caps,hyphen.sc,endash.sc,emdash.sc" k="10" />
  2461. <hkern g1="C,Ccedilla,Cacute,Ccircumflex,Cdotaccent,Ccaron" g2="y.sc,yacute.sc,ycircumflex.sc,ydieresis.sc,ygrave.sc,ymacron.sc,ytilde.sc" k="15" />
  2462. <hkern g1="C,Ccedilla,Cacute,Ccircumflex,Cdotaccent,Ccaron" g2="slash,slash.caps,slash.sc" k="-40" />
  2463. <hkern g1="C,Ccedilla,Cacute,Ccircumflex,Cdotaccent,Ccaron" g2="backslash,backslash.caps,backslash.sc" k="-20" />
  2464. <hkern g1="C,Ccedilla,Cacute,Ccircumflex,Cdotaccent,Ccaron" g2="guillemetright,guilsinglright,guillemetright.caps,guilsinglright.caps,guillemetright.sc,guilsinglright.sc" k="-20" />
  2465. <hkern g1="C,Ccedilla,Cacute,Ccircumflex,Cdotaccent,Ccaron" g2="parenright,parenright.caps,parenright.sc" k="-60" />
  2466. <hkern g1="C,Ccedilla,Cacute,Ccircumflex,Cdotaccent,Ccaron" g2="trademark" k="-40" />
  2467. <hkern g1="D,O,Q,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,eth,Dcaron,Dcroat,Omacron,Obreve,Ohungarumlaut,Schwa,Ocaron,Oogonek,Oslashacute,Ddotbelow,Odotbelow" g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE,Amacron,Abreve,Aogonek,Acaron,Aringacute,AEacute,Adotbelow" k="10" />
  2468. <hkern g1="D,O,Q,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,eth,Dcaron,Dcroat,Omacron,Obreve,Ohungarumlaut,Schwa,Ocaron,Oogonek,Oslashacute,Ddotbelow,Odotbelow" g2="B,D,E,F,H,I,K,L,N,P,R,Egrave,Eacute,Ecircumflex,Edieresis,Igrave,Iacute,Icircumflex,Idieresis,Eth,Ntilde,Thorn,Dcaron,Dcroat,Emacron,Ebreve,Edotaccent,Eogonek,Ecaron,Hcircumflex,Hbar,Itilde,Imacron,Ibreve,Iogonek,Idotaccent,IJ,Kcommaaccent,Lacute,Lcommaaccent,Lcaron,Ldot,Lslash,Nacute,Ncommaaccent,Ncaron,Eng,Racute,Rcommaaccent,Rcaron,Icaron,Ddotbelow,Hdotbelow,Ndotaccent,Rdotbelow,Edotbelow,Etilde,Idotbelow,IJacute" k="20" />
  2469. <hkern g1="D,O,Q,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,eth,Dcaron,Dcroat,Omacron,Obreve,Ohungarumlaut,Schwa,Ocaron,Oogonek,Oslashacute,Ddotbelow,Odotbelow" g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,Cacute,Ccircumflex,Cdotaccent,Ccaron,Gcircumflex,Gbreve,Gdotaccent,Gcommaaccent,Omacron,Obreve,Ohungarumlaut,OE,Ocaron,Gcaron,Oogonek,Gacute,Oslashacute,Odotbelow" k="5" />
  2470. <hkern g1="D,O,Q,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,eth,Dcaron,Dcroat,Omacron,Obreve,Ohungarumlaut,Schwa,Ocaron,Oogonek,Oslashacute,Ddotbelow,Odotbelow" g2="T,Tcedilla,Tcaron,Tbar,Tcommaaccent,Tdotbelow" k="25" />
  2471. <hkern g1="D,O,Q,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,eth,Dcaron,Dcroat,Omacron,Obreve,Ohungarumlaut,Schwa,Ocaron,Oogonek,Oslashacute,Ddotbelow,Odotbelow" g2="U,Ugrave,Uacute,Ucircumflex,Udieresis,Utilde,Umacron,Ubreve,Uring,Uhungarumlaut,Uogonek,Ucaron,Udieresismacron,Udieresisacute,Udieresiscaron,Udieresisgrave,Udotbelow" k="10" />
  2472. <hkern g1="D,O,Q,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,eth,Dcaron,Dcroat,Omacron,Obreve,Ohungarumlaut,Schwa,Ocaron,Oogonek,Oslashacute,Ddotbelow,Odotbelow" g2="V,W,Wcircumflex,Wgrave,Wacute,Wdieresis" k="25" />
  2473. <hkern g1="D,O,Q,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,eth,Dcaron,Dcroat,Omacron,Obreve,Ohungarumlaut,Schwa,Ocaron,Oogonek,Oslashacute,Ddotbelow,Odotbelow" g2="Y,Yacute,Ycircumflex,Ydieresis,Ymacron,Ygrave,Ytilde" k="25" />
  2474. <hkern g1="D,O,Q,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,eth,Dcaron,Dcroat,Omacron,Obreve,Ohungarumlaut,Schwa,Ocaron,Oogonek,Oslashacute,Ddotbelow,Odotbelow" g2="asterisk,asterisk.caps,asterisk.sc" k="70" />
  2475. <hkern g1="D,O,Q,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,eth,Dcaron,Dcroat,Omacron,Obreve,Ohungarumlaut,Schwa,Ocaron,Oogonek,Oslashacute,Ddotbelow,Odotbelow" g2="braceright,braceright.caps,braceright.sc" k="10" />
  2476. <hkern g1="D,O,Q,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,eth,Dcaron,Dcroat,Omacron,Obreve,Ohungarumlaut,Schwa,Ocaron,Oogonek,Oslashacute,Ddotbelow,Odotbelow" g2="bracketright,bracketright.caps,bracketright.sc" k="70" />
  2477. <hkern g1="D,O,Q,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,eth,Dcaron,Dcroat,Omacron,Obreve,Ohungarumlaut,Schwa,Ocaron,Oogonek,Oslashacute,Ddotbelow,Odotbelow" g2="question,question.caps,question.sc" k="20" />
  2478. <hkern g1="D,O,Q,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,eth,Dcaron,Dcroat,Omacron,Obreve,Ohungarumlaut,Schwa,Ocaron,Oogonek,Oslashacute,Ddotbelow,Odotbelow" g2="quotedbl,quotesingle,quotedbl.caps,quotesingle.caps,quotedbl.sc,quotesingle.sc" k="40" />
  2479. <hkern g1="D,O,Q,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,eth,Dcaron,Dcroat,Omacron,Obreve,Ohungarumlaut,Schwa,Ocaron,Oogonek,Oslashacute,Ddotbelow,Odotbelow" g2="quoteleft,quotedblleft,quotedblleft.caps,quoteleft.caps" k="80" />
  2480. <hkern g1="D,O,Q,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,eth,Dcaron,Dcroat,Omacron,Obreve,Ohungarumlaut,Schwa,Ocaron,Oogonek,Oslashacute,Ddotbelow,Odotbelow" g2="napostrophe,quoteright,quotedblright,quotedblright.caps,quoteright.caps" k="50" />
  2481. <hkern g1="D,O,Q,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,eth,Dcaron,Dcroat,Omacron,Obreve,Ohungarumlaut,Schwa,Ocaron,Oogonek,Oslashacute,Ddotbelow,Odotbelow" g2="S,Sacute,Scircumflex,Scedilla,Scaron,Scommaaccent,Sdotbelow" k="10" />
  2482. <hkern g1="D,O,Q,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,eth,Dcaron,Dcroat,Omacron,Obreve,Ohungarumlaut,Schwa,Ocaron,Oogonek,Oslashacute,Ddotbelow,Odotbelow" g2="a,d,q,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,amacron,abreve,aogonek,dcaron,dcroat,acaron,aringacute,aeacute,ddotbelow,adotbelow" k="20" />
  2483. <hkern g1="D,O,Q,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,eth,Dcaron,Dcroat,Omacron,Obreve,Ohungarumlaut,Schwa,Ocaron,Oogonek,Oslashacute,Ddotbelow,Odotbelow" g2="exclam,exclamdown,exclam.caps,exclamdown.caps,exclam.sc,exclamdown.sc" k="30" />
  2484. <hkern g1="D,O,Q,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,eth,Dcaron,Dcroat,Omacron,Obreve,Ohungarumlaut,Schwa,Ocaron,Oogonek,Oslashacute,Ddotbelow,Odotbelow" g2="c,e,o,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oslash,cacute,ccircumflex,cdotaccent,ccaron,emacron,ebreve,edotaccent,eogonek,ecaron,omacron,obreve,ohungarumlaut,oe,ocaron,oogonek,oslashacute,edotbelow,etilde,odotbelow,c_h,c_t" k="15" />
  2485. <hkern g1="D,O,Q,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,eth,Dcaron,Dcroat,Omacron,Obreve,Ohungarumlaut,Schwa,Ocaron,Oogonek,Oslashacute,Ddotbelow,Odotbelow" g2="s,sacute,scircumflex,scedilla,scaron,scommaaccent,sdotbelow,s_h" k="15" />
  2486. <hkern g1="D,O,Q,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,eth,Dcaron,Dcroat,Omacron,Obreve,Ohungarumlaut,Schwa,Ocaron,Oogonek,Oslashacute,Ddotbelow,Odotbelow" g2="Z,Zacute,Zdotaccent,Zcaron,Zdotbelow" k="5" />
  2487. <hkern g1="D,O,Q,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,eth,Dcaron,Dcroat,Omacron,Obreve,Ohungarumlaut,Schwa,Ocaron,Oogonek,Oslashacute,Ddotbelow,Odotbelow" g2="g,gcircumflex,gbreve,gdotaccent,gcommaaccent,gcaron,gacute" k="15" />
  2488. <hkern g1="D,O,Q,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,eth,Dcaron,Dcroat,Omacron,Obreve,Ohungarumlaut,Schwa,Ocaron,Oogonek,Oslashacute,Ddotbelow,Odotbelow" g2="hyphen,endash,emdash,hyphen.caps,endash.caps,emdash.caps,hyphen.sc,endash.sc,emdash.sc" k="-20" />
  2489. <hkern g1="D,O,Q,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,eth,Dcaron,Dcroat,Omacron,Obreve,Ohungarumlaut,Schwa,Ocaron,Oogonek,Oslashacute,Ddotbelow,Odotbelow" g2="comma,period,quotesinglbase,quotedblbase,ellipsis,quotesinglbase.caps,quotedblbase.caps,quotesinglbase.sc,quotedblbase.sc" k="80" />
  2490. <hkern g1="D,O,Q,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,eth,Dcaron,Dcroat,Omacron,Obreve,Ohungarumlaut,Schwa,Ocaron,Oogonek,Oslashacute,Ddotbelow,Odotbelow" g2="t,tcedilla,tcaron,tbar,tcommaaccent,tdotbelow" k="5" />
  2491. <hkern g1="D,O,Q,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,eth,Dcaron,Dcroat,Omacron,Obreve,Ohungarumlaut,Schwa,Ocaron,Oogonek,Oslashacute,Ddotbelow,Odotbelow" g2="u,ugrave,uacute,ucircumflex,udieresis,utilde,umacron,ubreve,uring,uhungarumlaut,uogonek,ucaron,udieresismacron,udieresisacute,udieresiscaron,udieresisgrave,udotbelow" k="5" />
  2492. <hkern g1="D,O,Q,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,eth,Dcaron,Dcroat,Omacron,Obreve,Ohungarumlaut,Schwa,Ocaron,Oogonek,Oslashacute,Ddotbelow,Odotbelow" g2="v,w,wcircumflex,wgrave,wacute,wdieresis" k="10" />
  2493. <hkern g1="D,O,Q,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,eth,Dcaron,Dcroat,Omacron,Obreve,Ohungarumlaut,Schwa,Ocaron,Oogonek,Oslashacute,Ddotbelow,Odotbelow" g2="y,yacute,ydieresis,ycircumflex,ymacron,ygrave,ytilde" k="20" />
  2494. <hkern g1="D,O,Q,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,eth,Dcaron,Dcroat,Omacron,Obreve,Ohungarumlaut,Schwa,Ocaron,Oogonek,Oslashacute,Ddotbelow,Odotbelow" g2="z,zacute,zdotaccent,zcaron,zdotbelow" k="10" />
  2495. <hkern g1="D,O,Q,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,eth,Dcaron,Dcroat,Omacron,Obreve,Ohungarumlaut,Schwa,Ocaron,Oogonek,Oslashacute,Ddotbelow,Odotbelow" g2="numbersign,numbersign.lf,numbersign.osf,numbersign.sc" k="30" />
  2496. <hkern g1="D,O,Q,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,eth,Dcaron,Dcroat,Omacron,Obreve,Ohungarumlaut,Schwa,Ocaron,Oogonek,Oslashacute,Ddotbelow,Odotbelow" g2="X" k="10" />
  2497. <hkern g1="D,O,Q,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,eth,Dcaron,Dcroat,Omacron,Obreve,Ohungarumlaut,Schwa,Ocaron,Oogonek,Oslashacute,Ddotbelow,Odotbelow" g2="x" k="20" />
  2498. <hkern g1="D,O,Q,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,eth,Dcaron,Dcroat,Omacron,Obreve,Ohungarumlaut,Schwa,Ocaron,Oogonek,Oslashacute,Ddotbelow,Odotbelow" g2="M" k="5" />
  2499. <hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,Emacron,Ebreve,Edotaccent,Eogonek,Ecaron,OE,AEacute,Edotbelow,Etilde" g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE,Amacron,Abreve,Aogonek,Acaron,Aringacute,AEacute,Adotbelow" k="10" />
  2500. <hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,Emacron,Ebreve,Edotaccent,Eogonek,Ecaron,OE,AEacute,Edotbelow,Etilde" g2="B,D,E,F,H,I,K,L,N,P,R,Egrave,Eacute,Ecircumflex,Edieresis,Igrave,Iacute,Icircumflex,Idieresis,Eth,Ntilde,Thorn,Dcaron,Dcroat,Emacron,Ebreve,Edotaccent,Eogonek,Ecaron,Hcircumflex,Hbar,Itilde,Imacron,Ibreve,Iogonek,Idotaccent,IJ,Kcommaaccent,Lacute,Lcommaaccent,Lcaron,Ldot,Lslash,Nacute,Ncommaaccent,Ncaron,Eng,Racute,Rcommaaccent,Rcaron,Icaron,Ddotbelow,Hdotbelow,Ndotaccent,Rdotbelow,Edotbelow,Etilde,Idotbelow,IJacute" k="20" />
  2501. <hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,Emacron,Ebreve,Edotaccent,Eogonek,Ecaron,OE,AEacute,Edotbelow,Etilde" g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,Cacute,Ccircumflex,Cdotaccent,Ccaron,Gcircumflex,Gbreve,Gdotaccent,Gcommaaccent,Omacron,Obreve,Ohungarumlaut,OE,Ocaron,Gcaron,Oogonek,Gacute,Oslashacute,Odotbelow" k="10" />
  2502. <hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,Emacron,Ebreve,Edotaccent,Eogonek,Ecaron,OE,AEacute,Edotbelow,Etilde" g2="U,Ugrave,Uacute,Ucircumflex,Udieresis,Utilde,Umacron,Ubreve,Uring,Uhungarumlaut,Uogonek,Ucaron,Udieresismacron,Udieresisacute,Udieresiscaron,Udieresisgrave,Udotbelow" k="15" />
  2503. <hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,Emacron,Ebreve,Edotaccent,Eogonek,Ecaron,OE,AEacute,Edotbelow,Etilde" g2="V,W,Wcircumflex,Wgrave,Wacute,Wdieresis" k="20" />
  2504. <hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,Emacron,Ebreve,Edotaccent,Eogonek,Ecaron,OE,AEacute,Edotbelow,Etilde" g2="Y,Yacute,Ycircumflex,Ydieresis,Ymacron,Ygrave,Ytilde" k="30" />
  2505. <hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,Emacron,Ebreve,Edotaccent,Eogonek,Ecaron,OE,AEacute,Edotbelow,Etilde" g2="ampersand,ampersand.caps,ampersand.sc" k="70" />
  2506. <hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,Emacron,Ebreve,Edotaccent,Eogonek,Ecaron,OE,AEacute,Edotbelow,Etilde" g2="asterisk,asterisk.caps,asterisk.sc" k="50" />
  2507. <hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,Emacron,Ebreve,Edotaccent,Eogonek,Ecaron,OE,AEacute,Edotbelow,Etilde" g2="bracketright,bracketright.caps,bracketright.sc" k="30" />
  2508. <hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,Emacron,Ebreve,Edotaccent,Eogonek,Ecaron,OE,AEacute,Edotbelow,Etilde" g2="guillemetleft,guilsinglleft,guillemetleft.caps,guilsinglleft.caps,guillemetleft.sc,guilsinglleft.sc" k="60" />
  2509. <hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,Emacron,Ebreve,Edotaccent,Eogonek,Ecaron,OE,AEacute,Edotbelow,Etilde" g2="question,question.caps,question.sc" k="-10" />
  2510. <hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,Emacron,Ebreve,Edotaccent,Eogonek,Ecaron,OE,AEacute,Edotbelow,Etilde" g2="quoteleft,quotedblleft,quotedblleft.caps,quoteleft.caps" k="100" />
  2511. <hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,Emacron,Ebreve,Edotaccent,Eogonek,Ecaron,OE,AEacute,Edotbelow,Etilde" g2="S,Sacute,Scircumflex,Scedilla,Scaron,Scommaaccent,Sdotbelow" k="30" />
  2512. <hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,Emacron,Ebreve,Edotaccent,Eogonek,Ecaron,OE,AEacute,Edotbelow,Etilde" g2="exclam,exclamdown,exclam.caps,exclamdown.caps,exclam.sc,exclamdown.sc" k="10" />
  2513. <hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,Emacron,Ebreve,Edotaccent,Eogonek,Ecaron,OE,AEacute,Edotbelow,Etilde" g2="Z,Zacute,Zdotaccent,Zcaron,Zdotbelow" k="20" />
  2514. <hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,Emacron,Ebreve,Edotaccent,Eogonek,Ecaron,OE,AEacute,Edotbelow,Etilde" g2="guillemetright,guilsinglright,guillemetright.caps,guilsinglright.caps,guillemetright.sc,guilsinglright.sc" k="-10" />
  2515. <hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,Emacron,Ebreve,Edotaccent,Eogonek,Ecaron,OE,AEacute,Edotbelow,Etilde" g2="parenright,parenright.caps,parenright.sc" k="-50" />
  2516. <hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,Emacron,Ebreve,Edotaccent,Eogonek,Ecaron,OE,AEacute,Edotbelow,Etilde" g2="X" k="10" />
  2517. <hkern g1="H,I,N,Igrave,Iacute,Icircumflex,Idieresis,Ntilde,Hcircumflex,Hbar,Itilde,Imacron,Ibreve,Iogonek,Idotaccent,Nacute,Ncommaaccent,Ncaron,Eng,Nhookleft,Icaron,Hdotbelow,Ndotaccent,Idotbelow" g2="T,Tcedilla,Tcaron,Tbar,Tcommaaccent,Tdotbelow" k="5" />
  2518. <hkern g1="H,I,N,Igrave,Iacute,Icircumflex,Idieresis,Ntilde,Hcircumflex,Hbar,Itilde,Imacron,Ibreve,Iogonek,Idotaccent,Nacute,Ncommaaccent,Ncaron,Eng,Nhookleft,Icaron,Hdotbelow,Ndotaccent,Idotbelow" g2="Y,Yacute,Ycircumflex,Ydieresis,Ymacron,Ygrave,Ytilde" k="20" />
  2519. <hkern g1="H,I,N,Igrave,Iacute,Icircumflex,Idieresis,Ntilde,Hcircumflex,Hbar,Itilde,Imacron,Ibreve,Iogonek,Idotaccent,Nacute,Ncommaaccent,Ncaron,Eng,Nhookleft,Icaron,Hdotbelow,Ndotaccent,Idotbelow" g2="ampersand,ampersand.caps,ampersand.sc" k="-10" />
  2520. <hkern g1="H,I,N,Igrave,Iacute,Icircumflex,Idieresis,Ntilde,Hcircumflex,Hbar,Itilde,Imacron,Ibreve,Iogonek,Idotaccent,Nacute,Ncommaaccent,Ncaron,Eng,Nhookleft,Icaron,Hdotbelow,Ndotaccent,Idotbelow" g2="asterisk,asterisk.caps,asterisk.sc" k="20" />
  2521. <hkern g1="H,I,N,Igrave,Iacute,Icircumflex,Idieresis,Ntilde,Hcircumflex,Hbar,Itilde,Imacron,Ibreve,Iogonek,Idotaccent,Nacute,Ncommaaccent,Ncaron,Eng,Nhookleft,Icaron,Hdotbelow,Ndotaccent,Idotbelow" g2="bracketright,bracketright.caps,bracketright.sc" k="70" />
  2522. <hkern g1="H,I,N,Igrave,Iacute,Icircumflex,Idieresis,Ntilde,Hcircumflex,Hbar,Itilde,Imacron,Ibreve,Iogonek,Idotaccent,Nacute,Ncommaaccent,Ncaron,Eng,Nhookleft,Icaron,Hdotbelow,Ndotaccent,Idotbelow" g2="colon,semicolon" k="-10" />
  2523. <hkern g1="H,I,N,Igrave,Iacute,Icircumflex,Idieresis,Ntilde,Hcircumflex,Hbar,Itilde,Imacron,Ibreve,Iogonek,Idotaccent,Nacute,Ncommaaccent,Ncaron,Eng,Nhookleft,Icaron,Hdotbelow,Ndotaccent,Idotbelow" g2="question,question.caps,question.sc" k="20" />
  2524. <hkern g1="H,I,N,Igrave,Iacute,Icircumflex,Idieresis,Ntilde,Hcircumflex,Hbar,Itilde,Imacron,Ibreve,Iogonek,Idotaccent,Nacute,Ncommaaccent,Ncaron,Eng,Nhookleft,Icaron,Hdotbelow,Ndotaccent,Idotbelow" g2="quotedbl,quotesingle,quotedbl.caps,quotesingle.caps,quotedbl.sc,quotesingle.sc" k="30" />
  2525. <hkern g1="H,I,N,Igrave,Iacute,Icircumflex,Idieresis,Ntilde,Hcircumflex,Hbar,Itilde,Imacron,Ibreve,Iogonek,Idotaccent,Nacute,Ncommaaccent,Ncaron,Eng,Nhookleft,Icaron,Hdotbelow,Ndotaccent,Idotbelow" g2="quoteleft,quotedblleft,quotedblleft.caps,quoteleft.caps" k="60" />
  2526. <hkern g1="H,I,N,Igrave,Iacute,Icircumflex,Idieresis,Ntilde,Hcircumflex,Hbar,Itilde,Imacron,Ibreve,Iogonek,Idotaccent,Nacute,Ncommaaccent,Ncaron,Eng,Nhookleft,Icaron,Hdotbelow,Ndotaccent,Idotbelow" g2="napostrophe,quoteright,quotedblright,quotedblright.caps,quoteright.caps" k="40" />
  2527. <hkern g1="H,I,N,Igrave,Iacute,Icircumflex,Idieresis,Ntilde,Hcircumflex,Hbar,Itilde,Imacron,Ibreve,Iogonek,Idotaccent,Nacute,Ncommaaccent,Ncaron,Eng,Nhookleft,Icaron,Hdotbelow,Ndotaccent,Idotbelow" g2="S,Sacute,Scircumflex,Scedilla,Scaron,Scommaaccent,Sdotbelow" k="5" />
  2528. <hkern g1="H,I,N,Igrave,Iacute,Icircumflex,Idieresis,Ntilde,Hcircumflex,Hbar,Itilde,Imacron,Ibreve,Iogonek,Idotaccent,Nacute,Ncommaaccent,Ncaron,Eng,Nhookleft,Icaron,Hdotbelow,Ndotaccent,Idotbelow" g2="exclam,exclamdown,exclam.caps,exclamdown.caps,exclam.sc,exclamdown.sc" k="20" />
  2529. <hkern g1="H,I,N,Igrave,Iacute,Icircumflex,Idieresis,Ntilde,Hcircumflex,Hbar,Itilde,Imacron,Ibreve,Iogonek,Idotaccent,Nacute,Ncommaaccent,Ncaron,Eng,Nhookleft,Icaron,Hdotbelow,Ndotaccent,Idotbelow" g2="comma,period,quotesinglbase,quotedblbase,ellipsis,quotesinglbase.caps,quotedblbase.caps,quotesinglbase.sc,quotedblbase.sc" k="20" />
  2530. <hkern g1="H,I,N,Igrave,Iacute,Icircumflex,Idieresis,Ntilde,Hcircumflex,Hbar,Itilde,Imacron,Ibreve,Iogonek,Idotaccent,Nacute,Ncommaaccent,Ncaron,Eng,Nhookleft,Icaron,Hdotbelow,Ndotaccent,Idotbelow" g2="backslash,backslash.caps,backslash.sc" k="-20" />
  2531. <hkern g1="H,I,N,Igrave,Iacute,Icircumflex,Idieresis,Ntilde,Hcircumflex,Hbar,Itilde,Imacron,Ibreve,Iogonek,Idotaccent,Nacute,Ncommaaccent,Ncaron,Eng,Nhookleft,Icaron,Hdotbelow,Ndotaccent,Idotbelow" g2="guillemetright,guilsinglright,guillemetright.caps,guilsinglright.caps,guillemetright.sc,guilsinglright.sc" k="-10" />
  2532. <hkern g1="H,I,N,Igrave,Iacute,Icircumflex,Idieresis,Ntilde,Hcircumflex,Hbar,Itilde,Imacron,Ibreve,Iogonek,Idotaccent,Nacute,Ncommaaccent,Ncaron,Eng,Nhookleft,Icaron,Hdotbelow,Ndotaccent,Idotbelow" g2="X" k="5" />
  2533. <hkern g1="H,I,N,Igrave,Iacute,Icircumflex,Idieresis,Ntilde,Hcircumflex,Hbar,Itilde,Imacron,Ibreve,Iogonek,Idotaccent,Nacute,Ncommaaccent,Ncaron,Eng,Nhookleft,Icaron,Hdotbelow,Ndotaccent,Idotbelow" g2="trademark" k="-10" />
  2534. <hkern g1="K,Kcommaaccent" g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,Cacute,Ccircumflex,Cdotaccent,Ccaron,Gcircumflex,Gbreve,Gdotaccent,Gcommaaccent,Omacron,Obreve,Ohungarumlaut,OE,Ocaron,Gcaron,Oogonek,Gacute,Oslashacute,Odotbelow" k="15" />
  2535. <hkern g1="K,Kcommaaccent" g2="U,Ugrave,Uacute,Ucircumflex,Udieresis,Utilde,Umacron,Ubreve,Uring,Uhungarumlaut,Uogonek,Ucaron,Udieresismacron,Udieresisacute,Udieresiscaron,Udieresisgrave,Udotbelow" k="10" />
  2536. <hkern g1="K,Kcommaaccent" g2="Y,Yacute,Ycircumflex,Ydieresis,Ymacron,Ygrave,Ytilde" k="10" />
  2537. <hkern g1="K,Kcommaaccent" g2="ampersand,ampersand.caps,ampersand.sc" k="-20" />
  2538. <hkern g1="K,Kcommaaccent" g2="asterisk,asterisk.caps,asterisk.sc" k="10" />
  2539. <hkern g1="K,Kcommaaccent" g2="bracketright,bracketright.caps,bracketright.sc" k="50" />
  2540. <hkern g1="K,Kcommaaccent" g2="guillemetleft,guilsinglleft,guillemetleft.caps,guilsinglleft.caps,guillemetleft.sc,guilsinglleft.sc" k="20" />
  2541. <hkern g1="K,Kcommaaccent" g2="quoteleft,quotedblleft,quotedblleft.caps,quoteleft.caps" k="40" />
  2542. <hkern g1="K,Kcommaaccent" g2="napostrophe,quoteright,quotedblright,quotedblright.caps,quoteright.caps" k="10" />
  2543. <hkern g1="K,Kcommaaccent" g2="periodcentered,bullet,periodcentered.caps,bullet.caps,periodcentered.sc,bullet.sc" k="40" />
  2544. <hkern g1="K,Kcommaaccent" g2="S,Sacute,Scircumflex,Scedilla,Scaron,Scommaaccent,Sdotbelow" k="5" />
  2545. <hkern g1="K,Kcommaaccent" g2="a,d,q,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,amacron,abreve,aogonek,dcaron,dcroat,acaron,aringacute,aeacute,ddotbelow,adotbelow" k="30" />
  2546. <hkern g1="K,Kcommaaccent" g2="exclam,exclamdown,exclam.caps,exclamdown.caps,exclam.sc,exclamdown.sc" k="30" />
  2547. <hkern g1="K,Kcommaaccent" g2="c,e,o,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oslash,cacute,ccircumflex,cdotaccent,ccaron,emacron,ebreve,edotaccent,eogonek,ecaron,omacron,obreve,ohungarumlaut,oe,ocaron,oogonek,oslashacute,edotbelow,etilde,odotbelow,c_h,c_t" k="45" />
  2548. <hkern g1="K,Kcommaaccent" g2="s,sacute,scircumflex,scedilla,scaron,scommaaccent,sdotbelow,s_h" k="25" />
  2549. <hkern g1="K,Kcommaaccent" g2="g,gcircumflex,gbreve,gdotaccent,gcommaaccent,gcaron,gacute" k="30" />
  2550. <hkern g1="K,Kcommaaccent" g2="hyphen,endash,emdash,hyphen.caps,endash.caps,emdash.caps,hyphen.sc,endash.sc,emdash.sc" k="30" />
  2551. <hkern g1="K,Kcommaaccent" g2="m,n,p,r,ntilde,dotlessi,kgreenlandic,nacute,ncommaaccent,ncaron,eng,racute,rcommaaccent,rcaron,ndotaccent,rdotbelow" k="10" />
  2552. <hkern g1="K,Kcommaaccent" g2="comma,period,quotesinglbase,quotedblbase,ellipsis,quotesinglbase.caps,quotedblbase.caps,quotesinglbase.sc,quotedblbase.sc" k="-20" />
  2553. <hkern g1="K,Kcommaaccent" g2="t,tcedilla,tcaron,tbar,tcommaaccent,tdotbelow" k="25" />
  2554. <hkern g1="K,Kcommaaccent" g2="u,ugrave,uacute,ucircumflex,udieresis,utilde,umacron,ubreve,uring,uhungarumlaut,uogonek,ucaron,udieresismacron,udieresisacute,udieresiscaron,udieresisgrave,udotbelow" k="25" />
  2555. <hkern g1="K,Kcommaaccent" g2="v,w,wcircumflex,wgrave,wacute,wdieresis" k="30" />
  2556. <hkern g1="K,Kcommaaccent" g2="y,yacute,ydieresis,ycircumflex,ymacron,ygrave,ytilde" k="30" />
  2557. <hkern g1="K,Kcommaaccent" g2="b,h,k,l,thorn,hcircumflex,hbar,kcommaaccent,lacute,lcommaaccent,lcaron,ldot,lslash,hdotbelow" k="5" />
  2558. <hkern g1="K,Kcommaaccent" g2="i,igrave,iacute,icircumflex,idieresis,itilde,imacron,ibreve,iogonek,ij,icaron,idotbelow,ijacute" k="5" />
  2559. <hkern g1="K,Kcommaaccent" g2="z,zacute,zdotaccent,zcaron,zdotbelow" k="20" />
  2560. <hkern g1="K,Kcommaaccent" g2="y.sc,yacute.sc,ycircumflex.sc,ydieresis.sc,ygrave.sc,ymacron.sc,ytilde.sc" k="30" />
  2561. <hkern g1="K,Kcommaaccent" g2="b.sc,d.sc,eth.sc,dcaron.sc,dcroat.sc,ddotbelow.sc,e.sc,eacute.sc,ebreve.sc,ecaron.sc,ecircumflex.sc,edieresis.sc,edotaccent.sc,edotbelow.sc,egrave.sc,emacron.sc,eogonek.sc,etilde.sc,f.sc,h.sc,hbar.sc,hcircumflex.sc,hdotbelow.sc,i.sc,dotlessi.sc,iacute.sc,ibreve.sc,icaron.sc,icircumflex.sc,idieresis.sc,idotaccent.sc,idotbelow.sc,igrave.sc,ij.sc,imacron.sc,iogonek.sc,itilde.sc,k.sc,kcommaaccent.sc,kgreenlandic.sc,l.sc,lacute.sc,lcaron.sc,lcommaaccent.sc,ldot.sc,lslash.sc,n.sc,nacute.sc,ncaron.sc,ncommaaccent.sc,ndotaccent.sc,eng.sc,ntilde.sc,p.sc,thorn.sc,r.sc,racute.sc,rcaron.sc,rcommaaccent.sc,rdotbelow.sc,germandbls.sc" k="10" />
  2562. <hkern g1="K,Kcommaaccent" g2="slash,slash.caps,slash.sc" k="-10" />
  2563. <hkern g1="K,Kcommaaccent" g2="t.sc,tbar.sc,tcaron.sc,tcedilla.sc,tcommaaccent.sc,tdotbelow.sc" k="30" />
  2564. <hkern g1="K,Kcommaaccent" g2="v.sc,w.sc,wacute.sc,wcircumflex.sc,wdieresis.sc,wgrave.sc" k="40" />
  2565. <hkern g1="K,Kcommaaccent" g2="guillemetright,guilsinglright,guillemetright.caps,guilsinglright.caps,guillemetright.sc,guilsinglright.sc" k="-10" />
  2566. <hkern g1="K,Kcommaaccent" g2="braceleft,braceleft.caps,braceleft.sc" k="10" />
  2567. <hkern g1="K,Kcommaaccent" g2="parenleft,parenleft.caps,parenleft.sc" k="10" />
  2568. <hkern g1="K,Kcommaaccent" g2="x" k="15" />
  2569. <hkern g1="L,Lacute,Lcommaaccent,Lcaron,Ldot,Lslash" g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE,Amacron,Abreve,Aogonek,Acaron,Aringacute,AEacute,Adotbelow" k="5" />
  2570. <hkern g1="L,Lacute,Lcommaaccent,Lcaron,Ldot,Lslash" g2="B,D,E,F,H,I,K,L,N,P,R,Egrave,Eacute,Ecircumflex,Edieresis,Igrave,Iacute,Icircumflex,Idieresis,Eth,Ntilde,Thorn,Dcaron,Dcroat,Emacron,Ebreve,Edotaccent,Eogonek,Ecaron,Hcircumflex,Hbar,Itilde,Imacron,Ibreve,Iogonek,Idotaccent,IJ,Kcommaaccent,Lacute,Lcommaaccent,Lcaron,Ldot,Lslash,Nacute,Ncommaaccent,Ncaron,Eng,Racute,Rcommaaccent,Rcaron,Icaron,Ddotbelow,Hdotbelow,Ndotaccent,Rdotbelow,Edotbelow,Etilde,Idotbelow,IJacute" k="30" />
  2571. <hkern g1="L,Lacute,Lcommaaccent,Lcaron,Ldot,Lslash" g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,Cacute,Ccircumflex,Cdotaccent,Ccaron,Gcircumflex,Gbreve,Gdotaccent,Gcommaaccent,Omacron,Obreve,Ohungarumlaut,OE,Ocaron,Gcaron,Oogonek,Gacute,Oslashacute,Odotbelow" k="50" />
  2572. <hkern g1="L,Lacute,Lcommaaccent,Lcaron,Ldot,Lslash" g2="T,Tcedilla,Tcaron,Tbar,Tcommaaccent,Tdotbelow" k="80" />
  2573. <hkern g1="L,Lacute,Lcommaaccent,Lcaron,Ldot,Lslash" g2="U,Ugrave,Uacute,Ucircumflex,Udieresis,Utilde,Umacron,Ubreve,Uring,Uhungarumlaut,Uogonek,Ucaron,Udieresismacron,Udieresisacute,Udieresiscaron,Udieresisgrave,Udotbelow" k="30" />
  2574. <hkern g1="L,Lacute,Lcommaaccent,Lcaron,Ldot,Lslash" g2="V,W,Wcircumflex,Wgrave,Wacute,Wdieresis" k="70" />
  2575. <hkern g1="L,Lacute,Lcommaaccent,Lcaron,Ldot,Lslash" g2="Y,Yacute,Ycircumflex,Ydieresis,Ymacron,Ygrave,Ytilde" k="80" />
  2576. <hkern g1="L,Lacute,Lcommaaccent,Lcaron,Ldot,Lslash" g2="asterisk,asterisk.caps,asterisk.sc" k="70" />
  2577. <hkern g1="L,Lacute,Lcommaaccent,Lcaron,Ldot,Lslash" g2="bracketright,bracketright.caps,bracketright.sc" k="30" />
  2578. <hkern g1="L,Lacute,Lcommaaccent,Lcaron,Ldot,Lslash" g2="guillemetleft,guilsinglleft,guillemetleft.caps,guilsinglleft.caps,guillemetleft.sc,guilsinglleft.sc" k="80" />
  2579. <hkern g1="L,Lacute,Lcommaaccent,Lcaron,Ldot,Lslash" g2="question,question.caps,question.sc" k="10" />
  2580. <hkern g1="L,Lacute,Lcommaaccent,Lcaron,Ldot,Lslash" g2="quotedbl,quotesingle,quotedbl.caps,quotesingle.caps,quotedbl.sc,quotesingle.sc" k="40" />
  2581. <hkern g1="L,Lacute,Lcommaaccent,Lcaron,Ldot,Lslash" g2="quoteleft,quotedblleft,quotedblleft.caps,quoteleft.caps" k="130" />
  2582. <hkern g1="L,Lacute,Lcommaaccent,Lcaron,Ldot,Lslash" g2="napostrophe,quoteright,quotedblright,quotedblright.caps,quoteright.caps" k="110" />
  2583. <hkern g1="L,Lacute,Lcommaaccent,Lcaron,Ldot,Lslash" g2="periodcentered,bullet,periodcentered.caps,bullet.caps,periodcentered.sc,bullet.sc" k="60" />
  2584. <hkern g1="L,Lacute,Lcommaaccent,Lcaron,Ldot,Lslash" g2="exclam,exclamdown,exclam.caps,exclamdown.caps,exclam.sc,exclamdown.sc" k="20" />
  2585. <hkern g1="L,Lacute,Lcommaaccent,Lcaron,Ldot,Lslash" g2="hyphen,endash,emdash,hyphen.caps,endash.caps,emdash.caps,hyphen.sc,endash.sc,emdash.sc" k="60" />
  2586. <hkern g1="L,Lacute,Lcommaaccent,Lcaron,Ldot,Lslash" g2="y.sc,yacute.sc,ycircumflex.sc,ydieresis.sc,ygrave.sc,ymacron.sc,ytilde.sc" k="80" />
  2587. <hkern g1="L,Lacute,Lcommaaccent,Lcaron,Ldot,Lslash" g2="parenright,parenright.caps,parenright.sc" k="10" />
  2588. <hkern g1="L,Lacute,Lcommaaccent,Lcaron,Ldot,Lslash" g2="quotedblright.sc,quoteright.sc" k="80" />
  2589. <hkern g1="L,Lacute,Lcommaaccent,Lcaron,Ldot,Lslash" g2="X" k="20" />
  2590. <hkern g1="L,Lacute,Lcommaaccent,Lcaron,Ldot,Lslash" g2="dagger,daggerdbl" k="40" />
  2591. <hkern g1="R,Racute,Rcommaaccent,Rcaron,Rdotbelow" g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,Cacute,Ccircumflex,Cdotaccent,Ccaron,Gcircumflex,Gbreve,Gdotaccent,Gcommaaccent,Omacron,Obreve,Ohungarumlaut,OE,Ocaron,Gcaron,Oogonek,Gacute,Oslashacute,Odotbelow" k="10" />
  2592. <hkern g1="R,Racute,Rcommaaccent,Rcaron,Rdotbelow" g2="T,Tcedilla,Tcaron,Tbar,Tcommaaccent,Tdotbelow" k="20" />
  2593. <hkern g1="R,Racute,Rcommaaccent,Rcaron,Rdotbelow" g2="U,Ugrave,Uacute,Ucircumflex,Udieresis,Utilde,Umacron,Ubreve,Uring,Uhungarumlaut,Uogonek,Ucaron,Udieresismacron,Udieresisacute,Udieresiscaron,Udieresisgrave,Udotbelow" k="10" />
  2594. <hkern g1="R,Racute,Rcommaaccent,Rcaron,Rdotbelow" g2="V,W,Wcircumflex,Wgrave,Wacute,Wdieresis" k="10" />
  2595. <hkern g1="R,Racute,Rcommaaccent,Rcaron,Rdotbelow" g2="Y,Yacute,Ycircumflex,Ydieresis,Ymacron,Ygrave,Ytilde" k="25" />
  2596. <hkern g1="R,Racute,Rcommaaccent,Rcaron,Rdotbelow" g2="asterisk,asterisk.caps,asterisk.sc" k="50" />
  2597. <hkern g1="R,Racute,Rcommaaccent,Rcaron,Rdotbelow" g2="bracketright,bracketright.caps,bracketright.sc" k="50" />
  2598. <hkern g1="R,Racute,Rcommaaccent,Rcaron,Rdotbelow" g2="question,question.caps,question.sc" k="10" />
  2599. <hkern g1="R,Racute,Rcommaaccent,Rcaron,Rdotbelow" g2="quotedbl,quotesingle,quotedbl.caps,quotesingle.caps,quotedbl.sc,quotesingle.sc" k="30" />
  2600. <hkern g1="R,Racute,Rcommaaccent,Rcaron,Rdotbelow" g2="quoteleft,quotedblleft,quotedblleft.caps,quoteleft.caps" k="40" />
  2601. <hkern g1="R,Racute,Rcommaaccent,Rcaron,Rdotbelow" g2="napostrophe,quoteright,quotedblright,quotedblright.caps,quoteright.caps" k="40" />
  2602. <hkern g1="R,Racute,Rcommaaccent,Rcaron,Rdotbelow" g2="a,d,q,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,amacron,abreve,aogonek,dcaron,dcroat,acaron,aringacute,aeacute,ddotbelow,adotbelow" k="10" />
  2603. <hkern g1="R,Racute,Rcommaaccent,Rcaron,Rdotbelow" g2="exclam,exclamdown,exclam.caps,exclamdown.caps,exclam.sc,exclamdown.sc" k="10" />
  2604. <hkern g1="R,Racute,Rcommaaccent,Rcaron,Rdotbelow" g2="c,e,o,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oslash,cacute,ccircumflex,cdotaccent,ccaron,emacron,ebreve,edotaccent,eogonek,ecaron,omacron,obreve,ohungarumlaut,oe,ocaron,oogonek,oslashacute,edotbelow,etilde,odotbelow,c_h,c_t" k="15" />
  2605. <hkern g1="R,Racute,Rcommaaccent,Rcaron,Rdotbelow" g2="s,sacute,scircumflex,scedilla,scaron,scommaaccent,sdotbelow,s_h" k="5" />
  2606. <hkern g1="R,Racute,Rcommaaccent,Rcaron,Rdotbelow" g2="g,gcircumflex,gbreve,gdotaccent,gcommaaccent,gcaron,gacute" k="30" />
  2607. <hkern g1="R,Racute,Rcommaaccent,Rcaron,Rdotbelow" g2="comma,period,quotesinglbase,quotedblbase,ellipsis,quotesinglbase.caps,quotedblbase.caps,quotesinglbase.sc,quotedblbase.sc" k="20" />
  2608. <hkern g1="R,Racute,Rcommaaccent,Rcaron,Rdotbelow" g2="t,tcedilla,tcaron,tbar,tcommaaccent,tdotbelow" k="5" />
  2609. <hkern g1="R,Racute,Rcommaaccent,Rcaron,Rdotbelow" g2="u,ugrave,uacute,ucircumflex,udieresis,utilde,umacron,ubreve,uring,uhungarumlaut,uogonek,ucaron,udieresismacron,udieresisacute,udieresiscaron,udieresisgrave,udotbelow" k="10" />
  2610. <hkern g1="R,Racute,Rcommaaccent,Rcaron,Rdotbelow" g2="v,w,wcircumflex,wgrave,wacute,wdieresis" k="5" />
  2611. <hkern g1="R,Racute,Rcommaaccent,Rcaron,Rdotbelow" g2="y,yacute,ydieresis,ycircumflex,ymacron,ygrave,ytilde" k="5" />
  2612. <hkern g1="R,Racute,Rcommaaccent,Rcaron,Rdotbelow" g2="z,zacute,zdotaccent,zcaron,zdotbelow" k="5" />
  2613. <hkern g1="R,Racute,Rcommaaccent,Rcaron,Rdotbelow" g2="y.sc,yacute.sc,ycircumflex.sc,ydieresis.sc,ygrave.sc,ymacron.sc,ytilde.sc" k="30" />
  2614. <hkern g1="R,Racute,Rcommaaccent,Rcaron,Rdotbelow" g2="slash,slash.caps,slash.sc" k="-30" />
  2615. <hkern g1="R,Racute,Rcommaaccent,Rcaron,Rdotbelow" g2="v.sc,w.sc,wacute.sc,wcircumflex.sc,wdieresis.sc,wgrave.sc" k="20" />
  2616. <hkern g1="R,Racute,Rcommaaccent,Rcaron,Rdotbelow" g2="X" k="5" />
  2617. <hkern g1="R,Racute,Rcommaaccent,Rcaron,Rdotbelow" g2="x" k="10" />
  2618. <hkern g1="T,Tcedilla,Tcaron,Tbar,Tcommaaccent,Tdotbelow" g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE,Amacron,Abreve,Aogonek,Acaron,Aringacute,AEacute,Adotbelow" k="30" />
  2619. <hkern g1="T,Tcedilla,Tcaron,Tbar,Tcommaaccent,Tdotbelow" g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,Cacute,Ccircumflex,Cdotaccent,Ccaron,Gcircumflex,Gbreve,Gdotaccent,Gcommaaccent,Omacron,Obreve,Ohungarumlaut,OE,Ocaron,Gcaron,Oogonek,Gacute,Oslashacute,Odotbelow" k="20" />
  2620. <hkern g1="T,Tcedilla,Tcaron,Tbar,Tcommaaccent,Tdotbelow" g2="T,Tcedilla,Tcaron,Tbar,Tcommaaccent,Tdotbelow" k="5" />
  2621. <hkern g1="T,Tcedilla,Tcaron,Tbar,Tcommaaccent,Tdotbelow" g2="U,Ugrave,Uacute,Ucircumflex,Udieresis,Utilde,Umacron,Ubreve,Uring,Uhungarumlaut,Uogonek,Ucaron,Udieresismacron,Udieresisacute,Udieresiscaron,Udieresisgrave,Udotbelow" k="15" />
  2622. <hkern g1="T,Tcedilla,Tcaron,Tbar,Tcommaaccent,Tdotbelow" g2="V,W,Wcircumflex,Wgrave,Wacute,Wdieresis" k="15" />
  2623. <hkern g1="T,Tcedilla,Tcaron,Tbar,Tcommaaccent,Tdotbelow" g2="Y,Yacute,Ycircumflex,Ydieresis,Ymacron,Ygrave,Ytilde" k="10" />
  2624. <hkern g1="T,Tcedilla,Tcaron,Tbar,Tcommaaccent,Tdotbelow" g2="asterisk,asterisk.caps,asterisk.sc" k="20" />
  2625. <hkern g1="T,Tcedilla,Tcaron,Tbar,Tcommaaccent,Tdotbelow" g2="guillemetleft,guilsinglleft,guillemetleft.caps,guilsinglleft.caps,guillemetleft.sc,guilsinglleft.sc" k="40" />
  2626. <hkern g1="T,Tcedilla,Tcaron,Tbar,Tcommaaccent,Tdotbelow" g2="question,question.caps,question.sc" k="-30" />
  2627. <hkern g1="T,Tcedilla,Tcaron,Tbar,Tcommaaccent,Tdotbelow" g2="quotedbl,quotesingle,quotedbl.caps,quotesingle.caps,quotedbl.sc,quotesingle.sc" k="-40" />
  2628. <hkern g1="T,Tcedilla,Tcaron,Tbar,Tcommaaccent,Tdotbelow" g2="quoteleft,quotedblleft,quotedblleft.caps,quoteleft.caps" k="40" />
  2629. <hkern g1="T,Tcedilla,Tcaron,Tbar,Tcommaaccent,Tdotbelow" g2="napostrophe,quoteright,quotedblright,quotedblright.caps,quoteright.caps" k="-20" />
  2630. <hkern g1="T,Tcedilla,Tcaron,Tbar,Tcommaaccent,Tdotbelow" g2="S,Sacute,Scircumflex,Scedilla,Scaron,Scommaaccent,Sdotbelow" k="10" />
  2631. <hkern g1="T,Tcedilla,Tcaron,Tbar,Tcommaaccent,Tdotbelow" g2="a,d,q,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,amacron,abreve,aogonek,dcaron,dcroat,acaron,aringacute,aeacute,ddotbelow,adotbelow" k="70" />
  2632. <hkern g1="T,Tcedilla,Tcaron,Tbar,Tcommaaccent,Tdotbelow" g2="a.sc,aacute.sc,abreve.sc,acaron.sc,acircumflex.sc,adieresis.sc,adotbelow.sc,agrave.sc,amacron.sc,aogonek.sc,aring.sc,aringacute.sc,atilde.sc,ae.sc,aeacute.sc" k="70" />
  2633. <hkern g1="T,Tcedilla,Tcaron,Tbar,Tcommaaccent,Tdotbelow" g2="exclam,exclamdown,exclam.caps,exclamdown.caps,exclam.sc,exclamdown.sc" k="-20" />
  2634. <hkern g1="T,Tcedilla,Tcaron,Tbar,Tcommaaccent,Tdotbelow" g2="c,e,o,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oslash,cacute,ccircumflex,cdotaccent,ccaron,emacron,ebreve,edotaccent,eogonek,ecaron,omacron,obreve,ohungarumlaut,oe,ocaron,oogonek,oslashacute,edotbelow,etilde,odotbelow,c_h,c_t" k="70" />
  2635. <hkern g1="T,Tcedilla,Tcaron,Tbar,Tcommaaccent,Tdotbelow" g2="s,sacute,scircumflex,scedilla,scaron,scommaaccent,sdotbelow,s_h" k="60" />
  2636. <hkern g1="T,Tcedilla,Tcaron,Tbar,Tcommaaccent,Tdotbelow" g2="Z,Zacute,Zdotaccent,Zcaron,Zdotbelow" k="10" />
  2637. <hkern g1="T,Tcedilla,Tcaron,Tbar,Tcommaaccent,Tdotbelow" g2="c.sc,cacute.sc,ccaron.sc,ccedilla.sc,ccircumflex.sc,cdotaccent.sc,schwa.sc,g.sc,gacute.sc,gbreve.sc,gcaron.sc,gcircumflex.sc,gcommaaccent.sc,gdotaccent.sc,o.sc,oacute.sc,obreve.sc,ocaron.sc,ocircumflex.sc,odieresis.sc,odotbelow.sc,ograve.sc,ohungarumlaut.sc,omacron.sc,oogonek.sc,oslash.sc,oslashacute.sc,otilde.sc,oe.sc,q.sc" k="25" />
  2638. <hkern g1="T,Tcedilla,Tcaron,Tbar,Tcommaaccent,Tdotbelow" g2="g,gcircumflex,gbreve,gdotaccent,gcommaaccent,gcaron,gacute" k="55" />
  2639. <hkern g1="T,Tcedilla,Tcaron,Tbar,Tcommaaccent,Tdotbelow" g2="m,n,p,r,ntilde,dotlessi,kgreenlandic,nacute,ncommaaccent,ncaron,eng,racute,rcommaaccent,rcaron,ndotaccent,rdotbelow" k="45" />
  2640. <hkern g1="T,Tcedilla,Tcaron,Tbar,Tcommaaccent,Tdotbelow" g2="t,tcedilla,tcaron,tbar,tcommaaccent,tdotbelow" k="30" />
  2641. <hkern g1="T,Tcedilla,Tcaron,Tbar,Tcommaaccent,Tdotbelow" g2="u,ugrave,uacute,ucircumflex,udieresis,utilde,umacron,ubreve,uring,uhungarumlaut,uogonek,ucaron,udieresismacron,udieresisacute,udieresiscaron,udieresisgrave,udotbelow" k="35" />
  2642. <hkern g1="T,Tcedilla,Tcaron,Tbar,Tcommaaccent,Tdotbelow" g2="v,w,wcircumflex,wgrave,wacute,wdieresis" k="60" />
  2643. <hkern g1="T,Tcedilla,Tcaron,Tbar,Tcommaaccent,Tdotbelow" g2="y,yacute,ydieresis,ycircumflex,ymacron,ygrave,ytilde" k="60" />
  2644. <hkern g1="T,Tcedilla,Tcaron,Tbar,Tcommaaccent,Tdotbelow" g2="f,germandbls,Germandbls,fi,fl" k="5" />
  2645. <hkern g1="T,Tcedilla,Tcaron,Tbar,Tcommaaccent,Tdotbelow" g2="i,igrave,iacute,icircumflex,idieresis,itilde,imacron,ibreve,iogonek,ij,icaron,idotbelow,ijacute" k="10" />
  2646. <hkern g1="T,Tcedilla,Tcaron,Tbar,Tcommaaccent,Tdotbelow" g2="z,zacute,zdotaccent,zcaron,zdotbelow" k="65" />
  2647. <hkern g1="T,Tcedilla,Tcaron,Tbar,Tcommaaccent,Tdotbelow" g2="b.sc,d.sc,eth.sc,dcaron.sc,dcroat.sc,ddotbelow.sc,e.sc,eacute.sc,ebreve.sc,ecaron.sc,ecircumflex.sc,edieresis.sc,edotaccent.sc,edotbelow.sc,egrave.sc,emacron.sc,eogonek.sc,etilde.sc,f.sc,h.sc,hbar.sc,hcircumflex.sc,hdotbelow.sc,i.sc,dotlessi.sc,iacute.sc,ibreve.sc,icaron.sc,icircumflex.sc,idieresis.sc,idotaccent.sc,idotbelow.sc,igrave.sc,ij.sc,imacron.sc,iogonek.sc,itilde.sc,k.sc,kcommaaccent.sc,kgreenlandic.sc,l.sc,lacute.sc,lcaron.sc,lcommaaccent.sc,ldot.sc,lslash.sc,n.sc,nacute.sc,ncaron.sc,ncommaaccent.sc,ndotaccent.sc,eng.sc,ntilde.sc,p.sc,thorn.sc,r.sc,racute.sc,rcaron.sc,rcommaaccent.sc,rdotbelow.sc,germandbls.sc" k="50" />
  2648. <hkern g1="T,Tcedilla,Tcaron,Tbar,Tcommaaccent,Tdotbelow" g2="parenright,parenright.caps,parenright.sc" k="-20" />
  2649. <hkern g1="T,Tcedilla,Tcaron,Tbar,Tcommaaccent,Tdotbelow" g2="X" k="10" />
  2650. <hkern g1="T,Tcedilla,Tcaron,Tbar,Tcommaaccent,Tdotbelow" g2="x" k="70" />
  2651. <hkern g1="T,Tcedilla,Tcaron,Tbar,Tcommaaccent,Tdotbelow" g2="M" k="20" />
  2652. <hkern g1="T,Tcedilla,Tcaron,Tbar,Tcommaaccent,Tdotbelow" g2="m.sc" k="15" />
  2653. <hkern g1="U,Ugrave,Uacute,Ucircumflex,Udieresis,Utilde,Umacron,Ubreve,Uring,Uhungarumlaut,Uogonek,Ucaron,Udieresismacron,Udieresisacute,Udieresiscaron,Udieresisgrave,Udotbelow" g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE,Amacron,Abreve,Aogonek,Acaron,Aringacute,AEacute,Adotbelow" k="10" />
  2654. <hkern g1="U,Ugrave,Uacute,Ucircumflex,Udieresis,Utilde,Umacron,Ubreve,Uring,Uhungarumlaut,Uogonek,Ucaron,Udieresismacron,Udieresisacute,Udieresiscaron,Udieresisgrave,Udotbelow" g2="Y,Yacute,Ycircumflex,Ydieresis,Ymacron,Ygrave,Ytilde" k="10" />
  2655. <hkern g1="U,Ugrave,Uacute,Ucircumflex,Udieresis,Utilde,Umacron,Ubreve,Uring,Uhungarumlaut,Uogonek,Ucaron,Udieresismacron,Udieresisacute,Udieresiscaron,Udieresisgrave,Udotbelow" g2="asterisk,asterisk.caps,asterisk.sc" k="40" />
  2656. <hkern g1="U,Ugrave,Uacute,Ucircumflex,Udieresis,Utilde,Umacron,Ubreve,Uring,Uhungarumlaut,Uogonek,Ucaron,Udieresismacron,Udieresisacute,Udieresiscaron,Udieresisgrave,Udotbelow" g2="bracketright,bracketright.caps,bracketright.sc" k="50" />
  2657. <hkern g1="U,Ugrave,Uacute,Ucircumflex,Udieresis,Utilde,Umacron,Ubreve,Uring,Uhungarumlaut,Uogonek,Ucaron,Udieresismacron,Udieresisacute,Udieresiscaron,Udieresisgrave,Udotbelow" g2="question,question.caps,question.sc" k="20" />
  2658. <hkern g1="U,Ugrave,Uacute,Ucircumflex,Udieresis,Utilde,Umacron,Ubreve,Uring,Uhungarumlaut,Uogonek,Ucaron,Udieresismacron,Udieresisacute,Udieresiscaron,Udieresisgrave,Udotbelow" g2="quotedbl,quotesingle,quotedbl.caps,quotesingle.caps,quotedbl.sc,quotesingle.sc" k="10" />
  2659. <hkern g1="U,Ugrave,Uacute,Ucircumflex,Udieresis,Utilde,Umacron,Ubreve,Uring,Uhungarumlaut,Uogonek,Ucaron,Udieresismacron,Udieresisacute,Udieresiscaron,Udieresisgrave,Udotbelow" g2="quoteleft,quotedblleft,quotedblleft.caps,quoteleft.caps" k="20" />
  2660. <hkern g1="U,Ugrave,Uacute,Ucircumflex,Udieresis,Utilde,Umacron,Ubreve,Uring,Uhungarumlaut,Uogonek,Ucaron,Udieresismacron,Udieresisacute,Udieresiscaron,Udieresisgrave,Udotbelow" g2="napostrophe,quoteright,quotedblright,quotedblright.caps,quoteright.caps" k="50" />
  2661. <hkern g1="U,Ugrave,Uacute,Ucircumflex,Udieresis,Utilde,Umacron,Ubreve,Uring,Uhungarumlaut,Uogonek,Ucaron,Udieresismacron,Udieresisacute,Udieresiscaron,Udieresisgrave,Udotbelow" g2="comma,period,quotesinglbase,quotedblbase,ellipsis,quotesinglbase.caps,quotedblbase.caps,quotesinglbase.sc,quotedblbase.sc" k="40" />
  2662. <hkern g1="U,Ugrave,Uacute,Ucircumflex,Udieresis,Utilde,Umacron,Ubreve,Uring,Uhungarumlaut,Uogonek,Ucaron,Udieresismacron,Udieresisacute,Udieresiscaron,Udieresisgrave,Udotbelow" g2="backslash,backslash.caps,backslash.sc" k="-30" />
  2663. <hkern g1="U,Ugrave,Uacute,Ucircumflex,Udieresis,Utilde,Umacron,Ubreve,Uring,Uhungarumlaut,Uogonek,Ucaron,Udieresismacron,Udieresisacute,Udieresiscaron,Udieresisgrave,Udotbelow" g2="M" k="10" />
  2664. <hkern g1="V,W,Wcircumflex,Wgrave,Wacute,Wdieresis" g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE,Amacron,Abreve,Aogonek,Acaron,Aringacute,AEacute,Adotbelow" k="25" />
  2665. <hkern g1="V,W,Wcircumflex,Wgrave,Wacute,Wdieresis" g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,Cacute,Ccircumflex,Cdotaccent,Ccaron,Gcircumflex,Gbreve,Gdotaccent,Gcommaaccent,Omacron,Obreve,Ohungarumlaut,OE,Ocaron,Gcaron,Oogonek,Gacute,Oslashacute,Odotbelow" k="5" />
  2666. <hkern g1="V,W,Wcircumflex,Wgrave,Wacute,Wdieresis" g2="T,Tcedilla,Tcaron,Tbar,Tcommaaccent,Tdotbelow" k="15" />
  2667. <hkern g1="V,W,Wcircumflex,Wgrave,Wacute,Wdieresis" g2="bracketright,bracketright.caps,bracketright.sc" k="30" />
  2668. <hkern g1="V,W,Wcircumflex,Wgrave,Wacute,Wdieresis" g2="question,question.caps,question.sc" k="-30" />
  2669. <hkern g1="V,W,Wcircumflex,Wgrave,Wacute,Wdieresis" g2="quotedbl,quotesingle,quotedbl.caps,quotesingle.caps,quotedbl.sc,quotesingle.sc" k="-10" />
  2670. <hkern g1="V,W,Wcircumflex,Wgrave,Wacute,Wdieresis" g2="napostrophe,quoteright,quotedblright,quotedblright.caps,quoteright.caps" k="-10" />
  2671. <hkern g1="V,W,Wcircumflex,Wgrave,Wacute,Wdieresis" g2="S,Sacute,Scircumflex,Scedilla,Scaron,Scommaaccent,Sdotbelow" k="5" />
  2672. <hkern g1="V,W,Wcircumflex,Wgrave,Wacute,Wdieresis" g2="a,d,q,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,amacron,abreve,aogonek,dcaron,dcroat,acaron,aringacute,aeacute,ddotbelow,adotbelow" k="25" />
  2673. <hkern g1="V,W,Wcircumflex,Wgrave,Wacute,Wdieresis" g2="a.sc,aacute.sc,abreve.sc,acaron.sc,acircumflex.sc,adieresis.sc,adotbelow.sc,agrave.sc,amacron.sc,aogonek.sc,aring.sc,aringacute.sc,atilde.sc,ae.sc,aeacute.sc" k="65" />
  2674. <hkern g1="V,W,Wcircumflex,Wgrave,Wacute,Wdieresis" g2="c,e,o,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oslash,cacute,ccircumflex,cdotaccent,ccaron,emacron,ebreve,edotaccent,eogonek,ecaron,omacron,obreve,ohungarumlaut,oe,ocaron,oogonek,oslashacute,edotbelow,etilde,odotbelow,c_h,c_t" k="20" />
  2675. <hkern g1="V,W,Wcircumflex,Wgrave,Wacute,Wdieresis" g2="s,sacute,scircumflex,scedilla,scaron,scommaaccent,sdotbelow,s_h" k="30" />
  2676. <hkern g1="V,W,Wcircumflex,Wgrave,Wacute,Wdieresis" g2="c.sc,cacute.sc,ccaron.sc,ccedilla.sc,ccircumflex.sc,cdotaccent.sc,schwa.sc,g.sc,gacute.sc,gbreve.sc,gcaron.sc,gcircumflex.sc,gcommaaccent.sc,gdotaccent.sc,o.sc,oacute.sc,obreve.sc,ocaron.sc,ocircumflex.sc,odieresis.sc,odotbelow.sc,ograve.sc,ohungarumlaut.sc,omacron.sc,oogonek.sc,oslash.sc,oslashacute.sc,otilde.sc,oe.sc,q.sc" k="30" />
  2677. <hkern g1="V,W,Wcircumflex,Wgrave,Wacute,Wdieresis" g2="g,gcircumflex,gbreve,gdotaccent,gcommaaccent,gcaron,gacute" k="30" />
  2678. <hkern g1="V,W,Wcircumflex,Wgrave,Wacute,Wdieresis" g2="m,n,p,r,ntilde,dotlessi,kgreenlandic,nacute,ncommaaccent,ncaron,eng,racute,rcommaaccent,rcaron,ndotaccent,rdotbelow" k="10" />
  2679. <hkern g1="V,W,Wcircumflex,Wgrave,Wacute,Wdieresis" g2="comma,period,quotesinglbase,quotedblbase,ellipsis,quotesinglbase.caps,quotedblbase.caps,quotesinglbase.sc,quotedblbase.sc" k="50" />
  2680. <hkern g1="V,W,Wcircumflex,Wgrave,Wacute,Wdieresis" g2="t,tcedilla,tcaron,tbar,tcommaaccent,tdotbelow" k="10" />
  2681. <hkern g1="V,W,Wcircumflex,Wgrave,Wacute,Wdieresis" g2="u,ugrave,uacute,ucircumflex,udieresis,utilde,umacron,ubreve,uring,uhungarumlaut,uogonek,ucaron,udieresismacron,udieresisacute,udieresiscaron,udieresisgrave,udotbelow" k="15" />
  2682. <hkern g1="V,W,Wcircumflex,Wgrave,Wacute,Wdieresis" g2="v,w,wcircumflex,wgrave,wacute,wdieresis" k="10" />
  2683. <hkern g1="V,W,Wcircumflex,Wgrave,Wacute,Wdieresis" g2="y,yacute,ydieresis,ycircumflex,ymacron,ygrave,ytilde" k="10" />
  2684. <hkern g1="V,W,Wcircumflex,Wgrave,Wacute,Wdieresis" g2="i,igrave,iacute,icircumflex,idieresis,itilde,imacron,ibreve,iogonek,ij,icaron,idotbelow,ijacute" k="10" />
  2685. <hkern g1="V,W,Wcircumflex,Wgrave,Wacute,Wdieresis" g2="z,zacute,zdotaccent,zcaron,zdotbelow" k="5" />
  2686. <hkern g1="V,W,Wcircumflex,Wgrave,Wacute,Wdieresis" g2="backslash,backslash.caps,backslash.sc" k="-90" />
  2687. <hkern g1="V,W,Wcircumflex,Wgrave,Wacute,Wdieresis" g2="x" k="20" />
  2688. <hkern g1="V,W,Wcircumflex,Wgrave,Wacute,Wdieresis" g2="M" k="5" />
  2689. <hkern g1="Y,Yacute,Ycircumflex,Ydieresis,Ymacron,Ygrave,Ytilde" g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE,Amacron,Abreve,Aogonek,Acaron,Aringacute,AEacute,Adotbelow" k="25" />
  2690. <hkern g1="Y,Yacute,Ycircumflex,Ydieresis,Ymacron,Ygrave,Ytilde" g2="B,D,E,F,H,I,K,L,N,P,R,Egrave,Eacute,Ecircumflex,Edieresis,Igrave,Iacute,Icircumflex,Idieresis,Eth,Ntilde,Thorn,Dcaron,Dcroat,Emacron,Ebreve,Edotaccent,Eogonek,Ecaron,Hcircumflex,Hbar,Itilde,Imacron,Ibreve,Iogonek,Idotaccent,IJ,Kcommaaccent,Lacute,Lcommaaccent,Lcaron,Ldot,Lslash,Nacute,Ncommaaccent,Ncaron,Eng,Racute,Rcommaaccent,Rcaron,Icaron,Ddotbelow,Hdotbelow,Ndotaccent,Rdotbelow,Edotbelow,Etilde,Idotbelow,IJacute" k="10" />
  2691. <hkern g1="Y,Yacute,Ycircumflex,Ydieresis,Ymacron,Ygrave,Ytilde" g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,Cacute,Ccircumflex,Cdotaccent,Ccaron,Gcircumflex,Gbreve,Gdotaccent,Gcommaaccent,Omacron,Obreve,Ohungarumlaut,OE,Ocaron,Gcaron,Oogonek,Gacute,Oslashacute,Odotbelow" k="10" />
  2692. <hkern g1="Y,Yacute,Ycircumflex,Ydieresis,Ymacron,Ygrave,Ytilde" g2="T,Tcedilla,Tcaron,Tbar,Tcommaaccent,Tdotbelow" k="10" />
  2693. <hkern g1="Y,Yacute,Ycircumflex,Ydieresis,Ymacron,Ygrave,Ytilde" g2="U,Ugrave,Uacute,Ucircumflex,Udieresis,Utilde,Umacron,Ubreve,Uring,Uhungarumlaut,Uogonek,Ucaron,Udieresismacron,Udieresisacute,Udieresiscaron,Udieresisgrave,Udotbelow" k="10" />
  2694. <hkern g1="Y,Yacute,Ycircumflex,Ydieresis,Ymacron,Ygrave,Ytilde" g2="ampersand,ampersand.caps,ampersand.sc" k="40" />
  2695. <hkern g1="Y,Yacute,Ycircumflex,Ydieresis,Ymacron,Ygrave,Ytilde" g2="asterisk,asterisk.caps,asterisk.sc" k="20" />
  2696. <hkern g1="Y,Yacute,Ycircumflex,Ydieresis,Ymacron,Ygrave,Ytilde" g2="braceright,braceright.caps,braceright.sc" k="-10" />
  2697. <hkern g1="Y,Yacute,Ycircumflex,Ydieresis,Ymacron,Ygrave,Ytilde" g2="bracketright,bracketright.caps,bracketright.sc" k="30" />
  2698. <hkern g1="Y,Yacute,Ycircumflex,Ydieresis,Ymacron,Ygrave,Ytilde" g2="guillemetleft,guilsinglleft,guillemetleft.caps,guilsinglleft.caps,guillemetleft.sc,guilsinglleft.sc" k="30" />
  2699. <hkern g1="Y,Yacute,Ycircumflex,Ydieresis,Ymacron,Ygrave,Ytilde" g2="quoteleft,quotedblleft,quotedblleft.caps,quoteleft.caps" k="20" />
  2700. <hkern g1="Y,Yacute,Ycircumflex,Ydieresis,Ymacron,Ygrave,Ytilde" g2="napostrophe,quoteright,quotedblright,quotedblright.caps,quoteright.caps" k="10" />
  2701. <hkern g1="Y,Yacute,Ycircumflex,Ydieresis,Ymacron,Ygrave,Ytilde" g2="S,Sacute,Scircumflex,Scedilla,Scaron,Scommaaccent,Sdotbelow" k="15" />
  2702. <hkern g1="Y,Yacute,Ycircumflex,Ydieresis,Ymacron,Ygrave,Ytilde" g2="a,d,q,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,amacron,abreve,aogonek,dcaron,dcroat,acaron,aringacute,aeacute,ddotbelow,adotbelow" k="65" />
  2703. <hkern g1="Y,Yacute,Ycircumflex,Ydieresis,Ymacron,Ygrave,Ytilde" g2="a.sc,aacute.sc,abreve.sc,acaron.sc,acircumflex.sc,adieresis.sc,adotbelow.sc,agrave.sc,amacron.sc,aogonek.sc,aring.sc,aringacute.sc,atilde.sc,ae.sc,aeacute.sc" k="50" />
  2704. <hkern g1="Y,Yacute,Ycircumflex,Ydieresis,Ymacron,Ygrave,Ytilde" g2="c,e,o,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oslash,cacute,ccircumflex,cdotaccent,ccaron,emacron,ebreve,edotaccent,eogonek,ecaron,omacron,obreve,ohungarumlaut,oe,ocaron,oogonek,oslashacute,edotbelow,etilde,odotbelow,c_h,c_t" k="65" />
  2705. <hkern g1="Y,Yacute,Ycircumflex,Ydieresis,Ymacron,Ygrave,Ytilde" g2="s,sacute,scircumflex,scedilla,scaron,scommaaccent,sdotbelow,s_h" k="40" />
  2706. <hkern g1="Y,Yacute,Ycircumflex,Ydieresis,Ymacron,Ygrave,Ytilde" g2="Z,Zacute,Zdotaccent,Zcaron,Zdotbelow" k="5" />
  2707. <hkern g1="Y,Yacute,Ycircumflex,Ydieresis,Ymacron,Ygrave,Ytilde" g2="c.sc,cacute.sc,ccaron.sc,ccedilla.sc,ccircumflex.sc,cdotaccent.sc,schwa.sc,g.sc,gacute.sc,gbreve.sc,gcaron.sc,gcircumflex.sc,gcommaaccent.sc,gdotaccent.sc,o.sc,oacute.sc,obreve.sc,ocaron.sc,ocircumflex.sc,odieresis.sc,odotbelow.sc,ograve.sc,ohungarumlaut.sc,omacron.sc,oogonek.sc,oslash.sc,oslashacute.sc,otilde.sc,oe.sc,q.sc" k="40" />
  2708. <hkern g1="Y,Yacute,Ycircumflex,Ydieresis,Ymacron,Ygrave,Ytilde" g2="g,gcircumflex,gbreve,gdotaccent,gcommaaccent,gcaron,gacute" k="60" />
  2709. <hkern g1="Y,Yacute,Ycircumflex,Ydieresis,Ymacron,Ygrave,Ytilde" g2="m,n,p,r,ntilde,dotlessi,kgreenlandic,nacute,ncommaaccent,ncaron,eng,racute,rcommaaccent,rcaron,ndotaccent,rdotbelow" k="15" />
  2710. <hkern g1="Y,Yacute,Ycircumflex,Ydieresis,Ymacron,Ygrave,Ytilde" g2="comma,period,quotesinglbase,quotedblbase,ellipsis,quotesinglbase.caps,quotedblbase.caps,quotesinglbase.sc,quotedblbase.sc" k="30" />
  2711. <hkern g1="Y,Yacute,Ycircumflex,Ydieresis,Ymacron,Ygrave,Ytilde" g2="t,tcedilla,tcaron,tbar,tcommaaccent,tdotbelow" k="10" />
  2712. <hkern g1="Y,Yacute,Ycircumflex,Ydieresis,Ymacron,Ygrave,Ytilde" g2="u,ugrave,uacute,ucircumflex,udieresis,utilde,umacron,ubreve,uring,uhungarumlaut,uogonek,ucaron,udieresismacron,udieresisacute,udieresiscaron,udieresisgrave,udotbelow" k="40" />
  2713. <hkern g1="Y,Yacute,Ycircumflex,Ydieresis,Ymacron,Ygrave,Ytilde" g2="v,w,wcircumflex,wgrave,wacute,wdieresis" k="35" />
  2714. <hkern g1="Y,Yacute,Ycircumflex,Ydieresis,Ymacron,Ygrave,Ytilde" g2="y,yacute,ydieresis,ycircumflex,ymacron,ygrave,ytilde" k="20" />
  2715. <hkern g1="Y,Yacute,Ycircumflex,Ydieresis,Ymacron,Ygrave,Ytilde" g2="b,h,k,l,thorn,hcircumflex,hbar,kcommaaccent,lacute,lcommaaccent,lcaron,ldot,lslash,hdotbelow" k="5" />
  2716. <hkern g1="Y,Yacute,Ycircumflex,Ydieresis,Ymacron,Ygrave,Ytilde" g2="i,igrave,iacute,icircumflex,idieresis,itilde,imacron,ibreve,iogonek,ij,icaron,idotbelow,ijacute" k="15" />
  2717. <hkern g1="Y,Yacute,Ycircumflex,Ydieresis,Ymacron,Ygrave,Ytilde" g2="z,zacute,zdotaccent,zcaron,zdotbelow" k="20" />
  2718. <hkern g1="Y,Yacute,Ycircumflex,Ydieresis,Ymacron,Ygrave,Ytilde" g2="b.sc,d.sc,eth.sc,dcaron.sc,dcroat.sc,ddotbelow.sc,e.sc,eacute.sc,ebreve.sc,ecaron.sc,ecircumflex.sc,edieresis.sc,edotaccent.sc,edotbelow.sc,egrave.sc,emacron.sc,eogonek.sc,etilde.sc,f.sc,h.sc,hbar.sc,hcircumflex.sc,hdotbelow.sc,i.sc,dotlessi.sc,iacute.sc,ibreve.sc,icaron.sc,icircumflex.sc,idieresis.sc,idotaccent.sc,idotbelow.sc,igrave.sc,ij.sc,imacron.sc,iogonek.sc,itilde.sc,k.sc,kcommaaccent.sc,kgreenlandic.sc,l.sc,lacute.sc,lcaron.sc,lcommaaccent.sc,ldot.sc,lslash.sc,n.sc,nacute.sc,ncaron.sc,ncommaaccent.sc,ndotaccent.sc,eng.sc,ntilde.sc,p.sc,thorn.sc,r.sc,racute.sc,rcaron.sc,rcommaaccent.sc,rdotbelow.sc,germandbls.sc" k="20" />
  2719. <hkern g1="Y,Yacute,Ycircumflex,Ydieresis,Ymacron,Ygrave,Ytilde" g2="s.sc,sacute.sc,scaron.sc,scedilla.sc,scircumflex.sc,scommaaccent.sc,sdotbelow.sc" k="50" />
  2720. <hkern g1="Y,Yacute,Ycircumflex,Ydieresis,Ymacron,Ygrave,Ytilde" g2="u.sc,uacute.sc,ubreve.sc,ucaron.sc,ucircumflex.sc,udieresis.sc,udieresisacute.sc,udieresiscaron.sc,udieresisgrave.sc,udieresismacron.sc,udotbelow.sc,ugrave.sc,uhungarumlaut.sc,umacron.sc,uogonek.sc,uring.sc,utilde.sc" k="10" />
  2721. <hkern g1="Y,Yacute,Ycircumflex,Ydieresis,Ymacron,Ygrave,Ytilde" g2="backslash,backslash.caps,backslash.sc" k="-80" />
  2722. <hkern g1="Y,Yacute,Ycircumflex,Ydieresis,Ymacron,Ygrave,Ytilde" g2="X" k="15" />
  2723. <hkern g1="Y,Yacute,Ycircumflex,Ydieresis,Ymacron,Ygrave,Ytilde" g2="x" k="40" />
  2724. <hkern g1="Y,Yacute,Ycircumflex,Ydieresis,Ymacron,Ygrave,Ytilde" g2="M" k="15" />
  2725. <hkern g1="Z,Zacute,Zdotaccent,Zcaron,Zdotbelow" g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,Cacute,Ccircumflex,Cdotaccent,Ccaron,Gcircumflex,Gbreve,Gdotaccent,Gcommaaccent,Omacron,Obreve,Ohungarumlaut,OE,Ocaron,Gcaron,Oogonek,Gacute,Oslashacute,Odotbelow" k="10" />
  2726. <hkern g1="Z,Zacute,Zdotaccent,Zcaron,Zdotbelow" g2="T,Tcedilla,Tcaron,Tbar,Tcommaaccent,Tdotbelow" k="5" />
  2727. <hkern g1="Z,Zacute,Zdotaccent,Zcaron,Zdotbelow" g2="Y,Yacute,Ycircumflex,Ydieresis,Ymacron,Ygrave,Ytilde" k="5" />
  2728. <hkern g1="Z,Zacute,Zdotaccent,Zcaron,Zdotbelow" g2="bracketright,bracketright.caps,bracketright.sc" k="40" />
  2729. <hkern g1="Z,Zacute,Zdotaccent,Zcaron,Zdotbelow" g2="question,question.caps,question.sc" k="-10" />
  2730. <hkern g1="Z,Zacute,Zdotaccent,Zcaron,Zdotbelow" g2="Z,Zacute,Zdotaccent,Zcaron,Zdotbelow" k="15" />
  2731. <hkern g1="Z,Zacute,Zdotaccent,Zcaron,Zdotbelow" g2="parenright,parenright.caps,parenright.sc" k="-30" />
  2732. <hkern g1="Z,Zacute,Zdotaccent,Zcaron,Zdotbelow" g2="X" k="5" />
  2733. <hkern g1="a,i,q,agrave,aacute,acircumflex,atilde,adieresis,aring,igrave,iacute,icircumflex,idieresis,amacron,abreve,aogonek,itilde,imacron,ibreve,iogonek,dotlessi,acaron,icaron,aringacute,adotbelow,idotbelow,fi" g2="asterisk,asterisk.caps,asterisk.sc" k="60" />
  2734. <hkern g1="a,i,q,agrave,aacute,acircumflex,atilde,adieresis,aring,igrave,iacute,icircumflex,idieresis,amacron,abreve,aogonek,itilde,imacron,ibreve,iogonek,dotlessi,acaron,icaron,aringacute,adotbelow,idotbelow,fi" g2="braceright,braceright.caps,braceright.sc" k="-10" />
  2735. <hkern g1="a,i,q,agrave,aacute,acircumflex,atilde,adieresis,aring,igrave,iacute,icircumflex,idieresis,amacron,abreve,aogonek,itilde,imacron,ibreve,iogonek,dotlessi,acaron,icaron,aringacute,adotbelow,idotbelow,fi" g2="bracketright,bracketright.caps,bracketright.sc" k="60" />
  2736. <hkern g1="a,i,q,agrave,aacute,acircumflex,atilde,adieresis,aring,igrave,iacute,icircumflex,idieresis,amacron,abreve,aogonek,itilde,imacron,ibreve,iogonek,dotlessi,acaron,icaron,aringacute,adotbelow,idotbelow,fi" g2="quotedbl,quotesingle,quotedbl.caps,quotesingle.caps,quotedbl.sc,quotesingle.sc" k="40" />
  2737. <hkern g1="a,i,q,agrave,aacute,acircumflex,atilde,adieresis,aring,igrave,iacute,icircumflex,idieresis,amacron,abreve,aogonek,itilde,imacron,ibreve,iogonek,dotlessi,acaron,icaron,aringacute,adotbelow,idotbelow,fi" g2="quoteleft,quotedblleft,quotedblleft.caps,quoteleft.caps" k="50" />
  2738. <hkern g1="a,i,q,agrave,aacute,acircumflex,atilde,adieresis,aring,igrave,iacute,icircumflex,idieresis,amacron,abreve,aogonek,itilde,imacron,ibreve,iogonek,dotlessi,acaron,icaron,aringacute,adotbelow,idotbelow,fi" g2="napostrophe,quoteright,quotedblright,quotedblright.caps,quoteright.caps" k="40" />
  2739. <hkern g1="a,i,q,agrave,aacute,acircumflex,atilde,adieresis,aring,igrave,iacute,icircumflex,idieresis,amacron,abreve,aogonek,itilde,imacron,ibreve,iogonek,dotlessi,acaron,icaron,aringacute,adotbelow,idotbelow,fi" g2="c,e,o,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oslash,cacute,ccircumflex,cdotaccent,ccaron,emacron,ebreve,edotaccent,eogonek,ecaron,omacron,obreve,ohungarumlaut,oe,ocaron,oogonek,oslashacute,edotbelow,etilde,odotbelow,c_h,c_t" k="5" />
  2740. <hkern g1="a,i,q,agrave,aacute,acircumflex,atilde,adieresis,aring,igrave,iacute,icircumflex,idieresis,amacron,abreve,aogonek,itilde,imacron,ibreve,iogonek,dotlessi,acaron,icaron,aringacute,adotbelow,idotbelow,fi" g2="s,sacute,scircumflex,scedilla,scaron,scommaaccent,sdotbelow,s_h" k="5" />
  2741. <hkern g1="a,i,q,agrave,aacute,acircumflex,atilde,adieresis,aring,igrave,iacute,icircumflex,idieresis,amacron,abreve,aogonek,itilde,imacron,ibreve,iogonek,dotlessi,acaron,icaron,aringacute,adotbelow,idotbelow,fi" g2="z,zacute,zdotaccent,zcaron,zdotbelow" k="-5" />
  2742. <hkern g1="a,i,q,agrave,aacute,acircumflex,atilde,adieresis,aring,igrave,iacute,icircumflex,idieresis,amacron,abreve,aogonek,itilde,imacron,ibreve,iogonek,dotlessi,acaron,icaron,aringacute,adotbelow,idotbelow,fi" g2="numbersign,numbersign.lf,numbersign.osf,numbersign.sc" k="30" />
  2743. <hkern g1="a,i,q,agrave,aacute,acircumflex,atilde,adieresis,aring,igrave,iacute,icircumflex,idieresis,amacron,abreve,aogonek,itilde,imacron,ibreve,iogonek,dotlessi,acaron,icaron,aringacute,adotbelow,idotbelow,fi" g2="slash,slash.caps,slash.sc" k="-10" />
  2744. <hkern g1="a,i,q,agrave,aacute,acircumflex,atilde,adieresis,aring,igrave,iacute,icircumflex,idieresis,amacron,abreve,aogonek,itilde,imacron,ibreve,iogonek,dotlessi,acaron,icaron,aringacute,adotbelow,idotbelow,fi" g2="x" k="5" />
  2745. <hkern g1="a.sc,aacute.sc,abreve.sc,acaron.sc,acircumflex.sc,adieresis.sc,adotbelow.sc,agrave.sc,amacron.sc,aogonek.sc,aring.sc,aringacute.sc,atilde.sc" g2="ampersand,ampersand.caps,ampersand.sc" k="10" />
  2746. <hkern g1="a.sc,aacute.sc,abreve.sc,acaron.sc,acircumflex.sc,adieresis.sc,adotbelow.sc,agrave.sc,amacron.sc,aogonek.sc,aring.sc,aringacute.sc,atilde.sc" g2="asterisk,asterisk.caps,asterisk.sc" k="110" />
  2747. <hkern g1="a.sc,aacute.sc,abreve.sc,acaron.sc,acircumflex.sc,adieresis.sc,adotbelow.sc,agrave.sc,amacron.sc,aogonek.sc,aring.sc,aringacute.sc,atilde.sc" g2="quotedbl,quotesingle,quotedbl.caps,quotesingle.caps,quotedbl.sc,quotesingle.sc" k="60" />
  2748. <hkern g1="a.sc,aacute.sc,abreve.sc,acaron.sc,acircumflex.sc,adieresis.sc,adotbelow.sc,agrave.sc,amacron.sc,aogonek.sc,aring.sc,aringacute.sc,atilde.sc" g2="periodcentered,bullet,periodcentered.caps,bullet.caps,periodcentered.sc,bullet.sc" k="50" />
  2749. <hkern g1="a.sc,aacute.sc,abreve.sc,acaron.sc,acircumflex.sc,adieresis.sc,adotbelow.sc,agrave.sc,amacron.sc,aogonek.sc,aring.sc,aringacute.sc,atilde.sc" g2="a.sc,aacute.sc,abreve.sc,acaron.sc,acircumflex.sc,adieresis.sc,adotbelow.sc,agrave.sc,amacron.sc,aogonek.sc,aring.sc,aringacute.sc,atilde.sc,ae.sc,aeacute.sc" k="15" />
  2750. <hkern g1="a.sc,aacute.sc,abreve.sc,acaron.sc,acircumflex.sc,adieresis.sc,adotbelow.sc,agrave.sc,amacron.sc,aogonek.sc,aring.sc,aringacute.sc,atilde.sc" g2="c.sc,cacute.sc,ccaron.sc,ccedilla.sc,ccircumflex.sc,cdotaccent.sc,schwa.sc,g.sc,gacute.sc,gbreve.sc,gcaron.sc,gcircumflex.sc,gcommaaccent.sc,gdotaccent.sc,o.sc,oacute.sc,obreve.sc,ocaron.sc,ocircumflex.sc,odieresis.sc,odotbelow.sc,ograve.sc,ohungarumlaut.sc,omacron.sc,oogonek.sc,oslash.sc,oslashacute.sc,otilde.sc,oe.sc,q.sc" k="15" />
  2751. <hkern g1="a.sc,aacute.sc,abreve.sc,acaron.sc,acircumflex.sc,adieresis.sc,adotbelow.sc,agrave.sc,amacron.sc,aogonek.sc,aring.sc,aringacute.sc,atilde.sc" g2="y.sc,yacute.sc,ycircumflex.sc,ydieresis.sc,ygrave.sc,ymacron.sc,ytilde.sc" k="40" />
  2752. <hkern g1="a.sc,aacute.sc,abreve.sc,acaron.sc,acircumflex.sc,adieresis.sc,adotbelow.sc,agrave.sc,amacron.sc,aogonek.sc,aring.sc,aringacute.sc,atilde.sc" g2="b.sc,d.sc,eth.sc,dcaron.sc,dcroat.sc,ddotbelow.sc,e.sc,eacute.sc,ebreve.sc,ecaron.sc,ecircumflex.sc,edieresis.sc,edotaccent.sc,edotbelow.sc,egrave.sc,emacron.sc,eogonek.sc,etilde.sc,f.sc,h.sc,hbar.sc,hcircumflex.sc,hdotbelow.sc,i.sc,dotlessi.sc,iacute.sc,ibreve.sc,icaron.sc,icircumflex.sc,idieresis.sc,idotaccent.sc,idotbelow.sc,igrave.sc,ij.sc,imacron.sc,iogonek.sc,itilde.sc,k.sc,kcommaaccent.sc,kgreenlandic.sc,l.sc,lacute.sc,lcaron.sc,lcommaaccent.sc,ldot.sc,lslash.sc,n.sc,nacute.sc,ncaron.sc,ncommaaccent.sc,ndotaccent.sc,eng.sc,ntilde.sc,p.sc,thorn.sc,r.sc,racute.sc,rcaron.sc,rcommaaccent.sc,rdotbelow.sc,germandbls.sc" k="10" />
  2753. <hkern g1="a.sc,aacute.sc,abreve.sc,acaron.sc,acircumflex.sc,adieresis.sc,adotbelow.sc,agrave.sc,amacron.sc,aogonek.sc,aring.sc,aringacute.sc,atilde.sc" g2="numbersign,numbersign.lf,numbersign.osf,numbersign.sc" k="60" />
  2754. <hkern g1="a.sc,aacute.sc,abreve.sc,acaron.sc,acircumflex.sc,adieresis.sc,adotbelow.sc,agrave.sc,amacron.sc,aogonek.sc,aring.sc,aringacute.sc,atilde.sc" g2="s.sc,sacute.sc,scaron.sc,scedilla.sc,scircumflex.sc,scommaaccent.sc,sdotbelow.sc" k="25" />
  2755. <hkern g1="a.sc,aacute.sc,abreve.sc,acaron.sc,acircumflex.sc,adieresis.sc,adotbelow.sc,agrave.sc,amacron.sc,aogonek.sc,aring.sc,aringacute.sc,atilde.sc" g2="slash,slash.caps,slash.sc" k="20" />
  2756. <hkern g1="a.sc,aacute.sc,abreve.sc,acaron.sc,acircumflex.sc,adieresis.sc,adotbelow.sc,agrave.sc,amacron.sc,aogonek.sc,aring.sc,aringacute.sc,atilde.sc" g2="t.sc,tbar.sc,tcaron.sc,tcedilla.sc,tcommaaccent.sc,tdotbelow.sc" k="90" />
  2757. <hkern g1="a.sc,aacute.sc,abreve.sc,acaron.sc,acircumflex.sc,adieresis.sc,adotbelow.sc,agrave.sc,amacron.sc,aogonek.sc,aring.sc,aringacute.sc,atilde.sc" g2="u.sc,uacute.sc,ubreve.sc,ucaron.sc,ucircumflex.sc,udieresis.sc,udieresisacute.sc,udieresiscaron.sc,udieresisgrave.sc,udieresismacron.sc,udotbelow.sc,ugrave.sc,uhungarumlaut.sc,umacron.sc,uogonek.sc,uring.sc,utilde.sc" k="10" />
  2758. <hkern g1="a.sc,aacute.sc,abreve.sc,acaron.sc,acircumflex.sc,adieresis.sc,adotbelow.sc,agrave.sc,amacron.sc,aogonek.sc,aring.sc,aringacute.sc,atilde.sc" g2="v.sc,w.sc,wacute.sc,wcircumflex.sc,wdieresis.sc,wgrave.sc" k="60" />
  2759. <hkern g1="a.sc,aacute.sc,abreve.sc,acaron.sc,acircumflex.sc,adieresis.sc,adotbelow.sc,agrave.sc,amacron.sc,aogonek.sc,aring.sc,aringacute.sc,atilde.sc" g2="z.sc,zacute.sc,zcaron.sc,zdotaccent.sc,zdotbelow.sc" k="15" />
  2760. <hkern g1="a.sc,aacute.sc,abreve.sc,acaron.sc,acircumflex.sc,adieresis.sc,adotbelow.sc,agrave.sc,amacron.sc,aogonek.sc,aring.sc,aringacute.sc,atilde.sc" g2="backslash,backslash.caps,backslash.sc" k="80" />
  2761. <hkern g1="a.sc,aacute.sc,abreve.sc,acaron.sc,acircumflex.sc,adieresis.sc,adotbelow.sc,agrave.sc,amacron.sc,aogonek.sc,aring.sc,aringacute.sc,atilde.sc" g2="euro,euro.lf,euro.osf,euro.sc" k="70" />
  2762. <hkern g1="a.sc,aacute.sc,abreve.sc,acaron.sc,acircumflex.sc,adieresis.sc,adotbelow.sc,agrave.sc,amacron.sc,aogonek.sc,aring.sc,aringacute.sc,atilde.sc" g2="plus.lf,minus.lf,multiply.lf,divide.lf,equal.lf,notequal.lf,greater.lf,less.lf,greaterequal.lf,lessequal.lf,plusminus.lf,approxequal.lf,logicalnot.lf,infinity.lf,plus.sc,minus.sc,multiply.sc,divide.sc,equal.sc,notequal.sc,greater.sc,less.sc,greaterequal.sc,lessequal.sc,plusminus.sc,approxequal.sc,logicalnot.sc,infinity.sc" k="30" />
  2763. <hkern g1="a.sc,aacute.sc,abreve.sc,acaron.sc,acircumflex.sc,adieresis.sc,adotbelow.sc,agrave.sc,amacron.sc,aogonek.sc,aring.sc,aringacute.sc,atilde.sc" g2="percent,perthousand,percent.osf,perthousand.osf,percent.sc,perthousand.sc" k="90" />
  2764. <hkern g1="a.sc,aacute.sc,abreve.sc,acaron.sc,acircumflex.sc,adieresis.sc,adotbelow.sc,agrave.sc,amacron.sc,aogonek.sc,aring.sc,aringacute.sc,atilde.sc" g2="quotedblright.sc,quoteright.sc" k="50" />
  2765. <hkern g1="a.sc,aacute.sc,abreve.sc,acaron.sc,acircumflex.sc,adieresis.sc,adotbelow.sc,agrave.sc,amacron.sc,aogonek.sc,aring.sc,aringacute.sc,atilde.sc" g2="yen,yen.lf,yen.osf,yen.sc" k="30" />
  2766. <hkern g1="a.sc,aacute.sc,abreve.sc,acaron.sc,acircumflex.sc,adieresis.sc,adotbelow.sc,agrave.sc,amacron.sc,aogonek.sc,aring.sc,aringacute.sc,atilde.sc" g2="trademark" k="140" />
  2767. <hkern g1="a.sc,aacute.sc,abreve.sc,acaron.sc,acircumflex.sc,adieresis.sc,adotbelow.sc,agrave.sc,amacron.sc,aogonek.sc,aring.sc,aringacute.sc,atilde.sc" g2="m.sc" k="5" />
  2768. <hkern g1="a.sc,aacute.sc,abreve.sc,acaron.sc,acircumflex.sc,adieresis.sc,adotbelow.sc,agrave.sc,amacron.sc,aogonek.sc,aring.sc,aringacute.sc,atilde.sc" g2="bar" k="-10" />
  2769. <hkern g1="a.sc,aacute.sc,abreve.sc,acaron.sc,acircumflex.sc,adieresis.sc,adotbelow.sc,agrave.sc,amacron.sc,aogonek.sc,aring.sc,aringacute.sc,atilde.sc" g2="x.sc" k="20" />
  2770. <hkern g1="a.sc,aacute.sc,abreve.sc,acaron.sc,acircumflex.sc,adieresis.sc,adotbelow.sc,agrave.sc,amacron.sc,aogonek.sc,aring.sc,aringacute.sc,atilde.sc" g2="dagger,daggerdbl" k="50" />
  2771. <hkern g1="asterisk,asterisk.caps,asterisk.sc" g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE,Amacron,Abreve,Aogonek,Acaron,Aringacute,AEacute,Adotbelow" k="50" />
  2772. <hkern g1="asterisk,asterisk.caps,asterisk.sc" g2="B,D,E,F,H,I,K,L,N,P,R,Egrave,Eacute,Ecircumflex,Edieresis,Igrave,Iacute,Icircumflex,Idieresis,Eth,Ntilde,Thorn,Dcaron,Dcroat,Emacron,Ebreve,Edotaccent,Eogonek,Ecaron,Hcircumflex,Hbar,Itilde,Imacron,Ibreve,Iogonek,Idotaccent,IJ,Kcommaaccent,Lacute,Lcommaaccent,Lcaron,Ldot,Lslash,Nacute,Ncommaaccent,Ncaron,Eng,Racute,Rcommaaccent,Rcaron,Icaron,Ddotbelow,Hdotbelow,Ndotaccent,Rdotbelow,Edotbelow,Etilde,Idotbelow,IJacute" k="50" />
  2773. <hkern g1="asterisk,asterisk.caps,asterisk.sc" g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,Cacute,Ccircumflex,Cdotaccent,Ccaron,Gcircumflex,Gbreve,Gdotaccent,Gcommaaccent,Omacron,Obreve,Ohungarumlaut,OE,Ocaron,Gcaron,Oogonek,Gacute,Oslashacute,Odotbelow" k="30" />
  2774. <hkern g1="asterisk,asterisk.caps,asterisk.sc" g2="T,Tcedilla,Tcaron,Tbar,Tcommaaccent,Tdotbelow" k="30" />
  2775. <hkern g1="asterisk,asterisk.caps,asterisk.sc" g2="U,Ugrave,Uacute,Ucircumflex,Udieresis,Utilde,Umacron,Ubreve,Uring,Uhungarumlaut,Uogonek,Ucaron,Udieresismacron,Udieresisacute,Udieresiscaron,Udieresisgrave,Udotbelow" k="20" />
  2776. <hkern g1="asterisk,asterisk.caps,asterisk.sc" g2="ampersand,ampersand.caps,ampersand.sc" k="80" />
  2777. <hkern g1="asterisk,asterisk.caps,asterisk.sc" g2="guillemetleft,guilsinglleft,guillemetleft.caps,guilsinglleft.caps,guillemetleft.sc,guilsinglleft.sc" k="50" />
  2778. <hkern g1="asterisk,asterisk.caps,asterisk.sc" g2="periodcentered,bullet,periodcentered.caps,bullet.caps,periodcentered.sc,bullet.sc" k="20" />
  2779. <hkern g1="asterisk,asterisk.caps,asterisk.sc" g2="S,Sacute,Scircumflex,Scedilla,Scaron,Scommaaccent,Sdotbelow" k="30" />
  2780. <hkern g1="asterisk,asterisk.caps,asterisk.sc" g2="a,d,q,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,amacron,abreve,aogonek,dcaron,dcroat,acaron,aringacute,aeacute,ddotbelow,adotbelow" k="70" />
  2781. <hkern g1="asterisk,asterisk.caps,asterisk.sc" g2="a.sc,aacute.sc,abreve.sc,acaron.sc,acircumflex.sc,adieresis.sc,adotbelow.sc,agrave.sc,amacron.sc,aogonek.sc,aring.sc,aringacute.sc,atilde.sc,ae.sc,aeacute.sc" k="90" />
  2782. <hkern g1="asterisk,asterisk.caps,asterisk.sc" g2="c,e,o,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oslash,cacute,ccircumflex,cdotaccent,ccaron,emacron,ebreve,edotaccent,eogonek,ecaron,omacron,obreve,ohungarumlaut,oe,ocaron,oogonek,oslashacute,edotbelow,etilde,odotbelow,c_h,c_t" k="10" />
  2783. <hkern g1="asterisk,asterisk.caps,asterisk.sc" g2="c.sc,cacute.sc,ccaron.sc,ccedilla.sc,ccircumflex.sc,cdotaccent.sc,schwa.sc,g.sc,gacute.sc,gbreve.sc,gcaron.sc,gcircumflex.sc,gcommaaccent.sc,gdotaccent.sc,o.sc,oacute.sc,obreve.sc,ocaron.sc,ocircumflex.sc,odieresis.sc,odotbelow.sc,ograve.sc,ohungarumlaut.sc,omacron.sc,oogonek.sc,oslash.sc,oslashacute.sc,otilde.sc,oe.sc,q.sc" k="20" />
  2784. <hkern g1="asterisk,asterisk.caps,asterisk.sc" g2="hyphen,endash,emdash,hyphen.caps,endash.caps,emdash.caps,hyphen.sc,endash.sc,emdash.sc" k="-10" />
  2785. <hkern g1="asterisk,asterisk.caps,asterisk.sc" g2="comma,period,quotesinglbase,quotedblbase,ellipsis,quotesinglbase.caps,quotedblbase.caps,quotesinglbase.sc,quotedblbase.sc" k="60" />
  2786. <hkern g1="asterisk,asterisk.caps,asterisk.sc" g2="J,Jcircumflex,Nhookleft,Jacute" k="30" />
  2787. <hkern g1="asterisk,asterisk.caps,asterisk.sc" g2="b.sc,d.sc,eth.sc,dcaron.sc,dcroat.sc,ddotbelow.sc,e.sc,eacute.sc,ebreve.sc,ecaron.sc,ecircumflex.sc,edieresis.sc,edotaccent.sc,edotbelow.sc,egrave.sc,emacron.sc,eogonek.sc,etilde.sc,f.sc,h.sc,hbar.sc,hcircumflex.sc,hdotbelow.sc,i.sc,dotlessi.sc,iacute.sc,ibreve.sc,icaron.sc,icircumflex.sc,idieresis.sc,idotaccent.sc,idotbelow.sc,igrave.sc,ij.sc,imacron.sc,iogonek.sc,itilde.sc,k.sc,kcommaaccent.sc,kgreenlandic.sc,l.sc,lacute.sc,lcaron.sc,lcommaaccent.sc,ldot.sc,lslash.sc,n.sc,nacute.sc,ncaron.sc,ncommaaccent.sc,ndotaccent.sc,eng.sc,ntilde.sc,p.sc,thorn.sc,r.sc,racute.sc,rcaron.sc,rcommaaccent.sc,rdotbelow.sc,germandbls.sc" k="10" />
  2788. <hkern g1="asterisk,asterisk.caps,asterisk.sc" g2="numbersign,numbersign.lf,numbersign.osf,numbersign.sc" k="60" />
  2789. <hkern g1="asterisk,asterisk.caps,asterisk.sc" g2="s.sc,sacute.sc,scaron.sc,scedilla.sc,scircumflex.sc,scommaaccent.sc,sdotbelow.sc" k="10" />
  2790. <hkern g1="asterisk,asterisk.caps,asterisk.sc" g2="slash,slash.caps,slash.sc" k="90" />
  2791. <hkern g1="asterisk,asterisk.caps,asterisk.sc" g2="seven,seven.lf,seven.osf,seven.sc" k="20" />
  2792. <hkern g1="asterisk,asterisk.caps,asterisk.sc" g2="euro,euro.lf,euro.osf,euro.sc" k="40" />
  2793. <hkern g1="asterisk,asterisk.caps,asterisk.sc" g2="percent,perthousand,percent.osf,perthousand.osf,percent.sc,perthousand.sc" k="10" />
  2794. <hkern g1="asterisk,asterisk.caps,asterisk.sc" g2="questiondown,questiondown.caps,questiondown.sc" k="30" />
  2795. <hkern g1="asterisk,asterisk.caps,asterisk.sc" g2="sterling,sterling.lf,sterling.osf,sterling.sc" k="70" />
  2796. <hkern g1="asterisk,asterisk.caps,asterisk.sc" g2="zero,six,nine,zero.lf,six.lf,nine.lf,zero.osf,six.osf,nine.osf,zero.sc,six.sc,nine.sc" k="40" />
  2797. <hkern g1="asterisk,asterisk.caps,asterisk.sc" g2="florin,florin.lf,florin.osf,florin.sc" k="50" />
  2798. <hkern g1="asterisk,asterisk.caps,asterisk.sc" g2="X" k="20" />
  2799. <hkern g1="asterisk,asterisk.caps,asterisk.sc" g2="M" k="40" />
  2800. <hkern g1="b,o,p,ograve,oacute,ocircumflex,otilde,odieresis,oslash,thorn,omacron,obreve,ohungarumlaut,ocaron,oogonek,oslashacute,schwa,odotbelow" g2="asterisk,asterisk.caps,asterisk.sc" k="70" />
  2801. <hkern g1="b,o,p,ograve,oacute,ocircumflex,otilde,odieresis,oslash,thorn,omacron,obreve,ohungarumlaut,ocaron,oogonek,oslashacute,schwa,odotbelow" g2="bracketright,bracketright.caps,bracketright.sc" k="60" />
  2802. <hkern g1="b,o,p,ograve,oacute,ocircumflex,otilde,odieresis,oslash,thorn,omacron,obreve,ohungarumlaut,ocaron,oogonek,oslashacute,schwa,odotbelow" g2="question,question.caps,question.sc" k="40" />
  2803. <hkern g1="b,o,p,ograve,oacute,ocircumflex,otilde,odieresis,oslash,thorn,omacron,obreve,ohungarumlaut,ocaron,oogonek,oslashacute,schwa,odotbelow" g2="quotedbl,quotesingle,quotedbl.caps,quotesingle.caps,quotedbl.sc,quotesingle.sc" k="40" />
  2804. <hkern g1="b,o,p,ograve,oacute,ocircumflex,otilde,odieresis,oslash,thorn,omacron,obreve,ohungarumlaut,ocaron,oogonek,oslashacute,schwa,odotbelow" g2="quoteleft,quotedblleft,quotedblleft.caps,quoteleft.caps" k="50" />
  2805. <hkern g1="b,o,p,ograve,oacute,ocircumflex,otilde,odieresis,oslash,thorn,omacron,obreve,ohungarumlaut,ocaron,oogonek,oslashacute,schwa,odotbelow" g2="napostrophe,quoteright,quotedblright,quotedblright.caps,quoteright.caps" k="70" />
  2806. <hkern g1="b,o,p,ograve,oacute,ocircumflex,otilde,odieresis,oslash,thorn,omacron,obreve,ohungarumlaut,ocaron,oogonek,oslashacute,schwa,odotbelow" g2="s,sacute,scircumflex,scedilla,scaron,scommaaccent,sdotbelow,s_h" k="10" />
  2807. <hkern g1="b,o,p,ograve,oacute,ocircumflex,otilde,odieresis,oslash,thorn,omacron,obreve,ohungarumlaut,ocaron,oogonek,oslashacute,schwa,odotbelow" g2="g,gcircumflex,gbreve,gdotaccent,gcommaaccent,gcaron,gacute" k="5" />
  2808. <hkern g1="b,o,p,ograve,oacute,ocircumflex,otilde,odieresis,oslash,thorn,omacron,obreve,ohungarumlaut,ocaron,oogonek,oslashacute,schwa,odotbelow" g2="comma,period,quotesinglbase,quotedblbase,ellipsis,quotesinglbase.caps,quotedblbase.caps,quotesinglbase.sc,quotedblbase.sc" k="30" />
  2809. <hkern g1="b,o,p,ograve,oacute,ocircumflex,otilde,odieresis,oslash,thorn,omacron,obreve,ohungarumlaut,ocaron,oogonek,oslashacute,schwa,odotbelow" g2="f,germandbls,Germandbls,fi,fl" k="5" />
  2810. <hkern g1="b,o,p,ograve,oacute,ocircumflex,otilde,odieresis,oslash,thorn,omacron,obreve,ohungarumlaut,ocaron,oogonek,oslashacute,schwa,odotbelow" g2="z,zacute,zdotaccent,zcaron,zdotbelow" k="10" />
  2811. <hkern g1="b,o,p,ograve,oacute,ocircumflex,otilde,odieresis,oslash,thorn,omacron,obreve,ohungarumlaut,ocaron,oogonek,oslashacute,schwa,odotbelow" g2="numbersign,numbersign.lf,numbersign.osf,numbersign.sc" k="40" />
  2812. <hkern g1="b,o,p,ograve,oacute,ocircumflex,otilde,odieresis,oslash,thorn,omacron,obreve,ohungarumlaut,ocaron,oogonek,oslashacute,schwa,odotbelow" g2="x" k="10" />
  2813. <hkern g1="bracketleft,bracketleft.caps,bracketleft.sc" g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE,Amacron,Abreve,Aogonek,Acaron,Aringacute,AEacute,Adotbelow" k="10" />
  2814. <hkern g1="bracketleft,bracketleft.caps,bracketleft.sc" g2="B,D,E,F,H,I,K,L,N,P,R,Egrave,Eacute,Ecircumflex,Edieresis,Igrave,Iacute,Icircumflex,Idieresis,Eth,Ntilde,Thorn,Dcaron,Dcroat,Emacron,Ebreve,Edotaccent,Eogonek,Ecaron,Hcircumflex,Hbar,Itilde,Imacron,Ibreve,Iogonek,Idotaccent,IJ,Kcommaaccent,Lacute,Lcommaaccent,Lcaron,Ldot,Lslash,Nacute,Ncommaaccent,Ncaron,Eng,Racute,Rcommaaccent,Rcaron,Icaron,Ddotbelow,Hdotbelow,Ndotaccent,Rdotbelow,Edotbelow,Etilde,Idotbelow,IJacute" k="60" />
  2815. <hkern g1="bracketleft,bracketleft.caps,bracketleft.sc" g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,Cacute,Ccircumflex,Cdotaccent,Ccaron,Gcircumflex,Gbreve,Gdotaccent,Gcommaaccent,Omacron,Obreve,Ohungarumlaut,OE,Ocaron,Gcaron,Oogonek,Gacute,Oslashacute,Odotbelow" k="70" />
  2816. <hkern g1="bracketleft,bracketleft.caps,bracketleft.sc" g2="U,Ugrave,Uacute,Ucircumflex,Udieresis,Utilde,Umacron,Ubreve,Uring,Uhungarumlaut,Uogonek,Ucaron,Udieresismacron,Udieresisacute,Udieresiscaron,Udieresisgrave,Udotbelow" k="60" />
  2817. <hkern g1="bracketleft,bracketleft.caps,bracketleft.sc" g2="V,W,Wcircumflex,Wgrave,Wacute,Wdieresis" k="30" />
  2818. <hkern g1="bracketleft,bracketleft.caps,bracketleft.sc" g2="Y,Yacute,Ycircumflex,Ydieresis,Ymacron,Ygrave,Ytilde" k="30" />
  2819. <hkern g1="bracketleft,bracketleft.caps,bracketleft.sc" g2="ampersand,ampersand.caps,ampersand.sc" k="50" />
  2820. <hkern g1="bracketleft,bracketleft.caps,bracketleft.sc" g2="asterisk,asterisk.caps,asterisk.sc" k="20" />
  2821. <hkern g1="bracketleft,bracketleft.caps,bracketleft.sc" g2="guillemetleft,guilsinglleft,guillemetleft.caps,guilsinglleft.caps,guillemetleft.sc,guilsinglleft.sc" k="60" />
  2822. <hkern g1="bracketleft,bracketleft.caps,bracketleft.sc" g2="periodcentered,bullet,periodcentered.caps,bullet.caps,periodcentered.sc,bullet.sc" k="50" />
  2823. <hkern g1="bracketleft,bracketleft.caps,bracketleft.sc" g2="S,Sacute,Scircumflex,Scedilla,Scaron,Scommaaccent,Sdotbelow" k="40" />
  2824. <hkern g1="bracketleft,bracketleft.caps,bracketleft.sc" g2="a,d,q,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,amacron,abreve,aogonek,dcaron,dcroat,acaron,aringacute,aeacute,ddotbelow,adotbelow" k="60" />
  2825. <hkern g1="bracketleft,bracketleft.caps,bracketleft.sc" g2="a.sc,aacute.sc,abreve.sc,acaron.sc,acircumflex.sc,adieresis.sc,adotbelow.sc,agrave.sc,amacron.sc,aogonek.sc,aring.sc,aringacute.sc,atilde.sc,ae.sc,aeacute.sc" k="10" />
  2826. <hkern g1="bracketleft,bracketleft.caps,bracketleft.sc" g2="c,e,o,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oslash,cacute,ccircumflex,cdotaccent,ccaron,emacron,ebreve,edotaccent,eogonek,ecaron,omacron,obreve,ohungarumlaut,oe,ocaron,oogonek,oslashacute,edotbelow,etilde,odotbelow,c_h,c_t" k="60" />
  2827. <hkern g1="bracketleft,bracketleft.caps,bracketleft.sc" g2="Z,Zacute,Zdotaccent,Zcaron,Zdotbelow" k="30" />
  2828. <hkern g1="bracketleft,bracketleft.caps,bracketleft.sc" g2="c.sc,cacute.sc,ccaron.sc,ccedilla.sc,ccircumflex.sc,cdotaccent.sc,schwa.sc,g.sc,gacute.sc,gbreve.sc,gcaron.sc,gcircumflex.sc,gcommaaccent.sc,gdotaccent.sc,o.sc,oacute.sc,obreve.sc,ocaron.sc,ocircumflex.sc,odieresis.sc,odotbelow.sc,ograve.sc,ohungarumlaut.sc,omacron.sc,oogonek.sc,oslash.sc,oslashacute.sc,otilde.sc,oe.sc,q.sc" k="10" />
  2829. <hkern g1="bracketleft,bracketleft.caps,bracketleft.sc" g2="u,ugrave,uacute,ucircumflex,udieresis,utilde,umacron,ubreve,uring,uhungarumlaut,uogonek,ucaron,udieresismacron,udieresisacute,udieresiscaron,udieresisgrave,udotbelow" k="60" />
  2830. <hkern g1="bracketleft,bracketleft.caps,bracketleft.sc" g2="J,Jcircumflex,Nhookleft,Jacute" k="-10" />
  2831. <hkern g1="bracketleft,bracketleft.caps,bracketleft.sc" g2="numbersign,numbersign.lf,numbersign.osf,numbersign.sc" k="110" />
  2832. <hkern g1="bracketleft,bracketleft.caps,bracketleft.sc" g2="slash,slash.caps,slash.sc" k="60" />
  2833. <hkern g1="bracketleft,bracketleft.caps,bracketleft.sc" g2="backslash,backslash.caps,backslash.sc" k="40" />
  2834. <hkern g1="bracketleft,bracketleft.caps,bracketleft.sc" g2="euro,euro.lf,euro.osf,euro.sc" k="70" />
  2835. <hkern g1="bracketleft,bracketleft.caps,bracketleft.sc" g2="dollar,dollar.lf,dollar.osf,dollar.sc" k="10" />
  2836. <hkern g1="bracketleft,bracketleft.caps,bracketleft.sc" g2="plus.lf,minus.lf,multiply.lf,divide.lf,equal.lf,notequal.lf,greater.lf,less.lf,greaterequal.lf,lessequal.lf,plusminus.lf,approxequal.lf,logicalnot.lf,infinity.lf,plus.sc,minus.sc,multiply.sc,divide.sc,equal.sc,notequal.sc,greater.sc,less.sc,greaterequal.sc,lessequal.sc,plusminus.sc,approxequal.sc,logicalnot.sc,infinity.sc" k="20" />
  2837. <hkern g1="bracketleft,bracketleft.caps,bracketleft.sc" g2="percent,perthousand,percent.osf,perthousand.osf,percent.sc,perthousand.sc" k="60" />
  2838. <hkern g1="bracketleft,bracketleft.caps,bracketleft.sc" g2="sterling,sterling.lf,sterling.osf,sterling.sc" k="30" />
  2839. <hkern g1="bracketleft,bracketleft.caps,bracketleft.sc" g2="zero,six,nine,zero.lf,six.lf,nine.lf,zero.osf,six.osf,nine.osf,zero.sc,six.sc,nine.sc" k="70" />
  2840. <hkern g1="bracketleft,bracketleft.caps,bracketleft.sc" g2="one,one.lf,one.osf,one.sc" k="-10" />
  2841. <hkern g1="bracketleft,bracketleft.caps,bracketleft.sc" g2="four,four.lf,four.osf,four.sc" k="80" />
  2842. <hkern g1="bracketleft,bracketleft.caps,bracketleft.sc" g2="plus,less,equal,greater,asciitilde,logicalnot,plusminus,multiply,divide,minus,infinity,approxequal,notequal,lessequal,greaterequal" k="20" />
  2843. <hkern g1="bracketleft,bracketleft.caps,bracketleft.sc" g2="yen,yen.lf,yen.osf,yen.sc" k="10" />
  2844. <hkern g1="bracketleft,bracketleft.caps,bracketleft.sc" g2="X" k="30" />
  2845. <hkern g1="bracketleft,bracketleft.caps,bracketleft.sc" g2="M" k="50" />
  2846. <hkern g1="bracketleft,bracketleft.caps,bracketleft.sc" g2="Schwa" k="70" />
  2847. <hkern g1="bracketleft,bracketleft.caps,bracketleft.sc" g2="integral" k="90" />
  2848. <hkern g1="bracketleft,bracketleft.caps,bracketleft.sc" g2="pi" k="30" />
  2849. <hkern g1="bracketleft,bracketleft.caps,bracketleft.sc" g2="radical" k="50" />
  2850. <hkern g1="periodcentered,bullet,periodcentered.caps,bullet.caps,periodcentered.sc,bullet.sc" g2="T,Tcedilla,Tcaron,Tbar,Tcommaaccent,Tdotbelow" k="60" />
  2851. <hkern g1="periodcentered,bullet,periodcentered.caps,bullet.caps,periodcentered.sc,bullet.sc" g2="V,W,Wcircumflex,Wgrave,Wacute,Wdieresis" k="20" />
  2852. <hkern g1="periodcentered,bullet,periodcentered.caps,bullet.caps,periodcentered.sc,bullet.sc" g2="Y,Yacute,Ycircumflex,Ydieresis,Ymacron,Ygrave,Ytilde" k="20" />
  2853. <hkern g1="periodcentered,bullet,periodcentered.caps,bullet.caps,periodcentered.sc,bullet.sc" g2="ampersand,ampersand.caps,ampersand.sc" k="40" />
  2854. <hkern g1="periodcentered,bullet,periodcentered.caps,bullet.caps,periodcentered.sc,bullet.sc" g2="asterisk,asterisk.caps,asterisk.sc" k="110" />
  2855. <hkern g1="periodcentered,bullet,periodcentered.caps,bullet.caps,periodcentered.sc,bullet.sc" g2="quotedbl,quotesingle,quotedbl.caps,quotesingle.caps,quotedbl.sc,quotesingle.sc" k="30" />
  2856. <hkern g1="periodcentered,bullet,periodcentered.caps,bullet.caps,periodcentered.sc,bullet.sc" g2="a.sc,aacute.sc,abreve.sc,acaron.sc,acircumflex.sc,adieresis.sc,adotbelow.sc,agrave.sc,amacron.sc,aogonek.sc,aring.sc,aringacute.sc,atilde.sc,ae.sc,aeacute.sc" k="20" />
  2857. <hkern g1="periodcentered,bullet,periodcentered.caps,bullet.caps,periodcentered.sc,bullet.sc" g2="comma,period,quotesinglbase,quotedblbase,ellipsis,quotesinglbase.caps,quotedblbase.caps,quotesinglbase.sc,quotedblbase.sc" k="10" />
  2858. <hkern g1="periodcentered,bullet,periodcentered.caps,bullet.caps,periodcentered.sc,bullet.sc" g2="J,Jcircumflex,Nhookleft,Jacute" k="-30" />
  2859. <hkern g1="periodcentered,bullet,periodcentered.caps,bullet.caps,periodcentered.sc,bullet.sc" g2="y.sc,yacute.sc,ycircumflex.sc,ydieresis.sc,ygrave.sc,ymacron.sc,ytilde.sc" k="40" />
  2860. <hkern g1="periodcentered,bullet,periodcentered.caps,bullet.caps,periodcentered.sc,bullet.sc" g2="numbersign,numbersign.lf,numbersign.osf,numbersign.sc" k="60" />
  2861. <hkern g1="periodcentered,bullet,periodcentered.caps,bullet.caps,periodcentered.sc,bullet.sc" g2="slash,slash.caps,slash.sc" k="40" />
  2862. <hkern g1="periodcentered,bullet,periodcentered.caps,bullet.caps,periodcentered.sc,bullet.sc" g2="t.sc,tbar.sc,tcaron.sc,tcedilla.sc,tcommaaccent.sc,tdotbelow.sc" k="30" />
  2863. <hkern g1="periodcentered,bullet,periodcentered.caps,bullet.caps,periodcentered.sc,bullet.sc" g2="v.sc,w.sc,wacute.sc,wcircumflex.sc,wdieresis.sc,wgrave.sc" k="40" />
  2864. <hkern g1="periodcentered,bullet,periodcentered.caps,bullet.caps,periodcentered.sc,bullet.sc" g2="z.sc,zacute.sc,zcaron.sc,zdotaccent.sc,zdotbelow.sc" k="20" />
  2865. <hkern g1="periodcentered,bullet,periodcentered.caps,bullet.caps,periodcentered.sc,bullet.sc" g2="seven,seven.lf,seven.osf,seven.sc" k="50" />
  2866. <hkern g1="periodcentered,bullet,periodcentered.caps,bullet.caps,periodcentered.sc,bullet.sc" g2="backslash,backslash.caps,backslash.sc" k="60" />
  2867. <hkern g1="periodcentered,bullet,periodcentered.caps,bullet.caps,periodcentered.sc,bullet.sc" g2="euro,euro.lf,euro.osf,euro.sc" k="20" />
  2868. <hkern g1="periodcentered,bullet,periodcentered.caps,bullet.caps,periodcentered.sc,bullet.sc" g2="dollar,dollar.lf,dollar.osf,dollar.sc" k="20" />
  2869. <hkern g1="periodcentered,bullet,periodcentered.caps,bullet.caps,periodcentered.sc,bullet.sc" g2="percent,perthousand,percent.osf,perthousand.osf,percent.sc,perthousand.sc" k="50" />
  2870. <hkern g1="periodcentered,bullet,periodcentered.caps,bullet.caps,periodcentered.sc,bullet.sc" g2="sterling,sterling.lf,sterling.osf,sterling.sc" k="50" />
  2871. <hkern g1="periodcentered,bullet,periodcentered.caps,bullet.caps,periodcentered.sc,bullet.sc" g2="zero,six,nine,zero.lf,six.lf,nine.lf,zero.osf,six.osf,nine.osf,zero.sc,six.sc,nine.sc" k="10" />
  2872. <hkern g1="periodcentered,bullet,periodcentered.caps,bullet.caps,periodcentered.sc,bullet.sc" g2="currency,currency.lf,currency.osf,currency.sc" k="10" />
  2873. <hkern g1="periodcentered,bullet,periodcentered.caps,bullet.caps,periodcentered.sc,bullet.sc" g2="florin,florin.lf,florin.osf,florin.sc" k="10" />
  2874. <hkern g1="periodcentered,bullet,periodcentered.caps,bullet.caps,periodcentered.sc,bullet.sc" g2="two,two.lf,two.osf,two.sc" k="10" />
  2875. <hkern g1="periodcentered,bullet,periodcentered.caps,bullet.caps,periodcentered.sc,bullet.sc" g2="quotedblleft.sc,quoteleft.sc" k="20" />
  2876. <hkern g1="periodcentered,bullet,periodcentered.caps,bullet.caps,periodcentered.sc,bullet.sc" g2="j,jcircumflex,dotlessj,nhookleft,jacute" k="-10" />
  2877. <hkern g1="periodcentered,bullet,periodcentered.caps,bullet.caps,periodcentered.sc,bullet.sc" g2="x.sc" k="30" />
  2878. <hkern g1="periodcentered,bullet,periodcentered.caps,bullet.caps,periodcentered.sc,bullet.sc" g2="Schwa" k="10" />
  2879. <hkern g1="periodcentered,bullet,periodcentered.caps,bullet.caps,periodcentered.sc,bullet.sc" g2="integral" k="140" />
  2880. <hkern g1="periodcentered,bullet,periodcentered.caps,bullet.caps,periodcentered.sc,bullet.sc" g2="pi" k="50" />
  2881. <hkern g1="c,ccedilla,cacute,ccircumflex,cdotaccent,ccaron,kgreenlandic" g2="asterisk,asterisk.caps,asterisk.sc" k="30" />
  2882. <hkern g1="c,ccedilla,cacute,ccircumflex,cdotaccent,ccaron,kgreenlandic" g2="bracketright,bracketright.caps,bracketright.sc" k="30" />
  2883. <hkern g1="c,ccedilla,cacute,ccircumflex,cdotaccent,ccaron,kgreenlandic" g2="question,question.caps,question.sc" k="30" />
  2884. <hkern g1="c,ccedilla,cacute,ccircumflex,cdotaccent,ccaron,kgreenlandic" g2="quoteleft,quotedblleft,quotedblleft.caps,quoteleft.caps" k="20" />
  2885. <hkern g1="c,ccedilla,cacute,ccircumflex,cdotaccent,ccaron,kgreenlandic" g2="napostrophe,quoteright,quotedblright,quotedblright.caps,quoteright.caps" k="40" />
  2886. <hkern g1="c,ccedilla,cacute,ccircumflex,cdotaccent,ccaron,kgreenlandic" g2="a,d,q,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,amacron,abreve,aogonek,dcaron,dcroat,acaron,aringacute,aeacute,ddotbelow,adotbelow" k="10" />
  2887. <hkern g1="c,ccedilla,cacute,ccircumflex,cdotaccent,ccaron,kgreenlandic" g2="c,e,o,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oslash,cacute,ccircumflex,cdotaccent,ccaron,emacron,ebreve,edotaccent,eogonek,ecaron,omacron,obreve,ohungarumlaut,oe,ocaron,oogonek,oslashacute,edotbelow,etilde,odotbelow,c_h,c_t" k="25" />
  2888. <hkern g1="c,ccedilla,cacute,ccircumflex,cdotaccent,ccaron,kgreenlandic" g2="s,sacute,scircumflex,scedilla,scaron,scommaaccent,sdotbelow,s_h" k="10" />
  2889. <hkern g1="c,ccedilla,cacute,ccircumflex,cdotaccent,ccaron,kgreenlandic" g2="g,gcircumflex,gbreve,gdotaccent,gcommaaccent,gcaron,gacute" k="5" />
  2890. <hkern g1="c,ccedilla,cacute,ccircumflex,cdotaccent,ccaron,kgreenlandic" g2="m,n,p,r,ntilde,dotlessi,kgreenlandic,nacute,ncommaaccent,ncaron,eng,racute,rcommaaccent,rcaron,ndotaccent,rdotbelow" k="10" />
  2891. <hkern g1="c,ccedilla,cacute,ccircumflex,cdotaccent,ccaron,kgreenlandic" g2="t,tcedilla,tcaron,tbar,tcommaaccent,tdotbelow" k="5" />
  2892. <hkern g1="c,ccedilla,cacute,ccircumflex,cdotaccent,ccaron,kgreenlandic" g2="v,w,wcircumflex,wgrave,wacute,wdieresis" k="20" />
  2893. <hkern g1="c,ccedilla,cacute,ccircumflex,cdotaccent,ccaron,kgreenlandic" g2="y,yacute,ydieresis,ycircumflex,ymacron,ygrave,ytilde" k="15" />
  2894. <hkern g1="c,ccedilla,cacute,ccircumflex,cdotaccent,ccaron,kgreenlandic" g2="b,h,k,l,thorn,hcircumflex,hbar,kcommaaccent,lacute,lcommaaccent,lcaron,ldot,lslash,hdotbelow" k="10" />
  2895. <hkern g1="c,ccedilla,cacute,ccircumflex,cdotaccent,ccaron,kgreenlandic" g2="f,germandbls,Germandbls,fi,fl" k="5" />
  2896. <hkern g1="c,ccedilla,cacute,ccircumflex,cdotaccent,ccaron,kgreenlandic" g2="numbersign,numbersign.lf,numbersign.osf,numbersign.sc" k="40" />
  2897. <hkern g1="c,ccedilla,cacute,ccircumflex,cdotaccent,ccaron,kgreenlandic" g2="x" k="15" />
  2898. <hkern g1="c.sc,cacute.sc,ccaron.sc,ccedilla.sc,ccircumflex.sc,cdotaccent.sc" g2="ampersand,ampersand.caps,ampersand.sc" k="30" />
  2899. <hkern g1="c.sc,cacute.sc,ccaron.sc,ccedilla.sc,ccircumflex.sc,cdotaccent.sc" g2="a.sc,aacute.sc,abreve.sc,acaron.sc,acircumflex.sc,adieresis.sc,adotbelow.sc,agrave.sc,amacron.sc,aogonek.sc,aring.sc,aringacute.sc,atilde.sc,ae.sc,aeacute.sc" k="10" />
  2900. <hkern g1="c.sc,cacute.sc,ccaron.sc,ccedilla.sc,ccircumflex.sc,cdotaccent.sc" g2="c.sc,cacute.sc,ccaron.sc,ccedilla.sc,ccircumflex.sc,cdotaccent.sc,schwa.sc,g.sc,gacute.sc,gbreve.sc,gcaron.sc,gcircumflex.sc,gcommaaccent.sc,gdotaccent.sc,o.sc,oacute.sc,obreve.sc,ocaron.sc,ocircumflex.sc,odieresis.sc,odotbelow.sc,ograve.sc,ohungarumlaut.sc,omacron.sc,oogonek.sc,oslash.sc,oslashacute.sc,otilde.sc,oe.sc,q.sc" k="40" />
  2901. <hkern g1="c.sc,cacute.sc,ccaron.sc,ccedilla.sc,ccircumflex.sc,cdotaccent.sc" g2="y.sc,yacute.sc,ycircumflex.sc,ydieresis.sc,ygrave.sc,ymacron.sc,ytilde.sc" k="25" />
  2902. <hkern g1="c.sc,cacute.sc,ccaron.sc,ccedilla.sc,ccircumflex.sc,cdotaccent.sc" g2="b.sc,d.sc,eth.sc,dcaron.sc,dcroat.sc,ddotbelow.sc,e.sc,eacute.sc,ebreve.sc,ecaron.sc,ecircumflex.sc,edieresis.sc,edotaccent.sc,edotbelow.sc,egrave.sc,emacron.sc,eogonek.sc,etilde.sc,f.sc,h.sc,hbar.sc,hcircumflex.sc,hdotbelow.sc,i.sc,dotlessi.sc,iacute.sc,ibreve.sc,icaron.sc,icircumflex.sc,idieresis.sc,idotaccent.sc,idotbelow.sc,igrave.sc,ij.sc,imacron.sc,iogonek.sc,itilde.sc,k.sc,kcommaaccent.sc,kgreenlandic.sc,l.sc,lacute.sc,lcaron.sc,lcommaaccent.sc,ldot.sc,lslash.sc,n.sc,nacute.sc,ncaron.sc,ncommaaccent.sc,ndotaccent.sc,eng.sc,ntilde.sc,p.sc,thorn.sc,r.sc,racute.sc,rcaron.sc,rcommaaccent.sc,rdotbelow.sc,germandbls.sc" k="5" />
  2903. <hkern g1="c.sc,cacute.sc,ccaron.sc,ccedilla.sc,ccircumflex.sc,cdotaccent.sc" g2="numbersign,numbersign.lf,numbersign.osf,numbersign.sc" k="50" />
  2904. <hkern g1="c.sc,cacute.sc,ccaron.sc,ccedilla.sc,ccircumflex.sc,cdotaccent.sc" g2="s.sc,sacute.sc,scaron.sc,scedilla.sc,scircumflex.sc,scommaaccent.sc,sdotbelow.sc" k="15" />
  2905. <hkern g1="c.sc,cacute.sc,ccaron.sc,ccedilla.sc,ccircumflex.sc,cdotaccent.sc" g2="slash,slash.caps,slash.sc" k="40" />
  2906. <hkern g1="c.sc,cacute.sc,ccaron.sc,ccedilla.sc,ccircumflex.sc,cdotaccent.sc" g2="t.sc,tbar.sc,tcaron.sc,tcedilla.sc,tcommaaccent.sc,tdotbelow.sc" k="45" />
  2907. <hkern g1="c.sc,cacute.sc,ccaron.sc,ccedilla.sc,ccircumflex.sc,cdotaccent.sc" g2="u.sc,uacute.sc,ubreve.sc,ucaron.sc,ucircumflex.sc,udieresis.sc,udieresisacute.sc,udieresiscaron.sc,udieresisgrave.sc,udieresismacron.sc,udotbelow.sc,ugrave.sc,uhungarumlaut.sc,umacron.sc,uogonek.sc,uring.sc,utilde.sc" k="15" />
  2908. <hkern g1="c.sc,cacute.sc,ccaron.sc,ccedilla.sc,ccircumflex.sc,cdotaccent.sc" g2="v.sc,w.sc,wacute.sc,wcircumflex.sc,wdieresis.sc,wgrave.sc" k="30" />
  2909. <hkern g1="c.sc,cacute.sc,ccaron.sc,ccedilla.sc,ccircumflex.sc,cdotaccent.sc" g2="z.sc,zacute.sc,zcaron.sc,zdotaccent.sc,zdotbelow.sc" k="5" />
  2910. <hkern g1="c.sc,cacute.sc,ccaron.sc,ccedilla.sc,ccircumflex.sc,cdotaccent.sc" g2="euro,euro.lf,euro.osf,euro.sc" k="60" />
  2911. <hkern g1="c.sc,cacute.sc,ccaron.sc,ccedilla.sc,ccircumflex.sc,cdotaccent.sc" g2="cent,cent.lf,cent.osf,cent.sc" k="10" />
  2912. <hkern g1="c.sc,cacute.sc,ccaron.sc,ccedilla.sc,ccircumflex.sc,cdotaccent.sc" g2="j.sc,dotlessj.sc,jacute.sc,jcircumflex.sc,nhookleft.sc" k="5" />
  2913. <hkern g1="c.sc,cacute.sc,ccaron.sc,ccedilla.sc,ccircumflex.sc,cdotaccent.sc" g2="m.sc" k="10" />
  2914. <hkern g1="c.sc,cacute.sc,ccaron.sc,ccedilla.sc,ccircumflex.sc,cdotaccent.sc" g2="x.sc" k="15" />
  2915. <hkern g1="d,l,dcaron,dcroat,lacute,lcommaaccent,lcaron,ldot,lslash,ddotbelow,fl" g2="s,sacute,scircumflex,scedilla,scaron,scommaaccent,sdotbelow,s_h" k="5" />
  2916. <hkern g1="d,l,dcaron,dcroat,lacute,lcommaaccent,lcaron,ldot,lslash,ddotbelow,fl" g2="numbersign,numbersign.lf,numbersign.osf,numbersign.sc" k="50" />
  2917. <hkern g1="d,l,dcaron,dcroat,lacute,lcommaaccent,lcaron,ldot,lslash,ddotbelow,fl" g2="paragraph" k="30" />
  2918. <hkern g1="d.sc,eth.sc,dcaron.sc,dcroat.sc,ddotbelow.sc,schwa.sc,o.sc,oacute.sc,obreve.sc,ocaron.sc,ocircumflex.sc,odieresis.sc,odotbelow.sc,ograve.sc,ohungarumlaut.sc,omacron.sc,oogonek.sc,oslash.sc,oslashacute.sc,otilde.sc,q.sc" g2="ampersand,ampersand.caps,ampersand.sc" k="30" />
  2919. <hkern g1="d.sc,eth.sc,dcaron.sc,dcroat.sc,ddotbelow.sc,schwa.sc,o.sc,oacute.sc,obreve.sc,ocaron.sc,ocircumflex.sc,odieresis.sc,odotbelow.sc,ograve.sc,ohungarumlaut.sc,omacron.sc,oogonek.sc,oslash.sc,oslashacute.sc,otilde.sc,q.sc" g2="asterisk,asterisk.caps,asterisk.sc" k="70" />
  2920. <hkern g1="d.sc,eth.sc,dcaron.sc,dcroat.sc,ddotbelow.sc,schwa.sc,o.sc,oacute.sc,obreve.sc,ocaron.sc,ocircumflex.sc,odieresis.sc,odotbelow.sc,ograve.sc,ohungarumlaut.sc,omacron.sc,oogonek.sc,oslash.sc,oslashacute.sc,otilde.sc,q.sc" g2="quotedbl,quotesingle,quotedbl.caps,quotesingle.caps,quotedbl.sc,quotesingle.sc" k="10" />
  2921. <hkern g1="d.sc,eth.sc,dcaron.sc,dcroat.sc,ddotbelow.sc,schwa.sc,o.sc,oacute.sc,obreve.sc,ocaron.sc,ocircumflex.sc,odieresis.sc,odotbelow.sc,ograve.sc,ohungarumlaut.sc,omacron.sc,oogonek.sc,oslash.sc,oslashacute.sc,otilde.sc,q.sc" g2="periodcentered,bullet,periodcentered.caps,bullet.caps,periodcentered.sc,bullet.sc" k="10" />
  2922. <hkern g1="d.sc,eth.sc,dcaron.sc,dcroat.sc,ddotbelow.sc,schwa.sc,o.sc,oacute.sc,obreve.sc,ocaron.sc,ocircumflex.sc,odieresis.sc,odotbelow.sc,ograve.sc,ohungarumlaut.sc,omacron.sc,oogonek.sc,oslash.sc,oslashacute.sc,otilde.sc,q.sc" g2="a.sc,aacute.sc,abreve.sc,acaron.sc,acircumflex.sc,adieresis.sc,adotbelow.sc,agrave.sc,amacron.sc,aogonek.sc,aring.sc,aringacute.sc,atilde.sc,ae.sc,aeacute.sc" k="20" />
  2923. <hkern g1="d.sc,eth.sc,dcaron.sc,dcroat.sc,ddotbelow.sc,schwa.sc,o.sc,oacute.sc,obreve.sc,ocaron.sc,ocircumflex.sc,odieresis.sc,odotbelow.sc,ograve.sc,ohungarumlaut.sc,omacron.sc,oogonek.sc,oslash.sc,oslashacute.sc,otilde.sc,q.sc" g2="c.sc,cacute.sc,ccaron.sc,ccedilla.sc,ccircumflex.sc,cdotaccent.sc,schwa.sc,g.sc,gacute.sc,gbreve.sc,gcaron.sc,gcircumflex.sc,gcommaaccent.sc,gdotaccent.sc,o.sc,oacute.sc,obreve.sc,ocaron.sc,ocircumflex.sc,odieresis.sc,odotbelow.sc,ograve.sc,ohungarumlaut.sc,omacron.sc,oogonek.sc,oslash.sc,oslashacute.sc,otilde.sc,oe.sc,q.sc" k="20" />
  2924. <hkern g1="d.sc,eth.sc,dcaron.sc,dcroat.sc,ddotbelow.sc,schwa.sc,o.sc,oacute.sc,obreve.sc,ocaron.sc,ocircumflex.sc,odieresis.sc,odotbelow.sc,ograve.sc,ohungarumlaut.sc,omacron.sc,oogonek.sc,oslash.sc,oslashacute.sc,otilde.sc,q.sc" g2="comma,period,quotesinglbase,quotedblbase,ellipsis,quotesinglbase.caps,quotedblbase.caps,quotesinglbase.sc,quotedblbase.sc" k="30" />
  2925. <hkern g1="d.sc,eth.sc,dcaron.sc,dcroat.sc,ddotbelow.sc,schwa.sc,o.sc,oacute.sc,obreve.sc,ocaron.sc,ocircumflex.sc,odieresis.sc,odotbelow.sc,ograve.sc,ohungarumlaut.sc,omacron.sc,oogonek.sc,oslash.sc,oslashacute.sc,otilde.sc,q.sc" g2="y.sc,yacute.sc,ycircumflex.sc,ydieresis.sc,ygrave.sc,ymacron.sc,ytilde.sc" k="40" />
  2926. <hkern g1="d.sc,eth.sc,dcaron.sc,dcroat.sc,ddotbelow.sc,schwa.sc,o.sc,oacute.sc,obreve.sc,ocaron.sc,ocircumflex.sc,odieresis.sc,odotbelow.sc,ograve.sc,ohungarumlaut.sc,omacron.sc,oogonek.sc,oslash.sc,oslashacute.sc,otilde.sc,q.sc" g2="b.sc,d.sc,eth.sc,dcaron.sc,dcroat.sc,ddotbelow.sc,e.sc,eacute.sc,ebreve.sc,ecaron.sc,ecircumflex.sc,edieresis.sc,edotaccent.sc,edotbelow.sc,egrave.sc,emacron.sc,eogonek.sc,etilde.sc,f.sc,h.sc,hbar.sc,hcircumflex.sc,hdotbelow.sc,i.sc,dotlessi.sc,iacute.sc,ibreve.sc,icaron.sc,icircumflex.sc,idieresis.sc,idotaccent.sc,idotbelow.sc,igrave.sc,ij.sc,imacron.sc,iogonek.sc,itilde.sc,k.sc,kcommaaccent.sc,kgreenlandic.sc,l.sc,lacute.sc,lcaron.sc,lcommaaccent.sc,ldot.sc,lslash.sc,n.sc,nacute.sc,ncaron.sc,ncommaaccent.sc,ndotaccent.sc,eng.sc,ntilde.sc,p.sc,thorn.sc,r.sc,racute.sc,rcaron.sc,rcommaaccent.sc,rdotbelow.sc,germandbls.sc" k="15" />
  2927. <hkern g1="d.sc,eth.sc,dcaron.sc,dcroat.sc,ddotbelow.sc,schwa.sc,o.sc,oacute.sc,obreve.sc,ocaron.sc,ocircumflex.sc,odieresis.sc,odotbelow.sc,ograve.sc,ohungarumlaut.sc,omacron.sc,oogonek.sc,oslash.sc,oslashacute.sc,otilde.sc,q.sc" g2="numbersign,numbersign.lf,numbersign.osf,numbersign.sc" k="60" />
  2928. <hkern g1="d.sc,eth.sc,dcaron.sc,dcroat.sc,ddotbelow.sc,schwa.sc,o.sc,oacute.sc,obreve.sc,ocaron.sc,ocircumflex.sc,odieresis.sc,odotbelow.sc,ograve.sc,ohungarumlaut.sc,omacron.sc,oogonek.sc,oslash.sc,oslashacute.sc,otilde.sc,q.sc" g2="s.sc,sacute.sc,scaron.sc,scedilla.sc,scircumflex.sc,scommaaccent.sc,sdotbelow.sc" k="15" />
  2929. <hkern g1="d.sc,eth.sc,dcaron.sc,dcroat.sc,ddotbelow.sc,schwa.sc,o.sc,oacute.sc,obreve.sc,ocaron.sc,ocircumflex.sc,odieresis.sc,odotbelow.sc,ograve.sc,ohungarumlaut.sc,omacron.sc,oogonek.sc,oslash.sc,oslashacute.sc,otilde.sc,q.sc" g2="slash,slash.caps,slash.sc" k="40" />
  2930. <hkern g1="d.sc,eth.sc,dcaron.sc,dcroat.sc,ddotbelow.sc,schwa.sc,o.sc,oacute.sc,obreve.sc,ocaron.sc,ocircumflex.sc,odieresis.sc,odotbelow.sc,ograve.sc,ohungarumlaut.sc,omacron.sc,oogonek.sc,oslash.sc,oslashacute.sc,otilde.sc,q.sc" g2="t.sc,tbar.sc,tcaron.sc,tcedilla.sc,tcommaaccent.sc,tdotbelow.sc" k="80" />
  2931. <hkern g1="d.sc,eth.sc,dcaron.sc,dcroat.sc,ddotbelow.sc,schwa.sc,o.sc,oacute.sc,obreve.sc,ocaron.sc,ocircumflex.sc,odieresis.sc,odotbelow.sc,ograve.sc,ohungarumlaut.sc,omacron.sc,oogonek.sc,oslash.sc,oslashacute.sc,otilde.sc,q.sc" g2="u.sc,uacute.sc,ubreve.sc,ucaron.sc,ucircumflex.sc,udieresis.sc,udieresisacute.sc,udieresiscaron.sc,udieresisgrave.sc,udieresismacron.sc,udotbelow.sc,ugrave.sc,uhungarumlaut.sc,umacron.sc,uogonek.sc,uring.sc,utilde.sc" k="10" />
  2932. <hkern g1="d.sc,eth.sc,dcaron.sc,dcroat.sc,ddotbelow.sc,schwa.sc,o.sc,oacute.sc,obreve.sc,ocaron.sc,ocircumflex.sc,odieresis.sc,odotbelow.sc,ograve.sc,ohungarumlaut.sc,omacron.sc,oogonek.sc,oslash.sc,oslashacute.sc,otilde.sc,q.sc" g2="v.sc,w.sc,wacute.sc,wcircumflex.sc,wdieresis.sc,wgrave.sc" k="40" />
  2933. <hkern g1="d.sc,eth.sc,dcaron.sc,dcroat.sc,ddotbelow.sc,schwa.sc,o.sc,oacute.sc,obreve.sc,ocaron.sc,ocircumflex.sc,odieresis.sc,odotbelow.sc,ograve.sc,ohungarumlaut.sc,omacron.sc,oogonek.sc,oslash.sc,oslashacute.sc,otilde.sc,q.sc" g2="z.sc,zacute.sc,zcaron.sc,zdotaccent.sc,zdotbelow.sc" k="20" />
  2934. <hkern g1="d.sc,eth.sc,dcaron.sc,dcroat.sc,ddotbelow.sc,schwa.sc,o.sc,oacute.sc,obreve.sc,ocaron.sc,ocircumflex.sc,odieresis.sc,odotbelow.sc,ograve.sc,ohungarumlaut.sc,omacron.sc,oogonek.sc,oslash.sc,oslashacute.sc,otilde.sc,q.sc" g2="backslash,backslash.caps,backslash.sc" k="60" />
  2935. <hkern g1="d.sc,eth.sc,dcaron.sc,dcroat.sc,ddotbelow.sc,schwa.sc,o.sc,oacute.sc,obreve.sc,ocaron.sc,ocircumflex.sc,odieresis.sc,odotbelow.sc,ograve.sc,ohungarumlaut.sc,omacron.sc,oogonek.sc,oslash.sc,oslashacute.sc,otilde.sc,q.sc" g2="euro,euro.lf,euro.osf,euro.sc" k="50" />
  2936. <hkern g1="d.sc,eth.sc,dcaron.sc,dcroat.sc,ddotbelow.sc,schwa.sc,o.sc,oacute.sc,obreve.sc,ocaron.sc,ocircumflex.sc,odieresis.sc,odotbelow.sc,ograve.sc,ohungarumlaut.sc,omacron.sc,oogonek.sc,oslash.sc,oslashacute.sc,otilde.sc,q.sc" g2="sterling,sterling.lf,sterling.osf,sterling.sc" k="30" />
  2937. <hkern g1="d.sc,eth.sc,dcaron.sc,dcroat.sc,ddotbelow.sc,schwa.sc,o.sc,oacute.sc,obreve.sc,ocaron.sc,ocircumflex.sc,odieresis.sc,odotbelow.sc,ograve.sc,ohungarumlaut.sc,omacron.sc,oogonek.sc,oslash.sc,oslashacute.sc,otilde.sc,q.sc" g2="quotedblright.sc,quoteright.sc" k="20" />
  2938. <hkern g1="d.sc,eth.sc,dcaron.sc,dcroat.sc,ddotbelow.sc,schwa.sc,o.sc,oacute.sc,obreve.sc,ocaron.sc,ocircumflex.sc,odieresis.sc,odotbelow.sc,ograve.sc,ohungarumlaut.sc,omacron.sc,oogonek.sc,oslash.sc,oslashacute.sc,otilde.sc,q.sc" g2="yen,yen.lf,yen.osf,yen.sc" k="10" />
  2939. <hkern g1="d.sc,eth.sc,dcaron.sc,dcroat.sc,ddotbelow.sc,schwa.sc,o.sc,oacute.sc,obreve.sc,ocaron.sc,ocircumflex.sc,odieresis.sc,odotbelow.sc,ograve.sc,ohungarumlaut.sc,omacron.sc,oogonek.sc,oslash.sc,oslashacute.sc,otilde.sc,q.sc" g2="trademark" k="100" />
  2940. <hkern g1="d.sc,eth.sc,dcaron.sc,dcroat.sc,ddotbelow.sc,schwa.sc,o.sc,oacute.sc,obreve.sc,ocaron.sc,ocircumflex.sc,odieresis.sc,odotbelow.sc,ograve.sc,ohungarumlaut.sc,omacron.sc,oogonek.sc,oslash.sc,oslashacute.sc,otilde.sc,q.sc" g2="m.sc" k="15" />
  2941. <hkern g1="d.sc,eth.sc,dcaron.sc,dcroat.sc,ddotbelow.sc,schwa.sc,o.sc,oacute.sc,obreve.sc,ocaron.sc,ocircumflex.sc,odieresis.sc,odotbelow.sc,ograve.sc,ohungarumlaut.sc,omacron.sc,oogonek.sc,oslash.sc,oslashacute.sc,otilde.sc,q.sc" g2="bar" k="20" />
  2942. <hkern g1="d.sc,eth.sc,dcaron.sc,dcroat.sc,ddotbelow.sc,schwa.sc,o.sc,oacute.sc,obreve.sc,ocaron.sc,ocircumflex.sc,odieresis.sc,odotbelow.sc,ograve.sc,ohungarumlaut.sc,omacron.sc,oogonek.sc,oslash.sc,oslashacute.sc,otilde.sc,q.sc" g2="x.sc" k="50" />
  2943. <hkern g1="d.sc,eth.sc,dcaron.sc,dcroat.sc,ddotbelow.sc,schwa.sc,o.sc,oacute.sc,obreve.sc,ocaron.sc,ocircumflex.sc,odieresis.sc,odotbelow.sc,ograve.sc,ohungarumlaut.sc,omacron.sc,oogonek.sc,oslash.sc,oslashacute.sc,otilde.sc,q.sc" g2="brokenbar" k="20" />
  2944. <hkern g1="d.sc,eth.sc,dcaron.sc,dcroat.sc,ddotbelow.sc,schwa.sc,o.sc,oacute.sc,obreve.sc,ocaron.sc,ocircumflex.sc,odieresis.sc,odotbelow.sc,ograve.sc,ohungarumlaut.sc,omacron.sc,oogonek.sc,oslash.sc,oslashacute.sc,otilde.sc,q.sc" g2="dagger,daggerdbl" k="20" />
  2945. <hkern g1="exclam,exclamdown,exclam.caps,exclamdown.caps,exclam.sc,exclamdown.sc" g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE,Amacron,Abreve,Aogonek,Acaron,Aringacute,AEacute,Adotbelow" k="20" />
  2946. <hkern g1="exclam,exclamdown,exclam.caps,exclamdown.caps,exclam.sc,exclamdown.sc" g2="B,D,E,F,H,I,K,L,N,P,R,Egrave,Eacute,Ecircumflex,Edieresis,Igrave,Iacute,Icircumflex,Idieresis,Eth,Ntilde,Thorn,Dcaron,Dcroat,Emacron,Ebreve,Edotaccent,Eogonek,Ecaron,Hcircumflex,Hbar,Itilde,Imacron,Ibreve,Iogonek,Idotaccent,IJ,Kcommaaccent,Lacute,Lcommaaccent,Lcaron,Ldot,Lslash,Nacute,Ncommaaccent,Ncaron,Eng,Racute,Rcommaaccent,Rcaron,Icaron,Ddotbelow,Hdotbelow,Ndotaccent,Rdotbelow,Edotbelow,Etilde,Idotbelow,IJacute" k="30" />
  2947. <hkern g1="exclam,exclamdown,exclam.caps,exclamdown.caps,exclam.sc,exclamdown.sc" g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,Cacute,Ccircumflex,Cdotaccent,Ccaron,Gcircumflex,Gbreve,Gdotaccent,Gcommaaccent,Omacron,Obreve,Ohungarumlaut,OE,Ocaron,Gcaron,Oogonek,Gacute,Oslashacute,Odotbelow" k="30" />
  2948. <hkern g1="exclam,exclamdown,exclam.caps,exclamdown.caps,exclam.sc,exclamdown.sc" g2="T,Tcedilla,Tcaron,Tbar,Tcommaaccent,Tdotbelow" k="30" />
  2949. <hkern g1="exclam,exclamdown,exclam.caps,exclamdown.caps,exclam.sc,exclamdown.sc" g2="U,Ugrave,Uacute,Ucircumflex,Udieresis,Utilde,Umacron,Ubreve,Uring,Uhungarumlaut,Uogonek,Ucaron,Udieresismacron,Udieresisacute,Udieresiscaron,Udieresisgrave,Udotbelow" k="20" />
  2950. <hkern g1="exclam,exclamdown,exclam.caps,exclamdown.caps,exclam.sc,exclamdown.sc" g2="V,W,Wcircumflex,Wgrave,Wacute,Wdieresis" k="10" />
  2951. <hkern g1="exclam,exclamdown,exclam.caps,exclamdown.caps,exclam.sc,exclamdown.sc" g2="Y,Yacute,Ycircumflex,Ydieresis,Ymacron,Ygrave,Ytilde" k="10" />
  2952. <hkern g1="exclam,exclamdown,exclam.caps,exclamdown.caps,exclam.sc,exclamdown.sc" g2="ampersand,ampersand.caps,ampersand.sc" k="30" />
  2953. <hkern g1="exclam,exclamdown,exclam.caps,exclamdown.caps,exclam.sc,exclamdown.sc" g2="asterisk,asterisk.caps,asterisk.sc" k="20" />
  2954. <hkern g1="exclam,exclamdown,exclam.caps,exclamdown.caps,exclam.sc,exclamdown.sc" g2="guillemetleft,guilsinglleft,guillemetleft.caps,guilsinglleft.caps,guillemetleft.sc,guilsinglleft.sc" k="10" />
  2955. <hkern g1="exclam,exclamdown,exclam.caps,exclamdown.caps,exclam.sc,exclamdown.sc" g2="S,Sacute,Scircumflex,Scedilla,Scaron,Scommaaccent,Sdotbelow" k="10" />
  2956. <hkern g1="exclam,exclamdown,exclam.caps,exclamdown.caps,exclam.sc,exclamdown.sc" g2="a,d,q,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,amacron,abreve,aogonek,dcaron,dcroat,acaron,aringacute,aeacute,ddotbelow,adotbelow" k="10" />
  2957. <hkern g1="exclam,exclamdown,exclam.caps,exclamdown.caps,exclam.sc,exclamdown.sc" g2="c.sc,cacute.sc,ccaron.sc,ccedilla.sc,ccircumflex.sc,cdotaccent.sc,schwa.sc,g.sc,gacute.sc,gbreve.sc,gcaron.sc,gcircumflex.sc,gcommaaccent.sc,gdotaccent.sc,o.sc,oacute.sc,obreve.sc,ocaron.sc,ocircumflex.sc,odieresis.sc,odotbelow.sc,ograve.sc,ohungarumlaut.sc,omacron.sc,oogonek.sc,oslash.sc,oslashacute.sc,otilde.sc,oe.sc,q.sc" k="10" />
  2958. <hkern g1="exclam,exclamdown,exclam.caps,exclamdown.caps,exclam.sc,exclamdown.sc" g2="J,Jcircumflex,Nhookleft,Jacute" k="-10" />
  2959. <hkern g1="exclam,exclamdown,exclam.caps,exclamdown.caps,exclam.sc,exclamdown.sc" g2="y.sc,yacute.sc,ycircumflex.sc,ydieresis.sc,ygrave.sc,ymacron.sc,ytilde.sc" k="10" />
  2960. <hkern g1="exclam,exclamdown,exclam.caps,exclamdown.caps,exclam.sc,exclamdown.sc" g2="numbersign,numbersign.lf,numbersign.osf,numbersign.sc" k="60" />
  2961. <hkern g1="exclam,exclamdown,exclam.caps,exclamdown.caps,exclam.sc,exclamdown.sc" g2="slash,slash.caps,slash.sc" k="10" />
  2962. <hkern g1="exclam,exclamdown,exclam.caps,exclamdown.caps,exclam.sc,exclamdown.sc" g2="u.sc,uacute.sc,ubreve.sc,ucaron.sc,ucircumflex.sc,udieresis.sc,udieresisacute.sc,udieresiscaron.sc,udieresisgrave.sc,udieresismacron.sc,udotbelow.sc,ugrave.sc,uhungarumlaut.sc,umacron.sc,uogonek.sc,uring.sc,utilde.sc" k="10" />
  2963. <hkern g1="exclam,exclamdown,exclam.caps,exclamdown.caps,exclam.sc,exclamdown.sc" g2="seven,seven.lf,seven.osf,seven.sc" k="10" />
  2964. <hkern g1="exclam,exclamdown,exclam.caps,exclamdown.caps,exclam.sc,exclamdown.sc" g2="euro,euro.lf,euro.osf,euro.sc" k="40" />
  2965. <hkern g1="exclam,exclamdown,exclam.caps,exclamdown.caps,exclam.sc,exclamdown.sc" g2="percent,perthousand,percent.osf,perthousand.osf,percent.sc,perthousand.sc" k="20" />
  2966. <hkern g1="exclam,exclamdown,exclam.caps,exclamdown.caps,exclam.sc,exclamdown.sc" g2="sterling,sterling.lf,sterling.osf,sterling.sc" k="10" />
  2967. <hkern g1="exclam,exclamdown,exclam.caps,exclamdown.caps,exclam.sc,exclamdown.sc" g2="zero,six,nine,zero.lf,six.lf,nine.lf,zero.osf,six.osf,nine.osf,zero.sc,six.sc,nine.sc" k="10" />
  2968. <hkern g1="exclam,exclamdown,exclam.caps,exclamdown.caps,exclam.sc,exclamdown.sc" g2="X" k="20" />
  2969. <hkern g1="exclam,exclamdown,exclam.caps,exclamdown.caps,exclam.sc,exclamdown.sc" g2="M" k="20" />
  2970. <hkern g1="exclam,exclamdown,exclam.caps,exclamdown.caps,exclam.sc,exclamdown.sc" g2="Schwa" k="30" />
  2971. <hkern g1="exclam,exclamdown,exclam.caps,exclamdown.caps,exclam.sc,exclamdown.sc" g2="integral" k="90" />
  2972. <hkern g1="f" g2="braceright,braceright.caps,braceright.sc" k="-50" />
  2973. <hkern g1="f" g2="bracketright,bracketright.caps,bracketright.sc" k="-80" />
  2974. <hkern g1="f" g2="question,question.caps,question.sc" k="-30" />
  2975. <hkern g1="f" g2="quoteleft,quotedblleft,quotedblleft.caps,quoteleft.caps" k="-30" />
  2976. <hkern g1="f" g2="napostrophe,quoteright,quotedblright,quotedblright.caps,quoteright.caps" k="-100" />
  2977. <hkern g1="f" g2="a,d,q,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,amacron,abreve,aogonek,dcaron,dcroat,acaron,aringacute,aeacute,ddotbelow,adotbelow" k="20" />
  2978. <hkern g1="f" g2="c,e,o,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oslash,cacute,ccircumflex,cdotaccent,ccaron,emacron,ebreve,edotaccent,eogonek,ecaron,omacron,obreve,ohungarumlaut,oe,ocaron,oogonek,oslashacute,edotbelow,etilde,odotbelow,c_h,c_t" k="20" />
  2979. <hkern g1="f" g2="s,sacute,scircumflex,scedilla,scaron,scommaaccent,sdotbelow,s_h" k="10" />
  2980. <hkern g1="f" g2="g,gcircumflex,gbreve,gdotaccent,gcommaaccent,gcaron,gacute" k="25" />
  2981. <hkern g1="f" g2="t,tcedilla,tcaron,tbar,tcommaaccent,tdotbelow" k="20" />
  2982. <hkern g1="f" g2="u,ugrave,uacute,ucircumflex,udieresis,utilde,umacron,ubreve,uring,uhungarumlaut,uogonek,ucaron,udieresismacron,udieresisacute,udieresiscaron,udieresisgrave,udotbelow" k="10" />
  2983. <hkern g1="f" g2="f,germandbls,Germandbls,fi,fl" k="45" />
  2984. <hkern g1="f" g2="numbersign,numbersign.lf,numbersign.osf,numbersign.sc" k="20" />
  2985. <hkern g1="f" g2="parenright,parenright.caps,parenright.sc" k="-50" />
  2986. <hkern g1="f" g2="x" k="15" />
  2987. <hkern g1="g,gcircumflex,gbreve,gdotaccent,gcommaaccent,gcaron,gacute" g2="a,d,q,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,amacron,abreve,aogonek,dcaron,dcroat,acaron,aringacute,aeacute,ddotbelow,adotbelow" k="10" />
  2988. <hkern g1="g,gcircumflex,gbreve,gdotaccent,gcommaaccent,gcaron,gacute" g2="s,sacute,scircumflex,scedilla,scaron,scommaaccent,sdotbelow,s_h" k="10" />
  2989. <hkern g1="g,gcircumflex,gbreve,gdotaccent,gcommaaccent,gcaron,gacute" g2="y,yacute,ydieresis,ycircumflex,ymacron,ygrave,ytilde" k="-20" />
  2990. <hkern g1="g,gcircumflex,gbreve,gdotaccent,gcommaaccent,gcaron,gacute" g2="numbersign,numbersign.lf,numbersign.osf,numbersign.sc" k="20" />
  2991. <hkern g1="g,gcircumflex,gbreve,gdotaccent,gcommaaccent,gcaron,gacute" g2="parenright,parenright.caps,parenright.sc" k="-50" />
  2992. <hkern g1="g,gcircumflex,gbreve,gdotaccent,gcommaaccent,gcaron,gacute" g2="x" k="5" />
  2993. <hkern g1="g.sc,gacute.sc,gbreve.sc,gcaron.sc,gcircumflex.sc,gcommaaccent.sc,gdotaccent.sc" g2="asterisk,asterisk.caps,asterisk.sc" k="10" />
  2994. <hkern g1="g.sc,gacute.sc,gbreve.sc,gcaron.sc,gcircumflex.sc,gcommaaccent.sc,gdotaccent.sc" g2="numbersign,numbersign.lf,numbersign.osf,numbersign.sc" k="60" />
  2995. <hkern g1="g.sc,gacute.sc,gbreve.sc,gcaron.sc,gcircumflex.sc,gcommaaccent.sc,gdotaccent.sc" g2="backslash,backslash.caps,backslash.sc" k="40" />
  2996. <hkern g1="g.sc,gacute.sc,gbreve.sc,gcaron.sc,gcircumflex.sc,gcommaaccent.sc,gdotaccent.sc" g2="euro,euro.lf,euro.osf,euro.sc" k="40" />
  2997. <hkern g1="g.sc,gacute.sc,gbreve.sc,gcaron.sc,gcircumflex.sc,gcommaaccent.sc,gdotaccent.sc" g2="trademark" k="40" />
  2998. <hkern g1="guillemetleft,guilsinglleft,guillemetleft.caps,guilsinglleft.caps,guillemetleft.sc,guilsinglleft.sc" g2="B,D,E,F,H,I,K,L,N,P,R,Egrave,Eacute,Ecircumflex,Edieresis,Igrave,Iacute,Icircumflex,Idieresis,Eth,Ntilde,Thorn,Dcaron,Dcroat,Emacron,Ebreve,Edotaccent,Eogonek,Ecaron,Hcircumflex,Hbar,Itilde,Imacron,Ibreve,Iogonek,Idotaccent,IJ,Kcommaaccent,Lacute,Lcommaaccent,Lcaron,Ldot,Lslash,Nacute,Ncommaaccent,Ncaron,Eng,Racute,Rcommaaccent,Rcaron,Icaron,Ddotbelow,Hdotbelow,Ndotaccent,Rdotbelow,Edotbelow,Etilde,Idotbelow,IJacute" k="20" />
  2999. <hkern g1="guillemetleft,guilsinglleft,guillemetleft.caps,guilsinglleft.caps,guillemetleft.sc,guilsinglleft.sc" g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,Cacute,Ccircumflex,Cdotaccent,Ccaron,Gcircumflex,Gbreve,Gdotaccent,Gcommaaccent,Omacron,Obreve,Ohungarumlaut,OE,Ocaron,Gcaron,Oogonek,Gacute,Oslashacute,Odotbelow" k="20" />
  3000. <hkern g1="guillemetleft,guilsinglleft,guillemetleft.caps,guilsinglleft.caps,guillemetleft.sc,guilsinglleft.sc" g2="T,Tcedilla,Tcaron,Tbar,Tcommaaccent,Tdotbelow" k="20" />
  3001. <hkern g1="guillemetleft,guilsinglleft,guillemetleft.caps,guilsinglleft.caps,guillemetleft.sc,guilsinglleft.sc" g2="V,W,Wcircumflex,Wgrave,Wacute,Wdieresis" k="10" />
  3002. <hkern g1="guillemetleft,guilsinglleft,guillemetleft.caps,guilsinglleft.caps,guillemetleft.sc,guilsinglleft.sc" g2="Y,Yacute,Ycircumflex,Ydieresis,Ymacron,Ygrave,Ytilde" k="20" />
  3003. <hkern g1="guillemetleft,guilsinglleft,guillemetleft.caps,guilsinglleft.caps,guillemetleft.sc,guilsinglleft.sc" g2="J,Jcircumflex,Nhookleft,Jacute" k="-30" />
  3004. <hkern g1="guillemetleft,guilsinglleft,guillemetleft.caps,guilsinglleft.caps,guillemetleft.sc,guilsinglleft.sc" g2="numbersign,numbersign.lf,numbersign.osf,numbersign.sc" k="10" />
  3005. <hkern g1="guillemetleft,guilsinglleft,guillemetleft.caps,guilsinglleft.caps,guillemetleft.sc,guilsinglleft.sc" g2="slash,slash.caps,slash.sc" k="60" />
  3006. <hkern g1="guillemetleft,guilsinglleft,guillemetleft.caps,guilsinglleft.caps,guillemetleft.sc,guilsinglleft.sc" g2="t.sc,tbar.sc,tcaron.sc,tcedilla.sc,tcommaaccent.sc,tdotbelow.sc" k="20" />
  3007. <hkern g1="guillemetleft,guilsinglleft,guillemetleft.caps,guilsinglleft.caps,guillemetleft.sc,guilsinglleft.sc" g2="plus.lf,minus.lf,multiply.lf,divide.lf,equal.lf,notequal.lf,greater.lf,less.lf,greaterequal.lf,lessequal.lf,plusminus.lf,approxequal.lf,logicalnot.lf,infinity.lf,plus.sc,minus.sc,multiply.sc,divide.sc,equal.sc,notequal.sc,greater.sc,less.sc,greaterequal.sc,lessequal.sc,plusminus.sc,approxequal.sc,logicalnot.sc,infinity.sc" k="-20" />
  3008. <hkern g1="guillemetleft,guilsinglleft,guillemetleft.caps,guilsinglleft.caps,guillemetleft.sc,guilsinglleft.sc" g2="one,one.lf,one.osf,one.sc" k="-40" />
  3009. <hkern g1="guillemetleft,guilsinglleft,guillemetleft.caps,guilsinglleft.caps,guillemetleft.sc,guilsinglleft.sc" g2="eight,eight.lf,eight.osf,eight.sc" k="-10" />
  3010. <hkern g1="guillemetleft,guilsinglleft,guillemetleft.caps,guilsinglleft.caps,guillemetleft.sc,guilsinglleft.sc" g2="plus.osf,minus.osf,multiply.osf,divide.osf,equal.osf,notequal.osf,greater.osf,less.osf,greaterequal.osf,lessequal.osf,plusminus.osf,approxequal.osf,logicalnot.osf,infinity.osf" k="-20" />
  3011. <hkern g1="guillemetleft,guilsinglleft,guillemetleft.caps,guilsinglleft.caps,guillemetleft.sc,guilsinglleft.sc" g2="integral" k="90" />
  3012. <hkern g1="guillemetleft,guilsinglleft,guillemetleft.caps,guilsinglleft.caps,guillemetleft.sc,guilsinglleft.sc" g2="partialdiff" k="10" />
  3013. <hkern g1="guillemetleft,guilsinglleft,guillemetleft.caps,guilsinglleft.caps,guillemetleft.sc,guilsinglleft.sc" g2="product" k="40" />
  3014. <hkern g1="guillemetleft,guilsinglleft,guillemetleft.caps,guilsinglleft.caps,guillemetleft.sc,guilsinglleft.sc" g2="summation" k="60" />
  3015. <hkern g1="h,m,n,ntilde,hcircumflex,hbar,nacute,ncommaaccent,ncaron,napostrophe,eng,nhookleft,hdotbelow,ndotaccent,c_h,s_h" g2="asterisk,asterisk.caps,asterisk.sc" k="50" />
  3016. <hkern g1="h,m,n,ntilde,hcircumflex,hbar,nacute,ncommaaccent,ncaron,napostrophe,eng,nhookleft,hdotbelow,ndotaccent,c_h,s_h" g2="question,question.caps,question.sc" k="10" />
  3017. <hkern g1="h,m,n,ntilde,hcircumflex,hbar,nacute,ncommaaccent,ncaron,napostrophe,eng,nhookleft,hdotbelow,ndotaccent,c_h,s_h" g2="quotedbl,quotesingle,quotedbl.caps,quotesingle.caps,quotedbl.sc,quotesingle.sc" k="70" />
  3018. <hkern g1="h,m,n,ntilde,hcircumflex,hbar,nacute,ncommaaccent,ncaron,napostrophe,eng,nhookleft,hdotbelow,ndotaccent,c_h,s_h" g2="quoteleft,quotedblleft,quotedblleft.caps,quoteleft.caps" k="90" />
  3019. <hkern g1="h,m,n,ntilde,hcircumflex,hbar,nacute,ncommaaccent,ncaron,napostrophe,eng,nhookleft,hdotbelow,ndotaccent,c_h,s_h" g2="napostrophe,quoteright,quotedblright,quotedblright.caps,quoteright.caps" k="50" />
  3020. <hkern g1="h,m,n,ntilde,hcircumflex,hbar,nacute,ncommaaccent,ncaron,napostrophe,eng,nhookleft,hdotbelow,ndotaccent,c_h,s_h" g2="c,e,o,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oslash,cacute,ccircumflex,cdotaccent,ccaron,emacron,ebreve,edotaccent,eogonek,ecaron,omacron,obreve,ohungarumlaut,oe,ocaron,oogonek,oslashacute,edotbelow,etilde,odotbelow,c_h,c_t" k="10" />
  3021. <hkern g1="h,m,n,ntilde,hcircumflex,hbar,nacute,ncommaaccent,ncaron,napostrophe,eng,nhookleft,hdotbelow,ndotaccent,c_h,s_h" g2="s,sacute,scircumflex,scedilla,scaron,scommaaccent,sdotbelow,s_h" k="10" />
  3022. <hkern g1="h,m,n,ntilde,hcircumflex,hbar,nacute,ncommaaccent,ncaron,napostrophe,eng,nhookleft,hdotbelow,ndotaccent,c_h,s_h" g2="comma,period,quotesinglbase,quotedblbase,ellipsis,quotesinglbase.caps,quotedblbase.caps,quotesinglbase.sc,quotedblbase.sc" k="10" />
  3023. <hkern g1="h,m,n,ntilde,hcircumflex,hbar,nacute,ncommaaccent,ncaron,napostrophe,eng,nhookleft,hdotbelow,ndotaccent,c_h,s_h" g2="t,tcedilla,tcaron,tbar,tcommaaccent,tdotbelow" k="5" />
  3024. <hkern g1="h,m,n,ntilde,hcircumflex,hbar,nacute,ncommaaccent,ncaron,napostrophe,eng,nhookleft,hdotbelow,ndotaccent,c_h,s_h" g2="numbersign,numbersign.lf,numbersign.osf,numbersign.sc" k="50" />
  3025. <hkern g1="h,m,n,ntilde,hcircumflex,hbar,nacute,ncommaaccent,ncaron,napostrophe,eng,nhookleft,hdotbelow,ndotaccent,c_h,s_h" g2="slash,slash.caps,slash.sc" k="-10" />
  3026. <hkern g1="h,m,n,ntilde,hcircumflex,hbar,nacute,ncommaaccent,ncaron,napostrophe,eng,nhookleft,hdotbelow,ndotaccent,c_h,s_h" g2="x" k="5" />
  3027. <hkern g1="h.sc,hbar.sc,hcircumflex.sc,hdotbelow.sc,i.sc,dotlessi.sc,iacute.sc,ibreve.sc,icaron.sc,icircumflex.sc,idieresis.sc,idotbelow.sc,igrave.sc,imacron.sc,iogonek.sc,itilde.sc,n.sc,nacute.sc,ncaron.sc,ncommaaccent.sc,ndotaccent.sc,eng.sc,nhookleft.sc,ntilde.sc" g2="numbersign,numbersign.lf,numbersign.osf,numbersign.sc" k="30" />
  3028. <hkern g1="h.sc,hbar.sc,hcircumflex.sc,hdotbelow.sc,i.sc,dotlessi.sc,iacute.sc,ibreve.sc,icaron.sc,icircumflex.sc,idieresis.sc,idotbelow.sc,igrave.sc,imacron.sc,iogonek.sc,itilde.sc,n.sc,nacute.sc,ncaron.sc,ncommaaccent.sc,ndotaccent.sc,eng.sc,nhookleft.sc,ntilde.sc" g2="slash,slash.caps,slash.sc" k="10" />
  3029. <hkern g1="h.sc,hbar.sc,hcircumflex.sc,hdotbelow.sc,i.sc,dotlessi.sc,iacute.sc,ibreve.sc,icaron.sc,icircumflex.sc,idieresis.sc,idotbelow.sc,igrave.sc,imacron.sc,iogonek.sc,itilde.sc,n.sc,nacute.sc,ncaron.sc,ncommaaccent.sc,ndotaccent.sc,eng.sc,nhookleft.sc,ntilde.sc" g2="backslash,backslash.caps,backslash.sc" k="30" />
  3030. <hkern g1="h.sc,hbar.sc,hcircumflex.sc,hdotbelow.sc,i.sc,dotlessi.sc,iacute.sc,ibreve.sc,icaron.sc,icircumflex.sc,idieresis.sc,idotbelow.sc,igrave.sc,imacron.sc,iogonek.sc,itilde.sc,n.sc,nacute.sc,ncaron.sc,ncommaaccent.sc,ndotaccent.sc,eng.sc,nhookleft.sc,ntilde.sc" g2="euro,euro.lf,euro.osf,euro.sc" k="30" />
  3031. <hkern g1="h.sc,hbar.sc,hcircumflex.sc,hdotbelow.sc,i.sc,dotlessi.sc,iacute.sc,ibreve.sc,icaron.sc,icircumflex.sc,idieresis.sc,idotbelow.sc,igrave.sc,imacron.sc,iogonek.sc,itilde.sc,n.sc,nacute.sc,ncaron.sc,ncommaaccent.sc,ndotaccent.sc,eng.sc,nhookleft.sc,ntilde.sc" g2="guillemetright,guilsinglright,guillemetright.caps,guilsinglright.caps,guillemetright.sc,guilsinglright.sc" k="-10" />
  3032. <hkern g1="h.sc,hbar.sc,hcircumflex.sc,hdotbelow.sc,i.sc,dotlessi.sc,iacute.sc,ibreve.sc,icaron.sc,icircumflex.sc,idieresis.sc,idotbelow.sc,igrave.sc,imacron.sc,iogonek.sc,itilde.sc,n.sc,nacute.sc,ncaron.sc,ncommaaccent.sc,ndotaccent.sc,eng.sc,nhookleft.sc,ntilde.sc" g2="trademark" k="30" />
  3033. <hkern g1="h.sc,hbar.sc,hcircumflex.sc,hdotbelow.sc,i.sc,dotlessi.sc,iacute.sc,ibreve.sc,icaron.sc,icircumflex.sc,idieresis.sc,idotbelow.sc,igrave.sc,imacron.sc,iogonek.sc,itilde.sc,n.sc,nacute.sc,ncaron.sc,ncommaaccent.sc,ndotaccent.sc,eng.sc,nhookleft.sc,ntilde.sc" g2="bar" k="30" />
  3034. <hkern g1="h.sc,hbar.sc,hcircumflex.sc,hdotbelow.sc,i.sc,dotlessi.sc,iacute.sc,ibreve.sc,icaron.sc,icircumflex.sc,idieresis.sc,idotbelow.sc,igrave.sc,imacron.sc,iogonek.sc,itilde.sc,n.sc,nacute.sc,ncaron.sc,ncommaaccent.sc,ndotaccent.sc,eng.sc,nhookleft.sc,ntilde.sc" g2="paragraph" k="10" />
  3035. <hkern g1="h.sc,hbar.sc,hcircumflex.sc,hdotbelow.sc,i.sc,dotlessi.sc,iacute.sc,ibreve.sc,icaron.sc,icircumflex.sc,idieresis.sc,idotbelow.sc,igrave.sc,imacron.sc,iogonek.sc,itilde.sc,n.sc,nacute.sc,ncaron.sc,ncommaaccent.sc,ndotaccent.sc,eng.sc,nhookleft.sc,ntilde.sc" g2="brokenbar" k="10" />
  3036. <hkern g1="h.sc,hbar.sc,hcircumflex.sc,hdotbelow.sc,i.sc,dotlessi.sc,iacute.sc,ibreve.sc,icaron.sc,icircumflex.sc,idieresis.sc,idotbelow.sc,igrave.sc,imacron.sc,iogonek.sc,itilde.sc,n.sc,nacute.sc,ncaron.sc,ncommaaccent.sc,ndotaccent.sc,eng.sc,nhookleft.sc,ntilde.sc" g2="copyright" k="20" />
  3037. <hkern g1="h.sc,hbar.sc,hcircumflex.sc,hdotbelow.sc,i.sc,dotlessi.sc,iacute.sc,ibreve.sc,icaron.sc,icircumflex.sc,idieresis.sc,idotbelow.sc,igrave.sc,imacron.sc,iogonek.sc,itilde.sc,n.sc,nacute.sc,ncaron.sc,ncommaaccent.sc,ndotaccent.sc,eng.sc,nhookleft.sc,ntilde.sc" g2="registered" k="20" />
  3038. <hkern g1="h.sc,hbar.sc,hcircumflex.sc,hdotbelow.sc,i.sc,dotlessi.sc,iacute.sc,ibreve.sc,icaron.sc,icircumflex.sc,idieresis.sc,idotbelow.sc,igrave.sc,imacron.sc,iogonek.sc,itilde.sc,n.sc,nacute.sc,ncaron.sc,ncommaaccent.sc,ndotaccent.sc,eng.sc,nhookleft.sc,ntilde.sc" g2="section" k="10" />
  3039. <hkern g1="hyphen,endash,emdash,hyphen.caps,endash.caps,emdash.caps,hyphen.sc,endash.sc,emdash.sc" g2="T,Tcedilla,Tcaron,Tbar,Tcommaaccent,Tdotbelow" k="20" />
  3040. <hkern g1="hyphen,endash,emdash,hyphen.caps,endash.caps,emdash.caps,hyphen.sc,endash.sc,emdash.sc" g2="V,W,Wcircumflex,Wgrave,Wacute,Wdieresis" k="10" />
  3041. <hkern g1="hyphen,endash,emdash,hyphen.caps,endash.caps,emdash.caps,hyphen.sc,endash.sc,emdash.sc" g2="Y,Yacute,Ycircumflex,Ydieresis,Ymacron,Ygrave,Ytilde" k="20" />
  3042. <hkern g1="hyphen,endash,emdash,hyphen.caps,endash.caps,emdash.caps,hyphen.sc,endash.sc,emdash.sc" g2="asterisk,asterisk.caps,asterisk.sc" k="30" />
  3043. <hkern g1="hyphen,endash,emdash,hyphen.caps,endash.caps,emdash.caps,hyphen.sc,endash.sc,emdash.sc" g2="a.sc,aacute.sc,abreve.sc,acaron.sc,acircumflex.sc,adieresis.sc,adotbelow.sc,agrave.sc,amacron.sc,aogonek.sc,aring.sc,aringacute.sc,atilde.sc,ae.sc,aeacute.sc" k="20" />
  3044. <hkern g1="hyphen,endash,emdash,hyphen.caps,endash.caps,emdash.caps,hyphen.sc,endash.sc,emdash.sc" g2="J,Jcircumflex,Nhookleft,Jacute" k="-30" />
  3045. <hkern g1="hyphen,endash,emdash,hyphen.caps,endash.caps,emdash.caps,hyphen.sc,endash.sc,emdash.sc" g2="y.sc,yacute.sc,ycircumflex.sc,ydieresis.sc,ygrave.sc,ymacron.sc,ytilde.sc" k="20" />
  3046. <hkern g1="hyphen,endash,emdash,hyphen.caps,endash.caps,emdash.caps,hyphen.sc,endash.sc,emdash.sc" g2="t.sc,tbar.sc,tcaron.sc,tcedilla.sc,tcommaaccent.sc,tdotbelow.sc" k="50" />
  3047. <hkern g1="hyphen,endash,emdash,hyphen.caps,endash.caps,emdash.caps,hyphen.sc,endash.sc,emdash.sc" g2="v.sc,w.sc,wacute.sc,wcircumflex.sc,wdieresis.sc,wgrave.sc" k="10" />
  3048. <hkern g1="hyphen,endash,emdash,hyphen.caps,endash.caps,emdash.caps,hyphen.sc,endash.sc,emdash.sc" g2="seven,seven.lf,seven.osf,seven.sc" k="20" />
  3049. <hkern g1="hyphen,endash,emdash,hyphen.caps,endash.caps,emdash.caps,hyphen.sc,endash.sc,emdash.sc" g2="backslash,backslash.caps,backslash.sc" k="10" />
  3050. <hkern g1="hyphen,endash,emdash,hyphen.caps,endash.caps,emdash.caps,hyphen.sc,endash.sc,emdash.sc" g2="one,one.lf,one.osf,one.sc" k="-10" />
  3051. <hkern g1="hyphen,endash,emdash,hyphen.caps,endash.caps,emdash.caps,hyphen.sc,endash.sc,emdash.sc" g2="plus,less,equal,greater,asciitilde,logicalnot,plusminus,multiply,divide,minus,infinity,approxequal,notequal,lessequal,greaterequal" k="-25" />
  3052. <hkern g1="hyphen,endash,emdash,hyphen.caps,endash.caps,emdash.caps,hyphen.sc,endash.sc,emdash.sc" g2="plus.osf,minus.osf,multiply.osf,divide.osf,equal.osf,notequal.osf,greater.osf,less.osf,greaterequal.osf,lessequal.osf,plusminus.osf,approxequal.osf,logicalnot.osf,infinity.osf" k="-40" />
  3053. <hkern g1="hyphen,endash,emdash,hyphen.caps,endash.caps,emdash.caps,hyphen.sc,endash.sc,emdash.sc" g2="two,two.lf,two.osf,two.sc" k="30" />
  3054. <hkern g1="hyphen,endash,emdash,hyphen.caps,endash.caps,emdash.caps,hyphen.sc,endash.sc,emdash.sc" g2="bar" k="-20" />
  3055. <hkern g1="hyphen,endash,emdash,hyphen.caps,endash.caps,emdash.caps,hyphen.sc,endash.sc,emdash.sc" g2="x.sc" k="20" />
  3056. <hkern g1="hyphen,endash,emdash,hyphen.caps,endash.caps,emdash.caps,hyphen.sc,endash.sc,emdash.sc" g2="integral" k="40" />
  3057. <hkern g1="hyphen,endash,emdash,hyphen.caps,endash.caps,emdash.caps,hyphen.sc,endash.sc,emdash.sc" g2="pi" k="20" />
  3058. <hkern g1="hyphen,endash,emdash,hyphen.caps,endash.caps,emdash.caps,hyphen.sc,endash.sc,emdash.sc" g2="product" k="40" />
  3059. <hkern g1="hyphen,endash,emdash,hyphen.caps,endash.caps,emdash.caps,hyphen.sc,endash.sc,emdash.sc" g2="summation" k="110" />
  3060. <hkern g1="j,ij,jcircumflex,dotlessj,ijacute" g2="s,sacute,scircumflex,scedilla,scaron,scommaaccent,sdotbelow,s_h" k="5" />
  3061. <hkern g1="j,ij,jcircumflex,dotlessj,ijacute" g2="t,tcedilla,tcaron,tbar,tcommaaccent,tdotbelow" k="5" />
  3062. <hkern g1="j,ij,jcircumflex,dotlessj,ijacute" g2="numbersign,numbersign.lf,numbersign.osf,numbersign.sc" k="10" />
  3063. <hkern g1="j,ij,jcircumflex,dotlessj,ijacute" g2="x" k="5" />
  3064. <hkern g1="idotaccent.sc,ij.sc,j.sc,dotlessj.sc,jacute.sc,jcircumflex.sc" g2="periodcentered,bullet,periodcentered.caps,bullet.caps,periodcentered.sc,bullet.sc" k="10" />
  3065. <hkern g1="idotaccent.sc,ij.sc,j.sc,dotlessj.sc,jacute.sc,jcircumflex.sc" g2="c.sc,cacute.sc,ccaron.sc,ccedilla.sc,ccircumflex.sc,cdotaccent.sc,schwa.sc,g.sc,gacute.sc,gbreve.sc,gcaron.sc,gcircumflex.sc,gcommaaccent.sc,gdotaccent.sc,o.sc,oacute.sc,obreve.sc,ocaron.sc,ocircumflex.sc,odieresis.sc,odotbelow.sc,ograve.sc,ohungarumlaut.sc,omacron.sc,oogonek.sc,oslash.sc,oslashacute.sc,otilde.sc,oe.sc,q.sc" k="10" />
  3066. <hkern g1="idotaccent.sc,ij.sc,j.sc,dotlessj.sc,jacute.sc,jcircumflex.sc" g2="y.sc,yacute.sc,ycircumflex.sc,ydieresis.sc,ygrave.sc,ymacron.sc,ytilde.sc" k="10" />
  3067. <hkern g1="idotaccent.sc,ij.sc,j.sc,dotlessj.sc,jacute.sc,jcircumflex.sc" g2="numbersign,numbersign.lf,numbersign.osf,numbersign.sc" k="30" />
  3068. <hkern g1="idotaccent.sc,ij.sc,j.sc,dotlessj.sc,jacute.sc,jcircumflex.sc" g2="s.sc,sacute.sc,scaron.sc,scedilla.sc,scircumflex.sc,scommaaccent.sc,sdotbelow.sc" k="10" />
  3069. <hkern g1="idotaccent.sc,ij.sc,j.sc,dotlessj.sc,jacute.sc,jcircumflex.sc" g2="t.sc,tbar.sc,tcaron.sc,tcedilla.sc,tcommaaccent.sc,tdotbelow.sc" k="20" />
  3070. <hkern g1="idotaccent.sc,ij.sc,j.sc,dotlessj.sc,jacute.sc,jcircumflex.sc" g2="guillemetright,guilsinglright,guillemetright.caps,guilsinglright.caps,guillemetright.sc,guilsinglright.sc" k="-10" />
  3071. <hkern g1="idotaccent.sc,ij.sc,j.sc,dotlessj.sc,jacute.sc,jcircumflex.sc" g2="m.sc" k="5" />
  3072. <hkern g1="k,kcommaaccent" g2="braceright,braceright.caps,braceright.sc" k="-20" />
  3073. <hkern g1="k,kcommaaccent" g2="colon,semicolon" k="-10" />
  3074. <hkern g1="k,kcommaaccent" g2="a,d,q,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,amacron,abreve,aogonek,dcaron,dcroat,acaron,aringacute,aeacute,ddotbelow,adotbelow" k="5" />
  3075. <hkern g1="k,kcommaaccent" g2="c,e,o,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oslash,cacute,ccircumflex,cdotaccent,ccaron,emacron,ebreve,edotaccent,eogonek,ecaron,omacron,obreve,ohungarumlaut,oe,ocaron,oogonek,oslashacute,edotbelow,etilde,odotbelow,c_h,c_t" k="10" />
  3076. <hkern g1="k,kcommaaccent" g2="s,sacute,scircumflex,scedilla,scaron,scommaaccent,sdotbelow,s_h" k="5" />
  3077. <hkern g1="k,kcommaaccent" g2="g,gcircumflex,gbreve,gdotaccent,gcommaaccent,gcaron,gacute" k="10" />
  3078. <hkern g1="k,kcommaaccent" g2="b,h,k,l,thorn,hcircumflex,hbar,kcommaaccent,lacute,lcommaaccent,lcaron,ldot,lslash,hdotbelow" k="5" />
  3079. <hkern g1="k,kcommaaccent" g2="numbersign,numbersign.lf,numbersign.osf,numbersign.sc" k="40" />
  3080. <hkern g1="k,kcommaaccent" g2="x" k="10" />
  3081. <hkern g1="k.sc,kcommaaccent.sc,kgreenlandic.sc" g2="a.sc,aacute.sc,abreve.sc,acaron.sc,acircumflex.sc,adieresis.sc,adotbelow.sc,agrave.sc,amacron.sc,aogonek.sc,aring.sc,aringacute.sc,atilde.sc,ae.sc,aeacute.sc" k="5" />
  3082. <hkern g1="k.sc,kcommaaccent.sc,kgreenlandic.sc" g2="c.sc,cacute.sc,ccaron.sc,ccedilla.sc,ccircumflex.sc,cdotaccent.sc,schwa.sc,g.sc,gacute.sc,gbreve.sc,gcaron.sc,gcircumflex.sc,gcommaaccent.sc,gdotaccent.sc,o.sc,oacute.sc,obreve.sc,ocaron.sc,ocircumflex.sc,odieresis.sc,odotbelow.sc,ograve.sc,ohungarumlaut.sc,omacron.sc,oogonek.sc,oslash.sc,oslashacute.sc,otilde.sc,oe.sc,q.sc" k="25" />
  3083. <hkern g1="k.sc,kcommaaccent.sc,kgreenlandic.sc" g2="y.sc,yacute.sc,ycircumflex.sc,ydieresis.sc,ygrave.sc,ymacron.sc,ytilde.sc" k="5" />
  3084. <hkern g1="k.sc,kcommaaccent.sc,kgreenlandic.sc" g2="b.sc,d.sc,eth.sc,dcaron.sc,dcroat.sc,ddotbelow.sc,e.sc,eacute.sc,ebreve.sc,ecaron.sc,ecircumflex.sc,edieresis.sc,edotaccent.sc,edotbelow.sc,egrave.sc,emacron.sc,eogonek.sc,etilde.sc,f.sc,h.sc,hbar.sc,hcircumflex.sc,hdotbelow.sc,i.sc,dotlessi.sc,iacute.sc,ibreve.sc,icaron.sc,icircumflex.sc,idieresis.sc,idotaccent.sc,idotbelow.sc,igrave.sc,ij.sc,imacron.sc,iogonek.sc,itilde.sc,k.sc,kcommaaccent.sc,kgreenlandic.sc,l.sc,lacute.sc,lcaron.sc,lcommaaccent.sc,ldot.sc,lslash.sc,n.sc,nacute.sc,ncaron.sc,ncommaaccent.sc,ndotaccent.sc,eng.sc,ntilde.sc,p.sc,thorn.sc,r.sc,racute.sc,rcaron.sc,rcommaaccent.sc,rdotbelow.sc,germandbls.sc" k="5" />
  3085. <hkern g1="k.sc,kcommaaccent.sc,kgreenlandic.sc" g2="numbersign,numbersign.lf,numbersign.osf,numbersign.sc" k="40" />
  3086. <hkern g1="k.sc,kcommaaccent.sc,kgreenlandic.sc" g2="s.sc,sacute.sc,scaron.sc,scedilla.sc,scircumflex.sc,scommaaccent.sc,sdotbelow.sc" k="5" />
  3087. <hkern g1="k.sc,kcommaaccent.sc,kgreenlandic.sc" g2="t.sc,tbar.sc,tcaron.sc,tcedilla.sc,tcommaaccent.sc,tdotbelow.sc" k="15" />
  3088. <hkern g1="k.sc,kcommaaccent.sc,kgreenlandic.sc" g2="u.sc,uacute.sc,ubreve.sc,ucaron.sc,ucircumflex.sc,udieresis.sc,udieresisacute.sc,udieresiscaron.sc,udieresisgrave.sc,udieresismacron.sc,udotbelow.sc,ugrave.sc,uhungarumlaut.sc,umacron.sc,uogonek.sc,uring.sc,utilde.sc" k="5" />
  3089. <hkern g1="k.sc,kcommaaccent.sc,kgreenlandic.sc" g2="v.sc,w.sc,wacute.sc,wcircumflex.sc,wdieresis.sc,wgrave.sc" k="5" />
  3090. <hkern g1="k.sc,kcommaaccent.sc,kgreenlandic.sc" g2="trademark" k="30" />
  3091. <hkern g1="k.sc,kcommaaccent.sc,kgreenlandic.sc" g2="m.sc" k="15" />
  3092. <hkern g1="k.sc,kcommaaccent.sc,kgreenlandic.sc" g2="paragraph" k="10" />
  3093. <hkern g1="k.sc,kcommaaccent.sc,kgreenlandic.sc" g2="copyright" k="30" />
  3094. <hkern g1="k.sc,kcommaaccent.sc,kgreenlandic.sc" g2="registered" k="30" />
  3095. <hkern g1="l.sc,lacute.sc,lcaron.sc,lcommaaccent.sc,ldot.sc,lslash.sc" g2="ampersand,ampersand.caps,ampersand.sc" k="30" />
  3096. <hkern g1="l.sc,lacute.sc,lcaron.sc,lcommaaccent.sc,ldot.sc,lslash.sc" g2="asterisk,asterisk.caps,asterisk.sc" k="130" />
  3097. <hkern g1="l.sc,lacute.sc,lcaron.sc,lcommaaccent.sc,ldot.sc,lslash.sc" g2="periodcentered,bullet,periodcentered.caps,bullet.caps,periodcentered.sc,bullet.sc" k="40" />
  3098. <hkern g1="l.sc,lacute.sc,lcaron.sc,lcommaaccent.sc,ldot.sc,lslash.sc" g2="a.sc,aacute.sc,abreve.sc,acaron.sc,acircumflex.sc,adieresis.sc,adotbelow.sc,agrave.sc,amacron.sc,aogonek.sc,aring.sc,aringacute.sc,atilde.sc,ae.sc,aeacute.sc" k="40" />
  3099. <hkern g1="l.sc,lacute.sc,lcaron.sc,lcommaaccent.sc,ldot.sc,lslash.sc" g2="c.sc,cacute.sc,ccaron.sc,ccedilla.sc,ccircumflex.sc,cdotaccent.sc,schwa.sc,g.sc,gacute.sc,gbreve.sc,gcaron.sc,gcircumflex.sc,gcommaaccent.sc,gdotaccent.sc,o.sc,oacute.sc,obreve.sc,ocaron.sc,ocircumflex.sc,odieresis.sc,odotbelow.sc,ograve.sc,ohungarumlaut.sc,omacron.sc,oogonek.sc,oslash.sc,oslashacute.sc,otilde.sc,oe.sc,q.sc" k="65" />
  3100. <hkern g1="l.sc,lacute.sc,lcaron.sc,lcommaaccent.sc,ldot.sc,lslash.sc" g2="y.sc,yacute.sc,ycircumflex.sc,ydieresis.sc,ygrave.sc,ymacron.sc,ytilde.sc" k="100" />
  3101. <hkern g1="l.sc,lacute.sc,lcaron.sc,lcommaaccent.sc,ldot.sc,lslash.sc" g2="b.sc,d.sc,eth.sc,dcaron.sc,dcroat.sc,ddotbelow.sc,e.sc,eacute.sc,ebreve.sc,ecaron.sc,ecircumflex.sc,edieresis.sc,edotaccent.sc,edotbelow.sc,egrave.sc,emacron.sc,eogonek.sc,etilde.sc,f.sc,h.sc,hbar.sc,hcircumflex.sc,hdotbelow.sc,i.sc,dotlessi.sc,iacute.sc,ibreve.sc,icaron.sc,icircumflex.sc,idieresis.sc,idotaccent.sc,idotbelow.sc,igrave.sc,ij.sc,imacron.sc,iogonek.sc,itilde.sc,k.sc,kcommaaccent.sc,kgreenlandic.sc,l.sc,lacute.sc,lcaron.sc,lcommaaccent.sc,ldot.sc,lslash.sc,n.sc,nacute.sc,ncaron.sc,ncommaaccent.sc,ndotaccent.sc,eng.sc,ntilde.sc,p.sc,thorn.sc,r.sc,racute.sc,rcaron.sc,rcommaaccent.sc,rdotbelow.sc,germandbls.sc" k="20" />
  3102. <hkern g1="l.sc,lacute.sc,lcaron.sc,lcommaaccent.sc,ldot.sc,lslash.sc" g2="numbersign,numbersign.lf,numbersign.osf,numbersign.sc" k="80" />
  3103. <hkern g1="l.sc,lacute.sc,lcaron.sc,lcommaaccent.sc,ldot.sc,lslash.sc" g2="s.sc,sacute.sc,scaron.sc,scedilla.sc,scircumflex.sc,scommaaccent.sc,sdotbelow.sc" k="40" />
  3104. <hkern g1="l.sc,lacute.sc,lcaron.sc,lcommaaccent.sc,ldot.sc,lslash.sc" g2="t.sc,tbar.sc,tcaron.sc,tcedilla.sc,tcommaaccent.sc,tdotbelow.sc" k="140" />
  3105. <hkern g1="l.sc,lacute.sc,lcaron.sc,lcommaaccent.sc,ldot.sc,lslash.sc" g2="u.sc,uacute.sc,ubreve.sc,ucaron.sc,ucircumflex.sc,udieresis.sc,udieresisacute.sc,udieresiscaron.sc,udieresisgrave.sc,udieresismacron.sc,udotbelow.sc,ugrave.sc,uhungarumlaut.sc,umacron.sc,uogonek.sc,uring.sc,utilde.sc" k="30" />
  3106. <hkern g1="l.sc,lacute.sc,lcaron.sc,lcommaaccent.sc,ldot.sc,lslash.sc" g2="v.sc,w.sc,wacute.sc,wcircumflex.sc,wdieresis.sc,wgrave.sc" k="90" />
  3107. <hkern g1="l.sc,lacute.sc,lcaron.sc,lcommaaccent.sc,ldot.sc,lslash.sc" g2="z.sc,zacute.sc,zcaron.sc,zdotaccent.sc,zdotbelow.sc" k="15" />
  3108. <hkern g1="l.sc,lacute.sc,lcaron.sc,lcommaaccent.sc,ldot.sc,lslash.sc" g2="backslash,backslash.caps,backslash.sc" k="50" />
  3109. <hkern g1="l.sc,lacute.sc,lcaron.sc,lcommaaccent.sc,ldot.sc,lslash.sc" g2="euro,euro.lf,euro.osf,euro.sc" k="50" />
  3110. <hkern g1="l.sc,lacute.sc,lcaron.sc,lcommaaccent.sc,ldot.sc,lslash.sc" g2="plus.lf,minus.lf,multiply.lf,divide.lf,equal.lf,notequal.lf,greater.lf,less.lf,greaterequal.lf,lessequal.lf,plusminus.lf,approxequal.lf,logicalnot.lf,infinity.lf,plus.sc,minus.sc,multiply.sc,divide.sc,equal.sc,notequal.sc,greater.sc,less.sc,greaterequal.sc,lessequal.sc,plusminus.sc,approxequal.sc,logicalnot.sc,infinity.sc" k="30" />
  3111. <hkern g1="l.sc,lacute.sc,lcaron.sc,lcommaaccent.sc,ldot.sc,lslash.sc" g2="quotedblright.sc,quoteright.sc" k="10" />
  3112. <hkern g1="l.sc,lacute.sc,lcaron.sc,lcommaaccent.sc,ldot.sc,lslash.sc" g2="j.sc,dotlessj.sc,jacute.sc,jcircumflex.sc,nhookleft.sc" k="10" />
  3113. <hkern g1="l.sc,lacute.sc,lcaron.sc,lcommaaccent.sc,ldot.sc,lslash.sc" g2="m.sc" k="40" />
  3114. <hkern g1="l.sc,lacute.sc,lcaron.sc,lcommaaccent.sc,ldot.sc,lslash.sc" g2="x.sc" k="25" />
  3115. <hkern g1="l.sc,lacute.sc,lcaron.sc,lcommaaccent.sc,ldot.sc,lslash.sc" g2="dagger,daggerdbl" k="30" />
  3116. <hkern g1="plus.lf,minus.lf,multiply.lf,divide.lf,equal.lf,notequal.lf,greater.lf,less.lf,greaterequal.lf,lessequal.lf,plusminus.lf,approxequal.lf,logicalnot.lf,infinity.lf,plus.sc,minus.sc,multiply.sc,divide.sc,equal.sc,notequal.sc,greater.sc,less.sc,greaterequal.sc,lessequal.sc,plusminus.sc,approxequal.sc,logicalnot.sc,infinity.sc" g2="ampersand,ampersand.caps,ampersand.sc" k="10" />
  3117. <hkern g1="plus.lf,minus.lf,multiply.lf,divide.lf,equal.lf,notequal.lf,greater.lf,less.lf,greaterequal.lf,lessequal.lf,plusminus.lf,approxequal.lf,logicalnot.lf,infinity.lf,plus.sc,minus.sc,multiply.sc,divide.sc,equal.sc,notequal.sc,greater.sc,less.sc,greaterequal.sc,lessequal.sc,plusminus.sc,approxequal.sc,logicalnot.sc,infinity.sc" g2="asterisk,asterisk.caps,asterisk.sc" k="20" />
  3118. <hkern g1="plus.lf,minus.lf,multiply.lf,divide.lf,equal.lf,notequal.lf,greater.lf,less.lf,greaterequal.lf,lessequal.lf,plusminus.lf,approxequal.lf,logicalnot.lf,infinity.lf,plus.sc,minus.sc,multiply.sc,divide.sc,equal.sc,notequal.sc,greater.sc,less.sc,greaterequal.sc,lessequal.sc,plusminus.sc,approxequal.sc,logicalnot.sc,infinity.sc" g2="guillemetleft,guilsinglleft,guillemetleft.caps,guilsinglleft.caps,guillemetleft.sc,guilsinglleft.sc" k="20" />
  3119. <hkern g1="plus.lf,minus.lf,multiply.lf,divide.lf,equal.lf,notequal.lf,greater.lf,less.lf,greaterequal.lf,lessequal.lf,plusminus.lf,approxequal.lf,logicalnot.lf,infinity.lf,plus.sc,minus.sc,multiply.sc,divide.sc,equal.sc,notequal.sc,greater.sc,less.sc,greaterequal.sc,lessequal.sc,plusminus.sc,approxequal.sc,logicalnot.sc,infinity.sc" g2="a.sc,aacute.sc,abreve.sc,acaron.sc,acircumflex.sc,adieresis.sc,adotbelow.sc,agrave.sc,amacron.sc,aogonek.sc,aring.sc,aringacute.sc,atilde.sc,ae.sc,aeacute.sc" k="10" />
  3120. <hkern g1="plus.lf,minus.lf,multiply.lf,divide.lf,equal.lf,notequal.lf,greater.lf,less.lf,greaterequal.lf,lessequal.lf,plusminus.lf,approxequal.lf,logicalnot.lf,infinity.lf,plus.sc,minus.sc,multiply.sc,divide.sc,equal.sc,notequal.sc,greater.sc,less.sc,greaterequal.sc,lessequal.sc,plusminus.sc,approxequal.sc,logicalnot.sc,infinity.sc" g2="c.sc,cacute.sc,ccaron.sc,ccedilla.sc,ccircumflex.sc,cdotaccent.sc,schwa.sc,g.sc,gacute.sc,gbreve.sc,gcaron.sc,gcircumflex.sc,gcommaaccent.sc,gdotaccent.sc,o.sc,oacute.sc,obreve.sc,ocaron.sc,ocircumflex.sc,odieresis.sc,odotbelow.sc,ograve.sc,ohungarumlaut.sc,omacron.sc,oogonek.sc,oslash.sc,oslashacute.sc,otilde.sc,oe.sc,q.sc" k="10" />
  3121. <hkern g1="plus.lf,minus.lf,multiply.lf,divide.lf,equal.lf,notequal.lf,greater.lf,less.lf,greaterequal.lf,lessequal.lf,plusminus.lf,approxequal.lf,logicalnot.lf,infinity.lf,plus.sc,minus.sc,multiply.sc,divide.sc,equal.sc,notequal.sc,greater.sc,less.sc,greaterequal.sc,lessequal.sc,plusminus.sc,approxequal.sc,logicalnot.sc,infinity.sc" g2="y.sc,yacute.sc,ycircumflex.sc,ydieresis.sc,ygrave.sc,ymacron.sc,ytilde.sc" k="20" />
  3122. <hkern g1="plus.lf,minus.lf,multiply.lf,divide.lf,equal.lf,notequal.lf,greater.lf,less.lf,greaterequal.lf,lessequal.lf,plusminus.lf,approxequal.lf,logicalnot.lf,infinity.lf,plus.sc,minus.sc,multiply.sc,divide.sc,equal.sc,notequal.sc,greater.sc,less.sc,greaterequal.sc,lessequal.sc,plusminus.sc,approxequal.sc,logicalnot.sc,infinity.sc" g2="numbersign,numbersign.lf,numbersign.osf,numbersign.sc" k="50" />
  3123. <hkern g1="plus.lf,minus.lf,multiply.lf,divide.lf,equal.lf,notequal.lf,greater.lf,less.lf,greaterequal.lf,lessequal.lf,plusminus.lf,approxequal.lf,logicalnot.lf,infinity.lf,plus.sc,minus.sc,multiply.sc,divide.sc,equal.sc,notequal.sc,greater.sc,less.sc,greaterequal.sc,lessequal.sc,plusminus.sc,approxequal.sc,logicalnot.sc,infinity.sc" g2="slash,slash.caps,slash.sc" k="40" />
  3124. <hkern g1="plus.lf,minus.lf,multiply.lf,divide.lf,equal.lf,notequal.lf,greater.lf,less.lf,greaterequal.lf,lessequal.lf,plusminus.lf,approxequal.lf,logicalnot.lf,infinity.lf,plus.sc,minus.sc,multiply.sc,divide.sc,equal.sc,notequal.sc,greater.sc,less.sc,greaterequal.sc,lessequal.sc,plusminus.sc,approxequal.sc,logicalnot.sc,infinity.sc" g2="t.sc,tbar.sc,tcaron.sc,tcedilla.sc,tcommaaccent.sc,tdotbelow.sc" k="40" />
  3125. <hkern g1="plus.lf,minus.lf,multiply.lf,divide.lf,equal.lf,notequal.lf,greater.lf,less.lf,greaterequal.lf,lessequal.lf,plusminus.lf,approxequal.lf,logicalnot.lf,infinity.lf,plus.sc,minus.sc,multiply.sc,divide.sc,equal.sc,notequal.sc,greater.sc,less.sc,greaterequal.sc,lessequal.sc,plusminus.sc,approxequal.sc,logicalnot.sc,infinity.sc" g2="v.sc,w.sc,wacute.sc,wcircumflex.sc,wdieresis.sc,wgrave.sc" k="20" />
  3126. <hkern g1="plus.lf,minus.lf,multiply.lf,divide.lf,equal.lf,notequal.lf,greater.lf,less.lf,greaterequal.lf,lessequal.lf,plusminus.lf,approxequal.lf,logicalnot.lf,infinity.lf,plus.sc,minus.sc,multiply.sc,divide.sc,equal.sc,notequal.sc,greater.sc,less.sc,greaterequal.sc,lessequal.sc,plusminus.sc,approxequal.sc,logicalnot.sc,infinity.sc" g2="z.sc,zacute.sc,zcaron.sc,zdotaccent.sc,zdotbelow.sc" k="10" />
  3127. <hkern g1="plus.lf,minus.lf,multiply.lf,divide.lf,equal.lf,notequal.lf,greater.lf,less.lf,greaterequal.lf,lessequal.lf,plusminus.lf,approxequal.lf,logicalnot.lf,infinity.lf,plus.sc,minus.sc,multiply.sc,divide.sc,equal.sc,notequal.sc,greater.sc,less.sc,greaterequal.sc,lessequal.sc,plusminus.sc,approxequal.sc,logicalnot.sc,infinity.sc" g2="euro,euro.lf,euro.osf,euro.sc" k="30" />
  3128. <hkern g1="plus.lf,minus.lf,multiply.lf,divide.lf,equal.lf,notequal.lf,greater.lf,less.lf,greaterequal.lf,lessequal.lf,plusminus.lf,approxequal.lf,logicalnot.lf,infinity.lf,plus.sc,minus.sc,multiply.sc,divide.sc,equal.sc,notequal.sc,greater.sc,less.sc,greaterequal.sc,lessequal.sc,plusminus.sc,approxequal.sc,logicalnot.sc,infinity.sc" g2="florin,florin.lf,florin.osf,florin.sc" k="20" />
  3129. <hkern g1="plus.lf,minus.lf,multiply.lf,divide.lf,equal.lf,notequal.lf,greater.lf,less.lf,greaterequal.lf,lessequal.lf,plusminus.lf,approxequal.lf,logicalnot.lf,infinity.lf,plus.sc,minus.sc,multiply.sc,divide.sc,equal.sc,notequal.sc,greater.sc,less.sc,greaterequal.sc,lessequal.sc,plusminus.sc,approxequal.sc,logicalnot.sc,infinity.sc" g2="quotedblleft.sc,quoteleft.sc" k="10" />
  3130. <hkern g1="plus.lf,minus.lf,multiply.lf,divide.lf,equal.lf,notequal.lf,greater.lf,less.lf,greaterequal.lf,lessequal.lf,plusminus.lf,approxequal.lf,logicalnot.lf,infinity.lf,plus.sc,minus.sc,multiply.sc,divide.sc,equal.sc,notequal.sc,greater.sc,less.sc,greaterequal.sc,lessequal.sc,plusminus.sc,approxequal.sc,logicalnot.sc,infinity.sc" g2="x.sc" k="30" />
  3131. <hkern g1="numbersign,numbersign.lf,numbersign.osf,numbersign.sc" g2="T,Tcedilla,Tcaron,Tbar,Tcommaaccent,Tdotbelow" k="-20" />
  3132. <hkern g1="numbersign,numbersign.lf,numbersign.osf,numbersign.sc" g2="V,W,Wcircumflex,Wgrave,Wacute,Wdieresis" k="-10" />
  3133. <hkern g1="numbersign,numbersign.lf,numbersign.osf,numbersign.sc" g2="ampersand,ampersand.caps,ampersand.sc" k="40" />
  3134. <hkern g1="numbersign,numbersign.lf,numbersign.osf,numbersign.sc" g2="hyphen,endash,emdash,hyphen.caps,endash.caps,emdash.caps,hyphen.sc,endash.sc,emdash.sc" k="-50" />
  3135. <hkern g1="numbersign,numbersign.lf,numbersign.osf,numbersign.sc" g2="comma,period,quotesinglbase,quotedblbase,ellipsis,quotesinglbase.caps,quotedblbase.caps,quotesinglbase.sc,quotedblbase.sc" k="20" />
  3136. <hkern g1="numbersign,numbersign.lf,numbersign.osf,numbersign.sc" g2="v,w,wcircumflex,wgrave,wacute,wdieresis" k="-10" />
  3137. <hkern g1="numbersign,numbersign.lf,numbersign.osf,numbersign.sc" g2="y,yacute,ydieresis,ycircumflex,ymacron,ygrave,ytilde" k="-20" />
  3138. <hkern g1="numbersign,numbersign.lf,numbersign.osf,numbersign.sc" g2="J,Jcircumflex,Nhookleft,Jacute" k="-30" />
  3139. <hkern g1="numbersign,numbersign.lf,numbersign.osf,numbersign.sc" g2="z,zacute,zdotaccent,zcaron,zdotbelow" k="-20" />
  3140. <hkern g1="numbersign,numbersign.lf,numbersign.osf,numbersign.sc" g2="one,one.lf,one.osf,one.sc" k="-40" />
  3141. <hkern g1="numbersign,numbersign.lf,numbersign.osf,numbersign.sc" g2="plus,less,equal,greater,asciitilde,logicalnot,plusminus,multiply,divide,minus,infinity,approxequal,notequal,lessequal,greaterequal" k="-40" />
  3142. <hkern g1="numbersign,numbersign.lf,numbersign.osf,numbersign.sc" g2="integral" k="80" />
  3143. <hkern g1="numbersign,numbersign.lf,numbersign.osf,numbersign.sc" g2="product" k="30" />
  3144. <hkern g1="numbersign,numbersign.lf,numbersign.osf,numbersign.sc" g2="summation" k="60" />
  3145. <hkern g1="parenleft,parenleft.caps,parenleft.sc" g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,Cacute,Ccircumflex,Cdotaccent,Ccaron,Gcircumflex,Gbreve,Gdotaccent,Gcommaaccent,Omacron,Obreve,Ohungarumlaut,OE,Ocaron,Gcaron,Oogonek,Gacute,Oslashacute,Odotbelow" k="20" />
  3146. <hkern g1="parenleft,parenleft.caps,parenleft.sc" g2="T,Tcedilla,Tcaron,Tbar,Tcommaaccent,Tdotbelow" k="-20" />
  3147. <hkern g1="parenleft,parenleft.caps,parenleft.sc" g2="ampersand,ampersand.caps,ampersand.sc" k="30" />
  3148. <hkern g1="parenleft,parenleft.caps,parenleft.sc" g2="guillemetleft,guilsinglleft,guillemetleft.caps,guilsinglleft.caps,guillemetleft.sc,guilsinglleft.sc" k="60" />
  3149. <hkern g1="parenleft,parenleft.caps,parenleft.sc" g2="periodcentered,bullet,periodcentered.caps,bullet.caps,periodcentered.sc,bullet.sc" k="20" />
  3150. <hkern g1="parenleft,parenleft.caps,parenleft.sc" g2="S,Sacute,Scircumflex,Scedilla,Scaron,Scommaaccent,Sdotbelow" k="-10" />
  3151. <hkern g1="parenleft,parenleft.caps,parenleft.sc" g2="c,e,o,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oslash,cacute,ccircumflex,cdotaccent,ccaron,emacron,ebreve,edotaccent,eogonek,ecaron,omacron,obreve,ohungarumlaut,oe,ocaron,oogonek,oslashacute,edotbelow,etilde,odotbelow,c_h,c_t" k="10" />
  3152. <hkern g1="parenleft,parenleft.caps,parenleft.sc" g2="Z,Zacute,Zdotaccent,Zcaron,Zdotbelow" k="-30" />
  3153. <hkern g1="parenleft,parenleft.caps,parenleft.sc" g2="c.sc,cacute.sc,ccaron.sc,ccedilla.sc,ccircumflex.sc,cdotaccent.sc,schwa.sc,g.sc,gacute.sc,gbreve.sc,gcaron.sc,gcircumflex.sc,gcommaaccent.sc,gdotaccent.sc,o.sc,oacute.sc,obreve.sc,ocaron.sc,ocircumflex.sc,odieresis.sc,odotbelow.sc,ograve.sc,ohungarumlaut.sc,omacron.sc,oogonek.sc,oslash.sc,oslashacute.sc,otilde.sc,oe.sc,q.sc" k="20" />
  3154. <hkern g1="parenleft,parenleft.caps,parenleft.sc" g2="g,gcircumflex,gbreve,gdotaccent,gcommaaccent,gcaron,gacute" k="-30" />
  3155. <hkern g1="parenleft,parenleft.caps,parenleft.sc" g2="y,yacute,ydieresis,ycircumflex,ymacron,ygrave,ytilde" k="-10" />
  3156. <hkern g1="parenleft,parenleft.caps,parenleft.sc" g2="f,germandbls,Germandbls,fi,fl" k="-50" />
  3157. <hkern g1="parenleft,parenleft.caps,parenleft.sc" g2="numbersign,numbersign.lf,numbersign.osf,numbersign.sc" k="100" />
  3158. <hkern g1="parenleft,parenleft.caps,parenleft.sc" g2="slash,slash.caps,slash.sc" k="60" />
  3159. <hkern g1="parenleft,parenleft.caps,parenleft.sc" g2="four,four.lf,four.osf,four.sc" k="10" />
  3160. <hkern g1="parenleft,parenleft.caps,parenleft.sc" g2="eight,eight.lf,eight.osf,eight.sc" k="-20" />
  3161. <hkern g1="parenleft,parenleft.caps,parenleft.sc" g2="braceleft,braceleft.caps,braceleft.sc" k="20" />
  3162. <hkern g1="parenleft,parenleft.caps,parenleft.sc" g2="Schwa" k="10" />
  3163. <hkern g1="parenleft,parenleft.caps,parenleft.sc" g2="pi" k="20" />
  3164. <hkern g1="comma,period,quotesinglbase,quotedblbase,ellipsis,quotesinglbase.caps,quotedblbase.caps,quotesinglbase.sc,quotedblbase.sc" g2="B,D,E,F,H,I,K,L,N,P,R,Egrave,Eacute,Ecircumflex,Edieresis,Igrave,Iacute,Icircumflex,Idieresis,Eth,Ntilde,Thorn,Dcaron,Dcroat,Emacron,Ebreve,Edotaccent,Eogonek,Ecaron,Hcircumflex,Hbar,Itilde,Imacron,Ibreve,Iogonek,Idotaccent,IJ,Kcommaaccent,Lacute,Lcommaaccent,Lcaron,Ldot,Lslash,Nacute,Ncommaaccent,Ncaron,Eng,Racute,Rcommaaccent,Rcaron,Icaron,Ddotbelow,Hdotbelow,Ndotaccent,Rdotbelow,Edotbelow,Etilde,Idotbelow,IJacute" k="40" />
  3165. <hkern g1="comma,period,quotesinglbase,quotedblbase,ellipsis,quotesinglbase.caps,quotedblbase.caps,quotesinglbase.sc,quotedblbase.sc" g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,Cacute,Ccircumflex,Cdotaccent,Ccaron,Gcircumflex,Gbreve,Gdotaccent,Gcommaaccent,Omacron,Obreve,Ohungarumlaut,OE,Ocaron,Gcaron,Oogonek,Gacute,Oslashacute,Odotbelow" k="80" />
  3166. <hkern g1="comma,period,quotesinglbase,quotedblbase,ellipsis,quotesinglbase.caps,quotedblbase.caps,quotesinglbase.sc,quotedblbase.sc" g2="T,Tcedilla,Tcaron,Tbar,Tcommaaccent,Tdotbelow" k="100" />
  3167. <hkern g1="comma,period,quotesinglbase,quotedblbase,ellipsis,quotesinglbase.caps,quotedblbase.caps,quotesinglbase.sc,quotedblbase.sc" g2="V,W,Wcircumflex,Wgrave,Wacute,Wdieresis" k="130" />
  3168. <hkern g1="comma,period,quotesinglbase,quotedblbase,ellipsis,quotesinglbase.caps,quotedblbase.caps,quotesinglbase.sc,quotedblbase.sc" g2="Y,Yacute,Ycircumflex,Ydieresis,Ymacron,Ygrave,Ytilde" k="70" />
  3169. <hkern g1="comma,period,quotesinglbase,quotedblbase,ellipsis,quotesinglbase.caps,quotedblbase.caps,quotesinglbase.sc,quotedblbase.sc" g2="ampersand,ampersand.caps,ampersand.sc" k="50" />
  3170. <hkern g1="comma,period,quotesinglbase,quotedblbase,ellipsis,quotesinglbase.caps,quotedblbase.caps,quotesinglbase.sc,quotedblbase.sc" g2="asterisk,asterisk.caps,asterisk.sc" k="140" />
  3171. <hkern g1="comma,period,quotesinglbase,quotedblbase,ellipsis,quotesinglbase.caps,quotedblbase.caps,quotesinglbase.sc,quotedblbase.sc" g2="guillemetleft,guilsinglleft,guillemetleft.caps,guilsinglleft.caps,guillemetleft.sc,guilsinglleft.sc" k="50" />
  3172. <hkern g1="comma,period,quotesinglbase,quotedblbase,ellipsis,quotesinglbase.caps,quotedblbase.caps,quotesinglbase.sc,quotedblbase.sc" g2="quotedbl,quotesingle,quotedbl.caps,quotesingle.caps,quotedbl.sc,quotesingle.sc" k="80" />
  3173. <hkern g1="comma,period,quotesinglbase,quotedblbase,ellipsis,quotesinglbase.caps,quotedblbase.caps,quotesinglbase.sc,quotedblbase.sc" g2="napostrophe,quoteright,quotedblright,quotedblright.caps,quoteright.caps" k="90" />
  3174. <hkern g1="comma,period,quotesinglbase,quotedblbase,ellipsis,quotesinglbase.caps,quotedblbase.caps,quotesinglbase.sc,quotedblbase.sc" g2="periodcentered,bullet,periodcentered.caps,bullet.caps,periodcentered.sc,bullet.sc" k="10" />
  3175. <hkern g1="comma,period,quotesinglbase,quotedblbase,ellipsis,quotesinglbase.caps,quotedblbase.caps,quotesinglbase.sc,quotedblbase.sc" g2="S,Sacute,Scircumflex,Scedilla,Scaron,Scommaaccent,Sdotbelow" k="10" />
  3176. <hkern g1="comma,period,quotesinglbase,quotedblbase,ellipsis,quotesinglbase.caps,quotedblbase.caps,quotesinglbase.sc,quotedblbase.sc" g2="c,e,o,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oslash,cacute,ccircumflex,cdotaccent,ccaron,emacron,ebreve,edotaccent,eogonek,ecaron,omacron,obreve,ohungarumlaut,oe,ocaron,oogonek,oslashacute,edotbelow,etilde,odotbelow,c_h,c_t" k="10" />
  3177. <hkern g1="comma,period,quotesinglbase,quotedblbase,ellipsis,quotesinglbase.caps,quotedblbase.caps,quotesinglbase.sc,quotedblbase.sc" g2="c.sc,cacute.sc,ccaron.sc,ccedilla.sc,ccircumflex.sc,cdotaccent.sc,schwa.sc,g.sc,gacute.sc,gbreve.sc,gcaron.sc,gcircumflex.sc,gcommaaccent.sc,gdotaccent.sc,o.sc,oacute.sc,obreve.sc,ocaron.sc,ocircumflex.sc,odieresis.sc,odotbelow.sc,ograve.sc,ohungarumlaut.sc,omacron.sc,oogonek.sc,oslash.sc,oslashacute.sc,otilde.sc,oe.sc,q.sc" k="50" />
  3178. <hkern g1="comma,period,quotesinglbase,quotedblbase,ellipsis,quotesinglbase.caps,quotedblbase.caps,quotesinglbase.sc,quotedblbase.sc" g2="hyphen,endash,emdash,hyphen.caps,endash.caps,emdash.caps,hyphen.sc,endash.sc,emdash.sc" k="30" />
  3179. <hkern g1="comma,period,quotesinglbase,quotedblbase,ellipsis,quotesinglbase.caps,quotedblbase.caps,quotesinglbase.sc,quotedblbase.sc" g2="J,Jcircumflex,Nhookleft,Jacute" k="10" />
  3180. <hkern g1="comma,period,quotesinglbase,quotedblbase,ellipsis,quotesinglbase.caps,quotedblbase.caps,quotesinglbase.sc,quotedblbase.sc" g2="y.sc,yacute.sc,ycircumflex.sc,ydieresis.sc,ygrave.sc,ymacron.sc,ytilde.sc" k="80" />
  3181. <hkern g1="comma,period,quotesinglbase,quotedblbase,ellipsis,quotesinglbase.caps,quotedblbase.caps,quotesinglbase.sc,quotedblbase.sc" g2="b.sc,d.sc,eth.sc,dcaron.sc,dcroat.sc,ddotbelow.sc,e.sc,eacute.sc,ebreve.sc,ecaron.sc,ecircumflex.sc,edieresis.sc,edotaccent.sc,edotbelow.sc,egrave.sc,emacron.sc,eogonek.sc,etilde.sc,f.sc,h.sc,hbar.sc,hcircumflex.sc,hdotbelow.sc,i.sc,dotlessi.sc,iacute.sc,ibreve.sc,icaron.sc,icircumflex.sc,idieresis.sc,idotaccent.sc,idotbelow.sc,igrave.sc,ij.sc,imacron.sc,iogonek.sc,itilde.sc,k.sc,kcommaaccent.sc,kgreenlandic.sc,l.sc,lacute.sc,lcaron.sc,lcommaaccent.sc,ldot.sc,lslash.sc,n.sc,nacute.sc,ncaron.sc,ncommaaccent.sc,ndotaccent.sc,eng.sc,ntilde.sc,p.sc,thorn.sc,r.sc,racute.sc,rcaron.sc,rcommaaccent.sc,rdotbelow.sc,germandbls.sc" k="10" />
  3182. <hkern g1="comma,period,quotesinglbase,quotedblbase,ellipsis,quotesinglbase.caps,quotedblbase.caps,quotesinglbase.sc,quotedblbase.sc" g2="numbersign,numbersign.lf,numbersign.osf,numbersign.sc" k="50" />
  3183. <hkern g1="comma,period,quotesinglbase,quotedblbase,ellipsis,quotesinglbase.caps,quotedblbase.caps,quotesinglbase.sc,quotedblbase.sc" g2="t.sc,tbar.sc,tcaron.sc,tcedilla.sc,tcommaaccent.sc,tdotbelow.sc" k="60" />
  3184. <hkern g1="comma,period,quotesinglbase,quotedblbase,ellipsis,quotesinglbase.caps,quotedblbase.caps,quotesinglbase.sc,quotedblbase.sc" g2="u.sc,uacute.sc,ubreve.sc,ucaron.sc,ucircumflex.sc,udieresis.sc,udieresisacute.sc,udieresiscaron.sc,udieresisgrave.sc,udieresismacron.sc,udotbelow.sc,ugrave.sc,uhungarumlaut.sc,umacron.sc,uogonek.sc,uring.sc,utilde.sc" k="20" />
  3185. <hkern g1="comma,period,quotesinglbase,quotedblbase,ellipsis,quotesinglbase.caps,quotedblbase.caps,quotesinglbase.sc,quotedblbase.sc" g2="v.sc,w.sc,wacute.sc,wcircumflex.sc,wdieresis.sc,wgrave.sc" k="80" />
  3186. <hkern g1="comma,period,quotesinglbase,quotedblbase,ellipsis,quotesinglbase.caps,quotedblbase.caps,quotesinglbase.sc,quotedblbase.sc" g2="seven,seven.lf,seven.osf,seven.sc" k="10" />
  3187. <hkern g1="comma,period,quotesinglbase,quotedblbase,ellipsis,quotesinglbase.caps,quotedblbase.caps,quotesinglbase.sc,quotedblbase.sc" g2="backslash,backslash.caps,backslash.sc" k="140" />
  3188. <hkern g1="comma,period,quotesinglbase,quotedblbase,ellipsis,quotesinglbase.caps,quotedblbase.caps,quotesinglbase.sc,quotedblbase.sc" g2="euro,euro.lf,euro.osf,euro.sc" k="60" />
  3189. <hkern g1="comma,period,quotesinglbase,quotedblbase,ellipsis,quotesinglbase.caps,quotedblbase.caps,quotesinglbase.sc,quotedblbase.sc" g2="percent.lf,perthousand.lf" k="40" />
  3190. <hkern g1="comma,period,quotesinglbase,quotedblbase,ellipsis,quotesinglbase.caps,quotedblbase.caps,quotesinglbase.sc,quotedblbase.sc" g2="percent,perthousand,percent.osf,perthousand.osf,percent.sc,perthousand.sc" k="90" />
  3191. <hkern g1="comma,period,quotesinglbase,quotedblbase,ellipsis,quotesinglbase.caps,quotedblbase.caps,quotesinglbase.sc,quotedblbase.sc" g2="zero,six,nine,zero.lf,six.lf,nine.lf,zero.osf,six.osf,nine.osf,zero.sc,six.sc,nine.sc" k="50" />
  3192. <hkern g1="comma,period,quotesinglbase,quotedblbase,ellipsis,quotesinglbase.caps,quotedblbase.caps,quotesinglbase.sc,quotedblbase.sc" g2="four,four.lf,four.osf,four.sc" k="20" />
  3193. <hkern g1="comma,period,quotesinglbase,quotedblbase,ellipsis,quotesinglbase.caps,quotedblbase.caps,quotesinglbase.sc,quotedblbase.sc" g2="cent,cent.lf,cent.osf,cent.sc" k="10" />
  3194. <hkern g1="comma,period,quotesinglbase,quotedblbase,ellipsis,quotesinglbase.caps,quotedblbase.caps,quotesinglbase.sc,quotedblbase.sc" g2="quotedblleft.sc,quoteleft.sc" k="100" />
  3195. <hkern g1="comma,period,quotesinglbase,quotedblbase,ellipsis,quotesinglbase.caps,quotedblbase.caps,quotesinglbase.sc,quotedblbase.sc" g2="yen,yen.lf,yen.osf,yen.sc" k="10" />
  3196. <hkern g1="comma,period,quotesinglbase,quotedblbase,ellipsis,quotesinglbase.caps,quotedblbase.caps,quotesinglbase.sc,quotedblbase.sc" g2="X" k="10" />
  3197. <hkern g1="comma,period,quotesinglbase,quotedblbase,ellipsis,quotesinglbase.caps,quotedblbase.caps,quotesinglbase.sc,quotedblbase.sc" g2="integral" k="40" />
  3198. <hkern g1="comma,period,quotesinglbase,quotedblbase,ellipsis,quotesinglbase.caps,quotedblbase.caps,quotesinglbase.sc,quotedblbase.sc" g2="pi" k="60" />
  3199. <hkern g1="comma,period,quotesinglbase,quotedblbase,ellipsis,quotesinglbase.caps,quotedblbase.caps,quotesinglbase.sc,quotedblbase.sc" g2="radical" k="70" />
  3200. <hkern g1="comma,period,quotesinglbase,quotedblbase,ellipsis,quotesinglbase.caps,quotedblbase.caps,quotesinglbase.sc,quotedblbase.sc" g2="product" k="60" />
  3201. <hkern g1="questiondown,questiondown.caps,questiondown.sc" g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE,Amacron,Abreve,Aogonek,Acaron,Aringacute,AEacute,Adotbelow" k="30" />
  3202. <hkern g1="questiondown,questiondown.caps,questiondown.sc" g2="B,D,E,F,H,I,K,L,N,P,R,Egrave,Eacute,Ecircumflex,Edieresis,Igrave,Iacute,Icircumflex,Idieresis,Eth,Ntilde,Thorn,Dcaron,Dcroat,Emacron,Ebreve,Edotaccent,Eogonek,Ecaron,Hcircumflex,Hbar,Itilde,Imacron,Ibreve,Iogonek,Idotaccent,IJ,Kcommaaccent,Lacute,Lcommaaccent,Lcaron,Ldot,Lslash,Nacute,Ncommaaccent,Ncaron,Eng,Racute,Rcommaaccent,Rcaron,Icaron,Ddotbelow,Hdotbelow,Ndotaccent,Rdotbelow,Edotbelow,Etilde,Idotbelow,IJacute" k="50" />
  3203. <hkern g1="questiondown,questiondown.caps,questiondown.sc" g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,Cacute,Ccircumflex,Cdotaccent,Ccaron,Gcircumflex,Gbreve,Gdotaccent,Gcommaaccent,Omacron,Obreve,Ohungarumlaut,OE,Ocaron,Gcaron,Oogonek,Gacute,Oslashacute,Odotbelow" k="70" />
  3204. <hkern g1="questiondown,questiondown.caps,questiondown.sc" g2="T,Tcedilla,Tcaron,Tbar,Tcommaaccent,Tdotbelow" k="80" />
  3205. <hkern g1="questiondown,questiondown.caps,questiondown.sc" g2="U,Ugrave,Uacute,Ucircumflex,Udieresis,Utilde,Umacron,Ubreve,Uring,Uhungarumlaut,Uogonek,Ucaron,Udieresismacron,Udieresisacute,Udieresiscaron,Udieresisgrave,Udotbelow" k="70" />
  3206. <hkern g1="questiondown,questiondown.caps,questiondown.sc" g2="V,W,Wcircumflex,Wgrave,Wacute,Wdieresis" k="60" />
  3207. <hkern g1="questiondown,questiondown.caps,questiondown.sc" g2="Y,Yacute,Ycircumflex,Ydieresis,Ymacron,Ygrave,Ytilde" k="50" />
  3208. <hkern g1="questiondown,questiondown.caps,questiondown.sc" g2="ampersand,ampersand.caps,ampersand.sc" k="40" />
  3209. <hkern g1="questiondown,questiondown.caps,questiondown.sc" g2="asterisk,asterisk.caps,asterisk.sc" k="50" />
  3210. <hkern g1="questiondown,questiondown.caps,questiondown.sc" g2="guillemetleft,guilsinglleft,guillemetleft.caps,guilsinglleft.caps,guillemetleft.sc,guilsinglleft.sc" k="20" />
  3211. <hkern g1="questiondown,questiondown.caps,questiondown.sc" g2="quotedbl,quotesingle,quotedbl.caps,quotesingle.caps,quotedbl.sc,quotesingle.sc" k="30" />
  3212. <hkern g1="questiondown,questiondown.caps,questiondown.sc" g2="periodcentered,bullet,periodcentered.caps,bullet.caps,periodcentered.sc,bullet.sc" k="30" />
  3213. <hkern g1="questiondown,questiondown.caps,questiondown.sc" g2="S,Sacute,Scircumflex,Scedilla,Scaron,Scommaaccent,Sdotbelow" k="50" />
  3214. <hkern g1="questiondown,questiondown.caps,questiondown.sc" g2="a,d,q,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,amacron,abreve,aogonek,dcaron,dcroat,acaron,aringacute,aeacute,ddotbelow,adotbelow" k="70" />
  3215. <hkern g1="questiondown,questiondown.caps,questiondown.sc" g2="c,e,o,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oslash,cacute,ccircumflex,cdotaccent,ccaron,emacron,ebreve,edotaccent,eogonek,ecaron,omacron,obreve,ohungarumlaut,oe,ocaron,oogonek,oslashacute,edotbelow,etilde,odotbelow,c_h,c_t" k="40" />
  3216. <hkern g1="questiondown,questiondown.caps,questiondown.sc" g2="s,sacute,scircumflex,scedilla,scaron,scommaaccent,sdotbelow,s_h" k="20" />
  3217. <hkern g1="questiondown,questiondown.caps,questiondown.sc" g2="Z,Zacute,Zdotaccent,Zcaron,Zdotbelow" k="30" />
  3218. <hkern g1="questiondown,questiondown.caps,questiondown.sc" g2="m,n,p,r,ntilde,dotlessi,kgreenlandic,nacute,ncommaaccent,ncaron,eng,racute,rcommaaccent,rcaron,ndotaccent,rdotbelow" k="40" />
  3219. <hkern g1="questiondown,questiondown.caps,questiondown.sc" g2="t,tcedilla,tcaron,tbar,tcommaaccent,tdotbelow" k="20" />
  3220. <hkern g1="questiondown,questiondown.caps,questiondown.sc" g2="u,ugrave,uacute,ucircumflex,udieresis,utilde,umacron,ubreve,uring,uhungarumlaut,uogonek,ucaron,udieresismacron,udieresisacute,udieresiscaron,udieresisgrave,udotbelow" k="20" />
  3221. <hkern g1="questiondown,questiondown.caps,questiondown.sc" g2="v,w,wcircumflex,wgrave,wacute,wdieresis" k="30" />
  3222. <hkern g1="questiondown,questiondown.caps,questiondown.sc" g2="y,yacute,ydieresis,ycircumflex,ymacron,ygrave,ytilde" k="-30" />
  3223. <hkern g1="questiondown,questiondown.caps,questiondown.sc" g2="J,Jcircumflex,Nhookleft,Jacute" k="-40" />
  3224. <hkern g1="questiondown,questiondown.caps,questiondown.sc" g2="b,h,k,l,thorn,hcircumflex,hbar,kcommaaccent,lacute,lcommaaccent,lcaron,ldot,lslash,hdotbelow" k="30" />
  3225. <hkern g1="questiondown,questiondown.caps,questiondown.sc" g2="f,germandbls,Germandbls,fi,fl" k="30" />
  3226. <hkern g1="questiondown,questiondown.caps,questiondown.sc" g2="numbersign,numbersign.lf,numbersign.osf,numbersign.sc" k="90" />
  3227. <hkern g1="questiondown,questiondown.caps,questiondown.sc" g2="seven,seven.lf,seven.osf,seven.sc" k="20" />
  3228. <hkern g1="questiondown,questiondown.caps,questiondown.sc" g2="backslash,backslash.caps,backslash.sc" k="80" />
  3229. <hkern g1="questiondown,questiondown.caps,questiondown.sc" g2="euro,euro.lf,euro.osf,euro.sc" k="50" />
  3230. <hkern g1="questiondown,questiondown.caps,questiondown.sc" g2="percent,perthousand,percent.osf,perthousand.osf,percent.sc,perthousand.sc" k="70" />
  3231. <hkern g1="questiondown,questiondown.caps,questiondown.sc" g2="zero,six,nine,zero.lf,six.lf,nine.lf,zero.osf,six.osf,nine.osf,zero.sc,six.sc,nine.sc" k="30" />
  3232. <hkern g1="questiondown,questiondown.caps,questiondown.sc" g2="four,four.lf,four.osf,four.sc" k="40" />
  3233. <hkern g1="questiondown,questiondown.caps,questiondown.sc" g2="cent,cent.lf,cent.osf,cent.sc" k="30" />
  3234. <hkern g1="questiondown,questiondown.caps,questiondown.sc" g2="currency,currency.lf,currency.osf,currency.sc" k="20" />
  3235. <hkern g1="questiondown,questiondown.caps,questiondown.sc" g2="plus,less,equal,greater,asciitilde,logicalnot,plusminus,multiply,divide,minus,infinity,approxequal,notequal,lessequal,greaterequal" k="20" />
  3236. <hkern g1="questiondown,questiondown.caps,questiondown.sc" g2="quotedblleft.sc,quoteleft.sc" k="40" />
  3237. <hkern g1="questiondown,questiondown.caps,questiondown.sc" g2="yen,yen.lf,yen.osf,yen.sc" k="20" />
  3238. <hkern g1="questiondown,questiondown.caps,questiondown.sc" g2="X" k="-10" />
  3239. <hkern g1="questiondown,questiondown.caps,questiondown.sc" g2="M" k="10" />
  3240. <hkern g1="questiondown,questiondown.caps,questiondown.sc" g2="integral" k="70" />
  3241. <hkern g1="questiondown,questiondown.caps,questiondown.sc" g2="radical" k="90" />
  3242. <hkern g1="questiondown,questiondown.caps,questiondown.sc" g2="product" k="80" />
  3243. <hkern g1="questiondown,questiondown.caps,questiondown.sc" g2="summation" k="20" />
  3244. <hkern g1="quotedbl,quotesingle,quotedbl.caps,quotesingle.caps,quotedbl.sc,quotesingle.sc" g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE,Amacron,Abreve,Aogonek,Acaron,Aringacute,AEacute,Adotbelow" k="40" />
  3245. <hkern g1="quotedbl,quotesingle,quotedbl.caps,quotesingle.caps,quotedbl.sc,quotesingle.sc" g2="T,Tcedilla,Tcaron,Tbar,Tcommaaccent,Tdotbelow" k="-40" />
  3246. <hkern g1="quotedbl,quotesingle,quotedbl.caps,quotesingle.caps,quotedbl.sc,quotesingle.sc" g2="V,W,Wcircumflex,Wgrave,Wacute,Wdieresis" k="-40" />
  3247. <hkern g1="quotedbl,quotesingle,quotedbl.caps,quotesingle.caps,quotedbl.sc,quotesingle.sc" g2="Y,Yacute,Ycircumflex,Ydieresis,Ymacron,Ygrave,Ytilde" k="-20" />
  3248. <hkern g1="quotedbl,quotesingle,quotedbl.caps,quotesingle.caps,quotedbl.sc,quotesingle.sc" g2="ampersand,ampersand.caps,ampersand.sc" k="20" />
  3249. <hkern g1="quotedbl,quotesingle,quotedbl.caps,quotesingle.caps,quotedbl.sc,quotesingle.sc" g2="a,d,q,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,amacron,abreve,aogonek,dcaron,dcroat,acaron,aringacute,aeacute,ddotbelow,adotbelow" k="50" />
  3250. <hkern g1="quotedbl,quotesingle,quotedbl.caps,quotesingle.caps,quotedbl.sc,quotesingle.sc" g2="a.sc,aacute.sc,abreve.sc,acaron.sc,acircumflex.sc,adieresis.sc,adotbelow.sc,agrave.sc,amacron.sc,aogonek.sc,aring.sc,aringacute.sc,atilde.sc,ae.sc,aeacute.sc" k="80" />
  3251. <hkern g1="quotedbl,quotesingle,quotedbl.caps,quotesingle.caps,quotedbl.sc,quotesingle.sc" g2="Z,Zacute,Zdotaccent,Zcaron,Zdotbelow" k="-20" />
  3252. <hkern g1="quotedbl,quotesingle,quotedbl.caps,quotesingle.caps,quotedbl.sc,quotesingle.sc" g2="c.sc,cacute.sc,ccaron.sc,ccedilla.sc,ccircumflex.sc,cdotaccent.sc,schwa.sc,g.sc,gacute.sc,gbreve.sc,gcaron.sc,gcircumflex.sc,gcommaaccent.sc,gdotaccent.sc,o.sc,oacute.sc,obreve.sc,ocaron.sc,ocircumflex.sc,odieresis.sc,odotbelow.sc,ograve.sc,ohungarumlaut.sc,omacron.sc,oogonek.sc,oslash.sc,oslashacute.sc,otilde.sc,oe.sc,q.sc" k="10" />
  3253. <hkern g1="quotedbl,quotesingle,quotedbl.caps,quotesingle.caps,quotedbl.sc,quotesingle.sc" g2="comma,period,quotesinglbase,quotedblbase,ellipsis,quotesinglbase.caps,quotedblbase.caps,quotesinglbase.sc,quotedblbase.sc" k="30" />
  3254. <hkern g1="quotedbl,quotesingle,quotedbl.caps,quotesingle.caps,quotedbl.sc,quotesingle.sc" g2="J,Jcircumflex,Nhookleft,Jacute" k="30" />
  3255. <hkern g1="quotedbl,quotesingle,quotedbl.caps,quotesingle.caps,quotedbl.sc,quotesingle.sc" g2="numbersign,numbersign.lf,numbersign.osf,numbersign.sc" k="70" />
  3256. <hkern g1="quotedbl,quotesingle,quotedbl.caps,quotesingle.caps,quotedbl.sc,quotesingle.sc" g2="slash,slash.caps,slash.sc" k="70" />
  3257. <hkern g1="quotedbl,quotesingle,quotedbl.caps,quotesingle.caps,quotedbl.sc,quotesingle.sc" g2="euro,euro.lf,euro.osf,euro.sc" k="50" />
  3258. <hkern g1="quotedbl,quotesingle,quotedbl.caps,quotesingle.caps,quotedbl.sc,quotesingle.sc" g2="plus.lf,minus.lf,multiply.lf,divide.lf,equal.lf,notequal.lf,greater.lf,less.lf,greaterequal.lf,lessequal.lf,plusminus.lf,approxequal.lf,logicalnot.lf,infinity.lf,plus.sc,minus.sc,multiply.sc,divide.sc,equal.sc,notequal.sc,greater.sc,less.sc,greaterequal.sc,lessequal.sc,plusminus.sc,approxequal.sc,logicalnot.sc,infinity.sc" k="-30" />
  3259. <hkern g1="quotedbl,quotesingle,quotedbl.caps,quotesingle.caps,quotedbl.sc,quotesingle.sc" g2="percent,perthousand,percent.osf,perthousand.osf,percent.sc,perthousand.sc" k="-10" />
  3260. <hkern g1="quotedbl,quotesingle,quotedbl.caps,quotesingle.caps,quotedbl.sc,quotesingle.sc" g2="sterling,sterling.lf,sterling.osf,sterling.sc" k="50" />
  3261. <hkern g1="quotedbl,quotesingle,quotedbl.caps,quotesingle.caps,quotedbl.sc,quotesingle.sc" g2="zero,six,nine,zero.lf,six.lf,nine.lf,zero.osf,six.osf,nine.osf,zero.sc,six.sc,nine.sc" k="30" />
  3262. <hkern g1="quotedbl,quotesingle,quotedbl.caps,quotesingle.caps,quotedbl.sc,quotesingle.sc" g2="one,one.lf,one.osf,one.sc" k="-70" />
  3263. <hkern g1="quotedbl,quotesingle,quotedbl.caps,quotesingle.caps,quotedbl.sc,quotesingle.sc" g2="four,four.lf,four.osf,four.sc" k="60" />
  3264. <hkern g1="quotedbl,quotesingle,quotedbl.caps,quotesingle.caps,quotedbl.sc,quotesingle.sc" g2="eight,eight.lf,eight.osf,eight.sc" k="-20" />
  3265. <hkern g1="quotedbl,quotesingle,quotedbl.caps,quotesingle.caps,quotedbl.sc,quotesingle.sc" g2="florin,florin.lf,florin.osf,florin.sc" k="40" />
  3266. <hkern g1="quotedbl,quotesingle,quotedbl.caps,quotesingle.caps,quotedbl.sc,quotesingle.sc" g2="X" k="-10" />
  3267. <hkern g1="quotedbl,quotesingle,quotedbl.caps,quotesingle.caps,quotedbl.sc,quotesingle.sc" g2="M" k="30" />
  3268. <hkern g1="quotedbl,quotesingle,quotedbl.caps,quotesingle.caps,quotedbl.sc,quotesingle.sc" g2="integral" k="90" />
  3269. <hkern g1="quoteleft,quotedblleft,quotedblleft.caps,quoteleft.caps" g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE,Amacron,Abreve,Aogonek,Acaron,Aringacute,AEacute,Adotbelow" k="110" />
  3270. <hkern g1="quoteleft,quotedblleft,quotedblleft.caps,quoteleft.caps" g2="B,D,E,F,H,I,K,L,N,P,R,Egrave,Eacute,Ecircumflex,Edieresis,Igrave,Iacute,Icircumflex,Idieresis,Eth,Ntilde,Thorn,Dcaron,Dcroat,Emacron,Ebreve,Edotaccent,Eogonek,Ecaron,Hcircumflex,Hbar,Itilde,Imacron,Ibreve,Iogonek,Idotaccent,IJ,Kcommaaccent,Lacute,Lcommaaccent,Lcaron,Ldot,Lslash,Nacute,Ncommaaccent,Ncaron,Eng,Racute,Rcommaaccent,Rcaron,Icaron,Ddotbelow,Hdotbelow,Ndotaccent,Rdotbelow,Edotbelow,Etilde,Idotbelow,IJacute" k="40" />
  3271. <hkern g1="quoteleft,quotedblleft,quotedblleft.caps,quoteleft.caps" g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,Cacute,Ccircumflex,Cdotaccent,Ccaron,Gcircumflex,Gbreve,Gdotaccent,Gcommaaccent,Omacron,Obreve,Ohungarumlaut,OE,Ocaron,Gcaron,Oogonek,Gacute,Oslashacute,Odotbelow" k="50" />
  3272. <hkern g1="quoteleft,quotedblleft,quotedblleft.caps,quoteleft.caps" g2="T,Tcedilla,Tcaron,Tbar,Tcommaaccent,Tdotbelow" k="-10" />
  3273. <hkern g1="quoteleft,quotedblleft,quotedblleft.caps,quoteleft.caps" g2="U,Ugrave,Uacute,Ucircumflex,Udieresis,Utilde,Umacron,Ubreve,Uring,Uhungarumlaut,Uogonek,Ucaron,Udieresismacron,Udieresisacute,Udieresiscaron,Udieresisgrave,Udotbelow" k="40" />
  3274. <hkern g1="quoteleft,quotedblleft,quotedblleft.caps,quoteleft.caps" g2="V,W,Wcircumflex,Wgrave,Wacute,Wdieresis" k="10" />
  3275. <hkern g1="quoteleft,quotedblleft,quotedblleft.caps,quoteleft.caps" g2="Y,Yacute,Ycircumflex,Ydieresis,Ymacron,Ygrave,Ytilde" k="30" />
  3276. <hkern g1="quoteleft,quotedblleft,quotedblleft.caps,quoteleft.caps" g2="ampersand,ampersand.caps,ampersand.sc" k="70" />
  3277. <hkern g1="quoteleft,quotedblleft,quotedblleft.caps,quoteleft.caps" g2="question,question.caps,question.sc" k="-30" />
  3278. <hkern g1="quoteleft,quotedblleft,quotedblleft.caps,quoteleft.caps" g2="S,Sacute,Scircumflex,Scedilla,Scaron,Scommaaccent,Sdotbelow" k="10" />
  3279. <hkern g1="quoteleft,quotedblleft,quotedblleft.caps,quoteleft.caps" g2="a,d,q,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,amacron,abreve,aogonek,dcaron,dcroat,acaron,aringacute,aeacute,ddotbelow,adotbelow" k="70" />
  3280. <hkern g1="quoteleft,quotedblleft,quotedblleft.caps,quoteleft.caps" g2="a.sc,aacute.sc,abreve.sc,acaron.sc,acircumflex.sc,adieresis.sc,adotbelow.sc,agrave.sc,amacron.sc,aogonek.sc,aring.sc,aringacute.sc,atilde.sc,ae.sc,aeacute.sc" k="40" />
  3281. <hkern g1="quoteleft,quotedblleft,quotedblleft.caps,quoteleft.caps" g2="c,e,o,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oslash,cacute,ccircumflex,cdotaccent,ccaron,emacron,ebreve,edotaccent,eogonek,ecaron,omacron,obreve,ohungarumlaut,oe,ocaron,oogonek,oslashacute,edotbelow,etilde,odotbelow,c_h,c_t" k="70" />
  3282. <hkern g1="quoteleft,quotedblleft,quotedblleft.caps,quoteleft.caps" g2="g,gcircumflex,gbreve,gdotaccent,gcommaaccent,gcaron,gacute" k="20" />
  3283. <hkern g1="quoteleft,quotedblleft,quotedblleft.caps,quoteleft.caps" g2="u,ugrave,uacute,ucircumflex,udieresis,utilde,umacron,ubreve,uring,uhungarumlaut,uogonek,ucaron,udieresismacron,udieresisacute,udieresiscaron,udieresisgrave,udotbelow" k="40" />
  3284. <hkern g1="quoteleft,quotedblleft,quotedblleft.caps,quoteleft.caps" g2="J,Jcircumflex,Nhookleft,Jacute" k="10" />
  3285. <hkern g1="quoteleft,quotedblleft,quotedblleft.caps,quoteleft.caps" g2="b,h,k,l,thorn,hcircumflex,hbar,kcommaaccent,lacute,lcommaaccent,lcaron,ldot,lslash,hdotbelow" k="10" />
  3286. <hkern g1="quoteleft,quotedblleft,quotedblleft.caps,quoteleft.caps" g2="numbersign,numbersign.lf,numbersign.osf,numbersign.sc" k="70" />
  3287. <hkern g1="quoteleft,quotedblleft,quotedblleft.caps,quoteleft.caps" g2="euro,euro.lf,euro.osf,euro.sc" k="40" />
  3288. <hkern g1="quoteleft,quotedblleft,quotedblleft.caps,quoteleft.caps" g2="florin,florin.lf,florin.osf,florin.sc" k="40" />
  3289. <hkern g1="quoteleft,quotedblleft,quotedblleft.caps,quoteleft.caps" g2="X" k="40" />
  3290. <hkern g1="quoteleft,quotedblleft,quotedblleft.caps,quoteleft.caps" g2="M" k="40" />
  3291. <hkern g1="quoteleft,quotedblleft,quotedblleft.caps,quoteleft.caps" g2="Schwa" k="20" />
  3292. <hkern g1="quoteleft,quotedblleft,quotedblleft.caps,quoteleft.caps" g2="Delta" k="70" />
  3293. <hkern g1="quoteright,quotedblright,quotedblright.caps,quoteright.caps" g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE,Amacron,Abreve,Aogonek,Acaron,Aringacute,AEacute,Adotbelow" k="140" />
  3294. <hkern g1="quoteright,quotedblright,quotedblright.caps,quoteright.caps" g2="B,D,E,F,H,I,K,L,N,P,R,Egrave,Eacute,Ecircumflex,Edieresis,Igrave,Iacute,Icircumflex,Idieresis,Eth,Ntilde,Thorn,Dcaron,Dcroat,Emacron,Ebreve,Edotaccent,Eogonek,Ecaron,Hcircumflex,Hbar,Itilde,Imacron,Ibreve,Iogonek,Idotaccent,IJ,Kcommaaccent,Lacute,Lcommaaccent,Lcaron,Ldot,Lslash,Nacute,Ncommaaccent,Ncaron,Eng,Racute,Rcommaaccent,Rcaron,Icaron,Ddotbelow,Hdotbelow,Ndotaccent,Rdotbelow,Edotbelow,Etilde,Idotbelow,IJacute" k="50" />
  3295. <hkern g1="quoteright,quotedblright,quotedblright.caps,quoteright.caps" g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,Cacute,Ccircumflex,Cdotaccent,Ccaron,Gcircumflex,Gbreve,Gdotaccent,Gcommaaccent,Omacron,Obreve,Ohungarumlaut,OE,Ocaron,Gcaron,Oogonek,Gacute,Oslashacute,Odotbelow" k="60" />
  3296. <hkern g1="quoteright,quotedblright,quotedblright.caps,quoteright.caps" g2="T,Tcedilla,Tcaron,Tbar,Tcommaaccent,Tdotbelow" k="10" />
  3297. <hkern g1="quoteright,quotedblright,quotedblright.caps,quoteright.caps" g2="U,Ugrave,Uacute,Ucircumflex,Udieresis,Utilde,Umacron,Ubreve,Uring,Uhungarumlaut,Uogonek,Ucaron,Udieresismacron,Udieresisacute,Udieresiscaron,Udieresisgrave,Udotbelow" k="30" />
  3298. <hkern g1="quoteright,quotedblright,quotedblright.caps,quoteright.caps" g2="Y,Yacute,Ycircumflex,Ydieresis,Ymacron,Ygrave,Ytilde" k="20" />
  3299. <hkern g1="quoteright,quotedblright,quotedblright.caps,quoteright.caps" g2="S,Sacute,Scircumflex,Scedilla,Scaron,Scommaaccent,Sdotbelow" k="50" />
  3300. <hkern g1="quoteright,quotedblright,quotedblright.caps,quoteright.caps" g2="a,d,q,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,amacron,abreve,aogonek,dcaron,dcroat,acaron,aringacute,aeacute,ddotbelow,adotbelow" k="160" />
  3301. <hkern g1="quoteright,quotedblright,quotedblright.caps,quoteright.caps" g2="c,e,o,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oslash,cacute,ccircumflex,cdotaccent,ccaron,emacron,ebreve,edotaccent,eogonek,ecaron,omacron,obreve,ohungarumlaut,oe,ocaron,oogonek,oslashacute,edotbelow,etilde,odotbelow,c_h,c_t" k="100" />
  3302. <hkern g1="quoteright,quotedblright,quotedblright.caps,quoteright.caps" g2="s,sacute,scircumflex,scedilla,scaron,scommaaccent,sdotbelow,s_h" k="60" />
  3303. <hkern g1="quoteright,quotedblright,quotedblright.caps,quoteright.caps" g2="u,ugrave,uacute,ucircumflex,udieresis,utilde,umacron,ubreve,uring,uhungarumlaut,uogonek,ucaron,udieresismacron,udieresisacute,udieresiscaron,udieresisgrave,udotbelow" k="30" />
  3304. <hkern g1="quoteright,quotedblright,quotedblright.caps,quoteright.caps" g2="J,Jcircumflex,Nhookleft,Jacute" k="50" />
  3305. <hkern g1="quoteright,quotedblright,quotedblright.caps,quoteright.caps" g2="X" k="20" />
  3306. <hkern g1="quoteright,quotedblright,quotedblright.caps,quoteright.caps" g2="x" k="-30" />
  3307. <hkern g1="quoteright,quotedblright,quotedblright.caps,quoteright.caps" g2="M" k="50" />
  3308. <hkern g1="r,racute,rcommaaccent,rcaron,rdotbelow" g2="a,d,q,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,amacron,abreve,aogonek,dcaron,dcroat,acaron,aringacute,aeacute,ddotbelow,adotbelow" k="20" />
  3309. <hkern g1="r,racute,rcommaaccent,rcaron,rdotbelow" g2="c,e,o,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oslash,cacute,ccircumflex,cdotaccent,ccaron,emacron,ebreve,edotaccent,eogonek,ecaron,omacron,obreve,ohungarumlaut,oe,ocaron,oogonek,oslashacute,edotbelow,etilde,odotbelow,c_h,c_t" k="20" />
  3310. <hkern g1="r,racute,rcommaaccent,rcaron,rdotbelow" g2="s,sacute,scircumflex,scedilla,scaron,scommaaccent,sdotbelow,s_h" k="10" />
  3311. <hkern g1="r,racute,rcommaaccent,rcaron,rdotbelow" g2="g,gcircumflex,gbreve,gdotaccent,gcommaaccent,gcaron,gacute" k="15" />
  3312. <hkern g1="r,racute,rcommaaccent,rcaron,rdotbelow" g2="t,tcedilla,tcaron,tbar,tcommaaccent,tdotbelow" k="10" />
  3313. <hkern g1="r,racute,rcommaaccent,rcaron,rdotbelow" g2="b,h,k,l,thorn,hcircumflex,hbar,kcommaaccent,lacute,lcommaaccent,lcaron,ldot,lslash,hdotbelow" k="10" />
  3314. <hkern g1="r,racute,rcommaaccent,rcaron,rdotbelow" g2="f,germandbls,Germandbls,fi,fl" k="5" />
  3315. <hkern g1="r,racute,rcommaaccent,rcaron,rdotbelow" g2="numbersign,numbersign.lf,numbersign.osf,numbersign.sc" k="60" />
  3316. <hkern g1="r,racute,rcommaaccent,rcaron,rdotbelow" g2="x" k="10" />
  3317. <hkern g1="r.sc,racute.sc,rcaron.sc,rcommaaccent.sc,rdotbelow.sc" g2="asterisk,asterisk.caps,asterisk.sc" k="60" />
  3318. <hkern g1="r.sc,racute.sc,rcaron.sc,rcommaaccent.sc,rdotbelow.sc" g2="quotedbl,quotesingle,quotedbl.caps,quotesingle.caps,quotedbl.sc,quotesingle.sc" k="10" />
  3319. <hkern g1="r.sc,racute.sc,rcaron.sc,rcommaaccent.sc,rdotbelow.sc" g2="periodcentered,bullet,periodcentered.caps,bullet.caps,periodcentered.sc,bullet.sc" k="20" />
  3320. <hkern g1="r.sc,racute.sc,rcaron.sc,rcommaaccent.sc,rdotbelow.sc" g2="a.sc,aacute.sc,abreve.sc,acaron.sc,acircumflex.sc,adieresis.sc,adotbelow.sc,agrave.sc,amacron.sc,aogonek.sc,aring.sc,aringacute.sc,atilde.sc,ae.sc,aeacute.sc" k="30" />
  3321. <hkern g1="r.sc,racute.sc,rcaron.sc,rcommaaccent.sc,rdotbelow.sc" g2="c.sc,cacute.sc,ccaron.sc,ccedilla.sc,ccircumflex.sc,cdotaccent.sc,schwa.sc,g.sc,gacute.sc,gbreve.sc,gcaron.sc,gcircumflex.sc,gcommaaccent.sc,gdotaccent.sc,o.sc,oacute.sc,obreve.sc,ocaron.sc,ocircumflex.sc,odieresis.sc,odotbelow.sc,ograve.sc,ohungarumlaut.sc,omacron.sc,oogonek.sc,oslash.sc,oslashacute.sc,otilde.sc,oe.sc,q.sc" k="20" />
  3322. <hkern g1="r.sc,racute.sc,rcaron.sc,rcommaaccent.sc,rdotbelow.sc" g2="y.sc,yacute.sc,ycircumflex.sc,ydieresis.sc,ygrave.sc,ymacron.sc,ytilde.sc" k="40" />
  3323. <hkern g1="r.sc,racute.sc,rcaron.sc,rcommaaccent.sc,rdotbelow.sc" g2="b.sc,d.sc,eth.sc,dcaron.sc,dcroat.sc,ddotbelow.sc,e.sc,eacute.sc,ebreve.sc,ecaron.sc,ecircumflex.sc,edieresis.sc,edotaccent.sc,edotbelow.sc,egrave.sc,emacron.sc,eogonek.sc,etilde.sc,f.sc,h.sc,hbar.sc,hcircumflex.sc,hdotbelow.sc,i.sc,dotlessi.sc,iacute.sc,ibreve.sc,icaron.sc,icircumflex.sc,idieresis.sc,idotaccent.sc,idotbelow.sc,igrave.sc,ij.sc,imacron.sc,iogonek.sc,itilde.sc,k.sc,kcommaaccent.sc,kgreenlandic.sc,l.sc,lacute.sc,lcaron.sc,lcommaaccent.sc,ldot.sc,lslash.sc,n.sc,nacute.sc,ncaron.sc,ncommaaccent.sc,ndotaccent.sc,eng.sc,ntilde.sc,p.sc,thorn.sc,r.sc,racute.sc,rcaron.sc,rcommaaccent.sc,rdotbelow.sc,germandbls.sc" k="10" />
  3324. <hkern g1="r.sc,racute.sc,rcaron.sc,rcommaaccent.sc,rdotbelow.sc" g2="s.sc,sacute.sc,scaron.sc,scedilla.sc,scircumflex.sc,scommaaccent.sc,sdotbelow.sc" k="10" />
  3325. <hkern g1="r.sc,racute.sc,rcaron.sc,rcommaaccent.sc,rdotbelow.sc" g2="t.sc,tbar.sc,tcaron.sc,tcedilla.sc,tcommaaccent.sc,tdotbelow.sc" k="50" />
  3326. <hkern g1="r.sc,racute.sc,rcaron.sc,rcommaaccent.sc,rdotbelow.sc" g2="u.sc,uacute.sc,ubreve.sc,ucaron.sc,ucircumflex.sc,udieresis.sc,udieresisacute.sc,udieresiscaron.sc,udieresisgrave.sc,udieresismacron.sc,udotbelow.sc,ugrave.sc,uhungarumlaut.sc,umacron.sc,uogonek.sc,uring.sc,utilde.sc" k="20" />
  3327. <hkern g1="r.sc,racute.sc,rcaron.sc,rcommaaccent.sc,rdotbelow.sc" g2="v.sc,w.sc,wacute.sc,wcircumflex.sc,wdieresis.sc,wgrave.sc" k="35" />
  3328. <hkern g1="r.sc,racute.sc,rcaron.sc,rcommaaccent.sc,rdotbelow.sc" g2="z.sc,zacute.sc,zcaron.sc,zdotaccent.sc,zdotbelow.sc" k="5" />
  3329. <hkern g1="r.sc,racute.sc,rcaron.sc,rcommaaccent.sc,rdotbelow.sc" g2="backslash,backslash.caps,backslash.sc" k="70" />
  3330. <hkern g1="r.sc,racute.sc,rcaron.sc,rcommaaccent.sc,rdotbelow.sc" g2="m.sc" k="5" />
  3331. <hkern g1="r.sc,racute.sc,rcaron.sc,rcommaaccent.sc,rdotbelow.sc" g2="x.sc" k="25" />
  3332. <hkern g1="r.sc,racute.sc,rcaron.sc,rcommaaccent.sc,rdotbelow.sc" g2="dagger,daggerdbl" k="30" />
  3333. <hkern g1="s,sacute,scircumflex,scedilla,scaron,scommaaccent,sdotbelow" g2="quoteleft,quotedblleft,quotedblleft.caps,quoteleft.caps" k="60" />
  3334. <hkern g1="s,sacute,scircumflex,scedilla,scaron,scommaaccent,sdotbelow" g2="a,d,q,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,amacron,abreve,aogonek,dcaron,dcroat,acaron,aringacute,aeacute,ddotbelow,adotbelow" k="10" />
  3335. <hkern g1="s,sacute,scircumflex,scedilla,scaron,scommaaccent,sdotbelow" g2="c,e,o,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oslash,cacute,ccircumflex,cdotaccent,ccaron,emacron,ebreve,edotaccent,eogonek,ecaron,omacron,obreve,ohungarumlaut,oe,ocaron,oogonek,oslashacute,edotbelow,etilde,odotbelow,c_h,c_t" k="15" />
  3336. <hkern g1="s,sacute,scircumflex,scedilla,scaron,scommaaccent,sdotbelow" g2="s,sacute,scircumflex,scedilla,scaron,scommaaccent,sdotbelow,s_h" k="20" />
  3337. <hkern g1="s,sacute,scircumflex,scedilla,scaron,scommaaccent,sdotbelow" g2="g,gcircumflex,gbreve,gdotaccent,gcommaaccent,gcaron,gacute" k="10" />
  3338. <hkern g1="s,sacute,scircumflex,scedilla,scaron,scommaaccent,sdotbelow" g2="m,n,p,r,ntilde,dotlessi,kgreenlandic,nacute,ncommaaccent,ncaron,eng,racute,rcommaaccent,rcaron,ndotaccent,rdotbelow" k="15" />
  3339. <hkern g1="s,sacute,scircumflex,scedilla,scaron,scommaaccent,sdotbelow" g2="t,tcedilla,tcaron,tbar,tcommaaccent,tdotbelow" k="5" />
  3340. <hkern g1="s,sacute,scircumflex,scedilla,scaron,scommaaccent,sdotbelow" g2="u,ugrave,uacute,ucircumflex,udieresis,utilde,umacron,ubreve,uring,uhungarumlaut,uogonek,ucaron,udieresismacron,udieresisacute,udieresiscaron,udieresisgrave,udotbelow" k="5" />
  3341. <hkern g1="s,sacute,scircumflex,scedilla,scaron,scommaaccent,sdotbelow" g2="v,w,wcircumflex,wgrave,wacute,wdieresis" k="5" />
  3342. <hkern g1="s,sacute,scircumflex,scedilla,scaron,scommaaccent,sdotbelow" g2="y,yacute,ydieresis,ycircumflex,ymacron,ygrave,ytilde" k="5" />
  3343. <hkern g1="s,sacute,scircumflex,scedilla,scaron,scommaaccent,sdotbelow" g2="b,h,k,l,thorn,hcircumflex,hbar,kcommaaccent,lacute,lcommaaccent,lcaron,ldot,lslash,hdotbelow" k="5" />
  3344. <hkern g1="s,sacute,scircumflex,scedilla,scaron,scommaaccent,sdotbelow" g2="f,germandbls,Germandbls,fi,fl" k="10" />
  3345. <hkern g1="s,sacute,scircumflex,scedilla,scaron,scommaaccent,sdotbelow" g2="z,zacute,zdotaccent,zcaron,zdotbelow" k="5" />
  3346. <hkern g1="s,sacute,scircumflex,scedilla,scaron,scommaaccent,sdotbelow" g2="numbersign,numbersign.lf,numbersign.osf,numbersign.sc" k="60" />
  3347. <hkern g1="s,sacute,scircumflex,scedilla,scaron,scommaaccent,sdotbelow" g2="j,jcircumflex,dotlessj,nhookleft,jacute" k="5" />
  3348. <hkern g1="s,sacute,scircumflex,scedilla,scaron,scommaaccent,sdotbelow" g2="trademark" k="90" />
  3349. <hkern g1="s,sacute,scircumflex,scedilla,scaron,scommaaccent,sdotbelow" g2="x" k="5" />
  3350. <hkern g1="s,sacute,scircumflex,scedilla,scaron,scommaaccent,sdotbelow" g2="dagger,daggerdbl" k="20" />
  3351. <hkern g1="germandbls,s.sc,sacute.sc,scaron.sc,scedilla.sc,scircumflex.sc,scommaaccent.sc,sdotbelow.sc,germandbls.sc" g2="a,d,q,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,amacron,abreve,aogonek,dcaron,dcroat,acaron,aringacute,aeacute,ddotbelow,adotbelow" k="5" />
  3352. <hkern g1="germandbls,s.sc,sacute.sc,scaron.sc,scedilla.sc,scircumflex.sc,scommaaccent.sc,sdotbelow.sc,germandbls.sc" g2="a.sc,aacute.sc,abreve.sc,acaron.sc,acircumflex.sc,adieresis.sc,adotbelow.sc,agrave.sc,amacron.sc,aogonek.sc,aring.sc,aringacute.sc,atilde.sc,ae.sc,aeacute.sc" k="15" />
  3353. <hkern g1="germandbls,s.sc,sacute.sc,scaron.sc,scedilla.sc,scircumflex.sc,scommaaccent.sc,sdotbelow.sc,germandbls.sc" g2="c,e,o,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oslash,cacute,ccircumflex,cdotaccent,ccaron,emacron,ebreve,edotaccent,eogonek,ecaron,omacron,obreve,ohungarumlaut,oe,ocaron,oogonek,oslashacute,edotbelow,etilde,odotbelow,c_h,c_t" k="15" />
  3354. <hkern g1="germandbls,s.sc,sacute.sc,scaron.sc,scedilla.sc,scircumflex.sc,scommaaccent.sc,sdotbelow.sc,germandbls.sc" g2="s,sacute,scircumflex,scedilla,scaron,scommaaccent,sdotbelow,s_h" k="5" />
  3355. <hkern g1="germandbls,s.sc,sacute.sc,scaron.sc,scedilla.sc,scircumflex.sc,scommaaccent.sc,sdotbelow.sc,germandbls.sc" g2="c.sc,cacute.sc,ccaron.sc,ccedilla.sc,ccircumflex.sc,cdotaccent.sc,schwa.sc,g.sc,gacute.sc,gbreve.sc,gcaron.sc,gcircumflex.sc,gcommaaccent.sc,gdotaccent.sc,o.sc,oacute.sc,obreve.sc,ocaron.sc,ocircumflex.sc,odieresis.sc,odotbelow.sc,ograve.sc,ohungarumlaut.sc,omacron.sc,oogonek.sc,oslash.sc,oslashacute.sc,otilde.sc,oe.sc,q.sc" k="20" />
  3356. <hkern g1="germandbls,s.sc,sacute.sc,scaron.sc,scedilla.sc,scircumflex.sc,scommaaccent.sc,sdotbelow.sc,germandbls.sc" g2="g,gcircumflex,gbreve,gdotaccent,gcommaaccent,gcaron,gacute" k="10" />
  3357. <hkern g1="germandbls,s.sc,sacute.sc,scaron.sc,scedilla.sc,scircumflex.sc,scommaaccent.sc,sdotbelow.sc,germandbls.sc" g2="m,n,p,r,ntilde,dotlessi,kgreenlandic,nacute,ncommaaccent,ncaron,eng,racute,rcommaaccent,rcaron,ndotaccent,rdotbelow" k="10" />
  3358. <hkern g1="germandbls,s.sc,sacute.sc,scaron.sc,scedilla.sc,scircumflex.sc,scommaaccent.sc,sdotbelow.sc,germandbls.sc" g2="t,tcedilla,tcaron,tbar,tcommaaccent,tdotbelow" k="5" />
  3359. <hkern g1="germandbls,s.sc,sacute.sc,scaron.sc,scedilla.sc,scircumflex.sc,scommaaccent.sc,sdotbelow.sc,germandbls.sc" g2="u,ugrave,uacute,ucircumflex,udieresis,utilde,umacron,ubreve,uring,uhungarumlaut,uogonek,ucaron,udieresismacron,udieresisacute,udieresiscaron,udieresisgrave,udotbelow" k="5" />
  3360. <hkern g1="germandbls,s.sc,sacute.sc,scaron.sc,scedilla.sc,scircumflex.sc,scommaaccent.sc,sdotbelow.sc,germandbls.sc" g2="v,w,wcircumflex,wgrave,wacute,wdieresis" k="5" />
  3361. <hkern g1="germandbls,s.sc,sacute.sc,scaron.sc,scedilla.sc,scircumflex.sc,scommaaccent.sc,sdotbelow.sc,germandbls.sc" g2="y,yacute,ydieresis,ycircumflex,ymacron,ygrave,ytilde" k="15" />
  3362. <hkern g1="germandbls,s.sc,sacute.sc,scaron.sc,scedilla.sc,scircumflex.sc,scommaaccent.sc,sdotbelow.sc,germandbls.sc" g2="b,h,k,l,thorn,hcircumflex,hbar,kcommaaccent,lacute,lcommaaccent,lcaron,ldot,lslash,hdotbelow" k="5" />
  3363. <hkern g1="germandbls,s.sc,sacute.sc,scaron.sc,scedilla.sc,scircumflex.sc,scommaaccent.sc,sdotbelow.sc,germandbls.sc" g2="z,zacute,zdotaccent,zcaron,zdotbelow" k="5" />
  3364. <hkern g1="germandbls,s.sc,sacute.sc,scaron.sc,scedilla.sc,scircumflex.sc,scommaaccent.sc,sdotbelow.sc,germandbls.sc" g2="y.sc,yacute.sc,ycircumflex.sc,ydieresis.sc,ygrave.sc,ymacron.sc,ytilde.sc" k="15" />
  3365. <hkern g1="germandbls,s.sc,sacute.sc,scaron.sc,scedilla.sc,scircumflex.sc,scommaaccent.sc,sdotbelow.sc,germandbls.sc" g2="b.sc,d.sc,eth.sc,dcaron.sc,dcroat.sc,ddotbelow.sc,e.sc,eacute.sc,ebreve.sc,ecaron.sc,ecircumflex.sc,edieresis.sc,edotaccent.sc,edotbelow.sc,egrave.sc,emacron.sc,eogonek.sc,etilde.sc,f.sc,h.sc,hbar.sc,hcircumflex.sc,hdotbelow.sc,i.sc,dotlessi.sc,iacute.sc,ibreve.sc,icaron.sc,icircumflex.sc,idieresis.sc,idotaccent.sc,idotbelow.sc,igrave.sc,ij.sc,imacron.sc,iogonek.sc,itilde.sc,k.sc,kcommaaccent.sc,kgreenlandic.sc,l.sc,lacute.sc,lcaron.sc,lcommaaccent.sc,ldot.sc,lslash.sc,n.sc,nacute.sc,ncaron.sc,ncommaaccent.sc,ndotaccent.sc,eng.sc,ntilde.sc,p.sc,thorn.sc,r.sc,racute.sc,rcaron.sc,rcommaaccent.sc,rdotbelow.sc,germandbls.sc" k="10" />
  3366. <hkern g1="germandbls,s.sc,sacute.sc,scaron.sc,scedilla.sc,scircumflex.sc,scommaaccent.sc,sdotbelow.sc,germandbls.sc" g2="numbersign,numbersign.lf,numbersign.osf,numbersign.sc" k="40" />
  3367. <hkern g1="germandbls,s.sc,sacute.sc,scaron.sc,scedilla.sc,scircumflex.sc,scommaaccent.sc,sdotbelow.sc,germandbls.sc" g2="s.sc,sacute.sc,scaron.sc,scedilla.sc,scircumflex.sc,scommaaccent.sc,sdotbelow.sc" k="35" />
  3368. <hkern g1="germandbls,s.sc,sacute.sc,scaron.sc,scedilla.sc,scircumflex.sc,scommaaccent.sc,sdotbelow.sc,germandbls.sc" g2="t.sc,tbar.sc,tcaron.sc,tcedilla.sc,tcommaaccent.sc,tdotbelow.sc" k="35" />
  3369. <hkern g1="germandbls,s.sc,sacute.sc,scaron.sc,scedilla.sc,scircumflex.sc,scommaaccent.sc,sdotbelow.sc,germandbls.sc" g2="u.sc,uacute.sc,ubreve.sc,ucaron.sc,ucircumflex.sc,udieresis.sc,udieresisacute.sc,udieresiscaron.sc,udieresisgrave.sc,udieresismacron.sc,udotbelow.sc,ugrave.sc,uhungarumlaut.sc,umacron.sc,uogonek.sc,uring.sc,utilde.sc" k="10" />
  3370. <hkern g1="germandbls,s.sc,sacute.sc,scaron.sc,scedilla.sc,scircumflex.sc,scommaaccent.sc,sdotbelow.sc,germandbls.sc" g2="v.sc,w.sc,wacute.sc,wcircumflex.sc,wdieresis.sc,wgrave.sc" k="20" />
  3371. <hkern g1="germandbls,s.sc,sacute.sc,scaron.sc,scedilla.sc,scircumflex.sc,scommaaccent.sc,sdotbelow.sc,germandbls.sc" g2="euro,euro.lf,euro.osf,euro.sc" k="30" />
  3372. <hkern g1="germandbls,s.sc,sacute.sc,scaron.sc,scedilla.sc,scircumflex.sc,scommaaccent.sc,sdotbelow.sc,germandbls.sc" g2="j.sc,dotlessj.sc,jacute.sc,jcircumflex.sc,nhookleft.sc" k="5" />
  3373. <hkern g1="germandbls,s.sc,sacute.sc,scaron.sc,scedilla.sc,scircumflex.sc,scommaaccent.sc,sdotbelow.sc,germandbls.sc" g2="x" k="10" />
  3374. <hkern g1="germandbls,s.sc,sacute.sc,scaron.sc,scedilla.sc,scircumflex.sc,scommaaccent.sc,sdotbelow.sc,germandbls.sc" g2="m.sc" k="10" />
  3375. <hkern g1="germandbls,s.sc,sacute.sc,scaron.sc,scedilla.sc,scircumflex.sc,scommaaccent.sc,sdotbelow.sc,germandbls.sc" g2="x.sc" k="5" />
  3376. <hkern g1="t,tcedilla,tcaron,tbar,tcommaaccent,tdotbelow,c_t" g2="bracketright,bracketright.caps,bracketright.sc" k="20" />
  3377. <hkern g1="t,tcedilla,tcaron,tbar,tcommaaccent,tdotbelow,c_t" g2="a,d,q,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,amacron,abreve,aogonek,dcaron,dcroat,acaron,aringacute,aeacute,ddotbelow,adotbelow" k="10" />
  3378. <hkern g1="t,tcedilla,tcaron,tbar,tcommaaccent,tdotbelow,c_t" g2="c,e,o,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oslash,cacute,ccircumflex,cdotaccent,ccaron,emacron,ebreve,edotaccent,eogonek,ecaron,omacron,obreve,ohungarumlaut,oe,ocaron,oogonek,oslashacute,edotbelow,etilde,odotbelow,c_h,c_t" k="20" />
  3379. <hkern g1="t,tcedilla,tcaron,tbar,tcommaaccent,tdotbelow,c_t" g2="s,sacute,scircumflex,scedilla,scaron,scommaaccent,sdotbelow,s_h" k="5" />
  3380. <hkern g1="t,tcedilla,tcaron,tbar,tcommaaccent,tdotbelow,c_t" g2="g,gcircumflex,gbreve,gdotaccent,gcommaaccent,gcaron,gacute" k="15" />
  3381. <hkern g1="t,tcedilla,tcaron,tbar,tcommaaccent,tdotbelow,c_t" g2="m,n,p,r,ntilde,dotlessi,kgreenlandic,nacute,ncommaaccent,ncaron,eng,racute,rcommaaccent,rcaron,ndotaccent,rdotbelow" k="10" />
  3382. <hkern g1="t,tcedilla,tcaron,tbar,tcommaaccent,tdotbelow,c_t" g2="t,tcedilla,tcaron,tbar,tcommaaccent,tdotbelow" k="50" />
  3383. <hkern g1="t,tcedilla,tcaron,tbar,tcommaaccent,tdotbelow,c_t" g2="u,ugrave,uacute,ucircumflex,udieresis,utilde,umacron,ubreve,uring,uhungarumlaut,uogonek,ucaron,udieresismacron,udieresisacute,udieresiscaron,udieresisgrave,udotbelow" k="10" />
  3384. <hkern g1="t,tcedilla,tcaron,tbar,tcommaaccent,tdotbelow,c_t" g2="v,w,wcircumflex,wgrave,wacute,wdieresis" k="10" />
  3385. <hkern g1="t,tcedilla,tcaron,tbar,tcommaaccent,tdotbelow,c_t" g2="y,yacute,ydieresis,ycircumflex,ymacron,ygrave,ytilde" k="10" />
  3386. <hkern g1="t,tcedilla,tcaron,tbar,tcommaaccent,tdotbelow,c_t" g2="f,germandbls,Germandbls,fi,fl" k="20" />
  3387. <hkern g1="t,tcedilla,tcaron,tbar,tcommaaccent,tdotbelow,c_t" g2="z,zacute,zdotaccent,zcaron,zdotbelow" k="10" />
  3388. <hkern g1="t,tcedilla,tcaron,tbar,tcommaaccent,tdotbelow,c_t" g2="numbersign,numbersign.lf,numbersign.osf,numbersign.sc" k="50" />
  3389. <hkern g1="t,tcedilla,tcaron,tbar,tcommaaccent,tdotbelow,c_t" g2="j,jcircumflex,dotlessj,nhookleft,jacute" k="5" />
  3390. <hkern g1="t,tcedilla,tcaron,tbar,tcommaaccent,tdotbelow,c_t" g2="x" k="10" />
  3391. <hkern g1="t.sc,tbar.sc,tcaron.sc,tcedilla.sc,tcommaaccent.sc,tdotbelow.sc" g2="ampersand,ampersand.caps,ampersand.sc" k="50" />
  3392. <hkern g1="t.sc,tbar.sc,tcaron.sc,tcedilla.sc,tcommaaccent.sc,tdotbelow.sc" g2="periodcentered,bullet,periodcentered.caps,bullet.caps,periodcentered.sc,bullet.sc" k="40" />
  3393. <hkern g1="t.sc,tbar.sc,tcaron.sc,tcedilla.sc,tcommaaccent.sc,tdotbelow.sc" g2="a.sc,aacute.sc,abreve.sc,acaron.sc,acircumflex.sc,adieresis.sc,adotbelow.sc,agrave.sc,amacron.sc,aogonek.sc,aring.sc,aringacute.sc,atilde.sc,ae.sc,aeacute.sc" k="80" />
  3394. <hkern g1="t.sc,tbar.sc,tcaron.sc,tcedilla.sc,tcommaaccent.sc,tdotbelow.sc" g2="c.sc,cacute.sc,ccaron.sc,ccedilla.sc,ccircumflex.sc,cdotaccent.sc,schwa.sc,g.sc,gacute.sc,gbreve.sc,gcaron.sc,gcircumflex.sc,gcommaaccent.sc,gdotaccent.sc,o.sc,oacute.sc,obreve.sc,ocaron.sc,ocircumflex.sc,odieresis.sc,odotbelow.sc,ograve.sc,ohungarumlaut.sc,omacron.sc,oogonek.sc,oslash.sc,oslashacute.sc,otilde.sc,oe.sc,q.sc" k="50" />
  3395. <hkern g1="t.sc,tbar.sc,tcaron.sc,tcedilla.sc,tcommaaccent.sc,tdotbelow.sc" g2="comma,period,quotesinglbase,quotedblbase,ellipsis,quotesinglbase.caps,quotedblbase.caps,quotesinglbase.sc,quotedblbase.sc" k="30" />
  3396. <hkern g1="t.sc,tbar.sc,tcaron.sc,tcedilla.sc,tcommaaccent.sc,tdotbelow.sc" g2="y.sc,yacute.sc,ycircumflex.sc,ydieresis.sc,ygrave.sc,ymacron.sc,ytilde.sc" k="10" />
  3397. <hkern g1="t.sc,tbar.sc,tcaron.sc,tcedilla.sc,tcommaaccent.sc,tdotbelow.sc" g2="b.sc,d.sc,eth.sc,dcaron.sc,dcroat.sc,ddotbelow.sc,e.sc,eacute.sc,ebreve.sc,ecaron.sc,ecircumflex.sc,edieresis.sc,edotaccent.sc,edotbelow.sc,egrave.sc,emacron.sc,eogonek.sc,etilde.sc,f.sc,h.sc,hbar.sc,hcircumflex.sc,hdotbelow.sc,i.sc,dotlessi.sc,iacute.sc,ibreve.sc,icaron.sc,icircumflex.sc,idieresis.sc,idotaccent.sc,idotbelow.sc,igrave.sc,ij.sc,imacron.sc,iogonek.sc,itilde.sc,k.sc,kcommaaccent.sc,kgreenlandic.sc,l.sc,lacute.sc,lcaron.sc,lcommaaccent.sc,ldot.sc,lslash.sc,n.sc,nacute.sc,ncaron.sc,ncommaaccent.sc,ndotaccent.sc,eng.sc,ntilde.sc,p.sc,thorn.sc,r.sc,racute.sc,rcaron.sc,rcommaaccent.sc,rdotbelow.sc,germandbls.sc" k="30" />
  3398. <hkern g1="t.sc,tbar.sc,tcaron.sc,tcedilla.sc,tcommaaccent.sc,tdotbelow.sc" g2="numbersign,numbersign.lf,numbersign.osf,numbersign.sc" k="90" />
  3399. <hkern g1="t.sc,tbar.sc,tcaron.sc,tcedilla.sc,tcommaaccent.sc,tdotbelow.sc" g2="s.sc,sacute.sc,scaron.sc,scedilla.sc,scircumflex.sc,scommaaccent.sc,sdotbelow.sc" k="15" />
  3400. <hkern g1="t.sc,tbar.sc,tcaron.sc,tcedilla.sc,tcommaaccent.sc,tdotbelow.sc" g2="slash,slash.caps,slash.sc" k="60" />
  3401. <hkern g1="t.sc,tbar.sc,tcaron.sc,tcedilla.sc,tcommaaccent.sc,tdotbelow.sc" g2="t.sc,tbar.sc,tcaron.sc,tcedilla.sc,tcommaaccent.sc,tdotbelow.sc" k="45" />
  3402. <hkern g1="t.sc,tbar.sc,tcaron.sc,tcedilla.sc,tcommaaccent.sc,tdotbelow.sc" g2="u.sc,uacute.sc,ubreve.sc,ucaron.sc,ucircumflex.sc,udieresis.sc,udieresisacute.sc,udieresiscaron.sc,udieresisgrave.sc,udieresismacron.sc,udotbelow.sc,ugrave.sc,uhungarumlaut.sc,umacron.sc,uogonek.sc,uring.sc,utilde.sc" k="15" />
  3403. <hkern g1="t.sc,tbar.sc,tcaron.sc,tcedilla.sc,tcommaaccent.sc,tdotbelow.sc" g2="v.sc,w.sc,wacute.sc,wcircumflex.sc,wdieresis.sc,wgrave.sc" k="20" />
  3404. <hkern g1="t.sc,tbar.sc,tcaron.sc,tcedilla.sc,tcommaaccent.sc,tdotbelow.sc" g2="z.sc,zacute.sc,zcaron.sc,zdotaccent.sc,zdotbelow.sc" k="10" />
  3405. <hkern g1="t.sc,tbar.sc,tcaron.sc,tcedilla.sc,tcommaaccent.sc,tdotbelow.sc" g2="backslash,backslash.caps,backslash.sc" k="10" />
  3406. <hkern g1="t.sc,tbar.sc,tcaron.sc,tcedilla.sc,tcommaaccent.sc,tdotbelow.sc" g2="euro,euro.lf,euro.osf,euro.sc" k="80" />
  3407. <hkern g1="t.sc,tbar.sc,tcaron.sc,tcedilla.sc,tcommaaccent.sc,tdotbelow.sc" g2="sterling,sterling.lf,sterling.osf,sterling.sc" k="60" />
  3408. <hkern g1="t.sc,tbar.sc,tcaron.sc,tcedilla.sc,tcommaaccent.sc,tdotbelow.sc" g2="j.sc,dotlessj.sc,jacute.sc,jcircumflex.sc,nhookleft.sc" k="10" />
  3409. <hkern g1="t.sc,tbar.sc,tcaron.sc,tcedilla.sc,tcommaaccent.sc,tdotbelow.sc" g2="m.sc" k="20" />
  3410. <hkern g1="t.sc,tbar.sc,tcaron.sc,tcedilla.sc,tcommaaccent.sc,tdotbelow.sc" g2="x.sc" k="20" />
  3411. <hkern g1="u,ugrave,uacute,ucircumflex,udieresis,utilde,umacron,ubreve,uring,uhungarumlaut,uogonek,ucaron,udieresismacron,udieresisacute,udieresiscaron,udieresisgrave,udotbelow" g2="asterisk,asterisk.caps,asterisk.sc" k="30" />
  3412. <hkern g1="u,ugrave,uacute,ucircumflex,udieresis,utilde,umacron,ubreve,uring,uhungarumlaut,uogonek,ucaron,udieresismacron,udieresisacute,udieresiscaron,udieresisgrave,udotbelow" g2="bracketright,bracketright.caps,bracketright.sc" k="70" />
  3413. <hkern g1="u,ugrave,uacute,ucircumflex,udieresis,utilde,umacron,ubreve,uring,uhungarumlaut,uogonek,ucaron,udieresismacron,udieresisacute,udieresiscaron,udieresisgrave,udotbelow" g2="napostrophe,quoteright,quotedblright,quotedblright.caps,quoteright.caps" k="40" />
  3414. <hkern g1="u,ugrave,uacute,ucircumflex,udieresis,utilde,umacron,ubreve,uring,uhungarumlaut,uogonek,ucaron,udieresismacron,udieresisacute,udieresiscaron,udieresisgrave,udotbelow" g2="s,sacute,scircumflex,scedilla,scaron,scommaaccent,sdotbelow,s_h" k="5" />
  3415. <hkern g1="u,ugrave,uacute,ucircumflex,udieresis,utilde,umacron,ubreve,uring,uhungarumlaut,uogonek,ucaron,udieresismacron,udieresisacute,udieresiscaron,udieresisgrave,udotbelow" g2="f,germandbls,Germandbls,fi,fl" k="5" />
  3416. <hkern g1="u,ugrave,uacute,ucircumflex,udieresis,utilde,umacron,ubreve,uring,uhungarumlaut,uogonek,ucaron,udieresismacron,udieresisacute,udieresiscaron,udieresisgrave,udotbelow" g2="numbersign,numbersign.lf,numbersign.osf,numbersign.sc" k="40" />
  3417. <hkern g1="u,ugrave,uacute,ucircumflex,udieresis,utilde,umacron,ubreve,uring,uhungarumlaut,uogonek,ucaron,udieresismacron,udieresisacute,udieresiscaron,udieresisgrave,udotbelow" g2="slash,slash.caps,slash.sc" k="-10" />
  3418. <hkern g1="u,ugrave,uacute,ucircumflex,udieresis,utilde,umacron,ubreve,uring,uhungarumlaut,uogonek,ucaron,udieresismacron,udieresisacute,udieresiscaron,udieresisgrave,udotbelow" g2="bracketleft,bracketleft.caps,bracketleft.sc" k="-30" />
  3419. <hkern g1="u,ugrave,uacute,ucircumflex,udieresis,utilde,umacron,ubreve,uring,uhungarumlaut,uogonek,ucaron,udieresismacron,udieresisacute,udieresiscaron,udieresisgrave,udotbelow" g2="trademark" k="50" />
  3420. <hkern g1="u,ugrave,uacute,ucircumflex,udieresis,utilde,umacron,ubreve,uring,uhungarumlaut,uogonek,ucaron,udieresismacron,udieresisacute,udieresiscaron,udieresisgrave,udotbelow" g2="x" k="10" />
  3421. <hkern g1="u.sc,uacute.sc,ubreve.sc,ucaron.sc,ucircumflex.sc,udieresis.sc,udieresisacute.sc,udieresiscaron.sc,udieresisgrave.sc,udieresismacron.sc,udotbelow.sc,ugrave.sc,uhungarumlaut.sc,umacron.sc,uogonek.sc,uring.sc,utilde.sc" g2="a.sc,aacute.sc,abreve.sc,acaron.sc,acircumflex.sc,adieresis.sc,adotbelow.sc,agrave.sc,amacron.sc,aogonek.sc,aring.sc,aringacute.sc,atilde.sc,ae.sc,aeacute.sc" k="10" />
  3422. <hkern g1="u.sc,uacute.sc,ubreve.sc,ucaron.sc,ucircumflex.sc,udieresis.sc,udieresisacute.sc,udieresiscaron.sc,udieresisgrave.sc,udieresismacron.sc,udotbelow.sc,ugrave.sc,uhungarumlaut.sc,umacron.sc,uogonek.sc,uring.sc,utilde.sc" g2="c.sc,cacute.sc,ccaron.sc,ccedilla.sc,ccircumflex.sc,cdotaccent.sc,schwa.sc,g.sc,gacute.sc,gbreve.sc,gcaron.sc,gcircumflex.sc,gcommaaccent.sc,gdotaccent.sc,o.sc,oacute.sc,obreve.sc,ocaron.sc,ocircumflex.sc,odieresis.sc,odotbelow.sc,ograve.sc,ohungarumlaut.sc,omacron.sc,oogonek.sc,oslash.sc,oslashacute.sc,otilde.sc,oe.sc,q.sc" k="5" />
  3423. <hkern g1="u.sc,uacute.sc,ubreve.sc,ucaron.sc,ucircumflex.sc,udieresis.sc,udieresisacute.sc,udieresiscaron.sc,udieresisgrave.sc,udieresismacron.sc,udotbelow.sc,ugrave.sc,uhungarumlaut.sc,umacron.sc,uogonek.sc,uring.sc,utilde.sc" g2="numbersign,numbersign.lf,numbersign.osf,numbersign.sc" k="20" />
  3424. <hkern g1="u.sc,uacute.sc,ubreve.sc,ucaron.sc,ucircumflex.sc,udieresis.sc,udieresisacute.sc,udieresiscaron.sc,udieresisgrave.sc,udieresismacron.sc,udotbelow.sc,ugrave.sc,uhungarumlaut.sc,umacron.sc,uogonek.sc,uring.sc,utilde.sc" g2="s.sc,sacute.sc,scaron.sc,scedilla.sc,scircumflex.sc,scommaaccent.sc,sdotbelow.sc" k="5" />
  3425. <hkern g1="u.sc,uacute.sc,ubreve.sc,ucaron.sc,ucircumflex.sc,udieresis.sc,udieresisacute.sc,udieresiscaron.sc,udieresisgrave.sc,udieresismacron.sc,udotbelow.sc,ugrave.sc,uhungarumlaut.sc,umacron.sc,uogonek.sc,uring.sc,utilde.sc" g2="slash,slash.caps,slash.sc" k="20" />
  3426. <hkern g1="u.sc,uacute.sc,ubreve.sc,ucaron.sc,ucircumflex.sc,udieresis.sc,udieresisacute.sc,udieresiscaron.sc,udieresisgrave.sc,udieresismacron.sc,udotbelow.sc,ugrave.sc,uhungarumlaut.sc,umacron.sc,uogonek.sc,uring.sc,utilde.sc" g2="t.sc,tbar.sc,tcaron.sc,tcedilla.sc,tcommaaccent.sc,tdotbelow.sc" k="15" />
  3427. <hkern g1="u.sc,uacute.sc,ubreve.sc,ucaron.sc,ucircumflex.sc,udieresis.sc,udieresisacute.sc,udieresiscaron.sc,udieresisgrave.sc,udieresismacron.sc,udotbelow.sc,ugrave.sc,uhungarumlaut.sc,umacron.sc,uogonek.sc,uring.sc,utilde.sc" g2="v.sc,w.sc,wacute.sc,wcircumflex.sc,wdieresis.sc,wgrave.sc" k="5" />
  3428. <hkern g1="u.sc,uacute.sc,ubreve.sc,ucaron.sc,ucircumflex.sc,udieresis.sc,udieresisacute.sc,udieresiscaron.sc,udieresisgrave.sc,udieresismacron.sc,udotbelow.sc,ugrave.sc,uhungarumlaut.sc,umacron.sc,uogonek.sc,uring.sc,utilde.sc" g2="backslash,backslash.caps,backslash.sc" k="10" />
  3429. <hkern g1="u.sc,uacute.sc,ubreve.sc,ucaron.sc,ucircumflex.sc,udieresis.sc,udieresisacute.sc,udieresiscaron.sc,udieresisgrave.sc,udieresismacron.sc,udotbelow.sc,ugrave.sc,uhungarumlaut.sc,umacron.sc,uogonek.sc,uring.sc,utilde.sc" g2="euro,euro.lf,euro.osf,euro.sc" k="20" />
  3430. <hkern g1="u.sc,uacute.sc,ubreve.sc,ucaron.sc,ucircumflex.sc,udieresis.sc,udieresisacute.sc,udieresiscaron.sc,udieresisgrave.sc,udieresismacron.sc,udotbelow.sc,ugrave.sc,uhungarumlaut.sc,umacron.sc,uogonek.sc,uring.sc,utilde.sc" g2="m.sc" k="10" />
  3431. <hkern g1="v.sc,w.sc,wacute.sc,wcircumflex.sc,wdieresis.sc,wgrave.sc" g2="ampersand,ampersand.caps,ampersand.sc" k="20" />
  3432. <hkern g1="v.sc,w.sc,wacute.sc,wcircumflex.sc,wdieresis.sc,wgrave.sc" g2="periodcentered,bullet,periodcentered.caps,bullet.caps,periodcentered.sc,bullet.sc" k="20" />
  3433. <hkern g1="v.sc,w.sc,wacute.sc,wcircumflex.sc,wdieresis.sc,wgrave.sc" g2="a.sc,aacute.sc,abreve.sc,acaron.sc,acircumflex.sc,adieresis.sc,adotbelow.sc,agrave.sc,amacron.sc,aogonek.sc,aring.sc,aringacute.sc,atilde.sc,ae.sc,aeacute.sc" k="60" />
  3434. <hkern g1="v.sc,w.sc,wacute.sc,wcircumflex.sc,wdieresis.sc,wgrave.sc" g2="c.sc,cacute.sc,ccaron.sc,ccedilla.sc,ccircumflex.sc,cdotaccent.sc,schwa.sc,g.sc,gacute.sc,gbreve.sc,gcaron.sc,gcircumflex.sc,gcommaaccent.sc,gdotaccent.sc,o.sc,oacute.sc,obreve.sc,ocaron.sc,ocircumflex.sc,odieresis.sc,odotbelow.sc,ograve.sc,ohungarumlaut.sc,omacron.sc,oogonek.sc,oslash.sc,oslashacute.sc,otilde.sc,oe.sc,q.sc" k="5" />
  3435. <hkern g1="v.sc,w.sc,wacute.sc,wcircumflex.sc,wdieresis.sc,wgrave.sc" g2="comma,period,quotesinglbase,quotedblbase,ellipsis,quotesinglbase.caps,quotedblbase.caps,quotesinglbase.sc,quotedblbase.sc" k="30" />
  3436. <hkern g1="v.sc,w.sc,wacute.sc,wcircumflex.sc,wdieresis.sc,wgrave.sc" g2="b.sc,d.sc,eth.sc,dcaron.sc,dcroat.sc,ddotbelow.sc,e.sc,eacute.sc,ebreve.sc,ecaron.sc,ecircumflex.sc,edieresis.sc,edotaccent.sc,edotbelow.sc,egrave.sc,emacron.sc,eogonek.sc,etilde.sc,f.sc,h.sc,hbar.sc,hcircumflex.sc,hdotbelow.sc,i.sc,dotlessi.sc,iacute.sc,ibreve.sc,icaron.sc,icircumflex.sc,idieresis.sc,idotaccent.sc,idotbelow.sc,igrave.sc,ij.sc,imacron.sc,iogonek.sc,itilde.sc,k.sc,kcommaaccent.sc,kgreenlandic.sc,l.sc,lacute.sc,lcaron.sc,lcommaaccent.sc,ldot.sc,lslash.sc,n.sc,nacute.sc,ncaron.sc,ncommaaccent.sc,ndotaccent.sc,eng.sc,ntilde.sc,p.sc,thorn.sc,r.sc,racute.sc,rcaron.sc,rcommaaccent.sc,rdotbelow.sc,germandbls.sc" k="5" />
  3437. <hkern g1="v.sc,w.sc,wacute.sc,wcircumflex.sc,wdieresis.sc,wgrave.sc" g2="numbersign,numbersign.lf,numbersign.osf,numbersign.sc" k="60" />
  3438. <hkern g1="v.sc,w.sc,wacute.sc,wcircumflex.sc,wdieresis.sc,wgrave.sc" g2="slash,slash.caps,slash.sc" k="70" />
  3439. <hkern g1="v.sc,w.sc,wacute.sc,wcircumflex.sc,wdieresis.sc,wgrave.sc" g2="t.sc,tbar.sc,tcaron.sc,tcedilla.sc,tcommaaccent.sc,tdotbelow.sc" k="10" />
  3440. <hkern g1="v.sc,w.sc,wacute.sc,wcircumflex.sc,wdieresis.sc,wgrave.sc" g2="u.sc,uacute.sc,ubreve.sc,ucaron.sc,ucircumflex.sc,udieresis.sc,udieresisacute.sc,udieresiscaron.sc,udieresisgrave.sc,udieresismacron.sc,udotbelow.sc,ugrave.sc,uhungarumlaut.sc,umacron.sc,uogonek.sc,uring.sc,utilde.sc" k="5" />
  3441. <hkern g1="v.sc,w.sc,wacute.sc,wcircumflex.sc,wdieresis.sc,wgrave.sc" g2="v.sc,w.sc,wacute.sc,wcircumflex.sc,wdieresis.sc,wgrave.sc" k="15" />
  3442. <hkern g1="v.sc,w.sc,wacute.sc,wcircumflex.sc,wdieresis.sc,wgrave.sc" g2="euro,euro.lf,euro.osf,euro.sc" k="40" />
  3443. <hkern g1="v.sc,w.sc,wacute.sc,wcircumflex.sc,wdieresis.sc,wgrave.sc" g2="sterling,sterling.lf,sterling.osf,sterling.sc" k="50" />
  3444. <hkern g1="v.sc,w.sc,wacute.sc,wcircumflex.sc,wdieresis.sc,wgrave.sc" g2="m.sc" k="10" />
  3445. <hkern g1="v.sc,w.sc,wacute.sc,wcircumflex.sc,wdieresis.sc,wgrave.sc" g2="x.sc" k="5" />
  3446. <hkern g1="y,yacute,ydieresis,ycircumflex,ymacron,ygrave,ytilde" g2="c,e,o,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oslash,cacute,ccircumflex,cdotaccent,ccaron,emacron,ebreve,edotaccent,eogonek,ecaron,omacron,obreve,ohungarumlaut,oe,ocaron,oogonek,oslashacute,edotbelow,etilde,odotbelow,c_h,c_t" k="5" />
  3447. <hkern g1="y,yacute,ydieresis,ycircumflex,ymacron,ygrave,ytilde" g2="s,sacute,scircumflex,scedilla,scaron,scommaaccent,sdotbelow,s_h" k="5" />
  3448. <hkern g1="y,yacute,ydieresis,ycircumflex,ymacron,ygrave,ytilde" g2="g,gcircumflex,gbreve,gdotaccent,gcommaaccent,gcaron,gacute" k="10" />
  3449. <hkern g1="y,yacute,ydieresis,ycircumflex,ymacron,ygrave,ytilde" g2="u,ugrave,uacute,ucircumflex,udieresis,utilde,umacron,ubreve,uring,uhungarumlaut,uogonek,ucaron,udieresismacron,udieresisacute,udieresiscaron,udieresisgrave,udotbelow" k="5" />
  3450. <hkern g1="y,yacute,ydieresis,ycircumflex,ymacron,ygrave,ytilde" g2="numbersign,numbersign.lf,numbersign.osf,numbersign.sc" k="20" />
  3451. <hkern g1="y,yacute,ydieresis,ycircumflex,ymacron,ygrave,ytilde" g2="x" k="5" />
  3452. <hkern g1="y.sc,yacute.sc,ycircumflex.sc,ydieresis.sc,ygrave.sc,ymacron.sc,ytilde.sc" g2="ampersand,ampersand.caps,ampersand.sc" k="20" />
  3453. <hkern g1="y.sc,yacute.sc,ycircumflex.sc,ydieresis.sc,ygrave.sc,ymacron.sc,ytilde.sc" g2="periodcentered,bullet,periodcentered.caps,bullet.caps,periodcentered.sc,bullet.sc" k="30" />
  3454. <hkern g1="y.sc,yacute.sc,ycircumflex.sc,ydieresis.sc,ygrave.sc,ymacron.sc,ytilde.sc" g2="a.sc,aacute.sc,abreve.sc,acaron.sc,acircumflex.sc,adieresis.sc,adotbelow.sc,agrave.sc,amacron.sc,aogonek.sc,aring.sc,aringacute.sc,atilde.sc,ae.sc,aeacute.sc" k="40" />
  3455. <hkern g1="y.sc,yacute.sc,ycircumflex.sc,ydieresis.sc,ygrave.sc,ymacron.sc,ytilde.sc" g2="c.sc,cacute.sc,ccaron.sc,ccedilla.sc,ccircumflex.sc,cdotaccent.sc,schwa.sc,g.sc,gacute.sc,gbreve.sc,gcaron.sc,gcircumflex.sc,gcommaaccent.sc,gdotaccent.sc,o.sc,oacute.sc,obreve.sc,ocaron.sc,ocircumflex.sc,odieresis.sc,odotbelow.sc,ograve.sc,ohungarumlaut.sc,omacron.sc,oogonek.sc,oslash.sc,oslashacute.sc,otilde.sc,oe.sc,q.sc" k="60" />
  3456. <hkern g1="y.sc,yacute.sc,ycircumflex.sc,ydieresis.sc,ygrave.sc,ymacron.sc,ytilde.sc" g2="comma,period,quotesinglbase,quotedblbase,ellipsis,quotesinglbase.caps,quotedblbase.caps,quotesinglbase.sc,quotedblbase.sc" k="20" />
  3457. <hkern g1="y.sc,yacute.sc,ycircumflex.sc,ydieresis.sc,ygrave.sc,ymacron.sc,ytilde.sc" g2="y.sc,yacute.sc,ycircumflex.sc,ydieresis.sc,ygrave.sc,ymacron.sc,ytilde.sc" k="5" />
  3458. <hkern g1="y.sc,yacute.sc,ycircumflex.sc,ydieresis.sc,ygrave.sc,ymacron.sc,ytilde.sc" g2="b.sc,d.sc,eth.sc,dcaron.sc,dcroat.sc,ddotbelow.sc,e.sc,eacute.sc,ebreve.sc,ecaron.sc,ecircumflex.sc,edieresis.sc,edotaccent.sc,edotbelow.sc,egrave.sc,emacron.sc,eogonek.sc,etilde.sc,f.sc,h.sc,hbar.sc,hcircumflex.sc,hdotbelow.sc,i.sc,dotlessi.sc,iacute.sc,ibreve.sc,icaron.sc,icircumflex.sc,idieresis.sc,idotaccent.sc,idotbelow.sc,igrave.sc,ij.sc,imacron.sc,iogonek.sc,itilde.sc,k.sc,kcommaaccent.sc,kgreenlandic.sc,l.sc,lacute.sc,lcaron.sc,lcommaaccent.sc,ldot.sc,lslash.sc,n.sc,nacute.sc,ncaron.sc,ncommaaccent.sc,ndotaccent.sc,eng.sc,ntilde.sc,p.sc,thorn.sc,r.sc,racute.sc,rcaron.sc,rcommaaccent.sc,rdotbelow.sc,germandbls.sc" k="5" />
  3459. <hkern g1="y.sc,yacute.sc,ycircumflex.sc,ydieresis.sc,ygrave.sc,ymacron.sc,ytilde.sc" g2="numbersign,numbersign.lf,numbersign.osf,numbersign.sc" k="60" />
  3460. <hkern g1="y.sc,yacute.sc,ycircumflex.sc,ydieresis.sc,ygrave.sc,ymacron.sc,ytilde.sc" g2="s.sc,sacute.sc,scaron.sc,scedilla.sc,scircumflex.sc,scommaaccent.sc,sdotbelow.sc" k="5" />
  3461. <hkern g1="y.sc,yacute.sc,ycircumflex.sc,ydieresis.sc,ygrave.sc,ymacron.sc,ytilde.sc" g2="slash,slash.caps,slash.sc" k="50" />
  3462. <hkern g1="y.sc,yacute.sc,ycircumflex.sc,ydieresis.sc,ygrave.sc,ymacron.sc,ytilde.sc" g2="t.sc,tbar.sc,tcaron.sc,tcedilla.sc,tcommaaccent.sc,tdotbelow.sc" k="20" />
  3463. <hkern g1="y.sc,yacute.sc,ycircumflex.sc,ydieresis.sc,ygrave.sc,ymacron.sc,ytilde.sc" g2="z.sc,zacute.sc,zcaron.sc,zdotaccent.sc,zdotbelow.sc" k="5" />
  3464. <hkern g1="y.sc,yacute.sc,ycircumflex.sc,ydieresis.sc,ygrave.sc,ymacron.sc,ytilde.sc" g2="euro,euro.lf,euro.osf,euro.sc" k="40" />
  3465. <hkern g1="y.sc,yacute.sc,ycircumflex.sc,ydieresis.sc,ygrave.sc,ymacron.sc,ytilde.sc" g2="sterling,sterling.lf,sterling.osf,sterling.sc" k="40" />
  3466. <hkern g1="y.sc,yacute.sc,ycircumflex.sc,ydieresis.sc,ygrave.sc,ymacron.sc,ytilde.sc" g2="x.sc" k="5" />
  3467. <hkern g1="z,zacute,zdotaccent,zcaron,zdotbelow" g2="a,d,q,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,amacron,abreve,aogonek,dcaron,dcroat,acaron,aringacute,aeacute,ddotbelow,adotbelow" k="15" />
  3468. <hkern g1="z,zacute,zdotaccent,zcaron,zdotbelow" g2="c,e,o,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oslash,cacute,ccircumflex,cdotaccent,ccaron,emacron,ebreve,edotaccent,eogonek,ecaron,omacron,obreve,ohungarumlaut,oe,ocaron,oogonek,oslashacute,edotbelow,etilde,odotbelow,c_h,c_t" k="15" />
  3469. <hkern g1="z,zacute,zdotaccent,zcaron,zdotbelow" g2="s,sacute,scircumflex,scedilla,scaron,scommaaccent,sdotbelow,s_h" k="5" />
  3470. <hkern g1="z,zacute,zdotaccent,zcaron,zdotbelow" g2="g,gcircumflex,gbreve,gdotaccent,gcommaaccent,gcaron,gacute" k="10" />
  3471. <hkern g1="z,zacute,zdotaccent,zcaron,zdotbelow" g2="numbersign,numbersign.lf,numbersign.osf,numbersign.sc" k="20" />
  3472. <hkern g1="z,zacute,zdotaccent,zcaron,zdotbelow" g2="paragraph" k="40" />
  3473. <hkern g1="zero,six,nine,zero.lf,six.lf,nine.lf,zero.osf,six.osf,nine.osf,zero.sc,six.sc,nine.sc" g2="ampersand,ampersand.caps,ampersand.sc" k="10" />
  3474. <hkern g1="zero,six,nine,zero.lf,six.lf,nine.lf,zero.osf,six.osf,nine.osf,zero.sc,six.sc,nine.sc" g2="asterisk,asterisk.caps,asterisk.sc" k="40" />
  3475. <hkern g1="zero,six,nine,zero.lf,six.lf,nine.lf,zero.osf,six.osf,nine.osf,zero.sc,six.sc,nine.sc" g2="periodcentered,bullet,periodcentered.caps,bullet.caps,periodcentered.sc,bullet.sc" k="20" />
  3476. <hkern g1="zero,six,nine,zero.lf,six.lf,nine.lf,zero.osf,six.osf,nine.osf,zero.sc,six.sc,nine.sc" g2="hyphen,endash,emdash,hyphen.caps,endash.caps,emdash.caps,hyphen.sc,endash.sc,emdash.sc" k="-10" />
  3477. <hkern g1="zero,six,nine,zero.lf,six.lf,nine.lf,zero.osf,six.osf,nine.osf,zero.sc,six.sc,nine.sc" g2="comma,period,quotesinglbase,quotedblbase,ellipsis,quotesinglbase.caps,quotedblbase.caps,quotesinglbase.sc,quotedblbase.sc" k="20" />
  3478. <hkern g1="zero,six,nine,zero.lf,six.lf,nine.lf,zero.osf,six.osf,nine.osf,zero.sc,six.sc,nine.sc" g2="numbersign,numbersign.lf,numbersign.osf,numbersign.sc" k="60" />
  3479. <hkern g1="zero,six,nine,zero.lf,six.lf,nine.lf,zero.osf,six.osf,nine.osf,zero.sc,six.sc,nine.sc" g2="slash,slash.caps,slash.sc" k="40" />
  3480. <hkern g1="zero,six,nine,zero.lf,six.lf,nine.lf,zero.osf,six.osf,nine.osf,zero.sc,six.sc,nine.sc" g2="seven,seven.lf,seven.osf,seven.sc" k="30" />
  3481. <hkern g1="zero,six,nine,zero.lf,six.lf,nine.lf,zero.osf,six.osf,nine.osf,zero.sc,six.sc,nine.sc" g2="backslash,backslash.caps,backslash.sc" k="50" />
  3482. <hkern g1="zero,six,nine,zero.lf,six.lf,nine.lf,zero.osf,six.osf,nine.osf,zero.sc,six.sc,nine.sc" g2="euro,euro.lf,euro.osf,euro.sc" k="50" />
  3483. <hkern g1="zero,six,nine,zero.lf,six.lf,nine.lf,zero.osf,six.osf,nine.osf,zero.sc,six.sc,nine.sc" g2="percent,perthousand,percent.osf,perthousand.osf,percent.sc,perthousand.sc" k="30" />
  3484. <hkern g1="zero,six,nine,zero.lf,six.lf,nine.lf,zero.osf,six.osf,nine.osf,zero.sc,six.sc,nine.sc" g2="zero,six,nine,zero.lf,six.lf,nine.lf,zero.osf,six.osf,nine.osf,zero.sc,six.sc,nine.sc" k="35" />
  3485. <hkern g1="zero,six,nine,zero.lf,six.lf,nine.lf,zero.osf,six.osf,nine.osf,zero.sc,six.sc,nine.sc" g2="one,one.lf,one.osf,one.sc" k="-35" />
  3486. <hkern g1="zero,six,nine,zero.lf,six.lf,nine.lf,zero.osf,six.osf,nine.osf,zero.sc,six.sc,nine.sc" g2="four,four.lf,four.osf,four.sc" k="30" />
  3487. <hkern g1="zero,six,nine,zero.lf,six.lf,nine.lf,zero.osf,six.osf,nine.osf,zero.sc,six.sc,nine.sc" g2="two,two.lf,two.osf,two.sc" k="20" />
  3488. <hkern g1="zero,six,nine,zero.lf,six.lf,nine.lf,zero.osf,six.osf,nine.osf,zero.sc,six.sc,nine.sc" g2="five,five.lf,five.osf,five.sc" k="10" />
  3489. <hkern g1="zero,six,nine,zero.lf,six.lf,nine.lf,zero.osf,six.osf,nine.osf,zero.sc,six.sc,nine.sc" g2="yen,yen.lf,yen.osf,yen.sc" k="20" />
  3490. <hkern g1="zero,six,nine,zero.lf,six.lf,nine.lf,zero.osf,six.osf,nine.osf,zero.sc,six.sc,nine.sc" g2="three,three.lf,three.osf,three.sc" k="30" />
  3491. <hkern g1="one,one.lf,one.osf,one.sc" g2="asterisk,asterisk.caps,asterisk.sc" k="30" />
  3492. <hkern g1="one,one.lf,one.osf,one.sc" g2="periodcentered,bullet,periodcentered.caps,bullet.caps,periodcentered.sc,bullet.sc" k="30" />
  3493. <hkern g1="one,one.lf,one.osf,one.sc" g2="hyphen,endash,emdash,hyphen.caps,endash.caps,emdash.caps,hyphen.sc,endash.sc,emdash.sc" k="-10" />
  3494. <hkern g1="one,one.lf,one.osf,one.sc" g2="numbersign,numbersign.lf,numbersign.osf,numbersign.sc" k="30" />
  3495. <hkern g1="one,one.lf,one.osf,one.sc" g2="slash,slash.caps,slash.sc" k="30" />
  3496. <hkern g1="one,one.lf,one.osf,one.sc" g2="seven,seven.lf,seven.osf,seven.sc" k="-20" />
  3497. <hkern g1="one,one.lf,one.osf,one.sc" g2="backslash,backslash.caps,backslash.sc" k="50" />
  3498. <hkern g1="one,one.lf,one.osf,one.sc" g2="euro,euro.lf,euro.osf,euro.sc" k="50" />
  3499. <hkern g1="one,one.lf,one.osf,one.sc" g2="one,one.lf,one.osf,one.sc" k="-80" />
  3500. <hkern g1="one,one.lf,one.osf,one.sc" g2="eight,eight.lf,eight.osf,eight.sc" k="-50" />
  3501. <hkern g1="one,one.lf,one.osf,one.sc" g2="two,two.lf,two.osf,two.sc" k="-20" />
  3502. <hkern g1="one,one.lf,one.osf,one.sc" g2="five,five.lf,five.osf,five.sc" k="-10" />
  3503. <hkern g1="two,two.lf,two.osf,two.sc" g2="asterisk,asterisk.caps,asterisk.sc" k="20" />
  3504. <hkern g1="two,two.lf,two.osf,two.sc" g2="periodcentered,bullet,periodcentered.caps,bullet.caps,periodcentered.sc,bullet.sc" k="10" />
  3505. <hkern g1="two,two.lf,two.osf,two.sc" g2="numbersign,numbersign.lf,numbersign.osf,numbersign.sc" k="80" />
  3506. <hkern g1="two,two.lf,two.osf,two.sc" g2="slash,slash.caps,slash.sc" k="30" />
  3507. <hkern g1="two,two.lf,two.osf,two.sc" g2="seven,seven.lf,seven.osf,seven.sc" k="10" />
  3508. <hkern g1="two,two.lf,two.osf,two.sc" g2="backslash,backslash.caps,backslash.sc" k="30" />
  3509. <hkern g1="two,two.lf,two.osf,two.sc" g2="euro,euro.lf,euro.osf,euro.sc" k="50" />
  3510. <hkern g1="two,two.lf,two.osf,two.sc" g2="parenright,parenright.caps,parenright.sc" k="-10" />
  3511. <hkern g1="two,two.lf,two.osf,two.sc" g2="percent,perthousand,percent.osf,perthousand.osf,percent.sc,perthousand.sc" k="30" />
  3512. <hkern g1="two,two.lf,two.osf,two.sc" g2="zero,six,nine,zero.lf,six.lf,nine.lf,zero.osf,six.osf,nine.osf,zero.sc,six.sc,nine.sc" k="10" />
  3513. <hkern g1="two,two.lf,two.osf,two.sc" g2="one,one.lf,one.osf,one.sc" k="-50" />
  3514. <hkern g1="two,two.lf,two.osf,two.sc" g2="four,four.lf,four.osf,four.sc" k="40" />
  3515. <hkern g1="two,two.lf,two.osf,two.sc" g2="eight,eight.lf,eight.osf,eight.sc" k="-20" />
  3516. <hkern g1="two,two.lf,two.osf,two.sc" g2="two,two.lf,two.osf,two.sc" k="-20" />
  3517. <hkern g1="two,two.lf,two.osf,two.sc" g2="five,five.lf,five.osf,five.sc" k="-10" />
  3518. <hkern g1="two,two.lf,two.osf,two.sc" g2="yen,yen.lf,yen.osf,yen.sc" k="10" />
  3519. <hkern g1="four,four.lf,four.osf,four.sc" g2="asterisk,asterisk.caps,asterisk.sc" k="70" />
  3520. <hkern g1="four,four.lf,four.osf,four.sc" g2="quotedbl,quotesingle,quotedbl.caps,quotesingle.caps,quotedbl.sc,quotesingle.sc" k="10" />
  3521. <hkern g1="four,four.lf,four.osf,four.sc" g2="periodcentered,bullet,periodcentered.caps,bullet.caps,periodcentered.sc,bullet.sc" k="10" />
  3522. <hkern g1="four,four.lf,four.osf,four.sc" g2="numbersign,numbersign.lf,numbersign.osf,numbersign.sc" k="50" />
  3523. <hkern g1="four,four.lf,four.osf,four.sc" g2="seven,seven.lf,seven.osf,seven.sc" k="25" />
  3524. <hkern g1="four,four.lf,four.osf,four.sc" g2="backslash,backslash.caps,backslash.sc" k="30" />
  3525. <hkern g1="four,four.lf,four.osf,four.sc" g2="euro,euro.lf,euro.osf,euro.sc" k="30" />
  3526. <hkern g1="four,four.lf,four.osf,four.sc" g2="parenright,parenright.caps,parenright.sc" k="-30" />
  3527. <hkern g1="four,four.lf,four.osf,four.sc" g2="percent,perthousand,percent.osf,perthousand.osf,percent.sc,perthousand.sc" k="20" />
  3528. <hkern g1="four,four.lf,four.osf,four.sc" g2="zero,six,nine,zero.lf,six.lf,nine.lf,zero.osf,six.osf,nine.osf,zero.sc,six.sc,nine.sc" k="10" />
  3529. <hkern g1="four,four.lf,four.osf,four.sc" g2="one,one.lf,one.osf,one.sc" k="-50" />
  3530. <hkern g1="four,four.lf,four.osf,four.sc" g2="four,four.lf,four.osf,four.sc" k="-20" />
  3531. <hkern g1="four,four.lf,four.osf,four.sc" g2="eight,eight.lf,eight.osf,eight.sc" k="-50" />
  3532. <hkern g1="four,four.lf,four.osf,four.sc" g2="two,two.lf,two.osf,two.sc" k="10" />
  3533. <hkern g1="four,four.lf,four.osf,four.sc" g2="five,five.lf,five.osf,five.sc" k="-10" />
  3534. <hkern g1="four,four.lf,four.osf,four.sc" g2="three,three.lf,three.osf,three.sc" k="20" />
  3535. <hkern g1="five,five.lf,five.osf,five.sc" g2="seven,seven.lf,seven.osf,seven.sc" k="20" />
  3536. <hkern g1="five,five.lf,five.osf,five.sc" g2="zero,six,nine,zero.lf,six.lf,nine.lf,zero.osf,six.osf,nine.osf,zero.sc,six.sc,nine.sc" k="30" />
  3537. <hkern g1="five,five.lf,five.osf,five.sc" g2="one,one.lf,one.osf,one.sc" k="-20" />
  3538. <hkern g1="five,five.lf,five.osf,five.sc" g2="four,four.lf,four.osf,four.sc" k="20" />
  3539. <hkern g1="five,five.lf,five.osf,five.sc" g2="eight,eight.lf,eight.osf,eight.sc" k="-30" />
  3540. <hkern g1="five,five.lf,five.osf,five.sc" g2="three,three.lf,three.osf,three.sc" k="15" />
  3541. <hkern g1="seven,seven.lf,seven.osf,seven.sc" g2="ampersand,ampersand.caps,ampersand.sc" k="20" />
  3542. <hkern g1="seven,seven.lf,seven.osf,seven.sc" g2="periodcentered,bullet,periodcentered.caps,bullet.caps,periodcentered.sc,bullet.sc" k="20" />
  3543. <hkern g1="seven,seven.lf,seven.osf,seven.sc" g2="hyphen,endash,emdash,hyphen.caps,endash.caps,emdash.caps,hyphen.sc,endash.sc,emdash.sc" k="10" />
  3544. <hkern g1="seven,seven.lf,seven.osf,seven.sc" g2="comma,period,quotesinglbase,quotedblbase,ellipsis,quotesinglbase.caps,quotedblbase.caps,quotesinglbase.sc,quotedblbase.sc" k="40" />
  3545. <hkern g1="seven,seven.lf,seven.osf,seven.sc" g2="numbersign,numbersign.lf,numbersign.osf,numbersign.sc" k="110" />
  3546. <hkern g1="seven,seven.lf,seven.osf,seven.sc" g2="slash,slash.caps,slash.sc" k="80" />
  3547. <hkern g1="seven,seven.lf,seven.osf,seven.sc" g2="seven,seven.lf,seven.osf,seven.sc" k="-10" />
  3548. <hkern g1="seven,seven.lf,seven.osf,seven.sc" g2="euro,euro.lf,euro.osf,euro.sc" k="60" />
  3549. <hkern g1="seven,seven.lf,seven.osf,seven.sc" g2="sterling,sterling.lf,sterling.osf,sterling.sc" k="60" />
  3550. <hkern g1="seven,seven.lf,seven.osf,seven.sc" g2="zero,six,nine,zero.lf,six.lf,nine.lf,zero.osf,six.osf,nine.osf,zero.sc,six.sc,nine.sc" k="20" />
  3551. <hkern g1="seven,seven.lf,seven.osf,seven.sc" g2="one,one.lf,one.osf,one.sc" k="-80" />
  3552. <hkern g1="seven,seven.lf,seven.osf,seven.sc" g2="four,four.lf,four.osf,four.sc" k="40" />
  3553. <hkern g1="seven,seven.lf,seven.osf,seven.sc" g2="eight,eight.lf,eight.osf,eight.sc" k="-20" />
  3554. <hkern g1="seven,seven.lf,seven.osf,seven.sc" g2="two,two.lf,two.osf,two.sc" k="-25" />
  3555. <hkern g1="seven,seven.lf,seven.osf,seven.sc" g2="three,three.lf,three.osf,three.sc" k="-5" />
  3556. <hkern g1="three,eight,three.lf,eight.lf,three.osf,eight.osf,three.sc,eight.sc" g2="ampersand,ampersand.caps,ampersand.sc" k="10" />
  3557. <hkern g1="three,eight,three.lf,eight.lf,three.osf,eight.osf,three.sc,eight.sc" g2="asterisk,asterisk.caps,asterisk.sc" k="30" />
  3558. <hkern g1="three,eight,three.lf,eight.lf,three.osf,eight.osf,three.sc,eight.sc" g2="periodcentered,bullet,periodcentered.caps,bullet.caps,periodcentered.sc,bullet.sc" k="30" />
  3559. <hkern g1="three,eight,three.lf,eight.lf,three.osf,eight.osf,three.sc,eight.sc" g2="hyphen,endash,emdash,hyphen.caps,endash.caps,emdash.caps,hyphen.sc,endash.sc,emdash.sc" k="-10" />
  3560. <hkern g1="three,eight,three.lf,eight.lf,three.osf,eight.osf,three.sc,eight.sc" g2="numbersign,numbersign.lf,numbersign.osf,numbersign.sc" k="60" />
  3561. <hkern g1="three,eight,three.lf,eight.lf,three.osf,eight.osf,three.sc,eight.sc" g2="slash,slash.caps,slash.sc" k="30" />
  3562. <hkern g1="three,eight,three.lf,eight.lf,three.osf,eight.osf,three.sc,eight.sc" g2="backslash,backslash.caps,backslash.sc" k="30" />
  3563. <hkern g1="three,eight,three.lf,eight.lf,three.osf,eight.osf,three.sc,eight.sc" g2="euro,euro.lf,euro.osf,euro.sc" k="60" />
  3564. <hkern g1="three,eight,three.lf,eight.lf,three.osf,eight.osf,three.sc,eight.sc" g2="parenright,parenright.caps,parenright.sc" k="-30" />
  3565. <hkern g1="three,eight,three.lf,eight.lf,three.osf,eight.osf,three.sc,eight.sc" g2="percent,perthousand,percent.osf,perthousand.osf,percent.sc,perthousand.sc" k="60" />
  3566. <hkern g1="three,eight,three.lf,eight.lf,three.osf,eight.osf,three.sc,eight.sc" g2="sterling,sterling.lf,sterling.osf,sterling.sc" k="10" />
  3567. <hkern g1="three,eight,three.lf,eight.lf,three.osf,eight.osf,three.sc,eight.sc" g2="zero,six,nine,zero.lf,six.lf,nine.lf,zero.osf,six.osf,nine.osf,zero.sc,six.sc,nine.sc" k="10" />
  3568. <hkern g1="three,eight,three.lf,eight.lf,three.osf,eight.osf,three.sc,eight.sc" g2="one,one.lf,one.osf,one.sc" k="-55" />
  3569. <hkern g1="three,eight,three.lf,eight.lf,three.osf,eight.osf,three.sc,eight.sc" g2="four,four.lf,four.osf,four.sc" k="-5" />
  3570. <hkern g1="three,eight,three.lf,eight.lf,three.osf,eight.osf,three.sc,eight.sc" g2="eight,eight.lf,eight.osf,eight.sc" k="-80" />
  3571. <hkern g1="three,eight,three.lf,eight.lf,three.osf,eight.osf,three.sc,eight.sc" g2="cent,cent.lf,cent.osf,cent.sc" k="10" />
  3572. <hkern g1="three,eight,three.lf,eight.lf,three.osf,eight.osf,three.sc,eight.sc" g2="two,two.lf,two.osf,two.sc" k="-10" />
  3573. <hkern g1="three,eight,three.lf,eight.lf,three.osf,eight.osf,three.sc,eight.sc" g2="five,five.lf,five.osf,five.sc" k="-5" />
  3574. <hkern g1="three,eight,three.lf,eight.lf,three.osf,eight.osf,three.sc,eight.sc" g2="yen,yen.lf,yen.osf,yen.sc" k="30" />
  3575. <hkern g1="three,eight,three.lf,eight.lf,three.osf,eight.osf,three.sc,eight.sc" g2="three,three.lf,three.osf,three.sc" k="-25" />
  3576. <hkern g1="G,Gcircumflex,Gbreve,Gdotaccent,Gcommaaccent,Gcaron,Gacute" g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,Cacute,Ccircumflex,Cdotaccent,Ccaron,Gcircumflex,Gbreve,Gdotaccent,Gcommaaccent,Omacron,Obreve,Ohungarumlaut,OE,Ocaron,Gcaron,Oogonek,Gacute,Oslashacute,Odotbelow" k="5" />
  3577. <hkern g1="G,Gcircumflex,Gbreve,Gdotaccent,Gcommaaccent,Gcaron,Gacute" g2="U,Ugrave,Uacute,Ucircumflex,Udieresis,Utilde,Umacron,Ubreve,Uring,Uhungarumlaut,Uogonek,Ucaron,Udieresismacron,Udieresisacute,Udieresiscaron,Udieresisgrave,Udotbelow" k="5" />
  3578. <hkern g1="G,Gcircumflex,Gbreve,Gdotaccent,Gcommaaccent,Gcaron,Gacute" g2="V,W,Wcircumflex,Wgrave,Wacute,Wdieresis" k="10" />
  3579. <hkern g1="G,Gcircumflex,Gbreve,Gdotaccent,Gcommaaccent,Gcaron,Gacute" g2="asterisk,asterisk.caps,asterisk.sc" k="40" />
  3580. <hkern g1="G,Gcircumflex,Gbreve,Gdotaccent,Gcommaaccent,Gcaron,Gacute" g2="braceright,braceright.caps,braceright.sc" k="-10" />
  3581. <hkern g1="G,Gcircumflex,Gbreve,Gdotaccent,Gcommaaccent,Gcaron,Gacute" g2="bracketright,bracketright.caps,bracketright.sc" k="70" />
  3582. <hkern g1="G,Gcircumflex,Gbreve,Gdotaccent,Gcommaaccent,Gcaron,Gacute" g2="question,question.caps,question.sc" k="10" />
  3583. <hkern g1="G,Gcircumflex,Gbreve,Gdotaccent,Gcommaaccent,Gcaron,Gacute" g2="quotedbl,quotesingle,quotedbl.caps,quotesingle.caps,quotedbl.sc,quotesingle.sc" k="20" />
  3584. <hkern g1="G,Gcircumflex,Gbreve,Gdotaccent,Gcommaaccent,Gcaron,Gacute" g2="quoteleft,quotedblleft,quotedblleft.caps,quoteleft.caps" k="40" />
  3585. <hkern g1="G,Gcircumflex,Gbreve,Gdotaccent,Gcommaaccent,Gcaron,Gacute" g2="napostrophe,quoteright,quotedblright,quotedblright.caps,quoteright.caps" k="-10" />
  3586. <hkern g1="G,Gcircumflex,Gbreve,Gdotaccent,Gcommaaccent,Gcaron,Gacute" g2="backslash,backslash.caps,backslash.sc" k="-40" />
  3587. <hkern g1="G,Gcircumflex,Gbreve,Gdotaccent,Gcommaaccent,Gcaron,Gacute" g2="parenright,parenright.caps,parenright.sc" k="-30" />
  3588. <hkern g1="J,IJ,Jcircumflex,Jacute,IJacute" g2="Y,Yacute,Ycircumflex,Ydieresis,Ymacron,Ygrave,Ytilde" k="5" />
  3589. <hkern g1="J,IJ,Jcircumflex,Jacute,IJacute" g2="bracketright,bracketright.caps,bracketright.sc" k="60" />
  3590. <hkern g1="J,IJ,Jcircumflex,Jacute,IJacute" g2="question,question.caps,question.sc" k="10" />
  3591. <hkern g1="J,IJ,Jcircumflex,Jacute,IJacute" g2="napostrophe,quoteright,quotedblright,quotedblright.caps,quoteright.caps" k="40" />
  3592. <hkern g1="J,IJ,Jcircumflex,Jacute,IJacute" g2="S,Sacute,Scircumflex,Scedilla,Scaron,Scommaaccent,Sdotbelow" k="5" />
  3593. <hkern g1="J,IJ,Jcircumflex,Jacute,IJacute" g2="exclam,exclamdown,exclam.caps,exclamdown.caps,exclam.sc,exclamdown.sc" k="30" />
  3594. <hkern g1="S,Sacute,Scircumflex,Scedilla,Scaron,Scommaaccent,Sdotbelow,Germandbls" g2="asterisk,asterisk.caps,asterisk.sc" k="10" />
  3595. <hkern g1="S,Sacute,Scircumflex,Scedilla,Scaron,Scommaaccent,Sdotbelow,Germandbls" g2="bracketright,bracketright.caps,bracketright.sc" k="40" />
  3596. <hkern g1="S,Sacute,Scircumflex,Scedilla,Scaron,Scommaaccent,Sdotbelow,Germandbls" g2="periodcentered,bullet,periodcentered.caps,bullet.caps,periodcentered.sc,bullet.sc" k="10" />
  3597. <hkern g1="S,Sacute,Scircumflex,Scedilla,Scaron,Scommaaccent,Sdotbelow,Germandbls" g2="parenright,parenright.caps,parenright.sc" k="-20" />
  3598. <hkern g1="ampersand,ampersand.caps,ampersand.sc" g2="question,question.caps,question.sc" k="20" />
  3599. <hkern g1="ampersand,ampersand.caps,ampersand.sc" g2="slash,slash.caps,slash.sc" k="20" />
  3600. <hkern g1="ampersand,ampersand.caps,ampersand.sc" g2="backslash,backslash.caps,backslash.sc" k="40" />
  3601. <hkern g1="braceleft,braceleft.caps,braceleft.sc" g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE,Amacron,Abreve,Aogonek,Acaron,Aringacute,AEacute,Adotbelow" k="10" />
  3602. <hkern g1="braceleft,braceleft.caps,braceleft.sc" g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,Cacute,Ccircumflex,Cdotaccent,Ccaron,Gcircumflex,Gbreve,Gdotaccent,Gcommaaccent,Omacron,Obreve,Ohungarumlaut,OE,Ocaron,Gcaron,Oogonek,Gacute,Oslashacute,Odotbelow" k="10" />
  3603. <hkern g1="braceleft,braceleft.caps,braceleft.sc" g2="ampersand,ampersand.caps,ampersand.sc" k="10" />
  3604. <hkern g1="braceleft,braceleft.caps,braceleft.sc" g2="guillemetleft,guilsinglleft,guillemetleft.caps,guilsinglleft.caps,guillemetleft.sc,guilsinglleft.sc" k="20" />
  3605. <hkern g1="braceleft,braceleft.caps,braceleft.sc" g2="J,Jcircumflex,Nhookleft,Jacute" k="-30" />
  3606. <hkern g1="braceleft,braceleft.caps,braceleft.sc" g2="f,germandbls,Germandbls,fi,fl" k="-40" />
  3607. <hkern g1="braceleft,braceleft.caps,braceleft.sc" g2="numbersign,numbersign.lf,numbersign.osf,numbersign.sc" k="20" />
  3608. <hkern g1="braceleft,braceleft.caps,braceleft.sc" g2="slash,slash.caps,slash.sc" k="20" />
  3609. <hkern g1="braceleft,braceleft.caps,braceleft.sc" g2="seven,seven.lf,seven.osf,seven.sc" k="-20" />
  3610. <hkern g1="braceleft,braceleft.caps,braceleft.sc" g2="euro,euro.lf,euro.osf,euro.sc" k="30" />
  3611. <hkern g1="braceleft,braceleft.caps,braceleft.sc" g2="one,one.lf,one.osf,one.sc" k="-40" />
  3612. <hkern g1="braceleft,braceleft.caps,braceleft.sc" g2="eight,eight.lf,eight.osf,eight.sc" k="-20" />
  3613. <hkern g1="braceleft,braceleft.caps,braceleft.sc" g2="plus.osf,minus.osf,multiply.osf,divide.osf,equal.osf,notequal.osf,greater.osf,less.osf,greaterequal.osf,lessequal.osf,plusminus.osf,approxequal.osf,logicalnot.osf,infinity.osf" k="-10" />
  3614. <hkern g1="braceleft,braceleft.caps,braceleft.sc" g2="five,five.lf,five.osf,five.sc" k="-40" />
  3615. <hkern g1="braceright,braceright.caps,braceright.sc" g2="V,W,Wcircumflex,Wgrave,Wacute,Wdieresis" k="10" />
  3616. <hkern g1="braceright,braceright.caps,braceright.sc" g2="numbersign,numbersign.lf,numbersign.osf,numbersign.sc" k="40" />
  3617. <hkern g1="braceright,braceright.caps,braceright.sc" g2="backslash,backslash.caps,backslash.sc" k="30" />
  3618. <hkern g1="braceright,braceright.caps,braceright.sc" g2="euro,euro.lf,euro.osf,euro.sc" k="10" />
  3619. <hkern g1="bracketright,bracketright.caps,bracketright.sc" g2="S,Sacute,Scircumflex,Scedilla,Scaron,Scommaaccent,Sdotbelow" k="-20" />
  3620. <hkern g1="bracketright,bracketright.caps,bracketright.sc" g2="euro,euro.lf,euro.osf,euro.sc" k="20" />
  3621. <hkern g1="cent,cent.lf,cent.osf,cent.sc" g2="periodcentered,bullet,periodcentered.caps,bullet.caps,periodcentered.sc,bullet.sc" k="10" />
  3622. <hkern g1="cent,cent.lf,cent.osf,cent.sc" g2="numbersign,numbersign.lf,numbersign.osf,numbersign.sc" k="30" />
  3623. <hkern g1="cent,cent.lf,cent.osf,cent.sc" g2="seven,seven.lf,seven.osf,seven.sc" k="10" />
  3624. <hkern g1="cent,cent.lf,cent.osf,cent.sc" g2="zero,six,nine,zero.lf,six.lf,nine.lf,zero.osf,six.osf,nine.osf,zero.sc,six.sc,nine.sc" k="40" />
  3625. <hkern g1="cent,cent.lf,cent.osf,cent.sc" g2="one,one.lf,one.osf,one.sc" k="-20" />
  3626. <hkern g1="cent,cent.lf,cent.osf,cent.sc" g2="four,four.lf,four.osf,four.sc" k="30" />
  3627. <hkern g1="cent,cent.lf,cent.osf,cent.sc" g2="five,five.lf,five.osf,five.sc" k="10" />
  3628. <hkern g1="colon,semicolon" g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,Cacute,Ccircumflex,Cdotaccent,Ccaron,Gcircumflex,Gbreve,Gdotaccent,Gcommaaccent,Omacron,Obreve,Ohungarumlaut,OE,Ocaron,Gcaron,Oogonek,Gacute,Oslashacute,Odotbelow" k="20" />
  3629. <hkern g1="currency,currency.lf,currency.osf,currency.sc" g2="numbersign,numbersign.lf,numbersign.osf,numbersign.sc" k="30" />
  3630. <hkern g1="currency,currency.lf,currency.osf,currency.sc" g2="seven,seven.lf,seven.osf,seven.sc" k="10" />
  3631. <hkern g1="currency,currency.lf,currency.osf,currency.sc" g2="zero,six,nine,zero.lf,six.lf,nine.lf,zero.osf,six.osf,nine.osf,zero.sc,six.sc,nine.sc" k="20" />
  3632. <hkern g1="currency,currency.lf,currency.osf,currency.sc" g2="one,one.lf,one.osf,one.sc" k="-20" />
  3633. <hkern g1="currency,currency.lf,currency.osf,currency.sc" g2="four,four.lf,four.osf,four.sc" k="10" />
  3634. <hkern g1="currency,currency.lf,currency.osf,currency.sc" g2="two,two.lf,two.osf,two.sc" k="10" />
  3635. <hkern g1="currency,currency.lf,currency.osf,currency.sc" g2="five,five.lf,five.osf,five.sc" k="10" />
  3636. <hkern g1="currency,currency.lf,currency.osf,currency.sc" g2="parenleft,parenleft.caps,parenleft.sc" k="10" />
  3637. <hkern g1="dagger,daggerdbl" g2="ampersand,ampersand.caps,ampersand.sc" k="50" />
  3638. <hkern g1="dagger,daggerdbl" g2="a.sc,aacute.sc,abreve.sc,acaron.sc,acircumflex.sc,adieresis.sc,adotbelow.sc,agrave.sc,amacron.sc,aogonek.sc,aring.sc,aringacute.sc,atilde.sc,ae.sc,aeacute.sc" k="50" />
  3639. <hkern g1="dagger,daggerdbl" g2="numbersign,numbersign.lf,numbersign.osf,numbersign.sc" k="80" />
  3640. <hkern g1="dagger,daggerdbl" g2="cent,cent.lf,cent.osf,cent.sc" k="20" />
  3641. <hkern g1="dollar,dollar.lf,dollar.osf,dollar.sc" g2="zero,six,nine,zero.lf,six.lf,nine.lf,zero.osf,six.osf,nine.osf,zero.sc,six.sc,nine.sc" k="30" />
  3642. <hkern g1="dollar,dollar.lf,dollar.osf,dollar.sc" g2="one,one.lf,one.osf,one.sc" k="-30" />
  3643. <hkern g1="dollar,dollar.lf,dollar.osf,dollar.sc" g2="four,four.lf,four.osf,four.sc" k="10" />
  3644. <hkern g1="dollar,dollar.lf,dollar.osf,dollar.sc" g2="two,two.lf,two.osf,two.sc" k="10" />
  3645. <hkern g1="dollar,dollar.lf,dollar.osf,dollar.sc" g2="five,five.lf,five.osf,five.sc" k="10" />
  3646. <hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,emacron,ebreve,edotaccent,eogonek,ecaron,oe,aeacute,edotbelow,etilde" g2="asterisk,asterisk.caps,asterisk.sc" k="30" />
  3647. <hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,emacron,ebreve,edotaccent,eogonek,ecaron,oe,aeacute,edotbelow,etilde" g2="numbersign,numbersign.lf,numbersign.osf,numbersign.sc" k="20" />
  3648. <hkern g1="ae.sc,aeacute.sc,e.sc,eacute.sc,ebreve.sc,ecaron.sc,ecircumflex.sc,edieresis.sc,edotaccent.sc,edotbelow.sc,egrave.sc,emacron.sc,eogonek.sc,etilde.sc,oe.sc" g2="ampersand,ampersand.caps,ampersand.sc" k="10" />
  3649. <hkern g1="ae.sc,aeacute.sc,e.sc,eacute.sc,ebreve.sc,ecaron.sc,ecircumflex.sc,edieresis.sc,edotaccent.sc,edotbelow.sc,egrave.sc,emacron.sc,eogonek.sc,etilde.sc,oe.sc" g2="numbersign,numbersign.lf,numbersign.osf,numbersign.sc" k="40" />
  3650. <hkern g1="ae.sc,aeacute.sc,e.sc,eacute.sc,ebreve.sc,ecaron.sc,ecircumflex.sc,edieresis.sc,edotaccent.sc,edotbelow.sc,egrave.sc,emacron.sc,eogonek.sc,etilde.sc,oe.sc" g2="t.sc,tbar.sc,tcaron.sc,tcedilla.sc,tcommaaccent.sc,tdotbelow.sc" k="25" />
  3651. <hkern g1="ae.sc,aeacute.sc,e.sc,eacute.sc,ebreve.sc,ecaron.sc,ecircumflex.sc,edieresis.sc,edotaccent.sc,edotbelow.sc,egrave.sc,emacron.sc,eogonek.sc,etilde.sc,oe.sc" g2="v.sc,w.sc,wacute.sc,wcircumflex.sc,wdieresis.sc,wgrave.sc" k="50" />
  3652. <hkern g1="ae.sc,aeacute.sc,e.sc,eacute.sc,ebreve.sc,ecaron.sc,ecircumflex.sc,edieresis.sc,edotaccent.sc,edotbelow.sc,egrave.sc,emacron.sc,eogonek.sc,etilde.sc,oe.sc" g2="backslash,backslash.caps,backslash.sc" k="10" />
  3653. <hkern g1="ae.sc,aeacute.sc,e.sc,eacute.sc,ebreve.sc,ecaron.sc,ecircumflex.sc,edieresis.sc,edotaccent.sc,edotbelow.sc,egrave.sc,emacron.sc,eogonek.sc,etilde.sc,oe.sc" g2="euro,euro.lf,euro.osf,euro.sc" k="40" />
  3654. <hkern g1="euro,euro.lf,euro.osf,euro.sc" g2="periodcentered,bullet,periodcentered.caps,bullet.caps,periodcentered.sc,bullet.sc" k="20" />
  3655. <hkern g1="euro,euro.lf,euro.osf,euro.sc" g2="numbersign,numbersign.lf,numbersign.osf,numbersign.sc" k="50" />
  3656. <hkern g1="euro,euro.lf,euro.osf,euro.sc" g2="slash,slash.caps,slash.sc" k="10" />
  3657. <hkern g1="euro,euro.lf,euro.osf,euro.sc" g2="one,one.lf,one.osf,one.sc" k="-30" />
  3658. <hkern g1="florin,florin.lf,florin.osf,florin.sc" g2="ampersand,ampersand.caps,ampersand.sc" k="10" />
  3659. <hkern g1="florin,florin.lf,florin.osf,florin.sc" g2="periodcentered,bullet,periodcentered.caps,bullet.caps,periodcentered.sc,bullet.sc" k="-20" />
  3660. <hkern g1="florin,florin.lf,florin.osf,florin.sc" g2="slash,slash.caps,slash.sc" k="20" />
  3661. <hkern g1="guillemetright,guilsinglright,guillemetright.caps,guilsinglright.caps,guillemetright.sc,guilsinglright.sc" g2="Y,Yacute,Ycircumflex,Ydieresis,Ymacron,Ygrave,Ytilde" k="60" />
  3662. <hkern g1="guillemetright,guilsinglright,guillemetright.caps,guilsinglright.caps,guillemetright.sc,guilsinglright.sc" g2="asterisk,asterisk.caps,asterisk.sc" k="80" />
  3663. <hkern g1="guillemetright,guilsinglright,guillemetright.caps,guilsinglright.caps,guillemetright.sc,guilsinglright.sc" g2="braceright,braceright.caps,braceright.sc" k="20" />
  3664. <hkern g1="guillemetright,guilsinglright,guillemetright.caps,guilsinglright.caps,guillemetright.sc,guilsinglright.sc" g2="S,Sacute,Scircumflex,Scedilla,Scaron,Scommaaccent,Sdotbelow" k="50" />
  3665. <hkern g1="guillemetright,guilsinglright,guillemetright.caps,guilsinglright.caps,guillemetright.sc,guilsinglright.sc" g2="numbersign,numbersign.lf,numbersign.osf,numbersign.sc" k="50" />
  3666. <hkern g1="guillemetright,guilsinglright,guillemetright.caps,guilsinglright.caps,guillemetright.sc,guilsinglright.sc" g2="slash,slash.caps,slash.sc" k="50" />
  3667. <hkern g1="guillemetright,guilsinglright,guillemetright.caps,guilsinglright.caps,guillemetright.sc,guilsinglright.sc" g2="backslash,backslash.caps,backslash.sc" k="70" />
  3668. <hkern g1="guillemetright,guilsinglright,guillemetright.caps,guilsinglright.caps,guillemetright.sc,guilsinglright.sc" g2="parenright,parenright.caps,parenright.sc" k="50" />
  3669. <hkern g1="plus.osf,minus.osf,multiply.osf,divide.osf,equal.osf,notequal.osf,greater.osf,less.osf,greaterequal.osf,lessequal.osf,plusminus.osf,approxequal.osf,logicalnot.osf,infinity.osf" g2="numbersign,numbersign.lf,numbersign.osf,numbersign.sc" k="20" />
  3670. <hkern g1="parenright,parenright.caps,parenright.sc" g2="Y,Yacute,Ycircumflex,Ydieresis,Ymacron,Ygrave,Ytilde" k="10" />
  3671. <hkern g1="parenright,parenright.caps,parenright.sc" g2="ampersand,ampersand.caps,ampersand.sc" k="10" />
  3672. <hkern g1="parenright,parenright.caps,parenright.sc" g2="asterisk,asterisk.caps,asterisk.sc" k="80" />
  3673. <hkern g1="parenright,parenright.caps,parenright.sc" g2="quotedbl,quotesingle,quotedbl.caps,quotesingle.caps,quotedbl.sc,quotesingle.sc" k="30" />
  3674. <hkern g1="parenright,parenright.caps,parenright.sc" g2="periodcentered,bullet,periodcentered.caps,bullet.caps,periodcentered.sc,bullet.sc" k="10" />
  3675. <hkern g1="parenright,parenright.caps,parenright.sc" g2="S,Sacute,Scircumflex,Scedilla,Scaron,Scommaaccent,Sdotbelow" k="-30" />
  3676. <hkern g1="parenright,parenright.caps,parenright.sc" g2="comma,period,quotesinglbase,quotedblbase,ellipsis,quotesinglbase.caps,quotedblbase.caps,quotesinglbase.sc,quotedblbase.sc" k="10" />
  3677. <hkern g1="parenright,parenright.caps,parenright.sc" g2="b,h,k,l,thorn,hcircumflex,hbar,kcommaaccent,lacute,lcommaaccent,lcaron,ldot,lslash,hdotbelow" k="10" />
  3678. <hkern g1="parenright,parenright.caps,parenright.sc" g2="numbersign,numbersign.lf,numbersign.osf,numbersign.sc" k="40" />
  3679. <hkern g1="parenright,parenright.caps,parenright.sc" g2="slash,slash.caps,slash.sc" k="50" />
  3680. <hkern g1="parenright,parenright.caps,parenright.sc" g2="backslash,backslash.caps,backslash.sc" k="70" />
  3681. <hkern g1="parenright,parenright.caps,parenright.sc" g2="euro,euro.lf,euro.osf,euro.sc" k="40" />
  3682. <hkern g1="parenright,parenright.caps,parenright.sc" g2="plus.lf,minus.lf,multiply.lf,divide.lf,equal.lf,notequal.lf,greater.lf,less.lf,greaterequal.lf,lessequal.lf,plusminus.lf,approxequal.lf,logicalnot.lf,infinity.lf,plus.sc,minus.sc,multiply.sc,divide.sc,equal.sc,notequal.sc,greater.sc,less.sc,greaterequal.sc,lessequal.sc,plusminus.sc,approxequal.sc,logicalnot.sc,infinity.sc" k="10" />
  3683. <hkern g1="parenright,parenright.caps,parenright.sc" g2="percent,perthousand,percent.osf,perthousand.osf,percent.sc,perthousand.sc" k="50" />
  3684. <hkern g1="parenright,parenright.caps,parenright.sc" g2="sterling,sterling.lf,sterling.osf,sterling.sc" k="50" />
  3685. <hkern g1="parenright,parenright.caps,parenright.sc" g2="yen,yen.lf,yen.osf,yen.sc" k="20" />
  3686. <hkern g1="percent,perthousand,percent.osf,perthousand.osf,percent.sc,perthousand.sc" g2="asterisk,asterisk.caps,asterisk.sc" k="110" />
  3687. <hkern g1="percent,perthousand,percent.osf,perthousand.osf,percent.sc,perthousand.sc" g2="quotedbl,quotesingle,quotedbl.caps,quotesingle.caps,quotedbl.sc,quotesingle.sc" k="50" />
  3688. <hkern g1="percent,perthousand,percent.osf,perthousand.osf,percent.sc,perthousand.sc" g2="napostrophe,quoteright,quotedblright,quotedblright.caps,quoteright.caps" k="80" />
  3689. <hkern g1="percent,perthousand,percent.osf,perthousand.osf,percent.sc,perthousand.sc" g2="numbersign,numbersign.lf,numbersign.osf,numbersign.sc" k="40" />
  3690. <hkern g1="percent,perthousand,percent.osf,perthousand.osf,percent.sc,perthousand.sc" g2="t.sc,tbar.sc,tcaron.sc,tcedilla.sc,tcommaaccent.sc,tdotbelow.sc" k="20" />
  3691. <hkern g1="percent,perthousand,percent.osf,perthousand.osf,percent.sc,perthousand.sc" g2="v.sc,w.sc,wacute.sc,wcircumflex.sc,wdieresis.sc,wgrave.sc" k="30" />
  3692. <hkern g1="percent,perthousand,percent.osf,perthousand.osf,percent.sc,perthousand.sc" g2="backslash,backslash.caps,backslash.sc" k="20" />
  3693. <hkern g1="percent.lf,perthousand.lf" g2="asterisk,asterisk.caps,asterisk.sc" k="90" />
  3694. <hkern g1="percent.lf,perthousand.lf" g2="quotedbl,quotesingle,quotedbl.caps,quotesingle.caps,quotedbl.sc,quotesingle.sc" k="30" />
  3695. <hkern g1="percent.lf,perthousand.lf" g2="napostrophe,quoteright,quotedblright,quotedblright.caps,quoteright.caps" k="40" />
  3696. <hkern g1="question,question.caps,question.sc" g2="T,Tcedilla,Tcaron,Tbar,Tcommaaccent,Tdotbelow" k="10" />
  3697. <hkern g1="question,question.caps,question.sc" g2="comma,period,quotesinglbase,quotedblbase,ellipsis,quotesinglbase.caps,quotedblbase.caps,quotesinglbase.sc,quotedblbase.sc" k="10" />
  3698. <hkern g1="question,question.caps,question.sc" g2="slash,slash.caps,slash.sc" k="30" />
  3699. <hkern g1="quotedblleft.sc,quoteleft.sc" g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE,Amacron,Abreve,Aogonek,Acaron,Aringacute,AEacute,Adotbelow" k="20" />
  3700. <hkern g1="quotedblleft.sc,quoteleft.sc" g2="ampersand,ampersand.caps,ampersand.sc" k="20" />
  3701. <hkern g1="quotedblleft.sc,quoteleft.sc" g2="guillemetleft,guilsinglleft,guillemetleft.caps,guilsinglleft.caps,guillemetleft.sc,guilsinglleft.sc" k="20" />
  3702. <hkern g1="quotedblleft.sc,quoteleft.sc" g2="a.sc,aacute.sc,abreve.sc,acaron.sc,acircumflex.sc,adieresis.sc,adotbelow.sc,agrave.sc,amacron.sc,aogonek.sc,aring.sc,aringacute.sc,atilde.sc,ae.sc,aeacute.sc" k="20" />
  3703. <hkern g1="quotedblleft.sc,quoteleft.sc" g2="comma,period,quotesinglbase,quotedblbase,ellipsis,quotesinglbase.caps,quotedblbase.caps,quotesinglbase.sc,quotedblbase.sc" k="30" />
  3704. <hkern g1="quotedblleft.sc,quoteleft.sc" g2="slash,slash.caps,slash.sc" k="100" />
  3705. <hkern g1="quotedblleft.sc,quoteleft.sc" g2="zero,six,nine,zero.lf,six.lf,nine.lf,zero.osf,six.osf,nine.osf,zero.sc,six.sc,nine.sc" k="30" />
  3706. <hkern g1="quotedblleft.sc,quoteleft.sc" g2="one,one.lf,one.osf,one.sc" k="-20" />
  3707. <hkern g1="quotedblleft.sc,quoteleft.sc" g2="four,four.lf,four.osf,four.sc" k="40" />
  3708. <hkern g1="quotedblright.sc,quoteright.sc" g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE,Amacron,Abreve,Aogonek,Acaron,Aringacute,AEacute,Adotbelow" k="40" />
  3709. <hkern g1="quotedblright.sc,quoteright.sc" g2="ampersand,ampersand.caps,ampersand.sc" k="40" />
  3710. <hkern g1="quotedblright.sc,quoteright.sc" g2="periodcentered,bullet,periodcentered.caps,bullet.caps,periodcentered.sc,bullet.sc" k="10" />
  3711. <hkern g1="quotedblright.sc,quoteright.sc" g2="c.sc,cacute.sc,ccaron.sc,ccedilla.sc,ccircumflex.sc,cdotaccent.sc,schwa.sc,g.sc,gacute.sc,gbreve.sc,gcaron.sc,gcircumflex.sc,gcommaaccent.sc,gdotaccent.sc,o.sc,oacute.sc,obreve.sc,ocaron.sc,ocircumflex.sc,odieresis.sc,odotbelow.sc,ograve.sc,ohungarumlaut.sc,omacron.sc,oogonek.sc,oslash.sc,oslashacute.sc,otilde.sc,oe.sc,q.sc" k="10" />
  3712. <hkern g1="quotedblright.sc,quoteright.sc" g2="comma,period,quotesinglbase,quotedblbase,ellipsis,quotesinglbase.caps,quotedblbase.caps,quotesinglbase.sc,quotedblbase.sc" k="30" />
  3713. <hkern g1="quotedblright.sc,quoteright.sc" g2="numbersign,numbersign.lf,numbersign.osf,numbersign.sc" k="110" />
  3714. <hkern g1="quotedblright.sc,quoteright.sc" g2="slash,slash.caps,slash.sc" k="80" />
  3715. <hkern g1="quotedblright.sc,quoteright.sc" g2="euro,euro.lf,euro.osf,euro.sc" k="60" />
  3716. <hkern g1="quotedblright.sc,quoteright.sc" g2="sterling,sterling.lf,sterling.osf,sterling.sc" k="100" />
  3717. <hkern g1="sterling,sterling.lf,sterling.osf,sterling.sc" g2="periodcentered,bullet,periodcentered.caps,bullet.caps,periodcentered.sc,bullet.sc" k="30" />
  3718. <hkern g1="sterling,sterling.lf,sterling.osf,sterling.sc" g2="numbersign,numbersign.lf,numbersign.osf,numbersign.sc" k="20" />
  3719. <hkern g1="sterling,sterling.lf,sterling.osf,sterling.sc" g2="zero,six,nine,zero.lf,six.lf,nine.lf,zero.osf,six.osf,nine.osf,zero.sc,six.sc,nine.sc" k="50" />
  3720. <hkern g1="sterling,sterling.lf,sterling.osf,sterling.sc" g2="one,one.lf,one.osf,one.sc" k="-30" />
  3721. <hkern g1="sterling,sterling.lf,sterling.osf,sterling.sc" g2="four,four.lf,four.osf,four.sc" k="30" />
  3722. <hkern g1="sterling,sterling.lf,sterling.osf,sterling.sc" g2="parenleft,parenleft.caps,parenleft.sc" k="50" />
  3723. <hkern g1="v,w,wcircumflex,wgrave,wacute,wdieresis" g2="a,d,q,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,amacron,abreve,aogonek,dcaron,dcroat,acaron,aringacute,aeacute,ddotbelow,adotbelow" k="-5" />
  3724. <hkern g1="v,w,wcircumflex,wgrave,wacute,wdieresis" g2="numbersign,numbersign.lf,numbersign.osf,numbersign.sc" k="40" />
  3725. <hkern g1="yen,yen.lf,yen.osf,yen.sc" g2="c.sc,cacute.sc,ccaron.sc,ccedilla.sc,ccircumflex.sc,cdotaccent.sc,schwa.sc,g.sc,gacute.sc,gbreve.sc,gcaron.sc,gcircumflex.sc,gcommaaccent.sc,gdotaccent.sc,o.sc,oacute.sc,obreve.sc,ocaron.sc,ocircumflex.sc,odieresis.sc,odotbelow.sc,ograve.sc,ohungarumlaut.sc,omacron.sc,oogonek.sc,oslash.sc,oslashacute.sc,otilde.sc,oe.sc,q.sc" k="20" />
  3726. <hkern g1="yen,yen.lf,yen.osf,yen.sc" g2="numbersign,numbersign.lf,numbersign.osf,numbersign.sc" k="20" />
  3727. <hkern g1="yen,yen.lf,yen.osf,yen.sc" g2="one,one.lf,one.osf,one.sc" k="-40" />
  3728. <hkern g1="yen,yen.lf,yen.osf,yen.sc" g2="four,four.lf,four.osf,four.sc" k="10" />
  3729. <hkern g1="z.sc,zacute.sc,zcaron.sc,zdotaccent.sc,zdotbelow.sc" g2="ampersand,ampersand.caps,ampersand.sc" k="20" />
  3730. <hkern g1="z.sc,zacute.sc,zcaron.sc,zdotaccent.sc,zdotbelow.sc" g2="a.sc,aacute.sc,abreve.sc,acaron.sc,acircumflex.sc,adieresis.sc,adotbelow.sc,agrave.sc,amacron.sc,aogonek.sc,aring.sc,aringacute.sc,atilde.sc,ae.sc,aeacute.sc" k="15" />
  3731. <hkern g1="z.sc,zacute.sc,zcaron.sc,zdotaccent.sc,zdotbelow.sc" g2="c.sc,cacute.sc,ccaron.sc,ccedilla.sc,ccircumflex.sc,cdotaccent.sc,schwa.sc,g.sc,gacute.sc,gbreve.sc,gcaron.sc,gcircumflex.sc,gcommaaccent.sc,gdotaccent.sc,o.sc,oacute.sc,obreve.sc,ocaron.sc,ocircumflex.sc,odieresis.sc,odotbelow.sc,ograve.sc,ohungarumlaut.sc,omacron.sc,oogonek.sc,oslash.sc,oslashacute.sc,otilde.sc,oe.sc,q.sc" k="25" />
  3732. <hkern g1="z.sc,zacute.sc,zcaron.sc,zdotaccent.sc,zdotbelow.sc" g2="y.sc,yacute.sc,ycircumflex.sc,ydieresis.sc,ygrave.sc,ymacron.sc,ytilde.sc" k="5" />
  3733. <hkern g1="z.sc,zacute.sc,zcaron.sc,zdotaccent.sc,zdotbelow.sc" g2="b.sc,d.sc,eth.sc,dcaron.sc,dcroat.sc,ddotbelow.sc,e.sc,eacute.sc,ebreve.sc,ecaron.sc,ecircumflex.sc,edieresis.sc,edotaccent.sc,edotbelow.sc,egrave.sc,emacron.sc,eogonek.sc,etilde.sc,f.sc,h.sc,hbar.sc,hcircumflex.sc,hdotbelow.sc,i.sc,dotlessi.sc,iacute.sc,ibreve.sc,icaron.sc,icircumflex.sc,idieresis.sc,idotaccent.sc,idotbelow.sc,igrave.sc,ij.sc,imacron.sc,iogonek.sc,itilde.sc,k.sc,kcommaaccent.sc,kgreenlandic.sc,l.sc,lacute.sc,lcaron.sc,lcommaaccent.sc,ldot.sc,lslash.sc,n.sc,nacute.sc,ncaron.sc,ncommaaccent.sc,ndotaccent.sc,eng.sc,ntilde.sc,p.sc,thorn.sc,r.sc,racute.sc,rcaron.sc,rcommaaccent.sc,rdotbelow.sc,germandbls.sc" k="5" />
  3734. <hkern g1="z.sc,zacute.sc,zcaron.sc,zdotaccent.sc,zdotbelow.sc" g2="numbersign,numbersign.lf,numbersign.osf,numbersign.sc" k="40" />
  3735. <hkern g1="z.sc,zacute.sc,zcaron.sc,zdotaccent.sc,zdotbelow.sc" g2="slash,slash.caps,slash.sc" k="20" />
  3736. <hkern g1="z.sc,zacute.sc,zcaron.sc,zdotaccent.sc,zdotbelow.sc" g2="t.sc,tbar.sc,tcaron.sc,tcedilla.sc,tcommaaccent.sc,tdotbelow.sc" k="10" />
  3737. <hkern g1="z.sc,zacute.sc,zcaron.sc,zdotaccent.sc,zdotbelow.sc" g2="u.sc,uacute.sc,ubreve.sc,ucaron.sc,ucircumflex.sc,udieresis.sc,udieresisacute.sc,udieresiscaron.sc,udieresisgrave.sc,udieresismacron.sc,udotbelow.sc,ugrave.sc,uhungarumlaut.sc,umacron.sc,uogonek.sc,uring.sc,utilde.sc" k="10" />
  3738. <hkern g1="z.sc,zacute.sc,zcaron.sc,zdotaccent.sc,zdotbelow.sc" g2="z.sc,zacute.sc,zcaron.sc,zdotaccent.sc,zdotbelow.sc" k="25" />
  3739. <hkern g1="z.sc,zacute.sc,zcaron.sc,zdotaccent.sc,zdotbelow.sc" g2="euro,euro.lf,euro.osf,euro.sc" k="30" />
  3740. </font>
  3741. </defs></svg>