@aws/nx-plugin-mcp 1.0.0-rc.12 → 1.0.0-rc.14
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/bin/aws-nx-mcp.js +2411 -2391
- package/docs/guides/connection/py-agent-dynamodb.mdx +116 -0
- package/docs/guides/connection/py-fast-api-dynamodb.mdx +56 -0
- package/docs/guides/connection/py-mcp-server-dynamodb.mdx +116 -0
- package/docs/guides/connection/smithy-dynamodb.mdx +2 -2
- package/docs/guides/connection/trpc-dynamodb.mdx +2 -2
- package/docs/guides/connection/ts-agent-dynamodb.mdx +2 -2
- package/docs/guides/connection/ts-mcp-server-dynamodb.mdx +2 -2
- package/docs/guides/connection.mdx +30 -4
- package/docs/guides/py-agent.mdx +42 -3
- package/docs/guides/py-dynamodb.mdx +449 -0
- package/docs/guides/ts-agent.mdx +40 -2
- package/docs/guides/ts-dynamodb.mdx +21 -250
- package/docs/snippets/connection/py-dynamodb-local-development.mdx +7 -0
- package/docs/snippets/dynamodb/deploying-table.mdx +171 -0
- package/docs/snippets/dynamodb/gsi-config.mdx +38 -0
- package/docs/snippets/dynamodb/infrastructure.mdx +33 -0
- package/docs/snippets/dynamodb/serve-local-start.mdx +13 -0
- package/docs/snippets/dynamodb/serve-local-windows.mdx +15 -0
- package/generators.json +28 -1
- package/package.json +1 -1
- package/src/py/dynamodb/agent-connection/schema.json +22 -0
- package/src/py/dynamodb/fast-api-connection/schema.json +18 -0
- package/src/py/dynamodb/mcp-server-connection/schema.json +22 -0
- package/src/py/dynamodb/schema.json +70 -0
- package/src/ts/dynamodb/schema.json +20 -2
package/bin/aws-nx-mcp.js
CHANGED
|
@@ -485,7 +485,7 @@ const _parse = (_Err) => (schema, value, _ctx, _params) => {
|
|
|
485
485
|
}, ctx);
|
|
486
486
|
if (result instanceof Promise) throw new $ZodAsyncError();
|
|
487
487
|
if (result.issues.length) {
|
|
488
|
-
const e = new (_params?.Err ?? _Err)(result.issues.map((iss) => finalizeIssue(iss, ctx, config())));
|
|
488
|
+
const e = new ((_params?.Err) ?? _Err)(result.issues.map((iss) => finalizeIssue(iss, ctx, config())));
|
|
489
489
|
captureStackTrace(e, _params?.callee);
|
|
490
490
|
throw e;
|
|
491
491
|
}
|
|
@@ -503,7 +503,7 @@ const _parseAsync = (_Err) => async (schema, value, _ctx, params) => {
|
|
|
503
503
|
}, ctx);
|
|
504
504
|
if (result instanceof Promise) result = await result;
|
|
505
505
|
if (result.issues.length) {
|
|
506
|
-
const e = new (params?.Err ?? _Err)(result.issues.map((iss) => finalizeIssue(iss, ctx, config())));
|
|
506
|
+
const e = new ((params?.Err) ?? _Err)(result.issues.map((iss) => finalizeIssue(iss, ctx, config())));
|
|
507
507
|
captureStackTrace(e, params?.callee);
|
|
508
508
|
throw e;
|
|
509
509
|
}
|
|
@@ -20124,7 +20124,7 @@ var generators$1 = {
|
|
|
20124
20124
|
"ts#dynamodb": {
|
|
20125
20125
|
"factory": "./src/ts/dynamodb/generator",
|
|
20126
20126
|
"schema": "./src/ts/dynamodb/schema.json",
|
|
20127
|
-
"description": "Create a DynamoDB project",
|
|
20127
|
+
"description": "Create a TypeScript DynamoDB project",
|
|
20128
20128
|
"metric": "g43"
|
|
20129
20129
|
},
|
|
20130
20130
|
"ts#dynamodb#trpc-connection": {
|
|
@@ -20154,6 +20154,33 @@ var generators$1 = {
|
|
|
20154
20154
|
"description": "Connect a ts#mcp-server to a ts#dynamodb project",
|
|
20155
20155
|
"metric": "g47",
|
|
20156
20156
|
"hidden": true
|
|
20157
|
+
},
|
|
20158
|
+
"py#dynamodb": {
|
|
20159
|
+
"factory": "./src/py/dynamodb/generator",
|
|
20160
|
+
"schema": "./src/py/dynamodb/schema.json",
|
|
20161
|
+
"description": "Create a Python DynamoDB project",
|
|
20162
|
+
"metric": "g52"
|
|
20163
|
+
},
|
|
20164
|
+
"py#dynamodb#fast-api-connection": {
|
|
20165
|
+
"factory": "./src/py/dynamodb/fast-api-connection/generator",
|
|
20166
|
+
"schema": "./src/py/dynamodb/fast-api-connection/schema.json",
|
|
20167
|
+
"description": "Connect a py#fast-api project to a py#dynamodb project",
|
|
20168
|
+
"metric": "g53",
|
|
20169
|
+
"hidden": true
|
|
20170
|
+
},
|
|
20171
|
+
"py#dynamodb#agent-connection": {
|
|
20172
|
+
"factory": "./src/py/dynamodb/agent-connection/generator",
|
|
20173
|
+
"schema": "./src/py/dynamodb/agent-connection/schema.json",
|
|
20174
|
+
"description": "Connect a py#agent to a py#dynamodb project",
|
|
20175
|
+
"metric": "g54",
|
|
20176
|
+
"hidden": true
|
|
20177
|
+
},
|
|
20178
|
+
"py#dynamodb#mcp-server-connection": {
|
|
20179
|
+
"factory": "./src/py/dynamodb/mcp-server-connection/generator",
|
|
20180
|
+
"schema": "./src/py/dynamodb/mcp-server-connection/schema.json",
|
|
20181
|
+
"description": "Connect a py#mcp-server to a py#dynamodb project",
|
|
20182
|
+
"metric": "g55",
|
|
20183
|
+
"hidden": true
|
|
20157
20184
|
}
|
|
20158
20185
|
};
|
|
20159
20186
|
//#endregion
|
|
@@ -25780,2159 +25807,6 @@ var init_mdast_util_to_string = __esmMin((() => {
|
|
|
25780
25807
|
init_lib$21();
|
|
25781
25808
|
}));
|
|
25782
25809
|
//#endregion
|
|
25783
|
-
//#region ../../node_modules/.pnpm/character-entities@2.0.2/node_modules/character-entities/index.js
|
|
25784
|
-
var characterEntities;
|
|
25785
|
-
var init_character_entities = __esmMin((() => {
|
|
25786
|
-
characterEntities = {
|
|
25787
|
-
AElig: "Æ",
|
|
25788
|
-
AMP: "&",
|
|
25789
|
-
Aacute: "Á",
|
|
25790
|
-
Abreve: "Ă",
|
|
25791
|
-
Acirc: "Â",
|
|
25792
|
-
Acy: "А",
|
|
25793
|
-
Afr: "𝔄",
|
|
25794
|
-
Agrave: "À",
|
|
25795
|
-
Alpha: "Α",
|
|
25796
|
-
Amacr: "Ā",
|
|
25797
|
-
And: "⩓",
|
|
25798
|
-
Aogon: "Ą",
|
|
25799
|
-
Aopf: "𝔸",
|
|
25800
|
-
ApplyFunction: "",
|
|
25801
|
-
Aring: "Å",
|
|
25802
|
-
Ascr: "𝒜",
|
|
25803
|
-
Assign: "≔",
|
|
25804
|
-
Atilde: "Ã",
|
|
25805
|
-
Auml: "Ä",
|
|
25806
|
-
Backslash: "∖",
|
|
25807
|
-
Barv: "⫧",
|
|
25808
|
-
Barwed: "⌆",
|
|
25809
|
-
Bcy: "Б",
|
|
25810
|
-
Because: "∵",
|
|
25811
|
-
Bernoullis: "ℬ",
|
|
25812
|
-
Beta: "Β",
|
|
25813
|
-
Bfr: "𝔅",
|
|
25814
|
-
Bopf: "𝔹",
|
|
25815
|
-
Breve: "˘",
|
|
25816
|
-
Bscr: "ℬ",
|
|
25817
|
-
Bumpeq: "≎",
|
|
25818
|
-
CHcy: "Ч",
|
|
25819
|
-
COPY: "©",
|
|
25820
|
-
Cacute: "Ć",
|
|
25821
|
-
Cap: "⋒",
|
|
25822
|
-
CapitalDifferentialD: "ⅅ",
|
|
25823
|
-
Cayleys: "ℭ",
|
|
25824
|
-
Ccaron: "Č",
|
|
25825
|
-
Ccedil: "Ç",
|
|
25826
|
-
Ccirc: "Ĉ",
|
|
25827
|
-
Cconint: "∰",
|
|
25828
|
-
Cdot: "Ċ",
|
|
25829
|
-
Cedilla: "¸",
|
|
25830
|
-
CenterDot: "·",
|
|
25831
|
-
Cfr: "ℭ",
|
|
25832
|
-
Chi: "Χ",
|
|
25833
|
-
CircleDot: "⊙",
|
|
25834
|
-
CircleMinus: "⊖",
|
|
25835
|
-
CirclePlus: "⊕",
|
|
25836
|
-
CircleTimes: "⊗",
|
|
25837
|
-
ClockwiseContourIntegral: "∲",
|
|
25838
|
-
CloseCurlyDoubleQuote: "”",
|
|
25839
|
-
CloseCurlyQuote: "’",
|
|
25840
|
-
Colon: "∷",
|
|
25841
|
-
Colone: "⩴",
|
|
25842
|
-
Congruent: "≡",
|
|
25843
|
-
Conint: "∯",
|
|
25844
|
-
ContourIntegral: "∮",
|
|
25845
|
-
Copf: "ℂ",
|
|
25846
|
-
Coproduct: "∐",
|
|
25847
|
-
CounterClockwiseContourIntegral: "∳",
|
|
25848
|
-
Cross: "⨯",
|
|
25849
|
-
Cscr: "𝒞",
|
|
25850
|
-
Cup: "⋓",
|
|
25851
|
-
CupCap: "≍",
|
|
25852
|
-
DD: "ⅅ",
|
|
25853
|
-
DDotrahd: "⤑",
|
|
25854
|
-
DJcy: "Ђ",
|
|
25855
|
-
DScy: "Ѕ",
|
|
25856
|
-
DZcy: "Џ",
|
|
25857
|
-
Dagger: "‡",
|
|
25858
|
-
Darr: "↡",
|
|
25859
|
-
Dashv: "⫤",
|
|
25860
|
-
Dcaron: "Ď",
|
|
25861
|
-
Dcy: "Д",
|
|
25862
|
-
Del: "∇",
|
|
25863
|
-
Delta: "Δ",
|
|
25864
|
-
Dfr: "𝔇",
|
|
25865
|
-
DiacriticalAcute: "´",
|
|
25866
|
-
DiacriticalDot: "˙",
|
|
25867
|
-
DiacriticalDoubleAcute: "˝",
|
|
25868
|
-
DiacriticalGrave: "`",
|
|
25869
|
-
DiacriticalTilde: "˜",
|
|
25870
|
-
Diamond: "⋄",
|
|
25871
|
-
DifferentialD: "ⅆ",
|
|
25872
|
-
Dopf: "𝔻",
|
|
25873
|
-
Dot: "¨",
|
|
25874
|
-
DotDot: "⃜",
|
|
25875
|
-
DotEqual: "≐",
|
|
25876
|
-
DoubleContourIntegral: "∯",
|
|
25877
|
-
DoubleDot: "¨",
|
|
25878
|
-
DoubleDownArrow: "⇓",
|
|
25879
|
-
DoubleLeftArrow: "⇐",
|
|
25880
|
-
DoubleLeftRightArrow: "⇔",
|
|
25881
|
-
DoubleLeftTee: "⫤",
|
|
25882
|
-
DoubleLongLeftArrow: "⟸",
|
|
25883
|
-
DoubleLongLeftRightArrow: "⟺",
|
|
25884
|
-
DoubleLongRightArrow: "⟹",
|
|
25885
|
-
DoubleRightArrow: "⇒",
|
|
25886
|
-
DoubleRightTee: "⊨",
|
|
25887
|
-
DoubleUpArrow: "⇑",
|
|
25888
|
-
DoubleUpDownArrow: "⇕",
|
|
25889
|
-
DoubleVerticalBar: "∥",
|
|
25890
|
-
DownArrow: "↓",
|
|
25891
|
-
DownArrowBar: "⤓",
|
|
25892
|
-
DownArrowUpArrow: "⇵",
|
|
25893
|
-
DownBreve: "̑",
|
|
25894
|
-
DownLeftRightVector: "⥐",
|
|
25895
|
-
DownLeftTeeVector: "⥞",
|
|
25896
|
-
DownLeftVector: "↽",
|
|
25897
|
-
DownLeftVectorBar: "⥖",
|
|
25898
|
-
DownRightTeeVector: "⥟",
|
|
25899
|
-
DownRightVector: "⇁",
|
|
25900
|
-
DownRightVectorBar: "⥗",
|
|
25901
|
-
DownTee: "⊤",
|
|
25902
|
-
DownTeeArrow: "↧",
|
|
25903
|
-
Downarrow: "⇓",
|
|
25904
|
-
Dscr: "𝒟",
|
|
25905
|
-
Dstrok: "Đ",
|
|
25906
|
-
ENG: "Ŋ",
|
|
25907
|
-
ETH: "Ð",
|
|
25908
|
-
Eacute: "É",
|
|
25909
|
-
Ecaron: "Ě",
|
|
25910
|
-
Ecirc: "Ê",
|
|
25911
|
-
Ecy: "Э",
|
|
25912
|
-
Edot: "Ė",
|
|
25913
|
-
Efr: "𝔈",
|
|
25914
|
-
Egrave: "È",
|
|
25915
|
-
Element: "∈",
|
|
25916
|
-
Emacr: "Ē",
|
|
25917
|
-
EmptySmallSquare: "◻",
|
|
25918
|
-
EmptyVerySmallSquare: "▫",
|
|
25919
|
-
Eogon: "Ę",
|
|
25920
|
-
Eopf: "𝔼",
|
|
25921
|
-
Epsilon: "Ε",
|
|
25922
|
-
Equal: "⩵",
|
|
25923
|
-
EqualTilde: "≂",
|
|
25924
|
-
Equilibrium: "⇌",
|
|
25925
|
-
Escr: "ℰ",
|
|
25926
|
-
Esim: "⩳",
|
|
25927
|
-
Eta: "Η",
|
|
25928
|
-
Euml: "Ë",
|
|
25929
|
-
Exists: "∃",
|
|
25930
|
-
ExponentialE: "ⅇ",
|
|
25931
|
-
Fcy: "Ф",
|
|
25932
|
-
Ffr: "𝔉",
|
|
25933
|
-
FilledSmallSquare: "◼",
|
|
25934
|
-
FilledVerySmallSquare: "▪",
|
|
25935
|
-
Fopf: "𝔽",
|
|
25936
|
-
ForAll: "∀",
|
|
25937
|
-
Fouriertrf: "ℱ",
|
|
25938
|
-
Fscr: "ℱ",
|
|
25939
|
-
GJcy: "Ѓ",
|
|
25940
|
-
GT: ">",
|
|
25941
|
-
Gamma: "Γ",
|
|
25942
|
-
Gammad: "Ϝ",
|
|
25943
|
-
Gbreve: "Ğ",
|
|
25944
|
-
Gcedil: "Ģ",
|
|
25945
|
-
Gcirc: "Ĝ",
|
|
25946
|
-
Gcy: "Г",
|
|
25947
|
-
Gdot: "Ġ",
|
|
25948
|
-
Gfr: "𝔊",
|
|
25949
|
-
Gg: "⋙",
|
|
25950
|
-
Gopf: "𝔾",
|
|
25951
|
-
GreaterEqual: "≥",
|
|
25952
|
-
GreaterEqualLess: "⋛",
|
|
25953
|
-
GreaterFullEqual: "≧",
|
|
25954
|
-
GreaterGreater: "⪢",
|
|
25955
|
-
GreaterLess: "≷",
|
|
25956
|
-
GreaterSlantEqual: "⩾",
|
|
25957
|
-
GreaterTilde: "≳",
|
|
25958
|
-
Gscr: "𝒢",
|
|
25959
|
-
Gt: "≫",
|
|
25960
|
-
HARDcy: "Ъ",
|
|
25961
|
-
Hacek: "ˇ",
|
|
25962
|
-
Hat: "^",
|
|
25963
|
-
Hcirc: "Ĥ",
|
|
25964
|
-
Hfr: "ℌ",
|
|
25965
|
-
HilbertSpace: "ℋ",
|
|
25966
|
-
Hopf: "ℍ",
|
|
25967
|
-
HorizontalLine: "─",
|
|
25968
|
-
Hscr: "ℋ",
|
|
25969
|
-
Hstrok: "Ħ",
|
|
25970
|
-
HumpDownHump: "≎",
|
|
25971
|
-
HumpEqual: "≏",
|
|
25972
|
-
IEcy: "Е",
|
|
25973
|
-
IJlig: "IJ",
|
|
25974
|
-
IOcy: "Ё",
|
|
25975
|
-
Iacute: "Í",
|
|
25976
|
-
Icirc: "Î",
|
|
25977
|
-
Icy: "И",
|
|
25978
|
-
Idot: "İ",
|
|
25979
|
-
Ifr: "ℑ",
|
|
25980
|
-
Igrave: "Ì",
|
|
25981
|
-
Im: "ℑ",
|
|
25982
|
-
Imacr: "Ī",
|
|
25983
|
-
ImaginaryI: "ⅈ",
|
|
25984
|
-
Implies: "⇒",
|
|
25985
|
-
Int: "∬",
|
|
25986
|
-
Integral: "∫",
|
|
25987
|
-
Intersection: "⋂",
|
|
25988
|
-
InvisibleComma: "",
|
|
25989
|
-
InvisibleTimes: "",
|
|
25990
|
-
Iogon: "Į",
|
|
25991
|
-
Iopf: "𝕀",
|
|
25992
|
-
Iota: "Ι",
|
|
25993
|
-
Iscr: "ℐ",
|
|
25994
|
-
Itilde: "Ĩ",
|
|
25995
|
-
Iukcy: "І",
|
|
25996
|
-
Iuml: "Ï",
|
|
25997
|
-
Jcirc: "Ĵ",
|
|
25998
|
-
Jcy: "Й",
|
|
25999
|
-
Jfr: "𝔍",
|
|
26000
|
-
Jopf: "𝕁",
|
|
26001
|
-
Jscr: "𝒥",
|
|
26002
|
-
Jsercy: "Ј",
|
|
26003
|
-
Jukcy: "Є",
|
|
26004
|
-
KHcy: "Х",
|
|
26005
|
-
KJcy: "Ќ",
|
|
26006
|
-
Kappa: "Κ",
|
|
26007
|
-
Kcedil: "Ķ",
|
|
26008
|
-
Kcy: "К",
|
|
26009
|
-
Kfr: "𝔎",
|
|
26010
|
-
Kopf: "𝕂",
|
|
26011
|
-
Kscr: "𝒦",
|
|
26012
|
-
LJcy: "Љ",
|
|
26013
|
-
LT: "<",
|
|
26014
|
-
Lacute: "Ĺ",
|
|
26015
|
-
Lambda: "Λ",
|
|
26016
|
-
Lang: "⟪",
|
|
26017
|
-
Laplacetrf: "ℒ",
|
|
26018
|
-
Larr: "↞",
|
|
26019
|
-
Lcaron: "Ľ",
|
|
26020
|
-
Lcedil: "Ļ",
|
|
26021
|
-
Lcy: "Л",
|
|
26022
|
-
LeftAngleBracket: "⟨",
|
|
26023
|
-
LeftArrow: "←",
|
|
26024
|
-
LeftArrowBar: "⇤",
|
|
26025
|
-
LeftArrowRightArrow: "⇆",
|
|
26026
|
-
LeftCeiling: "⌈",
|
|
26027
|
-
LeftDoubleBracket: "⟦",
|
|
26028
|
-
LeftDownTeeVector: "⥡",
|
|
26029
|
-
LeftDownVector: "⇃",
|
|
26030
|
-
LeftDownVectorBar: "⥙",
|
|
26031
|
-
LeftFloor: "⌊",
|
|
26032
|
-
LeftRightArrow: "↔",
|
|
26033
|
-
LeftRightVector: "⥎",
|
|
26034
|
-
LeftTee: "⊣",
|
|
26035
|
-
LeftTeeArrow: "↤",
|
|
26036
|
-
LeftTeeVector: "⥚",
|
|
26037
|
-
LeftTriangle: "⊲",
|
|
26038
|
-
LeftTriangleBar: "⧏",
|
|
26039
|
-
LeftTriangleEqual: "⊴",
|
|
26040
|
-
LeftUpDownVector: "⥑",
|
|
26041
|
-
LeftUpTeeVector: "⥠",
|
|
26042
|
-
LeftUpVector: "↿",
|
|
26043
|
-
LeftUpVectorBar: "⥘",
|
|
26044
|
-
LeftVector: "↼",
|
|
26045
|
-
LeftVectorBar: "⥒",
|
|
26046
|
-
Leftarrow: "⇐",
|
|
26047
|
-
Leftrightarrow: "⇔",
|
|
26048
|
-
LessEqualGreater: "⋚",
|
|
26049
|
-
LessFullEqual: "≦",
|
|
26050
|
-
LessGreater: "≶",
|
|
26051
|
-
LessLess: "⪡",
|
|
26052
|
-
LessSlantEqual: "⩽",
|
|
26053
|
-
LessTilde: "≲",
|
|
26054
|
-
Lfr: "𝔏",
|
|
26055
|
-
Ll: "⋘",
|
|
26056
|
-
Lleftarrow: "⇚",
|
|
26057
|
-
Lmidot: "Ŀ",
|
|
26058
|
-
LongLeftArrow: "⟵",
|
|
26059
|
-
LongLeftRightArrow: "⟷",
|
|
26060
|
-
LongRightArrow: "⟶",
|
|
26061
|
-
Longleftarrow: "⟸",
|
|
26062
|
-
Longleftrightarrow: "⟺",
|
|
26063
|
-
Longrightarrow: "⟹",
|
|
26064
|
-
Lopf: "𝕃",
|
|
26065
|
-
LowerLeftArrow: "↙",
|
|
26066
|
-
LowerRightArrow: "↘",
|
|
26067
|
-
Lscr: "ℒ",
|
|
26068
|
-
Lsh: "↰",
|
|
26069
|
-
Lstrok: "Ł",
|
|
26070
|
-
Lt: "≪",
|
|
26071
|
-
Map: "⤅",
|
|
26072
|
-
Mcy: "М",
|
|
26073
|
-
MediumSpace: " ",
|
|
26074
|
-
Mellintrf: "ℳ",
|
|
26075
|
-
Mfr: "𝔐",
|
|
26076
|
-
MinusPlus: "∓",
|
|
26077
|
-
Mopf: "𝕄",
|
|
26078
|
-
Mscr: "ℳ",
|
|
26079
|
-
Mu: "Μ",
|
|
26080
|
-
NJcy: "Њ",
|
|
26081
|
-
Nacute: "Ń",
|
|
26082
|
-
Ncaron: "Ň",
|
|
26083
|
-
Ncedil: "Ņ",
|
|
26084
|
-
Ncy: "Н",
|
|
26085
|
-
NegativeMediumSpace: "",
|
|
26086
|
-
NegativeThickSpace: "",
|
|
26087
|
-
NegativeThinSpace: "",
|
|
26088
|
-
NegativeVeryThinSpace: "",
|
|
26089
|
-
NestedGreaterGreater: "≫",
|
|
26090
|
-
NestedLessLess: "≪",
|
|
26091
|
-
NewLine: "\n",
|
|
26092
|
-
Nfr: "𝔑",
|
|
26093
|
-
NoBreak: "",
|
|
26094
|
-
NonBreakingSpace: "\xA0",
|
|
26095
|
-
Nopf: "ℕ",
|
|
26096
|
-
Not: "⫬",
|
|
26097
|
-
NotCongruent: "≢",
|
|
26098
|
-
NotCupCap: "≭",
|
|
26099
|
-
NotDoubleVerticalBar: "∦",
|
|
26100
|
-
NotElement: "∉",
|
|
26101
|
-
NotEqual: "≠",
|
|
26102
|
-
NotEqualTilde: "≂̸",
|
|
26103
|
-
NotExists: "∄",
|
|
26104
|
-
NotGreater: "≯",
|
|
26105
|
-
NotGreaterEqual: "≱",
|
|
26106
|
-
NotGreaterFullEqual: "≧̸",
|
|
26107
|
-
NotGreaterGreater: "≫̸",
|
|
26108
|
-
NotGreaterLess: "≹",
|
|
26109
|
-
NotGreaterSlantEqual: "⩾̸",
|
|
26110
|
-
NotGreaterTilde: "≵",
|
|
26111
|
-
NotHumpDownHump: "≎̸",
|
|
26112
|
-
NotHumpEqual: "≏̸",
|
|
26113
|
-
NotLeftTriangle: "⋪",
|
|
26114
|
-
NotLeftTriangleBar: "⧏̸",
|
|
26115
|
-
NotLeftTriangleEqual: "⋬",
|
|
26116
|
-
NotLess: "≮",
|
|
26117
|
-
NotLessEqual: "≰",
|
|
26118
|
-
NotLessGreater: "≸",
|
|
26119
|
-
NotLessLess: "≪̸",
|
|
26120
|
-
NotLessSlantEqual: "⩽̸",
|
|
26121
|
-
NotLessTilde: "≴",
|
|
26122
|
-
NotNestedGreaterGreater: "⪢̸",
|
|
26123
|
-
NotNestedLessLess: "⪡̸",
|
|
26124
|
-
NotPrecedes: "⊀",
|
|
26125
|
-
NotPrecedesEqual: "⪯̸",
|
|
26126
|
-
NotPrecedesSlantEqual: "⋠",
|
|
26127
|
-
NotReverseElement: "∌",
|
|
26128
|
-
NotRightTriangle: "⋫",
|
|
26129
|
-
NotRightTriangleBar: "⧐̸",
|
|
26130
|
-
NotRightTriangleEqual: "⋭",
|
|
26131
|
-
NotSquareSubset: "⊏̸",
|
|
26132
|
-
NotSquareSubsetEqual: "⋢",
|
|
26133
|
-
NotSquareSuperset: "⊐̸",
|
|
26134
|
-
NotSquareSupersetEqual: "⋣",
|
|
26135
|
-
NotSubset: "⊂⃒",
|
|
26136
|
-
NotSubsetEqual: "⊈",
|
|
26137
|
-
NotSucceeds: "⊁",
|
|
26138
|
-
NotSucceedsEqual: "⪰̸",
|
|
26139
|
-
NotSucceedsSlantEqual: "⋡",
|
|
26140
|
-
NotSucceedsTilde: "≿̸",
|
|
26141
|
-
NotSuperset: "⊃⃒",
|
|
26142
|
-
NotSupersetEqual: "⊉",
|
|
26143
|
-
NotTilde: "≁",
|
|
26144
|
-
NotTildeEqual: "≄",
|
|
26145
|
-
NotTildeFullEqual: "≇",
|
|
26146
|
-
NotTildeTilde: "≉",
|
|
26147
|
-
NotVerticalBar: "∤",
|
|
26148
|
-
Nscr: "𝒩",
|
|
26149
|
-
Ntilde: "Ñ",
|
|
26150
|
-
Nu: "Ν",
|
|
26151
|
-
OElig: "Œ",
|
|
26152
|
-
Oacute: "Ó",
|
|
26153
|
-
Ocirc: "Ô",
|
|
26154
|
-
Ocy: "О",
|
|
26155
|
-
Odblac: "Ő",
|
|
26156
|
-
Ofr: "𝔒",
|
|
26157
|
-
Ograve: "Ò",
|
|
26158
|
-
Omacr: "Ō",
|
|
26159
|
-
Omega: "Ω",
|
|
26160
|
-
Omicron: "Ο",
|
|
26161
|
-
Oopf: "𝕆",
|
|
26162
|
-
OpenCurlyDoubleQuote: "“",
|
|
26163
|
-
OpenCurlyQuote: "‘",
|
|
26164
|
-
Or: "⩔",
|
|
26165
|
-
Oscr: "𝒪",
|
|
26166
|
-
Oslash: "Ø",
|
|
26167
|
-
Otilde: "Õ",
|
|
26168
|
-
Otimes: "⨷",
|
|
26169
|
-
Ouml: "Ö",
|
|
26170
|
-
OverBar: "‾",
|
|
26171
|
-
OverBrace: "⏞",
|
|
26172
|
-
OverBracket: "⎴",
|
|
26173
|
-
OverParenthesis: "⏜",
|
|
26174
|
-
PartialD: "∂",
|
|
26175
|
-
Pcy: "П",
|
|
26176
|
-
Pfr: "𝔓",
|
|
26177
|
-
Phi: "Φ",
|
|
26178
|
-
Pi: "Π",
|
|
26179
|
-
PlusMinus: "±",
|
|
26180
|
-
Poincareplane: "ℌ",
|
|
26181
|
-
Popf: "ℙ",
|
|
26182
|
-
Pr: "⪻",
|
|
26183
|
-
Precedes: "≺",
|
|
26184
|
-
PrecedesEqual: "⪯",
|
|
26185
|
-
PrecedesSlantEqual: "≼",
|
|
26186
|
-
PrecedesTilde: "≾",
|
|
26187
|
-
Prime: "″",
|
|
26188
|
-
Product: "∏",
|
|
26189
|
-
Proportion: "∷",
|
|
26190
|
-
Proportional: "∝",
|
|
26191
|
-
Pscr: "𝒫",
|
|
26192
|
-
Psi: "Ψ",
|
|
26193
|
-
QUOT: "\"",
|
|
26194
|
-
Qfr: "𝔔",
|
|
26195
|
-
Qopf: "ℚ",
|
|
26196
|
-
Qscr: "𝒬",
|
|
26197
|
-
RBarr: "⤐",
|
|
26198
|
-
REG: "®",
|
|
26199
|
-
Racute: "Ŕ",
|
|
26200
|
-
Rang: "⟫",
|
|
26201
|
-
Rarr: "↠",
|
|
26202
|
-
Rarrtl: "⤖",
|
|
26203
|
-
Rcaron: "Ř",
|
|
26204
|
-
Rcedil: "Ŗ",
|
|
26205
|
-
Rcy: "Р",
|
|
26206
|
-
Re: "ℜ",
|
|
26207
|
-
ReverseElement: "∋",
|
|
26208
|
-
ReverseEquilibrium: "⇋",
|
|
26209
|
-
ReverseUpEquilibrium: "⥯",
|
|
26210
|
-
Rfr: "ℜ",
|
|
26211
|
-
Rho: "Ρ",
|
|
26212
|
-
RightAngleBracket: "⟩",
|
|
26213
|
-
RightArrow: "→",
|
|
26214
|
-
RightArrowBar: "⇥",
|
|
26215
|
-
RightArrowLeftArrow: "⇄",
|
|
26216
|
-
RightCeiling: "⌉",
|
|
26217
|
-
RightDoubleBracket: "⟧",
|
|
26218
|
-
RightDownTeeVector: "⥝",
|
|
26219
|
-
RightDownVector: "⇂",
|
|
26220
|
-
RightDownVectorBar: "⥕",
|
|
26221
|
-
RightFloor: "⌋",
|
|
26222
|
-
RightTee: "⊢",
|
|
26223
|
-
RightTeeArrow: "↦",
|
|
26224
|
-
RightTeeVector: "⥛",
|
|
26225
|
-
RightTriangle: "⊳",
|
|
26226
|
-
RightTriangleBar: "⧐",
|
|
26227
|
-
RightTriangleEqual: "⊵",
|
|
26228
|
-
RightUpDownVector: "⥏",
|
|
26229
|
-
RightUpTeeVector: "⥜",
|
|
26230
|
-
RightUpVector: "↾",
|
|
26231
|
-
RightUpVectorBar: "⥔",
|
|
26232
|
-
RightVector: "⇀",
|
|
26233
|
-
RightVectorBar: "⥓",
|
|
26234
|
-
Rightarrow: "⇒",
|
|
26235
|
-
Ropf: "ℝ",
|
|
26236
|
-
RoundImplies: "⥰",
|
|
26237
|
-
Rrightarrow: "⇛",
|
|
26238
|
-
Rscr: "ℛ",
|
|
26239
|
-
Rsh: "↱",
|
|
26240
|
-
RuleDelayed: "⧴",
|
|
26241
|
-
SHCHcy: "Щ",
|
|
26242
|
-
SHcy: "Ш",
|
|
26243
|
-
SOFTcy: "Ь",
|
|
26244
|
-
Sacute: "Ś",
|
|
26245
|
-
Sc: "⪼",
|
|
26246
|
-
Scaron: "Š",
|
|
26247
|
-
Scedil: "Ş",
|
|
26248
|
-
Scirc: "Ŝ",
|
|
26249
|
-
Scy: "С",
|
|
26250
|
-
Sfr: "𝔖",
|
|
26251
|
-
ShortDownArrow: "↓",
|
|
26252
|
-
ShortLeftArrow: "←",
|
|
26253
|
-
ShortRightArrow: "→",
|
|
26254
|
-
ShortUpArrow: "↑",
|
|
26255
|
-
Sigma: "Σ",
|
|
26256
|
-
SmallCircle: "∘",
|
|
26257
|
-
Sopf: "𝕊",
|
|
26258
|
-
Sqrt: "√",
|
|
26259
|
-
Square: "□",
|
|
26260
|
-
SquareIntersection: "⊓",
|
|
26261
|
-
SquareSubset: "⊏",
|
|
26262
|
-
SquareSubsetEqual: "⊑",
|
|
26263
|
-
SquareSuperset: "⊐",
|
|
26264
|
-
SquareSupersetEqual: "⊒",
|
|
26265
|
-
SquareUnion: "⊔",
|
|
26266
|
-
Sscr: "𝒮",
|
|
26267
|
-
Star: "⋆",
|
|
26268
|
-
Sub: "⋐",
|
|
26269
|
-
Subset: "⋐",
|
|
26270
|
-
SubsetEqual: "⊆",
|
|
26271
|
-
Succeeds: "≻",
|
|
26272
|
-
SucceedsEqual: "⪰",
|
|
26273
|
-
SucceedsSlantEqual: "≽",
|
|
26274
|
-
SucceedsTilde: "≿",
|
|
26275
|
-
SuchThat: "∋",
|
|
26276
|
-
Sum: "∑",
|
|
26277
|
-
Sup: "⋑",
|
|
26278
|
-
Superset: "⊃",
|
|
26279
|
-
SupersetEqual: "⊇",
|
|
26280
|
-
Supset: "⋑",
|
|
26281
|
-
THORN: "Þ",
|
|
26282
|
-
TRADE: "™",
|
|
26283
|
-
TSHcy: "Ћ",
|
|
26284
|
-
TScy: "Ц",
|
|
26285
|
-
Tab: " ",
|
|
26286
|
-
Tau: "Τ",
|
|
26287
|
-
Tcaron: "Ť",
|
|
26288
|
-
Tcedil: "Ţ",
|
|
26289
|
-
Tcy: "Т",
|
|
26290
|
-
Tfr: "𝔗",
|
|
26291
|
-
Therefore: "∴",
|
|
26292
|
-
Theta: "Θ",
|
|
26293
|
-
ThickSpace: " ",
|
|
26294
|
-
ThinSpace: " ",
|
|
26295
|
-
Tilde: "∼",
|
|
26296
|
-
TildeEqual: "≃",
|
|
26297
|
-
TildeFullEqual: "≅",
|
|
26298
|
-
TildeTilde: "≈",
|
|
26299
|
-
Topf: "𝕋",
|
|
26300
|
-
TripleDot: "⃛",
|
|
26301
|
-
Tscr: "𝒯",
|
|
26302
|
-
Tstrok: "Ŧ",
|
|
26303
|
-
Uacute: "Ú",
|
|
26304
|
-
Uarr: "↟",
|
|
26305
|
-
Uarrocir: "⥉",
|
|
26306
|
-
Ubrcy: "Ў",
|
|
26307
|
-
Ubreve: "Ŭ",
|
|
26308
|
-
Ucirc: "Û",
|
|
26309
|
-
Ucy: "У",
|
|
26310
|
-
Udblac: "Ű",
|
|
26311
|
-
Ufr: "𝔘",
|
|
26312
|
-
Ugrave: "Ù",
|
|
26313
|
-
Umacr: "Ū",
|
|
26314
|
-
UnderBar: "_",
|
|
26315
|
-
UnderBrace: "⏟",
|
|
26316
|
-
UnderBracket: "⎵",
|
|
26317
|
-
UnderParenthesis: "⏝",
|
|
26318
|
-
Union: "⋃",
|
|
26319
|
-
UnionPlus: "⊎",
|
|
26320
|
-
Uogon: "Ų",
|
|
26321
|
-
Uopf: "𝕌",
|
|
26322
|
-
UpArrow: "↑",
|
|
26323
|
-
UpArrowBar: "⤒",
|
|
26324
|
-
UpArrowDownArrow: "⇅",
|
|
26325
|
-
UpDownArrow: "↕",
|
|
26326
|
-
UpEquilibrium: "⥮",
|
|
26327
|
-
UpTee: "⊥",
|
|
26328
|
-
UpTeeArrow: "↥",
|
|
26329
|
-
Uparrow: "⇑",
|
|
26330
|
-
Updownarrow: "⇕",
|
|
26331
|
-
UpperLeftArrow: "↖",
|
|
26332
|
-
UpperRightArrow: "↗",
|
|
26333
|
-
Upsi: "ϒ",
|
|
26334
|
-
Upsilon: "Υ",
|
|
26335
|
-
Uring: "Ů",
|
|
26336
|
-
Uscr: "𝒰",
|
|
26337
|
-
Utilde: "Ũ",
|
|
26338
|
-
Uuml: "Ü",
|
|
26339
|
-
VDash: "⊫",
|
|
26340
|
-
Vbar: "⫫",
|
|
26341
|
-
Vcy: "В",
|
|
26342
|
-
Vdash: "⊩",
|
|
26343
|
-
Vdashl: "⫦",
|
|
26344
|
-
Vee: "⋁",
|
|
26345
|
-
Verbar: "‖",
|
|
26346
|
-
Vert: "‖",
|
|
26347
|
-
VerticalBar: "∣",
|
|
26348
|
-
VerticalLine: "|",
|
|
26349
|
-
VerticalSeparator: "❘",
|
|
26350
|
-
VerticalTilde: "≀",
|
|
26351
|
-
VeryThinSpace: " ",
|
|
26352
|
-
Vfr: "𝔙",
|
|
26353
|
-
Vopf: "𝕍",
|
|
26354
|
-
Vscr: "𝒱",
|
|
26355
|
-
Vvdash: "⊪",
|
|
26356
|
-
Wcirc: "Ŵ",
|
|
26357
|
-
Wedge: "⋀",
|
|
26358
|
-
Wfr: "𝔚",
|
|
26359
|
-
Wopf: "𝕎",
|
|
26360
|
-
Wscr: "𝒲",
|
|
26361
|
-
Xfr: "𝔛",
|
|
26362
|
-
Xi: "Ξ",
|
|
26363
|
-
Xopf: "𝕏",
|
|
26364
|
-
Xscr: "𝒳",
|
|
26365
|
-
YAcy: "Я",
|
|
26366
|
-
YIcy: "Ї",
|
|
26367
|
-
YUcy: "Ю",
|
|
26368
|
-
Yacute: "Ý",
|
|
26369
|
-
Ycirc: "Ŷ",
|
|
26370
|
-
Ycy: "Ы",
|
|
26371
|
-
Yfr: "𝔜",
|
|
26372
|
-
Yopf: "𝕐",
|
|
26373
|
-
Yscr: "𝒴",
|
|
26374
|
-
Yuml: "Ÿ",
|
|
26375
|
-
ZHcy: "Ж",
|
|
26376
|
-
Zacute: "Ź",
|
|
26377
|
-
Zcaron: "Ž",
|
|
26378
|
-
Zcy: "З",
|
|
26379
|
-
Zdot: "Ż",
|
|
26380
|
-
ZeroWidthSpace: "",
|
|
26381
|
-
Zeta: "Ζ",
|
|
26382
|
-
Zfr: "ℨ",
|
|
26383
|
-
Zopf: "ℤ",
|
|
26384
|
-
Zscr: "𝒵",
|
|
26385
|
-
aacute: "á",
|
|
26386
|
-
abreve: "ă",
|
|
26387
|
-
ac: "∾",
|
|
26388
|
-
acE: "∾̳",
|
|
26389
|
-
acd: "∿",
|
|
26390
|
-
acirc: "â",
|
|
26391
|
-
acute: "´",
|
|
26392
|
-
acy: "а",
|
|
26393
|
-
aelig: "æ",
|
|
26394
|
-
af: "",
|
|
26395
|
-
afr: "𝔞",
|
|
26396
|
-
agrave: "à",
|
|
26397
|
-
alefsym: "ℵ",
|
|
26398
|
-
aleph: "ℵ",
|
|
26399
|
-
alpha: "α",
|
|
26400
|
-
amacr: "ā",
|
|
26401
|
-
amalg: "⨿",
|
|
26402
|
-
amp: "&",
|
|
26403
|
-
and: "∧",
|
|
26404
|
-
andand: "⩕",
|
|
26405
|
-
andd: "⩜",
|
|
26406
|
-
andslope: "⩘",
|
|
26407
|
-
andv: "⩚",
|
|
26408
|
-
ang: "∠",
|
|
26409
|
-
ange: "⦤",
|
|
26410
|
-
angle: "∠",
|
|
26411
|
-
angmsd: "∡",
|
|
26412
|
-
angmsdaa: "⦨",
|
|
26413
|
-
angmsdab: "⦩",
|
|
26414
|
-
angmsdac: "⦪",
|
|
26415
|
-
angmsdad: "⦫",
|
|
26416
|
-
angmsdae: "⦬",
|
|
26417
|
-
angmsdaf: "⦭",
|
|
26418
|
-
angmsdag: "⦮",
|
|
26419
|
-
angmsdah: "⦯",
|
|
26420
|
-
angrt: "∟",
|
|
26421
|
-
angrtvb: "⊾",
|
|
26422
|
-
angrtvbd: "⦝",
|
|
26423
|
-
angsph: "∢",
|
|
26424
|
-
angst: "Å",
|
|
26425
|
-
angzarr: "⍼",
|
|
26426
|
-
aogon: "ą",
|
|
26427
|
-
aopf: "𝕒",
|
|
26428
|
-
ap: "≈",
|
|
26429
|
-
apE: "⩰",
|
|
26430
|
-
apacir: "⩯",
|
|
26431
|
-
ape: "≊",
|
|
26432
|
-
apid: "≋",
|
|
26433
|
-
apos: "'",
|
|
26434
|
-
approx: "≈",
|
|
26435
|
-
approxeq: "≊",
|
|
26436
|
-
aring: "å",
|
|
26437
|
-
ascr: "𝒶",
|
|
26438
|
-
ast: "*",
|
|
26439
|
-
asymp: "≈",
|
|
26440
|
-
asympeq: "≍",
|
|
26441
|
-
atilde: "ã",
|
|
26442
|
-
auml: "ä",
|
|
26443
|
-
awconint: "∳",
|
|
26444
|
-
awint: "⨑",
|
|
26445
|
-
bNot: "⫭",
|
|
26446
|
-
backcong: "≌",
|
|
26447
|
-
backepsilon: "϶",
|
|
26448
|
-
backprime: "‵",
|
|
26449
|
-
backsim: "∽",
|
|
26450
|
-
backsimeq: "⋍",
|
|
26451
|
-
barvee: "⊽",
|
|
26452
|
-
barwed: "⌅",
|
|
26453
|
-
barwedge: "⌅",
|
|
26454
|
-
bbrk: "⎵",
|
|
26455
|
-
bbrktbrk: "⎶",
|
|
26456
|
-
bcong: "≌",
|
|
26457
|
-
bcy: "б",
|
|
26458
|
-
bdquo: "„",
|
|
26459
|
-
becaus: "∵",
|
|
26460
|
-
because: "∵",
|
|
26461
|
-
bemptyv: "⦰",
|
|
26462
|
-
bepsi: "϶",
|
|
26463
|
-
bernou: "ℬ",
|
|
26464
|
-
beta: "β",
|
|
26465
|
-
beth: "ℶ",
|
|
26466
|
-
between: "≬",
|
|
26467
|
-
bfr: "𝔟",
|
|
26468
|
-
bigcap: "⋂",
|
|
26469
|
-
bigcirc: "◯",
|
|
26470
|
-
bigcup: "⋃",
|
|
26471
|
-
bigodot: "⨀",
|
|
26472
|
-
bigoplus: "⨁",
|
|
26473
|
-
bigotimes: "⨂",
|
|
26474
|
-
bigsqcup: "⨆",
|
|
26475
|
-
bigstar: "★",
|
|
26476
|
-
bigtriangledown: "▽",
|
|
26477
|
-
bigtriangleup: "△",
|
|
26478
|
-
biguplus: "⨄",
|
|
26479
|
-
bigvee: "⋁",
|
|
26480
|
-
bigwedge: "⋀",
|
|
26481
|
-
bkarow: "⤍",
|
|
26482
|
-
blacklozenge: "⧫",
|
|
26483
|
-
blacksquare: "▪",
|
|
26484
|
-
blacktriangle: "▴",
|
|
26485
|
-
blacktriangledown: "▾",
|
|
26486
|
-
blacktriangleleft: "◂",
|
|
26487
|
-
blacktriangleright: "▸",
|
|
26488
|
-
blank: "␣",
|
|
26489
|
-
blk12: "▒",
|
|
26490
|
-
blk14: "░",
|
|
26491
|
-
blk34: "▓",
|
|
26492
|
-
block: "█",
|
|
26493
|
-
bne: "=⃥",
|
|
26494
|
-
bnequiv: "≡⃥",
|
|
26495
|
-
bnot: "⌐",
|
|
26496
|
-
bopf: "𝕓",
|
|
26497
|
-
bot: "⊥",
|
|
26498
|
-
bottom: "⊥",
|
|
26499
|
-
bowtie: "⋈",
|
|
26500
|
-
boxDL: "╗",
|
|
26501
|
-
boxDR: "╔",
|
|
26502
|
-
boxDl: "╖",
|
|
26503
|
-
boxDr: "╓",
|
|
26504
|
-
boxH: "═",
|
|
26505
|
-
boxHD: "╦",
|
|
26506
|
-
boxHU: "╩",
|
|
26507
|
-
boxHd: "╤",
|
|
26508
|
-
boxHu: "╧",
|
|
26509
|
-
boxUL: "╝",
|
|
26510
|
-
boxUR: "╚",
|
|
26511
|
-
boxUl: "╜",
|
|
26512
|
-
boxUr: "╙",
|
|
26513
|
-
boxV: "║",
|
|
26514
|
-
boxVH: "╬",
|
|
26515
|
-
boxVL: "╣",
|
|
26516
|
-
boxVR: "╠",
|
|
26517
|
-
boxVh: "╫",
|
|
26518
|
-
boxVl: "╢",
|
|
26519
|
-
boxVr: "╟",
|
|
26520
|
-
boxbox: "⧉",
|
|
26521
|
-
boxdL: "╕",
|
|
26522
|
-
boxdR: "╒",
|
|
26523
|
-
boxdl: "┐",
|
|
26524
|
-
boxdr: "┌",
|
|
26525
|
-
boxh: "─",
|
|
26526
|
-
boxhD: "╥",
|
|
26527
|
-
boxhU: "╨",
|
|
26528
|
-
boxhd: "┬",
|
|
26529
|
-
boxhu: "┴",
|
|
26530
|
-
boxminus: "⊟",
|
|
26531
|
-
boxplus: "⊞",
|
|
26532
|
-
boxtimes: "⊠",
|
|
26533
|
-
boxuL: "╛",
|
|
26534
|
-
boxuR: "╘",
|
|
26535
|
-
boxul: "┘",
|
|
26536
|
-
boxur: "└",
|
|
26537
|
-
boxv: "│",
|
|
26538
|
-
boxvH: "╪",
|
|
26539
|
-
boxvL: "╡",
|
|
26540
|
-
boxvR: "╞",
|
|
26541
|
-
boxvh: "┼",
|
|
26542
|
-
boxvl: "┤",
|
|
26543
|
-
boxvr: "├",
|
|
26544
|
-
bprime: "‵",
|
|
26545
|
-
breve: "˘",
|
|
26546
|
-
brvbar: "¦",
|
|
26547
|
-
bscr: "𝒷",
|
|
26548
|
-
bsemi: "⁏",
|
|
26549
|
-
bsim: "∽",
|
|
26550
|
-
bsime: "⋍",
|
|
26551
|
-
bsol: "\\",
|
|
26552
|
-
bsolb: "⧅",
|
|
26553
|
-
bsolhsub: "⟈",
|
|
26554
|
-
bull: "•",
|
|
26555
|
-
bullet: "•",
|
|
26556
|
-
bump: "≎",
|
|
26557
|
-
bumpE: "⪮",
|
|
26558
|
-
bumpe: "≏",
|
|
26559
|
-
bumpeq: "≏",
|
|
26560
|
-
cacute: "ć",
|
|
26561
|
-
cap: "∩",
|
|
26562
|
-
capand: "⩄",
|
|
26563
|
-
capbrcup: "⩉",
|
|
26564
|
-
capcap: "⩋",
|
|
26565
|
-
capcup: "⩇",
|
|
26566
|
-
capdot: "⩀",
|
|
26567
|
-
caps: "∩︀",
|
|
26568
|
-
caret: "⁁",
|
|
26569
|
-
caron: "ˇ",
|
|
26570
|
-
ccaps: "⩍",
|
|
26571
|
-
ccaron: "č",
|
|
26572
|
-
ccedil: "ç",
|
|
26573
|
-
ccirc: "ĉ",
|
|
26574
|
-
ccups: "⩌",
|
|
26575
|
-
ccupssm: "⩐",
|
|
26576
|
-
cdot: "ċ",
|
|
26577
|
-
cedil: "¸",
|
|
26578
|
-
cemptyv: "⦲",
|
|
26579
|
-
cent: "¢",
|
|
26580
|
-
centerdot: "·",
|
|
26581
|
-
cfr: "𝔠",
|
|
26582
|
-
chcy: "ч",
|
|
26583
|
-
check: "✓",
|
|
26584
|
-
checkmark: "✓",
|
|
26585
|
-
chi: "χ",
|
|
26586
|
-
cir: "○",
|
|
26587
|
-
cirE: "⧃",
|
|
26588
|
-
circ: "ˆ",
|
|
26589
|
-
circeq: "≗",
|
|
26590
|
-
circlearrowleft: "↺",
|
|
26591
|
-
circlearrowright: "↻",
|
|
26592
|
-
circledR: "®",
|
|
26593
|
-
circledS: "Ⓢ",
|
|
26594
|
-
circledast: "⊛",
|
|
26595
|
-
circledcirc: "⊚",
|
|
26596
|
-
circleddash: "⊝",
|
|
26597
|
-
cire: "≗",
|
|
26598
|
-
cirfnint: "⨐",
|
|
26599
|
-
cirmid: "⫯",
|
|
26600
|
-
cirscir: "⧂",
|
|
26601
|
-
clubs: "♣",
|
|
26602
|
-
clubsuit: "♣",
|
|
26603
|
-
colon: ":",
|
|
26604
|
-
colone: "≔",
|
|
26605
|
-
coloneq: "≔",
|
|
26606
|
-
comma: ",",
|
|
26607
|
-
commat: "@",
|
|
26608
|
-
comp: "∁",
|
|
26609
|
-
compfn: "∘",
|
|
26610
|
-
complement: "∁",
|
|
26611
|
-
complexes: "ℂ",
|
|
26612
|
-
cong: "≅",
|
|
26613
|
-
congdot: "⩭",
|
|
26614
|
-
conint: "∮",
|
|
26615
|
-
copf: "𝕔",
|
|
26616
|
-
coprod: "∐",
|
|
26617
|
-
copy: "©",
|
|
26618
|
-
copysr: "℗",
|
|
26619
|
-
crarr: "↵",
|
|
26620
|
-
cross: "✗",
|
|
26621
|
-
cscr: "𝒸",
|
|
26622
|
-
csub: "⫏",
|
|
26623
|
-
csube: "⫑",
|
|
26624
|
-
csup: "⫐",
|
|
26625
|
-
csupe: "⫒",
|
|
26626
|
-
ctdot: "⋯",
|
|
26627
|
-
cudarrl: "⤸",
|
|
26628
|
-
cudarrr: "⤵",
|
|
26629
|
-
cuepr: "⋞",
|
|
26630
|
-
cuesc: "⋟",
|
|
26631
|
-
cularr: "↶",
|
|
26632
|
-
cularrp: "⤽",
|
|
26633
|
-
cup: "∪",
|
|
26634
|
-
cupbrcap: "⩈",
|
|
26635
|
-
cupcap: "⩆",
|
|
26636
|
-
cupcup: "⩊",
|
|
26637
|
-
cupdot: "⊍",
|
|
26638
|
-
cupor: "⩅",
|
|
26639
|
-
cups: "∪︀",
|
|
26640
|
-
curarr: "↷",
|
|
26641
|
-
curarrm: "⤼",
|
|
26642
|
-
curlyeqprec: "⋞",
|
|
26643
|
-
curlyeqsucc: "⋟",
|
|
26644
|
-
curlyvee: "⋎",
|
|
26645
|
-
curlywedge: "⋏",
|
|
26646
|
-
curren: "¤",
|
|
26647
|
-
curvearrowleft: "↶",
|
|
26648
|
-
curvearrowright: "↷",
|
|
26649
|
-
cuvee: "⋎",
|
|
26650
|
-
cuwed: "⋏",
|
|
26651
|
-
cwconint: "∲",
|
|
26652
|
-
cwint: "∱",
|
|
26653
|
-
cylcty: "⌭",
|
|
26654
|
-
dArr: "⇓",
|
|
26655
|
-
dHar: "⥥",
|
|
26656
|
-
dagger: "†",
|
|
26657
|
-
daleth: "ℸ",
|
|
26658
|
-
darr: "↓",
|
|
26659
|
-
dash: "‐",
|
|
26660
|
-
dashv: "⊣",
|
|
26661
|
-
dbkarow: "⤏",
|
|
26662
|
-
dblac: "˝",
|
|
26663
|
-
dcaron: "ď",
|
|
26664
|
-
dcy: "д",
|
|
26665
|
-
dd: "ⅆ",
|
|
26666
|
-
ddagger: "‡",
|
|
26667
|
-
ddarr: "⇊",
|
|
26668
|
-
ddotseq: "⩷",
|
|
26669
|
-
deg: "°",
|
|
26670
|
-
delta: "δ",
|
|
26671
|
-
demptyv: "⦱",
|
|
26672
|
-
dfisht: "⥿",
|
|
26673
|
-
dfr: "𝔡",
|
|
26674
|
-
dharl: "⇃",
|
|
26675
|
-
dharr: "⇂",
|
|
26676
|
-
diam: "⋄",
|
|
26677
|
-
diamond: "⋄",
|
|
26678
|
-
diamondsuit: "♦",
|
|
26679
|
-
diams: "♦",
|
|
26680
|
-
die: "¨",
|
|
26681
|
-
digamma: "ϝ",
|
|
26682
|
-
disin: "⋲",
|
|
26683
|
-
div: "÷",
|
|
26684
|
-
divide: "÷",
|
|
26685
|
-
divideontimes: "⋇",
|
|
26686
|
-
divonx: "⋇",
|
|
26687
|
-
djcy: "ђ",
|
|
26688
|
-
dlcorn: "⌞",
|
|
26689
|
-
dlcrop: "⌍",
|
|
26690
|
-
dollar: "$",
|
|
26691
|
-
dopf: "𝕕",
|
|
26692
|
-
dot: "˙",
|
|
26693
|
-
doteq: "≐",
|
|
26694
|
-
doteqdot: "≑",
|
|
26695
|
-
dotminus: "∸",
|
|
26696
|
-
dotplus: "∔",
|
|
26697
|
-
dotsquare: "⊡",
|
|
26698
|
-
doublebarwedge: "⌆",
|
|
26699
|
-
downarrow: "↓",
|
|
26700
|
-
downdownarrows: "⇊",
|
|
26701
|
-
downharpoonleft: "⇃",
|
|
26702
|
-
downharpoonright: "⇂",
|
|
26703
|
-
drbkarow: "⤐",
|
|
26704
|
-
drcorn: "⌟",
|
|
26705
|
-
drcrop: "⌌",
|
|
26706
|
-
dscr: "𝒹",
|
|
26707
|
-
dscy: "ѕ",
|
|
26708
|
-
dsol: "⧶",
|
|
26709
|
-
dstrok: "đ",
|
|
26710
|
-
dtdot: "⋱",
|
|
26711
|
-
dtri: "▿",
|
|
26712
|
-
dtrif: "▾",
|
|
26713
|
-
duarr: "⇵",
|
|
26714
|
-
duhar: "⥯",
|
|
26715
|
-
dwangle: "⦦",
|
|
26716
|
-
dzcy: "џ",
|
|
26717
|
-
dzigrarr: "⟿",
|
|
26718
|
-
eDDot: "⩷",
|
|
26719
|
-
eDot: "≑",
|
|
26720
|
-
eacute: "é",
|
|
26721
|
-
easter: "⩮",
|
|
26722
|
-
ecaron: "ě",
|
|
26723
|
-
ecir: "≖",
|
|
26724
|
-
ecirc: "ê",
|
|
26725
|
-
ecolon: "≕",
|
|
26726
|
-
ecy: "э",
|
|
26727
|
-
edot: "ė",
|
|
26728
|
-
ee: "ⅇ",
|
|
26729
|
-
efDot: "≒",
|
|
26730
|
-
efr: "𝔢",
|
|
26731
|
-
eg: "⪚",
|
|
26732
|
-
egrave: "è",
|
|
26733
|
-
egs: "⪖",
|
|
26734
|
-
egsdot: "⪘",
|
|
26735
|
-
el: "⪙",
|
|
26736
|
-
elinters: "⏧",
|
|
26737
|
-
ell: "ℓ",
|
|
26738
|
-
els: "⪕",
|
|
26739
|
-
elsdot: "⪗",
|
|
26740
|
-
emacr: "ē",
|
|
26741
|
-
empty: "∅",
|
|
26742
|
-
emptyset: "∅",
|
|
26743
|
-
emptyv: "∅",
|
|
26744
|
-
emsp13: " ",
|
|
26745
|
-
emsp14: " ",
|
|
26746
|
-
emsp: " ",
|
|
26747
|
-
eng: "ŋ",
|
|
26748
|
-
ensp: " ",
|
|
26749
|
-
eogon: "ę",
|
|
26750
|
-
eopf: "𝕖",
|
|
26751
|
-
epar: "⋕",
|
|
26752
|
-
eparsl: "⧣",
|
|
26753
|
-
eplus: "⩱",
|
|
26754
|
-
epsi: "ε",
|
|
26755
|
-
epsilon: "ε",
|
|
26756
|
-
epsiv: "ϵ",
|
|
26757
|
-
eqcirc: "≖",
|
|
26758
|
-
eqcolon: "≕",
|
|
26759
|
-
eqsim: "≂",
|
|
26760
|
-
eqslantgtr: "⪖",
|
|
26761
|
-
eqslantless: "⪕",
|
|
26762
|
-
equals: "=",
|
|
26763
|
-
equest: "≟",
|
|
26764
|
-
equiv: "≡",
|
|
26765
|
-
equivDD: "⩸",
|
|
26766
|
-
eqvparsl: "⧥",
|
|
26767
|
-
erDot: "≓",
|
|
26768
|
-
erarr: "⥱",
|
|
26769
|
-
escr: "ℯ",
|
|
26770
|
-
esdot: "≐",
|
|
26771
|
-
esim: "≂",
|
|
26772
|
-
eta: "η",
|
|
26773
|
-
eth: "ð",
|
|
26774
|
-
euml: "ë",
|
|
26775
|
-
euro: "€",
|
|
26776
|
-
excl: "!",
|
|
26777
|
-
exist: "∃",
|
|
26778
|
-
expectation: "ℰ",
|
|
26779
|
-
exponentiale: "ⅇ",
|
|
26780
|
-
fallingdotseq: "≒",
|
|
26781
|
-
fcy: "ф",
|
|
26782
|
-
female: "♀",
|
|
26783
|
-
ffilig: "ffi",
|
|
26784
|
-
fflig: "ff",
|
|
26785
|
-
ffllig: "ffl",
|
|
26786
|
-
ffr: "𝔣",
|
|
26787
|
-
filig: "fi",
|
|
26788
|
-
fjlig: "fj",
|
|
26789
|
-
flat: "♭",
|
|
26790
|
-
fllig: "fl",
|
|
26791
|
-
fltns: "▱",
|
|
26792
|
-
fnof: "ƒ",
|
|
26793
|
-
fopf: "𝕗",
|
|
26794
|
-
forall: "∀",
|
|
26795
|
-
fork: "⋔",
|
|
26796
|
-
forkv: "⫙",
|
|
26797
|
-
fpartint: "⨍",
|
|
26798
|
-
frac12: "½",
|
|
26799
|
-
frac13: "⅓",
|
|
26800
|
-
frac14: "¼",
|
|
26801
|
-
frac15: "⅕",
|
|
26802
|
-
frac16: "⅙",
|
|
26803
|
-
frac18: "⅛",
|
|
26804
|
-
frac23: "⅔",
|
|
26805
|
-
frac25: "⅖",
|
|
26806
|
-
frac34: "¾",
|
|
26807
|
-
frac35: "⅗",
|
|
26808
|
-
frac38: "⅜",
|
|
26809
|
-
frac45: "⅘",
|
|
26810
|
-
frac56: "⅚",
|
|
26811
|
-
frac58: "⅝",
|
|
26812
|
-
frac78: "⅞",
|
|
26813
|
-
frasl: "⁄",
|
|
26814
|
-
frown: "⌢",
|
|
26815
|
-
fscr: "𝒻",
|
|
26816
|
-
gE: "≧",
|
|
26817
|
-
gEl: "⪌",
|
|
26818
|
-
gacute: "ǵ",
|
|
26819
|
-
gamma: "γ",
|
|
26820
|
-
gammad: "ϝ",
|
|
26821
|
-
gap: "⪆",
|
|
26822
|
-
gbreve: "ğ",
|
|
26823
|
-
gcirc: "ĝ",
|
|
26824
|
-
gcy: "г",
|
|
26825
|
-
gdot: "ġ",
|
|
26826
|
-
ge: "≥",
|
|
26827
|
-
gel: "⋛",
|
|
26828
|
-
geq: "≥",
|
|
26829
|
-
geqq: "≧",
|
|
26830
|
-
geqslant: "⩾",
|
|
26831
|
-
ges: "⩾",
|
|
26832
|
-
gescc: "⪩",
|
|
26833
|
-
gesdot: "⪀",
|
|
26834
|
-
gesdoto: "⪂",
|
|
26835
|
-
gesdotol: "⪄",
|
|
26836
|
-
gesl: "⋛︀",
|
|
26837
|
-
gesles: "⪔",
|
|
26838
|
-
gfr: "𝔤",
|
|
26839
|
-
gg: "≫",
|
|
26840
|
-
ggg: "⋙",
|
|
26841
|
-
gimel: "ℷ",
|
|
26842
|
-
gjcy: "ѓ",
|
|
26843
|
-
gl: "≷",
|
|
26844
|
-
glE: "⪒",
|
|
26845
|
-
gla: "⪥",
|
|
26846
|
-
glj: "⪤",
|
|
26847
|
-
gnE: "≩",
|
|
26848
|
-
gnap: "⪊",
|
|
26849
|
-
gnapprox: "⪊",
|
|
26850
|
-
gne: "⪈",
|
|
26851
|
-
gneq: "⪈",
|
|
26852
|
-
gneqq: "≩",
|
|
26853
|
-
gnsim: "⋧",
|
|
26854
|
-
gopf: "𝕘",
|
|
26855
|
-
grave: "`",
|
|
26856
|
-
gscr: "ℊ",
|
|
26857
|
-
gsim: "≳",
|
|
26858
|
-
gsime: "⪎",
|
|
26859
|
-
gsiml: "⪐",
|
|
26860
|
-
gt: ">",
|
|
26861
|
-
gtcc: "⪧",
|
|
26862
|
-
gtcir: "⩺",
|
|
26863
|
-
gtdot: "⋗",
|
|
26864
|
-
gtlPar: "⦕",
|
|
26865
|
-
gtquest: "⩼",
|
|
26866
|
-
gtrapprox: "⪆",
|
|
26867
|
-
gtrarr: "⥸",
|
|
26868
|
-
gtrdot: "⋗",
|
|
26869
|
-
gtreqless: "⋛",
|
|
26870
|
-
gtreqqless: "⪌",
|
|
26871
|
-
gtrless: "≷",
|
|
26872
|
-
gtrsim: "≳",
|
|
26873
|
-
gvertneqq: "≩︀",
|
|
26874
|
-
gvnE: "≩︀",
|
|
26875
|
-
hArr: "⇔",
|
|
26876
|
-
hairsp: " ",
|
|
26877
|
-
half: "½",
|
|
26878
|
-
hamilt: "ℋ",
|
|
26879
|
-
hardcy: "ъ",
|
|
26880
|
-
harr: "↔",
|
|
26881
|
-
harrcir: "⥈",
|
|
26882
|
-
harrw: "↭",
|
|
26883
|
-
hbar: "ℏ",
|
|
26884
|
-
hcirc: "ĥ",
|
|
26885
|
-
hearts: "♥",
|
|
26886
|
-
heartsuit: "♥",
|
|
26887
|
-
hellip: "…",
|
|
26888
|
-
hercon: "⊹",
|
|
26889
|
-
hfr: "𝔥",
|
|
26890
|
-
hksearow: "⤥",
|
|
26891
|
-
hkswarow: "⤦",
|
|
26892
|
-
hoarr: "⇿",
|
|
26893
|
-
homtht: "∻",
|
|
26894
|
-
hookleftarrow: "↩",
|
|
26895
|
-
hookrightarrow: "↪",
|
|
26896
|
-
hopf: "𝕙",
|
|
26897
|
-
horbar: "―",
|
|
26898
|
-
hscr: "𝒽",
|
|
26899
|
-
hslash: "ℏ",
|
|
26900
|
-
hstrok: "ħ",
|
|
26901
|
-
hybull: "⁃",
|
|
26902
|
-
hyphen: "‐",
|
|
26903
|
-
iacute: "í",
|
|
26904
|
-
ic: "",
|
|
26905
|
-
icirc: "î",
|
|
26906
|
-
icy: "и",
|
|
26907
|
-
iecy: "е",
|
|
26908
|
-
iexcl: "¡",
|
|
26909
|
-
iff: "⇔",
|
|
26910
|
-
ifr: "𝔦",
|
|
26911
|
-
igrave: "ì",
|
|
26912
|
-
ii: "ⅈ",
|
|
26913
|
-
iiiint: "⨌",
|
|
26914
|
-
iiint: "∭",
|
|
26915
|
-
iinfin: "⧜",
|
|
26916
|
-
iiota: "℩",
|
|
26917
|
-
ijlig: "ij",
|
|
26918
|
-
imacr: "ī",
|
|
26919
|
-
image: "ℑ",
|
|
26920
|
-
imagline: "ℐ",
|
|
26921
|
-
imagpart: "ℑ",
|
|
26922
|
-
imath: "ı",
|
|
26923
|
-
imof: "⊷",
|
|
26924
|
-
imped: "Ƶ",
|
|
26925
|
-
in: "∈",
|
|
26926
|
-
incare: "℅",
|
|
26927
|
-
infin: "∞",
|
|
26928
|
-
infintie: "⧝",
|
|
26929
|
-
inodot: "ı",
|
|
26930
|
-
int: "∫",
|
|
26931
|
-
intcal: "⊺",
|
|
26932
|
-
integers: "ℤ",
|
|
26933
|
-
intercal: "⊺",
|
|
26934
|
-
intlarhk: "⨗",
|
|
26935
|
-
intprod: "⨼",
|
|
26936
|
-
iocy: "ё",
|
|
26937
|
-
iogon: "į",
|
|
26938
|
-
iopf: "𝕚",
|
|
26939
|
-
iota: "ι",
|
|
26940
|
-
iprod: "⨼",
|
|
26941
|
-
iquest: "¿",
|
|
26942
|
-
iscr: "𝒾",
|
|
26943
|
-
isin: "∈",
|
|
26944
|
-
isinE: "⋹",
|
|
26945
|
-
isindot: "⋵",
|
|
26946
|
-
isins: "⋴",
|
|
26947
|
-
isinsv: "⋳",
|
|
26948
|
-
isinv: "∈",
|
|
26949
|
-
it: "",
|
|
26950
|
-
itilde: "ĩ",
|
|
26951
|
-
iukcy: "і",
|
|
26952
|
-
iuml: "ï",
|
|
26953
|
-
jcirc: "ĵ",
|
|
26954
|
-
jcy: "й",
|
|
26955
|
-
jfr: "𝔧",
|
|
26956
|
-
jmath: "ȷ",
|
|
26957
|
-
jopf: "𝕛",
|
|
26958
|
-
jscr: "𝒿",
|
|
26959
|
-
jsercy: "ј",
|
|
26960
|
-
jukcy: "є",
|
|
26961
|
-
kappa: "κ",
|
|
26962
|
-
kappav: "ϰ",
|
|
26963
|
-
kcedil: "ķ",
|
|
26964
|
-
kcy: "к",
|
|
26965
|
-
kfr: "𝔨",
|
|
26966
|
-
kgreen: "ĸ",
|
|
26967
|
-
khcy: "х",
|
|
26968
|
-
kjcy: "ќ",
|
|
26969
|
-
kopf: "𝕜",
|
|
26970
|
-
kscr: "𝓀",
|
|
26971
|
-
lAarr: "⇚",
|
|
26972
|
-
lArr: "⇐",
|
|
26973
|
-
lAtail: "⤛",
|
|
26974
|
-
lBarr: "⤎",
|
|
26975
|
-
lE: "≦",
|
|
26976
|
-
lEg: "⪋",
|
|
26977
|
-
lHar: "⥢",
|
|
26978
|
-
lacute: "ĺ",
|
|
26979
|
-
laemptyv: "⦴",
|
|
26980
|
-
lagran: "ℒ",
|
|
26981
|
-
lambda: "λ",
|
|
26982
|
-
lang: "⟨",
|
|
26983
|
-
langd: "⦑",
|
|
26984
|
-
langle: "⟨",
|
|
26985
|
-
lap: "⪅",
|
|
26986
|
-
laquo: "«",
|
|
26987
|
-
larr: "←",
|
|
26988
|
-
larrb: "⇤",
|
|
26989
|
-
larrbfs: "⤟",
|
|
26990
|
-
larrfs: "⤝",
|
|
26991
|
-
larrhk: "↩",
|
|
26992
|
-
larrlp: "↫",
|
|
26993
|
-
larrpl: "⤹",
|
|
26994
|
-
larrsim: "⥳",
|
|
26995
|
-
larrtl: "↢",
|
|
26996
|
-
lat: "⪫",
|
|
26997
|
-
latail: "⤙",
|
|
26998
|
-
late: "⪭",
|
|
26999
|
-
lates: "⪭︀",
|
|
27000
|
-
lbarr: "⤌",
|
|
27001
|
-
lbbrk: "❲",
|
|
27002
|
-
lbrace: "{",
|
|
27003
|
-
lbrack: "[",
|
|
27004
|
-
lbrke: "⦋",
|
|
27005
|
-
lbrksld: "⦏",
|
|
27006
|
-
lbrkslu: "⦍",
|
|
27007
|
-
lcaron: "ľ",
|
|
27008
|
-
lcedil: "ļ",
|
|
27009
|
-
lceil: "⌈",
|
|
27010
|
-
lcub: "{",
|
|
27011
|
-
lcy: "л",
|
|
27012
|
-
ldca: "⤶",
|
|
27013
|
-
ldquo: "“",
|
|
27014
|
-
ldquor: "„",
|
|
27015
|
-
ldrdhar: "⥧",
|
|
27016
|
-
ldrushar: "⥋",
|
|
27017
|
-
ldsh: "↲",
|
|
27018
|
-
le: "≤",
|
|
27019
|
-
leftarrow: "←",
|
|
27020
|
-
leftarrowtail: "↢",
|
|
27021
|
-
leftharpoondown: "↽",
|
|
27022
|
-
leftharpoonup: "↼",
|
|
27023
|
-
leftleftarrows: "⇇",
|
|
27024
|
-
leftrightarrow: "↔",
|
|
27025
|
-
leftrightarrows: "⇆",
|
|
27026
|
-
leftrightharpoons: "⇋",
|
|
27027
|
-
leftrightsquigarrow: "↭",
|
|
27028
|
-
leftthreetimes: "⋋",
|
|
27029
|
-
leg: "⋚",
|
|
27030
|
-
leq: "≤",
|
|
27031
|
-
leqq: "≦",
|
|
27032
|
-
leqslant: "⩽",
|
|
27033
|
-
les: "⩽",
|
|
27034
|
-
lescc: "⪨",
|
|
27035
|
-
lesdot: "⩿",
|
|
27036
|
-
lesdoto: "⪁",
|
|
27037
|
-
lesdotor: "⪃",
|
|
27038
|
-
lesg: "⋚︀",
|
|
27039
|
-
lesges: "⪓",
|
|
27040
|
-
lessapprox: "⪅",
|
|
27041
|
-
lessdot: "⋖",
|
|
27042
|
-
lesseqgtr: "⋚",
|
|
27043
|
-
lesseqqgtr: "⪋",
|
|
27044
|
-
lessgtr: "≶",
|
|
27045
|
-
lesssim: "≲",
|
|
27046
|
-
lfisht: "⥼",
|
|
27047
|
-
lfloor: "⌊",
|
|
27048
|
-
lfr: "𝔩",
|
|
27049
|
-
lg: "≶",
|
|
27050
|
-
lgE: "⪑",
|
|
27051
|
-
lhard: "↽",
|
|
27052
|
-
lharu: "↼",
|
|
27053
|
-
lharul: "⥪",
|
|
27054
|
-
lhblk: "▄",
|
|
27055
|
-
ljcy: "љ",
|
|
27056
|
-
ll: "≪",
|
|
27057
|
-
llarr: "⇇",
|
|
27058
|
-
llcorner: "⌞",
|
|
27059
|
-
llhard: "⥫",
|
|
27060
|
-
lltri: "◺",
|
|
27061
|
-
lmidot: "ŀ",
|
|
27062
|
-
lmoust: "⎰",
|
|
27063
|
-
lmoustache: "⎰",
|
|
27064
|
-
lnE: "≨",
|
|
27065
|
-
lnap: "⪉",
|
|
27066
|
-
lnapprox: "⪉",
|
|
27067
|
-
lne: "⪇",
|
|
27068
|
-
lneq: "⪇",
|
|
27069
|
-
lneqq: "≨",
|
|
27070
|
-
lnsim: "⋦",
|
|
27071
|
-
loang: "⟬",
|
|
27072
|
-
loarr: "⇽",
|
|
27073
|
-
lobrk: "⟦",
|
|
27074
|
-
longleftarrow: "⟵",
|
|
27075
|
-
longleftrightarrow: "⟷",
|
|
27076
|
-
longmapsto: "⟼",
|
|
27077
|
-
longrightarrow: "⟶",
|
|
27078
|
-
looparrowleft: "↫",
|
|
27079
|
-
looparrowright: "↬",
|
|
27080
|
-
lopar: "⦅",
|
|
27081
|
-
lopf: "𝕝",
|
|
27082
|
-
loplus: "⨭",
|
|
27083
|
-
lotimes: "⨴",
|
|
27084
|
-
lowast: "∗",
|
|
27085
|
-
lowbar: "_",
|
|
27086
|
-
loz: "◊",
|
|
27087
|
-
lozenge: "◊",
|
|
27088
|
-
lozf: "⧫",
|
|
27089
|
-
lpar: "(",
|
|
27090
|
-
lparlt: "⦓",
|
|
27091
|
-
lrarr: "⇆",
|
|
27092
|
-
lrcorner: "⌟",
|
|
27093
|
-
lrhar: "⇋",
|
|
27094
|
-
lrhard: "⥭",
|
|
27095
|
-
lrm: "",
|
|
27096
|
-
lrtri: "⊿",
|
|
27097
|
-
lsaquo: "‹",
|
|
27098
|
-
lscr: "𝓁",
|
|
27099
|
-
lsh: "↰",
|
|
27100
|
-
lsim: "≲",
|
|
27101
|
-
lsime: "⪍",
|
|
27102
|
-
lsimg: "⪏",
|
|
27103
|
-
lsqb: "[",
|
|
27104
|
-
lsquo: "‘",
|
|
27105
|
-
lsquor: "‚",
|
|
27106
|
-
lstrok: "ł",
|
|
27107
|
-
lt: "<",
|
|
27108
|
-
ltcc: "⪦",
|
|
27109
|
-
ltcir: "⩹",
|
|
27110
|
-
ltdot: "⋖",
|
|
27111
|
-
lthree: "⋋",
|
|
27112
|
-
ltimes: "⋉",
|
|
27113
|
-
ltlarr: "⥶",
|
|
27114
|
-
ltquest: "⩻",
|
|
27115
|
-
ltrPar: "⦖",
|
|
27116
|
-
ltri: "◃",
|
|
27117
|
-
ltrie: "⊴",
|
|
27118
|
-
ltrif: "◂",
|
|
27119
|
-
lurdshar: "⥊",
|
|
27120
|
-
luruhar: "⥦",
|
|
27121
|
-
lvertneqq: "≨︀",
|
|
27122
|
-
lvnE: "≨︀",
|
|
27123
|
-
mDDot: "∺",
|
|
27124
|
-
macr: "¯",
|
|
27125
|
-
male: "♂",
|
|
27126
|
-
malt: "✠",
|
|
27127
|
-
maltese: "✠",
|
|
27128
|
-
map: "↦",
|
|
27129
|
-
mapsto: "↦",
|
|
27130
|
-
mapstodown: "↧",
|
|
27131
|
-
mapstoleft: "↤",
|
|
27132
|
-
mapstoup: "↥",
|
|
27133
|
-
marker: "▮",
|
|
27134
|
-
mcomma: "⨩",
|
|
27135
|
-
mcy: "м",
|
|
27136
|
-
mdash: "—",
|
|
27137
|
-
measuredangle: "∡",
|
|
27138
|
-
mfr: "𝔪",
|
|
27139
|
-
mho: "℧",
|
|
27140
|
-
micro: "µ",
|
|
27141
|
-
mid: "∣",
|
|
27142
|
-
midast: "*",
|
|
27143
|
-
midcir: "⫰",
|
|
27144
|
-
middot: "·",
|
|
27145
|
-
minus: "−",
|
|
27146
|
-
minusb: "⊟",
|
|
27147
|
-
minusd: "∸",
|
|
27148
|
-
minusdu: "⨪",
|
|
27149
|
-
mlcp: "⫛",
|
|
27150
|
-
mldr: "…",
|
|
27151
|
-
mnplus: "∓",
|
|
27152
|
-
models: "⊧",
|
|
27153
|
-
mopf: "𝕞",
|
|
27154
|
-
mp: "∓",
|
|
27155
|
-
mscr: "𝓂",
|
|
27156
|
-
mstpos: "∾",
|
|
27157
|
-
mu: "μ",
|
|
27158
|
-
multimap: "⊸",
|
|
27159
|
-
mumap: "⊸",
|
|
27160
|
-
nGg: "⋙̸",
|
|
27161
|
-
nGt: "≫⃒",
|
|
27162
|
-
nGtv: "≫̸",
|
|
27163
|
-
nLeftarrow: "⇍",
|
|
27164
|
-
nLeftrightarrow: "⇎",
|
|
27165
|
-
nLl: "⋘̸",
|
|
27166
|
-
nLt: "≪⃒",
|
|
27167
|
-
nLtv: "≪̸",
|
|
27168
|
-
nRightarrow: "⇏",
|
|
27169
|
-
nVDash: "⊯",
|
|
27170
|
-
nVdash: "⊮",
|
|
27171
|
-
nabla: "∇",
|
|
27172
|
-
nacute: "ń",
|
|
27173
|
-
nang: "∠⃒",
|
|
27174
|
-
nap: "≉",
|
|
27175
|
-
napE: "⩰̸",
|
|
27176
|
-
napid: "≋̸",
|
|
27177
|
-
napos: "ʼn",
|
|
27178
|
-
napprox: "≉",
|
|
27179
|
-
natur: "♮",
|
|
27180
|
-
natural: "♮",
|
|
27181
|
-
naturals: "ℕ",
|
|
27182
|
-
nbsp: "\xA0",
|
|
27183
|
-
nbump: "≎̸",
|
|
27184
|
-
nbumpe: "≏̸",
|
|
27185
|
-
ncap: "⩃",
|
|
27186
|
-
ncaron: "ň",
|
|
27187
|
-
ncedil: "ņ",
|
|
27188
|
-
ncong: "≇",
|
|
27189
|
-
ncongdot: "⩭̸",
|
|
27190
|
-
ncup: "⩂",
|
|
27191
|
-
ncy: "н",
|
|
27192
|
-
ndash: "–",
|
|
27193
|
-
ne: "≠",
|
|
27194
|
-
neArr: "⇗",
|
|
27195
|
-
nearhk: "⤤",
|
|
27196
|
-
nearr: "↗",
|
|
27197
|
-
nearrow: "↗",
|
|
27198
|
-
nedot: "≐̸",
|
|
27199
|
-
nequiv: "≢",
|
|
27200
|
-
nesear: "⤨",
|
|
27201
|
-
nesim: "≂̸",
|
|
27202
|
-
nexist: "∄",
|
|
27203
|
-
nexists: "∄",
|
|
27204
|
-
nfr: "𝔫",
|
|
27205
|
-
ngE: "≧̸",
|
|
27206
|
-
nge: "≱",
|
|
27207
|
-
ngeq: "≱",
|
|
27208
|
-
ngeqq: "≧̸",
|
|
27209
|
-
ngeqslant: "⩾̸",
|
|
27210
|
-
nges: "⩾̸",
|
|
27211
|
-
ngsim: "≵",
|
|
27212
|
-
ngt: "≯",
|
|
27213
|
-
ngtr: "≯",
|
|
27214
|
-
nhArr: "⇎",
|
|
27215
|
-
nharr: "↮",
|
|
27216
|
-
nhpar: "⫲",
|
|
27217
|
-
ni: "∋",
|
|
27218
|
-
nis: "⋼",
|
|
27219
|
-
nisd: "⋺",
|
|
27220
|
-
niv: "∋",
|
|
27221
|
-
njcy: "њ",
|
|
27222
|
-
nlArr: "⇍",
|
|
27223
|
-
nlE: "≦̸",
|
|
27224
|
-
nlarr: "↚",
|
|
27225
|
-
nldr: "‥",
|
|
27226
|
-
nle: "≰",
|
|
27227
|
-
nleftarrow: "↚",
|
|
27228
|
-
nleftrightarrow: "↮",
|
|
27229
|
-
nleq: "≰",
|
|
27230
|
-
nleqq: "≦̸",
|
|
27231
|
-
nleqslant: "⩽̸",
|
|
27232
|
-
nles: "⩽̸",
|
|
27233
|
-
nless: "≮",
|
|
27234
|
-
nlsim: "≴",
|
|
27235
|
-
nlt: "≮",
|
|
27236
|
-
nltri: "⋪",
|
|
27237
|
-
nltrie: "⋬",
|
|
27238
|
-
nmid: "∤",
|
|
27239
|
-
nopf: "𝕟",
|
|
27240
|
-
not: "¬",
|
|
27241
|
-
notin: "∉",
|
|
27242
|
-
notinE: "⋹̸",
|
|
27243
|
-
notindot: "⋵̸",
|
|
27244
|
-
notinva: "∉",
|
|
27245
|
-
notinvb: "⋷",
|
|
27246
|
-
notinvc: "⋶",
|
|
27247
|
-
notni: "∌",
|
|
27248
|
-
notniva: "∌",
|
|
27249
|
-
notnivb: "⋾",
|
|
27250
|
-
notnivc: "⋽",
|
|
27251
|
-
npar: "∦",
|
|
27252
|
-
nparallel: "∦",
|
|
27253
|
-
nparsl: "⫽⃥",
|
|
27254
|
-
npart: "∂̸",
|
|
27255
|
-
npolint: "⨔",
|
|
27256
|
-
npr: "⊀",
|
|
27257
|
-
nprcue: "⋠",
|
|
27258
|
-
npre: "⪯̸",
|
|
27259
|
-
nprec: "⊀",
|
|
27260
|
-
npreceq: "⪯̸",
|
|
27261
|
-
nrArr: "⇏",
|
|
27262
|
-
nrarr: "↛",
|
|
27263
|
-
nrarrc: "⤳̸",
|
|
27264
|
-
nrarrw: "↝̸",
|
|
27265
|
-
nrightarrow: "↛",
|
|
27266
|
-
nrtri: "⋫",
|
|
27267
|
-
nrtrie: "⋭",
|
|
27268
|
-
nsc: "⊁",
|
|
27269
|
-
nsccue: "⋡",
|
|
27270
|
-
nsce: "⪰̸",
|
|
27271
|
-
nscr: "𝓃",
|
|
27272
|
-
nshortmid: "∤",
|
|
27273
|
-
nshortparallel: "∦",
|
|
27274
|
-
nsim: "≁",
|
|
27275
|
-
nsime: "≄",
|
|
27276
|
-
nsimeq: "≄",
|
|
27277
|
-
nsmid: "∤",
|
|
27278
|
-
nspar: "∦",
|
|
27279
|
-
nsqsube: "⋢",
|
|
27280
|
-
nsqsupe: "⋣",
|
|
27281
|
-
nsub: "⊄",
|
|
27282
|
-
nsubE: "⫅̸",
|
|
27283
|
-
nsube: "⊈",
|
|
27284
|
-
nsubset: "⊂⃒",
|
|
27285
|
-
nsubseteq: "⊈",
|
|
27286
|
-
nsubseteqq: "⫅̸",
|
|
27287
|
-
nsucc: "⊁",
|
|
27288
|
-
nsucceq: "⪰̸",
|
|
27289
|
-
nsup: "⊅",
|
|
27290
|
-
nsupE: "⫆̸",
|
|
27291
|
-
nsupe: "⊉",
|
|
27292
|
-
nsupset: "⊃⃒",
|
|
27293
|
-
nsupseteq: "⊉",
|
|
27294
|
-
nsupseteqq: "⫆̸",
|
|
27295
|
-
ntgl: "≹",
|
|
27296
|
-
ntilde: "ñ",
|
|
27297
|
-
ntlg: "≸",
|
|
27298
|
-
ntriangleleft: "⋪",
|
|
27299
|
-
ntrianglelefteq: "⋬",
|
|
27300
|
-
ntriangleright: "⋫",
|
|
27301
|
-
ntrianglerighteq: "⋭",
|
|
27302
|
-
nu: "ν",
|
|
27303
|
-
num: "#",
|
|
27304
|
-
numero: "№",
|
|
27305
|
-
numsp: " ",
|
|
27306
|
-
nvDash: "⊭",
|
|
27307
|
-
nvHarr: "⤄",
|
|
27308
|
-
nvap: "≍⃒",
|
|
27309
|
-
nvdash: "⊬",
|
|
27310
|
-
nvge: "≥⃒",
|
|
27311
|
-
nvgt: ">⃒",
|
|
27312
|
-
nvinfin: "⧞",
|
|
27313
|
-
nvlArr: "⤂",
|
|
27314
|
-
nvle: "≤⃒",
|
|
27315
|
-
nvlt: "<⃒",
|
|
27316
|
-
nvltrie: "⊴⃒",
|
|
27317
|
-
nvrArr: "⤃",
|
|
27318
|
-
nvrtrie: "⊵⃒",
|
|
27319
|
-
nvsim: "∼⃒",
|
|
27320
|
-
nwArr: "⇖",
|
|
27321
|
-
nwarhk: "⤣",
|
|
27322
|
-
nwarr: "↖",
|
|
27323
|
-
nwarrow: "↖",
|
|
27324
|
-
nwnear: "⤧",
|
|
27325
|
-
oS: "Ⓢ",
|
|
27326
|
-
oacute: "ó",
|
|
27327
|
-
oast: "⊛",
|
|
27328
|
-
ocir: "⊚",
|
|
27329
|
-
ocirc: "ô",
|
|
27330
|
-
ocy: "о",
|
|
27331
|
-
odash: "⊝",
|
|
27332
|
-
odblac: "ő",
|
|
27333
|
-
odiv: "⨸",
|
|
27334
|
-
odot: "⊙",
|
|
27335
|
-
odsold: "⦼",
|
|
27336
|
-
oelig: "œ",
|
|
27337
|
-
ofcir: "⦿",
|
|
27338
|
-
ofr: "𝔬",
|
|
27339
|
-
ogon: "˛",
|
|
27340
|
-
ograve: "ò",
|
|
27341
|
-
ogt: "⧁",
|
|
27342
|
-
ohbar: "⦵",
|
|
27343
|
-
ohm: "Ω",
|
|
27344
|
-
oint: "∮",
|
|
27345
|
-
olarr: "↺",
|
|
27346
|
-
olcir: "⦾",
|
|
27347
|
-
olcross: "⦻",
|
|
27348
|
-
oline: "‾",
|
|
27349
|
-
olt: "⧀",
|
|
27350
|
-
omacr: "ō",
|
|
27351
|
-
omega: "ω",
|
|
27352
|
-
omicron: "ο",
|
|
27353
|
-
omid: "⦶",
|
|
27354
|
-
ominus: "⊖",
|
|
27355
|
-
oopf: "𝕠",
|
|
27356
|
-
opar: "⦷",
|
|
27357
|
-
operp: "⦹",
|
|
27358
|
-
oplus: "⊕",
|
|
27359
|
-
or: "∨",
|
|
27360
|
-
orarr: "↻",
|
|
27361
|
-
ord: "⩝",
|
|
27362
|
-
order: "ℴ",
|
|
27363
|
-
orderof: "ℴ",
|
|
27364
|
-
ordf: "ª",
|
|
27365
|
-
ordm: "º",
|
|
27366
|
-
origof: "⊶",
|
|
27367
|
-
oror: "⩖",
|
|
27368
|
-
orslope: "⩗",
|
|
27369
|
-
orv: "⩛",
|
|
27370
|
-
oscr: "ℴ",
|
|
27371
|
-
oslash: "ø",
|
|
27372
|
-
osol: "⊘",
|
|
27373
|
-
otilde: "õ",
|
|
27374
|
-
otimes: "⊗",
|
|
27375
|
-
otimesas: "⨶",
|
|
27376
|
-
ouml: "ö",
|
|
27377
|
-
ovbar: "⌽",
|
|
27378
|
-
par: "∥",
|
|
27379
|
-
para: "¶",
|
|
27380
|
-
parallel: "∥",
|
|
27381
|
-
parsim: "⫳",
|
|
27382
|
-
parsl: "⫽",
|
|
27383
|
-
part: "∂",
|
|
27384
|
-
pcy: "п",
|
|
27385
|
-
percnt: "%",
|
|
27386
|
-
period: ".",
|
|
27387
|
-
permil: "‰",
|
|
27388
|
-
perp: "⊥",
|
|
27389
|
-
pertenk: "‱",
|
|
27390
|
-
pfr: "𝔭",
|
|
27391
|
-
phi: "φ",
|
|
27392
|
-
phiv: "ϕ",
|
|
27393
|
-
phmmat: "ℳ",
|
|
27394
|
-
phone: "☎",
|
|
27395
|
-
pi: "π",
|
|
27396
|
-
pitchfork: "⋔",
|
|
27397
|
-
piv: "ϖ",
|
|
27398
|
-
planck: "ℏ",
|
|
27399
|
-
planckh: "ℎ",
|
|
27400
|
-
plankv: "ℏ",
|
|
27401
|
-
plus: "+",
|
|
27402
|
-
plusacir: "⨣",
|
|
27403
|
-
plusb: "⊞",
|
|
27404
|
-
pluscir: "⨢",
|
|
27405
|
-
plusdo: "∔",
|
|
27406
|
-
plusdu: "⨥",
|
|
27407
|
-
pluse: "⩲",
|
|
27408
|
-
plusmn: "±",
|
|
27409
|
-
plussim: "⨦",
|
|
27410
|
-
plustwo: "⨧",
|
|
27411
|
-
pm: "±",
|
|
27412
|
-
pointint: "⨕",
|
|
27413
|
-
popf: "𝕡",
|
|
27414
|
-
pound: "£",
|
|
27415
|
-
pr: "≺",
|
|
27416
|
-
prE: "⪳",
|
|
27417
|
-
prap: "⪷",
|
|
27418
|
-
prcue: "≼",
|
|
27419
|
-
pre: "⪯",
|
|
27420
|
-
prec: "≺",
|
|
27421
|
-
precapprox: "⪷",
|
|
27422
|
-
preccurlyeq: "≼",
|
|
27423
|
-
preceq: "⪯",
|
|
27424
|
-
precnapprox: "⪹",
|
|
27425
|
-
precneqq: "⪵",
|
|
27426
|
-
precnsim: "⋨",
|
|
27427
|
-
precsim: "≾",
|
|
27428
|
-
prime: "′",
|
|
27429
|
-
primes: "ℙ",
|
|
27430
|
-
prnE: "⪵",
|
|
27431
|
-
prnap: "⪹",
|
|
27432
|
-
prnsim: "⋨",
|
|
27433
|
-
prod: "∏",
|
|
27434
|
-
profalar: "⌮",
|
|
27435
|
-
profline: "⌒",
|
|
27436
|
-
profsurf: "⌓",
|
|
27437
|
-
prop: "∝",
|
|
27438
|
-
propto: "∝",
|
|
27439
|
-
prsim: "≾",
|
|
27440
|
-
prurel: "⊰",
|
|
27441
|
-
pscr: "𝓅",
|
|
27442
|
-
psi: "ψ",
|
|
27443
|
-
puncsp: " ",
|
|
27444
|
-
qfr: "𝔮",
|
|
27445
|
-
qint: "⨌",
|
|
27446
|
-
qopf: "𝕢",
|
|
27447
|
-
qprime: "⁗",
|
|
27448
|
-
qscr: "𝓆",
|
|
27449
|
-
quaternions: "ℍ",
|
|
27450
|
-
quatint: "⨖",
|
|
27451
|
-
quest: "?",
|
|
27452
|
-
questeq: "≟",
|
|
27453
|
-
quot: "\"",
|
|
27454
|
-
rAarr: "⇛",
|
|
27455
|
-
rArr: "⇒",
|
|
27456
|
-
rAtail: "⤜",
|
|
27457
|
-
rBarr: "⤏",
|
|
27458
|
-
rHar: "⥤",
|
|
27459
|
-
race: "∽̱",
|
|
27460
|
-
racute: "ŕ",
|
|
27461
|
-
radic: "√",
|
|
27462
|
-
raemptyv: "⦳",
|
|
27463
|
-
rang: "⟩",
|
|
27464
|
-
rangd: "⦒",
|
|
27465
|
-
range: "⦥",
|
|
27466
|
-
rangle: "⟩",
|
|
27467
|
-
raquo: "»",
|
|
27468
|
-
rarr: "→",
|
|
27469
|
-
rarrap: "⥵",
|
|
27470
|
-
rarrb: "⇥",
|
|
27471
|
-
rarrbfs: "⤠",
|
|
27472
|
-
rarrc: "⤳",
|
|
27473
|
-
rarrfs: "⤞",
|
|
27474
|
-
rarrhk: "↪",
|
|
27475
|
-
rarrlp: "↬",
|
|
27476
|
-
rarrpl: "⥅",
|
|
27477
|
-
rarrsim: "⥴",
|
|
27478
|
-
rarrtl: "↣",
|
|
27479
|
-
rarrw: "↝",
|
|
27480
|
-
ratail: "⤚",
|
|
27481
|
-
ratio: "∶",
|
|
27482
|
-
rationals: "ℚ",
|
|
27483
|
-
rbarr: "⤍",
|
|
27484
|
-
rbbrk: "❳",
|
|
27485
|
-
rbrace: "}",
|
|
27486
|
-
rbrack: "]",
|
|
27487
|
-
rbrke: "⦌",
|
|
27488
|
-
rbrksld: "⦎",
|
|
27489
|
-
rbrkslu: "⦐",
|
|
27490
|
-
rcaron: "ř",
|
|
27491
|
-
rcedil: "ŗ",
|
|
27492
|
-
rceil: "⌉",
|
|
27493
|
-
rcub: "}",
|
|
27494
|
-
rcy: "р",
|
|
27495
|
-
rdca: "⤷",
|
|
27496
|
-
rdldhar: "⥩",
|
|
27497
|
-
rdquo: "”",
|
|
27498
|
-
rdquor: "”",
|
|
27499
|
-
rdsh: "↳",
|
|
27500
|
-
real: "ℜ",
|
|
27501
|
-
realine: "ℛ",
|
|
27502
|
-
realpart: "ℜ",
|
|
27503
|
-
reals: "ℝ",
|
|
27504
|
-
rect: "▭",
|
|
27505
|
-
reg: "®",
|
|
27506
|
-
rfisht: "⥽",
|
|
27507
|
-
rfloor: "⌋",
|
|
27508
|
-
rfr: "𝔯",
|
|
27509
|
-
rhard: "⇁",
|
|
27510
|
-
rharu: "⇀",
|
|
27511
|
-
rharul: "⥬",
|
|
27512
|
-
rho: "ρ",
|
|
27513
|
-
rhov: "ϱ",
|
|
27514
|
-
rightarrow: "→",
|
|
27515
|
-
rightarrowtail: "↣",
|
|
27516
|
-
rightharpoondown: "⇁",
|
|
27517
|
-
rightharpoonup: "⇀",
|
|
27518
|
-
rightleftarrows: "⇄",
|
|
27519
|
-
rightleftharpoons: "⇌",
|
|
27520
|
-
rightrightarrows: "⇉",
|
|
27521
|
-
rightsquigarrow: "↝",
|
|
27522
|
-
rightthreetimes: "⋌",
|
|
27523
|
-
ring: "˚",
|
|
27524
|
-
risingdotseq: "≓",
|
|
27525
|
-
rlarr: "⇄",
|
|
27526
|
-
rlhar: "⇌",
|
|
27527
|
-
rlm: "",
|
|
27528
|
-
rmoust: "⎱",
|
|
27529
|
-
rmoustache: "⎱",
|
|
27530
|
-
rnmid: "⫮",
|
|
27531
|
-
roang: "⟭",
|
|
27532
|
-
roarr: "⇾",
|
|
27533
|
-
robrk: "⟧",
|
|
27534
|
-
ropar: "⦆",
|
|
27535
|
-
ropf: "𝕣",
|
|
27536
|
-
roplus: "⨮",
|
|
27537
|
-
rotimes: "⨵",
|
|
27538
|
-
rpar: ")",
|
|
27539
|
-
rpargt: "⦔",
|
|
27540
|
-
rppolint: "⨒",
|
|
27541
|
-
rrarr: "⇉",
|
|
27542
|
-
rsaquo: "›",
|
|
27543
|
-
rscr: "𝓇",
|
|
27544
|
-
rsh: "↱",
|
|
27545
|
-
rsqb: "]",
|
|
27546
|
-
rsquo: "’",
|
|
27547
|
-
rsquor: "’",
|
|
27548
|
-
rthree: "⋌",
|
|
27549
|
-
rtimes: "⋊",
|
|
27550
|
-
rtri: "▹",
|
|
27551
|
-
rtrie: "⊵",
|
|
27552
|
-
rtrif: "▸",
|
|
27553
|
-
rtriltri: "⧎",
|
|
27554
|
-
ruluhar: "⥨",
|
|
27555
|
-
rx: "℞",
|
|
27556
|
-
sacute: "ś",
|
|
27557
|
-
sbquo: "‚",
|
|
27558
|
-
sc: "≻",
|
|
27559
|
-
scE: "⪴",
|
|
27560
|
-
scap: "⪸",
|
|
27561
|
-
scaron: "š",
|
|
27562
|
-
sccue: "≽",
|
|
27563
|
-
sce: "⪰",
|
|
27564
|
-
scedil: "ş",
|
|
27565
|
-
scirc: "ŝ",
|
|
27566
|
-
scnE: "⪶",
|
|
27567
|
-
scnap: "⪺",
|
|
27568
|
-
scnsim: "⋩",
|
|
27569
|
-
scpolint: "⨓",
|
|
27570
|
-
scsim: "≿",
|
|
27571
|
-
scy: "с",
|
|
27572
|
-
sdot: "⋅",
|
|
27573
|
-
sdotb: "⊡",
|
|
27574
|
-
sdote: "⩦",
|
|
27575
|
-
seArr: "⇘",
|
|
27576
|
-
searhk: "⤥",
|
|
27577
|
-
searr: "↘",
|
|
27578
|
-
searrow: "↘",
|
|
27579
|
-
sect: "§",
|
|
27580
|
-
semi: ";",
|
|
27581
|
-
seswar: "⤩",
|
|
27582
|
-
setminus: "∖",
|
|
27583
|
-
setmn: "∖",
|
|
27584
|
-
sext: "✶",
|
|
27585
|
-
sfr: "𝔰",
|
|
27586
|
-
sfrown: "⌢",
|
|
27587
|
-
sharp: "♯",
|
|
27588
|
-
shchcy: "щ",
|
|
27589
|
-
shcy: "ш",
|
|
27590
|
-
shortmid: "∣",
|
|
27591
|
-
shortparallel: "∥",
|
|
27592
|
-
shy: "",
|
|
27593
|
-
sigma: "σ",
|
|
27594
|
-
sigmaf: "ς",
|
|
27595
|
-
sigmav: "ς",
|
|
27596
|
-
sim: "∼",
|
|
27597
|
-
simdot: "⩪",
|
|
27598
|
-
sime: "≃",
|
|
27599
|
-
simeq: "≃",
|
|
27600
|
-
simg: "⪞",
|
|
27601
|
-
simgE: "⪠",
|
|
27602
|
-
siml: "⪝",
|
|
27603
|
-
simlE: "⪟",
|
|
27604
|
-
simne: "≆",
|
|
27605
|
-
simplus: "⨤",
|
|
27606
|
-
simrarr: "⥲",
|
|
27607
|
-
slarr: "←",
|
|
27608
|
-
smallsetminus: "∖",
|
|
27609
|
-
smashp: "⨳",
|
|
27610
|
-
smeparsl: "⧤",
|
|
27611
|
-
smid: "∣",
|
|
27612
|
-
smile: "⌣",
|
|
27613
|
-
smt: "⪪",
|
|
27614
|
-
smte: "⪬",
|
|
27615
|
-
smtes: "⪬︀",
|
|
27616
|
-
softcy: "ь",
|
|
27617
|
-
sol: "/",
|
|
27618
|
-
solb: "⧄",
|
|
27619
|
-
solbar: "⌿",
|
|
27620
|
-
sopf: "𝕤",
|
|
27621
|
-
spades: "♠",
|
|
27622
|
-
spadesuit: "♠",
|
|
27623
|
-
spar: "∥",
|
|
27624
|
-
sqcap: "⊓",
|
|
27625
|
-
sqcaps: "⊓︀",
|
|
27626
|
-
sqcup: "⊔",
|
|
27627
|
-
sqcups: "⊔︀",
|
|
27628
|
-
sqsub: "⊏",
|
|
27629
|
-
sqsube: "⊑",
|
|
27630
|
-
sqsubset: "⊏",
|
|
27631
|
-
sqsubseteq: "⊑",
|
|
27632
|
-
sqsup: "⊐",
|
|
27633
|
-
sqsupe: "⊒",
|
|
27634
|
-
sqsupset: "⊐",
|
|
27635
|
-
sqsupseteq: "⊒",
|
|
27636
|
-
squ: "□",
|
|
27637
|
-
square: "□",
|
|
27638
|
-
squarf: "▪",
|
|
27639
|
-
squf: "▪",
|
|
27640
|
-
srarr: "→",
|
|
27641
|
-
sscr: "𝓈",
|
|
27642
|
-
ssetmn: "∖",
|
|
27643
|
-
ssmile: "⌣",
|
|
27644
|
-
sstarf: "⋆",
|
|
27645
|
-
star: "☆",
|
|
27646
|
-
starf: "★",
|
|
27647
|
-
straightepsilon: "ϵ",
|
|
27648
|
-
straightphi: "ϕ",
|
|
27649
|
-
strns: "¯",
|
|
27650
|
-
sub: "⊂",
|
|
27651
|
-
subE: "⫅",
|
|
27652
|
-
subdot: "⪽",
|
|
27653
|
-
sube: "⊆",
|
|
27654
|
-
subedot: "⫃",
|
|
27655
|
-
submult: "⫁",
|
|
27656
|
-
subnE: "⫋",
|
|
27657
|
-
subne: "⊊",
|
|
27658
|
-
subplus: "⪿",
|
|
27659
|
-
subrarr: "⥹",
|
|
27660
|
-
subset: "⊂",
|
|
27661
|
-
subseteq: "⊆",
|
|
27662
|
-
subseteqq: "⫅",
|
|
27663
|
-
subsetneq: "⊊",
|
|
27664
|
-
subsetneqq: "⫋",
|
|
27665
|
-
subsim: "⫇",
|
|
27666
|
-
subsub: "⫕",
|
|
27667
|
-
subsup: "⫓",
|
|
27668
|
-
succ: "≻",
|
|
27669
|
-
succapprox: "⪸",
|
|
27670
|
-
succcurlyeq: "≽",
|
|
27671
|
-
succeq: "⪰",
|
|
27672
|
-
succnapprox: "⪺",
|
|
27673
|
-
succneqq: "⪶",
|
|
27674
|
-
succnsim: "⋩",
|
|
27675
|
-
succsim: "≿",
|
|
27676
|
-
sum: "∑",
|
|
27677
|
-
sung: "♪",
|
|
27678
|
-
sup1: "¹",
|
|
27679
|
-
sup2: "²",
|
|
27680
|
-
sup3: "³",
|
|
27681
|
-
sup: "⊃",
|
|
27682
|
-
supE: "⫆",
|
|
27683
|
-
supdot: "⪾",
|
|
27684
|
-
supdsub: "⫘",
|
|
27685
|
-
supe: "⊇",
|
|
27686
|
-
supedot: "⫄",
|
|
27687
|
-
suphsol: "⟉",
|
|
27688
|
-
suphsub: "⫗",
|
|
27689
|
-
suplarr: "⥻",
|
|
27690
|
-
supmult: "⫂",
|
|
27691
|
-
supnE: "⫌",
|
|
27692
|
-
supne: "⊋",
|
|
27693
|
-
supplus: "⫀",
|
|
27694
|
-
supset: "⊃",
|
|
27695
|
-
supseteq: "⊇",
|
|
27696
|
-
supseteqq: "⫆",
|
|
27697
|
-
supsetneq: "⊋",
|
|
27698
|
-
supsetneqq: "⫌",
|
|
27699
|
-
supsim: "⫈",
|
|
27700
|
-
supsub: "⫔",
|
|
27701
|
-
supsup: "⫖",
|
|
27702
|
-
swArr: "⇙",
|
|
27703
|
-
swarhk: "⤦",
|
|
27704
|
-
swarr: "↙",
|
|
27705
|
-
swarrow: "↙",
|
|
27706
|
-
swnwar: "⤪",
|
|
27707
|
-
szlig: "ß",
|
|
27708
|
-
target: "⌖",
|
|
27709
|
-
tau: "τ",
|
|
27710
|
-
tbrk: "⎴",
|
|
27711
|
-
tcaron: "ť",
|
|
27712
|
-
tcedil: "ţ",
|
|
27713
|
-
tcy: "т",
|
|
27714
|
-
tdot: "⃛",
|
|
27715
|
-
telrec: "⌕",
|
|
27716
|
-
tfr: "𝔱",
|
|
27717
|
-
there4: "∴",
|
|
27718
|
-
therefore: "∴",
|
|
27719
|
-
theta: "θ",
|
|
27720
|
-
thetasym: "ϑ",
|
|
27721
|
-
thetav: "ϑ",
|
|
27722
|
-
thickapprox: "≈",
|
|
27723
|
-
thicksim: "∼",
|
|
27724
|
-
thinsp: " ",
|
|
27725
|
-
thkap: "≈",
|
|
27726
|
-
thksim: "∼",
|
|
27727
|
-
thorn: "þ",
|
|
27728
|
-
tilde: "˜",
|
|
27729
|
-
times: "×",
|
|
27730
|
-
timesb: "⊠",
|
|
27731
|
-
timesbar: "⨱",
|
|
27732
|
-
timesd: "⨰",
|
|
27733
|
-
tint: "∭",
|
|
27734
|
-
toea: "⤨",
|
|
27735
|
-
top: "⊤",
|
|
27736
|
-
topbot: "⌶",
|
|
27737
|
-
topcir: "⫱",
|
|
27738
|
-
topf: "𝕥",
|
|
27739
|
-
topfork: "⫚",
|
|
27740
|
-
tosa: "⤩",
|
|
27741
|
-
tprime: "‴",
|
|
27742
|
-
trade: "™",
|
|
27743
|
-
triangle: "▵",
|
|
27744
|
-
triangledown: "▿",
|
|
27745
|
-
triangleleft: "◃",
|
|
27746
|
-
trianglelefteq: "⊴",
|
|
27747
|
-
triangleq: "≜",
|
|
27748
|
-
triangleright: "▹",
|
|
27749
|
-
trianglerighteq: "⊵",
|
|
27750
|
-
tridot: "◬",
|
|
27751
|
-
trie: "≜",
|
|
27752
|
-
triminus: "⨺",
|
|
27753
|
-
triplus: "⨹",
|
|
27754
|
-
trisb: "⧍",
|
|
27755
|
-
tritime: "⨻",
|
|
27756
|
-
trpezium: "⏢",
|
|
27757
|
-
tscr: "𝓉",
|
|
27758
|
-
tscy: "ц",
|
|
27759
|
-
tshcy: "ћ",
|
|
27760
|
-
tstrok: "ŧ",
|
|
27761
|
-
twixt: "≬",
|
|
27762
|
-
twoheadleftarrow: "↞",
|
|
27763
|
-
twoheadrightarrow: "↠",
|
|
27764
|
-
uArr: "⇑",
|
|
27765
|
-
uHar: "⥣",
|
|
27766
|
-
uacute: "ú",
|
|
27767
|
-
uarr: "↑",
|
|
27768
|
-
ubrcy: "ў",
|
|
27769
|
-
ubreve: "ŭ",
|
|
27770
|
-
ucirc: "û",
|
|
27771
|
-
ucy: "у",
|
|
27772
|
-
udarr: "⇅",
|
|
27773
|
-
udblac: "ű",
|
|
27774
|
-
udhar: "⥮",
|
|
27775
|
-
ufisht: "⥾",
|
|
27776
|
-
ufr: "𝔲",
|
|
27777
|
-
ugrave: "ù",
|
|
27778
|
-
uharl: "↿",
|
|
27779
|
-
uharr: "↾",
|
|
27780
|
-
uhblk: "▀",
|
|
27781
|
-
ulcorn: "⌜",
|
|
27782
|
-
ulcorner: "⌜",
|
|
27783
|
-
ulcrop: "⌏",
|
|
27784
|
-
ultri: "◸",
|
|
27785
|
-
umacr: "ū",
|
|
27786
|
-
uml: "¨",
|
|
27787
|
-
uogon: "ų",
|
|
27788
|
-
uopf: "𝕦",
|
|
27789
|
-
uparrow: "↑",
|
|
27790
|
-
updownarrow: "↕",
|
|
27791
|
-
upharpoonleft: "↿",
|
|
27792
|
-
upharpoonright: "↾",
|
|
27793
|
-
uplus: "⊎",
|
|
27794
|
-
upsi: "υ",
|
|
27795
|
-
upsih: "ϒ",
|
|
27796
|
-
upsilon: "υ",
|
|
27797
|
-
upuparrows: "⇈",
|
|
27798
|
-
urcorn: "⌝",
|
|
27799
|
-
urcorner: "⌝",
|
|
27800
|
-
urcrop: "⌎",
|
|
27801
|
-
uring: "ů",
|
|
27802
|
-
urtri: "◹",
|
|
27803
|
-
uscr: "𝓊",
|
|
27804
|
-
utdot: "⋰",
|
|
27805
|
-
utilde: "ũ",
|
|
27806
|
-
utri: "▵",
|
|
27807
|
-
utrif: "▴",
|
|
27808
|
-
uuarr: "⇈",
|
|
27809
|
-
uuml: "ü",
|
|
27810
|
-
uwangle: "⦧",
|
|
27811
|
-
vArr: "⇕",
|
|
27812
|
-
vBar: "⫨",
|
|
27813
|
-
vBarv: "⫩",
|
|
27814
|
-
vDash: "⊨",
|
|
27815
|
-
vangrt: "⦜",
|
|
27816
|
-
varepsilon: "ϵ",
|
|
27817
|
-
varkappa: "ϰ",
|
|
27818
|
-
varnothing: "∅",
|
|
27819
|
-
varphi: "ϕ",
|
|
27820
|
-
varpi: "ϖ",
|
|
27821
|
-
varpropto: "∝",
|
|
27822
|
-
varr: "↕",
|
|
27823
|
-
varrho: "ϱ",
|
|
27824
|
-
varsigma: "ς",
|
|
27825
|
-
varsubsetneq: "⊊︀",
|
|
27826
|
-
varsubsetneqq: "⫋︀",
|
|
27827
|
-
varsupsetneq: "⊋︀",
|
|
27828
|
-
varsupsetneqq: "⫌︀",
|
|
27829
|
-
vartheta: "ϑ",
|
|
27830
|
-
vartriangleleft: "⊲",
|
|
27831
|
-
vartriangleright: "⊳",
|
|
27832
|
-
vcy: "в",
|
|
27833
|
-
vdash: "⊢",
|
|
27834
|
-
vee: "∨",
|
|
27835
|
-
veebar: "⊻",
|
|
27836
|
-
veeeq: "≚",
|
|
27837
|
-
vellip: "⋮",
|
|
27838
|
-
verbar: "|",
|
|
27839
|
-
vert: "|",
|
|
27840
|
-
vfr: "𝔳",
|
|
27841
|
-
vltri: "⊲",
|
|
27842
|
-
vnsub: "⊂⃒",
|
|
27843
|
-
vnsup: "⊃⃒",
|
|
27844
|
-
vopf: "𝕧",
|
|
27845
|
-
vprop: "∝",
|
|
27846
|
-
vrtri: "⊳",
|
|
27847
|
-
vscr: "𝓋",
|
|
27848
|
-
vsubnE: "⫋︀",
|
|
27849
|
-
vsubne: "⊊︀",
|
|
27850
|
-
vsupnE: "⫌︀",
|
|
27851
|
-
vsupne: "⊋︀",
|
|
27852
|
-
vzigzag: "⦚",
|
|
27853
|
-
wcirc: "ŵ",
|
|
27854
|
-
wedbar: "⩟",
|
|
27855
|
-
wedge: "∧",
|
|
27856
|
-
wedgeq: "≙",
|
|
27857
|
-
weierp: "℘",
|
|
27858
|
-
wfr: "𝔴",
|
|
27859
|
-
wopf: "𝕨",
|
|
27860
|
-
wp: "℘",
|
|
27861
|
-
wr: "≀",
|
|
27862
|
-
wreath: "≀",
|
|
27863
|
-
wscr: "𝓌",
|
|
27864
|
-
xcap: "⋂",
|
|
27865
|
-
xcirc: "◯",
|
|
27866
|
-
xcup: "⋃",
|
|
27867
|
-
xdtri: "▽",
|
|
27868
|
-
xfr: "𝔵",
|
|
27869
|
-
xhArr: "⟺",
|
|
27870
|
-
xharr: "⟷",
|
|
27871
|
-
xi: "ξ",
|
|
27872
|
-
xlArr: "⟸",
|
|
27873
|
-
xlarr: "⟵",
|
|
27874
|
-
xmap: "⟼",
|
|
27875
|
-
xnis: "⋻",
|
|
27876
|
-
xodot: "⨀",
|
|
27877
|
-
xopf: "𝕩",
|
|
27878
|
-
xoplus: "⨁",
|
|
27879
|
-
xotime: "⨂",
|
|
27880
|
-
xrArr: "⟹",
|
|
27881
|
-
xrarr: "⟶",
|
|
27882
|
-
xscr: "𝓍",
|
|
27883
|
-
xsqcup: "⨆",
|
|
27884
|
-
xuplus: "⨄",
|
|
27885
|
-
xutri: "△",
|
|
27886
|
-
xvee: "⋁",
|
|
27887
|
-
xwedge: "⋀",
|
|
27888
|
-
yacute: "ý",
|
|
27889
|
-
yacy: "я",
|
|
27890
|
-
ycirc: "ŷ",
|
|
27891
|
-
ycy: "ы",
|
|
27892
|
-
yen: "¥",
|
|
27893
|
-
yfr: "𝔶",
|
|
27894
|
-
yicy: "ї",
|
|
27895
|
-
yopf: "𝕪",
|
|
27896
|
-
yscr: "𝓎",
|
|
27897
|
-
yucy: "ю",
|
|
27898
|
-
yuml: "ÿ",
|
|
27899
|
-
zacute: "ź",
|
|
27900
|
-
zcaron: "ž",
|
|
27901
|
-
zcy: "з",
|
|
27902
|
-
zdot: "ż",
|
|
27903
|
-
zeetrf: "ℨ",
|
|
27904
|
-
zeta: "ζ",
|
|
27905
|
-
zfr: "𝔷",
|
|
27906
|
-
zhcy: "ж",
|
|
27907
|
-
zigrarr: "⇝",
|
|
27908
|
-
zopf: "𝕫",
|
|
27909
|
-
zscr: "𝓏",
|
|
27910
|
-
zwj: "",
|
|
27911
|
-
zwnj: ""
|
|
27912
|
-
};
|
|
27913
|
-
}));
|
|
27914
|
-
//#endregion
|
|
27915
|
-
//#region ../../node_modules/.pnpm/decode-named-character-reference@1.2.0/node_modules/decode-named-character-reference/index.js
|
|
27916
|
-
/**
|
|
27917
|
-
* Decode a single character reference (without the `&` or `;`).
|
|
27918
|
-
* You probably only need this when you’re building parsers yourself that follow
|
|
27919
|
-
* different rules compared to HTML.
|
|
27920
|
-
* This is optimized to be tiny in browsers.
|
|
27921
|
-
*
|
|
27922
|
-
* @param {string} value
|
|
27923
|
-
* `notin` (named), `#123` (deci), `#x123` (hexa).
|
|
27924
|
-
* @returns {string|false}
|
|
27925
|
-
* Decoded reference.
|
|
27926
|
-
*/
|
|
27927
|
-
function decodeNamedCharacterReference(value) {
|
|
27928
|
-
return own$5.call(characterEntities, value) ? characterEntities[value] : false;
|
|
27929
|
-
}
|
|
27930
|
-
var own$5;
|
|
27931
|
-
var init_decode_named_character_reference = __esmMin((() => {
|
|
27932
|
-
init_character_entities();
|
|
27933
|
-
own$5 = {}.hasOwnProperty;
|
|
27934
|
-
}));
|
|
27935
|
-
//#endregion
|
|
27936
25810
|
//#region ../../node_modules/.pnpm/micromark-util-chunked@2.0.1/node_modules/micromark-util-chunked/index.js
|
|
27937
25811
|
/**
|
|
27938
25812
|
* Like `Array#splice`, but smarter for giant arrays.
|
|
@@ -28059,64 +25933,17 @@ function syntaxExtension(all, extension) {
|
|
|
28059
25933
|
* Nothing.
|
|
28060
25934
|
*/
|
|
28061
25935
|
function constructs(existing, list) {
|
|
28062
|
-
let index = -1;
|
|
28063
|
-
/** @type {Array<unknown>} */
|
|
28064
|
-
const before = [];
|
|
28065
|
-
while (++index < list.length) (list[index].add === "after" ? existing : before).push(list[index]);
|
|
28066
|
-
splice(existing, 0, 0, before);
|
|
28067
|
-
}
|
|
28068
|
-
var hasOwnProperty$1;
|
|
28069
|
-
var init_micromark_util_combine_extensions = __esmMin((() => {
|
|
28070
|
-
init_micromark_util_chunked();
|
|
28071
|
-
hasOwnProperty$1 = {}.hasOwnProperty;
|
|
28072
|
-
}));
|
|
28073
|
-
//#endregion
|
|
28074
|
-
//#region ../../node_modules/.pnpm/micromark-util-decode-numeric-character-reference@2.0.2/node_modules/micromark-util-decode-numeric-character-reference/index.js
|
|
28075
|
-
/**
|
|
28076
|
-
* Turn the number (in string form as either hexa- or plain decimal) coming from
|
|
28077
|
-
* a numeric character reference into a character.
|
|
28078
|
-
*
|
|
28079
|
-
* Sort of like `String.fromCodePoint(Number.parseInt(value, base))`, but makes
|
|
28080
|
-
* non-characters and control characters safe.
|
|
28081
|
-
*
|
|
28082
|
-
* @param {string} value
|
|
28083
|
-
* Value to decode.
|
|
28084
|
-
* @param {number} base
|
|
28085
|
-
* Numeric base.
|
|
28086
|
-
* @returns {string}
|
|
28087
|
-
* Character.
|
|
28088
|
-
*/
|
|
28089
|
-
function decodeNumericCharacterReference(value, base) {
|
|
28090
|
-
const code = Number.parseInt(value, base);
|
|
28091
|
-
if (code < 9 || code === 11 || code > 13 && code < 32 || code > 126 && code < 160 || code > 55295 && code < 57344 || code > 64975 && code < 65008 || (code & 65535) === 65535 || (code & 65535) === 65534 || code > 1114111) return "�";
|
|
28092
|
-
return String.fromCodePoint(code);
|
|
28093
|
-
}
|
|
28094
|
-
var init_micromark_util_decode_numeric_character_reference = __esmMin((() => {}));
|
|
28095
|
-
//#endregion
|
|
28096
|
-
//#region ../../node_modules/.pnpm/micromark-util-normalize-identifier@2.0.1/node_modules/micromark-util-normalize-identifier/index.js
|
|
28097
|
-
/**
|
|
28098
|
-
* Normalize an identifier (as found in references, definitions).
|
|
28099
|
-
*
|
|
28100
|
-
* Collapses markdown whitespace, trim, and then lower- and uppercase.
|
|
28101
|
-
*
|
|
28102
|
-
* Some characters are considered “uppercase”, such as U+03F4 (`ϴ`), but if their
|
|
28103
|
-
* lowercase counterpart (U+03B8 (`θ`)) is uppercased will result in a different
|
|
28104
|
-
* uppercase character (U+0398 (`Θ`)).
|
|
28105
|
-
* So, to get a canonical form, we perform both lower- and uppercase.
|
|
28106
|
-
*
|
|
28107
|
-
* Using uppercase last makes sure keys will never interact with default
|
|
28108
|
-
* prototypal values (such as `constructor`): nothing in the prototype of
|
|
28109
|
-
* `Object` is uppercase.
|
|
28110
|
-
*
|
|
28111
|
-
* @param {string} value
|
|
28112
|
-
* Identifier to normalize.
|
|
28113
|
-
* @returns {string}
|
|
28114
|
-
* Normalized identifier.
|
|
28115
|
-
*/
|
|
28116
|
-
function normalizeIdentifier(value) {
|
|
28117
|
-
return value.replace(/[\t\n\r ]+/g, " ").replace(/^ | $/g, "").toLowerCase().toUpperCase();
|
|
25936
|
+
let index = -1;
|
|
25937
|
+
/** @type {Array<unknown>} */
|
|
25938
|
+
const before = [];
|
|
25939
|
+
while (++index < list.length) (list[index].add === "after" ? existing : before).push(list[index]);
|
|
25940
|
+
splice(existing, 0, 0, before);
|
|
28118
25941
|
}
|
|
28119
|
-
var
|
|
25942
|
+
var hasOwnProperty$1;
|
|
25943
|
+
var init_micromark_util_combine_extensions = __esmMin((() => {
|
|
25944
|
+
init_micromark_util_chunked();
|
|
25945
|
+
hasOwnProperty$1 = {}.hasOwnProperty;
|
|
25946
|
+
}));
|
|
28120
25947
|
//#endregion
|
|
28121
25948
|
//#region ../../node_modules/.pnpm/micromark-util-character@2.1.1/node_modules/micromark-util-character/index.js
|
|
28122
25949
|
/**
|
|
@@ -29064,181 +26891,2334 @@ var init_blank_line = __esmMin((() => {
|
|
|
29064
26891
|
};
|
|
29065
26892
|
}));
|
|
29066
26893
|
//#endregion
|
|
29067
|
-
//#region ../../node_modules/.pnpm/micromark-core-commonmark@2.0.3/node_modules/micromark-core-commonmark/lib/block-quote.js
|
|
29068
|
-
/**
|
|
29069
|
-
* @this {TokenizeContext}
|
|
29070
|
-
* Context.
|
|
29071
|
-
* @type {Tokenizer}
|
|
29072
|
-
*/
|
|
29073
|
-
function tokenizeBlockQuoteStart(effects, ok, nok) {
|
|
29074
|
-
const self = this;
|
|
29075
|
-
return start;
|
|
29076
|
-
/**
|
|
29077
|
-
* Start of block quote.
|
|
29078
|
-
*
|
|
29079
|
-
* ```markdown
|
|
29080
|
-
* > | > a
|
|
29081
|
-
* ^
|
|
29082
|
-
* ```
|
|
29083
|
-
*
|
|
29084
|
-
* @type {State}
|
|
29085
|
-
*/
|
|
29086
|
-
function start(code) {
|
|
29087
|
-
if (code === 62) {
|
|
29088
|
-
const state = self.containerState;
|
|
29089
|
-
if (!state.open) {
|
|
29090
|
-
effects.enter("blockQuote", { _container: true });
|
|
29091
|
-
state.open = true;
|
|
29092
|
-
}
|
|
29093
|
-
effects.enter("blockQuotePrefix");
|
|
29094
|
-
effects.enter("blockQuoteMarker");
|
|
29095
|
-
effects.consume(code);
|
|
29096
|
-
effects.exit("blockQuoteMarker");
|
|
29097
|
-
return after;
|
|
29098
|
-
}
|
|
29099
|
-
return nok(code);
|
|
29100
|
-
}
|
|
29101
|
-
/**
|
|
29102
|
-
* After `>`, before optional whitespace.
|
|
29103
|
-
*
|
|
29104
|
-
* ```markdown
|
|
29105
|
-
* > | > a
|
|
29106
|
-
* ^
|
|
29107
|
-
* ```
|
|
29108
|
-
*
|
|
29109
|
-
* @type {State}
|
|
29110
|
-
*/
|
|
29111
|
-
function after(code) {
|
|
29112
|
-
if (markdownSpace(code)) {
|
|
29113
|
-
effects.enter("blockQuotePrefixWhitespace");
|
|
29114
|
-
effects.consume(code);
|
|
29115
|
-
effects.exit("blockQuotePrefixWhitespace");
|
|
29116
|
-
effects.exit("blockQuotePrefix");
|
|
29117
|
-
return ok;
|
|
29118
|
-
}
|
|
29119
|
-
effects.exit("blockQuotePrefix");
|
|
29120
|
-
return ok(code);
|
|
29121
|
-
}
|
|
29122
|
-
}
|
|
26894
|
+
//#region ../../node_modules/.pnpm/micromark-core-commonmark@2.0.3/node_modules/micromark-core-commonmark/lib/block-quote.js
|
|
26895
|
+
/**
|
|
26896
|
+
* @this {TokenizeContext}
|
|
26897
|
+
* Context.
|
|
26898
|
+
* @type {Tokenizer}
|
|
26899
|
+
*/
|
|
26900
|
+
function tokenizeBlockQuoteStart(effects, ok, nok) {
|
|
26901
|
+
const self = this;
|
|
26902
|
+
return start;
|
|
26903
|
+
/**
|
|
26904
|
+
* Start of block quote.
|
|
26905
|
+
*
|
|
26906
|
+
* ```markdown
|
|
26907
|
+
* > | > a
|
|
26908
|
+
* ^
|
|
26909
|
+
* ```
|
|
26910
|
+
*
|
|
26911
|
+
* @type {State}
|
|
26912
|
+
*/
|
|
26913
|
+
function start(code) {
|
|
26914
|
+
if (code === 62) {
|
|
26915
|
+
const state = self.containerState;
|
|
26916
|
+
if (!state.open) {
|
|
26917
|
+
effects.enter("blockQuote", { _container: true });
|
|
26918
|
+
state.open = true;
|
|
26919
|
+
}
|
|
26920
|
+
effects.enter("blockQuotePrefix");
|
|
26921
|
+
effects.enter("blockQuoteMarker");
|
|
26922
|
+
effects.consume(code);
|
|
26923
|
+
effects.exit("blockQuoteMarker");
|
|
26924
|
+
return after;
|
|
26925
|
+
}
|
|
26926
|
+
return nok(code);
|
|
26927
|
+
}
|
|
26928
|
+
/**
|
|
26929
|
+
* After `>`, before optional whitespace.
|
|
26930
|
+
*
|
|
26931
|
+
* ```markdown
|
|
26932
|
+
* > | > a
|
|
26933
|
+
* ^
|
|
26934
|
+
* ```
|
|
26935
|
+
*
|
|
26936
|
+
* @type {State}
|
|
26937
|
+
*/
|
|
26938
|
+
function after(code) {
|
|
26939
|
+
if (markdownSpace(code)) {
|
|
26940
|
+
effects.enter("blockQuotePrefixWhitespace");
|
|
26941
|
+
effects.consume(code);
|
|
26942
|
+
effects.exit("blockQuotePrefixWhitespace");
|
|
26943
|
+
effects.exit("blockQuotePrefix");
|
|
26944
|
+
return ok;
|
|
26945
|
+
}
|
|
26946
|
+
effects.exit("blockQuotePrefix");
|
|
26947
|
+
return ok(code);
|
|
26948
|
+
}
|
|
26949
|
+
}
|
|
26950
|
+
/**
|
|
26951
|
+
* Start of block quote continuation.
|
|
26952
|
+
*
|
|
26953
|
+
* ```markdown
|
|
26954
|
+
* | > a
|
|
26955
|
+
* > | > b
|
|
26956
|
+
* ^
|
|
26957
|
+
* ```
|
|
26958
|
+
*
|
|
26959
|
+
* @this {TokenizeContext}
|
|
26960
|
+
* Context.
|
|
26961
|
+
* @type {Tokenizer}
|
|
26962
|
+
*/
|
|
26963
|
+
function tokenizeBlockQuoteContinuation(effects, ok, nok) {
|
|
26964
|
+
const self = this;
|
|
26965
|
+
return contStart;
|
|
26966
|
+
/**
|
|
26967
|
+
* Start of block quote continuation.
|
|
26968
|
+
*
|
|
26969
|
+
* Also used to parse the first block quote opening.
|
|
26970
|
+
*
|
|
26971
|
+
* ```markdown
|
|
26972
|
+
* | > a
|
|
26973
|
+
* > | > b
|
|
26974
|
+
* ^
|
|
26975
|
+
* ```
|
|
26976
|
+
*
|
|
26977
|
+
* @type {State}
|
|
26978
|
+
*/
|
|
26979
|
+
function contStart(code) {
|
|
26980
|
+
if (markdownSpace(code)) return factorySpace(effects, contBefore, "linePrefix", self.parser.constructs.disable.null.includes("codeIndented") ? void 0 : 4)(code);
|
|
26981
|
+
return contBefore(code);
|
|
26982
|
+
}
|
|
26983
|
+
/**
|
|
26984
|
+
* At `>`, after optional whitespace.
|
|
26985
|
+
*
|
|
26986
|
+
* Also used to parse the first block quote opening.
|
|
26987
|
+
*
|
|
26988
|
+
* ```markdown
|
|
26989
|
+
* | > a
|
|
26990
|
+
* > | > b
|
|
26991
|
+
* ^
|
|
26992
|
+
* ```
|
|
26993
|
+
*
|
|
26994
|
+
* @type {State}
|
|
26995
|
+
*/
|
|
26996
|
+
function contBefore(code) {
|
|
26997
|
+
return effects.attempt(blockQuote, ok, nok)(code);
|
|
26998
|
+
}
|
|
26999
|
+
}
|
|
27000
|
+
/** @type {Exiter} */
|
|
27001
|
+
function exit(effects) {
|
|
27002
|
+
effects.exit("blockQuote");
|
|
27003
|
+
}
|
|
27004
|
+
var blockQuote;
|
|
27005
|
+
var init_block_quote = __esmMin((() => {
|
|
27006
|
+
init_micromark_factory_space();
|
|
27007
|
+
init_micromark_util_character();
|
|
27008
|
+
blockQuote = {
|
|
27009
|
+
continuation: { tokenize: tokenizeBlockQuoteContinuation },
|
|
27010
|
+
exit,
|
|
27011
|
+
name: "blockQuote",
|
|
27012
|
+
tokenize: tokenizeBlockQuoteStart
|
|
27013
|
+
};
|
|
27014
|
+
}));
|
|
27015
|
+
//#endregion
|
|
27016
|
+
//#region ../../node_modules/.pnpm/micromark-core-commonmark@2.0.3/node_modules/micromark-core-commonmark/lib/character-escape.js
|
|
27017
|
+
/**
|
|
27018
|
+
* @this {TokenizeContext}
|
|
27019
|
+
* Context.
|
|
27020
|
+
* @type {Tokenizer}
|
|
27021
|
+
*/
|
|
27022
|
+
function tokenizeCharacterEscape(effects, ok, nok) {
|
|
27023
|
+
return start;
|
|
27024
|
+
/**
|
|
27025
|
+
* Start of character escape.
|
|
27026
|
+
*
|
|
27027
|
+
* ```markdown
|
|
27028
|
+
* > | a\*b
|
|
27029
|
+
* ^
|
|
27030
|
+
* ```
|
|
27031
|
+
*
|
|
27032
|
+
* @type {State}
|
|
27033
|
+
*/
|
|
27034
|
+
function start(code) {
|
|
27035
|
+
effects.enter("characterEscape");
|
|
27036
|
+
effects.enter("escapeMarker");
|
|
27037
|
+
effects.consume(code);
|
|
27038
|
+
effects.exit("escapeMarker");
|
|
27039
|
+
return inside;
|
|
27040
|
+
}
|
|
27041
|
+
/**
|
|
27042
|
+
* After `\`, at punctuation.
|
|
27043
|
+
*
|
|
27044
|
+
* ```markdown
|
|
27045
|
+
* > | a\*b
|
|
27046
|
+
* ^
|
|
27047
|
+
* ```
|
|
27048
|
+
*
|
|
27049
|
+
* @type {State}
|
|
27050
|
+
*/
|
|
27051
|
+
function inside(code) {
|
|
27052
|
+
if (asciiPunctuation(code)) {
|
|
27053
|
+
effects.enter("characterEscapeValue");
|
|
27054
|
+
effects.consume(code);
|
|
27055
|
+
effects.exit("characterEscapeValue");
|
|
27056
|
+
effects.exit("characterEscape");
|
|
27057
|
+
return ok;
|
|
27058
|
+
}
|
|
27059
|
+
return nok(code);
|
|
27060
|
+
}
|
|
27061
|
+
}
|
|
27062
|
+
var characterEscape;
|
|
27063
|
+
var init_character_escape = __esmMin((() => {
|
|
27064
|
+
init_micromark_util_character();
|
|
27065
|
+
characterEscape = {
|
|
27066
|
+
name: "characterEscape",
|
|
27067
|
+
tokenize: tokenizeCharacterEscape
|
|
27068
|
+
};
|
|
27069
|
+
}));
|
|
27070
|
+
//#endregion
|
|
27071
|
+
//#region ../../node_modules/.pnpm/character-entities@2.0.2/node_modules/character-entities/index.js
|
|
27072
|
+
var characterEntities;
|
|
27073
|
+
var init_character_entities = __esmMin((() => {
|
|
27074
|
+
characterEntities = {
|
|
27075
|
+
AElig: "Æ",
|
|
27076
|
+
AMP: "&",
|
|
27077
|
+
Aacute: "Á",
|
|
27078
|
+
Abreve: "Ă",
|
|
27079
|
+
Acirc: "Â",
|
|
27080
|
+
Acy: "А",
|
|
27081
|
+
Afr: "𝔄",
|
|
27082
|
+
Agrave: "À",
|
|
27083
|
+
Alpha: "Α",
|
|
27084
|
+
Amacr: "Ā",
|
|
27085
|
+
And: "⩓",
|
|
27086
|
+
Aogon: "Ą",
|
|
27087
|
+
Aopf: "𝔸",
|
|
27088
|
+
ApplyFunction: "",
|
|
27089
|
+
Aring: "Å",
|
|
27090
|
+
Ascr: "𝒜",
|
|
27091
|
+
Assign: "≔",
|
|
27092
|
+
Atilde: "Ã",
|
|
27093
|
+
Auml: "Ä",
|
|
27094
|
+
Backslash: "∖",
|
|
27095
|
+
Barv: "⫧",
|
|
27096
|
+
Barwed: "⌆",
|
|
27097
|
+
Bcy: "Б",
|
|
27098
|
+
Because: "∵",
|
|
27099
|
+
Bernoullis: "ℬ",
|
|
27100
|
+
Beta: "Β",
|
|
27101
|
+
Bfr: "𝔅",
|
|
27102
|
+
Bopf: "𝔹",
|
|
27103
|
+
Breve: "˘",
|
|
27104
|
+
Bscr: "ℬ",
|
|
27105
|
+
Bumpeq: "≎",
|
|
27106
|
+
CHcy: "Ч",
|
|
27107
|
+
COPY: "©",
|
|
27108
|
+
Cacute: "Ć",
|
|
27109
|
+
Cap: "⋒",
|
|
27110
|
+
CapitalDifferentialD: "ⅅ",
|
|
27111
|
+
Cayleys: "ℭ",
|
|
27112
|
+
Ccaron: "Č",
|
|
27113
|
+
Ccedil: "Ç",
|
|
27114
|
+
Ccirc: "Ĉ",
|
|
27115
|
+
Cconint: "∰",
|
|
27116
|
+
Cdot: "Ċ",
|
|
27117
|
+
Cedilla: "¸",
|
|
27118
|
+
CenterDot: "·",
|
|
27119
|
+
Cfr: "ℭ",
|
|
27120
|
+
Chi: "Χ",
|
|
27121
|
+
CircleDot: "⊙",
|
|
27122
|
+
CircleMinus: "⊖",
|
|
27123
|
+
CirclePlus: "⊕",
|
|
27124
|
+
CircleTimes: "⊗",
|
|
27125
|
+
ClockwiseContourIntegral: "∲",
|
|
27126
|
+
CloseCurlyDoubleQuote: "”",
|
|
27127
|
+
CloseCurlyQuote: "’",
|
|
27128
|
+
Colon: "∷",
|
|
27129
|
+
Colone: "⩴",
|
|
27130
|
+
Congruent: "≡",
|
|
27131
|
+
Conint: "∯",
|
|
27132
|
+
ContourIntegral: "∮",
|
|
27133
|
+
Copf: "ℂ",
|
|
27134
|
+
Coproduct: "∐",
|
|
27135
|
+
CounterClockwiseContourIntegral: "∳",
|
|
27136
|
+
Cross: "⨯",
|
|
27137
|
+
Cscr: "𝒞",
|
|
27138
|
+
Cup: "⋓",
|
|
27139
|
+
CupCap: "≍",
|
|
27140
|
+
DD: "ⅅ",
|
|
27141
|
+
DDotrahd: "⤑",
|
|
27142
|
+
DJcy: "Ђ",
|
|
27143
|
+
DScy: "Ѕ",
|
|
27144
|
+
DZcy: "Џ",
|
|
27145
|
+
Dagger: "‡",
|
|
27146
|
+
Darr: "↡",
|
|
27147
|
+
Dashv: "⫤",
|
|
27148
|
+
Dcaron: "Ď",
|
|
27149
|
+
Dcy: "Д",
|
|
27150
|
+
Del: "∇",
|
|
27151
|
+
Delta: "Δ",
|
|
27152
|
+
Dfr: "𝔇",
|
|
27153
|
+
DiacriticalAcute: "´",
|
|
27154
|
+
DiacriticalDot: "˙",
|
|
27155
|
+
DiacriticalDoubleAcute: "˝",
|
|
27156
|
+
DiacriticalGrave: "`",
|
|
27157
|
+
DiacriticalTilde: "˜",
|
|
27158
|
+
Diamond: "⋄",
|
|
27159
|
+
DifferentialD: "ⅆ",
|
|
27160
|
+
Dopf: "𝔻",
|
|
27161
|
+
Dot: "¨",
|
|
27162
|
+
DotDot: "⃜",
|
|
27163
|
+
DotEqual: "≐",
|
|
27164
|
+
DoubleContourIntegral: "∯",
|
|
27165
|
+
DoubleDot: "¨",
|
|
27166
|
+
DoubleDownArrow: "⇓",
|
|
27167
|
+
DoubleLeftArrow: "⇐",
|
|
27168
|
+
DoubleLeftRightArrow: "⇔",
|
|
27169
|
+
DoubleLeftTee: "⫤",
|
|
27170
|
+
DoubleLongLeftArrow: "⟸",
|
|
27171
|
+
DoubleLongLeftRightArrow: "⟺",
|
|
27172
|
+
DoubleLongRightArrow: "⟹",
|
|
27173
|
+
DoubleRightArrow: "⇒",
|
|
27174
|
+
DoubleRightTee: "⊨",
|
|
27175
|
+
DoubleUpArrow: "⇑",
|
|
27176
|
+
DoubleUpDownArrow: "⇕",
|
|
27177
|
+
DoubleVerticalBar: "∥",
|
|
27178
|
+
DownArrow: "↓",
|
|
27179
|
+
DownArrowBar: "⤓",
|
|
27180
|
+
DownArrowUpArrow: "⇵",
|
|
27181
|
+
DownBreve: "̑",
|
|
27182
|
+
DownLeftRightVector: "⥐",
|
|
27183
|
+
DownLeftTeeVector: "⥞",
|
|
27184
|
+
DownLeftVector: "↽",
|
|
27185
|
+
DownLeftVectorBar: "⥖",
|
|
27186
|
+
DownRightTeeVector: "⥟",
|
|
27187
|
+
DownRightVector: "⇁",
|
|
27188
|
+
DownRightVectorBar: "⥗",
|
|
27189
|
+
DownTee: "⊤",
|
|
27190
|
+
DownTeeArrow: "↧",
|
|
27191
|
+
Downarrow: "⇓",
|
|
27192
|
+
Dscr: "𝒟",
|
|
27193
|
+
Dstrok: "Đ",
|
|
27194
|
+
ENG: "Ŋ",
|
|
27195
|
+
ETH: "Ð",
|
|
27196
|
+
Eacute: "É",
|
|
27197
|
+
Ecaron: "Ě",
|
|
27198
|
+
Ecirc: "Ê",
|
|
27199
|
+
Ecy: "Э",
|
|
27200
|
+
Edot: "Ė",
|
|
27201
|
+
Efr: "𝔈",
|
|
27202
|
+
Egrave: "È",
|
|
27203
|
+
Element: "∈",
|
|
27204
|
+
Emacr: "Ē",
|
|
27205
|
+
EmptySmallSquare: "◻",
|
|
27206
|
+
EmptyVerySmallSquare: "▫",
|
|
27207
|
+
Eogon: "Ę",
|
|
27208
|
+
Eopf: "𝔼",
|
|
27209
|
+
Epsilon: "Ε",
|
|
27210
|
+
Equal: "⩵",
|
|
27211
|
+
EqualTilde: "≂",
|
|
27212
|
+
Equilibrium: "⇌",
|
|
27213
|
+
Escr: "ℰ",
|
|
27214
|
+
Esim: "⩳",
|
|
27215
|
+
Eta: "Η",
|
|
27216
|
+
Euml: "Ë",
|
|
27217
|
+
Exists: "∃",
|
|
27218
|
+
ExponentialE: "ⅇ",
|
|
27219
|
+
Fcy: "Ф",
|
|
27220
|
+
Ffr: "𝔉",
|
|
27221
|
+
FilledSmallSquare: "◼",
|
|
27222
|
+
FilledVerySmallSquare: "▪",
|
|
27223
|
+
Fopf: "𝔽",
|
|
27224
|
+
ForAll: "∀",
|
|
27225
|
+
Fouriertrf: "ℱ",
|
|
27226
|
+
Fscr: "ℱ",
|
|
27227
|
+
GJcy: "Ѓ",
|
|
27228
|
+
GT: ">",
|
|
27229
|
+
Gamma: "Γ",
|
|
27230
|
+
Gammad: "Ϝ",
|
|
27231
|
+
Gbreve: "Ğ",
|
|
27232
|
+
Gcedil: "Ģ",
|
|
27233
|
+
Gcirc: "Ĝ",
|
|
27234
|
+
Gcy: "Г",
|
|
27235
|
+
Gdot: "Ġ",
|
|
27236
|
+
Gfr: "𝔊",
|
|
27237
|
+
Gg: "⋙",
|
|
27238
|
+
Gopf: "𝔾",
|
|
27239
|
+
GreaterEqual: "≥",
|
|
27240
|
+
GreaterEqualLess: "⋛",
|
|
27241
|
+
GreaterFullEqual: "≧",
|
|
27242
|
+
GreaterGreater: "⪢",
|
|
27243
|
+
GreaterLess: "≷",
|
|
27244
|
+
GreaterSlantEqual: "⩾",
|
|
27245
|
+
GreaterTilde: "≳",
|
|
27246
|
+
Gscr: "𝒢",
|
|
27247
|
+
Gt: "≫",
|
|
27248
|
+
HARDcy: "Ъ",
|
|
27249
|
+
Hacek: "ˇ",
|
|
27250
|
+
Hat: "^",
|
|
27251
|
+
Hcirc: "Ĥ",
|
|
27252
|
+
Hfr: "ℌ",
|
|
27253
|
+
HilbertSpace: "ℋ",
|
|
27254
|
+
Hopf: "ℍ",
|
|
27255
|
+
HorizontalLine: "─",
|
|
27256
|
+
Hscr: "ℋ",
|
|
27257
|
+
Hstrok: "Ħ",
|
|
27258
|
+
HumpDownHump: "≎",
|
|
27259
|
+
HumpEqual: "≏",
|
|
27260
|
+
IEcy: "Е",
|
|
27261
|
+
IJlig: "IJ",
|
|
27262
|
+
IOcy: "Ё",
|
|
27263
|
+
Iacute: "Í",
|
|
27264
|
+
Icirc: "Î",
|
|
27265
|
+
Icy: "И",
|
|
27266
|
+
Idot: "İ",
|
|
27267
|
+
Ifr: "ℑ",
|
|
27268
|
+
Igrave: "Ì",
|
|
27269
|
+
Im: "ℑ",
|
|
27270
|
+
Imacr: "Ī",
|
|
27271
|
+
ImaginaryI: "ⅈ",
|
|
27272
|
+
Implies: "⇒",
|
|
27273
|
+
Int: "∬",
|
|
27274
|
+
Integral: "∫",
|
|
27275
|
+
Intersection: "⋂",
|
|
27276
|
+
InvisibleComma: "",
|
|
27277
|
+
InvisibleTimes: "",
|
|
27278
|
+
Iogon: "Į",
|
|
27279
|
+
Iopf: "𝕀",
|
|
27280
|
+
Iota: "Ι",
|
|
27281
|
+
Iscr: "ℐ",
|
|
27282
|
+
Itilde: "Ĩ",
|
|
27283
|
+
Iukcy: "І",
|
|
27284
|
+
Iuml: "Ï",
|
|
27285
|
+
Jcirc: "Ĵ",
|
|
27286
|
+
Jcy: "Й",
|
|
27287
|
+
Jfr: "𝔍",
|
|
27288
|
+
Jopf: "𝕁",
|
|
27289
|
+
Jscr: "𝒥",
|
|
27290
|
+
Jsercy: "Ј",
|
|
27291
|
+
Jukcy: "Є",
|
|
27292
|
+
KHcy: "Х",
|
|
27293
|
+
KJcy: "Ќ",
|
|
27294
|
+
Kappa: "Κ",
|
|
27295
|
+
Kcedil: "Ķ",
|
|
27296
|
+
Kcy: "К",
|
|
27297
|
+
Kfr: "𝔎",
|
|
27298
|
+
Kopf: "𝕂",
|
|
27299
|
+
Kscr: "𝒦",
|
|
27300
|
+
LJcy: "Љ",
|
|
27301
|
+
LT: "<",
|
|
27302
|
+
Lacute: "Ĺ",
|
|
27303
|
+
Lambda: "Λ",
|
|
27304
|
+
Lang: "⟪",
|
|
27305
|
+
Laplacetrf: "ℒ",
|
|
27306
|
+
Larr: "↞",
|
|
27307
|
+
Lcaron: "Ľ",
|
|
27308
|
+
Lcedil: "Ļ",
|
|
27309
|
+
Lcy: "Л",
|
|
27310
|
+
LeftAngleBracket: "⟨",
|
|
27311
|
+
LeftArrow: "←",
|
|
27312
|
+
LeftArrowBar: "⇤",
|
|
27313
|
+
LeftArrowRightArrow: "⇆",
|
|
27314
|
+
LeftCeiling: "⌈",
|
|
27315
|
+
LeftDoubleBracket: "⟦",
|
|
27316
|
+
LeftDownTeeVector: "⥡",
|
|
27317
|
+
LeftDownVector: "⇃",
|
|
27318
|
+
LeftDownVectorBar: "⥙",
|
|
27319
|
+
LeftFloor: "⌊",
|
|
27320
|
+
LeftRightArrow: "↔",
|
|
27321
|
+
LeftRightVector: "⥎",
|
|
27322
|
+
LeftTee: "⊣",
|
|
27323
|
+
LeftTeeArrow: "↤",
|
|
27324
|
+
LeftTeeVector: "⥚",
|
|
27325
|
+
LeftTriangle: "⊲",
|
|
27326
|
+
LeftTriangleBar: "⧏",
|
|
27327
|
+
LeftTriangleEqual: "⊴",
|
|
27328
|
+
LeftUpDownVector: "⥑",
|
|
27329
|
+
LeftUpTeeVector: "⥠",
|
|
27330
|
+
LeftUpVector: "↿",
|
|
27331
|
+
LeftUpVectorBar: "⥘",
|
|
27332
|
+
LeftVector: "↼",
|
|
27333
|
+
LeftVectorBar: "⥒",
|
|
27334
|
+
Leftarrow: "⇐",
|
|
27335
|
+
Leftrightarrow: "⇔",
|
|
27336
|
+
LessEqualGreater: "⋚",
|
|
27337
|
+
LessFullEqual: "≦",
|
|
27338
|
+
LessGreater: "≶",
|
|
27339
|
+
LessLess: "⪡",
|
|
27340
|
+
LessSlantEqual: "⩽",
|
|
27341
|
+
LessTilde: "≲",
|
|
27342
|
+
Lfr: "𝔏",
|
|
27343
|
+
Ll: "⋘",
|
|
27344
|
+
Lleftarrow: "⇚",
|
|
27345
|
+
Lmidot: "Ŀ",
|
|
27346
|
+
LongLeftArrow: "⟵",
|
|
27347
|
+
LongLeftRightArrow: "⟷",
|
|
27348
|
+
LongRightArrow: "⟶",
|
|
27349
|
+
Longleftarrow: "⟸",
|
|
27350
|
+
Longleftrightarrow: "⟺",
|
|
27351
|
+
Longrightarrow: "⟹",
|
|
27352
|
+
Lopf: "𝕃",
|
|
27353
|
+
LowerLeftArrow: "↙",
|
|
27354
|
+
LowerRightArrow: "↘",
|
|
27355
|
+
Lscr: "ℒ",
|
|
27356
|
+
Lsh: "↰",
|
|
27357
|
+
Lstrok: "Ł",
|
|
27358
|
+
Lt: "≪",
|
|
27359
|
+
Map: "⤅",
|
|
27360
|
+
Mcy: "М",
|
|
27361
|
+
MediumSpace: " ",
|
|
27362
|
+
Mellintrf: "ℳ",
|
|
27363
|
+
Mfr: "𝔐",
|
|
27364
|
+
MinusPlus: "∓",
|
|
27365
|
+
Mopf: "𝕄",
|
|
27366
|
+
Mscr: "ℳ",
|
|
27367
|
+
Mu: "Μ",
|
|
27368
|
+
NJcy: "Њ",
|
|
27369
|
+
Nacute: "Ń",
|
|
27370
|
+
Ncaron: "Ň",
|
|
27371
|
+
Ncedil: "Ņ",
|
|
27372
|
+
Ncy: "Н",
|
|
27373
|
+
NegativeMediumSpace: "",
|
|
27374
|
+
NegativeThickSpace: "",
|
|
27375
|
+
NegativeThinSpace: "",
|
|
27376
|
+
NegativeVeryThinSpace: "",
|
|
27377
|
+
NestedGreaterGreater: "≫",
|
|
27378
|
+
NestedLessLess: "≪",
|
|
27379
|
+
NewLine: "\n",
|
|
27380
|
+
Nfr: "𝔑",
|
|
27381
|
+
NoBreak: "",
|
|
27382
|
+
NonBreakingSpace: "\xA0",
|
|
27383
|
+
Nopf: "ℕ",
|
|
27384
|
+
Not: "⫬",
|
|
27385
|
+
NotCongruent: "≢",
|
|
27386
|
+
NotCupCap: "≭",
|
|
27387
|
+
NotDoubleVerticalBar: "∦",
|
|
27388
|
+
NotElement: "∉",
|
|
27389
|
+
NotEqual: "≠",
|
|
27390
|
+
NotEqualTilde: "≂̸",
|
|
27391
|
+
NotExists: "∄",
|
|
27392
|
+
NotGreater: "≯",
|
|
27393
|
+
NotGreaterEqual: "≱",
|
|
27394
|
+
NotGreaterFullEqual: "≧̸",
|
|
27395
|
+
NotGreaterGreater: "≫̸",
|
|
27396
|
+
NotGreaterLess: "≹",
|
|
27397
|
+
NotGreaterSlantEqual: "⩾̸",
|
|
27398
|
+
NotGreaterTilde: "≵",
|
|
27399
|
+
NotHumpDownHump: "≎̸",
|
|
27400
|
+
NotHumpEqual: "≏̸",
|
|
27401
|
+
NotLeftTriangle: "⋪",
|
|
27402
|
+
NotLeftTriangleBar: "⧏̸",
|
|
27403
|
+
NotLeftTriangleEqual: "⋬",
|
|
27404
|
+
NotLess: "≮",
|
|
27405
|
+
NotLessEqual: "≰",
|
|
27406
|
+
NotLessGreater: "≸",
|
|
27407
|
+
NotLessLess: "≪̸",
|
|
27408
|
+
NotLessSlantEqual: "⩽̸",
|
|
27409
|
+
NotLessTilde: "≴",
|
|
27410
|
+
NotNestedGreaterGreater: "⪢̸",
|
|
27411
|
+
NotNestedLessLess: "⪡̸",
|
|
27412
|
+
NotPrecedes: "⊀",
|
|
27413
|
+
NotPrecedesEqual: "⪯̸",
|
|
27414
|
+
NotPrecedesSlantEqual: "⋠",
|
|
27415
|
+
NotReverseElement: "∌",
|
|
27416
|
+
NotRightTriangle: "⋫",
|
|
27417
|
+
NotRightTriangleBar: "⧐̸",
|
|
27418
|
+
NotRightTriangleEqual: "⋭",
|
|
27419
|
+
NotSquareSubset: "⊏̸",
|
|
27420
|
+
NotSquareSubsetEqual: "⋢",
|
|
27421
|
+
NotSquareSuperset: "⊐̸",
|
|
27422
|
+
NotSquareSupersetEqual: "⋣",
|
|
27423
|
+
NotSubset: "⊂⃒",
|
|
27424
|
+
NotSubsetEqual: "⊈",
|
|
27425
|
+
NotSucceeds: "⊁",
|
|
27426
|
+
NotSucceedsEqual: "⪰̸",
|
|
27427
|
+
NotSucceedsSlantEqual: "⋡",
|
|
27428
|
+
NotSucceedsTilde: "≿̸",
|
|
27429
|
+
NotSuperset: "⊃⃒",
|
|
27430
|
+
NotSupersetEqual: "⊉",
|
|
27431
|
+
NotTilde: "≁",
|
|
27432
|
+
NotTildeEqual: "≄",
|
|
27433
|
+
NotTildeFullEqual: "≇",
|
|
27434
|
+
NotTildeTilde: "≉",
|
|
27435
|
+
NotVerticalBar: "∤",
|
|
27436
|
+
Nscr: "𝒩",
|
|
27437
|
+
Ntilde: "Ñ",
|
|
27438
|
+
Nu: "Ν",
|
|
27439
|
+
OElig: "Œ",
|
|
27440
|
+
Oacute: "Ó",
|
|
27441
|
+
Ocirc: "Ô",
|
|
27442
|
+
Ocy: "О",
|
|
27443
|
+
Odblac: "Ő",
|
|
27444
|
+
Ofr: "𝔒",
|
|
27445
|
+
Ograve: "Ò",
|
|
27446
|
+
Omacr: "Ō",
|
|
27447
|
+
Omega: "Ω",
|
|
27448
|
+
Omicron: "Ο",
|
|
27449
|
+
Oopf: "𝕆",
|
|
27450
|
+
OpenCurlyDoubleQuote: "“",
|
|
27451
|
+
OpenCurlyQuote: "‘",
|
|
27452
|
+
Or: "⩔",
|
|
27453
|
+
Oscr: "𝒪",
|
|
27454
|
+
Oslash: "Ø",
|
|
27455
|
+
Otilde: "Õ",
|
|
27456
|
+
Otimes: "⨷",
|
|
27457
|
+
Ouml: "Ö",
|
|
27458
|
+
OverBar: "‾",
|
|
27459
|
+
OverBrace: "⏞",
|
|
27460
|
+
OverBracket: "⎴",
|
|
27461
|
+
OverParenthesis: "⏜",
|
|
27462
|
+
PartialD: "∂",
|
|
27463
|
+
Pcy: "П",
|
|
27464
|
+
Pfr: "𝔓",
|
|
27465
|
+
Phi: "Φ",
|
|
27466
|
+
Pi: "Π",
|
|
27467
|
+
PlusMinus: "±",
|
|
27468
|
+
Poincareplane: "ℌ",
|
|
27469
|
+
Popf: "ℙ",
|
|
27470
|
+
Pr: "⪻",
|
|
27471
|
+
Precedes: "≺",
|
|
27472
|
+
PrecedesEqual: "⪯",
|
|
27473
|
+
PrecedesSlantEqual: "≼",
|
|
27474
|
+
PrecedesTilde: "≾",
|
|
27475
|
+
Prime: "″",
|
|
27476
|
+
Product: "∏",
|
|
27477
|
+
Proportion: "∷",
|
|
27478
|
+
Proportional: "∝",
|
|
27479
|
+
Pscr: "𝒫",
|
|
27480
|
+
Psi: "Ψ",
|
|
27481
|
+
QUOT: "\"",
|
|
27482
|
+
Qfr: "𝔔",
|
|
27483
|
+
Qopf: "ℚ",
|
|
27484
|
+
Qscr: "𝒬",
|
|
27485
|
+
RBarr: "⤐",
|
|
27486
|
+
REG: "®",
|
|
27487
|
+
Racute: "Ŕ",
|
|
27488
|
+
Rang: "⟫",
|
|
27489
|
+
Rarr: "↠",
|
|
27490
|
+
Rarrtl: "⤖",
|
|
27491
|
+
Rcaron: "Ř",
|
|
27492
|
+
Rcedil: "Ŗ",
|
|
27493
|
+
Rcy: "Р",
|
|
27494
|
+
Re: "ℜ",
|
|
27495
|
+
ReverseElement: "∋",
|
|
27496
|
+
ReverseEquilibrium: "⇋",
|
|
27497
|
+
ReverseUpEquilibrium: "⥯",
|
|
27498
|
+
Rfr: "ℜ",
|
|
27499
|
+
Rho: "Ρ",
|
|
27500
|
+
RightAngleBracket: "⟩",
|
|
27501
|
+
RightArrow: "→",
|
|
27502
|
+
RightArrowBar: "⇥",
|
|
27503
|
+
RightArrowLeftArrow: "⇄",
|
|
27504
|
+
RightCeiling: "⌉",
|
|
27505
|
+
RightDoubleBracket: "⟧",
|
|
27506
|
+
RightDownTeeVector: "⥝",
|
|
27507
|
+
RightDownVector: "⇂",
|
|
27508
|
+
RightDownVectorBar: "⥕",
|
|
27509
|
+
RightFloor: "⌋",
|
|
27510
|
+
RightTee: "⊢",
|
|
27511
|
+
RightTeeArrow: "↦",
|
|
27512
|
+
RightTeeVector: "⥛",
|
|
27513
|
+
RightTriangle: "⊳",
|
|
27514
|
+
RightTriangleBar: "⧐",
|
|
27515
|
+
RightTriangleEqual: "⊵",
|
|
27516
|
+
RightUpDownVector: "⥏",
|
|
27517
|
+
RightUpTeeVector: "⥜",
|
|
27518
|
+
RightUpVector: "↾",
|
|
27519
|
+
RightUpVectorBar: "⥔",
|
|
27520
|
+
RightVector: "⇀",
|
|
27521
|
+
RightVectorBar: "⥓",
|
|
27522
|
+
Rightarrow: "⇒",
|
|
27523
|
+
Ropf: "ℝ",
|
|
27524
|
+
RoundImplies: "⥰",
|
|
27525
|
+
Rrightarrow: "⇛",
|
|
27526
|
+
Rscr: "ℛ",
|
|
27527
|
+
Rsh: "↱",
|
|
27528
|
+
RuleDelayed: "⧴",
|
|
27529
|
+
SHCHcy: "Щ",
|
|
27530
|
+
SHcy: "Ш",
|
|
27531
|
+
SOFTcy: "Ь",
|
|
27532
|
+
Sacute: "Ś",
|
|
27533
|
+
Sc: "⪼",
|
|
27534
|
+
Scaron: "Š",
|
|
27535
|
+
Scedil: "Ş",
|
|
27536
|
+
Scirc: "Ŝ",
|
|
27537
|
+
Scy: "С",
|
|
27538
|
+
Sfr: "𝔖",
|
|
27539
|
+
ShortDownArrow: "↓",
|
|
27540
|
+
ShortLeftArrow: "←",
|
|
27541
|
+
ShortRightArrow: "→",
|
|
27542
|
+
ShortUpArrow: "↑",
|
|
27543
|
+
Sigma: "Σ",
|
|
27544
|
+
SmallCircle: "∘",
|
|
27545
|
+
Sopf: "𝕊",
|
|
27546
|
+
Sqrt: "√",
|
|
27547
|
+
Square: "□",
|
|
27548
|
+
SquareIntersection: "⊓",
|
|
27549
|
+
SquareSubset: "⊏",
|
|
27550
|
+
SquareSubsetEqual: "⊑",
|
|
27551
|
+
SquareSuperset: "⊐",
|
|
27552
|
+
SquareSupersetEqual: "⊒",
|
|
27553
|
+
SquareUnion: "⊔",
|
|
27554
|
+
Sscr: "𝒮",
|
|
27555
|
+
Star: "⋆",
|
|
27556
|
+
Sub: "⋐",
|
|
27557
|
+
Subset: "⋐",
|
|
27558
|
+
SubsetEqual: "⊆",
|
|
27559
|
+
Succeeds: "≻",
|
|
27560
|
+
SucceedsEqual: "⪰",
|
|
27561
|
+
SucceedsSlantEqual: "≽",
|
|
27562
|
+
SucceedsTilde: "≿",
|
|
27563
|
+
SuchThat: "∋",
|
|
27564
|
+
Sum: "∑",
|
|
27565
|
+
Sup: "⋑",
|
|
27566
|
+
Superset: "⊃",
|
|
27567
|
+
SupersetEqual: "⊇",
|
|
27568
|
+
Supset: "⋑",
|
|
27569
|
+
THORN: "Þ",
|
|
27570
|
+
TRADE: "™",
|
|
27571
|
+
TSHcy: "Ћ",
|
|
27572
|
+
TScy: "Ц",
|
|
27573
|
+
Tab: " ",
|
|
27574
|
+
Tau: "Τ",
|
|
27575
|
+
Tcaron: "Ť",
|
|
27576
|
+
Tcedil: "Ţ",
|
|
27577
|
+
Tcy: "Т",
|
|
27578
|
+
Tfr: "𝔗",
|
|
27579
|
+
Therefore: "∴",
|
|
27580
|
+
Theta: "Θ",
|
|
27581
|
+
ThickSpace: " ",
|
|
27582
|
+
ThinSpace: " ",
|
|
27583
|
+
Tilde: "∼",
|
|
27584
|
+
TildeEqual: "≃",
|
|
27585
|
+
TildeFullEqual: "≅",
|
|
27586
|
+
TildeTilde: "≈",
|
|
27587
|
+
Topf: "𝕋",
|
|
27588
|
+
TripleDot: "⃛",
|
|
27589
|
+
Tscr: "𝒯",
|
|
27590
|
+
Tstrok: "Ŧ",
|
|
27591
|
+
Uacute: "Ú",
|
|
27592
|
+
Uarr: "↟",
|
|
27593
|
+
Uarrocir: "⥉",
|
|
27594
|
+
Ubrcy: "Ў",
|
|
27595
|
+
Ubreve: "Ŭ",
|
|
27596
|
+
Ucirc: "Û",
|
|
27597
|
+
Ucy: "У",
|
|
27598
|
+
Udblac: "Ű",
|
|
27599
|
+
Ufr: "𝔘",
|
|
27600
|
+
Ugrave: "Ù",
|
|
27601
|
+
Umacr: "Ū",
|
|
27602
|
+
UnderBar: "_",
|
|
27603
|
+
UnderBrace: "⏟",
|
|
27604
|
+
UnderBracket: "⎵",
|
|
27605
|
+
UnderParenthesis: "⏝",
|
|
27606
|
+
Union: "⋃",
|
|
27607
|
+
UnionPlus: "⊎",
|
|
27608
|
+
Uogon: "Ų",
|
|
27609
|
+
Uopf: "𝕌",
|
|
27610
|
+
UpArrow: "↑",
|
|
27611
|
+
UpArrowBar: "⤒",
|
|
27612
|
+
UpArrowDownArrow: "⇅",
|
|
27613
|
+
UpDownArrow: "↕",
|
|
27614
|
+
UpEquilibrium: "⥮",
|
|
27615
|
+
UpTee: "⊥",
|
|
27616
|
+
UpTeeArrow: "↥",
|
|
27617
|
+
Uparrow: "⇑",
|
|
27618
|
+
Updownarrow: "⇕",
|
|
27619
|
+
UpperLeftArrow: "↖",
|
|
27620
|
+
UpperRightArrow: "↗",
|
|
27621
|
+
Upsi: "ϒ",
|
|
27622
|
+
Upsilon: "Υ",
|
|
27623
|
+
Uring: "Ů",
|
|
27624
|
+
Uscr: "𝒰",
|
|
27625
|
+
Utilde: "Ũ",
|
|
27626
|
+
Uuml: "Ü",
|
|
27627
|
+
VDash: "⊫",
|
|
27628
|
+
Vbar: "⫫",
|
|
27629
|
+
Vcy: "В",
|
|
27630
|
+
Vdash: "⊩",
|
|
27631
|
+
Vdashl: "⫦",
|
|
27632
|
+
Vee: "⋁",
|
|
27633
|
+
Verbar: "‖",
|
|
27634
|
+
Vert: "‖",
|
|
27635
|
+
VerticalBar: "∣",
|
|
27636
|
+
VerticalLine: "|",
|
|
27637
|
+
VerticalSeparator: "❘",
|
|
27638
|
+
VerticalTilde: "≀",
|
|
27639
|
+
VeryThinSpace: " ",
|
|
27640
|
+
Vfr: "𝔙",
|
|
27641
|
+
Vopf: "𝕍",
|
|
27642
|
+
Vscr: "𝒱",
|
|
27643
|
+
Vvdash: "⊪",
|
|
27644
|
+
Wcirc: "Ŵ",
|
|
27645
|
+
Wedge: "⋀",
|
|
27646
|
+
Wfr: "𝔚",
|
|
27647
|
+
Wopf: "𝕎",
|
|
27648
|
+
Wscr: "𝒲",
|
|
27649
|
+
Xfr: "𝔛",
|
|
27650
|
+
Xi: "Ξ",
|
|
27651
|
+
Xopf: "𝕏",
|
|
27652
|
+
Xscr: "𝒳",
|
|
27653
|
+
YAcy: "Я",
|
|
27654
|
+
YIcy: "Ї",
|
|
27655
|
+
YUcy: "Ю",
|
|
27656
|
+
Yacute: "Ý",
|
|
27657
|
+
Ycirc: "Ŷ",
|
|
27658
|
+
Ycy: "Ы",
|
|
27659
|
+
Yfr: "𝔜",
|
|
27660
|
+
Yopf: "𝕐",
|
|
27661
|
+
Yscr: "𝒴",
|
|
27662
|
+
Yuml: "Ÿ",
|
|
27663
|
+
ZHcy: "Ж",
|
|
27664
|
+
Zacute: "Ź",
|
|
27665
|
+
Zcaron: "Ž",
|
|
27666
|
+
Zcy: "З",
|
|
27667
|
+
Zdot: "Ż",
|
|
27668
|
+
ZeroWidthSpace: "",
|
|
27669
|
+
Zeta: "Ζ",
|
|
27670
|
+
Zfr: "ℨ",
|
|
27671
|
+
Zopf: "ℤ",
|
|
27672
|
+
Zscr: "𝒵",
|
|
27673
|
+
aacute: "á",
|
|
27674
|
+
abreve: "ă",
|
|
27675
|
+
ac: "∾",
|
|
27676
|
+
acE: "∾̳",
|
|
27677
|
+
acd: "∿",
|
|
27678
|
+
acirc: "â",
|
|
27679
|
+
acute: "´",
|
|
27680
|
+
acy: "а",
|
|
27681
|
+
aelig: "æ",
|
|
27682
|
+
af: "",
|
|
27683
|
+
afr: "𝔞",
|
|
27684
|
+
agrave: "à",
|
|
27685
|
+
alefsym: "ℵ",
|
|
27686
|
+
aleph: "ℵ",
|
|
27687
|
+
alpha: "α",
|
|
27688
|
+
amacr: "ā",
|
|
27689
|
+
amalg: "⨿",
|
|
27690
|
+
amp: "&",
|
|
27691
|
+
and: "∧",
|
|
27692
|
+
andand: "⩕",
|
|
27693
|
+
andd: "⩜",
|
|
27694
|
+
andslope: "⩘",
|
|
27695
|
+
andv: "⩚",
|
|
27696
|
+
ang: "∠",
|
|
27697
|
+
ange: "⦤",
|
|
27698
|
+
angle: "∠",
|
|
27699
|
+
angmsd: "∡",
|
|
27700
|
+
angmsdaa: "⦨",
|
|
27701
|
+
angmsdab: "⦩",
|
|
27702
|
+
angmsdac: "⦪",
|
|
27703
|
+
angmsdad: "⦫",
|
|
27704
|
+
angmsdae: "⦬",
|
|
27705
|
+
angmsdaf: "⦭",
|
|
27706
|
+
angmsdag: "⦮",
|
|
27707
|
+
angmsdah: "⦯",
|
|
27708
|
+
angrt: "∟",
|
|
27709
|
+
angrtvb: "⊾",
|
|
27710
|
+
angrtvbd: "⦝",
|
|
27711
|
+
angsph: "∢",
|
|
27712
|
+
angst: "Å",
|
|
27713
|
+
angzarr: "⍼",
|
|
27714
|
+
aogon: "ą",
|
|
27715
|
+
aopf: "𝕒",
|
|
27716
|
+
ap: "≈",
|
|
27717
|
+
apE: "⩰",
|
|
27718
|
+
apacir: "⩯",
|
|
27719
|
+
ape: "≊",
|
|
27720
|
+
apid: "≋",
|
|
27721
|
+
apos: "'",
|
|
27722
|
+
approx: "≈",
|
|
27723
|
+
approxeq: "≊",
|
|
27724
|
+
aring: "å",
|
|
27725
|
+
ascr: "𝒶",
|
|
27726
|
+
ast: "*",
|
|
27727
|
+
asymp: "≈",
|
|
27728
|
+
asympeq: "≍",
|
|
27729
|
+
atilde: "ã",
|
|
27730
|
+
auml: "ä",
|
|
27731
|
+
awconint: "∳",
|
|
27732
|
+
awint: "⨑",
|
|
27733
|
+
bNot: "⫭",
|
|
27734
|
+
backcong: "≌",
|
|
27735
|
+
backepsilon: "϶",
|
|
27736
|
+
backprime: "‵",
|
|
27737
|
+
backsim: "∽",
|
|
27738
|
+
backsimeq: "⋍",
|
|
27739
|
+
barvee: "⊽",
|
|
27740
|
+
barwed: "⌅",
|
|
27741
|
+
barwedge: "⌅",
|
|
27742
|
+
bbrk: "⎵",
|
|
27743
|
+
bbrktbrk: "⎶",
|
|
27744
|
+
bcong: "≌",
|
|
27745
|
+
bcy: "б",
|
|
27746
|
+
bdquo: "„",
|
|
27747
|
+
becaus: "∵",
|
|
27748
|
+
because: "∵",
|
|
27749
|
+
bemptyv: "⦰",
|
|
27750
|
+
bepsi: "϶",
|
|
27751
|
+
bernou: "ℬ",
|
|
27752
|
+
beta: "β",
|
|
27753
|
+
beth: "ℶ",
|
|
27754
|
+
between: "≬",
|
|
27755
|
+
bfr: "𝔟",
|
|
27756
|
+
bigcap: "⋂",
|
|
27757
|
+
bigcirc: "◯",
|
|
27758
|
+
bigcup: "⋃",
|
|
27759
|
+
bigodot: "⨀",
|
|
27760
|
+
bigoplus: "⨁",
|
|
27761
|
+
bigotimes: "⨂",
|
|
27762
|
+
bigsqcup: "⨆",
|
|
27763
|
+
bigstar: "★",
|
|
27764
|
+
bigtriangledown: "▽",
|
|
27765
|
+
bigtriangleup: "△",
|
|
27766
|
+
biguplus: "⨄",
|
|
27767
|
+
bigvee: "⋁",
|
|
27768
|
+
bigwedge: "⋀",
|
|
27769
|
+
bkarow: "⤍",
|
|
27770
|
+
blacklozenge: "⧫",
|
|
27771
|
+
blacksquare: "▪",
|
|
27772
|
+
blacktriangle: "▴",
|
|
27773
|
+
blacktriangledown: "▾",
|
|
27774
|
+
blacktriangleleft: "◂",
|
|
27775
|
+
blacktriangleright: "▸",
|
|
27776
|
+
blank: "␣",
|
|
27777
|
+
blk12: "▒",
|
|
27778
|
+
blk14: "░",
|
|
27779
|
+
blk34: "▓",
|
|
27780
|
+
block: "█",
|
|
27781
|
+
bne: "=⃥",
|
|
27782
|
+
bnequiv: "≡⃥",
|
|
27783
|
+
bnot: "⌐",
|
|
27784
|
+
bopf: "𝕓",
|
|
27785
|
+
bot: "⊥",
|
|
27786
|
+
bottom: "⊥",
|
|
27787
|
+
bowtie: "⋈",
|
|
27788
|
+
boxDL: "╗",
|
|
27789
|
+
boxDR: "╔",
|
|
27790
|
+
boxDl: "╖",
|
|
27791
|
+
boxDr: "╓",
|
|
27792
|
+
boxH: "═",
|
|
27793
|
+
boxHD: "╦",
|
|
27794
|
+
boxHU: "╩",
|
|
27795
|
+
boxHd: "╤",
|
|
27796
|
+
boxHu: "╧",
|
|
27797
|
+
boxUL: "╝",
|
|
27798
|
+
boxUR: "╚",
|
|
27799
|
+
boxUl: "╜",
|
|
27800
|
+
boxUr: "╙",
|
|
27801
|
+
boxV: "║",
|
|
27802
|
+
boxVH: "╬",
|
|
27803
|
+
boxVL: "╣",
|
|
27804
|
+
boxVR: "╠",
|
|
27805
|
+
boxVh: "╫",
|
|
27806
|
+
boxVl: "╢",
|
|
27807
|
+
boxVr: "╟",
|
|
27808
|
+
boxbox: "⧉",
|
|
27809
|
+
boxdL: "╕",
|
|
27810
|
+
boxdR: "╒",
|
|
27811
|
+
boxdl: "┐",
|
|
27812
|
+
boxdr: "┌",
|
|
27813
|
+
boxh: "─",
|
|
27814
|
+
boxhD: "╥",
|
|
27815
|
+
boxhU: "╨",
|
|
27816
|
+
boxhd: "┬",
|
|
27817
|
+
boxhu: "┴",
|
|
27818
|
+
boxminus: "⊟",
|
|
27819
|
+
boxplus: "⊞",
|
|
27820
|
+
boxtimes: "⊠",
|
|
27821
|
+
boxuL: "╛",
|
|
27822
|
+
boxuR: "╘",
|
|
27823
|
+
boxul: "┘",
|
|
27824
|
+
boxur: "└",
|
|
27825
|
+
boxv: "│",
|
|
27826
|
+
boxvH: "╪",
|
|
27827
|
+
boxvL: "╡",
|
|
27828
|
+
boxvR: "╞",
|
|
27829
|
+
boxvh: "┼",
|
|
27830
|
+
boxvl: "┤",
|
|
27831
|
+
boxvr: "├",
|
|
27832
|
+
bprime: "‵",
|
|
27833
|
+
breve: "˘",
|
|
27834
|
+
brvbar: "¦",
|
|
27835
|
+
bscr: "𝒷",
|
|
27836
|
+
bsemi: "⁏",
|
|
27837
|
+
bsim: "∽",
|
|
27838
|
+
bsime: "⋍",
|
|
27839
|
+
bsol: "\\",
|
|
27840
|
+
bsolb: "⧅",
|
|
27841
|
+
bsolhsub: "⟈",
|
|
27842
|
+
bull: "•",
|
|
27843
|
+
bullet: "•",
|
|
27844
|
+
bump: "≎",
|
|
27845
|
+
bumpE: "⪮",
|
|
27846
|
+
bumpe: "≏",
|
|
27847
|
+
bumpeq: "≏",
|
|
27848
|
+
cacute: "ć",
|
|
27849
|
+
cap: "∩",
|
|
27850
|
+
capand: "⩄",
|
|
27851
|
+
capbrcup: "⩉",
|
|
27852
|
+
capcap: "⩋",
|
|
27853
|
+
capcup: "⩇",
|
|
27854
|
+
capdot: "⩀",
|
|
27855
|
+
caps: "∩︀",
|
|
27856
|
+
caret: "⁁",
|
|
27857
|
+
caron: "ˇ",
|
|
27858
|
+
ccaps: "⩍",
|
|
27859
|
+
ccaron: "č",
|
|
27860
|
+
ccedil: "ç",
|
|
27861
|
+
ccirc: "ĉ",
|
|
27862
|
+
ccups: "⩌",
|
|
27863
|
+
ccupssm: "⩐",
|
|
27864
|
+
cdot: "ċ",
|
|
27865
|
+
cedil: "¸",
|
|
27866
|
+
cemptyv: "⦲",
|
|
27867
|
+
cent: "¢",
|
|
27868
|
+
centerdot: "·",
|
|
27869
|
+
cfr: "𝔠",
|
|
27870
|
+
chcy: "ч",
|
|
27871
|
+
check: "✓",
|
|
27872
|
+
checkmark: "✓",
|
|
27873
|
+
chi: "χ",
|
|
27874
|
+
cir: "○",
|
|
27875
|
+
cirE: "⧃",
|
|
27876
|
+
circ: "ˆ",
|
|
27877
|
+
circeq: "≗",
|
|
27878
|
+
circlearrowleft: "↺",
|
|
27879
|
+
circlearrowright: "↻",
|
|
27880
|
+
circledR: "®",
|
|
27881
|
+
circledS: "Ⓢ",
|
|
27882
|
+
circledast: "⊛",
|
|
27883
|
+
circledcirc: "⊚",
|
|
27884
|
+
circleddash: "⊝",
|
|
27885
|
+
cire: "≗",
|
|
27886
|
+
cirfnint: "⨐",
|
|
27887
|
+
cirmid: "⫯",
|
|
27888
|
+
cirscir: "⧂",
|
|
27889
|
+
clubs: "♣",
|
|
27890
|
+
clubsuit: "♣",
|
|
27891
|
+
colon: ":",
|
|
27892
|
+
colone: "≔",
|
|
27893
|
+
coloneq: "≔",
|
|
27894
|
+
comma: ",",
|
|
27895
|
+
commat: "@",
|
|
27896
|
+
comp: "∁",
|
|
27897
|
+
compfn: "∘",
|
|
27898
|
+
complement: "∁",
|
|
27899
|
+
complexes: "ℂ",
|
|
27900
|
+
cong: "≅",
|
|
27901
|
+
congdot: "⩭",
|
|
27902
|
+
conint: "∮",
|
|
27903
|
+
copf: "𝕔",
|
|
27904
|
+
coprod: "∐",
|
|
27905
|
+
copy: "©",
|
|
27906
|
+
copysr: "℗",
|
|
27907
|
+
crarr: "↵",
|
|
27908
|
+
cross: "✗",
|
|
27909
|
+
cscr: "𝒸",
|
|
27910
|
+
csub: "⫏",
|
|
27911
|
+
csube: "⫑",
|
|
27912
|
+
csup: "⫐",
|
|
27913
|
+
csupe: "⫒",
|
|
27914
|
+
ctdot: "⋯",
|
|
27915
|
+
cudarrl: "⤸",
|
|
27916
|
+
cudarrr: "⤵",
|
|
27917
|
+
cuepr: "⋞",
|
|
27918
|
+
cuesc: "⋟",
|
|
27919
|
+
cularr: "↶",
|
|
27920
|
+
cularrp: "⤽",
|
|
27921
|
+
cup: "∪",
|
|
27922
|
+
cupbrcap: "⩈",
|
|
27923
|
+
cupcap: "⩆",
|
|
27924
|
+
cupcup: "⩊",
|
|
27925
|
+
cupdot: "⊍",
|
|
27926
|
+
cupor: "⩅",
|
|
27927
|
+
cups: "∪︀",
|
|
27928
|
+
curarr: "↷",
|
|
27929
|
+
curarrm: "⤼",
|
|
27930
|
+
curlyeqprec: "⋞",
|
|
27931
|
+
curlyeqsucc: "⋟",
|
|
27932
|
+
curlyvee: "⋎",
|
|
27933
|
+
curlywedge: "⋏",
|
|
27934
|
+
curren: "¤",
|
|
27935
|
+
curvearrowleft: "↶",
|
|
27936
|
+
curvearrowright: "↷",
|
|
27937
|
+
cuvee: "⋎",
|
|
27938
|
+
cuwed: "⋏",
|
|
27939
|
+
cwconint: "∲",
|
|
27940
|
+
cwint: "∱",
|
|
27941
|
+
cylcty: "⌭",
|
|
27942
|
+
dArr: "⇓",
|
|
27943
|
+
dHar: "⥥",
|
|
27944
|
+
dagger: "†",
|
|
27945
|
+
daleth: "ℸ",
|
|
27946
|
+
darr: "↓",
|
|
27947
|
+
dash: "‐",
|
|
27948
|
+
dashv: "⊣",
|
|
27949
|
+
dbkarow: "⤏",
|
|
27950
|
+
dblac: "˝",
|
|
27951
|
+
dcaron: "ď",
|
|
27952
|
+
dcy: "д",
|
|
27953
|
+
dd: "ⅆ",
|
|
27954
|
+
ddagger: "‡",
|
|
27955
|
+
ddarr: "⇊",
|
|
27956
|
+
ddotseq: "⩷",
|
|
27957
|
+
deg: "°",
|
|
27958
|
+
delta: "δ",
|
|
27959
|
+
demptyv: "⦱",
|
|
27960
|
+
dfisht: "⥿",
|
|
27961
|
+
dfr: "𝔡",
|
|
27962
|
+
dharl: "⇃",
|
|
27963
|
+
dharr: "⇂",
|
|
27964
|
+
diam: "⋄",
|
|
27965
|
+
diamond: "⋄",
|
|
27966
|
+
diamondsuit: "♦",
|
|
27967
|
+
diams: "♦",
|
|
27968
|
+
die: "¨",
|
|
27969
|
+
digamma: "ϝ",
|
|
27970
|
+
disin: "⋲",
|
|
27971
|
+
div: "÷",
|
|
27972
|
+
divide: "÷",
|
|
27973
|
+
divideontimes: "⋇",
|
|
27974
|
+
divonx: "⋇",
|
|
27975
|
+
djcy: "ђ",
|
|
27976
|
+
dlcorn: "⌞",
|
|
27977
|
+
dlcrop: "⌍",
|
|
27978
|
+
dollar: "$",
|
|
27979
|
+
dopf: "𝕕",
|
|
27980
|
+
dot: "˙",
|
|
27981
|
+
doteq: "≐",
|
|
27982
|
+
doteqdot: "≑",
|
|
27983
|
+
dotminus: "∸",
|
|
27984
|
+
dotplus: "∔",
|
|
27985
|
+
dotsquare: "⊡",
|
|
27986
|
+
doublebarwedge: "⌆",
|
|
27987
|
+
downarrow: "↓",
|
|
27988
|
+
downdownarrows: "⇊",
|
|
27989
|
+
downharpoonleft: "⇃",
|
|
27990
|
+
downharpoonright: "⇂",
|
|
27991
|
+
drbkarow: "⤐",
|
|
27992
|
+
drcorn: "⌟",
|
|
27993
|
+
drcrop: "⌌",
|
|
27994
|
+
dscr: "𝒹",
|
|
27995
|
+
dscy: "ѕ",
|
|
27996
|
+
dsol: "⧶",
|
|
27997
|
+
dstrok: "đ",
|
|
27998
|
+
dtdot: "⋱",
|
|
27999
|
+
dtri: "▿",
|
|
28000
|
+
dtrif: "▾",
|
|
28001
|
+
duarr: "⇵",
|
|
28002
|
+
duhar: "⥯",
|
|
28003
|
+
dwangle: "⦦",
|
|
28004
|
+
dzcy: "џ",
|
|
28005
|
+
dzigrarr: "⟿",
|
|
28006
|
+
eDDot: "⩷",
|
|
28007
|
+
eDot: "≑",
|
|
28008
|
+
eacute: "é",
|
|
28009
|
+
easter: "⩮",
|
|
28010
|
+
ecaron: "ě",
|
|
28011
|
+
ecir: "≖",
|
|
28012
|
+
ecirc: "ê",
|
|
28013
|
+
ecolon: "≕",
|
|
28014
|
+
ecy: "э",
|
|
28015
|
+
edot: "ė",
|
|
28016
|
+
ee: "ⅇ",
|
|
28017
|
+
efDot: "≒",
|
|
28018
|
+
efr: "𝔢",
|
|
28019
|
+
eg: "⪚",
|
|
28020
|
+
egrave: "è",
|
|
28021
|
+
egs: "⪖",
|
|
28022
|
+
egsdot: "⪘",
|
|
28023
|
+
el: "⪙",
|
|
28024
|
+
elinters: "⏧",
|
|
28025
|
+
ell: "ℓ",
|
|
28026
|
+
els: "⪕",
|
|
28027
|
+
elsdot: "⪗",
|
|
28028
|
+
emacr: "ē",
|
|
28029
|
+
empty: "∅",
|
|
28030
|
+
emptyset: "∅",
|
|
28031
|
+
emptyv: "∅",
|
|
28032
|
+
emsp13: " ",
|
|
28033
|
+
emsp14: " ",
|
|
28034
|
+
emsp: " ",
|
|
28035
|
+
eng: "ŋ",
|
|
28036
|
+
ensp: " ",
|
|
28037
|
+
eogon: "ę",
|
|
28038
|
+
eopf: "𝕖",
|
|
28039
|
+
epar: "⋕",
|
|
28040
|
+
eparsl: "⧣",
|
|
28041
|
+
eplus: "⩱",
|
|
28042
|
+
epsi: "ε",
|
|
28043
|
+
epsilon: "ε",
|
|
28044
|
+
epsiv: "ϵ",
|
|
28045
|
+
eqcirc: "≖",
|
|
28046
|
+
eqcolon: "≕",
|
|
28047
|
+
eqsim: "≂",
|
|
28048
|
+
eqslantgtr: "⪖",
|
|
28049
|
+
eqslantless: "⪕",
|
|
28050
|
+
equals: "=",
|
|
28051
|
+
equest: "≟",
|
|
28052
|
+
equiv: "≡",
|
|
28053
|
+
equivDD: "⩸",
|
|
28054
|
+
eqvparsl: "⧥",
|
|
28055
|
+
erDot: "≓",
|
|
28056
|
+
erarr: "⥱",
|
|
28057
|
+
escr: "ℯ",
|
|
28058
|
+
esdot: "≐",
|
|
28059
|
+
esim: "≂",
|
|
28060
|
+
eta: "η",
|
|
28061
|
+
eth: "ð",
|
|
28062
|
+
euml: "ë",
|
|
28063
|
+
euro: "€",
|
|
28064
|
+
excl: "!",
|
|
28065
|
+
exist: "∃",
|
|
28066
|
+
expectation: "ℰ",
|
|
28067
|
+
exponentiale: "ⅇ",
|
|
28068
|
+
fallingdotseq: "≒",
|
|
28069
|
+
fcy: "ф",
|
|
28070
|
+
female: "♀",
|
|
28071
|
+
ffilig: "ffi",
|
|
28072
|
+
fflig: "ff",
|
|
28073
|
+
ffllig: "ffl",
|
|
28074
|
+
ffr: "𝔣",
|
|
28075
|
+
filig: "fi",
|
|
28076
|
+
fjlig: "fj",
|
|
28077
|
+
flat: "♭",
|
|
28078
|
+
fllig: "fl",
|
|
28079
|
+
fltns: "▱",
|
|
28080
|
+
fnof: "ƒ",
|
|
28081
|
+
fopf: "𝕗",
|
|
28082
|
+
forall: "∀",
|
|
28083
|
+
fork: "⋔",
|
|
28084
|
+
forkv: "⫙",
|
|
28085
|
+
fpartint: "⨍",
|
|
28086
|
+
frac12: "½",
|
|
28087
|
+
frac13: "⅓",
|
|
28088
|
+
frac14: "¼",
|
|
28089
|
+
frac15: "⅕",
|
|
28090
|
+
frac16: "⅙",
|
|
28091
|
+
frac18: "⅛",
|
|
28092
|
+
frac23: "⅔",
|
|
28093
|
+
frac25: "⅖",
|
|
28094
|
+
frac34: "¾",
|
|
28095
|
+
frac35: "⅗",
|
|
28096
|
+
frac38: "⅜",
|
|
28097
|
+
frac45: "⅘",
|
|
28098
|
+
frac56: "⅚",
|
|
28099
|
+
frac58: "⅝",
|
|
28100
|
+
frac78: "⅞",
|
|
28101
|
+
frasl: "⁄",
|
|
28102
|
+
frown: "⌢",
|
|
28103
|
+
fscr: "𝒻",
|
|
28104
|
+
gE: "≧",
|
|
28105
|
+
gEl: "⪌",
|
|
28106
|
+
gacute: "ǵ",
|
|
28107
|
+
gamma: "γ",
|
|
28108
|
+
gammad: "ϝ",
|
|
28109
|
+
gap: "⪆",
|
|
28110
|
+
gbreve: "ğ",
|
|
28111
|
+
gcirc: "ĝ",
|
|
28112
|
+
gcy: "г",
|
|
28113
|
+
gdot: "ġ",
|
|
28114
|
+
ge: "≥",
|
|
28115
|
+
gel: "⋛",
|
|
28116
|
+
geq: "≥",
|
|
28117
|
+
geqq: "≧",
|
|
28118
|
+
geqslant: "⩾",
|
|
28119
|
+
ges: "⩾",
|
|
28120
|
+
gescc: "⪩",
|
|
28121
|
+
gesdot: "⪀",
|
|
28122
|
+
gesdoto: "⪂",
|
|
28123
|
+
gesdotol: "⪄",
|
|
28124
|
+
gesl: "⋛︀",
|
|
28125
|
+
gesles: "⪔",
|
|
28126
|
+
gfr: "𝔤",
|
|
28127
|
+
gg: "≫",
|
|
28128
|
+
ggg: "⋙",
|
|
28129
|
+
gimel: "ℷ",
|
|
28130
|
+
gjcy: "ѓ",
|
|
28131
|
+
gl: "≷",
|
|
28132
|
+
glE: "⪒",
|
|
28133
|
+
gla: "⪥",
|
|
28134
|
+
glj: "⪤",
|
|
28135
|
+
gnE: "≩",
|
|
28136
|
+
gnap: "⪊",
|
|
28137
|
+
gnapprox: "⪊",
|
|
28138
|
+
gne: "⪈",
|
|
28139
|
+
gneq: "⪈",
|
|
28140
|
+
gneqq: "≩",
|
|
28141
|
+
gnsim: "⋧",
|
|
28142
|
+
gopf: "𝕘",
|
|
28143
|
+
grave: "`",
|
|
28144
|
+
gscr: "ℊ",
|
|
28145
|
+
gsim: "≳",
|
|
28146
|
+
gsime: "⪎",
|
|
28147
|
+
gsiml: "⪐",
|
|
28148
|
+
gt: ">",
|
|
28149
|
+
gtcc: "⪧",
|
|
28150
|
+
gtcir: "⩺",
|
|
28151
|
+
gtdot: "⋗",
|
|
28152
|
+
gtlPar: "⦕",
|
|
28153
|
+
gtquest: "⩼",
|
|
28154
|
+
gtrapprox: "⪆",
|
|
28155
|
+
gtrarr: "⥸",
|
|
28156
|
+
gtrdot: "⋗",
|
|
28157
|
+
gtreqless: "⋛",
|
|
28158
|
+
gtreqqless: "⪌",
|
|
28159
|
+
gtrless: "≷",
|
|
28160
|
+
gtrsim: "≳",
|
|
28161
|
+
gvertneqq: "≩︀",
|
|
28162
|
+
gvnE: "≩︀",
|
|
28163
|
+
hArr: "⇔",
|
|
28164
|
+
hairsp: " ",
|
|
28165
|
+
half: "½",
|
|
28166
|
+
hamilt: "ℋ",
|
|
28167
|
+
hardcy: "ъ",
|
|
28168
|
+
harr: "↔",
|
|
28169
|
+
harrcir: "⥈",
|
|
28170
|
+
harrw: "↭",
|
|
28171
|
+
hbar: "ℏ",
|
|
28172
|
+
hcirc: "ĥ",
|
|
28173
|
+
hearts: "♥",
|
|
28174
|
+
heartsuit: "♥",
|
|
28175
|
+
hellip: "…",
|
|
28176
|
+
hercon: "⊹",
|
|
28177
|
+
hfr: "𝔥",
|
|
28178
|
+
hksearow: "⤥",
|
|
28179
|
+
hkswarow: "⤦",
|
|
28180
|
+
hoarr: "⇿",
|
|
28181
|
+
homtht: "∻",
|
|
28182
|
+
hookleftarrow: "↩",
|
|
28183
|
+
hookrightarrow: "↪",
|
|
28184
|
+
hopf: "𝕙",
|
|
28185
|
+
horbar: "―",
|
|
28186
|
+
hscr: "𝒽",
|
|
28187
|
+
hslash: "ℏ",
|
|
28188
|
+
hstrok: "ħ",
|
|
28189
|
+
hybull: "⁃",
|
|
28190
|
+
hyphen: "‐",
|
|
28191
|
+
iacute: "í",
|
|
28192
|
+
ic: "",
|
|
28193
|
+
icirc: "î",
|
|
28194
|
+
icy: "и",
|
|
28195
|
+
iecy: "е",
|
|
28196
|
+
iexcl: "¡",
|
|
28197
|
+
iff: "⇔",
|
|
28198
|
+
ifr: "𝔦",
|
|
28199
|
+
igrave: "ì",
|
|
28200
|
+
ii: "ⅈ",
|
|
28201
|
+
iiiint: "⨌",
|
|
28202
|
+
iiint: "∭",
|
|
28203
|
+
iinfin: "⧜",
|
|
28204
|
+
iiota: "℩",
|
|
28205
|
+
ijlig: "ij",
|
|
28206
|
+
imacr: "ī",
|
|
28207
|
+
image: "ℑ",
|
|
28208
|
+
imagline: "ℐ",
|
|
28209
|
+
imagpart: "ℑ",
|
|
28210
|
+
imath: "ı",
|
|
28211
|
+
imof: "⊷",
|
|
28212
|
+
imped: "Ƶ",
|
|
28213
|
+
in: "∈",
|
|
28214
|
+
incare: "℅",
|
|
28215
|
+
infin: "∞",
|
|
28216
|
+
infintie: "⧝",
|
|
28217
|
+
inodot: "ı",
|
|
28218
|
+
int: "∫",
|
|
28219
|
+
intcal: "⊺",
|
|
28220
|
+
integers: "ℤ",
|
|
28221
|
+
intercal: "⊺",
|
|
28222
|
+
intlarhk: "⨗",
|
|
28223
|
+
intprod: "⨼",
|
|
28224
|
+
iocy: "ё",
|
|
28225
|
+
iogon: "į",
|
|
28226
|
+
iopf: "𝕚",
|
|
28227
|
+
iota: "ι",
|
|
28228
|
+
iprod: "⨼",
|
|
28229
|
+
iquest: "¿",
|
|
28230
|
+
iscr: "𝒾",
|
|
28231
|
+
isin: "∈",
|
|
28232
|
+
isinE: "⋹",
|
|
28233
|
+
isindot: "⋵",
|
|
28234
|
+
isins: "⋴",
|
|
28235
|
+
isinsv: "⋳",
|
|
28236
|
+
isinv: "∈",
|
|
28237
|
+
it: "",
|
|
28238
|
+
itilde: "ĩ",
|
|
28239
|
+
iukcy: "і",
|
|
28240
|
+
iuml: "ï",
|
|
28241
|
+
jcirc: "ĵ",
|
|
28242
|
+
jcy: "й",
|
|
28243
|
+
jfr: "𝔧",
|
|
28244
|
+
jmath: "ȷ",
|
|
28245
|
+
jopf: "𝕛",
|
|
28246
|
+
jscr: "𝒿",
|
|
28247
|
+
jsercy: "ј",
|
|
28248
|
+
jukcy: "є",
|
|
28249
|
+
kappa: "κ",
|
|
28250
|
+
kappav: "ϰ",
|
|
28251
|
+
kcedil: "ķ",
|
|
28252
|
+
kcy: "к",
|
|
28253
|
+
kfr: "𝔨",
|
|
28254
|
+
kgreen: "ĸ",
|
|
28255
|
+
khcy: "х",
|
|
28256
|
+
kjcy: "ќ",
|
|
28257
|
+
kopf: "𝕜",
|
|
28258
|
+
kscr: "𝓀",
|
|
28259
|
+
lAarr: "⇚",
|
|
28260
|
+
lArr: "⇐",
|
|
28261
|
+
lAtail: "⤛",
|
|
28262
|
+
lBarr: "⤎",
|
|
28263
|
+
lE: "≦",
|
|
28264
|
+
lEg: "⪋",
|
|
28265
|
+
lHar: "⥢",
|
|
28266
|
+
lacute: "ĺ",
|
|
28267
|
+
laemptyv: "⦴",
|
|
28268
|
+
lagran: "ℒ",
|
|
28269
|
+
lambda: "λ",
|
|
28270
|
+
lang: "⟨",
|
|
28271
|
+
langd: "⦑",
|
|
28272
|
+
langle: "⟨",
|
|
28273
|
+
lap: "⪅",
|
|
28274
|
+
laquo: "«",
|
|
28275
|
+
larr: "←",
|
|
28276
|
+
larrb: "⇤",
|
|
28277
|
+
larrbfs: "⤟",
|
|
28278
|
+
larrfs: "⤝",
|
|
28279
|
+
larrhk: "↩",
|
|
28280
|
+
larrlp: "↫",
|
|
28281
|
+
larrpl: "⤹",
|
|
28282
|
+
larrsim: "⥳",
|
|
28283
|
+
larrtl: "↢",
|
|
28284
|
+
lat: "⪫",
|
|
28285
|
+
latail: "⤙",
|
|
28286
|
+
late: "⪭",
|
|
28287
|
+
lates: "⪭︀",
|
|
28288
|
+
lbarr: "⤌",
|
|
28289
|
+
lbbrk: "❲",
|
|
28290
|
+
lbrace: "{",
|
|
28291
|
+
lbrack: "[",
|
|
28292
|
+
lbrke: "⦋",
|
|
28293
|
+
lbrksld: "⦏",
|
|
28294
|
+
lbrkslu: "⦍",
|
|
28295
|
+
lcaron: "ľ",
|
|
28296
|
+
lcedil: "ļ",
|
|
28297
|
+
lceil: "⌈",
|
|
28298
|
+
lcub: "{",
|
|
28299
|
+
lcy: "л",
|
|
28300
|
+
ldca: "⤶",
|
|
28301
|
+
ldquo: "“",
|
|
28302
|
+
ldquor: "„",
|
|
28303
|
+
ldrdhar: "⥧",
|
|
28304
|
+
ldrushar: "⥋",
|
|
28305
|
+
ldsh: "↲",
|
|
28306
|
+
le: "≤",
|
|
28307
|
+
leftarrow: "←",
|
|
28308
|
+
leftarrowtail: "↢",
|
|
28309
|
+
leftharpoondown: "↽",
|
|
28310
|
+
leftharpoonup: "↼",
|
|
28311
|
+
leftleftarrows: "⇇",
|
|
28312
|
+
leftrightarrow: "↔",
|
|
28313
|
+
leftrightarrows: "⇆",
|
|
28314
|
+
leftrightharpoons: "⇋",
|
|
28315
|
+
leftrightsquigarrow: "↭",
|
|
28316
|
+
leftthreetimes: "⋋",
|
|
28317
|
+
leg: "⋚",
|
|
28318
|
+
leq: "≤",
|
|
28319
|
+
leqq: "≦",
|
|
28320
|
+
leqslant: "⩽",
|
|
28321
|
+
les: "⩽",
|
|
28322
|
+
lescc: "⪨",
|
|
28323
|
+
lesdot: "⩿",
|
|
28324
|
+
lesdoto: "⪁",
|
|
28325
|
+
lesdotor: "⪃",
|
|
28326
|
+
lesg: "⋚︀",
|
|
28327
|
+
lesges: "⪓",
|
|
28328
|
+
lessapprox: "⪅",
|
|
28329
|
+
lessdot: "⋖",
|
|
28330
|
+
lesseqgtr: "⋚",
|
|
28331
|
+
lesseqqgtr: "⪋",
|
|
28332
|
+
lessgtr: "≶",
|
|
28333
|
+
lesssim: "≲",
|
|
28334
|
+
lfisht: "⥼",
|
|
28335
|
+
lfloor: "⌊",
|
|
28336
|
+
lfr: "𝔩",
|
|
28337
|
+
lg: "≶",
|
|
28338
|
+
lgE: "⪑",
|
|
28339
|
+
lhard: "↽",
|
|
28340
|
+
lharu: "↼",
|
|
28341
|
+
lharul: "⥪",
|
|
28342
|
+
lhblk: "▄",
|
|
28343
|
+
ljcy: "љ",
|
|
28344
|
+
ll: "≪",
|
|
28345
|
+
llarr: "⇇",
|
|
28346
|
+
llcorner: "⌞",
|
|
28347
|
+
llhard: "⥫",
|
|
28348
|
+
lltri: "◺",
|
|
28349
|
+
lmidot: "ŀ",
|
|
28350
|
+
lmoust: "⎰",
|
|
28351
|
+
lmoustache: "⎰",
|
|
28352
|
+
lnE: "≨",
|
|
28353
|
+
lnap: "⪉",
|
|
28354
|
+
lnapprox: "⪉",
|
|
28355
|
+
lne: "⪇",
|
|
28356
|
+
lneq: "⪇",
|
|
28357
|
+
lneqq: "≨",
|
|
28358
|
+
lnsim: "⋦",
|
|
28359
|
+
loang: "⟬",
|
|
28360
|
+
loarr: "⇽",
|
|
28361
|
+
lobrk: "⟦",
|
|
28362
|
+
longleftarrow: "⟵",
|
|
28363
|
+
longleftrightarrow: "⟷",
|
|
28364
|
+
longmapsto: "⟼",
|
|
28365
|
+
longrightarrow: "⟶",
|
|
28366
|
+
looparrowleft: "↫",
|
|
28367
|
+
looparrowright: "↬",
|
|
28368
|
+
lopar: "⦅",
|
|
28369
|
+
lopf: "𝕝",
|
|
28370
|
+
loplus: "⨭",
|
|
28371
|
+
lotimes: "⨴",
|
|
28372
|
+
lowast: "∗",
|
|
28373
|
+
lowbar: "_",
|
|
28374
|
+
loz: "◊",
|
|
28375
|
+
lozenge: "◊",
|
|
28376
|
+
lozf: "⧫",
|
|
28377
|
+
lpar: "(",
|
|
28378
|
+
lparlt: "⦓",
|
|
28379
|
+
lrarr: "⇆",
|
|
28380
|
+
lrcorner: "⌟",
|
|
28381
|
+
lrhar: "⇋",
|
|
28382
|
+
lrhard: "⥭",
|
|
28383
|
+
lrm: "",
|
|
28384
|
+
lrtri: "⊿",
|
|
28385
|
+
lsaquo: "‹",
|
|
28386
|
+
lscr: "𝓁",
|
|
28387
|
+
lsh: "↰",
|
|
28388
|
+
lsim: "≲",
|
|
28389
|
+
lsime: "⪍",
|
|
28390
|
+
lsimg: "⪏",
|
|
28391
|
+
lsqb: "[",
|
|
28392
|
+
lsquo: "‘",
|
|
28393
|
+
lsquor: "‚",
|
|
28394
|
+
lstrok: "ł",
|
|
28395
|
+
lt: "<",
|
|
28396
|
+
ltcc: "⪦",
|
|
28397
|
+
ltcir: "⩹",
|
|
28398
|
+
ltdot: "⋖",
|
|
28399
|
+
lthree: "⋋",
|
|
28400
|
+
ltimes: "⋉",
|
|
28401
|
+
ltlarr: "⥶",
|
|
28402
|
+
ltquest: "⩻",
|
|
28403
|
+
ltrPar: "⦖",
|
|
28404
|
+
ltri: "◃",
|
|
28405
|
+
ltrie: "⊴",
|
|
28406
|
+
ltrif: "◂",
|
|
28407
|
+
lurdshar: "⥊",
|
|
28408
|
+
luruhar: "⥦",
|
|
28409
|
+
lvertneqq: "≨︀",
|
|
28410
|
+
lvnE: "≨︀",
|
|
28411
|
+
mDDot: "∺",
|
|
28412
|
+
macr: "¯",
|
|
28413
|
+
male: "♂",
|
|
28414
|
+
malt: "✠",
|
|
28415
|
+
maltese: "✠",
|
|
28416
|
+
map: "↦",
|
|
28417
|
+
mapsto: "↦",
|
|
28418
|
+
mapstodown: "↧",
|
|
28419
|
+
mapstoleft: "↤",
|
|
28420
|
+
mapstoup: "↥",
|
|
28421
|
+
marker: "▮",
|
|
28422
|
+
mcomma: "⨩",
|
|
28423
|
+
mcy: "м",
|
|
28424
|
+
mdash: "—",
|
|
28425
|
+
measuredangle: "∡",
|
|
28426
|
+
mfr: "𝔪",
|
|
28427
|
+
mho: "℧",
|
|
28428
|
+
micro: "µ",
|
|
28429
|
+
mid: "∣",
|
|
28430
|
+
midast: "*",
|
|
28431
|
+
midcir: "⫰",
|
|
28432
|
+
middot: "·",
|
|
28433
|
+
minus: "−",
|
|
28434
|
+
minusb: "⊟",
|
|
28435
|
+
minusd: "∸",
|
|
28436
|
+
minusdu: "⨪",
|
|
28437
|
+
mlcp: "⫛",
|
|
28438
|
+
mldr: "…",
|
|
28439
|
+
mnplus: "∓",
|
|
28440
|
+
models: "⊧",
|
|
28441
|
+
mopf: "𝕞",
|
|
28442
|
+
mp: "∓",
|
|
28443
|
+
mscr: "𝓂",
|
|
28444
|
+
mstpos: "∾",
|
|
28445
|
+
mu: "μ",
|
|
28446
|
+
multimap: "⊸",
|
|
28447
|
+
mumap: "⊸",
|
|
28448
|
+
nGg: "⋙̸",
|
|
28449
|
+
nGt: "≫⃒",
|
|
28450
|
+
nGtv: "≫̸",
|
|
28451
|
+
nLeftarrow: "⇍",
|
|
28452
|
+
nLeftrightarrow: "⇎",
|
|
28453
|
+
nLl: "⋘̸",
|
|
28454
|
+
nLt: "≪⃒",
|
|
28455
|
+
nLtv: "≪̸",
|
|
28456
|
+
nRightarrow: "⇏",
|
|
28457
|
+
nVDash: "⊯",
|
|
28458
|
+
nVdash: "⊮",
|
|
28459
|
+
nabla: "∇",
|
|
28460
|
+
nacute: "ń",
|
|
28461
|
+
nang: "∠⃒",
|
|
28462
|
+
nap: "≉",
|
|
28463
|
+
napE: "⩰̸",
|
|
28464
|
+
napid: "≋̸",
|
|
28465
|
+
napos: "ʼn",
|
|
28466
|
+
napprox: "≉",
|
|
28467
|
+
natur: "♮",
|
|
28468
|
+
natural: "♮",
|
|
28469
|
+
naturals: "ℕ",
|
|
28470
|
+
nbsp: "\xA0",
|
|
28471
|
+
nbump: "≎̸",
|
|
28472
|
+
nbumpe: "≏̸",
|
|
28473
|
+
ncap: "⩃",
|
|
28474
|
+
ncaron: "ň",
|
|
28475
|
+
ncedil: "ņ",
|
|
28476
|
+
ncong: "≇",
|
|
28477
|
+
ncongdot: "⩭̸",
|
|
28478
|
+
ncup: "⩂",
|
|
28479
|
+
ncy: "н",
|
|
28480
|
+
ndash: "–",
|
|
28481
|
+
ne: "≠",
|
|
28482
|
+
neArr: "⇗",
|
|
28483
|
+
nearhk: "⤤",
|
|
28484
|
+
nearr: "↗",
|
|
28485
|
+
nearrow: "↗",
|
|
28486
|
+
nedot: "≐̸",
|
|
28487
|
+
nequiv: "≢",
|
|
28488
|
+
nesear: "⤨",
|
|
28489
|
+
nesim: "≂̸",
|
|
28490
|
+
nexist: "∄",
|
|
28491
|
+
nexists: "∄",
|
|
28492
|
+
nfr: "𝔫",
|
|
28493
|
+
ngE: "≧̸",
|
|
28494
|
+
nge: "≱",
|
|
28495
|
+
ngeq: "≱",
|
|
28496
|
+
ngeqq: "≧̸",
|
|
28497
|
+
ngeqslant: "⩾̸",
|
|
28498
|
+
nges: "⩾̸",
|
|
28499
|
+
ngsim: "≵",
|
|
28500
|
+
ngt: "≯",
|
|
28501
|
+
ngtr: "≯",
|
|
28502
|
+
nhArr: "⇎",
|
|
28503
|
+
nharr: "↮",
|
|
28504
|
+
nhpar: "⫲",
|
|
28505
|
+
ni: "∋",
|
|
28506
|
+
nis: "⋼",
|
|
28507
|
+
nisd: "⋺",
|
|
28508
|
+
niv: "∋",
|
|
28509
|
+
njcy: "њ",
|
|
28510
|
+
nlArr: "⇍",
|
|
28511
|
+
nlE: "≦̸",
|
|
28512
|
+
nlarr: "↚",
|
|
28513
|
+
nldr: "‥",
|
|
28514
|
+
nle: "≰",
|
|
28515
|
+
nleftarrow: "↚",
|
|
28516
|
+
nleftrightarrow: "↮",
|
|
28517
|
+
nleq: "≰",
|
|
28518
|
+
nleqq: "≦̸",
|
|
28519
|
+
nleqslant: "⩽̸",
|
|
28520
|
+
nles: "⩽̸",
|
|
28521
|
+
nless: "≮",
|
|
28522
|
+
nlsim: "≴",
|
|
28523
|
+
nlt: "≮",
|
|
28524
|
+
nltri: "⋪",
|
|
28525
|
+
nltrie: "⋬",
|
|
28526
|
+
nmid: "∤",
|
|
28527
|
+
nopf: "𝕟",
|
|
28528
|
+
not: "¬",
|
|
28529
|
+
notin: "∉",
|
|
28530
|
+
notinE: "⋹̸",
|
|
28531
|
+
notindot: "⋵̸",
|
|
28532
|
+
notinva: "∉",
|
|
28533
|
+
notinvb: "⋷",
|
|
28534
|
+
notinvc: "⋶",
|
|
28535
|
+
notni: "∌",
|
|
28536
|
+
notniva: "∌",
|
|
28537
|
+
notnivb: "⋾",
|
|
28538
|
+
notnivc: "⋽",
|
|
28539
|
+
npar: "∦",
|
|
28540
|
+
nparallel: "∦",
|
|
28541
|
+
nparsl: "⫽⃥",
|
|
28542
|
+
npart: "∂̸",
|
|
28543
|
+
npolint: "⨔",
|
|
28544
|
+
npr: "⊀",
|
|
28545
|
+
nprcue: "⋠",
|
|
28546
|
+
npre: "⪯̸",
|
|
28547
|
+
nprec: "⊀",
|
|
28548
|
+
npreceq: "⪯̸",
|
|
28549
|
+
nrArr: "⇏",
|
|
28550
|
+
nrarr: "↛",
|
|
28551
|
+
nrarrc: "⤳̸",
|
|
28552
|
+
nrarrw: "↝̸",
|
|
28553
|
+
nrightarrow: "↛",
|
|
28554
|
+
nrtri: "⋫",
|
|
28555
|
+
nrtrie: "⋭",
|
|
28556
|
+
nsc: "⊁",
|
|
28557
|
+
nsccue: "⋡",
|
|
28558
|
+
nsce: "⪰̸",
|
|
28559
|
+
nscr: "𝓃",
|
|
28560
|
+
nshortmid: "∤",
|
|
28561
|
+
nshortparallel: "∦",
|
|
28562
|
+
nsim: "≁",
|
|
28563
|
+
nsime: "≄",
|
|
28564
|
+
nsimeq: "≄",
|
|
28565
|
+
nsmid: "∤",
|
|
28566
|
+
nspar: "∦",
|
|
28567
|
+
nsqsube: "⋢",
|
|
28568
|
+
nsqsupe: "⋣",
|
|
28569
|
+
nsub: "⊄",
|
|
28570
|
+
nsubE: "⫅̸",
|
|
28571
|
+
nsube: "⊈",
|
|
28572
|
+
nsubset: "⊂⃒",
|
|
28573
|
+
nsubseteq: "⊈",
|
|
28574
|
+
nsubseteqq: "⫅̸",
|
|
28575
|
+
nsucc: "⊁",
|
|
28576
|
+
nsucceq: "⪰̸",
|
|
28577
|
+
nsup: "⊅",
|
|
28578
|
+
nsupE: "⫆̸",
|
|
28579
|
+
nsupe: "⊉",
|
|
28580
|
+
nsupset: "⊃⃒",
|
|
28581
|
+
nsupseteq: "⊉",
|
|
28582
|
+
nsupseteqq: "⫆̸",
|
|
28583
|
+
ntgl: "≹",
|
|
28584
|
+
ntilde: "ñ",
|
|
28585
|
+
ntlg: "≸",
|
|
28586
|
+
ntriangleleft: "⋪",
|
|
28587
|
+
ntrianglelefteq: "⋬",
|
|
28588
|
+
ntriangleright: "⋫",
|
|
28589
|
+
ntrianglerighteq: "⋭",
|
|
28590
|
+
nu: "ν",
|
|
28591
|
+
num: "#",
|
|
28592
|
+
numero: "№",
|
|
28593
|
+
numsp: " ",
|
|
28594
|
+
nvDash: "⊭",
|
|
28595
|
+
nvHarr: "⤄",
|
|
28596
|
+
nvap: "≍⃒",
|
|
28597
|
+
nvdash: "⊬",
|
|
28598
|
+
nvge: "≥⃒",
|
|
28599
|
+
nvgt: ">⃒",
|
|
28600
|
+
nvinfin: "⧞",
|
|
28601
|
+
nvlArr: "⤂",
|
|
28602
|
+
nvle: "≤⃒",
|
|
28603
|
+
nvlt: "<⃒",
|
|
28604
|
+
nvltrie: "⊴⃒",
|
|
28605
|
+
nvrArr: "⤃",
|
|
28606
|
+
nvrtrie: "⊵⃒",
|
|
28607
|
+
nvsim: "∼⃒",
|
|
28608
|
+
nwArr: "⇖",
|
|
28609
|
+
nwarhk: "⤣",
|
|
28610
|
+
nwarr: "↖",
|
|
28611
|
+
nwarrow: "↖",
|
|
28612
|
+
nwnear: "⤧",
|
|
28613
|
+
oS: "Ⓢ",
|
|
28614
|
+
oacute: "ó",
|
|
28615
|
+
oast: "⊛",
|
|
28616
|
+
ocir: "⊚",
|
|
28617
|
+
ocirc: "ô",
|
|
28618
|
+
ocy: "о",
|
|
28619
|
+
odash: "⊝",
|
|
28620
|
+
odblac: "ő",
|
|
28621
|
+
odiv: "⨸",
|
|
28622
|
+
odot: "⊙",
|
|
28623
|
+
odsold: "⦼",
|
|
28624
|
+
oelig: "œ",
|
|
28625
|
+
ofcir: "⦿",
|
|
28626
|
+
ofr: "𝔬",
|
|
28627
|
+
ogon: "˛",
|
|
28628
|
+
ograve: "ò",
|
|
28629
|
+
ogt: "⧁",
|
|
28630
|
+
ohbar: "⦵",
|
|
28631
|
+
ohm: "Ω",
|
|
28632
|
+
oint: "∮",
|
|
28633
|
+
olarr: "↺",
|
|
28634
|
+
olcir: "⦾",
|
|
28635
|
+
olcross: "⦻",
|
|
28636
|
+
oline: "‾",
|
|
28637
|
+
olt: "⧀",
|
|
28638
|
+
omacr: "ō",
|
|
28639
|
+
omega: "ω",
|
|
28640
|
+
omicron: "ο",
|
|
28641
|
+
omid: "⦶",
|
|
28642
|
+
ominus: "⊖",
|
|
28643
|
+
oopf: "𝕠",
|
|
28644
|
+
opar: "⦷",
|
|
28645
|
+
operp: "⦹",
|
|
28646
|
+
oplus: "⊕",
|
|
28647
|
+
or: "∨",
|
|
28648
|
+
orarr: "↻",
|
|
28649
|
+
ord: "⩝",
|
|
28650
|
+
order: "ℴ",
|
|
28651
|
+
orderof: "ℴ",
|
|
28652
|
+
ordf: "ª",
|
|
28653
|
+
ordm: "º",
|
|
28654
|
+
origof: "⊶",
|
|
28655
|
+
oror: "⩖",
|
|
28656
|
+
orslope: "⩗",
|
|
28657
|
+
orv: "⩛",
|
|
28658
|
+
oscr: "ℴ",
|
|
28659
|
+
oslash: "ø",
|
|
28660
|
+
osol: "⊘",
|
|
28661
|
+
otilde: "õ",
|
|
28662
|
+
otimes: "⊗",
|
|
28663
|
+
otimesas: "⨶",
|
|
28664
|
+
ouml: "ö",
|
|
28665
|
+
ovbar: "⌽",
|
|
28666
|
+
par: "∥",
|
|
28667
|
+
para: "¶",
|
|
28668
|
+
parallel: "∥",
|
|
28669
|
+
parsim: "⫳",
|
|
28670
|
+
parsl: "⫽",
|
|
28671
|
+
part: "∂",
|
|
28672
|
+
pcy: "п",
|
|
28673
|
+
percnt: "%",
|
|
28674
|
+
period: ".",
|
|
28675
|
+
permil: "‰",
|
|
28676
|
+
perp: "⊥",
|
|
28677
|
+
pertenk: "‱",
|
|
28678
|
+
pfr: "𝔭",
|
|
28679
|
+
phi: "φ",
|
|
28680
|
+
phiv: "ϕ",
|
|
28681
|
+
phmmat: "ℳ",
|
|
28682
|
+
phone: "☎",
|
|
28683
|
+
pi: "π",
|
|
28684
|
+
pitchfork: "⋔",
|
|
28685
|
+
piv: "ϖ",
|
|
28686
|
+
planck: "ℏ",
|
|
28687
|
+
planckh: "ℎ",
|
|
28688
|
+
plankv: "ℏ",
|
|
28689
|
+
plus: "+",
|
|
28690
|
+
plusacir: "⨣",
|
|
28691
|
+
plusb: "⊞",
|
|
28692
|
+
pluscir: "⨢",
|
|
28693
|
+
plusdo: "∔",
|
|
28694
|
+
plusdu: "⨥",
|
|
28695
|
+
pluse: "⩲",
|
|
28696
|
+
plusmn: "±",
|
|
28697
|
+
plussim: "⨦",
|
|
28698
|
+
plustwo: "⨧",
|
|
28699
|
+
pm: "±",
|
|
28700
|
+
pointint: "⨕",
|
|
28701
|
+
popf: "𝕡",
|
|
28702
|
+
pound: "£",
|
|
28703
|
+
pr: "≺",
|
|
28704
|
+
prE: "⪳",
|
|
28705
|
+
prap: "⪷",
|
|
28706
|
+
prcue: "≼",
|
|
28707
|
+
pre: "⪯",
|
|
28708
|
+
prec: "≺",
|
|
28709
|
+
precapprox: "⪷",
|
|
28710
|
+
preccurlyeq: "≼",
|
|
28711
|
+
preceq: "⪯",
|
|
28712
|
+
precnapprox: "⪹",
|
|
28713
|
+
precneqq: "⪵",
|
|
28714
|
+
precnsim: "⋨",
|
|
28715
|
+
precsim: "≾",
|
|
28716
|
+
prime: "′",
|
|
28717
|
+
primes: "ℙ",
|
|
28718
|
+
prnE: "⪵",
|
|
28719
|
+
prnap: "⪹",
|
|
28720
|
+
prnsim: "⋨",
|
|
28721
|
+
prod: "∏",
|
|
28722
|
+
profalar: "⌮",
|
|
28723
|
+
profline: "⌒",
|
|
28724
|
+
profsurf: "⌓",
|
|
28725
|
+
prop: "∝",
|
|
28726
|
+
propto: "∝",
|
|
28727
|
+
prsim: "≾",
|
|
28728
|
+
prurel: "⊰",
|
|
28729
|
+
pscr: "𝓅",
|
|
28730
|
+
psi: "ψ",
|
|
28731
|
+
puncsp: " ",
|
|
28732
|
+
qfr: "𝔮",
|
|
28733
|
+
qint: "⨌",
|
|
28734
|
+
qopf: "𝕢",
|
|
28735
|
+
qprime: "⁗",
|
|
28736
|
+
qscr: "𝓆",
|
|
28737
|
+
quaternions: "ℍ",
|
|
28738
|
+
quatint: "⨖",
|
|
28739
|
+
quest: "?",
|
|
28740
|
+
questeq: "≟",
|
|
28741
|
+
quot: "\"",
|
|
28742
|
+
rAarr: "⇛",
|
|
28743
|
+
rArr: "⇒",
|
|
28744
|
+
rAtail: "⤜",
|
|
28745
|
+
rBarr: "⤏",
|
|
28746
|
+
rHar: "⥤",
|
|
28747
|
+
race: "∽̱",
|
|
28748
|
+
racute: "ŕ",
|
|
28749
|
+
radic: "√",
|
|
28750
|
+
raemptyv: "⦳",
|
|
28751
|
+
rang: "⟩",
|
|
28752
|
+
rangd: "⦒",
|
|
28753
|
+
range: "⦥",
|
|
28754
|
+
rangle: "⟩",
|
|
28755
|
+
raquo: "»",
|
|
28756
|
+
rarr: "→",
|
|
28757
|
+
rarrap: "⥵",
|
|
28758
|
+
rarrb: "⇥",
|
|
28759
|
+
rarrbfs: "⤠",
|
|
28760
|
+
rarrc: "⤳",
|
|
28761
|
+
rarrfs: "⤞",
|
|
28762
|
+
rarrhk: "↪",
|
|
28763
|
+
rarrlp: "↬",
|
|
28764
|
+
rarrpl: "⥅",
|
|
28765
|
+
rarrsim: "⥴",
|
|
28766
|
+
rarrtl: "↣",
|
|
28767
|
+
rarrw: "↝",
|
|
28768
|
+
ratail: "⤚",
|
|
28769
|
+
ratio: "∶",
|
|
28770
|
+
rationals: "ℚ",
|
|
28771
|
+
rbarr: "⤍",
|
|
28772
|
+
rbbrk: "❳",
|
|
28773
|
+
rbrace: "}",
|
|
28774
|
+
rbrack: "]",
|
|
28775
|
+
rbrke: "⦌",
|
|
28776
|
+
rbrksld: "⦎",
|
|
28777
|
+
rbrkslu: "⦐",
|
|
28778
|
+
rcaron: "ř",
|
|
28779
|
+
rcedil: "ŗ",
|
|
28780
|
+
rceil: "⌉",
|
|
28781
|
+
rcub: "}",
|
|
28782
|
+
rcy: "р",
|
|
28783
|
+
rdca: "⤷",
|
|
28784
|
+
rdldhar: "⥩",
|
|
28785
|
+
rdquo: "”",
|
|
28786
|
+
rdquor: "”",
|
|
28787
|
+
rdsh: "↳",
|
|
28788
|
+
real: "ℜ",
|
|
28789
|
+
realine: "ℛ",
|
|
28790
|
+
realpart: "ℜ",
|
|
28791
|
+
reals: "ℝ",
|
|
28792
|
+
rect: "▭",
|
|
28793
|
+
reg: "®",
|
|
28794
|
+
rfisht: "⥽",
|
|
28795
|
+
rfloor: "⌋",
|
|
28796
|
+
rfr: "𝔯",
|
|
28797
|
+
rhard: "⇁",
|
|
28798
|
+
rharu: "⇀",
|
|
28799
|
+
rharul: "⥬",
|
|
28800
|
+
rho: "ρ",
|
|
28801
|
+
rhov: "ϱ",
|
|
28802
|
+
rightarrow: "→",
|
|
28803
|
+
rightarrowtail: "↣",
|
|
28804
|
+
rightharpoondown: "⇁",
|
|
28805
|
+
rightharpoonup: "⇀",
|
|
28806
|
+
rightleftarrows: "⇄",
|
|
28807
|
+
rightleftharpoons: "⇌",
|
|
28808
|
+
rightrightarrows: "⇉",
|
|
28809
|
+
rightsquigarrow: "↝",
|
|
28810
|
+
rightthreetimes: "⋌",
|
|
28811
|
+
ring: "˚",
|
|
28812
|
+
risingdotseq: "≓",
|
|
28813
|
+
rlarr: "⇄",
|
|
28814
|
+
rlhar: "⇌",
|
|
28815
|
+
rlm: "",
|
|
28816
|
+
rmoust: "⎱",
|
|
28817
|
+
rmoustache: "⎱",
|
|
28818
|
+
rnmid: "⫮",
|
|
28819
|
+
roang: "⟭",
|
|
28820
|
+
roarr: "⇾",
|
|
28821
|
+
robrk: "⟧",
|
|
28822
|
+
ropar: "⦆",
|
|
28823
|
+
ropf: "𝕣",
|
|
28824
|
+
roplus: "⨮",
|
|
28825
|
+
rotimes: "⨵",
|
|
28826
|
+
rpar: ")",
|
|
28827
|
+
rpargt: "⦔",
|
|
28828
|
+
rppolint: "⨒",
|
|
28829
|
+
rrarr: "⇉",
|
|
28830
|
+
rsaquo: "›",
|
|
28831
|
+
rscr: "𝓇",
|
|
28832
|
+
rsh: "↱",
|
|
28833
|
+
rsqb: "]",
|
|
28834
|
+
rsquo: "’",
|
|
28835
|
+
rsquor: "’",
|
|
28836
|
+
rthree: "⋌",
|
|
28837
|
+
rtimes: "⋊",
|
|
28838
|
+
rtri: "▹",
|
|
28839
|
+
rtrie: "⊵",
|
|
28840
|
+
rtrif: "▸",
|
|
28841
|
+
rtriltri: "⧎",
|
|
28842
|
+
ruluhar: "⥨",
|
|
28843
|
+
rx: "℞",
|
|
28844
|
+
sacute: "ś",
|
|
28845
|
+
sbquo: "‚",
|
|
28846
|
+
sc: "≻",
|
|
28847
|
+
scE: "⪴",
|
|
28848
|
+
scap: "⪸",
|
|
28849
|
+
scaron: "š",
|
|
28850
|
+
sccue: "≽",
|
|
28851
|
+
sce: "⪰",
|
|
28852
|
+
scedil: "ş",
|
|
28853
|
+
scirc: "ŝ",
|
|
28854
|
+
scnE: "⪶",
|
|
28855
|
+
scnap: "⪺",
|
|
28856
|
+
scnsim: "⋩",
|
|
28857
|
+
scpolint: "⨓",
|
|
28858
|
+
scsim: "≿",
|
|
28859
|
+
scy: "с",
|
|
28860
|
+
sdot: "⋅",
|
|
28861
|
+
sdotb: "⊡",
|
|
28862
|
+
sdote: "⩦",
|
|
28863
|
+
seArr: "⇘",
|
|
28864
|
+
searhk: "⤥",
|
|
28865
|
+
searr: "↘",
|
|
28866
|
+
searrow: "↘",
|
|
28867
|
+
sect: "§",
|
|
28868
|
+
semi: ";",
|
|
28869
|
+
seswar: "⤩",
|
|
28870
|
+
setminus: "∖",
|
|
28871
|
+
setmn: "∖",
|
|
28872
|
+
sext: "✶",
|
|
28873
|
+
sfr: "𝔰",
|
|
28874
|
+
sfrown: "⌢",
|
|
28875
|
+
sharp: "♯",
|
|
28876
|
+
shchcy: "щ",
|
|
28877
|
+
shcy: "ш",
|
|
28878
|
+
shortmid: "∣",
|
|
28879
|
+
shortparallel: "∥",
|
|
28880
|
+
shy: "",
|
|
28881
|
+
sigma: "σ",
|
|
28882
|
+
sigmaf: "ς",
|
|
28883
|
+
sigmav: "ς",
|
|
28884
|
+
sim: "∼",
|
|
28885
|
+
simdot: "⩪",
|
|
28886
|
+
sime: "≃",
|
|
28887
|
+
simeq: "≃",
|
|
28888
|
+
simg: "⪞",
|
|
28889
|
+
simgE: "⪠",
|
|
28890
|
+
siml: "⪝",
|
|
28891
|
+
simlE: "⪟",
|
|
28892
|
+
simne: "≆",
|
|
28893
|
+
simplus: "⨤",
|
|
28894
|
+
simrarr: "⥲",
|
|
28895
|
+
slarr: "←",
|
|
28896
|
+
smallsetminus: "∖",
|
|
28897
|
+
smashp: "⨳",
|
|
28898
|
+
smeparsl: "⧤",
|
|
28899
|
+
smid: "∣",
|
|
28900
|
+
smile: "⌣",
|
|
28901
|
+
smt: "⪪",
|
|
28902
|
+
smte: "⪬",
|
|
28903
|
+
smtes: "⪬︀",
|
|
28904
|
+
softcy: "ь",
|
|
28905
|
+
sol: "/",
|
|
28906
|
+
solb: "⧄",
|
|
28907
|
+
solbar: "⌿",
|
|
28908
|
+
sopf: "𝕤",
|
|
28909
|
+
spades: "♠",
|
|
28910
|
+
spadesuit: "♠",
|
|
28911
|
+
spar: "∥",
|
|
28912
|
+
sqcap: "⊓",
|
|
28913
|
+
sqcaps: "⊓︀",
|
|
28914
|
+
sqcup: "⊔",
|
|
28915
|
+
sqcups: "⊔︀",
|
|
28916
|
+
sqsub: "⊏",
|
|
28917
|
+
sqsube: "⊑",
|
|
28918
|
+
sqsubset: "⊏",
|
|
28919
|
+
sqsubseteq: "⊑",
|
|
28920
|
+
sqsup: "⊐",
|
|
28921
|
+
sqsupe: "⊒",
|
|
28922
|
+
sqsupset: "⊐",
|
|
28923
|
+
sqsupseteq: "⊒",
|
|
28924
|
+
squ: "□",
|
|
28925
|
+
square: "□",
|
|
28926
|
+
squarf: "▪",
|
|
28927
|
+
squf: "▪",
|
|
28928
|
+
srarr: "→",
|
|
28929
|
+
sscr: "𝓈",
|
|
28930
|
+
ssetmn: "∖",
|
|
28931
|
+
ssmile: "⌣",
|
|
28932
|
+
sstarf: "⋆",
|
|
28933
|
+
star: "☆",
|
|
28934
|
+
starf: "★",
|
|
28935
|
+
straightepsilon: "ϵ",
|
|
28936
|
+
straightphi: "ϕ",
|
|
28937
|
+
strns: "¯",
|
|
28938
|
+
sub: "⊂",
|
|
28939
|
+
subE: "⫅",
|
|
28940
|
+
subdot: "⪽",
|
|
28941
|
+
sube: "⊆",
|
|
28942
|
+
subedot: "⫃",
|
|
28943
|
+
submult: "⫁",
|
|
28944
|
+
subnE: "⫋",
|
|
28945
|
+
subne: "⊊",
|
|
28946
|
+
subplus: "⪿",
|
|
28947
|
+
subrarr: "⥹",
|
|
28948
|
+
subset: "⊂",
|
|
28949
|
+
subseteq: "⊆",
|
|
28950
|
+
subseteqq: "⫅",
|
|
28951
|
+
subsetneq: "⊊",
|
|
28952
|
+
subsetneqq: "⫋",
|
|
28953
|
+
subsim: "⫇",
|
|
28954
|
+
subsub: "⫕",
|
|
28955
|
+
subsup: "⫓",
|
|
28956
|
+
succ: "≻",
|
|
28957
|
+
succapprox: "⪸",
|
|
28958
|
+
succcurlyeq: "≽",
|
|
28959
|
+
succeq: "⪰",
|
|
28960
|
+
succnapprox: "⪺",
|
|
28961
|
+
succneqq: "⪶",
|
|
28962
|
+
succnsim: "⋩",
|
|
28963
|
+
succsim: "≿",
|
|
28964
|
+
sum: "∑",
|
|
28965
|
+
sung: "♪",
|
|
28966
|
+
sup1: "¹",
|
|
28967
|
+
sup2: "²",
|
|
28968
|
+
sup3: "³",
|
|
28969
|
+
sup: "⊃",
|
|
28970
|
+
supE: "⫆",
|
|
28971
|
+
supdot: "⪾",
|
|
28972
|
+
supdsub: "⫘",
|
|
28973
|
+
supe: "⊇",
|
|
28974
|
+
supedot: "⫄",
|
|
28975
|
+
suphsol: "⟉",
|
|
28976
|
+
suphsub: "⫗",
|
|
28977
|
+
suplarr: "⥻",
|
|
28978
|
+
supmult: "⫂",
|
|
28979
|
+
supnE: "⫌",
|
|
28980
|
+
supne: "⊋",
|
|
28981
|
+
supplus: "⫀",
|
|
28982
|
+
supset: "⊃",
|
|
28983
|
+
supseteq: "⊇",
|
|
28984
|
+
supseteqq: "⫆",
|
|
28985
|
+
supsetneq: "⊋",
|
|
28986
|
+
supsetneqq: "⫌",
|
|
28987
|
+
supsim: "⫈",
|
|
28988
|
+
supsub: "⫔",
|
|
28989
|
+
supsup: "⫖",
|
|
28990
|
+
swArr: "⇙",
|
|
28991
|
+
swarhk: "⤦",
|
|
28992
|
+
swarr: "↙",
|
|
28993
|
+
swarrow: "↙",
|
|
28994
|
+
swnwar: "⤪",
|
|
28995
|
+
szlig: "ß",
|
|
28996
|
+
target: "⌖",
|
|
28997
|
+
tau: "τ",
|
|
28998
|
+
tbrk: "⎴",
|
|
28999
|
+
tcaron: "ť",
|
|
29000
|
+
tcedil: "ţ",
|
|
29001
|
+
tcy: "т",
|
|
29002
|
+
tdot: "⃛",
|
|
29003
|
+
telrec: "⌕",
|
|
29004
|
+
tfr: "𝔱",
|
|
29005
|
+
there4: "∴",
|
|
29006
|
+
therefore: "∴",
|
|
29007
|
+
theta: "θ",
|
|
29008
|
+
thetasym: "ϑ",
|
|
29009
|
+
thetav: "ϑ",
|
|
29010
|
+
thickapprox: "≈",
|
|
29011
|
+
thicksim: "∼",
|
|
29012
|
+
thinsp: " ",
|
|
29013
|
+
thkap: "≈",
|
|
29014
|
+
thksim: "∼",
|
|
29015
|
+
thorn: "þ",
|
|
29016
|
+
tilde: "˜",
|
|
29017
|
+
times: "×",
|
|
29018
|
+
timesb: "⊠",
|
|
29019
|
+
timesbar: "⨱",
|
|
29020
|
+
timesd: "⨰",
|
|
29021
|
+
tint: "∭",
|
|
29022
|
+
toea: "⤨",
|
|
29023
|
+
top: "⊤",
|
|
29024
|
+
topbot: "⌶",
|
|
29025
|
+
topcir: "⫱",
|
|
29026
|
+
topf: "𝕥",
|
|
29027
|
+
topfork: "⫚",
|
|
29028
|
+
tosa: "⤩",
|
|
29029
|
+
tprime: "‴",
|
|
29030
|
+
trade: "™",
|
|
29031
|
+
triangle: "▵",
|
|
29032
|
+
triangledown: "▿",
|
|
29033
|
+
triangleleft: "◃",
|
|
29034
|
+
trianglelefteq: "⊴",
|
|
29035
|
+
triangleq: "≜",
|
|
29036
|
+
triangleright: "▹",
|
|
29037
|
+
trianglerighteq: "⊵",
|
|
29038
|
+
tridot: "◬",
|
|
29039
|
+
trie: "≜",
|
|
29040
|
+
triminus: "⨺",
|
|
29041
|
+
triplus: "⨹",
|
|
29042
|
+
trisb: "⧍",
|
|
29043
|
+
tritime: "⨻",
|
|
29044
|
+
trpezium: "⏢",
|
|
29045
|
+
tscr: "𝓉",
|
|
29046
|
+
tscy: "ц",
|
|
29047
|
+
tshcy: "ћ",
|
|
29048
|
+
tstrok: "ŧ",
|
|
29049
|
+
twixt: "≬",
|
|
29050
|
+
twoheadleftarrow: "↞",
|
|
29051
|
+
twoheadrightarrow: "↠",
|
|
29052
|
+
uArr: "⇑",
|
|
29053
|
+
uHar: "⥣",
|
|
29054
|
+
uacute: "ú",
|
|
29055
|
+
uarr: "↑",
|
|
29056
|
+
ubrcy: "ў",
|
|
29057
|
+
ubreve: "ŭ",
|
|
29058
|
+
ucirc: "û",
|
|
29059
|
+
ucy: "у",
|
|
29060
|
+
udarr: "⇅",
|
|
29061
|
+
udblac: "ű",
|
|
29062
|
+
udhar: "⥮",
|
|
29063
|
+
ufisht: "⥾",
|
|
29064
|
+
ufr: "𝔲",
|
|
29065
|
+
ugrave: "ù",
|
|
29066
|
+
uharl: "↿",
|
|
29067
|
+
uharr: "↾",
|
|
29068
|
+
uhblk: "▀",
|
|
29069
|
+
ulcorn: "⌜",
|
|
29070
|
+
ulcorner: "⌜",
|
|
29071
|
+
ulcrop: "⌏",
|
|
29072
|
+
ultri: "◸",
|
|
29073
|
+
umacr: "ū",
|
|
29074
|
+
uml: "¨",
|
|
29075
|
+
uogon: "ų",
|
|
29076
|
+
uopf: "𝕦",
|
|
29077
|
+
uparrow: "↑",
|
|
29078
|
+
updownarrow: "↕",
|
|
29079
|
+
upharpoonleft: "↿",
|
|
29080
|
+
upharpoonright: "↾",
|
|
29081
|
+
uplus: "⊎",
|
|
29082
|
+
upsi: "υ",
|
|
29083
|
+
upsih: "ϒ",
|
|
29084
|
+
upsilon: "υ",
|
|
29085
|
+
upuparrows: "⇈",
|
|
29086
|
+
urcorn: "⌝",
|
|
29087
|
+
urcorner: "⌝",
|
|
29088
|
+
urcrop: "⌎",
|
|
29089
|
+
uring: "ů",
|
|
29090
|
+
urtri: "◹",
|
|
29091
|
+
uscr: "𝓊",
|
|
29092
|
+
utdot: "⋰",
|
|
29093
|
+
utilde: "ũ",
|
|
29094
|
+
utri: "▵",
|
|
29095
|
+
utrif: "▴",
|
|
29096
|
+
uuarr: "⇈",
|
|
29097
|
+
uuml: "ü",
|
|
29098
|
+
uwangle: "⦧",
|
|
29099
|
+
vArr: "⇕",
|
|
29100
|
+
vBar: "⫨",
|
|
29101
|
+
vBarv: "⫩",
|
|
29102
|
+
vDash: "⊨",
|
|
29103
|
+
vangrt: "⦜",
|
|
29104
|
+
varepsilon: "ϵ",
|
|
29105
|
+
varkappa: "ϰ",
|
|
29106
|
+
varnothing: "∅",
|
|
29107
|
+
varphi: "ϕ",
|
|
29108
|
+
varpi: "ϖ",
|
|
29109
|
+
varpropto: "∝",
|
|
29110
|
+
varr: "↕",
|
|
29111
|
+
varrho: "ϱ",
|
|
29112
|
+
varsigma: "ς",
|
|
29113
|
+
varsubsetneq: "⊊︀",
|
|
29114
|
+
varsubsetneqq: "⫋︀",
|
|
29115
|
+
varsupsetneq: "⊋︀",
|
|
29116
|
+
varsupsetneqq: "⫌︀",
|
|
29117
|
+
vartheta: "ϑ",
|
|
29118
|
+
vartriangleleft: "⊲",
|
|
29119
|
+
vartriangleright: "⊳",
|
|
29120
|
+
vcy: "в",
|
|
29121
|
+
vdash: "⊢",
|
|
29122
|
+
vee: "∨",
|
|
29123
|
+
veebar: "⊻",
|
|
29124
|
+
veeeq: "≚",
|
|
29125
|
+
vellip: "⋮",
|
|
29126
|
+
verbar: "|",
|
|
29127
|
+
vert: "|",
|
|
29128
|
+
vfr: "𝔳",
|
|
29129
|
+
vltri: "⊲",
|
|
29130
|
+
vnsub: "⊂⃒",
|
|
29131
|
+
vnsup: "⊃⃒",
|
|
29132
|
+
vopf: "𝕧",
|
|
29133
|
+
vprop: "∝",
|
|
29134
|
+
vrtri: "⊳",
|
|
29135
|
+
vscr: "𝓋",
|
|
29136
|
+
vsubnE: "⫋︀",
|
|
29137
|
+
vsubne: "⊊︀",
|
|
29138
|
+
vsupnE: "⫌︀",
|
|
29139
|
+
vsupne: "⊋︀",
|
|
29140
|
+
vzigzag: "⦚",
|
|
29141
|
+
wcirc: "ŵ",
|
|
29142
|
+
wedbar: "⩟",
|
|
29143
|
+
wedge: "∧",
|
|
29144
|
+
wedgeq: "≙",
|
|
29145
|
+
weierp: "℘",
|
|
29146
|
+
wfr: "𝔴",
|
|
29147
|
+
wopf: "𝕨",
|
|
29148
|
+
wp: "℘",
|
|
29149
|
+
wr: "≀",
|
|
29150
|
+
wreath: "≀",
|
|
29151
|
+
wscr: "𝓌",
|
|
29152
|
+
xcap: "⋂",
|
|
29153
|
+
xcirc: "◯",
|
|
29154
|
+
xcup: "⋃",
|
|
29155
|
+
xdtri: "▽",
|
|
29156
|
+
xfr: "𝔵",
|
|
29157
|
+
xhArr: "⟺",
|
|
29158
|
+
xharr: "⟷",
|
|
29159
|
+
xi: "ξ",
|
|
29160
|
+
xlArr: "⟸",
|
|
29161
|
+
xlarr: "⟵",
|
|
29162
|
+
xmap: "⟼",
|
|
29163
|
+
xnis: "⋻",
|
|
29164
|
+
xodot: "⨀",
|
|
29165
|
+
xopf: "𝕩",
|
|
29166
|
+
xoplus: "⨁",
|
|
29167
|
+
xotime: "⨂",
|
|
29168
|
+
xrArr: "⟹",
|
|
29169
|
+
xrarr: "⟶",
|
|
29170
|
+
xscr: "𝓍",
|
|
29171
|
+
xsqcup: "⨆",
|
|
29172
|
+
xuplus: "⨄",
|
|
29173
|
+
xutri: "△",
|
|
29174
|
+
xvee: "⋁",
|
|
29175
|
+
xwedge: "⋀",
|
|
29176
|
+
yacute: "ý",
|
|
29177
|
+
yacy: "я",
|
|
29178
|
+
ycirc: "ŷ",
|
|
29179
|
+
ycy: "ы",
|
|
29180
|
+
yen: "¥",
|
|
29181
|
+
yfr: "𝔶",
|
|
29182
|
+
yicy: "ї",
|
|
29183
|
+
yopf: "𝕪",
|
|
29184
|
+
yscr: "𝓎",
|
|
29185
|
+
yucy: "ю",
|
|
29186
|
+
yuml: "ÿ",
|
|
29187
|
+
zacute: "ź",
|
|
29188
|
+
zcaron: "ž",
|
|
29189
|
+
zcy: "з",
|
|
29190
|
+
zdot: "ż",
|
|
29191
|
+
zeetrf: "ℨ",
|
|
29192
|
+
zeta: "ζ",
|
|
29193
|
+
zfr: "𝔷",
|
|
29194
|
+
zhcy: "ж",
|
|
29195
|
+
zigrarr: "⇝",
|
|
29196
|
+
zopf: "𝕫",
|
|
29197
|
+
zscr: "𝓏",
|
|
29198
|
+
zwj: "",
|
|
29199
|
+
zwnj: ""
|
|
29200
|
+
};
|
|
29201
|
+
}));
|
|
29202
|
+
//#endregion
|
|
29203
|
+
//#region ../../node_modules/.pnpm/decode-named-character-reference@1.2.0/node_modules/decode-named-character-reference/index.js
|
|
29123
29204
|
/**
|
|
29124
|
-
*
|
|
29125
|
-
*
|
|
29126
|
-
*
|
|
29127
|
-
*
|
|
29128
|
-
* > | > b
|
|
29129
|
-
* ^
|
|
29130
|
-
* ```
|
|
29205
|
+
* Decode a single character reference (without the `&` or `;`).
|
|
29206
|
+
* You probably only need this when you’re building parsers yourself that follow
|
|
29207
|
+
* different rules compared to HTML.
|
|
29208
|
+
* This is optimized to be tiny in browsers.
|
|
29131
29209
|
*
|
|
29132
|
-
* @
|
|
29133
|
-
*
|
|
29134
|
-
* @
|
|
29135
|
-
|
|
29136
|
-
function tokenizeBlockQuoteContinuation(effects, ok, nok) {
|
|
29137
|
-
const self = this;
|
|
29138
|
-
return contStart;
|
|
29139
|
-
/**
|
|
29140
|
-
* Start of block quote continuation.
|
|
29141
|
-
*
|
|
29142
|
-
* Also used to parse the first block quote opening.
|
|
29143
|
-
*
|
|
29144
|
-
* ```markdown
|
|
29145
|
-
* | > a
|
|
29146
|
-
* > | > b
|
|
29147
|
-
* ^
|
|
29148
|
-
* ```
|
|
29149
|
-
*
|
|
29150
|
-
* @type {State}
|
|
29151
|
-
*/
|
|
29152
|
-
function contStart(code) {
|
|
29153
|
-
if (markdownSpace(code)) return factorySpace(effects, contBefore, "linePrefix", self.parser.constructs.disable.null.includes("codeIndented") ? void 0 : 4)(code);
|
|
29154
|
-
return contBefore(code);
|
|
29155
|
-
}
|
|
29156
|
-
/**
|
|
29157
|
-
* At `>`, after optional whitespace.
|
|
29158
|
-
*
|
|
29159
|
-
* Also used to parse the first block quote opening.
|
|
29160
|
-
*
|
|
29161
|
-
* ```markdown
|
|
29162
|
-
* | > a
|
|
29163
|
-
* > | > b
|
|
29164
|
-
* ^
|
|
29165
|
-
* ```
|
|
29166
|
-
*
|
|
29167
|
-
* @type {State}
|
|
29168
|
-
*/
|
|
29169
|
-
function contBefore(code) {
|
|
29170
|
-
return effects.attempt(blockQuote, ok, nok)(code);
|
|
29171
|
-
}
|
|
29172
|
-
}
|
|
29173
|
-
/** @type {Exiter} */
|
|
29174
|
-
function exit(effects) {
|
|
29175
|
-
effects.exit("blockQuote");
|
|
29176
|
-
}
|
|
29177
|
-
var blockQuote;
|
|
29178
|
-
var init_block_quote = __esmMin((() => {
|
|
29179
|
-
init_micromark_factory_space();
|
|
29180
|
-
init_micromark_util_character();
|
|
29181
|
-
blockQuote = {
|
|
29182
|
-
continuation: { tokenize: tokenizeBlockQuoteContinuation },
|
|
29183
|
-
exit,
|
|
29184
|
-
name: "blockQuote",
|
|
29185
|
-
tokenize: tokenizeBlockQuoteStart
|
|
29186
|
-
};
|
|
29187
|
-
}));
|
|
29188
|
-
//#endregion
|
|
29189
|
-
//#region ../../node_modules/.pnpm/micromark-core-commonmark@2.0.3/node_modules/micromark-core-commonmark/lib/character-escape.js
|
|
29190
|
-
/**
|
|
29191
|
-
* @this {TokenizeContext}
|
|
29192
|
-
* Context.
|
|
29193
|
-
* @type {Tokenizer}
|
|
29210
|
+
* @param {string} value
|
|
29211
|
+
* `notin` (named), `#123` (deci), `#x123` (hexa).
|
|
29212
|
+
* @returns {string|false}
|
|
29213
|
+
* Decoded reference.
|
|
29194
29214
|
*/
|
|
29195
|
-
function
|
|
29196
|
-
return
|
|
29197
|
-
/**
|
|
29198
|
-
* Start of character escape.
|
|
29199
|
-
*
|
|
29200
|
-
* ```markdown
|
|
29201
|
-
* > | a\*b
|
|
29202
|
-
* ^
|
|
29203
|
-
* ```
|
|
29204
|
-
*
|
|
29205
|
-
* @type {State}
|
|
29206
|
-
*/
|
|
29207
|
-
function start(code) {
|
|
29208
|
-
effects.enter("characterEscape");
|
|
29209
|
-
effects.enter("escapeMarker");
|
|
29210
|
-
effects.consume(code);
|
|
29211
|
-
effects.exit("escapeMarker");
|
|
29212
|
-
return inside;
|
|
29213
|
-
}
|
|
29214
|
-
/**
|
|
29215
|
-
* After `\`, at punctuation.
|
|
29216
|
-
*
|
|
29217
|
-
* ```markdown
|
|
29218
|
-
* > | a\*b
|
|
29219
|
-
* ^
|
|
29220
|
-
* ```
|
|
29221
|
-
*
|
|
29222
|
-
* @type {State}
|
|
29223
|
-
*/
|
|
29224
|
-
function inside(code) {
|
|
29225
|
-
if (asciiPunctuation(code)) {
|
|
29226
|
-
effects.enter("characterEscapeValue");
|
|
29227
|
-
effects.consume(code);
|
|
29228
|
-
effects.exit("characterEscapeValue");
|
|
29229
|
-
effects.exit("characterEscape");
|
|
29230
|
-
return ok;
|
|
29231
|
-
}
|
|
29232
|
-
return nok(code);
|
|
29233
|
-
}
|
|
29215
|
+
function decodeNamedCharacterReference(value) {
|
|
29216
|
+
return own$5.call(characterEntities, value) ? characterEntities[value] : false;
|
|
29234
29217
|
}
|
|
29235
|
-
var
|
|
29236
|
-
var
|
|
29237
|
-
|
|
29238
|
-
|
|
29239
|
-
name: "characterEscape",
|
|
29240
|
-
tokenize: tokenizeCharacterEscape
|
|
29241
|
-
};
|
|
29218
|
+
var own$5;
|
|
29219
|
+
var init_decode_named_character_reference = __esmMin((() => {
|
|
29220
|
+
init_character_entities();
|
|
29221
|
+
own$5 = {}.hasOwnProperty;
|
|
29242
29222
|
}));
|
|
29243
29223
|
//#endregion
|
|
29244
29224
|
//#region ../../node_modules/.pnpm/micromark-core-commonmark@2.0.3/node_modules/micromark-core-commonmark/lib/character-reference.js
|
|
@@ -31076,6 +31056,31 @@ var init_micromark_factory_whitespace = __esmMin((() => {
|
|
|
31076
31056
|
init_micromark_util_character();
|
|
31077
31057
|
}));
|
|
31078
31058
|
//#endregion
|
|
31059
|
+
//#region ../../node_modules/.pnpm/micromark-util-normalize-identifier@2.0.1/node_modules/micromark-util-normalize-identifier/index.js
|
|
31060
|
+
/**
|
|
31061
|
+
* Normalize an identifier (as found in references, definitions).
|
|
31062
|
+
*
|
|
31063
|
+
* Collapses markdown whitespace, trim, and then lower- and uppercase.
|
|
31064
|
+
*
|
|
31065
|
+
* Some characters are considered “uppercase”, such as U+03F4 (`ϴ`), but if their
|
|
31066
|
+
* lowercase counterpart (U+03B8 (`θ`)) is uppercased will result in a different
|
|
31067
|
+
* uppercase character (U+0398 (`Θ`)).
|
|
31068
|
+
* So, to get a canonical form, we perform both lower- and uppercase.
|
|
31069
|
+
*
|
|
31070
|
+
* Using uppercase last makes sure keys will never interact with default
|
|
31071
|
+
* prototypal values (such as `constructor`): nothing in the prototype of
|
|
31072
|
+
* `Object` is uppercase.
|
|
31073
|
+
*
|
|
31074
|
+
* @param {string} value
|
|
31075
|
+
* Identifier to normalize.
|
|
31076
|
+
* @returns {string}
|
|
31077
|
+
* Normalized identifier.
|
|
31078
|
+
*/
|
|
31079
|
+
function normalizeIdentifier(value) {
|
|
31080
|
+
return value.replace(/[\t\n\r ]+/g, " ").replace(/^ | $/g, "").toLowerCase().toUpperCase();
|
|
31081
|
+
}
|
|
31082
|
+
var init_micromark_util_normalize_identifier = __esmMin((() => {}));
|
|
31083
|
+
//#endregion
|
|
31079
31084
|
//#region ../../node_modules/.pnpm/micromark-core-commonmark@2.0.3/node_modules/micromark-core-commonmark/lib/definition.js
|
|
31080
31085
|
/**
|
|
31081
31086
|
* @this {TokenizeContext}
|
|
@@ -34895,17 +34900,33 @@ var init_preprocess = __esmMin((() => {
|
|
|
34895
34900
|
//#endregion
|
|
34896
34901
|
//#region ../../node_modules/.pnpm/micromark@4.0.2/node_modules/micromark/index.js
|
|
34897
34902
|
var init_micromark = __esmMin((() => {
|
|
34898
|
-
init_decode_named_character_reference();
|
|
34899
|
-
init_micromark_util_chunked();
|
|
34900
|
-
init_micromark_util_combine_extensions();
|
|
34901
|
-
init_micromark_util_decode_numeric_character_reference();
|
|
34902
|
-
init_micromark_util_normalize_identifier();
|
|
34903
|
-
init_micromark_util_character();
|
|
34904
34903
|
init_parse();
|
|
34905
34904
|
init_postprocess();
|
|
34906
34905
|
init_preprocess();
|
|
34907
34906
|
}));
|
|
34908
34907
|
//#endregion
|
|
34908
|
+
//#region ../../node_modules/.pnpm/micromark-util-decode-numeric-character-reference@2.0.2/node_modules/micromark-util-decode-numeric-character-reference/index.js
|
|
34909
|
+
/**
|
|
34910
|
+
* Turn the number (in string form as either hexa- or plain decimal) coming from
|
|
34911
|
+
* a numeric character reference into a character.
|
|
34912
|
+
*
|
|
34913
|
+
* Sort of like `String.fromCodePoint(Number.parseInt(value, base))`, but makes
|
|
34914
|
+
* non-characters and control characters safe.
|
|
34915
|
+
*
|
|
34916
|
+
* @param {string} value
|
|
34917
|
+
* Value to decode.
|
|
34918
|
+
* @param {number} base
|
|
34919
|
+
* Numeric base.
|
|
34920
|
+
* @returns {string}
|
|
34921
|
+
* Character.
|
|
34922
|
+
*/
|
|
34923
|
+
function decodeNumericCharacterReference(value, base) {
|
|
34924
|
+
const code = Number.parseInt(value, base);
|
|
34925
|
+
if (code < 9 || code === 11 || code > 13 && code < 32 || code > 126 && code < 160 || code > 55295 && code < 57344 || code > 64975 && code < 65008 || (code & 65535) === 65535 || (code & 65535) === 65534 || code > 1114111) return "�";
|
|
34926
|
+
return String.fromCodePoint(code);
|
|
34927
|
+
}
|
|
34928
|
+
var init_micromark_util_decode_numeric_character_reference = __esmMin((() => {}));
|
|
34929
|
+
//#endregion
|
|
34909
34930
|
//#region ../../node_modules/.pnpm/micromark-util-decode-string@2.0.1/node_modules/micromark-util-decode-string/index.js
|
|
34910
34931
|
/**
|
|
34911
34932
|
* Decode markdown strings (which occur in places such as fenced code info
|
|
@@ -52538,7 +52559,6 @@ var init_lib$3 = __esmMin((() => {
|
|
|
52538
52559
|
//#region ../../node_modules/.pnpm/mdast-util-to-markdown@2.1.2/node_modules/mdast-util-to-markdown/index.js
|
|
52539
52560
|
var init_mdast_util_to_markdown = __esmMin((() => {
|
|
52540
52561
|
init_lib$3();
|
|
52541
|
-
init_handle();
|
|
52542
52562
|
}));
|
|
52543
52563
|
//#endregion
|
|
52544
52564
|
//#region ../../node_modules/.pnpm/remark-stringify@11.0.0/node_modules/remark-stringify/lib/index.js
|