-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcodes.py
3877 lines (3874 loc) · 132 KB
/
codes.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 -*-
EMOJI_UNICODE = {
':admission_tickets:': u'\U0001F39F',
':aerial_tramway:': u'\U0001F6A1',
':airplane:': u'\U00002708',
':airplane_arriving:': u'\U0001F6EC',
':airplane_departure:': u'\U0001F6EB',
':alarm_clock:': u'\U000023F0',
':alembic:': u'\U00002697',
':alien_monster:': u'\U0001F47E',
':ambulance:': u'\U0001F691',
':american_football:': u'\U0001F3C8',
':amphora:': u'\U0001F3FA',
':anchor:': u'\U00002693',
':anger_symbol:': u'\U0001F4A2',
':angry_face:': u'\U0001F620',
':anguished_face:': u'\U0001F627',
':ant:': u'\U0001F41C',
':antenna_with_bars:': u'\U0001F4F6',
':anticlockwise_downwards_and_upwards_open_circle_arrows:': u'\U0001F504',
':aquarius:': u'\U00002652',
':aries:': u'\U00002648',
':arrow_pointing_rightwards_then_curving_downwards:': u'\U00002935',
':arrow_pointing_rightwards_then_curving_upwards:': u'\U00002934',
':articulated_lorry:': u'\U0001F69B',
':artist_palette:': u'\U0001F3A8',
':astonished_face:': u'\U0001F632',
':athletic_shoe:': u'\U0001F45F',
':atom_symbol:': u'\U0000269B',
':aubergine:': u'\U0001F346',
':automated_teller_machine:': u'\U0001F3E7',
':automobile:': u'\U0001F697',
':baby:': u'\U0001F476',
':baby_angel:': u'\U0001F47C',
':baby_bottle:': u'\U0001F37C',
':baby_chick:': u'\U0001F424',
':baby_symbol:': u'\U0001F6BC',
':back_with_leftwards_arrow_above:': u'\U0001F519',
':bactrian_camel:': u'\U0001F42B',
':badminton_racquet_and_shuttlecock:': u'\U0001F3F8',
':baggage_claim:': u'\U0001F6C4',
':balloon:': u'\U0001F388',
':ballot_box_with_ballot:': u'\U0001F5F3',
':ballot_box_with_check:': u'\U00002611',
':banana:': u'\U0001F34C',
':bank:': u'\U0001F3E6',
':banknote_with_dollar_sign:': u'\U0001F4B5',
':banknote_with_euro_sign:': u'\U0001F4B6',
':banknote_with_pound_sign:': u'\U0001F4B7',
':banknote_with_yen_sign:': u'\U0001F4B4',
':bar_chart:': u'\U0001F4CA',
':barber_pole:': u'\U0001F488',
':baseball:': u'\U000026BE',
':basketball_and_hoop:': u'\U0001F3C0',
':bath:': u'\U0001F6C0',
':bathtub:': u'\U0001F6C1',
':battery:': u'\U0001F50B',
':beach_with_umbrella:': u'\U0001F3D6',
':bear_face:': u'\U0001F43B',
':beating_heart:': u'\U0001F493',
':bed:': u'\U0001F6CF',
':beer_mug:': u'\U0001F37A',
':bell:': u'\U0001F514',
':bell_with_cancellation_stroke:': u'\U0001F515',
':bellhop_bell:': u'\U0001F6CE',
':bento_box:': u'\U0001F371',
':bicycle:': u'\U0001F6B2',
':bicyclist:': u'\U0001F6B4',
':bikini:': u'\U0001F459',
':billiards:': u'\U0001F3B1',
':biohazard_sign:': u'\U00002623',
':bird:': u'\U0001F426',
':birthday_cake:': u'\U0001F382',
':black_circle_for_record:': u'\U000023FA',
':black_club_suit:': u'\U00002663',
':black_diamond_suit:': u'\U00002666',
':black_down-pointing_double_triangle:': u'\U000023EC',
':black_heart_suit:': u'\U00002665',
':black_large_square:': u'\U00002B1B',
':black_left-pointing_double_triangle:': u'\U000023EA',
':black_left-pointing_double_triangle_with_vertical_bar:': u'\U000023EE',
':black_left-pointing_triangle:': u'\U000025C0',
':black_medium_small_square:': u'\U000025FE',
':black_medium_square:': u'\U000025FC',
':black_nib:': u'\U00002712',
':black_question_mark_ornament:': u'\U00002753',
':black_right-pointing_double_triangle:': u'\U000023E9',
':black_right-pointing_double_triangle_with_vertical_bar:': u'\U000023ED',
':black_right-pointing_triangle:': u'\U000025B6',
':black_right-pointing_triangle_with_double_vertical_bar:': u'\U000023EF',
':black_rightwards_arrow:': u'\U000027A1',
':black_scissors:': u'\U00002702',
':black_small_square:': u'\U000025AA',
':black_spade_suit:': u'\U00002660',
':black_square_button:': u'\U0001F532',
':black_square_for_stop:': u'\U000023F9',
':black_sun_with_rays:': u'\U00002600',
':black_telephone:': u'\U0000260E',
':black_universal_recycling_symbol:': u'\U0000267B',
':black_up-pointing_double_triangle:': u'\U000023EB',
':blossom:': u'\U0001F33C',
':blowfish:': u'\U0001F421',
':blue_book:': u'\U0001F4D8',
':blue_heart:': u'\U0001F499',
':boar:': u'\U0001F417',
':bomb:': u'\U0001F4A3',
':bookmark:': u'\U0001F516',
':bookmark_tabs:': u'\U0001F4D1',
':books:': u'\U0001F4DA',
':bottle_with_popping_cork:': u'\U0001F37E',
':bouquet:': u'\U0001F490',
':bow_and_arrow:': u'\U0001F3F9',
':bowling:': u'\U0001F3B3',
':boy:': u'\U0001F466',
':bread:': u'\U0001F35E',
':bride_with_veil:': u'\U0001F470',
':bridge_at_night:': u'\U0001F309',
':briefcase:': u'\U0001F4BC',
':broken_heart:': u'\U0001F494',
':bug:': u'\U0001F41B',
':building_construction:': u'\U0001F3D7',
':burrito:': u'\U0001F32F',
':bus:': u'\U0001F68C',
':bus_stop:': u'\U0001F68F',
':bust_in_silhouette:': u'\U0001F464',
':busts_in_silhouette:': u'\U0001F465',
':cactus:': u'\U0001F335',
':calendar:': u'\U0001F4C5',
':camera:': u'\U0001F4F7',
':camera_with_flash:': u'\U0001F4F8',
':camping:': u'\U0001F3D5',
':cancer:': u'\U0000264B',
':candle:': u'\U0001F56F',
':candy:': u'\U0001F36C',
':capricorn:': u'\U00002651',
':card_file_box:': u'\U0001F5C3',
':card_index:': u'\U0001F4C7',
':card_index_dividers:': u'\U0001F5C2',
':carousel_horse:': u'\U0001F3A0',
':carp_streamer:': u'\U0001F38F',
':cat:': u'\U0001F408',
':cat_face:': u'\U0001F431',
':cat_face_with_tears_of_joy:': u'\U0001F639',
':cat_face_with_wry_smile:': u'\U0001F63C',
':chains:': u'\U000026D3',
':chart_with_downwards_trend:': u'\U0001F4C9',
':chart_with_upwards_trend:': u'\U0001F4C8',
':chart_with_upwards_trend_and_yen_sign:': u'\U0001F4B9',
':cheering_megaphone:': u'\U0001F4E3',
':cheese_wedge:': u'\U0001F9C0',
':chequered_flag:': u'\U0001F3C1',
':cherries:': u'\U0001F352',
':cherry_blossom:': u'\U0001F338',
':chestnut:': u'\U0001F330',
':chicken:': u'\U0001F414',
':children_crossing:': u'\U0001F6B8',
':chipmunk:': u'\U0001F43F',
':chocolate_bar:': u'\U0001F36B',
':christmas_tree:': u'\U0001F384',
':church:': u'\U000026EA',
':cinema:': u'\U0001F3A6',
':circled_ideograph_accept:': u'\U0001F251',
':circled_ideograph_advantage:': u'\U0001F250',
':circled_ideograph_congratulation:': u'\U00003297',
':circled_ideograph_secret:': u'\U00003299',
':circled_latin_capital_letter_m:': u'\U000024C2',
':circus_tent:': u'\U0001F3AA',
':cityscape:': u'\U0001F3D9',
':cityscape_at_dusk:': u'\U0001F306',
':clapper_board:': u'\U0001F3AC',
':clapping_hands_sign:': u'\U0001F44F',
':classical_building:': u'\U0001F3DB',
':clinking_beer_mugs:': u'\U0001F37B',
':clipboard:': u'\U0001F4CB',
':clock_face_eight-thirty:': u'\U0001F563',
':clock_face_eight_oclock:': u'\U0001F557',
':clock_face_eleven-thirty:': u'\U0001F566',
':clock_face_eleven_oclock:': u'\U0001F55A',
':clock_face_five-thirty:': u'\U0001F560',
':clock_face_five_oclock:': u'\U0001F554',
':clock_face_four-thirty:': u'\U0001F55F',
':clock_face_four_oclock:': u'\U0001F553',
':clock_face_nine-thirty:': u'\U0001F564',
':clock_face_nine_oclock:': u'\U0001F558',
':clock_face_one-thirty:': u'\U0001F55C',
':clock_face_one_oclock:': u'\U0001F550',
':clock_face_seven-thirty:': u'\U0001F562',
':clock_face_seven_oclock:': u'\U0001F556',
':clock_face_six-thirty:': u'\U0001F561',
':clock_face_six_oclock:': u'\U0001F555',
':clock_face_ten-thirty:': u'\U0001F565',
':clock_face_ten_oclock:': u'\U0001F559',
':clock_face_three-thirty:': u'\U0001F55E',
':clock_face_three_oclock:': u'\U0001F552',
':clock_face_twelve-thirty:': u'\U0001F567',
':clock_face_twelve_oclock:': u'\U0001F55B',
':clock_face_two-thirty:': u'\U0001F55D',
':clock_face_two_oclock:': u'\U0001F551',
':clockwise_downwards_and_upwards_open_circle_arrows:': u'\U0001F503',
':clockwise_rightwards_and_leftwards_open_circle_arrows:': u'\U0001F501',
':clockwise_rightwards_and_leftwards_open_circle_arrows_with_circled_one_overlay:': u'\U0001F502',
':closed_book:': u'\U0001F4D5',
':closed_lock_with_key:': u'\U0001F510',
':closed_mailbox_with_lowered_flag:': u'\U0001F4EA',
':closed_mailbox_with_raised_flag:': u'\U0001F4EB',
':closed_umbrella:': u'\U0001F302',
':cloud:': u'\U00002601',
':cloud_with_lightning:': u'\U0001F329',
':cloud_with_rain:': u'\U0001F327',
':cloud_with_snow:': u'\U0001F328',
':cloud_with_tornado:': u'\U0001F32A',
':cocktail_glass:': u'\U0001F378',
':coffin:': u'\U000026B0',
':collision_symbol:': u'\U0001F4A5',
':comet:': u'\U00002604',
':compression:': u'\U0001F5DC',
':confetti_ball:': u'\U0001F38A',
':confounded_face:': u'\U0001F616',
':confused_face:': u'\U0001F615',
':construction_sign:': u'\U0001F6A7',
':construction_worker:': u'\U0001F477',
':control_knobs:': u'\U0001F39B',
':convenience_store:': u'\U0001F3EA',
':cooked_rice:': u'\U0001F35A',
':cookie:': u'\U0001F36A',
':cooking:': u'\U0001F373',
':copyright_sign:': u'\U000000A9',
':couch_and_lamp:': u'\U0001F6CB',
':couple_with_heart:': u'\U0001F491',
':cow:': u'\U0001F404',
':cow_face:': u'\U0001F42E',
':crab:': u'\U0001F980',
':credit_card:': u'\U0001F4B3',
':crescent_moon:': u'\U0001F319',
':cricket_bat_and_ball:': u'\U0001F3CF',
':crocodile:': u'\U0001F40A',
':cross_mark:': u'\U0000274C',
':crossed_flags:': u'\U0001F38C',
':crossed_swords:': u'\U00002694',
':crown:': u'\U0001F451',
':crying_cat_face:': u'\U0001F63F',
':crying_face:': u'\U0001F622',
':crystal_ball:': u'\U0001F52E',
':curly_loop:': u'\U000027B0',
':currency_exchange:': u'\U0001F4B1',
':curry_and_rice:': u'\U0001F35B',
':custard:': u'\U0001F36E',
':customs:': u'\U0001F6C3',
':cyclone:': u'\U0001F300',
':dagger_knife:': u'\U0001F5E1',
':dancer:': u'\U0001F483',
':dango:': u'\U0001F361',
':dark_sunglasses:': u'\U0001F576',
':dash_symbol:': u'\U0001F4A8',
':deciduous_tree:': u'\U0001F333',
':delivery_truck:': u'\U0001F69A',
':department_store:': u'\U0001F3EC',
':derelict_house_building:': u'\U0001F3DA',
':desert:': u'\U0001F3DC',
':desert_island:': u'\U0001F3DD',
':desktop_computer:': u'\U0001F5A5',
':diamond_shape_with_a_dot_inside:': u'\U0001F4A0',
':direct_hit:': u'\U0001F3AF',
':disappointed_but_relieved_face:': u'\U0001F625',
':disappointed_face:': u'\U0001F61E',
':dizzy_face:': u'\U0001F635',
':dizzy_symbol:': u'\U0001F4AB',
':do_not_litter_symbol:': u'\U0001F6AF',
':dog:': u'\U0001F415',
':dog_face:': u'\U0001F436',
':dolphin:': u'\U0001F42C',
':door:': u'\U0001F6AA',
':double_curly_loop:': u'\U000027BF',
':double_exclamation_mark:': u'\U0000203C',
':double_vertical_bar:': u'\U000023F8',
':doughnut:': u'\U0001F369',
':dove_of_peace:': u'\U0001F54A',
':down-pointing_red_triangle:': u'\U0001F53B',
':down-pointing_small_red_triangle:': u'\U0001F53D',
':downwards_black_arrow:': u'\U00002B07',
':dragon:': u'\U0001F409',
':dragon_face:': u'\U0001F432',
':dress:': u'\U0001F457',
':dromedary_camel:': u'\U0001F42A',
':droplet:': u'\U0001F4A7',
':dvd:': u'\U0001F4C0',
':e-mail_symbol:': u'\U0001F4E7',
':ear:': u'\U0001F442',
':ear_of_maize:': u'\U0001F33D',
':ear_of_rice:': u'\U0001F33E',
':earth_globe_americas:': u'\U0001F30E',
':earth_globe_asia-australia:': u'\U0001F30F',
':earth_globe_europe-africa:': u'\U0001F30D',
':eight_pointed_black_star:': u'\U00002734',
':eight_spoked_asterisk:': u'\U00002733',
':eject_symbol:': u'\U000023CF',
':electric_light_bulb:': u'\U0001F4A1',
':electric_plug:': u'\U0001F50C',
':electric_torch:': u'\U0001F526',
':elephant:': u'\U0001F418',
':emoji_modifier_fitzpatrick_type-1-2:': u'\U0001F3FB',
':emoji_modifier_fitzpatrick_type-3:': u'\U0001F3FC',
':emoji_modifier_fitzpatrick_type-4:': u'\U0001F3FD',
':emoji_modifier_fitzpatrick_type-5:': u'\U0001F3FE',
':emoji_modifier_fitzpatrick_type-6:': u'\U0001F3FF',
':end_with_leftwards_arrow_above:': u'\U0001F51A',
':envelope:': u'\U00002709',
':envelope_with_downwards_arrow_above:': u'\U0001F4E9',
':european_castle:': u'\U0001F3F0',
':european_post_office:': u'\U0001F3E4',
':evergreen_tree:': u'\U0001F332',
':exclamation_question_mark:': u'\U00002049',
':expressionless_face:': u'\U0001F611',
':extraterrestrial_alien:': u'\U0001F47D',
':eye:': u'\U0001F441',
':eyeglasses:': u'\U0001F453',
':eyes:': u'\U0001F440',
':face_massage:': u'\U0001F486',
':face_savouring_delicious_food:': u'\U0001F60B',
':face_screaming_in_fear:': u'\U0001F631',
':face_throwing_a_kiss:': u'\U0001F618',
':face_with_cold_sweat:': u'\U0001F613',
':face_with_head-bandage:': u'\U0001F915',
':face_with_look_of_triumph:': u'\U0001F624',
':face_with_medical_mask:': u'\U0001F637',
':face_with_no_good_gesture:': u'\U0001F645',
':face_with_ok_gesture:': u'\U0001F646',
':face_with_open_mouth:': u'\U0001F62E',
':face_with_open_mouth_and_cold_sweat:': u'\U0001F630',
':face_with_rolling_eyes:': u'\U0001F644',
':face_with_stuck-out_tongue:': u'\U0001F61B',
':face_with_stuck-out_tongue_and_tightly-closed_eyes:': u'\U0001F61D',
':face_with_stuck-out_tongue_and_winking_eye:': u'\U0001F61C',
':face_with_tears_of_joy:': u'\U0001F602',
':face_with_thermometer:': u'\U0001F912',
':face_without_mouth:': u'\U0001F636',
':factory:': u'\U0001F3ED',
':fallen_leaf:': u'\U0001F342',
':family:': u'\U0001F46A',
':father_christmas:': u'\U0001F385',
':fax_machine:': u'\U0001F4E0',
':fearful_face:': u'\U0001F628',
':ferris_wheel:': u'\U0001F3A1',
':ferry:': u'\U000026F4',
':field_hockey_stick_and_ball:': u'\U0001F3D1',
':file_cabinet:': u'\U0001F5C4',
':file_folder:': u'\U0001F4C1',
':film_frames:': u'\U0001F39E',
':film_projector:': u'\U0001F4FD',
':fire:': u'\U0001F525',
':fire_engine:': u'\U0001F692',
':firework_sparkler:': u'\U0001F387',
':fireworks:': u'\U0001F386',
':first_quarter_moon_symbol:': u'\U0001F313',
':first_quarter_moon_with_face:': u'\U0001F31B',
':fish:': u'\U0001F41F',
':fish_cake_with_swirl_design:': u'\U0001F365',
':fishing_pole_and_fish:': u'\U0001F3A3',
':fisted_hand_sign:': u'\U0001F44A',
':flag_for_Afghanistan:': u'\U0001F1E6 \U0001F1EB',
':flag_for_Albania:': u'\U0001F1E6 \U0001F1F1',
':flag_for_Algeria:': u'\U0001F1E9 \U0001F1FF',
':flag_for_American_Samoa:': u'\U0001F1E6 \U0001F1F8',
':flag_for_Andorra:': u'\U0001F1E6 \U0001F1E9',
':flag_for_Angola:': u'\U0001F1E6 \U0001F1F4',
':flag_for_Anguilla:': u'\U0001F1E6 \U0001F1EE',
':flag_for_Antarctica:': u'\U0001F1E6 \U0001F1F6',
':flag_for_Antigua_&_Barbuda:': u'\U0001F1E6 \U0001F1EC',
':flag_for_Argentina:': u'\U0001F1E6 \U0001F1F7',
':flag_for_Armenia:': u'\U0001F1E6 \U0001F1F2',
':flag_for_Aruba:': u'\U0001F1E6 \U0001F1FC',
':flag_for_Ascension_Island:': u'\U0001F1E6 \U0001F1E8',
':flag_for_Australia:': u'\U0001F1E6 \U0001F1FA',
':flag_for_Austria:': u'\U0001F1E6 \U0001F1F9',
':flag_for_Azerbaijan:': u'\U0001F1E6 \U0001F1FF',
':flag_for_Bahamas:': u'\U0001F1E7 \U0001F1F8',
':flag_for_Bahrain:': u'\U0001F1E7 \U0001F1ED',
':flag_for_Bangladesh:': u'\U0001F1E7 \U0001F1E9',
':flag_for_Barbados:': u'\U0001F1E7 \U0001F1E7',
':flag_for_Belarus:': u'\U0001F1E7 \U0001F1FE',
':flag_for_Belgium:': u'\U0001F1E7 \U0001F1EA',
':flag_for_Belize:': u'\U0001F1E7 \U0001F1FF',
':flag_for_Benin:': u'\U0001F1E7 \U0001F1EF',
':flag_for_Bermuda:': u'\U0001F1E7 \U0001F1F2',
':flag_for_Bhutan:': u'\U0001F1E7 \U0001F1F9',
':flag_for_Bolivia:': u'\U0001F1E7 \U0001F1F4',
':flag_for_Bosnia_&_Herzegovina:': u'\U0001F1E7 \U0001F1E6',
':flag_for_Botswana:': u'\U0001F1E7 \U0001F1FC',
':flag_for_Bouvet_Island:': u'\U0001F1E7 \U0001F1FB',
':flag_for_Brazil:': u'\U0001F1E7 \U0001F1F7',
':flag_for_British_Indian_Ocean_Territory:': u'\U0001F1EE \U0001F1F4',
':flag_for_British_Virgin_Islands:': u'\U0001F1FB \U0001F1EC',
':flag_for_Brunei:': u'\U0001F1E7 \U0001F1F3',
':flag_for_Bulgaria:': u'\U0001F1E7 \U0001F1EC',
':flag_for_Burkina_Faso:': u'\U0001F1E7 \U0001F1EB',
':flag_for_Burundi:': u'\U0001F1E7 \U0001F1EE',
':flag_for_Cambodia:': u'\U0001F1F0 \U0001F1ED',
':flag_for_Cameroon:': u'\U0001F1E8 \U0001F1F2',
':flag_for_Canada:': u'\U0001F1E8 \U0001F1E6',
':flag_for_Canary_Islands:': u'\U0001F1EE \U0001F1E8',
':flag_for_Cape_Verde:': u'\U0001F1E8 \U0001F1FB',
':flag_for_Caribbean_Netherlands:': u'\U0001F1E7 \U0001F1F6',
':flag_for_Cayman_Islands:': u'\U0001F1F0 \U0001F1FE',
':flag_for_Central_African_Republic:': u'\U0001F1E8 \U0001F1EB',
':flag_for_Ceuta_&_Melilla:': u'\U0001F1EA \U0001F1E6',
':flag_for_Chad:': u'\U0001F1F9 \U0001F1E9',
':flag_for_Chile:': u'\U0001F1E8 \U0001F1F1',
':flag_for_China:': u'\U0001F1E8 \U0001F1F3',
':flag_for_Christmas_Island:': u'\U0001F1E8 \U0001F1FD',
':flag_for_Clipperton_Island:': u'\U0001F1E8 \U0001F1F5',
':flag_for_Cocos__Islands:': u'\U0001F1E8 \U0001F1E8',
':flag_for_Colombia:': u'\U0001F1E8 \U0001F1F4',
':flag_for_Comoros:': u'\U0001F1F0 \U0001F1F2',
':flag_for_Congo_-_Brazzaville:': u'\U0001F1E8 \U0001F1EC',
':flag_for_Congo_-_Kinshasa:': u'\U0001F1E8 \U0001F1E9',
':flag_for_Cook_Islands:': u'\U0001F1E8 \U0001F1F0',
':flag_for_Costa_Rica:': u'\U0001F1E8 \U0001F1F7',
':flag_for_Croatia:': u'\U0001F1ED \U0001F1F7',
':flag_for_Cuba:': u'\U0001F1E8 \U0001F1FA',
':flag_for_Curaçao:': u'\U0001F1E8 \U0001F1FC',
':flag_for_Cyprus:': u'\U0001F1E8 \U0001F1FE',
':flag_for_Czech_Republic:': u'\U0001F1E8 \U0001F1FF',
':flag_for_Côte_d’Ivoire:': u'\U0001F1E8 \U0001F1EE',
':flag_for_Denmark:': u'\U0001F1E9 \U0001F1F0',
':flag_for_Diego_Garcia:': u'\U0001F1E9 \U0001F1EC',
':flag_for_Djibouti:': u'\U0001F1E9 \U0001F1EF',
':flag_for_Dominica:': u'\U0001F1E9 \U0001F1F2',
':flag_for_Dominican_Republic:': u'\U0001F1E9 \U0001F1F4',
':flag_for_Ecuador:': u'\U0001F1EA \U0001F1E8',
':flag_for_Egypt:': u'\U0001F1EA \U0001F1EC',
':flag_for_El_Salvador:': u'\U0001F1F8 \U0001F1FB',
':flag_for_Equatorial_Guinea:': u'\U0001F1EC \U0001F1F6',
':flag_for_Eritrea:': u'\U0001F1EA \U0001F1F7',
':flag_for_Estonia:': u'\U0001F1EA \U0001F1EA',
':flag_for_Ethiopia:': u'\U0001F1EA \U0001F1F9',
':flag_for_European_Union:': u'\U0001F1EA \U0001F1FA',
':flag_for_Falkland_Islands:': u'\U0001F1EB \U0001F1F0',
':flag_for_Faroe_Islands:': u'\U0001F1EB \U0001F1F4',
':flag_for_Fiji:': u'\U0001F1EB \U0001F1EF',
':flag_for_Finland:': u'\U0001F1EB \U0001F1EE',
':flag_for_France:': u'\U0001F1EB \U0001F1F7',
':flag_for_French_Guiana:': u'\U0001F1EC \U0001F1EB',
':flag_for_French_Polynesia:': u'\U0001F1F5 \U0001F1EB',
':flag_for_French_Southern_Territories:': u'\U0001F1F9 \U0001F1EB',
':flag_for_Gabon:': u'\U0001F1EC \U0001F1E6',
':flag_for_Gambia:': u'\U0001F1EC \U0001F1F2',
':flag_for_Georgia:': u'\U0001F1EC \U0001F1EA',
':flag_for_Germany:': u'\U0001F1E9 \U0001F1EA',
':flag_for_Ghana:': u'\U0001F1EC \U0001F1ED',
':flag_for_Gibraltar:': u'\U0001F1EC \U0001F1EE',
':flag_for_Greece:': u'\U0001F1EC \U0001F1F7',
':flag_for_Greenland:': u'\U0001F1EC \U0001F1F1',
':flag_for_Grenada:': u'\U0001F1EC \U0001F1E9',
':flag_for_Guadeloupe:': u'\U0001F1EC \U0001F1F5',
':flag_for_Guam:': u'\U0001F1EC \U0001F1FA',
':flag_for_Guatemala:': u'\U0001F1EC \U0001F1F9',
':flag_for_Guernsey:': u'\U0001F1EC \U0001F1EC',
':flag_for_Guinea:': u'\U0001F1EC \U0001F1F3',
':flag_for_Guinea-Bissau:': u'\U0001F1EC \U0001F1FC',
':flag_for_Guyana:': u'\U0001F1EC \U0001F1FE',
':flag_for_Haiti:': u'\U0001F1ED \U0001F1F9',
':flag_for_Heard_&_McDonald_Islands:': u'\U0001F1ED \U0001F1F2',
':flag_for_Honduras:': u'\U0001F1ED \U0001F1F3',
':flag_for_Hong_Kong:': u'\U0001F1ED \U0001F1F0',
':flag_for_Hungary:': u'\U0001F1ED \U0001F1FA',
':flag_for_Iceland:': u'\U0001F1EE \U0001F1F8',
':flag_for_India:': u'\U0001F1EE \U0001F1F3',
':flag_for_Indonesia:': u'\U0001F1EE \U0001F1E9',
':flag_for_Iran:': u'\U0001F1EE \U0001F1F7',
':flag_for_Iraq:': u'\U0001F1EE \U0001F1F6',
':flag_for_Ireland:': u'\U0001F1EE \U0001F1EA',
':flag_for_Isle_of_Man:': u'\U0001F1EE \U0001F1F2',
':flag_for_Israel:': u'\U0001F1EE \U0001F1F1',
':flag_for_Italy:': u'\U0001F1EE \U0001F1F9',
':flag_for_Jamaica:': u'\U0001F1EF \U0001F1F2',
':flag_for_Japan:': u'\U0001F1EF \U0001F1F5',
':flag_for_Jersey:': u'\U0001F1EF \U0001F1EA',
':flag_for_Jordan:': u'\U0001F1EF \U0001F1F4',
':flag_for_Kazakhstan:': u'\U0001F1F0 \U0001F1FF',
':flag_for_Kenya:': u'\U0001F1F0 \U0001F1EA',
':flag_for_Kiribati:': u'\U0001F1F0 \U0001F1EE',
':flag_for_Kosovo:': u'\U0001F1FD \U0001F1F0',
':flag_for_Kuwait:': u'\U0001F1F0 \U0001F1FC',
':flag_for_Kyrgyzstan:': u'\U0001F1F0 \U0001F1EC',
':flag_for_Laos:': u'\U0001F1F1 \U0001F1E6',
':flag_for_Latvia:': u'\U0001F1F1 \U0001F1FB',
':flag_for_Lebanon:': u'\U0001F1F1 \U0001F1E7',
':flag_for_Lesotho:': u'\U0001F1F1 \U0001F1F8',
':flag_for_Liberia:': u'\U0001F1F1 \U0001F1F7',
':flag_for_Libya:': u'\U0001F1F1 \U0001F1FE',
':flag_for_Liechtenstein:': u'\U0001F1F1 \U0001F1EE',
':flag_for_Lithuania:': u'\U0001F1F1 \U0001F1F9',
':flag_for_Luxembourg:': u'\U0001F1F1 \U0001F1FA',
':flag_for_Macau:': u'\U0001F1F2 \U0001F1F4',
':flag_for_Macedonia:': u'\U0001F1F2 \U0001F1F0',
':flag_for_Madagascar:': u'\U0001F1F2 \U0001F1EC',
':flag_for_Malawi:': u'\U0001F1F2 \U0001F1FC',
':flag_for_Malaysia:': u'\U0001F1F2 \U0001F1FE',
':flag_for_Maldives:': u'\U0001F1F2 \U0001F1FB',
':flag_for_Mali:': u'\U0001F1F2 \U0001F1F1',
':flag_for_Malta:': u'\U0001F1F2 \U0001F1F9',
':flag_for_Marshall_Islands:': u'\U0001F1F2 \U0001F1ED',
':flag_for_Martinique:': u'\U0001F1F2 \U0001F1F6',
':flag_for_Mauritania:': u'\U0001F1F2 \U0001F1F7',
':flag_for_Mauritius:': u'\U0001F1F2 \U0001F1FA',
':flag_for_Mayotte:': u'\U0001F1FE \U0001F1F9',
':flag_for_Mexico:': u'\U0001F1F2 \U0001F1FD',
':flag_for_Micronesia:': u'\U0001F1EB \U0001F1F2',
':flag_for_Moldova:': u'\U0001F1F2 \U0001F1E9',
':flag_for_Monaco:': u'\U0001F1F2 \U0001F1E8',
':flag_for_Mongolia:': u'\U0001F1F2 \U0001F1F3',
':flag_for_Montenegro:': u'\U0001F1F2 \U0001F1EA',
':flag_for_Montserrat:': u'\U0001F1F2 \U0001F1F8',
':flag_for_Morocco:': u'\U0001F1F2 \U0001F1E6',
':flag_for_Mozambique:': u'\U0001F1F2 \U0001F1FF',
':flag_for_Myanmar:': u'\U0001F1F2 \U0001F1F2',
':flag_for_Namibia:': u'\U0001F1F3 \U0001F1E6',
':flag_for_Nauru:': u'\U0001F1F3 \U0001F1F7',
':flag_for_Nepal:': u'\U0001F1F3 \U0001F1F5',
':flag_for_Netherlands:': u'\U0001F1F3 \U0001F1F1',
':flag_for_New_Caledonia:': u'\U0001F1F3 \U0001F1E8',
':flag_for_New_Zealand:': u'\U0001F1F3 \U0001F1FF',
':flag_for_Nicaragua:': u'\U0001F1F3 \U0001F1EE',
':flag_for_Niger:': u'\U0001F1F3 \U0001F1EA',
':flag_for_Nigeria:': u'\U0001F1F3 \U0001F1EC',
':flag_for_Niue:': u'\U0001F1F3 \U0001F1FA',
':flag_for_Norfolk_Island:': u'\U0001F1F3 \U0001F1EB',
':flag_for_North_Korea:': u'\U0001F1F0 \U0001F1F5',
':flag_for_Northern_Mariana_Islands:': u'\U0001F1F2 \U0001F1F5',
':flag_for_Norway:': u'\U0001F1F3 \U0001F1F4',
':flag_for_Oman:': u'\U0001F1F4 \U0001F1F2',
':flag_for_Pakistan:': u'\U0001F1F5 \U0001F1F0',
':flag_for_Palau:': u'\U0001F1F5 \U0001F1FC',
':flag_for_Palestinian_Territories:': u'\U0001F1F5 \U0001F1F8',
':flag_for_Panama:': u'\U0001F1F5 \U0001F1E6',
':flag_for_Papua_New_Guinea:': u'\U0001F1F5 \U0001F1EC',
':flag_for_Paraguay:': u'\U0001F1F5 \U0001F1FE',
':flag_for_Peru:': u'\U0001F1F5 \U0001F1EA',
':flag_for_Philippines:': u'\U0001F1F5 \U0001F1ED',
':flag_for_Pitcairn_Islands:': u'\U0001F1F5 \U0001F1F3',
':flag_for_Poland:': u'\U0001F1F5 \U0001F1F1',
':flag_for_Portugal:': u'\U0001F1F5 \U0001F1F9',
':flag_for_Puerto_Rico:': u'\U0001F1F5 \U0001F1F7',
':flag_for_Qatar:': u'\U0001F1F6 \U0001F1E6',
':flag_for_Romania:': u'\U0001F1F7 \U0001F1F4',
':flag_for_Russia:': u'\U0001F1F7 \U0001F1FA',
':flag_for_Rwanda:': u'\U0001F1F7 \U0001F1FC',
':flag_for_Réunion:': u'\U0001F1F7 \U0001F1EA',
':flag_for_Samoa:': u'\U0001F1FC \U0001F1F8',
':flag_for_San_Marino:': u'\U0001F1F8 \U0001F1F2',
':flag_for_Saudi_Arabia:': u'\U0001F1F8 \U0001F1E6',
':flag_for_Senegal:': u'\U0001F1F8 \U0001F1F3',
':flag_for_Serbia:': u'\U0001F1F7 \U0001F1F8',
':flag_for_Seychelles:': u'\U0001F1F8 \U0001F1E8',
':flag_for_Sierra_Leone:': u'\U0001F1F8 \U0001F1F1',
':flag_for_Singapore:': u'\U0001F1F8 \U0001F1EC',
':flag_for_Sint_Maarten:': u'\U0001F1F8 \U0001F1FD',
':flag_for_Slovakia:': u'\U0001F1F8 \U0001F1F0',
':flag_for_Slovenia:': u'\U0001F1F8 \U0001F1EE',
':flag_for_Solomon_Islands:': u'\U0001F1F8 \U0001F1E7',
':flag_for_Somalia:': u'\U0001F1F8 \U0001F1F4',
':flag_for_South_Africa:': u'\U0001F1FF \U0001F1E6',
':flag_for_South_Georgia_&_South_Sandwich_Islands:': u'\U0001F1EC \U0001F1F8',
':flag_for_South_Korea:': u'\U0001F1F0 \U0001F1F7',
':flag_for_South_Sudan:': u'\U0001F1F8 \U0001F1F8',
':flag_for_Spain:': u'\U0001F1EA \U0001F1F8',
':flag_for_Sri_Lanka:': u'\U0001F1F1 \U0001F1F0',
':flag_for_St._Barthélemy:': u'\U0001F1E7 \U0001F1F1',
':flag_for_St._Helena:': u'\U0001F1F8 \U0001F1ED',
':flag_for_St._Kitts_&_Nevis:': u'\U0001F1F0 \U0001F1F3',
':flag_for_St._Lucia:': u'\U0001F1F1 \U0001F1E8',
':flag_for_St._Martin:': u'\U0001F1F2 \U0001F1EB',
':flag_for_St._Pierre_&_Miquelon:': u'\U0001F1F5 \U0001F1F2',
':flag_for_St._Vincent_&_Grenadines:': u'\U0001F1FB \U0001F1E8',
':flag_for_Sudan:': u'\U0001F1F8 \U0001F1E9',
':flag_for_Suriname:': u'\U0001F1F8 \U0001F1F7',
':flag_for_Svalbard_&_Jan_Mayen:': u'\U0001F1F8 \U0001F1EF',
':flag_for_Swaziland:': u'\U0001F1F8 \U0001F1FF',
':flag_for_Sweden:': u'\U0001F1F8 \U0001F1EA',
':flag_for_Switzerland:': u'\U0001F1E8 \U0001F1ED',
':flag_for_Syria:': u'\U0001F1F8 \U0001F1FE',
':flag_for_São_Tomé_&_Príncipe:': u'\U0001F1F8 \U0001F1F9',
':flag_for_Taiwan:': u'\U0001F1F9 \U0001F1FC',
':flag_for_Tajikistan:': u'\U0001F1F9 \U0001F1EF',
':flag_for_Tanzania:': u'\U0001F1F9 \U0001F1FF',
':flag_for_Thailand:': u'\U0001F1F9 \U0001F1ED',
':flag_for_Timor-Leste:': u'\U0001F1F9 \U0001F1F1',
':flag_for_Togo:': u'\U0001F1F9 \U0001F1EC',
':flag_for_Tokelau:': u'\U0001F1F9 \U0001F1F0',
':flag_for_Tonga:': u'\U0001F1F9 \U0001F1F4',
':flag_for_Trinidad_&_Tobago:': u'\U0001F1F9 \U0001F1F9',
':flag_for_Tristan_da_Cunha:': u'\U0001F1F9 \U0001F1E6',
':flag_for_Tunisia:': u'\U0001F1F9 \U0001F1F3',
':flag_for_Turkey:': u'\U0001F1F9 \U0001F1F7',
':flag_for_Turkmenistan:': u'\U0001F1F9 \U0001F1F2',
':flag_for_Turks_&_Caicos_Islands:': u'\U0001F1F9 \U0001F1E8',
':flag_for_Tuvalu:': u'\U0001F1F9 \U0001F1FB',
':flag_for_U.S._Outlying_Islands:': u'\U0001F1FA \U0001F1F2',
':flag_for_U.S._Virgin_Islands:': u'\U0001F1FB \U0001F1EE',
':flag_for_Uganda:': u'\U0001F1FA \U0001F1EC',
':flag_for_Ukraine:': u'\U0001F1FA \U0001F1E6',
':flag_for_United_Arab_Emirates:': u'\U0001F1E6 \U0001F1EA',
':flag_for_United_Kingdom:': u'\U0001F1EC \U0001F1E7',
':flag_for_United_States:': u'\U0001F1FA \U0001F1F8',
':flag_for_Uruguay:': u'\U0001F1FA \U0001F1FE',
':flag_for_Uzbekistan:': u'\U0001F1FA \U0001F1FF',
':flag_for_Vanuatu:': u'\U0001F1FB \U0001F1FA',
':flag_for_Vatican_City:': u'\U0001F1FB \U0001F1E6',
':flag_for_Venezuela:': u'\U0001F1FB \U0001F1EA',
':flag_for_Vietnam:': u'\U0001F1FB \U0001F1F3',
':flag_for_Wallis_&_Futuna:': u'\U0001F1FC \U0001F1EB',
':flag_for_Western_Sahara:': u'\U0001F1EA \U0001F1ED',
':flag_for_Yemen:': u'\U0001F1FE \U0001F1EA',
':flag_for_Zambia:': u'\U0001F1FF \U0001F1F2',
':flag_for_Zimbabwe:': u'\U0001F1FF \U0001F1FC',
':flag_for_Åland_Islands:': u'\U0001F1E6 \U0001F1FD',
':flag_in_hole:': u'\U000026F3',
':fleur-de-lis:': u'\U0000269C',
':flexed_biceps:': u'\U0001F4AA',
':floppy_disk:': u'\U0001F4BE',
':flower_playing_cards:': u'\U0001F3B4',
':flushed_face:': u'\U0001F633',
':fog:': u'\U0001F32B',
':foggy:': u'\U0001F301',
':footprints:': u'\U0001F463',
':fork_and_knife:': u'\U0001F374',
':fork_and_knife_with_plate:': u'\U0001F37D',
':fountain:': u'\U000026F2',
':four_leaf_clover:': u'\U0001F340',
':frame_with_picture:': u'\U0001F5BC',
':french_fries:': u'\U0001F35F',
':fried_shrimp:': u'\U0001F364',
':frog_face:': u'\U0001F438',
':front-facing_baby_chick:': u'\U0001F425',
':frowning_face_with_open_mouth:': u'\U0001F626',
':fuel_pump:': u'\U000026FD',
':full_moon_symbol:': u'\U0001F315',
':full_moon_with_face:': u'\U0001F31D',
':funeral_urn:': u'\U000026B1',
':game_die:': u'\U0001F3B2',
':gear:': u'\U00002699',
':gem_stone:': u'\U0001F48E',
':gemini:': u'\U0000264A',
':ghost:': u'\U0001F47B',
':girl:': u'\U0001F467',
':globe_with_meridians:': u'\U0001F310',
':glowing_star:': u'\U0001F31F',
':goat:': u'\U0001F410',
':golfer:': u'\U0001F3CC',
':graduation_cap:': u'\U0001F393',
':grapes:': u'\U0001F347',
':green_apple:': u'\U0001F34F',
':green_book:': u'\U0001F4D7',
':green_heart:': u'\U0001F49A',
':grimacing_face:': u'\U0001F62C',
':grinning_cat_face_with_smiling_eyes:': u'\U0001F638',
':grinning_face:': u'\U0001F600',
':grinning_face_with_smiling_eyes:': u'\U0001F601',
':growing_heart:': u'\U0001F497',
':guardsman:': u'\U0001F482',
':guitar:': u'\U0001F3B8',
':haircut:': u'\U0001F487',
':hamburger:': u'\U0001F354',
':hammer:': u'\U0001F528',
':hammer_and_pick:': u'\U00002692',
':hammer_and_wrench:': u'\U0001F6E0',
':hamster_face:': u'\U0001F439',
':handbag:': u'\U0001F45C',
':happy_person_raising_one_hand:': u'\U0001F64B',
':hatching_chick:': u'\U0001F423',
':headphone:': u'\U0001F3A7',
':hear-no-evil_monkey:': u'\U0001F649',
':heart_decoration:': u'\U0001F49F',
':heart_with_arrow:': u'\U0001F498',
':heart_with_ribbon:': u'\U0001F49D',
':heavy_black_heart:': u'\U00002764',
':heavy_check_mark:': u'\U00002714',
':heavy_division_sign:': u'\U00002797',
':heavy_dollar_sign:': u'\U0001F4B2',
':heavy_exclamation_mark_symbol:': u'\U00002757',
':heavy_heart_exclamation_mark_ornament:': u'\U00002763',
':heavy_large_circle:': u'\U00002B55',
':heavy_minus_sign:': u'\U00002796',
':heavy_multiplication_x:': u'\U00002716',
':heavy_plus_sign:': u'\U00002795',
':helicopter:': u'\U0001F681',
':helm_symbol:': u'\U00002388',
':helmet_with_white_cross:': u'\U000026D1',
':herb:': u'\U0001F33F',
':hibiscus:': u'\U0001F33A',
':high-heeled_shoe:': u'\U0001F460',
':high-speed_train:': u'\U0001F684',
':high-speed_train_with_bullet_nose:': u'\U0001F685',
':high_brightness_symbol:': u'\U0001F506',
':high_voltage_sign:': u'\U000026A1',
':hocho:': u'\U0001F52A',
':hole:': u'\U0001F573',
':honey_pot:': u'\U0001F36F',
':honeybee:': u'\U0001F41D',
':horizontal_traffic_light:': u'\U0001F6A5',
':horse:': u'\U0001F40E',
':horse_face:': u'\U0001F434',
':horse_racing:': u'\U0001F3C7',
':hospital:': u'\U0001F3E5',
':hot_beverage:': u'\U00002615',
':hot_dog:': u'\U0001F32D',
':hot_pepper:': u'\U0001F336',
':hot_springs:': u'\U00002668',
':hotel:': u'\U0001F3E8',
':hourglass:': u'\U0000231B',
':hourglass_with_flowing_sand:': u'\U000023F3',
':house_building:': u'\U0001F3E0',
':house_buildings:': u'\U0001F3D8',
':house_with_garden:': u'\U0001F3E1',
':hugging_face:': u'\U0001F917',
':hundred_points_symbol:': u'\U0001F4AF',
':hushed_face:': u'\U0001F62F',
':ice_cream:': u'\U0001F368',
':ice_hockey_stick_and_puck:': u'\U0001F3D2',
':ice_skate:': u'\U000026F8',
':imp:': u'\U0001F47F',
':inbox_tray:': u'\U0001F4E5',
':incoming_envelope:': u'\U0001F4E8',
':information_desk_person:': u'\U0001F481',
':information_source:': u'\U00002139',
':input_symbol_for_latin_capital_letters:': u'\U0001F520',
':input_symbol_for_latin_letters:': u'\U0001F524',
':input_symbol_for_latin_small_letters:': u'\U0001F521',
':input_symbol_for_numbers:': u'\U0001F522',
':input_symbol_for_symbols:': u'\U0001F523',
':izakaya_lantern:': u'\U0001F3EE',
':jack-o-lantern:': u'\U0001F383',
':japanese_castle:': u'\U0001F3EF',
':japanese_dolls:': u'\U0001F38E',
':japanese_goblin:': u'\U0001F47A',
':japanese_ogre:': u'\U0001F479',
':japanese_post_office:': u'\U0001F3E3',
':japanese_symbol_for_beginner:': u'\U0001F530',
':jeans:': u'\U0001F456',
':joystick:': u'\U0001F579',
':kaaba:': u'\U0001F54B',
':key:': u'\U0001F511',
':keyboard:': u'\U00002328',
':keycap_asterisk:': u'\U0000002A \U000020E3',
':keycap_digit_eight:': u'\U00000038 \U000020E3',
':keycap_digit_five:': u'\U00000035 \U000020E3',
':keycap_digit_four:': u'\U00000034 \U000020E3',
':keycap_digit_nine:': u'\U00000039 \U000020E3',
':keycap_digit_one:': u'\U00000031 \U000020E3',
':keycap_digit_seven:': u'\U00000037 \U000020E3',
':keycap_digit_six:': u'\U00000036 \U000020E3',
':keycap_digit_three:': u'\U00000033 \U000020E3',
':keycap_digit_two:': u'\U00000032 \U000020E3',
':keycap_digit_zero:': u'\U00000030 \U000020E3',
':keycap_number_sign:': u'\U00000023 \U000020E3',
':keycap_ten:': u'\U0001F51F',
':kimono:': u'\U0001F458',
':kiss:': u'\U0001F48F',
':kiss_mark:': u'\U0001F48B',
':kissing_cat_face_with_closed_eyes:': u'\U0001F63D',
':kissing_face:': u'\U0001F617',
':kissing_face_with_closed_eyes:': u'\U0001F61A',
':kissing_face_with_smiling_eyes:': u'\U0001F619',
':koala:': u'\U0001F428',
':label:': u'\U0001F3F7',
':lady_beetle:': u'\U0001F41E',
':large_blue_circle:': u'\U0001F535',
':large_blue_diamond:': u'\U0001F537',
':large_orange_diamond:': u'\U0001F536',
':large_red_circle:': u'\U0001F534',
':last_quarter_moon_symbol:': u'\U0001F317',
':last_quarter_moon_with_face:': u'\U0001F31C',
':latin_cross:': u'\U0000271D',
':leaf_fluttering_in_wind:': u'\U0001F343',
':ledger:': u'\U0001F4D2',
':left-pointing_magnifying_glass:': u'\U0001F50D',
':left_luggage:': u'\U0001F6C5',
':left_right_arrow:': u'\U00002194',
':leftwards_arrow_with_hook:': u'\U000021A9',
':leftwards_black_arrow:': u'\U00002B05',
':lemon:': u'\U0001F34B',
':leo:': u'\U0000264C',
':leopard:': u'\U0001F406',
':level_slider:': u'\U0001F39A',
':libra:': u'\U0000264E',
':light_rail:': u'\U0001F688',
':link_symbol:': u'\U0001F517',
':linked_paperclips:': u'\U0001F587',
':lion_face:': u'\U0001F981',
':lipstick:': u'\U0001F484',
':lock:': u'\U0001F512',
':lock_with_ink_pen:': u'\U0001F50F',
':lollipop:': u'\U0001F36D',
':loudly_crying_face:': u'\U0001F62D',
':love_hotel:': u'\U0001F3E9',
':love_letter:': u'\U0001F48C',
':low_brightness_symbol:': u'\U0001F505',
':lower_left_ballpoint_pen:': u'\U0001F58A',
':lower_left_crayon:': u'\U0001F58D',
':lower_left_fountain_pen:': u'\U0001F58B',
':lower_left_paintbrush:': u'\U0001F58C',
':mahjong_tile_red_dragon:': u'\U0001F004',
':man:': u'\U0001F468',
':man_and_woman_holding_hands:': u'\U0001F46B',
':man_in_business_suit_levitating:': u'\U0001F574',
':man_with_gua_pi_mao:': u'\U0001F472',
':man_with_turban:': u'\U0001F473',
':mans_shoe:': u'\U0001F45E',
':mantelpiece_clock:': u'\U0001F570',
':maple_leaf:': u'\U0001F341',
':meat_on_bone:': u'\U0001F356',
':medium_black_circle:': u'\U000026AB',
':medium_white_circle:': u'\U000026AA',
':melon:': u'\U0001F348',
':memo:': u'\U0001F4DD',
':menorah_with_nine_branches:': u'\U0001F54E',
':mens_symbol:': u'\U0001F6B9',
':metro:': u'\U0001F687',
':microphone:': u'\U0001F3A4',
':microscope:': u'\U0001F52C',
':military_medal:': u'\U0001F396',
':milky_way:': u'\U0001F30C',
':minibus:': u'\U0001F690',
':minidisc:': u'\U0001F4BD',
':mobile_phone:': u'\U0001F4F1',
':mobile_phone_off:': u'\U0001F4F4',
':mobile_phone_with_rightwards_arrow_at_left:': u'\U0001F4F2',
':money-mouth_face:': u'\U0001F911',
':money_bag:': u'\U0001F4B0',
':money_with_wings:': u'\U0001F4B8',
':monkey:': u'\U0001F412',
':monkey_face:': u'\U0001F435',
':monorail:': u'\U0001F69D',
':moon_viewing_ceremony:': u'\U0001F391',
':mosque:': u'\U0001F54C',
':motor_boat:': u'\U0001F6E5',
':motorway:': u'\U0001F6E3',
':mount_fuji:': u'\U0001F5FB',
':mountain:': u'\U000026F0',
':mountain_bicyclist:': u'\U0001F6B5',
':mountain_cableway:': u'\U0001F6A0',
':mountain_railway:': u'\U0001F69E',
':mouse:': u'\U0001F401',
':mouse_face:': u'\U0001F42D',
':mouth:': u'\U0001F444',
':movie_camera:': u'\U0001F3A5',
':moyai:': u'\U0001F5FF',
':multiple_musical_notes:': u'\U0001F3B6',
':mushroom:': u'\U0001F344',
':musical_keyboard:': u'\U0001F3B9',
':musical_note:': u'\U0001F3B5',
':musical_score:': u'\U0001F3BC',
':nail_polish:': u'\U0001F485',
':name_badge:': u'\U0001F4DB',
':national_park:': u'\U0001F3DE',
':necktie:': u'\U0001F454',
':negative_squared_ab:': u'\U0001F18E',
':negative_squared_cross_mark:': u'\U0000274E',
':negative_squared_latin_capital_letter_a:': u'\U0001F170',
':negative_squared_latin_capital_letter_b:': u'\U0001F171',
':negative_squared_latin_capital_letter_o:': u'\U0001F17E',
':negative_squared_latin_capital_letter_p:': u'\U0001F17F',
':nerd_face:': u'\U0001F913',
':neutral_face:': u'\U0001F610',
':new_moon_symbol:': u'\U0001F311',
':new_moon_with_face:': u'\U0001F31A',
':newspaper:': u'\U0001F4F0',
':night_with_stars:': u'\U0001F303',
':no_bicycles:': u'\U0001F6B3',
':no_entry:': u'\U000026D4',
':no_entry_sign:': u'\U0001F6AB',
':no_mobile_phones:': u'\U0001F4F5',
':no_one_under_eighteen_symbol:': u'\U0001F51E',
':no_pedestrians:': u'\U0001F6B7',
':no_smoking_symbol:': u'\U0001F6AD',
':non-potable_water_symbol:': u'\U0001F6B1',
':north_east_arrow:': u'\U00002197',
':north_west_arrow:': u'\U00002196',
':nose:': u'\U0001F443',
':notebook:': u'\U0001F4D3',
':notebook_with_decorative_cover:': u'\U0001F4D4',
':nut_and_bolt:': u'\U0001F529',
':octopus:': u'\U0001F419',
':oden:': u'\U0001F362',
':office_building:': u'\U0001F3E2',
':oil_drum:': u'\U0001F6E2',
':ok_hand_sign:': u'\U0001F44C',
':old_key:': u'\U0001F5DD',
':older_man:': u'\U0001F474',
':older_woman:': u'\U0001F475',
':om_symbol:': u'\U0001F549',
':on_with_exclamation_mark_with_left_right_arrow_above:': u'\U0001F51B',
':oncoming_automobile:': u'\U0001F698',
':oncoming_bus:': u'\U0001F68D',
':oncoming_police_car:': u'\U0001F694',
':oncoming_taxi:': u'\U0001F696',
':open_book:': u'\U0001F4D6',
':open_file_folder:': u'\U0001F4C2',
':open_hands_sign:': u'\U0001F450',
':open_lock:': u'\U0001F513',
':open_mailbox_with_lowered_flag:': u'\U0001F4ED',
':open_mailbox_with_raised_flag:': u'\U0001F4EC',
':ophiuchus:': u'\U000026CE',
':optical_disc:': u'\U0001F4BF',
':orange_book:': u'\U0001F4D9',
':orthodox_cross:': u'\U00002626',
':outbox_tray:': u'\U0001F4E4',
':ox:': u'\U0001F402',
':package:': u'\U0001F4E6',
':page_facing_up:': u'\U0001F4C4',
':page_with_curl:': u'\U0001F4C3',
':pager:': u'\U0001F4DF',
':palm_tree:': u'\U0001F334',
':panda_face:': u'\U0001F43C',
':paperclip:': u'\U0001F4CE',
':part_alternation_mark:': u'\U0000303D',
':party_popper:': u'\U0001F389',
':passenger_ship:': u'\U0001F6F3',
':passport_control:': u'\U0001F6C2',
':paw_prints:': u'\U0001F43E',
':peace_symbol:': u'\U0000262E',
':peach:': u'\U0001F351',
':pear:': u'\U0001F350',
':pedestrian:': u'\U0001F6B6',
':pencil:': u'\U0000270F',
':penguin:': u'\U0001F427',
':pensive_face:': u'\U0001F614',
':performing_arts:': u'\U0001F3AD',
':persevering_face:': u'\U0001F623',
':person_bowing_deeply:': u'\U0001F647',
':person_frowning:': u'\U0001F64D',
':person_raising_both_hands_in_celebration:': u'\U0001F64C',
':person_with_ball:': u'\U000026F9',
':person_with_blond_hair:': u'\U0001F471',
':person_with_folded_hands:': u'\U0001F64F',
':person_with_pouting_face:': u'\U0001F64E',
':personal_computer:': u'\U0001F4BB',
':pick:': u'\U000026CF',
':pig:': u'\U0001F416',
':pig_face:': u'\U0001F437',
':pig_nose:': u'\U0001F43D',
':pile_of_poo:': u'\U0001F4A9',
':pill:': u'\U0001F48A',
':pine_decoration:': u'\U0001F38D',
':pineapple:': u'\U0001F34D',
':pisces:': u'\U00002653',
':pistol:': u'\U0001F52B',
':place_of_worship:': u'\U0001F6D0',
':playing_card_black_joker:': u'\U0001F0CF',
':police_car:': u'\U0001F693',
':police_cars_revolving_light:': u'\U0001F6A8',
':police_officer:': u'\U0001F46E',
':poodle:': u'\U0001F429',
':popcorn:': u'\U0001F37F',
':postal_horn:': u'\U0001F4EF',
':postbox:': u'\U0001F4EE',
':pot_of_food:': u'\U0001F372',
':potable_water_symbol:': u'\U0001F6B0',
':pouch:': u'\U0001F45D',
':poultry_leg:': u'\U0001F357',
':pouting_cat_face:': u'\U0001F63E',
':pouting_face:': u'\U0001F621',
':prayer_beads:': u'\U0001F4FF',
':princess:': u'\U0001F478',
':printer:': u'\U0001F5A8',
':public_address_loudspeaker:': u'\U0001F4E2',
':purple_heart:': u'\U0001F49C',
':purse:': u'\U0001F45B',
':pushpin:': u'\U0001F4CC',
':put_litter_in_its_place_symbol:': u'\U0001F6AE',
':rabbit:': u'\U0001F407',
':rabbit_face:': u'\U0001F430',
':racing_car:': u'\U0001F3CE',
':racing_motorcycle:': u'\U0001F3CD',
':radio:': u'\U0001F4FB',
':radio_button:': u'\U0001F518',
':radioactive_sign:': u'\U00002622',
':railway_car:': u'\U0001F683',
':railway_track:': u'\U0001F6E4',
':rainbow:': u'\U0001F308',
':raised_fist:': u'\U0000270A',
':raised_hand:': u'\U0000270B',
':raised_hand_with_fingers_splayed:': u'\U0001F590',
':raised_hand_with_part_between_middle_and_ring_fingers:': u'\U0001F596',
':ram:': u'\U0001F40F',
':rat:': u'\U0001F400',
':recreational_vehicle:': u'\U0001F699',
':red_apple:': u'\U0001F34E',
':registered_sign:': u'\U000000AE',
':relieved_face:': u'\U0001F60C',
':reminder_ribbon:': u'\U0001F397',
':restroom:': u'\U0001F6BB',
':reversed_hand_with_middle_finger_extended:': u'\U0001F595',
':revolving_hearts:': u'\U0001F49E',
':ribbon:': u'\U0001F380',
':rice_ball:': u'\U0001F359',
':rice_cracker:': u'\U0001F358',
':right-pointing_magnifying_glass:': u'\U0001F50E',
':right_anger_bubble:': u'\U0001F5EF',