-
Notifications
You must be signed in to change notification settings - Fork 93
/
entity.tab
2033 lines (2033 loc) · 28.4 KB
/
entity.tab
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
%%
AElig 0xC6
AMP 0x26
Aacute 0xC1
Abreve 0x102
Acirc 0xC2
Acy 0x410
Afr 0x1D504
Agrave 0xC0
Alpha 0x391
Amacr 0x100
And 0x2A53
Aogon 0x104
Aopf 0x1D538
ApplyFunction 0x2061
Aring 0xC5
Ascr 0x1D49C
Assign 0x2254
Atilde 0xC3
Auml 0xC4
Backslash 0x2216
Barv 0x2AE7
Barwed 0x2306
Bcy 0x411
Because 0x2235
Bernoullis 0x212C
Beta 0x392
Bfr 0x1D505
Bopf 0x1D539
Breve 0x2D8
Bscr 0x212C
Bumpeq 0x224E
CHcy 0x427
COPY 0xA9
Cacute 0x106
Cap 0x22D2
CapitalDifferentialD 0x2145
Cayleys 0x212D
Ccaron 0x10C
Ccedil 0xC7
Ccirc 0x108
Cconint 0x2230
Cdot 0x10A
Cedilla 0xB8
CenterDot 0xB7
Cfr 0x212D
Chi 0x3A7
CircleDot 0x2299
CircleMinus 0x2296
CirclePlus 0x2295
CircleTimes 0x2297
ClockwiseContourIntegral 0x2232
CloseCurlyDoubleQuote 0x201D
CloseCurlyQuote 0x2019
Colon 0x2237
Colone 0x2A74
Congruent 0x2261
Conint 0x222F
ContourIntegral 0x222E
Copf 0x2102
Coproduct 0x2210
CounterClockwiseContourIntegral 0x2233
Cross 0x2A2F
Cscr 0x1D49E
Cup 0x22D3
CupCap 0x224D
DD 0x2145
DDotrahd 0x2911
DJcy 0x402
DScy 0x405
DZcy 0x40F
Dagger 0x2021
Darr 0x21A1
Dashv 0x2AE4
Dcaron 0x10E
Dcy 0x414
Del 0x2207
Delta 0x394
Dfr 0x1D507
DiacriticalAcute 0xB4
DiacriticalDot 0x2D9
DiacriticalDoubleAcute 0x2DD
DiacriticalGrave 0x60
DiacriticalTilde 0x2DC
Diamond 0x22C4
DifferentialD 0x2146
Dopf 0x1D53B
Dot 0xA8
DotDot 0x20DC
DotEqual 0x2250
DoubleContourIntegral 0x222F
DoubleDot 0xA8
DoubleDownArrow 0x21D3
DoubleLeftArrow 0x21D0
DoubleLeftRightArrow 0x21D4
DoubleLeftTee 0x2AE4
DoubleLongLeftArrow 0x27F8
DoubleLongLeftRightArrow 0x27FA
DoubleLongRightArrow 0x27F9
DoubleRightArrow 0x21D2
DoubleRightTee 0x22A8
DoubleUpArrow 0x21D1
DoubleUpDownArrow 0x21D5
DoubleVerticalBar 0x2225
DownArrow 0x2193
DownArrowBar 0x2913
DownArrowUpArrow 0x21F5
DownBreve 0x311
DownLeftRightVector 0x2950
DownLeftTeeVector 0x295E
DownLeftVector 0x21BD
DownLeftVectorBar 0x2956
DownRightTeeVector 0x295F
DownRightVector 0x21C1
DownRightVectorBar 0x2957
DownTee 0x22A4
DownTeeArrow 0x21A7
Downarrow 0x21D3
Dscr 0x1D49F
Dstrok 0x110
ENG 0x14A
ETH 0xD0
Eacute 0xC9
Ecaron 0x11A
Ecirc 0xCA
Ecy 0x42D
Edot 0x116
Efr 0x1D508
Egrave 0xC8
Element 0x2208
Emacr 0x112
EmptySmallSquare 0x25FB
EmptyVerySmallSquare 0x25AB
Eogon 0x118
Eopf 0x1D53C
Epsilon 0x395
Equal 0x2A75
EqualTilde 0x2242
Equilibrium 0x21CC
Escr 0x2130
Esim 0x2A73
Eta 0x397
Euml 0xCB
Exists 0x2203
ExponentialE 0x2147
Fcy 0x424
Ffr 0x1D509
FilledSmallSquare 0x25FC
FilledVerySmallSquare 0x25AA
Fopf 0x1D53D
ForAll 0x2200
Fouriertrf 0x2131
Fscr 0x2131
GJcy 0x403
GT 0x3E
Gamma 0x393
Gammad 0x3DC
Gbreve 0x11E
Gcedil 0x122
Gcirc 0x11C
Gcy 0x413
Gdot 0x120
Gfr 0x1D50A
Gg 0x22D9
Gopf 0x1D53E
GreaterEqual 0x2265
GreaterEqualLess 0x22DB
GreaterFullEqual 0x2267
GreaterGreater 0x2AA2
GreaterLess 0x2277
GreaterSlantEqual 0x2A7E
GreaterTilde 0x2273
Gscr 0x1D4A2
Gt 0x226B
HARDcy 0x42A
Hacek 0x2C7
Hat 0x5E
Hcirc 0x124
Hfr 0x210C
HilbertSpace 0x210B
Hopf 0x210D
HorizontalLine 0x2500
Hscr 0x210B
Hstrok 0x126
HumpDownHump 0x224E
HumpEqual 0x224F
IEcy 0x415
IJlig 0x132
IOcy 0x401
Iacute 0xCD
Icirc 0xCE
Icy 0x418
Idot 0x130
Ifr 0x2111
Igrave 0xCC
Im 0x2111
Imacr 0x12A
ImaginaryI 0x2148
Implies 0x21D2
Int 0x222C
Integral 0x222B
Intersection 0x22C2
InvisibleComma 0x2063
InvisibleTimes 0x2062
Iogon 0x12E
Iopf 0x1D540
Iota 0x399
Iscr 0x2110
Itilde 0x128
Iukcy 0x406
Iuml 0xCF
Jcirc 0x134
Jcy 0x419
Jfr 0x1D50D
Jopf 0x1D541
Jscr 0x1D4A5
Jsercy 0x408
Jukcy 0x404
KHcy 0x425
KJcy 0x40C
Kappa 0x39A
Kcedil 0x136
Kcy 0x41A
Kfr 0x1D50E
Kopf 0x1D542
Kscr 0x1D4A6
LJcy 0x409
LT 0x3C
Lacute 0x139
Lambda 0x39B
Lang 0x27EA
Laplacetrf 0x2112
Larr 0x219E
Lcaron 0x13D
Lcedil 0x13B
Lcy 0x41B
LeftAngleBracket 0x27E8
LeftArrow 0x2190
LeftArrowBar 0x21E4
LeftArrowRightArrow 0x21C6
LeftCeiling 0x2308
LeftDoubleBracket 0x27E6
LeftDownTeeVector 0x2961
LeftDownVector 0x21C3
LeftDownVectorBar 0x2959
LeftFloor 0x230A
LeftRightArrow 0x2194
LeftRightVector 0x294E
LeftTee 0x22A3
LeftTeeArrow 0x21A4
LeftTeeVector 0x295A
LeftTriangle 0x22B2
LeftTriangleBar 0x29CF
LeftTriangleEqual 0x22B4
LeftUpDownVector 0x2951
LeftUpTeeVector 0x2960
LeftUpVector 0x21BF
LeftUpVectorBar 0x2958
LeftVector 0x21BC
LeftVectorBar 0x2952
Leftarrow 0x21D0
Leftrightarrow 0x21D4
LessEqualGreater 0x22DA
LessFullEqual 0x2266
LessGreater 0x2276
LessLess 0x2AA1
LessSlantEqual 0x2A7D
LessTilde 0x2272
Lfr 0x1D50F
Ll 0x22D8
Lleftarrow 0x21DA
Lmidot 0x13F
LongLeftArrow 0x27F5
LongLeftRightArrow 0x27F7
LongRightArrow 0x27F6
Longleftarrow 0x27F8
Longleftrightarrow 0x27FA
Longrightarrow 0x27F9
Lopf 0x1D543
LowerLeftArrow 0x2199
LowerRightArrow 0x2198
Lscr 0x2112
Lsh 0x21B0
Lstrok 0x141
Lt 0x226A
Map 0x2905
Mcy 0x41C
MediumSpace 0x205F
Mellintrf 0x2133
Mfr 0x1D510
MinusPlus 0x2213
Mopf 0x1D544
Mscr 0x2133
Mu 0x39C
NJcy 0x40A
Nacute 0x143
Ncaron 0x147
Ncedil 0x145
Ncy 0x41D
NegativeMediumSpace 0x200B
NegativeThickSpace 0x200B
NegativeThinSpace 0x200B
NegativeVeryThinSpace 0x200B
NestedGreaterGreater 0x226B
NestedLessLess 0x226A
NewLine 0xA
Nfr 0x1D511
NoBreak 0x2060
NonBreakingSpace 0xA0
Nopf 0x2115
Not 0x2AEC
NotCongruent 0x2262
NotCupCap 0x226D
NotDoubleVerticalBar 0x2226
NotElement 0x2209
NotEqual 0x2260
NotExists 0x2204
NotGreater 0x226F
NotGreaterEqual 0x2271
NotGreaterLess 0x2279
NotGreaterTilde 0x2275
NotLeftTriangle 0x22EA
NotLeftTriangleEqual 0x22EC
NotLess 0x226E
NotLessEqual 0x2270
NotLessGreater 0x2278
NotLessTilde 0x2274
NotPrecedes 0x2280
NotPrecedesSlantEqual 0x22E0
NotReverseElement 0x220C
NotRightTriangle 0x22EB
NotRightTriangleEqual 0x22ED
NotSquareSubsetEqual 0x22E2
NotSquareSupersetEqual 0x22E3
NotSubsetEqual 0x2288
NotSucceeds 0x2281
NotSucceedsSlantEqual 0x22E1
NotSupersetEqual 0x2289
NotTilde 0x2241
NotTildeEqual 0x2244
NotTildeFullEqual 0x2247
NotTildeTilde 0x2249
NotVerticalBar 0x2224
Nscr 0x1D4A9
Ntilde 0xD1
Nu 0x39D
OElig 0x152
Oacute 0xD3
Ocirc 0xD4
Ocy 0x41E
Odblac 0x150
Ofr 0x1D512
Ograve 0xD2
Omacr 0x14C
Omega 0x3A9
Omicron 0x39F
Oopf 0x1D546
OpenCurlyDoubleQuote 0x201C
OpenCurlyQuote 0x2018
Or 0x2A54
Oscr 0x1D4AA
Oslash 0xD8
Otilde 0xD5
Otimes 0x2A37
Ouml 0xD6
OverBar 0x203E
OverBrace 0x23DE
OverBracket 0x23B4
OverParenthesis 0x23DC
PartialD 0x2202
Pcy 0x41F
Pfr 0x1D513
Phi 0x3A6
Pi 0x3A0
PlusMinus 0xB1
Poincareplane 0x210C
Popf 0x2119
Pr 0x2ABB
Precedes 0x227A
PrecedesEqual 0x2AAF
PrecedesSlantEqual 0x227C
PrecedesTilde 0x227E
Prime 0x2033
Product 0x220F
Proportion 0x2237
Proportional 0x221D
Pscr 0x1D4AB
Psi 0x3A8
QUOT 0x22
Qfr 0x1D514
Qopf 0x211A
Qscr 0x1D4AC
RBarr 0x2910
REG 0xAE
Racute 0x154
Rang 0x27EB
Rarr 0x21A0
Rarrtl 0x2916
Rcaron 0x158
Rcedil 0x156
Rcy 0x420
Re 0x211C
ReverseElement 0x220B
ReverseEquilibrium 0x21CB
ReverseUpEquilibrium 0x296F
Rfr 0x211C
Rho 0x3A1
RightAngleBracket 0x27E9
RightArrow 0x2192
RightArrowBar 0x21E5
RightArrowLeftArrow 0x21C4
RightCeiling 0x2309
RightDoubleBracket 0x27E7
RightDownTeeVector 0x295D
RightDownVector 0x21C2
RightDownVectorBar 0x2955
RightFloor 0x230B
RightTee 0x22A2
RightTeeArrow 0x21A6
RightTeeVector 0x295B
RightTriangle 0x22B3
RightTriangleBar 0x29D0
RightTriangleEqual 0x22B5
RightUpDownVector 0x294F
RightUpTeeVector 0x295C
RightUpVector 0x21BE
RightUpVectorBar 0x2954
RightVector 0x21C0
RightVectorBar 0x2953
Rightarrow 0x21D2
Ropf 0x211D
RoundImplies 0x2970
Rrightarrow 0x21DB
Rscr 0x211B
Rsh 0x21B1
RuleDelayed 0x29F4
SHCHcy 0x429
SHcy 0x428
SOFTcy 0x42C
Sacute 0x15A
Sc 0x2ABC
Scaron 0x160
Scedil 0x15E
Scirc 0x15C
Scy 0x421
Sfr 0x1D516
ShortDownArrow 0x2193
ShortLeftArrow 0x2190
ShortRightArrow 0x2192
ShortUpArrow 0x2191
Sigma 0x3A3
SmallCircle 0x2218
Sopf 0x1D54A
Sqrt 0x221A
Square 0x25A1
SquareIntersection 0x2293
SquareSubset 0x228F
SquareSubsetEqual 0x2291
SquareSuperset 0x2290
SquareSupersetEqual 0x2292
SquareUnion 0x2294
Sscr 0x1D4AE
Star 0x22C6
Sub 0x22D0
Subset 0x22D0
SubsetEqual 0x2286
Succeeds 0x227B
SucceedsEqual 0x2AB0
SucceedsSlantEqual 0x227D
SucceedsTilde 0x227F
SuchThat 0x220B
Sum 0x2211
Sup 0x22D1
Superset 0x2283
SupersetEqual 0x2287
Supset 0x22D1
THORN 0xDE
TRADE 0x2122
TSHcy 0x40B
TScy 0x426
Tab 0x9
Tau 0x3A4
Tcaron 0x164
Tcedil 0x162
Tcy 0x422
Tfr 0x1D517
Therefore 0x2234
Theta 0x398
ThinSpace 0x2009
Tilde 0x223C
TildeEqual 0x2243
TildeFullEqual 0x2245
TildeTilde 0x2248
Topf 0x1D54B
TripleDot 0x20DB
Tscr 0x1D4AF
Tstrok 0x166
Uacute 0xDA
Uarr 0x219F
Uarrocir 0x2949
Ubrcy 0x40E
Ubreve 0x16C
Ucirc 0xDB
Ucy 0x423
Udblac 0x170
Ufr 0x1D518
Ugrave 0xD9
Umacr 0x16A
UnderBar 0x5F
UnderBrace 0x23DF
UnderBracket 0x23B5
UnderParenthesis 0x23DD
Union 0x22C3
UnionPlus 0x228E
Uogon 0x172
Uopf 0x1D54C
UpArrow 0x2191
UpArrowBar 0x2912
UpArrowDownArrow 0x21C5
UpDownArrow 0x2195
UpEquilibrium 0x296E
UpTee 0x22A5
UpTeeArrow 0x21A5
Uparrow 0x21D1
Updownarrow 0x21D5
UpperLeftArrow 0x2196
UpperRightArrow 0x2197
Upsi 0x3D2
Upsilon 0x3A5
Uring 0x16E
Uscr 0x1D4B0
Utilde 0x168
Uuml 0xDC
VDash 0x22AB
Vbar 0x2AEB
Vcy 0x412
Vdash 0x22A9
Vdashl 0x2AE6
Vee 0x22C1
Verbar 0x2016
Vert 0x2016
VerticalBar 0x2223
VerticalLine 0x7C
VerticalSeparator 0x2758
VerticalTilde 0x2240
VeryThinSpace 0x200A
Vfr 0x1D519
Vopf 0x1D54D
Vscr 0x1D4B1
Vvdash 0x22AA
Wcirc 0x174
Wedge 0x22C0
Wfr 0x1D51A
Wopf 0x1D54E
Wscr 0x1D4B2
Xfr 0x1D51B
Xi 0x39E
Xopf 0x1D54F
Xscr 0x1D4B3
YAcy 0x42F
YIcy 0x407
YUcy 0x42E
Yacute 0xDD
Ycirc 0x176
Ycy 0x42B
Yfr 0x1D51C
Yopf 0x1D550
Yscr 0x1D4B4
Yuml 0x178
ZHcy 0x416
Zacute 0x179
Zcaron 0x17D
Zcy 0x417
Zdot 0x17B
ZeroWidthSpace 0x200B
Zeta 0x396
Zfr 0x2128
Zopf 0x2124
Zscr 0x1D4B5
aacute 0xE1
abreve 0x103
ac 0x223E
acd 0x223F
acirc 0xE2
acute 0xB4
acy 0x430
aelig 0xE6
af 0x2061
afr 0x1D51E
agrave 0xE0
alefsym 0x2135
aleph 0x2135
alpha 0x3B1
amacr 0x101
amalg 0x2A3F
amp 0x26
and 0x2227
andand 0x2A55
andd 0x2A5C
andslope 0x2A58
andv 0x2A5A
ang 0x2220
ange 0x29A4
angle 0x2220
angmsd 0x2221
angmsdaa 0x29A8
angmsdab 0x29A9
angmsdac 0x29AA
angmsdad 0x29AB
angmsdae 0x29AC
angmsdaf 0x29AD
angmsdag 0x29AE
angmsdah 0x29AF
angrt 0x221F
angrtvb 0x22BE
angrtvbd 0x299D
angsph 0x2222
angst 0xC5
angzarr 0x237C
aogon 0x105
aopf 0x1D552
ap 0x2248
apE 0x2A70
apacir 0x2A6F
ape 0x224A
apid 0x224B
apos 0x27
approx 0x2248
approxeq 0x224A
aring 0xE5
ascr 0x1D4B6
ast 0x2A
asymp 0x2248
asympeq 0x224D
atilde 0xE3
auml 0xE4
awconint 0x2233
awint 0x2A11
bNot 0x2AED
backcong 0x224C
backepsilon 0x3F6
backprime 0x2035
backsim 0x223D
backsimeq 0x22CD
barvee 0x22BD
barwed 0x2305
barwedge 0x2305
bbrk 0x23B5
bbrktbrk 0x23B6
bcong 0x224C
bcy 0x431
bdquo 0x201E
becaus 0x2235
because 0x2235
bemptyv 0x29B0
bepsi 0x3F6
bernou 0x212C
beta 0x3B2
beth 0x2136
between 0x226C
bfr 0x1D51F
bigcap 0x22C2
bigcirc 0x25EF
bigcup 0x22C3
bigodot 0x2A00
bigoplus 0x2A01
bigotimes 0x2A02
bigsqcup 0x2A06
bigstar 0x2605
bigtriangledown 0x25BD
bigtriangleup 0x25B3
biguplus 0x2A04
bigvee 0x22C1
bigwedge 0x22C0
bkarow 0x290D
blacklozenge 0x29EB
blacksquare 0x25AA
blacktriangle 0x25B4
blacktriangledown 0x25BE
blacktriangleleft 0x25C2
blacktriangleright 0x25B8
blank 0x2423
blk12 0x2592
blk14 0x2591
blk34 0x2593
block 0x2588
bnot 0x2310
bopf 0x1D553
bot 0x22A5
bottom 0x22A5
bowtie 0x22C8
boxDL 0x2557
boxDR 0x2554
boxDl 0x2556
boxDr 0x2553
boxH 0x2550
boxHD 0x2566
boxHU 0x2569
boxHd 0x2564
boxHu 0x2567
boxUL 0x255D
boxUR 0x255A
boxUl 0x255C
boxUr 0x2559
boxV 0x2551
boxVH 0x256C
boxVL 0x2563
boxVR 0x2560
boxVh 0x256B
boxVl 0x2562
boxVr 0x255F
boxbox 0x29C9
boxdL 0x2555
boxdR 0x2552
boxdl 0x2510
boxdr 0x250C
boxh 0x2500
boxhD 0x2565
boxhU 0x2568
boxhd 0x252C
boxhu 0x2534
boxminus 0x229F
boxplus 0x229E
boxtimes 0x22A0
boxuL 0x255B
boxuR 0x2558
boxul 0x2518
boxur 0x2514
boxv 0x2502
boxvH 0x256A
boxvL 0x2561
boxvR 0x255E
boxvh 0x253C
boxvl 0x2524
boxvr 0x251C
bprime 0x2035
breve 0x2D8
brvbar 0xA6
bscr 0x1D4B7
bsemi 0x204F
bsim 0x223D
bsime 0x22CD
bsol 0x5C
bsolb 0x29C5
bsolhsub 0x27C8
bull 0x2022
bullet 0x2022
bump 0x224E
bumpE 0x2AAE
bumpe 0x224F
bumpeq 0x224F
cacute 0x107
cap 0x2229
capand 0x2A44
capbrcup 0x2A49
capcap 0x2A4B
capcup 0x2A47
capdot 0x2A40
caret 0x2041
caron 0x2C7
ccaps 0x2A4D
ccaron 0x10D
ccedil 0xE7
ccirc 0x109
ccups 0x2A4C
ccupssm 0x2A50
cdot 0x10B
cedil 0xB8
cemptyv 0x29B2
cent 0xA2
centerdot 0xB7
cfr 0x1D520
chcy 0x447
check 0x2713
checkmark 0x2713
chi 0x3C7
cir 0x25CB
cirE 0x29C3
circ 0x2C6
circeq 0x2257
circlearrowleft 0x21BA
circlearrowright 0x21BB
circledR 0xAE
circledS 0x24C8
circledast 0x229B
circledcirc 0x229A
circleddash 0x229D
cire 0x2257
cirfnint 0x2A10
cirmid 0x2AEF
cirscir 0x29C2
clubs 0x2663
clubsuit 0x2663
colon 0x3A
colone 0x2254
coloneq 0x2254
comma 0x2C
commat 0x40
comp 0x2201
compfn 0x2218
complement 0x2201
complexes 0x2102
cong 0x2245
congdot 0x2A6D
conint 0x222E
copf 0x1D554
coprod 0x2210
copy 0xA9
copysr 0x2117
crarr 0x21B5
cross 0x2717
cscr 0x1D4B8
csub 0x2ACF
csube 0x2AD1
csup 0x2AD0
csupe 0x2AD2
ctdot 0x22EF
cudarrl 0x2938
cudarrr 0x2935
cuepr 0x22DE
cuesc 0x22DF
cularr 0x21B6
cularrp 0x293D
cup 0x222A
cupbrcap 0x2A48
cupcap 0x2A46
cupcup 0x2A4A
cupdot 0x228D
cupor 0x2A45
curarr 0x21B7
curarrm 0x293C
curlyeqprec 0x22DE
curlyeqsucc 0x22DF
curlyvee 0x22CE
curlywedge 0x22CF
curren 0xA4
curvearrowleft 0x21B6
curvearrowright 0x21B7
cuvee 0x22CE
cuwed 0x22CF
cwconint 0x2232
cwint 0x2231
cylcty 0x232D
dArr 0x21D3
dHar 0x2965
dagger 0x2020
daleth 0x2138
darr 0x2193
dash 0x2010
dashv 0x22A3
dbkarow 0x290F
dblac 0x2DD
dcaron 0x10F
dcy 0x434
dd 0x2146
ddagger 0x2021
ddarr 0x21CA
ddotseq 0x2A77
deg 0xB0
delta 0x3B4
demptyv 0x29B1
dfisht 0x297F
dfr 0x1D521
dharl 0x21C3
dharr 0x21C2
diam 0x22C4
diamond 0x22C4
diamondsuit 0x2666
diams 0x2666
die 0xA8
digamma 0x3DD
disin 0x22F2
div 0xF7
divide 0xF7
divideontimes 0x22C7
divonx 0x22C7
djcy 0x452
dlcorn 0x231E
dlcrop 0x230D
dollar 0x24
dopf 0x1D555
dot 0x2D9
doteq 0x2250
doteqdot 0x2251
dotminus 0x2238
dotplus 0x2214
dotsquare 0x22A1
doublebarwedge 0x2306
downarrow 0x2193
downdownarrows 0x21CA
downharpoonleft 0x21C3
downharpoonright 0x21C2
drbkarow 0x2910
drcorn 0x231F
drcrop 0x230C
dscr 0x1D4B9
dscy 0x455
dsol 0x29F6
dstrok 0x111
dtdot 0x22F1
dtri 0x25BF
dtrif 0x25BE
duarr 0x21F5
duhar 0x296F
dwangle 0x29A6
dzcy 0x45F
dzigrarr 0x27FF
eDDot 0x2A77
eDot 0x2251
eacute 0xE9
easter 0x2A6E
ecaron 0x11B
ecir 0x2256
ecirc 0xEA
ecolon 0x2255
ecy 0x44D
edot 0x117
ee 0x2147
efDot 0x2252
efr 0x1D522
eg 0x2A9A
egrave 0xE8
egs 0x2A96
egsdot 0x2A98
el 0x2A99
elinters 0x23E7
ell 0x2113
els 0x2A95
elsdot 0x2A97
emacr 0x113
empty 0x2205
emptyset 0x2205
emptyv 0x2205
emsp13 0x2004
emsp14 0x2005
emsp 0x2003
eng 0x14B
ensp 0x2002
eogon 0x119
eopf 0x1D556
epar 0x22D5
eparsl 0x29E3
eplus 0x2A71
epsi 0x3B5
epsilon 0x3B5
epsiv 0x3F5
eqcirc 0x2256
eqcolon 0x2255
eqsim 0x2242
eqslantgtr 0x2A96
eqslantless 0x2A95
equals 0x3D
equest 0x225F
equiv 0x2261
equivDD 0x2A78
eqvparsl 0x29E5
erDot 0x2253
erarr 0x2971
escr 0x212F
esdot 0x2250
esim 0x2242
eta 0x3B7
eth 0xF0
euml 0xEB
euro 0x20AC
excl 0x21
exist 0x2203
expectation 0x2130
exponentiale 0x2147
fallingdotseq 0x2252
fcy 0x444
female 0x2640
ffilig 0xFB03
fflig 0xFB00
ffllig 0xFB04
ffr 0x1D523
filig 0xFB01
flat 0x266D
fllig 0xFB02
fltns 0x25B1
fnof 0x192
fopf 0x1D557
forall 0x2200
fork 0x22D4
forkv 0x2AD9
fpartint 0x2A0D
frac12 0xBD
frac13 0x2153
frac14 0xBC
frac15 0x2155
frac16 0x2159
frac18 0x215B
frac23 0x2154
frac25 0x2156
frac34 0xBE
frac35 0x2157
frac38 0x215C
frac45 0x2158
frac56 0x215A
frac58 0x215D