Completed
Push — master ( c2652d...a4fa78 )
by cam
01:40
created
ecrire/inc/email_valide.php 1 patch
Indentation   +24 added lines, -24 removed lines patch added patch discarded remove patch
@@ -16,7 +16,7 @@  discard block
 block discarded – undo
16 16
  * @package SPIP\Core\Mail
17 17
  **/
18 18
 if (!defined('_ECRIRE_INC_VERSION')) {
19
-	return;
19
+    return;
20 20
 }
21 21
 
22 22
 
@@ -31,27 +31,27 @@  discard block
 block discarded – undo
31 31
  *      - la normalisation de la dernière adresse donnée sinon
32 32
  **/
33 33
 function inc_email_valide_dist($adresses) {
34
-	// eviter d'injecter n'importe quoi dans preg_match
35
-	if (!is_string($adresses)) {
36
-		return false;
37
-	}
38
-
39
-	// Si c'est un spammeur autant arreter tout de suite
40
-	if (preg_match(",[\n\r].*(MIME|multipart|Content-),i", $adresses)) {
41
-		spip_log("Tentative d'injection de mail : $adresses");
42
-
43
-		return false;
44
-	}
45
-
46
-	foreach (explode(',', $adresses) as $v) {
47
-		// nettoyer certains formats
48
-		// "Marie Toto <[email protected]>"
49
-		$adresse = trim(preg_replace(',^[^<>"]*<([^<>"]+)>$,i', "\\1", $v));
50
-		// RFC 822
51
-		if (!preg_match('#^[^()<>@,;:\\"/[:space:]]+(@([-_0-9a-z]+\.)*[-_0-9a-z]+)$#i', $adresse)) {
52
-			return false;
53
-		}
54
-	}
55
-
56
-	return $adresse;
34
+    // eviter d'injecter n'importe quoi dans preg_match
35
+    if (!is_string($adresses)) {
36
+        return false;
37
+    }
38
+
39
+    // Si c'est un spammeur autant arreter tout de suite
40
+    if (preg_match(",[\n\r].*(MIME|multipart|Content-),i", $adresses)) {
41
+        spip_log("Tentative d'injection de mail : $adresses");
42
+
43
+        return false;
44
+    }
45
+
46
+    foreach (explode(',', $adresses) as $v) {
47
+        // nettoyer certains formats
48
+        // "Marie Toto <[email protected]>"
49
+        $adresse = trim(preg_replace(',^[^<>"]*<([^<>"]+)>$,i', "\\1", $v));
50
+        // RFC 822
51
+        if (!preg_match('#^[^()<>@,;:\\"/[:space:]]+(@([-_0-9a-z]+\.)*[-_0-9a-z]+)$#i', $adresse)) {
52
+            return false;
53
+        }
54
+    }
55
+
56
+    return $adresse;
57 57
 }
Please login to merge, or discard this patch.
ecrire/balise/formulaire_ecrire_auteur.php 2 patches
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -86,7 +86,7 @@
 block discarded – undo
86 86
 		);
87 87
 		foreach ($s as $row) {
88 88
 			if (email_valide($row['email'])) {
89
-				$r .= ', ' . $row['email'];
89
+				$r .= ', '.$row['email'];
90 90
 			}
91 91
 		}
92 92
 		$args[2] = substr($r, 2);
Please login to merge, or discard this patch.
Indentation   +38 added lines, -38 removed lines patch added patch discarded remove patch
@@ -16,7 +16,7 @@  discard block
 block discarded – undo
16 16
  **/
17 17
 
18 18
 if (!defined('_ECRIRE_INC_VERSION')) {
19
-	return;
19
+    return;
20 20
 }
21 21
 
22 22
 include_spip('base/abstract_sql');
@@ -40,7 +40,7 @@  discard block
 block discarded – undo
40 40
  *     Pile complétée du code compilé
41 41
  **/
42 42
 function balise_FORMULAIRE_ECRIRE_AUTEUR($p) {
43
-	return calculer_balise_dynamique($p, 'FORMULAIRE_ECRIRE_AUTEUR', ['id_auteur', 'id_article', 'email']);
43
+    return calculer_balise_dynamique($p, 'FORMULAIRE_ECRIRE_AUTEUR', ['id_auteur', 'id_article', 'email']);
44 44
 }
45 45
 
46 46
 /**
@@ -58,44 +58,44 @@  discard block
 block discarded – undo
58 58
  *   - chaîne vide sinon (erreur ou non affichage).
59 59
  */
60 60
 function balise_FORMULAIRE_ECRIRE_AUTEUR_stat($args, $context_compil) {
61
-	include_spip('inc/filtres');
62
-	// Pas d'id_auteur ni d'id_article ? Erreur de contexte
63
-	$id = (int) $args[1];
64
-	if (!$args[0] && !$id) {
65
-		$msg = [
66
-			'zbug_champ_hors_motif',
67
-			[
68
-				'champ' => 'FORMULAIRE_ECRIRE_AUTEUR',
69
-				'motif' => 'AUTEURS/ARTICLES'
70
-			]
71
-		];
61
+    include_spip('inc/filtres');
62
+    // Pas d'id_auteur ni d'id_article ? Erreur de contexte
63
+    $id = (int) $args[1];
64
+    if (!$args[0] && !$id) {
65
+        $msg = [
66
+            'zbug_champ_hors_motif',
67
+            [
68
+                'champ' => 'FORMULAIRE_ECRIRE_AUTEUR',
69
+                'motif' => 'AUTEURS/ARTICLES'
70
+            ]
71
+        ];
72 72
 
73
-		erreur_squelette($msg, $context_compil);
73
+        erreur_squelette($msg, $context_compil);
74 74
 
75
-		return '';
76
-	}
77
-	// Si on est dans un contexte article,
78
-	// sortir tous les mails des auteurs de l'article
79
-	if (!$args[0] && $id) {
80
-		$r = '';
81
-		$s = sql_allfetsel(
82
-			'email',
83
-			'spip_auteurs AS A LEFT JOIN spip_auteurs_liens AS L ON (A.id_auteur=L.id_auteur AND L.objet=\'article\')',
84
-			"A.email != '' AND L.id_objet=$id"
85
-		);
86
-		foreach ($s as $row) {
87
-			if (email_valide($row['email'])) {
88
-				$r .= ', ' . $row['email'];
89
-			}
90
-		}
91
-		$args[2] = substr($r, 2);
92
-	}
75
+        return '';
76
+    }
77
+    // Si on est dans un contexte article,
78
+    // sortir tous les mails des auteurs de l'article
79
+    if (!$args[0] && $id) {
80
+        $r = '';
81
+        $s = sql_allfetsel(
82
+            'email',
83
+            'spip_auteurs AS A LEFT JOIN spip_auteurs_liens AS L ON (A.id_auteur=L.id_auteur AND L.objet=\'article\')',
84
+            "A.email != '' AND L.id_objet=$id"
85
+        );
86
+        foreach ($s as $row) {
87
+            if (email_valide($row['email'])) {
88
+                $r .= ', ' . $row['email'];
89
+            }
90
+        }
91
+        $args[2] = substr($r, 2);
92
+    }
93 93
 
94
-	// On ne peut pas ecrire a un auteur dont le mail n'est pas valide
95
-	if (!$args[2] || !email_valide($args[2])) {
96
-		return '';
97
-	}
94
+    // On ne peut pas ecrire a un auteur dont le mail n'est pas valide
95
+    if (!$args[2] || !email_valide($args[2])) {
96
+        return '';
97
+    }
98 98
 
99
-	// OK
100
-	return $args;
99
+    // OK
100
+    return $args;
101 101
 }
Please login to merge, or discard this patch.
ecrire/charsets/iso-8859-1.php 1 patch
Indentation   +128 added lines, -128 removed lines patch added patch discarded remove patch
@@ -11,134 +11,134 @@
 block discarded – undo
11 11
 // plage invalide en iso-8859-1 mais souvent utilisee quand meme (windows)
12 12
 // cf. http://openweb.eu.org/articles/caracteres_illegaux/
13 13
 // voir aussi copie de ces valeurs dans inc/charsets.php
14
-	128 => 8364,
15
-	129 => 129 /* ?? */,
16
-	130 => 8218,
17
-	131 => 402,
18
-	132 => 8222,
19
-	133 => 8230,
20
-	134 => 8224,
21
-	135 => 8225,
22
-	136 => 710,
23
-	137 => 8240,
24
-	138 => 352,
25
-	139 => 8249,
26
-	140 => 338,
27
-	141 => 141 /* ?? */,
28
-	142 => 381,
29
-	143 => 143 /* ?? */,
30
-	144 => 144 /* ?? */,
31
-	145 => 8216,
32
-	146 => 8217,
33
-	147 => 8220,
34
-	148 => 8221,
35
-	149 => 8226,
36
-	150 => 8211,
37
-	151 => 8212,
38
-	152 => 732,
39
-	153 => 8482,
40
-	154 => 353,
41
-	155 => 8250,
42
-	156 => 339,
43
-	157 => 157 /* ?? */,
44
-	158 => 382,
45
-	159 => 376,
14
+    128 => 8364,
15
+    129 => 129 /* ?? */,
16
+    130 => 8218,
17
+    131 => 402,
18
+    132 => 8222,
19
+    133 => 8230,
20
+    134 => 8224,
21
+    135 => 8225,
22
+    136 => 710,
23
+    137 => 8240,
24
+    138 => 352,
25
+    139 => 8249,
26
+    140 => 338,
27
+    141 => 141 /* ?? */,
28
+    142 => 381,
29
+    143 => 143 /* ?? */,
30
+    144 => 144 /* ?? */,
31
+    145 => 8216,
32
+    146 => 8217,
33
+    147 => 8220,
34
+    148 => 8221,
35
+    149 => 8226,
36
+    150 => 8211,
37
+    151 => 8212,
38
+    152 => 732,
39
+    153 => 8482,
40
+    154 => 353,
41
+    155 => 8250,
42
+    156 => 339,
43
+    157 => 157 /* ?? */,
44
+    158 => 382,
45
+    159 => 376,
46 46
 
47
-	160 => 160,
48
-	161 => 161,
49
-	162 => 162,
50
-	163 => 163,
51
-	164 => 164,
52
-	165 => 165,
53
-	166 => 166,
54
-	167 => 167,
55
-	168 => 168,
56
-	169 => 169,
57
-	170 => 170,
58
-	171 => 171,
59
-	172 => 172,
60
-	173 => 173,
61
-	174 => 174,
62
-	175 => 175,
63
-	176 => 176,
64
-	177 => 177,
65
-	178 => 178,
66
-	179 => 179,
67
-	180 => 180,
68
-	181 => 181,
69
-	182 => 182,
70
-	183 => 183,
71
-	184 => 184,
72
-	185 => 185,
73
-	186 => 186,
74
-	187 => 187,
75
-	188 => 188,
76
-	189 => 189,
77
-	190 => 190,
78
-	191 => 191,
79
-	192 => 192,
80
-	193 => 193,
81
-	194 => 194,
82
-	195 => 195,
83
-	196 => 196,
84
-	197 => 197,
85
-	198 => 198,
86
-	199 => 199,
87
-	200 => 200,
88
-	201 => 201,
89
-	202 => 202,
90
-	203 => 203,
91
-	204 => 204,
92
-	205 => 205,
93
-	206 => 206,
94
-	207 => 207,
95
-	208 => 208,
96
-	209 => 209,
97
-	210 => 210,
98
-	211 => 211,
99
-	212 => 212,
100
-	213 => 213,
101
-	214 => 214,
102
-	215 => 215,
103
-	216 => 216,
104
-	217 => 217,
105
-	218 => 218,
106
-	219 => 219,
107
-	220 => 220,
108
-	221 => 221,
109
-	222 => 222,
110
-	223 => 223,
111
-	224 => 224,
112
-	225 => 225,
113
-	226 => 226,
114
-	227 => 227,
115
-	228 => 228,
116
-	229 => 229,
117
-	230 => 230,
118
-	231 => 231,
119
-	232 => 232,
120
-	233 => 233,
121
-	234 => 234,
122
-	235 => 235,
123
-	236 => 236,
124
-	237 => 237,
125
-	238 => 238,
126
-	239 => 239,
127
-	240 => 240,
128
-	241 => 241,
129
-	242 => 242,
130
-	243 => 243,
131
-	244 => 244,
132
-	245 => 245,
133
-	246 => 246,
134
-	247 => 247,
135
-	248 => 248,
136
-	249 => 249,
137
-	250 => 250,
138
-	251 => 251,
139
-	252 => 252,
140
-	253 => 253,
141
-	254 => 254,
142
-	255 => 255
47
+    160 => 160,
48
+    161 => 161,
49
+    162 => 162,
50
+    163 => 163,
51
+    164 => 164,
52
+    165 => 165,
53
+    166 => 166,
54
+    167 => 167,
55
+    168 => 168,
56
+    169 => 169,
57
+    170 => 170,
58
+    171 => 171,
59
+    172 => 172,
60
+    173 => 173,
61
+    174 => 174,
62
+    175 => 175,
63
+    176 => 176,
64
+    177 => 177,
65
+    178 => 178,
66
+    179 => 179,
67
+    180 => 180,
68
+    181 => 181,
69
+    182 => 182,
70
+    183 => 183,
71
+    184 => 184,
72
+    185 => 185,
73
+    186 => 186,
74
+    187 => 187,
75
+    188 => 188,
76
+    189 => 189,
77
+    190 => 190,
78
+    191 => 191,
79
+    192 => 192,
80
+    193 => 193,
81
+    194 => 194,
82
+    195 => 195,
83
+    196 => 196,
84
+    197 => 197,
85
+    198 => 198,
86
+    199 => 199,
87
+    200 => 200,
88
+    201 => 201,
89
+    202 => 202,
90
+    203 => 203,
91
+    204 => 204,
92
+    205 => 205,
93
+    206 => 206,
94
+    207 => 207,
95
+    208 => 208,
96
+    209 => 209,
97
+    210 => 210,
98
+    211 => 211,
99
+    212 => 212,
100
+    213 => 213,
101
+    214 => 214,
102
+    215 => 215,
103
+    216 => 216,
104
+    217 => 217,
105
+    218 => 218,
106
+    219 => 219,
107
+    220 => 220,
108
+    221 => 221,
109
+    222 => 222,
110
+    223 => 223,
111
+    224 => 224,
112
+    225 => 225,
113
+    226 => 226,
114
+    227 => 227,
115
+    228 => 228,
116
+    229 => 229,
117
+    230 => 230,
118
+    231 => 231,
119
+    232 => 232,
120
+    233 => 233,
121
+    234 => 234,
122
+    235 => 235,
123
+    236 => 236,
124
+    237 => 237,
125
+    238 => 238,
126
+    239 => 239,
127
+    240 => 240,
128
+    241 => 241,
129
+    242 => 242,
130
+    243 => 243,
131
+    244 => 244,
132
+    245 => 245,
133
+    246 => 246,
134
+    247 => 247,
135
+    248 => 248,
136
+    249 => 249,
137
+    250 => 250,
138
+    251 => 251,
139
+    252 => 252,
140
+    253 => 253,
141
+    254 => 254,
142
+    255 => 255
143 143
 
144 144
 ];
Please login to merge, or discard this patch.
ecrire/charsets/iso-8859-6.php 1 patch
Indentation   +53 added lines, -53 removed lines patch added patch discarded remove patch
@@ -19,7 +19,7 @@  discard block
 block discarded – undo
19 19
  **/
20 20
 
21 21
 if (!defined('_ECRIRE_INC_VERSION')) {
22
-	return;
22
+    return;
23 23
 }
24 24
 
25 25
 load_charset('iso-8859-1');
@@ -27,61 +27,61 @@  discard block
 block discarded – undo
27 27
 $trans = $GLOBALS['CHARSET']['iso-8859-1'];
28 28
 
29 29
 $mod = [
30
-	0xA0 => 0x00A0,
31
-	0xA4 => 0x00A4,
32
-	0xAC => 0x060C,
33
-	0xAD => 0x00AD,
34
-	0xBB => 0x061B,
35
-	0xBF => 0x061F,
36
-	0xC1 => 0x0621,
37
-	0xC2 => 0x0622,
38
-	0xC3 => 0x0623,
39
-	0xC4 => 0x0624,
40
-	0xC5 => 0x0625,
41
-	0xC6 => 0x0626,
42
-	0xC7 => 0x0627,
43
-	0xC8 => 0x0628,
44
-	0xC9 => 0x0629,
45
-	0xCA => 0x062A,
46
-	0xCB => 0x062B,
47
-	0xCC => 0x062C,
48
-	0xCD => 0x062D,
49
-	0xCE => 0x062E,
50
-	0xCF => 0x062F,
51
-	0xD0 => 0x0630,
52
-	0xD1 => 0x0631,
53
-	0xD2 => 0x0632,
54
-	0xD3 => 0x0633,
55
-	0xD4 => 0x0634,
56
-	0xD5 => 0x0635,
57
-	0xD6 => 0x0636,
58
-	0xD7 => 0x0637,
59
-	0xD8 => 0x0638,
60
-	0xD9 => 0x0639,
61
-	0xDA => 0x063A,
62
-	0xE0 => 0x0640,
63
-	0xE1 => 0x0641,
64
-	0xE2 => 0x0642,
65
-	0xE3 => 0x0643,
66
-	0xE4 => 0x0644,
67
-	0xE5 => 0x0645,
68
-	0xE6 => 0x0646,
69
-	0xE7 => 0x0647,
70
-	0xE8 => 0x0648,
71
-	0xE9 => 0x0649,
72
-	0xEA => 0x064A,
73
-	0xEB => 0x064B,
74
-	0xEC => 0x064C,
75
-	0xED => 0x064D,
76
-	0xEE => 0x064E,
77
-	0xEF => 0x064F,
78
-	0xF0 => 0x0650,
79
-	0xF1 => 0x0651,
80
-	0xF2 => 0x0652
30
+    0xA0 => 0x00A0,
31
+    0xA4 => 0x00A4,
32
+    0xAC => 0x060C,
33
+    0xAD => 0x00AD,
34
+    0xBB => 0x061B,
35
+    0xBF => 0x061F,
36
+    0xC1 => 0x0621,
37
+    0xC2 => 0x0622,
38
+    0xC3 => 0x0623,
39
+    0xC4 => 0x0624,
40
+    0xC5 => 0x0625,
41
+    0xC6 => 0x0626,
42
+    0xC7 => 0x0627,
43
+    0xC8 => 0x0628,
44
+    0xC9 => 0x0629,
45
+    0xCA => 0x062A,
46
+    0xCB => 0x062B,
47
+    0xCC => 0x062C,
48
+    0xCD => 0x062D,
49
+    0xCE => 0x062E,
50
+    0xCF => 0x062F,
51
+    0xD0 => 0x0630,
52
+    0xD1 => 0x0631,
53
+    0xD2 => 0x0632,
54
+    0xD3 => 0x0633,
55
+    0xD4 => 0x0634,
56
+    0xD5 => 0x0635,
57
+    0xD6 => 0x0636,
58
+    0xD7 => 0x0637,
59
+    0xD8 => 0x0638,
60
+    0xD9 => 0x0639,
61
+    0xDA => 0x063A,
62
+    0xE0 => 0x0640,
63
+    0xE1 => 0x0641,
64
+    0xE2 => 0x0642,
65
+    0xE3 => 0x0643,
66
+    0xE4 => 0x0644,
67
+    0xE5 => 0x0645,
68
+    0xE6 => 0x0646,
69
+    0xE7 => 0x0647,
70
+    0xE8 => 0x0648,
71
+    0xE9 => 0x0649,
72
+    0xEA => 0x064A,
73
+    0xEB => 0x064B,
74
+    0xEC => 0x064C,
75
+    0xED => 0x064D,
76
+    0xEE => 0x064E,
77
+    0xEF => 0x064F,
78
+    0xF0 => 0x0650,
79
+    0xF1 => 0x0651,
80
+    0xF2 => 0x0652
81 81
 ];
82 82
 
83 83
 foreach ($mod as $num => $val) {
84
-	$trans[$num] = $val;
84
+    $trans[$num] = $val;
85 85
 }
86 86
 
87 87
 $GLOBALS['CHARSET']['iso-8859-6'] = $trans;
Please login to merge, or discard this patch.
ecrire/charsets/translitcomplexe.php 1 patch
Indentation   +142 added lines, -142 removed lines patch added patch discarded remove patch
@@ -20,7 +20,7 @@  discard block
 block discarded – undo
20 20
  **/
21 21
 
22 22
 if (!defined('_ECRIRE_INC_VERSION')) {
23
-	return;
23
+    return;
24 24
 }
25 25
 
26 26
 load_charset('translit');
@@ -28,151 +28,151 @@  discard block
 block discarded – undo
28 28
 
29 29
 $translit_c = [
30 30
 // vietnamien
31
-	225 => "a'",
32
-	224 => 'a`',
33
-	7843 => 'a?',
34
-	227 => 'a~',
35
-	7841 => 'a.',
36
-	226 => 'a^',
37
-	7845 => "a^'",
38
-	7847 => 'a^`',
39
-	7849 => 'a^?',
40
-	7851 => 'a^~',
41
-	7853 => 'a^.',
42
-	259 => 'a(',
43
-	7855 => "a('",
44
-	7857 => 'a(`',
45
-	7859 => 'a(?',
46
-	7861 => 'a(~',
47
-	7863 => 'a(.',
48
-	193 => "A'",
49
-	192 => 'A`',
50
-	7842 => 'A?',
51
-	195 => 'A~',
52
-	7840 => 'A.',
53
-	194 => 'A^',
54
-	7844 => "A^'",
55
-	7846 => 'A^`',
56
-	7848 => 'A^?',
57
-	7850 => 'A^~',
58
-	7852 => 'A^.',
59
-	258 => 'A(',
60
-	7854 => "A('",
61
-	7856 => 'A(`',
62
-	7858 => 'A(?',
63
-	7860 => 'A(~',
64
-	7862 => 'A(.',
65
-	233 => "e'",
66
-	232 => 'e`',
67
-	7867 => 'e?',
68
-	7869 => 'e~',
69
-	7865 => 'e.',
70
-	234 => 'e^',
71
-	7871 => "e^'",
72
-	7873 => 'e^`',
73
-	7875 => 'e^?',
74
-	7877 => 'e^~',
75
-	7879 => 'e^.',
76
-	201 => "E'",
77
-	200 => 'E`',
78
-	7866 => 'E?',
79
-	7868 => 'E~',
80
-	7864 => 'E.',
81
-	202 => 'E^',
82
-	7870 => "E^'",
83
-	7872 => 'E^`',
84
-	7874 => 'E^?',
85
-	7876 => 'E^~',
86
-	7878 => 'E^.',
87
-	237 => "i'",
88
-	236 => 'i`',
89
-	7881 => 'i?',
90
-	297 => 'i~',
91
-	7883 => 'i.',
92
-	205 => "I'",
93
-	204 => 'I`',
94
-	7880 => 'I?',
95
-	296 => 'I~',
96
-	7882 => 'I.',
97
-	243 => "o'",
98
-	242 => 'o`',
99
-	7887 => 'o?',
100
-	245 => 'o~',
101
-	7885 => 'o.',
102
-	244 => 'o^',
103
-	7889 => "o^'",
104
-	7891 => 'o^`',
105
-	7893 => 'o^?',
106
-	7895 => 'o^~',
107
-	7897 => 'o^.',
108
-	417 => 'o+',
109
-	7899 => "o+'",
110
-	7901 => 'o+`',
111
-	7903 => 'o+?',
112
-	7905 => 'o+~',
113
-	7907 => 'o+.',
114
-	211 => "O'",
115
-	210 => 'O`',
116
-	7886 => 'O?',
117
-	213 => 'O~',
118
-	7884 => 'O.',
119
-	212 => 'O^',
120
-	7888 => "O^'",
121
-	7890 => 'O^`',
122
-	7892 => 'O^?',
123
-	7894 => 'O^~',
124
-	7896 => 'O^.',
125
-	416 => 'O+',
126
-	7898 => "O+'",
127
-	7900 => 'O+`',
128
-	7902 => 'O+?',
129
-	7904 => 'O+~',
130
-	7906 => 'O+.',
131
-	250 => "u'",
132
-	249 => 'u`',
133
-	7911 => 'u?',
134
-	361 => 'u~',
135
-	7909 => 'u.',
136
-	432 => 'u+',
137
-	7913 => "u+'",
138
-	7915 => 'u+`',
139
-	7917 => 'u+?',
140
-	7919 => 'u+~',
141
-	7921 => 'u+.',
142
-	218 => "U'",
143
-	217 => 'U`',
144
-	7910 => 'U?',
145
-	360 => 'U~',
146
-	7908 => 'U.',
147
-	431 => 'U+',
148
-	7912 => "U+'",
149
-	7914 => 'U+`',
150
-	7916 => 'U+?',
151
-	7918 => 'U+~',
152
-	7920 => 'U+.',
153
-	253 => "y'",
154
-	7923 => 'y`',
155
-	7927 => 'y?',
156
-	7929 => 'y~',
157
-	7925 => 'y.',
158
-	221 => "Y'",
159
-	7922 => 'Y`',
160
-	7926 => 'Y?',
161
-	7928 => 'Y~',
162
-	7924 => 'Y.',
163
-	273 => 'd-',
164
-	208 => 'D-',
31
+    225 => "a'",
32
+    224 => 'a`',
33
+    7843 => 'a?',
34
+    227 => 'a~',
35
+    7841 => 'a.',
36
+    226 => 'a^',
37
+    7845 => "a^'",
38
+    7847 => 'a^`',
39
+    7849 => 'a^?',
40
+    7851 => 'a^~',
41
+    7853 => 'a^.',
42
+    259 => 'a(',
43
+    7855 => "a('",
44
+    7857 => 'a(`',
45
+    7859 => 'a(?',
46
+    7861 => 'a(~',
47
+    7863 => 'a(.',
48
+    193 => "A'",
49
+    192 => 'A`',
50
+    7842 => 'A?',
51
+    195 => 'A~',
52
+    7840 => 'A.',
53
+    194 => 'A^',
54
+    7844 => "A^'",
55
+    7846 => 'A^`',
56
+    7848 => 'A^?',
57
+    7850 => 'A^~',
58
+    7852 => 'A^.',
59
+    258 => 'A(',
60
+    7854 => "A('",
61
+    7856 => 'A(`',
62
+    7858 => 'A(?',
63
+    7860 => 'A(~',
64
+    7862 => 'A(.',
65
+    233 => "e'",
66
+    232 => 'e`',
67
+    7867 => 'e?',
68
+    7869 => 'e~',
69
+    7865 => 'e.',
70
+    234 => 'e^',
71
+    7871 => "e^'",
72
+    7873 => 'e^`',
73
+    7875 => 'e^?',
74
+    7877 => 'e^~',
75
+    7879 => 'e^.',
76
+    201 => "E'",
77
+    200 => 'E`',
78
+    7866 => 'E?',
79
+    7868 => 'E~',
80
+    7864 => 'E.',
81
+    202 => 'E^',
82
+    7870 => "E^'",
83
+    7872 => 'E^`',
84
+    7874 => 'E^?',
85
+    7876 => 'E^~',
86
+    7878 => 'E^.',
87
+    237 => "i'",
88
+    236 => 'i`',
89
+    7881 => 'i?',
90
+    297 => 'i~',
91
+    7883 => 'i.',
92
+    205 => "I'",
93
+    204 => 'I`',
94
+    7880 => 'I?',
95
+    296 => 'I~',
96
+    7882 => 'I.',
97
+    243 => "o'",
98
+    242 => 'o`',
99
+    7887 => 'o?',
100
+    245 => 'o~',
101
+    7885 => 'o.',
102
+    244 => 'o^',
103
+    7889 => "o^'",
104
+    7891 => 'o^`',
105
+    7893 => 'o^?',
106
+    7895 => 'o^~',
107
+    7897 => 'o^.',
108
+    417 => 'o+',
109
+    7899 => "o+'",
110
+    7901 => 'o+`',
111
+    7903 => 'o+?',
112
+    7905 => 'o+~',
113
+    7907 => 'o+.',
114
+    211 => "O'",
115
+    210 => 'O`',
116
+    7886 => 'O?',
117
+    213 => 'O~',
118
+    7884 => 'O.',
119
+    212 => 'O^',
120
+    7888 => "O^'",
121
+    7890 => 'O^`',
122
+    7892 => 'O^?',
123
+    7894 => 'O^~',
124
+    7896 => 'O^.',
125
+    416 => 'O+',
126
+    7898 => "O+'",
127
+    7900 => 'O+`',
128
+    7902 => 'O+?',
129
+    7904 => 'O+~',
130
+    7906 => 'O+.',
131
+    250 => "u'",
132
+    249 => 'u`',
133
+    7911 => 'u?',
134
+    361 => 'u~',
135
+    7909 => 'u.',
136
+    432 => 'u+',
137
+    7913 => "u+'",
138
+    7915 => 'u+`',
139
+    7917 => 'u+?',
140
+    7919 => 'u+~',
141
+    7921 => 'u+.',
142
+    218 => "U'",
143
+    217 => 'U`',
144
+    7910 => 'U?',
145
+    360 => 'U~',
146
+    7908 => 'U.',
147
+    431 => 'U+',
148
+    7912 => "U+'",
149
+    7914 => 'U+`',
150
+    7916 => 'U+?',
151
+    7918 => 'U+~',
152
+    7920 => 'U+.',
153
+    253 => "y'",
154
+    7923 => 'y`',
155
+    7927 => 'y?',
156
+    7929 => 'y~',
157
+    7925 => 'y.',
158
+    221 => "Y'",
159
+    7922 => 'Y`',
160
+    7926 => 'Y?',
161
+    7928 => 'Y~',
162
+    7924 => 'Y.',
163
+    273 => 'd-',
164
+    208 => 'D-',
165 165
 
166 166
 // allemand
167
-	228 => 'ae',
168
-	246 => 'oe',
169
-	252 => 'ue',
170
-	196 => 'Ae',
171
-	214 => 'Oe',
172
-	220 => 'Ue'
167
+    228 => 'ae',
168
+    246 => 'oe',
169
+    252 => 'ue',
170
+    196 => 'Ae',
171
+    214 => 'Oe',
172
+    220 => 'Ue'
173 173
 ];
174 174
 
175 175
 foreach ($translit_c as $u => $t) {
176
-	$trans[$u] = $t;
176
+    $trans[$u] = $t;
177 177
 }
178 178
 $GLOBALS['CHARSET']['translitcomplexe'] = $trans;
Please login to merge, or discard this patch.
ecrire/charsets/cp1251.php 1 patch
Indentation   +127 added lines, -127 removed lines patch added patch discarded remove patch
@@ -9,131 +9,131 @@
 block discarded – undo
9 9
  **/
10 10
 
11 11
 $GLOBALS['CHARSET']['cp1251'] = [
12
-	0x80 => 0x0402,
13
-	0x81 => 0x0403,
14
-	0x82 => 0x201A,
15
-	0x83 => 0x0453,
16
-	0x84 => 0x201E,
17
-	0x85 => 0x2026,
18
-	0x86 => 0x2020,
19
-	0x87 => 0x2021,
20
-	0x88 => 0x20AC,
21
-	0x89 => 0x2030,
22
-	0x8A => 0x0409,
23
-	0x8B => 0x2039,
24
-	0x8C => 0x040A,
25
-	0x8D => 0x040C,
26
-	0x8E => 0x040B,
27
-	0x8F => 0x040F,
28
-	0x90 => 0x0452,
29
-	0x91 => 0x2018,
30
-	0x92 => 0x2019,
31
-	0x93 => 0x201C,
32
-	0x94 => 0x201D,
33
-	0x95 => 0x2022,
34
-	0x96 => 0x2013,
35
-	0x97 => 0x2014,
36
-	0x99 => 0x2122,
37
-	0x9A => 0x0459,
38
-	0x9B => 0x203A,
39
-	0x9C => 0x045A,
40
-	0x9D => 0x045C,
41
-	0x9E => 0x045B,
42
-	0x9F => 0x045F,
43
-	0xA0 => 0x00A0,
44
-	0xA1 => 0x040E,
45
-	0xA2 => 0x045E,
46
-	0xA3 => 0x0408,
47
-	0xA4 => 0x00A4,
48
-	0xA5 => 0x0490,
49
-	0xA6 => 0x00A6,
50
-	0xA7 => 0x00A7,
51
-	0xA8 => 0x0401,
52
-	0xA9 => 0x00A9,
53
-	0xAA => 0x0404,
54
-	0xAB => 0x00AB,
55
-	0xAC => 0x00AC,
56
-	0xAD => 0x00AD,
57
-	0xAE => 0x00AE,
58
-	0xAF => 0x0407,
59
-	0xB0 => 0x00B0,
60
-	0xB1 => 0x00B1,
61
-	0xB2 => 0x0406,
62
-	0xB3 => 0x0456,
63
-	0xB4 => 0x0491,
64
-	0xB5 => 0x00B5,
65
-	0xB6 => 0x00B6,
66
-	0xB7 => 0x00B7,
67
-	0xB8 => 0x0451,
68
-	0xB9 => 0x2116,
69
-	0xBA => 0x0454,
70
-	0xBB => 0x00BB,
71
-	0xBC => 0x0458,
72
-	0xBD => 0x0405,
73
-	0xBE => 0x0455,
74
-	0xBF => 0x0457,
75
-	0xC0 => 0x0410,
76
-	0xC1 => 0x0411,
77
-	0xC2 => 0x0412,
78
-	0xC3 => 0x0413,
79
-	0xC4 => 0x0414,
80
-	0xC5 => 0x0415,
81
-	0xC6 => 0x0416,
82
-	0xC7 => 0x0417,
83
-	0xC8 => 0x0418,
84
-	0xC9 => 0x0419,
85
-	0xCA => 0x041A,
86
-	0xCB => 0x041B,
87
-	0xCC => 0x041C,
88
-	0xCD => 0x041D,
89
-	0xCE => 0x041E,
90
-	0xCF => 0x041F,
91
-	0xD0 => 0x0420,
92
-	0xD1 => 0x0421,
93
-	0xD2 => 0x0422,
94
-	0xD3 => 0x0423,
95
-	0xD4 => 0x0424,
96
-	0xD5 => 0x0425,
97
-	0xD6 => 0x0426,
98
-	0xD7 => 0x0427,
99
-	0xD8 => 0x0428,
100
-	0xD9 => 0x0429,
101
-	0xDA => 0x042A,
102
-	0xDB => 0x042B,
103
-	0xDC => 0x042C,
104
-	0xDD => 0x042D,
105
-	0xDE => 0x042E,
106
-	0xDF => 0x042F,
107
-	0xE0 => 0x0430,
108
-	0xE1 => 0x0431,
109
-	0xE2 => 0x0432,
110
-	0xE3 => 0x0433,
111
-	0xE4 => 0x0434,
112
-	0xE5 => 0x0435,
113
-	0xE6 => 0x0436,
114
-	0xE7 => 0x0437,
115
-	0xE8 => 0x0438,
116
-	0xE9 => 0x0439,
117
-	0xEA => 0x043A,
118
-	0xEB => 0x043B,
119
-	0xEC => 0x043C,
120
-	0xED => 0x043D,
121
-	0xEE => 0x043E,
122
-	0xEF => 0x043F,
123
-	0xF0 => 0x0440,
124
-	0xF1 => 0x0441,
125
-	0xF2 => 0x0442,
126
-	0xF3 => 0x0443,
127
-	0xF4 => 0x0444,
128
-	0xF5 => 0x0445,
129
-	0xF6 => 0x0446,
130
-	0xF7 => 0x0447,
131
-	0xF8 => 0x0448,
132
-	0xF9 => 0x0449,
133
-	0xFA => 0x044A,
134
-	0xFB => 0x044B,
135
-	0xFC => 0x044C,
136
-	0xFD => 0x044D,
137
-	0xFE => 0x044E,
138
-	0xFF => 0x044F
12
+    0x80 => 0x0402,
13
+    0x81 => 0x0403,
14
+    0x82 => 0x201A,
15
+    0x83 => 0x0453,
16
+    0x84 => 0x201E,
17
+    0x85 => 0x2026,
18
+    0x86 => 0x2020,
19
+    0x87 => 0x2021,
20
+    0x88 => 0x20AC,
21
+    0x89 => 0x2030,
22
+    0x8A => 0x0409,
23
+    0x8B => 0x2039,
24
+    0x8C => 0x040A,
25
+    0x8D => 0x040C,
26
+    0x8E => 0x040B,
27
+    0x8F => 0x040F,
28
+    0x90 => 0x0452,
29
+    0x91 => 0x2018,
30
+    0x92 => 0x2019,
31
+    0x93 => 0x201C,
32
+    0x94 => 0x201D,
33
+    0x95 => 0x2022,
34
+    0x96 => 0x2013,
35
+    0x97 => 0x2014,
36
+    0x99 => 0x2122,
37
+    0x9A => 0x0459,
38
+    0x9B => 0x203A,
39
+    0x9C => 0x045A,
40
+    0x9D => 0x045C,
41
+    0x9E => 0x045B,
42
+    0x9F => 0x045F,
43
+    0xA0 => 0x00A0,
44
+    0xA1 => 0x040E,
45
+    0xA2 => 0x045E,
46
+    0xA3 => 0x0408,
47
+    0xA4 => 0x00A4,
48
+    0xA5 => 0x0490,
49
+    0xA6 => 0x00A6,
50
+    0xA7 => 0x00A7,
51
+    0xA8 => 0x0401,
52
+    0xA9 => 0x00A9,
53
+    0xAA => 0x0404,
54
+    0xAB => 0x00AB,
55
+    0xAC => 0x00AC,
56
+    0xAD => 0x00AD,
57
+    0xAE => 0x00AE,
58
+    0xAF => 0x0407,
59
+    0xB0 => 0x00B0,
60
+    0xB1 => 0x00B1,
61
+    0xB2 => 0x0406,
62
+    0xB3 => 0x0456,
63
+    0xB4 => 0x0491,
64
+    0xB5 => 0x00B5,
65
+    0xB6 => 0x00B6,
66
+    0xB7 => 0x00B7,
67
+    0xB8 => 0x0451,
68
+    0xB9 => 0x2116,
69
+    0xBA => 0x0454,
70
+    0xBB => 0x00BB,
71
+    0xBC => 0x0458,
72
+    0xBD => 0x0405,
73
+    0xBE => 0x0455,
74
+    0xBF => 0x0457,
75
+    0xC0 => 0x0410,
76
+    0xC1 => 0x0411,
77
+    0xC2 => 0x0412,
78
+    0xC3 => 0x0413,
79
+    0xC4 => 0x0414,
80
+    0xC5 => 0x0415,
81
+    0xC6 => 0x0416,
82
+    0xC7 => 0x0417,
83
+    0xC8 => 0x0418,
84
+    0xC9 => 0x0419,
85
+    0xCA => 0x041A,
86
+    0xCB => 0x041B,
87
+    0xCC => 0x041C,
88
+    0xCD => 0x041D,
89
+    0xCE => 0x041E,
90
+    0xCF => 0x041F,
91
+    0xD0 => 0x0420,
92
+    0xD1 => 0x0421,
93
+    0xD2 => 0x0422,
94
+    0xD3 => 0x0423,
95
+    0xD4 => 0x0424,
96
+    0xD5 => 0x0425,
97
+    0xD6 => 0x0426,
98
+    0xD7 => 0x0427,
99
+    0xD8 => 0x0428,
100
+    0xD9 => 0x0429,
101
+    0xDA => 0x042A,
102
+    0xDB => 0x042B,
103
+    0xDC => 0x042C,
104
+    0xDD => 0x042D,
105
+    0xDE => 0x042E,
106
+    0xDF => 0x042F,
107
+    0xE0 => 0x0430,
108
+    0xE1 => 0x0431,
109
+    0xE2 => 0x0432,
110
+    0xE3 => 0x0433,
111
+    0xE4 => 0x0434,
112
+    0xE5 => 0x0435,
113
+    0xE6 => 0x0436,
114
+    0xE7 => 0x0437,
115
+    0xE8 => 0x0438,
116
+    0xE9 => 0x0439,
117
+    0xEA => 0x043A,
118
+    0xEB => 0x043B,
119
+    0xEC => 0x043C,
120
+    0xED => 0x043D,
121
+    0xEE => 0x043E,
122
+    0xEF => 0x043F,
123
+    0xF0 => 0x0440,
124
+    0xF1 => 0x0441,
125
+    0xF2 => 0x0442,
126
+    0xF3 => 0x0443,
127
+    0xF4 => 0x0444,
128
+    0xF5 => 0x0445,
129
+    0xF6 => 0x0446,
130
+    0xF7 => 0x0447,
131
+    0xF8 => 0x0448,
132
+    0xF9 => 0x0449,
133
+    0xFA => 0x044A,
134
+    0xFB => 0x044B,
135
+    0xFC => 0x044C,
136
+    0xFD => 0x044D,
137
+    0xFE => 0x044E,
138
+    0xFF => 0x044F
139 139
 ];
Please login to merge, or discard this patch.
ecrire/charsets/html.php 1 patch
Indentation   +114 added lines, -114 removed lines patch added patch discarded remove patch
@@ -8,120 +8,120 @@
 block discarded – undo
8 8
  **/
9 9
 
10 10
 $GLOBALS['CHARSET']['html'] = [
11
-	'ldquo' => '&#8220;',
12
-	'rdquo' => '&#8221;',
13
-	'bdquo' => '&#8222;',
14
-	'cent' => '&#162;',
15
-	'pound' => '&#163;',
16
-	'curren' => '&#164;',
17
-	'yen' => '&#165;',
18
-	'brvbar' => '&#166;',
19
-	'sect' => '&#167;',
20
-	'uml' => '&#168;',
21
-	'ordf' => '&#170;',
22
-	'laquo' => '&#171;',
23
-	'lsquo' => '&#8216;',
24
-	'rsquo' => '&#8217;',
25
-	'not' => '&#172;',
26
-	'shy' => '&#173;',
27
-	'macr' => '&#175;',
28
-	'deg' => '&#176;',
29
-	'plusmn' => '&#177;',
30
-	'sup2' => '&#178;',
31
-	'sup3' => '&#179;',
32
-	'acute' => '&#180;',
33
-	'micro' => '&#181;',
34
-	'para' => '&#182;',
35
-	'middot' => '&#183;',
36
-	'cedil' => '&#184;',
37
-	'sup1' => '&#185;',
38
-	'ordm' => '&#186;',
39
-	'raquo' => '&#187;',
40
-	'iquest' => '&#191;',
41
-	'Agrave' => '&#192;',
42
-	'Aacute' => '&#193;',
43
-	'Acirc' => '&#194;',
44
-	'Atilde' => '&#195;',
45
-	'Auml' => '&#196;',
46
-	'Aring' => '&#197;',
47
-	'AElig' => '&#198;',
48
-	'Ccedil' => '&#199;',
49
-	'Egrave' => '&#200;',
50
-	'Eacute' => '&#201;',
51
-	'Ecirc' => '&#202;',
52
-	'Euml' => '&#203;',
53
-	'Igrave' => '&#204;',
54
-	'Iacute' => '&#205;',
55
-	'Icirc' => '&#206;',
56
-	'Iuml' => '&#207;',
57
-	'ETH' => '&#208;',
58
-	'Ntilde' => '&#209;',
59
-	'Ograve' => '&#210;',
60
-	'Oacute' => '&#211;',
61
-	'Ocirc' => '&#212;',
62
-	'Otilde' => '&#213;',
63
-	'Ouml' => '&#214;',
64
-	'times' => '&#215;',
65
-	'Oslash' => '&#216;',
66
-	'Ugrave' => '&#217;',
67
-	'Uacute' => '&#218;',
68
-	'Ucirc' => '&#219;',
69
-	'Uuml' => '&#220;',
70
-	'Yacute' => '&#221;',
71
-	'THORN' => '&#222;',
72
-	'szlig' => '&#223;',
73
-	'agrave' => '&#224;',
74
-	'Scaron' => '&#352;',
75
-	'scaron' => '&#353;',
76
-	'zcaron' => '&#x17E;',
77
-	'Zcaron' => '&#x17D;',
78
-	'aacute' => '&#225;',
79
-	'acirc' => '&#226;',
80
-	'atilde' => '&#227;',
81
-	'auml' => '&#228;',
82
-	'aring' => '&#229;',
83
-	'aelig' => '&#230;',
84
-	'ccedil' => '&#231;',
85
-	'egrave' => '&#232;',
86
-	'eacute' => '&#233;',
87
-	'ecirc' => '&#234;',
88
-	'euml' => '&#235;',
89
-	'igrave' => '&#236;',
90
-	'iacute' => '&#237;',
91
-	'icirc' => '&#238;',
92
-	'iuml' => '&#239;',
93
-	'eth' => '&#240;',
94
-	'ntilde' => '&#241;',
95
-	'ograve' => '&#242;',
96
-	'oacute' => '&#243;',
97
-	'ocirc' => '&#244;',
98
-	'otilde' => '&#245;',
99
-	'ouml' => '&#246;',
100
-	'divide' => '&#247;',
101
-	'oslash' => '&#248;',
102
-	'ugrave' => '&#249;',
103
-	'uacute' => '&#250;',
104
-	'ucirc' => '&#251;',
105
-	'uuml' => '&#252;',
106
-	'yacute' => '&#253;',
107
-	'thorn' => '&#254;',
108
-	'nbsp' => ' ',
109
-	'thinsp' => '&#8201;',
110
-	'ensp' => '&#8194;',
111
-	'emsp' => '&#8195;',
112
-	'copy' => '(c)',
113
-	'reg' => '(r)',
114
-	'frac14' => '1/4',
115
-	'frac12' => '1/2',
116
-	'frac34' => '3/4',
117
-	'apos' => "'",
118
-	'mdash' => '&#8212;',
119
-	'ndash' => '&#8211;',
120
-	'hellip' => '&#8230;',
121
-	'euro' => '&#8364;',
122
-	'OElig' => '&#338;',
123
-	'oelig' => '&#339;',
124
-	'iexcl' => '&#161;'
11
+    'ldquo' => '&#8220;',
12
+    'rdquo' => '&#8221;',
13
+    'bdquo' => '&#8222;',
14
+    'cent' => '&#162;',
15
+    'pound' => '&#163;',
16
+    'curren' => '&#164;',
17
+    'yen' => '&#165;',
18
+    'brvbar' => '&#166;',
19
+    'sect' => '&#167;',
20
+    'uml' => '&#168;',
21
+    'ordf' => '&#170;',
22
+    'laquo' => '&#171;',
23
+    'lsquo' => '&#8216;',
24
+    'rsquo' => '&#8217;',
25
+    'not' => '&#172;',
26
+    'shy' => '&#173;',
27
+    'macr' => '&#175;',
28
+    'deg' => '&#176;',
29
+    'plusmn' => '&#177;',
30
+    'sup2' => '&#178;',
31
+    'sup3' => '&#179;',
32
+    'acute' => '&#180;',
33
+    'micro' => '&#181;',
34
+    'para' => '&#182;',
35
+    'middot' => '&#183;',
36
+    'cedil' => '&#184;',
37
+    'sup1' => '&#185;',
38
+    'ordm' => '&#186;',
39
+    'raquo' => '&#187;',
40
+    'iquest' => '&#191;',
41
+    'Agrave' => '&#192;',
42
+    'Aacute' => '&#193;',
43
+    'Acirc' => '&#194;',
44
+    'Atilde' => '&#195;',
45
+    'Auml' => '&#196;',
46
+    'Aring' => '&#197;',
47
+    'AElig' => '&#198;',
48
+    'Ccedil' => '&#199;',
49
+    'Egrave' => '&#200;',
50
+    'Eacute' => '&#201;',
51
+    'Ecirc' => '&#202;',
52
+    'Euml' => '&#203;',
53
+    'Igrave' => '&#204;',
54
+    'Iacute' => '&#205;',
55
+    'Icirc' => '&#206;',
56
+    'Iuml' => '&#207;',
57
+    'ETH' => '&#208;',
58
+    'Ntilde' => '&#209;',
59
+    'Ograve' => '&#210;',
60
+    'Oacute' => '&#211;',
61
+    'Ocirc' => '&#212;',
62
+    'Otilde' => '&#213;',
63
+    'Ouml' => '&#214;',
64
+    'times' => '&#215;',
65
+    'Oslash' => '&#216;',
66
+    'Ugrave' => '&#217;',
67
+    'Uacute' => '&#218;',
68
+    'Ucirc' => '&#219;',
69
+    'Uuml' => '&#220;',
70
+    'Yacute' => '&#221;',
71
+    'THORN' => '&#222;',
72
+    'szlig' => '&#223;',
73
+    'agrave' => '&#224;',
74
+    'Scaron' => '&#352;',
75
+    'scaron' => '&#353;',
76
+    'zcaron' => '&#x17E;',
77
+    'Zcaron' => '&#x17D;',
78
+    'aacute' => '&#225;',
79
+    'acirc' => '&#226;',
80
+    'atilde' => '&#227;',
81
+    'auml' => '&#228;',
82
+    'aring' => '&#229;',
83
+    'aelig' => '&#230;',
84
+    'ccedil' => '&#231;',
85
+    'egrave' => '&#232;',
86
+    'eacute' => '&#233;',
87
+    'ecirc' => '&#234;',
88
+    'euml' => '&#235;',
89
+    'igrave' => '&#236;',
90
+    'iacute' => '&#237;',
91
+    'icirc' => '&#238;',
92
+    'iuml' => '&#239;',
93
+    'eth' => '&#240;',
94
+    'ntilde' => '&#241;',
95
+    'ograve' => '&#242;',
96
+    'oacute' => '&#243;',
97
+    'ocirc' => '&#244;',
98
+    'otilde' => '&#245;',
99
+    'ouml' => '&#246;',
100
+    'divide' => '&#247;',
101
+    'oslash' => '&#248;',
102
+    'ugrave' => '&#249;',
103
+    'uacute' => '&#250;',
104
+    'ucirc' => '&#251;',
105
+    'uuml' => '&#252;',
106
+    'yacute' => '&#253;',
107
+    'thorn' => '&#254;',
108
+    'nbsp' => ' ',
109
+    'thinsp' => '&#8201;',
110
+    'ensp' => '&#8194;',
111
+    'emsp' => '&#8195;',
112
+    'copy' => '(c)',
113
+    'reg' => '(r)',
114
+    'frac14' => '1/4',
115
+    'frac12' => '1/2',
116
+    'frac34' => '3/4',
117
+    'apos' => "'",
118
+    'mdash' => '&#8212;',
119
+    'ndash' => '&#8211;',
120
+    'hellip' => '&#8230;',
121
+    'euro' => '&#8364;',
122
+    'OElig' => '&#338;',
123
+    'oelig' => '&#339;',
124
+    'iexcl' => '&#161;'
125 125
 
126 126
 ];
127 127
 
Please login to merge, or discard this patch.
ecrire/charsets/cp1256.php 1 patch
Indentation   +128 added lines, -128 removed lines patch added patch discarded remove patch
@@ -10,132 +10,132 @@
 block discarded – undo
10 10
  **/
11 11
 
12 12
 $GLOBALS['CHARSET']['cp1256'] = [
13
-	0x80 => 0x20AC,
14
-	0x81 => 0x067E,
15
-	0x82 => 0x201A,
16
-	0x83 => 0x0192,
17
-	0x84 => 0x201E,
18
-	0x85 => 0x2026,
19
-	0x86 => 0x2020,
20
-	0x87 => 0x2021,
21
-	0x88 => 0x02C6,
22
-	0x89 => 0x2030,
23
-	0x8A => 0x0679,
24
-	0x8B => 0x2039,
25
-	0x8C => 0x0152,
26
-	0x8D => 0x0686,
27
-	0x8E => 0x0698,
28
-	0x8F => 0x0688,
29
-	0x90 => 0x06AF,
30
-	0x91 => 0x2018,
31
-	0x92 => 0x2019,
32
-	0x93 => 0x201C,
33
-	0x94 => 0x201D,
34
-	0x95 => 0x2022,
35
-	0x96 => 0x2013,
36
-	0x97 => 0x2014,
37
-	0x98 => 0x06A9,
38
-	0x99 => 0x2122,
39
-	0x9A => 0x0691,
40
-	0x9B => 0x203A,
41
-	0x9C => 0x0153,
42
-	0x9D => 0x200C,
43
-	0x9E => 0x200D,
44
-	0x9F => 0x06BA,
45
-	0xA0 => 0x00A0,
46
-	0xA1 => 0x060C,
47
-	0xA2 => 0x00A2,
48
-	0xA3 => 0x00A3,
49
-	0xA4 => 0x00A4,
50
-	0xA5 => 0x00A5,
51
-	0xA6 => 0x00A6,
52
-	0xA7 => 0x00A7,
53
-	0xA8 => 0x00A8,
54
-	0xA9 => 0x00A9,
55
-	0xAA => 0x06BE,
56
-	0xAB => 0x00AB,
57
-	0xAC => 0x00AC,
58
-	0xAD => 0x00AD,
59
-	0xAE => 0x00AE,
60
-	0xAF => 0x00AF,
61
-	0xB0 => 0x00B0,
62
-	0xB1 => 0x00B1,
63
-	0xB2 => 0x00B2,
64
-	0xB3 => 0x00B3,
65
-	0xB4 => 0x00B4,
66
-	0xB5 => 0x00B5,
67
-	0xB6 => 0x00B6,
68
-	0xB7 => 0x00B7,
69
-	0xB8 => 0x00B8,
70
-	0xB9 => 0x00B9,
71
-	0xBA => 0x061B,
72
-	0xBB => 0x00BB,
73
-	0xBC => 0x00BC,
74
-	0xBD => 0x00BD,
75
-	0xBE => 0x00BE,
76
-	0xBF => 0x061F,
77
-	0xC0 => 0x06C1,
78
-	0xC1 => 0x0621,
79
-	0xC2 => 0x0622,
80
-	0xC3 => 0x0623,
81
-	0xC4 => 0x0624,
82
-	0xC5 => 0x0625,
83
-	0xC6 => 0x0626,
84
-	0xC7 => 0x0627,
85
-	0xC8 => 0x0628,
86
-	0xC9 => 0x0629,
87
-	0xCA => 0x062A,
88
-	0xCB => 0x062B,
89
-	0xCC => 0x062C,
90
-	0xCD => 0x062D,
91
-	0xCE => 0x062E,
92
-	0xCF => 0x062F,
93
-	0xD0 => 0x0630,
94
-	0xD1 => 0x0631,
95
-	0xD2 => 0x0632,
96
-	0xD3 => 0x0633,
97
-	0xD4 => 0x0634,
98
-	0xD5 => 0x0635,
99
-	0xD6 => 0x0636,
100
-	0xD7 => 0x00D7,
101
-	0xD8 => 0x0637,
102
-	0xD9 => 0x0638,
103
-	0xDA => 0x0639,
104
-	0xDB => 0x063A,
105
-	0xDC => 0x0640,
106
-	0xDD => 0x0641,
107
-	0xDE => 0x0642,
108
-	0xDF => 0x0643,
109
-	0xE0 => 0x00E0,
110
-	0xE1 => 0x0644,
111
-	0xE2 => 0x00E2,
112
-	0xE3 => 0x0645,
113
-	0xE4 => 0x0646,
114
-	0xE5 => 0x0647,
115
-	0xE6 => 0x0648,
116
-	0xE7 => 0x00E7,
117
-	0xE8 => 0x00E8,
118
-	0xE9 => 0x00E9,
119
-	0xEA => 0x00EA,
120
-	0xEB => 0x00EB,
121
-	0xEC => 0x0649,
122
-	0xED => 0x064A,
123
-	0xEE => 0x00EE,
124
-	0xEF => 0x00EF,
125
-	0xF0 => 0x064B,
126
-	0xF1 => 0x064C,
127
-	0xF2 => 0x064D,
128
-	0xF3 => 0x064E,
129
-	0xF4 => 0x00F4,
130
-	0xF5 => 0x064F,
131
-	0xF6 => 0x0650,
132
-	0xF7 => 0x00F7,
133
-	0xF8 => 0x0651,
134
-	0xF9 => 0x00F9,
135
-	0xFA => 0x0652,
136
-	0xFB => 0x00FB,
137
-	0xFC => 0x00FC,
138
-	0xFD => 0x200E,
139
-	0xFE => 0x200F,
140
-	0xFF => 0x06D2
13
+    0x80 => 0x20AC,
14
+    0x81 => 0x067E,
15
+    0x82 => 0x201A,
16
+    0x83 => 0x0192,
17
+    0x84 => 0x201E,
18
+    0x85 => 0x2026,
19
+    0x86 => 0x2020,
20
+    0x87 => 0x2021,
21
+    0x88 => 0x02C6,
22
+    0x89 => 0x2030,
23
+    0x8A => 0x0679,
24
+    0x8B => 0x2039,
25
+    0x8C => 0x0152,
26
+    0x8D => 0x0686,
27
+    0x8E => 0x0698,
28
+    0x8F => 0x0688,
29
+    0x90 => 0x06AF,
30
+    0x91 => 0x2018,
31
+    0x92 => 0x2019,
32
+    0x93 => 0x201C,
33
+    0x94 => 0x201D,
34
+    0x95 => 0x2022,
35
+    0x96 => 0x2013,
36
+    0x97 => 0x2014,
37
+    0x98 => 0x06A9,
38
+    0x99 => 0x2122,
39
+    0x9A => 0x0691,
40
+    0x9B => 0x203A,
41
+    0x9C => 0x0153,
42
+    0x9D => 0x200C,
43
+    0x9E => 0x200D,
44
+    0x9F => 0x06BA,
45
+    0xA0 => 0x00A0,
46
+    0xA1 => 0x060C,
47
+    0xA2 => 0x00A2,
48
+    0xA3 => 0x00A3,
49
+    0xA4 => 0x00A4,
50
+    0xA5 => 0x00A5,
51
+    0xA6 => 0x00A6,
52
+    0xA7 => 0x00A7,
53
+    0xA8 => 0x00A8,
54
+    0xA9 => 0x00A9,
55
+    0xAA => 0x06BE,
56
+    0xAB => 0x00AB,
57
+    0xAC => 0x00AC,
58
+    0xAD => 0x00AD,
59
+    0xAE => 0x00AE,
60
+    0xAF => 0x00AF,
61
+    0xB0 => 0x00B0,
62
+    0xB1 => 0x00B1,
63
+    0xB2 => 0x00B2,
64
+    0xB3 => 0x00B3,
65
+    0xB4 => 0x00B4,
66
+    0xB5 => 0x00B5,
67
+    0xB6 => 0x00B6,
68
+    0xB7 => 0x00B7,
69
+    0xB8 => 0x00B8,
70
+    0xB9 => 0x00B9,
71
+    0xBA => 0x061B,
72
+    0xBB => 0x00BB,
73
+    0xBC => 0x00BC,
74
+    0xBD => 0x00BD,
75
+    0xBE => 0x00BE,
76
+    0xBF => 0x061F,
77
+    0xC0 => 0x06C1,
78
+    0xC1 => 0x0621,
79
+    0xC2 => 0x0622,
80
+    0xC3 => 0x0623,
81
+    0xC4 => 0x0624,
82
+    0xC5 => 0x0625,
83
+    0xC6 => 0x0626,
84
+    0xC7 => 0x0627,
85
+    0xC8 => 0x0628,
86
+    0xC9 => 0x0629,
87
+    0xCA => 0x062A,
88
+    0xCB => 0x062B,
89
+    0xCC => 0x062C,
90
+    0xCD => 0x062D,
91
+    0xCE => 0x062E,
92
+    0xCF => 0x062F,
93
+    0xD0 => 0x0630,
94
+    0xD1 => 0x0631,
95
+    0xD2 => 0x0632,
96
+    0xD3 => 0x0633,
97
+    0xD4 => 0x0634,
98
+    0xD5 => 0x0635,
99
+    0xD6 => 0x0636,
100
+    0xD7 => 0x00D7,
101
+    0xD8 => 0x0637,
102
+    0xD9 => 0x0638,
103
+    0xDA => 0x0639,
104
+    0xDB => 0x063A,
105
+    0xDC => 0x0640,
106
+    0xDD => 0x0641,
107
+    0xDE => 0x0642,
108
+    0xDF => 0x0643,
109
+    0xE0 => 0x00E0,
110
+    0xE1 => 0x0644,
111
+    0xE2 => 0x00E2,
112
+    0xE3 => 0x0645,
113
+    0xE4 => 0x0646,
114
+    0xE5 => 0x0647,
115
+    0xE6 => 0x0648,
116
+    0xE7 => 0x00E7,
117
+    0xE8 => 0x00E8,
118
+    0xE9 => 0x00E9,
119
+    0xEA => 0x00EA,
120
+    0xEB => 0x00EB,
121
+    0xEC => 0x0649,
122
+    0xED => 0x064A,
123
+    0xEE => 0x00EE,
124
+    0xEF => 0x00EF,
125
+    0xF0 => 0x064B,
126
+    0xF1 => 0x064C,
127
+    0xF2 => 0x064D,
128
+    0xF3 => 0x064E,
129
+    0xF4 => 0x00F4,
130
+    0xF5 => 0x064F,
131
+    0xF6 => 0x0650,
132
+    0xF7 => 0x00F7,
133
+    0xF8 => 0x0651,
134
+    0xF9 => 0x00F9,
135
+    0xFA => 0x0652,
136
+    0xFB => 0x00FB,
137
+    0xFC => 0x00FC,
138
+    0xFD => 0x200E,
139
+    0xFE => 0x200F,
140
+    0xFF => 0x06D2
141 141
 ];
Please login to merge, or discard this patch.
ecrire/charsets/mathml.php 1 patch
Indentation   +1683 added lines, -1683 removed lines patch added patch discarded remove patch
@@ -8,1688 +8,1688 @@
 block discarded – undo
8 8
 
9 9
 $GLOBALS['CHARSET']['mathml'] = [
10 10
 
11
-	'ac' => '&#xE207;',
12
-	'acd' => '&#xE3A6;',
13
-	'acE' => '&E#290;',
14
-	'acute' => '&#x0301;',
15
-	'Afr' => '&#xE47C;',
16
-	'afr' => '&#xE495;',
17
-	'aleph' => '&#x2135;',
18
-	'alpha' => '&#x03B1;',
19
-	'amalg' => '&#xE251;',
20
-	'amp' => '&#x0026;',
21
-	'And' => '&#x2227;',
22
-	'and' => '&#x2227;',
23
-	'andand' => '&#xE36E;',
24
-	'andd' => '&#xE394;',
25
-	'andslope' => '&#xE50A;',
26
-	'andv' => '&#xE391;',
27
-	'ang' => '&#x2220;',
28
-	'ange' => '&#xE2D6;',
29
-	'angle' => '&#x2220;',
30
-	'angmsd' => '&#x2221;',
31
-	'angmsdaa' => '&#xE2D9;',
32
-	'angmsdab' => '&#xE2DA;',
33
-	'angmsdac' => '&#xE2DB;',
34
-	'angmsdad' => '&#xE2DC;',
35
-	'angmsdae' => '&#xE2DD;',
36
-	'angmsdaf' => '&#xE2DE;',
37
-	'angmsdag' => '&#xE2DF;',
38
-	'angmsdah' => '&#xE2E0;',
39
-	'angrt' => '&#x221F;',
40
-	'angrtvb' => '&#xE418;',
41
-	'angrtvbd' => '&#xE2E1;',
42
-	'angsph' => '&#x2222;',
43
-	'angst' => '&#x212B;',
44
-	'angzarr' => '&#xE248;',
45
-	'Aopf' => '&#xE4AF;',
46
-	'ap' => '&#x2248;',
47
-	'apacir' => '&#xE38C;',
48
-	'apE' => '&#xE315;',
49
-	'ape' => '&#x224A;',
50
-	'apid' => '&#x224B;',
51
-	'apos' => '&#x0027;',
52
-	'approx' => '&#x2248;',
53
-	'approxeq' => '&#x224A;',
54
-	'Ascr' => '&#xE4C5;',
55
-	'ascr' => '&#xE4DF;',
56
-	'ast' => '&#x2217;',
57
-	'asymp' => '&#x224D;',
58
-	'awconint' => '&#x2233;',
59
-	'awint' => '&#xE39B;',
60
-	'backcong' => '&#x224C;',
61
-	'backepsilon' => '&#xE420;',
62
-	'backprime' => '&#x2035;',
63
-	'backsim' => '&#x223D;',
64
-	'backsimeq' => '&#x22CD;',
65
-	'Backslash' => '&#x2216;',
66
-	'Barv' => '&#xE311;',
67
-	'barvee' => '&#x22BD;',
68
-	'Barwed' => '&#x2306;',
69
-	'barwed' => '&#x22BC;',
70
-	'barwedge' => '&#x22BC;',
71
-	'bbrk' => '&#xE2EE;',
72
-	'bbrktbrk' => '&#xE419;',
73
-	'bcong' => '&#x224C;',
74
-	'becaus' => '&#x2235;',
75
-	'Because' => '&#x2235;',
76
-	'because' => '&#x2235;',
77
-	'bemptyv' => '&#xE41A;',
78
-	'benzen' => '&#xE43C;',
79
-	'benzena' => '&#xE42A;',
80
-	'benzenb' => '&#xE42B;',
81
-	'benzenc' => '&#xE42C;',
82
-	'benzend' => '&#xE42D;',
83
-	'benzene' => '&#xE42E;',
84
-	'benzenf' => '&#xE42F;',
85
-	'benzeng' => '&#xE430;',
86
-	'benzenh' => '&#xE431;',
87
-	'benzeni' => '&#xE432;',
88
-	'benzenj' => '&#xE433;',
89
-	'benzenk' => '&#xE434;',
90
-	'benzenl' => '&#xE435;',
91
-	'benzenm' => '&#xE436;',
92
-	'benzenn' => '&#xE437;',
93
-	'benzeno' => '&#xE438;',
94
-	'benzenp' => '&#xE439;',
95
-	'benzenq' => '&#xE43A;',
96
-	'benzenr' => '&#xE43B;',
97
-	'bepsi' => '&#xE420;',
98
-	'bernou' => '&#x212C;',
99
-	'beta' => '&#x03B2;',
100
-	'beth' => '&#x2136;',
101
-	'between' => '&#x226C;',
102
-	'Bfr' => '&#xE47D;',
103
-	'bfr' => '&#xE496;',
104
-	'bigcap' => '&#x22C2;',
105
-	'bigcirc' => '&#x25CB;',
106
-	'bigcup' => '&#x22C3;',
107
-	'bigodot' => '&#x2299;',
108
-	'bigoplus' => '&#x2295;',
109
-	'bigotimes' => '&#x2297;',
110
-	'bigsqcup' => '&#x2294;',
111
-	'bigstar' => '&#x2605;',
112
-	'bigtriangledown' => '&#x25BD;',
113
-	'bigtriangleup' => '&#x25B3;',
114
-	'biguplus' => '&#x228E;',
115
-	'bigvee' => '&#x22C1;',
116
-	'bigwedge' => '&#x22C0;',
117
-	'bkarow' => '&#xE405;',
118
-	'blacklozenge' => '&#xE501;',
119
-	'blacksquare' => '&#x25A0;',
120
-	'blacktriangle' => '&#x25B4;',
121
-	'blacktriangledown' => '&#x25BE;',
122
-	'blacktriangleleft' => '&#x25C2;',
123
-	'blacktriangleright' => '&#x25B8;',
124
-	'blank' => '&#xE4F9;',
125
-	'blk12' => '&#x2592;',
126
-	'blk14' => '&#x2591;',
127
-	'blk34' => '&#x2593;',
128
-	'block' => '&#x2588;',
129
-	'bne' => '&#xE388;',
130
-	'bnequiv' => '&#xE387;',
131
-	'bNot' => '&#xE3AD;',
132
-	'bnot' => '&#x2310;',
133
-	'Bopf' => '&#xE4B0;',
134
-	'bot' => '&#x22A5;',
135
-	'bottom' => '&#x22A5;',
136
-	'bowtie' => '&#x22C8;',
137
-	'boxbox' => '&#xE2E6;',
138
-	'boxminus' => '&#x229F;',
139
-	'boxplus' => '&#x229E;',
140
-	'boxtimes' => '&#x22A0;',
141
-	'bprime' => '&#x2035;',
142
-	'Breve' => '&#x0306;',
143
-	'breve' => '&#x0306;',
144
-	'brvbar' => '&#x00A6;',
145
-	'Bscr' => '&#xE4C6;',
146
-	'bscr' => '&#xE4E0;',
147
-	'bsemi' => '&#xE2ED;',
148
-	'bsim' => '&#x223D;',
149
-	'bsime' => '&#x22CD;',
150
-	'bsol' => '&#x005C;',
151
-	'bsolb' => '&#xE280;',
152
-	'bsolhsub' => '&#xE34D;',
153
-	'bull' => '&#x2022;',
154
-	'bullet' => '&#x2022;',
155
-	'bump' => '&#x224E;',
156
-	'bumpe' => '&#x224F;',
157
-	'Bumpeq' => '&#x224E;',
158
-	'bumpeq' => '&#x224F;',
159
-	'Cap' => '&#x22D2;',
160
-	'cap' => '&#x2229;',
161
-	'capand' => '&#xE281;',
162
-	'capbrcup' => '&#xE271;',
163
-	'capcap' => '&#xE273;',
164
-	'capcup' => '&#xE26F;',
165
-	'capdot' => '&#xE261;',
166
-	'caps' => '&#xE275;',
167
-	'caret' => '&#x2038;',
168
-	'caron' => '&#x030C;',
169
-	'ccaps' => '&#xE279;',
170
-	'Cconint' => '&#x2230;',
171
-	'ccups' => '&#xE278;',
172
-	'ccupssm' => '&#xE27A;',
173
-	'cdot' => '&#x22C5;',
174
-	'cedil' => '&#x0327;',
175
-	'Cedilla' => '&#x0327;',
176
-	'cemptyv' => '&#xE2E8;',
177
-	'cent' => '&#x00A2;',
178
-	'CenterDot' => '&#x00B7;',
179
-	'centerdot' => '&#x00B7;',
180
-	'Cfr' => '&#xE47E;',
181
-	'cfr' => '&#xE497;',
182
-	'check' => '&#x2713;',
183
-	'checkmark' => '&#x2713;',
184
-	'chi' => '&#x03C7;',
185
-	'cir' => '&#x2218;',
186
-	'circ' => '&#x2218;',
187
-	'circeq' => '&#x2257;',
188
-	'circle' => '&#xE4FA;',
189
-	'circlearrowleft' => '&#x21BA;',
190
-	'circlearrowright' => '&#x21BB;',
191
-	'circledast' => '&#x229B;',
192
-	'circledcirc' => '&#x229A;',
193
-	'circleddash' => '&#x229D;',
194
-	'CircleDot' => '&#x2299;',
195
-	'circledR' => '&#x00AF;',
196
-	'circledS' => '&#xE41D;',
197
-	'circlef' => '&#x25CF;',
198
-	'circlefb' => '&#x25D2;',
199
-	'circlefl' => '&#x25D0;',
200
-	'circlefr' => '&#x25D1;',
201
-	'circleft' => '&#x25D3;',
202
-	'CircleMinus' => '&#x2296;',
203
-	'CirclePlus' => '&#x2295;',
204
-	'CircleTimes' => '&#x2297;',
205
-	'cirE' => '&#xE41B;',
206
-	'cire' => '&#x2257;',
207
-	'cirfnint' => '&#xE395;',
208
-	'cirmid' => '&#xE250;',
209
-	'cirscir' => '&#xE41C;',
210
-	'ClockwiseContourIntegral' => '&#x2232;',
211
-	'CloseCurlyDoubleQuote' => '&#x201D;',
212
-	'CloseCurlyQuote' => '&#x2019;',
213
-	'clubs' => '&#x2663;',
214
-	'clubsuit' => '&#x2663;',
215
-	'Colon' => '&#x2237;',
216
-	'colon' => '&#x003A;',
217
-	'Colone' => '&#xE30E;',
218
-	'colone' => '&#x2254;',
219
-	'coloneq' => '&#x2254;',
220
-	'comma' => '&#x002C;',
221
-	'commat' => '&#x0040;',
222
-	'comp' => '&#x2201;',
223
-	'compfn' => '&#x2218;',
224
-	'complement' => '&#x2201;',
225
-	'cong' => '&#x2245;',
226
-	'congdot' => '&#xE314;',
227
-	'Congruent' => '&#x2261;',
228
-	'Conint' => '&#x222F;',
229
-	'conint' => '&#x222E;',
230
-	'ContourIntegral' => '&#x222E;',
231
-	'Copf' => '&#x2102;',
232
-	'coprod' => '&#x2210;',
233
-	'Coproduct' => '&#x2210;',
234
-	'copy' => '&#x00A9;',
235
-	'copysr' => '&#x2117;',
236
-	'CounterClockwiseContourIntegral' => '&#x2233;',
237
-	'cross' => '&#x2612;',
238
-	'Cscr' => '&#xE4C7;',
239
-	'cscr' => '&#xE4E1;',
240
-	'csub' => '&#xE351;',
241
-	'csube' => '&#xE353;',
242
-	'csup' => '&#xE352;',
243
-	'csupe' => '&#xE354;',
244
-	'ctdot' => '&#x22EF;',
245
-	'cudarrl' => '&#xE23E;',
246
-	'cudarrr' => '&#xE400;',
247
-	'cuepr' => '&#x22DE;',
248
-	'cuesc' => '&#x22DF;',
249
-	'cularr' => '&#x21B6;',
250
-	'cularrp' => '&#xE24A;',
251
-	'Cup' => '&#x2323;',
252
-	'cup' => '&#x222A;',
253
-	'cupbrcap' => '&#xE270;',
254
-	'CupCap' => '&#x224D;',
255
-	'cupcap' => '&#xE26E;',
256
-	'cupcup' => '&#xE272;',
257
-	'cupdot' => '&#x228D;',
258
-	'cupor' => '&#xE282;',
259
-	'cups' => '&#xE274;',
260
-	'curarr' => '&#x21B7;',
261
-	'curarrm' => '&#xE249;',
262
-	'curlyeqprec' => '&#x22DE;',
263
-	'curlyeqsucc' => '&#x22DF;',
264
-	'curlyvee' => '&#x22CE;',
265
-	'curlywedge' => '&#x22CF;',
266
-	'curren' => '&#x00A4;',
267
-	'curvearrowleft' => '&#x21B6;',
268
-	'curvearrowright' => '&#x21B7;',
269
-	'cuvee' => '&#x22CE;',
270
-	'cuwed' => '&#x22CF;',
271
-	'cwconint' => '&#x2232;',
272
-	'cwint' => '&#x2231;',
273
-	'cylcty' => '&#x232D;',
274
-	'Dagger' => '&#x2021;',
275
-	'dagger' => '&#x2020;',
276
-	'daleth' => '&#x2138;',
277
-	'Darr' => '&#x21A1;',
278
-	'dArr' => '&#x21D3;',
279
-	'darr' => '&#x2193;',
280
-	'dash' => '&#x2010;',
281
-	'Dashv' => '&#xE30F;',
282
-	'dashv' => '&#x22A3;',
283
-	'dbkarow' => '&#xE207;',
284
-	'dblac' => '&#x030B;',
285
-	'ddagger' => '&#x2021;',
286
-	'ddarr' => '&#x21CA;',
287
-	'DDotrahd' => '&#xE238;',
288
-	'ddotseq' => '&#xE309;',
289
-	'deg' => '&#x00B0;',
290
-	'Del' => '&#x2207;',
291
-	'Delta' => '&#x0394;',
292
-	'delta' => '&#x03B4;',
293
-	'demptyv' => '&#xE2E7;',
294
-	'dfisht' => '&#xE24C;',
295
-	'Dfr' => '&#xE47F;',
296
-	'dfr' => '&#xE498;',
297
-	'dHar' => '&#xE227;',
298
-	'dharl' => '&#x21C3;',
299
-	'dharr' => '&#x21C2;',
300
-	'DiacriticalAcute' => '&#x0301;',
301
-	'DiacriticalDot' => '&#x0307;',
302
-	'DiacriticalDoubleAcute' => '&#x030B;',
303
-	'DiacriticalGrave' => '&#x0300;',
304
-	'DiacriticalLeftArrow' => '&#x20D6;',
305
-	'DiacriticalLeftRightArrow' => '&#x20E1;',
306
-	'DiacriticalLeftRightVector' => '&#xF505;',
307
-	'DiacriticalLeftVector' => '&#x20D0;',
308
-	'DiacriticalRightArrow' => '&#x20D7;',
309
-	'DiacriticalRightVector' => '&#x20D1;',
310
-	'DiacriticalTilde' => '&#x0303;',
311
-	'diam' => '&#x22C4;',
312
-	'diamond' => '&#x22C4;',
313
-	'diamondf' => '&#xE4FB;',
314
-	'diamondsuit' => '&#x2662;',
315
-	'diamonfb' => '&#xE4FC;',
316
-	'diamonfl' => '&#xE4FD;',
317
-	'diamonfr' => '&#xE4FE;',
318
-	'diamonft' => '&#xE4FF;',
319
-	'diams' => '&#x2662;',
320
-	'die' => '&#x0308;',
321
-	'digamma' => '&#x03DC;',
322
-	'disin' => '&#xE3A0;',
323
-	'div' => '&#x00F7;',
324
-	'divide' => '&#x00F7;',
325
-	'divideontimes' => '&#x22C7;',
326
-	'divonx' => '&#x22C7;',
327
-	'dlcorn' => '&#x231E;',
328
-	'dlcrop' => '&#x230D;',
329
-	'dollar' => '&#x0024;',
330
-	'Dopf' => '&#xE4B1;',
331
-	'Dot' => '&#x0308;',
332
-	'dot' => '&#x0307;',
333
-	'DotDot' => '&#x20DC;',
334
-	'doteq' => '&#x2250;',
335
-	'doteqdot' => '&#x2251;',
336
-	'DotEqual' => '&#x2250;',
337
-	'dotminus' => '&#x2238;',
338
-	'dotplus' => '&#x2214;',
339
-	'dotsquare' => '&#x22A1;',
340
-	'doublebarwedge' => '&#x2306;',
341
-	'DoubleContourIntegral' => '&#x222F;',
342
-	'DoubleDot' => '&#x0308;',
343
-	'DoubleDownArrow' => '&#x21D3;',
344
-	'DoubleLeftArrow' => '&#x21D0;',
345
-	'DoubleLeftRightArrow' => '&#x21D4;',
346
-	'DoubleLongLeftArrow' => '&#xE200;',
347
-	'DoubleLongLeftRightArrow' => '&#xE202;',
348
-	'DoubleLongRightArrow' => '&#xE204;',
349
-	'DoubleRightArrow' => '&#x21D2;',
350
-	'DoubleRightTee' => '&#x22A8;',
351
-	'DoubleUpArrow' => '&#x21D1;',
352
-	'DoubleUpDownArrow' => '&#x21D5;',
353
-	'DoubleVerticalBar' => '&#x2225;',
354
-	'DownArrow' => '&#x2193;',
355
-	'Downarrow' => '&#x21D3;',
356
-	'downarrow' => '&#x2193;',
357
-	'DownArrowUpArrow' => '&#xE216;',
358
-	'downdownarrows' => '&#x21CA;',
359
-	'downharpoonleft' => '&#x21C3;',
360
-	'downharpoonright' => '&#x21C2;',
361
-	'DownLeftVector' => '&#x21BD;',
362
-	'DownRightVector' => '&#x21C1;',
363
-	'DownTee' => '&#x22A4;',
364
-	'drbkarow' => '&#xE209;',
365
-	'drcorn' => '&#x231F;',
366
-	'drcrop' => '&#x230C;',
367
-	'Dscr' => '&#xE4C8;',
368
-	'dscr' => '&#xE4E2;',
369
-	'dsol' => '&#xE3A9;',
370
-	'dtdot' => '&#x22F1;',
371
-	'dtri' => '&#x25BF;',
372
-	'dtrif' => '&#x25BE;',
373
-	'duarr' => '&#xE216;',
374
-	'duhar' => '&#xE217;',
375
-	'dwangle' => '&#xE3AA;',
376
-	'dzigrarr' => '&#x21DD;',
377
-	'easter' => '&#x225B;',
378
-	'ecir' => '&#x2256;',
379
-	'ecolon' => '&#x2255;',
380
-	'eDDot' => '&#xE309;',
381
-	'eDot' => '&#x2251;',
382
-	'efDot' => '&#x2252;',
383
-	'Efr' => '&#xE480;',
384
-	'efr' => '&#xE499;',
385
-	'eg' => '&#xE328;',
386
-	'egs' => '&#x22DD;',
387
-	'egsdot' => '&#xE324;',
388
-	'el' => '&#xE327;',
389
-	'Element' => '&#x2208;',
390
-	'elinters' => '&#xE3A7;',
391
-	'ell' => '&#x2113;',
392
-	'els' => '&#x22DC;',
393
-	'elsdot' => '&#xE323;',
394
-	'empty' => '&#xE2D3;',
395
-	'emptyset' => '&#xE2D3;',
396
-	'emptyv' => '&#x2205;',
397
-	'emsp' => '&#x2003;',
398
-	'emsp13' => '&#x2004;',
399
-	'emsp14' => '&#x2005;',
400
-	'ensp' => '&#x2002;',
401
-	'Eopf' => '&#xE4B2;',
402
-	'epar' => '&#x22D5;',
403
-	'eparsl' => '&#xE384;',
404
-	'eplus' => '&#xE268;',
405
-	'epsi' => '&#x220A;',
406
-	'epsiv' => '&#x03B5;',
407
-	'eqcirc' => '&#x2256;',
408
-	'eqcolon' => '&#x2255;',
409
-	'eqsim' => '&#x2242;',
410
-	'eqslantgtr' => '&#x22DD;',
411
-	'eqslantless' => '&#x22DC;',
412
-	'equals' => '&#x003D;',
413
-	'EqualTilde' => '&#x2242;',
414
-	'equest' => '&#x225F;',
415
-	'Equilibrium' => '&#x21CC;',
416
-	'equiv' => '&#x2261;',
417
-	'equivDD' => '&#xE318;',
418
-	'eqvparsl' => '&#xE386;',
419
-	'erarr' => '&#xE236;',
420
-	'erDot' => '&#x2253;',
421
-	'Escr' => '&#xE4C9;',
422
-	'escr' => '&#xE4E3;',
423
-	'esdot' => '&#x2250;',
424
-	'Esim' => '&#xE317;',
425
-	'esim' => '&#x2242;',
426
-	'eta' => '&#x03B7;',
427
-	'excl' => '&#x0021;',
428
-	'exist' => '&#x2203;',
429
-	'Exists' => '&#x2203;',
430
-	'fallingdotseq' => '&#x2252;',
431
-	'female' => '&#x2640;',
432
-	'ffilig' => '&#xFB03;',
433
-	'fflig' => '&#xFB00;',
434
-	'ffllig' => '&#xFB04;',
435
-	'Ffr' => '&#xE481;',
436
-	'ffr' => '&#xE49A;',
437
-	'filig' => '&#xFB01;',
438
-	'fjlig' => '&#xE500;',
439
-	'flat' => '&#x266D;',
440
-	'fllig' => '&#xFB02;',
441
-	'fltns' => '&#xE381;',
442
-	'Fopf' => '&#xE4B3;',
443
-	'ForAll' => '&#x2200;',
444
-	'forall' => '&#x2200;',
445
-	'fork' => '&#x22D4;',
446
-	'forkv' => '&#xE31B;',
447
-	'fpartint' => '&#xE396;',
448
-	'frac12' => '&#x00BD;',
449
-	'frac13' => '&#x2153;',
450
-	'frac14' => '&#x00BC;',
451
-	'frac15' => '&#x2155;',
452
-	'frac16' => '&#x2159;',
453
-	'frac18' => '&#x215B;',
454
-	'frac23' => '&#x2254;',
455
-	'frac25' => '&#x2156;',
456
-	'frac34' => '&#x00BE;',
457
-	'frac35' => '&#x2157;',
458
-	'frac38' => '&#x215C;',
459
-	'frac45' => '&#x2158;',
460
-	'frac56' => '&#x215A;',
461
-	'frac58' => '&#x215D;',
462
-	'frac78' => '&#x215E;',
463
-	'frown' => '&#x2322;',
464
-	'Fscr' => '&#xE4CA;',
465
-	'fscr' => '&#xE4E4;',
466
-	'Gamma' => '&#x0393;',
467
-	'gamma' => '&#x03B3;',
468
-	'Gammad' => '&#x03DC;',
469
-	'gammad' => '&#x03DC;',
470
-	'gap' => '&#x2273;',
471
-	'gE' => '&#x2267;',
472
-	'ge' => '&#x2265;',
473
-	'gEl' => '&#x22DB;',
474
-	'gel' => '&#x22DB;',
475
-	'geq' => '&#x2265;',
476
-	'geqq' => '&#x2267;',
477
-	'geqslant' => '&#xE421;',
478
-	'ges' => '&#xE421;',
479
-	'gescc' => '&#xE358;',
480
-	'gesdot' => '&#xE31E;',
481
-	'gesdoto' => '&#xE320;',
482
-	'gesdotol' => '&#xE322;',
483
-	'gesl' => '&#xE32C;',
484
-	'gesles' => '&#xE332;',
485
-	'Gfr' => '&#xE482;',
486
-	'gfr' => '&#xE49B;',
487
-	'Gg' => '&#x22D9;',
488
-	'gg' => '&#x226B;',
489
-	'ggg' => '&#x22D9;',
490
-	'gimel' => '&#x2137;',
491
-	'gl' => '&#x2277;',
492
-	'gla' => '&#xE330;',
493
-	'glE' => '&#xE32E;',
494
-	'glj' => '&#xE32F;',
495
-	'gnap' => '&#xE411;',
496
-	'gnapprox' => '&#xE411;',
497
-	'gnE' => '&#x2269;',
498
-	'gne' => '&#x2269;',
499
-	'gneq' => '&#x2269;',
500
-	'gneqq' => '&#x2269;',
501
-	'gnsim' => '&#x22E7;',
502
-	'Gopf' => '&#xE4B4;',
503
-	'grave' => '&#x0300;',
504
-	'GreaterEqual' => '&#x2265;',
505
-	'GreaterEqualLess' => '&#x22DB;',
506
-	'GreaterFullEqual' => '&#x2267;',
507
-	'GreaterLess' => '&#x2277;',
508
-	'GreaterSlantEqual' => '&#xE421;',
509
-	'GreaterTilde' => '&#x2273;',
510
-	'Gscr' => '&#xE4CB;',
511
-	'gscr' => '&#xE4E5;',
512
-	'gsim' => '&#x2273;',
513
-	'gsime' => '&#xE334;',
514
-	'gsiml' => '&#xE336;',
515
-	'Gt' => '&#x226B;',
516
-	'gt' => '&#x003E;',
517
-	'gtcc' => '&#xE356;',
518
-	'gtcir' => '&#xE326;',
519
-	'gtdot' => '&#x22D7;',
520
-	'gtlPar' => '&#xE296;',
521
-	'gtquest' => '&#xE32A;',
522
-	'gtrapprox' => '&#x2273;',
523
-	'gtrarr' => '&#xE35F;',
524
-	'gtrdot' => '&#x22D7;',
525
-	'gtreqless' => '&#x22DB;',
526
-	'gtreqqless' => '&#x22DB;',
527
-	'gtrless' => '&#x2277;',
528
-	'gtrsim' => '&#x2273;',
529
-	'gvertneqq' => '&#xE2A1;',
530
-	'gvnE' => '&#xE2A1;',
531
-	'Hacek' => '&#x030C;',
532
-	'hairsp' => '&#x200A;',
533
-	'half' => '&#x00BD;',
534
-	'hamilt' => '&#x210B;',
535
-	'hArr' => '&#x21D4;',
536
-	'harr' => '&#x2194;',
537
-	'harrcir' => '&#xE240;',
538
-	'harrw' => '&#x21AD;',
539
-	'Hat' => '&#x0302;',
540
-	'hbar' => '&#xE2D5;',
541
-	'hbenzen' => '&#xE44F;',
542
-	'hbenzena' => '&#xE43D;',
543
-	'hbenzenb' => '&#xE43E;',
544
-	'hbenzenc' => '&#xE43F;',
545
-	'hbenzend' => '&#xE440;',
546
-	'hbenzene' => '&#xE441;',
547
-	'hbenzenf' => '&#xE442;',
548
-	'hbenzeng' => '&#xE443;',
549
-	'hbenzenh' => '&#xE444;',
550
-	'hbenzeni' => '&#xE445;',
551
-	'hbenzenj' => '&#xE446;',
552
-	'hbenzenk' => '&#xE447;',
553
-	'hbenzenl' => '&#xE448;',
554
-	'hbenzenm' => '&#xE449;',
555
-	'hbenzenn' => '&#xE44A;',
556
-	'hbenzeno' => '&#xE44B;',
557
-	'hbenzenp' => '&#xE44C;',
558
-	'hbenzenq' => '&#xE44D;',
559
-	'hbenzenr' => '&#xE44E;',
560
-	'hearts' => '&#x2661;',
561
-	'heartsuit' => '&#x2661;',
562
-	'hellip' => '&#x2026;',
563
-	'hercon' => '&#x22B9;',
564
-	'Hfr' => '&#xE483;',
565
-	'hfr' => '&#xE49C;',
566
-	'hksearow' => '&#xE20B;',
567
-	'hkswarow' => '&#xE20A;',
568
-	'hoarr' => '&#xE243;',
569
-	'homtht' => '&#x223B;',
570
-	'hookleftarrow' => '&#x21A9;',
571
-	'hookrightarrow' => '&#x21AA;',
572
-	'Hopf' => '&#xE4B5;',
573
-	'horbar' => '&#x2015;',
574
-	'Hscr' => '&#xE4CC;',
575
-	'hscr' => '&#xE4E6;',
576
-	'hslash' => '&#x210F;',
577
-	'HumpDownHump' => '&#x224E;',
578
-	'HumpEqual' => '&#x224F;',
579
-	'hybull' => '&#x2043;',
580
-	'hyphen' => '&#xE4F8;',
581
-	'iexcl' => '&#x00A1;',
582
-	'iff' => '&#xE365;',
583
-	'Ifr' => '&#xE484;',
584
-	'ifr' => '&#xE49D;',
585
-	'iiiint' => '&#xE378;',
586
-	'iiint' => '&#x222D;',
587
-	'iinfin' => '&#xE372;',
588
-	'iiota' => '&#x2129;',
589
-	'Im' => '&#x2111;',
590
-	'image' => '&#x2111;',
591
-	'imath' => '&#x0131;',
592
-	'imof' => '&#x22B7;',
593
-	'imped' => '&#xE50B;',
594
-	'Implies' => '&#x21D2;',
595
-	'in' => '&#x220A;',
596
-	'incare' => '&#x2105;',
597
-	'infin' => '&#x221E;',
598
-	'infintie' => '&#xE50C;',
599
-	'Int' => '&#x222C;',
600
-	'int' => '&#x222B;',
601
-	'intcal' => '&#x22BA;',
602
-	'Integral' => '&#x222B;',
603
-	'intercal' => '&#x22BA;',
604
-	'Intersection' => '&#x22C2;',
605
-	'intlarhk' => '&#xE39A;',
606
-	'intprod' => '&#xE259;',
607
-	'Iopf' => '&#xE4B6;',
608
-	'iota' => '&#x03B9;',
609
-	'iprod' => '&#xE259;',
610
-	'iquest' => '&#x00BF;',
611
-	'Iscr' => '&#xE4CD;',
612
-	'iscr' => '&#xE4E7;',
613
-	'isin' => '&#x220A;',
614
-	'isindot' => '&#xE39C;',
615
-	'isinE' => '&#xE39E;',
616
-	'isins' => '&#xE3A4;',
617
-	'isinsv' => '&#xE3A2;',
618
-	'isinv' => '&#x2208;',
619
-	'Jfr' => '&#xE485;',
620
-	'jfr' => '&#xE49E;',
621
-	'jmath' => '&#xE2D4;',
622
-	'Jopf' => '&#xE4B7;',
623
-	'Jscr' => '&#xE4CE;',
624
-	'jscr' => '&#xE4E8;',
625
-	'kappa' => '&#x03BA;',
626
-	'kappav' => '&#x03F0;',
627
-	'Kfr' => '&#xE486;',
628
-	'kfr' => '&#xE49F;',
629
-	'Kopf' => '&#xE4B8;',
630
-	'Kscr' => '&#xE4CF;',
631
-	'kscr' => '&#xE4E9;',
632
-	'lAarr' => '&#x21DA;',
633
-	'laemptyv' => '&#xE2EA;',
634
-	'lagran' => '&#x2112;',
635
-	'Lambda' => '&#x039B;',
636
-	'lambda' => '&#x03BB;',
637
-	'Lang' => '&#x300A;',
638
-	'lang' => '&#x3008;',
639
-	'langd' => '&#xE297;',
640
-	'langle' => '&#x3008;',
641
-	'lap' => '&#x2272;',
642
-	'laquo' => '&#x00AB;',
643
-	'Larr' => '&#x219E;',
644
-	'lArr' => '&#x21D0;',
645
-	'larr' => '&#x2190;',
646
-	'larrbfs' => '&#xE220;',
647
-	'larrfs' => '&#xE222;',
648
-	'larrhk' => '&#x21A9;',
649
-	'larrlp' => '&#x21AB;',
650
-	'larrpl' => '&#xE23F;',
651
-	'larrsim' => '&#xE24E;',
652
-	'larrtl' => '&#x21A2;',
653
-	'lat' => '&#xE33A;',
654
-	'lAtail' => '&#xE23D;',
655
-	'latail' => '&#xE23C;',
656
-	'late' => '&#xE33C;',
657
-	'lates' => '&#xE33E;',
658
-	'lBarr' => '&#xE206;',
659
-	'lbarr' => '&#xE402;',
660
-	'lbbrk' => '&#x3014;',
661
-	'lbrace' => '&#x007B;',
662
-	'lbrack' => '&#x005B;',
663
-	'lbrke' => '&#xE299;',
664
-	'lbrksld' => '&#xE29D;',
665
-	'lbrkslu' => '&#xE29B;',
666
-	'lceil' => '&#x2308;',
667
-	'lcub' => '&#x007B;',
668
-	'ldca' => '&#xE21A;',
669
-	'ldquo' => '&#x201C;',
670
-	'ldquor' => '&#x201E;',
671
-	'ldrdhar' => '&#xE22C;',
672
-	'ldrushar' => '&#xE228;',
673
-	'ldsh' => '&#x21B2;',
674
-	'lE' => '&#x2266;',
675
-	'le' => '&#x2264;',
676
-	'LeftAngleBracket' => '&#x3008;',
677
-	'LeftArrow' => '&#x2190;',
678
-	'Leftarrow' => '&#x21D0;',
679
-	'leftarrow' => '&#x2190;',
680
-	'LeftArrowRightArrow' => '&#x21C6;',
681
-	'leftarrowtail' => '&#x21A2;',
682
-	'LeftCeiling' => '&#x2308;',
683
-	'LeftDownVector' => '&#x21C3;',
684
-	'LeftFloor' => '&#x230A;',
685
-	'leftharpoondown' => '&#x21BD;',
686
-	'leftharpoonup' => '&#x21BC;',
687
-	'leftleftarrows' => '&#x21C7;',
688
-	'LeftRightArrow' => '&#x2194;',
689
-	'Leftrightarrow' => '&#x21D4;',
690
-	'leftrightarrow' => '&#x2194;',
691
-	'leftrightarrows' => '&#x21C6;',
692
-	'leftrightharpoons' => '&#x21CB;',
693
-	'leftrightsquigarrow' => '&#x21AD;',
694
-	'LeftTee' => '&#x22A3;',
695
-	'leftthreetimes' => '&#x22CB;',
696
-	'LeftTriangle' => '&#x22B2;',
697
-	'LeftTriangleEqual' => '&#x22B4;',
698
-	'LeftUpVector' => '&#x21BF;',
699
-	'LeftVector' => '&#x21BC;',
700
-	'lEg' => '&#x22DA;',
701
-	'leg' => '&#x22DA;',
702
-	'leq' => '&#x2264;',
703
-	'leqq' => '&#x2266;',
704
-	'leqslant' => '&#xE425;',
705
-	'les' => '&#xE425;',
706
-	'lescc' => '&#xE357;',
707
-	'lesdot' => '&#xE31D;',
708
-	'lesdoto' => '&#xE31F;',
709
-	'lesdotor' => '&#xE321;',
710
-	'lesg' => '&#xE32B;',
711
-	'lesges' => '&#xE331;',
712
-	'lessapprox' => '&#x2272;',
713
-	'lessdot' => '&#x22D6;',
714
-	'lesseqgtr' => '&#x22DA;',
715
-	'lesseqqgtr' => '&#x22DA;',
716
-	'LessEqualGreater' => '&#x22DA;',
717
-	'LessFullEqual' => '&#x2266;',
718
-	'LessGreater' => '&#x2276;',
719
-	'lessgtr' => '&#x2276;',
720
-	'lesssim' => '&#x2272;',
721
-	'LessSlantEqual' => '&#xE425;',
722
-	'LessTilde' => '&#x2272;',
723
-	'lfisht' => '&#xE214;',
724
-	'lfloor' => '&#x230A;',
725
-	'Lfr' => '&#xE487;',
726
-	'lfr' => '&#xE4A0;',
727
-	'lg' => '&#x2276;',
728
-	'lgE' => '&#xE32D;',
729
-	'lHar' => '&#xE225;',
730
-	'lhard' => '&#x21BD;',
731
-	'lharu' => '&#x21BC;',
732
-	'lharul' => '&#xE22E;',
733
-	'lhblk' => '&#x2584;',
734
-	'Ll' => '&#x22D8;',
735
-	'll' => '&#x226A;',
736
-	'llarr' => '&#x21C7;',
737
-	'llcorner' => '&#x231E;',
738
-	'Lleftarrow' => '&#x21DA;',
739
-	'llhard' => '&#xE231;',
740
-	'lltri' => '&#xE2E5;',
741
-	'lmoust' => '&#xE294;',
742
-	'lmoustache' => '&#xE294;',
743
-	'lnap' => '&#xE2A2;',
744
-	'lnapprox' => '&#xE2A2;',
745
-	'lnE' => '&#x2268;',
746
-	'lne' => '&#x2268;',
747
-	'lneq' => '&#x2268;',
748
-	'lneqq' => '&#x2268;',
749
-	'lnsim' => '&#x22E6;',
750
-	'loang' => '&#x3018;',
751
-	'loarr' => '&#xE242;',
752
-	'lobrk' => '&#x301A;',
753
-	'LongLeftArrow' => '&#xE201;',
754
-	'Longleftarrow' => '&#xE200;',
755
-	'longleftarrow' => '&#xE201;',
756
-	'LongLeftRightArrow' => '&#xE203;',
757
-	'Longleftrightarrow' => '&#xE202;',
758
-	'longleftrightarrow' => '&#xE203;',
759
-	'longmapsto' => '&#xE208;',
760
-	'LongRightArrow' => '&#xE205;',
761
-	'Longrightarrow' => '&#xE204;',
762
-	'longrightarrow' => '&#xE205;',
763
-	'looparrowleft' => '&#x21AB;',
764
-	'looparrowright' => '&#x21AC;',
765
-	'lopar' => '&#xE379;',
766
-	'Lopf' => '&#xE4B9;',
767
-	'loplus' => '&#xE25C;',
768
-	'lotimes' => '&#xE25E;',
769
-	'lowast' => '&#x2217;',
770
-	'lowbar' => '&#x005F;',
771
-	'LowerLeftArrow' => '&#x2199;',
772
-	'LowerRightArrow' => '&#x2198;',
773
-	'loz' => '&#x25CA;',
774
-	'lozenge' => '&#x25CA;',
775
-	'lozf' => '&#xE501;',
776
-	'lpar' => '&#x0028;',
777
-	'lparlt' => '&#xE292;',
778
-	'lrarr' => '&#x21C6;',
779
-	'lrcorner' => '&#x231F;',
780
-	'lrhar' => '&#x21CB;',
781
-	'lrhard' => '&#xE22F;',
782
-	'lrtri' => '&#xE2E3;',
783
-	'Lscr' => '&#xE4D0;',
784
-	'lscr' => '&#xE4EA;',
785
-	'Lsh' => '&#x21B0;',
786
-	'lsh' => '&#x21B0;',
787
-	'lsim' => '&#x2272;',
788
-	'lsime' => '&#xE333;',
789
-	'lsimg' => '&#xE335;',
790
-	'lsqb' => '&#x005B;',
791
-	'lsquo' => '&#x2018;',
792
-	'lsquor' => '&#x201A;',
793
-	'Lt' => '&#x226A;',
794
-	'lt' => '&#x003C;',
795
-	'ltcc' => '&#xE355;',
796
-	'ltcir' => '&#xE325;',
797
-	'ltdot' => '&#x22D6;',
798
-	'lthree' => '&#x22CB;',
799
-	'ltimes' => '&#x22C9;',
800
-	'ltlarr' => '&#xE35E;',
801
-	'ltquest' => '&#xE329;',
802
-	'ltri' => '&#x25C3;',
803
-	'ltrie' => '&#x22B4;',
804
-	'ltrif' => '&#x25C2;',
805
-	'ltrPar' => '&#xE295;',
806
-	'lurdshar' => '&#xE229;',
807
-	'luruhar' => '&#xE22B;',
808
-	'lvertneqq' => '&#xE2A4;',
809
-	'lvnE' => '&#xE2A4;',
810
-	'macr' => '&#x0304;',
811
-	'male' => '&#x2642;',
812
-	'malt' => '&#x2720;',
813
-	'maltese' => '&#x2720;',
814
-	'Map' => '&#xE212;',
815
-	'map' => '&#x21A6;',
816
-	'mapsto' => '&#x21A6;',
817
-	'marker' => '&#xE502;',
818
-	'mcomma' => '&#xE31A;',
819
-	'mdash' => '&#x2014;',
820
-	'mDDot' => '&#x223A;',
821
-	'measuredangle' => '&#x2221;',
822
-	'Mfr' => '&#xE488;',
823
-	'mfr' => '&#xE4A1;',
824
-	'mho' => '&#x2127;',
825
-	'micro' => '&#x00B5;',
826
-	'mid' => '&#x2223;',
827
-	'midast' => '&#x2217;',
828
-	'midcir' => '&#xE20F;',
829
-	'middot' => '&#x00B7;',
830
-	'minus' => '&#x2212;',
831
-	'minusb' => '&#x229F;',
832
-	'minusd' => '&#x2238;',
833
-	'minusdu' => '&#xE25B;',
834
-	'MinusPlus' => '&#x2213;',
835
-	'mlcp' => '&#xE30A;',
836
-	'mldr' => '&#xE503;',
837
-	'mnplus' => '&#x2213;',
838
-	'models' => '&#x22A7;',
839
-	'Mopf' => '&#xE4BA;',
840
-	'mp' => '&#x2213;',
841
-	'Mscr' => '&#xE4D1;',
842
-	'mscr' => '&#xE4EB;',
843
-	'mstpos' => '&#x223E;',
844
-	'mu' => '&#x03BC;',
845
-	'multimap' => '&#x22B8;',
846
-	'mumap' => '&#x22B8;',
847
-	'nabla' => '&#x2207;',
848
-	'nang' => '&#xE2D8;',
849
-	'nap' => '&#x2249;',
850
-	'napE' => '&#xE2C7;',
851
-	'napid' => '&#xE2BC;',
852
-	'napprox' => '&#x2249;',
853
-	'natur' => '&#x266E;',
854
-	'natural' => '&#x266E;',
855
-	'nbsp' => '&#x00A0;',
856
-	'ncap' => '&#xE284;',
857
-	'ncong' => '&#x2247;',
858
-	'ncongdot' => '&#xE2C5;',
859
-	'ncup' => '&#xE283;',
860
-	'ndash' => '&#x2013;',
861
-	'ne' => '&#x2260;',
862
-	'nearhk' => '&#xE20D;',
863
-	'neArr' => '&#x21D7;',
864
-	'nearr' => '&#x2197;',
865
-	'nearrow' => '&#x2197;',
866
-	'nedot' => '&#xE38A;',
867
-	'nequiv' => '&#x2262;',
868
-	'nesear' => '&#xE20E;',
869
-	'NestedGreaterGreater' => '&#x226B;',
870
-	'NestedLessLess' => '&#x226A;',
871
-	'nexist' => '&#x2204;',
872
-	'nexists' => '&#x2204;',
873
-	'Nfr' => '&#xE489;',
874
-	'nfr' => '&#xE4A2;',
875
-	'ngE' => '&#x2271;',
876
-	'nge' => '&#xE2A6;',
877
-	'ngeq' => '&#xE2A6;',
878
-	'ngeqq' => '&#x2271;',
879
-	'ngeqslant' => '&#x2271;',
880
-	'nges' => '&#x2271;',
881
-	'nGg' => '&#xE2CE;',
882
-	'ngsim' => '&#x2275;',
883
-	'nGt' => '&#xE2CA;',
884
-	'ngt' => '&#x226F;',
885
-	'ngtr' => '&#x226F;',
886
-	'nGtv' => '&#xE2CC;',
887
-	'nhArr' => '&#x21CE;',
888
-	'nharr' => '&#x21AE;',
889
-	'nhpar' => '&#xE38D;',
890
-	'ni' => '&#x220D;',
891
-	'nis' => '&#xE3A5;',
892
-	'nisd' => '&#xE3A1;',
893
-	'niv' => '&#x220B;',
894
-	'nlArr' => '&#x21CD;',
895
-	'nlarr' => '&#x219A;',
896
-	'nldr' => '&#x2025;',
897
-	'nlE' => '&#x2270;',
898
-	'nle' => '&#xE2A7;',
899
-	'nLeftarrow' => '&#x21CD;',
900
-	'nleftarrow' => '&#x219A;',
901
-	'nLeftrightarrow' => '&#x21CE;',
902
-	'nleftrightarrow' => '&#x21AE;',
903
-	'nleq' => '&#xE2A7;',
904
-	'nleqq' => '&#x2270;',
905
-	'nleqslant' => '&#x2270;',
906
-	'nles' => '&#x2270;',
907
-	'nless' => '&#x226E;',
908
-	'nLl' => '&#xE2CD;',
909
-	'nlsim' => '&#x2274;',
910
-	'nLt' => '&#xE2C9;',
911
-	'nlt' => '&#x226E;',
912
-	'nltri' => '&#x22EA;',
913
-	'nltrie' => '&#x22EC;',
914
-	'nLtv' => '&#xE2CB;',
915
-	'nmid' => '&#x2224;',
916
-	'Nopf' => '&#x2115;',
917
-	'Not' => '&#xE3AC;',
918
-	'not' => '&#x00AC;',
919
-	'NotCongruent' => '&#x2262;',
920
-	'NotDoubleVerticalBar' => '&#x2226;',
921
-	'NotElement' => '&#x2209;',
922
-	'NotEqual' => '&#x2260;',
923
-	'NotExists' => '&#x2204;',
924
-	'NotGreater' => '&#x226F;',
925
-	'NotGreaterEqual' => '&#xE2A6;',
926
-	'NotGreaterFullEqual' => '&#x2270;',
927
-	'NotGreaterGreater' => '&#xE2CC;',
928
-	'NotGreaterLess' => '&#x2279;',
929
-	'NotGreaterSlantEqual' => '&#x2271;',
930
-	'NotGreaterTilde' => '&#x2275;',
931
-	'notin' => '&#x2209;',
932
-	'notindot' => '&#xE39D;',
933
-	'notinE' => '&#xE50D;',
934
-	'notinva' => '&#xE370;',
935
-	'notinvb' => '&#xE37B;',
936
-	'notinvc' => '&#xE37C;',
937
-	'NotLeftTriangle' => '&#x22EA;',
938
-	'NotLeftTriangleEqual' => '&#x22EC;',
939
-	'NotLess' => '&#x226E;',
940
-	'NotLessEqual' => '&#xE2A7;',
941
-	'NotLessFullEqual' => '&#x2270;',
942
-	'NotLessGreater' => '&#x2278;',
943
-	'NotLessLess' => '&#xE2CB;',
944
-	'NotLessSlantEqual' => '&#x2270;',
945
-	'NotLessTilde' => '&#x2274;',
946
-	'notni' => '&#x220C;',
947
-	'notniva' => '&#x220C;',
948
-	'notnivb' => '&#xE37D;',
949
-	'notnivc' => '&#xE37E;',
950
-	'NotPrecedes' => '&#x2280;',
951
-	'NotPrecedesEqual' => '&#xE412;',
952
-	'NotPrecedesSlantEqual' => '&#x22E0;',
953
-	'NotReverseElement' => '&#x220C;',
954
-	'NotRightTriangle' => '&#x22EB;',
955
-	'NotRightTriangleEqual' => '&#x22ED;',
956
-	'NotSquareSubsetEqual' => '&#x22E2;',
957
-	'NotSquareSupersetEqual' => '&#x22E3;',
958
-	'NotSubset' => '&#x2284;',
959
-	'NotSucceeds' => '&#x2281;',
960
-	'NotSucceedsEqual' => '&#xE413;',
961
-	'NotSucceedsSlantEqual' => '&#x22E1;',
962
-	'NotSuperset' => '&#x2285;',
963
-	'NotTilde' => '&#x2241;',
964
-	'NotTildeEqual' => '&#x2244;',
965
-	'NotTildeFullEqual' => '&#x2247;',
966
-	'NotTildeTilde' => '&#x2249;',
967
-	'NotVerticalBar' => '&#x2224;',
968
-	'npar' => '&#x2226;',
969
-	'nparallel' => '&#x2226;',
970
-	'nparsl' => '&#xE389;',
971
-	'npart' => '&#xE390;',
972
-	'npolint' => '&#xE399;',
973
-	'npr' => '&#x2280;',
974
-	'nprcue' => '&#x22E0;',
975
-	'npre' => '&#xE412;',
976
-	'nprec' => '&#x2280;',
977
-	'npreceq' => '&#xE412;',
978
-	'nrArr' => '&#x21CF;',
979
-	'nrarr' => '&#x219B;',
980
-	'nrarrc' => '&#xE21D;',
981
-	'nrarrw' => '&#xE21B;',
982
-	'nRightarrow' => '&#x21CF;',
983
-	'nrightarrow' => '&#x219B;',
984
-	'nrtri' => '&#x22EB;',
985
-	'nrtrie' => '&#x22ED;',
986
-	'nsc' => '&#x2281;',
987
-	'nsccue' => '&#x22E1;',
988
-	'nsce' => '&#xE413;',
989
-	'Nscr' => '&#xE4D2;',
990
-	'nscr' => '&#xE4EC;',
991
-	'nshortmid' => '&#xE2AA;',
992
-	'nshortparallel' => '&#xE2AB;',
993
-	'nsim' => '&#x2241;',
994
-	'nsime' => '&#x2244;',
995
-	'nsimeq' => '&#x2244;',
996
-	'nsmid' => '&#xE2AA;',
997
-	'nspar' => '&#xE2AB;',
998
-	'nsqsube' => '&#x22E2;',
999
-	'nsqsupe' => '&#x22E3;',
1000
-	'nsub' => '&#x2284;',
1001
-	'nsubE' => '&#x2288;',
1002
-	'nsube' => '&#x2288;',
1003
-	'nsubset' => '&#x2284;',
1004
-	'nsubseteq' => '&#x2288;',
1005
-	'nsubseteqq' => '&#x2288;',
1006
-	'nsucc' => '&#x2281;',
1007
-	'nsucceq' => '&#xE413;',
1008
-	'nsup' => '&#x2285;',
1009
-	'nsupE' => '&#x2289;',
1010
-	'nsupe' => '&#x2289;',
1011
-	'nsupset' => '&#x2285;',
1012
-	'nsupseteq' => '&#x2289;',
1013
-	'nsupseteqq' => '&#x2289;',
1014
-	'ntgl' => '&#x2279;',
1015
-	'ntlg' => '&#x2278;',
1016
-	'ntriangleleft' => '&#x22EA;',
1017
-	'ntrianglelefteq' => '&#x22EC;',
1018
-	'ntriangleright' => '&#x22EB;',
1019
-	'ntrianglerighteq' => '&#x22ED;',
1020
-	'ntvgl' => '&#x2279;',
1021
-	'ntvlg' => '&#x2278;',
1022
-	'nu' => '&#x03BD;',
1023
-	'num' => '&#x0023;',
1024
-	'numsp' => '&#x2007;',
1025
-	'nvap' => '&#xE2C6;',
1026
-	'nVDash' => '&#x22AF;',
1027
-	'nVdash' => '&#x22AE;',
1028
-	'nvDash' => '&#x22AD;',
1029
-	'nvdash' => '&#x22AC;',
1030
-	'nvge' => '&#x2271;',
1031
-	'nvgt' => '&#x226F;',
1032
-	'nvhArr*' => '&#x21CE;',
1033
-	'nvinfin' => '&#xE38E;',
1034
-	'nvlArr' => '&#x21CD;',
1035
-	'nvle' => '&#x2270;',
1036
-	'nvlt' => '&#x226E;',
1037
-	'nvltrie' => '&#xE2D0;',
1038
-	'nvrArr' => '&#x21CF;',
1039
-	'nvrtrie' => '&#xE2CF;',
1040
-	'nvsim' => '&#xE415;',
1041
-	'nwarhk' => '&#xE20C;',
1042
-	'nwArr' => '&#x21D6;',
1043
-	'nwarr' => '&#x2196;',
1044
-	'nwarrow' => '&#x2196;',
1045
-	'nwnear' => '&#xE211;',
1046
-	'oast' => '&#x229B;',
1047
-	'ocir' => '&#x229A;',
1048
-	'odash' => '&#x229D;',
1049
-	'odiv' => '&#xE285;',
1050
-	'odot' => '&#x2299;',
1051
-	'odsold' => '&#xE286;',
1052
-	'ofcir' => '&#xE287;',
1053
-	'Ofr' => '&#xE48A;',
1054
-	'ofr' => '&#xE4A3;',
1055
-	'ogon' => '&#x0328;',
1056
-	'ogt' => '&#xE289;',
1057
-	'ohbar' => '&#xE260;',
1058
-	'ohm' => '&#x2126;',
1059
-	'oint' => '&#x222E;',
1060
-	'olarr' => '&#x21BA;',
1061
-	'olcir' => '&#xE409;',
1062
-	'olcross' => '&#xE3A8;',
1063
-	'olt' => '&#xE288;',
1064
-	'Omega' => '&#x03A9;',
1065
-	'omega' => '&#x03C9;',
1066
-	'omicron' => '&#x03BE;',
1067
-	'omid' => '&#xE40A;',
1068
-	'ominus' => '&#x2296;',
1069
-	'Oopf' => '&#xE4BC;',
1070
-	'opar' => '&#xE28A;',
1071
-	'OpenCurlyDoubleQuote' => '&#x201C;',
1072
-	'OpenCurlyQuote' => '&#x2018;',
1073
-	'operp' => '&#xE28B;',
1074
-	'oplus' => '&#x2295;',
1075
-	'Or' => '&#xE375;',
1076
-	'or' => '&#x2228;',
1077
-	'orarr' => '&#x21BB;',
1078
-	'ord' => '&#xE393;',
1079
-	'order' => '&#x2134;',
1080
-	'ordf' => '&#x00AA;',
1081
-	'ordm' => '&#x00BA;',
1082
-	'origof' => '&#x22B6;',
1083
-	'oror' => '&#xE50E;',
1084
-	'orslope' => '&#xE3AE;',
1085
-	'orv' => '&#xE392;',
1086
-	'oS' => '&#xE41D;',
1087
-	'Oscr' => '&#xE4D3;',
1088
-	'oscr' => '&#xE4ED;',
1089
-	'oslash' => '&#x2298;',
1090
-	'osol' => '&#x2298;',
1091
-	'Otimes' => '&#xE28C;',
1092
-	'otimes' => '&#x2297;',
1093
-	'otimesas' => '&#xE28D;',
1094
-	'ovbar' => '&#xE40B;',
1095
-	'OverLine' => '&#x0305;',
1096
-	'par' => '&#x2225;',
1097
-	'para' => '&#x00B6;',
1098
-	'parallel' => '&#x2225;',
1099
-	'parsim' => '&#xE2C8;',
1100
-	'parsl' => '&#xE382;',
1101
-	'part' => '&#x2202;',
1102
-	'PartialD' => '&#x2202;',
1103
-	'percnt' => '&#x0025;',
1104
-	'period' => '&#x002E;',
1105
-	'permil' => '&#x2030;',
1106
-	'perp' => '&#x22A5;',
1107
-	'pertenk' => '&#x2031;',
1108
-	'Pfr' => '&#xE48B;',
1109
-	'pfr' => '&#xE4A4;',
1110
-	'Phi' => '&#x03A6;',
1111
-	'phi' => '&#x03C6;',
1112
-	'phiv' => '&#x03D5;',
1113
-	'phmmat' => '&#x2133;',
1114
-	'phone' => '&#x260E;',
1115
-	'Pi' => '&#x03A0;',
1116
-	'pi' => '&#x03C0;',
1117
-	'pitchfork' => '&#x22D4;',
1118
-	'piv' => '&#x03D6;',
1119
-	'plank' => '&#xE2D5;',
1120
-	'plankv' => '&#x210F;',
1121
-	'plus' => '&#x002B;',
1122
-	'plusacir' => '&#xE26A;',
1123
-	'plusb' => '&#x229E;',
1124
-	'pluscir' => '&#xE266;',
1125
-	'plusdo' => '&#x2214;',
1126
-	'plusdu' => '&#xE25A;',
1127
-	'pluse' => '&#xE267;',
1128
-	'PlusMinus' => '&#x00B1;',
1129
-	'plusmn' => '&#x00B1;',
1130
-	'plussim' => '&#xE26C;',
1131
-	'plustwo' => '&#xE269;',
1132
-	'pm' => '&#x00B1;',
1133
-	'pointint' => '&#xE376;',
1134
-	'Popf' => '&#x2119;',
1135
-	'pound' => '&#x00A3;',
1136
-	'Pr' => '&#xE35C;',
1137
-	'pr' => '&#x227A;',
1138
-	'prap' => '&#x227E;',
1139
-	'prcue' => '&#x227C;',
1140
-	'prE' => '&#x227C;',
1141
-	'pre' => '&#x227C;',
1142
-	'prec' => '&#x227A;',
1143
-	'precapprox' => '&#x227E;',
1144
-	'preccurlyeq' => '&#x227C;',
1145
-	'Precedes' => '&#x227A;',
1146
-	'PrecedesEqual' => '&#x227C;',
1147
-	'PrecedesSlantEqual' => '&#x227C;',
1148
-	'PrecedesTilde' => '&#x227E;',
1149
-	'preceq' => '&#x227C;',
1150
-	'precnapprox' => '&#x22E8;',
1151
-	'precneqq' => '&#xE2B3;',
1152
-	'precnsim' => '&#x22E8;',
1153
-	'precsim' => '&#x227E;',
1154
-	'Prime' => '&#x2033;',
1155
-	'prime' => '&#x2032;',
1156
-	'prnap' => '&#x22E8;',
1157
-	'prnE' => '&#xE2B3;',
1158
-	'prnsim' => '&#x22E8;',
1159
-	'profalar' => '&#x232E;',
1160
-	'profline' => '&#x2312;',
1161
-	'profsurf' => '&#x2313;',
1162
-	'prop' => '&#x221D;',
1163
-	'Proportion' => '&#x2237;',
1164
-	'Proportional' => '&#x221D;',
1165
-	'propto' => '&#x221D;',
1166
-	'prsim' => '&#x227E;',
1167
-	'prurel' => '&#x22B0;',
1168
-	'Pscr' => '&#xE4D4;',
1169
-	'pscr' => '&#xE4EE;',
1170
-	'Psi' => '&#x03A8;',
1171
-	'psi' => '&#x03C8;',
1172
-	'puncsp' => '&#x2008;',
1173
-	'Qfr' => '&#xE48C;',
1174
-	'qfr' => '&#xE4A5;',
1175
-	'qint' => '&#xE378;',
1176
-	'Qopf' => '&#x211A;',
1177
-	'qprime' => '&#xE371;',
1178
-	'Qscr' => '&#xE4D5;',
1179
-	'qscr' => '&#xE4EF;',
1180
-	'quatint' => '&#xE377;',
1181
-	'quest' => '&#x003F;',
1182
-	'questeq' => '&#x225F;',
1183
-	'quot' => '&#x0022;',
1184
-	'rAarr' => '&#x21DB;',
1185
-	'race' => '&#xE40C;',
1186
-	'radic' => '&#x221A;',
1187
-	'raemptyv' => '&#xE2E9;',
1188
-	'Rang' => '&#x300B;',
1189
-	'rang' => '&#x3009;',
1190
-	'rangd' => '&#xE298;',
1191
-	'range' => '&#xE2D7;',
1192
-	'rangle' => '&#x3009;',
1193
-	'raquo' => '&#x00BB;',
1194
-	'Rarr' => '&#x21A0;',
1195
-	'rArr' => '&#x21D2;',
1196
-	'rarr' => '&#x2192;',
1197
-	'rarrap' => '&#xE235;',
1198
-	'rarrbfs' => '&#xE221;',
1199
-	'rarrc' => '&#xE21C;',
1200
-	'rarrfs' => '&#xE223;',
1201
-	'rarrhk' => '&#x21AA;',
1202
-	'rarrlp' => '&#x21AC;',
1203
-	'rarrpl' => '&#xE21E;',
1204
-	'rarrsim' => '&#xE24D;',
1205
-	'Rarrtl' => '&#xE239;',
1206
-	'rarrtl' => '&#x21A3;',
1207
-	'rarrw' => '&#x219D;',
1208
-	'rAtail' => '&#xE23B;',
1209
-	'ratail' => '&#x21A3;',
1210
-	'ratio' => '&#x2236;',
1211
-	'RBarr' => '&#xE209;',
1212
-	'rBarr' => '&#xE207;',
1213
-	'rbarr' => '&#xE405;',
1214
-	'rbbrk' => '&#x3015;',
1215
-	'rbrace' => '&#x007D;',
1216
-	'rbrack' => '&#x005D;',
1217
-	'rbrke' => '&#xE29A;',
1218
-	'rbrksld' => '&#xE29C;',
1219
-	'rbrkslu' => '&#xE29E;',
1220
-	'rceil' => '&#x2309;',
1221
-	'rcub' => '&#x007D;',
1222
-	'rdca' => '&#xE219;',
1223
-	'rdldhar' => '&#xE22D;',
1224
-	'rdquo' => '&#x201D;',
1225
-	'rdquor' => '&#x201B;',
1226
-	'rdsh' => '&#x21B3;',
1227
-	'Re' => '&#x211C;',
1228
-	'real' => '&#x211C;',
1229
-	'rect' => '&#xE504;',
1230
-	'reg' => '&#x00AF;',
1231
-	'ReverseElement' => '&#x220B;',
1232
-	'ReverseEquilibrium' => '&#x21CB;',
1233
-	'ReverseUpEquilibrium' => '&#xE217;',
1234
-	'rfisht' => '&#xE215;',
1235
-	'rfloor' => '&#x230B;',
1236
-	'Rfr' => '&#xE48D;',
1237
-	'rfr' => '&#xE4A6;',
1238
-	'rHar' => '&#xE224;',
1239
-	'rhard' => '&#x21C1;',
1240
-	'rharu' => '&#x21C0;',
1241
-	'rharul' => '&#xE230;',
1242
-	'rho' => '&#x03C1;',
1243
-	'rhov' => '&#x03F1;',
1244
-	'RightAngleBracket' => '&#x3009;',
1245
-	'RightArrow' => '&#x2192;',
1246
-	'Rightarrow' => '&#x21D2;',
1247
-	'rightarrow' => '&#x2192;',
1248
-	'RightArrowLeftArrow' => '&#x21C4;',
1249
-	'rightarrowtail' => '&#x21A3;',
1250
-	'RightCeiling' => '&#x2309;',
1251
-	'RightDownVector' => '&#x21C2;',
1252
-	'RightFloor' => '&#x230B;',
1253
-	'rightharpoondown' => '&#x21C1;',
1254
-	'rightharpoonup' => '&#x21C0;',
1255
-	'rightleftarrows' => '&#x21C4;',
1256
-	'rightleftharpoons' => '&#x21CC;',
1257
-	'rightrightarrows' => '&#x21C9;',
1258
-	'rightsquigarrow' => '&#x219D;',
1259
-	'RightTee' => '&#x22A2;',
1260
-	'RightTeeArrow' => '&#x21A6;',
1261
-	'rightthreetimes' => '&#x22CC;',
1262
-	'RightTriangle' => '&#x22B3;',
1263
-	'RightTriangleEqual' => '&#x22B5;',
1264
-	'RightUpVector' => '&#x21BE;',
1265
-	'RightVector' => '&#x21C0;',
1266
-	'ring' => '&#x030A;',
1267
-	'risingdotseq' => '&#x2253;',
1268
-	'rlarr' => '&#x21C4;',
1269
-	'rlhar' => '&#x21CC;',
1270
-	'rmoust' => '&#xE293;',
1271
-	'rmoustache' => '&#xE293;',
1272
-	'rnmid' => '&#xE2D1;',
1273
-	'roang' => '&#x3019;',
1274
-	'roarr' => '&#xE241;',
1275
-	'robrk' => '&#x301B;',
1276
-	'ropar' => '&#xE37A;',
1277
-	'Ropf' => '&#x211D;',
1278
-	'roplus' => '&#xE25D;',
1279
-	'rotimes' => '&#xE40D;',
1280
-	'rpar' => '&#x0029;',
1281
-	'rpargt' => '&#xE291;',
1282
-	'rppolint' => '&#xE397;',
1283
-	'rrarr' => '&#x21C9;',
1284
-	'Rrightarrow' => '&#x21DB;',
1285
-	'Rscr' => '&#xE4D6;',
1286
-	'rscr' => '&#x211B;',
1287
-	'Rsh' => '&#x21B1;',
1288
-	'rsh' => '&#x21B1;',
1289
-	'rsqb' => '&#x005D;',
1290
-	'rsquo' => '&#x2019;',
1291
-	'rsquor' => '&#x201F;',
1292
-	'rthree' => '&#x22CC;',
1293
-	'rtimes' => '&#x22CA;',
1294
-	'rtri' => '&#x25B9;',
1295
-	'rtrie' => '&#x22B5;',
1296
-	'rtrif' => '&#x25B8;',
1297
-	'rtriltri' => '&#xE359;',
1298
-	'ruluhar' => '&#xE22A;',
1299
-	'rx' => '&#x211E;',
1300
-	'Sc' => '&#xE35D;',
1301
-	'sc' => '&#x227B;',
1302
-	'scap' => '&#x227F;',
1303
-	'sccue' => '&#x227D;',
1304
-	'scE' => '&#x227E;',
1305
-	'sce' => '&#x227D;',
1306
-	'scnap' => '&#x22E9;',
1307
-	'scnE' => '&#xE2B5;',
1308
-	'scnsim' => '&#x22E9;',
1309
-	'scpolint' => '&#xE398;',
1310
-	'scsim' => '&#x227F;',
1311
-	'sdot' => '&#x22C5;',
1312
-	'sdotb' => '&#x22A1;',
1313
-	'sdote' => '&#xE319;',
1314
-	'searhk' => '&#xE20B;',
1315
-	'seArr' => '&#x21D8;',
1316
-	'searr' => '&#x2198;',
1317
-	'searrow' => '&#x2198;',
1318
-	'sect' => '&#x00A7;',
1319
-	'semi' => '&#x003B;',
1320
-	'seswar' => '&#xE406;',
1321
-	'setminus' => '&#x2216;',
1322
-	'setmn' => '&#x2216;',
1323
-	'sext' => '&#xE505;',
1324
-	'Sfr' => '&#xE48E;',
1325
-	'sfr' => '&#xE4A7;',
1326
-	'sfrown' => '&#xE426;',
1327
-	'sharp' => '&#x266F;',
1328
-	'ShortLeftArrow' => '&#xE233;',
1329
-	'shortmid' => '&#xE301;',
1330
-	'shortparallel' => '&#xE302;',
1331
-	'ShortRightArrow' => '&#xE232;',
1332
-	'shy' => '&#x00AD;',
1333
-	'Sigma' => '&#x03A3;',
1334
-	'sigma' => '&#x03C3;',
1335
-	'sigmav' => '&#x03C2;',
1336
-	'sim' => '&#x223C;',
1337
-	'simdot' => '&#xE38B;',
1338
-	'sime' => '&#x2243;',
1339
-	'simeq' => '&#x2243;',
1340
-	'simg' => '&#xE30C;',
1341
-	'simgE' => '&#xE338;',
1342
-	'siml' => '&#xE30B;',
1343
-	'simlE' => '&#xE337;',
1344
-	'simne' => '&#x2246;',
1345
-	'simplus' => '&#xE26B;',
1346
-	'simrarr' => '&#xE234;',
1347
-	'slarr' => '&#xE233;',
1348
-	'SmallCircle' => '&#x2218;',
1349
-	'smallfrown' => '&#xE426;',
1350
-	'smallsetminus' => '&#xE844;',
1351
-	'smallsmile' => '&#xE303;',
1352
-	'smashp' => '&#xE264;',
1353
-	'smeparsl' => '&#xE385;',
1354
-	'smid' => '&#xE301;',
1355
-	'smile' => '&#x2323;',
1356
-	'smt' => '&#xE339;',
1357
-	'smte' => '&#xE33B;',
1358
-	'smtes' => '&#xE33D;',
1359
-	'sol' => '&#x002F;',
1360
-	'solb' => '&#xE27F;',
1361
-	'solbar' => '&#xE416;',
1362
-	'Sopf' => '&#xE4BD;',
1363
-	'spades' => '&#x2660;',
1364
-	'spadesuit' => '&#x2660;',
1365
-	'spar' => '&#xE302;',
1366
-	'sqcap' => '&#x2293;',
1367
-	'sqcaps' => '&#xE277;',
1368
-	'sqcup' => '&#x2294;',
1369
-	'sqcups' => '&#xE276;',
1370
-	'Sqrt' => '&#x221A;',
1371
-	'sqsub' => '&#x228F;',
1372
-	'sqsube' => '&#x2291;',
1373
-	'sqsubset' => '&#x228F;',
1374
-	'sqsubseteq' => '&#x2291;',
1375
-	'sqsup' => '&#x2290;',
1376
-	'sqsupe' => '&#x2292;',
1377
-	'sqsupset' => '&#x2290;',
1378
-	'sqsupseteq' => '&#x2292;',
1379
-	'squ' => '&#x25A1;',
1380
-	'square' => '&#x25A1;',
1381
-	'SquareIntersection' => '&#x2293;',
1382
-	'SquareSubset' => '&#x228F;',
1383
-	'SquareSubsetEqual' => '&#x2291;',
1384
-	'SquareSuperset' => '&#x2290;',
1385
-	'SquareSupersetEqual' => '&#x2292;',
1386
-	'SquareUnion' => '&#x2294;',
1387
-	'squarf' => '&#x25A0;',
1388
-	'squarfb' => '&#xE507;',
1389
-	'squarfbl' => '&#xE506;',
1390
-	'squarfbr' => '&#x25EA;',
1391
-	'squarfl' => '&#x25E7;',
1392
-	'squarfr' => '&#x25E8;',
1393
-	'squarft' => '&#xE509;',
1394
-	'squarftl' => '&#x25E9;',
1395
-	'squarftr' => '&#xE508;',
1396
-	'squf' => '&#x25AA;',
1397
-	'srarr' => '&#xE232;',
1398
-	'Sscr' => '&#xE4D7;',
1399
-	'sscr' => '&#xE4F0;',
1400
-	'ssetmn' => '&#xE844;',
1401
-	'ssmile' => '&#xE303;',
1402
-	'sstarf' => '&#x22C6;',
1403
-	'Star' => '&#x22C6;',
1404
-	'star' => '&#x22C6;',
1405
-	'starf' => '&#x2605;',
1406
-	'straightepsilon' => '&#x220A;',
1407
-	'straightphi' => '&#x03C6;',
1408
-	'strns' => '&#xE380;',
1409
-	'Sub' => '&#x22D0;',
1410
-	'sub' => '&#x2282;',
1411
-	'subdot' => '&#xE262;',
1412
-	'subE' => '&#x2286;',
1413
-	'sube' => '&#x2286;',
1414
-	'subedot' => '&#xE34F;',
1415
-	'submult' => '&#xE343;',
1416
-	'subnE' => '&#x228A;',
1417
-	'subne' => '&#x228A;',
1418
-	'subplus' => '&#xE341;',
1419
-	'subrarr' => '&#xE33F;',
1420
-	'Subset' => '&#x22D0;',
1421
-	'subset' => '&#x2282;',
1422
-	'subseteq' => '&#x2286;',
1423
-	'subseteqq' => '&#x2286;',
1424
-	'SubsetEqual' => '&#x2286;',
1425
-	'subsetneq' => '&#x228A;',
1426
-	'subsetneqq' => '&#x228A;',
1427
-	'subsim' => '&#xE345;',
1428
-	'subsub' => '&#xE349;',
1429
-	'subsup' => '&#xE347;',
1430
-	'succ' => '&#x227B;',
1431
-	'succapprox' => '&#x227F;',
1432
-	'succcurlyeq' => '&#x227D;',
1433
-	'Succeeds' => '&#x227B;',
1434
-	'SucceedsEqual' => '&#x227D;',
1435
-	'SucceedsSlantEqual' => '&#x227D;',
1436
-	'SucceedsTilde' => '&#x227F;',
1437
-	'succeq' => '&#x227D;',
1438
-	'succnapprox' => '&#x22E9;',
1439
-	'succneqq' => '&#xE2B5;',
1440
-	'succnsim' => '&#x22E9;',
1441
-	'succsim' => '&#x227F;',
1442
-	'SuchThat' => '&#x220D;',
1443
-	'Sum' => '&#x2211;',
1444
-	'sum' => '&#x2211;',
1445
-	'sung' => '&#x2669;',
1446
-	'Sup' => '&#x22D1;',
1447
-	'sup' => '&#x2283;',
1448
-	'sup1' => '&#x00B9;',
1449
-	'sup2' => '&#x00B2;',
1450
-	'sup3' => '&#x00B3;',
1451
-	'supdot' => '&#xE263;',
1452
-	'supdsub' => '&#xE34C;',
1453
-	'supE' => '&#x2287;',
1454
-	'supe' => '&#x2287;',
1455
-	'supedot' => '&#xE350;',
1456
-	'Superset' => '&#x2283;',
1457
-	'SupersetEqual' => '&#x2287;',
1458
-	'suphsol' => '&#xE34E;',
1459
-	'suphsub' => '&#xE34B;',
1460
-	'suplarr' => '&#xE340;',
1461
-	'supmult' => '&#xE344;',
1462
-	'supnE' => '&#x228B;',
1463
-	'supne' => '&#x228B;',
1464
-	'supplus' => '&#xE342;',
1465
-	'Supset' => '&#x22D1;',
1466
-	'supset' => '&#x2283;',
1467
-	'supseteq' => '&#x2287;',
1468
-	'supseteqq' => '&#x2287;',
1469
-	'supsetneq' => '&#x228B;',
1470
-	'supsetneqq' => '&#x228B;',
1471
-	'supsim' => '&#xE346;',
1472
-	'supsub' => '&#xE348;',
1473
-	'supsup' => '&#xE34A;',
1474
-	'swarhk' => '&#xE20A;',
1475
-	'swArr' => '&#x21D9;',
1476
-	'swarr' => '&#x2199;',
1477
-	'swarrow' => '&#x2199;',
1478
-	'swnwar' => '&#xE210;',
1479
-	'target' => '&#x2316;',
1480
-	'tau' => '&#x03C4;',
1481
-	'tbrk' => '&#xE2EF;',
1482
-	'tdot' => '&#x20DB;',
1483
-	'telrec' => '&#x2315;',
1484
-	'Tfr' => '&#xE48F;',
1485
-	'tfr' => '&#xE4A8;',
1486
-	'there4' => '&#x2234;',
1487
-	'Therefore' => '&#x2234;',
1488
-	'therefore' => '&#x2234;',
1489
-	'Theta' => '&#x0398;',
1490
-	'theta' => '&#x03B8;',
1491
-	'thetav' => '&#x03D1;',
1492
-	'thickapprox' => '&#xE306;',
1493
-	'thicksim' => '&#xE429;',
1494
-	'thinsp' => '&#x2009;',
1495
-	'thkap' => '&#xE306;',
1496
-	'thksim' => '&#xE429;',
1497
-	'Tilde' => '&#x223C;',
1498
-	'tilde' => '&#x0303;',
1499
-	'TildeEqual' => '&#x2243;',
1500
-	'TildeFullEqual' => '&#x2245;',
1501
-	'TildeTilde' => '&#x2248;',
1502
-	'times' => '&#x00D7;',
1503
-	'timesb' => '&#x22A0;',
1504
-	'timesbar' => '&#xE28E;',
1505
-	'timesd' => '&#xE26D;',
1506
-	'tint' => '&#x222D;',
1507
-	'toea' => '&#xE20E;',
1508
-	'top' => '&#x22A4;',
1509
-	'topbot' => '&#x2336;',
1510
-	'topcir' => '&#xE383;',
1511
-	'Topf' => '&#xE4BE;',
1512
-	'topfork' => '&#xE31C;',
1513
-	'tosa' => '&#xE20F;',
1514
-	'tprime' => '&#x2034;',
1515
-	'trade' => '&#x2122;',
1516
-	'triangle' => '&#x25B5;',
1517
-	'triangledown' => '&#x25BF;',
1518
-	'triangleleft' => '&#x25C3;',
1519
-	'trianglelefteq' => '&#x22B4;',
1520
-	'triangleq' => '&#x225C;',
1521
-	'triangleright' => '&#x25B9;',
1522
-	'trianglerighteq' => '&#x22B5;',
1523
-	'tridot' => '&#x25EC;',
1524
-	'trie' => '&#x225C;',
1525
-	'triminus' => '&#xE27C;',
1526
-	'TripleDot' => '&#x20DB;',
1527
-	'triplus' => '&#xE27B;',
1528
-	'trisb' => '&#xE27E;',
1529
-	'tritime' => '&#xE27D;',
1530
-	'trpezium' => '&#xE2EC;',
1531
-	'Tscr' => '&#xE4D8;',
1532
-	'tscr' => '&#xE4F1;',
1533
-	'twixt' => '&#x226C;',
1534
-	'twoheadleftarrow' => '&#x219E;',
1535
-	'twoheadrightarrow' => '&#x21A0;',
1536
-	'Uarr' => '&#x219F;',
1537
-	'uArr' => '&#x21D1;',
1538
-	'uarr' => '&#x2191;',
1539
-	'Uarrocir' => '&#xE237;',
1540
-	'udarr' => '&#x21C5;',
1541
-	'udhar' => '&#xE218;',
1542
-	'ufisht' => '&#xE24B;',
1543
-	'Ufr' => '&#xE490;',
1544
-	'ufr' => '&#xE4A9;',
1545
-	'uHar' => '&#xE226;',
1546
-	'uharl' => '&#x21BF;',
1547
-	'uharr' => '&#x21BE;',
1548
-	'uhblk' => '&#x2580;',
1549
-	'ulcorn' => '&#x231C;',
1550
-	'ulcorner' => '&#x231C;',
1551
-	'ulcrop' => '&#x230F;',
1552
-	'ultri' => '&#xE2E4;',
1553
-	'uml' => '&#x0308;',
1554
-	'UnderLine' => '&#x0332;',
1555
-	'Union' => '&#x22C3;',
1556
-	'UnionPlus' => '&#x228E;',
1557
-	'Uopf' => '&#xE4BF;',
1558
-	'UpArrow' => '&#x2191;',
1559
-	'Uparrow' => '&#x21D1;',
1560
-	'uparrow' => '&#x2191;',
1561
-	'UpArrowDownArrow' => '&#x21C5;',
1562
-	'UpDownArrow' => '&#x2195;',
1563
-	'Updownarrow' => '&#x21D5;',
1564
-	'updownarrow' => '&#x2195;',
1565
-	'UpEquilibrium' => '&#xE218;',
1566
-	'upharpoonleft' => '&#x21BF;',
1567
-	'upharpoonright' => '&#x21BE;',
1568
-	'uplus' => '&#x228E;',
1569
-	'UpperLeftArrow' => '&#x2196;',
1570
-	'UpperRightArrow' => '&#x2197;',
1571
-	'Upsi' => '&#x03D2;',
1572
-	'upsi' => '&#x03C5;',
1573
-	'Upsilon' => '&#x03D2;',
1574
-	'upsilon' => '&#x03C5;',
1575
-	'UpTee' => '&#x22A5;',
1576
-	'upuparrows' => '&#x21C8;',
1577
-	'urcorn' => '&#x231D;',
1578
-	'urcorner' => '&#x231D;',
1579
-	'urcrop' => '&#x230E;',
1580
-	'urtri' => '&#xE2E2;',
1581
-	'Uscr' => '&#xE4D9;',
1582
-	'uscr' => '&#xE4F2;',
1583
-	'utdot' => '&#x22F0;',
1584
-	'utri' => '&#x25B5;',
1585
-	'utrif' => '&#x25B4;',
1586
-	'uuarr' => '&#x21C8;',
1587
-	'uwangle' => '&#xE3AB;',
1588
-	'vangrt' => '&#x22BE;',
1589
-	'varepsilon' => '&#x03B5;',
1590
-	'varkappa' => '&#x03F0;',
1591
-	'varnothing' => '&#x2205;',
1592
-	'varphi' => '&#x03D5;',
1593
-	'varpi' => '&#x03D6;',
1594
-	'varpropto' => '&#x221D;',
1595
-	'vArr' => '&#x21D5;',
1596
-	'varr' => '&#x2195;',
1597
-	'varrho' => '&#x03F1;',
1598
-	'varsigma' => '&#x03C2;',
1599
-	'varsubsetneq' => '&#xE2B9;',
1600
-	'varsubsetneqq' => '&#xE2B8;',
1601
-	'varsupsetneq' => '&#xE2BA;',
1602
-	'varsupsetneqq' => '&#xE2BB;',
1603
-	'vartheta' => '&#x03D1;',
1604
-	'vartriangleleft' => '&#x22B2;',
1605
-	'vartriangleright' => '&#x22B3;',
1606
-	'Vbar' => '&#xE30D;',
1607
-	'vBar' => '&#xE310;',
1608
-	'vBarv' => '&#xE312;',
1609
-	'VDash' => '&#x22AB;',
1610
-	'Vdash' => '&#x22A9;',
1611
-	'vDash' => '&#x22A8;',
1612
-	'vdash' => '&#x22A2;',
1613
-	'Vdashl' => '&#xE313;',
1614
-	'Vee' => '&#x22C1;',
1615
-	'vee' => '&#x2228;',
1616
-	'veebar' => '&#x22BB;',
1617
-	'veeeq' => '&#x225A;',
1618
-	'vellip' => '&#x22EE;',
1619
-	'Verbar' => '&#x2016;',
1620
-	'verbar' => '&#x007C;',
1621
-	'Vert' => '&#x2016;',
1622
-	'vert' => '&#x007C;',
1623
-	'VerticalBar' => '&#x2223;',
1624
-	'VerticalTilde' => '&#x2240;',
1625
-	'Vfr' => '&#xE491;',
1626
-	'vfr' => '&#xE4AA;',
1627
-	'vltri' => '&#x22B2;',
1628
-	'vnsub' => '&#x2284;',
1629
-	'vnsup' => '&#x2285;',
1630
-	'Vopf' => '&#xE4C0;',
1631
-	'vprop' => '&#x221D;',
1632
-	'vrtri' => '&#x22B3;',
1633
-	'Vscr' => '&#xE4DA;',
1634
-	'vscr' => '&#xE4F3;',
1635
-	'vsubnE' => '&#xE2B8;',
1636
-	'vsubne' => '&#xE2B9;',
1637
-	'vsupnE' => '&#xE2BB;',
1638
-	'vsupne' => '&#xE2BA;',
1639
-	'Vvdash' => '&#x22AA;',
1640
-	'vzigzag' => '&#xE2EB;',
1641
-	'wedbar' => '&#xE265;',
1642
-	'Wedge' => '&#x22C0;',
1643
-	'wedge' => '&#x2227;',
1644
-	'wedgeq' => '&#x2259;',
1645
-	'weierp' => '&#x2118;',
1646
-	'Wfr' => '&#xE492;',
1647
-	'wfr' => '&#xE4AB;',
1648
-	'Wopf' => '&#xE4C1;',
1649
-	'wp' => '&#x2118;',
1650
-	'wr' => '&#x2240;',
1651
-	'wreath' => '&#x2240;',
1652
-	'Wscr' => '&#xE4DB;',
1653
-	'wscr' => '&#xE4F4;',
1654
-	'xcap' => '&#x22C2;',
1655
-	'xcirc' => '&#x25CB;',
1656
-	'xcup' => '&#x22C3;',
1657
-	'xdtri' => '&#x25BD;',
1658
-	'Xfr' => '&#xE493;',
1659
-	'xfr' => '&#xE4AC;',
1660
-	'xhArr' => '&#xE202;',
1661
-	'xharr' => '&#xE203;',
1662
-	'Xi' => '&#x039E;',
1663
-	'xi' => '&#x03BE;',
1664
-	'xlArr' => '&#xE200;',
1665
-	'xlarr' => '&#xE201;',
1666
-	'xmap' => '&#xE208;',
1667
-	'xnis' => '&#xE3A3;',
1668
-	'xodot' => '&#x2299;',
1669
-	'Xopf' => '&#xE4C2;',
1670
-	'xoplus' => '&#x2295;',
1671
-	'xotime' => '&#x2297;',
1672
-	'xrArr' => '&#xE204;',
1673
-	'xrarr' => '&#xE205;',
1674
-	'Xscr' => '&#xE4DC;',
1675
-	'xscr' => '&#xE4F5;',
1676
-	'xsqcup' => '&#x2294;',
1677
-	'xuplus' => '&#x228E;',
1678
-	'xutri' => '&#x25B3;',
1679
-	'xvee' => '&#x22C1;',
1680
-	'xwedge' => '&#x22C0;',
1681
-	'yen' => '&#x00A5;',
1682
-	'Yfr' => '&#xE494;',
1683
-	'yfr' => '&#xE4AD;',
1684
-	'Yopf' => '&#xE4C3;',
1685
-	'Yscr' => '&#xE4DD;',
1686
-	'yscr' => '&#xE4F6;',
1687
-	'zeta' => '&#x03B6;',
1688
-	'Zfr' => '&#x2124;',
1689
-	'zfr' => '&#xE4AE;',
1690
-	'zigrarr' => '&#xE244;',
1691
-	'Zopf' => '&#xE4C4;',
1692
-	'Zscr' => '&#xE4DE;',
1693
-	'zscr' => '&#xE4F7;'
11
+    'ac' => '&#xE207;',
12
+    'acd' => '&#xE3A6;',
13
+    'acE' => '&E#290;',
14
+    'acute' => '&#x0301;',
15
+    'Afr' => '&#xE47C;',
16
+    'afr' => '&#xE495;',
17
+    'aleph' => '&#x2135;',
18
+    'alpha' => '&#x03B1;',
19
+    'amalg' => '&#xE251;',
20
+    'amp' => '&#x0026;',
21
+    'And' => '&#x2227;',
22
+    'and' => '&#x2227;',
23
+    'andand' => '&#xE36E;',
24
+    'andd' => '&#xE394;',
25
+    'andslope' => '&#xE50A;',
26
+    'andv' => '&#xE391;',
27
+    'ang' => '&#x2220;',
28
+    'ange' => '&#xE2D6;',
29
+    'angle' => '&#x2220;',
30
+    'angmsd' => '&#x2221;',
31
+    'angmsdaa' => '&#xE2D9;',
32
+    'angmsdab' => '&#xE2DA;',
33
+    'angmsdac' => '&#xE2DB;',
34
+    'angmsdad' => '&#xE2DC;',
35
+    'angmsdae' => '&#xE2DD;',
36
+    'angmsdaf' => '&#xE2DE;',
37
+    'angmsdag' => '&#xE2DF;',
38
+    'angmsdah' => '&#xE2E0;',
39
+    'angrt' => '&#x221F;',
40
+    'angrtvb' => '&#xE418;',
41
+    'angrtvbd' => '&#xE2E1;',
42
+    'angsph' => '&#x2222;',
43
+    'angst' => '&#x212B;',
44
+    'angzarr' => '&#xE248;',
45
+    'Aopf' => '&#xE4AF;',
46
+    'ap' => '&#x2248;',
47
+    'apacir' => '&#xE38C;',
48
+    'apE' => '&#xE315;',
49
+    'ape' => '&#x224A;',
50
+    'apid' => '&#x224B;',
51
+    'apos' => '&#x0027;',
52
+    'approx' => '&#x2248;',
53
+    'approxeq' => '&#x224A;',
54
+    'Ascr' => '&#xE4C5;',
55
+    'ascr' => '&#xE4DF;',
56
+    'ast' => '&#x2217;',
57
+    'asymp' => '&#x224D;',
58
+    'awconint' => '&#x2233;',
59
+    'awint' => '&#xE39B;',
60
+    'backcong' => '&#x224C;',
61
+    'backepsilon' => '&#xE420;',
62
+    'backprime' => '&#x2035;',
63
+    'backsim' => '&#x223D;',
64
+    'backsimeq' => '&#x22CD;',
65
+    'Backslash' => '&#x2216;',
66
+    'Barv' => '&#xE311;',
67
+    'barvee' => '&#x22BD;',
68
+    'Barwed' => '&#x2306;',
69
+    'barwed' => '&#x22BC;',
70
+    'barwedge' => '&#x22BC;',
71
+    'bbrk' => '&#xE2EE;',
72
+    'bbrktbrk' => '&#xE419;',
73
+    'bcong' => '&#x224C;',
74
+    'becaus' => '&#x2235;',
75
+    'Because' => '&#x2235;',
76
+    'because' => '&#x2235;',
77
+    'bemptyv' => '&#xE41A;',
78
+    'benzen' => '&#xE43C;',
79
+    'benzena' => '&#xE42A;',
80
+    'benzenb' => '&#xE42B;',
81
+    'benzenc' => '&#xE42C;',
82
+    'benzend' => '&#xE42D;',
83
+    'benzene' => '&#xE42E;',
84
+    'benzenf' => '&#xE42F;',
85
+    'benzeng' => '&#xE430;',
86
+    'benzenh' => '&#xE431;',
87
+    'benzeni' => '&#xE432;',
88
+    'benzenj' => '&#xE433;',
89
+    'benzenk' => '&#xE434;',
90
+    'benzenl' => '&#xE435;',
91
+    'benzenm' => '&#xE436;',
92
+    'benzenn' => '&#xE437;',
93
+    'benzeno' => '&#xE438;',
94
+    'benzenp' => '&#xE439;',
95
+    'benzenq' => '&#xE43A;',
96
+    'benzenr' => '&#xE43B;',
97
+    'bepsi' => '&#xE420;',
98
+    'bernou' => '&#x212C;',
99
+    'beta' => '&#x03B2;',
100
+    'beth' => '&#x2136;',
101
+    'between' => '&#x226C;',
102
+    'Bfr' => '&#xE47D;',
103
+    'bfr' => '&#xE496;',
104
+    'bigcap' => '&#x22C2;',
105
+    'bigcirc' => '&#x25CB;',
106
+    'bigcup' => '&#x22C3;',
107
+    'bigodot' => '&#x2299;',
108
+    'bigoplus' => '&#x2295;',
109
+    'bigotimes' => '&#x2297;',
110
+    'bigsqcup' => '&#x2294;',
111
+    'bigstar' => '&#x2605;',
112
+    'bigtriangledown' => '&#x25BD;',
113
+    'bigtriangleup' => '&#x25B3;',
114
+    'biguplus' => '&#x228E;',
115
+    'bigvee' => '&#x22C1;',
116
+    'bigwedge' => '&#x22C0;',
117
+    'bkarow' => '&#xE405;',
118
+    'blacklozenge' => '&#xE501;',
119
+    'blacksquare' => '&#x25A0;',
120
+    'blacktriangle' => '&#x25B4;',
121
+    'blacktriangledown' => '&#x25BE;',
122
+    'blacktriangleleft' => '&#x25C2;',
123
+    'blacktriangleright' => '&#x25B8;',
124
+    'blank' => '&#xE4F9;',
125
+    'blk12' => '&#x2592;',
126
+    'blk14' => '&#x2591;',
127
+    'blk34' => '&#x2593;',
128
+    'block' => '&#x2588;',
129
+    'bne' => '&#xE388;',
130
+    'bnequiv' => '&#xE387;',
131
+    'bNot' => '&#xE3AD;',
132
+    'bnot' => '&#x2310;',
133
+    'Bopf' => '&#xE4B0;',
134
+    'bot' => '&#x22A5;',
135
+    'bottom' => '&#x22A5;',
136
+    'bowtie' => '&#x22C8;',
137
+    'boxbox' => '&#xE2E6;',
138
+    'boxminus' => '&#x229F;',
139
+    'boxplus' => '&#x229E;',
140
+    'boxtimes' => '&#x22A0;',
141
+    'bprime' => '&#x2035;',
142
+    'Breve' => '&#x0306;',
143
+    'breve' => '&#x0306;',
144
+    'brvbar' => '&#x00A6;',
145
+    'Bscr' => '&#xE4C6;',
146
+    'bscr' => '&#xE4E0;',
147
+    'bsemi' => '&#xE2ED;',
148
+    'bsim' => '&#x223D;',
149
+    'bsime' => '&#x22CD;',
150
+    'bsol' => '&#x005C;',
151
+    'bsolb' => '&#xE280;',
152
+    'bsolhsub' => '&#xE34D;',
153
+    'bull' => '&#x2022;',
154
+    'bullet' => '&#x2022;',
155
+    'bump' => '&#x224E;',
156
+    'bumpe' => '&#x224F;',
157
+    'Bumpeq' => '&#x224E;',
158
+    'bumpeq' => '&#x224F;',
159
+    'Cap' => '&#x22D2;',
160
+    'cap' => '&#x2229;',
161
+    'capand' => '&#xE281;',
162
+    'capbrcup' => '&#xE271;',
163
+    'capcap' => '&#xE273;',
164
+    'capcup' => '&#xE26F;',
165
+    'capdot' => '&#xE261;',
166
+    'caps' => '&#xE275;',
167
+    'caret' => '&#x2038;',
168
+    'caron' => '&#x030C;',
169
+    'ccaps' => '&#xE279;',
170
+    'Cconint' => '&#x2230;',
171
+    'ccups' => '&#xE278;',
172
+    'ccupssm' => '&#xE27A;',
173
+    'cdot' => '&#x22C5;',
174
+    'cedil' => '&#x0327;',
175
+    'Cedilla' => '&#x0327;',
176
+    'cemptyv' => '&#xE2E8;',
177
+    'cent' => '&#x00A2;',
178
+    'CenterDot' => '&#x00B7;',
179
+    'centerdot' => '&#x00B7;',
180
+    'Cfr' => '&#xE47E;',
181
+    'cfr' => '&#xE497;',
182
+    'check' => '&#x2713;',
183
+    'checkmark' => '&#x2713;',
184
+    'chi' => '&#x03C7;',
185
+    'cir' => '&#x2218;',
186
+    'circ' => '&#x2218;',
187
+    'circeq' => '&#x2257;',
188
+    'circle' => '&#xE4FA;',
189
+    'circlearrowleft' => '&#x21BA;',
190
+    'circlearrowright' => '&#x21BB;',
191
+    'circledast' => '&#x229B;',
192
+    'circledcirc' => '&#x229A;',
193
+    'circleddash' => '&#x229D;',
194
+    'CircleDot' => '&#x2299;',
195
+    'circledR' => '&#x00AF;',
196
+    'circledS' => '&#xE41D;',
197
+    'circlef' => '&#x25CF;',
198
+    'circlefb' => '&#x25D2;',
199
+    'circlefl' => '&#x25D0;',
200
+    'circlefr' => '&#x25D1;',
201
+    'circleft' => '&#x25D3;',
202
+    'CircleMinus' => '&#x2296;',
203
+    'CirclePlus' => '&#x2295;',
204
+    'CircleTimes' => '&#x2297;',
205
+    'cirE' => '&#xE41B;',
206
+    'cire' => '&#x2257;',
207
+    'cirfnint' => '&#xE395;',
208
+    'cirmid' => '&#xE250;',
209
+    'cirscir' => '&#xE41C;',
210
+    'ClockwiseContourIntegral' => '&#x2232;',
211
+    'CloseCurlyDoubleQuote' => '&#x201D;',
212
+    'CloseCurlyQuote' => '&#x2019;',
213
+    'clubs' => '&#x2663;',
214
+    'clubsuit' => '&#x2663;',
215
+    'Colon' => '&#x2237;',
216
+    'colon' => '&#x003A;',
217
+    'Colone' => '&#xE30E;',
218
+    'colone' => '&#x2254;',
219
+    'coloneq' => '&#x2254;',
220
+    'comma' => '&#x002C;',
221
+    'commat' => '&#x0040;',
222
+    'comp' => '&#x2201;',
223
+    'compfn' => '&#x2218;',
224
+    'complement' => '&#x2201;',
225
+    'cong' => '&#x2245;',
226
+    'congdot' => '&#xE314;',
227
+    'Congruent' => '&#x2261;',
228
+    'Conint' => '&#x222F;',
229
+    'conint' => '&#x222E;',
230
+    'ContourIntegral' => '&#x222E;',
231
+    'Copf' => '&#x2102;',
232
+    'coprod' => '&#x2210;',
233
+    'Coproduct' => '&#x2210;',
234
+    'copy' => '&#x00A9;',
235
+    'copysr' => '&#x2117;',
236
+    'CounterClockwiseContourIntegral' => '&#x2233;',
237
+    'cross' => '&#x2612;',
238
+    'Cscr' => '&#xE4C7;',
239
+    'cscr' => '&#xE4E1;',
240
+    'csub' => '&#xE351;',
241
+    'csube' => '&#xE353;',
242
+    'csup' => '&#xE352;',
243
+    'csupe' => '&#xE354;',
244
+    'ctdot' => '&#x22EF;',
245
+    'cudarrl' => '&#xE23E;',
246
+    'cudarrr' => '&#xE400;',
247
+    'cuepr' => '&#x22DE;',
248
+    'cuesc' => '&#x22DF;',
249
+    'cularr' => '&#x21B6;',
250
+    'cularrp' => '&#xE24A;',
251
+    'Cup' => '&#x2323;',
252
+    'cup' => '&#x222A;',
253
+    'cupbrcap' => '&#xE270;',
254
+    'CupCap' => '&#x224D;',
255
+    'cupcap' => '&#xE26E;',
256
+    'cupcup' => '&#xE272;',
257
+    'cupdot' => '&#x228D;',
258
+    'cupor' => '&#xE282;',
259
+    'cups' => '&#xE274;',
260
+    'curarr' => '&#x21B7;',
261
+    'curarrm' => '&#xE249;',
262
+    'curlyeqprec' => '&#x22DE;',
263
+    'curlyeqsucc' => '&#x22DF;',
264
+    'curlyvee' => '&#x22CE;',
265
+    'curlywedge' => '&#x22CF;',
266
+    'curren' => '&#x00A4;',
267
+    'curvearrowleft' => '&#x21B6;',
268
+    'curvearrowright' => '&#x21B7;',
269
+    'cuvee' => '&#x22CE;',
270
+    'cuwed' => '&#x22CF;',
271
+    'cwconint' => '&#x2232;',
272
+    'cwint' => '&#x2231;',
273
+    'cylcty' => '&#x232D;',
274
+    'Dagger' => '&#x2021;',
275
+    'dagger' => '&#x2020;',
276
+    'daleth' => '&#x2138;',
277
+    'Darr' => '&#x21A1;',
278
+    'dArr' => '&#x21D3;',
279
+    'darr' => '&#x2193;',
280
+    'dash' => '&#x2010;',
281
+    'Dashv' => '&#xE30F;',
282
+    'dashv' => '&#x22A3;',
283
+    'dbkarow' => '&#xE207;',
284
+    'dblac' => '&#x030B;',
285
+    'ddagger' => '&#x2021;',
286
+    'ddarr' => '&#x21CA;',
287
+    'DDotrahd' => '&#xE238;',
288
+    'ddotseq' => '&#xE309;',
289
+    'deg' => '&#x00B0;',
290
+    'Del' => '&#x2207;',
291
+    'Delta' => '&#x0394;',
292
+    'delta' => '&#x03B4;',
293
+    'demptyv' => '&#xE2E7;',
294
+    'dfisht' => '&#xE24C;',
295
+    'Dfr' => '&#xE47F;',
296
+    'dfr' => '&#xE498;',
297
+    'dHar' => '&#xE227;',
298
+    'dharl' => '&#x21C3;',
299
+    'dharr' => '&#x21C2;',
300
+    'DiacriticalAcute' => '&#x0301;',
301
+    'DiacriticalDot' => '&#x0307;',
302
+    'DiacriticalDoubleAcute' => '&#x030B;',
303
+    'DiacriticalGrave' => '&#x0300;',
304
+    'DiacriticalLeftArrow' => '&#x20D6;',
305
+    'DiacriticalLeftRightArrow' => '&#x20E1;',
306
+    'DiacriticalLeftRightVector' => '&#xF505;',
307
+    'DiacriticalLeftVector' => '&#x20D0;',
308
+    'DiacriticalRightArrow' => '&#x20D7;',
309
+    'DiacriticalRightVector' => '&#x20D1;',
310
+    'DiacriticalTilde' => '&#x0303;',
311
+    'diam' => '&#x22C4;',
312
+    'diamond' => '&#x22C4;',
313
+    'diamondf' => '&#xE4FB;',
314
+    'diamondsuit' => '&#x2662;',
315
+    'diamonfb' => '&#xE4FC;',
316
+    'diamonfl' => '&#xE4FD;',
317
+    'diamonfr' => '&#xE4FE;',
318
+    'diamonft' => '&#xE4FF;',
319
+    'diams' => '&#x2662;',
320
+    'die' => '&#x0308;',
321
+    'digamma' => '&#x03DC;',
322
+    'disin' => '&#xE3A0;',
323
+    'div' => '&#x00F7;',
324
+    'divide' => '&#x00F7;',
325
+    'divideontimes' => '&#x22C7;',
326
+    'divonx' => '&#x22C7;',
327
+    'dlcorn' => '&#x231E;',
328
+    'dlcrop' => '&#x230D;',
329
+    'dollar' => '&#x0024;',
330
+    'Dopf' => '&#xE4B1;',
331
+    'Dot' => '&#x0308;',
332
+    'dot' => '&#x0307;',
333
+    'DotDot' => '&#x20DC;',
334
+    'doteq' => '&#x2250;',
335
+    'doteqdot' => '&#x2251;',
336
+    'DotEqual' => '&#x2250;',
337
+    'dotminus' => '&#x2238;',
338
+    'dotplus' => '&#x2214;',
339
+    'dotsquare' => '&#x22A1;',
340
+    'doublebarwedge' => '&#x2306;',
341
+    'DoubleContourIntegral' => '&#x222F;',
342
+    'DoubleDot' => '&#x0308;',
343
+    'DoubleDownArrow' => '&#x21D3;',
344
+    'DoubleLeftArrow' => '&#x21D0;',
345
+    'DoubleLeftRightArrow' => '&#x21D4;',
346
+    'DoubleLongLeftArrow' => '&#xE200;',
347
+    'DoubleLongLeftRightArrow' => '&#xE202;',
348
+    'DoubleLongRightArrow' => '&#xE204;',
349
+    'DoubleRightArrow' => '&#x21D2;',
350
+    'DoubleRightTee' => '&#x22A8;',
351
+    'DoubleUpArrow' => '&#x21D1;',
352
+    'DoubleUpDownArrow' => '&#x21D5;',
353
+    'DoubleVerticalBar' => '&#x2225;',
354
+    'DownArrow' => '&#x2193;',
355
+    'Downarrow' => '&#x21D3;',
356
+    'downarrow' => '&#x2193;',
357
+    'DownArrowUpArrow' => '&#xE216;',
358
+    'downdownarrows' => '&#x21CA;',
359
+    'downharpoonleft' => '&#x21C3;',
360
+    'downharpoonright' => '&#x21C2;',
361
+    'DownLeftVector' => '&#x21BD;',
362
+    'DownRightVector' => '&#x21C1;',
363
+    'DownTee' => '&#x22A4;',
364
+    'drbkarow' => '&#xE209;',
365
+    'drcorn' => '&#x231F;',
366
+    'drcrop' => '&#x230C;',
367
+    'Dscr' => '&#xE4C8;',
368
+    'dscr' => '&#xE4E2;',
369
+    'dsol' => '&#xE3A9;',
370
+    'dtdot' => '&#x22F1;',
371
+    'dtri' => '&#x25BF;',
372
+    'dtrif' => '&#x25BE;',
373
+    'duarr' => '&#xE216;',
374
+    'duhar' => '&#xE217;',
375
+    'dwangle' => '&#xE3AA;',
376
+    'dzigrarr' => '&#x21DD;',
377
+    'easter' => '&#x225B;',
378
+    'ecir' => '&#x2256;',
379
+    'ecolon' => '&#x2255;',
380
+    'eDDot' => '&#xE309;',
381
+    'eDot' => '&#x2251;',
382
+    'efDot' => '&#x2252;',
383
+    'Efr' => '&#xE480;',
384
+    'efr' => '&#xE499;',
385
+    'eg' => '&#xE328;',
386
+    'egs' => '&#x22DD;',
387
+    'egsdot' => '&#xE324;',
388
+    'el' => '&#xE327;',
389
+    'Element' => '&#x2208;',
390
+    'elinters' => '&#xE3A7;',
391
+    'ell' => '&#x2113;',
392
+    'els' => '&#x22DC;',
393
+    'elsdot' => '&#xE323;',
394
+    'empty' => '&#xE2D3;',
395
+    'emptyset' => '&#xE2D3;',
396
+    'emptyv' => '&#x2205;',
397
+    'emsp' => '&#x2003;',
398
+    'emsp13' => '&#x2004;',
399
+    'emsp14' => '&#x2005;',
400
+    'ensp' => '&#x2002;',
401
+    'Eopf' => '&#xE4B2;',
402
+    'epar' => '&#x22D5;',
403
+    'eparsl' => '&#xE384;',
404
+    'eplus' => '&#xE268;',
405
+    'epsi' => '&#x220A;',
406
+    'epsiv' => '&#x03B5;',
407
+    'eqcirc' => '&#x2256;',
408
+    'eqcolon' => '&#x2255;',
409
+    'eqsim' => '&#x2242;',
410
+    'eqslantgtr' => '&#x22DD;',
411
+    'eqslantless' => '&#x22DC;',
412
+    'equals' => '&#x003D;',
413
+    'EqualTilde' => '&#x2242;',
414
+    'equest' => '&#x225F;',
415
+    'Equilibrium' => '&#x21CC;',
416
+    'equiv' => '&#x2261;',
417
+    'equivDD' => '&#xE318;',
418
+    'eqvparsl' => '&#xE386;',
419
+    'erarr' => '&#xE236;',
420
+    'erDot' => '&#x2253;',
421
+    'Escr' => '&#xE4C9;',
422
+    'escr' => '&#xE4E3;',
423
+    'esdot' => '&#x2250;',
424
+    'Esim' => '&#xE317;',
425
+    'esim' => '&#x2242;',
426
+    'eta' => '&#x03B7;',
427
+    'excl' => '&#x0021;',
428
+    'exist' => '&#x2203;',
429
+    'Exists' => '&#x2203;',
430
+    'fallingdotseq' => '&#x2252;',
431
+    'female' => '&#x2640;',
432
+    'ffilig' => '&#xFB03;',
433
+    'fflig' => '&#xFB00;',
434
+    'ffllig' => '&#xFB04;',
435
+    'Ffr' => '&#xE481;',
436
+    'ffr' => '&#xE49A;',
437
+    'filig' => '&#xFB01;',
438
+    'fjlig' => '&#xE500;',
439
+    'flat' => '&#x266D;',
440
+    'fllig' => '&#xFB02;',
441
+    'fltns' => '&#xE381;',
442
+    'Fopf' => '&#xE4B3;',
443
+    'ForAll' => '&#x2200;',
444
+    'forall' => '&#x2200;',
445
+    'fork' => '&#x22D4;',
446
+    'forkv' => '&#xE31B;',
447
+    'fpartint' => '&#xE396;',
448
+    'frac12' => '&#x00BD;',
449
+    'frac13' => '&#x2153;',
450
+    'frac14' => '&#x00BC;',
451
+    'frac15' => '&#x2155;',
452
+    'frac16' => '&#x2159;',
453
+    'frac18' => '&#x215B;',
454
+    'frac23' => '&#x2254;',
455
+    'frac25' => '&#x2156;',
456
+    'frac34' => '&#x00BE;',
457
+    'frac35' => '&#x2157;',
458
+    'frac38' => '&#x215C;',
459
+    'frac45' => '&#x2158;',
460
+    'frac56' => '&#x215A;',
461
+    'frac58' => '&#x215D;',
462
+    'frac78' => '&#x215E;',
463
+    'frown' => '&#x2322;',
464
+    'Fscr' => '&#xE4CA;',
465
+    'fscr' => '&#xE4E4;',
466
+    'Gamma' => '&#x0393;',
467
+    'gamma' => '&#x03B3;',
468
+    'Gammad' => '&#x03DC;',
469
+    'gammad' => '&#x03DC;',
470
+    'gap' => '&#x2273;',
471
+    'gE' => '&#x2267;',
472
+    'ge' => '&#x2265;',
473
+    'gEl' => '&#x22DB;',
474
+    'gel' => '&#x22DB;',
475
+    'geq' => '&#x2265;',
476
+    'geqq' => '&#x2267;',
477
+    'geqslant' => '&#xE421;',
478
+    'ges' => '&#xE421;',
479
+    'gescc' => '&#xE358;',
480
+    'gesdot' => '&#xE31E;',
481
+    'gesdoto' => '&#xE320;',
482
+    'gesdotol' => '&#xE322;',
483
+    'gesl' => '&#xE32C;',
484
+    'gesles' => '&#xE332;',
485
+    'Gfr' => '&#xE482;',
486
+    'gfr' => '&#xE49B;',
487
+    'Gg' => '&#x22D9;',
488
+    'gg' => '&#x226B;',
489
+    'ggg' => '&#x22D9;',
490
+    'gimel' => '&#x2137;',
491
+    'gl' => '&#x2277;',
492
+    'gla' => '&#xE330;',
493
+    'glE' => '&#xE32E;',
494
+    'glj' => '&#xE32F;',
495
+    'gnap' => '&#xE411;',
496
+    'gnapprox' => '&#xE411;',
497
+    'gnE' => '&#x2269;',
498
+    'gne' => '&#x2269;',
499
+    'gneq' => '&#x2269;',
500
+    'gneqq' => '&#x2269;',
501
+    'gnsim' => '&#x22E7;',
502
+    'Gopf' => '&#xE4B4;',
503
+    'grave' => '&#x0300;',
504
+    'GreaterEqual' => '&#x2265;',
505
+    'GreaterEqualLess' => '&#x22DB;',
506
+    'GreaterFullEqual' => '&#x2267;',
507
+    'GreaterLess' => '&#x2277;',
508
+    'GreaterSlantEqual' => '&#xE421;',
509
+    'GreaterTilde' => '&#x2273;',
510
+    'Gscr' => '&#xE4CB;',
511
+    'gscr' => '&#xE4E5;',
512
+    'gsim' => '&#x2273;',
513
+    'gsime' => '&#xE334;',
514
+    'gsiml' => '&#xE336;',
515
+    'Gt' => '&#x226B;',
516
+    'gt' => '&#x003E;',
517
+    'gtcc' => '&#xE356;',
518
+    'gtcir' => '&#xE326;',
519
+    'gtdot' => '&#x22D7;',
520
+    'gtlPar' => '&#xE296;',
521
+    'gtquest' => '&#xE32A;',
522
+    'gtrapprox' => '&#x2273;',
523
+    'gtrarr' => '&#xE35F;',
524
+    'gtrdot' => '&#x22D7;',
525
+    'gtreqless' => '&#x22DB;',
526
+    'gtreqqless' => '&#x22DB;',
527
+    'gtrless' => '&#x2277;',
528
+    'gtrsim' => '&#x2273;',
529
+    'gvertneqq' => '&#xE2A1;',
530
+    'gvnE' => '&#xE2A1;',
531
+    'Hacek' => '&#x030C;',
532
+    'hairsp' => '&#x200A;',
533
+    'half' => '&#x00BD;',
534
+    'hamilt' => '&#x210B;',
535
+    'hArr' => '&#x21D4;',
536
+    'harr' => '&#x2194;',
537
+    'harrcir' => '&#xE240;',
538
+    'harrw' => '&#x21AD;',
539
+    'Hat' => '&#x0302;',
540
+    'hbar' => '&#xE2D5;',
541
+    'hbenzen' => '&#xE44F;',
542
+    'hbenzena' => '&#xE43D;',
543
+    'hbenzenb' => '&#xE43E;',
544
+    'hbenzenc' => '&#xE43F;',
545
+    'hbenzend' => '&#xE440;',
546
+    'hbenzene' => '&#xE441;',
547
+    'hbenzenf' => '&#xE442;',
548
+    'hbenzeng' => '&#xE443;',
549
+    'hbenzenh' => '&#xE444;',
550
+    'hbenzeni' => '&#xE445;',
551
+    'hbenzenj' => '&#xE446;',
552
+    'hbenzenk' => '&#xE447;',
553
+    'hbenzenl' => '&#xE448;',
554
+    'hbenzenm' => '&#xE449;',
555
+    'hbenzenn' => '&#xE44A;',
556
+    'hbenzeno' => '&#xE44B;',
557
+    'hbenzenp' => '&#xE44C;',
558
+    'hbenzenq' => '&#xE44D;',
559
+    'hbenzenr' => '&#xE44E;',
560
+    'hearts' => '&#x2661;',
561
+    'heartsuit' => '&#x2661;',
562
+    'hellip' => '&#x2026;',
563
+    'hercon' => '&#x22B9;',
564
+    'Hfr' => '&#xE483;',
565
+    'hfr' => '&#xE49C;',
566
+    'hksearow' => '&#xE20B;',
567
+    'hkswarow' => '&#xE20A;',
568
+    'hoarr' => '&#xE243;',
569
+    'homtht' => '&#x223B;',
570
+    'hookleftarrow' => '&#x21A9;',
571
+    'hookrightarrow' => '&#x21AA;',
572
+    'Hopf' => '&#xE4B5;',
573
+    'horbar' => '&#x2015;',
574
+    'Hscr' => '&#xE4CC;',
575
+    'hscr' => '&#xE4E6;',
576
+    'hslash' => '&#x210F;',
577
+    'HumpDownHump' => '&#x224E;',
578
+    'HumpEqual' => '&#x224F;',
579
+    'hybull' => '&#x2043;',
580
+    'hyphen' => '&#xE4F8;',
581
+    'iexcl' => '&#x00A1;',
582
+    'iff' => '&#xE365;',
583
+    'Ifr' => '&#xE484;',
584
+    'ifr' => '&#xE49D;',
585
+    'iiiint' => '&#xE378;',
586
+    'iiint' => '&#x222D;',
587
+    'iinfin' => '&#xE372;',
588
+    'iiota' => '&#x2129;',
589
+    'Im' => '&#x2111;',
590
+    'image' => '&#x2111;',
591
+    'imath' => '&#x0131;',
592
+    'imof' => '&#x22B7;',
593
+    'imped' => '&#xE50B;',
594
+    'Implies' => '&#x21D2;',
595
+    'in' => '&#x220A;',
596
+    'incare' => '&#x2105;',
597
+    'infin' => '&#x221E;',
598
+    'infintie' => '&#xE50C;',
599
+    'Int' => '&#x222C;',
600
+    'int' => '&#x222B;',
601
+    'intcal' => '&#x22BA;',
602
+    'Integral' => '&#x222B;',
603
+    'intercal' => '&#x22BA;',
604
+    'Intersection' => '&#x22C2;',
605
+    'intlarhk' => '&#xE39A;',
606
+    'intprod' => '&#xE259;',
607
+    'Iopf' => '&#xE4B6;',
608
+    'iota' => '&#x03B9;',
609
+    'iprod' => '&#xE259;',
610
+    'iquest' => '&#x00BF;',
611
+    'Iscr' => '&#xE4CD;',
612
+    'iscr' => '&#xE4E7;',
613
+    'isin' => '&#x220A;',
614
+    'isindot' => '&#xE39C;',
615
+    'isinE' => '&#xE39E;',
616
+    'isins' => '&#xE3A4;',
617
+    'isinsv' => '&#xE3A2;',
618
+    'isinv' => '&#x2208;',
619
+    'Jfr' => '&#xE485;',
620
+    'jfr' => '&#xE49E;',
621
+    'jmath' => '&#xE2D4;',
622
+    'Jopf' => '&#xE4B7;',
623
+    'Jscr' => '&#xE4CE;',
624
+    'jscr' => '&#xE4E8;',
625
+    'kappa' => '&#x03BA;',
626
+    'kappav' => '&#x03F0;',
627
+    'Kfr' => '&#xE486;',
628
+    'kfr' => '&#xE49F;',
629
+    'Kopf' => '&#xE4B8;',
630
+    'Kscr' => '&#xE4CF;',
631
+    'kscr' => '&#xE4E9;',
632
+    'lAarr' => '&#x21DA;',
633
+    'laemptyv' => '&#xE2EA;',
634
+    'lagran' => '&#x2112;',
635
+    'Lambda' => '&#x039B;',
636
+    'lambda' => '&#x03BB;',
637
+    'Lang' => '&#x300A;',
638
+    'lang' => '&#x3008;',
639
+    'langd' => '&#xE297;',
640
+    'langle' => '&#x3008;',
641
+    'lap' => '&#x2272;',
642
+    'laquo' => '&#x00AB;',
643
+    'Larr' => '&#x219E;',
644
+    'lArr' => '&#x21D0;',
645
+    'larr' => '&#x2190;',
646
+    'larrbfs' => '&#xE220;',
647
+    'larrfs' => '&#xE222;',
648
+    'larrhk' => '&#x21A9;',
649
+    'larrlp' => '&#x21AB;',
650
+    'larrpl' => '&#xE23F;',
651
+    'larrsim' => '&#xE24E;',
652
+    'larrtl' => '&#x21A2;',
653
+    'lat' => '&#xE33A;',
654
+    'lAtail' => '&#xE23D;',
655
+    'latail' => '&#xE23C;',
656
+    'late' => '&#xE33C;',
657
+    'lates' => '&#xE33E;',
658
+    'lBarr' => '&#xE206;',
659
+    'lbarr' => '&#xE402;',
660
+    'lbbrk' => '&#x3014;',
661
+    'lbrace' => '&#x007B;',
662
+    'lbrack' => '&#x005B;',
663
+    'lbrke' => '&#xE299;',
664
+    'lbrksld' => '&#xE29D;',
665
+    'lbrkslu' => '&#xE29B;',
666
+    'lceil' => '&#x2308;',
667
+    'lcub' => '&#x007B;',
668
+    'ldca' => '&#xE21A;',
669
+    'ldquo' => '&#x201C;',
670
+    'ldquor' => '&#x201E;',
671
+    'ldrdhar' => '&#xE22C;',
672
+    'ldrushar' => '&#xE228;',
673
+    'ldsh' => '&#x21B2;',
674
+    'lE' => '&#x2266;',
675
+    'le' => '&#x2264;',
676
+    'LeftAngleBracket' => '&#x3008;',
677
+    'LeftArrow' => '&#x2190;',
678
+    'Leftarrow' => '&#x21D0;',
679
+    'leftarrow' => '&#x2190;',
680
+    'LeftArrowRightArrow' => '&#x21C6;',
681
+    'leftarrowtail' => '&#x21A2;',
682
+    'LeftCeiling' => '&#x2308;',
683
+    'LeftDownVector' => '&#x21C3;',
684
+    'LeftFloor' => '&#x230A;',
685
+    'leftharpoondown' => '&#x21BD;',
686
+    'leftharpoonup' => '&#x21BC;',
687
+    'leftleftarrows' => '&#x21C7;',
688
+    'LeftRightArrow' => '&#x2194;',
689
+    'Leftrightarrow' => '&#x21D4;',
690
+    'leftrightarrow' => '&#x2194;',
691
+    'leftrightarrows' => '&#x21C6;',
692
+    'leftrightharpoons' => '&#x21CB;',
693
+    'leftrightsquigarrow' => '&#x21AD;',
694
+    'LeftTee' => '&#x22A3;',
695
+    'leftthreetimes' => '&#x22CB;',
696
+    'LeftTriangle' => '&#x22B2;',
697
+    'LeftTriangleEqual' => '&#x22B4;',
698
+    'LeftUpVector' => '&#x21BF;',
699
+    'LeftVector' => '&#x21BC;',
700
+    'lEg' => '&#x22DA;',
701
+    'leg' => '&#x22DA;',
702
+    'leq' => '&#x2264;',
703
+    'leqq' => '&#x2266;',
704
+    'leqslant' => '&#xE425;',
705
+    'les' => '&#xE425;',
706
+    'lescc' => '&#xE357;',
707
+    'lesdot' => '&#xE31D;',
708
+    'lesdoto' => '&#xE31F;',
709
+    'lesdotor' => '&#xE321;',
710
+    'lesg' => '&#xE32B;',
711
+    'lesges' => '&#xE331;',
712
+    'lessapprox' => '&#x2272;',
713
+    'lessdot' => '&#x22D6;',
714
+    'lesseqgtr' => '&#x22DA;',
715
+    'lesseqqgtr' => '&#x22DA;',
716
+    'LessEqualGreater' => '&#x22DA;',
717
+    'LessFullEqual' => '&#x2266;',
718
+    'LessGreater' => '&#x2276;',
719
+    'lessgtr' => '&#x2276;',
720
+    'lesssim' => '&#x2272;',
721
+    'LessSlantEqual' => '&#xE425;',
722
+    'LessTilde' => '&#x2272;',
723
+    'lfisht' => '&#xE214;',
724
+    'lfloor' => '&#x230A;',
725
+    'Lfr' => '&#xE487;',
726
+    'lfr' => '&#xE4A0;',
727
+    'lg' => '&#x2276;',
728
+    'lgE' => '&#xE32D;',
729
+    'lHar' => '&#xE225;',
730
+    'lhard' => '&#x21BD;',
731
+    'lharu' => '&#x21BC;',
732
+    'lharul' => '&#xE22E;',
733
+    'lhblk' => '&#x2584;',
734
+    'Ll' => '&#x22D8;',
735
+    'll' => '&#x226A;',
736
+    'llarr' => '&#x21C7;',
737
+    'llcorner' => '&#x231E;',
738
+    'Lleftarrow' => '&#x21DA;',
739
+    'llhard' => '&#xE231;',
740
+    'lltri' => '&#xE2E5;',
741
+    'lmoust' => '&#xE294;',
742
+    'lmoustache' => '&#xE294;',
743
+    'lnap' => '&#xE2A2;',
744
+    'lnapprox' => '&#xE2A2;',
745
+    'lnE' => '&#x2268;',
746
+    'lne' => '&#x2268;',
747
+    'lneq' => '&#x2268;',
748
+    'lneqq' => '&#x2268;',
749
+    'lnsim' => '&#x22E6;',
750
+    'loang' => '&#x3018;',
751
+    'loarr' => '&#xE242;',
752
+    'lobrk' => '&#x301A;',
753
+    'LongLeftArrow' => '&#xE201;',
754
+    'Longleftarrow' => '&#xE200;',
755
+    'longleftarrow' => '&#xE201;',
756
+    'LongLeftRightArrow' => '&#xE203;',
757
+    'Longleftrightarrow' => '&#xE202;',
758
+    'longleftrightarrow' => '&#xE203;',
759
+    'longmapsto' => '&#xE208;',
760
+    'LongRightArrow' => '&#xE205;',
761
+    'Longrightarrow' => '&#xE204;',
762
+    'longrightarrow' => '&#xE205;',
763
+    'looparrowleft' => '&#x21AB;',
764
+    'looparrowright' => '&#x21AC;',
765
+    'lopar' => '&#xE379;',
766
+    'Lopf' => '&#xE4B9;',
767
+    'loplus' => '&#xE25C;',
768
+    'lotimes' => '&#xE25E;',
769
+    'lowast' => '&#x2217;',
770
+    'lowbar' => '&#x005F;',
771
+    'LowerLeftArrow' => '&#x2199;',
772
+    'LowerRightArrow' => '&#x2198;',
773
+    'loz' => '&#x25CA;',
774
+    'lozenge' => '&#x25CA;',
775
+    'lozf' => '&#xE501;',
776
+    'lpar' => '&#x0028;',
777
+    'lparlt' => '&#xE292;',
778
+    'lrarr' => '&#x21C6;',
779
+    'lrcorner' => '&#x231F;',
780
+    'lrhar' => '&#x21CB;',
781
+    'lrhard' => '&#xE22F;',
782
+    'lrtri' => '&#xE2E3;',
783
+    'Lscr' => '&#xE4D0;',
784
+    'lscr' => '&#xE4EA;',
785
+    'Lsh' => '&#x21B0;',
786
+    'lsh' => '&#x21B0;',
787
+    'lsim' => '&#x2272;',
788
+    'lsime' => '&#xE333;',
789
+    'lsimg' => '&#xE335;',
790
+    'lsqb' => '&#x005B;',
791
+    'lsquo' => '&#x2018;',
792
+    'lsquor' => '&#x201A;',
793
+    'Lt' => '&#x226A;',
794
+    'lt' => '&#x003C;',
795
+    'ltcc' => '&#xE355;',
796
+    'ltcir' => '&#xE325;',
797
+    'ltdot' => '&#x22D6;',
798
+    'lthree' => '&#x22CB;',
799
+    'ltimes' => '&#x22C9;',
800
+    'ltlarr' => '&#xE35E;',
801
+    'ltquest' => '&#xE329;',
802
+    'ltri' => '&#x25C3;',
803
+    'ltrie' => '&#x22B4;',
804
+    'ltrif' => '&#x25C2;',
805
+    'ltrPar' => '&#xE295;',
806
+    'lurdshar' => '&#xE229;',
807
+    'luruhar' => '&#xE22B;',
808
+    'lvertneqq' => '&#xE2A4;',
809
+    'lvnE' => '&#xE2A4;',
810
+    'macr' => '&#x0304;',
811
+    'male' => '&#x2642;',
812
+    'malt' => '&#x2720;',
813
+    'maltese' => '&#x2720;',
814
+    'Map' => '&#xE212;',
815
+    'map' => '&#x21A6;',
816
+    'mapsto' => '&#x21A6;',
817
+    'marker' => '&#xE502;',
818
+    'mcomma' => '&#xE31A;',
819
+    'mdash' => '&#x2014;',
820
+    'mDDot' => '&#x223A;',
821
+    'measuredangle' => '&#x2221;',
822
+    'Mfr' => '&#xE488;',
823
+    'mfr' => '&#xE4A1;',
824
+    'mho' => '&#x2127;',
825
+    'micro' => '&#x00B5;',
826
+    'mid' => '&#x2223;',
827
+    'midast' => '&#x2217;',
828
+    'midcir' => '&#xE20F;',
829
+    'middot' => '&#x00B7;',
830
+    'minus' => '&#x2212;',
831
+    'minusb' => '&#x229F;',
832
+    'minusd' => '&#x2238;',
833
+    'minusdu' => '&#xE25B;',
834
+    'MinusPlus' => '&#x2213;',
835
+    'mlcp' => '&#xE30A;',
836
+    'mldr' => '&#xE503;',
837
+    'mnplus' => '&#x2213;',
838
+    'models' => '&#x22A7;',
839
+    'Mopf' => '&#xE4BA;',
840
+    'mp' => '&#x2213;',
841
+    'Mscr' => '&#xE4D1;',
842
+    'mscr' => '&#xE4EB;',
843
+    'mstpos' => '&#x223E;',
844
+    'mu' => '&#x03BC;',
845
+    'multimap' => '&#x22B8;',
846
+    'mumap' => '&#x22B8;',
847
+    'nabla' => '&#x2207;',
848
+    'nang' => '&#xE2D8;',
849
+    'nap' => '&#x2249;',
850
+    'napE' => '&#xE2C7;',
851
+    'napid' => '&#xE2BC;',
852
+    'napprox' => '&#x2249;',
853
+    'natur' => '&#x266E;',
854
+    'natural' => '&#x266E;',
855
+    'nbsp' => '&#x00A0;',
856
+    'ncap' => '&#xE284;',
857
+    'ncong' => '&#x2247;',
858
+    'ncongdot' => '&#xE2C5;',
859
+    'ncup' => '&#xE283;',
860
+    'ndash' => '&#x2013;',
861
+    'ne' => '&#x2260;',
862
+    'nearhk' => '&#xE20D;',
863
+    'neArr' => '&#x21D7;',
864
+    'nearr' => '&#x2197;',
865
+    'nearrow' => '&#x2197;',
866
+    'nedot' => '&#xE38A;',
867
+    'nequiv' => '&#x2262;',
868
+    'nesear' => '&#xE20E;',
869
+    'NestedGreaterGreater' => '&#x226B;',
870
+    'NestedLessLess' => '&#x226A;',
871
+    'nexist' => '&#x2204;',
872
+    'nexists' => '&#x2204;',
873
+    'Nfr' => '&#xE489;',
874
+    'nfr' => '&#xE4A2;',
875
+    'ngE' => '&#x2271;',
876
+    'nge' => '&#xE2A6;',
877
+    'ngeq' => '&#xE2A6;',
878
+    'ngeqq' => '&#x2271;',
879
+    'ngeqslant' => '&#x2271;',
880
+    'nges' => '&#x2271;',
881
+    'nGg' => '&#xE2CE;',
882
+    'ngsim' => '&#x2275;',
883
+    'nGt' => '&#xE2CA;',
884
+    'ngt' => '&#x226F;',
885
+    'ngtr' => '&#x226F;',
886
+    'nGtv' => '&#xE2CC;',
887
+    'nhArr' => '&#x21CE;',
888
+    'nharr' => '&#x21AE;',
889
+    'nhpar' => '&#xE38D;',
890
+    'ni' => '&#x220D;',
891
+    'nis' => '&#xE3A5;',
892
+    'nisd' => '&#xE3A1;',
893
+    'niv' => '&#x220B;',
894
+    'nlArr' => '&#x21CD;',
895
+    'nlarr' => '&#x219A;',
896
+    'nldr' => '&#x2025;',
897
+    'nlE' => '&#x2270;',
898
+    'nle' => '&#xE2A7;',
899
+    'nLeftarrow' => '&#x21CD;',
900
+    'nleftarrow' => '&#x219A;',
901
+    'nLeftrightarrow' => '&#x21CE;',
902
+    'nleftrightarrow' => '&#x21AE;',
903
+    'nleq' => '&#xE2A7;',
904
+    'nleqq' => '&#x2270;',
905
+    'nleqslant' => '&#x2270;',
906
+    'nles' => '&#x2270;',
907
+    'nless' => '&#x226E;',
908
+    'nLl' => '&#xE2CD;',
909
+    'nlsim' => '&#x2274;',
910
+    'nLt' => '&#xE2C9;',
911
+    'nlt' => '&#x226E;',
912
+    'nltri' => '&#x22EA;',
913
+    'nltrie' => '&#x22EC;',
914
+    'nLtv' => '&#xE2CB;',
915
+    'nmid' => '&#x2224;',
916
+    'Nopf' => '&#x2115;',
917
+    'Not' => '&#xE3AC;',
918
+    'not' => '&#x00AC;',
919
+    'NotCongruent' => '&#x2262;',
920
+    'NotDoubleVerticalBar' => '&#x2226;',
921
+    'NotElement' => '&#x2209;',
922
+    'NotEqual' => '&#x2260;',
923
+    'NotExists' => '&#x2204;',
924
+    'NotGreater' => '&#x226F;',
925
+    'NotGreaterEqual' => '&#xE2A6;',
926
+    'NotGreaterFullEqual' => '&#x2270;',
927
+    'NotGreaterGreater' => '&#xE2CC;',
928
+    'NotGreaterLess' => '&#x2279;',
929
+    'NotGreaterSlantEqual' => '&#x2271;',
930
+    'NotGreaterTilde' => '&#x2275;',
931
+    'notin' => '&#x2209;',
932
+    'notindot' => '&#xE39D;',
933
+    'notinE' => '&#xE50D;',
934
+    'notinva' => '&#xE370;',
935
+    'notinvb' => '&#xE37B;',
936
+    'notinvc' => '&#xE37C;',
937
+    'NotLeftTriangle' => '&#x22EA;',
938
+    'NotLeftTriangleEqual' => '&#x22EC;',
939
+    'NotLess' => '&#x226E;',
940
+    'NotLessEqual' => '&#xE2A7;',
941
+    'NotLessFullEqual' => '&#x2270;',
942
+    'NotLessGreater' => '&#x2278;',
943
+    'NotLessLess' => '&#xE2CB;',
944
+    'NotLessSlantEqual' => '&#x2270;',
945
+    'NotLessTilde' => '&#x2274;',
946
+    'notni' => '&#x220C;',
947
+    'notniva' => '&#x220C;',
948
+    'notnivb' => '&#xE37D;',
949
+    'notnivc' => '&#xE37E;',
950
+    'NotPrecedes' => '&#x2280;',
951
+    'NotPrecedesEqual' => '&#xE412;',
952
+    'NotPrecedesSlantEqual' => '&#x22E0;',
953
+    'NotReverseElement' => '&#x220C;',
954
+    'NotRightTriangle' => '&#x22EB;',
955
+    'NotRightTriangleEqual' => '&#x22ED;',
956
+    'NotSquareSubsetEqual' => '&#x22E2;',
957
+    'NotSquareSupersetEqual' => '&#x22E3;',
958
+    'NotSubset' => '&#x2284;',
959
+    'NotSucceeds' => '&#x2281;',
960
+    'NotSucceedsEqual' => '&#xE413;',
961
+    'NotSucceedsSlantEqual' => '&#x22E1;',
962
+    'NotSuperset' => '&#x2285;',
963
+    'NotTilde' => '&#x2241;',
964
+    'NotTildeEqual' => '&#x2244;',
965
+    'NotTildeFullEqual' => '&#x2247;',
966
+    'NotTildeTilde' => '&#x2249;',
967
+    'NotVerticalBar' => '&#x2224;',
968
+    'npar' => '&#x2226;',
969
+    'nparallel' => '&#x2226;',
970
+    'nparsl' => '&#xE389;',
971
+    'npart' => '&#xE390;',
972
+    'npolint' => '&#xE399;',
973
+    'npr' => '&#x2280;',
974
+    'nprcue' => '&#x22E0;',
975
+    'npre' => '&#xE412;',
976
+    'nprec' => '&#x2280;',
977
+    'npreceq' => '&#xE412;',
978
+    'nrArr' => '&#x21CF;',
979
+    'nrarr' => '&#x219B;',
980
+    'nrarrc' => '&#xE21D;',
981
+    'nrarrw' => '&#xE21B;',
982
+    'nRightarrow' => '&#x21CF;',
983
+    'nrightarrow' => '&#x219B;',
984
+    'nrtri' => '&#x22EB;',
985
+    'nrtrie' => '&#x22ED;',
986
+    'nsc' => '&#x2281;',
987
+    'nsccue' => '&#x22E1;',
988
+    'nsce' => '&#xE413;',
989
+    'Nscr' => '&#xE4D2;',
990
+    'nscr' => '&#xE4EC;',
991
+    'nshortmid' => '&#xE2AA;',
992
+    'nshortparallel' => '&#xE2AB;',
993
+    'nsim' => '&#x2241;',
994
+    'nsime' => '&#x2244;',
995
+    'nsimeq' => '&#x2244;',
996
+    'nsmid' => '&#xE2AA;',
997
+    'nspar' => '&#xE2AB;',
998
+    'nsqsube' => '&#x22E2;',
999
+    'nsqsupe' => '&#x22E3;',
1000
+    'nsub' => '&#x2284;',
1001
+    'nsubE' => '&#x2288;',
1002
+    'nsube' => '&#x2288;',
1003
+    'nsubset' => '&#x2284;',
1004
+    'nsubseteq' => '&#x2288;',
1005
+    'nsubseteqq' => '&#x2288;',
1006
+    'nsucc' => '&#x2281;',
1007
+    'nsucceq' => '&#xE413;',
1008
+    'nsup' => '&#x2285;',
1009
+    'nsupE' => '&#x2289;',
1010
+    'nsupe' => '&#x2289;',
1011
+    'nsupset' => '&#x2285;',
1012
+    'nsupseteq' => '&#x2289;',
1013
+    'nsupseteqq' => '&#x2289;',
1014
+    'ntgl' => '&#x2279;',
1015
+    'ntlg' => '&#x2278;',
1016
+    'ntriangleleft' => '&#x22EA;',
1017
+    'ntrianglelefteq' => '&#x22EC;',
1018
+    'ntriangleright' => '&#x22EB;',
1019
+    'ntrianglerighteq' => '&#x22ED;',
1020
+    'ntvgl' => '&#x2279;',
1021
+    'ntvlg' => '&#x2278;',
1022
+    'nu' => '&#x03BD;',
1023
+    'num' => '&#x0023;',
1024
+    'numsp' => '&#x2007;',
1025
+    'nvap' => '&#xE2C6;',
1026
+    'nVDash' => '&#x22AF;',
1027
+    'nVdash' => '&#x22AE;',
1028
+    'nvDash' => '&#x22AD;',
1029
+    'nvdash' => '&#x22AC;',
1030
+    'nvge' => '&#x2271;',
1031
+    'nvgt' => '&#x226F;',
1032
+    'nvhArr*' => '&#x21CE;',
1033
+    'nvinfin' => '&#xE38E;',
1034
+    'nvlArr' => '&#x21CD;',
1035
+    'nvle' => '&#x2270;',
1036
+    'nvlt' => '&#x226E;',
1037
+    'nvltrie' => '&#xE2D0;',
1038
+    'nvrArr' => '&#x21CF;',
1039
+    'nvrtrie' => '&#xE2CF;',
1040
+    'nvsim' => '&#xE415;',
1041
+    'nwarhk' => '&#xE20C;',
1042
+    'nwArr' => '&#x21D6;',
1043
+    'nwarr' => '&#x2196;',
1044
+    'nwarrow' => '&#x2196;',
1045
+    'nwnear' => '&#xE211;',
1046
+    'oast' => '&#x229B;',
1047
+    'ocir' => '&#x229A;',
1048
+    'odash' => '&#x229D;',
1049
+    'odiv' => '&#xE285;',
1050
+    'odot' => '&#x2299;',
1051
+    'odsold' => '&#xE286;',
1052
+    'ofcir' => '&#xE287;',
1053
+    'Ofr' => '&#xE48A;',
1054
+    'ofr' => '&#xE4A3;',
1055
+    'ogon' => '&#x0328;',
1056
+    'ogt' => '&#xE289;',
1057
+    'ohbar' => '&#xE260;',
1058
+    'ohm' => '&#x2126;',
1059
+    'oint' => '&#x222E;',
1060
+    'olarr' => '&#x21BA;',
1061
+    'olcir' => '&#xE409;',
1062
+    'olcross' => '&#xE3A8;',
1063
+    'olt' => '&#xE288;',
1064
+    'Omega' => '&#x03A9;',
1065
+    'omega' => '&#x03C9;',
1066
+    'omicron' => '&#x03BE;',
1067
+    'omid' => '&#xE40A;',
1068
+    'ominus' => '&#x2296;',
1069
+    'Oopf' => '&#xE4BC;',
1070
+    'opar' => '&#xE28A;',
1071
+    'OpenCurlyDoubleQuote' => '&#x201C;',
1072
+    'OpenCurlyQuote' => '&#x2018;',
1073
+    'operp' => '&#xE28B;',
1074
+    'oplus' => '&#x2295;',
1075
+    'Or' => '&#xE375;',
1076
+    'or' => '&#x2228;',
1077
+    'orarr' => '&#x21BB;',
1078
+    'ord' => '&#xE393;',
1079
+    'order' => '&#x2134;',
1080
+    'ordf' => '&#x00AA;',
1081
+    'ordm' => '&#x00BA;',
1082
+    'origof' => '&#x22B6;',
1083
+    'oror' => '&#xE50E;',
1084
+    'orslope' => '&#xE3AE;',
1085
+    'orv' => '&#xE392;',
1086
+    'oS' => '&#xE41D;',
1087
+    'Oscr' => '&#xE4D3;',
1088
+    'oscr' => '&#xE4ED;',
1089
+    'oslash' => '&#x2298;',
1090
+    'osol' => '&#x2298;',
1091
+    'Otimes' => '&#xE28C;',
1092
+    'otimes' => '&#x2297;',
1093
+    'otimesas' => '&#xE28D;',
1094
+    'ovbar' => '&#xE40B;',
1095
+    'OverLine' => '&#x0305;',
1096
+    'par' => '&#x2225;',
1097
+    'para' => '&#x00B6;',
1098
+    'parallel' => '&#x2225;',
1099
+    'parsim' => '&#xE2C8;',
1100
+    'parsl' => '&#xE382;',
1101
+    'part' => '&#x2202;',
1102
+    'PartialD' => '&#x2202;',
1103
+    'percnt' => '&#x0025;',
1104
+    'period' => '&#x002E;',
1105
+    'permil' => '&#x2030;',
1106
+    'perp' => '&#x22A5;',
1107
+    'pertenk' => '&#x2031;',
1108
+    'Pfr' => '&#xE48B;',
1109
+    'pfr' => '&#xE4A4;',
1110
+    'Phi' => '&#x03A6;',
1111
+    'phi' => '&#x03C6;',
1112
+    'phiv' => '&#x03D5;',
1113
+    'phmmat' => '&#x2133;',
1114
+    'phone' => '&#x260E;',
1115
+    'Pi' => '&#x03A0;',
1116
+    'pi' => '&#x03C0;',
1117
+    'pitchfork' => '&#x22D4;',
1118
+    'piv' => '&#x03D6;',
1119
+    'plank' => '&#xE2D5;',
1120
+    'plankv' => '&#x210F;',
1121
+    'plus' => '&#x002B;',
1122
+    'plusacir' => '&#xE26A;',
1123
+    'plusb' => '&#x229E;',
1124
+    'pluscir' => '&#xE266;',
1125
+    'plusdo' => '&#x2214;',
1126
+    'plusdu' => '&#xE25A;',
1127
+    'pluse' => '&#xE267;',
1128
+    'PlusMinus' => '&#x00B1;',
1129
+    'plusmn' => '&#x00B1;',
1130
+    'plussim' => '&#xE26C;',
1131
+    'plustwo' => '&#xE269;',
1132
+    'pm' => '&#x00B1;',
1133
+    'pointint' => '&#xE376;',
1134
+    'Popf' => '&#x2119;',
1135
+    'pound' => '&#x00A3;',
1136
+    'Pr' => '&#xE35C;',
1137
+    'pr' => '&#x227A;',
1138
+    'prap' => '&#x227E;',
1139
+    'prcue' => '&#x227C;',
1140
+    'prE' => '&#x227C;',
1141
+    'pre' => '&#x227C;',
1142
+    'prec' => '&#x227A;',
1143
+    'precapprox' => '&#x227E;',
1144
+    'preccurlyeq' => '&#x227C;',
1145
+    'Precedes' => '&#x227A;',
1146
+    'PrecedesEqual' => '&#x227C;',
1147
+    'PrecedesSlantEqual' => '&#x227C;',
1148
+    'PrecedesTilde' => '&#x227E;',
1149
+    'preceq' => '&#x227C;',
1150
+    'precnapprox' => '&#x22E8;',
1151
+    'precneqq' => '&#xE2B3;',
1152
+    'precnsim' => '&#x22E8;',
1153
+    'precsim' => '&#x227E;',
1154
+    'Prime' => '&#x2033;',
1155
+    'prime' => '&#x2032;',
1156
+    'prnap' => '&#x22E8;',
1157
+    'prnE' => '&#xE2B3;',
1158
+    'prnsim' => '&#x22E8;',
1159
+    'profalar' => '&#x232E;',
1160
+    'profline' => '&#x2312;',
1161
+    'profsurf' => '&#x2313;',
1162
+    'prop' => '&#x221D;',
1163
+    'Proportion' => '&#x2237;',
1164
+    'Proportional' => '&#x221D;',
1165
+    'propto' => '&#x221D;',
1166
+    'prsim' => '&#x227E;',
1167
+    'prurel' => '&#x22B0;',
1168
+    'Pscr' => '&#xE4D4;',
1169
+    'pscr' => '&#xE4EE;',
1170
+    'Psi' => '&#x03A8;',
1171
+    'psi' => '&#x03C8;',
1172
+    'puncsp' => '&#x2008;',
1173
+    'Qfr' => '&#xE48C;',
1174
+    'qfr' => '&#xE4A5;',
1175
+    'qint' => '&#xE378;',
1176
+    'Qopf' => '&#x211A;',
1177
+    'qprime' => '&#xE371;',
1178
+    'Qscr' => '&#xE4D5;',
1179
+    'qscr' => '&#xE4EF;',
1180
+    'quatint' => '&#xE377;',
1181
+    'quest' => '&#x003F;',
1182
+    'questeq' => '&#x225F;',
1183
+    'quot' => '&#x0022;',
1184
+    'rAarr' => '&#x21DB;',
1185
+    'race' => '&#xE40C;',
1186
+    'radic' => '&#x221A;',
1187
+    'raemptyv' => '&#xE2E9;',
1188
+    'Rang' => '&#x300B;',
1189
+    'rang' => '&#x3009;',
1190
+    'rangd' => '&#xE298;',
1191
+    'range' => '&#xE2D7;',
1192
+    'rangle' => '&#x3009;',
1193
+    'raquo' => '&#x00BB;',
1194
+    'Rarr' => '&#x21A0;',
1195
+    'rArr' => '&#x21D2;',
1196
+    'rarr' => '&#x2192;',
1197
+    'rarrap' => '&#xE235;',
1198
+    'rarrbfs' => '&#xE221;',
1199
+    'rarrc' => '&#xE21C;',
1200
+    'rarrfs' => '&#xE223;',
1201
+    'rarrhk' => '&#x21AA;',
1202
+    'rarrlp' => '&#x21AC;',
1203
+    'rarrpl' => '&#xE21E;',
1204
+    'rarrsim' => '&#xE24D;',
1205
+    'Rarrtl' => '&#xE239;',
1206
+    'rarrtl' => '&#x21A3;',
1207
+    'rarrw' => '&#x219D;',
1208
+    'rAtail' => '&#xE23B;',
1209
+    'ratail' => '&#x21A3;',
1210
+    'ratio' => '&#x2236;',
1211
+    'RBarr' => '&#xE209;',
1212
+    'rBarr' => '&#xE207;',
1213
+    'rbarr' => '&#xE405;',
1214
+    'rbbrk' => '&#x3015;',
1215
+    'rbrace' => '&#x007D;',
1216
+    'rbrack' => '&#x005D;',
1217
+    'rbrke' => '&#xE29A;',
1218
+    'rbrksld' => '&#xE29C;',
1219
+    'rbrkslu' => '&#xE29E;',
1220
+    'rceil' => '&#x2309;',
1221
+    'rcub' => '&#x007D;',
1222
+    'rdca' => '&#xE219;',
1223
+    'rdldhar' => '&#xE22D;',
1224
+    'rdquo' => '&#x201D;',
1225
+    'rdquor' => '&#x201B;',
1226
+    'rdsh' => '&#x21B3;',
1227
+    'Re' => '&#x211C;',
1228
+    'real' => '&#x211C;',
1229
+    'rect' => '&#xE504;',
1230
+    'reg' => '&#x00AF;',
1231
+    'ReverseElement' => '&#x220B;',
1232
+    'ReverseEquilibrium' => '&#x21CB;',
1233
+    'ReverseUpEquilibrium' => '&#xE217;',
1234
+    'rfisht' => '&#xE215;',
1235
+    'rfloor' => '&#x230B;',
1236
+    'Rfr' => '&#xE48D;',
1237
+    'rfr' => '&#xE4A6;',
1238
+    'rHar' => '&#xE224;',
1239
+    'rhard' => '&#x21C1;',
1240
+    'rharu' => '&#x21C0;',
1241
+    'rharul' => '&#xE230;',
1242
+    'rho' => '&#x03C1;',
1243
+    'rhov' => '&#x03F1;',
1244
+    'RightAngleBracket' => '&#x3009;',
1245
+    'RightArrow' => '&#x2192;',
1246
+    'Rightarrow' => '&#x21D2;',
1247
+    'rightarrow' => '&#x2192;',
1248
+    'RightArrowLeftArrow' => '&#x21C4;',
1249
+    'rightarrowtail' => '&#x21A3;',
1250
+    'RightCeiling' => '&#x2309;',
1251
+    'RightDownVector' => '&#x21C2;',
1252
+    'RightFloor' => '&#x230B;',
1253
+    'rightharpoondown' => '&#x21C1;',
1254
+    'rightharpoonup' => '&#x21C0;',
1255
+    'rightleftarrows' => '&#x21C4;',
1256
+    'rightleftharpoons' => '&#x21CC;',
1257
+    'rightrightarrows' => '&#x21C9;',
1258
+    'rightsquigarrow' => '&#x219D;',
1259
+    'RightTee' => '&#x22A2;',
1260
+    'RightTeeArrow' => '&#x21A6;',
1261
+    'rightthreetimes' => '&#x22CC;',
1262
+    'RightTriangle' => '&#x22B3;',
1263
+    'RightTriangleEqual' => '&#x22B5;',
1264
+    'RightUpVector' => '&#x21BE;',
1265
+    'RightVector' => '&#x21C0;',
1266
+    'ring' => '&#x030A;',
1267
+    'risingdotseq' => '&#x2253;',
1268
+    'rlarr' => '&#x21C4;',
1269
+    'rlhar' => '&#x21CC;',
1270
+    'rmoust' => '&#xE293;',
1271
+    'rmoustache' => '&#xE293;',
1272
+    'rnmid' => '&#xE2D1;',
1273
+    'roang' => '&#x3019;',
1274
+    'roarr' => '&#xE241;',
1275
+    'robrk' => '&#x301B;',
1276
+    'ropar' => '&#xE37A;',
1277
+    'Ropf' => '&#x211D;',
1278
+    'roplus' => '&#xE25D;',
1279
+    'rotimes' => '&#xE40D;',
1280
+    'rpar' => '&#x0029;',
1281
+    'rpargt' => '&#xE291;',
1282
+    'rppolint' => '&#xE397;',
1283
+    'rrarr' => '&#x21C9;',
1284
+    'Rrightarrow' => '&#x21DB;',
1285
+    'Rscr' => '&#xE4D6;',
1286
+    'rscr' => '&#x211B;',
1287
+    'Rsh' => '&#x21B1;',
1288
+    'rsh' => '&#x21B1;',
1289
+    'rsqb' => '&#x005D;',
1290
+    'rsquo' => '&#x2019;',
1291
+    'rsquor' => '&#x201F;',
1292
+    'rthree' => '&#x22CC;',
1293
+    'rtimes' => '&#x22CA;',
1294
+    'rtri' => '&#x25B9;',
1295
+    'rtrie' => '&#x22B5;',
1296
+    'rtrif' => '&#x25B8;',
1297
+    'rtriltri' => '&#xE359;',
1298
+    'ruluhar' => '&#xE22A;',
1299
+    'rx' => '&#x211E;',
1300
+    'Sc' => '&#xE35D;',
1301
+    'sc' => '&#x227B;',
1302
+    'scap' => '&#x227F;',
1303
+    'sccue' => '&#x227D;',
1304
+    'scE' => '&#x227E;',
1305
+    'sce' => '&#x227D;',
1306
+    'scnap' => '&#x22E9;',
1307
+    'scnE' => '&#xE2B5;',
1308
+    'scnsim' => '&#x22E9;',
1309
+    'scpolint' => '&#xE398;',
1310
+    'scsim' => '&#x227F;',
1311
+    'sdot' => '&#x22C5;',
1312
+    'sdotb' => '&#x22A1;',
1313
+    'sdote' => '&#xE319;',
1314
+    'searhk' => '&#xE20B;',
1315
+    'seArr' => '&#x21D8;',
1316
+    'searr' => '&#x2198;',
1317
+    'searrow' => '&#x2198;',
1318
+    'sect' => '&#x00A7;',
1319
+    'semi' => '&#x003B;',
1320
+    'seswar' => '&#xE406;',
1321
+    'setminus' => '&#x2216;',
1322
+    'setmn' => '&#x2216;',
1323
+    'sext' => '&#xE505;',
1324
+    'Sfr' => '&#xE48E;',
1325
+    'sfr' => '&#xE4A7;',
1326
+    'sfrown' => '&#xE426;',
1327
+    'sharp' => '&#x266F;',
1328
+    'ShortLeftArrow' => '&#xE233;',
1329
+    'shortmid' => '&#xE301;',
1330
+    'shortparallel' => '&#xE302;',
1331
+    'ShortRightArrow' => '&#xE232;',
1332
+    'shy' => '&#x00AD;',
1333
+    'Sigma' => '&#x03A3;',
1334
+    'sigma' => '&#x03C3;',
1335
+    'sigmav' => '&#x03C2;',
1336
+    'sim' => '&#x223C;',
1337
+    'simdot' => '&#xE38B;',
1338
+    'sime' => '&#x2243;',
1339
+    'simeq' => '&#x2243;',
1340
+    'simg' => '&#xE30C;',
1341
+    'simgE' => '&#xE338;',
1342
+    'siml' => '&#xE30B;',
1343
+    'simlE' => '&#xE337;',
1344
+    'simne' => '&#x2246;',
1345
+    'simplus' => '&#xE26B;',
1346
+    'simrarr' => '&#xE234;',
1347
+    'slarr' => '&#xE233;',
1348
+    'SmallCircle' => '&#x2218;',
1349
+    'smallfrown' => '&#xE426;',
1350
+    'smallsetminus' => '&#xE844;',
1351
+    'smallsmile' => '&#xE303;',
1352
+    'smashp' => '&#xE264;',
1353
+    'smeparsl' => '&#xE385;',
1354
+    'smid' => '&#xE301;',
1355
+    'smile' => '&#x2323;',
1356
+    'smt' => '&#xE339;',
1357
+    'smte' => '&#xE33B;',
1358
+    'smtes' => '&#xE33D;',
1359
+    'sol' => '&#x002F;',
1360
+    'solb' => '&#xE27F;',
1361
+    'solbar' => '&#xE416;',
1362
+    'Sopf' => '&#xE4BD;',
1363
+    'spades' => '&#x2660;',
1364
+    'spadesuit' => '&#x2660;',
1365
+    'spar' => '&#xE302;',
1366
+    'sqcap' => '&#x2293;',
1367
+    'sqcaps' => '&#xE277;',
1368
+    'sqcup' => '&#x2294;',
1369
+    'sqcups' => '&#xE276;',
1370
+    'Sqrt' => '&#x221A;',
1371
+    'sqsub' => '&#x228F;',
1372
+    'sqsube' => '&#x2291;',
1373
+    'sqsubset' => '&#x228F;',
1374
+    'sqsubseteq' => '&#x2291;',
1375
+    'sqsup' => '&#x2290;',
1376
+    'sqsupe' => '&#x2292;',
1377
+    'sqsupset' => '&#x2290;',
1378
+    'sqsupseteq' => '&#x2292;',
1379
+    'squ' => '&#x25A1;',
1380
+    'square' => '&#x25A1;',
1381
+    'SquareIntersection' => '&#x2293;',
1382
+    'SquareSubset' => '&#x228F;',
1383
+    'SquareSubsetEqual' => '&#x2291;',
1384
+    'SquareSuperset' => '&#x2290;',
1385
+    'SquareSupersetEqual' => '&#x2292;',
1386
+    'SquareUnion' => '&#x2294;',
1387
+    'squarf' => '&#x25A0;',
1388
+    'squarfb' => '&#xE507;',
1389
+    'squarfbl' => '&#xE506;',
1390
+    'squarfbr' => '&#x25EA;',
1391
+    'squarfl' => '&#x25E7;',
1392
+    'squarfr' => '&#x25E8;',
1393
+    'squarft' => '&#xE509;',
1394
+    'squarftl' => '&#x25E9;',
1395
+    'squarftr' => '&#xE508;',
1396
+    'squf' => '&#x25AA;',
1397
+    'srarr' => '&#xE232;',
1398
+    'Sscr' => '&#xE4D7;',
1399
+    'sscr' => '&#xE4F0;',
1400
+    'ssetmn' => '&#xE844;',
1401
+    'ssmile' => '&#xE303;',
1402
+    'sstarf' => '&#x22C6;',
1403
+    'Star' => '&#x22C6;',
1404
+    'star' => '&#x22C6;',
1405
+    'starf' => '&#x2605;',
1406
+    'straightepsilon' => '&#x220A;',
1407
+    'straightphi' => '&#x03C6;',
1408
+    'strns' => '&#xE380;',
1409
+    'Sub' => '&#x22D0;',
1410
+    'sub' => '&#x2282;',
1411
+    'subdot' => '&#xE262;',
1412
+    'subE' => '&#x2286;',
1413
+    'sube' => '&#x2286;',
1414
+    'subedot' => '&#xE34F;',
1415
+    'submult' => '&#xE343;',
1416
+    'subnE' => '&#x228A;',
1417
+    'subne' => '&#x228A;',
1418
+    'subplus' => '&#xE341;',
1419
+    'subrarr' => '&#xE33F;',
1420
+    'Subset' => '&#x22D0;',
1421
+    'subset' => '&#x2282;',
1422
+    'subseteq' => '&#x2286;',
1423
+    'subseteqq' => '&#x2286;',
1424
+    'SubsetEqual' => '&#x2286;',
1425
+    'subsetneq' => '&#x228A;',
1426
+    'subsetneqq' => '&#x228A;',
1427
+    'subsim' => '&#xE345;',
1428
+    'subsub' => '&#xE349;',
1429
+    'subsup' => '&#xE347;',
1430
+    'succ' => '&#x227B;',
1431
+    'succapprox' => '&#x227F;',
1432
+    'succcurlyeq' => '&#x227D;',
1433
+    'Succeeds' => '&#x227B;',
1434
+    'SucceedsEqual' => '&#x227D;',
1435
+    'SucceedsSlantEqual' => '&#x227D;',
1436
+    'SucceedsTilde' => '&#x227F;',
1437
+    'succeq' => '&#x227D;',
1438
+    'succnapprox' => '&#x22E9;',
1439
+    'succneqq' => '&#xE2B5;',
1440
+    'succnsim' => '&#x22E9;',
1441
+    'succsim' => '&#x227F;',
1442
+    'SuchThat' => '&#x220D;',
1443
+    'Sum' => '&#x2211;',
1444
+    'sum' => '&#x2211;',
1445
+    'sung' => '&#x2669;',
1446
+    'Sup' => '&#x22D1;',
1447
+    'sup' => '&#x2283;',
1448
+    'sup1' => '&#x00B9;',
1449
+    'sup2' => '&#x00B2;',
1450
+    'sup3' => '&#x00B3;',
1451
+    'supdot' => '&#xE263;',
1452
+    'supdsub' => '&#xE34C;',
1453
+    'supE' => '&#x2287;',
1454
+    'supe' => '&#x2287;',
1455
+    'supedot' => '&#xE350;',
1456
+    'Superset' => '&#x2283;',
1457
+    'SupersetEqual' => '&#x2287;',
1458
+    'suphsol' => '&#xE34E;',
1459
+    'suphsub' => '&#xE34B;',
1460
+    'suplarr' => '&#xE340;',
1461
+    'supmult' => '&#xE344;',
1462
+    'supnE' => '&#x228B;',
1463
+    'supne' => '&#x228B;',
1464
+    'supplus' => '&#xE342;',
1465
+    'Supset' => '&#x22D1;',
1466
+    'supset' => '&#x2283;',
1467
+    'supseteq' => '&#x2287;',
1468
+    'supseteqq' => '&#x2287;',
1469
+    'supsetneq' => '&#x228B;',
1470
+    'supsetneqq' => '&#x228B;',
1471
+    'supsim' => '&#xE346;',
1472
+    'supsub' => '&#xE348;',
1473
+    'supsup' => '&#xE34A;',
1474
+    'swarhk' => '&#xE20A;',
1475
+    'swArr' => '&#x21D9;',
1476
+    'swarr' => '&#x2199;',
1477
+    'swarrow' => '&#x2199;',
1478
+    'swnwar' => '&#xE210;',
1479
+    'target' => '&#x2316;',
1480
+    'tau' => '&#x03C4;',
1481
+    'tbrk' => '&#xE2EF;',
1482
+    'tdot' => '&#x20DB;',
1483
+    'telrec' => '&#x2315;',
1484
+    'Tfr' => '&#xE48F;',
1485
+    'tfr' => '&#xE4A8;',
1486
+    'there4' => '&#x2234;',
1487
+    'Therefore' => '&#x2234;',
1488
+    'therefore' => '&#x2234;',
1489
+    'Theta' => '&#x0398;',
1490
+    'theta' => '&#x03B8;',
1491
+    'thetav' => '&#x03D1;',
1492
+    'thickapprox' => '&#xE306;',
1493
+    'thicksim' => '&#xE429;',
1494
+    'thinsp' => '&#x2009;',
1495
+    'thkap' => '&#xE306;',
1496
+    'thksim' => '&#xE429;',
1497
+    'Tilde' => '&#x223C;',
1498
+    'tilde' => '&#x0303;',
1499
+    'TildeEqual' => '&#x2243;',
1500
+    'TildeFullEqual' => '&#x2245;',
1501
+    'TildeTilde' => '&#x2248;',
1502
+    'times' => '&#x00D7;',
1503
+    'timesb' => '&#x22A0;',
1504
+    'timesbar' => '&#xE28E;',
1505
+    'timesd' => '&#xE26D;',
1506
+    'tint' => '&#x222D;',
1507
+    'toea' => '&#xE20E;',
1508
+    'top' => '&#x22A4;',
1509
+    'topbot' => '&#x2336;',
1510
+    'topcir' => '&#xE383;',
1511
+    'Topf' => '&#xE4BE;',
1512
+    'topfork' => '&#xE31C;',
1513
+    'tosa' => '&#xE20F;',
1514
+    'tprime' => '&#x2034;',
1515
+    'trade' => '&#x2122;',
1516
+    'triangle' => '&#x25B5;',
1517
+    'triangledown' => '&#x25BF;',
1518
+    'triangleleft' => '&#x25C3;',
1519
+    'trianglelefteq' => '&#x22B4;',
1520
+    'triangleq' => '&#x225C;',
1521
+    'triangleright' => '&#x25B9;',
1522
+    'trianglerighteq' => '&#x22B5;',
1523
+    'tridot' => '&#x25EC;',
1524
+    'trie' => '&#x225C;',
1525
+    'triminus' => '&#xE27C;',
1526
+    'TripleDot' => '&#x20DB;',
1527
+    'triplus' => '&#xE27B;',
1528
+    'trisb' => '&#xE27E;',
1529
+    'tritime' => '&#xE27D;',
1530
+    'trpezium' => '&#xE2EC;',
1531
+    'Tscr' => '&#xE4D8;',
1532
+    'tscr' => '&#xE4F1;',
1533
+    'twixt' => '&#x226C;',
1534
+    'twoheadleftarrow' => '&#x219E;',
1535
+    'twoheadrightarrow' => '&#x21A0;',
1536
+    'Uarr' => '&#x219F;',
1537
+    'uArr' => '&#x21D1;',
1538
+    'uarr' => '&#x2191;',
1539
+    'Uarrocir' => '&#xE237;',
1540
+    'udarr' => '&#x21C5;',
1541
+    'udhar' => '&#xE218;',
1542
+    'ufisht' => '&#xE24B;',
1543
+    'Ufr' => '&#xE490;',
1544
+    'ufr' => '&#xE4A9;',
1545
+    'uHar' => '&#xE226;',
1546
+    'uharl' => '&#x21BF;',
1547
+    'uharr' => '&#x21BE;',
1548
+    'uhblk' => '&#x2580;',
1549
+    'ulcorn' => '&#x231C;',
1550
+    'ulcorner' => '&#x231C;',
1551
+    'ulcrop' => '&#x230F;',
1552
+    'ultri' => '&#xE2E4;',
1553
+    'uml' => '&#x0308;',
1554
+    'UnderLine' => '&#x0332;',
1555
+    'Union' => '&#x22C3;',
1556
+    'UnionPlus' => '&#x228E;',
1557
+    'Uopf' => '&#xE4BF;',
1558
+    'UpArrow' => '&#x2191;',
1559
+    'Uparrow' => '&#x21D1;',
1560
+    'uparrow' => '&#x2191;',
1561
+    'UpArrowDownArrow' => '&#x21C5;',
1562
+    'UpDownArrow' => '&#x2195;',
1563
+    'Updownarrow' => '&#x21D5;',
1564
+    'updownarrow' => '&#x2195;',
1565
+    'UpEquilibrium' => '&#xE218;',
1566
+    'upharpoonleft' => '&#x21BF;',
1567
+    'upharpoonright' => '&#x21BE;',
1568
+    'uplus' => '&#x228E;',
1569
+    'UpperLeftArrow' => '&#x2196;',
1570
+    'UpperRightArrow' => '&#x2197;',
1571
+    'Upsi' => '&#x03D2;',
1572
+    'upsi' => '&#x03C5;',
1573
+    'Upsilon' => '&#x03D2;',
1574
+    'upsilon' => '&#x03C5;',
1575
+    'UpTee' => '&#x22A5;',
1576
+    'upuparrows' => '&#x21C8;',
1577
+    'urcorn' => '&#x231D;',
1578
+    'urcorner' => '&#x231D;',
1579
+    'urcrop' => '&#x230E;',
1580
+    'urtri' => '&#xE2E2;',
1581
+    'Uscr' => '&#xE4D9;',
1582
+    'uscr' => '&#xE4F2;',
1583
+    'utdot' => '&#x22F0;',
1584
+    'utri' => '&#x25B5;',
1585
+    'utrif' => '&#x25B4;',
1586
+    'uuarr' => '&#x21C8;',
1587
+    'uwangle' => '&#xE3AB;',
1588
+    'vangrt' => '&#x22BE;',
1589
+    'varepsilon' => '&#x03B5;',
1590
+    'varkappa' => '&#x03F0;',
1591
+    'varnothing' => '&#x2205;',
1592
+    'varphi' => '&#x03D5;',
1593
+    'varpi' => '&#x03D6;',
1594
+    'varpropto' => '&#x221D;',
1595
+    'vArr' => '&#x21D5;',
1596
+    'varr' => '&#x2195;',
1597
+    'varrho' => '&#x03F1;',
1598
+    'varsigma' => '&#x03C2;',
1599
+    'varsubsetneq' => '&#xE2B9;',
1600
+    'varsubsetneqq' => '&#xE2B8;',
1601
+    'varsupsetneq' => '&#xE2BA;',
1602
+    'varsupsetneqq' => '&#xE2BB;',
1603
+    'vartheta' => '&#x03D1;',
1604
+    'vartriangleleft' => '&#x22B2;',
1605
+    'vartriangleright' => '&#x22B3;',
1606
+    'Vbar' => '&#xE30D;',
1607
+    'vBar' => '&#xE310;',
1608
+    'vBarv' => '&#xE312;',
1609
+    'VDash' => '&#x22AB;',
1610
+    'Vdash' => '&#x22A9;',
1611
+    'vDash' => '&#x22A8;',
1612
+    'vdash' => '&#x22A2;',
1613
+    'Vdashl' => '&#xE313;',
1614
+    'Vee' => '&#x22C1;',
1615
+    'vee' => '&#x2228;',
1616
+    'veebar' => '&#x22BB;',
1617
+    'veeeq' => '&#x225A;',
1618
+    'vellip' => '&#x22EE;',
1619
+    'Verbar' => '&#x2016;',
1620
+    'verbar' => '&#x007C;',
1621
+    'Vert' => '&#x2016;',
1622
+    'vert' => '&#x007C;',
1623
+    'VerticalBar' => '&#x2223;',
1624
+    'VerticalTilde' => '&#x2240;',
1625
+    'Vfr' => '&#xE491;',
1626
+    'vfr' => '&#xE4AA;',
1627
+    'vltri' => '&#x22B2;',
1628
+    'vnsub' => '&#x2284;',
1629
+    'vnsup' => '&#x2285;',
1630
+    'Vopf' => '&#xE4C0;',
1631
+    'vprop' => '&#x221D;',
1632
+    'vrtri' => '&#x22B3;',
1633
+    'Vscr' => '&#xE4DA;',
1634
+    'vscr' => '&#xE4F3;',
1635
+    'vsubnE' => '&#xE2B8;',
1636
+    'vsubne' => '&#xE2B9;',
1637
+    'vsupnE' => '&#xE2BB;',
1638
+    'vsupne' => '&#xE2BA;',
1639
+    'Vvdash' => '&#x22AA;',
1640
+    'vzigzag' => '&#xE2EB;',
1641
+    'wedbar' => '&#xE265;',
1642
+    'Wedge' => '&#x22C0;',
1643
+    'wedge' => '&#x2227;',
1644
+    'wedgeq' => '&#x2259;',
1645
+    'weierp' => '&#x2118;',
1646
+    'Wfr' => '&#xE492;',
1647
+    'wfr' => '&#xE4AB;',
1648
+    'Wopf' => '&#xE4C1;',
1649
+    'wp' => '&#x2118;',
1650
+    'wr' => '&#x2240;',
1651
+    'wreath' => '&#x2240;',
1652
+    'Wscr' => '&#xE4DB;',
1653
+    'wscr' => '&#xE4F4;',
1654
+    'xcap' => '&#x22C2;',
1655
+    'xcirc' => '&#x25CB;',
1656
+    'xcup' => '&#x22C3;',
1657
+    'xdtri' => '&#x25BD;',
1658
+    'Xfr' => '&#xE493;',
1659
+    'xfr' => '&#xE4AC;',
1660
+    'xhArr' => '&#xE202;',
1661
+    'xharr' => '&#xE203;',
1662
+    'Xi' => '&#x039E;',
1663
+    'xi' => '&#x03BE;',
1664
+    'xlArr' => '&#xE200;',
1665
+    'xlarr' => '&#xE201;',
1666
+    'xmap' => '&#xE208;',
1667
+    'xnis' => '&#xE3A3;',
1668
+    'xodot' => '&#x2299;',
1669
+    'Xopf' => '&#xE4C2;',
1670
+    'xoplus' => '&#x2295;',
1671
+    'xotime' => '&#x2297;',
1672
+    'xrArr' => '&#xE204;',
1673
+    'xrarr' => '&#xE205;',
1674
+    'Xscr' => '&#xE4DC;',
1675
+    'xscr' => '&#xE4F5;',
1676
+    'xsqcup' => '&#x2294;',
1677
+    'xuplus' => '&#x228E;',
1678
+    'xutri' => '&#x25B3;',
1679
+    'xvee' => '&#x22C1;',
1680
+    'xwedge' => '&#x22C0;',
1681
+    'yen' => '&#x00A5;',
1682
+    'Yfr' => '&#xE494;',
1683
+    'yfr' => '&#xE4AD;',
1684
+    'Yopf' => '&#xE4C3;',
1685
+    'Yscr' => '&#xE4DD;',
1686
+    'yscr' => '&#xE4F6;',
1687
+    'zeta' => '&#x03B6;',
1688
+    'Zfr' => '&#x2124;',
1689
+    'zfr' => '&#xE4AE;',
1690
+    'zigrarr' => '&#xE244;',
1691
+    'Zopf' => '&#xE4C4;',
1692
+    'Zscr' => '&#xE4DE;',
1693
+    'zscr' => '&#xE4F7;'
1694 1694
 
1695 1695
 ];
Please login to merge, or discard this patch.