-
Notifications
You must be signed in to change notification settings - Fork 54
/
emoji.h
1092 lines (1089 loc) · 46.1 KB
/
emoji.h
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
#include <map>
#include <string>
namespace emojicpp {
static std::map<std::string, std::string> EMOJIS = {
{":admission_tickets:" , u8"\U0001F39F"},
{":aerial_tramway:" , u8"\U0001F6A1"},
{":airplane:" , u8"\U00002708"},
{":airplane_arriving:" , u8"\U0001F6EC"},
{":airplane_departure:" , u8"\U0001F6EB"},
{":alarm_clock:" , u8"\U000023F0"},
{":alembic:" , u8"\U00002697"},
{":space_invader:" , u8"\U0001F47E"},
{":ambulance:" , u8"\U0001F691"},
{":football:" , u8"\U0001F3C8"},
{":amphora:" , u8"\U0001F3FA"},
{":anchor:" , u8"\U00002693"},
{":anger:" , u8"\U0001F4A2"},
{":angry:" , u8"\U0001F620"},
{":anguished:" , u8"\U0001F627"},
{":ant:" , u8"\U0001F41C"},
{":signal_strength:" , u8"\U0001F4F6"},
{":arrows_counterclockwise:" , u8"\U0001F504"},
{":aquarius:" , u8"\U00002652"},
{":aries:" , u8"\U00002648"},
{":arrow_heading_down:" , u8"\U00002935"},
{":arrow_heading_up:" , u8"\U00002934"},
{":articulated_lorry:" , u8"\U0001F69B"},
{":art:" , u8"\U0001F3A8"},
{":astonished:" , u8"\U0001F632"},
{":athletic_shoe:" , u8"\U0001F45F"},
{":atom_symbol:" , u8"\U0000269B"},
{":eggplant:" , u8"\U0001F346"},
{":atm:" , u8"\U0001F3E7"},
{":car:" , u8"\U0001F697"},
{":red_car:" , u8"\U0001F697"},
{":baby:" , u8"\U0001F476"},
{":angel:" , u8"\U0001F47C"},
{":baby_bottle:" , u8"\U0001F37C"},
{":baby_chick:" , u8"\U0001F424"},
{":baby_symbol:" , u8"\U0001F6BC"},
{":back:" , u8"\U0001F519"},
{":camel:" , u8"\U0001F42B"},
{":badminton_racquet_and_shuttlecock:" , u8"\U0001F3F8"},
{":baggage_claim:" , u8"\U0001F6C4"},
{":balloon:" , u8"\U0001F388"},
{":ballot_box_with_ballot:" , u8"\U0001F5F3"},
{":ballot_box_with_check:" , u8"\U00002611"},
{":banana:" , u8"\U0001F34C"},
{":bank:" , u8"\U0001F3E6"},
{":dollar:" , u8"\U0001F4B5"},
{":euro:" , u8"\U0001F4B6"},
{":pound:" , u8"\U0001F4B7"},
{":yen:" , u8"\U0001F4B4"},
{":bar_chart:" , u8"\U0001F4CA"},
{":barber:" , u8"\U0001F488"},
{":baseball:" , u8"\U000026BE"},
{":basketball:" , u8"\U0001F3C0"},
{":bath:" , u8"\U0001F6C0"},
{":bathtub:" , u8"\U0001F6C1"},
{":battery:" , u8"\U0001F50B"},
{":beach_with_umbrella:" , u8"\U0001F3D6"},
{":bear:" , u8"\U0001F43B"},
{":heartbeat:" , u8"\U0001F493"},
{":bed:" , u8"\U0001F6CF"},
{":beer:" , u8"\U0001F37A"},
{":bell:" , u8"\U0001F514"},
{":no_bell:" , u8"\U0001F515"},
{":bellhop_bell:" , u8"\U0001F6CE"},
{":bento:" , u8"\U0001F371"},
{":bike:" , u8"\U0001F6B2"},
{":bicyclist:" , u8"\U0001F6B4"},
{":bikini:" , u8"\U0001F459"},
{":8ball:" , u8"\U0001F3B1"},
{":biohazard_sign:" , u8"\U00002623"},
{":bird:" , u8"\U0001F426"},
{":birthday:" , u8"\U0001F382"},
{":black_circle_for_record:" , u8"\U000023FA"},
{":clubs:" , u8"\U00002663"},
{":diamonds:" , u8"\U00002666"},
{":arrow_double_down:" , u8"\U000023EC"},
{":hearts:" , u8"\U00002665"},
{":black_large_square:" , u8"\U00002B1B"},
{":rewind:" , u8"\U000023EA"},
{":black_left__pointing_double_triangle_with_vertical_bar:" , u8"\U000023EE"},
{":arrow_backward:" , u8"\U000025C0"},
{":black_medium_small_square:" , u8"\U000025FE"},
{":black_medium_square:" , u8"\U000025FC"},
{":black_nib:" , u8"\U00002712"},
{":question:" , u8"\U00002753"},
{":fast_forward:" , u8"\U000023E9"},
{":black_right__pointing_double_triangle_with_vertical_bar:" , u8"\U000023ED"},
{":arrow_forward:" , u8"\U000025B6"},
{":black_right__pointing_triangle_with_double_vertical_bar:" , u8"\U000023EF"},
{":arrow_right:" , u8"\U000027A1"},
{":scissors:" , u8"\U00002702"},
{":black_small_square:" , u8"\U000025AA"},
{":spades:" , u8"\U00002660"},
{":black_square_button:" , u8"\U0001F532"},
{":black_square_for_stop:" , u8"\U000023F9"},
{":sunny:" , u8"\U00002600"},
{":phone:" , u8"\U0000260E"},
{":telephone:" , u8"\U0000260E"},
{":recycle:" , u8"\U0000267B"},
{":arrow_double_up:" , u8"\U000023EB"},
{":blossom:" , u8"\U0001F33C"},
{":blowfish:" , u8"\U0001F421"},
{":blue_book:" , u8"\U0001F4D8"},
{":blue_heart:" , u8"\U0001F499"},
{":boar:" , u8"\U0001F417"},
{":bomb:" , u8"\U0001F4A3"},
{":bookmark:" , u8"\U0001F516"},
{":bookmark_tabs:" , u8"\U0001F4D1"},
{":books:" , u8"\U0001F4DA"},
{":bottle_with_popping_cork:" , u8"\U0001F37E"},
{":bouquet:" , u8"\U0001F490"},
{":bow_and_arrow:" , u8"\U0001F3F9"},
{":bowling:" , u8"\U0001F3B3"},
{":boy:" , u8"\U0001F466"},
{":bread:" , u8"\U0001F35E"},
{":bride_with_veil:" , u8"\U0001F470"},
{":bridge_at_night:" , u8"\U0001F309"},
{":briefcase:" , u8"\U0001F4BC"},
{":broken_heart:" , u8"\U0001F494"},
{":bug:" , u8"\U0001F41B"},
{":building_construction:" , u8"\U0001F3D7"},
{":burrito:" , u8"\U0001F32F"},
{":bus:" , u8"\U0001F68C"},
{":busstop:" , u8"\U0001F68F"},
{":bust_in_silhouette:" , u8"\U0001F464"},
{":busts_in_silhouette:" , u8"\U0001F465"},
{":cactus:" , u8"\U0001F335"},
{":date:" , u8"\U0001F4C5"},
{":camera:" , u8"\U0001F4F7"},
{":camera_with_flash:" , u8"\U0001F4F8"},
{":camping:" , u8"\U0001F3D5"},
{":cancer:" , u8"\U0000264B"},
{":candle:" , u8"\U0001F56F"},
{":candy:" , u8"\U0001F36C"},
{":capricorn:" , u8"\U00002651"},
{":card_file_box:" , u8"\U0001F5C3"},
{":card_index:" , u8"\U0001F4C7"},
{":card_index_dividers:" , u8"\U0001F5C2"},
{":carousel_horse:" , u8"\U0001F3A0"},
{":flags:" , u8"\U0001F38F"},
{":flag_for_sri_lanka:" , "\U0001F1F1\U0001F1F0"},
{":flag_for_india:", u8"\U0001F1EE\U0001F1F3"},
{":cat2:" , u8"\U0001F408"},
{":cat:" , u8"\U0001F431"},
{":joy_cat:" , u8"\U0001F639"},
{":smirk_cat:" , u8"\U0001F63C"},
{":chains:" , u8"\U000026D3"},
{":chart_with_downwards_trend:" , u8"\U0001F4C9"},
{":chart_with_upwards_trend:" , u8"\U0001F4C8"},
{":chart:" , u8"\U0001F4B9"},
{":mega:" , u8"\U0001F4E3"},
{":cheese_wedge:" , u8"\U0001F9C0"},
{":checkered_flag:" , u8"\U0001F3C1"},
{":cherries:" , u8"\U0001F352"},
{":cherry_blossom:" , u8"\U0001F338"},
{":chestnut:" , u8"\U0001F330"},
{":chicken:" , u8"\U0001F414"},
{":children_crossing:" , u8"\U0001F6B8"},
{":chipmunk:" , u8"\U0001F43F"},
{":chocolate_bar:" , u8"\U0001F36B"},
{":christmas_tree:" , u8"\U0001F384"},
{":church:" , u8"\U000026EA"},
{":cinema:" , u8"\U0001F3A6"},
{":accept:" , u8"\U0001F251"},
{":ideograph_advantage:" , u8"\U0001F250"},
{":congratulations:" , u8"\U00003297"},
{":secret:" , u8"\U00003299"},
{":m:" , u8"\U000024C2"},
{":circus_tent:" , u8"\U0001F3AA"},
{":cityscape:" , u8"\U0001F3D9"},
{":city_sunset:" , u8"\U0001F306"},
{":clapper:" , u8"\U0001F3AC"},
{":clap:" , u8"\U0001F44F"},
{":classical_building:" , u8"\U0001F3DB"},
{":beers:" , u8"\U0001F37B"},
{":clipboard:" , u8"\U0001F4CB"},
{":clock830:" , u8"\U0001F563"},
{":clock8:" , u8"\U0001F557"},
{":clock1130:" , u8"\U0001F566"},
{":clock11:" , u8"\U0001F55A"},
{":clock530:" , u8"\U0001F560"},
{":clock5:" , u8"\U0001F554"},
{":clock430:" , u8"\U0001F55F"},
{":clock4:" , u8"\U0001F553"},
{":clock930:" , u8"\U0001F564"},
{":clock9:" , u8"\U0001F558"},
{":clock130:" , u8"\U0001F55C"},
{":clock1:" , u8"\U0001F550"},
{":clock730:" , u8"\U0001F562"},
{":clock7:" , u8"\U0001F556"},
{":clock630:" , u8"\U0001F561"},
{":clock6:" , u8"\U0001F555"},
{":clock1030:" , u8"\U0001F565"},
{":clock10:" , u8"\U0001F559"},
{":clock330:" , u8"\U0001F55E"},
{":clock3:" , u8"\U0001F552"},
{":clock1230:" , u8"\U0001F567"},
{":clock12:" , u8"\U0001F55B"},
{":clock230:" , u8"\U0001F55D"},
{":clock2:" , u8"\U0001F551"},
{":arrows_clockwise:" , u8"\U0001F503"},
{":repeat:" , u8"\U0001F501"},
{":repeat_one:" , u8"\U0001F502"},
{":closed_book:" , u8"\U0001F4D5"},
{":closed_lock_with_key:" , u8"\U0001F510"},
{":mailbox_closed:" , u8"\U0001F4EA"},
{":mailbox:" , u8"\U0001F4EB"},
{":closed_umbrella:" , u8"\U0001F302"},
{":cloud:" , u8"\U00002601"},
{":cloud_with_lightning:" , u8"\U0001F329"},
{":cloud_with_rain:" , u8"\U0001F327"},
{":cloud_with_snow:" , u8"\U0001F328"},
{":cloud_with_tornado:" , u8"\U0001F32A"},
{":cocktail:" , u8"\U0001F378"},
{":coffin:" , u8"\U000026B0"},
{":boom:" , u8"\U0001F4A5"},
{":collision:" , u8"\U0001F4A5"},
{":comet:" , u8"\U00002604"},
{":compression:" , u8"\U0001F5DC"},
{":confetti_ball:" , u8"\U0001F38A"},
{":confounded:" , u8"\U0001F616"},
{":confused:" , u8"\U0001F615"},
{":construction:" , u8"\U0001F6A7"},
{":construction_worker:" , u8"\U0001F477"},
{":control_knobs:" , u8"\U0001F39B"},
{":convenience_store:" , u8"\U0001F3EA"},
{":rice:" , u8"\U0001F35A"},
{":cookie:" , u8"\U0001F36A"},
{":egg:" , u8"\U0001F373"},
{":copyright:" , u8"\U000000A9"},
{":couch_and_lamp:" , u8"\U0001F6CB"},
{":couple_with_heart:" , u8"\U0001F491"},
{":cow2:" , u8"\U0001F404"},
{":cow:" , u8"\U0001F42E"},
{":crab:" , u8"\U0001F980"},
{":credit_card:" , u8"\U0001F4B3"},
{":crescent_moon:" , u8"\U0001F319"},
{":cricket_bat_and_ball:" , u8"\U0001F3CF"},
{":crocodile:" , u8"\U0001F40A"},
{":x:" , u8"\U0000274C"},
{":crossed_flags:" , u8"\U0001F38C"},
{":crossed_swords:" , u8"\U00002694"},
{":crown:" , u8"\U0001F451"},
{":crying_cat_face:" , u8"\U0001F63F"},
{":cry:" , u8"\U0001F622"},
{":crystal_ball:" , u8"\U0001F52E"},
{":curly_loop:" , u8"\U000027B0"},
{":currency_exchange:" , u8"\U0001F4B1"},
{":curry:" , u8"\U0001F35B"},
{":custard:" , u8"\U0001F36E"},
{":customs:" , u8"\U0001F6C3"},
{":cyclone:" , u8"\U0001F300"},
{":dagger_knife:" , u8"\U0001F5E1"},
{":dancer:" , u8"\U0001F483"},
{":dango:" , u8"\U0001F361"},
{":dark_sunglasses:" , u8"\U0001F576"},
{":dash:" , u8"\U0001F4A8"},
{":deciduous_tree:" , u8"\U0001F333"},
{":truck:" , u8"\U0001F69A"},
{":department_store:" , u8"\U0001F3EC"},
{":derelict_house_building:" , u8"\U0001F3DA"},
{":desert:" , u8"\U0001F3DC"},
{":desert_island:" , u8"\U0001F3DD"},
{":desktop_computer:" , u8"\U0001F5A5"},
{":diamond_shape_with_a_dot_inside:" , u8"\U0001F4A0"},
{":dart:" , u8"\U0001F3AF"},
{":disappointed_relieved:" , u8"\U0001F625"},
{":disappointed:" , u8"\U0001F61E"},
{":dizzy_face:" , u8"\U0001F635"},
{":dizzy:" , u8"\U0001F4AB"},
{":do_not_litter:" , u8"\U0001F6AF"},
{":dog2:" , u8"\U0001F415"},
{":dog:" , u8"\U0001F436"},
{":dolphin:" , u8"\U0001F42C"},
{":flipper:" , u8"\U0001F42C"},
{":door:" , u8"\U0001F6AA"},
{":loop:" , u8"\U000027BF"},
{":bangbang:" , u8"\U0000203C"},
{":double_vertical_bar:" , u8"\U000023F8"},
{":doughnut:" , u8"\U0001F369"},
{":dove_of_peace:" , u8"\U0001F54A"},
{":small_red_triangle_down:" , u8"\U0001F53B"},
{":arrow_down_small:" , u8"\U0001F53D"},
{":arrow_down:" , u8"\U00002B07"},
{":dragon:" , u8"\U0001F409"},
{":dragon_face:" , u8"\U0001F432"},
{":dress:" , u8"\U0001F457"},
{":dromedary_camel:" , u8"\U0001F42A"},
{":droplet:" , u8"\U0001F4A7"},
{":dvd:" , u8"\U0001F4C0"},
{":e__mail:" , u8"\U0001F4E7"},
{":ear:" , u8"\U0001F442"},
{":corn:" , u8"\U0001F33D"},
{":ear_of_rice:" , u8"\U0001F33E"},
{":earth_americas:" , u8"\U0001F30E"},
{":earth_asia:" , u8"\U0001F30F"},
{":earth_africa:" , u8"\U0001F30D"},
{":eight_pointed_black_star:" , u8"\U00002734"},
{":eight_spoked_asterisk:" , u8"\U00002733"},
{":eject_symbol:" , u8"\U000023CF"},
{":bulb:" , u8"\U0001F4A1"},
{":electric_plug:" , u8"\U0001F50C"},
{":flashlight:" , u8"\U0001F526"},
{":elephant:" , u8"\U0001F418"},
{":emoji_modifier_fitzpatrick_type__1__2:" , u8"\U0001F3FB"},
{":emoji_modifier_fitzpatrick_type__3:" , u8"\U0001F3FC"},
{":emoji_modifier_fitzpatrick_type__4:" , u8"\U0001F3FD"},
{":emoji_modifier_fitzpatrick_type__5:" , u8"\U0001F3FE"},
{":emoji_modifier_fitzpatrick_type__6:" , u8"\U0001F3FF"},
{":end:" , u8"\U0001F51A"},
{":email:" , u8"\U00002709"},
{":envelope:" , u8"\U00002709"},
{":envelope_with_arrow:" , u8"\U0001F4E9"},
{":european_castle:" , u8"\U0001F3F0"},
{":european_post_office:" , u8"\U0001F3E4"},
{":evergreen_tree:" , u8"\U0001F332"},
{":interrobang:" , u8"\U00002049"},
{":expressionless:" , u8"\U0001F611"},
{":alien:" , u8"\U0001F47D"},
{":eye:" , u8"\U0001F441"},
{":eyeglasses:" , u8"\U0001F453"},
{":eyes:" , u8"\U0001F440"},
{":massage:" , u8"\U0001F486"},
{":yum:" , u8"\U0001F60B"},
{":scream:" , u8"\U0001F631"},
{":kissing_heart:" , u8"\U0001F618"},
{":sweat:" , u8"\U0001F613"},
{":face_with_head__bandage:" , u8"\U0001F915"},
{":triumph:" , u8"\U0001F624"},
{":mask:" , u8"\U0001F637"},
{":no_good:" , u8"\U0001F645"},
{":ok_woman:" , u8"\U0001F646"},
{":open_mouth:" , u8"\U0001F62E"},
{":cold_sweat:" , u8"\U0001F630"},
{":face_with_rolling_eyes:" , u8"\U0001F644"},
{":stuck_out_tongue:" , u8"\U0001F61B"},
{":stuck_out_tongue_closed_eyes:" , u8"\U0001F61D"},
{":stuck_out_tongue_winking_eye:" , u8"\U0001F61C"},
{":joy:" , u8"\U0001F602"},
{":face_with_thermometer:" , u8"\U0001F912"},
{":no_mouth:" , u8"\U0001F636"},
{":factory:" , u8"\U0001F3ED"},
{":fallen_leaf:" , u8"\U0001F342"},
{":family:" , u8"\U0001F46A"},
{":santa:" , u8"\U0001F385"},
{":fax:" , u8"\U0001F4E0"},
{":fearful:" , u8"\U0001F628"},
{":ferris_wheel:" , u8"\U0001F3A1"},
{":ferry:" , u8"\U000026F4"},
{":field_hockey_stick_and_ball:" , u8"\U0001F3D1"},
{":file_cabinet:" , u8"\U0001F5C4"},
{":file_folder:" , u8"\U0001F4C1"},
{":film_frames:" , u8"\U0001F39E"},
{":film_projector:" , u8"\U0001F4FD"},
{":fire:" , u8"\U0001F525"},
{":fire_engine:" , u8"\U0001F692"},
{":sparkler:" , u8"\U0001F387"},
{":fireworks:" , u8"\U0001F386"},
{":first_quarter_moon:" , u8"\U0001F313"},
{":first_quarter_moon_with_face:" , u8"\U0001F31B"},
{":fish:" , u8"\U0001F41F"},
{":fish_cake:" , u8"\U0001F365"},
{":fishing_pole_and_fish:" , u8"\U0001F3A3"},
{":facepunch:" , u8"\U0001F44A"},
{":punch:" , u8"\U0001F44A"},
{":golf:" , u8"\U000026F3"},
{":fleur__de__lis:" , u8"\U0000269C"},
{":muscle:" , u8"\U0001F4AA"},
{":floppy_disk:" , u8"\U0001F4BE"},
{":flower_playing_cards:" , u8"\U0001F3B4"},
{":flushed:" , u8"\U0001F633"},
{":fog:" , u8"\U0001F32B"},
{":foggy:" , u8"\U0001F301"},
{":footprints:" , u8"\U0001F463"},
{":fork_and_knife:" , u8"\U0001F374"},
{":fork_and_knife_with_plate:" , u8"\U0001F37D"},
{":fountain:" , u8"\U000026F2"},
{":four_leaf_clover:" , u8"\U0001F340"},
{":frame_with_picture:" , u8"\U0001F5BC"},
{":fries:" , u8"\U0001F35F"},
{":fried_shrimp:" , u8"\U0001F364"},
{":frog:" , u8"\U0001F438"},
{":hatched_chick:" , u8"\U0001F425"},
{":frowning:" , u8"\U0001F626"},
{":fuelpump:" , u8"\U000026FD"},
{":full_moon:" , u8"\U0001F315"},
{":full_moon_with_face:" , u8"\U0001F31D"},
{":funeral_urn:" , u8"\U000026B1"},
{":game_die:" , u8"\U0001F3B2"},
{":gear:" , u8"\U00002699"},
{":gem:" , u8"\U0001F48E"},
{":gemini:" , u8"\U0000264A"},
{":ghost:" , u8"\U0001F47B"},
{":girl:" , u8"\U0001F467"},
{":globe_with_meridians:" , u8"\U0001F310"},
{":star2:" , u8"\U0001F31F"},
{":goat:" , u8"\U0001F410"},
{":golfer:" , u8"\U0001F3CC"},
{":mortar_board:" , u8"\U0001F393"},
{":grapes:" , u8"\U0001F347"},
{":green_apple:" , u8"\U0001F34F"},
{":green_book:" , u8"\U0001F4D7"},
{":green_heart:" , u8"\U0001F49A"},
{":grimacing:" , u8"\U0001F62C"},
{":smile_cat:" , u8"\U0001F638"},
{":grinning:" , u8"\U0001F600"},
{":grin:" , u8"\U0001F601"},
{":heartpulse:" , u8"\U0001F497"},
{":guardsman:" , u8"\U0001F482"},
{":guitar:" , u8"\U0001F3B8"},
{":haircut:" , u8"\U0001F487"},
{":hamburger:" , u8"\U0001F354"},
{":hammer:" , u8"\U0001F528"},
{":hammer_and_pick:" , u8"\U00002692"},
{":hammer_and_wrench:" , u8"\U0001F6E0"},
{":hamster:" , u8"\U0001F439"},
{":handbag:" , u8"\U0001F45C"},
{":raising_hand:" , u8"\U0001F64B"},
{":hatching_chick:" , u8"\U0001F423"},
{":headphones:" , u8"\U0001F3A7"},
{":hear_no_evil:" , u8"\U0001F649"},
{":heart_decoration:" , u8"\U0001F49F"},
{":cupid:" , u8"\U0001F498"},
{":gift_heart:" , u8"\U0001F49D"},
{":heart:" , u8"\U00002764"},
{":heavy_check_mark:" , u8"\U00002714"},
{":heavy_division_sign:" , u8"\U00002797"},
{":heavy_dollar_sign:" , u8"\U0001F4B2"},
{":exclamation:" , u8"\U00002757"},
{":heavy_exclamation_mark:" , u8"\U00002757"},
{":heavy_heart_exclamation_mark_ornament:" , u8"\U00002763"},
{":o:" , u8"\U00002B55"},
{":heavy_minus_sign:" , u8"\U00002796"},
{":heavy_multiplication_x:" , u8"\U00002716"},
{":heavy_plus_sign:" , u8"\U00002795"},
{":helicopter:" , u8"\U0001F681"},
{":helm_symbol:" , u8"\U00002388"},
{":helmet_with_white_cross:" , u8"\U000026D1"},
{":herb:" , u8"\U0001F33F"},
{":hibiscus:" , u8"\U0001F33A"},
{":high_heel:" , u8"\U0001F460"},
{":bullettrain_side:" , u8"\U0001F684"},
{":bullettrain_front:" , u8"\U0001F685"},
{":high_brightness:" , u8"\U0001F506"},
{":zap:" , u8"\U000026A1"},
{":hocho:" , u8"\U0001F52A"},
{":knife:" , u8"\U0001F52A"},
{":hole:" , u8"\U0001F573"},
{":honey_pot:" , u8"\U0001F36F"},
{":bee:" , u8"\U0001F41D"},
{":traffic_light:" , u8"\U0001F6A5"},
{":racehorse:" , u8"\U0001F40E"},
{":horse:" , u8"\U0001F434"},
{":horse_racing:" , u8"\U0001F3C7"},
{":hospital:" , u8"\U0001F3E5"},
{":coffee:" , u8"\U00002615"},
{":hot_dog:" , u8"\U0001F32D"},
{":hot_pepper:" , u8"\U0001F336"},
{":hotsprings:" , u8"\U00002668"},
{":hotel:" , u8"\U0001F3E8"},
{":hourglass:" , u8"\U0000231B"},
{":hourglass_flowing_sand:" , u8"\U000023F3"},
{":house:" , u8"\U0001F3E0"},
{":house_buildings:" , u8"\U0001F3D8"},
{":house_with_garden:" , u8"\U0001F3E1"},
{":hugging_face:" , u8"\U0001F917"},
{":100:" , u8"\U0001F4AF"},
{":hushed:" , u8"\U0001F62F"},
{":ice_cream:" , u8"\U0001F368"},
{":ice_hockey_stick_and_puck:" , u8"\U0001F3D2"},
{":ice_skate:" , u8"\U000026F8"},
{":imp:" , u8"\U0001F47F"},
{":inbox_tray:" , u8"\U0001F4E5"},
{":incoming_envelope:" , u8"\U0001F4E8"},
{":information_desk_person:" , u8"\U0001F481"},
{":information_source:" , u8"\U00002139"},
{":capital_abcd:" , u8"\U0001F520"},
{":abc:" , u8"\U0001F524"},
{":abcd:" , u8"\U0001F521"},
{":1234:" , u8"\U0001F522"},
{":symbols:" , u8"\U0001F523"},
{":izakaya_lantern:" , u8"\U0001F3EE"},
{":lantern:" , u8"\U0001F3EE"},
{":jack_o_lantern:" , u8"\U0001F383"},
{":japanese_castle:" , u8"\U0001F3EF"},
{":dolls:" , u8"\U0001F38E"},
{":japanese_goblin:" , u8"\U0001F47A"},
{":japanese_ogre:" , u8"\U0001F479"},
{":post_office:" , u8"\U0001F3E3"},
{":beginner:" , u8"\U0001F530"},
{":jeans:" , u8"\U0001F456"},
{":joystick:" , u8"\U0001F579"},
{":kaaba:" , u8"\U0001F54B"},
{":key:" , u8"\U0001F511"},
{":keyboard:" , u8"\U00002328"},
{":keycap_asterisk:" , u8"\U0000002A\U000020E3"},
{":keycap_digit_eight:" , u8"\U00000038\U000020E3"},
{":keycap_digit_five:" , u8"\U00000035\U000020E3"},
{":keycap_digit_four:" , u8"\U00000034\U000020E3"},
{":keycap_digit_nine:" , u8"\U00000039\U000020E3"},
{":keycap_digit_one:" , u8"\U00000031\U000020E3"},
{":keycap_digit_seven:" , u8"\U00000037\U000020E3"},
{":keycap_digit_six:" , u8"\U00000036\U000020E3"},
{":keycap_digit_three:" , u8"\U00000033\U000020E3"},
{":keycap_digit_two:" , u8"\U00000032\U000020E3"},
{":keycap_digit_zero:" , u8"\U00000030\U000020E3"},
{":keycap_number_sign:" , u8"\U00000023\U000020E3"},
{":keycap_ten:" , u8"\U0001F51F"},
{":kimono:" , u8"\U0001F458"},
{":couplekiss:" , u8"\U0001F48F"},
{":kiss:" , u8"\U0001F48B"},
{":kissing_cat:" , u8"\U0001F63D"},
{":kissing:" , u8"\U0001F617"},
{":kissing_closed_eyes:" , u8"\U0001F61A"},
{":kissing_smiling_eyes:" , u8"\U0001F619"},
{":koala:" , u8"\U0001F428"},
{":label:" , u8"\U0001F3F7"},
{":beetle:" , u8"\U0001F41E"},
{":large_blue_circle:" , u8"\U0001F535"},
{":large_blue_diamond:" , u8"\U0001F537"},
{":large_orange_diamond:" , u8"\U0001F536"},
{":red_circle:" , u8"\U0001F534"},
{":last_quarter_moon:" , u8"\U0001F317"},
{":last_quarter_moon_with_face:" , u8"\U0001F31C"},
{":latin_cross:" , u8"\U0000271D"},
{":leaves:" , u8"\U0001F343"},
{":ledger:" , u8"\U0001F4D2"},
{":mag:" , u8"\U0001F50D"},
{":left_luggage:" , u8"\U0001F6C5"},
{":left_right_arrow:" , u8"\U00002194"},
{":leftwards_arrow_with_hook:" , u8"\U000021A9"},
{":arrow_left:" , u8"\U00002B05"},
{":lemon:" , u8"\U0001F34B"},
{":leo:" , u8"\U0000264C"},
{":leopard:" , u8"\U0001F406"},
{":level_slider:" , u8"\U0001F39A"},
{":libra:" , u8"\U0000264E"},
{":light_rail:" , u8"\U0001F688"},
{":link:" , u8"\U0001F517"},
{":linked_paperclips:" , u8"\U0001F587"},
{":lion_face:" , u8"\U0001F981"},
{":lipstick:" , u8"\U0001F484"},
{":lock:" , u8"\U0001F512"},
{":lock_with_ink_pen:" , u8"\U0001F50F"},
{":lollipop:" , u8"\U0001F36D"},
{":sob:" , u8"\U0001F62D"},
{":love_hotel:" , u8"\U0001F3E9"},
{":love_letter:" , u8"\U0001F48C"},
{":low_brightness:" , u8"\U0001F505"},
{":lower_left_ballpoint_pen:" , u8"\U0001F58A"},
{":lower_left_crayon:" , u8"\U0001F58D"},
{":lower_left_fountain_pen:" , u8"\U0001F58B"},
{":lower_left_paintbrush:" , u8"\U0001F58C"},
{":mahjong:" , u8"\U0001F004"},
{":man:" , u8"\U0001F468"},
{":couple:" , u8"\U0001F46B"},
{":man_in_business_suit_levitating:" , u8"\U0001F574"},
{":man_with_gua_pi_mao:" , u8"\U0001F472"},
{":man_with_turban:" , u8"\U0001F473"},
{":mans_shoe:" , u8"\U0001F45E"},
{":shoe:" , u8"\U0001F45E"},
{":mantelpiece_clock:" , u8"\U0001F570"},
{":maple_leaf:" , u8"\U0001F341"},
{":meat_on_bone:" , u8"\U0001F356"},
{":black_circle:" , u8"\U000026AB"},
{":white_circle:" , u8"\U000026AA"},
{":melon:" , u8"\U0001F348"},
{":memo:" , u8"\U0001F4DD"},
{":pencil:" , u8"\U0001F4DD"},
{":menorah_with_nine_branches:" , u8"\U0001F54E"},
{":mens:" , u8"\U0001F6B9"},
{":metro:" , u8"\U0001F687"},
{":microphone:" , u8"\U0001F3A4"},
{":microscope:" , u8"\U0001F52C"},
{":military_medal:" , u8"\U0001F396"},
{":milky_way:" , u8"\U0001F30C"},
{":minibus:" , u8"\U0001F690"},
{":minidisc:" , u8"\U0001F4BD"},
{":iphone:" , u8"\U0001F4F1"},
{":mobile_phone_off:" , u8"\U0001F4F4"},
{":calling:" , u8"\U0001F4F2"},
{":money__mouth_face:" , u8"\U0001F911"},
{":moneybag:" , u8"\U0001F4B0"},
{":money_with_wings:" , u8"\U0001F4B8"},
{":monkey:" , u8"\U0001F412"},
{":monkey_face:" , u8"\U0001F435"},
{":monorail:" , u8"\U0001F69D"},
{":rice_scene:" , u8"\U0001F391"},
{":mosque:" , u8"\U0001F54C"},
{":motor_boat:" , u8"\U0001F6E5"},
{":motorway:" , u8"\U0001F6E3"},
{":mount_fuji:" , u8"\U0001F5FB"},
{":mountain:" , u8"\U000026F0"},
{":mountain_bicyclist:" , u8"\U0001F6B5"},
{":mountain_cableway:" , u8"\U0001F6A0"},
{":mountain_railway:" , u8"\U0001F69E"},
{":mouse2:" , u8"\U0001F401"},
{":mouse:" , u8"\U0001F42D"},
{":lips:" , u8"\U0001F444"},
{":movie_camera:" , u8"\U0001F3A5"},
{":moyai:" , u8"\U0001F5FF"},
{":notes:" , u8"\U0001F3B6"},
{":mushroom:" , u8"\U0001F344"},
{":musical_keyboard:" , u8"\U0001F3B9"},
{":musical_note:" , u8"\U0001F3B5"},
{":musical_score:" , u8"\U0001F3BC"},
{":nail_care:" , u8"\U0001F485"},
{":name_badge:" , u8"\U0001F4DB"},
{":national_park:" , u8"\U0001F3DE"},
{":necktie:" , u8"\U0001F454"},
{":ab:" , u8"\U0001F18E"},
{":negative_squared_cross_mark:" , u8"\U0000274E"},
{":a:" , u8"\U0001F170"},
{":b:" , u8"\U0001F171"},
{":o2:" , u8"\U0001F17E"},
{":parking:" , u8"\U0001F17F"},
{":nerd_face:" , u8"\U0001F913"},
{":neutral_face:" , u8"\U0001F610"},
{":new_moon:" , u8"\U0001F311"},
{":honeybee:" , u8"\U0001F41D"},
{":new_moon_with_face:" , u8"\U0001F31A"},
{":newspaper:" , u8"\U0001F4F0"},
{":night_with_stars:" , u8"\U0001F303"},
{":no_bicycles:" , u8"\U0001F6B3"},
{":no_entry:" , u8"\U000026D4"},
{":no_entry_sign:" , u8"\U0001F6AB"},
{":no_mobile_phones:" , u8"\U0001F4F5"},
{":underage:" , u8"\U0001F51E"},
{":no_pedestrians:" , u8"\U0001F6B7"},
{":no_smoking:" , u8"\U0001F6AD"},
{":non__potable_water:" , u8"\U0001F6B1"},
{":arrow_upper_right:" , u8"\U00002197"},
{":arrow_upper_left:" , u8"\U00002196"},
{":nose:" , u8"\U0001F443"},
{":notebook:" , u8"\U0001F4D3"},
{":notebook_with_decorative_cover:" , u8"\U0001F4D4"},
{":nut_and_bolt:" , u8"\U0001F529"},
{":octopus:" , u8"\U0001F419"},
{":oden:" , u8"\U0001F362"},
{":office:" , u8"\U0001F3E2"},
{":oil_drum:" , u8"\U0001F6E2"},
{":ok_hand:" , u8"\U0001F44C"},
{":old_key:" , u8"\U0001F5DD"},
{":older_man:" , u8"\U0001F474"},
{":older_woman:" , u8"\U0001F475"},
{":om_symbol:" , u8"\U0001F549"},
{":on:" , u8"\U0001F51B"},
{":oncoming_automobile:" , u8"\U0001F698"},
{":oncoming_bus:" , u8"\U0001F68D"},
{":oncoming_police_car:" , u8"\U0001F694"},
{":oncoming_taxi:" , u8"\U0001F696"},
{":book:" , u8"\U0001F4D6"},
{":open_book:" , u8"\U0001F4D6"},
{":open_file_folder:" , u8"\U0001F4C2"},
{":open_hands:" , u8"\U0001F450"},
{":unlock:" , u8"\U0001F513"},
{":mailbox_with_no_mail:" , u8"\U0001F4ED"},
{":mailbox_with_mail:" , u8"\U0001F4EC"},
{":ophiuchus:" , u8"\U000026CE"},
{":cd:" , u8"\U0001F4BF"},
{":orange_book:" , u8"\U0001F4D9"},
{":orthodox_cross:" , u8"\U00002626"},
{":outbox_tray:" , u8"\U0001F4E4"},
{":ox:" , u8"\U0001F402"},
{":package:" , u8"\U0001F4E6"},
{":page_facing_up:" , u8"\U0001F4C4"},
{":page_with_curl:" , u8"\U0001F4C3"},
{":pager:" , u8"\U0001F4DF"},
{":palm_tree:" , u8"\U0001F334"},
{":panda_face:" , u8"\U0001F43C"},
{":paperclip:" , u8"\U0001F4CE"},
{":part_alternation_mark:" , u8"\U0000303D"},
{":tada:" , u8"\U0001F389"},
{":passenger_ship:" , u8"\U0001F6F3"},
{":passport_control:" , u8"\U0001F6C2"},
{":feet:" , u8"\U0001F43E"},
{":paw_prints:" , u8"\U0001F43E"},
{":peace_symbol:" , u8"\U0000262E"},
{":peach:" , u8"\U0001F351"},
{":pear:" , u8"\U0001F350"},
{":walking:" , u8"\U0001F6B6"},
{":pencil2:" , u8"\U0000270F"},
{":penguin:" , u8"\U0001F427"},
{":pensive:" , u8"\U0001F614"},
{":performing_arts:" , u8"\U0001F3AD"},
{":persevere:" , u8"\U0001F623"},
{":bow:" , u8"\U0001F647"},
{":person_frowning:" , u8"\U0001F64D"},
{":raised_hands:" , u8"\U0001F64C"},
{":person_with_ball:" , u8"\U000026F9"},
{":person_with_blond_hair:" , u8"\U0001F471"},
{":pray:" , u8"\U0001F64F"},
{":computer:" , u8"\U0001F4BB"},
{":pick:" , u8"\U000026CF"},
{":pig2:" , u8"\U0001F416"},
{":pig:" , u8"\U0001F437"},
{":pig_nose:" , u8"\U0001F43D"},
{":hankey:" , u8"\U0001F4A9"},
{":poop:" , u8"\U0001F4A9"},
{":shit:" , u8"\U0001F4A9"},
{":pill:" , u8"\U0001F48A"},
{":bamboo:" , u8"\U0001F38D"},
{":pineapple:" , u8"\U0001F34D"},
{":pisces:" , u8"\U00002653"},
{":gun:" , u8"\U0001F52B"},
{":place_of_worship:" , u8"\U0001F6D0"},
{":black_joker:" , u8"\U0001F0CF"},
{":police_car:" , u8"\U0001F693"},
{":rotating_light:" , u8"\U0001F6A8"},
{":cop:" , u8"\U0001F46E"},
{":poodle:" , u8"\U0001F429"},
{":popcorn:" , u8"\U0001F37F"},
{":postal_horn:" , u8"\U0001F4EF"},
{":postbox:" , u8"\U0001F4EE"},
{":stew:" , u8"\U0001F372"},
{":potable_water:" , u8"\U0001F6B0"},
{":pouch:" , u8"\U0001F45D"},
{":poultry_leg:" , u8"\U0001F357"},
{":pouting_cat:" , u8"\U0001F63E"},
{":rage:" , u8"\U0001F621"},
{":prayer_beads:" , u8"\U0001F4FF"},
{":princess:" , u8"\U0001F478"},
{":printer:" , u8"\U0001F5A8"},
{":loudspeaker:" , u8"\U0001F4E2"},
{":purple_heart:" , u8"\U0001F49C"},
{":purse:" , u8"\U0001F45B"},
{":pushpin:" , u8"\U0001F4CC"},
{":put_litter_in_its_place:" , u8"\U0001F6AE"},
{":rabbit2:" , u8"\U0001F407"},
{":rabbit:" , u8"\U0001F430"},
{":racing_car:" , u8"\U0001F3CE"},
{":racing_motorcycle:" , u8"\U0001F3CD"},
{":radio:" , u8"\U0001F4FB"},
{":radio_button:" , u8"\U0001F518"},
{":radioactive_sign:" , u8"\U00002622"},
{":railway_car:" , u8"\U0001F683"},
{":railway_track:" , u8"\U0001F6E4"},
{":rainbow:" , u8"\U0001F308"},
{":fist:" , u8"\U0000270A"},
{":hand:" , u8"\U0000270B"},
{":raised_hand:" , u8"\U0000270B"},
{":raised_hand_with_fingers_splayed:" , u8"\U0001F590"},
{":raised_hand_with_part_between_middle_and_ring_fingers:" , u8"\U0001F596"},
{":ram:" , u8"\U0001F40F"},
{":rat:" , u8"\U0001F400"},
{":blue_car:" , u8"\U0001F699"},
{":apple:" , u8"\U0001F34E"},
{":registered:" , u8"\U000000AE"},
{":relieved:" , u8"\U0001F60C"},
{":reminder_ribbon:" , u8"\U0001F397"},
{":restroom:" , u8"\U0001F6BB"},
{":reversed_hand_with_middle_finger_extended:" , u8"\U0001F595"},
{":revolving_hearts:" , u8"\U0001F49E"},
{":ribbon:" , u8"\U0001F380"},
{":rice_ball:" , u8"\U0001F359"},
{":rice_cracker:" , u8"\U0001F358"},
{":mag_right:" , u8"\U0001F50E"},
{":right_anger_bubble:" , u8"\U0001F5EF"},
{":arrow_right_hook:" , u8"\U000021AA"},
{":ring:" , u8"\U0001F48D"},
{":sweet_potato:" , u8"\U0001F360"},
{":robot_face:" , u8"\U0001F916"},
{":rocket:" , u8"\U0001F680"},
{":rolled__up_newspaper:" , u8"\U0001F5DE"},
{":roller_coaster:" , u8"\U0001F3A2"},
{":rooster:" , u8"\U0001F413"},
{":rose:" , u8"\U0001F339"},
{":rosette:" , u8"\U0001F3F5"},
{":round_pushpin:" , u8"\U0001F4CD"},
{":rowboat:" , u8"\U0001F6A3"},
{":rugby_football:" , u8"\U0001F3C9"},
{":runner:" , u8"\U0001F3C3"},
{":running:" , u8"\U0001F3C3"},
{":running_shirt_with_sash:" , u8"\U0001F3BD"},
{":sagittarius:" , u8"\U00002650"},
{":boat:" , u8"\U000026F5"},
{":sailboat:" , u8"\U000026F5"},
{":sake:" , u8"\U0001F376"},
{":satellite:" , u8"\U0001F4E1"},
{":saxophone:" , u8"\U0001F3B7"},
{":scales:" , u8"\U00002696"},
{":school:" , u8"\U0001F3EB"},
{":school_satchel:" , u8"\U0001F392"},
{":scorpion:" , u8"\U0001F982"},
{":scorpius:" , u8"\U0000264F"},
{":scroll:" , u8"\U0001F4DC"},
{":seat:" , u8"\U0001F4BA"},
{":see_no_evil:" , u8"\U0001F648"},
{":seedling:" , u8"\U0001F331"},
{":shamrock:" , u8"\U00002618"},
{":shaved_ice:" , u8"\U0001F367"},
{":sheep:" , u8"\U0001F411"},
{":shield:" , u8"\U0001F6E1"},
{":shinto_shrine:" , u8"\U000026E9"},
{":ship:" , u8"\U0001F6A2"},
{":stars:" , u8"\U0001F320"},
{":shopping_bags:" , u8"\U0001F6CD"},
{":cake:" , u8"\U0001F370"},
{":shower:" , u8"\U0001F6BF"},
{":sign_of_the_horns:" , u8"\U0001F918"},
{":japan:" , u8"\U0001F5FE"},
{":six_pointed_star:" , u8"\U0001F52F"},
{":ski:" , u8"\U0001F3BF"},
{":skier:" , u8"\U000026F7"},
{":skull:" , u8"\U0001F480"},
{":skull_and_crossbones:" , u8"\U00002620"},
{":sleeping_accommodation:" , u8"\U0001F6CC"},
{":sleeping:" , u8"\U0001F634"},
{":zzz:" , u8"\U0001F4A4"},
{":sleepy:" , u8"\U0001F62A"},
{":sleuth_or_spy:" , u8"\U0001F575"},
{":pizza:" , u8"\U0001F355"},
{":slightly_frowning_face:" , u8"\U0001F641"},
{":slightly_smiling_face:" , u8"\U0001F642"},
{":slot_machine:" , u8"\U0001F3B0"},
{":small_airplane:" , u8"\U0001F6E9"},
{":small_blue_diamond:" , u8"\U0001F539"},
{":small_orange_diamond:" , u8"\U0001F538"},
{":heart_eyes_cat:" , u8"\U0001F63B"},
{":smiley_cat:" , u8"\U0001F63A"},
{":innocent:" , u8"\U0001F607"},
{":heart_eyes:" , u8"\U0001F60D"},
{":smiling_imp:" , u8"\U0001F608"},
{":smiley:" , u8"\U0001F603"},
{":sweat_smile:" , u8"\U0001F605"},
{":smile:" , u8"\U0001F604"},
{":laughing:" , u8"\U0001F606"},
{":satisfied:" , u8"\U0001F606"},
{":blush:" , u8"\U0001F60A"},
{":sunglasses:" , u8"\U0001F60E"},
{":smirk:" , u8"\U0001F60F"},
{":smoking:" , u8"\U0001F6AC"},
{":snail:" , u8"\U0001F40C"},
{":snake:" , u8"\U0001F40D"},
{":snow_capped_mountain:" , u8"\U0001F3D4"},
{":snowboarder:" , u8"\U0001F3C2"},
{":snowflake:" , u8"\U00002744"},
{":snowman:" , u8"\U00002603"},
{":soccer:" , u8"\U000026BD"},
{":icecream:" , u8"\U0001F366"},
{":soon:" , u8"\U0001F51C"},
{":arrow_lower_right:" , u8"\U00002198"},
{":arrow_lower_left:" , u8"\U00002199"},
{":spaghetti:" , u8"\U0001F35D"},
{":sparkle:" , u8"\U00002747"},
{":sparkles:" , u8"\U00002728"},
{":sparkling_heart:" , u8"\U0001F496"},
{":speak_no_evil:" , u8"\U0001F64A"},
{":speaker:" , u8"\U0001F508"},
{":mute:" , u8"\U0001F507"},
{":sound:" , u8"\U0001F509"},
{":loud_sound:" , u8"\U0001F50A"},
{":speaking_head_in_silhouette:" , u8"\U0001F5E3"},
{":speech_balloon:" , u8"\U0001F4AC"},
{":speedboat:" , u8"\U0001F6A4"},
{":spider:" , u8"\U0001F577"},
{":spider_web:" , u8"\U0001F578"},
{":spiral_calendar_pad:" , u8"\U0001F5D3"},
{":spiral_note_pad:" , u8"\U0001F5D2"},
{":shell:" , u8"\U0001F41A"},
{":sweat_drops:" , u8"\U0001F4A6"},
{":sports_medal:" , u8"\U0001F3C5"},
{":whale:" , u8"\U0001F433"},
{":u5272:" , u8"\U0001F239"},
{":u5408:" , u8"\U0001F234"},
{":u55b6:" , u8"\U0001F23A"},
{":u6307:" , u8"\U0001F22F"},
{":u6708:" , u8"\U0001F237"},
{":u6709:" , u8"\U0001F236"},
{":u6e80:" , u8"\U0001F235"},
{":u7121:" , u8"\U0001F21A"},
{":u7533:" , u8"\U0001F238"},
{":u7981:" , u8"\U0001F232"},
{":u7a7a:" , u8"\U0001F233"},
{":cl:" , u8"\U0001F191"},
{":cool:" , u8"\U0001F192"},
{":free:" , u8"\U0001F193"},
{":id:" , u8"\U0001F194"},
{":koko:" , u8"\U0001F201"},
{":sa:" , u8"\U0001F202"},
{":new:" , u8"\U0001F195"},
{":ng:" , u8"\U0001F196"},
{":ok:" , u8"\U0001F197"},
{":sos:" , u8"\U0001F198"},
{":up:" , u8"\U0001F199"},
{":vs:" , u8"\U0001F19A"},
{":stadium:" , u8"\U0001F3DF"},
{":star_and_crescent:" , u8"\U0000262A"},
{":star_of_david:" , u8"\U00002721"},
{":station:" , u8"\U0001F689"},
{":statue_of_liberty:" , u8"\U0001F5FD"},
{":steam_locomotive:" , u8"\U0001F682"},
{":ramen:" , u8"\U0001F35C"},
{":stopwatch:" , u8"\U000023F1"},
{":straight_ruler:" , u8"\U0001F4CF"},
{":strawberry:" , u8"\U0001F353"},
{":studio_microphone:" , u8"\U0001F399"},
{":partly_sunny:" , u8"\U000026C5"},
{":sun_with_face:" , u8"\U0001F31E"},
{":sunflower:" , u8"\U0001F33B"},
{":sunrise:" , u8"\U0001F305"},
{":sunrise_over_mountains:" , u8"\U0001F304"},
{":city_sunrise:" , u8"\U0001F307"},
{":surfer:" , u8"\U0001F3C4"},
{":sushi:" , u8"\U0001F363"},
{":suspension_railway:" , u8"\U0001F69F"},
{":swimmer:" , u8"\U0001F3CA"},
{":synagogue:" , u8"\U0001F54D"},
{":syringe:" , u8"\U0001F489"},
{":shirt:" , u8"\U0001F455"},
{":tshirt:" , u8"\U0001F455"},
{":table_tennis_paddle_and_ball:" , u8"\U0001F3D3"},
{":taco:" , u8"\U0001F32E"},
{":tanabata_tree:" , u8"\U0001F38B"},
{":tangerine:" , u8"\U0001F34A"},
{":taurus:" , u8"\U00002649"},
{":taxi:" , u8"\U0001F695"},
{":tea:" , u8"\U0001F375"},
{":calendar:" , u8"\U0001F4C6"},
{":telephone_receiver:" , u8"\U0001F4DE"},
{":telescope:" , u8"\U0001F52D"},
{":tv:" , u8"\U0001F4FA"},
{":tennis:" , u8"\U0001F3BE"},
{":tent:" , u8"\U000026FA"},
{":thermometer:" , u8"\U0001F321"},
{":thinking_face:" , u8"\U0001F914"},
{":thought_balloon:" , u8"\U0001F4AD"},
{":three_button_mouse:" , u8"\U0001F5B1"},
{":+1:" , u8"\U0001F44D"},
{":thumbsup:" , u8"\U0001F44D"},
{":__1:" , u8"\U0001F44E"},
{":-1:" , u8"\U0001F44E"},
{":thumbsdown:" , u8"\U0001F44E"},
{":thunder_cloud_and_rain:" , u8"\U000026C8"},
{":ticket:" , u8"\U0001F3AB"},
{":tiger2:" , u8"\U0001F405"},
{":tiger:" , u8"\U0001F42F"},
{":timer_clock:" , u8"\U000023F2"},
{":tired_face:" , u8"\U0001F62B"},
{":toilet:" , u8"\U0001F6BD"},
{":tokyo_tower:" , u8"\U0001F5FC"},
{":tomato:" , u8"\U0001F345"},
{":tongue:" , u8"\U0001F445"},
{":tophat:" , u8"\U0001F3A9"},
{":top:" , u8"\U0001F51D"},
{":trackball:" , u8"\U0001F5B2"},
{":tractor:" , u8"\U0001F69C"},
{":tm:" , u8"\U00002122"},
{":train2:" , u8"\U0001F686"},
{":tram:" , u8"\U0001F68A"},
{":train:" , u8"\U0001F68B"},
{":triangular_flag_on_post:" , u8"\U0001F6A9"},
{":triangular_ruler:" , u8"\U0001F4D0"},
{":trident:" , u8"\U0001F531"},
{":trolleybus:" , u8"\U0001F68E"},
{":trophy:" , u8"\U0001F3C6"},
{":tropical_drink:" , u8"\U0001F379"},
{":tropical_fish:" , u8"\U0001F420"},
{":trumpet:" , u8"\U0001F3BA"},
{":tulip:" , u8"\U0001F337"},
{":turkey:" , u8"\U0001F983"},
{":turtle:" , u8"\U0001F422"},
{":twisted_rightwards_arrows:" , u8"\U0001F500"},
{":two_hearts:" , u8"\U0001F495"},
{":two_men_holding_hands:" , u8"\U0001F46C"},
{":two_women_holding_hands:" , u8"\U0001F46D"},
{":umbrella:" , u8"\U00002602"},
{":umbrella_on_ground:" , u8"\U000026F1"},
{":unamused:" , u8"\U0001F612"},
{":unicorn_face:" , u8"\U0001F984"},
{":small_red_triangle:" , u8"\U0001F53A"},
{":arrow_up_small:" , u8"\U0001F53C"},
{":arrow_up_down:" , u8"\U00002195"},
{":upside__down_face:" , u8"\U0001F643"},
{":arrow_up:" , u8"\U00002B06"},
{":vertical_traffic_light:" , u8"\U0001F6A6"},
{":vibration_mode:" , u8"\U0001F4F3"},
{":v:" , u8"\U0000270C"},
{":video_camera:" , u8"\U0001F4F9"},
{":video_game:" , u8"\U0001F3AE"},
{":vhs:" , u8"\U0001F4FC"},
{":violin:" , u8"\U0001F3BB"},
{":virgo:" , u8"\U0000264D"},
{":volcano:" , u8"\U0001F30B"},
{":volleyball:" , u8"\U0001F3D0"},
{":waning_crescent_moon:" , u8"\U0001F318"},
{":waning_gibbous_moon:" , u8"\U0001F316"},
{":warning:" , u8"\U000026A0"},
{":wastebasket:" , u8"\U0001F5D1"},
{":watch:" , u8"\U0000231A"},
{":water_buffalo:" , u8"\U0001F403"},
{":wc:" , u8"\U0001F6BE"},
{":ocean:" , u8"\U0001F30A"},
{":watermelon:" , u8"\U0001F349"},