-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathemo_unicode.py
7488 lines (7478 loc) · 436 KB
/
emo_unicode.py
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
# -*- coding: UTF-8 -*-
"""
Emoticons and Emoji data dictonary
"""
__all__ = ['EMOJI_UNICODE', 'UNICODE_EMOJI', 'EMOJI_ALIAS_UNICODE', 'UNICODE_EMOJI_ALIAS', 'EMOTICONS_EMO', 'EMO_UNICODE', 'UNICODE_EMO']
EMO_UNICODE = {
u':1st_place_medal:': u'\U0001F947',
u':2nd_place_medal:': u'\U0001F948',
u':3rd_place_medal:': u'\U0001F949',
u':AB_button_(blood_type):': u'\U0001F18E',
u':ATM_sign:': u'\U0001F3E7',
u':A_button_(blood_type):': u'\U0001F170',
u':Afghanistan:': u'\U0001F1E6 \U0001F1EB',
u':Albania:': u'\U0001F1E6 \U0001F1F1',
u':Algeria:': u'\U0001F1E9 \U0001F1FF',
u':American_Samoa:': u'\U0001F1E6 \U0001F1F8',
u':Andorra:': u'\U0001F1E6 \U0001F1E9',
u':Angola:': u'\U0001F1E6 \U0001F1F4',
u':Anguilla:': u'\U0001F1E6 \U0001F1EE',
u':Antarctica:': u'\U0001F1E6 \U0001F1F6',
u':Antigua_&_Barbuda:': u'\U0001F1E6 \U0001F1EC',
u':Aquarius:': u'\U00002652',
u':Argentina:': u'\U0001F1E6 \U0001F1F7',
u':Aries:': u'\U00002648',
u':Armenia:': u'\U0001F1E6 \U0001F1F2',
u':Aruba:': u'\U0001F1E6 \U0001F1FC',
u':Ascension_Island:': u'\U0001F1E6 \U0001F1E8',
u':Australia:': u'\U0001F1E6 \U0001F1FA',
u':Austria:': u'\U0001F1E6 \U0001F1F9',
u':Azerbaijan:': u'\U0001F1E6 \U0001F1FF',
u':BACK_arrow:': u'\U0001F519',
u':B_button_(blood_type):': u'\U0001F171',
u':Bahamas:': u'\U0001F1E7 \U0001F1F8',
u':Bahrain:': u'\U0001F1E7 \U0001F1ED',
u':Bangladesh:': u'\U0001F1E7 \U0001F1E9',
u':Barbados:': u'\U0001F1E7 \U0001F1E7',
u':Belarus:': u'\U0001F1E7 \U0001F1FE',
u':Belgium:': u'\U0001F1E7 \U0001F1EA',
u':Belize:': u'\U0001F1E7 \U0001F1FF',
u':Benin:': u'\U0001F1E7 \U0001F1EF',
u':Bermuda:': u'\U0001F1E7 \U0001F1F2',
u':Bhutan:': u'\U0001F1E7 \U0001F1F9',
u':Bolivia:': u'\U0001F1E7 \U0001F1F4',
u':Bosnia_&_Herzegovina:': u'\U0001F1E7 \U0001F1E6',
u':Botswana:': u'\U0001F1E7 \U0001F1FC',
u':Bouvet_Island:': u'\U0001F1E7 \U0001F1FB',
u':Brazil:': u'\U0001F1E7 \U0001F1F7',
u':British_Indian_Ocean_Territory:': u'\U0001F1EE \U0001F1F4',
u':British_Virgin_Islands:': u'\U0001F1FB \U0001F1EC',
u':Brunei:': u'\U0001F1E7 \U0001F1F3',
u':Bulgaria:': u'\U0001F1E7 \U0001F1EC',
u':Burkina_Faso:': u'\U0001F1E7 \U0001F1EB',
u':Burundi:': u'\U0001F1E7 \U0001F1EE',
u':CL_button:': u'\U0001F191',
u':COOL_button:': u'\U0001F192',
u':Cambodia:': u'\U0001F1F0 \U0001F1ED',
u':Cameroon:': u'\U0001F1E8 \U0001F1F2',
u':Canada:': u'\U0001F1E8 \U0001F1E6',
u':Canary_Islands:': u'\U0001F1EE \U0001F1E8',
u':Cancer:': u'\U0000264B',
u':Cape_Verde:': u'\U0001F1E8 \U0001F1FB',
u':Capricorn:': u'\U00002651',
u':Caribbean_Netherlands:': u'\U0001F1E7 \U0001F1F6',
u':Cayman_Islands:': u'\U0001F1F0 \U0001F1FE',
u':Central_African_Republic:': u'\U0001F1E8 \U0001F1EB',
u':Ceuta_&_Melilla:': u'\U0001F1EA \U0001F1E6',
u':Chad:': u'\U0001F1F9 \U0001F1E9',
u':Chile:': u'\U0001F1E8 \U0001F1F1',
u':China:': u'\U0001F1E8 \U0001F1F3',
u':Christmas_Island:': u'\U0001F1E8 \U0001F1FD',
u':Christmas_tree:': u'\U0001F384',
u':Clipperton_Island:': u'\U0001F1E8 \U0001F1F5',
u':Cocos_(Keeling)_Islands:': u'\U0001F1E8 \U0001F1E8',
u':Colombia:': u'\U0001F1E8 \U0001F1F4',
u':Comoros:': u'\U0001F1F0 \U0001F1F2',
u':Congo_-_Brazzaville:': u'\U0001F1E8 \U0001F1EC',
u':Congo_-_Kinshasa:': u'\U0001F1E8 \U0001F1E9',
u':Cook_Islands:': u'\U0001F1E8 \U0001F1F0',
u':Costa_Rica:': u'\U0001F1E8 \U0001F1F7',
u':Croatia:': u'\U0001F1ED \U0001F1F7',
u':Cuba:': u'\U0001F1E8 \U0001F1FA',
u':Curaçao:': u'\U0001F1E8 \U0001F1FC',
u':Cyprus:': u'\U0001F1E8 \U0001F1FE',
u':Czech_Republic:': u'\U0001F1E8 \U0001F1FF',
u':Côte_d’Ivoire:': u'\U0001F1E8 \U0001F1EE',
u':Denmark:': u'\U0001F1E9 \U0001F1F0',
u':Diego_Garcia:': u'\U0001F1E9 \U0001F1EC',
u':Djibouti:': u'\U0001F1E9 \U0001F1EF',
u':Dominica:': u'\U0001F1E9 \U0001F1F2',
u':Dominican_Republic:': u'\U0001F1E9 \U0001F1F4',
u':END_arrow:': u'\U0001F51A',
u':Ecuador:': u'\U0001F1EA \U0001F1E8',
u':Egypt:': u'\U0001F1EA \U0001F1EC',
u':El_Salvador:': u'\U0001F1F8 \U0001F1FB',
u':Equatorial_Guinea:': u'\U0001F1EC \U0001F1F6',
u':Eritrea:': u'\U0001F1EA \U0001F1F7',
u':Estonia:': u'\U0001F1EA \U0001F1EA',
u':Ethiopia:': u'\U0001F1EA \U0001F1F9',
u':European_Union:': u'\U0001F1EA \U0001F1FA',
u':FREE_button:': u'\U0001F193',
u':Falkland_Islands:': u'\U0001F1EB \U0001F1F0',
u':Faroe_Islands:': u'\U0001F1EB \U0001F1F4',
u':Fiji:': u'\U0001F1EB \U0001F1EF',
u':Finland:': u'\U0001F1EB \U0001F1EE',
u':France:': u'\U0001F1EB \U0001F1F7',
u':French_Guiana:': u'\U0001F1EC \U0001F1EB',
u':French_Polynesia:': u'\U0001F1F5 \U0001F1EB',
u':French_Southern_Territories:': u'\U0001F1F9 \U0001F1EB',
u':Gabon:': u'\U0001F1EC \U0001F1E6',
u':Gambia:': u'\U0001F1EC \U0001F1F2',
u':Gemini:': u'\U0000264A',
u':Georgia:': u'\U0001F1EC \U0001F1EA',
u':Germany:': u'\U0001F1E9 \U0001F1EA',
u':Ghana:': u'\U0001F1EC \U0001F1ED',
u':Gibraltar:': u'\U0001F1EC \U0001F1EE',
u':Greece:': u'\U0001F1EC \U0001F1F7',
u':Greenland:': u'\U0001F1EC \U0001F1F1',
u':Grenada:': u'\U0001F1EC \U0001F1E9',
u':Guadeloupe:': u'\U0001F1EC \U0001F1F5',
u':Guam:': u'\U0001F1EC \U0001F1FA',
u':Guatemala:': u'\U0001F1EC \U0001F1F9',
u':Guernsey:': u'\U0001F1EC \U0001F1EC',
u':Guinea:': u'\U0001F1EC \U0001F1F3',
u':Guinea-Bissau:': u'\U0001F1EC \U0001F1FC',
u':Guyana:': u'\U0001F1EC \U0001F1FE',
u':Haiti:': u'\U0001F1ED \U0001F1F9',
u':Heard_&_McDonald_Islands:': u'\U0001F1ED \U0001F1F2',
u':Honduras:': u'\U0001F1ED \U0001F1F3',
u':Hong_Kong_SAR_China:': u'\U0001F1ED \U0001F1F0',
u':Hungary:': u'\U0001F1ED \U0001F1FA',
u':ID_button:': u'\U0001F194',
u':Iceland:': u'\U0001F1EE \U0001F1F8',
u':India:': u'\U0001F1EE \U0001F1F3',
u':Indonesia:': u'\U0001F1EE \U0001F1E9',
u':Iran:': u'\U0001F1EE \U0001F1F7',
u':Iraq:': u'\U0001F1EE \U0001F1F6',
u':Ireland:': u'\U0001F1EE \U0001F1EA',
u':Isle_of_Man:': u'\U0001F1EE \U0001F1F2',
u':Israel:': u'\U0001F1EE \U0001F1F1',
u':Italy:': u'\U0001F1EE \U0001F1F9',
u':Jamaica:': u'\U0001F1EF \U0001F1F2',
u':Japan:': u'\U0001F1EF \U0001F1F5',
u':Japanese_acceptable_button:': u'\U0001F251',
u':Japanese_application_button:': u'\U0001F238',
u':Japanese_bargain_button:': u'\U0001F250',
u':Japanese_castle:': u'\U0001F3EF',
u':Japanese_congratulations_button:': u'\U00003297',
u':Japanese_discount_button:': u'\U0001F239',
u':Japanese_dolls:': u'\U0001F38E',
u':Japanese_free_of_charge_button:': u'\U0001F21A',
u':Japanese_here_button:': u'\U0001F201',
u':Japanese_monthly_amount_button:': u'\U0001F237',
u':Japanese_no_vacancy_button:': u'\U0001F235',
u':Japanese_not_free_of_charge_button:': u'\U0001F236',
u':Japanese_open_for_business_button:': u'\U0001F23A',
u':Japanese_passing_grade_button:': u'\U0001F234',
u':Japanese_post_office:': u'\U0001F3E3',
u':Japanese_prohibited_button:': u'\U0001F232',
u':Japanese_reserved_button:': u'\U0001F22F',
u':Japanese_secret_button:': u'\U00003299',
u':Japanese_service_charge_button:': u'\U0001F202',
u':Japanese_symbol_for_beginner:': u'\U0001F530',
u':Japanese_vacancy_button:': u'\U0001F233',
u':Jersey:': u'\U0001F1EF \U0001F1EA',
u':Jordan:': u'\U0001F1EF \U0001F1F4',
u':Kazakhstan:': u'\U0001F1F0 \U0001F1FF',
u':Kenya:': u'\U0001F1F0 \U0001F1EA',
u':Kiribati:': u'\U0001F1F0 \U0001F1EE',
u':Kosovo:': u'\U0001F1FD \U0001F1F0',
u':Kuwait:': u'\U0001F1F0 \U0001F1FC',
u':Kyrgyzstan:': u'\U0001F1F0 \U0001F1EC',
u':Laos:': u'\U0001F1F1 \U0001F1E6',
u':Latvia:': u'\U0001F1F1 \U0001F1FB',
u':Lebanon:': u'\U0001F1F1 \U0001F1E7',
u':Leo:': u'\U0000264C',
u':Lesotho:': u'\U0001F1F1 \U0001F1F8',
u':Liberia:': u'\U0001F1F1 \U0001F1F7',
u':Libra:': u'\U0000264E',
u':Libya:': u'\U0001F1F1 \U0001F1FE',
u':Liechtenstein:': u'\U0001F1F1 \U0001F1EE',
u':Lithuania:': u'\U0001F1F1 \U0001F1F9',
u':Luxembourg:': u'\U0001F1F1 \U0001F1FA',
u':Macau_SAR_China:': u'\U0001F1F2 \U0001F1F4',
u':Macedonia:': u'\U0001F1F2 \U0001F1F0',
u':Madagascar:': u'\U0001F1F2 \U0001F1EC',
u':Malawi:': u'\U0001F1F2 \U0001F1FC',
u':Malaysia:': u'\U0001F1F2 \U0001F1FE',
u':Maldives:': u'\U0001F1F2 \U0001F1FB',
u':Mali:': u'\U0001F1F2 \U0001F1F1',
u':Malta:': u'\U0001F1F2 \U0001F1F9',
u':Marshall_Islands:': u'\U0001F1F2 \U0001F1ED',
u':Martinique:': u'\U0001F1F2 \U0001F1F6',
u':Mauritania:': u'\U0001F1F2 \U0001F1F7',
u':Mauritius:': u'\U0001F1F2 \U0001F1FA',
u':Mayotte:': u'\U0001F1FE \U0001F1F9',
u':Mexico:': u'\U0001F1F2 \U0001F1FD',
u':Micronesia:': u'\U0001F1EB \U0001F1F2',
u':Moldova:': u'\U0001F1F2 \U0001F1E9',
u':Monaco:': u'\U0001F1F2 \U0001F1E8',
u':Mongolia:': u'\U0001F1F2 \U0001F1F3',
u':Montenegro:': u'\U0001F1F2 \U0001F1EA',
u':Montserrat:': u'\U0001F1F2 \U0001F1F8',
u':Morocco:': u'\U0001F1F2 \U0001F1E6',
u':Mozambique:': u'\U0001F1F2 \U0001F1FF',
u':Mrs._Claus:': u'\U0001F936',
u':Mrs._Claus_dark_skin_tone:': u'\U0001F936 \U0001F3FF',
u':Mrs._Claus_light_skin_tone:': u'\U0001F936 \U0001F3FB',
u':Mrs._Claus_medium-dark_skin_tone:': u'\U0001F936 \U0001F3FE',
u':Mrs._Claus_medium-light_skin_tone:': u'\U0001F936 \U0001F3FC',
u':Mrs._Claus_medium_skin_tone:': u'\U0001F936 \U0001F3FD',
u':Myanmar_(Burma):': u'\U0001F1F2 \U0001F1F2',
u':NEW_button:': u'\U0001F195',
u':NG_button:': u'\U0001F196',
u':Namibia:': u'\U0001F1F3 \U0001F1E6',
u':Nauru:': u'\U0001F1F3 \U0001F1F7',
u':Nepal:': u'\U0001F1F3 \U0001F1F5',
u':Netherlands:': u'\U0001F1F3 \U0001F1F1',
u':New_Caledonia:': u'\U0001F1F3 \U0001F1E8',
u':New_Zealand:': u'\U0001F1F3 \U0001F1FF',
u':Nicaragua:': u'\U0001F1F3 \U0001F1EE',
u':Niger:': u'\U0001F1F3 \U0001F1EA',
u':Nigeria:': u'\U0001F1F3 \U0001F1EC',
u':Niue:': u'\U0001F1F3 \U0001F1FA',
u':Norfolk_Island:': u'\U0001F1F3 \U0001F1EB',
u':North_Korea:': u'\U0001F1F0 \U0001F1F5',
u':Northern_Mariana_Islands:': u'\U0001F1F2 \U0001F1F5',
u':Norway:': u'\U0001F1F3 \U0001F1F4',
u':OK_button:': u'\U0001F197',
u':OK_hand:': u'\U0001F44C',
u':OK_hand_dark_skin_tone:': u'\U0001F44C \U0001F3FF',
u':OK_hand_light_skin_tone:': u'\U0001F44C \U0001F3FB',
u':OK_hand_medium-dark_skin_tone:': u'\U0001F44C \U0001F3FE',
u':OK_hand_medium-light_skin_tone:': u'\U0001F44C \U0001F3FC',
u':OK_hand_medium_skin_tone:': u'\U0001F44C \U0001F3FD',
u':ON!_arrow:': u'\U0001F51B',
u':O_button_(blood_type):': u'\U0001F17E',
u':Oman:': u'\U0001F1F4 \U0001F1F2',
u':Ophiuchus:': u'\U000026CE',
u':P_button:': u'\U0001F17F',
u':Pakistan:': u'\U0001F1F5 \U0001F1F0',
u':Palau:': u'\U0001F1F5 \U0001F1FC',
u':Palestinian_Territories:': u'\U0001F1F5 \U0001F1F8',
u':Panama:': u'\U0001F1F5 \U0001F1E6',
u':Papua_New_Guinea:': u'\U0001F1F5 \U0001F1EC',
u':Paraguay:': u'\U0001F1F5 \U0001F1FE',
u':Peru:': u'\U0001F1F5 \U0001F1EA',
u':Philippines:': u'\U0001F1F5 \U0001F1ED',
u':Pisces:': u'\U00002653',
u':Pitcairn_Islands:': u'\U0001F1F5 \U0001F1F3',
u':Poland:': u'\U0001F1F5 \U0001F1F1',
u':Portugal:': u'\U0001F1F5 \U0001F1F9',
u':Puerto_Rico:': u'\U0001F1F5 \U0001F1F7',
u':Qatar:': u'\U0001F1F6 \U0001F1E6',
u':Romania:': u'\U0001F1F7 \U0001F1F4',
u':Russia:': u'\U0001F1F7 \U0001F1FA',
u':Rwanda:': u'\U0001F1F7 \U0001F1FC',
u':Réunion:': u'\U0001F1F7 \U0001F1EA',
u':SOON_arrow:': u'\U0001F51C',
u':SOS_button:': u'\U0001F198',
u':Sagittarius:': u'\U00002650',
u':Samoa:': u'\U0001F1FC \U0001F1F8',
u':San_Marino:': u'\U0001F1F8 \U0001F1F2',
u':Santa_Claus:': u'\U0001F385',
u':Santa_Claus_dark_skin_tone:': u'\U0001F385 \U0001F3FF',
u':Santa_Claus_light_skin_tone:': u'\U0001F385 \U0001F3FB',
u':Santa_Claus_medium-dark_skin_tone:': u'\U0001F385 \U0001F3FE',
u':Santa_Claus_medium-light_skin_tone:': u'\U0001F385 \U0001F3FC',
u':Santa_Claus_medium_skin_tone:': u'\U0001F385 \U0001F3FD',
u':Saudi_Arabia:': u'\U0001F1F8 \U0001F1E6',
u':Scorpius:': u'\U0000264F',
u':Senegal:': u'\U0001F1F8 \U0001F1F3',
u':Serbia:': u'\U0001F1F7 \U0001F1F8',
u':Seychelles:': u'\U0001F1F8 \U0001F1E8',
u':Sierra_Leone:': u'\U0001F1F8 \U0001F1F1',
u':Singapore:': u'\U0001F1F8 \U0001F1EC',
u':Sint_Maarten:': u'\U0001F1F8 \U0001F1FD',
u':Slovakia:': u'\U0001F1F8 \U0001F1F0',
u':Slovenia:': u'\U0001F1F8 \U0001F1EE',
u':Solomon_Islands:': u'\U0001F1F8 \U0001F1E7',
u':Somalia:': u'\U0001F1F8 \U0001F1F4',
u':South_Africa:': u'\U0001F1FF \U0001F1E6',
u':South_Georgia_&_South_Sandwich_Islands:': u'\U0001F1EC \U0001F1F8',
u':South_Korea:': u'\U0001F1F0 \U0001F1F7',
u':South_Sudan:': u'\U0001F1F8 \U0001F1F8',
u':Spain:': u'\U0001F1EA \U0001F1F8',
u':Sri_Lanka:': u'\U0001F1F1 \U0001F1F0',
u':St._Barthélemy:': u'\U0001F1E7 \U0001F1F1',
u':St._Helena:': u'\U0001F1F8 \U0001F1ED',
u':St._Kitts_&_Nevis:': u'\U0001F1F0 \U0001F1F3',
u':St._Lucia:': u'\U0001F1F1 \U0001F1E8',
u':St._Martin:': u'\U0001F1F2 \U0001F1EB',
u':St._Pierre_&_Miquelon:': u'\U0001F1F5 \U0001F1F2',
u':St._Vincent_&_Grenadines:': u'\U0001F1FB \U0001F1E8',
u':Statue_of_Liberty:': u'\U0001F5FD',
u':Sudan:': u'\U0001F1F8 \U0001F1E9',
u':Suriname:': u'\U0001F1F8 \U0001F1F7',
u':Svalbard_&_Jan_Mayen:': u'\U0001F1F8 \U0001F1EF',
u':Swaziland:': u'\U0001F1F8 \U0001F1FF',
u':Sweden:': u'\U0001F1F8 \U0001F1EA',
u':Switzerland:': u'\U0001F1E8 \U0001F1ED',
u':Syria:': u'\U0001F1F8 \U0001F1FE',
u':São_Tomé_&_Príncipe:': u'\U0001F1F8 \U0001F1F9',
u':TOP_arrow:': u'\U0001F51D',
u':Taiwan:': u'\U0001F1F9 \U0001F1FC',
u':Tajikistan:': u'\U0001F1F9 \U0001F1EF',
u':Tanzania:': u'\U0001F1F9 \U0001F1FF',
u':Taurus:': u'\U00002649',
u':Thailand:': u'\U0001F1F9 \U0001F1ED',
u':Timor-Leste:': u'\U0001F1F9 \U0001F1F1',
u':Togo:': u'\U0001F1F9 \U0001F1EC',
u':Tokelau:': u'\U0001F1F9 \U0001F1F0',
u':Tokyo_tower:': u'\U0001F5FC',
u':Tonga:': u'\U0001F1F9 \U0001F1F4',
u':Trinidad_&_Tobago:': u'\U0001F1F9 \U0001F1F9',
u':Tristan_da_Cunha:': u'\U0001F1F9 \U0001F1E6',
u':Tunisia:': u'\U0001F1F9 \U0001F1F3',
u':Turkey:': u'\U0001F1F9 \U0001F1F7',
u':Turkmenistan:': u'\U0001F1F9 \U0001F1F2',
u':Turks_&_Caicos_Islands:': u'\U0001F1F9 \U0001F1E8',
u':Tuvalu:': u'\U0001F1F9 \U0001F1FB',
u':U.S._Outlying_Islands:': u'\U0001F1FA \U0001F1F2',
u':U.S._Virgin_Islands:': u'\U0001F1FB \U0001F1EE',
u':UP!_button:': u'\U0001F199',
u':Uganda:': u'\U0001F1FA \U0001F1EC',
u':Ukraine:': u'\U0001F1FA \U0001F1E6',
u':United_Arab_Emirates:': u'\U0001F1E6 \U0001F1EA',
u':United_Kingdom:': u'\U0001F1EC \U0001F1E7',
u':United_Nations:': u'\U0001F1FA \U0001F1F3',
u':United_States:': u'\U0001F1FA \U0001F1F8',
u':Uruguay:': u'\U0001F1FA \U0001F1FE',
u':Uzbekistan:': u'\U0001F1FA \U0001F1FF',
u':VS_button:': u'\U0001F19A',
u':Vanuatu:': u'\U0001F1FB \U0001F1FA',
u':Vatican_City:': u'\U0001F1FB \U0001F1E6',
u':Venezuela:': u'\U0001F1FB \U0001F1EA',
u':Vietnam:': u'\U0001F1FB \U0001F1F3',
u':Virgo:': u'\U0000264D',
u':Wallis_&_Futuna:': u'\U0001F1FC \U0001F1EB',
u':Western_Sahara:': u'\U0001F1EA \U0001F1ED',
u':Yemen:': u'\U0001F1FE \U0001F1EA',
u':Zambia:': u'\U0001F1FF \U0001F1F2',
u':Zimbabwe:': u'\U0001F1FF \U0001F1FC',
u':admission_tickets:': u'\U0001F39F',
u':aerial_tramway:': u'\U0001F6A1',
u':airplane:': u'\U00002708',
u':airplane_arrival:': u'\U0001F6EC',
u':airplane_departure:': u'\U0001F6EB',
u':alarm_clock:': u'\U000023F0',
u':alembic:': u'\U00002697',
u':alien:': u'\U0001F47D',
u':alien_monster:': u'\U0001F47E',
u':ambulance:': u'\U0001F691',
u':american_football:': u'\U0001F3C8',
u':amphora:': u'\U0001F3FA',
u':anchor:': u'\U00002693',
u':anger_symbol:': u'\U0001F4A2',
u':angry_face:': u'\U0001F620',
u':angry_face_with_horns:': u'\U0001F47F',
u':anguished_face:': u'\U0001F627',
u':ant:': u'\U0001F41C',
u':antenna_bars:': u'\U0001F4F6',
u':anticlockwise_arrows_button:': u'\U0001F504',
u':articulated_lorry:': u'\U0001F69B',
u':artist_palette:': u'\U0001F3A8',
u':astonished_face:': u'\U0001F632',
u':atom_symbol:': u'\U0000269B',
u':automobile:': u'\U0001F697',
u':avocado:': u'\U0001F951',
u':baby:': u'\U0001F476',
u':baby_angel:': u'\U0001F47C',
u':baby_angel_dark_skin_tone:': u'\U0001F47C \U0001F3FF',
u':baby_angel_light_skin_tone:': u'\U0001F47C \U0001F3FB',
u':baby_angel_medium-dark_skin_tone:': u'\U0001F47C \U0001F3FE',
u':baby_angel_medium-light_skin_tone:': u'\U0001F47C \U0001F3FC',
u':baby_angel_medium_skin_tone:': u'\U0001F47C \U0001F3FD',
u':baby_bottle:': u'\U0001F37C',
u':baby_chick:': u'\U0001F424',
u':baby_dark_skin_tone:': u'\U0001F476 \U0001F3FF',
u':baby_light_skin_tone:': u'\U0001F476 \U0001F3FB',
u':baby_medium-dark_skin_tone:': u'\U0001F476 \U0001F3FE',
u':baby_medium-light_skin_tone:': u'\U0001F476 \U0001F3FC',
u':baby_medium_skin_tone:': u'\U0001F476 \U0001F3FD',
u':baby_symbol:': u'\U0001F6BC',
u':backhand_index_pointing_down:': u'\U0001F447',
u':backhand_index_pointing_down_dark_skin_tone:': u'\U0001F447 \U0001F3FF',
u':backhand_index_pointing_down_light_skin_tone:': u'\U0001F447 \U0001F3FB',
u':backhand_index_pointing_down_medium-dark_skin_tone:': u'\U0001F447 \U0001F3FE',
u':backhand_index_pointing_down_medium-light_skin_tone:': u'\U0001F447 \U0001F3FC',
u':backhand_index_pointing_down_medium_skin_tone:': u'\U0001F447 \U0001F3FD',
u':backhand_index_pointing_left:': u'\U0001F448',
u':backhand_index_pointing_left_dark_skin_tone:': u'\U0001F448 \U0001F3FF',
u':backhand_index_pointing_left_light_skin_tone:': u'\U0001F448 \U0001F3FB',
u':backhand_index_pointing_left_medium-dark_skin_tone:': u'\U0001F448 \U0001F3FE',
u':backhand_index_pointing_left_medium-light_skin_tone:': u'\U0001F448 \U0001F3FC',
u':backhand_index_pointing_left_medium_skin_tone:': u'\U0001F448 \U0001F3FD',
u':backhand_index_pointing_right:': u'\U0001F449',
u':backhand_index_pointing_right_dark_skin_tone:': u'\U0001F449 \U0001F3FF',
u':backhand_index_pointing_right_light_skin_tone:': u'\U0001F449 \U0001F3FB',
u':backhand_index_pointing_right_medium-dark_skin_tone:': u'\U0001F449 \U0001F3FE',
u':backhand_index_pointing_right_medium-light_skin_tone:': u'\U0001F449 \U0001F3FC',
u':backhand_index_pointing_right_medium_skin_tone:': u'\U0001F449 \U0001F3FD',
u':backhand_index_pointing_up:': u'\U0001F446',
u':backhand_index_pointing_up_dark_skin_tone:': u'\U0001F446 \U0001F3FF',
u':backhand_index_pointing_up_light_skin_tone:': u'\U0001F446 \U0001F3FB',
u':backhand_index_pointing_up_medium-dark_skin_tone:': u'\U0001F446 \U0001F3FE',
u':backhand_index_pointing_up_medium-light_skin_tone:': u'\U0001F446 \U0001F3FC',
u':backhand_index_pointing_up_medium_skin_tone:': u'\U0001F446 \U0001F3FD',
u':bacon:': u'\U0001F953',
u':badminton:': u'\U0001F3F8',
u':baggage_claim:': u'\U0001F6C4',
u':baguette_bread:': u'\U0001F956',
u':balance_scale:': u'\U00002696',
u':balloon:': u'\U0001F388',
u':ballot_box_with_ballot:': u'\U0001F5F3',
u':ballot_box_with_check:': u'\U00002611',
u':banana:': u'\U0001F34C',
u':bank:': u'\U0001F3E6',
u':bar_chart:': u'\U0001F4CA',
u':barber_pole:': u'\U0001F488',
u':baseball:': u'\U000026BE',
u':basketball:': u'\U0001F3C0',
u':bat:': u'\U0001F987',
u':bathtub:': u'\U0001F6C1',
u':battery:': u'\U0001F50B',
u':beach_with_umbrella:': u'\U0001F3D6',
u':bear_face:': u'\U0001F43B',
u':beating_heart:': u'\U0001F493',
u':bed:': u'\U0001F6CF',
u':beer_mug:': u'\U0001F37A',
u':bell:': u'\U0001F514',
u':bell_with_slash:': u'\U0001F515',
u':bellhop_bell:': u'\U0001F6CE',
u':bento_box:': u'\U0001F371',
u':bicycle:': u'\U0001F6B2',
u':bikini:': u'\U0001F459',
u':biohazard:': u'\U00002623',
u':bird:': u'\U0001F426',
u':birthday_cake:': u'\U0001F382',
u':black_circle:': u'\U000026AB',
u':black_flag:': u'\U0001F3F4',
u':black_heart:': u'\U0001F5A4',
u':black_large_square:': u'\U00002B1B',
u':black_medium-small_square:': u'\U000025FE',
u':black_medium_square:': u'\U000025FC',
u':black_nib:': u'\U00002712',
u':black_small_square:': u'\U000025AA',
u':black_square_button:': u'\U0001F532',
u':blond-haired_man:': u'\U0001F471 \U0000200D \U00002642 \U0000FE0F',
u':blond-haired_man_dark_skin_tone:': u'\U0001F471 \U0001F3FF \U0000200D \U00002642 \U0000FE0F',
u':blond-haired_man_light_skin_tone:': u'\U0001F471 \U0001F3FB \U0000200D \U00002642 \U0000FE0F',
u':blond-haired_man_medium-dark_skin_tone:': u'\U0001F471 \U0001F3FE \U0000200D \U00002642 \U0000FE0F',
u':blond-haired_man_medium-light_skin_tone:': u'\U0001F471 \U0001F3FC \U0000200D \U00002642 \U0000FE0F',
u':blond-haired_man_medium_skin_tone:': u'\U0001F471 \U0001F3FD \U0000200D \U00002642 \U0000FE0F',
u':blond-haired_person:': u'\U0001F471',
u':blond-haired_person_dark_skin_tone:': u'\U0001F471 \U0001F3FF',
u':blond-haired_person_light_skin_tone:': u'\U0001F471 \U0001F3FB',
u':blond-haired_person_medium-dark_skin_tone:': u'\U0001F471 \U0001F3FE',
u':blond-haired_person_medium-light_skin_tone:': u'\U0001F471 \U0001F3FC',
u':blond-haired_person_medium_skin_tone:': u'\U0001F471 \U0001F3FD',
u':blond-haired_woman:': u'\U0001F471 \U0000200D \U00002640 \U0000FE0F',
u':blond-haired_woman_dark_skin_tone:': u'\U0001F471 \U0001F3FF \U0000200D \U00002640 \U0000FE0F',
u':blond-haired_woman_light_skin_tone:': u'\U0001F471 \U0001F3FB \U0000200D \U00002640 \U0000FE0F',
u':blond-haired_woman_medium-dark_skin_tone:': u'\U0001F471 \U0001F3FE \U0000200D \U00002640 \U0000FE0F',
u':blond-haired_woman_medium-light_skin_tone:': u'\U0001F471 \U0001F3FC \U0000200D \U00002640 \U0000FE0F',
u':blond-haired_woman_medium_skin_tone:': u'\U0001F471 \U0001F3FD \U0000200D \U00002640 \U0000FE0F',
u':blossom:': u'\U0001F33C',
u':blowfish:': u'\U0001F421',
u':blue_book:': u'\U0001F4D8',
u':blue_circle:': u'\U0001F535',
u':blue_heart:': u'\U0001F499',
u':boar:': u'\U0001F417',
u':bomb:': u'\U0001F4A3',
u':bookmark:': u'\U0001F516',
u':bookmark_tabs:': u'\U0001F4D1',
u':books:': u'\U0001F4DA',
u':bottle_with_popping_cork:': u'\U0001F37E',
u':bouquet:': u'\U0001F490',
u':bow_and_arrow:': u'\U0001F3F9',
u':bowling:': u'\U0001F3B3',
u':boxing_glove:': u'\U0001F94A',
u':boy:': u'\U0001F466',
u':boy_dark_skin_tone:': u'\U0001F466 \U0001F3FF',
u':boy_light_skin_tone:': u'\U0001F466 \U0001F3FB',
u':boy_medium-dark_skin_tone:': u'\U0001F466 \U0001F3FE',
u':boy_medium-light_skin_tone:': u'\U0001F466 \U0001F3FC',
u':boy_medium_skin_tone:': u'\U0001F466 \U0001F3FD',
u':bread:': u'\U0001F35E',
u':bride_with_veil:': u'\U0001F470',
u':bride_with_veil_dark_skin_tone:': u'\U0001F470 \U0001F3FF',
u':bride_with_veil_light_skin_tone:': u'\U0001F470 \U0001F3FB',
u':bride_with_veil_medium-dark_skin_tone:': u'\U0001F470 \U0001F3FE',
u':bride_with_veil_medium-light_skin_tone:': u'\U0001F470 \U0001F3FC',
u':bride_with_veil_medium_skin_tone:': u'\U0001F470 \U0001F3FD',
u':bridge_at_night:': u'\U0001F309',
u':briefcase:': u'\U0001F4BC',
u':bright_button:': u'\U0001F506',
u':broken_heart:': u'\U0001F494',
u':bug:': u'\U0001F41B',
u':building_construction:': u'\U0001F3D7',
u':burrito:': u'\U0001F32F',
u':bus:': u'\U0001F68C',
u':bus_stop:': u'\U0001F68F',
u':bust_in_silhouette:': u'\U0001F464',
u':busts_in_silhouette:': u'\U0001F465',
u':butterfly:': u'\U0001F98B',
u':cactus:': u'\U0001F335',
u':calendar:': u'\U0001F4C5',
u':call_me_hand:': u'\U0001F919',
u':call_me_hand_dark_skin_tone:': u'\U0001F919 \U0001F3FF',
u':call_me_hand_light_skin_tone:': u'\U0001F919 \U0001F3FB',
u':call_me_hand_medium-dark_skin_tone:': u'\U0001F919 \U0001F3FE',
u':call_me_hand_medium-light_skin_tone:': u'\U0001F919 \U0001F3FC',
u':call_me_hand_medium_skin_tone:': u'\U0001F919 \U0001F3FD',
u':camel:': u'\U0001F42A',
u':camera:': u'\U0001F4F7',
u':camera_with_flash:': u'\U0001F4F8',
u':camping:': u'\U0001F3D5',
u':candle:': u'\U0001F56F',
u':candy:': u'\U0001F36C',
u':canoe:': u'\U0001F6F6',
u':card_file_box:': u'\U0001F5C3',
u':card_index:': u'\U0001F4C7',
u':card_index_dividers:': u'\U0001F5C2',
u':carousel_horse:': u'\U0001F3A0',
u':carp_streamer:': u'\U0001F38F',
u':carrot:': u'\U0001F955',
u':castle:': u'\U0001F3F0',
u':cat:': u'\U0001F408',
u':cat_face:': u'\U0001F431',
u':cat_face_with_tears_of_joy:': u'\U0001F639',
u':cat_face_with_wry_smile:': u'\U0001F63C',
u':chains:': u'\U000026D3',
u':chart_decreasing:': u'\U0001F4C9',
u':chart_increasing:': u'\U0001F4C8',
u':chart_increasing_with_yen:': u'\U0001F4B9',
u':cheese_wedge:': u'\U0001F9C0',
u':chequered_flag:': u'\U0001F3C1',
u':cherries:': u'\U0001F352',
u':cherry_blossom:': u'\U0001F338',
u':chestnut:': u'\U0001F330',
u':chicken:': u'\U0001F414',
u':children_crossing:': u'\U0001F6B8',
u':chipmunk:': u'\U0001F43F',
u':chocolate_bar:': u'\U0001F36B',
u':church:': u'\U000026EA',
u':cigarette:': u'\U0001F6AC',
u':cinema:': u'\U0001F3A6',
u':circled_M:': u'\U000024C2',
u':circus_tent:': u'\U0001F3AA',
u':cityscape:': u'\U0001F3D9',
u':cityscape_at_dusk:': u'\U0001F306',
u':clamp:': u'\U0001F5DC',
u':clapper_board:': u'\U0001F3AC',
u':clapping_hands:': u'\U0001F44F',
u':clapping_hands_dark_skin_tone:': u'\U0001F44F \U0001F3FF',
u':clapping_hands_light_skin_tone:': u'\U0001F44F \U0001F3FB',
u':clapping_hands_medium-dark_skin_tone:': u'\U0001F44F \U0001F3FE',
u':clapping_hands_medium-light_skin_tone:': u'\U0001F44F \U0001F3FC',
u':clapping_hands_medium_skin_tone:': u'\U0001F44F \U0001F3FD',
u':classical_building:': u'\U0001F3DB',
u':clinking_beer_mugs:': u'\U0001F37B',
u':clinking_glasses:': u'\U0001F942',
u':clipboard:': u'\U0001F4CB',
u':clockwise_vertical_arrows:': u'\U0001F503',
u':closed_book:': u'\U0001F4D5',
u':closed_mailbox_with_lowered_flag:': u'\U0001F4EA',
u':closed_mailbox_with_raised_flag:': u'\U0001F4EB',
u':closed_umbrella:': u'\U0001F302',
u':cloud:': u'\U00002601',
u':cloud_with_lightning:': u'\U0001F329',
u':cloud_with_lightning_and_rain:': u'\U000026C8',
u':cloud_with_rain:': u'\U0001F327',
u':cloud_with_snow:': u'\U0001F328',
u':clown_face:': u'\U0001F921',
u':club_suit:': u'\U00002663',
u':clutch_bag:': u'\U0001F45D',
u':cocktail_glass:': u'\U0001F378',
u':coffin:': u'\U000026B0',
u':collision:': u'\U0001F4A5',
u':comet:': u'\U00002604',
u':computer_disk:': u'\U0001F4BD',
u':computer_mouse:': u'\U0001F5B1',
u':confetti_ball:': u'\U0001F38A',
u':confounded_face:': u'\U0001F616',
u':confused_face:': u'\U0001F615',
u':construction:': u'\U0001F6A7',
u':construction_worker:': u'\U0001F477',
u':construction_worker_dark_skin_tone:': u'\U0001F477 \U0001F3FF',
u':construction_worker_light_skin_tone:': u'\U0001F477 \U0001F3FB',
u':construction_worker_medium-dark_skin_tone:': u'\U0001F477 \U0001F3FE',
u':construction_worker_medium-light_skin_tone:': u'\U0001F477 \U0001F3FC',
u':construction_worker_medium_skin_tone:': u'\U0001F477 \U0001F3FD',
u':control_knobs:': u'\U0001F39B',
u':convenience_store:': u'\U0001F3EA',
u':cooked_rice:': u'\U0001F35A',
u':cookie:': u'\U0001F36A',
u':cooking:': u'\U0001F373',
u':copyright:': u'\U000000A9',
u':couch_and_lamp:': u'\U0001F6CB',
u':couple_with_heart:': u'\U0001F491',
u':couple_with_heart_man_man:': u'\U0001F468 \U0000200D \U00002764 \U0000FE0F \U0000200D \U0001F468',
u':couple_with_heart_woman_man:': u'\U0001F469 \U0000200D \U00002764 \U0000FE0F \U0000200D \U0001F468',
u':couple_with_heart_woman_woman:': u'\U0001F469 \U0000200D \U00002764 \U0000FE0F \U0000200D \U0001F469',
u':cow:': u'\U0001F404',
u':cow_face:': u'\U0001F42E',
u':cowboy_hat_face:': u'\U0001F920',
u':crab:': u'\U0001F980',
u':crayon:': u'\U0001F58D',
u':credit_card:': u'\U0001F4B3',
u':crescent_moon:': u'\U0001F319',
u':cricket:': u'\U0001F3CF',
u':crocodile:': u'\U0001F40A',
u':croissant:': u'\U0001F950',
u':cross_mark:': u'\U0000274C',
u':cross_mark_button:': u'\U0000274E',
u':crossed_fingers:': u'\U0001F91E',
u':crossed_fingers_dark_skin_tone:': u'\U0001F91E \U0001F3FF',
u':crossed_fingers_light_skin_tone:': u'\U0001F91E \U0001F3FB',
u':crossed_fingers_medium-dark_skin_tone:': u'\U0001F91E \U0001F3FE',
u':crossed_fingers_medium-light_skin_tone:': u'\U0001F91E \U0001F3FC',
u':crossed_fingers_medium_skin_tone:': u'\U0001F91E \U0001F3FD',
u':crossed_flags:': u'\U0001F38C',
u':crossed_swords:': u'\U00002694',
u':crown:': u'\U0001F451',
u':crying_cat_face:': u'\U0001F63F',
u':crying_face:': u'\U0001F622',
u':crystal_ball:': u'\U0001F52E',
u':cucumber:': u'\U0001F952',
u':curly_loop:': u'\U000027B0',
u':currency_exchange:': u'\U0001F4B1',
u':curry_rice:': u'\U0001F35B',
u':custard:': u'\U0001F36E',
u':customs:': u'\U0001F6C3',
u':cyclone:': u'\U0001F300',
u':dagger:': u'\U0001F5E1',
u':dango:': u'\U0001F361',
u':dark_skin_tone:': u'\U0001F3FF',
u':dashing_away:': u'\U0001F4A8',
u':deciduous_tree:': u'\U0001F333',
u':deer:': u'\U0001F98C',
u':delivery_truck:': u'\U0001F69A',
u':department_store:': u'\U0001F3EC',
u':derelict_house:': u'\U0001F3DA',
u':desert:': u'\U0001F3DC',
u':desert_island:': u'\U0001F3DD',
u':desktop_computer:': u'\U0001F5A5',
u':detective:': u'\U0001F575',
u':detective_dark_skin_tone:': u'\U0001F575 \U0001F3FF',
u':detective_light_skin_tone:': u'\U0001F575 \U0001F3FB',
u':detective_medium-dark_skin_tone:': u'\U0001F575 \U0001F3FE',
u':detective_medium-light_skin_tone:': u'\U0001F575 \U0001F3FC',
u':detective_medium_skin_tone:': u'\U0001F575 \U0001F3FD',
u':diamond_suit:': u'\U00002666',
u':diamond_with_a_dot:': u'\U0001F4A0',
u':dim_button:': u'\U0001F505',
u':direct_hit:': u'\U0001F3AF',
u':disappointed_but_relieved_face:': u'\U0001F625',
u':disappointed_face:': u'\U0001F61E',
u':dizzy:': u'\U0001F4AB',
u':dizzy_face:': u'\U0001F635',
u':dog:': u'\U0001F415',
u':dog_face:': u'\U0001F436',
u':dollar_banknote:': u'\U0001F4B5',
u':dolphin:': u'\U0001F42C',
u':door:': u'\U0001F6AA',
u':dotted_six-pointed_star:': u'\U0001F52F',
u':double_curly_loop:': u'\U000027BF',
u':double_exclamation_mark:': u'\U0000203C',
u':doughnut:': u'\U0001F369',
u':dove:': u'\U0001F54A',
u':down-left_arrow:': u'\U00002199',
u':down-right_arrow:': u'\U00002198',
u':down_arrow:': u'\U00002B07',
u':down_button:': u'\U0001F53D',
u':dragon:': u'\U0001F409',
u':dragon_face:': u'\U0001F432',
u':dress:': u'\U0001F457',
u':drooling_face:': u'\U0001F924',
u':droplet:': u'\U0001F4A7',
u':drum:': u'\U0001F941',
u':duck:': u'\U0001F986',
u':dvd:': u'\U0001F4C0',
u':e-mail:': u'\U0001F4E7',
u':eagle:': u'\U0001F985',
u':ear:': u'\U0001F442',
u':ear_dark_skin_tone:': u'\U0001F442 \U0001F3FF',
u':ear_light_skin_tone:': u'\U0001F442 \U0001F3FB',
u':ear_medium-dark_skin_tone:': u'\U0001F442 \U0001F3FE',
u':ear_medium-light_skin_tone:': u'\U0001F442 \U0001F3FC',
u':ear_medium_skin_tone:': u'\U0001F442 \U0001F3FD',
u':ear_of_corn:': u'\U0001F33D',
u':egg:': u'\U0001F95A',
u':eggplant:': u'\U0001F346',
u':eight-pointed_star:': u'\U00002734',
u':eight-spoked_asterisk:': u'\U00002733',
u':eight-thirty:': u'\U0001F563',
u':eight_o’clock:': u'\U0001F557',
u':eject_button:': u'\U000023CF',
u':electric_plug:': u'\U0001F50C',
u':elephant:': u'\U0001F418',
u':eleven-thirty:': u'\U0001F566',
u':eleven_o’clock:': u'\U0001F55A',
u':envelope:': u'\U00002709',
u':envelope_with_arrow:': u'\U0001F4E9',
u':euro_banknote:': u'\U0001F4B6',
u':evergreen_tree:': u'\U0001F332',
u':exclamation_mark:': u'\U00002757',
u':exclamation_question_mark:': u'\U00002049',
u':expressionless_face:': u'\U0001F611',
u':eye:': u'\U0001F441',
u':eye_in_speech_bubble:': u'\U0001F441 \U0000FE0F \U0000200D \U0001F5E8 \U0000FE0F',
u':eyes:': u'\U0001F440',
u':face_blowing_a_kiss:': u'\U0001F618',
u':face_savouring_delicious_food:': u'\U0001F60B',
u':face_screaming_in_fear:': u'\U0001F631',
u':face_with_cold_sweat:': u'\U0001F613',
u':face_with_head-bandage:': u'\U0001F915',
u':face_with_medical_mask:': u'\U0001F637',
u':face_with_open_mouth:': u'\U0001F62E',
u':face_with_open_mouth_&_cold_sweat:': u'\U0001F630',
u':face_with_rolling_eyes:': u'\U0001F644',
u':face_with_steam_from_nose:': u'\U0001F624',
u':face_with_stuck-out_tongue:': u'\U0001F61B',
u':face_with_stuck-out_tongue_&_closed_eyes:': u'\U0001F61D',
u':face_with_stuck-out_tongue_&_winking_eye:': u'\U0001F61C',
u':face_with_tears_of_joy:': u'\U0001F602',
u':face_with_thermometer:': u'\U0001F912',
u':face_without_mouth:': u'\U0001F636',
u':factory:': u'\U0001F3ED',
u':fallen_leaf:': u'\U0001F342',
u':family:': u'\U0001F46A',
u':family_man_boy:': u'\U0001F468 \U0000200D \U0001F466',
u':family_man_boy_boy:': u'\U0001F468 \U0000200D \U0001F466 \U0000200D \U0001F466',
u':family_man_girl:': u'\U0001F468 \U0000200D \U0001F467',
u':family_man_girl_boy:': u'\U0001F468 \U0000200D \U0001F467 \U0000200D \U0001F466',
u':family_man_girl_girl:': u'\U0001F468 \U0000200D \U0001F467 \U0000200D \U0001F467',
u':family_man_man_boy:': u'\U0001F468 \U0000200D \U0001F468 \U0000200D \U0001F466',
u':family_man_man_boy_boy:': u'\U0001F468 \U0000200D \U0001F468 \U0000200D \U0001F466 \U0000200D \U0001F466',
u':family_man_man_girl:': u'\U0001F468 \U0000200D \U0001F468 \U0000200D \U0001F467',
u':family_man_man_girl_boy:': u'\U0001F468 \U0000200D \U0001F468 \U0000200D \U0001F467 \U0000200D \U0001F466',
u':family_man_man_girl_girl:': u'\U0001F468 \U0000200D \U0001F468 \U0000200D \U0001F467 \U0000200D \U0001F467',
u':family_man_woman_boy:': u'\U0001F468 \U0000200D \U0001F469 \U0000200D \U0001F466',
u':family_man_woman_boy_boy:': u'\U0001F468 \U0000200D \U0001F469 \U0000200D \U0001F466 \U0000200D \U0001F466',
u':family_man_woman_girl:': u'\U0001F468 \U0000200D \U0001F469 \U0000200D \U0001F467',
u':family_man_woman_girl_boy:': u'\U0001F468 \U0000200D \U0001F469 \U0000200D \U0001F467 \U0000200D \U0001F466',
u':family_man_woman_girl_girl:': u'\U0001F468 \U0000200D \U0001F469 \U0000200D \U0001F467 \U0000200D \U0001F467',
u':family_woman_boy:': u'\U0001F469 \U0000200D \U0001F466',
u':family_woman_boy_boy:': u'\U0001F469 \U0000200D \U0001F466 \U0000200D \U0001F466',
u':family_woman_girl:': u'\U0001F469 \U0000200D \U0001F467',
u':family_woman_girl_boy:': u'\U0001F469 \U0000200D \U0001F467 \U0000200D \U0001F466',
u':family_woman_girl_girl:': u'\U0001F469 \U0000200D \U0001F467 \U0000200D \U0001F467',
u':family_woman_woman_boy:': u'\U0001F469 \U0000200D \U0001F469 \U0000200D \U0001F466',
u':family_woman_woman_boy_boy:': u'\U0001F469 \U0000200D \U0001F469 \U0000200D \U0001F466 \U0000200D \U0001F466',
u':family_woman_woman_girl:': u'\U0001F469 \U0000200D \U0001F469 \U0000200D \U0001F467',
u':family_woman_woman_girl_boy:': u'\U0001F469 \U0000200D \U0001F469 \U0000200D \U0001F467 \U0000200D \U0001F466',
u':family_woman_woman_girl_girl:': u'\U0001F469 \U0000200D \U0001F469 \U0000200D \U0001F467 \U0000200D \U0001F467',
u':fast-forward_button:': u'\U000023E9',
u':fast_down_button:': u'\U000023EC',
u':fast_reverse_button:': u'\U000023EA',
u':fast_up_button:': u'\U000023EB',
u':fax_machine:': u'\U0001F4E0',
u':fearful_face:': u'\U0001F628',
u':female_sign:': u'\U00002640',
u':ferris_wheel:': u'\U0001F3A1',
u':ferry:': u'\U000026F4',
u':field_hockey:': u'\U0001F3D1',
u':file_cabinet:': u'\U0001F5C4',
u':file_folder:': u'\U0001F4C1',
u':film_frames:': u'\U0001F39E',
u':film_projector:': u'\U0001F4FD',
u':fire:': u'\U0001F525',
u':fire_engine:': u'\U0001F692',
u':fireworks:': u'\U0001F386',
u':first_quarter_moon:': u'\U0001F313',
u':first_quarter_moon_with_face:': u'\U0001F31B',
u':fish:': u'\U0001F41F',
u':fish_cake_with_swirl:': u'\U0001F365',
u':fishing_pole:': u'\U0001F3A3',
u':five-thirty:': u'\U0001F560',
u':five_o’clock:': u'\U0001F554',
u':flag_in_hole:': u'\U000026F3',
u':flashlight:': u'\U0001F526',
u':fleur-de-lis:': u'\U0000269C',
u':flexed_biceps:': u'\U0001F4AA',
u':flexed_biceps_dark_skin_tone:': u'\U0001F4AA \U0001F3FF',
u':flexed_biceps_light_skin_tone:': u'\U0001F4AA \U0001F3FB',
u':flexed_biceps_medium-dark_skin_tone:': u'\U0001F4AA \U0001F3FE',
u':flexed_biceps_medium-light_skin_tone:': u'\U0001F4AA \U0001F3FC',
u':flexed_biceps_medium_skin_tone:': u'\U0001F4AA \U0001F3FD',
u':floppy_disk:': u'\U0001F4BE',
u':flower_playing_cards:': u'\U0001F3B4',
u':flushed_face:': u'\U0001F633',
u':fog:': u'\U0001F32B',
u':foggy:': u'\U0001F301',
u':folded_hands:': u'\U0001F64F',
u':folded_hands_dark_skin_tone:': u'\U0001F64F \U0001F3FF',
u':folded_hands_light_skin_tone:': u'\U0001F64F \U0001F3FB',
u':folded_hands_medium-dark_skin_tone:': u'\U0001F64F \U0001F3FE',
u':folded_hands_medium-light_skin_tone:': u'\U0001F64F \U0001F3FC',
u':folded_hands_medium_skin_tone:': u'\U0001F64F \U0001F3FD',
u':footprints:': u'\U0001F463',
u':fork_and_knife:': u'\U0001F374',
u':fork_and_knife_with_plate:': u'\U0001F37D',
u':fountain:': u'\U000026F2',
u':fountain_pen:': u'\U0001F58B',
u':four-thirty:': u'\U0001F55F',
u':four_leaf_clover:': u'\U0001F340',
u':four_o’clock:': u'\U0001F553',
u':fox_face:': u'\U0001F98A',
u':framed_picture:': u'\U0001F5BC',
u':french_fries:': u'\U0001F35F',
u':fried_shrimp:': u'\U0001F364',
u':frog_face:': u'\U0001F438',
u':front-facing_baby_chick:': u'\U0001F425',
u':frowning_face:': u'\U00002639',
u':frowning_face_with_open_mouth:': u'\U0001F626',
u':fuel_pump:': u'\U000026FD',
u':full_moon:': u'\U0001F315',
u':full_moon_with_face:': u'\U0001F31D',
u':funeral_urn:': u'\U000026B1',
u':game_die:': u'\U0001F3B2',
u':gear:': u'\U00002699',
u':gem_stone:': u'\U0001F48E',
u':ghost:': u'\U0001F47B',
u':girl:': u'\U0001F467',
u':girl_dark_skin_tone:': u'\U0001F467 \U0001F3FF',
u':girl_light_skin_tone:': u'\U0001F467 \U0001F3FB',
u':girl_medium-dark_skin_tone:': u'\U0001F467 \U0001F3FE',
u':girl_medium-light_skin_tone:': u'\U0001F467 \U0001F3FC',
u':girl_medium_skin_tone:': u'\U0001F467 \U0001F3FD',
u':glass_of_milk:': u'\U0001F95B',
u':glasses:': u'\U0001F453',
u':globe_showing_Americas:': u'\U0001F30E',
u':globe_showing_Asia-Australia:': u'\U0001F30F',
u':globe_showing_Europe-Africa:': u'\U0001F30D',
u':globe_with_meridians:': u'\U0001F310',
u':glowing_star:': u'\U0001F31F',
u':goal_net:': u'\U0001F945',
u':goat:': u'\U0001F410',
u':goblin:': u'\U0001F47A',
u':gorilla:': u'\U0001F98D',
u':graduation_cap:': u'\U0001F393',
u':grapes:': u'\U0001F347',
u':green_apple:': u'\U0001F34F',
u':green_book:': u'\U0001F4D7',
u':green_heart:': u'\U0001F49A',
u':green_salad:': u'\U0001F957',
u':grimacing_face:': u'\U0001F62C',
u':grinning_cat_face_with_smiling_eyes:': u'\U0001F638',
u':grinning_face:': u'\U0001F600',
u':grinning_face_with_smiling_eyes:': u'\U0001F601',
u':growing_heart:': u'\U0001F497',
u':guard:': u'\U0001F482',
u':guard_dark_skin_tone:': u'\U0001F482 \U0001F3FF',
u':guard_light_skin_tone:': u'\U0001F482 \U0001F3FB',
u':guard_medium-dark_skin_tone:': u'\U0001F482 \U0001F3FE',
u':guard_medium-light_skin_tone:': u'\U0001F482 \U0001F3FC',
u':guard_medium_skin_tone:': u'\U0001F482 \U0001F3FD',
u':guitar:': u'\U0001F3B8',
u':hamburger:': u'\U0001F354',
u':hammer:': u'\U0001F528',
u':hammer_and_pick:': u'\U00002692',
u':hammer_and_wrench:': u'\U0001F6E0',
u':hamster_face:': u'\U0001F439',
u':handbag:': u'\U0001F45C',
u':handshake:': u'\U0001F91D',
u':hatching_chick:': u'\U0001F423',
u':headphone:': u'\U0001F3A7',
u':hear-no-evil_monkey:': u'\U0001F649',
u':heart_decoration:': u'\U0001F49F',
u':heart_suit:': u'\U00002665',
u':heart_with_arrow:': u'\U0001F498',
u':heart_with_ribbon:': u'\U0001F49D',
u':heavy_check_mark:': u'\U00002714',
u':heavy_division_sign:': u'\U00002797',
u':heavy_dollar_sign:': u'\U0001F4B2',
u':heavy_heart_exclamation:': u'\U00002763',
u':heavy_large_circle:': u'\U00002B55',
u':heavy_minus_sign:': u'\U00002796',
u':heavy_multiplication_x:': u'\U00002716',
u':heavy_plus_sign:': u'\U00002795',
u':helicopter:': u'\U0001F681',
u':herb:': u'\U0001F33F',
u':hibiscus:': u'\U0001F33A',
u':high-heeled_shoe:': u'\U0001F460',
u':high-speed_train:': u'\U0001F684',
u':high-speed_train_with_bullet_nose:': u'\U0001F685',
u':high_voltage:': u'\U000026A1',
u':hole:': u'\U0001F573',
u':honey_pot:': u'\U0001F36F',
u':honeybee:': u'\U0001F41D',
u':horizontal_traffic_light:': u'\U0001F6A5',
u':horse:': u'\U0001F40E',
u':horse_face:': u'\U0001F434',
u':horse_racing:': u'\U0001F3C7',
u':horse_racing_dark_skin_tone:': u'\U0001F3C7 \U0001F3FF',
u':horse_racing_light_skin_tone:': u'\U0001F3C7 \U0001F3FB',
u':horse_racing_medium-dark_skin_tone:': u'\U0001F3C7 \U0001F3FE',
u':horse_racing_medium-light_skin_tone:': u'\U0001F3C7 \U0001F3FC',
u':horse_racing_medium_skin_tone:': u'\U0001F3C7 \U0001F3FD',
u':hospital:': u'\U0001F3E5',
u':hot_beverage:': u'\U00002615',
u':hot_dog:': u'\U0001F32D',
u':hot_pepper:': u'\U0001F336',
u':hot_springs:': u'\U00002668',
u':hotel:': u'\U0001F3E8',
u':hourglass:': u'\U0000231B',
u':hourglass_with_flowing_sand:': u'\U000023F3',
u':house:': u'\U0001F3E0',
u':house_with_garden:': u'\U0001F3E1',
u':hugging_face:': u'\U0001F917',
u':hundred_points:': u'\U0001F4AF',
u':hushed_face:': u'\U0001F62F',
u':ice_cream:': u'\U0001F368',
u':ice_hockey:': u'\U0001F3D2',
u':ice_skate:': u'\U000026F8',
u':inbox_tray:': u'\U0001F4E5',
u':incoming_envelope:': u'\U0001F4E8',
u':index_pointing_up:': u'\U0000261D',
u':index_pointing_up_dark_skin_tone:': u'\U0000261D \U0001F3FF',
u':index_pointing_up_light_skin_tone:': u'\U0000261D \U0001F3FB',
u':index_pointing_up_medium-dark_skin_tone:': u'\U0000261D \U0001F3FE',
u':index_pointing_up_medium-light_skin_tone:': u'\U0000261D \U0001F3FC',
u':index_pointing_up_medium_skin_tone:': u'\U0000261D \U0001F3FD',
u':information:': u'\U00002139',
u':input_latin_letters:': u'\U0001F524',
u':input_latin_lowercase:': u'\U0001F521',
u':input_latin_uppercase:': u'\U0001F520',
u':input_numbers:': u'\U0001F522',
u':input_symbols:': u'\U0001F523',
u':jack-o-lantern:': u'\U0001F383',
u':jeans:': u'\U0001F456',
u':joker:': u'\U0001F0CF',
u':joystick:': u'\U0001F579',
u':kaaba:': u'\U0001F54B',
u':key:': u'\U0001F511',
u':keyboard:': u'\U00002328',
u':keycap_#:': u'\U00000023 \U0000FE0F \U000020E3',
#u':keycap_*:': u'\U0000002A \U0000FE0F \U000020E3',
u':keycap_0:': u'\U00000030 \U0000FE0F \U000020E3',
u':keycap_1:': u'\U00000031 \U0000FE0F \U000020E3',
u':keycap_10:': u'\U0001F51F',
u':keycap_2:': u'\U00000032 \U0000FE0F \U000020E3',
u':keycap_3:': u'\U00000033 \U0000FE0F \U000020E3',
u':keycap_4:': u'\U00000034 \U0000FE0F \U000020E3',
u':keycap_5:': u'\U00000035 \U0000FE0F \U000020E3',
u':keycap_6:': u'\U00000036 \U0000FE0F \U000020E3',
u':keycap_7:': u'\U00000037 \U0000FE0F \U000020E3',
u':keycap_8:': u'\U00000038 \U0000FE0F \U000020E3',
u':keycap_9:': u'\U00000039 \U0000FE0F \U000020E3',
u':kick_scooter:': u'\U0001F6F4',
u':kimono:': u'\U0001F458',
u':kiss:': u'\U0001F48F',
u':kiss_man_man:': u'\U0001F468 \U0000200D \U00002764 \U0000FE0F \U0000200D \U0001F48B \U0000200D \U0001F468',
u':kiss_mark:': u'\U0001F48B',
u':kiss_woman_man:': u'\U0001F469 \U0000200D \U00002764 \U0000FE0F \U0000200D \U0001F48B \U0000200D \U0001F468',
u':kiss_woman_woman:': u'\U0001F469 \U0000200D \U00002764 \U0000FE0F \U0000200D \U0001F48B \U0000200D \U0001F469',
u':kissing_cat_face_with_closed_eyes:': u'\U0001F63D',
u':kissing_face:': u'\U0001F617',
u':kissing_face_with_closed_eyes:': u'\U0001F61A',
u':kissing_face_with_smiling_eyes:': u'\U0001F619',
u':kitchen_knife:': u'\U0001F52A',
u':kiwi_fruit:': u'\U0001F95D',
u':koala:': u'\U0001F428',
u':label:': u'\U0001F3F7',
u':lady_beetle:': u'\U0001F41E',
u':laptop_computer:': u'\U0001F4BB',
u':large_blue_diamond:': u'\U0001F537',
u':large_orange_diamond:': u'\U0001F536',
u':last_quarter_moon:': u'\U0001F317',
u':last_quarter_moon_with_face:': u'\U0001F31C',
u':last_track_button:': u'\U000023EE',
u':latin_cross:': u'\U0000271D',
u':leaf_fluttering_in_wind:': u'\U0001F343',
u':ledger:': u'\U0001F4D2',
u':left-facing_fist:': u'\U0001F91B',
u':left-facing_fist_dark_skin_tone:': u'\U0001F91B \U0001F3FF',
u':left-facing_fist_light_skin_tone:': u'\U0001F91B \U0001F3FB',
u':left-facing_fist_medium-dark_skin_tone:': u'\U0001F91B \U0001F3FE',
u':left-facing_fist_medium-light_skin_tone:': u'\U0001F91B \U0001F3FC',
u':left-facing_fist_medium_skin_tone:': u'\U0001F91B \U0001F3FD',
u':left-pointing_magnifying_glass:': u'\U0001F50D',
u':left-right_arrow:': u'\U00002194',
u':left_arrow:': u'\U00002B05',
u':left_arrow_curving_right:': u'\U000021AA',
u':left_luggage:': u'\U0001F6C5',
u':left_speech_bubble:': u'\U0001F5E8',
u':lemon:': u'\U0001F34B',
u':leopard:': u'\U0001F406',
u':level_slider:': u'\U0001F39A',
u':light_bulb:': u'\U0001F4A1',
u':light_rail:': u'\U0001F688',
u':light_skin_tone:': u'\U0001F3FB',
u':link:': u'\U0001F517',
u':linked_paperclips:': u'\U0001F587',
u':lion_face:': u'\U0001F981',
u':lipstick:': u'\U0001F484',