orbtk_theme/vector_graphics/
material_icons_font.rs

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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
/// MaterialIcons: definition of supported glyph constants

/*
 * Howto evaluate the glyph codes
 */
// emacs: to insert a glyph, use insert-char (bind:: C-x 8 Ret)
// eg: 'Edit'-Glyph ""
// - dec code point => (insert-char 57848 1)
// - hex code_point => C-x 8 Ret #xe1f8 Ret
// - oct code_point => C-x 8 Ret #o377 Ret
//
// michal w. sieron <michalwsieron@gmail.com> wrote a python script
// that takes a fonts baseline.css and generates the rust accessible uni-codes.
// source: https://gist.github.com/michalsieron/913f025b19ac8e213c423c35292d9aad
// following constants are generated with this code.

/*
 * CSS Definiton:
 */
// CSS-url:     https://github.com/material-icons/material-icons-font/blob/master/css/baseline.css
// font-family: "MaterialIcons-Regular";
// font-weight: normal;
// font-style:  normal;
// font-format: ttf
// font-src:    MaterialIcons.ttf

pub const MD_360: &str = "\u{e000}";
pub const MD_3D_ROTATION: &str = "\u{e001}";
pub const MD_4K: &str = "\u{e002}";
pub const MD_AC_UNIT: &str = "\u{e004}";
pub const MD_ACCESS_ALARM: &str = "\u{e005}";
pub const MD_ACCESS_ALARMS: &str = "\u{e007}";
pub const MD_ACCESS_TIME: &str = "\u{e009}";
pub const MD_ACCESSIBILITY: &str = "\u{e00b}";
pub const MD_ACCESSIBILITY_NEW: &str = "\u{e00c}";
pub const MD_ACCESSIBLE: &str = "\u{e00d}";
pub const MD_ACCESSIBLE_FORWARD: &str = "\u{e00e}";
pub const MD_ACCOUNT_BALANCE: &str = "\u{e00f}";
pub const MD_ACCOUNT_BALANCE_WALLET: &str = "\u{e011}";
pub const MD_ACCOUNT_BOX: &str = "\u{e013}";
pub const MD_ACCOUNT_CIRCLE: &str = "\u{e015}";
pub const MD_ACCOUNT_TREE: &str = "\u{e017}";
pub const MD_ADB: &str = "\u{e019}";
pub const MD_ADD: &str = "\u{e01a}";
pub const MD_ADD_A_PHOTO: &str = "\u{e01b}";
pub const MD_ADD_ALARM: &str = "\u{e01d}";
pub const MD_ADD_ALERT: &str = "\u{e01f}";
pub const MD_ADD_BOX: &str = "\u{e021}";
pub const MD_ADD_CIRCLE: &str = "\u{e023}";
pub const MD_ADD_CIRCLE_OUTLINE: &str = "\u{e025}";
pub const MD_ADD_COMMENT: &str = "\u{e026}";
pub const MD_ADD_LOCATION: &str = "\u{e028}";
pub const MD_ADD_PHOTO_ALTERNATE: &str = "\u{e02a}";
pub const MD_ADD_SHOPPING_CART: &str = "\u{e02c}";
pub const MD_ADD_TO_HOME_SCREEN: &str = "\u{e02d}";
pub const MD_ADD_TO_PHOTOS: &str = "\u{e02e}";
pub const MD_ADD_TO_QUEUE: &str = "\u{e030}";
pub const MD_ADJUST: &str = "\u{e032}";
pub const MD_AIRLINE_SEAT_FLAT: &str = "\u{e033}";
pub const MD_AIRLINE_SEAT_FLAT_ANGLED: &str = "\u{e035}";
pub const MD_AIRLINE_SEAT_INDIVIDUAL_SUITE: &str = "\u{e037}";
pub const MD_AIRLINE_SEAT_LEGROOM_EXTRA: &str = "\u{e039}";
pub const MD_AIRLINE_SEAT_LEGROOM_NORMAL: &str = "\u{e03a}";
pub const MD_AIRLINE_SEAT_LEGROOM_REDUCED: &str = "\u{e03b}";
pub const MD_AIRLINE_SEAT_RECLINE_EXTRA: &str = "\u{e03c}";
pub const MD_AIRLINE_SEAT_RECLINE_NORMAL: &str = "\u{e03d}";
pub const MD_AIRPLANEMODE_ACTIVE: &str = "\u{e03e}";
pub const MD_AIRPLANEMODE_INACTIVE: &str = "\u{e03f}";
pub const MD_AIRPLAY: &str = "\u{e040}";
pub const MD_AIRPORT_SHUTTLE: &str = "\u{e041}";
pub const MD_ALARM: &str = "\u{e043}";
pub const MD_ALARM_ADD: &str = "\u{e045}";
pub const MD_ALARM_OFF: &str = "\u{e047}";
pub const MD_ALARM_ON: &str = "\u{e048}";
pub const MD_ALBUM: &str = "\u{e04a}";
pub const MD_ALL_INBOX: &str = "\u{e04c}";
pub const MD_ALL_INCLUSIVE: &str = "\u{e04e}";
pub const MD_ALL_OUT: &str = "\u{e04f}";
pub const MD_ALTERNATE_EMAIL: &str = "\u{e051}";
pub const MD_AMP_STORIES: &str = "\u{e053}";
pub const MD_ANDROID: &str = "\u{e055}";
pub const MD_ANNOUNCEMENT: &str = "\u{e056}";
pub const MD_APARTMENT: &str = "\u{e058}";
pub const MD_APPS: &str = "\u{e059}";
pub const MD_ARCHIVE: &str = "\u{e05a}";
pub const MD_ARROW_BACK: &str = "\u{e05c}";
pub const MD_ARROW_BACK_IOS: &str = "\u{e05d}";
pub const MD_ARROW_DOWNWARD: &str = "\u{e05e}";
pub const MD_ARROW_DROP_DOWN: &str = "\u{e05f}";
pub const MD_ARROW_DROP_DOWN_CIRCLE: &str = "\u{e060}";
pub const MD_ARROW_DROP_UP: &str = "\u{e062}";
pub const MD_ARROW_FORWARD: &str = "\u{e063}";
pub const MD_ARROW_FORWARD_IOS: &str = "\u{e064}";
pub const MD_ARROW_LEFT: &str = "\u{e065}";
pub const MD_ARROW_RIGHT: &str = "\u{e066}";
pub const MD_ARROW_RIGHT_ALT: &str = "\u{e067}";
pub const MD_ARROW_UPWARD: &str = "\u{e068}";
pub const MD_ART_TRACK: &str = "\u{e069}";
pub const MD_ASPECT_RATIO: &str = "\u{e06a}";
pub const MD_ASSESSMENT: &str = "\u{e06c}";
pub const MD_ASSIGNMENT: &str = "\u{e06e}";
pub const MD_ASSIGNMENT_IND: &str = "\u{e070}";
pub const MD_ASSIGNMENT_LATE: &str = "\u{e072}";
pub const MD_ASSIGNMENT_RETURN: &str = "\u{e074}";
pub const MD_ASSIGNMENT_RETURNED: &str = "\u{e076}";
pub const MD_ASSIGNMENT_TURNED_IN: &str = "\u{e078}";
pub const MD_ASSISTANT: &str = "\u{e07a}";
pub const MD_ASSISTANT_PHOTO: &str = "\u{e07c}";
pub const MD_ATM: &str = "\u{e07e}";
pub const MD_ATTACH_FILE: &str = "\u{e07f}";
pub const MD_ATTACH_MONEY: &str = "\u{e080}";
pub const MD_ATTACHMENT: &str = "\u{e081}";
pub const MD_AUDIOTRACK: &str = "\u{e082}";
pub const MD_AUTORENEW: &str = "\u{e084}";
pub const MD_AV_TIMER: &str = "\u{e085}";
pub const MD_BACKSPACE: &str = "\u{e086}";
pub const MD_BACKUP: &str = "\u{e088}";
pub const MD_BALLOT: &str = "\u{e08a}";
pub const MD_BAR_CHART: &str = "\u{e08c}";
pub const MD_BARCODE: &str = "\u{e08d}";
pub const MD_BATHTUB: &str = "\u{e08e}";
pub const MD_BATTERY_20_AFTER: &str = "\u{e090}";
pub const MD_BATTERY_20_BEFORE: &str = "\u{e091}";
pub const MD_BATTERY_30_AFTER: &str = "\u{e092}";
pub const MD_BATTERY_30_BEFORE: &str = "\u{e093}";
pub const MD_BATTERY_50_AFTER: &str = "\u{e094}";
pub const MD_BATTERY_50_BEFORE: &str = "\u{e095}";
pub const MD_BATTERY_60_AFTER: &str = "\u{e096}";
pub const MD_BATTERY_60_BEFORE: &str = "\u{e097}";
pub const MD_BATTERY_80_AFTER: &str = "\u{e098}";
pub const MD_BATTERY_80_BEFORE: &str = "\u{e099}";
pub const MD_BATTERY_90_AFTER: &str = "\u{e09a}";
pub const MD_BATTERY_90_BEFORE: &str = "\u{e09b}";
pub const MD_BATTERY_ALERT: &str = "\u{e09c}";
pub const MD_BATTERY_CHARGING_20_AFTER: &str = "\u{e09d}";
pub const MD_BATTERY_CHARGING_20_BEFORE: &str = "\u{e09e}";
pub const MD_BATTERY_CHARGING_30_AFTER: &str = "\u{e09f}";
pub const MD_BATTERY_CHARGING_30_BEFORE: &str = "\u{e0a0}";
pub const MD_BATTERY_CHARGING_50_AFTER: &str = "\u{e0a1}";
pub const MD_BATTERY_CHARGING_50_BEFORE: &str = "\u{e0a2}";
pub const MD_BATTERY_CHARGING_60_AFTER: &str = "\u{e0a3}";
pub const MD_BATTERY_CHARGING_60_BEFORE: &str = "\u{e0a4}";
pub const MD_BATTERY_CHARGING_80_AFTER: &str = "\u{e0a5}";
pub const MD_BATTERY_CHARGING_80_BEFORE: &str = "\u{e0a6}";
pub const MD_BATTERY_CHARGING_90_AFTER: &str = "\u{e0a7}";
pub const MD_BATTERY_CHARGING_90_BEFORE: &str = "\u{e0a8}";
pub const MD_BATTERY_CHARGING_FULL: &str = "\u{e0a9}";
pub const MD_BATTERY_FULL: &str = "\u{e0aa}";
pub const MD_BATTERY_STD: &str = "\u{e0ab}";
pub const MD_BATTERY_UNKNOWN: &str = "\u{e0ac}";
pub const MD_BEACH_ACCESS: &str = "\u{e0ad}";
pub const MD_BEENHERE: &str = "\u{e0af}";
pub const MD_BLOCK: &str = "\u{e0b1}";
pub const MD_BLUETOOTH: &str = "\u{e0b2}";
pub const MD_BLUETOOTH_AUDIO: &str = "\u{e0b3}";
pub const MD_BLUETOOTH_CONNECTED: &str = "\u{e0b4}";
pub const MD_BLUETOOTH_DISABLED: &str = "\u{e0b5}";
pub const MD_BLUETOOTH_SEARCHING: &str = "\u{e0b6}";
pub const MD_BLUR_CIRCULAR: &str = "\u{e0b7}";
pub const MD_BLUR_LINEAR: &str = "\u{e0b8}";
pub const MD_BLUR_OFF: &str = "\u{e0b9}";
pub const MD_BLUR_ON: &str = "\u{e0ba}";
pub const MD_BOOK: &str = "\u{e0bb}";
pub const MD_BOOKMARK: &str = "\u{e0bd}";
pub const MD_BOOKMARK_BORDER: &str = "\u{e0bf}";
pub const MD_BOOKMARKS: &str = "\u{e0c0}";
pub const MD_BORDER_ALL: &str = "\u{e0c2}";
pub const MD_BORDER_BOTTOM: &str = "\u{e0c3}";
pub const MD_BORDER_CLEAR: &str = "\u{e0c4}";
pub const MD_BORDER_COLOR_AFTER: &str = "\u{e0c5}";
pub const MD_BORDER_COLOR_BEFORE: &str = "\u{e0c6}";
pub const MD_BORDER_HORIZONTAL: &str = "\u{e0c7}";
pub const MD_BORDER_INNER: &str = "\u{e0c8}";
pub const MD_BORDER_LEFT: &str = "\u{e0c9}";
pub const MD_BORDER_OUTER: &str = "\u{e0ca}";
pub const MD_BORDER_RIGHT: &str = "\u{e0cb}";
pub const MD_BORDER_STYLE: &str = "\u{e0cc}";
pub const MD_BORDER_TOP: &str = "\u{e0cd}";
pub const MD_BORDER_VERTICAL: &str = "\u{e0ce}";
pub const MD_BRANDING_WATERMARK: &str = "\u{e0cf}";
pub const MD_BRIGHTNESS_1: &str = "\u{e0d1}";
pub const MD_BRIGHTNESS_2: &str = "\u{e0d3}";
pub const MD_BRIGHTNESS_3: &str = "\u{e0d5}";
pub const MD_BRIGHTNESS_4: &str = "\u{e0d7}";
pub const MD_BRIGHTNESS_5: &str = "\u{e0d9}";
pub const MD_BRIGHTNESS_6: &str = "\u{e0db}";
pub const MD_BRIGHTNESS_7: &str = "\u{e0dd}";
pub const MD_BRIGHTNESS_AUTO: &str = "\u{e0df}";
pub const MD_BRIGHTNESS_HIGH: &str = "\u{e0e1}";
pub const MD_BRIGHTNESS_LOW: &str = "\u{e0e3}";
pub const MD_BRIGHTNESS_MEDIUM: &str = "\u{e0e5}";
pub const MD_BROKEN_IMAGE: &str = "\u{e0e7}";
pub const MD_BRUSH: &str = "\u{e0e9}";
pub const MD_BUBBLE_CHART: &str = "\u{e0eb}";
pub const MD_BUG_REPORT: &str = "\u{e0ed}";
pub const MD_BUILD: &str = "\u{e0ef}";
pub const MD_BURST_MODE: &str = "\u{e0f1}";
pub const MD_BUSINESS: &str = "\u{e0f3}";
pub const MD_BUSINESS_CENTER: &str = "\u{e0f5}";
pub const MD_CACHED: &str = "\u{e0f7}";
pub const MD_CAKE: &str = "\u{e0f8}";
pub const MD_CALENDAR_TODAY: &str = "\u{e0fa}";
pub const MD_CALENDAR_VIEW_DAY: &str = "\u{e0fc}";
pub const MD_CALL: &str = "\u{e0fe}";
pub const MD_CALL_END: &str = "\u{e100}";
pub const MD_CALL_MADE: &str = "\u{e102}";
pub const MD_CALL_MERGE: &str = "\u{e103}";
pub const MD_CALL_MISSED: &str = "\u{e104}";
pub const MD_CALL_MISSED_OUTGOING: &str = "\u{e105}";
pub const MD_CALL_RECEIVED: &str = "\u{e106}";
pub const MD_CALL_SPLIT: &str = "\u{e107}";
pub const MD_CALL_TO_ACTION: &str = "\u{e108}";
pub const MD_CAMERA: &str = "\u{e10a}";
pub const MD_CAMERA_ALT: &str = "\u{e10c}";
pub const MD_CAMERA_ENHANCE: &str = "\u{e10e}";
pub const MD_CAMERA_FRONT: &str = "\u{e110}";
pub const MD_CAMERA_REAR: &str = "\u{e112}";
pub const MD_CAMERA_ROLL: &str = "\u{e114}";
pub const MD_CANCEL: &str = "\u{e116}";
pub const MD_CANCEL_PRESENTATION: &str = "\u{e118}";
pub const MD_CANCEL_SCHEDULE_SEND: &str = "\u{e11a}";
pub const MD_CARD_GIFTCARD: &str = "\u{e11c}";
pub const MD_CARD_MEMBERSHIP: &str = "\u{e11e}";
pub const MD_CARD_TRAVEL: &str = "\u{e120}";
pub const MD_CASINO: &str = "\u{e122}";
pub const MD_CAST: &str = "\u{e124}";
pub const MD_CAST_CONNECTED: &str = "\u{e125}";
pub const MD_CAST_FOR_EDUCATION: &str = "\u{e127}";
pub const MD_CATEGORY: &str = "\u{e128}";
pub const MD_CELL_WIFI_AFTER: &str = "\u{e12a}";
pub const MD_CELL_WIFI_BEFORE: &str = "\u{e12b}";
pub const MD_CENTER_FOCUS_STRONG: &str = "\u{e12c}";
pub const MD_CENTER_FOCUS_WEAK: &str = "\u{e12e}";
pub const MD_CHANGE_HISTORY: &str = "\u{e130}";
pub const MD_CHAT: &str = "\u{e132}";
pub const MD_CHAT_BUBBLE: &str = "\u{e134}";
pub const MD_CHAT_BUBBLE_OUTLINE: &str = "\u{e136}";
pub const MD_CHECK: &str = "\u{e137}";
pub const MD_CHECK_BOX: &str = "\u{e138}";
pub const MD_CHECK_BOX_OUTLINE_BLANK: &str = "\u{e13a}";
pub const MD_CHECK_CIRCLE: &str = "\u{e13b}";
pub const MD_CHECK_CIRCLE_OUTLINE: &str = "\u{e13d}";
pub const MD_CHEVRON_LEFT: &str = "\u{e13e}";
pub const MD_CHEVRON_RIGHT: &str = "\u{e13f}";
pub const MD_CHILD_CARE: &str = "\u{e140}";
pub const MD_CHILD_FRIENDLY: &str = "\u{e142}";
pub const MD_CHROME_READER_MODE: &str = "\u{e144}";
pub const MD_CLASS: &str = "\u{e146}";
pub const MD_CLEAR: &str = "\u{e148}";
pub const MD_CLEAR_ALL: &str = "\u{e149}";
pub const MD_CLOSE: &str = "\u{e14a}";
pub const MD_CLOSED_CAPTION: &str = "\u{e14b}";
pub const MD_CLOUD: &str = "\u{e14d}";
pub const MD_CLOUD_CIRCLE: &str = "\u{e14f}";
pub const MD_CLOUD_DONE: &str = "\u{e151}";
pub const MD_CLOUD_DOWNLOAD: &str = "\u{e153}";
pub const MD_CLOUD_OFF: &str = "\u{e155}";
pub const MD_CLOUD_QUEUE: &str = "\u{e157}";
pub const MD_CLOUD_UPLOAD: &str = "\u{e159}";
pub const MD_CODE: &str = "\u{e15b}";
pub const MD_COLLECTIONS: &str = "\u{e15c}";
pub const MD_COLLECTIONS_BOOKMARK: &str = "\u{e15e}";
pub const MD_COLOR_LENS: &str = "\u{e160}";
pub const MD_COLORIZE: &str = "\u{e162}";
pub const MD_COMMENT: &str = "\u{e164}";
pub const MD_COMMUTE: &str = "\u{e166}";
pub const MD_COMPARE: &str = "\u{e167}";
pub const MD_COMPARE_ARROWS: &str = "\u{e169}";
pub const MD_COMPASS_CALIBRATION: &str = "\u{e16a}";
pub const MD_COMPUTER: &str = "\u{e16c}";
pub const MD_CONFIRMATION_NUMBER: &str = "\u{e16e}";
pub const MD_CONTACT_MAIL: &str = "\u{e170}";
pub const MD_CONTACT_PHONE: &str = "\u{e172}";
pub const MD_CONTACT_SUPPORT: &str = "\u{e174}";
pub const MD_CONTACTLESS: &str = "\u{e176}";
pub const MD_CONTACTS: &str = "\u{e178}";
pub const MD_CONTENT_COPY: &str = "\u{e17a}";
pub const MD_CONTENT_CUT: &str = "\u{e17c}";
pub const MD_CONTENT_PASTE: &str = "\u{e17e}";
pub const MD_CONTROL_CAMERA: &str = "\u{e180}";
pub const MD_CONTROL_POINT: &str = "\u{e181}";
pub const MD_CONTROL_POINT_DUPLICATE: &str = "\u{e183}";
pub const MD_COPYRIGHT: &str = "\u{e185}";
pub const MD_CREATE: &str = "\u{e187}";
pub const MD_CREATE_NEW_FOLDER: &str = "\u{e189}";
pub const MD_CREDIT_CARD: &str = "\u{e18b}";
pub const MD_CROP: &str = "\u{e18d}";
pub const MD_CROP_16_9: &str = "\u{e18e}";
pub const MD_CROP_3_2: &str = "\u{e18f}";
pub const MD_CROP_5_4: &str = "\u{e190}";
pub const MD_CROP_7_5: &str = "\u{e191}";
pub const MD_CROP_DIN: &str = "\u{e192}";
pub const MD_CROP_FREE: &str = "\u{e193}";
pub const MD_CROP_LANDSCAPE: &str = "\u{e194}";
pub const MD_CROP_ORIGINAL: &str = "\u{e195}";
pub const MD_CROP_PORTRAIT: &str = "\u{e196}";
pub const MD_CROP_ROTATE: &str = "\u{e197}";
pub const MD_CROP_SQUARE: &str = "\u{e198}";
pub const MD_DASHBOARD: &str = "\u{e199}";
pub const MD_DATA_USAGE: &str = "\u{e19b}";
pub const MD_DATE_RANGE: &str = "\u{e19c}";
pub const MD_DECK: &str = "\u{e19e}";
pub const MD_DEHAZE: &str = "\u{e1a0}";
pub const MD_DELETE: &str = "\u{e1a1}";
pub const MD_DELETE_FOREVER: &str = "\u{e1a3}";
pub const MD_DELETE_OUTLINE: &str = "\u{e1a5}";
pub const MD_DELETE_SWEEP: &str = "\u{e1a6}";
pub const MD_DEPARTURE_BOARD: &str = "\u{e1a8}";
pub const MD_DESCRIPTION: &str = "\u{e1aa}";
pub const MD_DESKTOP_ACCESS_DISABLED: &str = "\u{e1ac}";
pub const MD_DESKTOP_MAC: &str = "\u{e1ae}";
pub const MD_DESKTOP_WINDOWS: &str = "\u{e1b0}";
pub const MD_DETAILS: &str = "\u{e1b2}";
pub const MD_DEVELOPER_BOARD: &str = "\u{e1b4}";
pub const MD_DEVELOPER_MODE: &str = "\u{e1b6}";
pub const MD_DEVICE_HUB: &str = "\u{e1b7}";
pub const MD_DEVICE_UNKNOWN: &str = "\u{e1b8}";
pub const MD_DEVICES: &str = "\u{e1ba}";
pub const MD_DEVICES_OTHER: &str = "\u{e1bc}";
pub const MD_DIALER_SIP: &str = "\u{e1be}";
pub const MD_DIALPAD: &str = "\u{e1c0}";
pub const MD_DIRECTIONS: &str = "\u{e1c1}";
pub const MD_DIRECTIONS_BIKE: &str = "\u{e1c3}";
pub const MD_DIRECTIONS_BOAT: &str = "\u{e1c4}";
pub const MD_DIRECTIONS_BUS: &str = "\u{e1c6}";
pub const MD_DIRECTIONS_CAR: &str = "\u{e1c8}";
pub const MD_DIRECTIONS_RAILWAY: &str = "\u{e1ca}";
pub const MD_DIRECTIONS_RUN: &str = "\u{e1cc}";
pub const MD_DIRECTIONS_SUBWAY: &str = "\u{e1cd}";
pub const MD_DIRECTIONS_TRANSIT: &str = "\u{e1cf}";
pub const MD_DIRECTIONS_WALK: &str = "\u{e1d1}";
pub const MD_DISC_FULL: &str = "\u{e1d2}";
pub const MD_DIVIDE: &str = "\u{e1d4}";
pub const MD_DNS: &str = "\u{e1d6}";
pub const MD_DO_NOT_DISTURB: &str = "\u{e1d8}";
pub const MD_DO_NOT_DISTURB_ALT: &str = "\u{e1da}";
pub const MD_DO_NOT_DISTURB_OFF: &str = "\u{e1dc}";
pub const MD_DOCK: &str = "\u{e1de}";
pub const MD_DOMAIN: &str = "\u{e1e0}";
pub const MD_DOMAIN_DISABLED: &str = "\u{e1e2}";
pub const MD_DONE: &str = "\u{e1e4}";
pub const MD_DONE_ALL: &str = "\u{e1e5}";
pub const MD_DONE_OUTLINE: &str = "\u{e1e6}";
pub const MD_DONUT_LARGE: &str = "\u{e1e7}";
pub const MD_DONUT_SMALL: &str = "\u{e1e8}";
pub const MD_DOUBLE_ARROW: &str = "\u{e1ea}";
pub const MD_DRAFTS: &str = "\u{e1eb}";
pub const MD_DRAG_HANDLE: &str = "\u{e1ed}";
pub const MD_DRAG_INDICATOR: &str = "\u{e1ee}";
pub const MD_DRIVE_ETA: &str = "\u{e1ef}";
pub const MD_DUO: &str = "\u{e1f1}";
pub const MD_DVR: &str = "\u{e1f2}";
pub const MD_DYNAMIC_FEED: &str = "\u{e1f4}";
pub const MD_ECO: &str = "\u{e1f6}";
pub const MD_EDIT: &str = "\u{e1f8}";
pub const MD_EDIT_ATTRIBUTES: &str = "\u{e1fa}";
pub const MD_EDIT_LOCATION: &str = "\u{e1fc}";
pub const MD_EJECT: &str = "\u{e1fe}";
pub const MD_EMAIL: &str = "\u{e200}";
pub const MD_EMOJI_EMOTIONS: &str = "\u{e202}";
pub const MD_EMOJI_EVENTS: &str = "\u{e204}";
pub const MD_EMOJI_FLAGS: &str = "\u{e206}";
pub const MD_EMOJI_FOOD_BEVERAGE: &str = "\u{e208}";
pub const MD_EMOJI_NATURE: &str = "\u{e20a}";
pub const MD_EMOJI_OBJECTS: &str = "\u{e20c}";
pub const MD_EMOJI_PEOPLE: &str = "\u{e20e}";
pub const MD_EMOJI_SYMBOLS: &str = "\u{e20f}";
pub const MD_EMOJI_TRANSPORTATION: &str = "\u{e210}";
pub const MD_ENHANCED_ENCRYPTION: &str = "\u{e211}";
pub const MD_EQUALIZER: &str = "\u{e213}";
pub const MD_EQUALS: &str = "\u{e214}";
pub const MD_ERROR: &str = "\u{e215}";
pub const MD_ERROR_OUTLINE: &str = "\u{e217}";
pub const MD_EURO: &str = "\u{e218}";
pub const MD_EURO_SYMBOL: &str = "\u{e219}";
pub const MD_EV_STATION: &str = "\u{e21a}";
pub const MD_EVENT: &str = "\u{e21c}";
pub const MD_EVENT_AVAILABLE: &str = "\u{e21e}";
pub const MD_EVENT_BUSY: &str = "\u{e220}";
pub const MD_EVENT_NOTE: &str = "\u{e222}";
pub const MD_EVENT_SEAT: &str = "\u{e224}";
pub const MD_EXIT_TO_APP: &str = "\u{e226}";
pub const MD_EXPAND_LESS: &str = "\u{e227}";
pub const MD_EXPAND_MORE: &str = "\u{e228}";
pub const MD_EXPLICIT: &str = "\u{e229}";
pub const MD_EXPLORE: &str = "\u{e22b}";
pub const MD_EXPLORE_OFF: &str = "\u{e22d}";
pub const MD_EXPOSURE: &str = "\u{e22f}";
pub const MD_EXPOSURE_NEG_1: &str = "\u{e231}";
pub const MD_EXPOSURE_NEG_2: &str = "\u{e232}";
pub const MD_EXPOSURE_PLUS_1: &str = "\u{e233}";
pub const MD_EXPOSURE_PLUS_2: &str = "\u{e234}";
pub const MD_EXPOSURE_ZERO: &str = "\u{e235}";
pub const MD_EXTENSION: &str = "\u{e236}";
pub const MD_FACE: &str = "\u{e238}";
pub const MD_FAST_FORWARD: &str = "\u{e23a}";
pub const MD_FAST_REWIND: &str = "\u{e23c}";
pub const MD_FASTFOOD: &str = "\u{e23e}";
pub const MD_FAVORITE: &str = "\u{e240}";
pub const MD_FAVORITE_BORDER: &str = "\u{e242}";
pub const MD_FEATURED_PLAY_LIST: &str = "\u{e243}";
pub const MD_FEATURED_VIDEO: &str = "\u{e245}";
pub const MD_FEEDBACK: &str = "\u{e247}";
pub const MD_FIBER_DVR: &str = "\u{e249}";
pub const MD_FIBER_MANUAL_RECORD: &str = "\u{e24b}";
pub const MD_FIBER_NEW: &str = "\u{e24d}";
pub const MD_FIBER_PIN: &str = "\u{e24f}";
pub const MD_FIBER_SMART_RECORD: &str = "\u{e251}";
pub const MD_FILE_COPY: &str = "\u{e253}";
pub const MD_FILE_UPLOAD: &str = "\u{e255}";
pub const MD_FILTER: &str = "\u{e257}";
pub const MD_FILTER_1: &str = "\u{e259}";
pub const MD_FILTER_2: &str = "\u{e25b}";
pub const MD_FILTER_3: &str = "\u{e25d}";
pub const MD_FILTER_4: &str = "\u{e25f}";
pub const MD_FILTER_5: &str = "\u{e261}";
pub const MD_FILTER_6: &str = "\u{e263}";
pub const MD_FILTER_7: &str = "\u{e265}";
pub const MD_FILTER_8: &str = "\u{e267}";
pub const MD_FILTER_9: &str = "\u{e269}";
pub const MD_FILTER_9_PLUS: &str = "\u{e26b}";
pub const MD_FILTER_B_AND_W: &str = "\u{e26d}";
pub const MD_FILTER_CENTER_FOCUS: &str = "\u{e26f}";
pub const MD_FILTER_DRAMA: &str = "\u{e270}";
pub const MD_FILTER_FRAMES: &str = "\u{e272}";
pub const MD_FILTER_HDR: &str = "\u{e274}";
pub const MD_FILTER_LIST: &str = "\u{e276}";
pub const MD_FILTER_NONE: &str = "\u{e277}";
pub const MD_FILTER_TILT_SHIFT: &str = "\u{e279}";
pub const MD_FILTER_VINTAGE: &str = "\u{e27a}";
pub const MD_FIND_IN_PAGE: &str = "\u{e27c}";
pub const MD_FIND_REPLACE: &str = "\u{e27e}";
pub const MD_FINGERPRINT: &str = "\u{e27f}";
pub const MD_FIREPLACE: &str = "\u{e280}";
pub const MD_FIRST_PAGE: &str = "\u{e282}";
pub const MD_FITNESS_CENTER: &str = "\u{e283}";
pub const MD_FLAG: &str = "\u{e284}";
pub const MD_FLARE: &str = "\u{e286}";
pub const MD_FLASH_AUTO: &str = "\u{e287}";
pub const MD_FLASH_OFF: &str = "\u{e288}";
pub const MD_FLASH_ON: &str = "\u{e289}";
pub const MD_FLIGHT: &str = "\u{e28a}";
pub const MD_FLIGHT_LAND: &str = "\u{e28b}";
pub const MD_FLIGHT_TAKEOFF: &str = "\u{e28c}";
pub const MD_FLIP: &str = "\u{e28d}";
pub const MD_FLIP_CAMERA_ANDROID: &str = "\u{e28e}";
pub const MD_FLIP_CAMERA_IOS: &str = "\u{e290}";
pub const MD_FLIP_TO_BACK: &str = "\u{e292}";
pub const MD_FLIP_TO_FRONT: &str = "\u{e293}";
pub const MD_FOLDER: &str = "\u{e294}";
pub const MD_FOLDER_OPEN: &str = "\u{e296}";
pub const MD_FOLDER_SHARED: &str = "\u{e298}";
pub const MD_FOLDER_SPECIAL: &str = "\u{e29a}";
pub const MD_FONT_DOWNLOAD: &str = "\u{e29c}";
pub const MD_FORMAT_ALIGN_CENTER: &str = "\u{e29e}";
pub const MD_FORMAT_ALIGN_JUSTIFY: &str = "\u{e29f}";
pub const MD_FORMAT_ALIGN_LEFT: &str = "\u{e2a0}";
pub const MD_FORMAT_ALIGN_RIGHT: &str = "\u{e2a1}";
pub const MD_FORMAT_BOLD: &str = "\u{e2a2}";
pub const MD_FORMAT_CLEAR: &str = "\u{e2a3}";
pub const MD_FORMAT_COLOR_FILL_AFTER: &str = "\u{e2a4}";
pub const MD_FORMAT_COLOR_FILL_BEFORE: &str = "\u{e2a5}";
pub const MD_FORMAT_COLOR_RESET: &str = "\u{e2a6}";
pub const MD_FORMAT_COLOR_TEXT_AFTER: &str = "\u{e2a8}";
pub const MD_FORMAT_COLOR_TEXT_BEFORE: &str = "\u{e2a9}";
pub const MD_FORMAT_INDENT_DECREASE: &str = "\u{e2aa}";
pub const MD_FORMAT_INDENT_INCREASE: &str = "\u{e2ab}";
pub const MD_FORMAT_ITALIC: &str = "\u{e2ac}";
pub const MD_FORMAT_LINE_SPACING: &str = "\u{e2ad}";
pub const MD_FORMAT_LIST_BULLETED: &str = "\u{e2ae}";
pub const MD_FORMAT_LIST_NUMBERED: &str = "\u{e2af}";
pub const MD_FORMAT_LIST_NUMBERED_RTL: &str = "\u{e2b0}";
pub const MD_FORMAT_PAINT: &str = "\u{e2b1}";
pub const MD_FORMAT_QUOTE: &str = "\u{e2b3}";
pub const MD_FORMAT_SHAPES: &str = "\u{e2b5}";
pub const MD_FORMAT_SIZE: &str = "\u{e2b7}";
pub const MD_FORMAT_STRIKETHROUGH: &str = "\u{e2b8}";
pub const MD_FORMAT_TEXTDIRECTION_L_TO_R: &str = "\u{e2b9}";
pub const MD_FORMAT_TEXTDIRECTION_R_TO_L: &str = "\u{e2bb}";
pub const MD_FORMAT_UNDERLINED: &str = "\u{e2bd}";
pub const MD_FORUM: &str = "\u{e2be}";
pub const MD_FORWARD: &str = "\u{e2c0}";
pub const MD_FORWARD_10: &str = "\u{e2c2}";
pub const MD_FORWARD_30: &str = "\u{e2c3}";
pub const MD_FORWARD_5: &str = "\u{e2c4}";
pub const MD_FREE_BREAKFAST: &str = "\u{e2c5}";
pub const MD_FULLSCREEN: &str = "\u{e2c7}";
pub const MD_FULLSCREEN_EXIT: &str = "\u{e2c8}";
pub const MD_FUNCTIONS: &str = "\u{e2c9}";
pub const MD_G_TRANSLATE: &str = "\u{e2ca}";
pub const MD_GAMEPAD: &str = "\u{e2cb}";
pub const MD_GAMES: &str = "\u{e2cd}";
pub const MD_GAVEL: &str = "\u{e2cf}";
pub const MD_GESTURE: &str = "\u{e2d0}";
pub const MD_GET_APP: &str = "\u{e2d1}";
pub const MD_GIF: &str = "\u{e2d3}";
pub const MD_GOLF_COURSE: &str = "\u{e2d5}";
pub const MD_GPS_FIXED: &str = "\u{e2d7}";
pub const MD_GPS_NOT_FIXED: &str = "\u{e2d9}";
pub const MD_GPS_OFF: &str = "\u{e2da}";
pub const MD_GRADE: &str = "\u{e2db}";
pub const MD_GRADIENT: &str = "\u{e2dd}";
pub const MD_GRAIN: &str = "\u{e2de}";
pub const MD_GRAPHIC_EQ: &str = "\u{e2df}";
pub const MD_GREATER_THAN: &str = "\u{e2e0}";
pub const MD_GREATER_THAN_EQUAL: &str = "\u{e2e1}";
pub const MD_GRID_OFF: &str = "\u{e2e2}";
pub const MD_GRID_ON: &str = "\u{e2e4}";
pub const MD_GROUP: &str = "\u{e2e6}";
pub const MD_GROUP_ADD: &str = "\u{e2e8}";
pub const MD_GROUP_WORK: &str = "\u{e2ea}";
pub const MD_HD: &str = "\u{e2ec}";
pub const MD_HDR_OFF: &str = "\u{e2ee}";
pub const MD_HDR_ON: &str = "\u{e2ef}";
pub const MD_HDR_STRONG: &str = "\u{e2f0}";
pub const MD_HDR_WEAK: &str = "\u{e2f2}";
pub const MD_HEADSET: &str = "\u{e2f4}";
pub const MD_HEADSET_MIC: &str = "\u{e2f6}";
pub const MD_HEALING: &str = "\u{e2f8}";
pub const MD_HEARING: &str = "\u{e2fa}";
pub const MD_HEIGHT: &str = "\u{e2fb}";
pub const MD_HELP: &str = "\u{e2fc}";
pub const MD_HELP_OUTLINE: &str = "\u{e2fe}";
pub const MD_HIGH_QUALITY: &str = "\u{e2ff}";
pub const MD_HIGHLIGHT: &str = "\u{e301}";
pub const MD_HIGHLIGHT_OFF: &str = "\u{e303}";
pub const MD_HISTORY: &str = "\u{e305}";
pub const MD_HOME: &str = "\u{e306}";
pub const MD_HOME_WORK: &str = "\u{e308}";
pub const MD_HORIZONTAL_SPLIT: &str = "\u{e30a}";
pub const MD_HOT_TUB: &str = "\u{e30c}";
pub const MD_HOTEL: &str = "\u{e30d}";
pub const MD_HOURGLASS_EMPTY: &str = "\u{e30f}";
pub const MD_HOURGLASS_FULL: &str = "\u{e310}";
pub const MD_HOUSE: &str = "\u{e312}";
pub const MD_HOW_TO_REG: &str = "\u{e314}";
pub const MD_HOW_TO_VOTE: &str = "\u{e316}";
pub const MD_HTTP: &str = "\u{e318}";
pub const MD_HTTPS: &str = "\u{e319}";
pub const MD_IMAGE: &str = "\u{e31b}";
pub const MD_IMAGE_ASPECT_RATIO: &str = "\u{e31d}";
pub const MD_IMAGE_SEARCH: &str = "\u{e31f}";
pub const MD_IMPORT_CONTACTS: &str = "\u{e321}";
pub const MD_IMPORT_EXPORT: &str = "\u{e323}";
pub const MD_IMPORTANT_DEVICES: &str = "\u{e324}";
pub const MD_INBOX: &str = "\u{e326}";
pub const MD_INDETERMINATE_CHECK_BOX: &str = "\u{e328}";
pub const MD_INFO: &str = "\u{e32a}";
pub const MD_INPUT: &str = "\u{e32c}";
pub const MD_INSERT_CHART: &str = "\u{e32d}";
pub const MD_INSERT_CHART_OUTLINED: &str = "\u{e32f}";
pub const MD_INSERT_COMMENT: &str = "\u{e330}";
pub const MD_INSERT_DRIVE_FILE: &str = "\u{e332}";
pub const MD_INSERT_EMOTICON: &str = "\u{e334}";
pub const MD_INSERT_INVITATION: &str = "\u{e336}";
pub const MD_INSERT_LINK: &str = "\u{e338}";
pub const MD_INSERT_PHOTO: &str = "\u{e339}";
pub const MD_INVERT_COLORS: &str = "\u{e33b}";
pub const MD_INVERT_COLORS_OFF: &str = "\u{e33d}";
pub const MD_ISO: &str = "\u{e33f}";
pub const MD_KEYBOARD: &str = "\u{e341}";
pub const MD_KEYBOARD_ARROW_DOWN: &str = "\u{e343}";
pub const MD_KEYBOARD_ARROW_LEFT: &str = "\u{e344}";
pub const MD_KEYBOARD_ARROW_RIGHT: &str = "\u{e345}";
pub const MD_KEYBOARD_ARROW_UP: &str = "\u{e346}";
pub const MD_KEYBOARD_BACKSPACE: &str = "\u{e347}";
pub const MD_KEYBOARD_CAPSLOCK: &str = "\u{e348}";
pub const MD_KEYBOARD_HIDE: &str = "\u{e349}";
pub const MD_KEYBOARD_RETURN: &str = "\u{e34b}";
pub const MD_KEYBOARD_TAB: &str = "\u{e34c}";
pub const MD_KEYBOARD_VOICE: &str = "\u{e34d}";
pub const MD_KING_BED: &str = "\u{e34f}";
pub const MD_KITCHEN: &str = "\u{e351}";
pub const MD_LABEL: &str = "\u{e353}";
pub const MD_LABEL_IMPORTANT: &str = "\u{e355}";
pub const MD_LABEL_OFF: &str = "\u{e357}";
pub const MD_LANDSCAPE: &str = "\u{e359}";
pub const MD_LANGUAGE: &str = "\u{e35b}";
pub const MD_LAPTOP: &str = "\u{e35d}";
pub const MD_LAPTOP_CHROMEBOOK: &str = "\u{e35f}";
pub const MD_LAPTOP_MAC: &str = "\u{e361}";
pub const MD_LAPTOP_WINDOWS: &str = "\u{e363}";
pub const MD_LAST_PAGE: &str = "\u{e365}";
pub const MD_LAUNCH: &str = "\u{e366}";
pub const MD_LAYERS: &str = "\u{e367}";
pub const MD_LAYERS_CLEAR: &str = "\u{e369}";
pub const MD_LEAK_ADD: &str = "\u{e36b}";
pub const MD_LEAK_REMOVE: &str = "\u{e36c}";
pub const MD_LENS: &str = "\u{e36d}";
pub const MD_LESS_THAN: &str = "\u{e36f}";
pub const MD_LESS_THAN_EQUAL: &str = "\u{e370}";
pub const MD_LIBRARY_ADD: &str = "\u{e371}";
pub const MD_LIBRARY_BOOKS: &str = "\u{e373}";
pub const MD_LIBRARY_MUSIC: &str = "\u{e375}";
pub const MD_LIGHTBULB: &str = "\u{e377}";
pub const MD_LINE_STYLE: &str = "\u{e379}";
pub const MD_LINE_WEIGHT: &str = "\u{e37a}";
pub const MD_LINEAR_SCALE: &str = "\u{e37b}";
pub const MD_LINK: &str = "\u{e37c}";
pub const MD_LINK_OFF: &str = "\u{e37e}";
pub const MD_LINKED_CAMERA: &str = "\u{e37f}";
pub const MD_LIST: &str = "\u{e381}";
pub const MD_LIST_ALT: &str = "\u{e382}";
pub const MD_LIVE_HELP: &str = "\u{e384}";
pub const MD_LIVE_TV: &str = "\u{e386}";
pub const MD_LOCAL_ACTIVITY: &str = "\u{e388}";
pub const MD_LOCAL_AIRPORT: &str = "\u{e38a}";
pub const MD_LOCAL_ATM: &str = "\u{e38b}";
pub const MD_LOCAL_BAR: &str = "\u{e38d}";
pub const MD_LOCAL_CAFE: &str = "\u{e38f}";
pub const MD_LOCAL_CAR_WASH: &str = "\u{e391}";
pub const MD_LOCAL_CONVENIENCE_STORE: &str = "\u{e393}";
pub const MD_LOCAL_DINING: &str = "\u{e395}";
pub const MD_LOCAL_DRINK: &str = "\u{e396}";
pub const MD_LOCAL_FLORIST: &str = "\u{e398}";
pub const MD_LOCAL_GAS_STATION: &str = "\u{e39a}";
pub const MD_LOCAL_GROCERY_STORE: &str = "\u{e39c}";
pub const MD_LOCAL_HOSPITAL: &str = "\u{e39e}";
pub const MD_LOCAL_HOTEL: &str = "\u{e3a0}";
pub const MD_LOCAL_LAUNDRY_SERVICE: &str = "\u{e3a2}";
pub const MD_LOCAL_LIBRARY: &str = "\u{e3a4}";
pub const MD_LOCAL_MALL: &str = "\u{e3a6}";
pub const MD_LOCAL_MOVIES: &str = "\u{e3a8}";
pub const MD_LOCAL_OFFER: &str = "\u{e3aa}";
pub const MD_LOCAL_PARKING: &str = "\u{e3ac}";
pub const MD_LOCAL_PHARMACY: &str = "\u{e3ad}";
pub const MD_LOCAL_PHONE: &str = "\u{e3af}";
pub const MD_LOCAL_PIZZA: &str = "\u{e3b1}";
pub const MD_LOCAL_PLAY: &str = "\u{e3b3}";
pub const MD_LOCAL_POST_OFFICE: &str = "\u{e3b5}";
pub const MD_LOCAL_PRINTSHOP: &str = "\u{e3b7}";
pub const MD_LOCAL_SEE: &str = "\u{e3b9}";
pub const MD_LOCAL_SHIPPING: &str = "\u{e3bb}";
pub const MD_LOCAL_TAXI: &str = "\u{e3bd}";
pub const MD_LOCATION_CITY: &str = "\u{e3bf}";
pub const MD_LOCATION_DISABLED: &str = "\u{e3c0}";
pub const MD_LOCATION_OFF: &str = "\u{e3c1}";
pub const MD_LOCATION_ON: &str = "\u{e3c2}";
pub const MD_LOCATION_SEARCHING: &str = "\u{e3c4}";
pub const MD_LOCK: &str = "\u{e3c5}";
pub const MD_LOCK_OPEN: &str = "\u{e3c7}";
pub const MD_LOG_IN: &str = "\u{e3c9}";
pub const MD_LOG_OUT: &str = "\u{e3ca}";
pub const MD_LOOKS: &str = "\u{e3cb}";
pub const MD_LOOKS_3: &str = "\u{e3cc}";
pub const MD_LOOKS_4: &str = "\u{e3ce}";
pub const MD_LOOKS_5: &str = "\u{e3d0}";
pub const MD_LOOKS_6: &str = "\u{e3d2}";
pub const MD_LOOKS_ONE: &str = "\u{e3d4}";
pub const MD_LOOKS_TWO: &str = "\u{e3d6}";
pub const MD_LOOP: &str = "\u{e3d8}";
pub const MD_LOUPE: &str = "\u{e3d9}";
pub const MD_LOW_PRIORITY: &str = "\u{e3db}";
pub const MD_LOYALTY: &str = "\u{e3dc}";
pub const MD_MAIL: &str = "\u{e3de}";
pub const MD_MAIL_OUTLINE: &str = "\u{e3e0}";
pub const MD_MAP: &str = "\u{e3e1}";
pub const MD_MARKUNREAD: &str = "\u{e3e3}";
pub const MD_MARKUNREAD_MAILBOX: &str = "\u{e3e5}";
pub const MD_MAXIMIZE: &str = "\u{e3e7}";
pub const MD_MEETING_ROOM: &str = "\u{e3e8}";
pub const MD_MEMORY: &str = "\u{e3ea}";
pub const MD_MENU: &str = "\u{e3ec}";
pub const MD_MENU_BOOK: &str = "\u{e3ed}";
pub const MD_MENU_OPEN: &str = "\u{e3ef}";
pub const MD_MERGE_TYPE: &str = "\u{e3f0}";
pub const MD_MESSAGE: &str = "\u{e3f1}";
pub const MD_MIC: &str = "\u{e3f3}";
pub const MD_MIC_NONE: &str = "\u{e3f5}";
pub const MD_MIC_OFF: &str = "\u{e3f7}";
pub const MD_MINIMIZE: &str = "\u{e3f9}";
pub const MD_MINUS: &str = "\u{e3fa}";
pub const MD_MISSED_VIDEO_CALL: &str = "\u{e3fb}";
pub const MD_MMS: &str = "\u{e3fd}";
pub const MD_MOBILE_FRIENDLY: &str = "\u{e3ff}";
pub const MD_MOBILE_OFF: &str = "\u{e400}";
pub const MD_MOBILE_SCREEN_SHARE: &str = "\u{e401}";
pub const MD_MODE_COMMENT: &str = "\u{e403}";
pub const MD_MONETIZATION_ON: &str = "\u{e405}";
pub const MD_MONEY: &str = "\u{e407}";
pub const MD_MONEY_OFF: &str = "\u{e409}";
pub const MD_MONOCHROME_PHOTOS: &str = "\u{e40a}";
pub const MD_MOOD: &str = "\u{e40c}";
pub const MD_MOOD_BAD: &str = "\u{e40e}";
pub const MD_MORE: &str = "\u{e410}";
pub const MD_MORE_HORIZ: &str = "\u{e412}";
pub const MD_MORE_VERT: &str = "\u{e413}";
pub const MD_MOTORCYCLE: &str = "\u{e414}";
pub const MD_MOUSE: &str = "\u{e416}";
pub const MD_MOVE_TO_INBOX: &str = "\u{e418}";
pub const MD_MOVIE: &str = "\u{e41a}";
pub const MD_MOVIE_CREATION: &str = "\u{e41c}";
pub const MD_MOVIE_FILTER: &str = "\u{e41e}";
pub const MD_MULTILINE_CHART: &str = "\u{e420}";
pub const MD_MUSEUM: &str = "\u{e421}";
pub const MD_MUSIC_NOTE: &str = "\u{e423}";
pub const MD_MUSIC_OFF: &str = "\u{e425}";
pub const MD_MUSIC_VIDEO: &str = "\u{e427}";
pub const MD_MY_LOCATION: &str = "\u{e429}";
pub const MD_NATURE: &str = "\u{e42b}";
pub const MD_NATURE_PEOPLE: &str = "\u{e42d}";
pub const MD_NAVIGATE_BEFORE: &str = "\u{e42f}";
pub const MD_NAVIGATE_NEXT: &str = "\u{e430}";
pub const MD_NAVIGATION: &str = "\u{e431}";
pub const MD_NEAR_ME: &str = "\u{e433}";
pub const MD_NETWORK_CELL_AFTER: &str = "\u{e435}";
pub const MD_NETWORK_CELL_BEFORE: &str = "\u{e436}";
pub const MD_NETWORK_CHECK: &str = "\u{e437}";
pub const MD_NETWORK_LOCKED: &str = "\u{e438}";
pub const MD_NETWORK_WIFI_AFTER: &str = "\u{e439}";
pub const MD_NETWORK_WIFI_BEFORE: &str = "\u{e43a}";
pub const MD_NEW_RELEASES: &str = "\u{e43b}";
pub const MD_NEXT_WEEK: &str = "\u{e43d}";
pub const MD_NFC: &str = "\u{e43f}";
pub const MD_NIGHTS_STAY: &str = "\u{e440}";
pub const MD_NO_ENCRYPTION: &str = "\u{e442}";
pub const MD_NO_MEETING_ROOM: &str = "\u{e444}";
pub const MD_NO_SIM: &str = "\u{e446}";
pub const MD_NOT_EQUAL: &str = "\u{e448}";
pub const MD_NOT_INTERESTED: &str = "\u{e449}";
pub const MD_NOT_LISTED_LOCATION: &str = "\u{e44a}";
pub const MD_NOTE: &str = "\u{e44c}";
pub const MD_NOTE_ADD: &str = "\u{e44e}";
pub const MD_NOTES: &str = "\u{e450}";
pub const MD_NOTIFICATION_IMPORTANT: &str = "\u{e451}";
pub const MD_NOTIFICATIONS: &str = "\u{e453}";
pub const MD_NOTIFICATIONS_ACTIVE: &str = "\u{e455}";
pub const MD_NOTIFICATIONS_NONE: &str = "\u{e457}";
pub const MD_NOTIFICATIONS_OFF: &str = "\u{e459}";
pub const MD_NOTIFICATIONS_PAUSED: &str = "\u{e45b}";
pub const MD_OFFLINE_BOLT: &str = "\u{e45d}";
pub const MD_OFFLINE_PIN: &str = "\u{e45f}";
pub const MD_ONDEMAND_VIDEO: &str = "\u{e461}";
pub const MD_OPACITY: &str = "\u{e463}";
pub const MD_OPEN_IN_BROWSER: &str = "\u{e465}";
pub const MD_OPEN_IN_NEW: &str = "\u{e466}";
pub const MD_OPEN_WITH: &str = "\u{e467}";
pub const MD_OUTDOOR_GRILL: &str = "\u{e468}";
pub const MD_OUTLINED_FLAG: &str = "\u{e46a}";
pub const MD_PAGES: &str = "\u{e46b}";
pub const MD_PAGEVIEW: &str = "\u{e46d}";
pub const MD_PALETTE: &str = "\u{e46f}";
pub const MD_PAN_TOOL: &str = "\u{e471}";
pub const MD_PANORAMA: &str = "\u{e473}";
pub const MD_PANORAMA_FISH_EYE: &str = "\u{e475}";
pub const MD_PANORAMA_HORIZONTAL: &str = "\u{e477}";
pub const MD_PANORAMA_VERTICAL: &str = "\u{e479}";
pub const MD_PANORAMA_WIDE_ANGLE: &str = "\u{e47b}";
pub const MD_PARTY_MODE: &str = "\u{e47d}";
pub const MD_PAUSE: &str = "\u{e47f}";
pub const MD_PAUSE_CIRCLE_FILLED: &str = "\u{e480}";
pub const MD_PAUSE_CIRCLE_OUTLINE: &str = "\u{e482}";
pub const MD_PAUSE_PRESENTATION: &str = "\u{e483}";
pub const MD_PAYMENT: &str = "\u{e485}";
pub const MD_PEOPLE: &str = "\u{e487}";
pub const MD_PEOPLE_ALT: &str = "\u{e489}";
pub const MD_PEOPLE_OUTLINE: &str = "\u{e48b}";
pub const MD_PERCENTAGE: &str = "\u{e48d}";
pub const MD_PERM_CAMERA_MIC: &str = "\u{e48f}";
pub const MD_PERM_CONTACT_CALENDAR: &str = "\u{e491}";
pub const MD_PERM_DATA_SETTING: &str = "\u{e493}";
pub const MD_PERM_DEVICE_INFORMATION: &str = "\u{e494}";
pub const MD_PERM_IDENTITY: &str = "\u{e496}";
pub const MD_PERM_MEDIA: &str = "\u{e498}";
pub const MD_PERM_PHONE_MSG: &str = "\u{e49a}";
pub const MD_PERM_SCAN_WIFI: &str = "\u{e49c}";
pub const MD_PERSON: &str = "\u{e49e}";
pub const MD_PERSON_ADD: &str = "\u{e4a0}";
pub const MD_PERSON_ADD_DISABLED: &str = "\u{e4a2}";
pub const MD_PERSON_OUTLINE: &str = "\u{e4a4}";
pub const MD_PERSON_PIN: &str = "\u{e4a6}";
pub const MD_PERSON_PIN_CIRCLE: &str = "\u{e4a8}";
pub const MD_PERSONAL_VIDEO: &str = "\u{e4aa}";
pub const MD_PETS: &str = "\u{e4ac}";
pub const MD_PHONE: &str = "\u{e4ad}";
pub const MD_PHONE_ANDROID: &str = "\u{e4af}";
pub const MD_PHONE_BLUETOOTH_SPEAKER: &str = "\u{e4b1}";
pub const MD_PHONE_CALLBACK: &str = "\u{e4b3}";
pub const MD_PHONE_DISABLED: &str = "\u{e4b5}";
pub const MD_PHONE_ENABLED: &str = "\u{e4b6}";
pub const MD_PHONE_FORWARDED: &str = "\u{e4b7}";
pub const MD_PHONE_IN_TALK: &str = "\u{e4b9}";
pub const MD_PHONE_IPHONE: &str = "\u{e4bb}";
pub const MD_PHONE_LOCKED: &str = "\u{e4bd}";
pub const MD_PHONE_MISSED: &str = "\u{e4bf}";
pub const MD_PHONE_PAUSED: &str = "\u{e4c1}";
pub const MD_PHONELINK: &str = "\u{e4c3}";
pub const MD_PHONELINK_ERASE: &str = "\u{e4c5}";
pub const MD_PHONELINK_LOCK: &str = "\u{e4c6}";
pub const MD_PHONELINK_OFF: &str = "\u{e4c7}";
pub const MD_PHONELINK_RING: &str = "\u{e4c9}";
pub const MD_PHONELINK_SETUP: &str = "\u{e4cb}";
pub const MD_PHOTO: &str = "\u{e4cc}";
pub const MD_PHOTO_ALBUM: &str = "\u{e4ce}";
pub const MD_PHOTO_CAMERA: &str = "\u{e4d0}";
pub const MD_PHOTO_FILTER: &str = "\u{e4d2}";
pub const MD_PHOTO_LIBRARY: &str = "\u{e4d3}";
pub const MD_PHOTO_SIZE_SELECT_ACTUAL: &str = "\u{e4d5}";
pub const MD_PHOTO_SIZE_SELECT_LARGE: &str = "\u{e4d7}";
pub const MD_PHOTO_SIZE_SELECT_SMALL: &str = "\u{e4d8}";
pub const MD_PICTURE_AS_PDF: &str = "\u{e4d9}";
pub const MD_PICTURE_IN_PICTURE: &str = "\u{e4db}";
pub const MD_PICTURE_IN_PICTURE_ALT: &str = "\u{e4dd}";
pub const MD_PIE_CHART: &str = "\u{e4df}";
pub const MD_PIN: &str = "\u{e4e1}";
pub const MD_PIN_DROP: &str = "\u{e4e3}";
pub const MD_PIN_OFF: &str = "\u{e4e5}";
pub const MD_PLACE: &str = "\u{e4e7}";
pub const MD_PLAY_ARROW: &str = "\u{e4e9}";
pub const MD_PLAY_CIRCLE_FILLED: &str = "\u{e4eb}";
pub const MD_PLAY_CIRCLE_FILLED_WHITE: &str = "\u{e4ed}";
pub const MD_PLAY_CIRCLE_OUTLINE: &str = "\u{e4ef}";
pub const MD_PLAY_FOR_WORK: &str = "\u{e4f0}";
pub const MD_PLAYLIST_ADD: &str = "\u{e4f1}";
pub const MD_PLAYLIST_ADD_CHECK: &str = "\u{e4f2}";
pub const MD_PLAYLIST_PLAY: &str = "\u{e4f3}";
pub const MD_PLUS: &str = "\u{e4f4}";
pub const MD_PLUS_MINUS: &str = "\u{e4f5}";
pub const MD_PLUS_MINUS_ALT: &str = "\u{e4f6}";
pub const MD_PLUS_ONE: &str = "\u{e4f7}";
pub const MD_POLICY: &str = "\u{e4f8}";
pub const MD_POLL: &str = "\u{e4fa}";
pub const MD_POLYMER: &str = "\u{e4fc}";
pub const MD_POOL: &str = "\u{e4fd}";
pub const MD_PORTABLE_WIFI_OFF: &str = "\u{e4ff}";
pub const MD_PORTRAIT: &str = "\u{e500}";
pub const MD_POST_ADD: &str = "\u{e502}";
pub const MD_POWER: &str = "\u{e503}";
pub const MD_POWER_INPUT: &str = "\u{e505}";
pub const MD_POWER_OFF: &str = "\u{e506}";
pub const MD_POWER_SETTINGS_NEW: &str = "\u{e508}";
pub const MD_PREGNANT_WOMAN: &str = "\u{e509}";
pub const MD_PRESENT_TO_ALL: &str = "\u{e50a}";
pub const MD_PRINT: &str = "\u{e50c}";
pub const MD_PRINT_DISABLED: &str = "\u{e50e}";
pub const MD_PRIORITY_HIGH: &str = "\u{e510}";
pub const MD_PUBLIC: &str = "\u{e511}";
pub const MD_PUBLISH: &str = "\u{e513}";
pub const MD_QRCODE: &str = "\u{e515}";
pub const MD_QUERY_BUILDER: &str = "\u{e517}";
pub const MD_QUESTION_ANSWER: &str = "\u{e519}";
pub const MD_QUEUE: &str = "\u{e51b}";
pub const MD_QUEUE_MUSIC: &str = "\u{e51d}";
pub const MD_QUEUE_PLAY_NEXT: &str = "\u{e51f}";
pub const MD_RADIO: &str = "\u{e520}";
pub const MD_RADIO_BUTTON_CHECKED: &str = "\u{e522}";
pub const MD_RADIO_BUTTON_UNCHECKED: &str = "\u{e523}";
pub const MD_RATE_REVIEW: &str = "\u{e524}";
pub const MD_RECEIPT: &str = "\u{e526}";
pub const MD_RECENT_ACTORS: &str = "\u{e528}";
pub const MD_RECORD_VOICE_OVER: &str = "\u{e52a}";
pub const MD_REDEEM: &str = "\u{e52c}";
pub const MD_REDO: &str = "\u{e52e}";
pub const MD_REFRESH: &str = "\u{e52f}";
pub const MD_REMOVE: &str = "\u{e530}";
pub const MD_REMOVE_CIRCLE: &str = "\u{e531}";
pub const MD_REMOVE_CIRCLE_OUTLINE: &str = "\u{e533}";
pub const MD_REMOVE_FROM_QUEUE: &str = "\u{e534}";
pub const MD_REMOVE_RED_EYE: &str = "\u{e536}";
pub const MD_REMOVE_SHOPPING_CART: &str = "\u{e538}";
pub const MD_REORDER: &str = "\u{e53a}";
pub const MD_REPEAT: &str = "\u{e53b}";
pub const MD_REPEAT_ONE: &str = "\u{e53c}";
pub const MD_REPLAY: &str = "\u{e53d}";
pub const MD_REPLAY_10: &str = "\u{e53e}";
pub const MD_REPLAY_30: &str = "\u{e53f}";
pub const MD_REPLAY_5: &str = "\u{e540}";
pub const MD_REPLY: &str = "\u{e541}";
pub const MD_REPLY_ALL: &str = "\u{e542}";
pub const MD_REPORT: &str = "\u{e543}";
pub const MD_REPORT_OFF: &str = "\u{e545}";
pub const MD_REPORT_PROBLEM: &str = "\u{e547}";
pub const MD_RESTAURANT: &str = "\u{e549}";
pub const MD_RESTAURANT_MENU: &str = "\u{e54a}";
pub const MD_RESTORE: &str = "\u{e54b}";
pub const MD_RESTORE_FROM_TRASH: &str = "\u{e54c}";
pub const MD_RESTORE_PAGE: &str = "\u{e54e}";
pub const MD_RING_VOLUME: &str = "\u{e550}";
pub const MD_ROCKET: &str = "\u{e552}";
pub const MD_ROOM: &str = "\u{e554}";
pub const MD_ROOM_SERVICE: &str = "\u{e556}";
pub const MD_ROTATE_90_DEGREES_CCW: &str = "\u{e558}";
pub const MD_ROTATE_LEFT: &str = "\u{e55a}";
pub const MD_ROTATE_RIGHT: &str = "\u{e55b}";
pub const MD_ROUNDED_CORNER: &str = "\u{e55c}";
pub const MD_ROUTER: &str = "\u{e55d}";
pub const MD_ROWING: &str = "\u{e55f}";
pub const MD_RSS_FEED: &str = "\u{e560}";
pub const MD_RV_HOOKUP: &str = "\u{e561}";
pub const MD_SATELLITE: &str = "\u{e563}";
pub const MD_SAVE: &str = "\u{e565}";
pub const MD_SAVE_ALT: &str = "\u{e567}";
pub const MD_SCANNER: &str = "\u{e568}";
pub const MD_SCATTER_PLOT: &str = "\u{e56a}";
pub const MD_SCHEDULE: &str = "\u{e56c}";
pub const MD_SCHOOL: &str = "\u{e56e}";
pub const MD_SCORE: &str = "\u{e570}";
pub const MD_SCREEN_LOCK_LANDSCAPE: &str = "\u{e572}";
pub const MD_SCREEN_LOCK_PORTRAIT: &str = "\u{e574}";
pub const MD_SCREEN_LOCK_ROTATION: &str = "\u{e576}";
pub const MD_SCREEN_ROTATION: &str = "\u{e577}";
pub const MD_SCREEN_SHARE: &str = "\u{e579}";
pub const MD_SD_CARD: &str = "\u{e57b}";
pub const MD_SD_STORAGE: &str = "\u{e57d}";
pub const MD_SEARCH: &str = "\u{e57f}";
pub const MD_SECURITY: &str = "\u{e580}";
pub const MD_SELECT_ALL: &str = "\u{e582}";
pub const MD_SEND: &str = "\u{e583}";
pub const MD_SENTIMENT_DISSATISFIED: &str = "\u{e585}";
pub const MD_SENTIMENT_NEUTRAL: &str = "\u{e587}";
pub const MD_SENTIMENT_SATISFIED: &str = "\u{e589}";
pub const MD_SENTIMENT_SATISFIED_ALT: &str = "\u{e58b}";
pub const MD_SENTIMENT_SLIGHTLY_DISSATISFIED: &str = "\u{e58d}";
pub const MD_SENTIMENT_VERY_DISSATISFIED: &str = "\u{e58f}";
pub const MD_SENTIMENT_VERY_SATISFIED: &str = "\u{e591}";
pub const MD_SETTINGS: &str = "\u{e593}";
pub const MD_SETTINGS_APPLICATIONS: &str = "\u{e595}";
pub const MD_SETTINGS_BACKUP_RESTORE: &str = "\u{e597}";
pub const MD_SETTINGS_BLUETOOTH: &str = "\u{e598}";
pub const MD_SETTINGS_BRIGHTNESS: &str = "\u{e599}";
pub const MD_SETTINGS_CELL: &str = "\u{e59b}";
pub const MD_SETTINGS_ETHERNET: &str = "\u{e59d}";
pub const MD_SETTINGS_INPUT_ANTENNA: &str = "\u{e59e}";
pub const MD_SETTINGS_INPUT_COMPONENT: &str = "\u{e59f}";
pub const MD_SETTINGS_INPUT_COMPOSITE: &str = "\u{e5a1}";
pub const MD_SETTINGS_INPUT_HDMI: &str = "\u{e5a3}";
pub const MD_SETTINGS_INPUT_SVIDEO: &str = "\u{e5a5}";
pub const MD_SETTINGS_OVERSCAN: &str = "\u{e5a7}";
pub const MD_SETTINGS_PHONE: &str = "\u{e5a9}";
pub const MD_SETTINGS_POWER: &str = "\u{e5ab}";
pub const MD_SETTINGS_REMOTE: &str = "\u{e5ac}";
pub const MD_SETTINGS_SYSTEM_DAYDREAM: &str = "\u{e5ae}";
pub const MD_SETTINGS_VOICE: &str = "\u{e5b0}";
pub const MD_SHARE: &str = "\u{e5b2}";
pub const MD_SHOP: &str = "\u{e5b4}";
pub const MD_SHOP_TWO: &str = "\u{e5b6}";
pub const MD_SHOPPING_BASKET: &str = "\u{e5b8}";
pub const MD_SHOPPING_CART: &str = "\u{e5ba}";
pub const MD_SHORT_TEXT: &str = "\u{e5bc}";
pub const MD_SHOW_CHART: &str = "\u{e5bd}";
pub const MD_SHUFFLE: &str = "\u{e5be}";
pub const MD_SHUTTER_SPEED: &str = "\u{e5bf}";
pub const MD_SIGNAL_CELLULAR_0_BAR_AFTER: &str = "\u{e5c1}";
pub const MD_SIGNAL_CELLULAR_0_BAR_BEFORE: &str = "\u{e5c2}";
pub const MD_SIGNAL_CELLULAR_1_BAR_AFTER: &str = "\u{e5c3}";
pub const MD_SIGNAL_CELLULAR_1_BAR_BEFORE: &str = "\u{e5c4}";
pub const MD_SIGNAL_CELLULAR_2_BAR_AFTER: &str = "\u{e5c5}";
pub const MD_SIGNAL_CELLULAR_2_BAR_BEFORE: &str = "\u{e5c6}";
pub const MD_SIGNAL_CELLULAR_3_BAR_AFTER: &str = "\u{e5c7}";
pub const MD_SIGNAL_CELLULAR_3_BAR_BEFORE: &str = "\u{e5c8}";
pub const MD_SIGNAL_CELLULAR_4_BAR: &str = "\u{e5c9}";
pub const MD_SIGNAL_CELLULAR_ALT: &str = "\u{e5ca}";
pub const MD_SIGNAL_CELLULAR_CONNECTED_NO_INTERNET_0_BAR_AFTER: &str = "\u{e5cb}";
pub const MD_SIGNAL_CELLULAR_CONNECTED_NO_INTERNET_0_BAR_BEFORE: &str = "\u{e5cc}";
pub const MD_SIGNAL_CELLULAR_CONNECTED_NO_INTERNET_1_BAR_AFTER: &str = "\u{e5cd}";
pub const MD_SIGNAL_CELLULAR_CONNECTED_NO_INTERNET_1_BAR_BEFORE: &str = "\u{e5ce}";
pub const MD_SIGNAL_CELLULAR_CONNECTED_NO_INTERNET_2_BAR_AFTER: &str = "\u{e5cf}";
pub const MD_SIGNAL_CELLULAR_CONNECTED_NO_INTERNET_2_BAR_BEFORE: &str = "\u{e5d0}";
pub const MD_SIGNAL_CELLULAR_CONNECTED_NO_INTERNET_3_BAR_AFTER: &str = "\u{e5d1}";
pub const MD_SIGNAL_CELLULAR_CONNECTED_NO_INTERNET_3_BAR_BEFORE: &str = "\u{e5d2}";
pub const MD_SIGNAL_CELLULAR_CONNECTED_NO_INTERNET_4_BAR: &str = "\u{e5d3}";
pub const MD_SIGNAL_CELLULAR_NO_SIM: &str = "\u{e5d4}";
pub const MD_SIGNAL_CELLULAR_NULL: &str = "\u{e5d6}";
pub const MD_SIGNAL_CELLULAR_OFF: &str = "\u{e5d7}";
pub const MD_SIGNAL_WIFI_0_BAR_AFTER: &str = "\u{e5d8}";
pub const MD_SIGNAL_WIFI_0_BAR_BEFORE: &str = "\u{e5d9}";
pub const MD_SIGNAL_WIFI_1_BAR_AFTER: &str = "\u{e5da}";
pub const MD_SIGNAL_WIFI_1_BAR_BEFORE: &str = "\u{e5db}";
pub const MD_SIGNAL_WIFI_1_BAR_LOCK_AFTER: &str = "\u{e5dc}";
pub const MD_SIGNAL_WIFI_1_BAR_LOCK_BEFORE: &str = "\u{e5dd}";
pub const MD_SIGNAL_WIFI_2_BAR_AFTER: &str = "\u{e5de}";
pub const MD_SIGNAL_WIFI_2_BAR_BEFORE: &str = "\u{e5df}";
pub const MD_SIGNAL_WIFI_2_BAR_LOCK_AFTER: &str = "\u{e5e0}";
pub const MD_SIGNAL_WIFI_2_BAR_LOCK_BEFORE: &str = "\u{e5e1}";
pub const MD_SIGNAL_WIFI_3_BAR_AFTER: &str = "\u{e5e2}";
pub const MD_SIGNAL_WIFI_3_BAR_BEFORE: &str = "\u{e5e3}";
pub const MD_SIGNAL_WIFI_3_BAR_LOCK_AFTER: &str = "\u{e5e4}";
pub const MD_SIGNAL_WIFI_3_BAR_LOCK_BEFORE: &str = "\u{e5e5}";
pub const MD_SIGNAL_WIFI_4_BAR: &str = "\u{e5e6}";
pub const MD_SIGNAL_WIFI_4_BAR_LOCK: &str = "\u{e5e7}";
pub const MD_SIGNAL_WIFI_OFF: &str = "\u{e5e8}";
pub const MD_SIM_CARD: &str = "\u{e5e9}";
pub const MD_SIM_CARD_ALERT: &str = "\u{e5eb}";
pub const MD_SINGLE_BED: &str = "\u{e5ed}";
pub const MD_SKIP_NEXT: &str = "\u{e5ef}";
pub const MD_SKIP_PREVIOUS: &str = "\u{e5f1}";
pub const MD_SLIDESHOW: &str = "\u{e5f3}";
pub const MD_SLOW_MOTION_VIDEO: &str = "\u{e5f5}";
pub const MD_SMARTPHONE: &str = "\u{e5f6}";
pub const MD_SMOKE_FREE: &str = "\u{e5f8}";
pub const MD_SMOKING_ROOMS: &str = "\u{e5f9}";
pub const MD_SMS: &str = "\u{e5fb}";
pub const MD_SMS_FAILED: &str = "\u{e5fd}";
pub const MD_SNOOZE: &str = "\u{e5ff}";
pub const MD_SORT: &str = "\u{e600}";
pub const MD_SORT_BY_ALPHA: &str = "\u{e601}";
pub const MD_SPA: &str = "\u{e602}";
pub const MD_SPACE_BAR: &str = "\u{e604}";
pub const MD_SPEAKER: &str = "\u{e605}";
pub const MD_SPEAKER_GROUP: &str = "\u{e607}";
pub const MD_SPEAKER_NOTES: &str = "\u{e609}";
pub const MD_SPEAKER_NOTES_OFF: &str = "\u{e60b}";
pub const MD_SPEAKER_PHONE: &str = "\u{e60d}";
pub const MD_SPEED: &str = "\u{e60f}";
pub const MD_SPELLCHECK: &str = "\u{e610}";
pub const MD_SPORTS: &str = "\u{e611}";
pub const MD_SPORTS_BASEBALL: &str = "\u{e612}";
pub const MD_SPORTS_BASKETBALL: &str = "\u{e614}";
pub const MD_SPORTS_CRICKET: &str = "\u{e616}";
pub const MD_SPORTS_ESPORTS: &str = "\u{e618}";
pub const MD_SPORTS_FOOTBALL: &str = "\u{e61a}";
pub const MD_SPORTS_GOLF: &str = "\u{e61c}";
pub const MD_SPORTS_HANDBALL: &str = "\u{e61e}";
pub const MD_SPORTS_HOCKEY: &str = "\u{e61f}";
pub const MD_SPORTS_KABADDI: &str = "\u{e620}";
pub const MD_SPORTS_MMA: &str = "\u{e621}";
pub const MD_SPORTS_MOTORSPORTS: &str = "\u{e623}";
pub const MD_SPORTS_RUGBY: &str = "\u{e625}";
pub const MD_SPORTS_SOCCER: &str = "\u{e627}";
pub const MD_SPORTS_TENNIS: &str = "\u{e629}";
pub const MD_SPORTS_VOLLEYBALL: &str = "\u{e62a}";
pub const MD_SQUARE_FOOT: &str = "\u{e62c}";
pub const MD_STAR: &str = "\u{e62e}";
pub const MD_STAR_BORDER: &str = "\u{e630}";
pub const MD_STAR_HALF: &str = "\u{e631}";
pub const MD_STAR_RATE: &str = "\u{e632}";
pub const MD_STARS: &str = "\u{e633}";
pub const MD_STAY_CURRENT_LANDSCAPE: &str = "\u{e635}";
pub const MD_STAY_CURRENT_PORTRAIT: &str = "\u{e637}";
pub const MD_STAY_PRIMARY_LANDSCAPE: &str = "\u{e639}";
pub const MD_STAY_PRIMARY_PORTRAIT: &str = "\u{e63b}";
pub const MD_STOP: &str = "\u{e63d}";
pub const MD_STOP_CIRCLE: &str = "\u{e63f}";
pub const MD_STOP_SCREEN_SHARE: &str = "\u{e641}";
pub const MD_STORAGE: &str = "\u{e643}";
pub const MD_STORE: &str = "\u{e644}";
pub const MD_STORE_MALL_DIRECTORY: &str = "\u{e646}";
pub const MD_STOREFRONT: &str = "\u{e648}";
pub const MD_STRAIGHTEN: &str = "\u{e64a}";
pub const MD_STREETVIEW: &str = "\u{e64c}";
pub const MD_STRIKETHROUGH_S: &str = "\u{e64d}";
pub const MD_STYLE: &str = "\u{e64e}";
pub const MD_SUBDIRECTORY_ARROW_LEFT: &str = "\u{e650}";
pub const MD_SUBDIRECTORY_ARROW_RIGHT: &str = "\u{e651}";
pub const MD_SUBJECT: &str = "\u{e652}";
pub const MD_SUBSCRIPTIONS: &str = "\u{e653}";
pub const MD_SUBTITLES: &str = "\u{e655}";
pub const MD_SUBWAY: &str = "\u{e657}";
pub const MD_SUPERVISED_USER_CIRCLE: &str = "\u{e659}";
pub const MD_SUPERVISOR_ACCOUNT: &str = "\u{e65b}";
pub const MD_SURROUND_SOUND: &str = "\u{e65d}";
pub const MD_SWAP_CALLS: &str = "\u{e65f}";
pub const MD_SWAP_HORIZ: &str = "\u{e660}";
pub const MD_SWAP_HORIZONTAL_CIRCLE: &str = "\u{e661}";
pub const MD_SWAP_VERT: &str = "\u{e663}";
pub const MD_SWAP_VERTICAL_CIRCLE: &str = "\u{e664}";
pub const MD_SWITCH_CAMERA: &str = "\u{e666}";
pub const MD_SWITCH_VIDEO: &str = "\u{e668}";
pub const MD_SYNC: &str = "\u{e66a}";
pub const MD_SYNC_ALT: &str = "\u{e66b}";
pub const MD_SYNC_DISABLED: &str = "\u{e66c}";
pub const MD_SYNC_PROBLEM: &str = "\u{e66d}";
pub const MD_SYSTEM_UPDATE: &str = "\u{e66e}";
pub const MD_SYSTEM_UPDATE_ALT: &str = "\u{e670}";
pub const MD_TAB: &str = "\u{e671}";
pub const MD_TAB_UNSELECTED: &str = "\u{e672}";
pub const MD_TABLE_CHART: &str = "\u{e673}";
pub const MD_TABLET: &str = "\u{e675}";
pub const MD_TABLET_ANDROID: &str = "\u{e677}";
pub const MD_TABLET_MAC: &str = "\u{e679}";
pub const MD_TAG_FACES: &str = "\u{e67b}";
pub const MD_TAP_AND_PLAY: &str = "\u{e67d}";
pub const MD_TERRAIN: &str = "\u{e67e}";
pub const MD_TEXT_FIELDS: &str = "\u{e680}";
pub const MD_TEXT_FORMAT: &str = "\u{e681}";
pub const MD_TEXT_ROTATE_UP: &str = "\u{e682}";
pub const MD_TEXT_ROTATE_VERTICAL: &str = "\u{e683}";
pub const MD_TEXT_ROTATION_ANGLEDOWN: &str = "\u{e684}";
pub const MD_TEXT_ROTATION_ANGLEUP: &str = "\u{e685}";
pub const MD_TEXT_ROTATION_DOWN: &str = "\u{e686}";
pub const MD_TEXT_ROTATION_NONE: &str = "\u{e687}";
pub const MD_TEXTSMS: &str = "\u{e688}";
pub const MD_TEXTURE: &str = "\u{e68a}";
pub const MD_THEATERS: &str = "\u{e68b}";
pub const MD_THUMB_DOWN: &str = "\u{e68d}";
pub const MD_THUMB_DOWN_ALT: &str = "\u{e68f}";
pub const MD_THUMB_UP: &str = "\u{e691}";
pub const MD_THUMB_UP_ALT: &str = "\u{e693}";
pub const MD_THUMBS_UP_DOWN: &str = "\u{e695}";
pub const MD_TIME_TO_LEAVE: &str = "\u{e697}";
pub const MD_TIMELAPSE: &str = "\u{e699}";
pub const MD_TIMELINE: &str = "\u{e69b}";
pub const MD_TIMER: &str = "\u{e69c}";
pub const MD_TIMER_10: &str = "\u{e69e}";
pub const MD_TIMER_3: &str = "\u{e69f}";
pub const MD_TIMER_OFF: &str = "\u{e6a0}";
pub const MD_TITLE: &str = "\u{e6a2}";
pub const MD_TOC: &str = "\u{e6a3}";
pub const MD_TODAY: &str = "\u{e6a4}";
pub const MD_TOGGLE_OFF: &str = "\u{e6a6}";
pub const MD_TOGGLE_ON: &str = "\u{e6a8}";
pub const MD_TOLL: &str = "\u{e6aa}";
pub const MD_TONALITY: &str = "\u{e6ac}";
pub const MD_TOUCH_APP: &str = "\u{e6ae}";
pub const MD_TOYS: &str = "\u{e6b0}";
pub const MD_TRACK_CHANGES: &str = "\u{e6b2}";
pub const MD_TRAFFIC: &str = "\u{e6b3}";
pub const MD_TRAIN: &str = "\u{e6b5}";
pub const MD_TRAM: &str = "\u{e6b7}";
pub const MD_TRANSFER_WITHIN_A_STATION: &str = "\u{e6b9}";
pub const MD_TRANSFORM: &str = "\u{e6ba}";
pub const MD_TRANSIT_ENTEREXIT: &str = "\u{e6bb}";
pub const MD_TRANSLATE: &str = "\u{e6bc}";
pub const MD_TRENDING_DOWN: &str = "\u{e6bd}";
pub const MD_TRENDING_FLAT: &str = "\u{e6be}";
pub const MD_TRENDING_UP: &str = "\u{e6bf}";
pub const MD_TRIP_ORIGIN: &str = "\u{e6c0}";
pub const MD_TUNE: &str = "\u{e6c1}";
pub const MD_TURNED_IN: &str = "\u{e6c2}";
pub const MD_TURNED_IN_NOT: &str = "\u{e6c4}";
pub const MD_TV: &str = "\u{e6c5}";
pub const MD_TV_OFF: &str = "\u{e6c7}";
pub const MD_UNARCHIVE: &str = "\u{e6c9}";
pub const MD_UNDO: &str = "\u{e6cb}";
pub const MD_UNFOLD_LESS: &str = "\u{e6cc}";
pub const MD_UNFOLD_MORE: &str = "\u{e6cd}";
pub const MD_UNSUBSCRIBE: &str = "\u{e6ce}";
pub const MD_UPDATE: &str = "\u{e6d0}";
pub const MD_USB: &str = "\u{e6d1}";
pub const MD_VERIFIED_USER: &str = "\u{e6d2}";
pub const MD_VERTICAL_ALIGN_BOTTOM: &str = "\u{e6d4}";
pub const MD_VERTICAL_ALIGN_CENTER: &str = "\u{e6d5}";
pub const MD_VERTICAL_ALIGN_TOP: &str = "\u{e6d6}";
pub const MD_VERTICAL_SPLIT: &str = "\u{e6d7}";
pub const MD_VIBRATION: &str = "\u{e6d9}";
pub const MD_VIDEO_CALL: &str = "\u{e6db}";
pub const MD_VIDEO_LABEL: &str = "\u{e6dd}";
pub const MD_VIDEO_LIBRARY: &str = "\u{e6df}";
pub const MD_VIDEOCAM: &str = "\u{e6e1}";
pub const MD_VIDEOCAM_OFF: &str = "\u{e6e3}";
pub const MD_VIDEOGAME_ASSET: &str = "\u{e6e5}";
pub const MD_VIEW_AGENDA: &str = "\u{e6e7}";
pub const MD_VIEW_ARRAY: &str = "\u{e6e9}";
pub const MD_VIEW_CAROUSEL: &str = "\u{e6eb}";
pub const MD_VIEW_COLUMN: &str = "\u{e6ed}";
pub const MD_VIEW_COMFY: &str = "\u{e6ef}";
pub const MD_VIEW_COMPACT: &str = "\u{e6f1}";
pub const MD_VIEW_DAY: &str = "\u{e6f3}";
pub const MD_VIEW_HEADLINE: &str = "\u{e6f5}";
pub const MD_VIEW_LIST: &str = "\u{e6f6}";
pub const MD_VIEW_MODULE: &str = "\u{e6f8}";
pub const MD_VIEW_QUILT: &str = "\u{e6fa}";
pub const MD_VIEW_STREAM: &str = "\u{e6fc}";
pub const MD_VIEW_WEEK: &str = "\u{e6fe}";
pub const MD_VIGNETTE: &str = "\u{e700}";
pub const MD_VISIBILITY: &str = "\u{e702}";
pub const MD_VISIBILITY_OFF: &str = "\u{e704}";
pub const MD_VOICE_CHAT: &str = "\u{e706}";
pub const MD_VOICE_OVER_OFF: &str = "\u{e708}";
pub const MD_VOICEMAIL: &str = "\u{e70a}";
pub const MD_VOLUME_DOWN: &str = "\u{e70b}";
pub const MD_VOLUME_MUTE: &str = "\u{e70d}";
pub const MD_VOLUME_OFF: &str = "\u{e70f}";
pub const MD_VOLUME_UP: &str = "\u{e711}";
pub const MD_VPN_KEY: &str = "\u{e713}";
pub const MD_VPN_LOCK: &str = "\u{e715}";
pub const MD_WALLPAPER: &str = "\u{e717}";
pub const MD_WARNING: &str = "\u{e718}";
pub const MD_WATCH: &str = "\u{e71a}";
pub const MD_WATCH_LATER: &str = "\u{e71c}";
pub const MD_WAVES: &str = "\u{e71e}";
pub const MD_WB_AUTO: &str = "\u{e71f}";
pub const MD_WB_CLOUDY: &str = "\u{e721}";
pub const MD_WB_INCANDESCENT: &str = "\u{e723}";
pub const MD_WB_IRIDESCENT: &str = "\u{e725}";
pub const MD_WB_SUNNY: &str = "\u{e727}";
pub const MD_WC: &str = "\u{e729}";
pub const MD_WEB: &str = "\u{e72a}";
pub const MD_WEB_ASSET: &str = "\u{e72c}";
pub const MD_WEEKEND: &str = "\u{e72e}";
pub const MD_WHATSHOT: &str = "\u{e730}";
pub const MD_WHERE_TO_VOTE: &str = "\u{e732}";
pub const MD_WIDGETS: &str = "\u{e734}";
pub const MD_WIFI: &str = "\u{e736}";
pub const MD_WIFI_LOCK: &str = "\u{e737}";
pub const MD_WIFI_OFF: &str = "\u{e738}";
pub const MD_WIFI_TETHERING: &str = "\u{e739}";
pub const MD_WORK: &str = "\u{e73a}";
pub const MD_WORK_OFF: &str = "\u{e73c}";
pub const MD_WORK_OUTLINE: &str = "\u{e73e}";
pub const MD_WRAP_TEXT: &str = "\u{e73f}";
pub const MD_YOUTUBE_SEARCHED_FOR: &str = "\u{e740}";
pub const MD_ZOOM_IN: &str = "\u{e741}";
pub const MD_ZOOM_OUT: &str = "\u{e742}";
pub const MD_ZOOM_OUT_MAP: &str = "\u{e743}";
pub const MD_ADD_IC_CALL: &str = "\u{e744}";
pub const MD_LIBRARY_ADD_CHECK: &str = "\u{e746}";
pub const MD_STAR_OUTLINE: &str = "\u{e748}";
pub const MD_TWO_WHEELER: &str = "\u{e749}";
pub const MD_5G: &str = "\u{e74a}";
pub const MD_AD_UNITS: &str = "\u{e74b}";
pub const MD_ADD_BUSINESS: &str = "\u{e74d}";
pub const MD_ADD_LOCATION_ALT: &str = "\u{e74f}";
pub const MD_ADD_ROAD: &str = "\u{e751}";
pub const MD_ADDCHART: &str = "\u{e752}";
pub const MD_ADMIN_PANEL_SETTINGS: &str = "\u{e753}";
pub const MD_AGRICULTURE: &str = "\u{e755}";
pub const MD_ALT_ROUTE: &str = "\u{e757}";
pub const MD_ANALYTICS: &str = "\u{e758}";
pub const MD_ANCHOR: &str = "\u{e75a}";
pub const MD_API: &str = "\u{e75b}";
pub const MD_APP_BLOCKING: &str = "\u{e75c}";
pub const MD_APP_SETTINGS_ALT: &str = "\u{e75e}";
pub const MD_ARCHITECTURE: &str = "\u{e760}";
pub const MD_ARROW_CIRCLE_DOWN: &str = "\u{e761}";
pub const MD_ARROW_CIRCLE_UP: &str = "\u{e763}";
pub const MD_ARTICLE: &str = "\u{e765}";
pub const MD_ATTACH_EMAIL: &str = "\u{e767}";
pub const MD_AUTO_DELETE: &str = "\u{e768}";
pub const MD_BABY_CHANGING_STATION: &str = "\u{e76a}";
pub const MD_BACKPACK: &str = "\u{e76b}";
pub const MD_BACKUP_TABLE: &str = "\u{e76d}";
pub const MD_BATCH_PREDICTION: &str = "\u{e76f}";
pub const MD_BEDTIME: &str = "\u{e771}";
pub const MD_BIKE_SCOOTER: &str = "\u{e773}";
pub const MD_BIOTECH: &str = "\u{e774}";
pub const MD_BROWSER_NOT_SUPPORTED: &str = "\u{e776}";
pub const MD_BUILD_CIRCLE: &str = "\u{e777}";
pub const MD_CALCULATE: &str = "\u{e779}";
pub const MD_CAMPAIGN: &str = "\u{e77b}";
pub const MD_CHARGING_STATION: &str = "\u{e77d}";
pub const MD_CHECKROOM: &str = "\u{e77f}";
pub const MD_CLEANING_SERVICES: &str = "\u{e780}";
pub const MD_CLOSE_FULLSCREEN: &str = "\u{e782}";
pub const MD_COMMENT_BANK: &str = "\u{e783}";
pub const MD_CONSTRUCTION: &str = "\u{e785}";
pub const MD_CORPORATE_FARE: &str = "\u{e786}";
pub const MD_DESIGN_SERVICES: &str = "\u{e788}";
pub const MD_DIRECTIONS_OFF: &str = "\u{e78a}";
pub const MD_DO_NOT_STEP: &str = "\u{e78b}";
pub const MD_DO_NOT_TOUCH: &str = "\u{e78d}";
pub const MD_DOMAIN_VERIFICATION: &str = "\u{e78f}";
pub const MD_DRY: &str = "\u{e791}";
pub const MD_DYNAMIC_FORM: &str = "\u{e793}";
pub const MD_EDIT_ROAD: &str = "\u{e795}";
pub const MD_ELECTRIC_BIKE: &str = "\u{e797}";
pub const MD_ELECTRIC_CAR: &str = "\u{e798}";
pub const MD_ELECTRIC_MOPED: &str = "\u{e79a}";
pub const MD_ELECTRIC_SCOOTER: &str = "\u{e79c}";
pub const MD_ELECTRICAL_SERVICES: &str = "\u{e79d}";
pub const MD_ELEVATOR: &str = "\u{e79e}";
pub const MD_ENGINEERING: &str = "\u{e7a0}";
pub const MD_ESCALATOR: &str = "\u{e7a2}";
pub const MD_ESCALATOR_WARNING: &str = "\u{e7a4}";
pub const MD_FACT_CHECK: &str = "\u{e7a5}";
pub const MD_FAMILY_RESTROOM: &str = "\u{e7a7}";
pub const MD_FILTER_ALT: &str = "\u{e7a8}";
pub const MD_FLAKY: &str = "\u{e7aa}";
pub const MD_FORWARD_TO_INBOX: &str = "\u{e7ab}";
pub const MD_GRADING: &str = "\u{e7ad}";
pub const MD_HANDYMAN: &str = "\u{e7ae}";
pub const MD_HEARING_DISABLED: &str = "\u{e7b0}";
pub const MD_HELP_CENTER: &str = "\u{e7b1}";
pub const MD_HIGHLIGHT_ALT: &str = "\u{e7b3}";
pub const MD_HISTORY_EDU: &str = "\u{e7b4}";
pub const MD_HISTORY_TOGGLE_OFF: &str = "\u{e7b6}";
pub const MD_HOME_REPAIR_SERVICE: &str = "\u{e7b7}";
pub const MD_HORIZONTAL_RULE: &str = "\u{e7b9}";
pub const MD_HOURGLASS_BOTTOM: &str = "\u{e7ba}";
pub const MD_HOURGLASS_DISABLED: &str = "\u{e7bc}";
pub const MD_HOURGLASS_TOP: &str = "\u{e7bd}";
pub const MD_HVAC: &str = "\u{e7bf}";
pub const MD_IMAGE_NOT_SUPPORTED: &str = "\u{e7c1}";
pub const MD_INSIGHTS: &str = "\u{e7c3}";
pub const MD_INTEGRATION_INSTRUCTIONS: &str = "\u{e7c4}";
pub const MD_LEGEND_TOGGLE: &str = "\u{e7c6}";
pub const MD_LOGIN: &str = "\u{e7c7}";
pub const MD_MAPS_UGC: &str = "\u{e7c8}";
pub const MD_MARK_CHAT_READ: &str = "\u{e7ca}";
pub const MD_MARK_CHAT_UNREAD: &str = "\u{e7cc}";
pub const MD_MARK_EMAIL_READ: &str = "\u{e7ce}";
pub const MD_MARK_EMAIL_UNREAD: &str = "\u{e7d0}";
pub const MD_MEDIATION: &str = "\u{e7d2}";
pub const MD_MEDICAL_SERVICES: &str = "\u{e7d3}";
pub const MD_MILITARY_TECH: &str = "\u{e7d5}";
pub const MD_MISCELLANEOUS_SERVICES: &str = "\u{e7d7}";
pub const MD_MODEL_TRAINING: &str = "\u{e7d8}";
pub const MD_MOPED: &str = "\u{e7d9}";
pub const MD_MORE_TIME: &str = "\u{e7db}";
pub const MD_MULTIPLE_STOP: &str = "\u{e7dc}";
pub const MD_NAT: &str = "\u{e7dd}";
pub const MD_NEXT_PLAN: &str = "\u{e7df}";
pub const MD_NO_CELL: &str = "\u{e7e1}";
pub const MD_NO_DRINKS: &str = "\u{e7e3}";
pub const MD_NO_FLASH: &str = "\u{e7e5}";
pub const MD_NO_FOOD: &str = "\u{e7e7}";
pub const MD_NO_PHOTOGRAPHY: &str = "\u{e7e9}";
pub const MD_NO_STROLLER: &str = "\u{e7eb}";
pub const MD_NOT_ACCESSIBLE: &str = "\u{e7ed}";
pub const MD_NOT_STARTED: &str = "\u{e7ee}";
pub const MD_ONLINE_PREDICTION: &str = "\u{e7f0}";
pub const MD_OPEN_IN_FULL: &str = "\u{e7f1}";
pub const MD_OUTLET: &str = "\u{e7f2}";
pub const MD_PAYMENTS: &str = "\u{e7f4}";
pub const MD_PEDAL_BIKE: &str = "\u{e7f6}";
pub const MD_PENDING: &str = "\u{e7f7}";
pub const MD_PENDING_ACTIONS: &str = "\u{e7f9}";
pub const MD_PERSON_ADD_ALT_1: &str = "\u{e7fb}";
pub const MD_PERSON_REMOVE: &str = "\u{e7fd}";
pub const MD_PERSON_REMOVE_ALT_1: &str = "\u{e7ff}";
pub const MD_PERSON_SEARCH: &str = "\u{e801}";
pub const MD_PEST_CONTROL: &str = "\u{e803}";
pub const MD_PEST_CONTROL_RODENT: &str = "\u{e805}";
pub const MD_PLAGIARISM: &str = "\u{e807}";
pub const MD_PLUMBING: &str = "\u{e809}";
pub const MD_POINT_OF_SALE: &str = "\u{e80a}";
pub const MD_PREVIEW: &str = "\u{e80c}";
pub const MD_PRIVACY_TIP: &str = "\u{e80e}";
pub const MD_PSYCHOLOGY: &str = "\u{e810}";
pub const MD_PUBLIC_OFF: &str = "\u{e812}";
pub const MD_PUSH_PIN: &str = "\u{e814}";
pub const MD_QR_CODE: &str = "\u{e816}";
pub const MD_QUICKREPLY: &str = "\u{e818}";
pub const MD_READ_MORE: &str = "\u{e81a}";
pub const MD_RECEIPT_LONG: &str = "\u{e81b}";
pub const MD_REQUEST_QUOTE: &str = "\u{e81d}";
pub const MD_ROOM_PREFERENCES: &str = "\u{e81f}";
pub const MD_RULE: &str = "\u{e821}";
pub const MD_RULE_FOLDER: &str = "\u{e822}";
pub const MD_RUN_CIRCLE: &str = "\u{e824}";
pub const MD_SCIENCE: &str = "\u{e826}";
pub const MD_SEARCH_OFF: &str = "\u{e828}";
pub const MD_SELF_IMPROVEMENT: &str = "\u{e829}";
pub const MD_SENSOR_DOOR: &str = "\u{e82a}";
pub const MD_SENSOR_WINDOW: &str = "\u{e82c}";
pub const MD_SHOPPING_BAG: &str = "\u{e82e}";
pub const MD_SMART_BUTTON: &str = "\u{e830}";
pub const MD_SNIPPET_FOLDER: &str = "\u{e831}";
pub const MD_SOAP: &str = "\u{e833}";
pub const MD_SOURCE: &str = "\u{e835}";
pub const MD_STAIRS: &str = "\u{e837}";
pub const MD_STROLLER: &str = "\u{e839}";
pub const MD_SUBSCRIPT: &str = "\u{e83b}";
pub const MD_SUBTITLES_OFF: &str = "\u{e83c}";
pub const MD_SUPERSCRIPT: &str = "\u{e83e}";
pub const MD_SUPPORT: &str = "\u{e83f}";
pub const MD_SUPPORT_AGENT: &str = "\u{e841}";
pub const MD_SWITCH_LEFT: &str = "\u{e842}";
pub const MD_SWITCH_RIGHT: &str = "\u{e844}";
pub const MD_TABLE_ROWS: &str = "\u{e846}";
pub const MD_TABLE_VIEW: &str = "\u{e848}";
pub const MD_TEXT_SNIPPET: &str = "\u{e84a}";
pub const MD_TOPIC: &str = "\u{e84c}";
pub const MD_TOUR: &str = "\u{e84e}";
pub const MD_TTY: &str = "\u{e850}";
pub const MD_UMBRELLA: &str = "\u{e852}";
pub const MD_UPGRADE: &str = "\u{e854}";
pub const MD_VERIFIED: &str = "\u{e855}";
pub const MD_VIDEO_SETTINGS: &str = "\u{e857}";
pub const MD_VIEW_SIDEBAR: &str = "\u{e858}";
pub const MD_WASH: &str = "\u{e85a}";
pub const MD_WHEELCHAIR_PICKUP: &str = "\u{e85c}";
pub const MD_WIFI_CALLING: &str = "\u{e85d}";
pub const MD_WIFI_PROTECTED_SETUP: &str = "\u{e85f}";
pub const MD_WRONG_LOCATION: &str = "\u{e860}";
pub const MD_WYSIWYG: &str = "\u{e861}";
pub const MD_BENTO: &str = "\u{e864}";
pub const MD_CARPENTER: &str = "\u{e866}";
pub const MD_CLOSED_CAPTION_DISABLED: &str = "\u{e868}";
pub const MD_COUNTERTOPS: &str = "\u{e86a}";
pub const MD_EAST: &str = "\u{e86c}";
pub const MD_FENCE: &str = "\u{e86d}";
pub const MD_FIRE_EXTINGUISHER: &str = "\u{e86f}";
pub const MD_FOOD_BANK: &str = "\u{e870}";
pub const MD_FOUNDATION: &str = "\u{e872}";
pub const MD_GRASS: &str = "\u{e874}";
pub const MD_HOUSE_SIDING: &str = "\u{e875}";
pub const MD_LEADERBOARD: &str = "\u{e877}";
pub const MD_MICROWAVE: &str = "\u{e879}";
pub const MD_NEAR_ME_DISABLED: &str = "\u{e87b}";
pub const MD_NIGHT_SHELTER: &str = "\u{e87d}";
pub const MD_NO_MEALS: &str = "\u{e87f}";
pub const MD_NO_TRANSFER: &str = "\u{e880}";
pub const MD_NORTH: &str = "\u{e882}";
pub const MD_NORTH_EAST: &str = "\u{e883}";
pub const MD_NORTH_WEST: &str = "\u{e884}";
pub const MD_QR_CODE_SCANNER: &str = "\u{e885}";
pub const MD_RICE_BOWL: &str = "\u{e886}";
pub const MD_ROOFING: &str = "\u{e888}";
pub const MD_SET_MEAL: &str = "\u{e88a}";
pub const MD_SOUTH: &str = "\u{e88c}";
pub const MD_SOUTH_EAST: &str = "\u{e88d}";
pub const MD_SOUTH_WEST: &str = "\u{e88e}";
pub const MD_SPORTS_BAR: &str = "\u{e88f}";
pub const MD_STICKY_NOTE_2: &str = "\u{e891}";
pub const MD_TAPAS: &str = "\u{e893}";
pub const MD_WATER_DAMAGE: &str = "\u{e895}";
pub const MD_WEST: &str = "\u{e897}";
pub const MD_WINE_BAR: &str = "\u{e898}";