forked from iamcal/php-emoji
-
Notifications
You must be signed in to change notification settings - Fork 0
/
emoji.php
2082 lines (2067 loc) · 312 KB
/
emoji.php
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
<?php
#
# WARNING:
# This code is auto-generated. Do not modify it manually.
#
$GLOBALS['emoji_maps'] = array(
'names' => array(
"\xe2\x98\x80" => 'BLACK SUN WITH RAYS',
"\xe2\x98\x81" => 'CLOUD',
"\xe2\x98\x94" => 'UMBRELLA WITH RAIN DROPS',
"\xe2\x9b\x84" => 'SNOWMAN WITHOUT SNOW',
"\xe2\x9a\xa1" => 'HIGH VOLTAGE SIGN',
"\xf0\x9f\x8c\x80" => 'CYCLONE',
"\xf0\x9f\x8c\x81" => 'FOGGY',
"\xf0\x9f\x8c\x82" => 'CLOSED UMBRELLA',
"\xf0\x9f\x8c\x83" => 'NIGHT WITH STARS',
"\xf0\x9f\x8c\x84" => 'SUNRISE OVER MOUNTAINS',
"\xf0\x9f\x8c\x85" => 'SUNRISE',
"\xf0\x9f\x8c\x86" => 'CITYSCAPE AT DUSK',
"\xf0\x9f\x8c\x87" => 'SUNSET OVER BUILDINGS',
"\xf0\x9f\x8c\x88" => 'RAINBOW',
"\xe2\x9d\x84" => 'SNOWFLAKE',
"\xe2\x9b\x85" => 'SUN BEHIND CLOUD',
"\xf0\x9f\x8c\x89" => 'BRIDGE AT NIGHT',
"\xf0\x9f\x8c\x8a" => 'WATER WAVE',
"\xf0\x9f\x8c\x8b" => 'VOLCANO',
"\xf0\x9f\x8c\x8c" => 'MILKY WAY',
"\xf0\x9f\x8c\x8f" => 'EARTH GLOBE ASIA-AUSTRALIA',
"\xf0\x9f\x8c\x91" => 'NEW MOON SYMBOL',
"\xf0\x9f\x8c\x94" => 'WAXING GIBBOUS MOON SYMBOL',
"\xf0\x9f\x8c\x93" => 'FIRST QUARTER MOON SYMBOL',
"\xf0\x9f\x8c\x99" => 'CRESCENT MOON',
"\xf0\x9f\x8c\x95" => 'FULL MOON SYMBOL',
"\xf0\x9f\x8c\x9b" => 'FIRST QUARTER MOON WITH FACE',
"\xf0\x9f\x8c\x9f" => 'GLOWING STAR',
"\xf0\x9f\x8c\xa0" => 'SHOOTING STAR',
"\xf0\x9f\x95\x90" => 'CLOCK FACE ONE OCLOCK',
"\xf0\x9f\x95\x91" => 'CLOCK FACE TWO OCLOCK',
"\xf0\x9f\x95\x92" => 'CLOCK FACE THREE OCLOCK',
"\xf0\x9f\x95\x93" => 'CLOCK FACE FOUR OCLOCK',
"\xf0\x9f\x95\x94" => 'CLOCK FACE FIVE OCLOCK',
"\xf0\x9f\x95\x95" => 'CLOCK FACE SIX OCLOCK',
"\xf0\x9f\x95\x96" => 'CLOCK FACE SEVEN OCLOCK',
"\xf0\x9f\x95\x97" => 'CLOCK FACE EIGHT OCLOCK',
"\xf0\x9f\x95\x98" => 'CLOCK FACE NINE OCLOCK',
"\xf0\x9f\x95\x99" => 'CLOCK FACE TEN OCLOCK',
"\xf0\x9f\x95\x9a" => 'CLOCK FACE ELEVEN OCLOCK',
"\xf0\x9f\x95\x9b" => 'CLOCK FACE TWELVE OCLOCK',
"\xe2\x8c\x9a" => 'WATCH',
"\xe2\x8c\x9b" => 'HOURGLASS',
"\xe2\x8f\xb0" => 'ALARM CLOCK',
"\xe2\x8f\xb3" => 'HOURGLASS WITH FLOWING SAND',
"\xe2\x99\x88" => 'ARIES',
"\xe2\x99\x89" => 'TAURUS',
"\xe2\x99\x8a" => 'GEMINI',
"\xe2\x99\x8b" => 'CANCER',
"\xe2\x99\x8c" => 'LEO',
"\xe2\x99\x8d" => 'VIRGO',
"\xe2\x99\x8e" => 'LIBRA',
"\xe2\x99\x8f" => 'SCORPIUS',
"\xe2\x99\x90" => 'SAGITTARIUS',
"\xe2\x99\x91" => 'CAPRICORN',
"\xe2\x99\x92" => 'AQUARIUS',
"\xe2\x99\x93" => 'PISCES',
"\xe2\x9b\x8e" => 'OPHIUCHUS',
"\xf0\x9f\x8d\x80" => 'FOUR LEAF CLOVER',
"\xf0\x9f\x8c\xb7" => 'TULIP',
"\xf0\x9f\x8c\xb1" => 'SEEDLING',
"\xf0\x9f\x8d\x81" => 'MAPLE LEAF',
"\xf0\x9f\x8c\xb8" => 'CHERRY BLOSSOM',
"\xf0\x9f\x8c\xb9" => 'ROSE',
"\xf0\x9f\x8d\x82" => 'FALLEN LEAF',
"\xf0\x9f\x8d\x83" => 'LEAF FLUTTERING IN WIND',
"\xf0\x9f\x8c\xba" => 'HIBISCUS',
"\xf0\x9f\x8c\xbb" => 'SUNFLOWER',
"\xf0\x9f\x8c\xb4" => 'PALM TREE',
"\xf0\x9f\x8c\xb5" => 'CACTUS',
"\xf0\x9f\x8c\xbe" => 'EAR OF RICE',
"\xf0\x9f\x8c\xbd" => 'EAR OF MAIZE',
"\xf0\x9f\x8d\x84" => 'MUSHROOM',
"\xf0\x9f\x8c\xb0" => 'CHESTNUT',
"\xf0\x9f\x8c\xbc" => 'BLOSSOM',
"\xf0\x9f\x8c\xbf" => 'HERB',
"\xf0\x9f\x8d\x92" => 'CHERRIES',
"\xf0\x9f\x8d\x8c" => 'BANANA',
"\xf0\x9f\x8d\x8e" => 'RED APPLE',
"\xf0\x9f\x8d\x8a" => 'TANGERINE',
"\xf0\x9f\x8d\x93" => 'STRAWBERRY',
"\xf0\x9f\x8d\x89" => 'WATERMELON',
"\xf0\x9f\x8d\x85" => 'TOMATO',
"\xf0\x9f\x8d\x86" => 'AUBERGINE',
"\xf0\x9f\x8d\x88" => 'MELON',
"\xf0\x9f\x8d\x8d" => 'PINEAPPLE',
"\xf0\x9f\x8d\x87" => 'GRAPES',
"\xf0\x9f\x8d\x91" => 'PEACH',
"\xf0\x9f\x8d\x8f" => 'GREEN APPLE',
"\xf0\x9f\x91\x80" => 'EYES',
"\xf0\x9f\x91\x82" => 'EAR',
"\xf0\x9f\x91\x83" => 'NOSE',
"\xf0\x9f\x91\x84" => 'MOUTH',
"\xf0\x9f\x91\x85" => 'TONGUE',
"\xf0\x9f\x92\x84" => 'LIPSTICK',
"\xf0\x9f\x92\x85" => 'NAIL POLISH',
"\xf0\x9f\x92\x86" => 'FACE MASSAGE',
"\xf0\x9f\x92\x87" => 'HAIRCUT',
"\xf0\x9f\x92\x88" => 'BARBER POLE',
"\xf0\x9f\x91\xa4" => 'BUST IN SILHOUETTE',
"\xf0\x9f\x91\xa6" => 'BOY',
"\xf0\x9f\x91\xa7" => 'GIRL',
"\xf0\x9f\x91\xa8" => 'MAN',
"\xf0\x9f\x91\xa9" => 'WOMAN',
"\xf0\x9f\x91\xaa" => 'FAMILY',
"\xf0\x9f\x91\xab" => 'MAN AND WOMAN HOLDING HANDS',
"\xf0\x9f\x91\xae" => 'POLICE OFFICER',
"\xf0\x9f\x91\xaf" => 'WOMAN WITH BUNNY EARS',
"\xf0\x9f\x91\xb0" => 'BRIDE WITH VEIL',
"\xf0\x9f\x91\xb1" => 'PERSON WITH BLOND HAIR',
"\xf0\x9f\x91\xb2" => 'MAN WITH GUA PI MAO',
"\xf0\x9f\x91\xb3" => 'MAN WITH TURBAN',
"\xf0\x9f\x91\xb4" => 'OLDER MAN',
"\xf0\x9f\x91\xb5" => 'OLDER WOMAN',
"\xf0\x9f\x91\xb6" => 'BABY',
"\xf0\x9f\x91\xb7" => 'CONSTRUCTION WORKER',
"\xf0\x9f\x91\xb8" => 'PRINCESS',
"\xf0\x9f\x91\xb9" => 'JAPANESE OGRE',
"\xf0\x9f\x91\xba" => 'JAPANESE GOBLIN',
"\xf0\x9f\x91\xbb" => 'GHOST',
"\xf0\x9f\x91\xbc" => 'BABY ANGEL',
"\xf0\x9f\x91\xbd" => 'EXTRATERRESTRIAL ALIEN',
"\xf0\x9f\x91\xbe" => 'ALIEN MONSTER',
"\xf0\x9f\x91\xbf" => 'IMP',
"\xf0\x9f\x92\x80" => 'SKULL',
"\xf0\x9f\x92\x81" => 'INFORMATION DESK PERSON',
"\xf0\x9f\x92\x82" => 'GUARDSMAN',
"\xf0\x9f\x92\x83" => 'DANCER',
"\xf0\x9f\x90\x8c" => 'SNAIL',
"\xf0\x9f\x90\x8d" => 'SNAKE',
"\xf0\x9f\x90\x8e" => 'HORSE',
"\xf0\x9f\x90\x94" => 'CHICKEN',
"\xf0\x9f\x90\x97" => 'BOAR',
"\xf0\x9f\x90\xab" => 'BACTRIAN CAMEL',
"\xf0\x9f\x90\x98" => 'ELEPHANT',
"\xf0\x9f\x90\xa8" => 'KOALA',
"\xf0\x9f\x90\x92" => 'MONKEY',
"\xf0\x9f\x90\x91" => 'SHEEP',
"\xf0\x9f\x90\x99" => 'OCTOPUS',
"\xf0\x9f\x90\x9a" => 'SPIRAL SHELL',
"\xf0\x9f\x90\x9b" => 'BUG',
"\xf0\x9f\x90\x9c" => 'ANT',
"\xf0\x9f\x90\x9d" => 'HONEYBEE',
"\xf0\x9f\x90\x9e" => 'LADY BEETLE',
"\xf0\x9f\x90\xa0" => 'TROPICAL FISH',
"\xf0\x9f\x90\xa1" => 'BLOWFISH',
"\xf0\x9f\x90\xa2" => 'TURTLE',
"\xf0\x9f\x90\xa4" => 'BABY CHICK',
"\xf0\x9f\x90\xa5" => 'FRONT-FACING BABY CHICK',
"\xf0\x9f\x90\xa6" => 'BIRD',
"\xf0\x9f\x90\xa3" => 'HATCHING CHICK',
"\xf0\x9f\x90\xa7" => 'PENGUIN',
"\xf0\x9f\x90\xa9" => 'POODLE',
"\xf0\x9f\x90\x9f" => 'FISH',
"\xf0\x9f\x90\xac" => 'DOLPHIN',
"\xf0\x9f\x90\xad" => 'MOUSE FACE',
"\xf0\x9f\x90\xaf" => 'TIGER FACE',
"\xf0\x9f\x90\xb1" => 'CAT FACE',
"\xf0\x9f\x90\xb3" => 'SPOUTING WHALE',
"\xf0\x9f\x90\xb4" => 'HORSE FACE',
"\xf0\x9f\x90\xb5" => 'MONKEY FACE',
"\xf0\x9f\x90\xb6" => 'DOG FACE',
"\xf0\x9f\x90\xb7" => 'PIG FACE',
"\xf0\x9f\x90\xbb" => 'BEAR FACE',
"\xf0\x9f\x90\xb9" => 'HAMSTER FACE',
"\xf0\x9f\x90\xba" => 'WOLF FACE',
"\xf0\x9f\x90\xae" => 'COW FACE',
"\xf0\x9f\x90\xb0" => 'RABBIT FACE',
"\xf0\x9f\x90\xb8" => 'FROG FACE',
"\xf0\x9f\x90\xbe" => 'PAW PRINTS',
"\xf0\x9f\x90\xb2" => 'DRAGON FACE',
"\xf0\x9f\x90\xbc" => 'PANDA FACE',
"\xf0\x9f\x90\xbd" => 'PIG NOSE',
"\xf0\x9f\x98\xa0" => 'ANGRY FACE',
"\xf0\x9f\x98\xa9" => 'WEARY FACE',
"\xf0\x9f\x98\xb2" => 'ASTONISHED FACE',
"\xf0\x9f\x98\x9e" => 'DISAPPOINTED FACE',
"\xf0\x9f\x98\xb5" => 'DIZZY FACE',
"\xf0\x9f\x98\xb0" => 'FACE WITH OPEN MOUTH AND COLD SWEAT',
"\xf0\x9f\x98\x92" => 'UNAMUSED FACE',
"\xf0\x9f\x98\x8d" => 'SMILING FACE WITH HEART-SHAPED EYES',
"\xf0\x9f\x98\xa4" => 'FACE WITH LOOK OF TRIUMPH',
"\xf0\x9f\x98\x9c" => 'FACE WITH STUCK-OUT TONGUE AND WINKING EYE',
"\xf0\x9f\x98\x9d" => 'FACE WITH STUCK-OUT TONGUE AND TIGHTLY-CLOSED EYES',
"\xf0\x9f\x98\x8b" => 'FACE SAVOURING DELICIOUS FOOD',
"\xf0\x9f\x98\x98" => 'FACE THROWING A KISS',
"\xf0\x9f\x98\x9a" => 'KISSING FACE WITH CLOSED EYES',
"\xf0\x9f\x98\xb7" => 'FACE WITH MEDICAL MASK',
"\xf0\x9f\x98\xb3" => 'FLUSHED FACE',
"\xf0\x9f\x98\x83" => 'SMILING FACE WITH OPEN MOUTH',
"\xf0\x9f\x98\x85" => 'SMILING FACE WITH OPEN MOUTH AND COLD SWEAT',
"\xf0\x9f\x98\x86" => 'SMILING FACE WITH OPEN MOUTH AND TIGHTLY-CLOSED EYES',
"\xf0\x9f\x98\x81" => 'GRINNING FACE WITH SMILING EYES',
"\xf0\x9f\x98\x82" => 'FACE WITH TEARS OF JOY',
"\xf0\x9f\x98\x8a" => 'SMILING FACE WITH SMILING EYES',
"\xe2\x98\xba" => 'WHITE SMILING FACE',
"\xf0\x9f\x98\x84" => 'SMILING FACE WITH OPEN MOUTH AND SMILING EYES',
"\xf0\x9f\x98\xa2" => 'CRYING FACE',
"\xf0\x9f\x98\xad" => 'LOUDLY CRYING FACE',
"\xf0\x9f\x98\xa8" => 'FEARFUL FACE',
"\xf0\x9f\x98\xa3" => 'PERSEVERING FACE',
"\xf0\x9f\x98\xa1" => 'POUTING FACE',
"\xf0\x9f\x98\x8c" => 'RELIEVED FACE',
"\xf0\x9f\x98\x96" => 'CONFOUNDED FACE',
"\xf0\x9f\x98\x94" => 'PENSIVE FACE',
"\xf0\x9f\x98\xb1" => 'FACE SCREAMING IN FEAR',
"\xf0\x9f\x98\xaa" => 'SLEEPY FACE',
"\xf0\x9f\x98\x8f" => 'SMIRKING FACE',
"\xf0\x9f\x98\x93" => 'FACE WITH COLD SWEAT',
"\xf0\x9f\x98\xa5" => 'DISAPPOINTED BUT RELIEVED FACE',
"\xf0\x9f\x98\xab" => 'TIRED FACE',
"\xf0\x9f\x98\x89" => 'WINKING FACE',
"\xf0\x9f\x98\xba" => 'SMILING CAT FACE WITH OPEN MOUTH',
"\xf0\x9f\x98\xb8" => 'GRINNING CAT FACE WITH SMILING EYES',
"\xf0\x9f\x98\xb9" => 'CAT FACE WITH TEARS OF JOY',
"\xf0\x9f\x98\xbd" => 'KISSING CAT FACE WITH CLOSED EYES',
"\xf0\x9f\x98\xbb" => 'SMILING CAT FACE WITH HEART-SHAPED EYES',
"\xf0\x9f\x98\xbf" => 'CRYING CAT FACE',
"\xf0\x9f\x98\xbe" => 'POUTING CAT FACE',
"\xf0\x9f\x98\xbc" => 'CAT FACE WITH WRY SMILE',
"\xf0\x9f\x99\x80" => 'WEARY CAT FACE',
"\xf0\x9f\x99\x85" => 'FACE WITH NO GOOD GESTURE',
"\xf0\x9f\x99\x86" => 'FACE WITH OK GESTURE',
"\xf0\x9f\x99\x87" => 'PERSON BOWING DEEPLY',
"\xf0\x9f\x99\x88" => 'SEE-NO-EVIL MONKEY',
"\xf0\x9f\x99\x8a" => 'SPEAK-NO-EVIL MONKEY',
"\xf0\x9f\x99\x89" => 'HEAR-NO-EVIL MONKEY',
"\xf0\x9f\x99\x8b" => 'HAPPY PERSON RAISING ONE HAND',
"\xf0\x9f\x99\x8c" => 'PERSON RAISING BOTH HANDS IN CELEBRATION',
"\xf0\x9f\x99\x8d" => 'PERSON FROWNING',
"\xf0\x9f\x99\x8e" => 'PERSON WITH POUTING FACE',
"\xf0\x9f\x99\x8f" => 'PERSON WITH FOLDED HANDS',
"\xf0\x9f\x8f\xa0" => 'HOUSE BUILDING',
"\xf0\x9f\x8f\xa1" => 'HOUSE WITH GARDEN',
"\xf0\x9f\x8f\xa2" => 'OFFICE BUILDING',
"\xf0\x9f\x8f\xa3" => 'JAPANESE POST OFFICE',
"\xf0\x9f\x8f\xa5" => 'HOSPITAL',
"\xf0\x9f\x8f\xa6" => 'BANK',
"\xf0\x9f\x8f\xa7" => 'AUTOMATED TELLER MACHINE',
"\xf0\x9f\x8f\xa8" => 'HOTEL',
"\xf0\x9f\x8f\xa9" => 'LOVE HOTEL',
"\xf0\x9f\x8f\xaa" => 'CONVENIENCE STORE',
"\xf0\x9f\x8f\xab" => 'SCHOOL',
"\xe2\x9b\xaa" => 'CHURCH',
"\xe2\x9b\xb2" => 'FOUNTAIN',
"\xf0\x9f\x8f\xac" => 'DEPARTMENT STORE',
"\xf0\x9f\x8f\xaf" => 'JAPANESE CASTLE',
"\xf0\x9f\x8f\xb0" => 'EUROPEAN CASTLE',
"\xf0\x9f\x8f\xad" => 'FACTORY',
"\xe2\x9a\x93" => 'ANCHOR',
"\xf0\x9f\x8f\xae" => 'IZAKAYA LANTERN',
"\xf0\x9f\x97\xbb" => 'MOUNT FUJI',
"\xf0\x9f\x97\xbc" => 'TOKYO TOWER',
"\xf0\x9f\x97\xbd" => 'STATUE OF LIBERTY',
"\xf0\x9f\x97\xbe" => 'SILHOUETTE OF JAPAN',
"\xf0\x9f\x97\xbf" => 'MOYAI',
"\xf0\x9f\x91\x9e" => 'MANS SHOE',
"\xf0\x9f\x91\x9f" => 'ATHLETIC SHOE',
"\xf0\x9f\x91\xa0" => 'HIGH-HEELED SHOE',
"\xf0\x9f\x91\xa1" => 'WOMANS SANDAL',
"\xf0\x9f\x91\xa2" => 'WOMANS BOOTS',
"\xf0\x9f\x91\xa3" => 'FOOTPRINTS',
"\xf0\x9f\x91\x93" => 'EYEGLASSES',
"\xf0\x9f\x91\x95" => 'T-SHIRT',
"\xf0\x9f\x91\x96" => 'JEANS',
"\xf0\x9f\x91\x91" => 'CROWN',
"\xf0\x9f\x91\x94" => 'NECKTIE',
"\xf0\x9f\x91\x92" => 'WOMANS HAT',
"\xf0\x9f\x91\x97" => 'DRESS',
"\xf0\x9f\x91\x98" => 'KIMONO',
"\xf0\x9f\x91\x99" => 'BIKINI',
"\xf0\x9f\x91\x9a" => 'WOMANS CLOTHES',
"\xf0\x9f\x91\x9b" => 'PURSE',
"\xf0\x9f\x91\x9c" => 'HANDBAG',
"\xf0\x9f\x91\x9d" => 'POUCH',
"\xf0\x9f\x92\xb0" => 'MONEY BAG',
"\xf0\x9f\x92\xb1" => 'CURRENCY EXCHANGE',
"\xf0\x9f\x92\xb9" => 'CHART WITH UPWARDS TREND AND YEN SIGN',
"\xf0\x9f\x92\xb2" => 'HEAVY DOLLAR SIGN',
"\xf0\x9f\x92\xb3" => 'CREDIT CARD',
"\xf0\x9f\x92\xb4" => 'BANKNOTE WITH YEN SIGN',
"\xf0\x9f\x92\xb5" => 'BANKNOTE WITH DOLLAR SIGN',
"\xf0\x9f\x92\xb8" => 'MONEY WITH WINGS',
"\xf0\x9f\x87\xa8\xf0\x9f\x87\xb3" => 'REGIONAL INDICATOR SYMBOL LETTERS CN',
"\xf0\x9f\x87\xa9\xf0\x9f\x87\xaa" => 'REGIONAL INDICATOR SYMBOL LETTERS DE',
"\xf0\x9f\x87\xaa\xf0\x9f\x87\xb8" => 'REGIONAL INDICATOR SYMBOL LETTERS ES',
"\xf0\x9f\x87\xab\xf0\x9f\x87\xb7" => 'REGIONAL INDICATOR SYMBOL LETTERS FR',
"\xf0\x9f\x87\xac\xf0\x9f\x87\xa7" => 'REGIONAL INDICATOR SYMBOL LETTERS GB',
"\xf0\x9f\x87\xae\xf0\x9f\x87\xb9" => 'REGIONAL INDICATOR SYMBOL LETTERS IT',
"\xf0\x9f\x87\xaf\xf0\x9f\x87\xb5" => 'REGIONAL INDICATOR SYMBOL LETTERS JP',
"\xf0\x9f\x87\xb0\xf0\x9f\x87\xb7" => 'REGIONAL INDICATOR SYMBOL LETTERS KR',
"\xf0\x9f\x87\xb7\xf0\x9f\x87\xba" => 'REGIONAL INDICATOR SYMBOL LETTERS RU',
"\xf0\x9f\x87\xba\xf0\x9f\x87\xb8" => 'REGIONAL INDICATOR SYMBOL LETTERS US',
"\xf0\x9f\x94\xa5" => 'FIRE',
"\xf0\x9f\x94\xa6" => 'ELECTRIC TORCH',
"\xf0\x9f\x94\xa7" => 'WRENCH',
"\xf0\x9f\x94\xa8" => 'HAMMER',
"\xf0\x9f\x94\xa9" => 'NUT AND BOLT',
"\xf0\x9f\x94\xaa" => 'HOCHO',
"\xf0\x9f\x94\xab" => 'PISTOL',
"\xf0\x9f\x94\xae" => 'CRYSTAL BALL',
"\xf0\x9f\x94\xaf" => 'SIX POINTED STAR WITH MIDDLE DOT',
"\xf0\x9f\x94\xb0" => 'JAPANESE SYMBOL FOR BEGINNER',
"\xf0\x9f\x94\xb1" => 'TRIDENT EMBLEM',
"\xf0\x9f\x92\x89" => 'SYRINGE',
"\xf0\x9f\x92\x8a" => 'PILL',
"\xf0\x9f\x85\xb0" => 'NEGATIVE SQUARED LATIN CAPITAL LETTER A',
"\xf0\x9f\x85\xb1" => 'NEGATIVE SQUARED LATIN CAPITAL LETTER B',
"\xf0\x9f\x86\x8e" => 'NEGATIVE SQUARED AB',
"\xf0\x9f\x85\xbe" => 'NEGATIVE SQUARED LATIN CAPITAL LETTER O',
"\xf0\x9f\x8e\x80" => 'RIBBON',
"\xf0\x9f\x8e\x81" => 'WRAPPED PRESENT',
"\xf0\x9f\x8e\x82" => 'BIRTHDAY CAKE',
"\xf0\x9f\x8e\x84" => 'CHRISTMAS TREE',
"\xf0\x9f\x8e\x85" => 'FATHER CHRISTMAS',
"\xf0\x9f\x8e\x8c" => 'CROSSED FLAGS',
"\xf0\x9f\x8e\x86" => 'FIREWORKS',
"\xf0\x9f\x8e\x88" => 'BALLOON',
"\xf0\x9f\x8e\x89" => 'PARTY POPPER',
"\xf0\x9f\x8e\x8d" => 'PINE DECORATION',
"\xf0\x9f\x8e\x8e" => 'JAPANESE DOLLS',
"\xf0\x9f\x8e\x93" => 'GRADUATION CAP',
"\xf0\x9f\x8e\x92" => 'SCHOOL SATCHEL',
"\xf0\x9f\x8e\x8f" => 'CARP STREAMER',
"\xf0\x9f\x8e\x87" => 'FIREWORK SPARKLER',
"\xf0\x9f\x8e\x90" => 'WIND CHIME',
"\xf0\x9f\x8e\x83" => 'JACK-O-LANTERN',
"\xf0\x9f\x8e\x8a" => 'CONFETTI BALL',
"\xf0\x9f\x8e\x8b" => 'TANABATA TREE',
"\xf0\x9f\x8e\x91" => 'MOON VIEWING CEREMONY',
"\xf0\x9f\x93\x9f" => 'PAGER',
"\xe2\x98\x8e" => 'BLACK TELEPHONE',
"\xf0\x9f\x93\x9e" => 'TELEPHONE RECEIVER',
"\xf0\x9f\x93\xb1" => 'MOBILE PHONE',
"\xf0\x9f\x93\xb2" => 'MOBILE PHONE WITH RIGHTWARDS ARROW AT LEFT',
"\xf0\x9f\x93\x9d" => 'MEMO',
"\xf0\x9f\x93\xa0" => 'FAX MACHINE',
"\xe2\x9c\x89" => 'ENVELOPE',
"\xf0\x9f\x93\xa8" => 'INCOMING ENVELOPE',
"\xf0\x9f\x93\xa9" => 'ENVELOPE WITH DOWNWARDS ARROW ABOVE',
"\xf0\x9f\x93\xaa" => 'CLOSED MAILBOX WITH LOWERED FLAG',
"\xf0\x9f\x93\xab" => 'CLOSED MAILBOX WITH RAISED FLAG',
"\xf0\x9f\x93\xae" => 'POSTBOX',
"\xf0\x9f\x93\xb0" => 'NEWSPAPER',
"\xf0\x9f\x93\xa2" => 'PUBLIC ADDRESS LOUDSPEAKER',
"\xf0\x9f\x93\xa3" => 'CHEERING MEGAPHONE',
"\xf0\x9f\x93\xa1" => 'SATELLITE ANTENNA',
"\xf0\x9f\x93\xa4" => 'OUTBOX TRAY',
"\xf0\x9f\x93\xa5" => 'INBOX TRAY',
"\xf0\x9f\x93\xa6" => 'PACKAGE',
"\xf0\x9f\x93\xa7" => 'E-MAIL SYMBOL',
"\xf0\x9f\x94\xa0" => 'INPUT SYMBOL FOR LATIN CAPITAL LETTERS',
"\xf0\x9f\x94\xa1" => 'INPUT SYMBOL FOR LATIN SMALL LETTERS',
"\xf0\x9f\x94\xa2" => 'INPUT SYMBOL FOR NUMBERS',
"\xf0\x9f\x94\xa3" => 'INPUT SYMBOL FOR SYMBOLS',
"\xf0\x9f\x94\xa4" => 'INPUT SYMBOL FOR LATIN LETTERS',
"\xe2\x9c\x92" => 'BLACK NIB',
"\xf0\x9f\x92\xba" => 'SEAT',
"\xf0\x9f\x92\xbb" => 'PERSONAL COMPUTER',
"\xe2\x9c\x8f" => 'PENCIL',
"\xf0\x9f\x93\x8e" => 'PAPERCLIP',
"\xf0\x9f\x92\xbc" => 'BRIEFCASE',
"\xf0\x9f\x92\xbd" => 'MINIDISC',
"\xf0\x9f\x92\xbe" => 'FLOPPY DISK',
"\xf0\x9f\x92\xbf" => 'OPTICAL DISC',
"\xf0\x9f\x93\x80" => 'DVD',
"\xe2\x9c\x82" => 'BLACK SCISSORS',
"\xf0\x9f\x93\x8d" => 'ROUND PUSHPIN',
"\xf0\x9f\x93\x83" => 'PAGE WITH CURL',
"\xf0\x9f\x93\x84" => 'PAGE FACING UP',
"\xf0\x9f\x93\x85" => 'CALENDAR',
"\xf0\x9f\x93\x81" => 'FILE FOLDER',
"\xf0\x9f\x93\x82" => 'OPEN FILE FOLDER',
"\xf0\x9f\x93\x93" => 'NOTEBOOK',
"\xf0\x9f\x93\x96" => 'OPEN BOOK',
"\xf0\x9f\x93\x94" => 'NOTEBOOK WITH DECORATIVE COVER',
"\xf0\x9f\x93\x95" => 'CLOSED BOOK',
"\xf0\x9f\x93\x97" => 'GREEN BOOK',
"\xf0\x9f\x93\x98" => 'BLUE BOOK',
"\xf0\x9f\x93\x99" => 'ORANGE BOOK',
"\xf0\x9f\x93\x9a" => 'BOOKS',
"\xf0\x9f\x93\x9b" => 'NAME BADGE',
"\xf0\x9f\x93\x9c" => 'SCROLL',
"\xf0\x9f\x93\x8b" => 'CLIPBOARD',
"\xf0\x9f\x93\x86" => 'TEAR-OFF CALENDAR',
"\xf0\x9f\x93\x8a" => 'BAR CHART',
"\xf0\x9f\x93\x88" => 'CHART WITH UPWARDS TREND',
"\xf0\x9f\x93\x89" => 'CHART WITH DOWNWARDS TREND',
"\xf0\x9f\x93\x87" => 'CARD INDEX',
"\xf0\x9f\x93\x8c" => 'PUSHPIN',
"\xf0\x9f\x93\x92" => 'LEDGER',
"\xf0\x9f\x93\x8f" => 'STRAIGHT RULER',
"\xf0\x9f\x93\x90" => 'TRIANGULAR RULER',
"\xf0\x9f\x93\x91" => 'BOOKMARK TABS',
"\xf0\x9f\x8e\xbd" => 'RUNNING SHIRT WITH SASH',
"\xe2\x9a\xbe" => 'BASEBALL',
"\xe2\x9b\xb3" => 'FLAG IN HOLE',
"\xf0\x9f\x8e\xbe" => 'TENNIS RACQUET AND BALL',
"\xe2\x9a\xbd" => 'SOCCER BALL',
"\xf0\x9f\x8e\xbf" => 'SKI AND SKI BOOT',
"\xf0\x9f\x8f\x80" => 'BASKETBALL AND HOOP',
"\xf0\x9f\x8f\x81" => 'CHEQUERED FLAG',
"\xf0\x9f\x8f\x82" => 'SNOWBOARDER',
"\xf0\x9f\x8f\x83" => 'RUNNER',
"\xf0\x9f\x8f\x84" => 'SURFER',
"\xf0\x9f\x8f\x86" => 'TROPHY',
"\xf0\x9f\x8f\x88" => 'AMERICAN FOOTBALL',
"\xf0\x9f\x8f\x8a" => 'SWIMMER',
"\xf0\x9f\x9a\x83" => 'RAILWAY CAR',
"\xf0\x9f\x9a\x87" => 'METRO',
"\xe2\x93\x82" => 'CIRCLED LATIN CAPITAL LETTER M',
"\xf0\x9f\x9a\x84" => 'HIGH-SPEED TRAIN',
"\xf0\x9f\x9a\x85" => 'HIGH-SPEED TRAIN WITH BULLET NOSE',
"\xf0\x9f\x9a\x97" => 'AUTOMOBILE',
"\xf0\x9f\x9a\x99" => 'RECREATIONAL VEHICLE',
"\xf0\x9f\x9a\x8c" => 'BUS',
"\xf0\x9f\x9a\x8f" => 'BUS STOP',
"\xf0\x9f\x9a\xa2" => 'SHIP',
"\xe2\x9c\x88" => 'AIRPLANE',
"\xe2\x9b\xb5" => 'SAILBOAT',
"\xf0\x9f\x9a\x89" => 'STATION',
"\xf0\x9f\x9a\x80" => 'ROCKET',
"\xf0\x9f\x9a\xa4" => 'SPEEDBOAT',
"\xf0\x9f\x9a\x95" => 'TAXI',
"\xf0\x9f\x9a\x9a" => 'DELIVERY TRUCK',
"\xf0\x9f\x9a\x92" => 'FIRE ENGINE',
"\xf0\x9f\x9a\x91" => 'AMBULANCE',
"\xf0\x9f\x9a\x93" => 'POLICE CAR',
"\xe2\x9b\xbd" => 'FUEL PUMP',
"\xf0\x9f\x85\xbf" => 'NEGATIVE SQUARED LATIN CAPITAL LETTER P',
"\xf0\x9f\x9a\xa5" => 'HORIZONTAL TRAFFIC LIGHT',
"\xf0\x9f\x9a\xa7" => 'CONSTRUCTION SIGN',
"\xf0\x9f\x9a\xa8" => 'POLICE CARS REVOLVING LIGHT',
"\xe2\x99\xa8" => 'HOT SPRINGS',
"\xe2\x9b\xba" => 'TENT',
"\xf0\x9f\x8e\xa0" => 'CAROUSEL HORSE',
"\xf0\x9f\x8e\xa1" => 'FERRIS WHEEL',
"\xf0\x9f\x8e\xa2" => 'ROLLER COASTER',
"\xf0\x9f\x8e\xa3" => 'FISHING POLE AND FISH',
"\xf0\x9f\x8e\xa4" => 'MICROPHONE',
"\xf0\x9f\x8e\xa5" => 'MOVIE CAMERA',
"\xf0\x9f\x8e\xa6" => 'CINEMA',
"\xf0\x9f\x8e\xa7" => 'HEADPHONE',
"\xf0\x9f\x8e\xa8" => 'ARTIST PALETTE',
"\xf0\x9f\x8e\xa9" => 'TOP HAT',
"\xf0\x9f\x8e\xaa" => 'CIRCUS TENT',
"\xf0\x9f\x8e\xab" => 'TICKET',
"\xf0\x9f\x8e\xac" => 'CLAPPER BOARD',
"\xf0\x9f\x8e\xad" => 'PERFORMING ARTS',
"\xf0\x9f\x8e\xae" => 'VIDEO GAME',
"\xf0\x9f\x80\x84" => 'MAHJONG TILE RED DRAGON',
"\xf0\x9f\x8e\xaf" => 'DIRECT HIT',
"\xf0\x9f\x8e\xb0" => 'SLOT MACHINE',
"\xf0\x9f\x8e\xb1" => 'BILLIARDS',
"\xf0\x9f\x8e\xb2" => 'GAME DIE',
"\xf0\x9f\x8e\xb3" => 'BOWLING',
"\xf0\x9f\x8e\xb4" => 'FLOWER PLAYING CARDS',
"\xf0\x9f\x83\x8f" => 'PLAYING CARD BLACK JOKER',
"\xf0\x9f\x8e\xb5" => 'MUSICAL NOTE',
"\xf0\x9f\x8e\xb6" => 'MULTIPLE MUSICAL NOTES',
"\xf0\x9f\x8e\xb7" => 'SAXOPHONE',
"\xf0\x9f\x8e\xb8" => 'GUITAR',
"\xf0\x9f\x8e\xb9" => 'MUSICAL KEYBOARD',
"\xf0\x9f\x8e\xba" => 'TRUMPET',
"\xf0\x9f\x8e\xbb" => 'VIOLIN',
"\xf0\x9f\x8e\xbc" => 'MUSICAL SCORE',
"\xe3\x80\xbd" => 'PART ALTERNATION MARK',
"\xf0\x9f\x93\xb7" => 'CAMERA',
"\xf0\x9f\x93\xb9" => 'VIDEO CAMERA',
"\xf0\x9f\x93\xba" => 'TELEVISION',
"\xf0\x9f\x93\xbb" => 'RADIO',
"\xf0\x9f\x93\xbc" => 'VIDEOCASSETTE',
"\xf0\x9f\x92\x8b" => 'KISS MARK',
"\xf0\x9f\x92\x8c" => 'LOVE LETTER',
"\xf0\x9f\x92\x8d" => 'RING',
"\xf0\x9f\x92\x8e" => 'GEM STONE',
"\xf0\x9f\x92\x8f" => 'KISS',
"\xf0\x9f\x92\x90" => 'BOUQUET',
"\xf0\x9f\x92\x91" => 'COUPLE WITH HEART',
"\xf0\x9f\x92\x92" => 'WEDDING',
"\xf0\x9f\x94\x9e" => 'NO ONE UNDER EIGHTEEN SYMBOL',
"\xc2\xa9" => 'COPYRIGHT SIGN',
"\xc2\xae" => 'REGISTERED SIGN',
"\xe2\x84\xa2" => 'TRADE MARK SIGN',
"\xe2\x84\xb9" => 'INFORMATION SOURCE',
"#\xe2\x83\xa3" => 'HASH KEY',
"1\xe2\x83\xa3" => 'KEYCAP 1',
"2\xe2\x83\xa3" => 'KEYCAP 2',
"3\xe2\x83\xa3" => 'KEYCAP 3',
"4\xe2\x83\xa3" => 'KEYCAP 4',
"5\xe2\x83\xa3" => 'KEYCAP 5',
"6\xe2\x83\xa3" => 'KEYCAP 6',
"7\xe2\x83\xa3" => 'KEYCAP 7',
"8\xe2\x83\xa3" => 'KEYCAP 8',
"9\xe2\x83\xa3" => 'KEYCAP 9',
"0\xe2\x83\xa3" => 'KEYCAP 0',
"\xf0\x9f\x94\x9f" => 'KEYCAP TEN',
"\xf0\x9f\x93\xb6" => 'ANTENNA WITH BARS',
"\xf0\x9f\x93\xb3" => 'VIBRATION MODE',
"\xf0\x9f\x93\xb4" => 'MOBILE PHONE OFF',
"\xf0\x9f\x8d\x94" => 'HAMBURGER',
"\xf0\x9f\x8d\x99" => 'RICE BALL',
"\xf0\x9f\x8d\xb0" => 'SHORTCAKE',
"\xf0\x9f\x8d\x9c" => 'STEAMING BOWL',
"\xf0\x9f\x8d\x9e" => 'BREAD',
"\xf0\x9f\x8d\xb3" => 'COOKING',
"\xf0\x9f\x8d\xa6" => 'SOFT ICE CREAM',
"\xf0\x9f\x8d\x9f" => 'FRENCH FRIES',
"\xf0\x9f\x8d\xa1" => 'DANGO',
"\xf0\x9f\x8d\x98" => 'RICE CRACKER',
"\xf0\x9f\x8d\x9a" => 'COOKED RICE',
"\xf0\x9f\x8d\x9d" => 'SPAGHETTI',
"\xf0\x9f\x8d\x9b" => 'CURRY AND RICE',
"\xf0\x9f\x8d\xa2" => 'ODEN',
"\xf0\x9f\x8d\xa3" => 'SUSHI',
"\xf0\x9f\x8d\xb1" => 'BENTO BOX',
"\xf0\x9f\x8d\xb2" => 'POT OF FOOD',
"\xf0\x9f\x8d\xa7" => 'SHAVED ICE',
"\xf0\x9f\x8d\x96" => 'MEAT ON BONE',
"\xf0\x9f\x8d\xa5" => 'FISH CAKE WITH SWIRL DESIGN',
"\xf0\x9f\x8d\xa0" => 'ROASTED SWEET POTATO',
"\xf0\x9f\x8d\x95" => 'SLICE OF PIZZA',
"\xf0\x9f\x8d\x97" => 'POULTRY LEG',
"\xf0\x9f\x8d\xa8" => 'ICE CREAM',
"\xf0\x9f\x8d\xa9" => 'DOUGHNUT',
"\xf0\x9f\x8d\xaa" => 'COOKIE',
"\xf0\x9f\x8d\xab" => 'CHOCOLATE BAR',
"\xf0\x9f\x8d\xac" => 'CANDY',
"\xf0\x9f\x8d\xad" => 'LOLLIPOP',
"\xf0\x9f\x8d\xae" => 'CUSTARD',
"\xf0\x9f\x8d\xaf" => 'HONEY POT',
"\xf0\x9f\x8d\xa4" => 'FRIED SHRIMP',
"\xf0\x9f\x8d\xb4" => 'FORK AND KNIFE',
"\xe2\x98\x95" => 'HOT BEVERAGE',
"\xf0\x9f\x8d\xb8" => 'COCKTAIL GLASS',
"\xf0\x9f\x8d\xba" => 'BEER MUG',
"\xf0\x9f\x8d\xb5" => 'TEACUP WITHOUT HANDLE',
"\xf0\x9f\x8d\xb6" => 'SAKE BOTTLE AND CUP',
"\xf0\x9f\x8d\xb7" => 'WINE GLASS',
"\xf0\x9f\x8d\xbb" => 'CLINKING BEER MUGS',
"\xf0\x9f\x8d\xb9" => 'TROPICAL DRINK',
"\xe2\x86\x97" => 'NORTH EAST ARROW',
"\xe2\x86\x98" => 'SOUTH EAST ARROW',
"\xe2\x86\x96" => 'NORTH WEST ARROW',
"\xe2\x86\x99" => 'SOUTH WEST ARROW',
"\xe2\xa4\xb4" => 'ARROW POINTING RIGHTWARDS THEN CURVING UPWARDS',
"\xe2\xa4\xb5" => 'ARROW POINTING RIGHTWARDS THEN CURVING DOWNWARDS',
"\xe2\x86\x94" => 'LEFT RIGHT ARROW',
"\xe2\x86\x95" => 'UP DOWN ARROW',
"\xe2\xac\x86" => 'UPWARDS BLACK ARROW',
"\xe2\xac\x87" => 'DOWNWARDS BLACK ARROW',
"\xe2\x9e\xa1" => 'BLACK RIGHTWARDS ARROW',
"\xe2\xac\x85" => 'LEFTWARDS BLACK ARROW',
"\xe2\x96\xb6" => 'BLACK RIGHT-POINTING TRIANGLE',
"\xe2\x97\x80" => 'BLACK LEFT-POINTING TRIANGLE',
"\xe2\x8f\xa9" => 'BLACK RIGHT-POINTING DOUBLE TRIANGLE',
"\xe2\x8f\xaa" => 'BLACK LEFT-POINTING DOUBLE TRIANGLE',
"\xe2\x8f\xab" => 'BLACK UP-POINTING DOUBLE TRIANGLE',
"\xe2\x8f\xac" => 'BLACK DOWN-POINTING DOUBLE TRIANGLE',
"\xf0\x9f\x94\xba" => 'UP-POINTING RED TRIANGLE',
"\xf0\x9f\x94\xbb" => 'DOWN-POINTING RED TRIANGLE',
"\xf0\x9f\x94\xbc" => 'UP-POINTING SMALL RED TRIANGLE',
"\xf0\x9f\x94\xbd" => 'DOWN-POINTING SMALL RED TRIANGLE',
"\xe2\xad\x95" => 'HEAVY LARGE CIRCLE',
"\xe2\x9d\x8c" => 'CROSS MARK',
"\xe2\x9d\x8e" => 'NEGATIVE SQUARED CROSS MARK',
"\xe2\x9d\x97" => 'HEAVY EXCLAMATION MARK SYMBOL',
"\xe2\x81\x89" => 'EXCLAMATION QUESTION MARK',
"\xe2\x80\xbc" => 'DOUBLE EXCLAMATION MARK',
"\xe2\x9d\x93" => 'BLACK QUESTION MARK ORNAMENT',
"\xe2\x9d\x94" => 'WHITE QUESTION MARK ORNAMENT',
"\xe2\x9d\x95" => 'WHITE EXCLAMATION MARK ORNAMENT',
"\xe3\x80\xb0" => 'WAVY DASH',
"\xe2\x9e\xb0" => 'CURLY LOOP',
"\xe2\x9e\xbf" => 'DOUBLE CURLY LOOP',
"\xe2\x9d\xa4" => 'HEAVY BLACK HEART',
"\xf0\x9f\x92\x93" => 'BEATING HEART',
"\xf0\x9f\x92\x94" => 'BROKEN HEART',
"\xf0\x9f\x92\x95" => 'TWO HEARTS',
"\xf0\x9f\x92\x96" => 'SPARKLING HEART',
"\xf0\x9f\x92\x97" => 'GROWING HEART',
"\xf0\x9f\x92\x98" => 'HEART WITH ARROW',
"\xf0\x9f\x92\x99" => 'BLUE HEART',
"\xf0\x9f\x92\x9a" => 'GREEN HEART',
"\xf0\x9f\x92\x9b" => 'YELLOW HEART',
"\xf0\x9f\x92\x9c" => 'PURPLE HEART',
"\xf0\x9f\x92\x9d" => 'HEART WITH RIBBON',
"\xf0\x9f\x92\x9e" => 'REVOLVING HEARTS',
"\xf0\x9f\x92\x9f" => 'HEART DECORATION',
"\xe2\x99\xa5" => 'BLACK HEART SUIT',
"\xe2\x99\xa0" => 'BLACK SPADE SUIT',
"\xe2\x99\xa6" => 'BLACK DIAMOND SUIT',
"\xe2\x99\xa3" => 'BLACK CLUB SUIT',
"\xf0\x9f\x9a\xac" => 'SMOKING SYMBOL',
"\xf0\x9f\x9a\xad" => 'NO SMOKING SYMBOL',
"\xe2\x99\xbf" => 'WHEELCHAIR SYMBOL',
"\xf0\x9f\x9a\xa9" => 'TRIANGULAR FLAG ON POST',
"\xe2\x9a\xa0" => 'WARNING SIGN',
"\xe2\x9b\x94" => 'NO ENTRY',
"\xe2\x99\xbb" => 'BLACK UNIVERSAL RECYCLING SYMBOL',
"\xf0\x9f\x9a\xb2" => 'BICYCLE',
"\xf0\x9f\x9a\xb6" => 'PEDESTRIAN',
"\xf0\x9f\x9a\xb9" => 'MENS SYMBOL',
"\xf0\x9f\x9a\xba" => 'WOMENS SYMBOL',
"\xf0\x9f\x9b\x80" => 'BATH',
"\xf0\x9f\x9a\xbb" => 'RESTROOM',
"\xf0\x9f\x9a\xbd" => 'TOILET',
"\xf0\x9f\x9a\xbe" => 'WATER CLOSET',
"\xf0\x9f\x9a\xbc" => 'BABY SYMBOL',
"\xf0\x9f\x9a\xaa" => 'DOOR',
"\xf0\x9f\x9a\xab" => 'NO ENTRY SIGN',
"\xe2\x9c\x94" => 'HEAVY CHECK MARK',
"\xf0\x9f\x86\x91" => 'SQUARED CL',
"\xf0\x9f\x86\x92" => 'SQUARED COOL',
"\xf0\x9f\x86\x93" => 'SQUARED FREE',
"\xf0\x9f\x86\x94" => 'SQUARED ID',
"\xf0\x9f\x86\x95" => 'SQUARED NEW',
"\xf0\x9f\x86\x96" => 'SQUARED NG',
"\xf0\x9f\x86\x97" => 'SQUARED OK',
"\xf0\x9f\x86\x98" => 'SQUARED SOS',
"\xf0\x9f\x86\x99" => 'SQUARED UP WITH EXCLAMATION MARK',
"\xf0\x9f\x86\x9a" => 'SQUARED VS',
"\xf0\x9f\x88\x81" => 'SQUARED KATAKANA KOKO',
"\xf0\x9f\x88\x82" => 'SQUARED KATAKANA SA',
"\xf0\x9f\x88\xb2" => 'SQUARED CJK UNIFIED IDEOGRAPH-7981',
"\xf0\x9f\x88\xb3" => 'SQUARED CJK UNIFIED IDEOGRAPH-7A7A',
"\xf0\x9f\x88\xb4" => 'SQUARED CJK UNIFIED IDEOGRAPH-5408',
"\xf0\x9f\x88\xb5" => 'SQUARED CJK UNIFIED IDEOGRAPH-6E80',
"\xf0\x9f\x88\xb6" => 'SQUARED CJK UNIFIED IDEOGRAPH-6709',
"\xf0\x9f\x88\x9a" => 'SQUARED CJK UNIFIED IDEOGRAPH-7121',
"\xf0\x9f\x88\xb7" => 'SQUARED CJK UNIFIED IDEOGRAPH-6708',
"\xf0\x9f\x88\xb8" => 'SQUARED CJK UNIFIED IDEOGRAPH-7533',
"\xf0\x9f\x88\xb9" => 'SQUARED CJK UNIFIED IDEOGRAPH-5272',
"\xf0\x9f\x88\xaf" => 'SQUARED CJK UNIFIED IDEOGRAPH-6307',
"\xf0\x9f\x88\xba" => 'SQUARED CJK UNIFIED IDEOGRAPH-55B6',
"\xe3\x8a\x99" => 'CIRCLED IDEOGRAPH SECRET',
"\xe3\x8a\x97" => 'CIRCLED IDEOGRAPH CONGRATULATION',
"\xf0\x9f\x89\x90" => 'CIRCLED IDEOGRAPH ADVANTAGE',
"\xf0\x9f\x89\x91" => 'CIRCLED IDEOGRAPH ACCEPT',
"\xe2\x9e\x95" => 'HEAVY PLUS SIGN',
"\xe2\x9e\x96" => 'HEAVY MINUS SIGN',
"\xe2\x9c\x96" => 'HEAVY MULTIPLICATION X',
"\xe2\x9e\x97" => 'HEAVY DIVISION SIGN',
"\xf0\x9f\x92\xa0" => 'DIAMOND SHAPE WITH A DOT INSIDE',
"\xf0\x9f\x92\xa1" => 'ELECTRIC LIGHT BULB',
"\xf0\x9f\x92\xa2" => 'ANGER SYMBOL',
"\xf0\x9f\x92\xa3" => 'BOMB',
"\xf0\x9f\x92\xa4" => 'SLEEPING SYMBOL',
"\xf0\x9f\x92\xa5" => 'COLLISION SYMBOL',
"\xf0\x9f\x92\xa6" => 'SPLASHING SWEAT SYMBOL',
"\xf0\x9f\x92\xa7" => 'DROPLET',
"\xf0\x9f\x92\xa8" => 'DASH SYMBOL',
"\xf0\x9f\x92\xa9" => 'PILE OF POO',
"\xf0\x9f\x92\xaa" => 'FLEXED BICEPS',
"\xf0\x9f\x92\xab" => 'DIZZY SYMBOL',
"\xf0\x9f\x92\xac" => 'SPEECH BALLOON',
"\xe2\x9c\xa8" => 'SPARKLES',
"\xe2\x9c\xb4" => 'EIGHT POINTED BLACK STAR',
"\xe2\x9c\xb3" => 'EIGHT SPOKED ASTERISK',
"\xe2\x9a\xaa" => 'MEDIUM WHITE CIRCLE',
"\xe2\x9a\xab" => 'MEDIUM BLACK CIRCLE',
"\xf0\x9f\x94\xb4" => 'LARGE RED CIRCLE',
"\xf0\x9f\x94\xb5" => 'LARGE BLUE CIRCLE',
"\xf0\x9f\x94\xb2" => 'BLACK SQUARE BUTTON',
"\xf0\x9f\x94\xb3" => 'WHITE SQUARE BUTTON',
"\xe2\xad\x90" => 'WHITE MEDIUM STAR',
"\xe2\xac\x9c" => 'WHITE LARGE SQUARE',
"\xe2\xac\x9b" => 'BLACK LARGE SQUARE',
"\xe2\x96\xab" => 'WHITE SMALL SQUARE',
"\xe2\x96\xaa" => 'BLACK SMALL SQUARE',
"\xe2\x97\xbd" => 'WHITE MEDIUM SMALL SQUARE',
"\xe2\x97\xbe" => 'BLACK MEDIUM SMALL SQUARE',
"\xe2\x97\xbb" => 'WHITE MEDIUM SQUARE',
"\xe2\x97\xbc" => 'BLACK MEDIUM SQUARE',
"\xf0\x9f\x94\xb6" => 'LARGE ORANGE DIAMOND',
"\xf0\x9f\x94\xb7" => 'LARGE BLUE DIAMOND',
"\xf0\x9f\x94\xb8" => 'SMALL ORANGE DIAMOND',
"\xf0\x9f\x94\xb9" => 'SMALL BLUE DIAMOND',
"\xe2\x9d\x87" => 'SPARKLE',
"\xf0\x9f\x92\xae" => 'WHITE FLOWER',
"\xf0\x9f\x92\xaf" => 'HUNDRED POINTS SYMBOL',
"\xe2\x86\xa9" => 'LEFTWARDS ARROW WITH HOOK',
"\xe2\x86\xaa" => 'RIGHTWARDS ARROW WITH HOOK',
"\xf0\x9f\x94\x83" => 'CLOCKWISE DOWNWARDS AND UPWARDS OPEN CIRCLE ARROWS',
"\xf0\x9f\x94\x8a" => 'SPEAKER WITH THREE SOUND WAVES',
"\xf0\x9f\x94\x8b" => 'BATTERY',
"\xf0\x9f\x94\x8c" => 'ELECTRIC PLUG',
"\xf0\x9f\x94\x8d" => 'LEFT-POINTING MAGNIFYING GLASS',
"\xf0\x9f\x94\x8e" => 'RIGHT-POINTING MAGNIFYING GLASS',
"\xf0\x9f\x94\x92" => 'LOCK',
"\xf0\x9f\x94\x93" => 'OPEN LOCK',
"\xf0\x9f\x94\x8f" => 'LOCK WITH INK PEN',
"\xf0\x9f\x94\x90" => 'CLOSED LOCK WITH KEY',
"\xf0\x9f\x94\x91" => 'KEY',
"\xf0\x9f\x94\x94" => 'BELL',
"\xe2\x98\x91" => 'BALLOT BOX WITH CHECK',
"\xf0\x9f\x94\x98" => 'RADIO BUTTON',
"\xf0\x9f\x94\x96" => 'BOOKMARK',
"\xf0\x9f\x94\x97" => 'LINK SYMBOL',
"\xf0\x9f\x94\x99" => 'BACK WITH LEFTWARDS ARROW ABOVE',
"\xf0\x9f\x94\x9a" => 'END WITH LEFTWARDS ARROW ABOVE',
"\xf0\x9f\x94\x9b" => 'ON WITH EXCLAMATION MARK WITH LEFT RIGHT ARROW ABOVE',
"\xf0\x9f\x94\x9c" => 'SOON WITH RIGHTWARDS ARROW ABOVE',
"\xf0\x9f\x94\x9d" => 'TOP WITH UPWARDS ARROW ABOVE',
"\xe2\x9c\x85" => 'WHITE HEAVY CHECK MARK',
"\xe2\x9c\x8a" => 'RAISED FIST',
"\xe2\x9c\x8b" => 'RAISED HAND',
"\xe2\x9c\x8c" => 'VICTORY HAND',
"\xf0\x9f\x91\x8a" => 'FISTED HAND SIGN',
"\xf0\x9f\x91\x8d" => 'THUMBS UP SIGN',
"\xe2\x98\x9d" => 'WHITE UP POINTING INDEX',
"\xf0\x9f\x91\x86" => 'WHITE UP POINTING BACKHAND INDEX',
"\xf0\x9f\x91\x87" => 'WHITE DOWN POINTING BACKHAND INDEX',
"\xf0\x9f\x91\x88" => 'WHITE LEFT POINTING BACKHAND INDEX',
"\xf0\x9f\x91\x89" => 'WHITE RIGHT POINTING BACKHAND INDEX',
"\xf0\x9f\x91\x8b" => 'WAVING HAND SIGN',
"\xf0\x9f\x91\x8f" => 'CLAPPING HANDS SIGN',
"\xf0\x9f\x91\x8c" => 'OK HAND SIGN',
"\xf0\x9f\x91\x8e" => 'THUMBS DOWN SIGN',
"\xf0\x9f\x91\x90" => 'OPEN HANDS SIGN',
),
'kaomoji' => array(
"0"=>"[\xe9\x9c\xa7]", "1"=>"[\xe5\xa4\x95\xe7\x84\xbc\xe3\x81\x91]", "2"=>"[\xe8\x99\xb9]", "3"=>"[\xe9\x9b\xaa\xe7\xb5\x90\xe6\x99\xb6]",
"4"=>"[\xe7\x81\xab\xe5\xb1\xb1]", "5"=>"[\xe5\x9c\xb0\xe7\x90\x83]", "6"=>"\xe2\x97\x8f", "7"=>"\xe2\x97\x8b", "8"=>"[\xe2\x98\x86]",
"9"=>"\xe2\x98\x86\xe5\xbd\xa1", "10"=>"[\xe8\x85\x95\xe6\x99\x82\xe8\xa8\x88]", "11"=>"[\xe7\xa0\x82\xe6\x99\x82\xe8\xa8\x88]", "12"=>"[\xe8\x9b\x87\xe4\xbd\xbf\xe5\xba\xa7]", "13"=>"[\xe3\x83\x90\xe3\x83\xa9]",
"14"=>"[\xe9\xa2\xa8\xe3\x81\xab\xe8\x88\x9e\xe3\x81\x86\xe8\x91\x89]", "15"=>"[\xe3\x83\x8f\xe3\x82\xa4\xe3\x83\x93\xe3\x82\xb9\xe3\x82\xab\xe3\x82\xb9]", "16"=>"[\xe3\x81\xb2\xe3\x81\xbe\xe3\x82\x8f\xe3\x82\x8a]", "17"=>"[\xe3\x83\xa4\xe3\x82\xb7]", "18"=>"[\xe3\x82\xb5\xe3\x83\x9c\xe3\x83\x86\xe3\x83\xb3]",
"19"=>"[\xe7\xa8\xb2\xe7\xa9\x82]", "20"=>"[\xe3\x81\xa8\xe3\x81\x86\xe3\x82\x82\xe3\x82\x8d\xe3\x81\x93\xe3\x81\x97]", "21"=>"[\xe3\x82\xad\xe3\x83\x8e\xe3\x82\xb3]", "22"=>"[\xe6\xa0\x97]", "23"=>"[\xe8\x8a\xb1]",
"24"=>"[\xe3\x81\x95\xe3\x81\x8f\xe3\x82\x89\xe3\x82\x93\xe3\x81\xbc]", "25"=>"[\xe3\x83\x90\xe3\x83\x8a\xe3\x83\x8a]", "26"=>"[\xe3\x81\xbf\xe3\x81\x8b\xe3\x82\x93]", "27"=>"[\xe3\x82\xa4\xe3\x83\x81\xe3\x82\xb4]", "28"=>"[\xe3\x82\xb9\xe3\x82\xa4\xe3\x82\xab]",
"29"=>"[\xe3\x83\x88\xe3\x83\x9e\xe3\x83\x88]", "30"=>"[\xe3\x83\x8a\xe3\x82\xb9]", "31"=>"[\xe3\x83\xa1\xe3\x83\xad\xe3\x83\xb3]", "32"=>"[\xe3\x83\x91\xe3\x82\xa4\xe3\x83\x8a\xe3\x83\x83\xe3\x83\x97\xe3\x83\xab]", "33"=>"[\xe3\x83\x96\xe3\x83\x89\xe3\x82\xa6]",
"34"=>"[\xe3\x83\xa2\xe3\x83\xa2]", "35"=>"[\xe9\xbc\xbb]", "36"=>"[\xe3\x83\x9e\xe3\x83\x8b\xe3\x82\xad\xe3\x83\xa5\xe3\x82\xa2]", "37"=>"[\xe3\x82\xa8\xe3\x82\xb9\xe3\x83\x86]", "38"=>"[\xe5\xba\x8a\xe5\xb1\x8b]",
"39"=>"\xe3\x80\x93", "40"=>"[\xe5\xae\xb6\xe6\x97\x8f]", "41"=>"[\xe3\x82\xab\xe3\x83\x83\xe3\x83\x97\xe3\x83\xab]", "42"=>"[\xe8\xad\xa6\xe5\xae\x98]", "43"=>"[\xe3\x83\x90\xe3\x83\x8b\xe3\x83\xbc]",
"44"=>"[\xe8\x8a\xb1\xe5\xab\x81]", "45"=>"[\xe7\x99\xbd\xe4\xba\xba]", "46"=>"[\xe4\xb8\xad\xe5\x9b\xbd\xe4\xba\xba]", "47"=>"[\xe3\x82\xa4\xe3\x83\xb3\xe3\x83\x89\xe4\xba\xba]", "48"=>"[\xe3\x81\x8a\xe3\x81\x98\xe3\x81\x84\xe3\x81\x95\xe3\x82\x93]",
"49"=>"[\xe3\x81\x8a\xe3\x81\xb0\xe3\x81\x82\xe3\x81\x95\xe3\x82\x93]", "50"=>"[\xe8\xb5\xa4\xe3\x81\xa1\xe3\x82\x83\xe3\x82\x93]", "51"=>"[\xe5\xb7\xa5\xe4\xba\x8b\xe7\x8f\xbe\xe5\xa0\xb4\xe3\x81\xae\xe4\xba\xba]", "52"=>"[\xe3\x81\x8a\xe5\xa7\xab\xe6\xa7\x98]", "53"=>"[\xe3\x81\xaa\xe3\x81\xbe\xe3\x81\xaf\xe3\x81\x92]",
"54"=>"[\xe5\xa4\xa9\xe7\x8b\x97]", "55"=>"[\xe3\x81\x8a\xe5\x8c\x96\xe3\x81\x91]", "56"=>"[\xe5\xa4\xa9\xe4\xbd\xbf]", "57"=>"[UFO]", "58"=>"[\xe5\xae\x87\xe5\xae\x99\xe4\xba\xba]",
"59"=>"[\xe3\x82\xa2\xe3\x82\xaf\xe3\x83\x9e]", "60"=>"[\xe3\x83\x89\xe3\x82\xaf\xe3\x83\xad]", "61"=>"[\xe6\xa1\x88\xe5\x86\x85]", "62"=>"[\xe8\xa1\x9b\xe5\x85\xb5]", "63"=>"[\xe3\x83\x80\xe3\x83\xb3\xe3\x82\xb9]",
"64"=>"[\xe3\x82\xab\xe3\x82\xbf\xe3\x83\x84\xe3\x83\xa0\xe3\x83\xaa]", "65"=>"[\xe3\x83\x98\xe3\x83\x93]", "66"=>"[\xe3\x83\x8b\xe3\x83\xaf\xe3\x83\x88\xe3\x83\xaa]", "67"=>"[\xe3\x82\xa4\xe3\x83\x8e\xe3\x82\xb7\xe3\x82\xb7]", "68"=>"[\xe3\x83\xa9\xe3\x82\xaf\xe3\x83\x80]",
"69"=>"[\xe3\x82\xbe\xe3\x82\xa6]", "70"=>"[\xe3\x82\xb3\xe3\x82\xa2\xe3\x83\xa9]", "71"=>"[\xe3\x82\xb5\xe3\x83\xab]", "72"=>"[\xe3\x83\x92\xe3\x83\x84\xe3\x82\xb8]", "73"=>"[\xe3\x82\xbf\xe3\x82\xb3]",
"74"=>"[\xe5\xb7\xbb\xe8\xb2\x9d]", "75"=>"[\xe3\x82\xb2\xe3\x82\xb8\xe3\x82\xb2\xe3\x82\xb8]", "76"=>"[\xe3\x82\xa2\xe3\x83\xaa]", "77"=>"[\xe3\x83\x9f\xe3\x83\x84\xe3\x83\x90\xe3\x83\x81]", "78"=>"[\xe3\x81\xa6\xe3\x82\x93\xe3\x81\xa8\xe3\x81\x86\xe8\x99\xab]",
"79"=>"[\xe3\x82\xab\xe3\x83\xa1]", "80"=>"[\xe3\x82\xa4\xe3\x83\xab\xe3\x82\xab]", "81"=>"[\xe3\x83\x8d\xe3\x82\xba\xe3\x83\x9f]", "82"=>"[\xe3\x83\x88\xe3\x83\xa9]", "83"=>"[\xe3\x82\xaf\xe3\x82\xb8\xe3\x83\xa9]",
"84"=>"[\xe3\x82\xaf\xe3\x83\x9e]", "85"=>"[\xe3\x83\x8f\xe3\x83\xa0\xe3\x82\xb9\xe3\x82\xbf\xe3\x83\xbc]", "86"=>"[\xe7\x89\x9b]", "87"=>"[\xe3\x82\xa6\xe3\x82\xb5\xe3\x82\xae]", "88"=>"[\xe3\x82\xab\xe3\x82\xa8\xe3\x83\xab]",
"89"=>"[\xe8\xbe\xb0]", "90"=>"[\xe3\x83\x91\xe3\x83\xb3\xe3\x83\x80]", "91"=>"[\xe9\xa2\xa8\xe9\x82\xaa\xe3\x81\xb2\xe3\x81\x8d]", "92"=>"m(_ _)m", "93"=>"(/_\xef\xbc\xbc)",
"94"=>"(\xe3\x83\xbb\xc3\x97\xe3\x83\xbb)", "95"=>"|(\xe3\x83\xbb\xc3\x97\xe3\x83\xbb)|", "96"=>"(^-^)/", "97"=>"\xef\xbc\xbc(^o^)\xef\xbc\x8f", "98"=>"(>\xe4\xba\xba<)",
"99"=>"[\xe6\x95\x99\xe4\xbc\x9a]", "100"=>"[\xe5\x99\xb4\xe6\xb0\xb4]", "101"=>"[\xe3\x83\x87\xe3\x83\x91\xe3\x83\xbc\xe3\x83\x88]", "102"=>"[\xe5\x9f\x8e]", "103"=>"[\xe5\xb7\xa5\xe5\xa0\xb4]",
"104"=>"[\xe6\x9d\xb1\xe4\xba\xac\xe3\x82\xbf\xe3\x83\xaf\xe3\x83\xbc]", "105"=>"[\xe8\x87\xaa\xe7\x94\xb1\xe3\x81\xae\xe5\xa5\xb3\xe7\xa5\x9e]", "106"=>"[\xe6\x97\xa5\xe6\x9c\xac\xe5\x9c\xb0\xe5\x9b\xb3]", "107"=>"[\xe3\x83\xa2\xe3\x82\xa2\xe3\x82\xa4]", "108"=>"[\xe3\x83\x96\xe3\x83\xbc\xe3\x83\x84]",
"109"=>"[\xe3\x83\xa1\xe3\x82\xac\xe3\x83\x8d]", "110"=>"[\xe3\x82\xb8\xe3\x83\xbc\xe3\x83\xb3\xe3\x82\xba]", "111"=>"[\xe3\x83\x8d\xe3\x82\xaf\xe3\x82\xbf\xe3\x82\xa4]", "112"=>"[\xe5\xb8\xbd\xe5\xad\x90]", "113"=>"[\xe3\x83\x89\xe3\x83\xac\xe3\x82\xb9]",
"114"=>"[\xe7\x9d\x80\xe7\x89\xa9]", "115"=>"[\xe3\x83\x93\xe3\x82\xad\xe3\x83\x8b]", "116"=>"[\xe8\xb2\xa1\xe5\xb8\x83]", "117"=>"[\xe3\x81\xb5\xe3\x81\x8f\xe3\x82\x8d]", "118"=>"[$\xef\xbf\xa5]",
"119"=>"[\xe6\xa0\xaa\xe4\xbe\xa1]", "120"=>"[\xe3\x82\xab\xe3\x83\xbc\xe3\x83\x89]", "121"=>"\xef\xbf\xa5", "122"=>"[\xe9\xa3\x9b\xe3\x82\x93\xe3\x81\xa7\xe3\x81\x84\xe3\x81\x8f\xe3\x81\x8a\xe9\x87\x91]", "123"=>"[\xe4\xb8\xad\xe5\x9b\xbd]",
"124"=>"[\xe3\x83\x89\xe3\x82\xa4\xe3\x83\x84]", "125"=>"[\xe3\x82\xb9\xe3\x83\x9a\xe3\x82\xa4\xe3\x83\xb3]", "126"=>"[\xe3\x83\x95\xe3\x83\xa9\xe3\x83\xb3\xe3\x82\xb9]", "127"=>"[\xe3\x82\xa4\xe3\x82\xae\xe3\x83\xaa\xe3\x82\xb9]", "128"=>"[\xe3\x82\xa4\xe3\x82\xbf\xe3\x83\xaa\xe3\x82\xa2]",
"129"=>"[\xe6\x97\xa5\xe3\x81\xae\xe4\xb8\xb8]", "130"=>"[\xe9\x9f\x93\xe5\x9b\xbd]", "131"=>"[\xe3\x83\xad\xe3\x82\xb7\xe3\x82\xa2]", "132"=>"[USA]", "133"=>"[\xe7\x82\x8e]",
"134"=>"[\xe6\x87\x90\xe4\xb8\xad\xe9\x9b\xbb\xe7\x81\xaf]", "135"=>"[\xe3\x83\xac\xe3\x83\xb3\xe3\x83\x81]", "136"=>"[\xe3\x83\x8f\xe3\x83\xb3\xe3\x83\x9e\xe3\x83\xbc]", "137"=>"[\xe3\x83\x8d\xe3\x82\xb8]", "138"=>"[\xe5\x8c\x85\xe4\xb8\x81]",
"139"=>"[\xe3\x83\x94\xe3\x82\xb9\xe3\x83\x88\xe3\x83\xab]", "140"=>"[\xe5\x8d\xa0\xe3\x81\x84]", "141"=>"[\xe8\x8b\xa5\xe8\x91\x89\xe3\x83\x9e\xe3\x83\xbc\xe3\x82\xaf]", "142"=>"[\xe6\xb3\xa8\xe5\xb0\x84]", "143"=>"[\xe8\x96\xac]",
"144"=>"[A]", "145"=>"[B]", "146"=>"[AB]", "147"=>"[O]", "148"=>"[\xe3\x82\xb5\xe3\x83\xb3\xe3\x82\xbf]",
"149"=>"[\xe7\xa5\x9d\xe6\x97\xa5]", "150"=>"[\xe8\x8a\xb1\xe7\x81\xab]", "151"=>"[\xe9\xa2\xa8\xe8\x88\xb9]", "152"=>"[\xe3\x82\xaf\xe3\x83\xa9\xe3\x83\x83\xe3\x82\xab\xe3\x83\xbc]", "153"=>"[\xe9\x96\x80\xe6\x9d\xbe]",
"154"=>"[\xe3\x81\xb2\xe3\x81\xaa\xe7\xa5\xad\xe3\x82\x8a]", "155"=>"[\xe5\x8d\x92\xe6\xa5\xad\xe5\xbc\x8f]", "156"=>"[\xe3\x83\xa9\xe3\x83\xb3\xe3\x83\x89\xe3\x82\xbb\xe3\x83\xab]", "157"=>"[\xe3\x81\x93\xe3\x81\x84\xe3\x81\xae\xe3\x81\xbc\xe3\x82\x8a]", "158"=>"[\xe7\xb7\x9a\xe9\xa6\x99\xe8\x8a\xb1\xe7\x81\xab]",
"159"=>"[\xe9\xa2\xa8\xe9\x88\xb4]", "160"=>"[\xe3\x83\x8f\xe3\x83\xad\xe3\x82\xa6\xe3\x82\xa3\xe3\x83\xb3]", "161"=>"[\xe3\x82\xaa\xe3\x83\xa1\xe3\x83\x87\xe3\x83\x88\xe3\x82\xa6]", "162"=>"[\xe4\xb8\x83\xe5\xa4\x95]", "163"=>"[\xe3\x81\x8a\xe6\x9c\x88\xe8\xa6\x8b]",
"164"=>"[\xe3\x83\x9d\xe3\x82\xb1\xe3\x83\x99\xe3\x83\xab]", "165"=>"[\xe6\x96\xb0\xe8\x81\x9e]", "166"=>"[\xe3\x82\xb9\xe3\x83\x94\xe3\x83\xbc\xe3\x82\xab]", "167"=>"[\xe3\x83\xa1\xe3\x82\xac\xe3\x83\x9b\xe3\x83\xb3]", "168"=>"[\xe3\x82\xa2\xe3\x83\xb3\xe3\x83\x86\xe3\x83\x8a]",
"169"=>"[\xe9\x80\x81\xe4\xbf\xa1BOX]", "170"=>"[\xe5\x8f\x97\xe4\xbf\xa1BOX]", "171"=>"[ABCD]", "172"=>"[abcd]", "173"=>"[1234]",
"174"=>"[\xe8\xa8\x98\xe5\x8f\xb7]", "175"=>"[ABC]", "176"=>"[\xe3\x83\x9a\xe3\x83\xb3]", "177"=>"[\xe3\x81\x84\xe3\x81\x99]", "178"=>"[\xe3\x82\xaf\xe3\x83\xaa\xe3\x83\x83\xe3\x83\x97]",
"179"=>"[MD]", "180"=>"[\xe3\x83\x95\xe3\x83\xad\xe3\x83\x83\xe3\x83\x94\xe3\x83\xbc]", "181"=>"[\xe7\x94\xbb\xe3\x81\xb3\xe3\x82\x87\xe3\x81\x86]", "182"=>"[\xe3\x82\xab\xe3\x83\xac\xe3\x83\xb3\xe3\x83\x80\xe3\x83\xbc]", "183"=>"[\xe3\x83\x95\xe3\x82\xa9\xe3\x83\xab\xe3\x83\x80]",
"184"=>"[\xe5\x90\x8d\xe6\x9c\xad]", "185"=>"[\xe3\x82\xb9\xe3\x82\xaf\xe3\x83\xad\xe3\x83\xbc\xe3\x83\xab]", "186"=>"[\xe3\x82\xb0\xe3\x83\xa9\xe3\x83\x95]", "187"=>"[\xe5\xae\x9a\xe8\xa6\x8f]", "188"=>"[\xe4\xb8\x89\xe8\xa7\x92\xe5\xae\x9a\xe8\xa6\x8f]",
"189"=>"[\xe3\x82\xb9\xe3\x83\x8e\xe3\x83\x9c]", "190"=>"[\xe3\x83\x88\xe3\x83\xad\xe3\x83\x95\xe3\x82\xa3\xe3\x83\xbc]", "191"=>"[\xe3\x83\x95\xe3\x83\x83\xe3\x83\x88\xe3\x83\x9c\xe3\x83\xbc\xe3\x83\xab]", "192"=>"[\xe6\xb0\xb4\xe6\xb3\xb3]", "193"=>"[\xe3\x83\x90\xe3\x82\xb9\xe5\x81\x9c]",
"194"=>"[\xe9\xa7\x85]", "195"=>"[\xe3\x83\xad\xe3\x82\xb1\xe3\x83\x83\xe3\x83\x88]", "196"=>"[\xe3\x83\x88\xe3\x83\xa9\xe3\x83\x83\xe3\x82\xaf]", "197"=>"[\xe6\xb6\x88\xe9\x98\xb2\xe8\xbb\x8a]", "198"=>"[\xe6\x95\x91\xe6\x80\xa5\xe8\xbb\x8a]",
"199"=>"[\xe3\x83\x91\xe3\x83\x88\xe3\x82\xab\xe3\x83\xbc]", "200"=>"[\xe5\xb7\xa5\xe4\xba\x8b\xe4\xb8\xad]", "201"=>"[\xe3\x82\xad\xe3\x83\xa3\xe3\x83\xb3\xe3\x83\x97]", "202"=>"[\xe8\xa6\xb3\xe8\xa6\xa7\xe8\xbb\x8a]", "203"=>"[\xe3\x82\xb8\xe3\x82\xa7\xe3\x83\x83\xe3\x83\x88\xe3\x82\xb3\xe3\x83\xbc\xe3\x82\xb9\xe3\x82\xbf\xe3\x83\xbc]",
"204"=>"[\xe3\x82\xa4\xe3\x83\x99\xe3\x83\xb3\xe3\x83\x88]", "205"=>"[\xe6\xbc\x94\xe5\x8a\x87]", "206"=>"[\xe3\x82\xb2\xe3\x83\xbc\xe3\x83\xa0]", "207"=>"[\xe9\xba\xbb\xe9\x9b\x80]", "208"=>"[\xe7\x9a\x84\xe4\xb8\xad]",
"209"=>"[777]", "210"=>"[\xe3\x83\x93\xe3\x83\xaa\xe3\x83\xa4\xe3\x83\xbc\xe3\x83\x89]", "211"=>"[\xe3\x82\xb5\xe3\x82\xa4\xe3\x82\xb3\xe3\x83\xad]", "212"=>"[\xe3\x83\x9c\xe3\x83\xbc\xe3\x83\xaa\xe3\x83\xb3\xe3\x82\xb0]", "213"=>"[\xe8\x8a\xb1\xe6\x9c\xad]",
"214"=>"[\xe3\x82\xb8\xe3\x83\xa7\xe3\x83\xbc\xe3\x82\xab\xe3\x83\xbc]", "215"=>"[\xe3\x82\xb5\xe3\x83\x83\xe3\x82\xaf\xe3\x82\xb9]", "216"=>"[\xe3\x82\xae\xe3\x82\xbf\xe3\x83\xbc]", "217"=>"[\xe3\x83\x94\xe3\x82\xa2\xe3\x83\x8e]", "218"=>"[\xe3\x83\x88\xe3\x83\xa9\xe3\x83\xb3\xe3\x83\x9a\xe3\x83\x83\xe3\x83\x88]",
"219"=>"[\xe3\x83\x90\xe3\x82\xa4\xe3\x82\xaa\xe3\x83\xaa\xe3\x83\xb3]", "220"=>"[\xe6\xad\x8c\xe8\xa8\x98\xe5\x8f\xb7]", "221"=>"[\xe3\x83\xa9\xe3\x82\xb8\xe3\x82\xaa]", "222"=>"[\xe3\x83\x93\xe3\x83\x87\xe3\x82\xaa]", "223"=>"[\xe8\x8a\xb1\xe6\x9d\x9f]",
"224"=>"[\xe7\xb5\x90\xe5\xa9\x9a\xe5\xbc\x8f]", "225"=>"[18\xe7\xa6\x81]", "226"=>"[\xef\xbd\x89]", "227"=>"[10]", "228"=>"[\xe3\x83\x90\xe3\x83\xaa3]",
"229"=>"[\xe3\x83\x9e\xe3\x83\x8a\xe3\x83\xbc\xe3\x83\xa2\xe3\x83\xbc\xe3\x83\x89]", "230"=>"[\xe3\x82\xb1\xe3\x83\xbc\xe3\x82\xbf\xe3\x82\xa4OFF]", "231"=>"[\xe3\x83\x95\xe3\x83\xa9\xe3\x82\xa4\xe3\x83\x91\xe3\x83\xb3]", "232"=>"[\xe3\x82\xbd\xe3\x83\x95\xe3\x83\x88\xe3\x82\xaf\xe3\x83\xaa\xe3\x83\xbc\xe3\x83\xa0]", "233"=>"[\xe3\x83\x9d\xe3\x83\x86\xe3\x83\x88]",
"234"=>"[\xe3\x81\xa0\xe3\x82\x93\xe3\x81\x94]", "235"=>"[\xe3\x81\x9b\xe3\x82\x93\xe3\x81\xb9\xe3\x81\x84]", "236"=>"[\xe3\x83\x91\xe3\x82\xb9\xe3\x82\xbf]", "237"=>"[\xe3\x82\xab\xe3\x83\xac\xe3\x83\xbc]", "238"=>"[\xe3\x81\x8a\xe3\x81\xa7\xe3\x82\x93]",
"239"=>"[\xe3\x81\x99\xe3\x81\x97]", "240"=>"[\xe5\xbc\x81\xe5\xbd\x93]", "241"=>"[\xe9\x8d\x8b]", "242"=>"[\xe3\x82\xab\xe3\x82\xad\xe6\xb0\xb7]", "243"=>"[\xe8\x82\x89]",
"244"=>"[\xe3\x81\xaa\xe3\x82\x8b\xe3\x81\xa8]", "245"=>"[\xe3\x82\x84\xe3\x81\x8d\xe3\x81\x84\xe3\x82\x82]", "246"=>"[\xe3\x83\x94\xe3\x82\xb6]", "247"=>"[\xe3\x83\x81\xe3\x82\xad\xe3\x83\xb3]", "248"=>"[\xe3\x82\xa2\xe3\x82\xa4\xe3\x82\xb9\xe3\x82\xaf\xe3\x83\xaa\xe3\x83\xbc\xe3\x83\xa0]",
"249"=>"[\xe3\x83\x89\xe3\x83\xbc\xe3\x83\x8a\xe3\x83\x84]", "250"=>"[\xe3\x82\xaf\xe3\x83\x83\xe3\x82\xad\xe3\x83\xbc]", "251"=>"[\xe3\x83\x81\xe3\x83\xa7\xe3\x82\xb3]", "252"=>"[\xe3\x82\xad\xe3\x83\xa3\xe3\x83\xb3\xe3\x83\x87\xe3\x82\xa3]", "253"=>"[\xe3\x83\x97\xe3\x83\xaa\xe3\x83\xb3]",
"254"=>"[\xe3\x83\x8f\xe3\x83\x81\xe3\x83\x9f\xe3\x83\x84]", "255"=>"[\xe3\x82\xa8\xe3\x83\x93\xe3\x83\x95\xe3\x83\xa9\xe3\x82\xa4]", "256"=>"\xe2\x87\x94", "257"=>"\xe2\x86\x91\xe2\x86\x93", "258"=>"[\xe2\x86\x91]",
"259"=>"[\xe2\x86\x93]", "260"=>"[\xe2\x86\x92]", "261"=>"[\xe2\x86\x90]", "262"=>"[>]", "263"=>"[<]",
"264"=>"[>>]", "265"=>"[<<]", "266"=>"\xe2\x96\xb2", "267"=>"\xe2\x96\xbc", "268"=>"[\xc3\x97]",
"269"=>"\xef\xbc\x81\xef\xbc\x9f", "270"=>"\xef\xbc\x81\xef\xbc\x81", "271"=>"[\xef\xbc\x9f]", "272"=>"\xef\xbd\x9e", "273"=>"[\xe3\x83\x95\xe3\x83\xaa\xe3\x83\xbc\xe3\x83\x80\xe3\x82\xa4\xe3\x83\xa4\xe3\x83\xab]",
"274"=>"[\xe6\x97\x97]", "275"=>"[\xe2\x99\x82]", "276"=>"[\xe2\x99\x80]", "277"=>"[\xe3\x83\x89\xe3\x82\xa2]", "278"=>"[\xe7\xa6\x81\xe6\xad\xa2]",
"279"=>"[\xe3\x83\x81\xe3\x82\xa7\xe3\x83\x83\xe3\x82\xaf\xe3\x83\x9e\xe3\x83\xbc\xe3\x82\xaf]", "280"=>"[CL]", "281"=>"[COOL]", "282"=>"[FREE]", "283"=>"[NG]",
"284"=>"[SOS]", "285"=>"[UP!]", "286"=>"[VS]", "287"=>"[\xe3\x82\xb3\xe3\x82\xb3]", "288"=>"[\xe3\x82\xb5\xe3\x83\xbc\xe3\x83\x93\xe3\x82\xb9]",
"289"=>"[\xe7\xa6\x81]", "290"=>"[\xe5\x90\x88]", "291"=>"[\xe6\x9c\x89]", "292"=>"[\xe7\x84\xa1]", "293"=>"[\xe6\x9c\x88]",
"294"=>"[\xe7\x94\xb3]", "295"=>"[\xe5\x89\xb2]", "296"=>"[\xe6\x8c\x87]", "297"=>"[\xe5\x96\xb6]", "298"=>"[\xe7\xa5\x9d]",
"299"=>"[\xe5\xbe\x97]", "300"=>"[\xe5\x8f\xaf]", "301"=>"[\xef\xbc\x8b]", "302"=>"[\xef\xbc\x8d]", "303"=>"[\xc3\xb7]",
"304"=>"[\xe3\x83\x89\xe3\x83\xb3\xe3\x83\x83]", "305"=>"[\xe3\x82\xa6\xe3\x83\xb3\xe3\x83\x81]", "306"=>"[\xe5\x8a\x9b\xe3\x81\x93\xe3\x81\xb6]", "307"=>"[\xe3\x82\xaf\xe3\x83\xa9\xe3\x82\xaf\xe3\x83\xa9]", "308"=>"[\xe3\x83\x95\xe3\x82\xad\xe3\x83\x80\xe3\x82\xb7]",
"309"=>"\xe2\x96\xa0", "310"=>"\xe2\x97\x86", "311"=>"[\xe8\x8a\xb1\xe4\xb8\xb8]", "312"=>"[100\xe7\x82\xb9]", "313"=>"\xe2\x86\x90\xe2\x94\x98",
"314"=>"\xe2\x94\x94\xe2\x86\x92", "315"=>"[\xe9\x9b\xbb\xe6\xb1\xa0]", "316"=>"[\xe3\x82\xb3\xe3\x83\xb3\xe3\x82\xbb\xe3\x83\xb3\xe3\x83\x88]", "317"=>"[\xe3\x83\xa9\xe3\x82\xb8\xe3\x82\xaa\xe3\x83\x9c\xe3\x82\xbf\xe3\x83\xb3]", "318"=>"[\xe3\x83\x96\xe3\x83\x83\xe3\x82\xaf\xe3\x83\x9e\xe3\x83\xbc\xe3\x82\xaf]",
"319"=>"[\xe3\x83\xaa\xe3\x83\xb3\xe3\x82\xaf]", "320"=>"[\xe2\x86\x90BACK]", "321"=>"[end]", "322"=>"[ON]", "323"=>"[SOON]",
"324"=>"[TOP]", "325"=>"[\xe4\xba\xba\xe5\xb7\xae\xe3\x81\x97\xe6\x8c\x87]", "326"=>"[\xe6\x8b\x8d\xe6\x89\x8b]",
),
'unified_to_docomo' => array(
"\xe2\x98\x80"=>"\xee\x98\xbe", "\xe2\x98\x81"=>"\xee\x98\xbf", "\xe2\x98\x94"=>"\xee\x99\x80", "\xe2\x9b\x84"=>"\xee\x99\x81",
"\xe2\x9a\xa1"=>"\xee\x99\x82", "\xf0\x9f\x8c\x80"=>"\xee\x99\x83", "\xf0\x9f\x8c\x81"=>"\xee\x99\x84", "\xf0\x9f\x8c\x82"=>"\xee\x99\x85", "\xf0\x9f\x8c\x83"=>"\xee\x9a\xb3",
"\xf0\x9f\x8c\x84"=>"\xee\x98\xbe", "\xf0\x9f\x8c\x85"=>"\xee\x98\xbe", "\xf0\x9f\x8c\x86"=>"[\xe5\xa4\x95\xe7\x84\xbc\xe3\x81\x91]", "\xf0\x9f\x8c\x87"=>"\xee\x98\xbe", "\xf0\x9f\x8c\x88"=>"[\xe8\x99\xb9]",
"\xe2\x9d\x84"=>"[\xe9\x9b\xaa\xe7\xb5\x90\xe6\x99\xb6]", "\xe2\x9b\x85"=>"\xee\x98\xbe\xee\x98\xbf", "\xf0\x9f\x8c\x89"=>"\xee\x9a\xb3", "\xf0\x9f\x8c\x8a"=>"\xee\x9c\xbf", "\xf0\x9f\x8c\x8b"=>"[\xe7\x81\xab\xe5\xb1\xb1]",
"\xf0\x9f\x8c\x8c"=>"\xee\x9a\xb3", "\xf0\x9f\x8c\x8f"=>"[\xe5\x9c\xb0\xe7\x90\x83]", "\xf0\x9f\x8c\x91"=>"\xee\x9a\x9c", "\xf0\x9f\x8c\x94"=>"\xee\x9a\x9d", "\xf0\x9f\x8c\x93"=>"\xee\x9a\x9e",
"\xf0\x9f\x8c\x99"=>"\xee\x9a\x9f", "\xf0\x9f\x8c\x95"=>"\xee\x9a\xa0", "\xf0\x9f\x8c\x9b"=>"\xee\x9a\x9e", "\xf0\x9f\x8c\x9f"=>"[\xe2\x98\x86]", "\xf0\x9f\x8c\xa0"=>"\xe2\x98\x86\xe5\xbd\xa1",
"\xf0\x9f\x95\x90"=>"\xee\x9a\xba", "\xf0\x9f\x95\x91"=>"\xee\x9a\xba", "\xf0\x9f\x95\x92"=>"\xee\x9a\xba", "\xf0\x9f\x95\x93"=>"\xee\x9a\xba", "\xf0\x9f\x95\x94"=>"\xee\x9a\xba",
"\xf0\x9f\x95\x95"=>"\xee\x9a\xba", "\xf0\x9f\x95\x96"=>"\xee\x9a\xba", "\xf0\x9f\x95\x97"=>"\xee\x9a\xba", "\xf0\x9f\x95\x98"=>"\xee\x9a\xba", "\xf0\x9f\x95\x99"=>"\xee\x9a\xba",
"\xf0\x9f\x95\x9a"=>"\xee\x9a\xba", "\xf0\x9f\x95\x9b"=>"\xee\x9a\xba", "\xe2\x8c\x9a"=>"\xee\x9c\x9f", "\xe2\x8c\x9b"=>"\xee\x9c\x9c", "\xe2\x8f\xb0"=>"\xee\x9a\xba",
"\xe2\x8f\xb3"=>"\xee\x9c\x9c", "\xe2\x99\x88"=>"\xee\x99\x86", "\xe2\x99\x89"=>"\xee\x99\x87", "\xe2\x99\x8a"=>"\xee\x99\x88", "\xe2\x99\x8b"=>"\xee\x99\x89",
"\xe2\x99\x8c"=>"\xee\x99\x8a", "\xe2\x99\x8d"=>"\xee\x99\x8b", "\xe2\x99\x8e"=>"\xee\x99\x8c", "\xe2\x99\x8f"=>"\xee\x99\x8d", "\xe2\x99\x90"=>"\xee\x99\x8e",
"\xe2\x99\x91"=>"\xee\x99\x8f", "\xe2\x99\x92"=>"\xee\x99\x90", "\xe2\x99\x93"=>"\xee\x99\x91", "\xe2\x9b\x8e"=>"[\xe8\x9b\x87\xe4\xbd\xbf\xe5\xba\xa7]", "\xf0\x9f\x8d\x80"=>"\xee\x9d\x81",
"\xf0\x9f\x8c\xb7"=>"\xee\x9d\x83", "\xf0\x9f\x8c\xb1"=>"\xee\x9d\x86", "\xf0\x9f\x8d\x81"=>"\xee\x9d\x87", "\xf0\x9f\x8c\xb8"=>"\xee\x9d\x88", "\xf0\x9f\x8c\xb9"=>"[\xe3\x83\x90\xe3\x83\xa9]",
"\xf0\x9f\x8d\x82"=>"\xee\x9d\x87", "\xf0\x9f\x8d\x83"=>"[\xe9\xa2\xa8\xe3\x81\xab\xe8\x88\x9e\xe3\x81\x86\xe8\x91\x89]", "\xf0\x9f\x8c\xba"=>"[\xe3\x83\x8f\xe3\x82\xa4\xe3\x83\x93\xe3\x82\xb9\xe3\x82\xab\xe3\x82\xb9]", "\xf0\x9f\x8c\xbb"=>"[\xe3\x81\xb2\xe3\x81\xbe\xe3\x82\x8f\xe3\x82\x8a]", "\xf0\x9f\x8c\xb4"=>"[\xe3\x83\xa4\xe3\x82\xb7]",
"\xf0\x9f\x8c\xb5"=>"[\xe3\x82\xb5\xe3\x83\x9c\xe3\x83\x86\xe3\x83\xb3]", "\xf0\x9f\x8c\xbe"=>"[\xe7\xa8\xb2\xe7\xa9\x82]", "\xf0\x9f\x8c\xbd"=>"[\xe3\x81\xa8\xe3\x81\x86\xe3\x82\x82\xe3\x82\x8d\xe3\x81\x93\xe3\x81\x97]", "\xf0\x9f\x8d\x84"=>"[\xe3\x82\xad\xe3\x83\x8e\xe3\x82\xb3]", "\xf0\x9f\x8c\xb0"=>"[\xe6\xa0\x97]",
"\xf0\x9f\x8c\xbc"=>"[\xe8\x8a\xb1]", "\xf0\x9f\x8c\xbf"=>"\xee\x9d\x81", "\xf0\x9f\x8d\x92"=>"\xee\x9d\x82", "\xf0\x9f\x8d\x8c"=>"\xee\x9d\x84", "\xf0\x9f\x8d\x8e"=>"\xee\x9d\x85",
"\xf0\x9f\x8d\x8a"=>"[\xe3\x81\xbf\xe3\x81\x8b\xe3\x82\x93]", "\xf0\x9f\x8d\x93"=>"[\xe3\x82\xa4\xe3\x83\x81\xe3\x82\xb4]", "\xf0\x9f\x8d\x89"=>"[\xe3\x82\xb9\xe3\x82\xa4\xe3\x82\xab]", "\xf0\x9f\x8d\x85"=>"[\xe3\x83\x88\xe3\x83\x9e\xe3\x83\x88]", "\xf0\x9f\x8d\x86"=>"[\xe3\x83\x8a\xe3\x82\xb9]",
"\xf0\x9f\x8d\x88"=>"[\xe3\x83\xa1\xe3\x83\xad\xe3\x83\xb3]", "\xf0\x9f\x8d\x8d"=>"[\xe3\x83\x91\xe3\x82\xa4\xe3\x83\x8a\xe3\x83\x83\xe3\x83\x97\xe3\x83\xab]", "\xf0\x9f\x8d\x87"=>"[\xe3\x83\x96\xe3\x83\x89\xe3\x82\xa6]", "\xf0\x9f\x8d\x91"=>"[\xe3\x83\xa2\xe3\x83\xa2]", "\xf0\x9f\x8d\x8f"=>"\xee\x9d\x85",
"\xf0\x9f\x91\x80"=>"\xee\x9a\x91", "\xf0\x9f\x91\x82"=>"\xee\x9a\x92", "\xf0\x9f\x91\x83"=>"[\xe9\xbc\xbb]", "\xf0\x9f\x91\x84"=>"\xee\x9b\xb9", "\xf0\x9f\x91\x85"=>"\xee\x9c\xa8",
"\xf0\x9f\x92\x84"=>"\xee\x9c\x90", "\xf0\x9f\x92\x85"=>"[\xe3\x83\x9e\xe3\x83\x8b\xe3\x82\xad\xe3\x83\xa5\xe3\x82\xa2]", "\xf0\x9f\x92\x86"=>"[\xe3\x82\xa8\xe3\x82\xb9\xe3\x83\x86]", "\xf0\x9f\x92\x87"=>"\xee\x99\xb5", "\xf0\x9f\x92\x88"=>"[\xe5\xba\x8a\xe5\xb1\x8b]",
"\xf0\x9f\x91\xa4"=>"\xee\x9a\xb1", "\xf0\x9f\x91\xa6"=>"\xee\x9b\xb0", "\xf0\x9f\x91\xa7"=>"\xee\x9b\xb0", "\xf0\x9f\x91\xa8"=>"\xee\x9b\xb0", "\xf0\x9f\x91\xa9"=>"\xee\x9b\xb0",
"\xf0\x9f\x91\xaa"=>"[\xe5\xae\xb6\xe6\x97\x8f]", "\xf0\x9f\x91\xab"=>"[\xe3\x82\xab\xe3\x83\x83\xe3\x83\x97\xe3\x83\xab]", "\xf0\x9f\x91\xae"=>"[\xe8\xad\xa6\xe5\xae\x98]", "\xf0\x9f\x91\xaf"=>"[\xe3\x83\x90\xe3\x83\x8b\xe3\x83\xbc]", "\xf0\x9f\x91\xb0"=>"[\xe8\x8a\xb1\xe5\xab\x81]",
"\xf0\x9f\x91\xb1"=>"[\xe7\x99\xbd\xe4\xba\xba]", "\xf0\x9f\x91\xb2"=>"[\xe4\xb8\xad\xe5\x9b\xbd\xe4\xba\xba]", "\xf0\x9f\x91\xb3"=>"[\xe3\x82\xa4\xe3\x83\xb3\xe3\x83\x89\xe4\xba\xba]", "\xf0\x9f\x91\xb4"=>"[\xe3\x81\x8a\xe3\x81\x98\xe3\x81\x84\xe3\x81\x95\xe3\x82\x93]", "\xf0\x9f\x91\xb5"=>"[\xe3\x81\x8a\xe3\x81\xb0\xe3\x81\x82\xe3\x81\x95\xe3\x82\x93]",
"\xf0\x9f\x91\xb6"=>"[\xe8\xb5\xa4\xe3\x81\xa1\xe3\x82\x83\xe3\x82\x93]", "\xf0\x9f\x91\xb7"=>"[\xe5\xb7\xa5\xe4\xba\x8b\xe7\x8f\xbe\xe5\xa0\xb4\xe3\x81\xae\xe4\xba\xba]", "\xf0\x9f\x91\xb8"=>"[\xe3\x81\x8a\xe5\xa7\xab\xe6\xa7\x98]", "\xf0\x9f\x91\xb9"=>"[\xe3\x81\xaa\xe3\x81\xbe\xe3\x81\xaf\xe3\x81\x92]", "\xf0\x9f\x91\xba"=>"[\xe5\xa4\xa9\xe7\x8b\x97]",
"\xf0\x9f\x91\xbb"=>"[\xe3\x81\x8a\xe5\x8c\x96\xe3\x81\x91]", "\xf0\x9f\x91\xbc"=>"[\xe5\xa4\xa9\xe4\xbd\xbf]", "\xf0\x9f\x91\xbd"=>"[UFO]", "\xf0\x9f\x91\xbe"=>"[\xe5\xae\x87\xe5\xae\x99\xe4\xba\xba]", "\xf0\x9f\x91\xbf"=>"[\xe3\x82\xa2\xe3\x82\xaf\xe3\x83\x9e]",
"\xf0\x9f\x92\x80"=>"[\xe3\x83\x89\xe3\x82\xaf\xe3\x83\xad]", "\xf0\x9f\x92\x81"=>"[\xe6\xa1\x88\xe5\x86\x85]", "\xf0\x9f\x92\x82"=>"[\xe8\xa1\x9b\xe5\x85\xb5]", "\xf0\x9f\x92\x83"=>"[\xe3\x83\x80\xe3\x83\xb3\xe3\x82\xb9]", "\xf0\x9f\x90\x8c"=>"\xee\x9d\x8e",
"\xf0\x9f\x90\x8d"=>"[\xe3\x83\x98\xe3\x83\x93]", "\xf0\x9f\x90\x8e"=>"\xee\x9d\x94", "\xf0\x9f\x90\x94"=>"[\xe3\x83\x8b\xe3\x83\xaf\xe3\x83\x88\xe3\x83\xaa]", "\xf0\x9f\x90\x97"=>"[\xe3\x82\xa4\xe3\x83\x8e\xe3\x82\xb7\xe3\x82\xb7]", "\xf0\x9f\x90\xab"=>"[\xe3\x83\xa9\xe3\x82\xaf\xe3\x83\x80]",
"\xf0\x9f\x90\x98"=>"[\xe3\x82\xbe\xe3\x82\xa6]", "\xf0\x9f\x90\xa8"=>"[\xe3\x82\xb3\xe3\x82\xa2\xe3\x83\xa9]", "\xf0\x9f\x90\x92"=>"[\xe3\x82\xb5\xe3\x83\xab]", "\xf0\x9f\x90\x91"=>"[\xe3\x83\x92\xe3\x83\x84\xe3\x82\xb8]", "\xf0\x9f\x90\x99"=>"[\xe3\x82\xbf\xe3\x82\xb3]",
"\xf0\x9f\x90\x9a"=>"[\xe5\xb7\xbb\xe8\xb2\x9d]", "\xf0\x9f\x90\x9b"=>"[\xe3\x82\xb2\xe3\x82\xb8\xe3\x82\xb2\xe3\x82\xb8]", "\xf0\x9f\x90\x9c"=>"[\xe3\x82\xa2\xe3\x83\xaa]", "\xf0\x9f\x90\x9d"=>"[\xe3\x83\x9f\xe3\x83\x84\xe3\x83\x90\xe3\x83\x81]", "\xf0\x9f\x90\x9e"=>"[\xe3\x81\xa6\xe3\x82\x93\xe3\x81\xa8\xe3\x81\x86\xe8\x99\xab]",
"\xf0\x9f\x90\xa0"=>"\xee\x9d\x91", "\xf0\x9f\x90\xa1"=>"\xee\x9d\x91", "\xf0\x9f\x90\xa2"=>"[\xe3\x82\xab\xe3\x83\xa1]", "\xf0\x9f\x90\xa4"=>"\xee\x9d\x8f", "\xf0\x9f\x90\xa5"=>"\xee\x9d\x8f",
"\xf0\x9f\x90\xa6"=>"\xee\x9d\x8f", "\xf0\x9f\x90\xa3"=>"\xee\x9d\x8f", "\xf0\x9f\x90\xa7"=>"\xee\x9d\x90", "\xf0\x9f\x90\xa9"=>"\xee\x9a\xa1", "\xf0\x9f\x90\x9f"=>"\xee\x9d\x91",
"\xf0\x9f\x90\xac"=>"[\xe3\x82\xa4\xe3\x83\xab\xe3\x82\xab]", "\xf0\x9f\x90\xad"=>"[\xe3\x83\x8d\xe3\x82\xba\xe3\x83\x9f]", "\xf0\x9f\x90\xaf"=>"[\xe3\x83\x88\xe3\x83\xa9]", "\xf0\x9f\x90\xb1"=>"\xee\x9a\xa2", "\xf0\x9f\x90\xb3"=>"[\xe3\x82\xaf\xe3\x82\xb8\xe3\x83\xa9]",
"\xf0\x9f\x90\xb4"=>"\xee\x9d\x94", "\xf0\x9f\x90\xb5"=>"[\xe3\x82\xb5\xe3\x83\xab]", "\xf0\x9f\x90\xb6"=>"\xee\x9a\xa1", "\xf0\x9f\x90\xb7"=>"\xee\x9d\x95", "\xf0\x9f\x90\xbb"=>"[\xe3\x82\xaf\xe3\x83\x9e]",
"\xf0\x9f\x90\xb9"=>"[\xe3\x83\x8f\xe3\x83\xa0\xe3\x82\xb9\xe3\x82\xbf\xe3\x83\xbc]", "\xf0\x9f\x90\xba"=>"\xee\x9a\xa1", "\xf0\x9f\x90\xae"=>"[\xe7\x89\x9b]", "\xf0\x9f\x90\xb0"=>"[\xe3\x82\xa6\xe3\x82\xb5\xe3\x82\xae]", "\xf0\x9f\x90\xb8"=>"[\xe3\x82\xab\xe3\x82\xa8\xe3\x83\xab]",
"\xf0\x9f\x90\xbe"=>"\xee\x9a\x98", "\xf0\x9f\x90\xb2"=>"[\xe8\xbe\xb0]", "\xf0\x9f\x90\xbc"=>"[\xe3\x83\x91\xe3\x83\xb3\xe3\x83\x80]", "\xf0\x9f\x90\xbd"=>"\xee\x9d\x95", "\xf0\x9f\x98\xa0"=>"\xee\x9b\xb1",
"\xf0\x9f\x98\xa9"=>"\xee\x9b\xb3", "\xf0\x9f\x98\xb2"=>"\xee\x9b\xb4", "\xf0\x9f\x98\x9e"=>"\xee\x9b\xb2", "\xf0\x9f\x98\xb5"=>"\xee\x9b\xb4", "\xf0\x9f\x98\xb0"=>"\xee\x9c\xa3",
"\xf0\x9f\x98\x92"=>"\xee\x9c\xa5", "\xf0\x9f\x98\x8d"=>"\xee\x9c\xa6", "\xf0\x9f\x98\xa4"=>"\xee\x9d\x93", "\xf0\x9f\x98\x9c"=>"\xee\x9c\xa8", "\xf0\x9f\x98\x9d"=>"\xee\x9c\xa8",
"\xf0\x9f\x98\x8b"=>"\xee\x9d\x92", "\xf0\x9f\x98\x98"=>"\xee\x9c\xa6", "\xf0\x9f\x98\x9a"=>"\xee\x9c\xa6", "\xf0\x9f\x98\xb7"=>"[\xe9\xa2\xa8\xe9\x82\xaa\xe3\x81\xb2\xe3\x81\x8d]", "\xf0\x9f\x98\xb3"=>"\xee\x9c\xaa",
"\xf0\x9f\x98\x83"=>"\xee\x9b\xb0", "\xf0\x9f\x98\x85"=>"\xee\x9c\xa2", "\xf0\x9f\x98\x86"=>"\xee\x9c\xaa", "\xf0\x9f\x98\x81"=>"\xee\x9d\x93", "\xf0\x9f\x98\x82"=>"\xee\x9c\xaa",
"\xf0\x9f\x98\x8a"=>"\xee\x9b\xb0", "\xe2\x98\xba"=>"\xee\x9b\xb0", "\xf0\x9f\x98\x84"=>"\xee\x9b\xb0", "\xf0\x9f\x98\xa2"=>"\xee\x9c\xae", "\xf0\x9f\x98\xad"=>"\xee\x9c\xad",
"\xf0\x9f\x98\xa8"=>"\xee\x9d\x97", "\xf0\x9f\x98\xa3"=>"\xee\x9c\xab", "\xf0\x9f\x98\xa1"=>"\xee\x9c\xa4", "\xf0\x9f\x98\x8c"=>"\xee\x9c\xa1", "\xf0\x9f\x98\x96"=>"\xee\x9b\xb3",
"\xf0\x9f\x98\x94"=>"\xee\x9c\xa0", "\xf0\x9f\x98\xb1"=>"\xee\x9d\x97", "\xf0\x9f\x98\xaa"=>"\xee\x9c\x81", "\xf0\x9f\x98\x8f"=>"\xee\x9c\xac", "\xf0\x9f\x98\x93"=>"\xee\x9c\xa3",
"\xf0\x9f\x98\xa5"=>"\xee\x9c\xa3", "\xf0\x9f\x98\xab"=>"\xee\x9c\xab", "\xf0\x9f\x98\x89"=>"\xee\x9c\xa9", "\xf0\x9f\x98\xba"=>"\xee\x9b\xb0", "\xf0\x9f\x98\xb8"=>"\xee\x9d\x93",
"\xf0\x9f\x98\xb9"=>"\xee\x9c\xaa", "\xf0\x9f\x98\xbd"=>"\xee\x9c\xa6", "\xf0\x9f\x98\xbb"=>"\xee\x9c\xa6", "\xf0\x9f\x98\xbf"=>"\xee\x9c\xae", "\xf0\x9f\x98\xbe"=>"\xee\x9c\xa4",
"\xf0\x9f\x98\xbc"=>"\xee\x9d\x93", "\xf0\x9f\x99\x80"=>"\xee\x9b\xb3", "\xf0\x9f\x99\x85"=>"\xee\x9c\xaf", "\xf0\x9f\x99\x86"=>"\xee\x9c\x8b", "\xf0\x9f\x99\x87"=>"m(_ _)m",
"\xf0\x9f\x99\x88"=>"(/_\xef\xbc\xbc)", "\xf0\x9f\x99\x8a"=>"(\xe3\x83\xbb\xc3\x97\xe3\x83\xbb)", "\xf0\x9f\x99\x89"=>"|(\xe3\x83\xbb\xc3\x97\xe3\x83\xbb)|", "\xf0\x9f\x99\x8b"=>"(^-^)/", "\xf0\x9f\x99\x8c"=>"\xef\xbc\xbc(^o^)\xef\xbc\x8f",
"\xf0\x9f\x99\x8d"=>"\xee\x9b\xb3", "\xf0\x9f\x99\x8e"=>"\xee\x9b\xb1", "\xf0\x9f\x99\x8f"=>"(>\xe4\xba\xba<)", "\xf0\x9f\x8f\xa0"=>"\xee\x99\xa3", "\xf0\x9f\x8f\xa1"=>"\xee\x99\xa3",
"\xf0\x9f\x8f\xa2"=>"\xee\x99\xa4", "\xf0\x9f\x8f\xa3"=>"\xee\x99\xa5", "\xf0\x9f\x8f\xa5"=>"\xee\x99\xa6", "\xf0\x9f\x8f\xa6"=>"\xee\x99\xa7", "\xf0\x9f\x8f\xa7"=>"\xee\x99\xa8",
"\xf0\x9f\x8f\xa8"=>"\xee\x99\xa9", "\xf0\x9f\x8f\xa9"=>"\xee\x99\xa9\xee\x9b\xaf", "\xf0\x9f\x8f\xaa"=>"\xee\x99\xaa", "\xf0\x9f\x8f\xab"=>"\xee\x9c\xbe", "\xe2\x9b\xaa"=>"[\xe6\x95\x99\xe4\xbc\x9a]",
"\xe2\x9b\xb2"=>"[\xe5\x99\xb4\xe6\xb0\xb4]", "\xf0\x9f\x8f\xac"=>"[\xe3\x83\x87\xe3\x83\x91\xe3\x83\xbc\xe3\x83\x88]", "\xf0\x9f\x8f\xaf"=>"[\xe5\x9f\x8e]", "\xf0\x9f\x8f\xb0"=>"[\xe5\x9f\x8e]", "\xf0\x9f\x8f\xad"=>"[\xe5\xb7\xa5\xe5\xa0\xb4]",
"\xe2\x9a\x93"=>"\xee\x99\xa1", "\xf0\x9f\x8f\xae"=>"\xee\x9d\x8b", "\xf0\x9f\x97\xbb"=>"\xee\x9d\x80", "\xf0\x9f\x97\xbc"=>"[\xe6\x9d\xb1\xe4\xba\xac\xe3\x82\xbf\xe3\x83\xaf\xe3\x83\xbc]", "\xf0\x9f\x97\xbd"=>"[\xe8\x87\xaa\xe7\x94\xb1\xe3\x81\xae\xe5\xa5\xb3\xe7\xa5\x9e]",
"\xf0\x9f\x97\xbe"=>"[\xe6\x97\xa5\xe6\x9c\xac\xe5\x9c\xb0\xe5\x9b\xb3]", "\xf0\x9f\x97\xbf"=>"[\xe3\x83\xa2\xe3\x82\xa2\xe3\x82\xa4]", "\xf0\x9f\x91\x9e"=>"\xee\x9a\x99", "\xf0\x9f\x91\x9f"=>"\xee\x9a\x99", "\xf0\x9f\x91\xa0"=>"\xee\x99\xb4",
"\xf0\x9f\x91\xa1"=>"\xee\x99\xb4", "\xf0\x9f\x91\xa2"=>"[\xe3\x83\x96\xe3\x83\xbc\xe3\x83\x84]", "\xf0\x9f\x91\xa3"=>"\xee\x9a\x98", "\xf0\x9f\x91\x93"=>"\xee\x9a\x9a", "\xf0\x9f\x91\x95"=>"\xee\x9c\x8e",
"\xf0\x9f\x91\x96"=>"\xee\x9c\x91", "\xf0\x9f\x91\x91"=>"\xee\x9c\x9a", "\xf0\x9f\x91\x94"=>"[\xe3\x83\x8d\xe3\x82\xaf\xe3\x82\xbf\xe3\x82\xa4]", "\xf0\x9f\x91\x92"=>"[\xe5\xb8\xbd\xe5\xad\x90]", "\xf0\x9f\x91\x97"=>"[\xe3\x83\x89\xe3\x83\xac\xe3\x82\xb9]",
"\xf0\x9f\x91\x98"=>"[\xe7\x9d\x80\xe7\x89\xa9]", "\xf0\x9f\x91\x99"=>"[\xe3\x83\x93\xe3\x82\xad\xe3\x83\x8b]", "\xf0\x9f\x91\x9a"=>"\xee\x9c\x8e", "\xf0\x9f\x91\x9b"=>"\xee\x9c\x8f", "\xf0\x9f\x91\x9c"=>"\xee\x9a\x82",
"\xf0\x9f\x91\x9d"=>"\xee\x9a\xad", "\xf0\x9f\x92\xb0"=>"\xee\x9c\x95", "\xf0\x9f\x92\xb1"=>"[$\xef\xbf\xa5]", "\xf0\x9f\x92\xb9"=>"[\xe6\xa0\xaa\xe4\xbe\xa1]", "\xf0\x9f\x92\xb2"=>"\xee\x9c\x95",
"\xf0\x9f\x92\xb3"=>"[\xe3\x82\xab\xe3\x83\xbc\xe3\x83\x89]", "\xf0\x9f\x92\xb4"=>"\xee\x9b\x96", "\xf0\x9f\x92\xb5"=>"\xee\x9c\x95", "\xf0\x9f\x92\xb8"=>"[\xe9\xa3\x9b\xe3\x82\x93\xe3\x81\xa7\xe3\x81\x84\xe3\x81\x8f\xe3\x81\x8a\xe9\x87\x91]", "\xf0\x9f\x87\xa8\xf0\x9f\x87\xb3"=>"[\xe4\xb8\xad\xe5\x9b\xbd]",
"\xf0\x9f\x87\xa9\xf0\x9f\x87\xaa"=>"[\xe3\x83\x89\xe3\x82\xa4\xe3\x83\x84]", "\xf0\x9f\x87\xaa\xf0\x9f\x87\xb8"=>"[\xe3\x82\xb9\xe3\x83\x9a\xe3\x82\xa4\xe3\x83\xb3]", "\xf0\x9f\x87\xab\xf0\x9f\x87\xb7"=>"[\xe3\x83\x95\xe3\x83\xa9\xe3\x83\xb3\xe3\x82\xb9]", "\xf0\x9f\x87\xac\xf0\x9f\x87\xa7"=>"[\xe3\x82\xa4\xe3\x82\xae\xe3\x83\xaa\xe3\x82\xb9]", "\xf0\x9f\x87\xae\xf0\x9f\x87\xb9"=>"[\xe3\x82\xa4\xe3\x82\xbf\xe3\x83\xaa\xe3\x82\xa2]",
"\xf0\x9f\x87\xaf\xf0\x9f\x87\xb5"=>"[\xe6\x97\xa5\xe3\x81\xae\xe4\xb8\xb8]", "\xf0\x9f\x87\xb0\xf0\x9f\x87\xb7"=>"[\xe9\x9f\x93\xe5\x9b\xbd]", "\xf0\x9f\x87\xb7\xf0\x9f\x87\xba"=>"[\xe3\x83\xad\xe3\x82\xb7\xe3\x82\xa2]", "\xf0\x9f\x87\xba\xf0\x9f\x87\xb8"=>"[USA]", "\xf0\x9f\x94\xa5"=>"[\xe7\x82\x8e]",
"\xf0\x9f\x94\xa6"=>"\xee\x9b\xbb", "\xf0\x9f\x94\xa7"=>"\xee\x9c\x98", "\xf0\x9f\x94\xa8"=>"[\xe3\x83\x8f\xe3\x83\xb3\xe3\x83\x9e\xe3\x83\xbc]", "\xf0\x9f\x94\xa9"=>"[\xe3\x83\x8d\xe3\x82\xb8]", "\xf0\x9f\x94\xaa"=>"[\xe5\x8c\x85\xe4\xb8\x81]",
"\xf0\x9f\x94\xab"=>"[\xe3\x83\x94\xe3\x82\xb9\xe3\x83\x88\xe3\x83\xab]", "\xf0\x9f\x94\xae"=>"[\xe5\x8d\xa0\xe3\x81\x84]", "\xf0\x9f\x94\xaf"=>"[\xe5\x8d\xa0\xe3\x81\x84]", "\xf0\x9f\x94\xb0"=>"[\xe8\x8b\xa5\xe8\x91\x89\xe3\x83\x9e\xe3\x83\xbc\xe3\x82\xaf]", "\xf0\x9f\x94\xb1"=>"\xee\x9c\x9a",
"\xf0\x9f\x92\x89"=>"[\xe6\xb3\xa8\xe5\xb0\x84]", "\xf0\x9f\x92\x8a"=>"[\xe8\x96\xac]", "\xf0\x9f\x85\xb0"=>"[A]", "\xf0\x9f\x85\xb1"=>"[B]", "\xf0\x9f\x86\x8e"=>"[AB]",
"\xf0\x9f\x85\xbe"=>"[O]", "\xf0\x9f\x8e\x80"=>"\xee\x9a\x84", "\xf0\x9f\x8e\x81"=>"\xee\x9a\x85", "\xf0\x9f\x8e\x82"=>"\xee\x9a\x86", "\xf0\x9f\x8e\x84"=>"\xee\x9a\xa4",
"\xf0\x9f\x8e\x85"=>"[\xe3\x82\xb5\xe3\x83\xb3\xe3\x82\xbf]", "\xf0\x9f\x8e\x8c"=>"[\xe7\xa5\x9d\xe6\x97\xa5]", "\xf0\x9f\x8e\x86"=>"[\xe8\x8a\xb1\xe7\x81\xab]", "\xf0\x9f\x8e\x88"=>"[\xe9\xa2\xa8\xe8\x88\xb9]", "\xf0\x9f\x8e\x89"=>"[\xe3\x82\xaf\xe3\x83\xa9\xe3\x83\x83\xe3\x82\xab\xe3\x83\xbc]",
"\xf0\x9f\x8e\x8d"=>"[\xe9\x96\x80\xe6\x9d\xbe]", "\xf0\x9f\x8e\x8e"=>"[\xe3\x81\xb2\xe3\x81\xaa\xe7\xa5\xad\xe3\x82\x8a]", "\xf0\x9f\x8e\x93"=>"[\xe5\x8d\x92\xe6\xa5\xad\xe5\xbc\x8f]", "\xf0\x9f\x8e\x92"=>"[\xe3\x83\xa9\xe3\x83\xb3\xe3\x83\x89\xe3\x82\xbb\xe3\x83\xab]", "\xf0\x9f\x8e\x8f"=>"[\xe3\x81\x93\xe3\x81\x84\xe3\x81\xae\xe3\x81\xbc\xe3\x82\x8a]",
"\xf0\x9f\x8e\x87"=>"[\xe7\xb7\x9a\xe9\xa6\x99\xe8\x8a\xb1\xe7\x81\xab]", "\xf0\x9f\x8e\x90"=>"[\xe9\xa2\xa8\xe9\x88\xb4]", "\xf0\x9f\x8e\x83"=>"[\xe3\x83\x8f\xe3\x83\xad\xe3\x82\xa6\xe3\x82\xa3\xe3\x83\xb3]", "\xf0\x9f\x8e\x8a"=>"[\xe3\x82\xaa\xe3\x83\xa1\xe3\x83\x87\xe3\x83\x88\xe3\x82\xa6]", "\xf0\x9f\x8e\x8b"=>"[\xe4\xb8\x83\xe5\xa4\x95]",
"\xf0\x9f\x8e\x91"=>"[\xe3\x81\x8a\xe6\x9c\x88\xe8\xa6\x8b]", "\xf0\x9f\x93\x9f"=>"\xee\x99\x9a", "\xe2\x98\x8e"=>"\xee\x9a\x87", "\xf0\x9f\x93\x9e"=>"\xee\x9a\x87", "\xf0\x9f\x93\xb1"=>"\xee\x9a\x88",
"\xf0\x9f\x93\xb2"=>"\xee\x9b\x8e", "\xf0\x9f\x93\x9d"=>"\xee\x9a\x89", "\xf0\x9f\x93\xa0"=>"\xee\x9b\x90", "\xe2\x9c\x89"=>"\xee\x9b\x93", "\xf0\x9f\x93\xa8"=>"\xee\x9b\x8f",
"\xf0\x9f\x93\xa9"=>"\xee\x9b\x8f", "\xf0\x9f\x93\xaa"=>"\xee\x99\xa5", "\xf0\x9f\x93\xab"=>"\xee\x99\xa5", "\xf0\x9f\x93\xae"=>"\xee\x99\xa5", "\xf0\x9f\x93\xb0"=>"[\xe6\x96\xb0\xe8\x81\x9e]",
"\xf0\x9f\x93\xa2"=>"[\xe3\x82\xb9\xe3\x83\x94\xe3\x83\xbc\xe3\x82\xab]", "\xf0\x9f\x93\xa3"=>"[\xe3\x83\xa1\xe3\x82\xac\xe3\x83\x9b\xe3\x83\xb3]", "\xf0\x9f\x93\xa1"=>"[\xe3\x82\xa2\xe3\x83\xb3\xe3\x83\x86\xe3\x83\x8a]", "\xf0\x9f\x93\xa4"=>"[\xe9\x80\x81\xe4\xbf\xa1BOX]", "\xf0\x9f\x93\xa5"=>"[\xe5\x8f\x97\xe4\xbf\xa1BOX]",
"\xf0\x9f\x93\xa6"=>"\xee\x9a\x85", "\xf0\x9f\x93\xa7"=>"\xee\x9b\x93", "\xf0\x9f\x94\xa0"=>"[ABCD]", "\xf0\x9f\x94\xa1"=>"[abcd]", "\xf0\x9f\x94\xa2"=>"[1234]",
"\xf0\x9f\x94\xa3"=>"[\xe8\xa8\x98\xe5\x8f\xb7]", "\xf0\x9f\x94\xa4"=>"[ABC]", "\xe2\x9c\x92"=>"\xee\x9a\xae", "\xf0\x9f\x92\xba"=>"\xee\x9a\xb2", "\xf0\x9f\x92\xbb"=>"\xee\x9c\x96",
"\xe2\x9c\x8f"=>"\xee\x9c\x99", "\xf0\x9f\x93\x8e"=>"\xee\x9c\xb0", "\xf0\x9f\x92\xbc"=>"\xee\x9a\x82", "\xf0\x9f\x92\xbd"=>"[MD]", "\xf0\x9f\x92\xbe"=>"[\xe3\x83\x95\xe3\x83\xad\xe3\x83\x83\xe3\x83\x94\xe3\x83\xbc]",
"\xf0\x9f\x92\xbf"=>"\xee\x9a\x8c", "\xf0\x9f\x93\x80"=>"\xee\x9a\x8c", "\xe2\x9c\x82"=>"\xee\x99\xb5", "\xf0\x9f\x93\x8d"=>"[\xe7\x94\xbb\xe3\x81\xb3\xe3\x82\x87\xe3\x81\x86]", "\xf0\x9f\x93\x83"=>"\xee\x9a\x89",
"\xf0\x9f\x93\x84"=>"\xee\x9a\x89", "\xf0\x9f\x93\x85"=>"[\xe3\x82\xab\xe3\x83\xac\xe3\x83\xb3\xe3\x83\x80\xe3\x83\xbc]", "\xf0\x9f\x93\x81"=>"[\xe3\x83\x95\xe3\x82\xa9\xe3\x83\xab\xe3\x83\x80]", "\xf0\x9f\x93\x82"=>"[\xe3\x83\x95\xe3\x82\xa9\xe3\x83\xab\xe3\x83\x80]", "\xf0\x9f\x93\x93"=>"\xee\x9a\x83",
"\xf0\x9f\x93\x96"=>"\xee\x9a\x83", "\xf0\x9f\x93\x94"=>"\xee\x9a\x83", "\xf0\x9f\x93\x95"=>"\xee\x9a\x83", "\xf0\x9f\x93\x97"=>"\xee\x9a\x83", "\xf0\x9f\x93\x98"=>"\xee\x9a\x83",
"\xf0\x9f\x93\x99"=>"\xee\x9a\x83", "\xf0\x9f\x93\x9a"=>"\xee\x9a\x83", "\xf0\x9f\x93\x9b"=>"[\xe5\x90\x8d\xe6\x9c\xad]", "\xf0\x9f\x93\x9c"=>"\xee\x9c\x8a", "\xf0\x9f\x93\x8b"=>"\xee\x9a\x89",
"\xf0\x9f\x93\x86"=>"[\xe3\x82\xab\xe3\x83\xac\xe3\x83\xb3\xe3\x83\x80\xe3\x83\xbc]", "\xf0\x9f\x93\x8a"=>"[\xe3\x82\xb0\xe3\x83\xa9\xe3\x83\x95]", "\xf0\x9f\x93\x88"=>"[\xe3\x82\xb0\xe3\x83\xa9\xe3\x83\x95]", "\xf0\x9f\x93\x89"=>"[\xe3\x82\xb0\xe3\x83\xa9\xe3\x83\x95]", "\xf0\x9f\x93\x87"=>"\xee\x9a\x83",
"\xf0\x9f\x93\x8c"=>"[\xe7\x94\xbb\xe3\x81\xb3\xe3\x82\x87\xe3\x81\x86]", "\xf0\x9f\x93\x92"=>"\xee\x9a\x83", "\xf0\x9f\x93\x8f"=>"[\xe5\xae\x9a\xe8\xa6\x8f]", "\xf0\x9f\x93\x90"=>"[\xe4\xb8\x89\xe8\xa7\x92\xe5\xae\x9a\xe8\xa6\x8f]", "\xf0\x9f\x93\x91"=>"\xee\x9a\x89",
"\xf0\x9f\x8e\xbd"=>"\xee\x99\x92", "\xe2\x9a\xbe"=>"\xee\x99\x93", "\xe2\x9b\xb3"=>"\xee\x99\x94", "\xf0\x9f\x8e\xbe"=>"\xee\x99\x95", "\xe2\x9a\xbd"=>"\xee\x99\x96",
"\xf0\x9f\x8e\xbf"=>"\xee\x99\x97", "\xf0\x9f\x8f\x80"=>"\xee\x99\x98", "\xf0\x9f\x8f\x81"=>"\xee\x99\x99", "\xf0\x9f\x8f\x82"=>"\xee\x9c\x92", "\xf0\x9f\x8f\x83"=>"\xee\x9c\xb3",
"\xf0\x9f\x8f\x84"=>"\xee\x9c\x92", "\xf0\x9f\x8f\x86"=>"[\xe3\x83\x88\xe3\x83\xad\xe3\x83\x95\xe3\x82\xa3\xe3\x83\xbc]", "\xf0\x9f\x8f\x88"=>"[\xe3\x83\x95\xe3\x83\x83\xe3\x83\x88\xe3\x83\x9c\xe3\x83\xbc\xe3\x83\xab]", "\xf0\x9f\x8f\x8a"=>"[\xe6\xb0\xb4\xe6\xb3\xb3]", "\xf0\x9f\x9a\x83"=>"\xee\x99\x9b",
"\xf0\x9f\x9a\x87"=>"\xee\x99\x9c", "\xe2\x93\x82"=>"\xee\x99\x9c", "\xf0\x9f\x9a\x84"=>"\xee\x99\x9d", "\xf0\x9f\x9a\x85"=>"\xee\x99\x9d", "\xf0\x9f\x9a\x97"=>"\xee\x99\x9e",
"\xf0\x9f\x9a\x99"=>"\xee\x99\x9f", "\xf0\x9f\x9a\x8c"=>"\xee\x99\xa0", "\xf0\x9f\x9a\x8f"=>"[\xe3\x83\x90\xe3\x82\xb9\xe5\x81\x9c]", "\xf0\x9f\x9a\xa2"=>"\xee\x99\xa1", "\xe2\x9c\x88"=>"\xee\x99\xa2",
"\xe2\x9b\xb5"=>"\xee\x9a\xa3", "\xf0\x9f\x9a\x89"=>"[\xe9\xa7\x85]", "\xf0\x9f\x9a\x80"=>"[\xe3\x83\xad\xe3\x82\xb1\xe3\x83\x83\xe3\x83\x88]", "\xf0\x9f\x9a\xa4"=>"\xee\x9a\xa3", "\xf0\x9f\x9a\x95"=>"\xee\x99\x9e",
"\xf0\x9f\x9a\x9a"=>"[\xe3\x83\x88\xe3\x83\xa9\xe3\x83\x83\xe3\x82\xaf]", "\xf0\x9f\x9a\x92"=>"[\xe6\xb6\x88\xe9\x98\xb2\xe8\xbb\x8a]", "\xf0\x9f\x9a\x91"=>"[\xe6\x95\x91\xe6\x80\xa5\xe8\xbb\x8a]", "\xf0\x9f\x9a\x93"=>"[\xe3\x83\x91\xe3\x83\x88\xe3\x82\xab\xe3\x83\xbc]", "\xe2\x9b\xbd"=>"\xee\x99\xab",
"\xf0\x9f\x85\xbf"=>"\xee\x99\xac", "\xf0\x9f\x9a\xa5"=>"\xee\x99\xad", "\xf0\x9f\x9a\xa7"=>"[\xe5\xb7\xa5\xe4\xba\x8b\xe4\xb8\xad]", "\xf0\x9f\x9a\xa8"=>"[\xe3\x83\x91\xe3\x83\x88\xe3\x82\xab\xe3\x83\xbc]", "\xe2\x99\xa8"=>"\xee\x9b\xb7",
"\xe2\x9b\xba"=>"[\xe3\x82\xad\xe3\x83\xa3\xe3\x83\xb3\xe3\x83\x97]", "\xf0\x9f\x8e\xa0"=>"\xee\x99\xb9", "\xf0\x9f\x8e\xa1"=>"[\xe8\xa6\xb3\xe8\xa6\xa7\xe8\xbb\x8a]", "\xf0\x9f\x8e\xa2"=>"[\xe3\x82\xb8\xe3\x82\xa7\xe3\x83\x83\xe3\x83\x88\xe3\x82\xb3\xe3\x83\xbc\xe3\x82\xb9\xe3\x82\xbf\xe3\x83\xbc]", "\xf0\x9f\x8e\xa3"=>"\xee\x9d\x91",
"\xf0\x9f\x8e\xa4"=>"\xee\x99\xb6", "\xf0\x9f\x8e\xa5"=>"\xee\x99\xb7", "\xf0\x9f\x8e\xa6"=>"\xee\x99\xb7", "\xf0\x9f\x8e\xa7"=>"\xee\x99\xba", "\xf0\x9f\x8e\xa8"=>"\xee\x99\xbb",
"\xf0\x9f\x8e\xa9"=>"\xee\x99\xbc", "\xf0\x9f\x8e\xaa"=>"\xee\x99\xbd", "\xf0\x9f\x8e\xab"=>"\xee\x99\xbe", "\xf0\x9f\x8e\xac"=>"\xee\x9a\xac", "\xf0\x9f\x8e\xad"=>"[\xe6\xbc\x94\xe5\x8a\x87]",
"\xf0\x9f\x8e\xae"=>"\xee\x9a\x8b", "\xf0\x9f\x80\x84"=>"[\xe9\xba\xbb\xe9\x9b\x80]", "\xf0\x9f\x8e\xaf"=>"[\xe7\x9a\x84\xe4\xb8\xad]", "\xf0\x9f\x8e\xb0"=>"[777]", "\xf0\x9f\x8e\xb1"=>"[\xe3\x83\x93\xe3\x83\xaa\xe3\x83\xa4\xe3\x83\xbc\xe3\x83\x89]",
"\xf0\x9f\x8e\xb2"=>"[\xe3\x82\xb5\xe3\x82\xa4\xe3\x82\xb3\xe3\x83\xad]", "\xf0\x9f\x8e\xb3"=>"[\xe3\x83\x9c\xe3\x83\xbc\xe3\x83\xaa\xe3\x83\xb3\xe3\x82\xb0]", "\xf0\x9f\x8e\xb4"=>"[\xe8\x8a\xb1\xe6\x9c\xad]", "\xf0\x9f\x83\x8f"=>"[\xe3\x82\xb8\xe3\x83\xa7\xe3\x83\xbc\xe3\x82\xab\xe3\x83\xbc]", "\xf0\x9f\x8e\xb5"=>"\xee\x9b\xb6",
"\xf0\x9f\x8e\xb6"=>"\xee\x9b\xbf", "\xf0\x9f\x8e\xb7"=>"[\xe3\x82\xb5\xe3\x83\x83\xe3\x82\xaf\xe3\x82\xb9]", "\xf0\x9f\x8e\xb8"=>"[\xe3\x82\xae\xe3\x82\xbf\xe3\x83\xbc]", "\xf0\x9f\x8e\xb9"=>"[\xe3\x83\x94\xe3\x82\xa2\xe3\x83\x8e]", "\xf0\x9f\x8e\xba"=>"[\xe3\x83\x88\xe3\x83\xa9\xe3\x83\xb3\xe3\x83\x9a\xe3\x83\x83\xe3\x83\x88]",
"\xf0\x9f\x8e\xbb"=>"[\xe3\x83\x90\xe3\x82\xa4\xe3\x82\xaa\xe3\x83\xaa\xe3\x83\xb3]", "\xf0\x9f\x8e\xbc"=>"\xee\x9b\xbf", "\xe3\x80\xbd"=>"[\xe6\xad\x8c\xe8\xa8\x98\xe5\x8f\xb7]", "\xf0\x9f\x93\xb7"=>"\xee\x9a\x81", "\xf0\x9f\x93\xb9"=>"\xee\x99\xb7",
"\xf0\x9f\x93\xba"=>"\xee\x9a\x8a", "\xf0\x9f\x93\xbb"=>"[\xe3\x83\xa9\xe3\x82\xb8\xe3\x82\xaa]", "\xf0\x9f\x93\xbc"=>"[\xe3\x83\x93\xe3\x83\x87\xe3\x82\xaa]", "\xf0\x9f\x92\x8b"=>"\xee\x9b\xb9", "\xf0\x9f\x92\x8c"=>"\xee\x9c\x97",
"\xf0\x9f\x92\x8d"=>"\xee\x9c\x9b", "\xf0\x9f\x92\x8e"=>"\xee\x9c\x9b", "\xf0\x9f\x92\x8f"=>"\xee\x9b\xb9", "\xf0\x9f\x92\x90"=>"[\xe8\x8a\xb1\xe6\x9d\x9f]", "\xf0\x9f\x92\x91"=>"\xee\x9b\xad",
"\xf0\x9f\x92\x92"=>"[\xe7\xb5\x90\xe5\xa9\x9a\xe5\xbc\x8f]", "\xf0\x9f\x94\x9e"=>"[18\xe7\xa6\x81]", "\xc2\xa9"=>"\xee\x9c\xb1", "\xc2\xae"=>"\xee\x9c\xb6", "\xe2\x84\xa2"=>"\xee\x9c\xb2",
"\xe2\x84\xb9"=>"[\xef\xbd\x89]", "#\xe2\x83\xa3"=>"\xee\x9b\xa0", "1\xe2\x83\xa3"=>"\xee\x9b\xa2", "2\xe2\x83\xa3"=>"\xee\x9b\xa3", "3\xe2\x83\xa3"=>"\xee\x9b\xa4",
"4\xe2\x83\xa3"=>"\xee\x9b\xa5", "5\xe2\x83\xa3"=>"\xee\x9b\xa6", "6\xe2\x83\xa3"=>"\xee\x9b\xa7", "7\xe2\x83\xa3"=>"\xee\x9b\xa8", "8\xe2\x83\xa3"=>"\xee\x9b\xa9",
"9\xe2\x83\xa3"=>"\xee\x9b\xaa", "0\xe2\x83\xa3"=>"\xee\x9b\xab", "\xf0\x9f\x94\x9f"=>"[10]", "\xf0\x9f\x93\xb6"=>"[\xe3\x83\x90\xe3\x83\xaa3]", "\xf0\x9f\x93\xb3"=>"[\xe3\x83\x9e\xe3\x83\x8a\xe3\x83\xbc\xe3\x83\xa2\xe3\x83\xbc\xe3\x83\x89]",
"\xf0\x9f\x93\xb4"=>"[\xe3\x82\xb1\xe3\x83\xbc\xe3\x82\xbf\xe3\x82\xa4OFF]", "\xf0\x9f\x8d\x94"=>"\xee\x99\xb3", "\xf0\x9f\x8d\x99"=>"\xee\x9d\x89", "\xf0\x9f\x8d\xb0"=>"\xee\x9d\x8a", "\xf0\x9f\x8d\x9c"=>"\xee\x9d\x8c",
"\xf0\x9f\x8d\x9e"=>"\xee\x9d\x8d", "\xf0\x9f\x8d\xb3"=>"[\xe3\x83\x95\xe3\x83\xa9\xe3\x82\xa4\xe3\x83\x91\xe3\x83\xb3]", "\xf0\x9f\x8d\xa6"=>"[\xe3\x82\xbd\xe3\x83\x95\xe3\x83\x88\xe3\x82\xaf\xe3\x83\xaa\xe3\x83\xbc\xe3\x83\xa0]", "\xf0\x9f\x8d\x9f"=>"[\xe3\x83\x9d\xe3\x83\x86\xe3\x83\x88]", "\xf0\x9f\x8d\xa1"=>"[\xe3\x81\xa0\xe3\x82\x93\xe3\x81\x94]",
"\xf0\x9f\x8d\x98"=>"[\xe3\x81\x9b\xe3\x82\x93\xe3\x81\xb9\xe3\x81\x84]", "\xf0\x9f\x8d\x9a"=>"\xee\x9d\x8c", "\xf0\x9f\x8d\x9d"=>"[\xe3\x83\x91\xe3\x82\xb9\xe3\x82\xbf]", "\xf0\x9f\x8d\x9b"=>"[\xe3\x82\xab\xe3\x83\xac\xe3\x83\xbc]", "\xf0\x9f\x8d\xa2"=>"[\xe3\x81\x8a\xe3\x81\xa7\xe3\x82\x93]",
"\xf0\x9f\x8d\xa3"=>"[\xe3\x81\x99\xe3\x81\x97]", "\xf0\x9f\x8d\xb1"=>"[\xe5\xbc\x81\xe5\xbd\x93]", "\xf0\x9f\x8d\xb2"=>"[\xe9\x8d\x8b]", "\xf0\x9f\x8d\xa7"=>"[\xe3\x82\xab\xe3\x82\xad\xe6\xb0\xb7]", "\xf0\x9f\x8d\x96"=>"[\xe8\x82\x89]",
"\xf0\x9f\x8d\xa5"=>"\xee\x99\x83", "\xf0\x9f\x8d\xa0"=>"[\xe3\x82\x84\xe3\x81\x8d\xe3\x81\x84\xe3\x82\x82]", "\xf0\x9f\x8d\x95"=>"[\xe3\x83\x94\xe3\x82\xb6]", "\xf0\x9f\x8d\x97"=>"[\xe3\x83\x81\xe3\x82\xad\xe3\x83\xb3]", "\xf0\x9f\x8d\xa8"=>"[\xe3\x82\xa2\xe3\x82\xa4\xe3\x82\xb9\xe3\x82\xaf\xe3\x83\xaa\xe3\x83\xbc\xe3\x83\xa0]",
"\xf0\x9f\x8d\xa9"=>"[\xe3\x83\x89\xe3\x83\xbc\xe3\x83\x8a\xe3\x83\x84]", "\xf0\x9f\x8d\xaa"=>"[\xe3\x82\xaf\xe3\x83\x83\xe3\x82\xad\xe3\x83\xbc]", "\xf0\x9f\x8d\xab"=>"[\xe3\x83\x81\xe3\x83\xa7\xe3\x82\xb3]", "\xf0\x9f\x8d\xac"=>"[\xe3\x82\xad\xe3\x83\xa3\xe3\x83\xb3\xe3\x83\x87\xe3\x82\xa3]", "\xf0\x9f\x8d\xad"=>"[\xe3\x82\xad\xe3\x83\xa3\xe3\x83\xb3\xe3\x83\x87\xe3\x82\xa3]",
"\xf0\x9f\x8d\xae"=>"[\xe3\x83\x97\xe3\x83\xaa\xe3\x83\xb3]", "\xf0\x9f\x8d\xaf"=>"[\xe3\x83\x8f\xe3\x83\x81\xe3\x83\x9f\xe3\x83\x84]", "\xf0\x9f\x8d\xa4"=>"[\xe3\x82\xa8\xe3\x83\x93\xe3\x83\x95\xe3\x83\xa9\xe3\x82\xa4]", "\xf0\x9f\x8d\xb4"=>"\xee\x99\xaf", "\xe2\x98\x95"=>"\xee\x99\xb0",
"\xf0\x9f\x8d\xb8"=>"\xee\x99\xb1", "\xf0\x9f\x8d\xba"=>"\xee\x99\xb2", "\xf0\x9f\x8d\xb5"=>"\xee\x9c\x9e", "\xf0\x9f\x8d\xb6"=>"\xee\x9d\x8b", "\xf0\x9f\x8d\xb7"=>"\xee\x9d\x96",
"\xf0\x9f\x8d\xbb"=>"\xee\x99\xb2", "\xf0\x9f\x8d\xb9"=>"\xee\x99\xb1", "\xe2\x86\x97"=>"\xee\x99\xb8", "\xe2\x86\x98"=>"\xee\x9a\x96", "\xe2\x86\x96"=>"\xee\x9a\x97",
"\xe2\x86\x99"=>"\xee\x9a\xa5", "\xe2\xa4\xb4"=>"\xee\x9b\xb5", "\xe2\xa4\xb5"=>"\xee\x9c\x80", "\xe2\x86\x94"=>"\xee\x9c\xbc", "\xe2\x86\x95"=>"\xee\x9c\xbd",
"\xe2\xac\x86"=>"[\xe2\x86\x91]", "\xe2\xac\x87"=>"[\xe2\x86\x93]", "\xe2\x9e\xa1"=>"[\xe2\x86\x92]", "\xe2\xac\x85"=>"[\xe2\x86\x90]", "\xe2\x96\xb6"=>"[>]",
"\xe2\x97\x80"=>"[<]", "\xe2\x8f\xa9"=>"[>>]", "\xe2\x8f\xaa"=>"[<<]", "\xe2\x8f\xab"=>"\xe2\x96\xb2", "\xe2\x8f\xac"=>"\xe2\x96\xbc",
"\xf0\x9f\x94\xba"=>"\xe2\x96\xb2", "\xf0\x9f\x94\xbb"=>"\xe2\x96\xbc", "\xf0\x9f\x94\xbc"=>"\xe2\x96\xb2", "\xf0\x9f\x94\xbd"=>"\xe2\x96\xbc", "\xe2\xad\x95"=>"\xee\x9a\xa0",
"\xe2\x9d\x8c"=>"[\xc3\x97]", "\xe2\x9d\x8e"=>"[\xc3\x97]", "\xe2\x9d\x97"=>"\xee\x9c\x82", "\xe2\x81\x89"=>"\xee\x9c\x83", "\xe2\x80\xbc"=>"\xee\x9c\x84",
"\xe2\x9d\x93"=>"[\xef\xbc\x9f]", "\xe2\x9d\x94"=>"[\xef\xbc\x9f]", "\xe2\x9d\x95"=>"\xee\x9c\x82", "\xe3\x80\xb0"=>"\xee\x9c\x89", "\xe2\x9e\xb0"=>"\xee\x9c\x8a",
"\xe2\x9e\xbf"=>"\xee\x9b\x9f", "\xe2\x9d\xa4"=>"\xee\x9b\xac", "\xf0\x9f\x92\x93"=>"\xee\x9b\xad", "\xf0\x9f\x92\x94"=>"\xee\x9b\xae", "\xf0\x9f\x92\x95"=>"\xee\x9b\xaf",
"\xf0\x9f\x92\x96"=>"\xee\x9b\xac", "\xf0\x9f\x92\x97"=>"\xee\x9b\xad", "\xf0\x9f\x92\x98"=>"\xee\x9b\xac", "\xf0\x9f\x92\x99"=>"\xee\x9b\xac", "\xf0\x9f\x92\x9a"=>"\xee\x9b\xac",
"\xf0\x9f\x92\x9b"=>"\xee\x9b\xac", "\xf0\x9f\x92\x9c"=>"\xee\x9b\xac", "\xf0\x9f\x92\x9d"=>"\xee\x9b\xac", "\xf0\x9f\x92\x9e"=>"\xee\x9b\xad", "\xf0\x9f\x92\x9f"=>"\xee\x9b\xb8",
"\xe2\x99\xa5"=>"\xee\x9a\x8d", "\xe2\x99\xa0"=>"\xee\x9a\x8e", "\xe2\x99\xa6"=>"\xee\x9a\x8f", "\xe2\x99\xa3"=>"\xee\x9a\x90", "\xf0\x9f\x9a\xac"=>"\xee\x99\xbf",
"\xf0\x9f\x9a\xad"=>"\xee\x9a\x80", "\xe2\x99\xbf"=>"\xee\x9a\x9b", "\xf0\x9f\x9a\xa9"=>"\xee\x9b\x9e", "\xe2\x9a\xa0"=>"\xee\x9c\xb7", "\xe2\x9b\x94"=>"\xee\x9c\xaf",
"\xe2\x99\xbb"=>"\xee\x9c\xb5", "\xf0\x9f\x9a\xb2"=>"\xee\x9c\x9d", "\xf0\x9f\x9a\xb6"=>"\xee\x9c\xb3", "\xf0\x9f\x9a\xb9"=>"[\xe2\x99\x82]", "\xf0\x9f\x9a\xba"=>"[\xe2\x99\x80]",
"\xf0\x9f\x9b\x80"=>"\xee\x9b\xb7", "\xf0\x9f\x9a\xbb"=>"\xee\x99\xae", "\xf0\x9f\x9a\xbd"=>"\xee\x99\xae", "\xf0\x9f\x9a\xbe"=>"\xee\x99\xae", "\xf0\x9f\x9a\xbc"=>"[\xe8\xb5\xa4\xe3\x81\xa1\xe3\x82\x83\xe3\x82\x93]",
"\xf0\x9f\x9a\xaa"=>"\xee\x9c\x94", "\xf0\x9f\x9a\xab"=>"\xee\x9c\xb8", "\xe2\x9c\x94"=>"[\xe3\x83\x81\xe3\x82\xa7\xe3\x83\x83\xe3\x82\xaf\xe3\x83\x9e\xe3\x83\xbc\xe3\x82\xaf]", "\xf0\x9f\x86\x91"=>"\xee\x9b\x9b", "\xf0\x9f\x86\x92"=>"[COOL]",
"\xf0\x9f\x86\x93"=>"\xee\x9b\x97", "\xf0\x9f\x86\x94"=>"\xee\x9b\x98", "\xf0\x9f\x86\x95"=>"\xee\x9b\x9d", "\xf0\x9f\x86\x96"=>"\xee\x9c\xaf", "\xf0\x9f\x86\x97"=>"\xee\x9c\x8b",
"\xf0\x9f\x86\x98"=>"[SOS]", "\xf0\x9f\x86\x99"=>"[UP!]", "\xf0\x9f\x86\x9a"=>"[VS]", "\xf0\x9f\x88\x81"=>"[\xe3\x82\xb3\xe3\x82\xb3]", "\xf0\x9f\x88\x82"=>"[\xe3\x82\xb5\xe3\x83\xbc\xe3\x83\x93\xe3\x82\xb9]",
"\xf0\x9f\x88\xb2"=>"\xee\x9c\xb8", "\xf0\x9f\x88\xb3"=>"\xee\x9c\xb9", "\xf0\x9f\x88\xb4"=>"\xee\x9c\xba", "\xf0\x9f\x88\xb5"=>"\xee\x9c\xbb", "\xf0\x9f\x88\xb6"=>"[\xe6\x9c\x89]",
"\xf0\x9f\x88\x9a"=>"[\xe7\x84\xa1]", "\xf0\x9f\x88\xb7"=>"[\xe6\x9c\x88]", "\xf0\x9f\x88\xb8"=>"[\xe7\x94\xb3]", "\xf0\x9f\x88\xb9"=>"[\xe5\x89\xb2]", "\xf0\x9f\x88\xaf"=>"[\xe6\x8c\x87]",
"\xf0\x9f\x88\xba"=>"[\xe5\x96\xb6]", "\xe3\x8a\x99"=>"\xee\x9c\xb4", "\xe3\x8a\x97"=>"[\xe7\xa5\x9d]", "\xf0\x9f\x89\x90"=>"[\xe5\xbe\x97]", "\xf0\x9f\x89\x91"=>"[\xe5\x8f\xaf]",
"\xe2\x9e\x95"=>"[\xef\xbc\x8b]", "\xe2\x9e\x96"=>"[\xef\xbc\x8d]", "\xe2\x9c\x96"=>"[\xc3\x97]", "\xe2\x9e\x97"=>"[\xc3\xb7]", "\xf0\x9f\x92\xa0"=>"\xee\x9b\xb8",
"\xf0\x9f\x92\xa1"=>"\xee\x9b\xbb", "\xf0\x9f\x92\xa2"=>"\xee\x9b\xbc", "\xf0\x9f\x92\xa3"=>"\xee\x9b\xbe", "\xf0\x9f\x92\xa4"=>"\xee\x9c\x81", "\xf0\x9f\x92\xa5"=>"\xee\x9c\x85",
"\xf0\x9f\x92\xa6"=>"\xee\x9c\x86", "\xf0\x9f\x92\xa7"=>"\xee\x9c\x87", "\xf0\x9f\x92\xa8"=>"\xee\x9c\x88", "\xf0\x9f\x92\xa9"=>"[\xe3\x82\xa6\xe3\x83\xb3\xe3\x83\x81]", "\xf0\x9f\x92\xaa"=>"[\xe5\x8a\x9b\xe3\x81\x93\xe3\x81\xb6]",
"\xf0\x9f\x92\xab"=>"[\xe3\x82\xaf\xe3\x83\xa9\xe3\x82\xaf\xe3\x83\xa9]", "\xf0\x9f\x92\xac"=>"[\xe3\x83\x95\xe3\x82\xad\xe3\x83\x80\xe3\x82\xb7]", "\xe2\x9c\xa8"=>"\xee\x9b\xba", "\xe2\x9c\xb4"=>"\xee\x9b\xb8", "\xe2\x9c\xb3"=>"\xee\x9b\xb8",
"\xe2\x9a\xaa"=>"\xee\x9a\x9c", "\xe2\x9a\xab"=>"\xee\x9a\x9c", "\xf0\x9f\x94\xb4"=>"\xee\x9a\x9c", "\xf0\x9f\x94\xb5"=>"\xee\x9a\x9c", "\xf0\x9f\x94\xb2"=>"\xee\x9a\x9c",
"\xf0\x9f\x94\xb3"=>"\xee\x9a\x9c", "\xe2\xad\x90"=>"[\xe2\x98\x86]", "\xe2\xac\x9c"=>"\xe2\x96\xa0", "\xe2\xac\x9b"=>"\xe2\x96\xa0", "\xe2\x96\xab"=>"\xe2\x96\xa0",
"\xe2\x96\xaa"=>"\xe2\x96\xa0", "\xe2\x97\xbd"=>"\xe2\x96\xa0", "\xe2\x97\xbe"=>"\xe2\x96\xa0", "\xe2\x97\xbb"=>"\xe2\x96\xa0", "\xe2\x97\xbc"=>"\xe2\x96\xa0",
"\xf0\x9f\x94\xb6"=>"\xe2\x97\x86", "\xf0\x9f\x94\xb7"=>"\xe2\x97\x86", "\xf0\x9f\x94\xb8"=>"\xe2\x97\x86", "\xf0\x9f\x94\xb9"=>"\xe2\x97\x86", "\xe2\x9d\x87"=>"\xee\x9b\xba",
"\xf0\x9f\x92\xae"=>"[\xe8\x8a\xb1\xe4\xb8\xb8]", "\xf0\x9f\x92\xaf"=>"[100\xe7\x82\xb9]", "\xe2\x86\xa9"=>"\xee\x9b\x9a", "\xe2\x86\xaa"=>"\xe2\x94\x94\xe2\x86\x92", "\xf0\x9f\x94\x83"=>"\xee\x9c\xb5",
"\xf0\x9f\x94\x8a"=>"[\xe3\x82\xb9\xe3\x83\x94\xe3\x83\xbc\xe3\x82\xab]", "\xf0\x9f\x94\x8b"=>"[\xe9\x9b\xbb\xe6\xb1\xa0]", "\xf0\x9f\x94\x8c"=>"[\xe3\x82\xb3\xe3\x83\xb3\xe3\x82\xbb\xe3\x83\xb3\xe3\x83\x88]", "\xf0\x9f\x94\x8d"=>"\xee\x9b\x9c", "\xf0\x9f\x94\x8e"=>"\xee\x9b\x9c",
"\xf0\x9f\x94\x92"=>"\xee\x9b\x99", "\xf0\x9f\x94\x93"=>"\xee\x9b\x99", "\xf0\x9f\x94\x8f"=>"\xee\x9b\x99", "\xf0\x9f\x94\x90"=>"\xee\x9b\x99", "\xf0\x9f\x94\x91"=>"\xee\x9b\x99",
"\xf0\x9f\x94\x94"=>"\xee\x9c\x93", "\xe2\x98\x91"=>"[\xe3\x83\x81\xe3\x82\xa7\xe3\x83\x83\xe3\x82\xaf\xe3\x83\x9e\xe3\x83\xbc\xe3\x82\xaf]", "\xf0\x9f\x94\x98"=>"[\xe3\x83\xa9\xe3\x82\xb8\xe3\x82\xaa\xe3\x83\x9c\xe3\x82\xbf\xe3\x83\xb3]", "\xf0\x9f\x94\x96"=>"[\xe3\x83\x96\xe3\x83\x83\xe3\x82\xaf\xe3\x83\x9e\xe3\x83\xbc\xe3\x82\xaf]", "\xf0\x9f\x94\x97"=>"[\xe3\x83\xaa\xe3\x83\xb3\xe3\x82\xaf]",
"\xf0\x9f\x94\x99"=>"[\xe2\x86\x90BACK]", "\xf0\x9f\x94\x9a"=>"\xee\x9a\xb9", "\xf0\x9f\x94\x9b"=>"\xee\x9a\xb8", "\xf0\x9f\x94\x9c"=>"\xee\x9a\xb7", "\xf0\x9f\x94\x9d"=>"[TOP]",
"\xe2\x9c\x85"=>"[\xe3\x83\x81\xe3\x82\xa7\xe3\x83\x83\xe3\x82\xaf\xe3\x83\x9e\xe3\x83\xbc\xe3\x82\xaf]", "\xe2\x9c\x8a"=>"\xee\x9a\x93", "\xe2\x9c\x8b"=>"\xee\x9a\x95", "\xe2\x9c\x8c"=>"\xee\x9a\x94", "\xf0\x9f\x91\x8a"=>"\xee\x9b\xbd",
"\xf0\x9f\x91\x8d"=>"\xee\x9c\xa7", "\xe2\x98\x9d"=>"[\xe4\xba\xba\xe5\xb7\xae\xe3\x81\x97\xe6\x8c\x87]", "\xf0\x9f\x91\x86"=>"[\xe2\x86\x91]", "\xf0\x9f\x91\x87"=>"[\xe2\x86\x93]", "\xf0\x9f\x91\x88"=>"[\xe2\x86\x90]",
"\xf0\x9f\x91\x89"=>"[\xe2\x86\x92]", "\xf0\x9f\x91\x8b"=>"\xee\x9a\x95", "\xf0\x9f\x91\x8f"=>"[\xe6\x8b\x8d\xe6\x89\x8b]", "\xf0\x9f\x91\x8c"=>"\xee\x9c\x8b", "\xf0\x9f\x91\x8e"=>"\xee\x9c\x80",
"\xf0\x9f\x91\x90"=>"\xee\x9a\x95",
),
'unified_to_kddi' => array(
"\xe2\x98\x80"=>"\xee\x92\x88", "\xe2\x98\x81"=>"\xee\x92\x8d", "\xe2\x98\x94"=>"\xee\x92\x8c", "\xe2\x9b\x84"=>"\xee\x92\x85",
"\xe2\x9a\xa1"=>"\xee\x92\x87", "\xf0\x9f\x8c\x80"=>"\xee\x91\xa9", "\xf0\x9f\x8c\x81"=>"\xee\x96\x98", "\xf0\x9f\x8c\x82"=>"\xee\xab\xa8", "\xf0\x9f\x8c\x83"=>"\xee\xab\xb1",
"\xf0\x9f\x8c\x84"=>"\xee\xab\xb4", "\xf0\x9f\x8c\x85"=>"\xee\xab\xb4", "\xf0\x9f\x8c\x86"=>"\xee\x97\x9a", "\xf0\x9f\x8c\x87"=>"\xee\x97\x9a", "\xf0\x9f\x8c\x88"=>"\xee\xab\xb2",
"\xe2\x9d\x84"=>"\xee\x92\x8a", "\xe2\x9b\x85"=>"\xee\x92\x8e", "\xf0\x9f\x8c\x89"=>"\xee\x92\xbf", "\xf0\x9f\x8c\x8a"=>"\xee\xad\xbc", "\xf0\x9f\x8c\x8b"=>"\xee\xad\x93",
"\xf0\x9f\x8c\x8c"=>"\xee\xad\x9f", "\xf0\x9f\x8c\x8f"=>"\xee\x96\xb3", "\xf0\x9f\x8c\x91"=>"\xee\x96\xa8", "\xf0\x9f\x8c\x94"=>"\xee\x96\xa9", "\xf0\x9f\x8c\x93"=>"\xee\x96\xaa",
"\xf0\x9f\x8c\x99"=>"\xee\x92\x86", "\xf0\x9f\x8c\x95"=>"\xe2\x97\x8b", "\xf0\x9f\x8c\x9b"=>"\xee\x92\x89", "\xf0\x9f\x8c\x9f"=>"\xee\x92\x8b", "\xf0\x9f\x8c\xa0"=>"\xee\x91\xa8",
"\xf0\x9f\x95\x90"=>"\xee\x96\x94", "\xf0\x9f\x95\x91"=>"\xee\x96\x94", "\xf0\x9f\x95\x92"=>"\xee\x96\x94", "\xf0\x9f\x95\x93"=>"\xee\x96\x94", "\xf0\x9f\x95\x94"=>"\xee\x96\x94",
"\xf0\x9f\x95\x95"=>"\xee\x96\x94", "\xf0\x9f\x95\x96"=>"\xee\x96\x94", "\xf0\x9f\x95\x97"=>"\xee\x96\x94", "\xf0\x9f\x95\x98"=>"\xee\x96\x94", "\xf0\x9f\x95\x99"=>"\xee\x96\x94",
"\xf0\x9f\x95\x9a"=>"\xee\x96\x94", "\xf0\x9f\x95\x9b"=>"\xee\x96\x94", "\xe2\x8c\x9a"=>"\xee\x95\xba", "\xe2\x8c\x9b"=>"\xee\x95\xbb", "\xe2\x8f\xb0"=>"\xee\x96\x94",
"\xe2\x8f\xb3"=>"\xee\x91\xbc", "\xe2\x99\x88"=>"\xee\x92\x8f", "\xe2\x99\x89"=>"\xee\x92\x90", "\xe2\x99\x8a"=>"\xee\x92\x91", "\xe2\x99\x8b"=>"\xee\x92\x92",
"\xe2\x99\x8c"=>"\xee\x92\x93", "\xe2\x99\x8d"=>"\xee\x92\x94", "\xe2\x99\x8e"=>"\xee\x92\x95", "\xe2\x99\x8f"=>"\xee\x92\x96", "\xe2\x99\x90"=>"\xee\x92\x97",
"\xe2\x99\x91"=>"\xee\x92\x98", "\xe2\x99\x92"=>"\xee\x92\x99", "\xe2\x99\x93"=>"\xee\x92\x9a", "\xe2\x9b\x8e"=>"\xee\x92\x9b", "\xf0\x9f\x8d\x80"=>"\xee\x94\x93",
"\xf0\x9f\x8c\xb7"=>"\xee\x93\xa4", "\xf0\x9f\x8c\xb1"=>"\xee\xad\xbd", "\xf0\x9f\x8d\x81"=>"\xee\x93\x8e", "\xf0\x9f\x8c\xb8"=>"\xee\x93\x8a", "\xf0\x9f\x8c\xb9"=>"\xee\x96\xba",
"\xf0\x9f\x8d\x82"=>"\xee\x97\x8d", "\xf0\x9f\x8d\x83"=>"\xee\x97\x8d", "\xf0\x9f\x8c\xba"=>"\xee\xaa\x94", "\xf0\x9f\x8c\xbb"=>"\xee\x93\xa3", "\xf0\x9f\x8c\xb4"=>"\xee\x93\xa2",
"\xf0\x9f\x8c\xb5"=>"\xee\xaa\x96", "\xf0\x9f\x8c\xbe"=>"[\xe7\xa8\xb2\xe7\xa9\x82]", "\xf0\x9f\x8c\xbd"=>"\xee\xac\xb6", "\xf0\x9f\x8d\x84"=>"\xee\xac\xb7", "\xf0\x9f\x8c\xb0"=>"\xee\xac\xb8",
"\xf0\x9f\x8c\xbc"=>"\xee\xad\x89", "\xf0\x9f\x8c\xbf"=>"\xee\xae\x82", "\xf0\x9f\x8d\x92"=>"\xee\x93\x92", "\xf0\x9f\x8d\x8c"=>"\xee\xac\xb5", "\xf0\x9f\x8d\x8e"=>"\xee\xaa\xb9",
"\xf0\x9f\x8d\x8a"=>"\xee\xaa\xba", "\xf0\x9f\x8d\x93"=>"\xee\x93\x94", "\xf0\x9f\x8d\x89"=>"\xee\x93\x8d", "\xf0\x9f\x8d\x85"=>"\xee\xaa\xbb", "\xf0\x9f\x8d\x86"=>"\xee\xaa\xbc",
"\xf0\x9f\x8d\x88"=>"\xee\xac\xb2", "\xf0\x9f\x8d\x8d"=>"\xee\xac\xb3", "\xf0\x9f\x8d\x87"=>"\xee\xac\xb4", "\xf0\x9f\x8d\x91"=>"\xee\xac\xb9", "\xf0\x9f\x8d\x8f"=>"\xee\xad\x9a",
"\xf0\x9f\x91\x80"=>"\xee\x96\xa4", "\xf0\x9f\x91\x82"=>"\xee\x96\xa5", "\xf0\x9f\x91\x83"=>"\xee\xab\x90", "\xf0\x9f\x91\x84"=>"\xee\xab\x91", "\xf0\x9f\x91\x85"=>"\xee\xad\x87",
"\xf0\x9f\x92\x84"=>"\xee\x94\x89", "\xf0\x9f\x92\x85"=>"\xee\xaa\xa0", "\xf0\x9f\x92\x86"=>"\xee\x94\x8b", "\xf0\x9f\x92\x87"=>"\xee\xaa\xa1", "\xf0\x9f\x92\x88"=>"\xee\xaa\xa2",
"\xf0\x9f\x91\xa4"=>"\xe3\x80\x93", "\xf0\x9f\x91\xa6"=>"\xee\x93\xbc", "\xf0\x9f\x91\xa7"=>"\xee\x93\xba", "\xf0\x9f\x91\xa8"=>"\xee\x93\xbc", "\xf0\x9f\x91\xa9"=>"\xee\x93\xba",
"\xf0\x9f\x91\xaa"=>"\xee\x94\x81", "\xf0\x9f\x91\xab"=>"[\xe3\x82\xab\xe3\x83\x83\xe3\x83\x97\xe3\x83\xab]", "\xf0\x9f\x91\xae"=>"\xee\x97\x9d", "\xf0\x9f\x91\xaf"=>"\xee\xab\x9b", "\xf0\x9f\x91\xb0"=>"\xee\xab\xa9",
"\xf0\x9f\x91\xb1"=>"\xee\xac\x93", "\xf0\x9f\x91\xb2"=>"\xee\xac\x94", "\xf0\x9f\x91\xb3"=>"\xee\xac\x95", "\xf0\x9f\x91\xb4"=>"\xee\xac\x96", "\xf0\x9f\x91\xb5"=>"\xee\xac\x97",
"\xf0\x9f\x91\xb6"=>"\xee\xac\x98", "\xf0\x9f\x91\xb7"=>"\xee\xac\x99", "\xf0\x9f\x91\xb8"=>"\xee\xac\x9a", "\xf0\x9f\x91\xb9"=>"\xee\xad\x84", "\xf0\x9f\x91\xba"=>"\xee\xad\x85",
"\xf0\x9f\x91\xbb"=>"\xee\x93\x8b", "\xf0\x9f\x91\xbc"=>"\xee\x96\xbf", "\xf0\x9f\x91\xbd"=>"\xee\x94\x8e", "\xf0\x9f\x91\xbe"=>"\xee\x93\xac", "\xf0\x9f\x91\xbf"=>"\xee\x93\xaf",
"\xf0\x9f\x92\x80"=>"\xee\x93\xb8", "\xf0\x9f\x92\x81"=>"[\xe6\xa1\x88\xe5\x86\x85]", "\xf0\x9f\x92\x82"=>"[\xe8\xa1\x9b\xe5\x85\xb5]", "\xf0\x9f\x92\x83"=>"\xee\xac\x9c", "\xf0\x9f\x90\x8c"=>"\xee\xad\xbe",
"\xf0\x9f\x90\x8d"=>"\xee\xac\xa2", "\xf0\x9f\x90\x8e"=>"\xee\x93\x98", "\xf0\x9f\x90\x94"=>"\xee\xac\xa3", "\xf0\x9f\x90\x97"=>"\xee\xac\xa4", "\xf0\x9f\x90\xab"=>"\xee\xac\xa5",
"\xf0\x9f\x90\x98"=>"\xee\xac\x9f", "\xf0\x9f\x90\xa8"=>"\xee\xac\xa0", "\xf0\x9f\x90\x92"=>"\xee\x93\x99", "\xf0\x9f\x90\x91"=>"\xee\x92\x8f", "\xf0\x9f\x90\x99"=>"\xee\x97\x87",
"\xf0\x9f\x90\x9a"=>"\xee\xab\xac", "\xf0\x9f\x90\x9b"=>"\xee\xac\x9e", "\xf0\x9f\x90\x9c"=>"\xee\x93\x9d", "\xf0\x9f\x90\x9d"=>"\xee\xad\x97", "\xf0\x9f\x90\x9e"=>"\xee\xad\x98",
"\xf0\x9f\x90\xa0"=>"\xee\xac\x9d", "\xf0\x9f\x90\xa1"=>"\xee\x93\x93", "\xf0\x9f\x90\xa2"=>"\xee\x97\x94", "\xf0\x9f\x90\xa4"=>"\xee\x93\xa0", "\xf0\x9f\x90\xa5"=>"\xee\xad\xb6",
"\xf0\x9f\x90\xa6"=>"\xee\x93\xa0", "\xf0\x9f\x90\xa3"=>"\xee\x97\x9b", "\xf0\x9f\x90\xa7"=>"\xee\x93\x9c", "\xf0\x9f\x90\xa9"=>"\xee\x93\x9f", "\xf0\x9f\x90\x9f"=>"\xee\x92\x9a",
"\xf0\x9f\x90\xac"=>"\xee\xac\x9b", "\xf0\x9f\x90\xad"=>"\xee\x97\x82", "\xf0\x9f\x90\xaf"=>"\xee\x97\x80", "\xf0\x9f\x90\xb1"=>"\xee\x93\x9b", "\xf0\x9f\x90\xb3"=>"\xee\x91\xb0",
"\xf0\x9f\x90\xb4"=>"\xee\x93\x98", "\xf0\x9f\x90\xb5"=>"\xee\x93\x99", "\xf0\x9f\x90\xb6"=>"\xee\x93\xa1", "\xf0\x9f\x90\xb7"=>"\xee\x93\x9e", "\xf0\x9f\x90\xbb"=>"\xee\x97\x81",
"\xf0\x9f\x90\xb9"=>"[\xe3\x83\x8f\xe3\x83\xa0\xe3\x82\xb9\xe3\x82\xbf\xe3\x83\xbc]", "\xf0\x9f\x90\xba"=>"\xee\x93\xa1", "\xf0\x9f\x90\xae"=>"\xee\xac\xa1", "\xf0\x9f\x90\xb0"=>"\xee\x93\x97", "\xf0\x9f\x90\xb8"=>"\xee\x93\x9a",
"\xf0\x9f\x90\xbe"=>"\xee\x93\xae", "\xf0\x9f\x90\xb2"=>"\xee\xac\xbf", "\xf0\x9f\x90\xbc"=>"\xee\xad\x86", "\xf0\x9f\x90\xbd"=>"\xee\xad\x88", "\xf0\x9f\x98\xa0"=>"\xee\x91\xb2",
"\xf0\x9f\x98\xa9"=>"\xee\xad\xa7", "\xf0\x9f\x98\xb2"=>"\xee\xab\x8a", "\xf0\x9f\x98\x9e"=>"\xee\xab\x80", "\xf0\x9f\x98\xb5"=>"\xee\x96\xae", "\xf0\x9f\x98\xb0"=>"\xee\xab\x8b",
"\xf0\x9f\x98\x92"=>"\xee\xab\x89", "\xf0\x9f\x98\x8d"=>"\xee\x97\x84", "\xf0\x9f\x98\xa4"=>"\xee\xab\x81", "\xf0\x9f\x98\x9c"=>"\xee\x93\xa7", "\xf0\x9f\x98\x9d"=>"\xee\x93\xa7",
"\xf0\x9f\x98\x8b"=>"\xee\xab\x8d", "\xf0\x9f\x98\x98"=>"\xee\xab\x8f", "\xf0\x9f\x98\x9a"=>"\xee\xab\x8e", "\xf0\x9f\x98\xb7"=>"\xee\xab\x87", "\xf0\x9f\x98\xb3"=>"\xee\xab\x88",
"\xf0\x9f\x98\x83"=>"\xee\x91\xb1", "\xf0\x9f\x98\x85"=>"\xee\x91\xb1\xee\x96\xb1", "\xf0\x9f\x98\x86"=>"\xee\xab\x85", "\xf0\x9f\x98\x81"=>"\xee\xae\x80", "\xf0\x9f\x98\x82"=>"\xee\xad\xa4",
"\xf0\x9f\x98\x8a"=>"\xee\xab\x8d", "\xe2\x98\xba"=>"\xee\x93\xbb", "\xf0\x9f\x98\x84"=>"\xee\x91\xb1", "\xf0\x9f\x98\xa2"=>"\xee\xad\xa9", "\xf0\x9f\x98\xad"=>"\xee\x91\xb3",
"\xf0\x9f\x98\xa8"=>"\xee\xab\x86", "\xf0\x9f\x98\xa3"=>"\xee\xab\x82", "\xf0\x9f\x98\xa1"=>"\xee\xad\x9d", "\xf0\x9f\x98\x8c"=>"\xee\xab\x85", "\xf0\x9f\x98\x96"=>"\xee\xab\x83",
"\xf0\x9f\x98\x94"=>"\xee\xab\x80", "\xf0\x9f\x98\xb1"=>"\xee\x97\x85", "\xf0\x9f\x98\xaa"=>"\xee\xab\x84", "\xf0\x9f\x98\x8f"=>"\xee\xaa\xbf", "\xf0\x9f\x98\x93"=>"\xee\x97\x86",
"\xf0\x9f\x98\xa5"=>"\xee\x97\x86", "\xf0\x9f\x98\xab"=>"\xee\x91\xb4", "\xf0\x9f\x98\x89"=>"\xee\x97\x83", "\xf0\x9f\x98\xba"=>"\xee\xad\xa1", "\xf0\x9f\x98\xb8"=>"\xee\xad\xbf",
"\xf0\x9f\x98\xb9"=>"\xee\xad\xa3", "\xf0\x9f\x98\xbd"=>"\xee\xad\xa0", "\xf0\x9f\x98\xbb"=>"\xee\xad\xa5", "\xf0\x9f\x98\xbf"=>"\xee\xad\xa8", "\xf0\x9f\x98\xbe"=>"\xee\xad\x9e",
"\xf0\x9f\x98\xbc"=>"\xee\xad\xaa", "\xf0\x9f\x99\x80"=>"\xee\xad\xa6", "\xf0\x9f\x99\x85"=>"\xee\xab\x97", "\xf0\x9f\x99\x86"=>"\xee\xab\x98", "\xf0\x9f\x99\x87"=>"\xee\xab\x99",
"\xf0\x9f\x99\x88"=>"\xee\xad\x90", "\xf0\x9f\x99\x8a"=>"\xee\xad\x91", "\xf0\x9f\x99\x89"=>"\xee\xad\x92", "\xf0\x9f\x99\x8b"=>"\xee\xae\x85", "\xf0\x9f\x99\x8c"=>"\xee\xae\x86",
"\xf0\x9f\x99\x8d"=>"\xee\xae\x87", "\xf0\x9f\x99\x8e"=>"\xee\xae\x88", "\xf0\x9f\x99\x8f"=>"\xee\xab\x92", "\xf0\x9f\x8f\xa0"=>"\xee\x92\xab", "\xf0\x9f\x8f\xa1"=>"\xee\xac\x89",
"\xf0\x9f\x8f\xa2"=>"\xee\x92\xad", "\xf0\x9f\x8f\xa3"=>"\xee\x97\x9e", "\xf0\x9f\x8f\xa5"=>"\xee\x97\x9f", "\xf0\x9f\x8f\xa6"=>"\xee\x92\xaa", "\xf0\x9f\x8f\xa7"=>"\xee\x92\xa3",
"\xf0\x9f\x8f\xa8"=>"\xee\xaa\x81", "\xf0\x9f\x8f\xa9"=>"\xee\xab\xb3", "\xf0\x9f\x8f\xaa"=>"\xee\x92\xa4", "\xf0\x9f\x8f\xab"=>"\xee\xaa\x80", "\xe2\x9b\xaa"=>"\xee\x96\xbb",
"\xe2\x9b\xb2"=>"\xee\x97\x8f", "\xf0\x9f\x8f\xac"=>"\xee\xab\xb6", "\xf0\x9f\x8f\xaf"=>"\xee\xab\xb7", "\xf0\x9f\x8f\xb0"=>"\xee\xab\xb8", "\xf0\x9f\x8f\xad"=>"\xee\xab\xb9",
"\xe2\x9a\x93"=>"\xee\x92\xa9", "\xf0\x9f\x8f\xae"=>"\xee\x92\xbd", "\xf0\x9f\x97\xbb"=>"\xee\x96\xbd", "\xf0\x9f\x97\xbc"=>"\xee\x93\x80", "\xf0\x9f\x97\xbd"=>"[\xe8\x87\xaa\xe7\x94\xb1\xe3\x81\xae\xe5\xa5\xb3\xe7\xa5\x9e]",
"\xf0\x9f\x97\xbe"=>"\xee\x95\xb2", "\xf0\x9f\x97\xbf"=>"\xee\xad\xac", "\xf0\x9f\x91\x9e"=>"\xee\x96\xb7", "\xf0\x9f\x91\x9f"=>"\xee\xac\xab", "\xf0\x9f\x91\xa0"=>"\xee\x94\x9a",
"\xf0\x9f\x91\xa1"=>"\xee\x94\x9a", "\xf0\x9f\x91\xa2"=>"\xee\xaa\x9f", "\xf0\x9f\x91\xa3"=>"\xee\xac\xaa", "\xf0\x9f\x91\x93"=>"\xee\x93\xbe", "\xf0\x9f\x91\x95"=>"\xee\x96\xb6",
"\xf0\x9f\x91\x96"=>"\xee\xad\xb7", "\xf0\x9f\x91\x91"=>"\xee\x97\x89", "\xf0\x9f\x91\x94"=>"\xee\xaa\x93", "\xf0\x9f\x91\x92"=>"\xee\xaa\x9e", "\xf0\x9f\x91\x97"=>"\xee\xad\xab",