From 305fdb2acd4efc585b2004a9d5a1cd7d1a0741c0 Mon Sep 17 00:00:00 2001 From: Karl Berry Date: Thu, 12 Jul 2018 20:19:16 +0000 Subject: luaxml (12jul18) git-svn-id: svn://tug.org/texlive/trunk@48190 c570f23f-e606-0410-a88d-b1316a301751 --- Master/texmf-dist/doc/luatex/luaxml/README | 2 +- Master/texmf-dist/doc/luatex/luaxml/luaxml.pdf | Bin 96782 -> 98532 bytes Master/texmf-dist/doc/luatex/luaxml/luaxml.tex | 2 +- .../tex/luatex/luaxml/luaxml-domobject.lua | 13 +- .../tex/luatex/luaxml/luaxml-mod-handler.lua | 7 +- .../tex/luatex/luaxml/luaxml-mod-xml.lua | 13 +- .../tex/luatex/luaxml/luaxml-namedentities.lua | 2233 -------------------- 7 files changed, 25 insertions(+), 2245 deletions(-) delete mode 100644 Master/texmf-dist/tex/luatex/luaxml/luaxml-namedentities.lua diff --git a/Master/texmf-dist/doc/luatex/luaxml/README b/Master/texmf-dist/doc/luatex/luaxml/README index a25ba1f862e..36a20921c27 100644 --- a/Master/texmf-dist/doc/luatex/luaxml/README +++ b/Master/texmf-dist/doc/luatex/luaxml/README @@ -29,7 +29,7 @@ Author ------ Michal Hoftich Email: michal.h21@gmail.com -Version: 0.1c +Version: 0.1d Original authors: Paul Chakravarti and Manoel Campos (http://manoelcampos.com) diff --git a/Master/texmf-dist/doc/luatex/luaxml/luaxml.pdf b/Master/texmf-dist/doc/luatex/luaxml/luaxml.pdf index 3ccb1d9c67e..f528062da06 100644 Binary files a/Master/texmf-dist/doc/luatex/luaxml/luaxml.pdf and b/Master/texmf-dist/doc/luatex/luaxml/luaxml.pdf differ diff --git a/Master/texmf-dist/doc/luatex/luaxml/luaxml.tex b/Master/texmf-dist/doc/luatex/luaxml/luaxml.tex index 9a4de25edf7..3d4bcdd9f3f 100644 --- a/Master/texmf-dist/doc/luatex/luaxml/luaxml.tex +++ b/Master/texmf-dist/doc/luatex/luaxml/luaxml.tex @@ -7,7 +7,7 @@ \usepackage{framed} % Version is defined in the makefile, use default values when compiled directly \ifdefined\version\else -\def\version{0.1c} +\def\version{0.1d} \let\gitdate\date \fi \newcommand\modulename[1]{\subsection{#1}\label{sec:#1}} diff --git a/Master/texmf-dist/tex/luatex/luaxml/luaxml-domobject.lua b/Master/texmf-dist/tex/luatex/luaxml/luaxml-domobject.lua index 21f67a6f4ed..ac4404b393a 100644 --- a/Master/texmf-dist/tex/luatex/luaxml/luaxml-domobject.lua +++ b/Master/texmf-dist/tex/luatex/luaxml/luaxml-domobject.lua @@ -37,7 +37,9 @@ local actions = { COMMENT = {start = ""}, ELEMENT = {start = "<%s%s>", stop = "", void = "<%s%s />"}, DECL = {start = ""}, - DTD = {start = ""} + DTD = {start = ""}, + CDATA = {start = ""} + } --- It serializes the DOM object back to the XML. @@ -370,11 +372,16 @@ local parse = function( --- Add child node to the current node function DOM_Object:add_child_node( - child --- element to be inserted as a current node child + child, --- element to be inserted as a current node child + position --- [optional] position at which should the node be inserted ) local parent = self child._parent = parent - table.insert(parent._children, child) + if position then + table.insert(parent._children, position, child) + else + table.insert(parent._children, child) + end end diff --git a/Master/texmf-dist/tex/luatex/luaxml/luaxml-mod-handler.lua b/Master/texmf-dist/tex/luatex/luaxml/luaxml-mod-handler.lua index 52acecb0c65..5f12a92f714 100644 --- a/Master/texmf-dist/tex/luatex/luaxml/luaxml-mod-handler.lua +++ b/Master/texmf-dist/tex/luatex/luaxml/luaxml-mod-handler.lua @@ -319,7 +319,12 @@ local function domHandler() table.insert(self.current._children,node) end end - obj.cdata = obj.text + obj.cdata = function(self,t) + local node = { _type = "CDATA", + _parent = self.current, + _text = decode(t) } + table.insert(self.current._children,node) + end return obj end M.domHandler = domHandler diff --git a/Master/texmf-dist/tex/luatex/luaxml/luaxml-mod-xml.lua b/Master/texmf-dist/tex/luatex/luaxml/luaxml-mod-xml.lua index 3e52ecec8f8..2d995901059 100644 --- a/Master/texmf-dist/tex/luatex/luaxml/luaxml-mod-xml.lua +++ b/Master/texmf-dist/tex/luatex/luaxml/luaxml-mod-xml.lua @@ -363,12 +363,13 @@ local xmlParser = function(handler) obj._LEADINGWS = '^%s+' obj._TRAILINGWS = '%s+$' obj._WS = '^%s*$' - obj._DTD1 = '' - obj._DTD2 = '' - obj._DTD3 = '' - obj._DTD4 = '' - obj._DTD5 = '' - obj._DTD6 = '' + local allowed_element_name_pattern = "[%w_%.%-]+" + obj._DTD1 = '' + obj._DTD2 = '' + obj._DTD3 = '' + obj._DTD4 = '' + obj._DTD5 = '' + obj._DTD6 = '' --obj._DTD6 = "" obj._ATTRERR1 = '=%s*"[^"]*$' diff --git a/Master/texmf-dist/tex/luatex/luaxml/luaxml-namedentities.lua b/Master/texmf-dist/tex/luatex/luaxml/luaxml-namedentities.lua deleted file mode 100644 index 5d686929147..00000000000 --- a/Master/texmf-dist/tex/luatex/luaxml/luaxml-namedentities.lua +++ /dev/null @@ -1,2233 +0,0 @@ -return { -["HARDcy"]="Ъ", -["capdot"]="⩀", -["pound"]="£", -["upuparrows"]="⇈", -["RightFloor"]="⌋", -["LeftUpTeeVector"]="⥠", -["shcy"]="ш", -["ac"]="∾", -["Iacute"]="Í", -["boxVl"]="╢", -["prap"]="⪷", -["ocirc"]="ô", -["Rsh"]="↱", -["Ncy"]="Н", -["mdash"]="—", -["lozf"]="⧫", -["ETH"]="Ð", -["rhov"]="ϱ", -["dtri"]="▿", -["shortparallel"]="∥", -["DiacriticalDoubleAcute"]="˝", -["Uring"]="Ů", -["gap"]="⪆", -["notinvb"]="⋷", -["nsc"]="⊁", -["zeta"]="ζ", -["Ouml"]="Ö", -["Sub"]="⋐", -["Zdot"]="Ż", -["ograve"]="ò", -["block"]="█", -["toea"]="⤨", -["odash"]="⊝", -["DownRightVector"]="⇁", -["siml"]="⪝", -["sharp"]="♯", -["oline"]="‾", -["Proportional"]="∝", -["Lacute"]="Ĺ", -["gtreqqless"]="⪌", -["Im"]="ℑ", -["blacktriangledown"]="▾", -["ndash"]="–", -["straightepsilon"]="ϵ", -["bigodot"]="⨀", -["npr"]="⊀", -["iocy"]="ё", -["lltri"]="◺", -["Uuml"]="Ü", -["srarr"]="→", -["nvap"]="≍⃒", -["nprec"]="⊀", -["Rcy"]="Р", -["DownArrowBar"]="⤓", -["Ll"]="⋘", -["forkv"]="⫙", -["LongLeftArrow"]="⟵", -["LeftUpVectorBar"]="⥘", -["jsercy"]="ј", -["thkap"]="≈", -["gsime"]="⪎", -["realine"]="ℛ", -["nsupset"]="⊃⃒", -["inodot"]="ı", -["CircleDot"]="⊙", -["qint"]="⨌", -["nLeftarrow"]="⇍", -["prnap"]="⪹", -["caron"]="ˇ", -["LessFullEqual"]="≦", -["RightVectorBar"]="⥓", -["kappa"]="κ", -["Ascr"]="𝒜", -["Emacr"]="Ē", -["nsup"]="⊅", -["simlE"]="⪟", -["gamma"]="γ", -["CircleTimes"]="⊗", -["Aogon"]="Ą", -["sstarf"]="⋆", -["drbkarow"]="⤐", -["ruluhar"]="⥨", -["icirc"]="î", -["Esim"]="⩳", -["Longleftrightarrow"]="⟺", -["SquareUnion"]="⊔", -["Iacute"]="Í", -["oplus"]="⊕", -["VerticalSeparator"]="❘", -["coprod"]="∐", -["eDot"]="≑", -["TScy"]="Ц", -["Leftrightarrow"]="⇔", -["Lcy"]="Л", -["NotSucceedsSlantEqual"]="⋡", -["Tstrok"]="Ŧ", -["QUOT"]="\"", -["curlyeqsucc"]="⋟", -["lozenge"]="◊", -["ltcir"]="⩹", -["Lsh"]="↰", -["ldsh"]="↲", -["dcaron"]="ď", -["scaron"]="š", -["Racute"]="Ŕ", -["nvgt"]=">⃒", -["Cscr"]="𝒞", -["rmoustache"]="⎱", -["Ucy"]="У", -["LessEqualGreater"]="⋚", -["lsime"]="⪍", -["Iuml"]="Ï", -["zfr"]="𝔷", -["LowerLeftArrow"]="↙", -["ccaps"]="⩍", -["smeparsl"]="⧤", -["hellip"]="…", -["rcaron"]="ř", -["Dscr"]="𝒟", -["clubs"]="♣", -["Poincareplane"]="ℌ", -["Vcy"]="В", -["nles"]="⩽̸", -["blank"]="␣", -["order"]="ℴ", -["ccups"]="⩌", -["rbrkslu"]="⦐", -["easter"]="⩮", -["ltimes"]="⋉", -["rBarr"]="⤏", -["nlArr"]="⇍", -["minusdu"]="⨪", -["nhArr"]="⇎", -["lg"]="≶", -["LessGreater"]="≶", -["lne"]="⪇", -["NegativeThickSpace"]="​", -["LessLess"]="⪡", -["nsime"]="≄", -["nltri"]="⋪", -["boxvL"]="╡", -["isin"]="∈", -["UnderBrace"]="⏟", -["el"]="⪙", -["ntriangleleft"]="⋪", -["lnsim"]="⋦", -["Sacute"]="Ś", -["Fscr"]="ℱ", -["gbreve"]="ğ", -["ohbar"]="⦵", -["alefsym"]="ℵ", -["nap"]="≉", -["eqvparsl"]="⧥", -["NegativeVeryThinSpace"]="​", -["prod"]="∏", -["ohm"]="Ω", -["NotNestedGreaterGreater"]="⪢̸", -["rtimes"]="⋊", -["sigmav"]="ς", -["check"]="✓", -["reg"]="®", -["Gscr"]="𝒢", -["nLeftrightarrow"]="⇎", -["triminus"]="⨺", -["topfork"]="⫚", -["Ugrave"]="Ù", -["nleqslant"]="⩽̸", -["Oacute"]="Ó", -["NonBreakingSpace"]=" ", -["eqcolon"]="≕", -["lrcorner"]="⌟", -["Ycy"]="Ы", -["rarrtl"]="↣", -["Udblac"]="Ű", -["gl"]="≷", -["rightarrow"]="→", -["nprcue"]="⋠", -["Hscr"]="ℋ", -["rlhar"]="⇌", -["trianglerighteq"]="⊵", -["Uacute"]="Ú", -["nexist"]="∄", -["plusmn"]="±", -["hardcy"]="ъ", -["Zcy"]="З", -["lbarr"]="⤌", -["macr"]="¯", -["prnsim"]="⋨", -["NotTildeEqual"]="≄", -["Iscr"]="ℐ", -["Element"]="∈", -["Subset"]="⋐", -["supsetneq"]="⊋", -["raemptyv"]="⦳", -["Scy"]="С", -["xmap"]="⟼", -["ugrave"]="ù", -["notnivc"]="⋽", -["LessTilde"]="≲", -["RightUpVectorBar"]="⥔", -["epar"]="⋕", -["otimes"]="⊗", -["boxH"]="═", -["angmsdae"]="⦬", -["topcir"]="⫱", -["shy"]="­", -["Lstrok"]="Ł", -["latail"]="⤙", -["Tcy"]="Т", -["sqcup"]="⊔", -["sqsub"]="⊏", -["sqcap"]="⊓", -["angmsd"]="∡", -["parallel"]="∥", -["minus"]="−", -["circ"]="ˆ", -["alpha"]="α", -["chcy"]="ч", -["SucceedsEqual"]="⪰", -["opar"]="⦷", -["Cayleys"]="ℭ", -["agrave"]="à", -["imagpart"]="ℑ", -["varsubsetneqq"]="⫋︀", -["epsi"]="ε", -["nVdash"]="⊮", -["orarr"]="↻", -["rfr"]="𝔯", -["xuplus"]="⨄", -["checkmark"]="✓", -["rpargt"]="⦔", -["ncup"]="⩂", -["trisb"]="⧍", -["npar"]="∦", -["times"]="×", -["nrightarrow"]="↛", -["commat"]="@", -["bigtriangleup"]="△", -["Zcaron"]="Ž", -["fpartint"]="⨍", -["lnapprox"]="⪉", -["utri"]="▵", -["Hat"]="^", -["rsquo"]="’", -["wfr"]="𝔴", -["LeftDoubleBracket"]="⟦", -["Sc"]="⪼", -["midast"]="*", -["utdot"]="⋰", -["lbrkslu"]="⦍", -["Sqrt"]="√", -["TripleDot"]="⃛", -["oslash"]="ø", -["rarrpl"]="⥅", -["csupe"]="⫒", -["gcy"]="г", -["gtrdot"]="⋗", -["xfr"]="𝔵", -["cudarrl"]="⤸", -["rarrb"]="⇥", -["nRightarrow"]="⇏", -["phi"]="φ", -["fallingdotseq"]="≒", -["rarrbfs"]="⤠", -["rangle"]="⟩", -["HorizontalLine"]="─", -["propto"]="∝", -["subsub"]="⫕", -["flat"]="♭", -["ograve"]="ò", -["bne"]="=⃥", -["Cedilla"]="¸", -["DownLeftTeeVector"]="⥞", -["sup"]="⊃", -["profalar"]="⌮", -["sime"]="≃", -["And"]="⩓", -["bsim"]="∽", -["vfr"]="𝔳", -["edot"]="ė", -["scE"]="⪴", -["ffllig"]="ffl", -["spadesuit"]="♠", -["gt"]=">", -["Lt"]="≪", -["angmsdad"]="⦫", -["rightsquigarrow"]="↝", -["larrbfs"]="⤟", -["NJcy"]="Њ", -["thicksim"]="∼", -["gnsim"]="⋧", -["bottom"]="⊥", -["lmoustache"]="⎰", -["NotPrecedesEqual"]="⪯̸", -["bumpe"]="≏", -["heartsuit"]="♥", -["lt"]="<", -["prop"]="∝", -["DiacriticalAcute"]="´", -["boxHu"]="╧", -["RightUpDownVector"]="⥏", -["ReverseElement"]="∋", -["Dot"]="¨", -["sqcups"]="⊔︀", -["lvnE"]="≨︀", -["subsetneq"]="⊊", -["gdot"]="ġ", -["lpar"]="(", -["NotEqual"]="≠", -["awint"]="⨑", -["iiint"]="∭", -["imath"]="ı", -["gne"]="⪈", -["operp"]="⦹", -["nbumpe"]="≏̸", -["doublebarwedge"]="⌆", -["LJcy"]="Љ", -["bbrk"]="⎵", -["RightAngleBracket"]="⟩", -["reg"]="®", -["nvlArr"]="⤂", -["xcup"]="⋃", -["mapstoup"]="↥", -["nlt"]="≮", -["nsim"]="≁", -["nsubE"]="⫅̸", -["plus"]="+", -["bigotimes"]="⨂", -["jmath"]="ȷ", -["equals"]="=", -["khcy"]="х", -["Upsilon"]="Υ", -["rightrightarrows"]="⇉", -["supe"]="⊇", -["Egrave"]="È", -["lbrksld"]="⦏", -["sce"]="⪰", -["HilbertSpace"]="ℋ", -["ic"]="⁣", -["niv"]="∋", -["ccaron"]="č", -["bigwedge"]="⋀", -["olt"]="⧀", -["ultri"]="◸", -["ofr"]="𝔬", -["exponentiale"]="ⅇ", -["LeftCeiling"]="⌈", -["UpEquilibrium"]="⥮", -["vartriangleleft"]="⊲", -["Supset"]="⋑", -["aacute"]="á", -["langle"]="⟨", -["cuwed"]="⋏", -["Ubreve"]="Ŭ", -["fcy"]="ф", -["lsim"]="≲", -["vltri"]="⊲", -["jfr"]="𝔧", -["digamma"]="ϝ", -["Eogon"]="Ę", -["gnapprox"]="⪊", -["Amacr"]="Ā", -["ecirc"]="ê", -["scnE"]="⪶", -["thickapprox"]="≈", -["ltdot"]="⋖", -["malt"]="✠", -["drcrop"]="⌌", -["ifr"]="𝔦", -["NotGreaterTilde"]="≵", -["upharpoonright"]="↾", -["wedge"]="∧", -["notin"]="∉", -["nrarr"]="↛", -["LeftTeeArrow"]="↤", -["cacute"]="ć", -["dwangle"]="⦦", -["frasl"]="⁄", -["dzigrarr"]="⟿", -["para"]="¶", -["vnsup"]="⊃⃒", -["spar"]="∥", -["DotDot"]="⃜", -["vnsub"]="⊂⃒", -["suplarr"]="⥻", -["preceq"]="⪯", -["ffilig"]="ffi", -["quot"]="\"", -["nabla"]="∇", -["weierp"]="℘", -["searhk"]="⤥", -["icy"]="и", -["downdownarrows"]="⇊", -["lang"]="⟨", -["nleftrightarrow"]="↮", -["hamilt"]="ℋ", -["rpar"]=")", -["iquest"]="¿", -["bigstar"]="★", -["biguplus"]="⨄", -["dagger"]="†", -["lrarr"]="⇆", -["eacute"]="é", -["gtdot"]="⋗", -["jcy"]="й", -["supdsub"]="⫘", -["Prime"]="″", -["intercal"]="⊺", -["Aacute"]="Á", -["prsim"]="≾", -["nfr"]="𝔫", -["ngeq"]="≱", -["angmsdac"]="⦪", -["DoubleLeftRightArrow"]="⇔", -["Iogon"]="Į", -["kappav"]="ϰ", -["lsh"]="↰", -["tfr"]="𝔱", -["sect"]="§", -["omega"]="ω", -["gesles"]="⪔", -["boxplus"]="⊞", -["mfr"]="𝔪", -["GreaterFullEqual"]="≧", -["Exists"]="∃", -["Acirc"]="Â", -["nesim"]="≂̸", -["gacute"]="ǵ", -["dotplus"]="∔", -["rrarr"]="⇉", -["prnE"]="⪵", -["qfr"]="𝔮", -["triangleq"]="≜", -["boxvH"]="╪", -["dcy"]="д", -["sup1"]="¹", -["nequiv"]="≢", -["longleftrightarrow"]="⟷", -["Icirc"]="Î", -["shchcy"]="щ", -["raquo"]="»", -["quest"]="?", -["Euml"]="Ë", -["leftthreetimes"]="⋋", -["part"]="∂", -["VeryThinSpace"]=" ", -["Upsi"]="ϒ", -["bprime"]="‵", -["CenterDot"]="·", -["Agrave"]="À", -["NotHumpEqual"]="≏̸", -["theta"]="θ", -["Jcirc"]="Ĵ", -["Ocirc"]="Ô", -["rightharpoondown"]="⇁", -["caps"]="∩︀", -["DownLeftRightVector"]="⥐", -["doteqdot"]="≑", -["boxbox"]="⧉", -["nvHarr"]="⤄", -["timesd"]="⨰", -["uharl"]="↿", -["ouml"]="ö", -["TSHcy"]="Ћ", -["TRADE"]="™", -["iecy"]="е", -["Zeta"]="Ζ", -["Scirc"]="Ŝ", -["Lleftarrow"]="⇚", -["bigoplus"]="⨁", -["DoubleDownArrow"]="⇓", -["nexists"]="∄", -["lesdoto"]="⪁", -["geq"]="≥", -["nwnear"]="⤧", -["Updownarrow"]="⇕", -["andand"]="⩕", -["nge"]="≱", -["curvearrowleft"]="↶", -["bkarow"]="⤍", -["Ccaron"]="Č", -["NegativeThinSpace"]="​", -["nbump"]="≎̸", -["ecir"]="≖", -["imacr"]="ī", -["Succeeds"]="≻", -["supnE"]="⫌", -["Auml"]="Ä", -["rsh"]="↱", -["approx"]="≈", -["sdote"]="⩦", -["SuchThat"]="∋", -["Jsercy"]="Ј", -["odsold"]="⦼", -["Dcaron"]="Ď", -["dfisht"]="⥿", -["harrcir"]="⥈", -["hArr"]="⇔", -["leftrightarrow"]="↔", -["geqslant"]="⩾", -["boxDL"]="╗", -["nsucceq"]="⪰̸", -["leg"]="⋚", -["parsl"]="⫽", -["dd"]="ⅆ", -["bump"]="≎", -["GT"]=">", -["DiacriticalGrave"]="`", -["Ecaron"]="Ě", -["cap"]="∩", -["sext"]="✶", -["LongRightArrow"]="⟶", -["LeftDownVectorBar"]="⥙", -["gg"]="≫", -["dlcorn"]="⌞", -["LeftVector"]="↼", -["Gcirc"]="Ĝ", -["LT"]="<", -["ldquor"]="„", -["subset"]="⊂", -["tstrok"]="ŧ", -["iacute"]="í", -["Hcirc"]="Ĥ", -["gtrapprox"]="⪆", -["demptyv"]="⦱", -["HumpDownHump"]="≎", -["image"]="ℑ", -["Icirc"]="Î", -["boxHD"]="╦", -["aogon"]="ą", -["smid"]="∣", -["uuml"]="ü", -["lneq"]="⪇", -["star"]="☆", -["UpperRightArrow"]="↗", -["larrpl"]="⤹", -["backsimeq"]="⋍", -["Itilde"]="Ĩ", -["supne"]="⊋", -["LeftDownTeeVector"]="⥡", -["yicy"]="ї", -["NotSucceeds"]="⊁", -["KJcy"]="Ќ", -["GreaterEqualLess"]="⋛", -["nLt"]="≪⃒", -["LeftRightArrow"]="↔", -["Ubrcy"]="Ў", -["LeftArrowRightArrow"]="⇆", -["dArr"]="⇓", -["epsilon"]="ε", -["wr"]="≀", -["percnt"]="%", -["lesdot"]="⩿", -["iiota"]="℩", -["boxul"]="┘", -["iquest"]="¿", -["tbrk"]="⎴", -["blacktriangle"]="▴", -["real"]="ℜ", -["origof"]="⊶", -["yen"]="¥", -["Intersection"]="⋂", -["els"]="⪕", -["cuesc"]="⋟", -["mldr"]="…", -["RightTee"]="⊢", -["Gbreve"]="Ğ", -["gimel"]="ℷ", -["models"]="⊧", -["uring"]="ů", -["gtrsim"]="≳", -["hairsp"]=" ", -["iota"]="ι", -["eacute"]="é", -["diamond"]="⋄", -["iuml"]="ï", -["hybull"]="⁃", -["Uarrocir"]="⥉", -["lesdotor"]="⪃", -["lceil"]="⌈", -["lsquo"]="‘", -["Uogon"]="Ų", -["beta"]="β", -["permil"]="‰", -["measuredangle"]="∡", -["eg"]="⪚", -["CHcy"]="Ч", -["bepsi"]="϶", -["GreaterLess"]="≷", -["Ucirc"]="Û", -["ange"]="⦤", -["Otimes"]="⨷", -["simgE"]="⪠", -["boxdl"]="┐", -["vDash"]="⊨", -["supedot"]="⫄", -["xvee"]="⋁", -["nisd"]="⋺", -["oacute"]="ó", -["llhard"]="⥫", -["Rarrtl"]="⤖", -["equest"]="≟", -["abreve"]="ă", -["rceil"]="⌉", -["nle"]="≰", -["frown"]="⌢", -["Ocirc"]="Ô", -["boxminus"]="⊟", -["nvrArr"]="⤃", -["TildeTilde"]="≈", -["Congruent"]="≡", -["Alpha"]="Α", -["glE"]="⪒", -["compfn"]="∘", -["cularr"]="↶", -["llcorner"]="⌞", -["plusacir"]="⨣", -["RightTeeArrow"]="↦", -["supsub"]="⫔", -["aring"]="å", -["boxhd"]="┬", -["boxvh"]="┼", -["VerticalBar"]="∣", -["AElig"]="Æ", -["DiacriticalDot"]="˙", -["pscr"]="𝓅", -["triangleleft"]="◃", -["supsetneqq"]="⫌", -["trie"]="≜", -["NotDoubleVerticalBar"]="∦", -["RightUpTeeVector"]="⥜", -["NotLessGreater"]="≸", -["gopf"]="𝕘", -["amalg"]="⨿", -["nrtrie"]="⋭", -["harrw"]="↭", -["FilledVerySmallSquare"]="▪", -["gtrarr"]="⥸", -["DDotrahd"]="⤑", -["UpArrowBar"]="⤒", -["angle"]="∠", -["gtquest"]="⩼", -["Equilibrium"]="⇌", -["qscr"]="𝓆", -["RightArrow"]="→", -["LongLeftRightArrow"]="⟷", -["NotCongruent"]="≢", -["target"]="⌖", -["iexcl"]="¡", -["vsupne"]="⊋︀", -["dopf"]="𝕕", -["RightTeeVector"]="⥛", -["AElig"]="Æ", -["lrm"]="‎", -["boxUr"]="╙", -["nscr"]="𝓃", -["Phi"]="Φ", -["erarr"]="⥱", -["gesdot"]="⪀", -["acE"]="∾̳", -["iopf"]="𝕚", -["NotSucceedsTilde"]="≿̸", -["geqq"]="≧", -["timesb"]="⊠", -["nvdash"]="⊬", -["fflig"]="ff", -["Tilde"]="∼", -["Ccirc"]="Ĉ", -["boxDR"]="╔", -["AMP"]="&", -["Idot"]="İ", -["Gcy"]="Г", -["pluscir"]="⨢", -["Longrightarrow"]="⟹", -["UnderParenthesis"]="⏝", -["sqsubseteq"]="⊑", -["profsurf"]="⌓", -["fopf"]="𝕗", -["and"]="∧", -["middot"]="·", -["ltquest"]="⩻", -["scpolint"]="⨓", -["Rcaron"]="Ř", -["DoubleLeftTee"]="⫤", -["rangd"]="⦒", -["crarr"]="↵", -["Bcy"]="Б", -["lscr"]="𝓁", -["kopf"]="𝕜", -["rharu"]="⇀", -["map"]="↦", -["LT"]="<", -["Scaron"]="Š", -["dscy"]="ѕ", -["NegativeMediumSpace"]="​", -["amp"]="&", -["sfrown"]="⌢", -["EmptySmallSquare"]="◻", -["Acy"]="А", -["cupcup"]="⩊", -["Gdot"]="Ġ", -["hopf"]="𝕙", -["smtes"]="⪬︀", -["lap"]="⪅", -["boxV"]="║", -["ltrie"]="⊴", -["divide"]="÷", -["larrb"]="⇤", -["ijlig"]="ij", -["Superset"]="⊃", -["gtreqless"]="⋛", -["Tcaron"]="Ť", -["jscr"]="𝒿", -["risingdotseq"]="≓", -["DScy"]="Ѕ", -["rdca"]="⤷", -["emptyset"]="∅", -["curvearrowright"]="↷", -["nrarrw"]="↝̸", -["angzarr"]="⍼", -["frac35"]="⅗", -["centerdot"]="·", -["vsupnE"]="⫌︀", -["Bumpeq"]="≎", -["lnap"]="⪉", -["gvertneqq"]="≩︀", -["tcaron"]="ť", -["Edot"]="Ė", -["Union"]="⋃", -["cupdot"]="⊍", -["napE"]="⩰̸", -["jopf"]="𝕛", -["iff"]="⇔", -["Aacute"]="Á", -["NotTildeFullEqual"]="≇", -["plussim"]="⨦", -["Yacute"]="Ý", -["Sup"]="⋑", -["multimap"]="⊸", -["nlE"]="≦̸", -["aelig"]="æ", -["ntgl"]="≹", -["Dstrok"]="Đ", -["frac14"]="¼", -["minusd"]="∸", -["Wedge"]="⋀", -["Fcy"]="Ф", -["xscr"]="𝓍", -["igrave"]="ì", -["ulcorn"]="⌜", -["CapitalDifferentialD"]="ⅅ", -["Star"]="⋆", -["ExponentialE"]="ⅇ", -["NotNestedLessLess"]="⪡̸", -["Acirc"]="Â", -["DoubleRightArrow"]="⇒", -["radic"]="√", -["twoheadleftarrow"]="↞", -["Ecy"]="Э", -["SquareSuperset"]="⊐", -["leftleftarrows"]="⇇", -["OElig"]="Œ", -["Cacute"]="Ć", -["bullet"]="•", -["ngeqslant"]="⩾̸", -["circlearrowright"]="↻", -["CounterClockwiseContourIntegral"]="∳", -["gnap"]="⪊", -["Vdashl"]="⫦", -["curlyeqprec"]="⋞", -["gtlPar"]="⦕", -["upsilon"]="υ", -["aopf"]="𝕒", -["prec"]="≺", -["vscr"]="𝓋", -["fjlig"]="fj", -["colone"]="≔", -["copy"]="©", -["ordf"]="ª", -["laquo"]="«", -["bemptyv"]="⦰", -["NotReverseElement"]="∌", -["eogon"]="ę", -["DoubleUpArrow"]="⇑", -["Ecirc"]="Ê", -["Rrightarrow"]="⇛", -["Fouriertrf"]="ℱ", -["wscr"]="𝓌", -["lBarr"]="⤎", -["plankv"]="ℏ", -["Uacute"]="Ú", -["cemptyv"]="⦲", -["squarf"]="▪", -["diamondsuit"]="♦", -["rightharpoonup"]="⇀", -["rtri"]="▹", -["Jcy"]="Й", -["copf"]="𝕔", -["langd"]="⦑", -["xlArr"]="⟸", -["egrave"]="è", -["Lcaron"]="Ľ", -["range"]="⦥", -["solbar"]="⌿", -["veeeq"]="≚", -["suphsol"]="⟉", -["brvbar"]="¦", -["Ecirc"]="Ê", -["nmid"]="∤", -["shortmid"]="∣", -["hookleftarrow"]="↩", -["GreaterEqual"]="≥", -["Icy"]="И", -["uscr"]="𝓊", -["gel"]="⋛", -["ocir"]="⊚", -["dzcy"]="џ", -["GT"]=">", -["ordm"]="º", -["chi"]="χ", -["Implies"]="⇒", -["Verbar"]="‖", -["nsupseteqq"]="⫆̸", -["Dcy"]="Д", -["it"]="⁢", -["Ncaron"]="Ň", -["eopf"]="𝕖", -["gtcir"]="⩺", -["emsp13"]=" ", -["nGt"]="≫⃒", -["ges"]="⩾", -["Dashv"]="⫤", -["andslope"]="⩘", -["bsolb"]="⧅", -["sup1"]="¹", -["bopf"]="𝕓", -["iogon"]="į", -["puncsp"]=" ", -["sscr"]="𝓈", -["SquareSupersetEqual"]="⊒", -["neArr"]="⇗", -["Ccedil"]="Ç", -["mapstodown"]="↧", -["aacute"]="á", -["ForAll"]="∀", -["lbbrk"]="❲", -["leftrightarrows"]="⇆", -["mDDot"]="∺", -["sccue"]="≽", -["otilde"]="õ", -["NotSquareSuperset"]="⊐̸", -["succapprox"]="⪸", -["nrarrc"]="⤳̸", -["wopf"]="𝕨", -["nu"]="ν", -["jcirc"]="ĵ", -["rHar"]="⥤", -["rdquo"]="”", -["conint"]="∮", -["ensp"]=" ", -["les"]="⩽", -["supseteq"]="⊇", -["uparrow"]="↑", -["Larr"]="↞", -["breve"]="˘", -["questeq"]="≟", -["topf"]="𝕥", -["Hfr"]="ℌ", -["icirc"]="î", -["sigmaf"]="ς", -["nbsp"]=" ", -["mho"]="℧", -["dotsquare"]="⊡", -["rarrsim"]="⥴", -["strns"]="¯", -["swArr"]="⇙", -["leftrightharpoons"]="⇋", -["THORN"]="Þ", -["lsaquo"]="‹", -["varnothing"]="∅", -["Afr"]="𝔄", -["Or"]="⩔", -["subedot"]="⫃", -["agrave"]="à", -["fltns"]="▱", -["apos"]="'", -["Imacr"]="Ī", -["Cap"]="⋒", -["lbrace"]="{", -["lrhar"]="⇋", -["euml"]="ë", -["scirc"]="ŝ", -["NotPrecedes"]="⊀", -["leftrightsquigarrow"]="↭", -["female"]="♀", -["urcrop"]="⌎", -["Pr"]="⪻", -["NotLessSlantEqual"]="⩽̸", -["subsup"]="⫓", -["GreaterTilde"]="≳", -["timesbar"]="⨱", -["Gg"]="⋙", -["NotSquareSupersetEqual"]="⋣", -["starf"]="★", -["sdotb"]="⊡", -["xlarr"]="⟵", -["xharr"]="⟷", -["NotHumpDownHump"]="≎̸", -["andd"]="⩜", -["nis"]="⋼", -["esdot"]="≐", -["ApplyFunction"]="⁡", -["scnap"]="⪺", -["Cup"]="⋓", -["dollar"]="$", -["ShortUpArrow"]="↑", -["nsupseteq"]="⊉", -["solb"]="⧄", -["Lcedil"]="Ļ", -["rharul"]="⥬", -["xopf"]="𝕩", -["mu"]="μ", -["Ntilde"]="Ñ", -["QUOT"]="\"", -["varrho"]="ϱ", -["zwj"]="‍", -["trpezium"]="⏢", -["dbkarow"]="⤏", -["zscr"]="𝓏", -["boxhU"]="╨", -["circledcirc"]="⊚", -["Efr"]="𝔈", -["hcirc"]="ĥ", -["Otilde"]="Õ", -["subseteq"]="⊆", -["swarhk"]="⤦", -["nGtv"]="≫̸", -["ddotseq"]="⩷", -["cularrp"]="⤽", -["RightArrowLeftArrow"]="⇄", -["rx"]="℞", -["mnplus"]="∓", -["auml"]="ä", -["uogon"]="ų", -["notinvc"]="⋶", -["Ffr"]="𝔉", -["apid"]="≋", -["lharul"]="⥪", -["gcirc"]="ĝ", -["ljcy"]="љ", -["dharr"]="⇂", -["phiv"]="ϕ", -["Beta"]="Β", -["kgreen"]="ĸ", -["ne"]="≠", -["oopf"]="𝕠", -["top"]="⊤", -["orslope"]="⩗", -["succnsim"]="⋩", -["erDot"]="≓", -["OverBracket"]="⎴", -["lesg"]="⋚︀", -["eDDot"]="⩷", -["nbsp"]=" ", -["plusdo"]="∔", -["Omacr"]="Ō", -["ape"]="≊", -["lbrke"]="⦋", -["zwnj"]="‌", -["straightphi"]="ϕ", -["NotGreaterGreater"]="≫̸", -["cong"]="≅", -["lopf"]="𝕝", -["ntlg"]="≸", -["iiiint"]="⨌", -["nshortmid"]="∤", -["Darr"]="↡", -["LeftAngleBracket"]="⟨", -["itilde"]="ĩ", -["triangleright"]="▹", -["mcomma"]="⨩", -["ETH"]="Ð", -["roang"]="⟭", -["apE"]="⩰", -["reals"]="ℝ", -["qopf"]="𝕢", -["nsub"]="⊄", -["mid"]="∣", -["NotSucceedsEqual"]="⪰̸", -["szlig"]="ß", -["uwangle"]="⦧", -["Kappa"]="Κ", -["rotimes"]="⨵", -["notniva"]="∌", -["xutri"]="△", -["Iota"]="Ι", -["UnderBar"]="_", -["leqq"]="≦", -["notinva"]="∉", -["nopf"]="𝕟", -["ubrcy"]="ў", -["urcorn"]="⌝", -["luruhar"]="⥦", -["nLtv"]="≪̸", -["angsph"]="∢", -["minusb"]="⊟", -["nesear"]="⤨", -["bot"]="⊥", -["Abreve"]="Ă", -["equiv"]="≡", -["EmptyVerySmallSquare"]="▫", -["bigtriangledown"]="▽", -["nvlt"]="<⃒", -["cylcty"]="⌭", -["PartialD"]="∂", -["ni"]="∋", -["leftarrowtail"]="↢", -["ClockwiseContourIntegral"]="∲", -["divonx"]="⋇", -["rsaquo"]="›", -["bsime"]="⋍", -["popf"]="𝕡", -["quaternions"]="ℍ", -["boxhu"]="┴", -["disin"]="⋲", -["Tcedil"]="Ţ", -["angmsdaa"]="⦨", -["npre"]="⪯̸", -["gesl"]="⋛︀", -["ldquo"]="“", -["between"]="≬", -["wedgeq"]="≙", -["in"]="∈", -["pi"]="π", -["acute"]="´", -["uopf"]="𝕦", -["succnapprox"]="⪺", -["nleqq"]="≦̸", -["ENG"]="Ŋ", -["NotEqualTilde"]="≂̸", -["circlearrowleft"]="↺", -["rtrie"]="⊵", -["integers"]="ℤ", -["frac13"]="⅓", -["gEl"]="⪌", -["ropf"]="𝕣", -["Sigma"]="Σ", -["ocirc"]="ô", -["DownRightTeeVector"]="⥟", -["rfloor"]="⌋", -["SHCHcy"]="Щ", -["Uuml"]="Ü", -["llarr"]="⇇", -["efDot"]="≒", -["NestedLessLess"]="≪", -["SHcy"]="Ш", -["NotCupCap"]="≭", -["xdtri"]="▽", -["curlyvee"]="⋎", -["downharpoonleft"]="⇃", -["Dopf"]="𝔻", -["napos"]="ʼn", -["Auml"]="Ä", -["profline"]="⌒", -["Ycirc"]="Ŷ", -["RightDownTeeVector"]="⥝", -["rAtail"]="⤜", -["osol"]="⊘", -["atilde"]="ã", -["Kscr"]="𝒦", -["ang"]="∠", -["natur"]="♮", -["Gopf"]="𝔾", -["AMP"]="&", -["DoubleDot"]="¨", -["Ouml"]="Ö", -["dlcrop"]="⌍", -["bsolhsub"]="⟈", -["NestedGreaterGreater"]="≫", -["prcue"]="≼", -["Uarr"]="↟", -["dHar"]="⥥", -["ssmile"]="⌣", -["eqslantgtr"]="⪖", -["glj"]="⪤", -["hstrok"]="ħ", -["lesssim"]="≲", -["lowast"]="∗", -["cirmid"]="⫯", -["lates"]="⪭︀", -["fnof"]="ƒ", -["ord"]="⩝", -["rthree"]="⋌", -["rcub"]="}", -["Coproduct"]="∐", -["curren"]="¤", -["Mscr"]="ℳ", -["Iopf"]="𝕀", -["vprop"]="∝", -["andv"]="⩚", -["vrtri"]="⊳", -["yacute"]="ý", -["tilde"]="˜", -["numsp"]=" ", -["acd"]="∿", -["blk34"]="▓", -["Pscr"]="𝒫", -["ReverseEquilibrium"]="⇋", -["diams"]="♦", -["Hopf"]="ℍ", -["veebar"]="⊻", -["Euml"]="Ë", -["intprod"]="⨼", -["macr"]="¯", -["Oscr"]="𝒪", -["nvle"]="≤⃒", -["odblac"]="ő", -["eqcirc"]="≖", -["Kopf"]="𝕂", -["bumpeq"]="≏", -["twoheadrightarrow"]="↠", -["apacir"]="⩯", -["elinters"]="⏧", -["forall"]="∀", -["ofcir"]="⦿", -["dstrok"]="đ", -["simne"]="≆", -["mopf"]="𝕞", -["RightTriangleBar"]="⧐", -["Jopf"]="𝕁", -["parsim"]="⫳", -["pm"]="±", -["boxh"]="─", -["sqsupseteq"]="⊒", -["eplus"]="⩱", -["xi"]="ξ", -["Diamond"]="⋄", -["Wcirc"]="Ŵ", -["ReverseUpEquilibrium"]="⥯", -["ovbar"]="⌽", -["rho"]="ρ", -["Map"]="⤅", -["Qscr"]="𝒬", -["lhblk"]="▄", -["Igrave"]="Ì", -["LeftTriangle"]="⊲", -["LeftVectorBar"]="⥒", -["late"]="⪭", -["cups"]="∪︀", -["lAtail"]="⤛", -["RightTriangle"]="⊳", -["Tscr"]="𝒯", -["capbrcup"]="⩉", -["verbar"]="|", -["leqslant"]="⩽", -["DownBreve"]="̑", -["Laplacetrf"]="ℒ", -["nlsim"]="≴", -["dblac"]="˝", -["empty"]="∅", -["bowtie"]="⋈", -["subdot"]="⪽", -["oror"]="⩖", -["LeftUpDownVector"]="⥑", -["varkappa"]="ϰ", -["kjcy"]="ќ", -["iukcy"]="і", -["angmsdag"]="⦮", -["Sscr"]="𝒮", -["frac34"]="¾", -["acirc"]="â", -["eqslantless"]="⪕", -["YUcy"]="Ю", -["swarr"]="↙", -["DownArrow"]="↓", -["Cdot"]="Ċ", -["RuleDelayed"]="⧴", -["UnderBracket"]="⎵", -["sqcaps"]="⊓︀", -["bbrktbrk"]="⎶", -["barvee"]="⊽", -["jukcy"]="є", -["middot"]="·", -["Psi"]="Ψ", -["DifferentialD"]="ⅆ", -["ordf"]="ª", -["yucy"]="ю", -["int"]="∫", -["maltese"]="✠", -["lHar"]="⥢", -["NotLessLess"]="≪̸", -["filig"]="fi", -["af"]="⁡", -["duarr"]="⇵", -["boxVR"]="╠", -["elsdot"]="⪗", -["Egrave"]="È", -["RightDownVector"]="⇂", -["bernou"]="ℬ", -["szlig"]="ß", -["Ncedil"]="Ņ", -["Aopf"]="𝔸", -["Ccedil"]="Ç", -["DoubleLongLeftArrow"]="⟸", -["Xscr"]="𝒳", -["Mellintrf"]="ℳ", -["ccedil"]="ç", -["NotRightTriangleEqual"]="⋭", -["lotimes"]="⨴", -["gjcy"]="ѓ", -["boxVr"]="╟", -["cuepr"]="⋞", -["DiacriticalTilde"]="˜", -["nwarr"]="↖", -["plusb"]="⊞", -["Iuml"]="Ï", -["Gt"]="≫", -["boxuL"]="╛", -["gsiml"]="⪐", -["vee"]="∨", -["NotGreaterEqual"]="≱", -["isinv"]="∈", -["eng"]="ŋ", -["lessdot"]="⋖", -["olcross"]="⦻", -["pound"]="£", -["RightUpVector"]="↾", -["Chi"]="Χ", -["num"]="#", -["Because"]="∵", -["udarr"]="⇅", -["Copf"]="ℂ", -["precnsim"]="⋨", -["Bernoullis"]="ℬ", -["angmsdah"]="⦯", -["LeftFloor"]="⌊", -["boxvR"]="╞", -["plusmn"]="±", -["ContourIntegral"]="∮", -["notinE"]="⋹̸", -["nwarhk"]="⤣", -["gtrless"]="≷", -["complexes"]="ℂ", -["dashv"]="⊣", -["SubsetEqual"]="⊆", -["NotVerticalBar"]="∤", -["Yscr"]="𝒴", -["RightCeiling"]="⌉", -["Rarr"]="↠", -["vartheta"]="ϑ", -["PrecedesSlantEqual"]="≼", -["boxUR"]="╚", -["ntilde"]="ñ", -["boxVL"]="╣", -["bigvee"]="⋁", -["aelig"]="æ", -["angrtvbd"]="⦝", -["scap"]="⪸", -["Topf"]="𝕋", -["hfr"]="𝔥", -["Nu"]="Ν", -["Downarrow"]="⇓", -["rsquor"]="’", -["circledS"]="Ⓢ", -["ntilde"]="ñ", -["circledast"]="⊛", -["eqsim"]="≂", -["kcy"]="к", -["ldrdhar"]="⥧", -["nLl"]="⋘̸", -["hyphen"]="‐", -["Conint"]="∯", -["xsqcup"]="⨆", -["asympeq"]="≍", -["Wopf"]="𝕎", -["gfr"]="𝔤", -["larr"]="←", -["ncy"]="н", -["iacute"]="í", -["gE"]="≧", -["gesdoto"]="⪂", -["tshcy"]="ћ", -["IEcy"]="Е", -["NotGreater"]="≯", -["Vbar"]="⫫", -["Vopf"]="𝕍", -["UpArrowDownArrow"]="⇅", -["mp"]="∓", -["RightDownVectorBar"]="⥕", -["exist"]="∃", -["frac38"]="⅜", -["zdot"]="ż", -["eparsl"]="⧣", -["lacute"]="ĺ", -["zopf"]="𝕫", -["zigrarr"]="⇝", -["zhcy"]="ж", -["zeetrf"]="ℨ", -["vangrt"]="⦜", -["Breve"]="˘", -["odot"]="⊙", -["blacklozenge"]="⧫", -["NotRightTriangle"]="⋫", -["yuml"]="ÿ", -["homtht"]="∻", -["yscr"]="𝓎", -["yopf"]="𝕪", -["afr"]="𝔞", -["Yopf"]="𝕐", -["ThinSpace"]=" ", -["yfr"]="𝔶", -["larrlp"]="↫", -["yen"]="¥", -["nwarrow"]="↖", -["supmult"]="⫂", -["nearrow"]="↗", -["bigsqcup"]="⨆", -["yacy"]="я", -["lcy"]="л", -["ii"]="ⅈ", -["seswar"]="⤩", -["yacute"]="ý", -["lArr"]="⇐", -["Uparrow"]="⇑", -["xwedge"]="⋀", -["xrarr"]="⟶", -["xrArr"]="⟹", -["oast"]="⊛", -["xoplus"]="⨁", -["ImaginaryI"]="ⅈ", -["xnis"]="⋻", -["xhArr"]="⟺", -["xcirc"]="◯", -["xcap"]="⋂", -["wreath"]="≀", -["wp"]="℘", -["lfr"]="𝔩", -["wedbar"]="⩟", -["psi"]="ψ", -["Xopf"]="𝕏", -["vzigzag"]="⦚", -["realpart"]="ℜ", -["vsubne"]="⊊︀", -["DoubleLongLeftRightArrow"]="⟺", -["nsqsube"]="⋢", -["varpropto"]="∝", -["npreceq"]="⪯̸", -["vopf"]="𝕧", -["vert"]="|", -["vellip"]="⋮", -["vdash"]="⊢", -["hkswarow"]="⤦", -["sqsube"]="⊑", -["tdot"]="⃛", -["leq"]="≤", -["nacute"]="ń", -["succcurlyeq"]="≽", -["vartriangleright"]="⊳", -["Re"]="ℜ", -["varsupsetneqq"]="⫌︀", -["dsol"]="⧶", -["Tau"]="Τ", -["rsqb"]="]", -["varsupsetneq"]="⊋︀", -["varsubsetneq"]="⊊︀", -["varsigma"]="ς", -["expectation"]="ℰ", -["kfr"]="𝔨", -["varr"]="↕", -["varpi"]="ϖ", -["varphi"]="ϕ", -["CloseCurlyDoubleQuote"]="”", -["varepsilon"]="ϵ", -["zcy"]="з", -["lt"]="<", -["vBarv"]="⫩", -["vBar"]="⫨", -["larrfs"]="⤝", -["lthree"]="⋋", -["nsimeq"]="≄", -["div"]="÷", -["Fopf"]="𝔽", -["rbrack"]="]", -["searrow"]="↘", -["lcedil"]="ļ", -["uuarr"]="⇈", -["utrif"]="▴", -["utilde"]="ũ", -["urtri"]="◹", -["mapstoleft"]="↤", -["olcir"]="⦾", -["upsih"]="ϒ", -["upsi"]="υ", -["curlywedge"]="⋏", -["uplus"]="⊎", -["upharpoonleft"]="↿", -["updownarrow"]="↕", -["uml"]="¨", -["cirscir"]="⧂", -["ffr"]="𝔣", -["uml"]="¨", -["epsiv"]="ϵ", -["umacr"]="ū", -["ulcrop"]="⌏", -["ulcorner"]="⌜", -["dtrif"]="▾", -["uhblk"]="▀", -["uharr"]="↾", -["ugrave"]="ù", -["ufr"]="𝔲", -["ufisht"]="⥾", -["mcy"]="м", -["ngE"]="≧̸", -["udhar"]="⥮", -["iinfin"]="⧜", -["kcedil"]="ķ", -["natural"]="♮", -["udblac"]="ű", -["Gamma"]="Γ", -["sol"]="/", -["ucirc"]="û", -["dtdot"]="⋱", -["lsimg"]="⪏", -["Gfr"]="𝔊", -["nearhk"]="⤤", -["NotTildeTilde"]="≉", -["frac15"]="⅕", -["uarr"]="↑", -["succeq"]="⪰", -["COPY"]="©", -["uacute"]="ú", -["uHar"]="⥣", -["efr"]="𝔢", -["NotGreaterSlantEqual"]="⩾̸", -["backsim"]="∽", -["mlcp"]="⫛", -["Mu"]="Μ", -["tscy"]="ц", -["NotExists"]="∄", -["tscr"]="𝓉", -["ssetmn"]="∖", -["triplus"]="⨹", -["tridot"]="◬", -["trianglelefteq"]="⊴", -["orderof"]="ℴ", -["thetasym"]="ϑ", -["emptyv"]="∅", -["emacr"]="ē", -["trade"]="™", -["spades"]="♠", -["ncedil"]="ņ", -["tprime"]="‴", -["NotGreaterFullEqual"]="≧̸", -["topbot"]="⌶", -["ctdot"]="⋯", -["sqsubset"]="⊏", -["comma"]=",", -["Mcy"]="М", -["notni"]="∌", -["OpenCurlyDoubleQuote"]="“", -["sup2"]="²", -["ascr"]="𝒶", -["UnionPlus"]="⊎", -["scy"]="с", -["gesdotol"]="⪄", -["KHcy"]="Х", -["frac45"]="⅘", -["larrsim"]="⥳", -["COPY"]="©", -["comp"]="∁", -["Lopf"]="𝕃", -["thorn"]="þ", -["prE"]="⪳", -["Eta"]="Η", -["thksim"]="∼", -["dscr"]="𝒹", -["thinsp"]=" ", -["ucirc"]="û", -["clubsuit"]="♣", -["LeftDownVector"]="⇃", -["oscr"]="ℴ", -["thetav"]="ϑ", -["TildeFullEqual"]="≅", -["triangle"]="▵", -["smashp"]="⨳", -["subsetneqq"]="⫋", -["ecirc"]="ê", -["therefore"]="∴", -["Theta"]="Θ", -["plusdu"]="⨥", -["Assign"]="≔", -["telrec"]="⌕", -["UpperLeftArrow"]="↖", -["boxUL"]="╝", -["planck"]="ℏ", -["rarrc"]="⤳", -["UpDownArrow"]="↕", -["incare"]="℅", -["vcy"]="в", -["Oopf"]="𝕆", -["cwint"]="∱", -["Kcy"]="К", -["PrecedesEqual"]="⪯", -["coloneq"]="≔", -["duhar"]="⥯", -["NewLine"]="\n", -["tau"]="τ", -["supE"]="⫆", -["downarrow"]="↓", -["half"]="½", -["cscr"]="𝒸", -["omacr"]="ō", -["SquareSubset"]="⊏", -["downharpoonright"]="⇂", -["Uopf"]="𝕌", -["swnwar"]="⤪", -["swarrow"]="↙", -["nGg"]="⋙̸", -["imped"]="Ƶ", -["diam"]="⋄", -["gla"]="⪥", -["horbar"]="―", -["eth"]="ð", -["supsup"]="⫖", -["hslash"]="ℏ", -["circeq"]="≗", -["darr"]="↓", -["supsim"]="⫈", -["supset"]="⊃", -["supplus"]="⫀", -["ecolon"]="≕", -["csube"]="⫑", -["Nopf"]="ℕ", -["RoundImplies"]="⥰", -["ycy"]="ы", -["suphsub"]="⫗", -["SucceedsSlantEqual"]="≽", -["capand"]="⩄", -["fscr"]="𝒻", -["supdot"]="⪾", -["Bfr"]="𝔅", -["NotLeftTriangle"]="⋪", -["RightArrowBar"]="⇥", -["boxVH"]="╬", -["raquo"]="»", -["rightleftarrows"]="⇄", -["Cross"]="⨯", -["egsdot"]="⪘", -["nvDash"]="⊭", -["RBarr"]="⤐", -["sup3"]="³", -["cuvee"]="⋎", -["sup2"]="²", -["angst"]="Å", -["backcong"]="≌", -["oelig"]="œ", -["Kfr"]="𝔎", -["boxVh"]="╫", -["Zfr"]="ℨ", -["sung"]="♪", -["tcy"]="т", -["nshortparallel"]="∦", -["Qopf"]="ℚ", -["sum"]="∑", -["succsim"]="≿", -["rmoust"]="⎱", -["nleftarrow"]="↚", -["cup"]="∪", -["vsubnE"]="⫋︀", -["copy"]="©", -["Vdash"]="⊩", -["Kcedil"]="Ķ", -["escr"]="ℯ", -["gnE"]="≩", -["uacute"]="ú", -["napid"]="≋̸", -["le"]="≤", -["DD"]="ⅅ", -["rarrlp"]="↬", -["Lfr"]="𝔏", -["subsim"]="⫇", -["ZHcy"]="Ж", -["subseteqq"]="⫅", -["rcedil"]="ŗ", -["napprox"]="≉", -["laquo"]="«", -["njcy"]="њ", -["Colone"]="⩴", -["Nacute"]="Ń", -["Yfr"]="𝔜", -["aring"]="å", -["mapsto"]="↦", -["brvbar"]="¦", -["Popf"]="ℙ", -["sigma"]="σ", -["subrarr"]="⥹", -["cire"]="≗", -["subplus"]="⪿", -["dfr"]="𝔡", -["subne"]="⊊", -["hscr"]="𝒽", -["lgE"]="⪑", -["racute"]="ŕ", -["LeftRightVector"]="⥎", -["subnE"]="⫋", -["isinE"]="⋹", -["boxdR"]="╒", -["CupCap"]="≍", -["ncongdot"]="⩭̸", -["bigcap"]="⋂", -["nsce"]="⪰̸", -["submult"]="⫁", -["NotLessEqual"]="≰", -["piv"]="ϖ", -["mstpos"]="∾", -["sub"]="⊂", -["cent"]="¢", -["capcup"]="⩇", -["blacksquare"]="▪", -["Oacute"]="Ó", -["circledR"]="®", -["Atilde"]="Ã", -["tritime"]="⨻", -["notnivb"]="⋾", -["Sopf"]="𝕊", -["Sum"]="∑", -["hoarr"]="⇿", -["Scedil"]="Ş", -["square"]="□", -["cfr"]="𝔠", -["divide"]="÷", -["sacute"]="ś", -["NotLessTilde"]="≴", -["gscr"]="ℊ", -["ll"]="≪", -["isins"]="⋴", -["PrecedesTilde"]="≾", -["sqsupset"]="⊐", -["OverBrace"]="⏞", -["Epsilon"]="Ε", -["sqsupe"]="⊒", -["iprod"]="⨼", -["dash"]="‐", -["sqsup"]="⊐", -["nsccue"]="⋡", -["infin"]="∞", -["frac25"]="⅖", -["backepsilon"]="϶", -["robrk"]="⟧", -["harr"]="↔", -["ogt"]="⧁", -["sopf"]="𝕤", -["larrhk"]="↩", -["boxvl"]="┤", -["tcedil"]="ţ", -["cwconint"]="∲", -["lfloor"]="⌊", -["ucy"]="у", -["CloseCurlyQuote"]="’", -["lsquor"]="‚", -["softcy"]="ь", -["smte"]="⪬", -["smt"]="⪪", -["isindot"]="⋵", -["Pi"]="Π", -["lnE"]="≨", -["caret"]="⁁", -["TildeEqual"]="≃", -["delta"]="δ", -["euro"]="€", -["angrtvb"]="⊾", -["Escr"]="ℰ", -["Ucirc"]="Û", -["rarrap"]="⥵", -["smile"]="⌣", -["ccupssm"]="⩐", -["LeftArrow"]="←", -["frac12"]="½", -["smallsetminus"]="∖", -["Zscr"]="𝒵", -["angrt"]="∟", -["lurdshar"]="⥊", -["simrarr"]="⥲", -["boxUl"]="╜", -["simplus"]="⨤", -["scedil"]="ş", -["Eacute"]="É", -["ast"]="*", -["simg"]="⪞", -["Aring"]="Å", -["yuml"]="ÿ", -["bsemi"]="⁏", -["Omicron"]="Ο", -["simdot"]="⩪", -["sim"]="∼", -["OverBar"]="‾", -["intlarhk"]="⨗", -["sfr"]="𝔰", -["boxDl"]="╖", -["Cconint"]="∰", -["ncaron"]="ň", -["Lmidot"]="Ŀ", -["shy"]="­", -["LeftTriangleEqual"]="⊴", -["esim"]="≂", -["THORN"]="Þ", -["REG"]="®", -["xodot"]="⨀", -["ddarr"]="⇊", -["setmn"]="∖", -["Ugrave"]="Ù", -["setminus"]="∖", -["dotminus"]="∸", -["semi"]=";", -["sect"]="§", -["ncong"]="≇", -["bNot"]="⫭", -["Rho"]="Ρ", -["GJcy"]="Ѓ", -["boxhD"]="╥", -["searr"]="↘", -["Del"]="∇", -["auml"]="ä", -["Cfr"]="ℭ", -["VDash"]="⊫", -["seArr"]="⇘", -["ncap"]="⩃", -["Product"]="∏", -["sdot"]="⋅", -["frac58"]="⅝", -["zcaron"]="ž", -["DZcy"]="Џ", -["ltlarr"]="⥶", -["scsim"]="≿", -["VerticalTilde"]="≀", -["squf"]="▪", -["dharl"]="⇃", -["iexcl"]="¡", -["bumpE"]="⪮", -["scnsim"]="⋩", -["drcorn"]="⌟", -["Xfr"]="𝔛", -["nsube"]="⊈", -["Dfr"]="𝔇", -["nsmid"]="∤", -["not"]="¬", -["ShortRightArrow"]="→", -["hookrightarrow"]="↪", -["par"]="∥", -["sc"]="≻", -["rtrif"]="▸", -["tosa"]="⤩", -["acirc"]="â", -["gtcc"]="⪧", -["DJcy"]="Ђ", -["NotLeftTriangleEqual"]="⋬", -["bigcirc"]="◯", -["rbrksld"]="⦎", -["angmsdab"]="⦩", -["Aring"]="Å", -["rlm"]="‏", -["Therefore"]="∴", -["lambda"]="λ", -["LowerRightArrow"]="↘", -["asymp"]="≈", -["rscr"]="𝓇", -["ouml"]="ö", -["boxDr"]="╓", -["divideontimes"]="⋇", -["rppolint"]="⨒", -["oacute"]="ó", -["Rcedil"]="Ŗ", -["roplus"]="⨮", -["DownLeftVectorBar"]="⥖", -["Wfr"]="𝔚", -["lesseqgtr"]="⋚", -["ropar"]="⦆", -["bnot"]="⌐", -["Integral"]="∫", -["boxdr"]="┌", -["LeftTee"]="⊣", -["hercon"]="⊹", -["rnmid"]="⫮", -["gvnE"]="≩︀", -["bdquo"]="„", -["Zacute"]="Ź", -["Lscr"]="ℒ", -["ring"]="˚", -["supseteqq"]="⫆", -["kscr"]="𝓀", -["approxeq"]="≊", -["ntriangleright"]="⋫", -["lessgtr"]="≶", -["prurel"]="⊰", -["rightleftharpoons"]="⇌", -["pitchfork"]="⋔", -["ltrPar"]="⦖", -["NotSubset"]="⊂⃒", -["Yacute"]="Ý", -["eta"]="η", -["Rfr"]="ℜ", -["UpTee"]="⊥", -["rfisht"]="⥽", -["HumpEqual"]="≏", -["NotLess"]="≮", -["sbquo"]="‚", -["pointint"]="⨕", -["ycirc"]="ŷ", -["lescc"]="⪨", -["looparrowright"]="↬", -["cross"]="✗", -["grave"]="`", -["rdquor"]="”", -["blacktriangleleft"]="◂", -["rdldhar"]="⥩", -["Nscr"]="𝒩", -["atilde"]="ã", -["lsqb"]="[", -["lbrack"]="[", -["Lambda"]="Λ", -["rbrace"]="}", -["times"]="×", -["deg"]="°", -["uuml"]="ü", -["MediumSpace"]=" ", -["lAarr"]="⇚", -["bull"]="•", -["daleth"]="ℸ", -["ccirc"]="ĉ", -["capcap"]="⩋", -["fllig"]="fl", -["Qfr"]="𝔔", -["lopar"]="⦅", -["nspar"]="∦", -["RightTriangleEqual"]="⊵", -["rbrke"]="⦌", -["NotPrecedesSlantEqual"]="⋠", -["rbbrk"]="❳", -["hbar"]="ℏ", -["rbarr"]="⤍", -["rationals"]="ℚ", -["Oslash"]="Ø", -["frac14"]="¼", -["ratio"]="∶", -["ratail"]="⤚", -["rarrw"]="↝", -["Gammad"]="Ϝ", -["rarrhk"]="↪", -["rarrfs"]="⤞", -["lparlt"]="⦓", -["rarr"]="→", -["Backslash"]="∖", -["zacute"]="ź", -["euml"]="ë", -["GreaterGreater"]="⪢", -["NotTilde"]="≁", -["rang"]="⟩", -["deg"]="°", -["rArr"]="⇒", -["congdot"]="⩭", -["rAarr"]="⇛", -["roarr"]="⇾", -["emsp14"]=" ", -["quot"]="\"", -["isinsv"]="⋳", -["quatint"]="⨖", -["bcy"]="б", -["qprime"]="⁗", -["race"]="∽̱", -["tint"]="∭", -["egs"]="⪖", -["Proportion"]="∷", -["aleph"]="ℵ", -["wcirc"]="ŵ", -["prime"]="′", -["barwedge"]="⌅", -["precsim"]="≾", -["frac18"]="⅛", -["nsubseteqq"]="⫅̸", -["primes"]="ℙ", -["csup"]="⫐", -["boxuR"]="╘", -["lmidot"]="ŀ", -["squ"]="□", -["Oslash"]="Ø", -["SOFTcy"]="Ь", -["nvinfin"]="⧞", -["precneqq"]="⪵", -["precnapprox"]="⪹", -["SupersetEqual"]="⊇", -["angmsdaf"]="⦭", -["preccurlyeq"]="≼", -["precapprox"]="⪷", -["amp"]="&", -["cudarrr"]="⤵", -["Bscr"]="ℬ", -["circleddash"]="⊝", -["pr"]="≺", -["emsp"]=" ", -["DoubleLongRightArrow"]="⟹", -["cupcap"]="⩆", -["plustwo"]="⨧", -["numero"]="№", -["ddagger"]="‡", -["die"]="¨", -["vArr"]="⇕", -["Ograve"]="Ò", -["LeftArrowBar"]="⇤", -["period"]=".", -["InvisibleTimes"]="⁢", -["NoBreak"]="⁠", -["ap"]="≈", -["rtriltri"]="⧎", -["curarrm"]="⤼", -["planckh"]="ℎ", -["Leftarrow"]="⇐", -["Not"]="⫬", -["RightDoubleBracket"]="⟧", -["Xi"]="Ξ", -["phone"]="☎", -["blk12"]="▒", -["boxvr"]="├", -["intcal"]="⊺", -["gneqq"]="≩", -["Hacek"]="ˇ", -["bscr"]="𝒷", -["pfr"]="𝔭", -["pertenk"]="‱", -["perp"]="⊥", -["npart"]="∂̸", -["Odblac"]="Ő", -["Vfr"]="𝔙", -["Ocy"]="О", -["rhard"]="⇁", -["Vscr"]="𝒱", -["Square"]="□", -["hearts"]="♥", -["NotSubsetEqual"]="⊈", -["uArr"]="⇑", -["nrArr"]="⇏", -["otimesas"]="⨶", -["ggg"]="⋙", -["otilde"]="õ", -["ee"]="ⅇ", -["NotElement"]="∉", -["VerticalLine"]="|", -["orv"]="⩛", -["Umacr"]="Ū", -["boxHU"]="╩", -["Mopf"]="𝕄", -["Uscr"]="𝒰", -["EqualTilde"]="≂", -["Pcy"]="П", -["ordm"]="º", -["DoubleContourIntegral"]="∯", -["triangledown"]="▿", -["or"]="∨", -["DownTee"]="⊤", -["frac56"]="⅚", -["ominus"]="⊖", -["oslash"]="ø", -["omid"]="⦶", -["para"]="¶", -["gescc"]="⪩", -["Ufr"]="𝔘", -["omicron"]="ο", -["doteq"]="≐", -["mumap"]="⊸", -["urcorner"]="⌝", -["olarr"]="↺", -["DotEqual"]="≐", -["ogon"]="˛", -["odiv"]="⨸", -["ltcc"]="⪦", -["nparsl"]="⫽⃥", -["Colon"]="∷", -["REG"]="®", -["cirE"]="⧃", -["laemptyv"]="⦴", -["Igrave"]="Ì", -["rdsh"]="↳", -["nsucc"]="⊁", -["xotime"]="⨂", -["Wscr"]="𝒲", -["ShortDownArrow"]="↓", -["copysr"]="℗", -["Longleftarrow"]="⟸", -["oS"]="Ⓢ", -["Yuml"]="Ÿ", -["becaus"]="∵", -["Rightarrow"]="⇒", -["nwArr"]="⇖", -["nvsim"]="∼⃒", -["SquareIntersection"]="⊓", -["Barv"]="⫧", -["nvrtrie"]="⊵⃒", -["nvltrie"]="⊴⃒", -["sube"]="⊆", -["boxHd"]="╤", -["Iukcy"]="І", -["NotSquareSubsetEqual"]="⋢", -["DownRightVectorBar"]="⥗", -["Jscr"]="𝒥", -["LeftTriangleBar"]="⧏", -["blacktriangleright"]="▸", -["ntrianglerighteq"]="⋭", -["ntrianglelefteq"]="⋬", -["Bopf"]="𝔹", -["LeftUpVector"]="↿", -["OpenCurlyQuote"]="‘", -["NotSupersetEqual"]="⊉", -["Barwed"]="⌆", -["nsupe"]="⊉", -["nsupE"]="⫆̸", -["lrtri"]="⊿", -["pluse"]="⩲", -["blk14"]="░", -["Eopf"]="𝔼", -["boxv"]="│", -["Pfr"]="𝔓", -["DownTeeArrow"]="↧", -["DownLeftVector"]="↽", -["YIcy"]="Ї", -["phmmat"]="ℳ", -["NotRightTriangleBar"]="⧐̸", -["bigcup"]="⋃", -["ubreve"]="ŭ", -["lEg"]="⪋", -["IJlig"]="IJ", -["nrtri"]="⋫", -["npolint"]="⨔", -["micro"]="µ", -["cir"]="○", -["ge"]="≥", -["NotGreaterLess"]="≹", -["YAcy"]="Я", -["nparallel"]="∦", -["thorn"]="þ", -["Vert"]="‖", -["DoubleRightTee"]="⊨", -["sup3"]="³", -["notindot"]="⋵̸", -["not"]="¬", -["Delta"]="Δ", -["simeq"]="≃", -["nltrie"]="⋬", -["beth"]="ℶ", -["bfr"]="𝔟", -["loarr"]="⇽", -["Ifr"]="ℑ", -["nleq"]="≰", -["FilledSmallSquare"]="◼", -["nldr"]="‥", -["CirclePlus"]="⊕", -["nless"]="≮", -["Atilde"]="Ã", -["Ograve"]="Ò", -["nhpar"]="⫲", -["rlarr"]="⇄", -["bsol"]="\\", -["nharr"]="↮", -["pre"]="⪯", -["ngtr"]="≯", -["acy"]="а", -["ngsim"]="≵", -["nges"]="⩾̸", -["ngeqq"]="≧̸", -["Otilde"]="Õ", -["nedot"]="≐̸", -["nearr"]="↗", -["frac23"]="⅔", -["frac16"]="⅙", -["lcaron"]="ľ", -["naturals"]="ℕ", -["nang"]="∠⃒", -["nVDash"]="⊯", -["longrightarrow"]="⟶", -["igrave"]="ì", -["DownArrowUpArrow"]="⇵", -["Omega"]="Ω", -["ZeroWidthSpace"]="​", -["curren"]="¤", -["Jfr"]="𝔍", -["DoubleLeftArrow"]="⇐", -["bcong"]="≌", -["mscr"]="𝓂", -["Rscr"]="ℛ", -["twixt"]="≬", -["frac12"]="½", -["slarr"]="←", -["LessSlantEqual"]="⩽", -["oint"]="∮", -["amacr"]="ā", -["ell"]="ℓ", -["midcir"]="⫰", -["Lang"]="⟪", -["micro"]="µ", -["ldca"]="⤶", -["marker"]="▮", -["succ"]="≻", -["Int"]="∬", -["Jukcy"]="Є", -["succneqq"]="⪶", -["because"]="∵", -["male"]="♂", -["lrhard"]="⥭", -["complement"]="∁", -["lvertneqq"]="≨︀", -["DoubleUpDownArrow"]="⇕", -["ltrif"]="◂", -["ltri"]="◃", -["dot"]="˙", -["bnequiv"]="≡⃥", -["Ntilde"]="Ñ", -["ocy"]="о", -["lstrok"]="ł", -["RightVector"]="⇀", -["backprime"]="‵", -["loz"]="◊", -["lowbar"]="_", -["infintie"]="⧝", -["nsqsupe"]="⋣", -["Tfr"]="𝔗", -["loplus"]="⨭", -["nsubset"]="⊂⃒", -["looparrowleft"]="↫", -["longmapsto"]="⟼", -["longleftarrow"]="⟵", -["PlusMinus"]="±", -["NotSquareSubset"]="⊏̸", -["lobrk"]="⟦", -["DoubleVerticalBar"]="∥", -["NotLeftTriangleBar"]="⧏̸", -["equivDD"]="⩸", -["loang"]="⟬", -["lneqq"]="≨", -["iuml"]="ï", -["lmoust"]="⎰", -["csub"]="⫏", -["lharu"]="↼", -["lhard"]="↽", -["lfisht"]="⥼", -["lesseqqgtr"]="⪋", -["rcy"]="р", -["cent"]="¢", -["lessapprox"]="⪅", -["lesges"]="⪓", -["Utilde"]="Ũ", -["leftharpoonup"]="↼", -["leftarrow"]="←", -["awconint"]="∳", -["lcub"]="{", -["excl"]="!", -["Sfr"]="𝔖", -["leftharpoondown"]="↽", -["Vvdash"]="⊪", -["there4"]="∴", -["lat"]="⪫", -["larrtl"]="↢", -["Precedes"]="≺", -["Gcedil"]="Ģ", -["boxtimes"]="⊠", -["colon"]=":", -["InvisibleComma"]="⁣", -["OverParenthesis"]="⏜", -["lagran"]="ℒ", -["Rang"]="⟫", -["djcy"]="ђ", -["curarr"]="↷", -["gsim"]="≳", -["cedil"]="¸", -["boxur"]="└", -["rightthreetimes"]="⋌", -["eth"]="ð", -["Ropf"]="ℝ", -["Agrave"]="À", -["iscr"]="𝒾", -["ccedil"]="ç", -["imof"]="⊷", -["imagline"]="ℐ", -["UpArrow"]="↑", -["boxdL"]="╕", -["Mfr"]="𝔐", -["SucceedsTilde"]="≿", -["barwed"]="⌅", -["NotSuperset"]="⊃⃒", -["gneq"]="⪈", -["hksearow"]="⤥", -["lE"]="≦", -["nlarr"]="↚", -["gt"]=">", -["Zopf"]="ℤ", -["gammad"]="ϝ", -["rect"]="▭", -["Hstrok"]="Ħ", -["frac34"]="¾", -["acute"]="´", -["fork"]="⋔", -["Vee"]="⋁", -["ldrushar"]="⥋", -["ThickSpace"]="  ", -["LeftTeeVector"]="⥚", -["egrave"]="è", -["ngt"]="≯", -["nsubseteq"]="⊈", -["frac78"]="⅞", -["SquareSubsetEqual"]="⊑", -["ecy"]="э", -["UpTeeArrow"]="↥", -["pcy"]="п", -["GreaterSlantEqual"]="⩾", -["ecaron"]="ě", -["cupor"]="⩅", -["Nfr"]="𝔑", -["rightarrowtail"]="↣", -["Ofr"]="𝔒", -["subE"]="⫅", -["IOcy"]="Ё", -["cedil"]="¸", -["cdot"]="ċ", -["ShortLeftArrow"]="←", -["CircleMinus"]="⊖", -["Dagger"]="‡", -["cupbrcap"]="⩈", -["SmallCircle"]="∘", -["cirfnint"]="⨐", -["nvge"]="≥⃒", -["Eacute"]="É", -["Equal"]="⩵", -["MinusPlus"]="∓", -["Tab"]=" ", -} -- cgit v1.2.3