2
0

metrics.js 62 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054
  1. /**
  2. * @licstart The following is the entire license notice for the
  3. * JavaScript code in this page
  4. *
  5. * Copyright 2022 Mozilla Foundation
  6. *
  7. * Licensed under the Apache License, Version 2.0 (the "License");
  8. * you may not use this file except in compliance with the License.
  9. * You may obtain a copy of the License at
  10. *
  11. * http://www.apache.org/licenses/LICENSE-2.0
  12. *
  13. * Unless required by applicable law or agreed to in writing, software
  14. * distributed under the License is distributed on an "AS IS" BASIS,
  15. * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  16. * See the License for the specific language governing permissions and
  17. * limitations under the License.
  18. *
  19. * @licend The above is the entire license notice for the
  20. * JavaScript code in this page
  21. */
  22. "use strict";
  23. Object.defineProperty(exports, "__esModule", {
  24. value: true
  25. });
  26. exports.getMetrics = exports.getFontBasicMetrics = void 0;
  27. var _core_utils = require("./core_utils.js");
  28. const getMetrics = (0, _core_utils.getLookupTableFactory)(function (t) {
  29. t.Courier = 600;
  30. t["Courier-Bold"] = 600;
  31. t["Courier-BoldOblique"] = 600;
  32. t["Courier-Oblique"] = 600;
  33. t.Helvetica = (0, _core_utils.getLookupTableFactory)(function (t) {
  34. t.space = 278;
  35. t.exclam = 278;
  36. t.quotedbl = 355;
  37. t.numbersign = 556;
  38. t.dollar = 556;
  39. t.percent = 889;
  40. t.ampersand = 667;
  41. t.quoteright = 222;
  42. t.parenleft = 333;
  43. t.parenright = 333;
  44. t.asterisk = 389;
  45. t.plus = 584;
  46. t.comma = 278;
  47. t.hyphen = 333;
  48. t.period = 278;
  49. t.slash = 278;
  50. t.zero = 556;
  51. t.one = 556;
  52. t.two = 556;
  53. t.three = 556;
  54. t.four = 556;
  55. t.five = 556;
  56. t.six = 556;
  57. t.seven = 556;
  58. t.eight = 556;
  59. t.nine = 556;
  60. t.colon = 278;
  61. t.semicolon = 278;
  62. t.less = 584;
  63. t.equal = 584;
  64. t.greater = 584;
  65. t.question = 556;
  66. t.at = 1015;
  67. t.A = 667;
  68. t.B = 667;
  69. t.C = 722;
  70. t.D = 722;
  71. t.E = 667;
  72. t.F = 611;
  73. t.G = 778;
  74. t.H = 722;
  75. t.I = 278;
  76. t.J = 500;
  77. t.K = 667;
  78. t.L = 556;
  79. t.M = 833;
  80. t.N = 722;
  81. t.O = 778;
  82. t.P = 667;
  83. t.Q = 778;
  84. t.R = 722;
  85. t.S = 667;
  86. t.T = 611;
  87. t.U = 722;
  88. t.V = 667;
  89. t.W = 944;
  90. t.X = 667;
  91. t.Y = 667;
  92. t.Z = 611;
  93. t.bracketleft = 278;
  94. t.backslash = 278;
  95. t.bracketright = 278;
  96. t.asciicircum = 469;
  97. t.underscore = 556;
  98. t.quoteleft = 222;
  99. t.a = 556;
  100. t.b = 556;
  101. t.c = 500;
  102. t.d = 556;
  103. t.e = 556;
  104. t.f = 278;
  105. t.g = 556;
  106. t.h = 556;
  107. t.i = 222;
  108. t.j = 222;
  109. t.k = 500;
  110. t.l = 222;
  111. t.m = 833;
  112. t.n = 556;
  113. t.o = 556;
  114. t.p = 556;
  115. t.q = 556;
  116. t.r = 333;
  117. t.s = 500;
  118. t.t = 278;
  119. t.u = 556;
  120. t.v = 500;
  121. t.w = 722;
  122. t.x = 500;
  123. t.y = 500;
  124. t.z = 500;
  125. t.braceleft = 334;
  126. t.bar = 260;
  127. t.braceright = 334;
  128. t.asciitilde = 584;
  129. t.exclamdown = 333;
  130. t.cent = 556;
  131. t.sterling = 556;
  132. t.fraction = 167;
  133. t.yen = 556;
  134. t.florin = 556;
  135. t.section = 556;
  136. t.currency = 556;
  137. t.quotesingle = 191;
  138. t.quotedblleft = 333;
  139. t.guillemotleft = 556;
  140. t.guilsinglleft = 333;
  141. t.guilsinglright = 333;
  142. t.fi = 500;
  143. t.fl = 500;
  144. t.endash = 556;
  145. t.dagger = 556;
  146. t.daggerdbl = 556;
  147. t.periodcentered = 278;
  148. t.paragraph = 537;
  149. t.bullet = 350;
  150. t.quotesinglbase = 222;
  151. t.quotedblbase = 333;
  152. t.quotedblright = 333;
  153. t.guillemotright = 556;
  154. t.ellipsis = 1000;
  155. t.perthousand = 1000;
  156. t.questiondown = 611;
  157. t.grave = 333;
  158. t.acute = 333;
  159. t.circumflex = 333;
  160. t.tilde = 333;
  161. t.macron = 333;
  162. t.breve = 333;
  163. t.dotaccent = 333;
  164. t.dieresis = 333;
  165. t.ring = 333;
  166. t.cedilla = 333;
  167. t.hungarumlaut = 333;
  168. t.ogonek = 333;
  169. t.caron = 333;
  170. t.emdash = 1000;
  171. t.AE = 1000;
  172. t.ordfeminine = 370;
  173. t.Lslash = 556;
  174. t.Oslash = 778;
  175. t.OE = 1000;
  176. t.ordmasculine = 365;
  177. t.ae = 889;
  178. t.dotlessi = 278;
  179. t.lslash = 222;
  180. t.oslash = 611;
  181. t.oe = 944;
  182. t.germandbls = 611;
  183. t.Idieresis = 278;
  184. t.eacute = 556;
  185. t.abreve = 556;
  186. t.uhungarumlaut = 556;
  187. t.ecaron = 556;
  188. t.Ydieresis = 667;
  189. t.divide = 584;
  190. t.Yacute = 667;
  191. t.Acircumflex = 667;
  192. t.aacute = 556;
  193. t.Ucircumflex = 722;
  194. t.yacute = 500;
  195. t.scommaaccent = 500;
  196. t.ecircumflex = 556;
  197. t.Uring = 722;
  198. t.Udieresis = 722;
  199. t.aogonek = 556;
  200. t.Uacute = 722;
  201. t.uogonek = 556;
  202. t.Edieresis = 667;
  203. t.Dcroat = 722;
  204. t.commaaccent = 250;
  205. t.copyright = 737;
  206. t.Emacron = 667;
  207. t.ccaron = 500;
  208. t.aring = 556;
  209. t.Ncommaaccent = 722;
  210. t.lacute = 222;
  211. t.agrave = 556;
  212. t.Tcommaaccent = 611;
  213. t.Cacute = 722;
  214. t.atilde = 556;
  215. t.Edotaccent = 667;
  216. t.scaron = 500;
  217. t.scedilla = 500;
  218. t.iacute = 278;
  219. t.lozenge = 471;
  220. t.Rcaron = 722;
  221. t.Gcommaaccent = 778;
  222. t.ucircumflex = 556;
  223. t.acircumflex = 556;
  224. t.Amacron = 667;
  225. t.rcaron = 333;
  226. t.ccedilla = 500;
  227. t.Zdotaccent = 611;
  228. t.Thorn = 667;
  229. t.Omacron = 778;
  230. t.Racute = 722;
  231. t.Sacute = 667;
  232. t.dcaron = 643;
  233. t.Umacron = 722;
  234. t.uring = 556;
  235. t.threesuperior = 333;
  236. t.Ograve = 778;
  237. t.Agrave = 667;
  238. t.Abreve = 667;
  239. t.multiply = 584;
  240. t.uacute = 556;
  241. t.Tcaron = 611;
  242. t.partialdiff = 476;
  243. t.ydieresis = 500;
  244. t.Nacute = 722;
  245. t.icircumflex = 278;
  246. t.Ecircumflex = 667;
  247. t.adieresis = 556;
  248. t.edieresis = 556;
  249. t.cacute = 500;
  250. t.nacute = 556;
  251. t.umacron = 556;
  252. t.Ncaron = 722;
  253. t.Iacute = 278;
  254. t.plusminus = 584;
  255. t.brokenbar = 260;
  256. t.registered = 737;
  257. t.Gbreve = 778;
  258. t.Idotaccent = 278;
  259. t.summation = 600;
  260. t.Egrave = 667;
  261. t.racute = 333;
  262. t.omacron = 556;
  263. t.Zacute = 611;
  264. t.Zcaron = 611;
  265. t.greaterequal = 549;
  266. t.Eth = 722;
  267. t.Ccedilla = 722;
  268. t.lcommaaccent = 222;
  269. t.tcaron = 317;
  270. t.eogonek = 556;
  271. t.Uogonek = 722;
  272. t.Aacute = 667;
  273. t.Adieresis = 667;
  274. t.egrave = 556;
  275. t.zacute = 500;
  276. t.iogonek = 222;
  277. t.Oacute = 778;
  278. t.oacute = 556;
  279. t.amacron = 556;
  280. t.sacute = 500;
  281. t.idieresis = 278;
  282. t.Ocircumflex = 778;
  283. t.Ugrave = 722;
  284. t.Delta = 612;
  285. t.thorn = 556;
  286. t.twosuperior = 333;
  287. t.Odieresis = 778;
  288. t.mu = 556;
  289. t.igrave = 278;
  290. t.ohungarumlaut = 556;
  291. t.Eogonek = 667;
  292. t.dcroat = 556;
  293. t.threequarters = 834;
  294. t.Scedilla = 667;
  295. t.lcaron = 299;
  296. t.Kcommaaccent = 667;
  297. t.Lacute = 556;
  298. t.trademark = 1000;
  299. t.edotaccent = 556;
  300. t.Igrave = 278;
  301. t.Imacron = 278;
  302. t.Lcaron = 556;
  303. t.onehalf = 834;
  304. t.lessequal = 549;
  305. t.ocircumflex = 556;
  306. t.ntilde = 556;
  307. t.Uhungarumlaut = 722;
  308. t.Eacute = 667;
  309. t.emacron = 556;
  310. t.gbreve = 556;
  311. t.onequarter = 834;
  312. t.Scaron = 667;
  313. t.Scommaaccent = 667;
  314. t.Ohungarumlaut = 778;
  315. t.degree = 400;
  316. t.ograve = 556;
  317. t.Ccaron = 722;
  318. t.ugrave = 556;
  319. t.radical = 453;
  320. t.Dcaron = 722;
  321. t.rcommaaccent = 333;
  322. t.Ntilde = 722;
  323. t.otilde = 556;
  324. t.Rcommaaccent = 722;
  325. t.Lcommaaccent = 556;
  326. t.Atilde = 667;
  327. t.Aogonek = 667;
  328. t.Aring = 667;
  329. t.Otilde = 778;
  330. t.zdotaccent = 500;
  331. t.Ecaron = 667;
  332. t.Iogonek = 278;
  333. t.kcommaaccent = 500;
  334. t.minus = 584;
  335. t.Icircumflex = 278;
  336. t.ncaron = 556;
  337. t.tcommaaccent = 278;
  338. t.logicalnot = 584;
  339. t.odieresis = 556;
  340. t.udieresis = 556;
  341. t.notequal = 549;
  342. t.gcommaaccent = 556;
  343. t.eth = 556;
  344. t.zcaron = 500;
  345. t.ncommaaccent = 556;
  346. t.onesuperior = 333;
  347. t.imacron = 278;
  348. t.Euro = 556;
  349. });
  350. t["Helvetica-Bold"] = (0, _core_utils.getLookupTableFactory)(function (t) {
  351. t.space = 278;
  352. t.exclam = 333;
  353. t.quotedbl = 474;
  354. t.numbersign = 556;
  355. t.dollar = 556;
  356. t.percent = 889;
  357. t.ampersand = 722;
  358. t.quoteright = 278;
  359. t.parenleft = 333;
  360. t.parenright = 333;
  361. t.asterisk = 389;
  362. t.plus = 584;
  363. t.comma = 278;
  364. t.hyphen = 333;
  365. t.period = 278;
  366. t.slash = 278;
  367. t.zero = 556;
  368. t.one = 556;
  369. t.two = 556;
  370. t.three = 556;
  371. t.four = 556;
  372. t.five = 556;
  373. t.six = 556;
  374. t.seven = 556;
  375. t.eight = 556;
  376. t.nine = 556;
  377. t.colon = 333;
  378. t.semicolon = 333;
  379. t.less = 584;
  380. t.equal = 584;
  381. t.greater = 584;
  382. t.question = 611;
  383. t.at = 975;
  384. t.A = 722;
  385. t.B = 722;
  386. t.C = 722;
  387. t.D = 722;
  388. t.E = 667;
  389. t.F = 611;
  390. t.G = 778;
  391. t.H = 722;
  392. t.I = 278;
  393. t.J = 556;
  394. t.K = 722;
  395. t.L = 611;
  396. t.M = 833;
  397. t.N = 722;
  398. t.O = 778;
  399. t.P = 667;
  400. t.Q = 778;
  401. t.R = 722;
  402. t.S = 667;
  403. t.T = 611;
  404. t.U = 722;
  405. t.V = 667;
  406. t.W = 944;
  407. t.X = 667;
  408. t.Y = 667;
  409. t.Z = 611;
  410. t.bracketleft = 333;
  411. t.backslash = 278;
  412. t.bracketright = 333;
  413. t.asciicircum = 584;
  414. t.underscore = 556;
  415. t.quoteleft = 278;
  416. t.a = 556;
  417. t.b = 611;
  418. t.c = 556;
  419. t.d = 611;
  420. t.e = 556;
  421. t.f = 333;
  422. t.g = 611;
  423. t.h = 611;
  424. t.i = 278;
  425. t.j = 278;
  426. t.k = 556;
  427. t.l = 278;
  428. t.m = 889;
  429. t.n = 611;
  430. t.o = 611;
  431. t.p = 611;
  432. t.q = 611;
  433. t.r = 389;
  434. t.s = 556;
  435. t.t = 333;
  436. t.u = 611;
  437. t.v = 556;
  438. t.w = 778;
  439. t.x = 556;
  440. t.y = 556;
  441. t.z = 500;
  442. t.braceleft = 389;
  443. t.bar = 280;
  444. t.braceright = 389;
  445. t.asciitilde = 584;
  446. t.exclamdown = 333;
  447. t.cent = 556;
  448. t.sterling = 556;
  449. t.fraction = 167;
  450. t.yen = 556;
  451. t.florin = 556;
  452. t.section = 556;
  453. t.currency = 556;
  454. t.quotesingle = 238;
  455. t.quotedblleft = 500;
  456. t.guillemotleft = 556;
  457. t.guilsinglleft = 333;
  458. t.guilsinglright = 333;
  459. t.fi = 611;
  460. t.fl = 611;
  461. t.endash = 556;
  462. t.dagger = 556;
  463. t.daggerdbl = 556;
  464. t.periodcentered = 278;
  465. t.paragraph = 556;
  466. t.bullet = 350;
  467. t.quotesinglbase = 278;
  468. t.quotedblbase = 500;
  469. t.quotedblright = 500;
  470. t.guillemotright = 556;
  471. t.ellipsis = 1000;
  472. t.perthousand = 1000;
  473. t.questiondown = 611;
  474. t.grave = 333;
  475. t.acute = 333;
  476. t.circumflex = 333;
  477. t.tilde = 333;
  478. t.macron = 333;
  479. t.breve = 333;
  480. t.dotaccent = 333;
  481. t.dieresis = 333;
  482. t.ring = 333;
  483. t.cedilla = 333;
  484. t.hungarumlaut = 333;
  485. t.ogonek = 333;
  486. t.caron = 333;
  487. t.emdash = 1000;
  488. t.AE = 1000;
  489. t.ordfeminine = 370;
  490. t.Lslash = 611;
  491. t.Oslash = 778;
  492. t.OE = 1000;
  493. t.ordmasculine = 365;
  494. t.ae = 889;
  495. t.dotlessi = 278;
  496. t.lslash = 278;
  497. t.oslash = 611;
  498. t.oe = 944;
  499. t.germandbls = 611;
  500. t.Idieresis = 278;
  501. t.eacute = 556;
  502. t.abreve = 556;
  503. t.uhungarumlaut = 611;
  504. t.ecaron = 556;
  505. t.Ydieresis = 667;
  506. t.divide = 584;
  507. t.Yacute = 667;
  508. t.Acircumflex = 722;
  509. t.aacute = 556;
  510. t.Ucircumflex = 722;
  511. t.yacute = 556;
  512. t.scommaaccent = 556;
  513. t.ecircumflex = 556;
  514. t.Uring = 722;
  515. t.Udieresis = 722;
  516. t.aogonek = 556;
  517. t.Uacute = 722;
  518. t.uogonek = 611;
  519. t.Edieresis = 667;
  520. t.Dcroat = 722;
  521. t.commaaccent = 250;
  522. t.copyright = 737;
  523. t.Emacron = 667;
  524. t.ccaron = 556;
  525. t.aring = 556;
  526. t.Ncommaaccent = 722;
  527. t.lacute = 278;
  528. t.agrave = 556;
  529. t.Tcommaaccent = 611;
  530. t.Cacute = 722;
  531. t.atilde = 556;
  532. t.Edotaccent = 667;
  533. t.scaron = 556;
  534. t.scedilla = 556;
  535. t.iacute = 278;
  536. t.lozenge = 494;
  537. t.Rcaron = 722;
  538. t.Gcommaaccent = 778;
  539. t.ucircumflex = 611;
  540. t.acircumflex = 556;
  541. t.Amacron = 722;
  542. t.rcaron = 389;
  543. t.ccedilla = 556;
  544. t.Zdotaccent = 611;
  545. t.Thorn = 667;
  546. t.Omacron = 778;
  547. t.Racute = 722;
  548. t.Sacute = 667;
  549. t.dcaron = 743;
  550. t.Umacron = 722;
  551. t.uring = 611;
  552. t.threesuperior = 333;
  553. t.Ograve = 778;
  554. t.Agrave = 722;
  555. t.Abreve = 722;
  556. t.multiply = 584;
  557. t.uacute = 611;
  558. t.Tcaron = 611;
  559. t.partialdiff = 494;
  560. t.ydieresis = 556;
  561. t.Nacute = 722;
  562. t.icircumflex = 278;
  563. t.Ecircumflex = 667;
  564. t.adieresis = 556;
  565. t.edieresis = 556;
  566. t.cacute = 556;
  567. t.nacute = 611;
  568. t.umacron = 611;
  569. t.Ncaron = 722;
  570. t.Iacute = 278;
  571. t.plusminus = 584;
  572. t.brokenbar = 280;
  573. t.registered = 737;
  574. t.Gbreve = 778;
  575. t.Idotaccent = 278;
  576. t.summation = 600;
  577. t.Egrave = 667;
  578. t.racute = 389;
  579. t.omacron = 611;
  580. t.Zacute = 611;
  581. t.Zcaron = 611;
  582. t.greaterequal = 549;
  583. t.Eth = 722;
  584. t.Ccedilla = 722;
  585. t.lcommaaccent = 278;
  586. t.tcaron = 389;
  587. t.eogonek = 556;
  588. t.Uogonek = 722;
  589. t.Aacute = 722;
  590. t.Adieresis = 722;
  591. t.egrave = 556;
  592. t.zacute = 500;
  593. t.iogonek = 278;
  594. t.Oacute = 778;
  595. t.oacute = 611;
  596. t.amacron = 556;
  597. t.sacute = 556;
  598. t.idieresis = 278;
  599. t.Ocircumflex = 778;
  600. t.Ugrave = 722;
  601. t.Delta = 612;
  602. t.thorn = 611;
  603. t.twosuperior = 333;
  604. t.Odieresis = 778;
  605. t.mu = 611;
  606. t.igrave = 278;
  607. t.ohungarumlaut = 611;
  608. t.Eogonek = 667;
  609. t.dcroat = 611;
  610. t.threequarters = 834;
  611. t.Scedilla = 667;
  612. t.lcaron = 400;
  613. t.Kcommaaccent = 722;
  614. t.Lacute = 611;
  615. t.trademark = 1000;
  616. t.edotaccent = 556;
  617. t.Igrave = 278;
  618. t.Imacron = 278;
  619. t.Lcaron = 611;
  620. t.onehalf = 834;
  621. t.lessequal = 549;
  622. t.ocircumflex = 611;
  623. t.ntilde = 611;
  624. t.Uhungarumlaut = 722;
  625. t.Eacute = 667;
  626. t.emacron = 556;
  627. t.gbreve = 611;
  628. t.onequarter = 834;
  629. t.Scaron = 667;
  630. t.Scommaaccent = 667;
  631. t.Ohungarumlaut = 778;
  632. t.degree = 400;
  633. t.ograve = 611;
  634. t.Ccaron = 722;
  635. t.ugrave = 611;
  636. t.radical = 549;
  637. t.Dcaron = 722;
  638. t.rcommaaccent = 389;
  639. t.Ntilde = 722;
  640. t.otilde = 611;
  641. t.Rcommaaccent = 722;
  642. t.Lcommaaccent = 611;
  643. t.Atilde = 722;
  644. t.Aogonek = 722;
  645. t.Aring = 722;
  646. t.Otilde = 778;
  647. t.zdotaccent = 500;
  648. t.Ecaron = 667;
  649. t.Iogonek = 278;
  650. t.kcommaaccent = 556;
  651. t.minus = 584;
  652. t.Icircumflex = 278;
  653. t.ncaron = 611;
  654. t.tcommaaccent = 333;
  655. t.logicalnot = 584;
  656. t.odieresis = 611;
  657. t.udieresis = 611;
  658. t.notequal = 549;
  659. t.gcommaaccent = 611;
  660. t.eth = 611;
  661. t.zcaron = 500;
  662. t.ncommaaccent = 611;
  663. t.onesuperior = 333;
  664. t.imacron = 278;
  665. t.Euro = 556;
  666. });
  667. t["Helvetica-BoldOblique"] = (0, _core_utils.getLookupTableFactory)(function (t) {
  668. t.space = 278;
  669. t.exclam = 333;
  670. t.quotedbl = 474;
  671. t.numbersign = 556;
  672. t.dollar = 556;
  673. t.percent = 889;
  674. t.ampersand = 722;
  675. t.quoteright = 278;
  676. t.parenleft = 333;
  677. t.parenright = 333;
  678. t.asterisk = 389;
  679. t.plus = 584;
  680. t.comma = 278;
  681. t.hyphen = 333;
  682. t.period = 278;
  683. t.slash = 278;
  684. t.zero = 556;
  685. t.one = 556;
  686. t.two = 556;
  687. t.three = 556;
  688. t.four = 556;
  689. t.five = 556;
  690. t.six = 556;
  691. t.seven = 556;
  692. t.eight = 556;
  693. t.nine = 556;
  694. t.colon = 333;
  695. t.semicolon = 333;
  696. t.less = 584;
  697. t.equal = 584;
  698. t.greater = 584;
  699. t.question = 611;
  700. t.at = 975;
  701. t.A = 722;
  702. t.B = 722;
  703. t.C = 722;
  704. t.D = 722;
  705. t.E = 667;
  706. t.F = 611;
  707. t.G = 778;
  708. t.H = 722;
  709. t.I = 278;
  710. t.J = 556;
  711. t.K = 722;
  712. t.L = 611;
  713. t.M = 833;
  714. t.N = 722;
  715. t.O = 778;
  716. t.P = 667;
  717. t.Q = 778;
  718. t.R = 722;
  719. t.S = 667;
  720. t.T = 611;
  721. t.U = 722;
  722. t.V = 667;
  723. t.W = 944;
  724. t.X = 667;
  725. t.Y = 667;
  726. t.Z = 611;
  727. t.bracketleft = 333;
  728. t.backslash = 278;
  729. t.bracketright = 333;
  730. t.asciicircum = 584;
  731. t.underscore = 556;
  732. t.quoteleft = 278;
  733. t.a = 556;
  734. t.b = 611;
  735. t.c = 556;
  736. t.d = 611;
  737. t.e = 556;
  738. t.f = 333;
  739. t.g = 611;
  740. t.h = 611;
  741. t.i = 278;
  742. t.j = 278;
  743. t.k = 556;
  744. t.l = 278;
  745. t.m = 889;
  746. t.n = 611;
  747. t.o = 611;
  748. t.p = 611;
  749. t.q = 611;
  750. t.r = 389;
  751. t.s = 556;
  752. t.t = 333;
  753. t.u = 611;
  754. t.v = 556;
  755. t.w = 778;
  756. t.x = 556;
  757. t.y = 556;
  758. t.z = 500;
  759. t.braceleft = 389;
  760. t.bar = 280;
  761. t.braceright = 389;
  762. t.asciitilde = 584;
  763. t.exclamdown = 333;
  764. t.cent = 556;
  765. t.sterling = 556;
  766. t.fraction = 167;
  767. t.yen = 556;
  768. t.florin = 556;
  769. t.section = 556;
  770. t.currency = 556;
  771. t.quotesingle = 238;
  772. t.quotedblleft = 500;
  773. t.guillemotleft = 556;
  774. t.guilsinglleft = 333;
  775. t.guilsinglright = 333;
  776. t.fi = 611;
  777. t.fl = 611;
  778. t.endash = 556;
  779. t.dagger = 556;
  780. t.daggerdbl = 556;
  781. t.periodcentered = 278;
  782. t.paragraph = 556;
  783. t.bullet = 350;
  784. t.quotesinglbase = 278;
  785. t.quotedblbase = 500;
  786. t.quotedblright = 500;
  787. t.guillemotright = 556;
  788. t.ellipsis = 1000;
  789. t.perthousand = 1000;
  790. t.questiondown = 611;
  791. t.grave = 333;
  792. t.acute = 333;
  793. t.circumflex = 333;
  794. t.tilde = 333;
  795. t.macron = 333;
  796. t.breve = 333;
  797. t.dotaccent = 333;
  798. t.dieresis = 333;
  799. t.ring = 333;
  800. t.cedilla = 333;
  801. t.hungarumlaut = 333;
  802. t.ogonek = 333;
  803. t.caron = 333;
  804. t.emdash = 1000;
  805. t.AE = 1000;
  806. t.ordfeminine = 370;
  807. t.Lslash = 611;
  808. t.Oslash = 778;
  809. t.OE = 1000;
  810. t.ordmasculine = 365;
  811. t.ae = 889;
  812. t.dotlessi = 278;
  813. t.lslash = 278;
  814. t.oslash = 611;
  815. t.oe = 944;
  816. t.germandbls = 611;
  817. t.Idieresis = 278;
  818. t.eacute = 556;
  819. t.abreve = 556;
  820. t.uhungarumlaut = 611;
  821. t.ecaron = 556;
  822. t.Ydieresis = 667;
  823. t.divide = 584;
  824. t.Yacute = 667;
  825. t.Acircumflex = 722;
  826. t.aacute = 556;
  827. t.Ucircumflex = 722;
  828. t.yacute = 556;
  829. t.scommaaccent = 556;
  830. t.ecircumflex = 556;
  831. t.Uring = 722;
  832. t.Udieresis = 722;
  833. t.aogonek = 556;
  834. t.Uacute = 722;
  835. t.uogonek = 611;
  836. t.Edieresis = 667;
  837. t.Dcroat = 722;
  838. t.commaaccent = 250;
  839. t.copyright = 737;
  840. t.Emacron = 667;
  841. t.ccaron = 556;
  842. t.aring = 556;
  843. t.Ncommaaccent = 722;
  844. t.lacute = 278;
  845. t.agrave = 556;
  846. t.Tcommaaccent = 611;
  847. t.Cacute = 722;
  848. t.atilde = 556;
  849. t.Edotaccent = 667;
  850. t.scaron = 556;
  851. t.scedilla = 556;
  852. t.iacute = 278;
  853. t.lozenge = 494;
  854. t.Rcaron = 722;
  855. t.Gcommaaccent = 778;
  856. t.ucircumflex = 611;
  857. t.acircumflex = 556;
  858. t.Amacron = 722;
  859. t.rcaron = 389;
  860. t.ccedilla = 556;
  861. t.Zdotaccent = 611;
  862. t.Thorn = 667;
  863. t.Omacron = 778;
  864. t.Racute = 722;
  865. t.Sacute = 667;
  866. t.dcaron = 743;
  867. t.Umacron = 722;
  868. t.uring = 611;
  869. t.threesuperior = 333;
  870. t.Ograve = 778;
  871. t.Agrave = 722;
  872. t.Abreve = 722;
  873. t.multiply = 584;
  874. t.uacute = 611;
  875. t.Tcaron = 611;
  876. t.partialdiff = 494;
  877. t.ydieresis = 556;
  878. t.Nacute = 722;
  879. t.icircumflex = 278;
  880. t.Ecircumflex = 667;
  881. t.adieresis = 556;
  882. t.edieresis = 556;
  883. t.cacute = 556;
  884. t.nacute = 611;
  885. t.umacron = 611;
  886. t.Ncaron = 722;
  887. t.Iacute = 278;
  888. t.plusminus = 584;
  889. t.brokenbar = 280;
  890. t.registered = 737;
  891. t.Gbreve = 778;
  892. t.Idotaccent = 278;
  893. t.summation = 600;
  894. t.Egrave = 667;
  895. t.racute = 389;
  896. t.omacron = 611;
  897. t.Zacute = 611;
  898. t.Zcaron = 611;
  899. t.greaterequal = 549;
  900. t.Eth = 722;
  901. t.Ccedilla = 722;
  902. t.lcommaaccent = 278;
  903. t.tcaron = 389;
  904. t.eogonek = 556;
  905. t.Uogonek = 722;
  906. t.Aacute = 722;
  907. t.Adieresis = 722;
  908. t.egrave = 556;
  909. t.zacute = 500;
  910. t.iogonek = 278;
  911. t.Oacute = 778;
  912. t.oacute = 611;
  913. t.amacron = 556;
  914. t.sacute = 556;
  915. t.idieresis = 278;
  916. t.Ocircumflex = 778;
  917. t.Ugrave = 722;
  918. t.Delta = 612;
  919. t.thorn = 611;
  920. t.twosuperior = 333;
  921. t.Odieresis = 778;
  922. t.mu = 611;
  923. t.igrave = 278;
  924. t.ohungarumlaut = 611;
  925. t.Eogonek = 667;
  926. t.dcroat = 611;
  927. t.threequarters = 834;
  928. t.Scedilla = 667;
  929. t.lcaron = 400;
  930. t.Kcommaaccent = 722;
  931. t.Lacute = 611;
  932. t.trademark = 1000;
  933. t.edotaccent = 556;
  934. t.Igrave = 278;
  935. t.Imacron = 278;
  936. t.Lcaron = 611;
  937. t.onehalf = 834;
  938. t.lessequal = 549;
  939. t.ocircumflex = 611;
  940. t.ntilde = 611;
  941. t.Uhungarumlaut = 722;
  942. t.Eacute = 667;
  943. t.emacron = 556;
  944. t.gbreve = 611;
  945. t.onequarter = 834;
  946. t.Scaron = 667;
  947. t.Scommaaccent = 667;
  948. t.Ohungarumlaut = 778;
  949. t.degree = 400;
  950. t.ograve = 611;
  951. t.Ccaron = 722;
  952. t.ugrave = 611;
  953. t.radical = 549;
  954. t.Dcaron = 722;
  955. t.rcommaaccent = 389;
  956. t.Ntilde = 722;
  957. t.otilde = 611;
  958. t.Rcommaaccent = 722;
  959. t.Lcommaaccent = 611;
  960. t.Atilde = 722;
  961. t.Aogonek = 722;
  962. t.Aring = 722;
  963. t.Otilde = 778;
  964. t.zdotaccent = 500;
  965. t.Ecaron = 667;
  966. t.Iogonek = 278;
  967. t.kcommaaccent = 556;
  968. t.minus = 584;
  969. t.Icircumflex = 278;
  970. t.ncaron = 611;
  971. t.tcommaaccent = 333;
  972. t.logicalnot = 584;
  973. t.odieresis = 611;
  974. t.udieresis = 611;
  975. t.notequal = 549;
  976. t.gcommaaccent = 611;
  977. t.eth = 611;
  978. t.zcaron = 500;
  979. t.ncommaaccent = 611;
  980. t.onesuperior = 333;
  981. t.imacron = 278;
  982. t.Euro = 556;
  983. });
  984. t["Helvetica-Oblique"] = (0, _core_utils.getLookupTableFactory)(function (t) {
  985. t.space = 278;
  986. t.exclam = 278;
  987. t.quotedbl = 355;
  988. t.numbersign = 556;
  989. t.dollar = 556;
  990. t.percent = 889;
  991. t.ampersand = 667;
  992. t.quoteright = 222;
  993. t.parenleft = 333;
  994. t.parenright = 333;
  995. t.asterisk = 389;
  996. t.plus = 584;
  997. t.comma = 278;
  998. t.hyphen = 333;
  999. t.period = 278;
  1000. t.slash = 278;
  1001. t.zero = 556;
  1002. t.one = 556;
  1003. t.two = 556;
  1004. t.three = 556;
  1005. t.four = 556;
  1006. t.five = 556;
  1007. t.six = 556;
  1008. t.seven = 556;
  1009. t.eight = 556;
  1010. t.nine = 556;
  1011. t.colon = 278;
  1012. t.semicolon = 278;
  1013. t.less = 584;
  1014. t.equal = 584;
  1015. t.greater = 584;
  1016. t.question = 556;
  1017. t.at = 1015;
  1018. t.A = 667;
  1019. t.B = 667;
  1020. t.C = 722;
  1021. t.D = 722;
  1022. t.E = 667;
  1023. t.F = 611;
  1024. t.G = 778;
  1025. t.H = 722;
  1026. t.I = 278;
  1027. t.J = 500;
  1028. t.K = 667;
  1029. t.L = 556;
  1030. t.M = 833;
  1031. t.N = 722;
  1032. t.O = 778;
  1033. t.P = 667;
  1034. t.Q = 778;
  1035. t.R = 722;
  1036. t.S = 667;
  1037. t.T = 611;
  1038. t.U = 722;
  1039. t.V = 667;
  1040. t.W = 944;
  1041. t.X = 667;
  1042. t.Y = 667;
  1043. t.Z = 611;
  1044. t.bracketleft = 278;
  1045. t.backslash = 278;
  1046. t.bracketright = 278;
  1047. t.asciicircum = 469;
  1048. t.underscore = 556;
  1049. t.quoteleft = 222;
  1050. t.a = 556;
  1051. t.b = 556;
  1052. t.c = 500;
  1053. t.d = 556;
  1054. t.e = 556;
  1055. t.f = 278;
  1056. t.g = 556;
  1057. t.h = 556;
  1058. t.i = 222;
  1059. t.j = 222;
  1060. t.k = 500;
  1061. t.l = 222;
  1062. t.m = 833;
  1063. t.n = 556;
  1064. t.o = 556;
  1065. t.p = 556;
  1066. t.q = 556;
  1067. t.r = 333;
  1068. t.s = 500;
  1069. t.t = 278;
  1070. t.u = 556;
  1071. t.v = 500;
  1072. t.w = 722;
  1073. t.x = 500;
  1074. t.y = 500;
  1075. t.z = 500;
  1076. t.braceleft = 334;
  1077. t.bar = 260;
  1078. t.braceright = 334;
  1079. t.asciitilde = 584;
  1080. t.exclamdown = 333;
  1081. t.cent = 556;
  1082. t.sterling = 556;
  1083. t.fraction = 167;
  1084. t.yen = 556;
  1085. t.florin = 556;
  1086. t.section = 556;
  1087. t.currency = 556;
  1088. t.quotesingle = 191;
  1089. t.quotedblleft = 333;
  1090. t.guillemotleft = 556;
  1091. t.guilsinglleft = 333;
  1092. t.guilsinglright = 333;
  1093. t.fi = 500;
  1094. t.fl = 500;
  1095. t.endash = 556;
  1096. t.dagger = 556;
  1097. t.daggerdbl = 556;
  1098. t.periodcentered = 278;
  1099. t.paragraph = 537;
  1100. t.bullet = 350;
  1101. t.quotesinglbase = 222;
  1102. t.quotedblbase = 333;
  1103. t.quotedblright = 333;
  1104. t.guillemotright = 556;
  1105. t.ellipsis = 1000;
  1106. t.perthousand = 1000;
  1107. t.questiondown = 611;
  1108. t.grave = 333;
  1109. t.acute = 333;
  1110. t.circumflex = 333;
  1111. t.tilde = 333;
  1112. t.macron = 333;
  1113. t.breve = 333;
  1114. t.dotaccent = 333;
  1115. t.dieresis = 333;
  1116. t.ring = 333;
  1117. t.cedilla = 333;
  1118. t.hungarumlaut = 333;
  1119. t.ogonek = 333;
  1120. t.caron = 333;
  1121. t.emdash = 1000;
  1122. t.AE = 1000;
  1123. t.ordfeminine = 370;
  1124. t.Lslash = 556;
  1125. t.Oslash = 778;
  1126. t.OE = 1000;
  1127. t.ordmasculine = 365;
  1128. t.ae = 889;
  1129. t.dotlessi = 278;
  1130. t.lslash = 222;
  1131. t.oslash = 611;
  1132. t.oe = 944;
  1133. t.germandbls = 611;
  1134. t.Idieresis = 278;
  1135. t.eacute = 556;
  1136. t.abreve = 556;
  1137. t.uhungarumlaut = 556;
  1138. t.ecaron = 556;
  1139. t.Ydieresis = 667;
  1140. t.divide = 584;
  1141. t.Yacute = 667;
  1142. t.Acircumflex = 667;
  1143. t.aacute = 556;
  1144. t.Ucircumflex = 722;
  1145. t.yacute = 500;
  1146. t.scommaaccent = 500;
  1147. t.ecircumflex = 556;
  1148. t.Uring = 722;
  1149. t.Udieresis = 722;
  1150. t.aogonek = 556;
  1151. t.Uacute = 722;
  1152. t.uogonek = 556;
  1153. t.Edieresis = 667;
  1154. t.Dcroat = 722;
  1155. t.commaaccent = 250;
  1156. t.copyright = 737;
  1157. t.Emacron = 667;
  1158. t.ccaron = 500;
  1159. t.aring = 556;
  1160. t.Ncommaaccent = 722;
  1161. t.lacute = 222;
  1162. t.agrave = 556;
  1163. t.Tcommaaccent = 611;
  1164. t.Cacute = 722;
  1165. t.atilde = 556;
  1166. t.Edotaccent = 667;
  1167. t.scaron = 500;
  1168. t.scedilla = 500;
  1169. t.iacute = 278;
  1170. t.lozenge = 471;
  1171. t.Rcaron = 722;
  1172. t.Gcommaaccent = 778;
  1173. t.ucircumflex = 556;
  1174. t.acircumflex = 556;
  1175. t.Amacron = 667;
  1176. t.rcaron = 333;
  1177. t.ccedilla = 500;
  1178. t.Zdotaccent = 611;
  1179. t.Thorn = 667;
  1180. t.Omacron = 778;
  1181. t.Racute = 722;
  1182. t.Sacute = 667;
  1183. t.dcaron = 643;
  1184. t.Umacron = 722;
  1185. t.uring = 556;
  1186. t.threesuperior = 333;
  1187. t.Ograve = 778;
  1188. t.Agrave = 667;
  1189. t.Abreve = 667;
  1190. t.multiply = 584;
  1191. t.uacute = 556;
  1192. t.Tcaron = 611;
  1193. t.partialdiff = 476;
  1194. t.ydieresis = 500;
  1195. t.Nacute = 722;
  1196. t.icircumflex = 278;
  1197. t.Ecircumflex = 667;
  1198. t.adieresis = 556;
  1199. t.edieresis = 556;
  1200. t.cacute = 500;
  1201. t.nacute = 556;
  1202. t.umacron = 556;
  1203. t.Ncaron = 722;
  1204. t.Iacute = 278;
  1205. t.plusminus = 584;
  1206. t.brokenbar = 260;
  1207. t.registered = 737;
  1208. t.Gbreve = 778;
  1209. t.Idotaccent = 278;
  1210. t.summation = 600;
  1211. t.Egrave = 667;
  1212. t.racute = 333;
  1213. t.omacron = 556;
  1214. t.Zacute = 611;
  1215. t.Zcaron = 611;
  1216. t.greaterequal = 549;
  1217. t.Eth = 722;
  1218. t.Ccedilla = 722;
  1219. t.lcommaaccent = 222;
  1220. t.tcaron = 317;
  1221. t.eogonek = 556;
  1222. t.Uogonek = 722;
  1223. t.Aacute = 667;
  1224. t.Adieresis = 667;
  1225. t.egrave = 556;
  1226. t.zacute = 500;
  1227. t.iogonek = 222;
  1228. t.Oacute = 778;
  1229. t.oacute = 556;
  1230. t.amacron = 556;
  1231. t.sacute = 500;
  1232. t.idieresis = 278;
  1233. t.Ocircumflex = 778;
  1234. t.Ugrave = 722;
  1235. t.Delta = 612;
  1236. t.thorn = 556;
  1237. t.twosuperior = 333;
  1238. t.Odieresis = 778;
  1239. t.mu = 556;
  1240. t.igrave = 278;
  1241. t.ohungarumlaut = 556;
  1242. t.Eogonek = 667;
  1243. t.dcroat = 556;
  1244. t.threequarters = 834;
  1245. t.Scedilla = 667;
  1246. t.lcaron = 299;
  1247. t.Kcommaaccent = 667;
  1248. t.Lacute = 556;
  1249. t.trademark = 1000;
  1250. t.edotaccent = 556;
  1251. t.Igrave = 278;
  1252. t.Imacron = 278;
  1253. t.Lcaron = 556;
  1254. t.onehalf = 834;
  1255. t.lessequal = 549;
  1256. t.ocircumflex = 556;
  1257. t.ntilde = 556;
  1258. t.Uhungarumlaut = 722;
  1259. t.Eacute = 667;
  1260. t.emacron = 556;
  1261. t.gbreve = 556;
  1262. t.onequarter = 834;
  1263. t.Scaron = 667;
  1264. t.Scommaaccent = 667;
  1265. t.Ohungarumlaut = 778;
  1266. t.degree = 400;
  1267. t.ograve = 556;
  1268. t.Ccaron = 722;
  1269. t.ugrave = 556;
  1270. t.radical = 453;
  1271. t.Dcaron = 722;
  1272. t.rcommaaccent = 333;
  1273. t.Ntilde = 722;
  1274. t.otilde = 556;
  1275. t.Rcommaaccent = 722;
  1276. t.Lcommaaccent = 556;
  1277. t.Atilde = 667;
  1278. t.Aogonek = 667;
  1279. t.Aring = 667;
  1280. t.Otilde = 778;
  1281. t.zdotaccent = 500;
  1282. t.Ecaron = 667;
  1283. t.Iogonek = 278;
  1284. t.kcommaaccent = 500;
  1285. t.minus = 584;
  1286. t.Icircumflex = 278;
  1287. t.ncaron = 556;
  1288. t.tcommaaccent = 278;
  1289. t.logicalnot = 584;
  1290. t.odieresis = 556;
  1291. t.udieresis = 556;
  1292. t.notequal = 549;
  1293. t.gcommaaccent = 556;
  1294. t.eth = 556;
  1295. t.zcaron = 500;
  1296. t.ncommaaccent = 556;
  1297. t.onesuperior = 333;
  1298. t.imacron = 278;
  1299. t.Euro = 556;
  1300. });
  1301. t.Symbol = (0, _core_utils.getLookupTableFactory)(function (t) {
  1302. t.space = 250;
  1303. t.exclam = 333;
  1304. t.universal = 713;
  1305. t.numbersign = 500;
  1306. t.existential = 549;
  1307. t.percent = 833;
  1308. t.ampersand = 778;
  1309. t.suchthat = 439;
  1310. t.parenleft = 333;
  1311. t.parenright = 333;
  1312. t.asteriskmath = 500;
  1313. t.plus = 549;
  1314. t.comma = 250;
  1315. t.minus = 549;
  1316. t.period = 250;
  1317. t.slash = 278;
  1318. t.zero = 500;
  1319. t.one = 500;
  1320. t.two = 500;
  1321. t.three = 500;
  1322. t.four = 500;
  1323. t.five = 500;
  1324. t.six = 500;
  1325. t.seven = 500;
  1326. t.eight = 500;
  1327. t.nine = 500;
  1328. t.colon = 278;
  1329. t.semicolon = 278;
  1330. t.less = 549;
  1331. t.equal = 549;
  1332. t.greater = 549;
  1333. t.question = 444;
  1334. t.congruent = 549;
  1335. t.Alpha = 722;
  1336. t.Beta = 667;
  1337. t.Chi = 722;
  1338. t.Delta = 612;
  1339. t.Epsilon = 611;
  1340. t.Phi = 763;
  1341. t.Gamma = 603;
  1342. t.Eta = 722;
  1343. t.Iota = 333;
  1344. t.theta1 = 631;
  1345. t.Kappa = 722;
  1346. t.Lambda = 686;
  1347. t.Mu = 889;
  1348. t.Nu = 722;
  1349. t.Omicron = 722;
  1350. t.Pi = 768;
  1351. t.Theta = 741;
  1352. t.Rho = 556;
  1353. t.Sigma = 592;
  1354. t.Tau = 611;
  1355. t.Upsilon = 690;
  1356. t.sigma1 = 439;
  1357. t.Omega = 768;
  1358. t.Xi = 645;
  1359. t.Psi = 795;
  1360. t.Zeta = 611;
  1361. t.bracketleft = 333;
  1362. t.therefore = 863;
  1363. t.bracketright = 333;
  1364. t.perpendicular = 658;
  1365. t.underscore = 500;
  1366. t.radicalex = 500;
  1367. t.alpha = 631;
  1368. t.beta = 549;
  1369. t.chi = 549;
  1370. t.delta = 494;
  1371. t.epsilon = 439;
  1372. t.phi = 521;
  1373. t.gamma = 411;
  1374. t.eta = 603;
  1375. t.iota = 329;
  1376. t.phi1 = 603;
  1377. t.kappa = 549;
  1378. t.lambda = 549;
  1379. t.mu = 576;
  1380. t.nu = 521;
  1381. t.omicron = 549;
  1382. t.pi = 549;
  1383. t.theta = 521;
  1384. t.rho = 549;
  1385. t.sigma = 603;
  1386. t.tau = 439;
  1387. t.upsilon = 576;
  1388. t.omega1 = 713;
  1389. t.omega = 686;
  1390. t.xi = 493;
  1391. t.psi = 686;
  1392. t.zeta = 494;
  1393. t.braceleft = 480;
  1394. t.bar = 200;
  1395. t.braceright = 480;
  1396. t.similar = 549;
  1397. t.Euro = 750;
  1398. t.Upsilon1 = 620;
  1399. t.minute = 247;
  1400. t.lessequal = 549;
  1401. t.fraction = 167;
  1402. t.infinity = 713;
  1403. t.florin = 500;
  1404. t.club = 753;
  1405. t.diamond = 753;
  1406. t.heart = 753;
  1407. t.spade = 753;
  1408. t.arrowboth = 1042;
  1409. t.arrowleft = 987;
  1410. t.arrowup = 603;
  1411. t.arrowright = 987;
  1412. t.arrowdown = 603;
  1413. t.degree = 400;
  1414. t.plusminus = 549;
  1415. t.second = 411;
  1416. t.greaterequal = 549;
  1417. t.multiply = 549;
  1418. t.proportional = 713;
  1419. t.partialdiff = 494;
  1420. t.bullet = 460;
  1421. t.divide = 549;
  1422. t.notequal = 549;
  1423. t.equivalence = 549;
  1424. t.approxequal = 549;
  1425. t.ellipsis = 1000;
  1426. t.arrowvertex = 603;
  1427. t.arrowhorizex = 1000;
  1428. t.carriagereturn = 658;
  1429. t.aleph = 823;
  1430. t.Ifraktur = 686;
  1431. t.Rfraktur = 795;
  1432. t.weierstrass = 987;
  1433. t.circlemultiply = 768;
  1434. t.circleplus = 768;
  1435. t.emptyset = 823;
  1436. t.intersection = 768;
  1437. t.union = 768;
  1438. t.propersuperset = 713;
  1439. t.reflexsuperset = 713;
  1440. t.notsubset = 713;
  1441. t.propersubset = 713;
  1442. t.reflexsubset = 713;
  1443. t.element = 713;
  1444. t.notelement = 713;
  1445. t.angle = 768;
  1446. t.gradient = 713;
  1447. t.registerserif = 790;
  1448. t.copyrightserif = 790;
  1449. t.trademarkserif = 890;
  1450. t.product = 823;
  1451. t.radical = 549;
  1452. t.dotmath = 250;
  1453. t.logicalnot = 713;
  1454. t.logicaland = 603;
  1455. t.logicalor = 603;
  1456. t.arrowdblboth = 1042;
  1457. t.arrowdblleft = 987;
  1458. t.arrowdblup = 603;
  1459. t.arrowdblright = 987;
  1460. t.arrowdbldown = 603;
  1461. t.lozenge = 494;
  1462. t.angleleft = 329;
  1463. t.registersans = 790;
  1464. t.copyrightsans = 790;
  1465. t.trademarksans = 786;
  1466. t.summation = 713;
  1467. t.parenlefttp = 384;
  1468. t.parenleftex = 384;
  1469. t.parenleftbt = 384;
  1470. t.bracketlefttp = 384;
  1471. t.bracketleftex = 384;
  1472. t.bracketleftbt = 384;
  1473. t.bracelefttp = 494;
  1474. t.braceleftmid = 494;
  1475. t.braceleftbt = 494;
  1476. t.braceex = 494;
  1477. t.angleright = 329;
  1478. t.integral = 274;
  1479. t.integraltp = 686;
  1480. t.integralex = 686;
  1481. t.integralbt = 686;
  1482. t.parenrighttp = 384;
  1483. t.parenrightex = 384;
  1484. t.parenrightbt = 384;
  1485. t.bracketrighttp = 384;
  1486. t.bracketrightex = 384;
  1487. t.bracketrightbt = 384;
  1488. t.bracerighttp = 494;
  1489. t.bracerightmid = 494;
  1490. t.bracerightbt = 494;
  1491. t.apple = 790;
  1492. });
  1493. t["Times-Roman"] = (0, _core_utils.getLookupTableFactory)(function (t) {
  1494. t.space = 250;
  1495. t.exclam = 333;
  1496. t.quotedbl = 408;
  1497. t.numbersign = 500;
  1498. t.dollar = 500;
  1499. t.percent = 833;
  1500. t.ampersand = 778;
  1501. t.quoteright = 333;
  1502. t.parenleft = 333;
  1503. t.parenright = 333;
  1504. t.asterisk = 500;
  1505. t.plus = 564;
  1506. t.comma = 250;
  1507. t.hyphen = 333;
  1508. t.period = 250;
  1509. t.slash = 278;
  1510. t.zero = 500;
  1511. t.one = 500;
  1512. t.two = 500;
  1513. t.three = 500;
  1514. t.four = 500;
  1515. t.five = 500;
  1516. t.six = 500;
  1517. t.seven = 500;
  1518. t.eight = 500;
  1519. t.nine = 500;
  1520. t.colon = 278;
  1521. t.semicolon = 278;
  1522. t.less = 564;
  1523. t.equal = 564;
  1524. t.greater = 564;
  1525. t.question = 444;
  1526. t.at = 921;
  1527. t.A = 722;
  1528. t.B = 667;
  1529. t.C = 667;
  1530. t.D = 722;
  1531. t.E = 611;
  1532. t.F = 556;
  1533. t.G = 722;
  1534. t.H = 722;
  1535. t.I = 333;
  1536. t.J = 389;
  1537. t.K = 722;
  1538. t.L = 611;
  1539. t.M = 889;
  1540. t.N = 722;
  1541. t.O = 722;
  1542. t.P = 556;
  1543. t.Q = 722;
  1544. t.R = 667;
  1545. t.S = 556;
  1546. t.T = 611;
  1547. t.U = 722;
  1548. t.V = 722;
  1549. t.W = 944;
  1550. t.X = 722;
  1551. t.Y = 722;
  1552. t.Z = 611;
  1553. t.bracketleft = 333;
  1554. t.backslash = 278;
  1555. t.bracketright = 333;
  1556. t.asciicircum = 469;
  1557. t.underscore = 500;
  1558. t.quoteleft = 333;
  1559. t.a = 444;
  1560. t.b = 500;
  1561. t.c = 444;
  1562. t.d = 500;
  1563. t.e = 444;
  1564. t.f = 333;
  1565. t.g = 500;
  1566. t.h = 500;
  1567. t.i = 278;
  1568. t.j = 278;
  1569. t.k = 500;
  1570. t.l = 278;
  1571. t.m = 778;
  1572. t.n = 500;
  1573. t.o = 500;
  1574. t.p = 500;
  1575. t.q = 500;
  1576. t.r = 333;
  1577. t.s = 389;
  1578. t.t = 278;
  1579. t.u = 500;
  1580. t.v = 500;
  1581. t.w = 722;
  1582. t.x = 500;
  1583. t.y = 500;
  1584. t.z = 444;
  1585. t.braceleft = 480;
  1586. t.bar = 200;
  1587. t.braceright = 480;
  1588. t.asciitilde = 541;
  1589. t.exclamdown = 333;
  1590. t.cent = 500;
  1591. t.sterling = 500;
  1592. t.fraction = 167;
  1593. t.yen = 500;
  1594. t.florin = 500;
  1595. t.section = 500;
  1596. t.currency = 500;
  1597. t.quotesingle = 180;
  1598. t.quotedblleft = 444;
  1599. t.guillemotleft = 500;
  1600. t.guilsinglleft = 333;
  1601. t.guilsinglright = 333;
  1602. t.fi = 556;
  1603. t.fl = 556;
  1604. t.endash = 500;
  1605. t.dagger = 500;
  1606. t.daggerdbl = 500;
  1607. t.periodcentered = 250;
  1608. t.paragraph = 453;
  1609. t.bullet = 350;
  1610. t.quotesinglbase = 333;
  1611. t.quotedblbase = 444;
  1612. t.quotedblright = 444;
  1613. t.guillemotright = 500;
  1614. t.ellipsis = 1000;
  1615. t.perthousand = 1000;
  1616. t.questiondown = 444;
  1617. t.grave = 333;
  1618. t.acute = 333;
  1619. t.circumflex = 333;
  1620. t.tilde = 333;
  1621. t.macron = 333;
  1622. t.breve = 333;
  1623. t.dotaccent = 333;
  1624. t.dieresis = 333;
  1625. t.ring = 333;
  1626. t.cedilla = 333;
  1627. t.hungarumlaut = 333;
  1628. t.ogonek = 333;
  1629. t.caron = 333;
  1630. t.emdash = 1000;
  1631. t.AE = 889;
  1632. t.ordfeminine = 276;
  1633. t.Lslash = 611;
  1634. t.Oslash = 722;
  1635. t.OE = 889;
  1636. t.ordmasculine = 310;
  1637. t.ae = 667;
  1638. t.dotlessi = 278;
  1639. t.lslash = 278;
  1640. t.oslash = 500;
  1641. t.oe = 722;
  1642. t.germandbls = 500;
  1643. t.Idieresis = 333;
  1644. t.eacute = 444;
  1645. t.abreve = 444;
  1646. t.uhungarumlaut = 500;
  1647. t.ecaron = 444;
  1648. t.Ydieresis = 722;
  1649. t.divide = 564;
  1650. t.Yacute = 722;
  1651. t.Acircumflex = 722;
  1652. t.aacute = 444;
  1653. t.Ucircumflex = 722;
  1654. t.yacute = 500;
  1655. t.scommaaccent = 389;
  1656. t.ecircumflex = 444;
  1657. t.Uring = 722;
  1658. t.Udieresis = 722;
  1659. t.aogonek = 444;
  1660. t.Uacute = 722;
  1661. t.uogonek = 500;
  1662. t.Edieresis = 611;
  1663. t.Dcroat = 722;
  1664. t.commaaccent = 250;
  1665. t.copyright = 760;
  1666. t.Emacron = 611;
  1667. t.ccaron = 444;
  1668. t.aring = 444;
  1669. t.Ncommaaccent = 722;
  1670. t.lacute = 278;
  1671. t.agrave = 444;
  1672. t.Tcommaaccent = 611;
  1673. t.Cacute = 667;
  1674. t.atilde = 444;
  1675. t.Edotaccent = 611;
  1676. t.scaron = 389;
  1677. t.scedilla = 389;
  1678. t.iacute = 278;
  1679. t.lozenge = 471;
  1680. t.Rcaron = 667;
  1681. t.Gcommaaccent = 722;
  1682. t.ucircumflex = 500;
  1683. t.acircumflex = 444;
  1684. t.Amacron = 722;
  1685. t.rcaron = 333;
  1686. t.ccedilla = 444;
  1687. t.Zdotaccent = 611;
  1688. t.Thorn = 556;
  1689. t.Omacron = 722;
  1690. t.Racute = 667;
  1691. t.Sacute = 556;
  1692. t.dcaron = 588;
  1693. t.Umacron = 722;
  1694. t.uring = 500;
  1695. t.threesuperior = 300;
  1696. t.Ograve = 722;
  1697. t.Agrave = 722;
  1698. t.Abreve = 722;
  1699. t.multiply = 564;
  1700. t.uacute = 500;
  1701. t.Tcaron = 611;
  1702. t.partialdiff = 476;
  1703. t.ydieresis = 500;
  1704. t.Nacute = 722;
  1705. t.icircumflex = 278;
  1706. t.Ecircumflex = 611;
  1707. t.adieresis = 444;
  1708. t.edieresis = 444;
  1709. t.cacute = 444;
  1710. t.nacute = 500;
  1711. t.umacron = 500;
  1712. t.Ncaron = 722;
  1713. t.Iacute = 333;
  1714. t.plusminus = 564;
  1715. t.brokenbar = 200;
  1716. t.registered = 760;
  1717. t.Gbreve = 722;
  1718. t.Idotaccent = 333;
  1719. t.summation = 600;
  1720. t.Egrave = 611;
  1721. t.racute = 333;
  1722. t.omacron = 500;
  1723. t.Zacute = 611;
  1724. t.Zcaron = 611;
  1725. t.greaterequal = 549;
  1726. t.Eth = 722;
  1727. t.Ccedilla = 667;
  1728. t.lcommaaccent = 278;
  1729. t.tcaron = 326;
  1730. t.eogonek = 444;
  1731. t.Uogonek = 722;
  1732. t.Aacute = 722;
  1733. t.Adieresis = 722;
  1734. t.egrave = 444;
  1735. t.zacute = 444;
  1736. t.iogonek = 278;
  1737. t.Oacute = 722;
  1738. t.oacute = 500;
  1739. t.amacron = 444;
  1740. t.sacute = 389;
  1741. t.idieresis = 278;
  1742. t.Ocircumflex = 722;
  1743. t.Ugrave = 722;
  1744. t.Delta = 612;
  1745. t.thorn = 500;
  1746. t.twosuperior = 300;
  1747. t.Odieresis = 722;
  1748. t.mu = 500;
  1749. t.igrave = 278;
  1750. t.ohungarumlaut = 500;
  1751. t.Eogonek = 611;
  1752. t.dcroat = 500;
  1753. t.threequarters = 750;
  1754. t.Scedilla = 556;
  1755. t.lcaron = 344;
  1756. t.Kcommaaccent = 722;
  1757. t.Lacute = 611;
  1758. t.trademark = 980;
  1759. t.edotaccent = 444;
  1760. t.Igrave = 333;
  1761. t.Imacron = 333;
  1762. t.Lcaron = 611;
  1763. t.onehalf = 750;
  1764. t.lessequal = 549;
  1765. t.ocircumflex = 500;
  1766. t.ntilde = 500;
  1767. t.Uhungarumlaut = 722;
  1768. t.Eacute = 611;
  1769. t.emacron = 444;
  1770. t.gbreve = 500;
  1771. t.onequarter = 750;
  1772. t.Scaron = 556;
  1773. t.Scommaaccent = 556;
  1774. t.Ohungarumlaut = 722;
  1775. t.degree = 400;
  1776. t.ograve = 500;
  1777. t.Ccaron = 667;
  1778. t.ugrave = 500;
  1779. t.radical = 453;
  1780. t.Dcaron = 722;
  1781. t.rcommaaccent = 333;
  1782. t.Ntilde = 722;
  1783. t.otilde = 500;
  1784. t.Rcommaaccent = 667;
  1785. t.Lcommaaccent = 611;
  1786. t.Atilde = 722;
  1787. t.Aogonek = 722;
  1788. t.Aring = 722;
  1789. t.Otilde = 722;
  1790. t.zdotaccent = 444;
  1791. t.Ecaron = 611;
  1792. t.Iogonek = 333;
  1793. t.kcommaaccent = 500;
  1794. t.minus = 564;
  1795. t.Icircumflex = 333;
  1796. t.ncaron = 500;
  1797. t.tcommaaccent = 278;
  1798. t.logicalnot = 564;
  1799. t.odieresis = 500;
  1800. t.udieresis = 500;
  1801. t.notequal = 549;
  1802. t.gcommaaccent = 500;
  1803. t.eth = 500;
  1804. t.zcaron = 444;
  1805. t.ncommaaccent = 500;
  1806. t.onesuperior = 300;
  1807. t.imacron = 278;
  1808. t.Euro = 500;
  1809. });
  1810. t["Times-Bold"] = (0, _core_utils.getLookupTableFactory)(function (t) {
  1811. t.space = 250;
  1812. t.exclam = 333;
  1813. t.quotedbl = 555;
  1814. t.numbersign = 500;
  1815. t.dollar = 500;
  1816. t.percent = 1000;
  1817. t.ampersand = 833;
  1818. t.quoteright = 333;
  1819. t.parenleft = 333;
  1820. t.parenright = 333;
  1821. t.asterisk = 500;
  1822. t.plus = 570;
  1823. t.comma = 250;
  1824. t.hyphen = 333;
  1825. t.period = 250;
  1826. t.slash = 278;
  1827. t.zero = 500;
  1828. t.one = 500;
  1829. t.two = 500;
  1830. t.three = 500;
  1831. t.four = 500;
  1832. t.five = 500;
  1833. t.six = 500;
  1834. t.seven = 500;
  1835. t.eight = 500;
  1836. t.nine = 500;
  1837. t.colon = 333;
  1838. t.semicolon = 333;
  1839. t.less = 570;
  1840. t.equal = 570;
  1841. t.greater = 570;
  1842. t.question = 500;
  1843. t.at = 930;
  1844. t.A = 722;
  1845. t.B = 667;
  1846. t.C = 722;
  1847. t.D = 722;
  1848. t.E = 667;
  1849. t.F = 611;
  1850. t.G = 778;
  1851. t.H = 778;
  1852. t.I = 389;
  1853. t.J = 500;
  1854. t.K = 778;
  1855. t.L = 667;
  1856. t.M = 944;
  1857. t.N = 722;
  1858. t.O = 778;
  1859. t.P = 611;
  1860. t.Q = 778;
  1861. t.R = 722;
  1862. t.S = 556;
  1863. t.T = 667;
  1864. t.U = 722;
  1865. t.V = 722;
  1866. t.W = 1000;
  1867. t.X = 722;
  1868. t.Y = 722;
  1869. t.Z = 667;
  1870. t.bracketleft = 333;
  1871. t.backslash = 278;
  1872. t.bracketright = 333;
  1873. t.asciicircum = 581;
  1874. t.underscore = 500;
  1875. t.quoteleft = 333;
  1876. t.a = 500;
  1877. t.b = 556;
  1878. t.c = 444;
  1879. t.d = 556;
  1880. t.e = 444;
  1881. t.f = 333;
  1882. t.g = 500;
  1883. t.h = 556;
  1884. t.i = 278;
  1885. t.j = 333;
  1886. t.k = 556;
  1887. t.l = 278;
  1888. t.m = 833;
  1889. t.n = 556;
  1890. t.o = 500;
  1891. t.p = 556;
  1892. t.q = 556;
  1893. t.r = 444;
  1894. t.s = 389;
  1895. t.t = 333;
  1896. t.u = 556;
  1897. t.v = 500;
  1898. t.w = 722;
  1899. t.x = 500;
  1900. t.y = 500;
  1901. t.z = 444;
  1902. t.braceleft = 394;
  1903. t.bar = 220;
  1904. t.braceright = 394;
  1905. t.asciitilde = 520;
  1906. t.exclamdown = 333;
  1907. t.cent = 500;
  1908. t.sterling = 500;
  1909. t.fraction = 167;
  1910. t.yen = 500;
  1911. t.florin = 500;
  1912. t.section = 500;
  1913. t.currency = 500;
  1914. t.quotesingle = 278;
  1915. t.quotedblleft = 500;
  1916. t.guillemotleft = 500;
  1917. t.guilsinglleft = 333;
  1918. t.guilsinglright = 333;
  1919. t.fi = 556;
  1920. t.fl = 556;
  1921. t.endash = 500;
  1922. t.dagger = 500;
  1923. t.daggerdbl = 500;
  1924. t.periodcentered = 250;
  1925. t.paragraph = 540;
  1926. t.bullet = 350;
  1927. t.quotesinglbase = 333;
  1928. t.quotedblbase = 500;
  1929. t.quotedblright = 500;
  1930. t.guillemotright = 500;
  1931. t.ellipsis = 1000;
  1932. t.perthousand = 1000;
  1933. t.questiondown = 500;
  1934. t.grave = 333;
  1935. t.acute = 333;
  1936. t.circumflex = 333;
  1937. t.tilde = 333;
  1938. t.macron = 333;
  1939. t.breve = 333;
  1940. t.dotaccent = 333;
  1941. t.dieresis = 333;
  1942. t.ring = 333;
  1943. t.cedilla = 333;
  1944. t.hungarumlaut = 333;
  1945. t.ogonek = 333;
  1946. t.caron = 333;
  1947. t.emdash = 1000;
  1948. t.AE = 1000;
  1949. t.ordfeminine = 300;
  1950. t.Lslash = 667;
  1951. t.Oslash = 778;
  1952. t.OE = 1000;
  1953. t.ordmasculine = 330;
  1954. t.ae = 722;
  1955. t.dotlessi = 278;
  1956. t.lslash = 278;
  1957. t.oslash = 500;
  1958. t.oe = 722;
  1959. t.germandbls = 556;
  1960. t.Idieresis = 389;
  1961. t.eacute = 444;
  1962. t.abreve = 500;
  1963. t.uhungarumlaut = 556;
  1964. t.ecaron = 444;
  1965. t.Ydieresis = 722;
  1966. t.divide = 570;
  1967. t.Yacute = 722;
  1968. t.Acircumflex = 722;
  1969. t.aacute = 500;
  1970. t.Ucircumflex = 722;
  1971. t.yacute = 500;
  1972. t.scommaaccent = 389;
  1973. t.ecircumflex = 444;
  1974. t.Uring = 722;
  1975. t.Udieresis = 722;
  1976. t.aogonek = 500;
  1977. t.Uacute = 722;
  1978. t.uogonek = 556;
  1979. t.Edieresis = 667;
  1980. t.Dcroat = 722;
  1981. t.commaaccent = 250;
  1982. t.copyright = 747;
  1983. t.Emacron = 667;
  1984. t.ccaron = 444;
  1985. t.aring = 500;
  1986. t.Ncommaaccent = 722;
  1987. t.lacute = 278;
  1988. t.agrave = 500;
  1989. t.Tcommaaccent = 667;
  1990. t.Cacute = 722;
  1991. t.atilde = 500;
  1992. t.Edotaccent = 667;
  1993. t.scaron = 389;
  1994. t.scedilla = 389;
  1995. t.iacute = 278;
  1996. t.lozenge = 494;
  1997. t.Rcaron = 722;
  1998. t.Gcommaaccent = 778;
  1999. t.ucircumflex = 556;
  2000. t.acircumflex = 500;
  2001. t.Amacron = 722;
  2002. t.rcaron = 444;
  2003. t.ccedilla = 444;
  2004. t.Zdotaccent = 667;
  2005. t.Thorn = 611;
  2006. t.Omacron = 778;
  2007. t.Racute = 722;
  2008. t.Sacute = 556;
  2009. t.dcaron = 672;
  2010. t.Umacron = 722;
  2011. t.uring = 556;
  2012. t.threesuperior = 300;
  2013. t.Ograve = 778;
  2014. t.Agrave = 722;
  2015. t.Abreve = 722;
  2016. t.multiply = 570;
  2017. t.uacute = 556;
  2018. t.Tcaron = 667;
  2019. t.partialdiff = 494;
  2020. t.ydieresis = 500;
  2021. t.Nacute = 722;
  2022. t.icircumflex = 278;
  2023. t.Ecircumflex = 667;
  2024. t.adieresis = 500;
  2025. t.edieresis = 444;
  2026. t.cacute = 444;
  2027. t.nacute = 556;
  2028. t.umacron = 556;
  2029. t.Ncaron = 722;
  2030. t.Iacute = 389;
  2031. t.plusminus = 570;
  2032. t.brokenbar = 220;
  2033. t.registered = 747;
  2034. t.Gbreve = 778;
  2035. t.Idotaccent = 389;
  2036. t.summation = 600;
  2037. t.Egrave = 667;
  2038. t.racute = 444;
  2039. t.omacron = 500;
  2040. t.Zacute = 667;
  2041. t.Zcaron = 667;
  2042. t.greaterequal = 549;
  2043. t.Eth = 722;
  2044. t.Ccedilla = 722;
  2045. t.lcommaaccent = 278;
  2046. t.tcaron = 416;
  2047. t.eogonek = 444;
  2048. t.Uogonek = 722;
  2049. t.Aacute = 722;
  2050. t.Adieresis = 722;
  2051. t.egrave = 444;
  2052. t.zacute = 444;
  2053. t.iogonek = 278;
  2054. t.Oacute = 778;
  2055. t.oacute = 500;
  2056. t.amacron = 500;
  2057. t.sacute = 389;
  2058. t.idieresis = 278;
  2059. t.Ocircumflex = 778;
  2060. t.Ugrave = 722;
  2061. t.Delta = 612;
  2062. t.thorn = 556;
  2063. t.twosuperior = 300;
  2064. t.Odieresis = 778;
  2065. t.mu = 556;
  2066. t.igrave = 278;
  2067. t.ohungarumlaut = 500;
  2068. t.Eogonek = 667;
  2069. t.dcroat = 556;
  2070. t.threequarters = 750;
  2071. t.Scedilla = 556;
  2072. t.lcaron = 394;
  2073. t.Kcommaaccent = 778;
  2074. t.Lacute = 667;
  2075. t.trademark = 1000;
  2076. t.edotaccent = 444;
  2077. t.Igrave = 389;
  2078. t.Imacron = 389;
  2079. t.Lcaron = 667;
  2080. t.onehalf = 750;
  2081. t.lessequal = 549;
  2082. t.ocircumflex = 500;
  2083. t.ntilde = 556;
  2084. t.Uhungarumlaut = 722;
  2085. t.Eacute = 667;
  2086. t.emacron = 444;
  2087. t.gbreve = 500;
  2088. t.onequarter = 750;
  2089. t.Scaron = 556;
  2090. t.Scommaaccent = 556;
  2091. t.Ohungarumlaut = 778;
  2092. t.degree = 400;
  2093. t.ograve = 500;
  2094. t.Ccaron = 722;
  2095. t.ugrave = 556;
  2096. t.radical = 549;
  2097. t.Dcaron = 722;
  2098. t.rcommaaccent = 444;
  2099. t.Ntilde = 722;
  2100. t.otilde = 500;
  2101. t.Rcommaaccent = 722;
  2102. t.Lcommaaccent = 667;
  2103. t.Atilde = 722;
  2104. t.Aogonek = 722;
  2105. t.Aring = 722;
  2106. t.Otilde = 778;
  2107. t.zdotaccent = 444;
  2108. t.Ecaron = 667;
  2109. t.Iogonek = 389;
  2110. t.kcommaaccent = 556;
  2111. t.minus = 570;
  2112. t.Icircumflex = 389;
  2113. t.ncaron = 556;
  2114. t.tcommaaccent = 333;
  2115. t.logicalnot = 570;
  2116. t.odieresis = 500;
  2117. t.udieresis = 556;
  2118. t.notequal = 549;
  2119. t.gcommaaccent = 500;
  2120. t.eth = 500;
  2121. t.zcaron = 444;
  2122. t.ncommaaccent = 556;
  2123. t.onesuperior = 300;
  2124. t.imacron = 278;
  2125. t.Euro = 500;
  2126. });
  2127. t["Times-BoldItalic"] = (0, _core_utils.getLookupTableFactory)(function (t) {
  2128. t.space = 250;
  2129. t.exclam = 389;
  2130. t.quotedbl = 555;
  2131. t.numbersign = 500;
  2132. t.dollar = 500;
  2133. t.percent = 833;
  2134. t.ampersand = 778;
  2135. t.quoteright = 333;
  2136. t.parenleft = 333;
  2137. t.parenright = 333;
  2138. t.asterisk = 500;
  2139. t.plus = 570;
  2140. t.comma = 250;
  2141. t.hyphen = 333;
  2142. t.period = 250;
  2143. t.slash = 278;
  2144. t.zero = 500;
  2145. t.one = 500;
  2146. t.two = 500;
  2147. t.three = 500;
  2148. t.four = 500;
  2149. t.five = 500;
  2150. t.six = 500;
  2151. t.seven = 500;
  2152. t.eight = 500;
  2153. t.nine = 500;
  2154. t.colon = 333;
  2155. t.semicolon = 333;
  2156. t.less = 570;
  2157. t.equal = 570;
  2158. t.greater = 570;
  2159. t.question = 500;
  2160. t.at = 832;
  2161. t.A = 667;
  2162. t.B = 667;
  2163. t.C = 667;
  2164. t.D = 722;
  2165. t.E = 667;
  2166. t.F = 667;
  2167. t.G = 722;
  2168. t.H = 778;
  2169. t.I = 389;
  2170. t.J = 500;
  2171. t.K = 667;
  2172. t.L = 611;
  2173. t.M = 889;
  2174. t.N = 722;
  2175. t.O = 722;
  2176. t.P = 611;
  2177. t.Q = 722;
  2178. t.R = 667;
  2179. t.S = 556;
  2180. t.T = 611;
  2181. t.U = 722;
  2182. t.V = 667;
  2183. t.W = 889;
  2184. t.X = 667;
  2185. t.Y = 611;
  2186. t.Z = 611;
  2187. t.bracketleft = 333;
  2188. t.backslash = 278;
  2189. t.bracketright = 333;
  2190. t.asciicircum = 570;
  2191. t.underscore = 500;
  2192. t.quoteleft = 333;
  2193. t.a = 500;
  2194. t.b = 500;
  2195. t.c = 444;
  2196. t.d = 500;
  2197. t.e = 444;
  2198. t.f = 333;
  2199. t.g = 500;
  2200. t.h = 556;
  2201. t.i = 278;
  2202. t.j = 278;
  2203. t.k = 500;
  2204. t.l = 278;
  2205. t.m = 778;
  2206. t.n = 556;
  2207. t.o = 500;
  2208. t.p = 500;
  2209. t.q = 500;
  2210. t.r = 389;
  2211. t.s = 389;
  2212. t.t = 278;
  2213. t.u = 556;
  2214. t.v = 444;
  2215. t.w = 667;
  2216. t.x = 500;
  2217. t.y = 444;
  2218. t.z = 389;
  2219. t.braceleft = 348;
  2220. t.bar = 220;
  2221. t.braceright = 348;
  2222. t.asciitilde = 570;
  2223. t.exclamdown = 389;
  2224. t.cent = 500;
  2225. t.sterling = 500;
  2226. t.fraction = 167;
  2227. t.yen = 500;
  2228. t.florin = 500;
  2229. t.section = 500;
  2230. t.currency = 500;
  2231. t.quotesingle = 278;
  2232. t.quotedblleft = 500;
  2233. t.guillemotleft = 500;
  2234. t.guilsinglleft = 333;
  2235. t.guilsinglright = 333;
  2236. t.fi = 556;
  2237. t.fl = 556;
  2238. t.endash = 500;
  2239. t.dagger = 500;
  2240. t.daggerdbl = 500;
  2241. t.periodcentered = 250;
  2242. t.paragraph = 500;
  2243. t.bullet = 350;
  2244. t.quotesinglbase = 333;
  2245. t.quotedblbase = 500;
  2246. t.quotedblright = 500;
  2247. t.guillemotright = 500;
  2248. t.ellipsis = 1000;
  2249. t.perthousand = 1000;
  2250. t.questiondown = 500;
  2251. t.grave = 333;
  2252. t.acute = 333;
  2253. t.circumflex = 333;
  2254. t.tilde = 333;
  2255. t.macron = 333;
  2256. t.breve = 333;
  2257. t.dotaccent = 333;
  2258. t.dieresis = 333;
  2259. t.ring = 333;
  2260. t.cedilla = 333;
  2261. t.hungarumlaut = 333;
  2262. t.ogonek = 333;
  2263. t.caron = 333;
  2264. t.emdash = 1000;
  2265. t.AE = 944;
  2266. t.ordfeminine = 266;
  2267. t.Lslash = 611;
  2268. t.Oslash = 722;
  2269. t.OE = 944;
  2270. t.ordmasculine = 300;
  2271. t.ae = 722;
  2272. t.dotlessi = 278;
  2273. t.lslash = 278;
  2274. t.oslash = 500;
  2275. t.oe = 722;
  2276. t.germandbls = 500;
  2277. t.Idieresis = 389;
  2278. t.eacute = 444;
  2279. t.abreve = 500;
  2280. t.uhungarumlaut = 556;
  2281. t.ecaron = 444;
  2282. t.Ydieresis = 611;
  2283. t.divide = 570;
  2284. t.Yacute = 611;
  2285. t.Acircumflex = 667;
  2286. t.aacute = 500;
  2287. t.Ucircumflex = 722;
  2288. t.yacute = 444;
  2289. t.scommaaccent = 389;
  2290. t.ecircumflex = 444;
  2291. t.Uring = 722;
  2292. t.Udieresis = 722;
  2293. t.aogonek = 500;
  2294. t.Uacute = 722;
  2295. t.uogonek = 556;
  2296. t.Edieresis = 667;
  2297. t.Dcroat = 722;
  2298. t.commaaccent = 250;
  2299. t.copyright = 747;
  2300. t.Emacron = 667;
  2301. t.ccaron = 444;
  2302. t.aring = 500;
  2303. t.Ncommaaccent = 722;
  2304. t.lacute = 278;
  2305. t.agrave = 500;
  2306. t.Tcommaaccent = 611;
  2307. t.Cacute = 667;
  2308. t.atilde = 500;
  2309. t.Edotaccent = 667;
  2310. t.scaron = 389;
  2311. t.scedilla = 389;
  2312. t.iacute = 278;
  2313. t.lozenge = 494;
  2314. t.Rcaron = 667;
  2315. t.Gcommaaccent = 722;
  2316. t.ucircumflex = 556;
  2317. t.acircumflex = 500;
  2318. t.Amacron = 667;
  2319. t.rcaron = 389;
  2320. t.ccedilla = 444;
  2321. t.Zdotaccent = 611;
  2322. t.Thorn = 611;
  2323. t.Omacron = 722;
  2324. t.Racute = 667;
  2325. t.Sacute = 556;
  2326. t.dcaron = 608;
  2327. t.Umacron = 722;
  2328. t.uring = 556;
  2329. t.threesuperior = 300;
  2330. t.Ograve = 722;
  2331. t.Agrave = 667;
  2332. t.Abreve = 667;
  2333. t.multiply = 570;
  2334. t.uacute = 556;
  2335. t.Tcaron = 611;
  2336. t.partialdiff = 494;
  2337. t.ydieresis = 444;
  2338. t.Nacute = 722;
  2339. t.icircumflex = 278;
  2340. t.Ecircumflex = 667;
  2341. t.adieresis = 500;
  2342. t.edieresis = 444;
  2343. t.cacute = 444;
  2344. t.nacute = 556;
  2345. t.umacron = 556;
  2346. t.Ncaron = 722;
  2347. t.Iacute = 389;
  2348. t.plusminus = 570;
  2349. t.brokenbar = 220;
  2350. t.registered = 747;
  2351. t.Gbreve = 722;
  2352. t.Idotaccent = 389;
  2353. t.summation = 600;
  2354. t.Egrave = 667;
  2355. t.racute = 389;
  2356. t.omacron = 500;
  2357. t.Zacute = 611;
  2358. t.Zcaron = 611;
  2359. t.greaterequal = 549;
  2360. t.Eth = 722;
  2361. t.Ccedilla = 667;
  2362. t.lcommaaccent = 278;
  2363. t.tcaron = 366;
  2364. t.eogonek = 444;
  2365. t.Uogonek = 722;
  2366. t.Aacute = 667;
  2367. t.Adieresis = 667;
  2368. t.egrave = 444;
  2369. t.zacute = 389;
  2370. t.iogonek = 278;
  2371. t.Oacute = 722;
  2372. t.oacute = 500;
  2373. t.amacron = 500;
  2374. t.sacute = 389;
  2375. t.idieresis = 278;
  2376. t.Ocircumflex = 722;
  2377. t.Ugrave = 722;
  2378. t.Delta = 612;
  2379. t.thorn = 500;
  2380. t.twosuperior = 300;
  2381. t.Odieresis = 722;
  2382. t.mu = 576;
  2383. t.igrave = 278;
  2384. t.ohungarumlaut = 500;
  2385. t.Eogonek = 667;
  2386. t.dcroat = 500;
  2387. t.threequarters = 750;
  2388. t.Scedilla = 556;
  2389. t.lcaron = 382;
  2390. t.Kcommaaccent = 667;
  2391. t.Lacute = 611;
  2392. t.trademark = 1000;
  2393. t.edotaccent = 444;
  2394. t.Igrave = 389;
  2395. t.Imacron = 389;
  2396. t.Lcaron = 611;
  2397. t.onehalf = 750;
  2398. t.lessequal = 549;
  2399. t.ocircumflex = 500;
  2400. t.ntilde = 556;
  2401. t.Uhungarumlaut = 722;
  2402. t.Eacute = 667;
  2403. t.emacron = 444;
  2404. t.gbreve = 500;
  2405. t.onequarter = 750;
  2406. t.Scaron = 556;
  2407. t.Scommaaccent = 556;
  2408. t.Ohungarumlaut = 722;
  2409. t.degree = 400;
  2410. t.ograve = 500;
  2411. t.Ccaron = 667;
  2412. t.ugrave = 556;
  2413. t.radical = 549;
  2414. t.Dcaron = 722;
  2415. t.rcommaaccent = 389;
  2416. t.Ntilde = 722;
  2417. t.otilde = 500;
  2418. t.Rcommaaccent = 667;
  2419. t.Lcommaaccent = 611;
  2420. t.Atilde = 667;
  2421. t.Aogonek = 667;
  2422. t.Aring = 667;
  2423. t.Otilde = 722;
  2424. t.zdotaccent = 389;
  2425. t.Ecaron = 667;
  2426. t.Iogonek = 389;
  2427. t.kcommaaccent = 500;
  2428. t.minus = 606;
  2429. t.Icircumflex = 389;
  2430. t.ncaron = 556;
  2431. t.tcommaaccent = 278;
  2432. t.logicalnot = 606;
  2433. t.odieresis = 500;
  2434. t.udieresis = 556;
  2435. t.notequal = 549;
  2436. t.gcommaaccent = 500;
  2437. t.eth = 500;
  2438. t.zcaron = 389;
  2439. t.ncommaaccent = 556;
  2440. t.onesuperior = 300;
  2441. t.imacron = 278;
  2442. t.Euro = 500;
  2443. });
  2444. t["Times-Italic"] = (0, _core_utils.getLookupTableFactory)(function (t) {
  2445. t.space = 250;
  2446. t.exclam = 333;
  2447. t.quotedbl = 420;
  2448. t.numbersign = 500;
  2449. t.dollar = 500;
  2450. t.percent = 833;
  2451. t.ampersand = 778;
  2452. t.quoteright = 333;
  2453. t.parenleft = 333;
  2454. t.parenright = 333;
  2455. t.asterisk = 500;
  2456. t.plus = 675;
  2457. t.comma = 250;
  2458. t.hyphen = 333;
  2459. t.period = 250;
  2460. t.slash = 278;
  2461. t.zero = 500;
  2462. t.one = 500;
  2463. t.two = 500;
  2464. t.three = 500;
  2465. t.four = 500;
  2466. t.five = 500;
  2467. t.six = 500;
  2468. t.seven = 500;
  2469. t.eight = 500;
  2470. t.nine = 500;
  2471. t.colon = 333;
  2472. t.semicolon = 333;
  2473. t.less = 675;
  2474. t.equal = 675;
  2475. t.greater = 675;
  2476. t.question = 500;
  2477. t.at = 920;
  2478. t.A = 611;
  2479. t.B = 611;
  2480. t.C = 667;
  2481. t.D = 722;
  2482. t.E = 611;
  2483. t.F = 611;
  2484. t.G = 722;
  2485. t.H = 722;
  2486. t.I = 333;
  2487. t.J = 444;
  2488. t.K = 667;
  2489. t.L = 556;
  2490. t.M = 833;
  2491. t.N = 667;
  2492. t.O = 722;
  2493. t.P = 611;
  2494. t.Q = 722;
  2495. t.R = 611;
  2496. t.S = 500;
  2497. t.T = 556;
  2498. t.U = 722;
  2499. t.V = 611;
  2500. t.W = 833;
  2501. t.X = 611;
  2502. t.Y = 556;
  2503. t.Z = 556;
  2504. t.bracketleft = 389;
  2505. t.backslash = 278;
  2506. t.bracketright = 389;
  2507. t.asciicircum = 422;
  2508. t.underscore = 500;
  2509. t.quoteleft = 333;
  2510. t.a = 500;
  2511. t.b = 500;
  2512. t.c = 444;
  2513. t.d = 500;
  2514. t.e = 444;
  2515. t.f = 278;
  2516. t.g = 500;
  2517. t.h = 500;
  2518. t.i = 278;
  2519. t.j = 278;
  2520. t.k = 444;
  2521. t.l = 278;
  2522. t.m = 722;
  2523. t.n = 500;
  2524. t.o = 500;
  2525. t.p = 500;
  2526. t.q = 500;
  2527. t.r = 389;
  2528. t.s = 389;
  2529. t.t = 278;
  2530. t.u = 500;
  2531. t.v = 444;
  2532. t.w = 667;
  2533. t.x = 444;
  2534. t.y = 444;
  2535. t.z = 389;
  2536. t.braceleft = 400;
  2537. t.bar = 275;
  2538. t.braceright = 400;
  2539. t.asciitilde = 541;
  2540. t.exclamdown = 389;
  2541. t.cent = 500;
  2542. t.sterling = 500;
  2543. t.fraction = 167;
  2544. t.yen = 500;
  2545. t.florin = 500;
  2546. t.section = 500;
  2547. t.currency = 500;
  2548. t.quotesingle = 214;
  2549. t.quotedblleft = 556;
  2550. t.guillemotleft = 500;
  2551. t.guilsinglleft = 333;
  2552. t.guilsinglright = 333;
  2553. t.fi = 500;
  2554. t.fl = 500;
  2555. t.endash = 500;
  2556. t.dagger = 500;
  2557. t.daggerdbl = 500;
  2558. t.periodcentered = 250;
  2559. t.paragraph = 523;
  2560. t.bullet = 350;
  2561. t.quotesinglbase = 333;
  2562. t.quotedblbase = 556;
  2563. t.quotedblright = 556;
  2564. t.guillemotright = 500;
  2565. t.ellipsis = 889;
  2566. t.perthousand = 1000;
  2567. t.questiondown = 500;
  2568. t.grave = 333;
  2569. t.acute = 333;
  2570. t.circumflex = 333;
  2571. t.tilde = 333;
  2572. t.macron = 333;
  2573. t.breve = 333;
  2574. t.dotaccent = 333;
  2575. t.dieresis = 333;
  2576. t.ring = 333;
  2577. t.cedilla = 333;
  2578. t.hungarumlaut = 333;
  2579. t.ogonek = 333;
  2580. t.caron = 333;
  2581. t.emdash = 889;
  2582. t.AE = 889;
  2583. t.ordfeminine = 276;
  2584. t.Lslash = 556;
  2585. t.Oslash = 722;
  2586. t.OE = 944;
  2587. t.ordmasculine = 310;
  2588. t.ae = 667;
  2589. t.dotlessi = 278;
  2590. t.lslash = 278;
  2591. t.oslash = 500;
  2592. t.oe = 667;
  2593. t.germandbls = 500;
  2594. t.Idieresis = 333;
  2595. t.eacute = 444;
  2596. t.abreve = 500;
  2597. t.uhungarumlaut = 500;
  2598. t.ecaron = 444;
  2599. t.Ydieresis = 556;
  2600. t.divide = 675;
  2601. t.Yacute = 556;
  2602. t.Acircumflex = 611;
  2603. t.aacute = 500;
  2604. t.Ucircumflex = 722;
  2605. t.yacute = 444;
  2606. t.scommaaccent = 389;
  2607. t.ecircumflex = 444;
  2608. t.Uring = 722;
  2609. t.Udieresis = 722;
  2610. t.aogonek = 500;
  2611. t.Uacute = 722;
  2612. t.uogonek = 500;
  2613. t.Edieresis = 611;
  2614. t.Dcroat = 722;
  2615. t.commaaccent = 250;
  2616. t.copyright = 760;
  2617. t.Emacron = 611;
  2618. t.ccaron = 444;
  2619. t.aring = 500;
  2620. t.Ncommaaccent = 667;
  2621. t.lacute = 278;
  2622. t.agrave = 500;
  2623. t.Tcommaaccent = 556;
  2624. t.Cacute = 667;
  2625. t.atilde = 500;
  2626. t.Edotaccent = 611;
  2627. t.scaron = 389;
  2628. t.scedilla = 389;
  2629. t.iacute = 278;
  2630. t.lozenge = 471;
  2631. t.Rcaron = 611;
  2632. t.Gcommaaccent = 722;
  2633. t.ucircumflex = 500;
  2634. t.acircumflex = 500;
  2635. t.Amacron = 611;
  2636. t.rcaron = 389;
  2637. t.ccedilla = 444;
  2638. t.Zdotaccent = 556;
  2639. t.Thorn = 611;
  2640. t.Omacron = 722;
  2641. t.Racute = 611;
  2642. t.Sacute = 500;
  2643. t.dcaron = 544;
  2644. t.Umacron = 722;
  2645. t.uring = 500;
  2646. t.threesuperior = 300;
  2647. t.Ograve = 722;
  2648. t.Agrave = 611;
  2649. t.Abreve = 611;
  2650. t.multiply = 675;
  2651. t.uacute = 500;
  2652. t.Tcaron = 556;
  2653. t.partialdiff = 476;
  2654. t.ydieresis = 444;
  2655. t.Nacute = 667;
  2656. t.icircumflex = 278;
  2657. t.Ecircumflex = 611;
  2658. t.adieresis = 500;
  2659. t.edieresis = 444;
  2660. t.cacute = 444;
  2661. t.nacute = 500;
  2662. t.umacron = 500;
  2663. t.Ncaron = 667;
  2664. t.Iacute = 333;
  2665. t.plusminus = 675;
  2666. t.brokenbar = 275;
  2667. t.registered = 760;
  2668. t.Gbreve = 722;
  2669. t.Idotaccent = 333;
  2670. t.summation = 600;
  2671. t.Egrave = 611;
  2672. t.racute = 389;
  2673. t.omacron = 500;
  2674. t.Zacute = 556;
  2675. t.Zcaron = 556;
  2676. t.greaterequal = 549;
  2677. t.Eth = 722;
  2678. t.Ccedilla = 667;
  2679. t.lcommaaccent = 278;
  2680. t.tcaron = 300;
  2681. t.eogonek = 444;
  2682. t.Uogonek = 722;
  2683. t.Aacute = 611;
  2684. t.Adieresis = 611;
  2685. t.egrave = 444;
  2686. t.zacute = 389;
  2687. t.iogonek = 278;
  2688. t.Oacute = 722;
  2689. t.oacute = 500;
  2690. t.amacron = 500;
  2691. t.sacute = 389;
  2692. t.idieresis = 278;
  2693. t.Ocircumflex = 722;
  2694. t.Ugrave = 722;
  2695. t.Delta = 612;
  2696. t.thorn = 500;
  2697. t.twosuperior = 300;
  2698. t.Odieresis = 722;
  2699. t.mu = 500;
  2700. t.igrave = 278;
  2701. t.ohungarumlaut = 500;
  2702. t.Eogonek = 611;
  2703. t.dcroat = 500;
  2704. t.threequarters = 750;
  2705. t.Scedilla = 500;
  2706. t.lcaron = 300;
  2707. t.Kcommaaccent = 667;
  2708. t.Lacute = 556;
  2709. t.trademark = 980;
  2710. t.edotaccent = 444;
  2711. t.Igrave = 333;
  2712. t.Imacron = 333;
  2713. t.Lcaron = 611;
  2714. t.onehalf = 750;
  2715. t.lessequal = 549;
  2716. t.ocircumflex = 500;
  2717. t.ntilde = 500;
  2718. t.Uhungarumlaut = 722;
  2719. t.Eacute = 611;
  2720. t.emacron = 444;
  2721. t.gbreve = 500;
  2722. t.onequarter = 750;
  2723. t.Scaron = 500;
  2724. t.Scommaaccent = 500;
  2725. t.Ohungarumlaut = 722;
  2726. t.degree = 400;
  2727. t.ograve = 500;
  2728. t.Ccaron = 667;
  2729. t.ugrave = 500;
  2730. t.radical = 453;
  2731. t.Dcaron = 722;
  2732. t.rcommaaccent = 389;
  2733. t.Ntilde = 667;
  2734. t.otilde = 500;
  2735. t.Rcommaaccent = 611;
  2736. t.Lcommaaccent = 556;
  2737. t.Atilde = 611;
  2738. t.Aogonek = 611;
  2739. t.Aring = 611;
  2740. t.Otilde = 722;
  2741. t.zdotaccent = 389;
  2742. t.Ecaron = 611;
  2743. t.Iogonek = 333;
  2744. t.kcommaaccent = 444;
  2745. t.minus = 675;
  2746. t.Icircumflex = 333;
  2747. t.ncaron = 500;
  2748. t.tcommaaccent = 278;
  2749. t.logicalnot = 675;
  2750. t.odieresis = 500;
  2751. t.udieresis = 500;
  2752. t.notequal = 549;
  2753. t.gcommaaccent = 500;
  2754. t.eth = 500;
  2755. t.zcaron = 389;
  2756. t.ncommaaccent = 500;
  2757. t.onesuperior = 300;
  2758. t.imacron = 278;
  2759. t.Euro = 500;
  2760. });
  2761. t.ZapfDingbats = (0, _core_utils.getLookupTableFactory)(function (t) {
  2762. t.space = 278;
  2763. t.a1 = 974;
  2764. t.a2 = 961;
  2765. t.a202 = 974;
  2766. t.a3 = 980;
  2767. t.a4 = 719;
  2768. t.a5 = 789;
  2769. t.a119 = 790;
  2770. t.a118 = 791;
  2771. t.a117 = 690;
  2772. t.a11 = 960;
  2773. t.a12 = 939;
  2774. t.a13 = 549;
  2775. t.a14 = 855;
  2776. t.a15 = 911;
  2777. t.a16 = 933;
  2778. t.a105 = 911;
  2779. t.a17 = 945;
  2780. t.a18 = 974;
  2781. t.a19 = 755;
  2782. t.a20 = 846;
  2783. t.a21 = 762;
  2784. t.a22 = 761;
  2785. t.a23 = 571;
  2786. t.a24 = 677;
  2787. t.a25 = 763;
  2788. t.a26 = 760;
  2789. t.a27 = 759;
  2790. t.a28 = 754;
  2791. t.a6 = 494;
  2792. t.a7 = 552;
  2793. t.a8 = 537;
  2794. t.a9 = 577;
  2795. t.a10 = 692;
  2796. t.a29 = 786;
  2797. t.a30 = 788;
  2798. t.a31 = 788;
  2799. t.a32 = 790;
  2800. t.a33 = 793;
  2801. t.a34 = 794;
  2802. t.a35 = 816;
  2803. t.a36 = 823;
  2804. t.a37 = 789;
  2805. t.a38 = 841;
  2806. t.a39 = 823;
  2807. t.a40 = 833;
  2808. t.a41 = 816;
  2809. t.a42 = 831;
  2810. t.a43 = 923;
  2811. t.a44 = 744;
  2812. t.a45 = 723;
  2813. t.a46 = 749;
  2814. t.a47 = 790;
  2815. t.a48 = 792;
  2816. t.a49 = 695;
  2817. t.a50 = 776;
  2818. t.a51 = 768;
  2819. t.a52 = 792;
  2820. t.a53 = 759;
  2821. t.a54 = 707;
  2822. t.a55 = 708;
  2823. t.a56 = 682;
  2824. t.a57 = 701;
  2825. t.a58 = 826;
  2826. t.a59 = 815;
  2827. t.a60 = 789;
  2828. t.a61 = 789;
  2829. t.a62 = 707;
  2830. t.a63 = 687;
  2831. t.a64 = 696;
  2832. t.a65 = 689;
  2833. t.a66 = 786;
  2834. t.a67 = 787;
  2835. t.a68 = 713;
  2836. t.a69 = 791;
  2837. t.a70 = 785;
  2838. t.a71 = 791;
  2839. t.a72 = 873;
  2840. t.a73 = 761;
  2841. t.a74 = 762;
  2842. t.a203 = 762;
  2843. t.a75 = 759;
  2844. t.a204 = 759;
  2845. t.a76 = 892;
  2846. t.a77 = 892;
  2847. t.a78 = 788;
  2848. t.a79 = 784;
  2849. t.a81 = 438;
  2850. t.a82 = 138;
  2851. t.a83 = 277;
  2852. t.a84 = 415;
  2853. t.a97 = 392;
  2854. t.a98 = 392;
  2855. t.a99 = 668;
  2856. t.a100 = 668;
  2857. t.a89 = 390;
  2858. t.a90 = 390;
  2859. t.a93 = 317;
  2860. t.a94 = 317;
  2861. t.a91 = 276;
  2862. t.a92 = 276;
  2863. t.a205 = 509;
  2864. t.a85 = 509;
  2865. t.a206 = 410;
  2866. t.a86 = 410;
  2867. t.a87 = 234;
  2868. t.a88 = 234;
  2869. t.a95 = 334;
  2870. t.a96 = 334;
  2871. t.a101 = 732;
  2872. t.a102 = 544;
  2873. t.a103 = 544;
  2874. t.a104 = 910;
  2875. t.a106 = 667;
  2876. t.a107 = 760;
  2877. t.a108 = 760;
  2878. t.a112 = 776;
  2879. t.a111 = 595;
  2880. t.a110 = 694;
  2881. t.a109 = 626;
  2882. t.a120 = 788;
  2883. t.a121 = 788;
  2884. t.a122 = 788;
  2885. t.a123 = 788;
  2886. t.a124 = 788;
  2887. t.a125 = 788;
  2888. t.a126 = 788;
  2889. t.a127 = 788;
  2890. t.a128 = 788;
  2891. t.a129 = 788;
  2892. t.a130 = 788;
  2893. t.a131 = 788;
  2894. t.a132 = 788;
  2895. t.a133 = 788;
  2896. t.a134 = 788;
  2897. t.a135 = 788;
  2898. t.a136 = 788;
  2899. t.a137 = 788;
  2900. t.a138 = 788;
  2901. t.a139 = 788;
  2902. t.a140 = 788;
  2903. t.a141 = 788;
  2904. t.a142 = 788;
  2905. t.a143 = 788;
  2906. t.a144 = 788;
  2907. t.a145 = 788;
  2908. t.a146 = 788;
  2909. t.a147 = 788;
  2910. t.a148 = 788;
  2911. t.a149 = 788;
  2912. t.a150 = 788;
  2913. t.a151 = 788;
  2914. t.a152 = 788;
  2915. t.a153 = 788;
  2916. t.a154 = 788;
  2917. t.a155 = 788;
  2918. t.a156 = 788;
  2919. t.a157 = 788;
  2920. t.a158 = 788;
  2921. t.a159 = 788;
  2922. t.a160 = 894;
  2923. t.a161 = 838;
  2924. t.a163 = 1016;
  2925. t.a164 = 458;
  2926. t.a196 = 748;
  2927. t.a165 = 924;
  2928. t.a192 = 748;
  2929. t.a166 = 918;
  2930. t.a167 = 927;
  2931. t.a168 = 928;
  2932. t.a169 = 928;
  2933. t.a170 = 834;
  2934. t.a171 = 873;
  2935. t.a172 = 828;
  2936. t.a173 = 924;
  2937. t.a162 = 924;
  2938. t.a174 = 917;
  2939. t.a175 = 930;
  2940. t.a176 = 931;
  2941. t.a177 = 463;
  2942. t.a178 = 883;
  2943. t.a179 = 836;
  2944. t.a193 = 836;
  2945. t.a180 = 867;
  2946. t.a199 = 867;
  2947. t.a181 = 696;
  2948. t.a200 = 696;
  2949. t.a182 = 874;
  2950. t.a201 = 874;
  2951. t.a183 = 760;
  2952. t.a184 = 946;
  2953. t.a197 = 771;
  2954. t.a185 = 865;
  2955. t.a194 = 771;
  2956. t.a198 = 888;
  2957. t.a186 = 967;
  2958. t.a195 = 888;
  2959. t.a187 = 831;
  2960. t.a188 = 873;
  2961. t.a189 = 927;
  2962. t.a190 = 970;
  2963. t.a191 = 918;
  2964. });
  2965. });
  2966. exports.getMetrics = getMetrics;
  2967. const getFontBasicMetrics = (0, _core_utils.getLookupTableFactory)(function (t) {
  2968. t.Courier = {
  2969. ascent: 629,
  2970. descent: -157,
  2971. capHeight: 562,
  2972. xHeight: -426
  2973. };
  2974. t["Courier-Bold"] = {
  2975. ascent: 629,
  2976. descent: -157,
  2977. capHeight: 562,
  2978. xHeight: 439
  2979. };
  2980. t["Courier-Oblique"] = {
  2981. ascent: 629,
  2982. descent: -157,
  2983. capHeight: 562,
  2984. xHeight: 426
  2985. };
  2986. t["Courier-BoldOblique"] = {
  2987. ascent: 629,
  2988. descent: -157,
  2989. capHeight: 562,
  2990. xHeight: 426
  2991. };
  2992. t.Helvetica = {
  2993. ascent: 718,
  2994. descent: -207,
  2995. capHeight: 718,
  2996. xHeight: 523
  2997. };
  2998. t["Helvetica-Bold"] = {
  2999. ascent: 718,
  3000. descent: -207,
  3001. capHeight: 718,
  3002. xHeight: 532
  3003. };
  3004. t["Helvetica-Oblique"] = {
  3005. ascent: 718,
  3006. descent: -207,
  3007. capHeight: 718,
  3008. xHeight: 523
  3009. };
  3010. t["Helvetica-BoldOblique"] = {
  3011. ascent: 718,
  3012. descent: -207,
  3013. capHeight: 718,
  3014. xHeight: 532
  3015. };
  3016. t["Times-Roman"] = {
  3017. ascent: 683,
  3018. descent: -217,
  3019. capHeight: 662,
  3020. xHeight: 450
  3021. };
  3022. t["Times-Bold"] = {
  3023. ascent: 683,
  3024. descent: -217,
  3025. capHeight: 676,
  3026. xHeight: 461
  3027. };
  3028. t["Times-Italic"] = {
  3029. ascent: 683,
  3030. descent: -217,
  3031. capHeight: 653,
  3032. xHeight: 441
  3033. };
  3034. t["Times-BoldItalic"] = {
  3035. ascent: 683,
  3036. descent: -217,
  3037. capHeight: 669,
  3038. xHeight: 462
  3039. };
  3040. t.Symbol = {
  3041. ascent: Math.NaN,
  3042. descent: Math.NaN,
  3043. capHeight: Math.NaN,
  3044. xHeight: Math.NaN
  3045. };
  3046. t.ZapfDingbats = {
  3047. ascent: Math.NaN,
  3048. descent: Math.NaN,
  3049. capHeight: Math.NaN,
  3050. xHeight: Math.NaN
  3051. };
  3052. });
  3053. exports.getFontBasicMetrics = getFontBasicMetrics;