node-emoji 1.0.7

Convert `:emoji:` to Unicode using GitHub's and EmojiDB's emoji names
Documentation
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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
/// Compile time generated lookup table for emoji.
/// 
/// Taken from https://github.com/github/gemoji
pub static EMOJI: phf::Map<&'static str, &'static str> = ::phf::Map {
    key: 12913932095322966823,
    disps: &[
        (0, 1636),
        (0, 17),
        (0, 510),
        (0, 12),
        (0, 0),
        (0, 23),
        (0, 174),
        (0, 0),
        (0, 37),
        (0, 1290),
        (0, 165),
        (0, 11),
        (0, 0),
        (0, 25),
        (0, 505),
        (0, 113),
        (0, 23),
        (0, 18),
        (0, 25),
        (0, 1),
        (0, 1),
        (0, 13),
        (0, 0),
        (0, 561),
        (0, 154),
        (0, 1028),
        (0, 566),
        (0, 21),
        (0, 84),
        (0, 13),
        (0, 93),
        (0, 14),
        (0, 201),
        (0, 14),
        (0, 329),
        (0, 27),
        (0, 50),
        (0, 276),
        (0, 168),
        (0, 13),
        (0, 0),
        (0, 29),
        (0, 1),
        (0, 463),
        (0, 2),
        (0, 0),
        (0, 251),
        (0, 411),
        (0, 4),
        (0, 54),
        (0, 5),
        (0, 18),
        (0, 512),
        (0, 589),
        (0, 17),
        (0, 8),
        (0, 7),
        (0, 16),
        (0, 21),
        (0, 662),
        (0, 948),
        (0, 1234),
        (0, 407),
        (0, 1),
        (0, 744),
        (1, 496),
        (0, 43),
        (0, 189),
        (0, 0),
        (0, 831),
        (0, 1),
        (0, 359),
        (0, 9),
        (0, 821),
        (0, 707),
        (0, 0),
        (0, 151),
        (0, 0),
        (0, 5),
        (0, 1350),
        (1, 706),
        (0, 352),
        (0, 125),
        (0, 186),
        (0, 392),
        (0, 0),
        (0, 352),
        (0, 56),
        (0, 6),
        (0, 131),
        (0, 9),
        (0, 7),
        (0, 111),
        (0, 63),
        (0, 76),
        (0, 0),
        (0, 1246),
        (0, 864),
        (0, 798),
        (0, 0),
        (0, 0),
        (3, 372),
        (0, 3),
        (1, 5),
        (0, 644),
        (0, 1347),
        (0, 11),
        (0, 1173),
        (0, 2),
        (0, 99),
        (0, 0),
        (0, 24),
        (0, 105),
        (0, 912),
        (6, 895),
        (0, 0),
        (0, 170),
        (0, 892),
        (0, 11),
        (1, 59),
        (0, 2),
        (0, 1187),
        (0, 1581),
        (0, 7),
        (0, 1),
        (0, 1),
        (0, 106),
        (0, 65),
        (2, 137),
        (0, 276),
        (0, 20),
        (0, 990),
        (0, 1),
        (0, 2),
        (3, 813),
        (0, 74),
        (1, 467),
        (0, 88),
        (0, 42),
        (0, 89),
        (2, 1679),
        (0, 825),
        (0, 10),
        (0, 156),
        (0, 4),
        (0, 854),
        (0, 598),
        (0, 12),
        (0, 18),
        (0, 88),
        (0, 2),
        (0, 756),
        (0, 11),
        (2, 933),
        (0, 1836),
        (0, 309),
        (0, 0),
        (0, 2),
        (1, 482),
        (2, 287),
        (0, 691),
        (0, 117),
        (0, 4),
        (0, 853),
        (7, 507),
        (0, 61),
        (0, 0),
        (0, 122),
        (0, 70),
        (0, 116),
        (1, 231),
        (0, 1125),
        (0, 10),
        (1, 6),
        (0, 40),
        (0, 65),
        (0, 755),
        (0, 1277),
        (0, 114),
        (0, 1646),
        (0, 0),
        (0, 15),
        (0, 89),
        (0, 246),
        (0, 222),
        (2, 1504),
        (0, 261),
        (1, 687),
        (0, 40),
        (0, 2),
        (1, 320),
        (0, 1608),
        (0, 32),
        (0, 15),
        (0, 20),
        (0, 13),
        (0, 175),
        (0, 5),
        (0, 841),
        (0, 189),
        (0, 1),
        (3, 603),
        (0, 252),
        (0, 11),
        (0, 2),
        (0, 8),
        (0, 13),
        (0, 0),
        (0, 11),
        (0, 4),
        (0, 78),
        (0, 74),
        (0, 213),
        (0, 9),
        (0, 0),
        (0, 252),
        (0, 14),
        (0, 469),
        (0, 3),
        (0, 0),
        (1, 657),
        (1, 1428),
        (0, 357),
        (0, 795),
        (0, 7),
        (0, 78),
        (0, 1391),
        (0, 0),
        (0, 1),
        (0, 75),
        (0, 2),
        (0, 335),
        (1, 254),
        (0, 2),
        (0, 0),
        (0, 3),
        (0, 6),
        (0, 628),
        (0, 6),
        (5, 1073),
        (0, 56),
        (3, 567),
        (0, 136),
        (0, 5),
        (1, 1373),
        (0, 65),
        (1, 923),
        (0, 1),
        (4, 1097),
        (0, 39),
        (0, 416),
        (0, 1),
        (0, 470),
        (0, 1051),
        (0, 114),
        (0, 1510),
        (0, 6),
        (0, 1635),
        (0, 29),
        (0, 458),
        (0, 270),
        (0, 329),
        (0, 1323),
        (0, 6),
        (0, 1),
        (1, 12),
        (0, 1360),
        (0, 643),
        (0, 151),
        (0, 168),
        (0, 51),
        (0, 829),
        (0, 24),
        (0, 2),
        (0, 0),
        (0, 101),
        (0, 114),
        (0, 440),
        (0, 50),
        (0, 0),
        (0, 206),
        (0, 1),
        (0, 430),
        (0, 32),
        (0, 2),
        (4, 1785),
        (0, 973),
        (0, 630),
        (0, 26),
        (0, 15),
        (0, 1690),
        (0, 21),
        (0, 143),
        (0, 331),
        (2, 1240),
        (0, 9),
        (0, 244),
        (0, 10),
        (0, 486),
        (1, 1671),
        (0, 88),
        (1, 117),
        (0, 225),
        (0, 984),
        (0, 10),
        (0, 57),
        (0, 98),
        (0, 1821),
        (2, 308),
        (5, 630),
        (0, 475),
        (0, 201),
        (0, 0),
        (1, 1095),
        (1, 1439),
        (0, 200),
        (7, 378),
        (0, 481),
        (6, 1371),
        (0, 80),
        (0, 95),
        (0, 1383),
        (0, 16),
        (0, 2),
        (0, 1141),
        (0, 742),
        (6, 662),
        (1, 195),
        (0, 200),
        (4, 1242),
        (0, 1),
        (3, 1281),
        (0, 98),
        (0, 296),
        (0, 34),
        (0, 2),
        (0, 601),
        (0, 1650),
        (0, 94),
        (4, 42),
        (2, 1792),
        (0, 6),
        (6, 1218),
        (0, 58),
        (2, 434),
        (0, 24),
        (0, 83),
        (0, 42),
        (0, 10),
        (1, 479),
        (0, 16),
        (0, 292),
        (0, 764),
        (6, 1716),
        (4, 1247),
        (0, 21),
        (2, 841),
        (0, 2),
        (2, 1360),
        (0, 0),
        (0, 3),
        (0, 41),
        (13, 100),
        (0, 170),
        (1, 360),
        (0, 33),
        (0, 23),
        (5, 1407),
        (0, 3),
        (6, 370),
        (0, 93),
    ],
    entries: &[
        ("woman_in_tuxedo", "๐Ÿคตโ€โ™€๏ธ"),
        ("record_button", "โบ๏ธ"),
        ("koala", "๐Ÿจ"),
        ("construction_worker", "๐Ÿ‘ท"),
        ("lantern", "๐Ÿฎ"),
        ("red_car", "๐Ÿš—"),
        ("woman_beard", "๐Ÿง”โ€โ™€๏ธ"),
        ("cityscape", "๐Ÿ™๏ธ"),
        ("thinking", "๐Ÿค”"),
        ("skull", "๐Ÿ’€"),
        ("eye_speech_bubble", "๐Ÿ‘๏ธโ€๐Ÿ—จ๏ธ"),
        ("womens", "๐Ÿšบ"),
        ("woman_in_manual_wheelchair", "๐Ÿ‘ฉโ€๐Ÿฆฝ"),
        ("cake", "๐Ÿฐ"),
        ("octopus", "๐Ÿ™"),
        ("no_smoking", "๐Ÿšญ"),
        ("mate", "๐Ÿง‰"),
        ("ghana", "๐Ÿ‡ฌ๐Ÿ‡ญ"),
        ("spaghetti", "๐Ÿ"),
        ("facepalm", "๐Ÿคฆ"),
        ("grin", "๐Ÿ˜"),
        ("massage", "๐Ÿ’†"),
        ("fondue", "๐Ÿซ•"),
        ("rooster", "๐Ÿ“"),
        ("arrow_lower_right", "โ†˜๏ธ"),
        ("eight", "8๏ธโƒฃ"),
        ("family_woman_boy_boy", "๐Ÿ‘ฉโ€๐Ÿ‘ฆโ€๐Ÿ‘ฆ"),
        ("man_shrugging", "๐Ÿคทโ€โ™‚๏ธ"),
        ("woman_singer", "๐Ÿ‘ฉโ€๐ŸŽค"),
        ("merman", "๐Ÿงœโ€โ™‚๏ธ"),
        ("open_mouth", "๐Ÿ˜ฎ"),
        ("blue_heart", "๐Ÿ’™"),
        ("black_large_square", "โฌ›"),
        ("gabon", "๐Ÿ‡ฌ๐Ÿ‡ฆ"),
        ("swimming_woman", "๐ŸŠโ€โ™€๏ธ"),
        ("family_woman_woman_girl_girl", "๐Ÿ‘ฉโ€๐Ÿ‘ฉโ€๐Ÿ‘งโ€๐Ÿ‘ง"),
        ("cook", "๐Ÿง‘โ€๐Ÿณ"),
        ("chains", "โ›“๏ธ"),
        ("martial_arts_uniform", "๐Ÿฅ‹"),
        ("dango", "๐Ÿก"),
        ("telephone_receiver", "๐Ÿ“ž"),
        ("qatar", "๐Ÿ‡ถ๐Ÿ‡ฆ"),
        ("adult", "๐Ÿง‘"),
        ("georgia", "๐Ÿ‡ฌ๐Ÿ‡ช"),
        ("ok_woman", "๐Ÿ™†โ€โ™€๏ธ"),
        ("up", "๐Ÿ†™"),
        ("billed_cap", "๐Ÿงข"),
        ("serbia", "๐Ÿ‡ท๐Ÿ‡ธ"),
        ("shallow_pan_of_food", "๐Ÿฅ˜"),
        ("zzz", "๐Ÿ’ค"),
        ("kr", "๐Ÿ‡ฐ๐Ÿ‡ท"),
        ("stuck_out_tongue_winking_eye", "๐Ÿ˜œ"),
        ("tonga", "๐Ÿ‡น๐Ÿ‡ด"),
        ("farmer", "๐Ÿง‘โ€๐ŸŒพ"),
        ("gorilla", "๐Ÿฆ"),
        ("two_men_holding_hands", "๐Ÿ‘ฌ"),
        ("new_moon", "๐ŸŒ‘"),
        ("guardsman", "๐Ÿ’‚โ€โ™‚๏ธ"),
        ("u6e80", "๐Ÿˆต"),
        ("abacus", "๐Ÿงฎ"),
        ("basketball_woman", "โ›น๏ธโ€โ™€๏ธ"),
        ("stop_button", "โน๏ธ"),
        ("wastebasket", "๐Ÿ—‘๏ธ"),
        ("atom_symbol", "โš›๏ธ"),
        ("tropical_fish", "๐Ÿ "),
        ("milky_way", "๐ŸŒŒ"),
        ("pig2", "๐Ÿ–"),
        ("kangaroo", "๐Ÿฆ˜"),
        ("woman_with_probing_cane", "๐Ÿ‘ฉโ€๐Ÿฆฏ"),
        ("arrow_double_up", "โซ"),
        ("level_slider", "๐ŸŽš๏ธ"),
        ("flipper", "๐Ÿฌ"),
        ("hippopotamus", "๐Ÿฆ›"),
        ("heavy_heart_exclamation", "โฃ๏ธ"),
        ("city_sunrise", "๐ŸŒ‡"),
        ("olive", "๐Ÿซ’"),
        ("sailboat", "โ›ต"),
        ("bahamas", "๐Ÿ‡ง๐Ÿ‡ธ"),
        ("india", "๐Ÿ‡ฎ๐Ÿ‡ณ"),
        ("otter", "๐Ÿฆฆ"),
        ("older_man", "๐Ÿ‘ด"),
        ("woman_pilot", "๐Ÿ‘ฉโ€โœˆ๏ธ"),
        ("woman_technologist", "๐Ÿ‘ฉโ€๐Ÿ’ป"),
        ("monorail", "๐Ÿš"),
        ("man_dancing", "๐Ÿ•บ"),
        ("slovakia", "๐Ÿ‡ธ๐Ÿ‡ฐ"),
        ("white_circle", "โšช"),
        ("six_pointed_star", "๐Ÿ”ฏ"),
        ("envelope_with_arrow", "๐Ÿ“ฉ"),
        ("beach_umbrella", "๐Ÿ–๏ธ"),
        ("loop", "โžฟ"),
        ("leafy_green", "๐Ÿฅฌ"),
        ("cn", "๐Ÿ‡จ๐Ÿ‡ณ"),
        ("eritrea", "๐Ÿ‡ช๐Ÿ‡ท"),
        ("wind_face", "๐ŸŒฌ๏ธ"),
        ("kiribati", "๐Ÿ‡ฐ๐Ÿ‡ฎ"),
        ("placard", "๐Ÿชง"),
        ("grinning", "๐Ÿ˜€"),
        ("laos", "๐Ÿ‡ฑ๐Ÿ‡ฆ"),
        ("alien", "๐Ÿ‘ฝ"),
        ("curly_loop", "โžฐ"),
        ("eyeglasses", "๐Ÿ‘“"),
        ("purse", "๐Ÿ‘›"),
        ("zero", "0๏ธโƒฃ"),
        ("department_store", "๐Ÿฌ"),
        ("scorpius", "โ™"),
        ("shirt", "๐Ÿ‘•"),
        ("u5408", "๐Ÿˆด"),
        ("wavy_dash", "ใ€ฐ๏ธ"),
        ("sassy_man", "๐Ÿ’โ€โ™‚๏ธ"),
        ("bride_with_veil", "๐Ÿ‘ฐโ€โ™€๏ธ"),
        ("canoe", "๐Ÿ›ถ"),
        ("woman", "๐Ÿ‘ฉ"),
        ("dna", "๐Ÿงฌ"),
        ("slovenia", "๐Ÿ‡ธ๐Ÿ‡ฎ"),
        ("bomb", "๐Ÿ’ฃ"),
        ("woman_with_veil", "๐Ÿ‘ฐโ€โ™€๏ธ"),
        ("pill", "๐Ÿ’Š"),
        ("construction_worker_man", "๐Ÿ‘ทโ€โ™‚๏ธ"),
        ("currency_exchange", "๐Ÿ’ฑ"),
        ("bangbang", "โ€ผ๏ธ"),
        ("maldives", "๐Ÿ‡ฒ๐Ÿ‡ป"),
        ("man_astronaut", "๐Ÿ‘จโ€๐Ÿš€"),
        ("full_moon", "๐ŸŒ•"),
        ("bald_woman", "๐Ÿ‘ฉโ€๐Ÿฆฒ"),
        ("arrow_lower_left", "โ†™๏ธ"),
        ("coconut", "๐Ÿฅฅ"),
        ("high_heel", "๐Ÿ‘ "),
        ("yo_yo", "๐Ÿช€"),
        ("performing_arts", "๐ŸŽญ"),
        ("green_circle", "๐ŸŸข"),
        ("cl", "๐Ÿ†‘"),
        ("pineapple", "๐Ÿ"),
        ("cupcake", "๐Ÿง"),
        ("bulb", "๐Ÿ’ก"),
        ("school", "๐Ÿซ"),
        ("nesting_dolls", "๐Ÿช†"),
        ("honduras", "๐Ÿ‡ญ๐Ÿ‡ณ"),
        ("supervillain_woman", "๐Ÿฆนโ€โ™€๏ธ"),
        ("tajikistan", "๐Ÿ‡น๐Ÿ‡ฏ"),
        ("student", "๐Ÿง‘โ€๐ŸŽ“"),
        ("guatemala", "๐Ÿ‡ฌ๐Ÿ‡น"),
        ("lady_beetle", "๐Ÿž"),
        ("oncoming_police_car", "๐Ÿš”"),
        ("on", "๐Ÿ”›"),
        ("singapore", "๐Ÿ‡ธ๐Ÿ‡ฌ"),
        ("toolbox", "๐Ÿงฐ"),
        ("st_martin", "๐Ÿ‡ฒ๐Ÿ‡ซ"),
        ("whale", "๐Ÿณ"),
        ("crocodile", "๐ŸŠ"),
        ("hear_no_evil", "๐Ÿ™‰"),
        ("man_office_worker", "๐Ÿ‘จโ€๐Ÿ’ผ"),
        ("caribbean_netherlands", "๐Ÿ‡ง๐Ÿ‡ถ"),
        ("red_envelope", "๐Ÿงง"),
        ("blush", "๐Ÿ˜Š"),
        ("thought_balloon", "๐Ÿ’ญ"),
        ("hammer", "๐Ÿ”จ"),
        ("pen", "๐Ÿ–Š๏ธ"),
        ("standing_person", "๐Ÿง"),
        ("bookmark_tabs", "๐Ÿ“‘"),
        ("anatomical_heart", "๐Ÿซ€"),
        ("rabbit2", "๐Ÿ‡"),
        ("elf_man", "๐Ÿงโ€โ™‚๏ธ"),
        ("breast_feeding", "๐Ÿคฑ"),
        ("israel", "๐Ÿ‡ฎ๐Ÿ‡ฑ"),
        ("stadium", "๐ŸŸ๏ธ"),
        ("world_map", "๐Ÿ—บ๏ธ"),
        ("deer", "๐ŸฆŒ"),
        ("ice_cube", "๐ŸงŠ"),
        ("sunrise_over_mountains", "๐ŸŒ„"),
        ("smile_cat", "๐Ÿ˜ธ"),
        ("printer", "๐Ÿ–จ๏ธ"),
        ("sweat", "๐Ÿ˜“"),
        ("handshake", "๐Ÿค"),
        ("mountain_bicyclist", "๐Ÿšต"),
        ("woman_shrugging", "๐Ÿคทโ€โ™€๏ธ"),
        ("gb", "๐Ÿ‡ฌ๐Ÿ‡ง"),
        ("information_desk_person", "๐Ÿ’"),
        ("no_good_woman", "๐Ÿ™…โ€โ™€๏ธ"),
        ("european_castle", "๐Ÿฐ"),
        ("singer", "๐Ÿง‘โ€๐ŸŽค"),
        ("azerbaijan", "๐Ÿ‡ฆ๐Ÿ‡ฟ"),
        ("bhutan", "๐Ÿ‡ง๐Ÿ‡น"),
        ("flags", "๐ŸŽ"),
        ("bicyclist", "๐Ÿšด"),
        ("lollipop", "๐Ÿญ"),
        ("brown_square", "๐ŸŸซ"),
        ("basketball_man", "โ›น๏ธโ€โ™‚๏ธ"),
        ("receipt", "๐Ÿงพ"),
        ("tropical_drink", "๐Ÿน"),
        ("yellow_heart", "๐Ÿ’›"),
        ("dark_sunglasses", "๐Ÿ•ถ๏ธ"),
        ("cherries", "๐Ÿ’"),
        ("bolivia", "๐Ÿ‡ง๐Ÿ‡ด"),
        ("fairy_man", "๐Ÿงšโ€โ™‚๏ธ"),
        ("taiwan", "๐Ÿ‡น๐Ÿ‡ผ"),
        ("vomiting_face", "๐Ÿคฎ"),
        ("congo_kinshasa", "๐Ÿ‡จ๐Ÿ‡ฉ"),
        ("envelope", "โœ‰๏ธ"),
        ("raised_back_of_hand", "๐Ÿคš"),
        ("family_woman_woman_girl_boy", "๐Ÿ‘ฉโ€๐Ÿ‘ฉโ€๐Ÿ‘งโ€๐Ÿ‘ฆ"),
        ("busstop", "๐Ÿš"),
        ("owl", "๐Ÿฆ‰"),
        ("jack_o_lantern", "๐ŸŽƒ"),
        ("sneezing_face", "๐Ÿคง"),
        ("fr", "๐Ÿ‡ซ๐Ÿ‡ท"),
        ("bento", "๐Ÿฑ"),
        ("hocho", "๐Ÿ”ช"),
        ("apple", "๐ŸŽ"),
        ("clock530", "๐Ÿ• "),
        ("tired_face", "๐Ÿ˜ซ"),
        ("smiley_cat", "๐Ÿ˜บ"),
        ("heartpulse", "๐Ÿ’—"),
        ("egypt", "๐Ÿ‡ช๐Ÿ‡ฌ"),
        ("fu", "๐Ÿ–•"),
        ("melon", "๐Ÿˆ"),
        ("croatia", "๐Ÿ‡ญ๐Ÿ‡ท"),
        ("golfing_man", "๐ŸŒ๏ธโ€โ™‚๏ธ"),
        ("ab", "๐Ÿ†Ž"),
        ("globe_with_meridians", "๐ŸŒ"),
        ("parrot", "๐Ÿฆœ"),
        ("tipping_hand_person", "๐Ÿ’"),
        ("mending_heart", "โค๏ธโ€๐Ÿฉน"),
        ("clock930", "๐Ÿ•ค"),
        ("kissing_heart", "๐Ÿ˜˜"),
        ("mali", "๐Ÿ‡ฒ๐Ÿ‡ฑ"),
        ("books", "๐Ÿ“š"),
        ("cocos_islands", "๐Ÿ‡จ๐Ÿ‡จ"),
        ("keycap_ten", "๐Ÿ”Ÿ"),
        ("person_bald", "๐Ÿง‘โ€๐Ÿฆฒ"),
        ("butter", "๐Ÿงˆ"),
        ("purple_heart", "๐Ÿ’œ"),
        ("money_with_wings", "๐Ÿ’ธ"),
        ("fountain", "โ›ฒ"),
        ("u7121", "๐Ÿˆš"),
        ("school_satchel", "๐ŸŽ’"),
        ("new_zealand", "๐Ÿ‡ณ๐Ÿ‡ฟ"),
        ("western_sahara", "๐Ÿ‡ช๐Ÿ‡ญ"),
        ("tamale", "๐Ÿซ”"),
        ("pig_nose", "๐Ÿฝ"),
        ("san_marino", "๐Ÿ‡ธ๐Ÿ‡ฒ"),
        ("japanese_castle", "๐Ÿฏ"),
        ("kite", "๐Ÿช"),
        ("house", "๐Ÿ "),
        ("family_woman_woman_boy_boy", "๐Ÿ‘ฉโ€๐Ÿ‘ฉโ€๐Ÿ‘ฆโ€๐Ÿ‘ฆ"),
        ("banjo", "๐Ÿช•"),
        ("kiwi_fruit", "๐Ÿฅ"),
        ("curly_haired_woman", "๐Ÿ‘ฉโ€๐Ÿฆฑ"),
        ("duck", "๐Ÿฆ†"),
        ("revolving_hearts", "๐Ÿ’ž"),
        ("clap", "๐Ÿ‘"),
        ("fax", "๐Ÿ“ "),
        ("hankey", "๐Ÿ’ฉ"),
        ("beers", "๐Ÿป"),
        ("guernsey", "๐Ÿ‡ฌ๐Ÿ‡ฌ"),
        ("man_scientist", "๐Ÿ‘จโ€๐Ÿ”ฌ"),
        ("pakistan", "๐Ÿ‡ต๐Ÿ‡ฐ"),
        ("comoros", "๐Ÿ‡ฐ๐Ÿ‡ฒ"),
        ("green_square", "๐ŸŸฉ"),
        ("abcd", "๐Ÿ”ก"),
        ("point_up_2", "๐Ÿ‘†"),
        ("climbing_man", "๐Ÿง—โ€โ™‚๏ธ"),
        ("monaco", "๐Ÿ‡ฒ๐Ÿ‡จ"),
        ("trinidad_tobago", "๐Ÿ‡น๐Ÿ‡น"),
        ("bangladesh", "๐Ÿ‡ง๐Ÿ‡ฉ"),
        ("bike", "๐Ÿšฒ"),
        ("balloon", "๐ŸŽˆ"),
        ("broom", "๐Ÿงน"),
        ("red_haired_man", "๐Ÿ‘จโ€๐Ÿฆฐ"),
        ("cursing_face", "๐Ÿคฌ"),
        ("persevere", "๐Ÿ˜ฃ"),
        ("hamburger", "๐Ÿ”"),
        ("last_quarter_moon_with_face", "๐ŸŒœ"),
        ("diving_mask", "๐Ÿคฟ"),
        ("musical_keyboard", "๐ŸŽน"),
        ("baggage_claim", "๐Ÿ›„"),
        ("cat2", "๐Ÿˆ"),
        ("loud_sound", "๐Ÿ”Š"),
        ("arrow_right", "โžก๏ธ"),
        ("wilted_flower", "๐Ÿฅ€"),
        ("dancing_men", "๐Ÿ‘ฏโ€โ™‚๏ธ"),
        ("waffle", "๐Ÿง‡"),
        ("oyster", "๐Ÿฆช"),
        ("bell", "๐Ÿ””"),
        ("tv", "๐Ÿ“บ"),
        ("sauna_man", "๐Ÿง–โ€โ™‚๏ธ"),
        ("chopsticks", "๐Ÿฅข"),
        ("fairy_woman", "๐Ÿงšโ€โ™€๏ธ"),
        ("candy", "๐Ÿฌ"),
        ("artist", "๐Ÿง‘โ€๐ŸŽจ"),
        ("dolls", "๐ŸŽŽ"),
        ("u6708", "๐Ÿˆท๏ธ"),
        ("disappointed_relieved", "๐Ÿ˜ฅ"),
        ("hiking_boot", "๐Ÿฅพ"),
        ("dagger", "๐Ÿ—ก๏ธ"),
        ("hushed", "๐Ÿ˜ฏ"),
        ("man_with_gua_pi_mao", "๐Ÿ‘ฒ"),
        ("women_wrestling", "๐Ÿคผโ€โ™€๏ธ"),
        ("razor", "๐Ÿช’"),
        ("small_red_triangle", "๐Ÿ”บ"),
        ("rage", "๐Ÿ˜ก"),
        ("speaking_head", "๐Ÿ—ฃ๏ธ"),
        ("open_umbrella", "โ˜‚๏ธ"),
        ("white_flower", "๐Ÿ’ฎ"),
        ("minibus", "๐Ÿš"),
        ("nose", "๐Ÿ‘ƒ"),
        ("fast_forward", "โฉ"),
        ("kimono", "๐Ÿ‘˜"),
        ("reminder_ribbon", "๐ŸŽ—๏ธ"),
        ("put_litter_in_its_place", "๐Ÿšฎ"),
        ("rosette", "๐Ÿต๏ธ"),
        ("herb", "๐ŸŒฟ"),
        ("business_suit_levitating", "๐Ÿ•ด๏ธ"),
        ("person_in_tuxedo", "๐Ÿคต"),
        ("one_piece_swimsuit", "๐Ÿฉฑ"),
        ("gun", "๐Ÿ”ซ"),
        ("beaver", "๐Ÿฆซ"),
        ("asterisk", "*๏ธโƒฃ"),
        ("bust_in_silhouette", "๐Ÿ‘ค"),
        ("ru", "๐Ÿ‡ท๐Ÿ‡บ"),
        ("clock330", "๐Ÿ•ž"),
        ("postbox", "๐Ÿ“ฎ"),
        ("panama", "๐Ÿ‡ต๐Ÿ‡ฆ"),
        ("supervillain", "๐Ÿฆน"),
        ("clock1130", "๐Ÿ•ฆ"),
        ("man_juggling", "๐Ÿคนโ€โ™‚๏ธ"),
        ("man_cook", "๐Ÿ‘จโ€๐Ÿณ"),
        ("walking_woman", "๐Ÿšถโ€โ™€๏ธ"),
        ("moon_cake", "๐Ÿฅฎ"),
        ("fist_oncoming", "๐Ÿ‘Š"),
        ("menorah", "๐Ÿ•Ž"),
        ("hourglass_flowing_sand", "โณ"),
        ("scissors", "โœ‚๏ธ"),
        ("u5272", "๐Ÿˆน"),
        ("floppy_disk", "๐Ÿ’พ"),
        ("tractor", "๐Ÿšœ"),
        ("mailbox", "๐Ÿ“ซ"),
        ("ticket", "๐ŸŽซ"),
        ("aries", "โ™ˆ"),
        ("greenland", "๐Ÿ‡ฌ๐Ÿ‡ฑ"),
        ("woman_in_motorized_wheelchair", "๐Ÿ‘ฉโ€๐Ÿฆผ"),
        ("paw_prints", "๐Ÿพ"),
        ("potted_plant", "๐Ÿชด"),
        ("baguette_bread", "๐Ÿฅ–"),
        ("boot", "๐Ÿ‘ข"),
        ("badminton", "๐Ÿธ"),
        ("wind_chime", "๐ŸŽ"),
        ("long_drum", "๐Ÿช˜"),
        ("hedgehog", "๐Ÿฆ”"),
        ("face_in_clouds", "๐Ÿ˜ถโ€๐ŸŒซ๏ธ"),
        ("champagne", "๐Ÿพ"),
        ("pie", "๐Ÿฅง"),
        ("passenger_ship", "๐Ÿ›ณ๏ธ"),
        ("butterfly", "๐Ÿฆ‹"),
        ("dragon_face", "๐Ÿฒ"),
        ("family_woman_girl_boy", "๐Ÿ‘ฉโ€๐Ÿ‘งโ€๐Ÿ‘ฆ"),
        ("fried_shrimp", "๐Ÿค"),
        ("dumpling", "๐ŸฅŸ"),
        ("foggy", "๐ŸŒ"),
        ("ghost", "๐Ÿ‘ป"),
        ("lotion_bottle", "๐Ÿงด"),
        ("malaysia", "๐Ÿ‡ฒ๐Ÿ‡พ"),
        ("monkey_face", "๐Ÿต"),
        ("airplane", "โœˆ๏ธ"),
        ("bow_and_arrow", "๐Ÿน"),
        ("deaf_person", "๐Ÿง"),
        ("mechanical_arm", "๐Ÿฆพ"),
        ("ladder", "๐Ÿชœ"),
        ("cloud_with_rain", "๐ŸŒง๏ธ"),
        ("camera_flash", "๐Ÿ“ธ"),
        ("banana", "๐ŸŒ"),
        ("gift", "๐ŸŽ"),
        ("mute", "๐Ÿ”‡"),
        ("sos", "๐Ÿ†˜"),
        ("clock1230", "๐Ÿ•ง"),
        ("lab_coat", "๐Ÿฅผ"),
        ("genie_woman", "๐Ÿงžโ€โ™€๏ธ"),
        ("family_man_woman_boy", "๐Ÿ‘จโ€๐Ÿ‘ฉโ€๐Ÿ‘ฆ"),
        ("woman_judge", "๐Ÿ‘ฉโ€โš–๏ธ"),
        ("white_medium_square", "โ—ป๏ธ"),
        ("british_virgin_islands", "๐Ÿ‡ป๐Ÿ‡ฌ"),
        ("canned_food", "๐Ÿฅซ"),
        ("sudan", "๐Ÿ‡ธ๐Ÿ‡ฉ"),
        ("golf", "โ›ณ"),
        ("men_wrestling", "๐Ÿคผโ€โ™‚๏ธ"),
        ("seedling", "๐ŸŒฑ"),
        ("fearful", "๐Ÿ˜จ"),
        ("crossed_swords", "โš”๏ธ"),
        ("1234", "๐Ÿ”ข"),
        ("clock5", "๐Ÿ•”"),
        ("soap", "๐Ÿงผ"),
        ("disappointed", "๐Ÿ˜ž"),
        ("genie_man", "๐Ÿงžโ€โ™‚๏ธ"),
        ("us_outlying_islands", "๐Ÿ‡บ๐Ÿ‡ฒ"),
        ("bow", "๐Ÿ™‡"),
        ("timor_leste", "๐Ÿ‡น๐Ÿ‡ฑ"),
        ("niue", "๐Ÿ‡ณ๐Ÿ‡บ"),
        ("blonde_woman", "๐Ÿ‘ฑโ€โ™€๏ธ"),
        ("bird", "๐Ÿฆ"),
        ("tr", "๐Ÿ‡น๐Ÿ‡ท"),
        ("chart", "๐Ÿ’น"),
        ("negative_squared_cross_mark", "โŽ"),
        ("closed_book", "๐Ÿ“•"),
        ("fox_face", "๐ŸฆŠ"),
        ("ring", "๐Ÿ’"),
        ("person_with_veil", "๐Ÿ‘ฐ"),
        ("marshall_islands", "๐Ÿ‡ฒ๐Ÿ‡ญ"),
        ("palestinian_territories", "๐Ÿ‡ต๐Ÿ‡ธ"),
        ("snowman", "โ›„"),
        ("mantelpiece_clock", "๐Ÿ•ฐ๏ธ"),
        ("cameroon", "๐Ÿ‡จ๐Ÿ‡ฒ"),
        ("myanmar", "๐Ÿ‡ฒ๐Ÿ‡ฒ"),
        ("hammer_and_pick", "โš’๏ธ"),
        ("tennis", "๐ŸŽพ"),
        ("cow2", "๐Ÿ„"),
        ("fries", "๐ŸŸ"),
        ("video_game", "๐ŸŽฎ"),
        ("ice_cream", "๐Ÿจ"),
        ("family_man_man_boy_boy", "๐Ÿ‘จโ€๐Ÿ‘จโ€๐Ÿ‘ฆโ€๐Ÿ‘ฆ"),
        ("alarm_clock", "โฐ"),
        ("french_southern_territories", "๐Ÿ‡น๐Ÿ‡ซ"),
        ("woman_firefighter", "๐Ÿ‘ฉโ€๐Ÿš’"),
        ("fortune_cookie", "๐Ÿฅ "),
        ("synagogue", "๐Ÿ•"),
        ("adhesive_bandage", "๐Ÿฉน"),
        ("surfer", "๐Ÿ„"),
        ("orange_circle", "๐ŸŸ "),
        ("lion", "๐Ÿฆ"),
        ("postal_horn", "๐Ÿ“ฏ"),
        ("fleur_de_lis", "โšœ๏ธ"),
        ("worried", "๐Ÿ˜Ÿ"),
        ("running", "๐Ÿƒ"),
        ("ping_pong", "๐Ÿ“"),
        ("person_red_hair", "๐Ÿง‘โ€๐Ÿฆฐ"),
        ("leopard", "๐Ÿ†"),
        ("wave", "๐Ÿ‘‹"),
        ("arrow_right_hook", "โ†ช๏ธ"),
        ("teddy_bear", "๐Ÿงธ"),
        ("baseball", "โšพ"),
        ("water_polo", "๐Ÿคฝ"),
        ("drooling_face", "๐Ÿคค"),
        ("oden", "๐Ÿข"),
        ("raised_eyebrow", "๐Ÿคจ"),
        ("mountain", "โ›ฐ๏ธ"),
        ("sparkler", "๐ŸŽ‡"),
        ("gift_heart", "๐Ÿ’"),
        ("hourglass", "โŒ›"),
        ("female_sign", "โ™€๏ธ"),
        ("birthday", "๐ŸŽ‚"),
        ("inbox_tray", "๐Ÿ“ฅ"),
        ("smirk_cat", "๐Ÿ˜ผ"),
        ("rainbow", "๐ŸŒˆ"),
        ("pitcairn_islands", "๐Ÿ‡ต๐Ÿ‡ณ"),
        ("nut_and_bolt", "๐Ÿ”ฉ"),
        ("mirror", "๐Ÿชž"),
        ("black_medium_small_square", "โ—พ"),
        ("anguilla", "๐Ÿ‡ฆ๐Ÿ‡ฎ"),
        ("elf", "๐Ÿง"),
        ("cape_verde", "๐Ÿ‡จ๐Ÿ‡ป"),
        ("wc", "๐Ÿšพ"),
        ("badger", "๐Ÿฆก"),
        ("basketball", "๐Ÿ€"),
        ("nine", "9๏ธโƒฃ"),
        ("pickup_truck", "๐Ÿ›ป"),
        ("electric_plug", "๐Ÿ”Œ"),
        ("guardswoman", "๐Ÿ’‚โ€โ™€๏ธ"),
        ("moyai", "๐Ÿ—ฟ"),
        ("golfing_woman", "๐ŸŒ๏ธโ€โ™€๏ธ"),
        ("four", "4๏ธโƒฃ"),
        ("person_in_manual_wheelchair", "๐Ÿง‘โ€๐Ÿฆฝ"),
        ("b", "๐Ÿ…ฑ๏ธ"),
        ("point_up", "โ˜๏ธ"),
        ("squid", "๐Ÿฆ‘"),
        ("capricorn", "โ™‘"),
        ("liechtenstein", "๐Ÿ‡ฑ๐Ÿ‡ฎ"),
        ("hungary", "๐Ÿ‡ญ๐Ÿ‡บ"),
        ("hugs", "๐Ÿค—"),
        ("heart", "โค๏ธ"),
        ("waxing_crescent_moon", "๐ŸŒ’"),
        ("new", "๐Ÿ†•"),
        ("clock6", "๐Ÿ••"),
        ("exploding_head", "๐Ÿคฏ"),
        ("clock1", "๐Ÿ•"),
        ("large_blue_circle", "๐Ÿ”ต"),
        ("guide_dog", "๐Ÿฆฎ"),
        ("link", "๐Ÿ”—"),
        ("belize", "๐Ÿ‡ง๐Ÿ‡ฟ"),
        ("curly_haired_man", "๐Ÿ‘จโ€๐Ÿฆฑ"),
        ("couple_with_heart", "๐Ÿ’‘"),
        ("wheel_of_dharma", "โ˜ธ๏ธ"),
        ("open_file_folder", "๐Ÿ“‚"),
        ("sint_maarten", "๐Ÿ‡ธ๐Ÿ‡ฝ"),
        ("radio", "๐Ÿ“ป"),
        ("rowing_woman", "๐Ÿšฃโ€โ™€๏ธ"),
        ("thermometer", "๐ŸŒก๏ธ"),
        ("tipping_hand_woman", "๐Ÿ’โ€โ™€๏ธ"),
        ("gloves", "๐Ÿงค"),
        ("mechanical_leg", "๐Ÿฆฟ"),
        ("couplekiss_woman_woman", "๐Ÿ‘ฉโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿ‘ฉ"),
        ("man_singer", "๐Ÿ‘จโ€๐ŸŽค"),
        ("telescope", "๐Ÿ”ญ"),
        ("clock1030", "๐Ÿ•ฅ"),
        ("wrestling", "๐Ÿคผ"),
        ("registered", "ยฎ๏ธ"),
        ("weight_lifting", "๐Ÿ‹๏ธ"),
        ("interrobang", "โ‰๏ธ"),
        ("skier", "โ›ท๏ธ"),
        ("clock7", "๐Ÿ•–"),
        ("us", "๐Ÿ‡บ๐Ÿ‡ธ"),
        ("policewoman", "๐Ÿ‘ฎโ€โ™€๏ธ"),
        ("mage", "๐Ÿง™"),
        ("shamrock", "โ˜˜๏ธ"),
        ("family_woman_girl_girl", "๐Ÿ‘ฉโ€๐Ÿ‘งโ€๐Ÿ‘ง"),
        ("office", "๐Ÿข"),
        ("flight_departure", "๐Ÿ›ซ"),
        ("light_rail", "๐Ÿšˆ"),
        ("bubble_tea", "๐Ÿง‹"),
        ("sandwich", "๐Ÿฅช"),
        ("haiti", "๐Ÿ‡ญ๐Ÿ‡น"),
        ("part_alternation_mark", "ใ€ฝ๏ธ"),
        ("heard_mcdonald_islands", "๐Ÿ‡ญ๐Ÿ‡ฒ"),
        ("spiral_notepad", "๐Ÿ—’๏ธ"),
        ("bamboo", "๐ŸŽ"),
        ("switzerland", "๐Ÿ‡จ๐Ÿ‡ญ"),
        ("arrow_up_small", "๐Ÿ”ผ"),
        ("family_man_girl_boy", "๐Ÿ‘จโ€๐Ÿ‘งโ€๐Ÿ‘ฆ"),
        ("medal_military", "๐ŸŽ–๏ธ"),
        ("six", "6๏ธโƒฃ"),
        ("cool", "๐Ÿ†’"),
        ("pinching_hand", "๐Ÿค"),
        ("see_no_evil", "๐Ÿ™ˆ"),
        ("clock730", "๐Ÿ•ข"),
        ("walking", "๐Ÿšถ"),
        ("rhinoceros", "๐Ÿฆ"),
        ("latvia", "๐Ÿ‡ฑ๐Ÿ‡ป"),
        ("computer", "๐Ÿ’ป"),
        ("bowl_with_spoon", "๐Ÿฅฃ"),
        ("page_with_curl", "๐Ÿ“ƒ"),
        ("grimacing", "๐Ÿ˜ฌ"),
        ("guinea", "๐Ÿ‡ฌ๐Ÿ‡ณ"),
        ("thumbsup", "๐Ÿ‘"),
        ("onion", "๐Ÿง…"),
        ("boy", "๐Ÿ‘ฆ"),
        ("beverage_box", "๐Ÿงƒ"),
        ("mouse_trap", "๐Ÿชค"),
        ("mobile_phone_off", "๐Ÿ“ด"),
        ("seal", "๐Ÿฆญ"),
        ("fried_egg", "๐Ÿณ"),
        ("national_park", "๐Ÿž๏ธ"),
        ("cup_with_straw", "๐Ÿฅค"),
        ("taco", "๐ŸŒฎ"),
        ("top", "๐Ÿ”"),
        ("face_with_spiral_eyes", "๐Ÿ˜ตโ€๐Ÿ’ซ"),
        ("low_brightness", "๐Ÿ”…"),
        ("circus_tent", "๐ŸŽช"),
        ("blond_haired_person", "๐Ÿ‘ฑ"),
        ("red_circle", "๐Ÿ”ด"),
        ("cherry_blossom", "๐ŸŒธ"),
        ("anguished", "๐Ÿ˜ง"),
        ("mountain_biking_woman", "๐Ÿšตโ€โ™€๏ธ"),
        ("weary", "๐Ÿ˜ฉ"),
        ("bridge_at_night", "๐ŸŒ‰"),
        ("turkmenistan", "๐Ÿ‡น๐Ÿ‡ฒ"),
        ("train", "๐Ÿš‹"),
        ("polar_bear", "๐Ÿปโ€โ„๏ธ"),
        ("deaf_man", "๐Ÿงโ€โ™‚๏ธ"),
        ("poodle", "๐Ÿฉ"),
        ("man_mechanic", "๐Ÿ‘จโ€๐Ÿ”ง"),
        ("guinea_bissau", "๐Ÿ‡ฌ๐Ÿ‡ผ"),
        ("man_playing_water_polo", "๐Ÿคฝโ€โ™‚๏ธ"),
        ("latin_cross", "โœ๏ธ"),
        ("no_good_man", "๐Ÿ™…โ€โ™‚๏ธ"),
        ("closed_umbrella", "๐ŸŒ‚"),
        ("de", "๐Ÿ‡ฉ๐Ÿ‡ช"),
        ("blue_square", "๐ŸŸฆ"),
        ("desert", "๐Ÿœ๏ธ"),
        ("dizzy_face", "๐Ÿ˜ต"),
        ("card_index_dividers", "๐Ÿ—‚๏ธ"),
        ("pinched_fingers", "๐ŸคŒ"),
        ("arrow_down_small", "๐Ÿ”ฝ"),
        ("mount_fuji", "๐Ÿ—ป"),
        ("ear_of_rice", "๐ŸŒพ"),
        ("pager", "๐Ÿ“Ÿ"),
        ("mx_claus", "๐Ÿง‘โ€๐ŸŽ„"),
        ("fallen_leaf", "๐Ÿ‚"),
        ("customs", "๐Ÿ›ƒ"),
        ("moon", "๐ŸŒ”"),
        ("yin_yang", "โ˜ฏ๏ธ"),
        ("smiley", "๐Ÿ˜ƒ"),
        ("strawberry", "๐Ÿ“"),
        ("libra", "โ™Ž"),
        ("+1", "๐Ÿ‘"),
        ("moneybag", "๐Ÿ’ฐ"),
        ("black_flag", "๐Ÿด"),
        ("knot", "๐Ÿชข"),
        ("tangerine", "๐ŸŠ"),
        ("orange_square", "๐ŸŸง"),
        ("dollar", "๐Ÿ’ต"),
        ("man_firefighter", "๐Ÿ‘จโ€๐Ÿš’"),
        ("confounded", "๐Ÿ˜–"),
        ("pick", "โ›๏ธ"),
        ("dove", "๐Ÿ•Š๏ธ"),
        ("boxing_glove", "๐ŸฅŠ"),
        ("no_bicycles", "๐Ÿšณ"),
        ("superhero", "๐Ÿฆธ"),
        ("merperson", "๐Ÿงœ"),
        ("snake", "๐Ÿ"),
        ("mermaid", "๐Ÿงœโ€โ™€๏ธ"),
        ("ceuta_melilla", "๐Ÿ‡ช๐Ÿ‡ฆ"),
        ("baby_symbol", "๐Ÿšผ"),
        ("lesotho", "๐Ÿ‡ฑ๐Ÿ‡ธ"),
        ("fiji", "๐Ÿ‡ซ๐Ÿ‡ฏ"),
        ("last_quarter_moon", "๐ŸŒ—"),
        ("aruba", "๐Ÿ‡ฆ๐Ÿ‡ผ"),
        ("swimmer", "๐ŸŠ"),
        ("first_quarter_moon", "๐ŸŒ“"),
        ("family_woman_woman_girl", "๐Ÿ‘ฉโ€๐Ÿ‘ฉโ€๐Ÿ‘ง"),
        ("3rd_place_medal", "๐Ÿฅ‰"),
        ("police_officer", "๐Ÿ‘ฎ"),
        ("canary_islands", "๐Ÿ‡ฎ๐Ÿ‡จ"),
        ("sauna_person", "๐Ÿง–"),
        ("baby_bottle", "๐Ÿผ"),
        ("skateboard", "๐Ÿ›น"),
        ("military_helmet", "๐Ÿช–"),
        ("beer", "๐Ÿบ"),
        ("grey_question", "โ”"),
        ("peru", "๐Ÿ‡ต๐Ÿ‡ช"),
        ("metal", "๐Ÿค˜"),
        ("palms_up_together", "๐Ÿคฒ"),
        ("cat", "๐Ÿฑ"),
        ("chart_with_downwards_trend", "๐Ÿ“‰"),
        ("woman_astronaut", "๐Ÿ‘ฉโ€๐Ÿš€"),
        ("clock630", "๐Ÿ•ก"),
        ("kenya", "๐Ÿ‡ฐ๐Ÿ‡ช"),
        ("cupid", "๐Ÿ’˜"),
        ("heavy_minus_sign", "โž–"),
        ("barber", "๐Ÿ’ˆ"),
        ("djibouti", "๐Ÿ‡ฉ๐Ÿ‡ฏ"),
        ("yarn", "๐Ÿงถ"),
        ("pouting_cat", "๐Ÿ˜พ"),
        ("ferris_wheel", "๐ŸŽก"),
        ("south_africa", "๐Ÿ‡ฟ๐Ÿ‡ฆ"),
        ("arrow_left", "โฌ…๏ธ"),
        ("cloud_with_lightning_and_rain", "โ›ˆ๏ธ"),
        ("shushing_face", "๐Ÿคซ"),
        ("axe", "๐Ÿช“"),
        ("desktop_computer", "๐Ÿ–ฅ๏ธ"),
        ("ice_skate", "โ›ธ๏ธ"),
        ("bricks", "๐Ÿงฑ"),
        ("barbados", "๐Ÿ‡ง๐Ÿ‡ง"),
        ("jeans", "๐Ÿ‘–"),
        ("basket", "๐Ÿงบ"),
        ("iceland", "๐Ÿ‡ฎ๐Ÿ‡ธ"),
        ("shell", "๐Ÿš"),
        ("mexico", "๐Ÿ‡ฒ๐Ÿ‡ฝ"),
        ("balance_scale", "โš–๏ธ"),
        ("horse", "๐Ÿด"),
        ("slot_machine", "๐ŸŽฐ"),
        ("massage_man", "๐Ÿ’†โ€โ™‚๏ธ"),
        ("dancing_women", "๐Ÿ‘ฏโ€โ™€๏ธ"),
        ("volcano", "๐ŸŒ‹"),
        ("svalbard_jan_mayen", "๐Ÿ‡ธ๐Ÿ‡ฏ"),
        ("astonished", "๐Ÿ˜ฒ"),
        ("point_right", "๐Ÿ‘‰"),
        ("arrows_clockwise", "๐Ÿ”ƒ"),
        ("haircut", "๐Ÿ’‡"),
        ("thong_sandal", "๐Ÿฉด"),
        ("shit", "๐Ÿ’ฉ"),
        ("restroom", "๐Ÿšป"),
        ("earth_asia", "๐ŸŒ"),
        ("people_hugging", "๐Ÿซ‚"),
        ("heartbeat", "๐Ÿ’“"),
        ("bouquet", "๐Ÿ’"),
        ("sao_tome_principe", "๐Ÿ‡ธ๐Ÿ‡น"),
        ("micronesia", "๐Ÿ‡ซ๐Ÿ‡ฒ"),
        ("star", "โญ"),
        ("next_track_button", "โญ๏ธ"),
        ("bullettrain_front", "๐Ÿš…"),
        ("cloud_with_lightning", "๐ŸŒฉ๏ธ"),
        ("tooth", "๐Ÿฆท"),
        ("sound", "๐Ÿ”‰"),
        ("stew", "๐Ÿฒ"),
        ("hash", "#๏ธโƒฃ"),
        ("keyboard", "โŒจ๏ธ"),
        ("jordan", "๐Ÿ‡ฏ๐Ÿ‡ด"),
        ("male_detective", "๐Ÿ•ต๏ธโ€โ™‚๏ธ"),
        ("morocco", "๐Ÿ‡ฒ๐Ÿ‡ฆ"),
        ("new_caledonia", "๐Ÿ‡ณ๐Ÿ‡จ"),
        ("deaf_woman", "๐Ÿงโ€โ™€๏ธ"),
        ("calendar", "๐Ÿ“†"),
        ("cricket", "๐Ÿฆ—"),
        ("cucumber", "๐Ÿฅ’"),
        ("checkered_flag", "๐Ÿ"),
        ("male_sign", "โ™‚๏ธ"),
        ("u6307", "๐Ÿˆฏ"),
        ("arrow_backward", "โ—€๏ธ"),
        ("bed", "๐Ÿ›๏ธ"),
        ("niger", "๐Ÿ‡ณ๐Ÿ‡ช"),
        ("turkey", "๐Ÿฆƒ"),
        ("honeybee", "๐Ÿ"),
        ("man_technologist", "๐Ÿ‘จโ€๐Ÿ’ป"),
        ("white_haired_woman", "๐Ÿ‘ฉโ€๐Ÿฆณ"),
        ("partly_sunny", "โ›…"),
        ("elevator", "๐Ÿ›—"),
        ("waning_crescent_moon", "๐ŸŒ˜"),
        ("post_office", "๐Ÿฃ"),
        ("zipper_mouth_face", "๐Ÿค"),
        ("cote_divoire", "๐Ÿ‡จ๐Ÿ‡ฎ"),
        ("upside_down_face", "๐Ÿ™ƒ"),
        ("man_facepalming", "๐Ÿคฆโ€โ™‚๏ธ"),
        ("golfing", "๐ŸŒ๏ธ"),
        ("person_with_probing_cane", "๐Ÿง‘โ€๐Ÿฆฏ"),
        ("worm", "๐Ÿชฑ"),
        ("pregnant_woman", "๐Ÿคฐ"),
        ("guitar", "๐ŸŽธ"),
        ("faroe_islands", "๐Ÿ‡ซ๐Ÿ‡ด"),
        ("cd", "๐Ÿ’ฟ"),
        ("desert_island", "๐Ÿ๏ธ"),
        ("woman_health_worker", "๐Ÿ‘ฉโ€โš•๏ธ"),
        ("tongue", "๐Ÿ‘…"),
        ("judge", "๐Ÿง‘โ€โš–๏ธ"),
        ("flashlight", "๐Ÿ”ฆ"),
        ("sparkling_heart", "๐Ÿ’–"),
        ("iphone", "๐Ÿ“ฑ"),
        ("wheelchair", "โ™ฟ"),
        ("fish", "๐ŸŸ"),
        ("notebook", "๐Ÿ““"),
        ("corn", "๐ŸŒฝ"),
        ("rocket", "๐Ÿš€"),
        ("previous_track_button", "โฎ๏ธ"),
        ("rotating_light", "๐Ÿšจ"),
        ("zombie", "๐ŸงŸ"),
        ("mango", "๐Ÿฅญ"),
        ("man_teacher", "๐Ÿ‘จโ€๐Ÿซ"),
        ("tm", "โ„ข๏ธ"),
        ("motor_boat", "๐Ÿ›ฅ๏ธ"),
        ("pear", "๐Ÿ"),
        ("ferry", "โ›ด๏ธ"),
        ("man_in_manual_wheelchair", "๐Ÿ‘จโ€๐Ÿฆฝ"),
        ("man_feeding_baby", "๐Ÿ‘จโ€๐Ÿผ"),
        ("stethoscope", "๐Ÿฉบ"),
        ("clown_face", "๐Ÿคก"),
        ("satisfied", "๐Ÿ˜†"),
        ("ballot_box", "๐Ÿ—ณ๏ธ"),
        ("rowing_man", "๐Ÿšฃโ€โ™‚๏ธ"),
        ("french_polynesia", "๐Ÿ‡ต๐Ÿ‡ซ"),
        ("ear_with_hearing_aid", "๐Ÿฆป"),
        ("triangular_flag_on_post", "๐Ÿšฉ"),
        ("house_with_garden", "๐Ÿก"),
        ("uruguay", "๐Ÿ‡บ๐Ÿ‡พ"),
        ("dvd", "๐Ÿ“€"),
        ("soon", "๐Ÿ”œ"),
        ("clock4", "๐Ÿ•“"),
        ("heavy_exclamation_mark", "โ—"),
        ("vanuatu", "๐Ÿ‡ป๐Ÿ‡บ"),
        ("memo", "๐Ÿ“"),
        ("pig", "๐Ÿท"),
        ("algeria", "๐Ÿ‡ฉ๐Ÿ‡ฟ"),
        ("unamused", "๐Ÿ˜’"),
        ("nazar_amulet", "๐Ÿงฟ"),
        ("tanzania", "๐Ÿ‡น๐Ÿ‡ฟ"),
        ("foot", "๐Ÿฆถ"),
        ("open_book", "๐Ÿ“–"),
        ("mens", "๐Ÿšน"),
        ("camera", "๐Ÿ“ท"),
        ("name_badge", "๐Ÿ“›"),
        ("ecuador", "๐Ÿ‡ช๐Ÿ‡จ"),
        ("movie_camera", "๐ŸŽฅ"),
        ("trident", "๐Ÿ”ฑ"),
        ("watch", "โŒš"),
        ("o2", "๐Ÿ…พ๏ธ"),
        ("popcorn", "๐Ÿฟ"),
        ("microphone", "๐ŸŽค"),
        ("salt", "๐Ÿง‚"),
        ("funeral_urn", "โšฑ๏ธ"),
        ("ocean", "๐ŸŒŠ"),
        ("mortar_board", "๐ŸŽ“"),
        ("sleeping_bed", "๐Ÿ›Œ"),
        ("sushi", "๐Ÿฃ"),
        ("couplekiss_man_man", "๐Ÿ‘จโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿ‘จ"),
        ("mushroom", "๐Ÿ„"),
        ("syringe", "๐Ÿ’‰"),
        ("portugal", "๐Ÿ‡ต๐Ÿ‡น"),
        ("greece", "๐Ÿ‡ฌ๐Ÿ‡ท"),
        ("peanuts", "๐Ÿฅœ"),
        ("mag_right", "๐Ÿ”Ž"),
        ("dash", "๐Ÿ’จ"),
        ("page_facing_up", "๐Ÿ“„"),
        ("non-potable_water", "๐Ÿšฑ"),
        ("umbrella", "โ˜”"),
        ("scarf", "๐Ÿงฃ"),
        ("surfing_woman", "๐Ÿ„โ€โ™€๏ธ"),
        ("takeout_box", "๐Ÿฅก"),
        ("mozambique", "๐Ÿ‡ฒ๐Ÿ‡ฟ"),
        ("suspension_railway", "๐ŸšŸ"),
        ("snowboarder", "๐Ÿ‚"),
        ("video_camera", "๐Ÿ“น"),
        ("trophy", "๐Ÿ†"),
        ("frowning_person", "๐Ÿ™"),
        ("flight_arrival", "๐Ÿ›ฌ"),
        ("zombie_man", "๐ŸงŸโ€โ™‚๏ธ"),
        ("parachute", "๐Ÿช‚"),
        ("vampire_woman", "๐Ÿง›โ€โ™€๏ธ"),
        ("woman_cartwheeling", "๐Ÿคธโ€โ™€๏ธ"),
        ("zambia", "๐Ÿ‡ฟ๐Ÿ‡ฒ"),
        ("t-rex", "๐Ÿฆ–"),
        ("bone", "๐Ÿฆด"),
        ("lobster", "๐Ÿฆž"),
        ("goggles", "๐Ÿฅฝ"),
        ("cloud_with_snow", "๐ŸŒจ๏ธ"),
        ("musical_note", "๐ŸŽต"),
        ("curry", "๐Ÿ›"),
        ("hand", "โœ‹"),
        ("man_in_tuxedo", "๐Ÿคตโ€โ™‚๏ธ"),
        ("dart", "๐ŸŽฏ"),
        ("infinity", "โ™พ๏ธ"),
        ("hotel", "๐Ÿจ"),
        ("speaker", "๐Ÿ”ˆ"),
        ("field_hockey", "๐Ÿ‘"),
        ("sponge", "๐Ÿงฝ"),
        ("coffee", "โ˜•"),
        ("waning_gibbous_moon", "๐ŸŒ–"),
        ("cowboy_hat_face", "๐Ÿค "),
        ("penguin", "๐Ÿง"),
        ("japanese_goblin", "๐Ÿ‘บ"),
        ("100", "๐Ÿ’ฏ"),
        ("left_speech_bubble", "๐Ÿ—จ๏ธ"),
        ("medical_symbol", "โš•๏ธ"),
        ("health_worker", "๐Ÿง‘โ€โš•๏ธ"),
        ("tent", "โ›บ"),
        ("cambodia", "๐Ÿ‡ฐ๐Ÿ‡ญ"),
        ("equatorial_guinea", "๐Ÿ‡ฌ๐Ÿ‡ถ"),
        ("clock12", "๐Ÿ•›"),
        ("burundi", "๐Ÿ‡ง๐Ÿ‡ฎ"),
        ("kissing_cat", "๐Ÿ˜ฝ"),
        ("antarctica", "๐Ÿ‡ฆ๐Ÿ‡ถ"),
        ("fishing_pole_and_fish", "๐ŸŽฃ"),
        ("no_pedestrians", "๐Ÿšท"),
        ("clock9", "๐Ÿ•˜"),
        ("man_cartwheeling", "๐Ÿคธโ€โ™‚๏ธ"),
        ("hearts", "โ™ฅ๏ธ"),
        ("framed_picture", "๐Ÿ–ผ๏ธ"),
        ("innocent", "๐Ÿ˜‡"),
        ("clinking_glasses", "๐Ÿฅ‚"),
        ("fist_raised", "โœŠ"),
        ("tokelau", "๐Ÿ‡น๐Ÿ‡ฐ"),
        ("black_nib", "โœ’๏ธ"),
        ("dodo", "๐Ÿฆค"),
        ("waxing_gibbous_moon", "๐ŸŒ”"),
        ("sled", "๐Ÿ›ท"),
        ("person_fencing", "๐Ÿคบ"),
        ("chestnut", "๐ŸŒฐ"),
        ("unicorn", "๐Ÿฆ„"),
        ("scroll", "๐Ÿ“œ"),
        ("speech_balloon", "๐Ÿ’ฌ"),
        ("face_with_thermometer", "๐Ÿค’"),
        ("arrow_double_down", "โฌ"),
        ("joy_cat", "๐Ÿ˜น"),
        ("zebra", "๐Ÿฆ“"),
        ("zombie_woman", "๐ŸงŸโ€โ™€๏ธ"),
        ("whale2", "๐Ÿ‹"),
        ("microbe", "๐Ÿฆ "),
        ("hamster", "๐Ÿน"),
        ("blond_haired_man", "๐Ÿ‘ฑโ€โ™‚๏ธ"),
        ("raising_hand_man", "๐Ÿ™‹โ€โ™‚๏ธ"),
        ("computer_mouse", "๐Ÿ–ฑ๏ธ"),
        ("robot", "๐Ÿค–"),
        ("train2", "๐Ÿš†"),
        ("family_man_woman_girl_boy", "๐Ÿ‘จโ€๐Ÿ‘ฉโ€๐Ÿ‘งโ€๐Ÿ‘ฆ"),
        ("carpentry_saw", "๐Ÿชš"),
        ("madagascar", "๐Ÿ‡ฒ๐Ÿ‡ฌ"),
        ("izakaya_lantern", "๐Ÿฎ"),
        ("parasol_on_ground", "โ›ฑ๏ธ"),
        ("monocle_face", "๐Ÿง"),
        ("british_indian_ocean_territory", "๐Ÿ‡ฎ๐Ÿ‡ด"),
        ("pouting_face", "๐Ÿ™Ž"),
        ("ninja", "๐Ÿฅท"),
        ("belgium", "๐Ÿ‡ง๐Ÿ‡ช"),
        ("bug", "๐Ÿ›"),
        ("kaaba", "๐Ÿ•‹"),
        ("lipstick", "๐Ÿ’„"),
        ("pause_button", "โธ๏ธ"),
        ("cocktail", "๐Ÿธ"),
        ("mountain_snow", "๐Ÿ”๏ธ"),
        ("motorcycle", "๐Ÿ๏ธ"),
        ("custard", "๐Ÿฎ"),
        ("nerd_face", "๐Ÿค“"),
        ("roller_skate", "๐Ÿ›ผ"),
        ("bouncing_ball_woman", "โ›น๏ธโ€โ™€๏ธ"),
        ("feet", "๐Ÿพ"),
        ("credit_card", "๐Ÿ’ณ"),
        ("ok_man", "๐Ÿ™†โ€โ™‚๏ธ"),
        ("biking_man", "๐Ÿšดโ€โ™‚๏ธ"),
        ("papua_new_guinea", "๐Ÿ‡ต๐Ÿ‡ฌ"),
        ("om", "๐Ÿ•‰๏ธ"),
        ("astronaut", "๐Ÿง‘โ€๐Ÿš€"),
        ("flamingo", "๐Ÿฆฉ"),
        ("fountain_pen", "๐Ÿ–‹๏ธ"),
        ("twisted_rightwards_arrows", "๐Ÿ”€"),
        ("triumph", "๐Ÿ˜ค"),
        ("facepunch", "๐Ÿ‘Š"),
        ("arrows_counterclockwise", "๐Ÿ”„"),
        ("goat", "๐Ÿ"),
        ("mahjong", "๐Ÿ€„"),
        ("file_folder", "๐Ÿ“"),
        ("turks_caicos_islands", "๐Ÿ‡น๐Ÿ‡จ"),
        ("yen", "๐Ÿ’ด"),
        ("busts_in_silhouette", "๐Ÿ‘ฅ"),
        ("sari", "๐Ÿฅป"),
        ("mosquito", "๐ŸฆŸ"),
        ("albania", "๐Ÿ‡ฆ๐Ÿ‡ฑ"),
        ("flat_shoe", "๐Ÿฅฟ"),
        ("high_brightness", "๐Ÿ”†"),
        ("baby", "๐Ÿ‘ถ"),
        ("family_man_girl", "๐Ÿ‘จโ€๐Ÿ‘ง"),
        ("ng_woman", "๐Ÿ™…โ€โ™€๏ธ"),
        ("technologist", "๐Ÿง‘โ€๐Ÿ’ป"),
        ("person_with_turban", "๐Ÿ‘ณ"),
        ("warning", "โš ๏ธ"),
        ("police_car", "๐Ÿš“"),
        ("pouting_woman", "๐Ÿ™Žโ€โ™€๏ธ"),
        ("white_square_button", "๐Ÿ”ณ"),
        ("x", "โŒ"),
        ("hindu_temple", "๐Ÿ›•"),
        ("manual_wheelchair", "๐Ÿฆฝ"),
        ("nicaragua", "๐Ÿ‡ณ๐Ÿ‡ฎ"),
        ("oman", "๐Ÿ‡ด๐Ÿ‡ฒ"),
        ("couple_with_heart_woman_man", "๐Ÿ‘ฉโ€โค๏ธโ€๐Ÿ‘จ"),
        ("andorra", "๐Ÿ‡ฆ๐Ÿ‡ฉ"),
        ("juggling_person", "๐Ÿคน"),
        ("pout", "๐Ÿ˜ก"),
        ("bosnia_herzegovina", "๐Ÿ‡ง๐Ÿ‡ฆ"),
        ("small_red_triangle_down", "๐Ÿ”ป"),
        ("bat", "๐Ÿฆ‡"),
        ("vatican_city", "๐Ÿ‡ป๐Ÿ‡ฆ"),
        ("heavy_plus_sign", "โž•"),
        ("mega", "๐Ÿ“ฃ"),
        ("people_holding_hands", "๐Ÿง‘โ€๐Ÿคโ€๐Ÿง‘"),
        ("three", "3๏ธโƒฃ"),
        ("woman_artist", "๐Ÿ‘ฉโ€๐ŸŽจ"),
        ("studio_microphone", "๐ŸŽ™๏ธ"),
        ("el_salvador", "๐Ÿ‡ธ๐Ÿ‡ป"),
        ("arrow_heading_down", "โคต๏ธ"),
        ("rose", "๐ŸŒน"),
        ("frowning_man", "๐Ÿ™โ€โ™‚๏ธ"),
        ("flushed", "๐Ÿ˜ณ"),
        ("two_women_holding_hands", "๐Ÿ‘ญ"),
        ("sparkle", "โ‡๏ธ"),
        ("tokyo_tower", "๐Ÿ—ผ"),
        ("running_man", "๐Ÿƒโ€โ™‚๏ธ"),
        ("city_sunset", "๐ŸŒ†"),
        ("hook", "๐Ÿช"),
        ("left_right_arrow", "โ†”๏ธ"),
        ("wallis_futuna", "๐Ÿ‡ผ๐Ÿ‡ซ"),
        ("rock", "๐Ÿชจ"),
        ("kissing", "๐Ÿ˜—"),
        ("hatched_chick", "๐Ÿฅ"),
        ("white_flag", "๐Ÿณ๏ธ"),
        ("bulgaria", "๐Ÿ‡ง๐Ÿ‡ฌ"),
        ("jamaica", "๐Ÿ‡ฏ๐Ÿ‡ฒ"),
        ("statue_of_liberty", "๐Ÿ—ฝ"),
        ("ribbon", "๐ŸŽ€"),
        ("woman_playing_water_polo", "๐Ÿคฝโ€โ™€๏ธ"),
        ("motor_scooter", "๐Ÿ›ต"),
        ("chair", "๐Ÿช‘"),
        ("giraffe", "๐Ÿฆ’"),
        ("transgender_symbol", "โšง๏ธ"),
        ("croissant", "๐Ÿฅ"),
        ("o", "โญ•"),
        ("art", "๐ŸŽจ"),
        ("skull_and_crossbones", "โ˜ ๏ธ"),
        ("kiss", "๐Ÿ’‹"),
        ("paperclips", "๐Ÿ–‡๏ธ"),
        ("spoon", "๐Ÿฅ„"),
        ("8ball", "๐ŸŽฑ"),
        ("swim_brief", "๐Ÿฉฒ"),
        ("classical_building", "๐Ÿ›๏ธ"),
        ("bellhop_bell", "๐Ÿ›Ž๏ธ"),
        ("collision", "๐Ÿ’ฅ"),
        ("fire_engine", "๐Ÿš’"),
        ("lock_with_ink_pen", "๐Ÿ”"),
        ("person_in_motorized_wheelchair", "๐Ÿง‘โ€๐Ÿฆผ"),
        ("woman_teacher", "๐Ÿ‘ฉโ€๐Ÿซ"),
        ("phone", "โ˜Ž๏ธ"),
        ("mouse2", "๐Ÿ"),
        ("joy", "๐Ÿ˜‚"),
        ("man_with_veil", "๐Ÿ‘ฐโ€โ™‚๏ธ"),
        ("cinema", "๐ŸŽฆ"),
        ("black_joker", "๐Ÿƒ"),
        ("tumbler_glass", "๐Ÿฅƒ"),
        ("footprints", "๐Ÿ‘ฃ"),
        ("togo", "๐Ÿ‡น๐Ÿ‡ฌ"),
        ("ant", "๐Ÿœ"),
        ("u7533", "๐Ÿˆธ"),
        ("hand_over_mouth", "๐Ÿคญ"),
        ("shrimp", "๐Ÿฆ"),
        ("angola", "๐Ÿ‡ฆ๐Ÿ‡ด"),
        ("two", "2๏ธโƒฃ"),
        ("cow", "๐Ÿฎ"),
        ("orange", "๐ŸŠ"),
        ("crossed_flags", "๐ŸŽŒ"),
        ("detective", "๐Ÿ•ต๏ธ"),
        ("no_mouth", "๐Ÿ˜ถ"),
        ("muscle", "๐Ÿ’ช"),
        ("ram", "๐Ÿ"),
        ("teapot", "๐Ÿซ–"),
        ("spiral_calendar", "๐Ÿ—“๏ธ"),
        ("superhero_man", "๐Ÿฆธโ€โ™‚๏ธ"),
        ("fist_left", "๐Ÿค›"),
        ("fire_extinguisher", "๐Ÿงฏ"),
        ("family_man_boy", "๐Ÿ‘จโ€๐Ÿ‘ฆ"),
        ("poultry_leg", "๐Ÿ—"),
        ("haircut_man", "๐Ÿ’‡โ€โ™‚๏ธ"),
        ("stuck_out_tongue_closed_eyes", "๐Ÿ˜"),
        ("grapes", "๐Ÿ‡"),
        ("snail", "๐ŸŒ"),
        ("fork_and_knife", "๐Ÿด"),
        ("cookie", "๐Ÿช"),
        ("accordion", "๐Ÿช—"),
        ("boar", "๐Ÿ—"),
        ("grenada", "๐Ÿ‡ฌ๐Ÿ‡ฉ"),
        ("secret", "ใŠ™๏ธ"),
        ("bouvet_island", "๐Ÿ‡ง๐Ÿ‡ป"),
        ("mage_woman", "๐Ÿง™โ€โ™€๏ธ"),
        ("rabbit", "๐Ÿฐ"),
        ("stuck_out_tongue", "๐Ÿ˜›"),
        ("bouncing_ball_person", "โ›น๏ธ"),
        ("scream_cat", "๐Ÿ™€"),
        ("bread", "๐Ÿž"),
        ("boom", "๐Ÿ’ฅ"),
        ("chad", "๐Ÿ‡น๐Ÿ‡ฉ"),
        ("mans_shoe", "๐Ÿ‘ž"),
        ("bullettrain_side", "๐Ÿš„"),
        ("leo", "โ™Œ"),
        ("st_vincent_grenadines", "๐Ÿ‡ป๐Ÿ‡จ"),
        ("anger", "๐Ÿ’ข"),
        ("pirate_flag", "๐Ÿดโ€โ˜ ๏ธ"),
        ("lotus_position", "๐Ÿง˜"),
        ("ambulance", "๐Ÿš‘"),
        ("rainbow_flag", "๐Ÿณ๏ธโ€๐ŸŒˆ"),
        ("bowing_man", "๐Ÿ™‡โ€โ™‚๏ธ"),
        ("family_man_woman_boy_boy", "๐Ÿ‘จโ€๐Ÿ‘ฉโ€๐Ÿ‘ฆโ€๐Ÿ‘ฆ"),
        ("clubs", "โ™ฃ๏ธ"),
        ("macau", "๐Ÿ‡ฒ๐Ÿ‡ด"),
        ("triangular_ruler", "๐Ÿ“"),
        ("coat", "๐Ÿงฅ"),
        ("cuba", "๐Ÿ‡จ๐Ÿ‡บ"),
        ("truck", "๐Ÿšš"),
        ("confused", "๐Ÿ˜•"),
        ("st_pierre_miquelon", "๐Ÿ‡ต๐Ÿ‡ฒ"),
        ("tulip", "๐ŸŒท"),
        ("samoa", "๐Ÿ‡ผ๐Ÿ‡ธ"),
        ("hotsprings", "โ™จ๏ธ"),
        ("star_struck", "๐Ÿคฉ"),
        ("bank", "๐Ÿฆ"),
        ("man_farmer", "๐Ÿ‘จโ€๐ŸŒพ"),
        ("rice_cracker", "๐Ÿ˜"),
        ("eyes", "๐Ÿ‘€"),
        ("womans_hat", "๐Ÿ‘’"),
        ("yellow_square", "๐ŸŸจ"),
        ("newspaper_roll", "๐Ÿ—ž๏ธ"),
        ("swaziland", "๐Ÿ‡ธ๐Ÿ‡ฟ"),
        ("woman_with_turban", "๐Ÿ‘ณโ€โ™€๏ธ"),
        ("toilet", "๐Ÿšฝ"),
        ("family", "๐Ÿ‘ช"),
        ("call_me_hand", "๐Ÿค™"),
        ("chicken", "๐Ÿ”"),
        ("united_arab_emirates", "๐Ÿ‡ฆ๐Ÿ‡ช"),
        ("derelict_house", "๐Ÿš๏ธ"),
        ("canada", "๐Ÿ‡จ๐Ÿ‡ฆ"),
        ("ramen", "๐Ÿœ"),
        ("tram", "๐ŸšŠ"),
        ("probing_cane", "๐Ÿฆฏ"),
        ("incoming_envelope", "๐Ÿ“จ"),
        ("artificial_satellite", "๐Ÿ›ฐ๏ธ"),
        ("clock430", "๐Ÿ•Ÿ"),
        ("spider_web", "๐Ÿ•ธ๏ธ"),
        ("rewind", "โช"),
        ("wine_glass", "๐Ÿท"),
        ("gambia", "๐Ÿ‡ฌ๐Ÿ‡ฒ"),
        ("peach", "๐Ÿ‘"),
        ("play_or_pause_button", "โฏ๏ธ"),
        ("white_large_square", "โฌœ"),
        ("1st_place_medal", "๐Ÿฅ‡"),
        ("closed_lock_with_key", "๐Ÿ”"),
        ("gibraltar", "๐Ÿ‡ฌ๐Ÿ‡ฎ"),
        ("face_with_head_bandage", "๐Ÿค•"),
        ("heart_on_fire", "โค๏ธโ€๐Ÿ”ฅ"),
        ("tickets", "๐ŸŽŸ๏ธ"),
        ("suriname", "๐Ÿ‡ธ๐Ÿ‡ท"),
        ("poland", "๐Ÿ‡ต๐Ÿ‡ฑ"),
        ("clock10", "๐Ÿ•™"),
        ("shark", "๐Ÿฆˆ"),
        ("ng", "๐Ÿ†–"),
        ("uk", "๐Ÿ‡ฌ๐Ÿ‡ง"),
        ("smoking", "๐Ÿšฌ"),
        ("blue_book", "๐Ÿ“˜"),
        ("man_artist", "๐Ÿ‘จโ€๐ŸŽจ"),
        ("sewing_needle", "๐Ÿชก"),
        ("finland", "๐Ÿ‡ซ๐Ÿ‡ฎ"),
        ("fireworks", "๐ŸŽ†"),
        ("gemini", "โ™Š"),
        ("ireland", "๐Ÿ‡ฎ๐Ÿ‡ช"),
        ("microscope", "๐Ÿ”ฌ"),
        ("llama", "๐Ÿฆ™"),
        ("bahrain", "๐Ÿ‡ง๐Ÿ‡ญ"),
        ("ideograph_advantage", "๐Ÿ‰"),
        ("bald_man", "๐Ÿ‘จโ€๐Ÿฆฒ"),
        ("sun_behind_large_cloud", "๐ŸŒฅ๏ธ"),
        ("sunflower", "๐ŸŒป"),
        ("pound", "๐Ÿ’ท"),
        ("weight_lifting_man", "๐Ÿ‹๏ธโ€โ™‚๏ธ"),
        ("relaxed", "โ˜บ๏ธ"),
        ("musical_score", "๐ŸŽผ"),
        ("baby_chick", "๐Ÿค"),
        ("motorway", "๐Ÿ›ฃ๏ธ"),
        ("european_union", "๐Ÿ‡ช๐Ÿ‡บ"),
        ("place_of_worship", "๐Ÿ›"),
        ("smiling_face_with_three_hearts", "๐Ÿฅฐ"),
        ("construction_worker_woman", "๐Ÿ‘ทโ€โ™€๏ธ"),
        ("orthodox_cross", "โ˜ฆ๏ธ"),
        ("clock3", "๐Ÿ•’"),
        ("pisces", "โ™“"),
        ("south_georgia_south_sandwich_islands", "๐Ÿ‡ฌ๐Ÿ‡ธ"),
        ("shopping_cart", "๐Ÿ›’"),
        ("necktie", "๐Ÿ‘”"),
        ("mailbox_with_mail", "๐Ÿ“ฌ"),
        ("family_man_man_girl", "๐Ÿ‘จโ€๐Ÿ‘จโ€๐Ÿ‘ง"),
        ("rofl", "๐Ÿคฃ"),
        ("boat", "โ›ต"),
        ("smile", "๐Ÿ˜„"),
        ("factory", "๐Ÿญ"),
        ("brain", "๐Ÿง "),
        ("motorized_wheelchair", "๐Ÿฆผ"),
        ("accept", "๐Ÿ‰‘"),
        ("briefcase", "๐Ÿ’ผ"),
        ("ballet_shoes", "๐Ÿฉฐ"),
        ("tomato", "๐Ÿ…"),
        ("heart_decoration", "๐Ÿ’Ÿ"),
        ("horse_racing", "๐Ÿ‡"),
        ("star_of_david", "โœก๏ธ"),
        ("large_orange_diamond", "๐Ÿ”ถ"),
        ("u6709", "๐Ÿˆถ"),
        ("flatbread", "๐Ÿซ“"),
        ("sweat_smile", "๐Ÿ˜…"),
        ("arrow_upper_left", "โ†–๏ธ"),
        ("radioactive", "โ˜ข๏ธ"),
        ("elephant", "๐Ÿ˜"),
        ("abc", "๐Ÿ”ค"),
        ("brunei", "๐Ÿ‡ง๐Ÿ‡ณ"),
        ("man_with_probing_cane", "๐Ÿ‘จโ€๐Ÿฆฏ"),
        ("laughing", "๐Ÿ˜†"),
        ("bar_chart", "๐Ÿ“Š"),
        ("building_construction", "๐Ÿ—๏ธ"),
        ("black_heart", "๐Ÿ–ค"),
        ("thumbsdown", "๐Ÿ‘Ž"),
        ("carrot", "๐Ÿฅ•"),
        ("nepal", "๐Ÿ‡ณ๐Ÿ‡ต"),
        ("northern_mariana_islands", "๐Ÿ‡ฒ๐Ÿ‡ต"),
        ("arrow_forward", "โ–ถ๏ธ"),
        ("tuvalu", "๐Ÿ‡น๐Ÿ‡ป"),
        ("cheese", "๐Ÿง€"),
        ("church", "โ›ช"),
        ("iran", "๐Ÿ‡ฎ๐Ÿ‡ท"),
        ("clock230", "๐Ÿ•"),
        ("swimming_man", "๐ŸŠโ€โ™‚๏ธ"),
        ("yellow_circle", "๐ŸŸก"),
        ("back", "๐Ÿ”™"),
        ("amphora", "๐Ÿบ"),
        ("oncoming_taxi", "๐Ÿš–"),
        ("construction", "๐Ÿšง"),
        ("email", "๐Ÿ“ง"),
        ("family_woman_woman_boy", "๐Ÿ‘ฉโ€๐Ÿ‘ฉโ€๐Ÿ‘ฆ"),
        ("raised_hands", "๐Ÿ™Œ"),
        ("bucket", "๐Ÿชฃ"),
        ("satellite", "๐Ÿ“ก"),
        ("heavy_check_mark", "โœ”๏ธ"),
        ("symbols", "๐Ÿ”ฃ"),
        ("woman_office_worker", "๐Ÿ‘ฉโ€๐Ÿ’ผ"),
        ("mailbox_with_no_mail", "๐Ÿ“ญ"),
        ("four_leaf_clover", "๐Ÿ€"),
        ("partying_face", "๐Ÿฅณ"),
        ("seven", "7๏ธโƒฃ"),
        ("rat", "๐Ÿ€"),
        ("stopwatch", "โฑ๏ธ"),
        ("green_heart", "๐Ÿ’š"),
        ("prayer_beads", "๐Ÿ“ฟ"),
        ("taxi", "๐Ÿš•"),
        ("screwdriver", "๐Ÿช›"),
        ("stop_sign", "๐Ÿ›‘"),
        ("orangutan", "๐Ÿฆง"),
        ("leftwards_arrow_with_hook", "โ†ฉ๏ธ"),
        ("pouch", "๐Ÿ‘"),
        ("goal_net", "๐Ÿฅ…"),
        ("petri_dish", "๐Ÿงซ"),
        ("safety_pin", "๐Ÿงท"),
        ("ethiopia", "๐Ÿ‡ช๐Ÿ‡น"),
        ("two_hearts", "๐Ÿ’•"),
        ("thread", "๐Ÿงต"),
        ("seychelles", "๐Ÿ‡ธ๐Ÿ‡จ"),
        ("crossed_fingers", "๐Ÿคž"),
        ("dominica", "๐Ÿ‡ฉ๐Ÿ‡ฒ"),
        ("man_student", "๐Ÿ‘จโ€๐ŸŽ“"),
        ("pilot", "๐Ÿง‘โ€โœˆ๏ธ"),
        ("sandal", "๐Ÿ‘ก"),
        ("couplekiss_man_woman", "๐Ÿ‘ฉโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿ‘จ"),
        ("man_with_turban", "๐Ÿ‘ณโ€โ™‚๏ธ"),
        ("poop", "๐Ÿ’ฉ"),
        ("shoe", "๐Ÿ‘ž"),
        ("colombia", "๐Ÿ‡จ๐Ÿ‡ด"),
        ("right_anger_bubble", "๐Ÿ—ฏ๏ธ"),
        ("malawi", "๐Ÿ‡ฒ๐Ÿ‡ผ"),
        ("small_orange_diamond", "๐Ÿ”ธ"),
        ("diya_lamp", "๐Ÿช”"),
        ("evergreen_tree", "๐ŸŒฒ"),
        ("beetle", "๐Ÿชฒ"),
        ("lizard", "๐ŸฆŽ"),
        ("sassy_woman", "๐Ÿ’โ€โ™€๏ธ"),
        ("key", "๐Ÿ”‘"),
        ("egg", "๐Ÿฅš"),
        ("houses", "๐Ÿ˜๏ธ"),
        ("woman_factory_worker", "๐Ÿ‘ฉโ€๐Ÿญ"),
        ("no_mobile_phones", "๐Ÿ“ต"),
        ("lithuania", "๐Ÿ‡ฑ๐Ÿ‡น"),
        ("violin", "๐ŸŽป"),
        ("first_quarter_moon_with_face", "๐ŸŒ›"),
        ("teacher", "๐Ÿง‘โ€๐Ÿซ"),
        ("small_airplane", "๐Ÿ›ฉ๏ธ"),
        ("cancer", "โ™‹"),
        ("couple_with_heart_man_man", "๐Ÿ‘จโ€โค๏ธโ€๐Ÿ‘จ"),
        ("woman_cook", "๐Ÿ‘ฉโ€๐Ÿณ"),
        ("virgo", "โ™"),
        ("stars", "๐ŸŒ "),
        ("fist_right", "๐Ÿคœ"),
        ("palm_tree", "๐ŸŒด"),
        ("white_check_mark", "โœ…"),
        ("tophat", "๐ŸŽฉ"),
        ("lacrosse", "๐Ÿฅ"),
        ("id", "๐Ÿ†”"),
        ("old_key", "๐Ÿ—๏ธ"),
        ("rwanda", "๐Ÿ‡ท๐Ÿ‡ผ"),
        ("philippines", "๐Ÿ‡ต๐Ÿ‡ญ"),
        ("mrs_claus", "๐Ÿคถ"),
        ("falafel", "๐Ÿง†"),
        ("dress", "๐Ÿ‘—"),
        ("botswana", "๐Ÿ‡ง๐Ÿ‡ผ"),
        ("camel", "๐Ÿซ"),
        ("lock", "๐Ÿ”’"),
        ("guam", "๐Ÿ‡ฌ๐Ÿ‡บ"),
        ("st_barthelemy", "๐Ÿ‡ง๐Ÿ‡ฑ"),
        ("white_small_square", "โ–ซ๏ธ"),
        ("tea", "๐Ÿต"),
        ("cut_of_meat", "๐Ÿฅฉ"),
        ("plate_with_cutlery", "๐Ÿฝ๏ธ"),
        ("lotus_position_man", "๐Ÿง˜โ€โ™‚๏ธ"),
        ("handbag", "๐Ÿ‘œ"),
        ("speak_no_evil", "๐Ÿ™Š"),
        ("clock830", "๐Ÿ•ฃ"),
        ("nauseated_face", "๐Ÿคข"),
        ("luxembourg", "๐Ÿ‡ฑ๐Ÿ‡บ"),
        ("clipperton_island", "๐Ÿ‡จ๐Ÿ‡ต"),
        ("woozy_face", "๐Ÿฅด"),
        ("writing_hand", "โœ๏ธ"),
        ("red_square", "๐ŸŸฅ"),
        ("railway_track", "๐Ÿ›ค๏ธ"),
        ("standing_woman", "๐Ÿงโ€โ™€๏ธ"),
        ("austria", "๐Ÿ‡ฆ๐Ÿ‡น"),
        ("woman_farmer", "๐Ÿ‘ฉโ€๐ŸŒพ"),
        ("guyana", "๐Ÿ‡ฌ๐Ÿ‡พ"),
        ("confetti_ball", "๐ŸŽŠ"),
        ("love_hotel", "๐Ÿฉ"),
        ("card_file_box", "๐Ÿ—ƒ๏ธ"),
        ("control_knobs", "๐ŸŽ›๏ธ"),
        ("japanese_ogre", "๐Ÿ‘น"),
        ("diamond_shape_with_a_dot_inside", "๐Ÿ’ "),
        ("no_entry_sign", "๐Ÿšซ"),
        ("seat", "๐Ÿ’บ"),
        ("eight_pointed_black_star", "โœด๏ธ"),
        ("wolf", "๐Ÿบ"),
        ("bee", "๐Ÿ"),
        ("bowing_woman", "๐Ÿ™‡โ€โ™€๏ธ"),
        ("newspaper", "๐Ÿ“ฐ"),
        ("hole", "๐Ÿ•ณ๏ธ"),
        ("biohazard", "โ˜ฃ๏ธ"),
        ("curacao", "๐Ÿ‡จ๐Ÿ‡ผ"),
        ("chocolate_bar", "๐Ÿซ"),
        ("sweden", "๐Ÿ‡ธ๐Ÿ‡ช"),
        ("christmas_island", "๐Ÿ‡จ๐Ÿ‡ฝ"),
        ("cyclone", "๐ŸŒ€"),
        ("blue_car", "๐Ÿš™"),
        ("smirk", "๐Ÿ˜"),
        ("mauritius", "๐Ÿ‡ฒ๐Ÿ‡บ"),
        ("do_not_litter", "๐Ÿšฏ"),
        ("cry", "๐Ÿ˜ข"),
        ("fog", "๐ŸŒซ๏ธ"),
        ("film_strip", "๐ŸŽž๏ธ"),
        ("bouncing_ball_man", "โ›น๏ธโ€โ™‚๏ธ"),
        ("brazil", "๐Ÿ‡ง๐Ÿ‡ท"),
        ("eject_button", "โ๏ธ"),
        ("pretzel", "๐Ÿฅจ"),
        ("deciduous_tree", "๐ŸŒณ"),
        ("turtle", "๐Ÿข"),
        ("chart_with_upwards_trend", "๐Ÿ“ˆ"),
        ("family_man_man_girl_boy", "๐Ÿ‘จโ€๐Ÿ‘จโ€๐Ÿ‘งโ€๐Ÿ‘ฆ"),
        ("helicopter", "๐Ÿš"),
        ("peace_symbol", "โ˜ฎ๏ธ"),
        ("toothbrush", "๐Ÿชฅ"),
        ("safety_vest", "๐Ÿฆบ"),
        ("roller_coaster", "๐ŸŽข"),
        ("running_shirt_with_sash", "๐ŸŽฝ"),
        ("purple_square", "๐ŸŸช"),
        ("scream", "๐Ÿ˜ฑ"),
        ("recycle", "โ™ป๏ธ"),
        ("czech_republic", "๐Ÿ‡จ๐Ÿ‡ฟ"),
        ("atm", "๐Ÿง"),
        ("racehorse", "๐ŸŽ"),
        ("mosque", "๐Ÿ•Œ"),
        ("iraq", "๐Ÿ‡ฎ๐Ÿ‡ถ"),
        ("white_heart", "๐Ÿค"),
        ("guard", "๐Ÿ’‚"),
        ("thailand", "๐Ÿ‡น๐Ÿ‡ญ"),
        ("hot_pepper", "๐ŸŒถ๏ธ"),
        ("ski", "๐ŸŽฟ"),
        ("cactus", "๐ŸŒต"),
        ("shaved_ice", "๐Ÿง"),
        ("point_left", "๐Ÿ‘ˆ"),
        ("sleepy", "๐Ÿ˜ช"),
        ("sauropod", "๐Ÿฆ•"),
        ("earth_americas", "๐ŸŒŽ"),
        ("falkland_islands", "๐Ÿ‡ซ๐Ÿ‡ฐ"),
        ("arrow_up_down", "โ†•๏ธ"),
        ("snowman_with_snow", "โ˜ƒ๏ธ"),
        ("bath", "๐Ÿ›€"),
        ("rice", "๐Ÿš"),
        ("knife", "๐Ÿ”ช"),
        ("brown_circle", "๐ŸŸค"),
        ("sunglasses", "๐Ÿ˜Ž"),
        ("female_detective", "๐Ÿ•ต๏ธโ€โ™€๏ธ"),
        ("syria", "๐Ÿ‡ธ๐Ÿ‡พ"),
        ("sunny", "โ˜€๏ธ"),
        ("no_bell", "๐Ÿ”•"),
        ("saxophone", "๐ŸŽท"),
        ("family_man_man_boy", "๐Ÿ‘จโ€๐Ÿ‘จโ€๐Ÿ‘ฆ"),
        ("minidisc", "๐Ÿ’ฝ"),
        ("office_worker", "๐Ÿง‘โ€๐Ÿ’ผ"),
        ("dromedary_camel", "๐Ÿช"),
        ("radio_button", "๐Ÿ”˜"),
        ("pouting_man", "๐Ÿ™Žโ€โ™‚๏ธ"),
        ("cyprus", "๐Ÿ‡จ๐Ÿ‡พ"),
        ("black_square_button", "๐Ÿ”ฒ"),
        ("climbing", "๐Ÿง—"),
        ("black_small_square", "โ–ช๏ธ"),
        ("couch_and_lamp", "๐Ÿ›‹๏ธ"),
        ("dancer", "๐Ÿ’ƒ"),
        ("mongolia", "๐Ÿ‡ฒ๐Ÿ‡ณ"),
        ("woman_mechanic", "๐Ÿ‘ฉโ€๐Ÿ”ง"),
        ("rugby_football", "๐Ÿ‰"),
        ("rice_ball", "๐Ÿ™"),
        ("st_helena", "๐Ÿ‡ธ๐Ÿ‡ญ"),
        ("pray", "๐Ÿ™"),
        ("capital_abcd", "๐Ÿ” "),
        ("pancakes", "๐Ÿฅž"),
        ("heavy_dollar_sign", "๐Ÿ’ฒ"),
        ("st_lucia", "๐Ÿ‡ฑ๐Ÿ‡จ"),
        ("crayon", "๐Ÿ–๏ธ"),
        ("fly", "๐Ÿชฐ"),
        ("heart_eyes_cat", "๐Ÿ˜ป"),
        ("uzbekistan", "๐Ÿ‡บ๐Ÿ‡ฟ"),
        ("uganda", "๐Ÿ‡บ๐Ÿ‡ฌ"),
        ("sleeping", "๐Ÿ˜ด"),
        ("man_factory_worker", "๐Ÿ‘จโ€๐Ÿญ"),
        ("pleading_face", "๐Ÿฅบ"),
        ("card_index", "๐Ÿ“‡"),
        ("vhs", "๐Ÿ“ผ"),
        ("disguised_face", "๐Ÿฅธ"),
        ("pencil", "๐Ÿ“"),
        ("paraguay", "๐Ÿ‡ต๐Ÿ‡พ"),
        ("slightly_smiling_face", "๐Ÿ™‚"),
        ("water_buffalo", "๐Ÿƒ"),
        ("honey_pot", "๐Ÿฏ"),
        ("arrow_up", "โฌ†๏ธ"),
        ("label", "๐Ÿท๏ธ"),
        ("cloud", "โ˜๏ธ"),
        ("nail_care", "๐Ÿ’…"),
        ("garlic", "๐Ÿง„"),
        ("bermuda", "๐Ÿ‡ง๐Ÿ‡ฒ"),
        ("montserrat", "๐Ÿ‡ฒ๐Ÿ‡ธ"),
        ("zap", "โšก"),
        ("boomerang", "๐Ÿชƒ"),
        ("convenience_store", "๐Ÿช"),
        ("eu", "๐Ÿ‡ช๐Ÿ‡บ"),
        ("headstone", "๐Ÿชฆ"),
        ("eggplant", "๐Ÿ†"),
        ("one", "1๏ธโƒฃ"),
        ("mayotte", "๐Ÿ‡พ๐Ÿ‡น"),
        ("lebanon", "๐Ÿ‡ฑ๐Ÿ‡ง"),
        ("u7981", "๐Ÿˆฒ"),
        ("u55b6", "๐Ÿˆบ"),
        ("plunger", "๐Ÿช "),
        ("athletic_shoe", "๐Ÿ‘Ÿ"),
        ("saudi_arabia", "๐Ÿ‡ธ๐Ÿ‡ฆ"),
        ("joystick", "๐Ÿ•น๏ธ"),
        ("pushpin", "๐Ÿ“Œ"),
        ("tristan_da_cunha", "๐Ÿ‡น๐Ÿ‡ฆ"),
        ("skunk", "๐Ÿฆจ"),
        ("tshirt", "๐Ÿ‘•"),
        ("family_man_boy_boy", "๐Ÿ‘จโ€๐Ÿ‘ฆโ€๐Ÿ‘ฆ"),
        ("vulcan_salute", "๐Ÿ––"),
        ("pizza", "๐Ÿ•"),
        ("love_letter", "๐Ÿ’Œ"),
        ("cockroach", "๐Ÿชณ"),
        ("reunion", "๐Ÿ‡ท๐Ÿ‡ช"),
        ("mountain_railway", "๐Ÿšž"),
        ("magnet", "๐Ÿงฒ"),
        ("benin", "๐Ÿ‡ง๐Ÿ‡ฏ"),
        ("shield", "๐Ÿ›ก๏ธ"),
        ("sri_lanka", "๐Ÿ‡ฑ๐Ÿ‡ฐ"),
        ("pencil2", "โœ๏ธ"),
        ("jigsaw", "๐Ÿงฉ"),
        ("white_medium_small_square", "โ—ฝ"),
        ("vampire_man", "๐Ÿง›โ€โ™‚๏ธ"),
        ("mountain_biking_man", "๐Ÿšตโ€โ™‚๏ธ"),
        ("feather", "๐Ÿชถ"),
        ("angel", "๐Ÿ‘ผ"),
        ("green_apple", "๐Ÿ"),
        ("date", "๐Ÿ“…"),
        ("lungs", "๐Ÿซ"),
        ("arrow_down", "โฌ‡๏ธ"),
        ("hotdog", "๐ŸŒญ"),
        ("sagittarius", "โ™"),
        ("snowflake", "โ„๏ธ"),
        ("family_woman_boy", "๐Ÿ‘ฉโ€๐Ÿ‘ฆ"),
        ("south_sudan", "๐Ÿ‡ธ๐Ÿ‡ธ"),
        ("ledger", "๐Ÿ“’"),
        ("burkina_faso", "๐Ÿ‡ง๐Ÿ‡ซ"),
        ("beginner", "๐Ÿ”ฐ"),
        ("argentina", "๐Ÿ‡ฆ๐Ÿ‡ท"),
        ("ballot_box_with_check", "โ˜‘๏ธ"),
        ("outbox_tray", "๐Ÿ“ค"),
        ("chile", "๐Ÿ‡จ๐Ÿ‡ฑ"),
        ("chess_pawn", "โ™Ÿ๏ธ"),
        ("ringed_planet", "๐Ÿช"),
        ("sun_behind_rain_cloud", "๐ŸŒฆ๏ธ"),
        ("solomon_islands", "๐Ÿ‡ธ๐Ÿ‡ง"),
        ("genie", "๐Ÿงž"),
        ("raising_hand", "๐Ÿ™‹"),
        ("dragon", "๐Ÿ‰"),
        ("frog", "๐Ÿธ"),
        ("congo_brazzaville", "๐Ÿ‡จ๐Ÿ‡ฌ"),
        ("child", "๐Ÿง’"),
        ("selfie", "๐Ÿคณ"),
        ("japan", "๐Ÿ—พ"),
        ("clock2", "๐Ÿ•‘"),
        ("kuwait", "๐Ÿ‡ฐ๐Ÿ‡ผ"),
        ("haircut_woman", "๐Ÿ’‡โ€โ™€๏ธ"),
        ("older_woman", "๐Ÿ‘ต"),
        ("ukraine", "๐Ÿ‡บ๐Ÿ‡ฆ"),
        ("wood", "๐Ÿชต"),
        ("mechanic", "๐Ÿง‘โ€๐Ÿ”ง"),
        ("policeman", "๐Ÿ‘ฎโ€โ™‚๏ธ"),
        ("bowling", "๐ŸŽณ"),
        ("calling", "๐Ÿ“ฒ"),
        ("tiger2", "๐Ÿ…"),
        ("mag", "๐Ÿ”"),
        ("kissing_smiling_eyes", "๐Ÿ˜™"),
        ("zany_face", "๐Ÿคช"),
        ("battery", "๐Ÿ”‹"),
        ("ascension_island", "๐Ÿ‡ฆ๐Ÿ‡จ"),
        ("softball", "๐ŸฅŽ"),
        ("senegal", "๐Ÿ‡ธ๐Ÿ‡ณ"),
        ("tornado", "๐ŸŒช๏ธ"),
        ("straight_ruler", "๐Ÿ“"),
        ("vibration_mode", "๐Ÿ“ณ"),
        ("sheep", "๐Ÿ‘"),
        ("notes", "๐ŸŽถ"),
        ("traffic_light", "๐Ÿšฅ"),
        ("bathtub", "๐Ÿ›"),
        ("drum", "๐Ÿฅ"),
        ("mailbox_closed", "๐Ÿ“ช"),
        ("sob", "๐Ÿ˜ญ"),
        ("sierra_leone", "๐Ÿ‡ธ๐Ÿ‡ฑ"),
        ("couple_with_heart_woman_woman", "๐Ÿ‘ฉโ€โค๏ธโ€๐Ÿ‘ฉ"),
        ("family_man_man_girl_girl", "๐Ÿ‘จโ€๐Ÿ‘จโ€๐Ÿ‘งโ€๐Ÿ‘ง"),
        ("clock130", "๐Ÿ•œ"),
        ("walking_man", "๐Ÿšถโ€โ™‚๏ธ"),
        ("tunisia", "๐Ÿ‡น๐Ÿ‡ณ"),
        ("mandarin", "๐ŸŠ"),
        ("euro", "๐Ÿ’ถ"),
        ("oncoming_automobile", "๐Ÿš˜"),
        ("red_haired_woman", "๐Ÿ‘ฉโ€๐Ÿฆฐ"),
        ("kissing_closed_eyes", "๐Ÿ˜š"),
        ("fire", "๐Ÿ”ฅ"),
        ("heavy_division_sign", "โž—"),
        ("namibia", "๐Ÿ‡ณ๐Ÿ‡ฆ"),
        ("potable_water", "๐Ÿšฐ"),
        ("2nd_place_medal", "๐Ÿฅˆ"),
        ("wedding", "๐Ÿ’’"),
        ("telephone", "โ˜Ž๏ธ"),
        ("point_down", "๐Ÿ‘‡"),
        ("station", "๐Ÿš‰"),
        ("couplekiss", "๐Ÿ’"),
        ("mammoth", "๐Ÿฆฃ"),
        ("crown", "๐Ÿ‘‘"),
        ("no_entry", "โ›”"),
        ("imp", "๐Ÿ‘ฟ"),
        ("children_crossing", "๐Ÿšธ"),
        ("earth_africa", "๐ŸŒ"),
        ("trolleybus", "๐ŸšŽ"),
        ("kneeling_man", "๐ŸงŽโ€โ™‚๏ธ"),
        ("pinata", "๐Ÿช…"),
        ("shopping", "๐Ÿ›๏ธ"),
        ("coin", "๐Ÿช™"),
        ("soccer", "โšฝ"),
        ("man_in_motorized_wheelchair", "๐Ÿ‘จโ€๐Ÿฆผ"),
        ("zimbabwe", "๐Ÿ‡ฟ๐Ÿ‡ผ"),
        ("scientist", "๐Ÿง‘โ€๐Ÿ”ฌ"),
        ("biking_woman", "๐Ÿšดโ€โ™€๏ธ"),
        ("bikini", "๐Ÿ‘™"),
        ("lips", "๐Ÿ‘„"),
        ("exclamation", "โ—"),
        ("hong_kong", "๐Ÿ‡ญ๐Ÿ‡ฐ"),
        ("burrito", "๐ŸŒฏ"),
        ("cold_sweat", "๐Ÿ˜ฐ"),
        ("metro", "๐Ÿš‡"),
        ("book", "๐Ÿ“–"),
        ("bagel", "๐Ÿฅฏ"),
        ("cartwheeling", "๐Ÿคธ"),
        ("peacock", "๐Ÿฆš"),
        ("comet", "โ˜„๏ธ"),
        ("armenia", "๐Ÿ‡ฆ๐Ÿ‡ฒ"),
        ("kyrgyzstan", "๐Ÿ‡ฐ๐Ÿ‡ฌ"),
        ("headphones", "๐ŸŽง"),
        ("climbing_woman", "๐Ÿง—โ€โ™€๏ธ"),
        ("football", "๐Ÿˆ"),
        ("woman_feeding_baby", "๐Ÿ‘ฉโ€๐Ÿผ"),
        ("black_cat", "๐Ÿˆโ€โฌ›"),
        ("supervillain_man", "๐Ÿฆนโ€โ™‚๏ธ"),
        ("central_african_republic", "๐Ÿ‡จ๐Ÿ‡ซ"),
        ("estonia", "๐Ÿ‡ช๐Ÿ‡ช"),
        ("crystal_ball", "๐Ÿ”ฎ"),
        ("hammer_and_wrench", "๐Ÿ› ๏ธ"),
        ("fairy", "๐Ÿงš"),
        ("oncoming_bus", "๐Ÿš"),
        ("vietnam", "๐Ÿ‡ป๐Ÿ‡ณ"),
        ("vs", "๐Ÿ†š"),
        ("blueberries", "๐Ÿซ"),
        ("family_man_woman_girl", "๐Ÿ‘จโ€๐Ÿ‘ฉโ€๐Ÿ‘ง"),
        ("wink", "๐Ÿ˜‰"),
        ("frowning_face", "โ˜น๏ธ"),
        ("bus", "๐ŸšŒ"),
        ("test_tube", "๐Ÿงช"),
        ("woman_dancing", "๐Ÿ’ƒ"),
        ("princess", "๐Ÿ‘ธ"),
        ("black_circle", "โšซ"),
        ("shower", "๐Ÿšฟ"),
        ("blond_haired_woman", "๐Ÿ‘ฑโ€โ™€๏ธ"),
        ("costa_rica", "๐Ÿ‡จ๐Ÿ‡ท"),
        ("woman_facepalming", "๐Ÿคฆโ€โ™€๏ธ"),
        ("puerto_rico", "๐Ÿ‡ต๐Ÿ‡ท"),
        ("afghanistan", "๐Ÿ‡ฆ๐Ÿ‡ซ"),
        ("tiger", "๐Ÿฏ"),
        ("drop_of_blood", "๐Ÿฉธ"),
        ("yum", "๐Ÿ˜‹"),
        ("denmark", "๐Ÿ‡ฉ๐Ÿ‡ฐ"),
        ("expressionless", "๐Ÿ˜‘"),
        ("american_samoa", "๐Ÿ‡ฆ๐Ÿ‡ธ"),
        ("kazakhstan", "๐Ÿ‡ฐ๐Ÿ‡ฟ"),
        ("united_nations", "๐Ÿ‡บ๐Ÿ‡ณ"),
        ("blowfish", "๐Ÿก"),
        ("factory_worker", "๐Ÿง‘โ€๐Ÿญ"),
        ("kneeling_woman", "๐ŸงŽโ€โ™€๏ธ"),
        ("ok_person", "๐Ÿ™†"),
        ("running_woman", "๐Ÿƒโ€โ™€๏ธ"),
        ("woman_with_headscarf", "๐Ÿง•"),
        ("malta", "๐Ÿ‡ฒ๐Ÿ‡น"),
        ("heart_eyes", "๐Ÿ˜"),
        ("new_moon_with_face", "๐ŸŒš"),
        ("woman_scientist", "๐Ÿ‘ฉโ€๐Ÿ”ฌ"),
        ("free", "๐Ÿ†“"),
        ("hatching_chick", "๐Ÿฃ"),
        ("sunrise", "๐ŸŒ…"),
        ("auto_rickshaw", "๐Ÿ›บ"),
        ("clock11", "๐Ÿ•š"),
        ("compass", "๐Ÿงญ"),
        ("scotland", "๐Ÿด๓ ง๓ ข๓ ณ๓ ฃ๓ ด๓ ฟ"),
        ("monkey", "๐Ÿ’"),
        ("prince", "๐Ÿคด"),
        ("eagle", "๐Ÿฆ…"),
        ("frowning", "๐Ÿ˜ฆ"),
        ("grey_exclamation", "โ•"),
        ("runner", "๐Ÿƒ"),
        ("e-mail", "๐Ÿ“ง"),
        ("question", "โ“"),
        ("dog", "๐Ÿถ"),
        ("standing_man", "๐Ÿงโ€โ™‚๏ธ"),
        ("tanabata_tree", "๐ŸŽ‹"),
        ("england", "๐Ÿด๓ ง๓ ข๓ ฅ๓ ฎ๓ ง๓ ฟ"),
        ("man_health_worker", "๐Ÿ‘จโ€โš•๏ธ"),
        ("alembic", "โš—๏ธ"),
        ("curling_stone", "๐ŸฅŒ"),
        ("eye", "๐Ÿ‘๏ธ"),
        ("vampire", "๐Ÿง›"),
        ("rice_scene", "๐ŸŽ‘"),
        ("slightly_frowning_face", "๐Ÿ™"),
        ("dizzy", "๐Ÿ’ซ"),
        ("shorts", "๐Ÿฉณ"),
        ("ophiuchus", "โ›Ž"),
        ("bison", "๐Ÿฆฌ"),
        ("oil_drum", "๐Ÿ›ข๏ธ"),
        ("family_woman_girl", "๐Ÿ‘ฉโ€๐Ÿ‘ง"),
        ("hibiscus", "๐ŸŒบ"),
        ("repeat_one", "๐Ÿ”‚"),
        ("ok", "๐Ÿ†—"),
        ("antigua_barbuda", "๐Ÿ‡ฆ๐Ÿ‡ฌ"),
        ("firefighter", "๐Ÿง‘โ€๐Ÿš’"),
        ("end", "๐Ÿ”š"),
        ("middle_finger", "๐Ÿ–•"),
        ("diego_garcia", "๐Ÿ‡ฉ๐Ÿ‡ฌ"),
        ("broken_heart", "๐Ÿ’”"),
        ("large_blue_diamond", "๐Ÿ”ท"),
        ("swan", "๐Ÿฆข"),
        ("love_you_gesture", "๐ŸคŸ"),
        ("surfing_man", "๐Ÿ„โ€โ™‚๏ธ"),
        ("person_curly_hair", "๐Ÿง‘โ€๐Ÿฆฑ"),
        ("lying_face", "๐Ÿคฅ"),
        ("relieved", "๐Ÿ˜Œ"),
        ("passport_control", "๐Ÿ›‚"),
        ("family_man_woman_girl_girl", "๐Ÿ‘จโ€๐Ÿ‘ฉโ€๐Ÿ‘งโ€๐Ÿ‘ง"),
        ("firecracker", "๐Ÿงจ"),
        ("articulated_lorry", "๐Ÿš›"),
        ("trackball", "๐Ÿ–ฒ๏ธ"),
        ("norfolk_island", "๐Ÿ‡ณ๐Ÿ‡ซ"),
        ("sweet_potato", "๐Ÿ "),
        ("hot_face", "๐Ÿฅต"),
        ("droplet", "๐Ÿ’ง"),
        ("rowboat", "๐Ÿšฃ"),
        ("man_judge", "๐Ÿ‘จโ€โš–๏ธ"),
        ("libya", "๐Ÿ‡ฑ๐Ÿ‡พ"),
        ("ok_hand", "๐Ÿ‘Œ"),
        ("hospital", "๐Ÿฅ"),
        ("small_blue_diamond", "๐Ÿ”น"),
        ("full_moon_with_face", "๐ŸŒ"),
        ("dancers", "๐Ÿ‘ฏ"),
        ("scorpion", "๐Ÿฆ‚"),
        ("tada", "๐ŸŽ‰"),
        ("arrow_heading_up", "โคด๏ธ"),
        ("fist", "โœŠ"),
        ("spades", "โ™ ๏ธ"),
        ("sauna_woman", "๐Ÿง–โ€โ™€๏ธ"),
        ("smiling_face_with_tear", "๐Ÿฅฒ"),
        ("luggage", "๐Ÿงณ"),
        ("copyright", "ยฉ๏ธ"),
        ("anchor", "โš“"),
        ("leg", "๐Ÿฆต"),
        ("door", "๐Ÿšช"),
        ("massage_woman", "๐Ÿ’†โ€โ™€๏ธ"),
        ("flying_disc", "๐Ÿฅ"),
        ("five", "5๏ธโƒฃ"),
        ("dolphin", "๐Ÿฌ"),
        ("maple_leaf", "๐Ÿ"),
        ("icecream", "๐Ÿฆ"),
        ("shrug", "๐Ÿคท"),
        ("brown_heart", "๐ŸคŽ"),
        ("green_book", "๐Ÿ“—"),
        ("bookmark", "๐Ÿ”–"),
        ("christmas_tree", "๐ŸŽ„"),
        ("carousel_horse", "๐ŸŽ "),
        ("star2", "๐ŸŒŸ"),
        ("broccoli", "๐Ÿฅฆ"),
        ("kneeling_person", "๐ŸงŽ"),
        ("film_projector", "๐Ÿ“ฝ๏ธ"),
        ("game_die", "๐ŸŽฒ"),
        ("raccoon", "๐Ÿฆ"),
        ("avocado", "๐Ÿฅ‘"),
        ("angry", "๐Ÿ˜ "),
        ("superhero_woman", "๐Ÿฆธโ€โ™€๏ธ"),
        ("magic_wand", "๐Ÿช„"),
        ("raising_hand_woman", "๐Ÿ™‹โ€โ™€๏ธ"),
        ("hut", "๐Ÿ›–"),
        ("roll_of_paper", "๐Ÿงป"),
        ("isle_of_man", "๐Ÿ‡ฎ๐Ÿ‡ฒ"),
        ("information_source", "โ„น๏ธ"),
        ("steam_locomotive", "๐Ÿš‚"),
        ("smiling_imp", "๐Ÿ˜ˆ"),
        ("clapper", "๐ŸŽฌ"),
        ("purple_circle", "๐ŸŸฃ"),
        ("volleyball", "๐Ÿ"),
        ("timer_clock", "โฒ๏ธ"),
        ("martinique", "๐Ÿ‡ฒ๐Ÿ‡ถ"),
        ("nauru", "๐Ÿ‡ณ๐Ÿ‡ท"),
        ("potato", "๐Ÿฅ”"),
        ("signal_strength", "๐Ÿ“ถ"),
        ("service_dog", "๐Ÿ•โ€๐Ÿฆบ"),
        ("person_feeding_baby", "๐Ÿง‘โ€๐Ÿผ"),
        ("lemon", "๐Ÿ‹"),
        ("ng_man", "๐Ÿ™…โ€โ™‚๏ธ"),
        ("leaves", "๐Ÿƒ"),
        ("paperclip", "๐Ÿ“Ž"),
        ("crab", "๐Ÿฆ€"),
        ("unlock", "๐Ÿ”“"),
        ("man_pilot", "๐Ÿ‘จโ€โœˆ๏ธ"),
        ("raised_hand", "โœ‹"),
        ("roll_eyes", "๐Ÿ™„"),
        ("-1", "๐Ÿ‘Ž"),
        ("belarus", "๐Ÿ‡ง๐Ÿ‡พ"),
        ("gear", "โš™๏ธ"),
        ("ox", "๐Ÿ‚"),
        ("guadeloupe", "๐Ÿ‡ฌ๐Ÿ‡ต"),
        ("punch", "๐Ÿ‘Š"),
        ("coffin", "โšฐ๏ธ"),
        ("mage_man", "๐Ÿง™โ€โ™‚๏ธ"),
        ("a", "๐Ÿ…ฐ๏ธ"),
        ("blossom", "๐ŸŒผ"),
        ("sun_behind_small_cloud", "๐ŸŒค๏ธ"),
        ("face_exhaling", "๐Ÿ˜ฎโ€๐Ÿ’จ"),
        ("norway", "๐Ÿ‡ณ๐Ÿ‡ด"),
        ("european_post_office", "๐Ÿค"),
        ("pensive", "๐Ÿ˜”"),
        ("clipboard", "๐Ÿ“‹"),
        ("wales", "๐Ÿด๓ ง๓ ข๓ ท๓ ฌ๓ ณ๓ ฟ"),
        ("bear", "๐Ÿป"),
        ("lotus_position_woman", "๐Ÿง˜โ€โ™€๏ธ"),
        ("milk_glass", "๐Ÿฅ›"),
        ("north_korea", "๐Ÿ‡ฐ๐Ÿ‡ต"),
        ("neutral_face", "๐Ÿ˜"),
        ("rescue_worker_helmet", "โ›‘๏ธ"),
        ("mauritania", "๐Ÿ‡ฒ๐Ÿ‡ท"),
        ("girl", "๐Ÿ‘ง"),
        ("weight_lifting_woman", "๐Ÿ‹๏ธโ€โ™€๏ธ"),
        ("netherlands", "๐Ÿ‡ณ๐Ÿ‡ฑ"),
        ("mountain_cableway", "๐Ÿš "),
        ("shinto_shrine", "โ›ฉ๏ธ"),
        ("v", "โœŒ๏ธ"),
        ("chipmunk", "๐Ÿฟ๏ธ"),
        ("arrow_upper_right", "โ†—๏ธ"),
        ("sake", "๐Ÿถ"),
        ("aland_islands", "๐Ÿ‡ฆ๐Ÿ‡ฝ"),
        ("cop", "๐Ÿ‘ฎ"),
        ("underage", "๐Ÿ”ž"),
        ("moldova", "๐Ÿ‡ฒ๐Ÿ‡ฉ"),
        ("clock8", "๐Ÿ•—"),
        ("stuffed_flatbread", "๐Ÿฅ™"),
        ("romania", "๐Ÿ‡ท๐Ÿ‡ด"),
        ("venezuela", "๐Ÿ‡ป๐Ÿ‡ช"),
        ("ship", "๐Ÿšข"),
        ("gem", "๐Ÿ’Ž"),
        ("taurus", "โ™‰"),
        ("montenegro", "๐Ÿ‡ฒ๐Ÿ‡ช"),
        ("eight_spoked_asterisk", "โœณ๏ธ"),
        ("fuelpump", "โ›ฝ"),
        ("bearded_person", "๐Ÿง”"),
        ("aerial_tramway", "๐Ÿšก"),
        ("spider", "๐Ÿ•ท๏ธ"),
        ("sloth", "๐Ÿฆฅ"),
        ("elf_woman", "๐Ÿงโ€โ™€๏ธ"),
        ("notebook_with_decorative_cover", "๐Ÿ“”"),
        ("tipping_hand_man", "๐Ÿ’โ€โ™‚๏ธ"),
        ("santa", "๐ŸŽ…"),
        ("orange_book", "๐Ÿ“™"),
        ("candle", "๐Ÿ•ฏ๏ธ"),
        ("mouse", "๐Ÿญ"),
        ("man_playing_handball", "๐Ÿคพโ€โ™‚๏ธ"),
        ("jp", "๐Ÿ‡ฏ๐Ÿ‡ต"),
        ("somalia", "๐Ÿ‡ธ๐Ÿ‡ด"),
        ("medal_sports", "๐Ÿ…"),
        ("orange_heart", "๐Ÿงก"),
        ("heavy_multiplication_x", "โœ–๏ธ"),
        ("liberia", "๐Ÿ‡ฑ๐Ÿ‡ท"),
        ("black_medium_square", "โ—ผ๏ธ"),
        ("open_hands", "๐Ÿ‘"),
        ("vertical_traffic_light", "๐Ÿšฆ"),
        ("sweat_drops", "๐Ÿ’ฆ"),
        ("macedonia", "๐Ÿ‡ฒ๐Ÿ‡ฐ"),
        ("package", "๐Ÿ“ฆ"),
        ("ear", "๐Ÿ‘‚"),
        ("couple", "๐Ÿ‘ซ"),
        ("window", "๐ŸชŸ"),
        ("kick_scooter", "๐Ÿ›ด"),
        ("us_virgin_islands", "๐Ÿ‡ป๐Ÿ‡ฎ"),
        ("dog2", "๐Ÿ•"),
        ("aquarius", "โ™’"),
        ("crescent_moon", "๐ŸŒ™"),
        ("raised_hand_with_fingers_splayed", "๐Ÿ–๏ธ"),
        ("woman_student", "๐Ÿ‘ฉโ€๐ŸŽ“"),
        ("ice_hockey", "๐Ÿ’"),
        ("clamp", "๐Ÿ—œ๏ธ"),
        ("repeat", "๐Ÿ”"),
        ("cayman_islands", "๐Ÿ‡ฐ๐Ÿ‡พ"),
        ("car", "๐Ÿš—"),
        ("green_salad", "๐Ÿฅ—"),
        ("racing_car", "๐ŸŽ๏ธ"),
        ("koko", "๐Ÿˆ"),
        ("meat_on_bone", "๐Ÿ–"),
        ("woman_juggling", "๐Ÿคนโ€โ™€๏ธ"),
        ("dominican_republic", "๐Ÿ‡ฉ๐Ÿ‡ด"),
        ("speedboat", "๐Ÿšค"),
        ("watermelon", "๐Ÿ‰"),
        ("flower_playing_cards", "๐ŸŽด"),
        ("nigeria", "๐Ÿ‡ณ๐Ÿ‡ฌ"),
        ("palau", "๐Ÿ‡ต๐Ÿ‡ผ"),
        ("crying_cat_face", "๐Ÿ˜ฟ"),
        ("loudspeaker", "๐Ÿ“ข"),
        ("parking", "๐Ÿ…ฟ๏ธ"),
        ("file_cabinet", "๐Ÿ—„๏ธ"),
        ("sun_with_face", "๐ŸŒž"),
        ("bell_pepper", "๐Ÿซ‘"),
        ("star_and_crescent", "โ˜ช๏ธ"),
        ("es", "๐Ÿ‡ช๐Ÿ‡ธ"),
        ("frowning_woman", "๐Ÿ™โ€โ™€๏ธ"),
        ("wrench", "๐Ÿ”ง"),
        ("money_mouth_face", "๐Ÿค‘"),
        ("handball_person", "๐Ÿคพ"),
        ("sparkles", "โœจ"),
        ("flying_saucer", "๐Ÿ›ธ"),
        ("mask", "๐Ÿ˜ท"),
        ("diamonds", "โ™ฆ๏ธ"),
        ("yemen", "๐Ÿ‡พ๐Ÿ‡ช"),
        ("left_luggage", "๐Ÿ›…"),
        ("railway_car", "๐Ÿšƒ"),
        ("no_good", "๐Ÿ™…"),
        ("jersey", "๐Ÿ‡ฏ๐Ÿ‡ช"),
        ("doughnut", "๐Ÿฉ"),
        ("camping", "๐Ÿ•๏ธ"),
        ("cold_face", "๐Ÿฅถ"),
        ("man_beard", "๐Ÿง”โ€โ™‚๏ธ"),
        ("u7a7a", "๐Ÿˆณ"),
        ("it", "๐Ÿ‡ฎ๐Ÿ‡น"),
        ("fish_cake", "๐Ÿฅ"),
        ("person_white_hair", "๐Ÿง‘โ€๐Ÿฆณ"),
        ("m", "โ“‚๏ธ"),
        ("white_haired_man", "๐Ÿ‘จโ€๐Ÿฆณ"),
        ("family_man_girl_girl", "๐Ÿ‘จโ€๐Ÿ‘งโ€๐Ÿ‘ง"),
        ("cricket_game", "๐Ÿ"),
        ("french_guiana", "๐Ÿ‡ฌ๐Ÿ‡ซ"),
        ("space_invader", "๐Ÿ‘พ"),
        ("night_with_stars", "๐ŸŒƒ"),
        ("cook_islands", "๐Ÿ‡จ๐Ÿ‡ฐ"),
        ("socks", "๐Ÿงฆ"),
        ("woman_playing_handball", "๐Ÿคพโ€โ™€๏ธ"),
        ("australia", "๐Ÿ‡ฆ๐Ÿ‡บ"),
        ("indonesia", "๐Ÿ‡ฎ๐Ÿ‡ฉ"),
        ("older_adult", "๐Ÿง“"),
        ("womans_clothes", "๐Ÿ‘š"),
        ("paintbrush", "๐Ÿ–Œ๏ธ"),
        ("transgender_flag", "๐Ÿณ๏ธโ€โšง๏ธ"),
        ("panda_face", "๐Ÿผ"),
        ("yawning_face", "๐Ÿฅฑ"),
        ("st_kitts_nevis", "๐Ÿ‡ฐ๐Ÿ‡ณ"),
        ("trumpet", "๐ŸŽบ"),
        ("man", "๐Ÿ‘จ"),
        ("congratulations", "ใŠ—๏ธ"),
        ("bacon", "๐Ÿฅ“"),
        ("kosovo", "๐Ÿ‡ฝ๐Ÿ‡ฐ"),
        ("sa", "๐Ÿˆ‚๏ธ"),
        ("round_pushpin", "๐Ÿ“"),
    ],
};