entity.go 114 KB

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