The reconcile package is used for DOM reconcilation in Isomorphic Go web applications.

entity.go 98KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253
  1. // Copyright 2010 The Go Authors. All rights reserved.
  2. // Use of this source code is governed by a BSD-style
  3. // license that can be found in the LICENSE file.
  4. package html
  5. // All entities that do not end with ';' are 6 or fewer bytes long.
  6. const longestEntityWithoutSemicolon = 6
  7. // entity is a map from HTML entity names to their values. The semicolon matters:
  8. // https://html.spec.whatwg.org/multipage/syntax.html#named-character-references
  9. // lists both "amp" and "amp;" as two separate entries.
  10. //
  11. // Note that the HTML5 list is larger than the HTML4 list at
  12. // http://www.w3.org/TR/html4/sgml/entities.html
  13. var entity = map[string]rune{
  14. "AElig;": '\U000000C6',
  15. "AMP;": '\U00000026',
  16. "Aacute;": '\U000000C1',
  17. "Abreve;": '\U00000102',
  18. "Acirc;": '\U000000C2',
  19. "Acy;": '\U00000410',
  20. "Afr;": '\U0001D504',
  21. "Agrave;": '\U000000C0',
  22. "Alpha;": '\U00000391',
  23. "Amacr;": '\U00000100',
  24. "And;": '\U00002A53',
  25. "Aogon;": '\U00000104',
  26. "Aopf;": '\U0001D538',
  27. "ApplyFunction;": '\U00002061',
  28. "Aring;": '\U000000C5',
  29. "Ascr;": '\U0001D49C',
  30. "Assign;": '\U00002254',
  31. "Atilde;": '\U000000C3',
  32. "Auml;": '\U000000C4',
  33. "Backslash;": '\U00002216',
  34. "Barv;": '\U00002AE7',
  35. "Barwed;": '\U00002306',
  36. "Bcy;": '\U00000411',
  37. "Because;": '\U00002235',
  38. "Bernoullis;": '\U0000212C',
  39. "Beta;": '\U00000392',
  40. "Bfr;": '\U0001D505',
  41. "Bopf;": '\U0001D539',
  42. "Breve;": '\U000002D8',
  43. "Bscr;": '\U0000212C',
  44. "Bumpeq;": '\U0000224E',
  45. "CHcy;": '\U00000427',
  46. "COPY;": '\U000000A9',
  47. "Cacute;": '\U00000106',
  48. "Cap;": '\U000022D2',
  49. "CapitalDifferentialD;": '\U00002145',
  50. "Cayleys;": '\U0000212D',
  51. "Ccaron;": '\U0000010C',
  52. "Ccedil;": '\U000000C7',
  53. "Ccirc;": '\U00000108',
  54. "Cconint;": '\U00002230',
  55. "Cdot;": '\U0000010A',
  56. "Cedilla;": '\U000000B8',
  57. "CenterDot;": '\U000000B7',
  58. "Cfr;": '\U0000212D',
  59. "Chi;": '\U000003A7',
  60. "CircleDot;": '\U00002299',
  61. "CircleMinus;": '\U00002296',
  62. "CirclePlus;": '\U00002295',
  63. "CircleTimes;": '\U00002297',
  64. "ClockwiseContourIntegral;": '\U00002232',
  65. "CloseCurlyDoubleQuote;": '\U0000201D',
  66. "CloseCurlyQuote;": '\U00002019',
  67. "Colon;": '\U00002237',
  68. "Colone;": '\U00002A74',
  69. "Congruent;": '\U00002261',
  70. "Conint;": '\U0000222F',
  71. "ContourIntegral;": '\U0000222E',
  72. "Copf;": '\U00002102',
  73. "Coproduct;": '\U00002210',
  74. "CounterClockwiseContourIntegral;": '\U00002233',
  75. "Cross;": '\U00002A2F',
  76. "Cscr;": '\U0001D49E',
  77. "Cup;": '\U000022D3',
  78. "CupCap;": '\U0000224D',
  79. "DD;": '\U00002145',
  80. "DDotrahd;": '\U00002911',
  81. "DJcy;": '\U00000402',
  82. "DScy;": '\U00000405',
  83. "DZcy;": '\U0000040F',
  84. "Dagger;": '\U00002021',
  85. "Darr;": '\U000021A1',
  86. "Dashv;": '\U00002AE4',
  87. "Dcaron;": '\U0000010E',
  88. "Dcy;": '\U00000414',
  89. "Del;": '\U00002207',
  90. "Delta;": '\U00000394',
  91. "Dfr;": '\U0001D507',
  92. "DiacriticalAcute;": '\U000000B4',
  93. "DiacriticalDot;": '\U000002D9',
  94. "DiacriticalDoubleAcute;": '\U000002DD',
  95. "DiacriticalGrave;": '\U00000060',
  96. "DiacriticalTilde;": '\U000002DC',
  97. "Diamond;": '\U000022C4',
  98. "DifferentialD;": '\U00002146',
  99. "Dopf;": '\U0001D53B',
  100. "Dot;": '\U000000A8',
  101. "DotDot;": '\U000020DC',
  102. "DotEqual;": '\U00002250',
  103. "DoubleContourIntegral;": '\U0000222F',
  104. "DoubleDot;": '\U000000A8',
  105. "DoubleDownArrow;": '\U000021D3',
  106. "DoubleLeftArrow;": '\U000021D0',
  107. "DoubleLeftRightArrow;": '\U000021D4',
  108. "DoubleLeftTee;": '\U00002AE4',
  109. "DoubleLongLeftArrow;": '\U000027F8',
  110. "DoubleLongLeftRightArrow;": '\U000027FA',
  111. "DoubleLongRightArrow;": '\U000027F9',
  112. "DoubleRightArrow;": '\U000021D2',
  113. "DoubleRightTee;": '\U000022A8',
  114. "DoubleUpArrow;": '\U000021D1',
  115. "DoubleUpDownArrow;": '\U000021D5',
  116. "DoubleVerticalBar;": '\U00002225',
  117. "DownArrow;": '\U00002193',
  118. "DownArrowBar;": '\U00002913',
  119. "DownArrowUpArrow;": '\U000021F5',
  120. "DownBreve;": '\U00000311',
  121. "DownLeftRightVector;": '\U00002950',
  122. "DownLeftTeeVector;": '\U0000295E',
  123. "DownLeftVector;": '\U000021BD',
  124. "DownLeftVectorBar;": '\U00002956',
  125. "DownRightTeeVector;": '\U0000295F',
  126. "DownRightVector;": '\U000021C1',
  127. "DownRightVectorBar;": '\U00002957',
  128. "DownTee;": '\U000022A4',
  129. "DownTeeArrow;": '\U000021A7',
  130. "Downarrow;": '\U000021D3',
  131. "Dscr;": '\U0001D49F',
  132. "Dstrok;": '\U00000110',
  133. "ENG;": '\U0000014A',
  134. "ETH;": '\U000000D0',
  135. "Eacute;": '\U000000C9',
  136. "Ecaron;": '\U0000011A',
  137. "Ecirc;": '\U000000CA',
  138. "Ecy;": '\U0000042D',
  139. "Edot;": '\U00000116',
  140. "Efr;": '\U0001D508',
  141. "Egrave;": '\U000000C8',
  142. "Element;": '\U00002208',
  143. "Emacr;": '\U00000112',
  144. "EmptySmallSquare;": '\U000025FB',
  145. "EmptyVerySmallSquare;": '\U000025AB',
  146. "Eogon;": '\U00000118',
  147. "Eopf;": '\U0001D53C',
  148. "Epsilon;": '\U00000395',
  149. "Equal;": '\U00002A75',
  150. "EqualTilde;": '\U00002242',
  151. "Equilibrium;": '\U000021CC',
  152. "Escr;": '\U00002130',
  153. "Esim;": '\U00002A73',
  154. "Eta;": '\U00000397',
  155. "Euml;": '\U000000CB',
  156. "Exists;": '\U00002203',
  157. "ExponentialE;": '\U00002147',
  158. "Fcy;": '\U00000424',
  159. "Ffr;": '\U0001D509',
  160. "FilledSmallSquare;": '\U000025FC',
  161. "FilledVerySmallSquare;": '\U000025AA',
  162. "Fopf;": '\U0001D53D',
  163. "ForAll;": '\U00002200',
  164. "Fouriertrf;": '\U00002131',
  165. "Fscr;": '\U00002131',
  166. "GJcy;": '\U00000403',
  167. "GT;": '\U0000003E',
  168. "Gamma;": '\U00000393',
  169. "Gammad;": '\U000003DC',
  170. "Gbreve;": '\U0000011E',
  171. "Gcedil;": '\U00000122',
  172. "Gcirc;": '\U0000011C',
  173. "Gcy;": '\U00000413',
  174. "Gdot;": '\U00000120',
  175. "Gfr;": '\U0001D50A',
  176. "Gg;": '\U000022D9',
  177. "Gopf;": '\U0001D53E',
  178. "GreaterEqual;": '\U00002265',
  179. "GreaterEqualLess;": '\U000022DB',
  180. "GreaterFullEqual;": '\U00002267',
  181. "GreaterGreater;": '\U00002AA2',
  182. "GreaterLess;": '\U00002277',
  183. "GreaterSlantEqual;": '\U00002A7E',
  184. "GreaterTilde;": '\U00002273',
  185. "Gscr;": '\U0001D4A2',
  186. "Gt;": '\U0000226B',
  187. "HARDcy;": '\U0000042A',
  188. "Hacek;": '\U000002C7',
  189. "Hat;": '\U0000005E',
  190. "Hcirc;": '\U00000124',
  191. "Hfr;": '\U0000210C',
  192. "HilbertSpace;": '\U0000210B',
  193. "Hopf;": '\U0000210D',
  194. "HorizontalLine;": '\U00002500',
  195. "Hscr;": '\U0000210B',
  196. "Hstrok;": '\U00000126',
  197. "HumpDownHump;": '\U0000224E',
  198. "HumpEqual;": '\U0000224F',
  199. "IEcy;": '\U00000415',
  200. "IJlig;": '\U00000132',
  201. "IOcy;": '\U00000401',
  202. "Iacute;": '\U000000CD',
  203. "Icirc;": '\U000000CE',
  204. "Icy;": '\U00000418',
  205. "Idot;": '\U00000130',
  206. "Ifr;": '\U00002111',
  207. "Igrave;": '\U000000CC',
  208. "Im;": '\U00002111',
  209. "Imacr;": '\U0000012A',
  210. "ImaginaryI;": '\U00002148',
  211. "Implies;": '\U000021D2',
  212. "Int;": '\U0000222C',
  213. "Integral;": '\U0000222B',
  214. "Intersection;": '\U000022C2',
  215. "InvisibleComma;": '\U00002063',
  216. "InvisibleTimes;": '\U00002062',
  217. "Iogon;": '\U0000012E',
  218. "Iopf;": '\U0001D540',
  219. "Iota;": '\U00000399',
  220. "Iscr;": '\U00002110',
  221. "Itilde;": '\U00000128',
  222. "Iukcy;": '\U00000406',
  223. "Iuml;": '\U000000CF',
  224. "Jcirc;": '\U00000134',
  225. "Jcy;": '\U00000419',
  226. "Jfr;": '\U0001D50D',
  227. "Jopf;": '\U0001D541',
  228. "Jscr;": '\U0001D4A5',
  229. "Jsercy;": '\U00000408',
  230. "Jukcy;": '\U00000404',
  231. "KHcy;": '\U00000425',
  232. "KJcy;": '\U0000040C',
  233. "Kappa;": '\U0000039A',
  234. "Kcedil;": '\U00000136',
  235. "Kcy;": '\U0000041A',
  236. "Kfr;": '\U0001D50E',
  237. "Kopf;": '\U0001D542',
  238. "Kscr;": '\U0001D4A6',
  239. "LJcy;": '\U00000409',
  240. "LT;": '\U0000003C',
  241. "Lacute;": '\U00000139',
  242. "Lambda;": '\U0000039B',
  243. "Lang;": '\U000027EA',
  244. "Laplacetrf;": '\U00002112',
  245. "Larr;": '\U0000219E',
  246. "Lcaron;": '\U0000013D',
  247. "Lcedil;": '\U0000013B',
  248. "Lcy;": '\U0000041B',
  249. "LeftAngleBracket;": '\U000027E8',
  250. "LeftArrow;": '\U00002190',
  251. "LeftArrowBar;": '\U000021E4',
  252. "LeftArrowRightArrow;": '\U000021C6',
  253. "LeftCeiling;": '\U00002308',
  254. "LeftDoubleBracket;": '\U000027E6',
  255. "LeftDownTeeVector;": '\U00002961',
  256. "LeftDownVector;": '\U000021C3',
  257. "LeftDownVectorBar;": '\U00002959',
  258. "LeftFloor;": '\U0000230A',
  259. "LeftRightArrow;": '\U00002194',
  260. "LeftRightVector;": '\U0000294E',
  261. "LeftTee;": '\U000022A3',
  262. "LeftTeeArrow;": '\U000021A4',
  263. "LeftTeeVector;": '\U0000295A',
  264. "LeftTriangle;": '\U000022B2',
  265. "LeftTriangleBar;": '\U000029CF',
  266. "LeftTriangleEqual;": '\U000022B4',
  267. "LeftUpDownVector;": '\U00002951',
  268. "LeftUpTeeVector;": '\U00002960',
  269. "LeftUpVector;": '\U000021BF',
  270. "LeftUpVectorBar;": '\U00002958',
  271. "LeftVector;": '\U000021BC',
  272. "LeftVectorBar;": '\U00002952',
  273. "Leftarrow;": '\U000021D0',
  274. "Leftrightarrow;": '\U000021D4',
  275. "LessEqualGreater;": '\U000022DA',
  276. "LessFullEqual;": '\U00002266',
  277. "LessGreater;": '\U00002276',
  278. "LessLess;": '\U00002AA1',
  279. "LessSlantEqual;": '\U00002A7D',
  280. "LessTilde;": '\U00002272',
  281. "Lfr;": '\U0001D50F',
  282. "Ll;": '\U000022D8',
  283. "Lleftarrow;": '\U000021DA',
  284. "Lmidot;": '\U0000013F',
  285. "LongLeftArrow;": '\U000027F5',
  286. "LongLeftRightArrow;": '\U000027F7',
  287. "LongRightArrow;": '\U000027F6',
  288. "Longleftarrow;": '\U000027F8',
  289. "Longleftrightarrow;": '\U000027FA',
  290. "Longrightarrow;": '\U000027F9',
  291. "Lopf;": '\U0001D543',
  292. "LowerLeftArrow;": '\U00002199',
  293. "LowerRightArrow;": '\U00002198',
  294. "Lscr;": '\U00002112',
  295. "Lsh;": '\U000021B0',
  296. "Lstrok;": '\U00000141',
  297. "Lt;": '\U0000226A',
  298. "Map;": '\U00002905',
  299. "Mcy;": '\U0000041C',
  300. "MediumSpace;": '\U0000205F',
  301. "Mellintrf;": '\U00002133',
  302. "Mfr;": '\U0001D510',
  303. "MinusPlus;": '\U00002213',
  304. "Mopf;": '\U0001D544',
  305. "Mscr;": '\U00002133',
  306. "Mu;": '\U0000039C',
  307. "NJcy;": '\U0000040A',
  308. "Nacute;": '\U00000143',
  309. "Ncaron;": '\U00000147',
  310. "Ncedil;": '\U00000145',
  311. "Ncy;": '\U0000041D',
  312. "NegativeMediumSpace;": '\U0000200B',
  313. "NegativeThickSpace;": '\U0000200B',
  314. "NegativeThinSpace;": '\U0000200B',
  315. "NegativeVeryThinSpace;": '\U0000200B',
  316. "NestedGreaterGreater;": '\U0000226B',
  317. "NestedLessLess;": '\U0000226A',
  318. "NewLine;": '\U0000000A',
  319. "Nfr;": '\U0001D511',
  320. "NoBreak;": '\U00002060',
  321. "NonBreakingSpace;": '\U000000A0',
  322. "Nopf;": '\U00002115',
  323. "Not;": '\U00002AEC',
  324. "NotCongruent;": '\U00002262',
  325. "NotCupCap;": '\U0000226D',
  326. "NotDoubleVerticalBar;": '\U00002226',
  327. "NotElement;": '\U00002209',
  328. "NotEqual;": '\U00002260',
  329. "NotExists;": '\U00002204',
  330. "NotGreater;": '\U0000226F',
  331. "NotGreaterEqual;": '\U00002271',
  332. "NotGreaterLess;": '\U00002279',
  333. "NotGreaterTilde;": '\U00002275',
  334. "NotLeftTriangle;": '\U000022EA',
  335. "NotLeftTriangleEqual;": '\U000022EC',
  336. "NotLess;": '\U0000226E',
  337. "NotLessEqual;": '\U00002270',
  338. "NotLessGreater;": '\U00002278',
  339. "NotLessTilde;": '\U00002274',
  340. "NotPrecedes;": '\U00002280',
  341. "NotPrecedesSlantEqual;": '\U000022E0',
  342. "NotReverseElement;": '\U0000220C',
  343. "NotRightTriangle;": '\U000022EB',
  344. "NotRightTriangleEqual;": '\U000022ED',
  345. "NotSquareSubsetEqual;": '\U000022E2',
  346. "NotSquareSupersetEqual;": '\U000022E3',
  347. "NotSubsetEqual;": '\U00002288',
  348. "NotSucceeds;": '\U00002281',
  349. "NotSucceedsSlantEqual;": '\U000022E1',
  350. "NotSupersetEqual;": '\U00002289',
  351. "NotTilde;": '\U00002241',
  352. "NotTildeEqual;": '\U00002244',
  353. "NotTildeFullEqual;": '\U00002247',
  354. "NotTildeTilde;": '\U00002249',
  355. "NotVerticalBar;": '\U00002224',
  356. "Nscr;": '\U0001D4A9',
  357. "Ntilde;": '\U000000D1',
  358. "Nu;": '\U0000039D',
  359. "OElig;": '\U00000152',
  360. "Oacute;": '\U000000D3',
  361. "Ocirc;": '\U000000D4',
  362. "Ocy;": '\U0000041E',
  363. "Odblac;": '\U00000150',
  364. "Ofr;": '\U0001D512',
  365. "Ograve;": '\U000000D2',
  366. "Omacr;": '\U0000014C',
  367. "Omega;": '\U000003A9',
  368. "Omicron;": '\U0000039F',
  369. "Oopf;": '\U0001D546',
  370. "OpenCurlyDoubleQuote;": '\U0000201C',
  371. "OpenCurlyQuote;": '\U00002018',
  372. "Or;": '\U00002A54',
  373. "Oscr;": '\U0001D4AA',
  374. "Oslash;": '\U000000D8',
  375. "Otilde;": '\U000000D5',
  376. "Otimes;": '\U00002A37',
  377. "Ouml;": '\U000000D6',
  378. "OverBar;": '\U0000203E',
  379. "OverBrace;": '\U000023DE',
  380. "OverBracket;": '\U000023B4',
  381. "OverParenthesis;": '\U000023DC',
  382. "PartialD;": '\U00002202',
  383. "Pcy;": '\U0000041F',
  384. "Pfr;": '\U0001D513',
  385. "Phi;": '\U000003A6',
  386. "Pi;": '\U000003A0',
  387. "PlusMinus;": '\U000000B1',
  388. "Poincareplane;": '\U0000210C',
  389. "Popf;": '\U00002119',
  390. "Pr;": '\U00002ABB',
  391. "Precedes;": '\U0000227A',
  392. "PrecedesEqual;": '\U00002AAF',
  393. "PrecedesSlantEqual;": '\U0000227C',
  394. "PrecedesTilde;": '\U0000227E',
  395. "Prime;": '\U00002033',
  396. "Product;": '\U0000220F',
  397. "Proportion;": '\U00002237',
  398. "Proportional;": '\U0000221D',
  399. "Pscr;": '\U0001D4AB',
  400. "Psi;": '\U000003A8',
  401. "QUOT;": '\U00000022',
  402. "Qfr;": '\U0001D514',
  403. "Qopf;": '\U0000211A',
  404. "Qscr;": '\U0001D4AC',
  405. "RBarr;": '\U00002910',
  406. "REG;": '\U000000AE',
  407. "Racute;": '\U00000154',
  408. "Rang;": '\U000027EB',
  409. "Rarr;": '\U000021A0',
  410. "Rarrtl;": '\U00002916',
  411. "Rcaron;": '\U00000158',
  412. "Rcedil;": '\U00000156',
  413. "Rcy;": '\U00000420',
  414. "Re;": '\U0000211C',
  415. "ReverseElement;": '\U0000220B',
  416. "ReverseEquilibrium;": '\U000021CB',
  417. "ReverseUpEquilibrium;": '\U0000296F',
  418. "Rfr;": '\U0000211C',
  419. "Rho;": '\U000003A1',
  420. "RightAngleBracket;": '\U000027E9',
  421. "RightArrow;": '\U00002192',
  422. "RightArrowBar;": '\U000021E5',
  423. "RightArrowLeftArrow;": '\U000021C4',
  424. "RightCeiling;": '\U00002309',
  425. "RightDoubleBracket;": '\U000027E7',
  426. "RightDownTeeVector;": '\U0000295D',
  427. "RightDownVector;": '\U000021C2',
  428. "RightDownVectorBar;": '\U00002955',
  429. "RightFloor;": '\U0000230B',
  430. "RightTee;": '\U000022A2',
  431. "RightTeeArrow;": '\U000021A6',
  432. "RightTeeVector;": '\U0000295B',
  433. "RightTriangle;": '\U000022B3',
  434. "RightTriangleBar;": '\U000029D0',
  435. "RightTriangleEqual;": '\U000022B5',
  436. "RightUpDownVector;": '\U0000294F',
  437. "RightUpTeeVector;": '\U0000295C',
  438. "RightUpVector;": '\U000021BE',
  439. "RightUpVectorBar;": '\U00002954',
  440. "RightVector;": '\U000021C0',
  441. "RightVectorBar;": '\U00002953',
  442. "Rightarrow;": '\U000021D2',
  443. "Ropf;": '\U0000211D',
  444. "RoundImplies;": '\U00002970',
  445. "Rrightarrow;": '\U000021DB',
  446. "Rscr;": '\U0000211B',
  447. "Rsh;": '\U000021B1',
  448. "RuleDelayed;": '\U000029F4',
  449. "SHCHcy;": '\U00000429',
  450. "SHcy;": '\U00000428',
  451. "SOFTcy;": '\U0000042C',
  452. "Sacute;": '\U0000015A',
  453. "Sc;": '\U00002ABC',
  454. "Scaron;": '\U00000160',
  455. "Scedil;": '\U0000015E',
  456. "Scirc;": '\U0000015C',
  457. "Scy;": '\U00000421',
  458. "Sfr;": '\U0001D516',
  459. "ShortDownArrow;": '\U00002193',
  460. "ShortLeftArrow;": '\U00002190',
  461. "ShortRightArrow;": '\U00002192',
  462. "ShortUpArrow;": '\U00002191',
  463. "Sigma;": '\U000003A3',
  464. "SmallCircle;": '\U00002218',
  465. "Sopf;": '\U0001D54A',
  466. "Sqrt;": '\U0000221A',
  467. "Square;": '\U000025A1',
  468. "SquareIntersection;": '\U00002293',
  469. "SquareSubset;": '\U0000228F',
  470. "SquareSubsetEqual;": '\U00002291',
  471. "SquareSuperset;": '\U00002290',
  472. "SquareSupersetEqual;": '\U00002292',
  473. "SquareUnion;": '\U00002294',
  474. "Sscr;": '\U0001D4AE',
  475. "Star;": '\U000022C6',
  476. "Sub;": '\U000022D0',
  477. "Subset;": '\U000022D0',
  478. "SubsetEqual;": '\U00002286',
  479. "Succeeds;": '\U0000227B',
  480. "SucceedsEqual;": '\U00002AB0',
  481. "SucceedsSlantEqual;": '\U0000227D',
  482. "SucceedsTilde;": '\U0000227F',
  483. "SuchThat;": '\U0000220B',
  484. "Sum;": '\U00002211',
  485. "Sup;": '\U000022D1',
  486. "Superset;": '\U00002283',
  487. "SupersetEqual;": '\U00002287',
  488. "Supset;": '\U000022D1',
  489. "THORN;": '\U000000DE',
  490. "TRADE;": '\U00002122',
  491. "TSHcy;": '\U0000040B',
  492. "TScy;": '\U00000426',
  493. "Tab;": '\U00000009',
  494. "Tau;": '\U000003A4',
  495. "Tcaron;": '\U00000164',
  496. "Tcedil;": '\U00000162',
  497. "Tcy;": '\U00000422',
  498. "Tfr;": '\U0001D517',
  499. "Therefore;": '\U00002234',
  500. "Theta;": '\U00000398',
  501. "ThinSpace;": '\U00002009',
  502. "Tilde;": '\U0000223C',
  503. "TildeEqual;": '\U00002243',
  504. "TildeFullEqual;": '\U00002245',
  505. "TildeTilde;": '\U00002248',
  506. "Topf;": '\U0001D54B',
  507. "TripleDot;": '\U000020DB',
  508. "Tscr;": '\U0001D4AF',
  509. "Tstrok;": '\U00000166',
  510. "Uacute;": '\U000000DA',
  511. "Uarr;": '\U0000219F',
  512. "Uarrocir;": '\U00002949',
  513. "Ubrcy;": '\U0000040E',
  514. "Ubreve;": '\U0000016C',
  515. "Ucirc;": '\U000000DB',
  516. "Ucy;": '\U00000423',
  517. "Udblac;": '\U00000170',
  518. "Ufr;": '\U0001D518',
  519. "Ugrave;": '\U000000D9',
  520. "Umacr;": '\U0000016A',
  521. "UnderBar;": '\U0000005F',
  522. "UnderBrace;": '\U000023DF',
  523. "UnderBracket;": '\U000023B5',
  524. "UnderParenthesis;": '\U000023DD',
  525. "Union;": '\U000022C3',
  526. "UnionPlus;": '\U0000228E',
  527. "Uogon;": '\U00000172',
  528. "Uopf;": '\U0001D54C',
  529. "UpArrow;": '\U00002191',
  530. "UpArrowBar;": '\U00002912',
  531. "UpArrowDownArrow;": '\U000021C5',
  532. "UpDownArrow;": '\U00002195',
  533. "UpEquilibrium;": '\U0000296E',
  534. "UpTee;": '\U000022A5',
  535. "UpTeeArrow;": '\U000021A5',
  536. "Uparrow;": '\U000021D1',
  537. "Updownarrow;": '\U000021D5',
  538. "UpperLeftArrow;": '\U00002196',
  539. "UpperRightArrow;": '\U00002197',
  540. "Upsi;": '\U000003D2',
  541. "Upsilon;": '\U000003A5',
  542. "Uring;": '\U0000016E',
  543. "Uscr;": '\U0001D4B0',
  544. "Utilde;": '\U00000168',
  545. "Uuml;": '\U000000DC',
  546. "VDash;": '\U000022AB',
  547. "Vbar;": '\U00002AEB',
  548. "Vcy;": '\U00000412',
  549. "Vdash;": '\U000022A9',
  550. "Vdashl;": '\U00002AE6',
  551. "Vee;": '\U000022C1',
  552. "Verbar;": '\U00002016',
  553. "Vert;": '\U00002016',
  554. "VerticalBar;": '\U00002223',
  555. "VerticalLine;": '\U0000007C',
  556. "VerticalSeparator;": '\U00002758',
  557. "VerticalTilde;": '\U00002240',
  558. "VeryThinSpace;": '\U0000200A',
  559. "Vfr;": '\U0001D519',
  560. "Vopf;": '\U0001D54D',
  561. "Vscr;": '\U0001D4B1',
  562. "Vvdash;": '\U000022AA',
  563. "Wcirc;": '\U00000174',
  564. "Wedge;": '\U000022C0',
  565. "Wfr;": '\U0001D51A',
  566. "Wopf;": '\U0001D54E',
  567. "Wscr;": '\U0001D4B2',
  568. "Xfr;": '\U0001D51B',
  569. "Xi;": '\U0000039E',
  570. "Xopf;": '\U0001D54F',
  571. "Xscr;": '\U0001D4B3',
  572. "YAcy;": '\U0000042F',
  573. "YIcy;": '\U00000407',
  574. "YUcy;": '\U0000042E',
  575. "Yacute;": '\U000000DD',
  576. "Ycirc;": '\U00000176',
  577. "Ycy;": '\U0000042B',
  578. "Yfr;": '\U0001D51C',
  579. "Yopf;": '\U0001D550',
  580. "Yscr;": '\U0001D4B4',
  581. "Yuml;": '\U00000178',
  582. "ZHcy;": '\U00000416',
  583. "Zacute;": '\U00000179',
  584. "Zcaron;": '\U0000017D',
  585. "Zcy;": '\U00000417',
  586. "Zdot;": '\U0000017B',
  587. "ZeroWidthSpace;": '\U0000200B',
  588. "Zeta;": '\U00000396',
  589. "Zfr;": '\U00002128',
  590. "Zopf;": '\U00002124',
  591. "Zscr;": '\U0001D4B5',
  592. "aacute;": '\U000000E1',
  593. "abreve;": '\U00000103',
  594. "ac;": '\U0000223E',
  595. "acd;": '\U0000223F',
  596. "acirc;": '\U000000E2',
  597. "acute;": '\U000000B4',
  598. "acy;": '\U00000430',
  599. "aelig;": '\U000000E6',
  600. "af;": '\U00002061',
  601. "afr;": '\U0001D51E',
  602. "agrave;": '\U000000E0',
  603. "alefsym;": '\U00002135',
  604. "aleph;": '\U00002135',
  605. "alpha;": '\U000003B1',
  606. "amacr;": '\U00000101',
  607. "amalg;": '\U00002A3F',
  608. "amp;": '\U00000026',
  609. "and;": '\U00002227',
  610. "andand;": '\U00002A55',
  611. "andd;": '\U00002A5C',
  612. "andslope;": '\U00002A58',
  613. "andv;": '\U00002A5A',
  614. "ang;": '\U00002220',
  615. "ange;": '\U000029A4',
  616. "angle;": '\U00002220',
  617. "angmsd;": '\U00002221',
  618. "angmsdaa;": '\U000029A8',
  619. "angmsdab;": '\U000029A9',
  620. "angmsdac;": '\U000029AA',
  621. "angmsdad;": '\U000029AB',
  622. "angmsdae;": '\U000029AC',
  623. "angmsdaf;": '\U000029AD',
  624. "angmsdag;": '\U000029AE',
  625. "angmsdah;": '\U000029AF',
  626. "angrt;": '\U0000221F',
  627. "angrtvb;": '\U000022BE',
  628. "angrtvbd;": '\U0000299D',
  629. "angsph;": '\U00002222',
  630. "angst;": '\U000000C5',
  631. "angzarr;": '\U0000237C',
  632. "aogon;": '\U00000105',
  633. "aopf;": '\U0001D552',
  634. "ap;": '\U00002248',
  635. "apE;": '\U00002A70',
  636. "apacir;": '\U00002A6F',
  637. "ape;": '\U0000224A',
  638. "apid;": '\U0000224B',
  639. "apos;": '\U00000027',
  640. "approx;": '\U00002248',
  641. "approxeq;": '\U0000224A',
  642. "aring;": '\U000000E5',
  643. "ascr;": '\U0001D4B6',
  644. "ast;": '\U0000002A',
  645. "asymp;": '\U00002248',
  646. "asympeq;": '\U0000224D',
  647. "atilde;": '\U000000E3',
  648. "auml;": '\U000000E4',
  649. "awconint;": '\U00002233',
  650. "awint;": '\U00002A11',
  651. "bNot;": '\U00002AED',
  652. "backcong;": '\U0000224C',
  653. "backepsilon;": '\U000003F6',
  654. "backprime;": '\U00002035',
  655. "backsim;": '\U0000223D',
  656. "backsimeq;": '\U000022CD',
  657. "barvee;": '\U000022BD',
  658. "barwed;": '\U00002305',
  659. "barwedge;": '\U00002305',
  660. "bbrk;": '\U000023B5',
  661. "bbrktbrk;": '\U000023B6',
  662. "bcong;": '\U0000224C',
  663. "bcy;": '\U00000431',
  664. "bdquo;": '\U0000201E',
  665. "becaus;": '\U00002235',
  666. "because;": '\U00002235',
  667. "bemptyv;": '\U000029B0',
  668. "bepsi;": '\U000003F6',
  669. "bernou;": '\U0000212C',
  670. "beta;": '\U000003B2',
  671. "beth;": '\U00002136',
  672. "between;": '\U0000226C',
  673. "bfr;": '\U0001D51F',
  674. "bigcap;": '\U000022C2',
  675. "bigcirc;": '\U000025EF',
  676. "bigcup;": '\U000022C3',
  677. "bigodot;": '\U00002A00',
  678. "bigoplus;": '\U00002A01',
  679. "bigotimes;": '\U00002A02',
  680. "bigsqcup;": '\U00002A06',
  681. "bigstar;": '\U00002605',
  682. "bigtriangledown;": '\U000025BD',
  683. "bigtriangleup;": '\U000025B3',
  684. "biguplus;": '\U00002A04',
  685. "bigvee;": '\U000022C1',
  686. "bigwedge;": '\U000022C0',
  687. "bkarow;": '\U0000290D',
  688. "blacklozenge;": '\U000029EB',
  689. "blacksquare;": '\U000025AA',
  690. "blacktriangle;": '\U000025B4',
  691. "blacktriangledown;": '\U000025BE',
  692. "blacktriangleleft;": '\U000025C2',
  693. "blacktriangleright;": '\U000025B8',
  694. "blank;": '\U00002423',
  695. "blk12;": '\U00002592',
  696. "blk14;": '\U00002591',
  697. "blk34;": '\U00002593',
  698. "block;": '\U00002588',
  699. "bnot;": '\U00002310',
  700. "bopf;": '\U0001D553',
  701. "bot;": '\U000022A5',
  702. "bottom;": '\U000022A5',
  703. "bowtie;": '\U000022C8',
  704. "boxDL;": '\U00002557',
  705. "boxDR;": '\U00002554',
  706. "boxDl;": '\U00002556',
  707. "boxDr;": '\U00002553',
  708. "boxH;": '\U00002550',
  709. "boxHD;": '\U00002566',
  710. "boxHU;": '\U00002569',
  711. "boxHd;": '\U00002564',
  712. "boxHu;": '\U00002567',
  713. "boxUL;": '\U0000255D',
  714. "boxUR;": '\U0000255A',
  715. "boxUl;": '\U0000255C',
  716. "boxUr;": '\U00002559',
  717. "boxV;": '\U00002551',
  718. "boxVH;": '\U0000256C',
  719. "boxVL;": '\U00002563',
  720. "boxVR;": '\U00002560',
  721. "boxVh;": '\U0000256B',
  722. "boxVl;": '\U00002562',
  723. "boxVr;": '\U0000255F',
  724. "boxbox;": '\U000029C9',
  725. "boxdL;": '\U00002555',
  726. "boxdR;": '\U00002552',
  727. "boxdl;": '\U00002510',
  728. "boxdr;": '\U0000250C',
  729. "boxh;": '\U00002500',
  730. "boxhD;": '\U00002565',
  731. "boxhU;": '\U00002568',
  732. "boxhd;": '\U0000252C',
  733. "boxhu;": '\U00002534',
  734. "boxminus;": '\U0000229F',
  735. "boxplus;": '\U0000229E',
  736. "boxtimes;": '\U000022A0',
  737. "boxuL;": '\U0000255B',
  738. "boxuR;": '\U00002558',
  739. "boxul;": '\U00002518',
  740. "boxur;": '\U00002514',
  741. "boxv;": '\U00002502',
  742. "boxvH;": '\U0000256A',
  743. "boxvL;": '\U00002561',
  744. "boxvR;": '\U0000255E',
  745. "boxvh;": '\U0000253C',
  746. "boxvl;": '\U00002524',
  747. "boxvr;": '\U0000251C',
  748. "bprime;": '\U00002035',
  749. "breve;": '\U000002D8',
  750. "brvbar;": '\U000000A6',
  751. "bscr;": '\U0001D4B7',
  752. "bsemi;": '\U0000204F',
  753. "bsim;": '\U0000223D',
  754. "bsime;": '\U000022CD',
  755. "bsol;": '\U0000005C',
  756. "bsolb;": '\U000029C5',
  757. "bsolhsub;": '\U000027C8',
  758. "bull;": '\U00002022',
  759. "bullet;": '\U00002022',
  760. "bump;": '\U0000224E',
  761. "bumpE;": '\U00002AAE',
  762. "bumpe;": '\U0000224F',
  763. "bumpeq;": '\U0000224F',
  764. "cacute;": '\U00000107',
  765. "cap;": '\U00002229',
  766. "capand;": '\U00002A44',
  767. "capbrcup;": '\U00002A49',
  768. "capcap;": '\U00002A4B',
  769. "capcup;": '\U00002A47',
  770. "capdot;": '\U00002A40',
  771. "caret;": '\U00002041',
  772. "caron;": '\U000002C7',
  773. "ccaps;": '\U00002A4D',
  774. "ccaron;": '\U0000010D',
  775. "ccedil;": '\U000000E7',
  776. "ccirc;": '\U00000109',
  777. "ccups;": '\U00002A4C',
  778. "ccupssm;": '\U00002A50',
  779. "cdot;": '\U0000010B',
  780. "cedil;": '\U000000B8',
  781. "cemptyv;": '\U000029B2',
  782. "cent;": '\U000000A2',
  783. "centerdot;": '\U000000B7',
  784. "cfr;": '\U0001D520',
  785. "chcy;": '\U00000447',
  786. "check;": '\U00002713',
  787. "checkmark;": '\U00002713',
  788. "chi;": '\U000003C7',
  789. "cir;": '\U000025CB',
  790. "cirE;": '\U000029C3',
  791. "circ;": '\U000002C6',
  792. "circeq;": '\U00002257',
  793. "circlearrowleft;": '\U000021BA',
  794. "circlearrowright;": '\U000021BB',
  795. "circledR;": '\U000000AE',
  796. "circledS;": '\U000024C8',
  797. "circledast;": '\U0000229B',
  798. "circledcirc;": '\U0000229A',
  799. "circleddash;": '\U0000229D',
  800. "cire;": '\U00002257',
  801. "cirfnint;": '\U00002A10',
  802. "cirmid;": '\U00002AEF',
  803. "cirscir;": '\U000029C2',
  804. "clubs;": '\U00002663',
  805. "clubsuit;": '\U00002663',
  806. "colon;": '\U0000003A',
  807. "colone;": '\U00002254',
  808. "coloneq;": '\U00002254',
  809. "comma;": '\U0000002C',
  810. "commat;": '\U00000040',
  811. "comp;": '\U00002201',
  812. "compfn;": '\U00002218',
  813. "complement;": '\U00002201',
  814. "complexes;": '\U00002102',
  815. "cong;": '\U00002245',
  816. "congdot;": '\U00002A6D',
  817. "conint;": '\U0000222E',
  818. "copf;": '\U0001D554',
  819. "coprod;": '\U00002210',
  820. "copy;": '\U000000A9',
  821. "copysr;": '\U00002117',
  822. "crarr;": '\U000021B5',
  823. "cross;": '\U00002717',
  824. "cscr;": '\U0001D4B8',
  825. "csub;": '\U00002ACF',
  826. "csube;": '\U00002AD1',
  827. "csup;": '\U00002AD0',
  828. "csupe;": '\U00002AD2',
  829. "ctdot;": '\U000022EF',
  830. "cudarrl;": '\U00002938',
  831. "cudarrr;": '\U00002935',
  832. "cuepr;": '\U000022DE',
  833. "cuesc;": '\U000022DF',
  834. "cularr;": '\U000021B6',
  835. "cularrp;": '\U0000293D',
  836. "cup;": '\U0000222A',
  837. "cupbrcap;": '\U00002A48',
  838. "cupcap;": '\U00002A46',
  839. "cupcup;": '\U00002A4A',
  840. "cupdot;": '\U0000228D',
  841. "cupor;": '\U00002A45',
  842. "curarr;": '\U000021B7',
  843. "curarrm;": '\U0000293C',
  844. "curlyeqprec;": '\U000022DE',
  845. "curlyeqsucc;": '\U000022DF',
  846. "curlyvee;": '\U000022CE',
  847. "curlywedge;": '\U000022CF',
  848. "curren;": '\U000000A4',
  849. "curvearrowleft;": '\U000021B6',
  850. "curvearrowright;": '\U000021B7',
  851. "cuvee;": '\U000022CE',
  852. "cuwed;": '\U000022CF',
  853. "cwconint;": '\U00002232',
  854. "cwint;": '\U00002231',
  855. "cylcty;": '\U0000232D',
  856. "dArr;": '\U000021D3',
  857. "dHar;": '\U00002965',
  858. "dagger;": '\U00002020',
  859. "daleth;": '\U00002138',
  860. "darr;": '\U00002193',
  861. "dash;": '\U00002010',
  862. "dashv;": '\U000022A3',
  863. "dbkarow;": '\U0000290F',
  864. "dblac;": '\U000002DD',
  865. "dcaron;": '\U0000010F',
  866. "dcy;": '\U00000434',
  867. "dd;": '\U00002146',
  868. "ddagger;": '\U00002021',
  869. "ddarr;": '\U000021CA',
  870. "ddotseq;": '\U00002A77',
  871. "deg;": '\U000000B0',
  872. "delta;": '\U000003B4',
  873. "demptyv;": '\U000029B1',
  874. "dfisht;": '\U0000297F',
  875. "dfr;": '\U0001D521',
  876. "dharl;": '\U000021C3',
  877. "dharr;": '\U000021C2',
  878. "diam;": '\U000022C4',
  879. "diamond;": '\U000022C4',
  880. "diamondsuit;": '\U00002666',
  881. "diams;": '\U00002666',
  882. "die;": '\U000000A8',
  883. "digamma;": '\U000003DD',
  884. "disin;": '\U000022F2',
  885. "div;": '\U000000F7',
  886. "divide;": '\U000000F7',
  887. "divideontimes;": '\U000022C7',
  888. "divonx;": '\U000022C7',
  889. "djcy;": '\U00000452',
  890. "dlcorn;": '\U0000231E',
  891. "dlcrop;": '\U0000230D',
  892. "dollar;": '\U00000024',
  893. "dopf;": '\U0001D555',
  894. "dot;": '\U000002D9',
  895. "doteq;": '\U00002250',
  896. "doteqdot;": '\U00002251',
  897. "dotminus;": '\U00002238',
  898. "dotplus;": '\U00002214',
  899. "dotsquare;": '\U000022A1',
  900. "doublebarwedge;": '\U00002306',
  901. "downarrow;": '\U00002193',
  902. "downdownarrows;": '\U000021CA',
  903. "downharpoonleft;": '\U000021C3',
  904. "downharpoonright;": '\U000021C2',
  905. "drbkarow;": '\U00002910',
  906. "drcorn;": '\U0000231F',
  907. "drcrop;": '\U0000230C',
  908. "dscr;": '\U0001D4B9',
  909. "dscy;": '\U00000455',
  910. "dsol;": '\U000029F6',
  911. "dstrok;": '\U00000111',
  912. "dtdot;": '\U000022F1',
  913. "dtri;": '\U000025BF',
  914. "dtrif;": '\U000025BE',
  915. "duarr;": '\U000021F5',
  916. "duhar;": '\U0000296F',
  917. "dwangle;": '\U000029A6',
  918. "dzcy;": '\U0000045F',
  919. "dzigrarr;": '\U000027FF',
  920. "eDDot;": '\U00002A77',
  921. "eDot;": '\U00002251',
  922. "eacute;": '\U000000E9',
  923. "easter;": '\U00002A6E',
  924. "ecaron;": '\U0000011B',
  925. "ecir;": '\U00002256',
  926. "ecirc;": '\U000000EA',
  927. "ecolon;": '\U00002255',
  928. "ecy;": '\U0000044D',
  929. "edot;": '\U00000117',
  930. "ee;": '\U00002147',
  931. "efDot;": '\U00002252',
  932. "efr;": '\U0001D522',
  933. "eg;": '\U00002A9A',
  934. "egrave;": '\U000000E8',
  935. "egs;": '\U00002A96',
  936. "egsdot;": '\U00002A98',
  937. "el;": '\U00002A99',
  938. "elinters;": '\U000023E7',
  939. "ell;": '\U00002113',
  940. "els;": '\U00002A95',
  941. "elsdot;": '\U00002A97',
  942. "emacr;": '\U00000113',
  943. "empty;": '\U00002205',
  944. "emptyset;": '\U00002205',
  945. "emptyv;": '\U00002205',
  946. "emsp;": '\U00002003',
  947. "emsp13;": '\U00002004',
  948. "emsp14;": '\U00002005',
  949. "eng;": '\U0000014B',
  950. "ensp;": '\U00002002',
  951. "eogon;": '\U00000119',
  952. "eopf;": '\U0001D556',
  953. "epar;": '\U000022D5',
  954. "eparsl;": '\U000029E3',
  955. "eplus;": '\U00002A71',
  956. "epsi;": '\U000003B5',
  957. "epsilon;": '\U000003B5',
  958. "epsiv;": '\U000003F5',
  959. "eqcirc;": '\U00002256',
  960. "eqcolon;": '\U00002255',
  961. "eqsim;": '\U00002242',
  962. "eqslantgtr;": '\U00002A96',
  963. "eqslantless;": '\U00002A95',
  964. "equals;": '\U0000003D',
  965. "equest;": '\U0000225F',
  966. "equiv;": '\U00002261',
  967. "equivDD;": '\U00002A78',
  968. "eqvparsl;": '\U000029E5',
  969. "erDot;": '\U00002253',
  970. "erarr;": '\U00002971',
  971. "escr;": '\U0000212F',
  972. "esdot;": '\U00002250',
  973. "esim;": '\U00002242',
  974. "eta;": '\U000003B7',
  975. "eth;": '\U000000F0',
  976. "euml;": '\U000000EB',
  977. "euro;": '\U000020AC',
  978. "excl;": '\U00000021',
  979. "exist;": '\U00002203',
  980. "expectation;": '\U00002130',
  981. "exponentiale;": '\U00002147',
  982. "fallingdotseq;": '\U00002252',
  983. "fcy;": '\U00000444',
  984. "female;": '\U00002640',
  985. "ffilig;": '\U0000FB03',
  986. "fflig;": '\U0000FB00',
  987. "ffllig;": '\U0000FB04',
  988. "ffr;": '\U0001D523',
  989. "filig;": '\U0000FB01',
  990. "flat;": '\U0000266D',
  991. "fllig;": '\U0000FB02',
  992. "fltns;": '\U000025B1',
  993. "fnof;": '\U00000192',
  994. "fopf;": '\U0001D557',
  995. "forall;": '\U00002200',
  996. "fork;": '\U000022D4',
  997. "forkv;": '\U00002AD9',
  998. "fpartint;": '\U00002A0D',
  999. "frac12;": '\U000000BD',
  1000. "frac13;": '\U00002153',
  1001. "frac14;": '\U000000BC',
  1002. "frac15;": '\U00002155',
  1003. "frac16;": '\U00002159',
  1004. "frac18;": '\U0000215B',
  1005. "frac23;": '\U00002154',
  1006. "frac25;": '\U00002156',
  1007. "frac34;": '\U000000BE',
  1008. "frac35;": '\U00002157',
  1009. "frac38;": '\U0000215C',
  1010. "frac45;": '\U00002158',
  1011. "frac56;": '\U0000215A',
  1012. "frac58;": '\U0000215D',
  1013. "frac78;": '\U0000215E',
  1014. "frasl;": '\U00002044',
  1015. "frown;": '\U00002322',
  1016. "fscr;": '\U0001D4BB',
  1017. "gE;": '\U00002267',
  1018. "gEl;": '\U00002A8C',
  1019. "gacute;": '\U000001F5',
  1020. "gamma;": '\U000003B3',
  1021. "gammad;": '\U000003DD',
  1022. "gap;": '\U00002A86',
  1023. "gbreve;": '\U0000011F',
  1024. "gcirc;": '\U0000011D',
  1025. "gcy;": '\U00000433',
  1026. "gdot;": '\U00000121',
  1027. "ge;": '\U00002265',
  1028. "gel;": '\U000022DB',
  1029. "geq;": '\U00002265',
  1030. "geqq;": '\U00002267',
  1031. "geqslant;": '\U00002A7E',
  1032. "ges;": '\U00002A7E',
  1033. "gescc;": '\U00002AA9',
  1034. "gesdot;": '\U00002A80',
  1035. "gesdoto;": '\U00002A82',
  1036. "gesdotol;": '\U00002A84',
  1037. "gesles;": '\U00002A94',
  1038. "gfr;": '\U0001D524',
  1039. "gg;": '\U0000226B',
  1040. "ggg;": '\U000022D9',
  1041. "gimel;": '\U00002137',
  1042. "gjcy;": '\U00000453',
  1043. "gl;": '\U00002277',
  1044. "glE;": '\U00002A92',
  1045. "gla;": '\U00002AA5',
  1046. "glj;": '\U00002AA4',
  1047. "gnE;": '\U00002269',
  1048. "gnap;": '\U00002A8A',
  1049. "gnapprox;": '\U00002A8A',
  1050. "gne;": '\U00002A88',
  1051. "gneq;": '\U00002A88',
  1052. "gneqq;": '\U00002269',
  1053. "gnsim;": '\U000022E7',
  1054. "gopf;": '\U0001D558',
  1055. "grave;": '\U00000060',
  1056. "gscr;": '\U0000210A',
  1057. "gsim;": '\U00002273',
  1058. "gsime;": '\U00002A8E',
  1059. "gsiml;": '\U00002A90',
  1060. "gt;": '\U0000003E',
  1061. "gtcc;": '\U00002AA7',
  1062. "gtcir;": '\U00002A7A',
  1063. "gtdot;": '\U000022D7',
  1064. "gtlPar;": '\U00002995',
  1065. "gtquest;": '\U00002A7C',
  1066. "gtrapprox;": '\U00002A86',
  1067. "gtrarr;": '\U00002978',
  1068. "gtrdot;": '\U000022D7',
  1069. "gtreqless;": '\U000022DB',
  1070. "gtreqqless;": '\U00002A8C',
  1071. "gtrless;": '\U00002277',
  1072. "gtrsim;": '\U00002273',
  1073. "hArr;": '\U000021D4',
  1074. "hairsp;": '\U0000200A',
  1075. "half;": '\U000000BD',
  1076. "hamilt;": '\U0000210B',
  1077. "hardcy;": '\U0000044A',
  1078. "harr;": '\U00002194',
  1079. "harrcir;": '\U00002948',
  1080. "harrw;": '\U000021AD',
  1081. "hbar;": '\U0000210F',
  1082. "hcirc;": '\U00000125',
  1083. "hearts;": '\U00002665',
  1084. "heartsuit;": '\U00002665',
  1085. "hellip;": '\U00002026',
  1086. "hercon;": '\U000022B9',
  1087. "hfr;": '\U0001D525',
  1088. "hksearow;": '\U00002925',
  1089. "hkswarow;": '\U00002926',
  1090. "hoarr;": '\U000021FF',
  1091. "homtht;": '\U0000223B',
  1092. "hookleftarrow;": '\U000021A9',
  1093. "hookrightarrow;": '\U000021AA',
  1094. "hopf;": '\U0001D559',
  1095. "horbar;": '\U00002015',
  1096. "hscr;": '\U0001D4BD',
  1097. "hslash;": '\U0000210F',
  1098. "hstrok;": '\U00000127',
  1099. "hybull;": '\U00002043',
  1100. "hyphen;": '\U00002010',
  1101. "iacute;": '\U000000ED',
  1102. "ic;": '\U00002063',
  1103. "icirc;": '\U000000EE',
  1104. "icy;": '\U00000438',
  1105. "iecy;": '\U00000435',
  1106. "iexcl;": '\U000000A1',
  1107. "iff;": '\U000021D4',
  1108. "ifr;": '\U0001D526',
  1109. "igrave;": '\U000000EC',
  1110. "ii;": '\U00002148',
  1111. "iiiint;": '\U00002A0C',
  1112. "iiint;": '\U0000222D',
  1113. "iinfin;": '\U000029DC',
  1114. "iiota;": '\U00002129',
  1115. "ijlig;": '\U00000133',
  1116. "imacr;": '\U0000012B',
  1117. "image;": '\U00002111',
  1118. "imagline;": '\U00002110',
  1119. "imagpart;": '\U00002111',
  1120. "imath;": '\U00000131',
  1121. "imof;": '\U000022B7',
  1122. "imped;": '\U000001B5',
  1123. "in;": '\U00002208',
  1124. "incare;": '\U00002105',
  1125. "infin;": '\U0000221E',
  1126. "infintie;": '\U000029DD',
  1127. "inodot;": '\U00000131',
  1128. "int;": '\U0000222B',
  1129. "intcal;": '\U000022BA',
  1130. "integers;": '\U00002124',
  1131. "intercal;": '\U000022BA',
  1132. "intlarhk;": '\U00002A17',
  1133. "intprod;": '\U00002A3C',
  1134. "iocy;": '\U00000451',
  1135. "iogon;": '\U0000012F',
  1136. "iopf;": '\U0001D55A',
  1137. "iota;": '\U000003B9',
  1138. "iprod;": '\U00002A3C',
  1139. "iquest;": '\U000000BF',
  1140. "iscr;": '\U0001D4BE',
  1141. "isin;": '\U00002208',
  1142. "isinE;": '\U000022F9',
  1143. "isindot;": '\U000022F5',
  1144. "isins;": '\U000022F4',
  1145. "isinsv;": '\U000022F3',
  1146. "isinv;": '\U00002208',
  1147. "it;": '\U00002062',
  1148. "itilde;": '\U00000129',
  1149. "iukcy;": '\U00000456',
  1150. "iuml;": '\U000000EF',
  1151. "jcirc;": '\U00000135',
  1152. "jcy;": '\U00000439',
  1153. "jfr;": '\U0001D527',
  1154. "jmath;": '\U00000237',
  1155. "jopf;": '\U0001D55B',
  1156. "jscr;": '\U0001D4BF',
  1157. "jsercy;": '\U00000458',
  1158. "jukcy;": '\U00000454',
  1159. "kappa;": '\U000003BA',
  1160. "kappav;": '\U000003F0',
  1161. "kcedil;": '\U00000137',
  1162. "kcy;": '\U0000043A',
  1163. "kfr;": '\U0001D528',
  1164. "kgreen;": '\U00000138',
  1165. "khcy;": '\U00000445',
  1166. "kjcy;": '\U0000045C',
  1167. "kopf;": '\U0001D55C',
  1168. "kscr;": '\U0001D4C0',
  1169. "lAarr;": '\U000021DA',
  1170. "lArr;": '\U000021D0',
  1171. "lAtail;": '\U0000291B',
  1172. "lBarr;": '\U0000290E',
  1173. "lE;": '\U00002266',
  1174. "lEg;": '\U00002A8B',
  1175. "lHar;": '\U00002962',
  1176. "lacute;": '\U0000013A',
  1177. "laemptyv;": '\U000029B4',
  1178. "lagran;": '\U00002112',
  1179. "lambda;": '\U000003BB',
  1180. "lang;": '\U000027E8',
  1181. "langd;": '\U00002991',
  1182. "langle;": '\U000027E8',
  1183. "lap;": '\U00002A85',
  1184. "laquo;": '\U000000AB',
  1185. "larr;": '\U00002190',
  1186. "larrb;": '\U000021E4',
  1187. "larrbfs;": '\U0000291F',
  1188. "larrfs;": '\U0000291D',
  1189. "larrhk;": '\U000021A9',
  1190. "larrlp;": '\U000021AB',
  1191. "larrpl;": '\U00002939',
  1192. "larrsim;": '\U00002973',
  1193. "larrtl;": '\U000021A2',
  1194. "lat;": '\U00002AAB',
  1195. "latail;": '\U00002919',
  1196. "late;": '\U00002AAD',
  1197. "lbarr;": '\U0000290C',
  1198. "lbbrk;": '\U00002772',
  1199. "lbrace;": '\U0000007B',
  1200. "lbrack;": '\U0000005B',
  1201. "lbrke;": '\U0000298B',
  1202. "lbrksld;": '\U0000298F',
  1203. "lbrkslu;": '\U0000298D',
  1204. "lcaron;": '\U0000013E',
  1205. "lcedil;": '\U0000013C',
  1206. "lceil;": '\U00002308',
  1207. "lcub;": '\U0000007B',
  1208. "lcy;": '\U0000043B',
  1209. "ldca;": '\U00002936',
  1210. "ldquo;": '\U0000201C',
  1211. "ldquor;": '\U0000201E',
  1212. "ldrdhar;": '\U00002967',
  1213. "ldrushar;": '\U0000294B',
  1214. "ldsh;": '\U000021B2',
  1215. "le;": '\U00002264',
  1216. "leftarrow;": '\U00002190',
  1217. "leftarrowtail;": '\U000021A2',
  1218. "leftharpoondown;": '\U000021BD',
  1219. "leftharpoonup;": '\U000021BC',
  1220. "leftleftarrows;": '\U000021C7',
  1221. "leftrightarrow;": '\U00002194',
  1222. "leftrightarrows;": '\U000021C6',
  1223. "leftrightharpoons;": '\U000021CB',
  1224. "leftrightsquigarrow;": '\U000021AD',
  1225. "leftthreetimes;": '\U000022CB',
  1226. "leg;": '\U000022DA',
  1227. "leq;": '\U00002264',
  1228. "leqq;": '\U00002266',
  1229. "leqslant;": '\U00002A7D',
  1230. "les;": '\U00002A7D',
  1231. "lescc;": '\U00002AA8',
  1232. "lesdot;": '\U00002A7F',
  1233. "lesdoto;": '\U00002A81',
  1234. "lesdotor;": '\U00002A83',
  1235. "lesges;": '\U00002A93',
  1236. "lessapprox;": '\U00002A85',
  1237. "lessdot;": '\U000022D6',
  1238. "lesseqgtr;": '\U000022DA',
  1239. "lesseqqgtr;": '\U00002A8B',
  1240. "lessgtr;": '\U00002276',
  1241. "lesssim;": '\U00002272',
  1242. "lfisht;": '\U0000297C',
  1243. "lfloor;": '\U0000230A',
  1244. "lfr;": '\U0001D529',
  1245. "lg;": '\U00002276',
  1246. "lgE;": '\U00002A91',
  1247. "lhard;": '\U000021BD',
  1248. "lharu;": '\U000021BC',
  1249. "lharul;": '\U0000296A',
  1250. "lhblk;": '\U00002584',
  1251. "ljcy;": '\U00000459',
  1252. "ll;": '\U0000226A',
  1253. "llarr;": '\U000021C7',
  1254. "llcorner;": '\U0000231E',
  1255. "llhard;": '\U0000296B',
  1256. "lltri;": '\U000025FA',
  1257. "lmidot;": '\U00000140',
  1258. "lmoust;": '\U000023B0',
  1259. "lmoustache;": '\U000023B0',
  1260. "lnE;": '\U00002268',
  1261. "lnap;": '\U00002A89',
  1262. "lnapprox;": '\U00002A89',
  1263. "lne;": '\U00002A87',
  1264. "lneq;": '\U00002A87',
  1265. "lneqq;": '\U00002268',
  1266. "lnsim;": '\U000022E6',
  1267. "loang;": '\U000027EC',
  1268. "loarr;": '\U000021FD',
  1269. "lobrk;": '\U000027E6',
  1270. "longleftarrow;": '\U000027F5',
  1271. "longleftrightarrow;": '\U000027F7',
  1272. "longmapsto;": '\U000027FC',
  1273. "longrightarrow;": '\U000027F6',
  1274. "looparrowleft;": '\U000021AB',
  1275. "looparrowright;": '\U000021AC',
  1276. "lopar;": '\U00002985',
  1277. "lopf;": '\U0001D55D',
  1278. "loplus;": '\U00002A2D',
  1279. "lotimes;": '\U00002A34',
  1280. "lowast;": '\U00002217',
  1281. "lowbar;": '\U0000005F',
  1282. "loz;": '\U000025CA',
  1283. "lozenge;": '\U000025CA',
  1284. "lozf;": '\U000029EB',
  1285. "lpar;": '\U00000028',
  1286. "lparlt;": '\U00002993',
  1287. "lrarr;": '\U000021C6',
  1288. "lrcorner;": '\U0000231F',
  1289. "lrhar;": '\U000021CB',
  1290. "lrhard;": '\U0000296D',
  1291. "lrm;": '\U0000200E',
  1292. "lrtri;": '\U000022BF',
  1293. "lsaquo;": '\U00002039',
  1294. "lscr;": '\U0001D4C1',
  1295. "lsh;": '\U000021B0',
  1296. "lsim;": '\U00002272',
  1297. "lsime;": '\U00002A8D',
  1298. "lsimg;": '\U00002A8F',
  1299. "lsqb;": '\U0000005B',
  1300. "lsquo;": '\U00002018',
  1301. "lsquor;": '\U0000201A',
  1302. "lstrok;": '\U00000142',
  1303. "lt;": '\U0000003C',
  1304. "ltcc;": '\U00002AA6',
  1305. "ltcir;": '\U00002A79',
  1306. "ltdot;": '\U000022D6',
  1307. "lthree;": '\U000022CB',
  1308. "ltimes;": '\U000022C9',
  1309. "ltlarr;": '\U00002976',
  1310. "ltquest;": '\U00002A7B',
  1311. "ltrPar;": '\U00002996',
  1312. "ltri;": '\U000025C3',
  1313. "ltrie;": '\U000022B4',
  1314. "ltrif;": '\U000025C2',
  1315. "lurdshar;": '\U0000294A',
  1316. "luruhar;": '\U00002966',
  1317. "mDDot;": '\U0000223A',
  1318. "macr;": '\U000000AF',
  1319. "male;": '\U00002642',
  1320. "malt;": '\U00002720',
  1321. "maltese;": '\U00002720',
  1322. "map;": '\U000021A6',
  1323. "mapsto;": '\U000021A6',
  1324. "mapstodown;": '\U000021A7',
  1325. "mapstoleft;": '\U000021A4',
  1326. "mapstoup;": '\U000021A5',
  1327. "marker;": '\U000025AE',
  1328. "mcomma;": '\U00002A29',
  1329. "mcy;": '\U0000043C',
  1330. "mdash;": '\U00002014',
  1331. "measuredangle;": '\U00002221',
  1332. "mfr;": '\U0001D52A',
  1333. "mho;": '\U00002127',
  1334. "micro;": '\U000000B5',
  1335. "mid;": '\U00002223',
  1336. "midast;": '\U0000002A',
  1337. "midcir;": '\U00002AF0',
  1338. "middot;": '\U000000B7',
  1339. "minus;": '\U00002212',
  1340. "minusb;": '\U0000229F',
  1341. "minusd;": '\U00002238',
  1342. "minusdu;": '\U00002A2A',
  1343. "mlcp;": '\U00002ADB',
  1344. "mldr;": '\U00002026',
  1345. "mnplus;": '\U00002213',
  1346. "models;": '\U000022A7',
  1347. "mopf;": '\U0001D55E',
  1348. "mp;": '\U00002213',
  1349. "mscr;": '\U0001D4C2',
  1350. "mstpos;": '\U0000223E',
  1351. "mu;": '\U000003BC',
  1352. "multimap;": '\U000022B8',
  1353. "mumap;": '\U000022B8',
  1354. "nLeftarrow;": '\U000021CD',
  1355. "nLeftrightarrow;": '\U000021CE',
  1356. "nRightarrow;": '\U000021CF',
  1357. "nVDash;": '\U000022AF',
  1358. "nVdash;": '\U000022AE',
  1359. "nabla;": '\U00002207',
  1360. "nacute;": '\U00000144',
  1361. "nap;": '\U00002249',
  1362. "napos;": '\U00000149',
  1363. "napprox;": '\U00002249',
  1364. "natur;": '\U0000266E',
  1365. "natural;": '\U0000266E',
  1366. "naturals;": '\U00002115',
  1367. "nbsp;": '\U000000A0',
  1368. "ncap;": '\U00002A43',
  1369. "ncaron;": '\U00000148',
  1370. "ncedil;": '\U00000146',
  1371. "ncong;": '\U00002247',
  1372. "ncup;": '\U00002A42',
  1373. "ncy;": '\U0000043D',
  1374. "ndash;": '\U00002013',
  1375. "ne;": '\U00002260',
  1376. "neArr;": '\U000021D7',
  1377. "nearhk;": '\U00002924',
  1378. "nearr;": '\U00002197',
  1379. "nearrow;": '\U00002197',
  1380. "nequiv;": '\U00002262',
  1381. "nesear;": '\U00002928',
  1382. "nexist;": '\U00002204',
  1383. "nexists;": '\U00002204',
  1384. "nfr;": '\U0001D52B',
  1385. "nge;": '\U00002271',
  1386. "ngeq;": '\U00002271',
  1387. "ngsim;": '\U00002275',
  1388. "ngt;": '\U0000226F',
  1389. "ngtr;": '\U0000226F',
  1390. "nhArr;": '\U000021CE',
  1391. "nharr;": '\U000021AE',
  1392. "nhpar;": '\U00002AF2',
  1393. "ni;": '\U0000220B',
  1394. "nis;": '\U000022FC',
  1395. "nisd;": '\U000022FA',
  1396. "niv;": '\U0000220B',
  1397. "njcy;": '\U0000045A',
  1398. "nlArr;": '\U000021CD',
  1399. "nlarr;": '\U0000219A',
  1400. "nldr;": '\U00002025',
  1401. "nle;": '\U00002270',
  1402. "nleftarrow;": '\U0000219A',
  1403. "nleftrightarrow;": '\U000021AE',
  1404. "nleq;": '\U00002270',
  1405. "nless;": '\U0000226E',
  1406. "nlsim;": '\U00002274',
  1407. "nlt;": '\U0000226E',
  1408. "nltri;": '\U000022EA',
  1409. "nltrie;": '\U000022EC',
  1410. "nmid;": '\U00002224',
  1411. "nopf;": '\U0001D55F',
  1412. "not;": '\U000000AC',
  1413. "notin;": '\U00002209',
  1414. "notinva;": '\U00002209',
  1415. "notinvb;": '\U000022F7',
  1416. "notinvc;": '\U000022F6',
  1417. "notni;": '\U0000220C',
  1418. "notniva;": '\U0000220C',
  1419. "notnivb;": '\U000022FE',
  1420. "notnivc;": '\U000022FD',
  1421. "npar;": '\U00002226',
  1422. "nparallel;": '\U00002226',
  1423. "npolint;": '\U00002A14',
  1424. "npr;": '\U00002280',
  1425. "nprcue;": '\U000022E0',
  1426. "nprec;": '\U00002280',
  1427. "nrArr;": '\U000021CF',
  1428. "nrarr;": '\U0000219B',
  1429. "nrightarrow;": '\U0000219B',
  1430. "nrtri;": '\U000022EB',
  1431. "nrtrie;": '\U000022ED',
  1432. "nsc;": '\U00002281',
  1433. "nsccue;": '\U000022E1',
  1434. "nscr;": '\U0001D4C3',
  1435. "nshortmid;": '\U00002224',
  1436. "nshortparallel;": '\U00002226',
  1437. "nsim;": '\U00002241',
  1438. "nsime;": '\U00002244',
  1439. "nsimeq;": '\U00002244',
  1440. "nsmid;": '\U00002224',
  1441. "nspar;": '\U00002226',
  1442. "nsqsube;": '\U000022E2',
  1443. "nsqsupe;": '\U000022E3',
  1444. "nsub;": '\U00002284',
  1445. "nsube;": '\U00002288',
  1446. "nsubseteq;": '\U00002288',
  1447. "nsucc;": '\U00002281',
  1448. "nsup;": '\U00002285',
  1449. "nsupe;": '\U00002289',
  1450. "nsupseteq;": '\U00002289',
  1451. "ntgl;": '\U00002279',
  1452. "ntilde;": '\U000000F1',
  1453. "ntlg;": '\U00002278',
  1454. "ntriangleleft;": '\U000022EA',
  1455. "ntrianglelefteq;": '\U000022EC',
  1456. "ntriangleright;": '\U000022EB',
  1457. "ntrianglerighteq;": '\U000022ED',
  1458. "nu;": '\U000003BD',
  1459. "num;": '\U00000023',
  1460. "numero;": '\U00002116',
  1461. "numsp;": '\U00002007',
  1462. "nvDash;": '\U000022AD',
  1463. "nvHarr;": '\U00002904',
  1464. "nvdash;": '\U000022AC',
  1465. "nvinfin;": '\U000029DE',
  1466. "nvlArr;": '\U00002902',
  1467. "nvrArr;": '\U00002903',
  1468. "nwArr;": '\U000021D6',
  1469. "nwarhk;": '\U00002923',
  1470. "nwarr;": '\U00002196',
  1471. "nwarrow;": '\U00002196',
  1472. "nwnear;": '\U00002927',
  1473. "oS;": '\U000024C8',
  1474. "oacute;": '\U000000F3',
  1475. "oast;": '\U0000229B',
  1476. "ocir;": '\U0000229A',
  1477. "ocirc;": '\U000000F4',
  1478. "ocy;": '\U0000043E',
  1479. "odash;": '\U0000229D',
  1480. "odblac;": '\U00000151',
  1481. "odiv;": '\U00002A38',
  1482. "odot;": '\U00002299',
  1483. "odsold;": '\U000029BC',
  1484. "oelig;": '\U00000153',
  1485. "ofcir;": '\U000029BF',
  1486. "ofr;": '\U0001D52C',
  1487. "ogon;": '\U000002DB',
  1488. "ograve;": '\U000000F2',
  1489. "ogt;": '\U000029C1',
  1490. "ohbar;": '\U000029B5',
  1491. "ohm;": '\U000003A9',
  1492. "oint;": '\U0000222E',
  1493. "olarr;": '\U000021BA',
  1494. "olcir;": '\U000029BE',
  1495. "olcross;": '\U000029BB',
  1496. "oline;": '\U0000203E',
  1497. "olt;": '\U000029C0',
  1498. "omacr;": '\U0000014D',
  1499. "omega;": '\U000003C9',
  1500. "omicron;": '\U000003BF',
  1501. "omid;": '\U000029B6',
  1502. "ominus;": '\U00002296',
  1503. "oopf;": '\U0001D560',
  1504. "opar;": '\U000029B7',
  1505. "operp;": '\U000029B9',
  1506. "oplus;": '\U00002295',
  1507. "or;": '\U00002228',
  1508. "orarr;": '\U000021BB',
  1509. "ord;": '\U00002A5D',
  1510. "order;": '\U00002134',
  1511. "orderof;": '\U00002134',
  1512. "ordf;": '\U000000AA',
  1513. "ordm;": '\U000000BA',
  1514. "origof;": '\U000022B6',
  1515. "oror;": '\U00002A56',
  1516. "orslope;": '\U00002A57',
  1517. "orv;": '\U00002A5B',
  1518. "oscr;": '\U00002134',
  1519. "oslash;": '\U000000F8',
  1520. "osol;": '\U00002298',
  1521. "otilde;": '\U000000F5',
  1522. "otimes;": '\U00002297',
  1523. "otimesas;": '\U00002A36',
  1524. "ouml;": '\U000000F6',
  1525. "ovbar;": '\U0000233D',
  1526. "par;": '\U00002225',
  1527. "para;": '\U000000B6',
  1528. "parallel;": '\U00002225',
  1529. "parsim;": '\U00002AF3',
  1530. "parsl;": '\U00002AFD',
  1531. "part;": '\U00002202',
  1532. "pcy;": '\U0000043F',
  1533. "percnt;": '\U00000025',
  1534. "period;": '\U0000002E',
  1535. "permil;": '\U00002030',
  1536. "perp;": '\U000022A5',
  1537. "pertenk;": '\U00002031',
  1538. "pfr;": '\U0001D52D',
  1539. "phi;": '\U000003C6',
  1540. "phiv;": '\U000003D5',
  1541. "phmmat;": '\U00002133',
  1542. "phone;": '\U0000260E',
  1543. "pi;": '\U000003C0',
  1544. "pitchfork;": '\U000022D4',
  1545. "piv;": '\U000003D6',
  1546. "planck;": '\U0000210F',
  1547. "planckh;": '\U0000210E',
  1548. "plankv;": '\U0000210F',
  1549. "plus;": '\U0000002B',
  1550. "plusacir;": '\U00002A23',
  1551. "plusb;": '\U0000229E',
  1552. "pluscir;": '\U00002A22',
  1553. "plusdo;": '\U00002214',
  1554. "plusdu;": '\U00002A25',
  1555. "pluse;": '\U00002A72',
  1556. "plusmn;": '\U000000B1',
  1557. "plussim;": '\U00002A26',
  1558. "plustwo;": '\U00002A27',
  1559. "pm;": '\U000000B1',
  1560. "pointint;": '\U00002A15',
  1561. "popf;": '\U0001D561',
  1562. "pound;": '\U000000A3',
  1563. "pr;": '\U0000227A',
  1564. "prE;": '\U00002AB3',
  1565. "prap;": '\U00002AB7',
  1566. "prcue;": '\U0000227C',
  1567. "pre;": '\U00002AAF',
  1568. "prec;": '\U0000227A',
  1569. "precapprox;": '\U00002AB7',
  1570. "preccurlyeq;": '\U0000227C',
  1571. "preceq;": '\U00002AAF',
  1572. "precnapprox;": '\U00002AB9',
  1573. "precneqq;": '\U00002AB5',
  1574. "precnsim;": '\U000022E8',
  1575. "precsim;": '\U0000227E',
  1576. "prime;": '\U00002032',
  1577. "primes;": '\U00002119',
  1578. "prnE;": '\U00002AB5',
  1579. "prnap;": '\U00002AB9',
  1580. "prnsim;": '\U000022E8',
  1581. "prod;": '\U0000220F',
  1582. "profalar;": '\U0000232E',
  1583. "profline;": '\U00002312',
  1584. "profsurf;": '\U00002313',
  1585. "prop;": '\U0000221D',
  1586. "propto;": '\U0000221D',
  1587. "prsim;": '\U0000227E',
  1588. "prurel;": '\U000022B0',
  1589. "pscr;": '\U0001D4C5',
  1590. "psi;": '\U000003C8',
  1591. "puncsp;": '\U00002008',
  1592. "qfr;": '\U0001D52E',
  1593. "qint;": '\U00002A0C',
  1594. "qopf;": '\U0001D562',
  1595. "qprime;": '\U00002057',
  1596. "qscr;": '\U0001D4C6',
  1597. "quaternions;": '\U0000210D',
  1598. "quatint;": '\U00002A16',
  1599. "quest;": '\U0000003F',
  1600. "questeq;": '\U0000225F',
  1601. "quot;": '\U00000022',
  1602. "rAarr;": '\U000021DB',
  1603. "rArr;": '\U000021D2',
  1604. "rAtail;": '\U0000291C',
  1605. "rBarr;": '\U0000290F',
  1606. "rHar;": '\U00002964',
  1607. "racute;": '\U00000155',
  1608. "radic;": '\U0000221A',
  1609. "raemptyv;": '\U000029B3',
  1610. "rang;": '\U000027E9',
  1611. "rangd;": '\U00002992',
  1612. "range;": '\U000029A5',
  1613. "rangle;": '\U000027E9',
  1614. "raquo;": '\U000000BB',
  1615. "rarr;": '\U00002192',
  1616. "rarrap;": '\U00002975',
  1617. "rarrb;": '\U000021E5',
  1618. "rarrbfs;": '\U00002920',
  1619. "rarrc;": '\U00002933',
  1620. "rarrfs;": '\U0000291E',
  1621. "rarrhk;": '\U000021AA',
  1622. "rarrlp;": '\U000021AC',
  1623. "rarrpl;": '\U00002945',
  1624. "rarrsim;": '\U00002974',
  1625. "rarrtl;": '\U000021A3',
  1626. "rarrw;": '\U0000219D',
  1627. "ratail;": '\U0000291A',
  1628. "ratio;": '\U00002236',
  1629. "rationals;": '\U0000211A',
  1630. "rbarr;": '\U0000290D',
  1631. "rbbrk;": '\U00002773',
  1632. "rbrace;": '\U0000007D',
  1633. "rbrack;": '\U0000005D',
  1634. "rbrke;": '\U0000298C',
  1635. "rbrksld;": '\U0000298E',
  1636. "rbrkslu;": '\U00002990',
  1637. "rcaron;": '\U00000159',
  1638. "rcedil;": '\U00000157',
  1639. "rceil;": '\U00002309',
  1640. "rcub;": '\U0000007D',
  1641. "rcy;": '\U00000440',
  1642. "rdca;": '\U00002937',
  1643. "rdldhar;": '\U00002969',
  1644. "rdquo;": '\U0000201D',
  1645. "rdquor;": '\U0000201D',
  1646. "rdsh;": '\U000021B3',
  1647. "real;": '\U0000211C',
  1648. "realine;": '\U0000211B',
  1649. "realpart;": '\U0000211C',
  1650. "reals;": '\U0000211D',
  1651. "rect;": '\U000025AD',
  1652. "reg;": '\U000000AE',
  1653. "rfisht;": '\U0000297D',
  1654. "rfloor;": '\U0000230B',
  1655. "rfr;": '\U0001D52F',
  1656. "rhard;": '\U000021C1',
  1657. "rharu;": '\U000021C0',
  1658. "rharul;": '\U0000296C',
  1659. "rho;": '\U000003C1',
  1660. "rhov;": '\U000003F1',
  1661. "rightarrow;": '\U00002192',
  1662. "rightarrowtail;": '\U000021A3',
  1663. "rightharpoondown;": '\U000021C1',
  1664. "rightharpoonup;": '\U000021C0',
  1665. "rightleftarrows;": '\U000021C4',
  1666. "rightleftharpoons;": '\U000021CC',
  1667. "rightrightarrows;": '\U000021C9',
  1668. "rightsquigarrow;": '\U0000219D',
  1669. "rightthreetimes;": '\U000022CC',
  1670. "ring;": '\U000002DA',
  1671. "risingdotseq;": '\U00002253',
  1672. "rlarr;": '\U000021C4',
  1673. "rlhar;": '\U000021CC',
  1674. "rlm;": '\U0000200F',
  1675. "rmoust;": '\U000023B1',
  1676. "rmoustache;": '\U000023B1',
  1677. "rnmid;": '\U00002AEE',
  1678. "roang;": '\U000027ED',
  1679. "roarr;": '\U000021FE',
  1680. "robrk;": '\U000027E7',
  1681. "ropar;": '\U00002986',
  1682. "ropf;": '\U0001D563',
  1683. "roplus;": '\U00002A2E',
  1684. "rotimes;": '\U00002A35',
  1685. "rpar;": '\U00000029',
  1686. "rpargt;": '\U00002994',
  1687. "rppolint;": '\U00002A12',
  1688. "rrarr;": '\U000021C9',
  1689. "rsaquo;": '\U0000203A',
  1690. "rscr;": '\U0001D4C7',
  1691. "rsh;": '\U000021B1',
  1692. "rsqb;": '\U0000005D',
  1693. "rsquo;": '\U00002019',
  1694. "rsquor;": '\U00002019',
  1695. "rthree;": '\U000022CC',
  1696. "rtimes;": '\U000022CA',
  1697. "rtri;": '\U000025B9',
  1698. "rtrie;": '\U000022B5',
  1699. "rtrif;": '\U000025B8',
  1700. "rtriltri;": '\U000029CE',
  1701. "ruluhar;": '\U00002968',
  1702. "rx;": '\U0000211E',
  1703. "sacute;": '\U0000015B',
  1704. "sbquo;": '\U0000201A',
  1705. "sc;": '\U0000227B',
  1706. "scE;": '\U00002AB4',
  1707. "scap;": '\U00002AB8',
  1708. "scaron;": '\U00000161',
  1709. "sccue;": '\U0000227D',
  1710. "sce;": '\U00002AB0',
  1711. "scedil;": '\U0000015F',
  1712. "scirc;": '\U0000015D',
  1713. "scnE;": '\U00002AB6',
  1714. "scnap;": '\U00002ABA',
  1715. "scnsim;": '\U000022E9',
  1716. "scpolint;": '\U00002A13',
  1717. "scsim;": '\U0000227F',
  1718. "scy;": '\U00000441',
  1719. "sdot;": '\U000022C5',
  1720. "sdotb;": '\U000022A1',
  1721. "sdote;": '\U00002A66',
  1722. "seArr;": '\U000021D8',
  1723. "searhk;": '\U00002925',
  1724. "searr;": '\U00002198',
  1725. "searrow;": '\U00002198',
  1726. "sect;": '\U000000A7',
  1727. "semi;": '\U0000003B',
  1728. "seswar;": '\U00002929',
  1729. "setminus;": '\U00002216',
  1730. "setmn;": '\U00002216',
  1731. "sext;": '\U00002736',
  1732. "sfr;": '\U0001D530',
  1733. "sfrown;": '\U00002322',
  1734. "sharp;": '\U0000266F',
  1735. "shchcy;": '\U00000449',
  1736. "shcy;": '\U00000448',
  1737. "shortmid;": '\U00002223',
  1738. "shortparallel;": '\U00002225',
  1739. "shy;": '\U000000AD',
  1740. "sigma;": '\U000003C3',
  1741. "sigmaf;": '\U000003C2',
  1742. "sigmav;": '\U000003C2',
  1743. "sim;": '\U0000223C',
  1744. "simdot;": '\U00002A6A',
  1745. "sime;": '\U00002243',
  1746. "simeq;": '\U00002243',
  1747. "simg;": '\U00002A9E',
  1748. "simgE;": '\U00002AA0',
  1749. "siml;": '\U00002A9D',
  1750. "simlE;": '\U00002A9F',
  1751. "simne;": '\U00002246',
  1752. "simplus;": '\U00002A24',
  1753. "simrarr;": '\U00002972',
  1754. "slarr;": '\U00002190',
  1755. "smallsetminus;": '\U00002216',
  1756. "smashp;": '\U00002A33',
  1757. "smeparsl;": '\U000029E4',
  1758. "smid;": '\U00002223',
  1759. "smile;": '\U00002323',
  1760. "smt;": '\U00002AAA',
  1761. "smte;": '\U00002AAC',
  1762. "softcy;": '\U0000044C',
  1763. "sol;": '\U0000002F',
  1764. "solb;": '\U000029C4',
  1765. "solbar;": '\U0000233F',
  1766. "sopf;": '\U0001D564',
  1767. "spades;": '\U00002660',
  1768. "spadesuit;": '\U00002660',
  1769. "spar;": '\U00002225',
  1770. "sqcap;": '\U00002293',
  1771. "sqcup;": '\U00002294',
  1772. "sqsub;": '\U0000228F',
  1773. "sqsube;": '\U00002291',
  1774. "sqsubset;": '\U0000228F',
  1775. "sqsubseteq;": '\U00002291',
  1776. "sqsup;": '\U00002290',
  1777. "sqsupe;": '\U00002292',
  1778. "sqsupset;": '\U00002290',
  1779. "sqsupseteq;": '\U00002292',
  1780. "squ;": '\U000025A1',
  1781. "square;": '\U000025A1',
  1782. "squarf;": '\U000025AA',
  1783. "squf;": '\U000025AA',
  1784. "srarr;": '\U00002192',
  1785. "sscr;": '\U0001D4C8',
  1786. "ssetmn;": '\U00002216',
  1787. "ssmile;": '\U00002323',
  1788. "sstarf;": '\U000022C6',
  1789. "star;": '\U00002606',
  1790. "starf;": '\U00002605',
  1791. "straightepsilon;": '\U000003F5',
  1792. "straightphi;": '\U000003D5',
  1793. "strns;": '\U000000AF',
  1794. "sub;": '\U00002282',
  1795. "subE;": '\U00002AC5',
  1796. "subdot;": '\U00002ABD',
  1797. "sube;": '\U00002286',
  1798. "subedot;": '\U00002AC3',
  1799. "submult;": '\U00002AC1',
  1800. "subnE;": '\U00002ACB',
  1801. "subne;": '\U0000228A',
  1802. "subplus;": '\U00002ABF',
  1803. "subrarr;": '\U00002979',
  1804. "subset;": '\U00002282',
  1805. "subseteq;": '\U00002286',
  1806. "subseteqq;": '\U00002AC5',
  1807. "subsetneq;": '\U0000228A',
  1808. "subsetneqq;": '\U00002ACB',
  1809. "subsim;": '\U00002AC7',
  1810. "subsub;": '\U00002AD5',
  1811. "subsup;": '\U00002AD3',
  1812. "succ;": '\U0000227B',
  1813. "succapprox;": '\U00002AB8',
  1814. "succcurlyeq;": '\U0000227D',
  1815. "succeq;": '\U00002AB0',
  1816. "succnapprox;": '\U00002ABA',
  1817. "succneqq;": '\U00002AB6',
  1818. "succnsim;": '\U000022E9',
  1819. "succsim;": '\U0000227F',
  1820. "sum;": '\U00002211',
  1821. "sung;": '\U0000266A',
  1822. "sup;": '\U00002283',
  1823. "sup1;": '\U000000B9',
  1824. "sup2;": '\U000000B2',
  1825. "sup3;": '\U000000B3',
  1826. "supE;": '\U00002AC6',
  1827. "supdot;": '\U00002ABE',
  1828. "supdsub;": '\U00002AD8',
  1829. "supe;": '\U00002287',
  1830. "supedot;": '\U00002AC4',
  1831. "suphsol;": '\U000027C9',
  1832. "suphsub;": '\U00002AD7',
  1833. "suplarr;": '\U0000297B',
  1834. "supmult;": '\U00002AC2',
  1835. "supnE;": '\U00002ACC',
  1836. "supne;": '\U0000228B',
  1837. "supplus;": '\U00002AC0',
  1838. "supset;": '\U00002283',
  1839. "supseteq;": '\U00002287',
  1840. "supseteqq;": '\U00002AC6',
  1841. "supsetneq;": '\U0000228B',
  1842. "supsetneqq;": '\U00002ACC',
  1843. "supsim;": '\U00002AC8',
  1844. "supsub;": '\U00002AD4',
  1845. "supsup;": '\U00002AD6',
  1846. "swArr;": '\U000021D9',
  1847. "swarhk;": '\U00002926',
  1848. "swarr;": '\U00002199',
  1849. "swarrow;": '\U00002199',
  1850. "swnwar;": '\U0000292A',
  1851. "szlig;": '\U000000DF',
  1852. "target;": '\U00002316',
  1853. "tau;": '\U000003C4',
  1854. "tbrk;": '\U000023B4',
  1855. "tcaron;": '\U00000165',
  1856. "tcedil;": '\U00000163',
  1857. "tcy;": '\U00000442',
  1858. "tdot;": '\U000020DB',
  1859. "telrec;": '\U00002315',
  1860. "tfr;": '\U0001D531',
  1861. "there4;": '\U00002234',
  1862. "therefore;": '\U00002234',
  1863. "theta;": '\U000003B8',
  1864. "thetasym;": '\U000003D1',
  1865. "thetav;": '\U000003D1',
  1866. "thickapprox;": '\U00002248',
  1867. "thicksim;": '\U0000223C',
  1868. "thinsp;": '\U00002009',
  1869. "thkap;": '\U00002248',
  1870. "thksim;": '\U0000223C',
  1871. "thorn;": '\U000000FE',
  1872. "tilde;": '\U000002DC',
  1873. "times;": '\U000000D7',
  1874. "timesb;": '\U000022A0',
  1875. "timesbar;": '\U00002A31',
  1876. "timesd;": '\U00002A30',
  1877. "tint;": '\U0000222D',
  1878. "toea;": '\U00002928',
  1879. "top;": '\U000022A4',
  1880. "topbot;": '\U00002336',
  1881. "topcir;": '\U00002AF1',
  1882. "topf;": '\U0001D565',
  1883. "topfork;": '\U00002ADA',
  1884. "tosa;": '\U00002929',
  1885. "tprime;": '\U00002034',
  1886. "trade;": '\U00002122',
  1887. "triangle;": '\U000025B5',
  1888. "triangledown;": '\U000025BF',
  1889. "triangleleft;": '\U000025C3',
  1890. "trianglelefteq;": '\U000022B4',
  1891. "triangleq;": '\U0000225C',
  1892. "triangleright;": '\U000025B9',
  1893. "trianglerighteq;": '\U000022B5',
  1894. "tridot;": '\U000025EC',
  1895. "trie;": '\U0000225C',
  1896. "triminus;": '\U00002A3A',
  1897. "triplus;": '\U00002A39',
  1898. "trisb;": '\U000029CD',
  1899. "tritime;": '\U00002A3B',
  1900. "trpezium;": '\U000023E2',
  1901. "tscr;": '\U0001D4C9',
  1902. "tscy;": '\U00000446',
  1903. "tshcy;": '\U0000045B',
  1904. "tstrok;": '\U00000167',
  1905. "twixt;": '\U0000226C',
  1906. "twoheadleftarrow;": '\U0000219E',
  1907. "twoheadrightarrow;": '\U000021A0',
  1908. "uArr;": '\U000021D1',
  1909. "uHar;": '\U00002963',
  1910. "uacute;": '\U000000FA',
  1911. "uarr;": '\U00002191',
  1912. "ubrcy;": '\U0000045E',
  1913. "ubreve;": '\U0000016D',
  1914. "ucirc;": '\U000000FB',
  1915. "ucy;": '\U00000443',
  1916. "udarr;": '\U000021C5',
  1917. "udblac;": '\U00000171',
  1918. "udhar;": '\U0000296E',
  1919. "ufisht;": '\U0000297E',
  1920. "ufr;": '\U0001D532',
  1921. "ugrave;": '\U000000F9',
  1922. "uharl;": '\U000021BF',
  1923. "uharr;": '\U000021BE',
  1924. "uhblk;": '\U00002580',
  1925. "ulcorn;": '\U0000231C',
  1926. "ulcorner;": '\U0000231C',
  1927. "ulcrop;": '\U0000230F',
  1928. "ultri;": '\U000025F8',
  1929. "umacr;": '\U0000016B',
  1930. "uml;": '\U000000A8',
  1931. "uogon;": '\U00000173',
  1932. "uopf;": '\U0001D566',
  1933. "uparrow;": '\U00002191',
  1934. "updownarrow;": '\U00002195',
  1935. "upharpoonleft;": '\U000021BF',
  1936. "upharpoonright;": '\U000021BE',
  1937. "uplus;": '\U0000228E',
  1938. "upsi;": '\U000003C5',
  1939. "upsih;": '\U000003D2',
  1940. "upsilon;": '\U000003C5',
  1941. "upuparrows;": '\U000021C8',
  1942. "urcorn;": '\U0000231D',
  1943. "urcorner;": '\U0000231D',
  1944. "urcrop;": '\U0000230E',
  1945. "uring;": '\U0000016F',
  1946. "urtri;": '\U000025F9',
  1947. "uscr;": '\U0001D4CA',
  1948. "utdot;": '\U000022F0',
  1949. "utilde;": '\U00000169',
  1950. "utri;": '\U000025B5',
  1951. "utrif;": '\U000025B4',
  1952. "uuarr;": '\U000021C8',
  1953. "uuml;": '\U000000FC',
  1954. "uwangle;": '\U000029A7',
  1955. "vArr;": '\U000021D5',
  1956. "vBar;": '\U00002AE8',
  1957. "vBarv;": '\U00002AE9',
  1958. "vDash;": '\U000022A8',
  1959. "vangrt;": '\U0000299C',
  1960. "varepsilon;": '\U000003F5',
  1961. "varkappa;": '\U000003F0',
  1962. "varnothing;": '\U00002205',
  1963. "varphi;": '\U000003D5',
  1964. "varpi;": '\U000003D6',
  1965. "varpropto;": '\U0000221D',
  1966. "varr;": '\U00002195',
  1967. "varrho;": '\U000003F1',
  1968. "varsigma;": '\U000003C2',
  1969. "vartheta;": '\U000003D1',
  1970. "vartriangleleft;": '\U000022B2',
  1971. "vartriangleright;": '\U000022B3',
  1972. "vcy;": '\U00000432',
  1973. "vdash;": '\U000022A2',
  1974. "vee;": '\U00002228',
  1975. "veebar;": '\U000022BB',
  1976. "veeeq;": '\U0000225A',
  1977. "vellip;": '\U000022EE',
  1978. "verbar;": '\U0000007C',
  1979. "vert;": '\U0000007C',
  1980. "vfr;": '\U0001D533',
  1981. "vltri;": '\U000022B2',
  1982. "vopf;": '\U0001D567',
  1983. "vprop;": '\U0000221D',
  1984. "vrtri;": '\U000022B3',
  1985. "vscr;": '\U0001D4CB',
  1986. "vzigzag;": '\U0000299A',
  1987. "wcirc;": '\U00000175',
  1988. "wedbar;": '\U00002A5F',
  1989. "wedge;": '\U00002227',
  1990. "wedgeq;": '\U00002259',
  1991. "weierp;": '\U00002118',
  1992. "wfr;": '\U0001D534',
  1993. "wopf;": '\U0001D568',
  1994. "wp;": '\U00002118',
  1995. "wr;": '\U00002240',
  1996. "wreath;": '\U00002240',
  1997. "wscr;": '\U0001D4CC',
  1998. "xcap;": '\U000022C2',
  1999. "xcirc;": '\U000025EF',
  2000. "xcup;": '\U000022C3',
  2001. "xdtri;": '\U000025BD',
  2002. "xfr;": '\U0001D535',
  2003. "xhArr;": '\U000027FA',
  2004. "xharr;": '\U000027F7',
  2005. "xi;": '\U000003BE',
  2006. "xlArr;": '\U000027F8',
  2007. "xlarr;": '\U000027F5',
  2008. "xmap;": '\U000027FC',
  2009. "xnis;": '\U000022FB',
  2010. "xodot;": '\U00002A00',
  2011. "xopf;": '\U0001D569',
  2012. "xoplus;": '\U00002A01',
  2013. "xotime;": '\U00002A02',
  2014. "xrArr;": '\U000027F9',
  2015. "xrarr;": '\U000027F6',
  2016. "xscr;": '\U0001D4CD',
  2017. "xsqcup;": '\U00002A06',
  2018. "xuplus;": '\U00002A04',
  2019. "xutri;": '\U000025B3',
  2020. "xvee;": '\U000022C1',
  2021. "xwedge;": '\U000022C0',
  2022. "yacute;": '\U000000FD',
  2023. "yacy;": '\U0000044F',
  2024. "ycirc;": '\U00000177',
  2025. "ycy;": '\U0000044B',
  2026. "yen;": '\U000000A5',
  2027. "yfr;": '\U0001D536',
  2028. "yicy;": '\U00000457',
  2029. "yopf;": '\U0001D56A',
  2030. "yscr;": '\U0001D4CE',
  2031. "yucy;": '\U0000044E',
  2032. "yuml;": '\U000000FF',
  2033. "zacute;": '\U0000017A',
  2034. "zcaron;": '\U0000017E',
  2035. "zcy;": '\U00000437',
  2036. "zdot;": '\U0000017C',
  2037. "zeetrf;": '\U00002128',
  2038. "zeta;": '\U000003B6',
  2039. "zfr;": '\U0001D537',
  2040. "zhcy;": '\U00000436',
  2041. "zigrarr;": '\U000021DD',
  2042. "zopf;": '\U0001D56B',
  2043. "zscr;": '\U0001D4CF',
  2044. "zwj;": '\U0000200D',
  2045. "zwnj;": '\U0000200C',
  2046. "AElig": '\U000000C6',
  2047. "AMP": '\U00000026',
  2048. "Aacute": '\U000000C1',
  2049. "Acirc": '\U000000C2',
  2050. "Agrave": '\U000000C0',
  2051. "Aring": '\U000000C5',
  2052. "Atilde": '\U000000C3',
  2053. "Auml": '\U000000C4',
  2054. "COPY": '\U000000A9',
  2055. "Ccedil": '\U000000C7',
  2056. "ETH": '\U000000D0',
  2057. "Eacute": '\U000000C9',
  2058. "Ecirc": '\U000000CA',
  2059. "Egrave": '\U000000C8',
  2060. "Euml": '\U000000CB',
  2061. "GT": '\U0000003E',
  2062. "Iacute": '\U000000CD',
  2063. "Icirc": '\U000000CE',
  2064. "Igrave": '\U000000CC',
  2065. "Iuml": '\U000000CF',
  2066. "LT": '\U0000003C',
  2067. "Ntilde": '\U000000D1',
  2068. "Oacute": '\U000000D3',
  2069. "Ocirc": '\U000000D4',
  2070. "Ograve": '\U000000D2',
  2071. "Oslash": '\U000000D8',
  2072. "Otilde": '\U000000D5',
  2073. "Ouml": '\U000000D6',
  2074. "QUOT": '\U00000022',
  2075. "REG": '\U000000AE',
  2076. "THORN": '\U000000DE',
  2077. "Uacute": '\U000000DA',
  2078. "Ucirc": '\U000000DB',
  2079. "Ugrave": '\U000000D9',
  2080. "Uuml": '\U000000DC',
  2081. "Yacute": '\U000000DD',
  2082. "aacute": '\U000000E1',
  2083. "acirc": '\U000000E2',
  2084. "acute": '\U000000B4',
  2085. "aelig": '\U000000E6',
  2086. "agrave": '\U000000E0',
  2087. "amp": '\U00000026',
  2088. "aring": '\U000000E5',
  2089. "atilde": '\U000000E3',
  2090. "auml": '\U000000E4',
  2091. "brvbar": '\U000000A6',
  2092. "ccedil": '\U000000E7',
  2093. "cedil": '\U000000B8',
  2094. "cent": '\U000000A2',
  2095. "copy": '\U000000A9',
  2096. "curren": '\U000000A4',
  2097. "deg": '\U000000B0',
  2098. "divide": '\U000000F7',
  2099. "eacute": '\U000000E9',
  2100. "ecirc": '\U000000EA',
  2101. "egrave": '\U000000E8',
  2102. "eth": '\U000000F0',
  2103. "euml": '\U000000EB',
  2104. "frac12": '\U000000BD',
  2105. "frac14": '\U000000BC',
  2106. "frac34": '\U000000BE',
  2107. "gt": '\U0000003E',
  2108. "iacute": '\U000000ED',
  2109. "icirc": '\U000000EE',
  2110. "iexcl": '\U000000A1',
  2111. "igrave": '\U000000EC',
  2112. "iquest": '\U000000BF',
  2113. "iuml": '\U000000EF',
  2114. "laquo": '\U000000AB',
  2115. "lt": '\U0000003C',
  2116. "macr": '\U000000AF',
  2117. "micro": '\U000000B5',
  2118. "middot": '\U000000B7',
  2119. "nbsp": '\U000000A0',
  2120. "not": '\U000000AC',
  2121. "ntilde": '\U000000F1',
  2122. "oacute": '\U000000F3',
  2123. "ocirc": '\U000000F4',
  2124. "ograve": '\U000000F2',
  2125. "ordf": '\U000000AA',
  2126. "ordm": '\U000000BA',
  2127. "oslash": '\U000000F8',
  2128. "otilde": '\U000000F5',
  2129. "ouml": '\U000000F6',
  2130. "para": '\U000000B6',
  2131. "plusmn": '\U000000B1',
  2132. "pound": '\U000000A3',
  2133. "quot": '\U00000022',
  2134. "raquo": '\U000000BB',
  2135. "reg": '\U000000AE',
  2136. "sect": '\U000000A7',
  2137. "shy": '\U000000AD',
  2138. "sup1": '\U000000B9',
  2139. "sup2": '\U000000B2',
  2140. "sup3": '\U000000B3',
  2141. "szlig": '\U000000DF',
  2142. "thorn": '\U000000FE',
  2143. "times": '\U000000D7',
  2144. "uacute": '\U000000FA',
  2145. "ucirc": '\U000000FB',
  2146. "ugrave": '\U000000F9',
  2147. "uml": '\U000000A8',
  2148. "uuml": '\U000000FC',
  2149. "yacute": '\U000000FD',
  2150. "yen": '\U000000A5',
  2151. "yuml": '\U000000FF',
  2152. }
  2153. // HTML entities that are two unicode codepoints.
  2154. var entity2 = map[string][2]rune{
  2155. // TODO(nigeltao): Handle replacements that are wider than their names.
  2156. // "nLt;": {'\u226A', '\u20D2'},
  2157. // "nGt;": {'\u226B', '\u20D2'},
  2158. "NotEqualTilde;": {'\u2242', '\u0338'},
  2159. "NotGreaterFullEqual;": {'\u2267', '\u0338'},
  2160. "NotGreaterGreater;": {'\u226B', '\u0338'},
  2161. "NotGreaterSlantEqual;": {'\u2A7E', '\u0338'},
  2162. "NotHumpDownHump;": {'\u224E', '\u0338'},
  2163. "NotHumpEqual;": {'\u224F', '\u0338'},
  2164. "NotLeftTriangleBar;": {'\u29CF', '\u0338'},
  2165. "NotLessLess;": {'\u226A', '\u0338'},
  2166. "NotLessSlantEqual;": {'\u2A7D', '\u0338'},
  2167. "NotNestedGreaterGreater;": {'\u2AA2', '\u0338'},
  2168. "NotNestedLessLess;": {'\u2AA1', '\u0338'},
  2169. "NotPrecedesEqual;": {'\u2AAF', '\u0338'},
  2170. "NotRightTriangleBar;": {'\u29D0', '\u0338'},
  2171. "NotSquareSubset;": {'\u228F', '\u0338'},
  2172. "NotSquareSuperset;": {'\u2290', '\u0338'},
  2173. "NotSubset;": {'\u2282', '\u20D2'},
  2174. "NotSucceedsEqual;": {'\u2AB0', '\u0338'},
  2175. "NotSucceedsTilde;": {'\u227F', '\u0338'},
  2176. "NotSuperset;": {'\u2283', '\u20D2'},
  2177. "ThickSpace;": {'\u205F', '\u200A'},
  2178. "acE;": {'\u223E', '\u0333'},
  2179. "bne;": {'\u003D', '\u20E5'},
  2180. "bnequiv;": {'\u2261', '\u20E5'},
  2181. "caps;": {'\u2229', '\uFE00'},
  2182. "cups;": {'\u222A', '\uFE00'},
  2183. "fjlig;": {'\u0066', '\u006A'},
  2184. "gesl;": {'\u22DB', '\uFE00'},
  2185. "gvertneqq;": {'\u2269', '\uFE00'},
  2186. "gvnE;": {'\u2269', '\uFE00'},
  2187. "lates;": {'\u2AAD', '\uFE00'},
  2188. "lesg;": {'\u22DA', '\uFE00'},
  2189. "lvertneqq;": {'\u2268', '\uFE00'},
  2190. "lvnE;": {'\u2268', '\uFE00'},
  2191. "nGg;": {'\u22D9', '\u0338'},
  2192. "nGtv;": {'\u226B', '\u0338'},
  2193. "nLl;": {'\u22D8', '\u0338'},
  2194. "nLtv;": {'\u226A', '\u0338'},
  2195. "nang;": {'\u2220', '\u20D2'},
  2196. "napE;": {'\u2A70', '\u0338'},
  2197. "napid;": {'\u224B', '\u0338'},
  2198. "nbump;": {'\u224E', '\u0338'},
  2199. "nbumpe;": {'\u224F', '\u0338'},
  2200. "ncongdot;": {'\u2A6D', '\u0338'},
  2201. "nedot;": {'\u2250', '\u0338'},
  2202. "nesim;": {'\u2242', '\u0338'},
  2203. "ngE;": {'\u2267', '\u0338'},
  2204. "ngeqq;": {'\u2267', '\u0338'},
  2205. "ngeqslant;": {'\u2A7E', '\u0338'},
  2206. "nges;": {'\u2A7E', '\u0338'},
  2207. "nlE;": {'\u2266', '\u0338'},
  2208. "nleqq;": {'\u2266', '\u0338'},
  2209. "nleqslant;": {'\u2A7D', '\u0338'},
  2210. "nles;": {'\u2A7D', '\u0338'},
  2211. "notinE;": {'\u22F9', '\u0338'},
  2212. "notindot;": {'\u22F5', '\u0338'},
  2213. "nparsl;": {'\u2AFD', '\u20E5'},
  2214. "npart;": {'\u2202', '\u0338'},
  2215. "npre;": {'\u2AAF', '\u0338'},
  2216. "npreceq;": {'\u2AAF', '\u0338'},
  2217. "nrarrc;": {'\u2933', '\u0338'},
  2218. "nrarrw;": {'\u219D', '\u0338'},
  2219. "nsce;": {'\u2AB0', '\u0338'},
  2220. "nsubE;": {'\u2AC5', '\u0338'},
  2221. "nsubset;": {'\u2282', '\u20D2'},
  2222. "nsubseteqq;": {'\u2AC5', '\u0338'},
  2223. "nsucceq;": {'\u2AB0', '\u0338'},
  2224. "nsupE;": {'\u2AC6', '\u0338'},
  2225. "nsupset;": {'\u2283', '\u20D2'},
  2226. "nsupseteqq;": {'\u2AC6', '\u0338'},
  2227. "nvap;": {'\u224D', '\u20D2'},
  2228. "nvge;": {'\u2265', '\u20D2'},
  2229. "nvgt;": {'\u003E', '\u20D2'},
  2230. "nvle;": {'\u2264', '\u20D2'},
  2231. "nvlt;": {'\u003C', '\u20D2'},
  2232. "nvltrie;": {'\u22B4', '\u20D2'},
  2233. "nvrtrie;": {'\u22B5', '\u20D2'},
  2234. "nvsim;": {'\u223C', '\u20D2'},
  2235. "race;": {'\u223D', '\u0331'},
  2236. "smtes;": {'\u2AAC', '\uFE00'},
  2237. "sqcaps;": {'\u2293', '\uFE00'},
  2238. "sqcups;": {'\u2294', '\uFE00'},
  2239. "varsubsetneq;": {'\u228A', '\uFE00'},
  2240. "varsubsetneqq;": {'\u2ACB', '\uFE00'},
  2241. "varsupsetneq;": {'\u228B', '\uFE00'},
  2242. "varsupsetneqq;": {'\u2ACC', '\uFE00'},
  2243. "vnsub;": {'\u2282', '\u20D2'},
  2244. "vnsup;": {'\u2283', '\u20D2'},
  2245. "vsubnE;": {'\u2ACB', '\uFE00'},
  2246. "vsubne;": {'\u228A', '\uFE00'},
  2247. "vsupnE;": {'\u2ACC', '\uFE00'},
  2248. "vsupne;": {'\u228B', '\uFE00'},
  2249. }