-
Notifications
You must be signed in to change notification settings - Fork 20
/
map.go
2715 lines (2712 loc) · 184 KB
/
map.go
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
package emoji
// Code generated by github.com/enescakir/emoji/internal/generator DO NOT EDIT.
// Source: https://raw.githubusercontent.com/github/gemoji/master/db/emoji.json
// Create at: 2020-03-08T15:58:37+03:00
var emojiMap = map[string]string{
":+1:": "\U0001f44d",
":-1:": "\U0001f44e",
":100:": "\U0001f4af",
":1234:": "\U0001f522",
":1st_place_medal:": "\U0001f947",
":2nd_place_medal:": "\U0001f948",
":3rd_place_medal:": "\U0001f949",
":8ball:": "\U0001f3b1",
":a:": "\U0001f170\ufe0f",
":a_button_blood_type:": "\U0001f170\ufe0f",
":ab:": "\U0001f18e",
":ab_button_blood_type:": "\U0001f18e",
":abacus:": "\U0001f9ee",
":abc:": "\U0001f524",
":abcd:": "\U0001f521",
":accept:": "\U0001f251",
":accordion:": "\U0001fa97",
":adhesive_bandage:": "\U0001fa79",
":admission_tickets:": "\U0001f39f\ufe0f",
":adult:": "\U0001f9d1",
":aerial_tramway:": "\U0001f6a1",
":afghanistan:": "\U0001f1e6\U0001f1eb",
":airplane:": "\u2708\ufe0f",
":airplane_arrival:": "\U0001f6ec",
":airplane_departure:": "\U0001f6eb",
":aland_islands:": "\U0001f1e6\U0001f1fd",
":alarm_clock:": "\u23f0",
":albania:": "\U0001f1e6\U0001f1f1",
":alembic:": "\u2697\ufe0f",
":algeria:": "\U0001f1e9\U0001f1ff",
":alien:": "\U0001f47d",
":alien_monster:": "\U0001f47e",
":ambulance:": "\U0001f691",
":american_football:": "\U0001f3c8",
":american_samoa:": "\U0001f1e6\U0001f1f8",
":amphora:": "\U0001f3fa",
":anatomical_heart:": "\U0001fac0",
":anchor:": "\u2693",
":andorra:": "\U0001f1e6\U0001f1e9",
":angel:": "\U0001f47c",
":anger:": "\U0001f4a2",
":anger_symbol:": "\U0001f4a2",
":angola:": "\U0001f1e6\U0001f1f4",
":angry:": "\U0001f620",
":angry_face:": "\U0001f620",
":angry_face_with_horns:": "\U0001f47f",
":anguilla:": "\U0001f1e6\U0001f1ee",
":anguished:": "\U0001f627",
":anguished_face:": "\U0001f627",
":ant:": "\U0001f41c",
":antarctica:": "\U0001f1e6\U0001f1f6",
":antenna_bars:": "\U0001f4f6",
":antigua_barbuda:": "\U0001f1e6\U0001f1ec",
":anxious_face_with_sweat:": "\U0001f630",
":apple:": "\U0001f34e",
":aquarius:": "\u2652",
":argentina:": "\U0001f1e6\U0001f1f7",
":aries:": "\u2648",
":armenia:": "\U0001f1e6\U0001f1f2",
":arrow_backward:": "\u25c0\ufe0f",
":arrow_double_down:": "\u23ec",
":arrow_double_up:": "\u23eb",
":arrow_down:": "\u2b07\ufe0f",
":arrow_down_small:": "\U0001f53d",
":arrow_forward:": "\u25b6\ufe0f",
":arrow_heading_down:": "\u2935\ufe0f",
":arrow_heading_up:": "\u2934\ufe0f",
":arrow_left:": "\u2b05\ufe0f",
":arrow_lower_left:": "\u2199\ufe0f",
":arrow_lower_right:": "\u2198\ufe0f",
":arrow_right:": "\u27a1\ufe0f",
":arrow_right_hook:": "\u21aa\ufe0f",
":arrow_up:": "\u2b06\ufe0f",
":arrow_up_down:": "\u2195\ufe0f",
":arrow_up_small:": "\U0001f53c",
":arrow_upper_left:": "\u2196\ufe0f",
":arrow_upper_right:": "\u2197\ufe0f",
":arrows_clockwise:": "\U0001f503",
":arrows_counterclockwise:": "\U0001f504",
":art:": "\U0001f3a8",
":articulated_lorry:": "\U0001f69b",
":artificial_satellite:": "\U0001f6f0\ufe0f",
":artist:": "\U0001f9d1\u200d\U0001f3a8",
":artist_palette:": "\U0001f3a8",
":aruba:": "\U0001f1e6\U0001f1fc",
":ascension_island:": "\U0001f1e6\U0001f1e8",
":asterisk:": "*\ufe0f\u20e3",
":astonished:": "\U0001f632",
":astonished_face:": "\U0001f632",
":astronaut:": "\U0001f9d1\u200d\U0001f680",
":athletic_shoe:": "\U0001f45f",
":atm:": "\U0001f3e7",
":atm_sign:": "\U0001f3e7",
":atom_symbol:": "\u269b\ufe0f",
":australia:": "\U0001f1e6\U0001f1fa",
":austria:": "\U0001f1e6\U0001f1f9",
":auto_rickshaw:": "\U0001f6fa",
":automobile:": "\U0001f697",
":avocado:": "\U0001f951",
":axe:": "\U0001fa93",
":azerbaijan:": "\U0001f1e6\U0001f1ff",
":b:": "\U0001f171\ufe0f",
":b_button_blood_type:": "\U0001f171\ufe0f",
":baby:": "\U0001f476",
":baby_angel:": "\U0001f47c",
":baby_bottle:": "\U0001f37c",
":baby_chick:": "\U0001f424",
":baby_symbol:": "\U0001f6bc",
":back:": "\U0001f519",
":back_arrow:": "\U0001f519",
":backhand_index_pointing_down:": "\U0001f447",
":backhand_index_pointing_left:": "\U0001f448",
":backhand_index_pointing_right:": "\U0001f449",
":backhand_index_pointing_up:": "\U0001f446",
":backpack:": "\U0001f392",
":bacon:": "\U0001f953",
":badger:": "\U0001f9a1",
":badminton:": "\U0001f3f8",
":bagel:": "\U0001f96f",
":baggage_claim:": "\U0001f6c4",
":baguette_bread:": "\U0001f956",
":bahamas:": "\U0001f1e7\U0001f1f8",
":bahrain:": "\U0001f1e7\U0001f1ed",
":balance_scale:": "\u2696\ufe0f",
":bald:": "\U0001f9b2",
":bald_man:": "\U0001f468\u200d\U0001f9b2",
":bald_woman:": "\U0001f469\u200d\U0001f9b2",
":ballet_shoes:": "\U0001fa70",
":balloon:": "\U0001f388",
":ballot_box:": "\U0001f5f3\ufe0f",
":ballot_box_with_ballot:": "\U0001f5f3\ufe0f",
":ballot_box_with_check:": "\u2611\ufe0f",
":bamboo:": "\U0001f38d",
":banana:": "\U0001f34c",
":bangbang:": "\u203c\ufe0f",
":bangladesh:": "\U0001f1e7\U0001f1e9",
":banjo:": "\U0001fa95",
":bank:": "\U0001f3e6",
":bar_chart:": "\U0001f4ca",
":barbados:": "\U0001f1e7\U0001f1e7",
":barber:": "\U0001f488",
":barber_pole:": "\U0001f488",
":baseball:": "\u26be",
":basket:": "\U0001f9fa",
":basketball:": "\U0001f3c0",
":basketball_man:": "\u26f9\ufe0f\u200d\u2642\ufe0f",
":basketball_woman:": "\u26f9\ufe0f\u200d\u2640\ufe0f",
":bat:": "\U0001f987",
":bath:": "\U0001f6c0",
":bathtub:": "\U0001f6c1",
":battery:": "\U0001f50b",
":beach_umbrella:": "\U0001f3d6\ufe0f",
":beach_with_umbrella:": "\U0001f3d6\ufe0f",
":beaming_face_with_smiling_eyes:": "\U0001f601",
":bear:": "\U0001f43b",
":bearded_person:": "\U0001f9d4",
":beating_heart:": "\U0001f493",
":beaver:": "\U0001f9ab",
":bed:": "\U0001f6cf\ufe0f",
":bee:": "\U0001f41d",
":beer:": "\U0001f37a",
":beer_mug:": "\U0001f37a",
":beers:": "\U0001f37b",
":beetle:": "\U0001fab2",
":beginner:": "\U0001f530",
":belarus:": "\U0001f1e7\U0001f1fe",
":belgium:": "\U0001f1e7\U0001f1ea",
":belize:": "\U0001f1e7\U0001f1ff",
":bell:": "\U0001f514",
":bell_pepper:": "\U0001fad1",
":bell_with_slash:": "\U0001f515",
":bellhop_bell:": "\U0001f6ce\ufe0f",
":benin:": "\U0001f1e7\U0001f1ef",
":bento:": "\U0001f371",
":bento_box:": "\U0001f371",
":bermuda:": "\U0001f1e7\U0001f1f2",
":beverage_box:": "\U0001f9c3",
":bhutan:": "\U0001f1e7\U0001f1f9",
":bicycle:": "\U0001f6b2",
":bicyclist:": "\U0001f6b4",
":bike:": "\U0001f6b2",
":biking_man:": "\U0001f6b4\u200d\u2642\ufe0f",
":biking_woman:": "\U0001f6b4\u200d\u2640\ufe0f",
":bikini:": "\U0001f459",
":billed_cap:": "\U0001f9e2",
":biohazard:": "\u2623\ufe0f",
":bird:": "\U0001f426",
":birthday:": "\U0001f382",
":birthday_cake:": "\U0001f382",
":bison:": "\U0001f9ac",
":black_cat:": "\U0001f408\u200d\u2b1b",
":black_circle:": "\u26ab",
":black_flag:": "\U0001f3f4",
":black_heart:": "\U0001f5a4",
":black_joker:": "\U0001f0cf",
":black_large_square:": "\u2b1b",
":black_medium_small_square:": "\u25fe",
":black_medium_square:": "\u25fc\ufe0f",
":black_nib:": "\u2712\ufe0f",
":black_small_square:": "\u25aa\ufe0f",
":black_square_button:": "\U0001f532",
":blond_haired_man:": "\U0001f471\u200d\u2642\ufe0f",
":blond_haired_person:": "\U0001f471",
":blond_haired_woman:": "\U0001f471\u200d\u2640\ufe0f",
":blonde_woman:": "\U0001f471\u200d\u2640\ufe0f",
":blossom:": "\U0001f33c",
":blowfish:": "\U0001f421",
":blue_book:": "\U0001f4d8",
":blue_car:": "\U0001f699",
":blue_circle:": "\U0001f535",
":blue_heart:": "\U0001f499",
":blue_square:": "\U0001f7e6",
":blueberries:": "\U0001fad0",
":blush:": "\U0001f60a",
":boar:": "\U0001f417",
":boat:": "\u26f5",
":bolivia:": "\U0001f1e7\U0001f1f4",
":bomb:": "\U0001f4a3",
":bone:": "\U0001f9b4",
":book:": "\U0001f4d6",
":bookmark:": "\U0001f516",
":bookmark_tabs:": "\U0001f4d1",
":books:": "\U0001f4da",
":boom:": "\U0001f4a5",
":boomerang:": "\U0001fa83",
":boot:": "\U0001f462",
":bosnia_herzegovina:": "\U0001f1e7\U0001f1e6",
":botswana:": "\U0001f1e7\U0001f1fc",
":bottle_with_popping_cork:": "\U0001f37e",
":bouncing_ball_man:": "\u26f9\ufe0f\u200d\u2642\ufe0f",
":bouncing_ball_person:": "\u26f9\ufe0f",
":bouncing_ball_woman:": "\u26f9\ufe0f\u200d\u2640\ufe0f",
":bouquet:": "\U0001f490",
":bouvet_island:": "\U0001f1e7\U0001f1fb",
":bow:": "\U0001f647",
":bow_and_arrow:": "\U0001f3f9",
":bowing_man:": "\U0001f647\u200d\u2642\ufe0f",
":bowing_woman:": "\U0001f647\u200d\u2640\ufe0f",
":bowl_with_spoon:": "\U0001f963",
":bowling:": "\U0001f3b3",
":boxing_glove:": "\U0001f94a",
":boy:": "\U0001f466",
":brain:": "\U0001f9e0",
":brazil:": "\U0001f1e7\U0001f1f7",
":bread:": "\U0001f35e",
":breast_feeding:": "\U0001f931",
":brick:": "\U0001f9f1",
":bricks:": "\U0001f9f1",
":bride_with_veil:": "\U0001f470\u200d\u2640\ufe0f",
":bridge_at_night:": "\U0001f309",
":briefcase:": "\U0001f4bc",
":briefs:": "\U0001fa72",
":bright_button:": "\U0001f506",
":british_indian_ocean_territory:": "\U0001f1ee\U0001f1f4",
":british_virgin_islands:": "\U0001f1fb\U0001f1ec",
":broccoli:": "\U0001f966",
":broken_heart:": "\U0001f494",
":broom:": "\U0001f9f9",
":brown_circle:": "\U0001f7e4",
":brown_heart:": "\U0001f90e",
":brown_square:": "\U0001f7eb",
":brunei:": "\U0001f1e7\U0001f1f3",
":bubble_tea:": "\U0001f9cb",
":bucket:": "\U0001faa3",
":bug:": "\U0001f41b",
":building_construction:": "\U0001f3d7\ufe0f",
":bulb:": "\U0001f4a1",
":bulgaria:": "\U0001f1e7\U0001f1ec",
":bullet_train:": "\U0001f685",
":bullettrain_front:": "\U0001f685",
":bullettrain_side:": "\U0001f684",
":burkina_faso:": "\U0001f1e7\U0001f1eb",
":burrito:": "\U0001f32f",
":burundi:": "\U0001f1e7\U0001f1ee",
":bus:": "\U0001f68c",
":bus_stop:": "\U0001f68f",
":business_suit_levitating:": "\U0001f574\ufe0f",
":busstop:": "\U0001f68f",
":bust_in_silhouette:": "\U0001f464",
":busts_in_silhouette:": "\U0001f465",
":butter:": "\U0001f9c8",
":butterfly:": "\U0001f98b",
":cactus:": "\U0001f335",
":cake:": "\U0001f370",
":calendar:": "\U0001f4c6",
":call_me_hand:": "\U0001f919",
":calling:": "\U0001f4f2",
":cambodia:": "\U0001f1f0\U0001f1ed",
":camel:": "\U0001f42b",
":camera:": "\U0001f4f7",
":camera_flash:": "\U0001f4f8",
":camera_with_flash:": "\U0001f4f8",
":cameroon:": "\U0001f1e8\U0001f1f2",
":camping:": "\U0001f3d5\ufe0f",
":canada:": "\U0001f1e8\U0001f1e6",
":canary_islands:": "\U0001f1ee\U0001f1e8",
":cancer:": "\u264b",
":candle:": "\U0001f56f\ufe0f",
":candy:": "\U0001f36c",
":canned_food:": "\U0001f96b",
":canoe:": "\U0001f6f6",
":cape_verde:": "\U0001f1e8\U0001f1fb",
":capital_abcd:": "\U0001f520",
":capricorn:": "\u2651",
":car:": "\U0001f697",
":card_file_box:": "\U0001f5c3\ufe0f",
":card_index:": "\U0001f4c7",
":card_index_dividers:": "\U0001f5c2\ufe0f",
":caribbean_netherlands:": "\U0001f1e7\U0001f1f6",
":carousel_horse:": "\U0001f3a0",
":carp_streamer:": "\U0001f38f",
":carpentry_saw:": "\U0001fa9a",
":carrot:": "\U0001f955",
":cartwheeling:": "\U0001f938",
":castle:": "\U0001f3f0",
":cat2:": "\U0001f408",
":cat:": "\U0001f431",
":cat_face:": "\U0001f431",
":cat_with_tears_of_joy:": "\U0001f639",
":cat_with_wry_smile:": "\U0001f63c",
":cayman_islands:": "\U0001f1f0\U0001f1fe",
":cd:": "\U0001f4bf",
":central_african_republic:": "\U0001f1e8\U0001f1eb",
":ceuta_melilla:": "\U0001f1ea\U0001f1e6",
":chad:": "\U0001f1f9\U0001f1e9",
":chains:": "\u26d3\ufe0f",
":chair:": "\U0001fa91",
":champagne:": "\U0001f37e",
":chart:": "\U0001f4b9",
":chart_decreasing:": "\U0001f4c9",
":chart_increasing:": "\U0001f4c8",
":chart_increasing_with_yen:": "\U0001f4b9",
":chart_with_downwards_trend:": "\U0001f4c9",
":chart_with_upwards_trend:": "\U0001f4c8",
":check_box_with_check:": "\u2611\ufe0f",
":check_mark:": "\u2714\ufe0f",
":check_mark_button:": "\u2705",
":checkered_flag:": "\U0001f3c1",
":cheese:": "\U0001f9c0",
":cheese_wedge:": "\U0001f9c0",
":chequered_flag:": "\U0001f3c1",
":cherries:": "\U0001f352",
":cherry_blossom:": "\U0001f338",
":chess_pawn:": "\u265f\ufe0f",
":chestnut:": "\U0001f330",
":chicken:": "\U0001f414",
":child:": "\U0001f9d2",
":children_crossing:": "\U0001f6b8",
":chile:": "\U0001f1e8\U0001f1f1",
":chipmunk:": "\U0001f43f\ufe0f",
":chocolate_bar:": "\U0001f36b",
":chopsticks:": "\U0001f962",
":christmas_island:": "\U0001f1e8\U0001f1fd",
":christmas_tree:": "\U0001f384",
":church:": "\u26ea",
":cigarette:": "\U0001f6ac",
":cinema:": "\U0001f3a6",
":circled_m:": "\u24c2\ufe0f",
":circus_tent:": "\U0001f3aa",
":city_sunrise:": "\U0001f307",
":city_sunset:": "\U0001f306",
":cityscape:": "\U0001f3d9\ufe0f",
":cityscape_at_dusk:": "\U0001f306",
":cl:": "\U0001f191",
":cl_button:": "\U0001f191",
":clamp:": "\U0001f5dc\ufe0f",
":clap:": "\U0001f44f",
":clapper:": "\U0001f3ac",
":clapper_board:": "\U0001f3ac",
":clapping_hands:": "\U0001f44f",
":classical_building:": "\U0001f3db\ufe0f",
":climbing:": "\U0001f9d7",
":climbing_man:": "\U0001f9d7\u200d\u2642\ufe0f",
":climbing_woman:": "\U0001f9d7\u200d\u2640\ufe0f",
":clinking_beer_mugs:": "\U0001f37b",
":clinking_glasses:": "\U0001f942",
":clipboard:": "\U0001f4cb",
":clipperton_island:": "\U0001f1e8\U0001f1f5",
":clock1030:": "\U0001f565",
":clock10:": "\U0001f559",
":clock1130:": "\U0001f566",
":clock11:": "\U0001f55a",
":clock1230:": "\U0001f567",
":clock12:": "\U0001f55b",
":clock130:": "\U0001f55c",
":clock1:": "\U0001f550",
":clock230:": "\U0001f55d",
":clock2:": "\U0001f551",
":clock330:": "\U0001f55e",
":clock3:": "\U0001f552",
":clock430:": "\U0001f55f",
":clock4:": "\U0001f553",
":clock530:": "\U0001f560",
":clock5:": "\U0001f554",
":clock630:": "\U0001f561",
":clock6:": "\U0001f555",
":clock730:": "\U0001f562",
":clock7:": "\U0001f556",
":clock830:": "\U0001f563",
":clock8:": "\U0001f557",
":clock930:": "\U0001f564",
":clock9:": "\U0001f558",
":clockwise_vertical_arrows:": "\U0001f503",
":closed_book:": "\U0001f4d5",
":closed_lock_with_key:": "\U0001f510",
":closed_mailbox_with_lowered_flag:": "\U0001f4ea",
":closed_mailbox_with_raised_flag:": "\U0001f4eb",
":closed_umbrella:": "\U0001f302",
":cloud:": "\u2601\ufe0f",
":cloud_with_lightning:": "\U0001f329\ufe0f",
":cloud_with_lightning_and_rain:": "\u26c8\ufe0f",
":cloud_with_rain:": "\U0001f327\ufe0f",
":cloud_with_snow:": "\U0001f328\ufe0f",
":clown_face:": "\U0001f921",
":club_suit:": "\u2663\ufe0f",
":clubs:": "\u2663\ufe0f",
":clutch_bag:": "\U0001f45d",
":cn:": "\U0001f1e8\U0001f1f3",
":coat:": "\U0001f9e5",
":cockroach:": "\U0001fab3",
":cocktail:": "\U0001f378",
":cocktail_glass:": "\U0001f378",
":coconut:": "\U0001f965",
":cocos_islands:": "\U0001f1e8\U0001f1e8",
":coffee:": "\u2615",
":coffin:": "\u26b0\ufe0f",
":coin:": "\U0001fa99",
":cold_face:": "\U0001f976",
":cold_sweat:": "\U0001f630",
":collision:": "\U0001f4a5",
":colombia:": "\U0001f1e8\U0001f1f4",
":comet:": "\u2604\ufe0f",
":comoros:": "\U0001f1f0\U0001f1f2",
":compass:": "\U0001f9ed",
":computer:": "\U0001f4bb",
":computer_disk:": "\U0001f4bd",
":computer_mouse:": "\U0001f5b1\ufe0f",
":confetti_ball:": "\U0001f38a",
":confounded:": "\U0001f616",
":confounded_face:": "\U0001f616",
":confused:": "\U0001f615",
":confused_face:": "\U0001f615",
":congo_brazzaville:": "\U0001f1e8\U0001f1ec",
":congo_kinshasa:": "\U0001f1e8\U0001f1e9",
":congratulations:": "\u3297\ufe0f",
":construction:": "\U0001f6a7",
":construction_worker:": "\U0001f477",
":construction_worker_man:": "\U0001f477\u200d\u2642\ufe0f",
":construction_worker_woman:": "\U0001f477\u200d\u2640\ufe0f",
":control_knobs:": "\U0001f39b\ufe0f",
":convenience_store:": "\U0001f3ea",
":cook:": "\U0001f9d1\u200d\U0001f373",
":cook_islands:": "\U0001f1e8\U0001f1f0",
":cooked_rice:": "\U0001f35a",
":cookie:": "\U0001f36a",
":cooking:": "\U0001f373",
":cool:": "\U0001f192",
":cool_button:": "\U0001f192",
":cop:": "\U0001f46e",
":copyright:": "\u00a9\ufe0f",
":corn:": "\U0001f33d",
":costa_rica:": "\U0001f1e8\U0001f1f7",
":cote_divoire:": "\U0001f1e8\U0001f1ee",
":couch_and_lamp:": "\U0001f6cb\ufe0f",
":counterclockwise_arrows_button:": "\U0001f504",
":couple:": "\U0001f46b",
":couple_with_heart:": "\U0001f491",
":couple_with_heart_man_man:": "\U0001f468\u200d\u2764\ufe0f\u200d\U0001f468",
":couple_with_heart_woman_man:": "\U0001f469\u200d\u2764\ufe0f\u200d\U0001f468",
":couple_with_heart_woman_woman:": "\U0001f469\u200d\u2764\ufe0f\u200d\U0001f469",
":couplekiss:": "\U0001f48f",
":couplekiss_man_man:": "\U0001f468\u200d\u2764\ufe0f\u200d\U0001f48b\u200d\U0001f468",
":couplekiss_man_woman:": "\U0001f469\u200d\u2764\ufe0f\u200d\U0001f48b\u200d\U0001f468",
":couplekiss_woman_woman:": "\U0001f469\u200d\u2764\ufe0f\u200d\U0001f48b\u200d\U0001f469",
":cow2:": "\U0001f404",
":cow:": "\U0001f42e",
":cow_face:": "\U0001f42e",
":cowboy_hat_face:": "\U0001f920",
":crab:": "\U0001f980",
":crayon:": "\U0001f58d\ufe0f",
":credit_card:": "\U0001f4b3",
":crescent_moon:": "\U0001f319",
":cricket:": "\U0001f997",
":cricket_game:": "\U0001f3cf",
":croatia:": "\U0001f1ed\U0001f1f7",
":crocodile:": "\U0001f40a",
":croissant:": "\U0001f950",
":cross_mark:": "\u274c",
":cross_mark_button:": "\u274e",
":crossed_fingers:": "\U0001f91e",
":crossed_flags:": "\U0001f38c",
":crossed_swords:": "\u2694\ufe0f",
":crown:": "\U0001f451",
":cry:": "\U0001f622",
":crying_cat:": "\U0001f63f",
":crying_cat_face:": "\U0001f63f",
":crying_face:": "\U0001f622",
":crystal_ball:": "\U0001f52e",
":cuba:": "\U0001f1e8\U0001f1fa",
":cucumber:": "\U0001f952",
":cup_with_straw:": "\U0001f964",
":cupcake:": "\U0001f9c1",
":cupid:": "\U0001f498",
":curacao:": "\U0001f1e8\U0001f1fc",
":curling_stone:": "\U0001f94c",
":curly_hair:": "\U0001f9b1",
":curly_haired_man:": "\U0001f468\u200d\U0001f9b1",
":curly_haired_woman:": "\U0001f469\u200d\U0001f9b1",
":curly_loop:": "\u27b0",
":currency_exchange:": "\U0001f4b1",
":curry:": "\U0001f35b",
":curry_rice:": "\U0001f35b",
":cursing_face:": "\U0001f92c",
":custard:": "\U0001f36e",
":customs:": "\U0001f6c3",
":cut_of_meat:": "\U0001f969",
":cyclone:": "\U0001f300",
":cyprus:": "\U0001f1e8\U0001f1fe",
":czech_republic:": "\U0001f1e8\U0001f1ff",
":dagger:": "\U0001f5e1\ufe0f",
":dancer:": "\U0001f483",
":dancers:": "\U0001f46f",
":dancing_men:": "\U0001f46f\u200d\u2642\ufe0f",
":dancing_women:": "\U0001f46f\u200d\u2640\ufe0f",
":dango:": "\U0001f361",
":dark_skin_tone:": "\U0001f3ff",
":dark_sunglasses:": "\U0001f576\ufe0f",
":dart:": "\U0001f3af",
":dash:": "\U0001f4a8",
":dashing_away:": "\U0001f4a8",
":date:": "\U0001f4c5",
":de:": "\U0001f1e9\U0001f1ea",
":deaf_man:": "\U0001f9cf\u200d\u2642\ufe0f",
":deaf_person:": "\U0001f9cf",
":deaf_woman:": "\U0001f9cf\u200d\u2640\ufe0f",
":deciduous_tree:": "\U0001f333",
":deer:": "\U0001f98c",
":delivery_truck:": "\U0001f69a",
":denmark:": "\U0001f1e9\U0001f1f0",
":department_store:": "\U0001f3ec",
":derelict_house:": "\U0001f3da\ufe0f",
":desert:": "\U0001f3dc\ufe0f",
":desert_island:": "\U0001f3dd\ufe0f",
":desktop_computer:": "\U0001f5a5\ufe0f",
":detective:": "\U0001f575\ufe0f",
":diamond_shape_with_a_dot_inside:": "\U0001f4a0",
":diamond_suit:": "\u2666\ufe0f",
":diamond_with_a_dot:": "\U0001f4a0",
":diamonds:": "\u2666\ufe0f",
":diego_garcia:": "\U0001f1e9\U0001f1ec",
":dim_button:": "\U0001f505",
":direct_hit:": "\U0001f3af",
":disappointed:": "\U0001f61e",
":disappointed_face:": "\U0001f61e",
":disappointed_relieved:": "\U0001f625",
":disguised_face:": "\U0001f978",
":divide:": "\u2797",
":diving_mask:": "\U0001f93f",
":diya_lamp:": "\U0001fa94",
":dizzy:": "\U0001f4ab",
":dizzy_face:": "\U0001f635",
":djibouti:": "\U0001f1e9\U0001f1ef",
":dna:": "\U0001f9ec",
":do_not_litter:": "\U0001f6af",
":dodo:": "\U0001f9a4",
":dog2:": "\U0001f415",
":dog:": "\U0001f436",
":dog_face:": "\U0001f436",
":dollar:": "\U0001f4b5",
":dollar_banknote:": "\U0001f4b5",
":dolls:": "\U0001f38e",
":dolphin:": "\U0001f42c",
":dominica:": "\U0001f1e9\U0001f1f2",
":dominican_republic:": "\U0001f1e9\U0001f1f4",
":door:": "\U0001f6aa",
":dotted_six_pointed_star:": "\U0001f52f",
":double_curly_loop:": "\u27bf",
":double_exclamation_mark:": "\u203c\ufe0f",
":doughnut:": "\U0001f369",
":dove:": "\U0001f54a\ufe0f",
":down_arrow:": "\u2b07\ufe0f",
":down_left_arrow:": "\u2199\ufe0f",
":down_right_arrow:": "\u2198\ufe0f",
":downcast_face_with_sweat:": "\U0001f613",
":downwards_button:": "\U0001f53d",
":dragon:": "\U0001f409",
":dragon_face:": "\U0001f432",
":dress:": "\U0001f457",
":dromedary_camel:": "\U0001f42a",
":drooling_face:": "\U0001f924",
":drop_of_blood:": "\U0001fa78",
":droplet:": "\U0001f4a7",
":drum:": "\U0001f941",
":duck:": "\U0001f986",
":dumpling:": "\U0001f95f",
":dvd:": "\U0001f4c0",
":e-mail:": "\U0001f4e7",
":e_mail:": "\U0001f4e7",
":eagle:": "\U0001f985",
":ear:": "\U0001f442",
":ear_of_corn:": "\U0001f33d",
":ear_of_rice:": "\U0001f33e",
":ear_with_hearing_aid:": "\U0001f9bb",
":earth_africa:": "\U0001f30d",
":earth_americas:": "\U0001f30e",
":earth_asia:": "\U0001f30f",
":ecuador:": "\U0001f1ea\U0001f1e8",
":egg:": "\U0001f95a",
":eggplant:": "\U0001f346",
":egypt:": "\U0001f1ea\U0001f1ec",
":eight:": "8\ufe0f\u20e3",
":eight_o_clock:": "\U0001f557",
":eight_pointed_black_star:": "\u2734\ufe0f",
":eight_pointed_star:": "\u2734\ufe0f",
":eight_spoked_asterisk:": "\u2733\ufe0f",
":eight_thirty:": "\U0001f563",
":eject_button:": "\u23cf\ufe0f",
":el_salvador:": "\U0001f1f8\U0001f1fb",
":electric_plug:": "\U0001f50c",
":elephant:": "\U0001f418",
":elevator:": "\U0001f6d7",
":eleven_o_clock:": "\U0001f55a",
":eleven_thirty:": "\U0001f566",
":elf:": "\U0001f9dd",
":elf_man:": "\U0001f9dd\u200d\u2642\ufe0f",
":elf_woman:": "\U0001f9dd\u200d\u2640\ufe0f",
":email:": "\u2709\ufe0f",
":end:": "\U0001f51a",
":end_arrow:": "\U0001f51a",
":england:": "\U0001f3f4\U000e0067\U000e0062\U000e0065\U000e006e\U000e0067\U000e007f",
":envelope:": "\u2709\ufe0f",
":envelope_with_arrow:": "\U0001f4e9",
":equatorial_guinea:": "\U0001f1ec\U0001f1f6",
":eritrea:": "\U0001f1ea\U0001f1f7",
":es:": "\U0001f1ea\U0001f1f8",
":estonia:": "\U0001f1ea\U0001f1ea",
":ethiopia:": "\U0001f1ea\U0001f1f9",
":eu:": "\U0001f1ea\U0001f1fa",
":euro:": "\U0001f4b6",
":euro_banknote:": "\U0001f4b6",
":european_castle:": "\U0001f3f0",
":european_post_office:": "\U0001f3e4",
":european_union:": "\U0001f1ea\U0001f1fa",
":evergreen_tree:": "\U0001f332",
":ewe:": "\U0001f411",
":exclamation:": "\u2757",
":exclamation_mark:": "\u2757",
":exclamation_question_mark:": "\u2049\ufe0f",
":exploding_head:": "\U0001f92f",
":expressionless:": "\U0001f611",
":expressionless_face:": "\U0001f611",
":eye:": "\U0001f441\ufe0f",
":eye_in_speech_bubble:": "\U0001f441\ufe0f\u200d\U0001f5e8\ufe0f",
":eye_speech_bubble:": "\U0001f441\ufe0f\u200d\U0001f5e8\ufe0f",
":eyeglasses:": "\U0001f453",
":eyes:": "\U0001f440",
":face_blowing_a_kiss:": "\U0001f618",
":face_savoring_food:": "\U0001f60b",
":face_screaming_in_fear:": "\U0001f631",
":face_vomiting:": "\U0001f92e",
":face_with_hand_over_mouth:": "\U0001f92d",
":face_with_head_bandage:": "\U0001f915",
":face_with_medical_mask:": "\U0001f637",
":face_with_monocle:": "\U0001f9d0",
":face_with_open_mouth:": "\U0001f62e",
":face_with_raised_eyebrow:": "\U0001f928",
":face_with_rolling_eyes:": "\U0001f644",
":face_with_steam_from_nose:": "\U0001f624",
":face_with_symbols_on_mouth:": "\U0001f92c",
":face_with_tears_of_joy:": "\U0001f602",
":face_with_thermometer:": "\U0001f912",
":face_with_tongue:": "\U0001f61b",
":face_without_mouth:": "\U0001f636",
":facepalm:": "\U0001f926",
":facepunch:": "\U0001f44a",
":factory:": "\U0001f3ed",
":factory_worker:": "\U0001f9d1\u200d\U0001f3ed",
":fairy:": "\U0001f9da",
":fairy_man:": "\U0001f9da\u200d\u2642\ufe0f",
":fairy_woman:": "\U0001f9da\u200d\u2640\ufe0f",
":falafel:": "\U0001f9c6",
":falkland_islands:": "\U0001f1eb\U0001f1f0",
":fallen_leaf:": "\U0001f342",
":family:": "\U0001f46a",
":family_man_boy:": "\U0001f468\u200d\U0001f466",
":family_man_boy_boy:": "\U0001f468\u200d\U0001f466\u200d\U0001f466",
":family_man_girl:": "\U0001f468\u200d\U0001f467",
":family_man_girl_boy:": "\U0001f468\u200d\U0001f467\u200d\U0001f466",
":family_man_girl_girl:": "\U0001f468\u200d\U0001f467\u200d\U0001f467",
":family_man_man_boy:": "\U0001f468\u200d\U0001f468\u200d\U0001f466",
":family_man_man_boy_boy:": "\U0001f468\u200d\U0001f468\u200d\U0001f466\u200d\U0001f466",
":family_man_man_girl:": "\U0001f468\u200d\U0001f468\u200d\U0001f467",
":family_man_man_girl_boy:": "\U0001f468\u200d\U0001f468\u200d\U0001f467\u200d\U0001f466",
":family_man_man_girl_girl:": "\U0001f468\u200d\U0001f468\u200d\U0001f467\u200d\U0001f467",
":family_man_woman_boy:": "\U0001f468\u200d\U0001f469\u200d\U0001f466",
":family_man_woman_boy_boy:": "\U0001f468\u200d\U0001f469\u200d\U0001f466\u200d\U0001f466",
":family_man_woman_girl:": "\U0001f468\u200d\U0001f469\u200d\U0001f467",
":family_man_woman_girl_boy:": "\U0001f468\u200d\U0001f469\u200d\U0001f467\u200d\U0001f466",
":family_man_woman_girl_girl:": "\U0001f468\u200d\U0001f469\u200d\U0001f467\u200d\U0001f467",
":family_woman_boy:": "\U0001f469\u200d\U0001f466",
":family_woman_boy_boy:": "\U0001f469\u200d\U0001f466\u200d\U0001f466",
":family_woman_girl:": "\U0001f469\u200d\U0001f467",
":family_woman_girl_boy:": "\U0001f469\u200d\U0001f467\u200d\U0001f466",
":family_woman_girl_girl:": "\U0001f469\u200d\U0001f467\u200d\U0001f467",
":family_woman_woman_boy:": "\U0001f469\u200d\U0001f469\u200d\U0001f466",
":family_woman_woman_boy_boy:": "\U0001f469\u200d\U0001f469\u200d\U0001f466\u200d\U0001f466",
":family_woman_woman_girl:": "\U0001f469\u200d\U0001f469\u200d\U0001f467",
":family_woman_woman_girl_boy:": "\U0001f469\u200d\U0001f469\u200d\U0001f467\u200d\U0001f466",
":family_woman_woman_girl_girl:": "\U0001f469\u200d\U0001f469\u200d\U0001f467\u200d\U0001f467",
":farmer:": "\U0001f9d1\u200d\U0001f33e",
":faroe_islands:": "\U0001f1eb\U0001f1f4",
":fast_down_button:": "\u23ec",
":fast_forward:": "\u23e9",
":fast_forward_button:": "\u23e9",
":fast_reverse_button:": "\u23ea",
":fast_up_button:": "\u23eb",
":fax:": "\U0001f4e0",
":fax_machine:": "\U0001f4e0",
":fearful:": "\U0001f628",
":fearful_face:": "\U0001f628",
":feather:": "\U0001fab6",
":feet:": "\U0001f43e",
":female_detective:": "\U0001f575\ufe0f\u200d\u2640\ufe0f",
":female_sign:": "\u2640\ufe0f",
":ferris_wheel:": "\U0001f3a1",
":ferry:": "\u26f4\ufe0f",
":field_hockey:": "\U0001f3d1",
":fiji:": "\U0001f1eb\U0001f1ef",
":file_cabinet:": "\U0001f5c4\ufe0f",
":file_folder:": "\U0001f4c1",
":film_frames:": "\U0001f39e\ufe0f",
":film_projector:": "\U0001f4fd\ufe0f",
":film_strip:": "\U0001f39e\ufe0f",
":finland:": "\U0001f1eb\U0001f1ee",
":fire:": "\U0001f525",
":fire_engine:": "\U0001f692",
":fire_extinguisher:": "\U0001f9ef",
":firecracker:": "\U0001f9e8",
":firefighter:": "\U0001f9d1\u200d\U0001f692",
":fireworks:": "\U0001f386",
":first_place_medal:": "\U0001f947",
":first_quarter_moon:": "\U0001f313",
":first_quarter_moon_face:": "\U0001f31b",
":first_quarter_moon_with_face:": "\U0001f31b",
":fish:": "\U0001f41f",
":fish_cake:": "\U0001f365",
":fish_cake_with_swirl:": "\U0001f365",
":fishing_pole:": "\U0001f3a3",
":fishing_pole_and_fish:": "\U0001f3a3",
":fist:": "\u270a",
":fist_left:": "\U0001f91b",
":fist_oncoming:": "\U0001f44a",
":fist_raised:": "\u270a",
":fist_right:": "\U0001f91c",
":five:": "5\ufe0f\u20e3",
":five_o_clock:": "\U0001f554",
":five_thirty:": "\U0001f560",
":flag_for_afghanistan:": "\U0001f1e6\U0001f1eb",
":flag_for_aland_islands:": "\U0001f1e6\U0001f1fd",
":flag_for_albania:": "\U0001f1e6\U0001f1f1",
":flag_for_algeria:": "\U0001f1e9\U0001f1ff",
":flag_for_american_samoa:": "\U0001f1e6\U0001f1f8",
":flag_for_andorra:": "\U0001f1e6\U0001f1e9",
":flag_for_angola:": "\U0001f1e6\U0001f1f4",
":flag_for_anguilla:": "\U0001f1e6\U0001f1ee",
":flag_for_antarctica:": "\U0001f1e6\U0001f1f6",
":flag_for_antigua_and_barbuda:": "\U0001f1e6\U0001f1ec",
":flag_for_argentina:": "\U0001f1e6\U0001f1f7",
":flag_for_armenia:": "\U0001f1e6\U0001f1f2",
":flag_for_aruba:": "\U0001f1e6\U0001f1fc",
":flag_for_ascension_island:": "\U0001f1e6\U0001f1e8",
":flag_for_australia:": "\U0001f1e6\U0001f1fa",
":flag_for_austria:": "\U0001f1e6\U0001f1f9",
":flag_for_azerbaijan:": "\U0001f1e6\U0001f1ff",
":flag_for_bahamas:": "\U0001f1e7\U0001f1f8",
":flag_for_bahrain:": "\U0001f1e7\U0001f1ed",
":flag_for_bangladesh:": "\U0001f1e7\U0001f1e9",
":flag_for_barbados:": "\U0001f1e7\U0001f1e7",
":flag_for_belarus:": "\U0001f1e7\U0001f1fe",
":flag_for_belgium:": "\U0001f1e7\U0001f1ea",
":flag_for_belize:": "\U0001f1e7\U0001f1ff",
":flag_for_benin:": "\U0001f1e7\U0001f1ef",
":flag_for_bermuda:": "\U0001f1e7\U0001f1f2",
":flag_for_bhutan:": "\U0001f1e7\U0001f1f9",
":flag_for_bolivia:": "\U0001f1e7\U0001f1f4",
":flag_for_bosnia_and_herzegovina:": "\U0001f1e7\U0001f1e6",
":flag_for_botswana:": "\U0001f1e7\U0001f1fc",
":flag_for_bouvet_island:": "\U0001f1e7\U0001f1fb",
":flag_for_brazil:": "\U0001f1e7\U0001f1f7",
":flag_for_british_indian_ocean_territory:": "\U0001f1ee\U0001f1f4",
":flag_for_british_virgin_islands:": "\U0001f1fb\U0001f1ec",
":flag_for_brunei:": "\U0001f1e7\U0001f1f3",
":flag_for_bulgaria:": "\U0001f1e7\U0001f1ec",
":flag_for_burkina_faso:": "\U0001f1e7\U0001f1eb",
":flag_for_burundi:": "\U0001f1e7\U0001f1ee",
":flag_for_cambodia:": "\U0001f1f0\U0001f1ed",
":flag_for_cameroon:": "\U0001f1e8\U0001f1f2",
":flag_for_canada:": "\U0001f1e8\U0001f1e6",
":flag_for_canary_islands:": "\U0001f1ee\U0001f1e8",
":flag_for_cape_verde:": "\U0001f1e8\U0001f1fb",
":flag_for_caribbean_netherlands:": "\U0001f1e7\U0001f1f6",
":flag_for_cayman_islands:": "\U0001f1f0\U0001f1fe",
":flag_for_central_african_republic:": "\U0001f1e8\U0001f1eb",
":flag_for_ceuta_and_melilla:": "\U0001f1ea\U0001f1e6",
":flag_for_chad:": "\U0001f1f9\U0001f1e9",
":flag_for_chile:": "\U0001f1e8\U0001f1f1",
":flag_for_china:": "\U0001f1e8\U0001f1f3",
":flag_for_christmas_island:": "\U0001f1e8\U0001f1fd",
":flag_for_clipperton_island:": "\U0001f1e8\U0001f1f5",
":flag_for_cocos_keeling_islands:": "\U0001f1e8\U0001f1e8",
":flag_for_colombia:": "\U0001f1e8\U0001f1f4",
":flag_for_comoros:": "\U0001f1f0\U0001f1f2",
":flag_for_congo_brazzaville:": "\U0001f1e8\U0001f1ec",
":flag_for_congo_kinshasa:": "\U0001f1e8\U0001f1e9",
":flag_for_cook_islands:": "\U0001f1e8\U0001f1f0",
":flag_for_costa_rica:": "\U0001f1e8\U0001f1f7",
":flag_for_cote_d_ivoire:": "\U0001f1e8\U0001f1ee",
":flag_for_croatia:": "\U0001f1ed\U0001f1f7",
":flag_for_cuba:": "\U0001f1e8\U0001f1fa",
":flag_for_curacao:": "\U0001f1e8\U0001f1fc",
":flag_for_cyprus:": "\U0001f1e8\U0001f1fe",
":flag_for_czechia:": "\U0001f1e8\U0001f1ff",
":flag_for_denmark:": "\U0001f1e9\U0001f1f0",
":flag_for_diego_garcia:": "\U0001f1e9\U0001f1ec",
":flag_for_djibouti:": "\U0001f1e9\U0001f1ef",
":flag_for_dominica:": "\U0001f1e9\U0001f1f2",
":flag_for_dominican_republic:": "\U0001f1e9\U0001f1f4",
":flag_for_ecuador:": "\U0001f1ea\U0001f1e8",
":flag_for_egypt:": "\U0001f1ea\U0001f1ec",
":flag_for_el_salvador:": "\U0001f1f8\U0001f1fb",
":flag_for_england:": "\U0001f3f4\U000e0067\U000e0062\U000e0065\U000e006e\U000e0067\U000e007f",
":flag_for_equatorial_guinea:": "\U0001f1ec\U0001f1f6",
":flag_for_eritrea:": "\U0001f1ea\U0001f1f7",
":flag_for_estonia:": "\U0001f1ea\U0001f1ea",
":flag_for_eswatini:": "\U0001f1f8\U0001f1ff",
":flag_for_ethiopia:": "\U0001f1ea\U0001f1f9",
":flag_for_european_union:": "\U0001f1ea\U0001f1fa",
":flag_for_falkland_islands:": "\U0001f1eb\U0001f1f0",
":flag_for_faroe_islands:": "\U0001f1eb\U0001f1f4",
":flag_for_fiji:": "\U0001f1eb\U0001f1ef",
":flag_for_finland:": "\U0001f1eb\U0001f1ee",
":flag_for_france:": "\U0001f1eb\U0001f1f7",
":flag_for_french_guiana:": "\U0001f1ec\U0001f1eb",
":flag_for_french_polynesia:": "\U0001f1f5\U0001f1eb",
":flag_for_french_southern_territories:": "\U0001f1f9\U0001f1eb",
":flag_for_gabon:": "\U0001f1ec\U0001f1e6",
":flag_for_gambia:": "\U0001f1ec\U0001f1f2",
":flag_for_georgia:": "\U0001f1ec\U0001f1ea",
":flag_for_germany:": "\U0001f1e9\U0001f1ea",
":flag_for_ghana:": "\U0001f1ec\U0001f1ed",
":flag_for_gibraltar:": "\U0001f1ec\U0001f1ee",
":flag_for_greece:": "\U0001f1ec\U0001f1f7",
":flag_for_greenland:": "\U0001f1ec\U0001f1f1",
":flag_for_grenada:": "\U0001f1ec\U0001f1e9",
":flag_for_guadeloupe:": "\U0001f1ec\U0001f1f5",
":flag_for_guam:": "\U0001f1ec\U0001f1fa",
":flag_for_guatemala:": "\U0001f1ec\U0001f1f9",
":flag_for_guernsey:": "\U0001f1ec\U0001f1ec",
":flag_for_guinea:": "\U0001f1ec\U0001f1f3",
":flag_for_guinea_bissau:": "\U0001f1ec\U0001f1fc",
":flag_for_guyana:": "\U0001f1ec\U0001f1fe",
":flag_for_haiti:": "\U0001f1ed\U0001f1f9",
":flag_for_heard_and_mcdonald_islands:": "\U0001f1ed\U0001f1f2",
":flag_for_honduras:": "\U0001f1ed\U0001f1f3",
":flag_for_hong_kong_sar_china:": "\U0001f1ed\U0001f1f0",
":flag_for_hungary:": "\U0001f1ed\U0001f1fa",
":flag_for_iceland:": "\U0001f1ee\U0001f1f8",
":flag_for_india:": "\U0001f1ee\U0001f1f3",
":flag_for_indonesia:": "\U0001f1ee\U0001f1e9",
":flag_for_iran:": "\U0001f1ee\U0001f1f7",
":flag_for_iraq:": "\U0001f1ee\U0001f1f6",
":flag_for_ireland:": "\U0001f1ee\U0001f1ea",
":flag_for_isle_of_man:": "\U0001f1ee\U0001f1f2",
":flag_for_israel:": "\U0001f1ee\U0001f1f1",
":flag_for_italy:": "\U0001f1ee\U0001f1f9",
":flag_for_jamaica:": "\U0001f1ef\U0001f1f2",
":flag_for_japan:": "\U0001f1ef\U0001f1f5",
":flag_for_jersey:": "\U0001f1ef\U0001f1ea",
":flag_for_jordan:": "\U0001f1ef\U0001f1f4",
":flag_for_kazakhstan:": "\U0001f1f0\U0001f1ff",
":flag_for_kenya:": "\U0001f1f0\U0001f1ea",
":flag_for_kiribati:": "\U0001f1f0\U0001f1ee",
":flag_for_kosovo:": "\U0001f1fd\U0001f1f0",
":flag_for_kuwait:": "\U0001f1f0\U0001f1fc",
":flag_for_kyrgyzstan:": "\U0001f1f0\U0001f1ec",
":flag_for_laos:": "\U0001f1f1\U0001f1e6",
":flag_for_latvia:": "\U0001f1f1\U0001f1fb",
":flag_for_lebanon:": "\U0001f1f1\U0001f1e7",
":flag_for_lesotho:": "\U0001f1f1\U0001f1f8",
":flag_for_liberia:": "\U0001f1f1\U0001f1f7",
":flag_for_libya:": "\U0001f1f1\U0001f1fe",
":flag_for_liechtenstein:": "\U0001f1f1\U0001f1ee",
":flag_for_lithuania:": "\U0001f1f1\U0001f1f9",
":flag_for_luxembourg:": "\U0001f1f1\U0001f1fa",
":flag_for_macao_sar_china:": "\U0001f1f2\U0001f1f4",
":flag_for_madagascar:": "\U0001f1f2\U0001f1ec",
":flag_for_malawi:": "\U0001f1f2\U0001f1fc",
":flag_for_malaysia:": "\U0001f1f2\U0001f1fe",
":flag_for_maldives:": "\U0001f1f2\U0001f1fb",
":flag_for_mali:": "\U0001f1f2\U0001f1f1",
":flag_for_malta:": "\U0001f1f2\U0001f1f9",
":flag_for_marshall_islands:": "\U0001f1f2\U0001f1ed",
":flag_for_martinique:": "\U0001f1f2\U0001f1f6",
":flag_for_mauritania:": "\U0001f1f2\U0001f1f7",
":flag_for_mauritius:": "\U0001f1f2\U0001f1fa",
":flag_for_mayotte:": "\U0001f1fe\U0001f1f9",
":flag_for_mexico:": "\U0001f1f2\U0001f1fd",
":flag_for_micronesia:": "\U0001f1eb\U0001f1f2",
":flag_for_moldova:": "\U0001f1f2\U0001f1e9",
":flag_for_monaco:": "\U0001f1f2\U0001f1e8",
":flag_for_mongolia:": "\U0001f1f2\U0001f1f3",
":flag_for_montenegro:": "\U0001f1f2\U0001f1ea",
":flag_for_montserrat:": "\U0001f1f2\U0001f1f8",
":flag_for_morocco:": "\U0001f1f2\U0001f1e6",
":flag_for_mozambique:": "\U0001f1f2\U0001f1ff",
":flag_for_myanmar_burma:": "\U0001f1f2\U0001f1f2",
":flag_for_namibia:": "\U0001f1f3\U0001f1e6",
":flag_for_nauru:": "\U0001f1f3\U0001f1f7",
":flag_for_nepal:": "\U0001f1f3\U0001f1f5",
":flag_for_netherlands:": "\U0001f1f3\U0001f1f1",
":flag_for_new_caledonia:": "\U0001f1f3\U0001f1e8",
":flag_for_new_zealand:": "\U0001f1f3\U0001f1ff",
":flag_for_nicaragua:": "\U0001f1f3\U0001f1ee",
":flag_for_niger:": "\U0001f1f3\U0001f1ea",
":flag_for_nigeria:": "\U0001f1f3\U0001f1ec",
":flag_for_niue:": "\U0001f1f3\U0001f1fa",
":flag_for_norfolk_island:": "\U0001f1f3\U0001f1eb",
":flag_for_north_korea:": "\U0001f1f0\U0001f1f5",
":flag_for_north_macedonia:": "\U0001f1f2\U0001f1f0",
":flag_for_northern_mariana_islands:": "\U0001f1f2\U0001f1f5",
":flag_for_norway:": "\U0001f1f3\U0001f1f4",
":flag_for_oman:": "\U0001f1f4\U0001f1f2",
":flag_for_pakistan:": "\U0001f1f5\U0001f1f0",
":flag_for_palau:": "\U0001f1f5\U0001f1fc",
":flag_for_palestinian_territories:": "\U0001f1f5\U0001f1f8",
":flag_for_panama:": "\U0001f1f5\U0001f1e6",
":flag_for_papua_new_guinea:": "\U0001f1f5\U0001f1ec",
":flag_for_paraguay:": "\U0001f1f5\U0001f1fe",
":flag_for_peru:": "\U0001f1f5\U0001f1ea",
":flag_for_philippines:": "\U0001f1f5\U0001f1ed",
":flag_for_pitcairn_islands:": "\U0001f1f5\U0001f1f3",
":flag_for_poland:": "\U0001f1f5\U0001f1f1",
":flag_for_portugal:": "\U0001f1f5\U0001f1f9",
":flag_for_puerto_rico:": "\U0001f1f5\U0001f1f7",
":flag_for_qatar:": "\U0001f1f6\U0001f1e6",
":flag_for_reunion:": "\U0001f1f7\U0001f1ea",
":flag_for_romania:": "\U0001f1f7\U0001f1f4",
":flag_for_russia:": "\U0001f1f7\U0001f1fa",
":flag_for_rwanda:": "\U0001f1f7\U0001f1fc",
":flag_for_samoa:": "\U0001f1fc\U0001f1f8",
":flag_for_san_marino:": "\U0001f1f8\U0001f1f2",
":flag_for_sao_tome_and_principe:": "\U0001f1f8\U0001f1f9",
":flag_for_saudi_arabia:": "\U0001f1f8\U0001f1e6",
":flag_for_scotland:": "\U0001f3f4\U000e0067\U000e0062\U000e0073\U000e0063\U000e0074\U000e007f",
":flag_for_senegal:": "\U0001f1f8\U0001f1f3",
":flag_for_serbia:": "\U0001f1f7\U0001f1f8",
":flag_for_seychelles:": "\U0001f1f8\U0001f1e8",
":flag_for_sierra_leone:": "\U0001f1f8\U0001f1f1",
":flag_for_singapore:": "\U0001f1f8\U0001f1ec",
":flag_for_sint_maarten:": "\U0001f1f8\U0001f1fd",
":flag_for_slovakia:": "\U0001f1f8\U0001f1f0",
":flag_for_slovenia:": "\U0001f1f8\U0001f1ee",
":flag_for_solomon_islands:": "\U0001f1f8\U0001f1e7",
":flag_for_somalia:": "\U0001f1f8\U0001f1f4",
":flag_for_south_africa:": "\U0001f1ff\U0001f1e6",
":flag_for_south_georgia_and_south_sandwich_islands:": "\U0001f1ec\U0001f1f8",
":flag_for_south_korea:": "\U0001f1f0\U0001f1f7",
":flag_for_south_sudan:": "\U0001f1f8\U0001f1f8",
":flag_for_spain:": "\U0001f1ea\U0001f1f8",
":flag_for_sri_lanka:": "\U0001f1f1\U0001f1f0",
":flag_for_st_barthelemy:": "\U0001f1e7\U0001f1f1",
":flag_for_st_helena:": "\U0001f1f8\U0001f1ed",
":flag_for_st_kitts_and_nevis:": "\U0001f1f0\U0001f1f3",
":flag_for_st_lucia:": "\U0001f1f1\U0001f1e8",
":flag_for_st_martin:": "\U0001f1f2\U0001f1eb",
":flag_for_st_pierre_and_miquelon:": "\U0001f1f5\U0001f1f2",
":flag_for_st_vincent_and_grenadines:": "\U0001f1fb\U0001f1e8",
":flag_for_sudan:": "\U0001f1f8\U0001f1e9",
":flag_for_suriname:": "\U0001f1f8\U0001f1f7",
":flag_for_svalbard_and_jan_mayen:": "\U0001f1f8\U0001f1ef",
":flag_for_sweden:": "\U0001f1f8\U0001f1ea",
":flag_for_switzerland:": "\U0001f1e8\U0001f1ed",
":flag_for_syria:": "\U0001f1f8\U0001f1fe",
":flag_for_taiwan:": "\U0001f1f9\U0001f1fc",
":flag_for_tajikistan:": "\U0001f1f9\U0001f1ef",
":flag_for_tanzania:": "\U0001f1f9\U0001f1ff",
":flag_for_thailand:": "\U0001f1f9\U0001f1ed",
":flag_for_timor_leste:": "\U0001f1f9\U0001f1f1",
":flag_for_togo:": "\U0001f1f9\U0001f1ec",
":flag_for_tokelau:": "\U0001f1f9\U0001f1f0",
":flag_for_tonga:": "\U0001f1f9\U0001f1f4",
":flag_for_trinidad_and_tobago:": "\U0001f1f9\U0001f1f9",