emojis.dart 51 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818
  1. // This file was generated by 0xN0x using emojilib's emoji data file:
  2. // https://github.com/muan/unicode-emoji-json/raw/main/data-by-emoji.json
  3. // at 2021-12-01 10:10:53
  4. // Emoji version 13.1
  5. const emojis = <String, String>{
  6. 'grinning_face': '😀',
  7. 'grinning_face_with_big_eyes': '😃',
  8. 'grinning_face_with_smiling_eyes': '😄',
  9. 'beaming_face_with_smiling_eyes': '😁',
  10. 'grinning_squinting_face': '😆',
  11. 'grinning_face_with_sweat': '😅',
  12. 'rolling_on_the_floor_laughing': '🤣',
  13. 'face_with_tears_of_joy': '😂',
  14. 'slightly_smiling_face': '🙂',
  15. 'upside_down_face': '🙃',
  16. 'winking_face': '😉',
  17. 'smiling_face_with_smiling_eyes': '😊',
  18. 'smiling_face_with_halo': '😇',
  19. 'smiling_face_with_hearts': '🥰',
  20. 'smiling_face_with_heart_eyes': '😍',
  21. 'star_struck': '🤩',
  22. 'face_blowing_a_kiss': '😘',
  23. 'kissing_face': '😗',
  24. 'smiling_face': '☺️',
  25. 'kissing_face_with_closed_eyes': '😚',
  26. 'kissing_face_with_smiling_eyes': '😙',
  27. 'smiling_face_with_tear': '🥲',
  28. 'face_savoring_food': '😋',
  29. 'face_with_tongue': '😛',
  30. 'winking_face_with_tongue': '😜',
  31. 'zany_face': '🤪',
  32. 'squinting_face_with_tongue': '😝',
  33. 'money_mouth_face': '🤑',
  34. 'hugging_face': '🤗',
  35. 'face_with_hand_over_mouth': '🤭',
  36. 'shushing_face': '🤫',
  37. 'thinking_face': '🤔',
  38. 'zipper_mouth_face': '🤐',
  39. 'face_with_raised_eyebrow': '🤨',
  40. 'neutral_face': '😐',
  41. 'expressionless_face': '😑',
  42. 'face_without_mouth': '😶',
  43. 'face_in_clouds': '😶‍🌫️',
  44. 'smirking_face': '😏',
  45. 'unamused_face': '😒',
  46. 'face_with_rolling_eyes': '🙄',
  47. 'grimacing_face': '😬',
  48. 'face_exhaling': '😮‍💨',
  49. 'lying_face': '🤥',
  50. 'relieved_face': '😌',
  51. 'pensive_face': '😔',
  52. 'sleepy_face': '😪',
  53. 'drooling_face': '🤤',
  54. 'sleeping_face': '😴',
  55. 'face_with_medical_mask': '😷',
  56. 'face_with_thermometer': '🤒',
  57. 'face_with_head_bandage': '🤕',
  58. 'nauseated_face': '🤢',
  59. 'face_vomiting': '🤮',
  60. 'sneezing_face': '🤧',
  61. 'hot_face': '🥵',
  62. 'cold_face': '🥶',
  63. 'woozy_face': '🥴',
  64. 'knocked_out_face': '😵',
  65. 'face_with_spiral_eyes': '😵‍💫',
  66. 'exploding_head': '🤯',
  67. 'cowboy_hat_face': '🤠',
  68. 'partying_face': '🥳',
  69. 'disguised_face': '🥸',
  70. 'smiling_face_with_sunglasses': '😎',
  71. 'nerd_face': '🤓',
  72. 'face_with_monocle': '🧐',
  73. 'confused_face': '😕',
  74. 'worried_face': '😟',
  75. 'slightly_frowning_face': '🙁',
  76. 'frowning_face': '☹️',
  77. 'face_with_open_mouth': '😮',
  78. 'hushed_face': '😯',
  79. 'astonished_face': '😲',
  80. 'flushed_face': '😳',
  81. 'pleading_face': '🥺',
  82. 'frowning_face_with_open_mouth': '😦',
  83. 'anguished_face': '😧',
  84. 'fearful_face': '😨',
  85. 'anxious_face_with_sweat': '😰',
  86. 'sad_but_relieved_face': '😥',
  87. 'crying_face': '😢',
  88. 'loudly_crying_face': '😭',
  89. 'face_screaming_in_fear': '😱',
  90. 'confounded_face': '😖',
  91. 'persevering_face': '😣',
  92. 'disappointed_face': '😞',
  93. 'downcast_face_with_sweat': '😓',
  94. 'weary_face': '😩',
  95. 'tired_face': '😫',
  96. 'yawning_face': '🥱',
  97. 'face_with_steam_from_nose': '😤',
  98. 'pouting_face': '😡',
  99. 'angry_face': '😠',
  100. 'face_with_symbols_on_mouth': '🤬',
  101. 'smiling_face_with_horns': '😈',
  102. 'angry_face_with_horns': '👿',
  103. 'skull': '💀',
  104. 'skull_and_crossbones': '☠️',
  105. 'pile_of_poo': '💩',
  106. 'clown_face': '🤡',
  107. 'ogre': '👹',
  108. 'goblin': '👺',
  109. 'ghost': '👻',
  110. 'alien': '👽',
  111. 'alien_monster': '👾',
  112. 'robot': '🤖',
  113. 'grinning_cat': '😺',
  114. 'grinning_cat_with_smiling_eyes': '😸',
  115. 'cat_with_tears_of_joy': '😹',
  116. 'smiling_cat_with_heart_eyes': '😻',
  117. 'cat_with_wry_smile': '😼',
  118. 'kissing_cat': '😽',
  119. 'weary_cat': '🙀',
  120. 'crying_cat': '😿',
  121. 'pouting_cat': '😾',
  122. 'see_no_evil_monkey': '🙈',
  123. 'hear_no_evil_monkey': '🙉',
  124. 'speak_no_evil_monkey': '🙊',
  125. 'kiss_mark': '💋',
  126. 'love_letter': '💌',
  127. 'heart_with_arrow': '💘',
  128. 'heart_with_ribbon': '💝',
  129. 'sparkling_heart': '💖',
  130. 'growing_heart': '💗',
  131. 'beating_heart': '💓',
  132. 'revolving_hearts': '💞',
  133. 'two_hearts': '💕',
  134. 'heart_decoration': '💟',
  135. 'heart_exclamation': '❣️',
  136. 'broken_heart': '💔',
  137. 'heart_on_fire': '❤️‍🔥',
  138. 'mending_heart': '❤️‍🩹',
  139. 'red_heart': '❤️',
  140. 'orange_heart': '🧡',
  141. 'yellow_heart': '💛',
  142. 'green_heart': '💚',
  143. 'blue_heart': '💙',
  144. 'purple_heart': '💜',
  145. 'brown_heart': '🤎',
  146. 'black_heart': '🖤',
  147. 'white_heart': '🤍',
  148. 'hundred_points': '💯',
  149. 'anger_symbol': '💢',
  150. 'collision': '💥',
  151. 'dizzy': '💫',
  152. 'sweat_droplets': '💦',
  153. 'dashing_away': '💨',
  154. 'hole': '🕳️',
  155. 'bomb': '💣',
  156. 'speech_balloon': '💬',
  157. 'eye_in_speech_bubble': '👁️‍🗨️',
  158. 'left_speech_bubble': '🗨️',
  159. 'right_anger_bubble': '🗯️',
  160. 'thought_balloon': '💭',
  161. 'zzz': '💤',
  162. 'waving_hand': '👋',
  163. 'raised_back_of_hand': '🤚',
  164. 'hand_with_fingers_splayed': '🖐️',
  165. 'raised_hand': '✋',
  166. 'vulcan_salute': '🖖',
  167. 'ok_hand': '👌',
  168. 'pinched_fingers': '🤌',
  169. 'pinching_hand': '🤏',
  170. 'victory_hand': '✌️',
  171. 'crossed_fingers': '🤞',
  172. 'love_you_gesture': '🤟',
  173. 'sign_of_the_horns': '🤘',
  174. 'call_me_hand': '🤙',
  175. 'backhand_index_pointing_left': '👈',
  176. 'backhand_index_pointing_right': '👉',
  177. 'backhand_index_pointing_up': '👆',
  178. 'middle_finger': '🖕',
  179. 'backhand_index_pointing_down': '👇',
  180. 'index_pointing_up': '☝️',
  181. 'thumbs_up': '👍',
  182. 'thumbs_down': '👎',
  183. 'raised_fist': '✊',
  184. 'oncoming_fist': '👊',
  185. 'left_facing_fist': '🤛',
  186. 'right_facing_fist': '🤜',
  187. 'clapping_hands': '👏',
  188. 'raising_hands': '🙌',
  189. 'open_hands': '👐',
  190. 'palms_up_together': '🤲',
  191. 'handshake': '🤝',
  192. 'folded_hands': '🙏',
  193. 'writing_hand': '✍️',
  194. 'nail_polish': '💅',
  195. 'selfie': '🤳',
  196. 'flexed_biceps': '💪',
  197. 'mechanical_arm': '🦾',
  198. 'mechanical_leg': '🦿',
  199. 'leg': '🦵',
  200. 'foot': '🦶',
  201. 'ear': '👂',
  202. 'ear_with_hearing_aid': '🦻',
  203. 'nose': '👃',
  204. 'brain': '🧠',
  205. 'anatomical_heart': '🫀',
  206. 'lungs': '🫁',
  207. 'tooth': '🦷',
  208. 'bone': '🦴',
  209. 'eyes': '👀',
  210. 'eye': '👁️',
  211. 'tongue': '👅',
  212. 'mouth': '👄',
  213. 'baby': '👶',
  214. 'child': '🧒',
  215. 'boy': '👦',
  216. 'girl': '👧',
  217. 'person': '🧑',
  218. 'person_blond_hair': '👱',
  219. 'man': '👨',
  220. 'person_beard': '🧔',
  221. 'man_beard': '🧔‍♂️',
  222. 'woman_beard': '🧔‍♀️',
  223. 'man_red_hair': '👨‍🦰',
  224. 'man_curly_hair': '👨‍🦱',
  225. 'man_white_hair': '👨‍🦳',
  226. 'man_bald': '👨‍🦲',
  227. 'woman': '👩',
  228. 'woman_red_hair': '👩‍🦰',
  229. 'person_red_hair': '🧑‍🦰',
  230. 'woman_curly_hair': '👩‍🦱',
  231. 'person_curly_hair': '🧑‍🦱',
  232. 'woman_white_hair': '👩‍🦳',
  233. 'person_white_hair': '🧑‍🦳',
  234. 'woman_bald': '👩‍🦲',
  235. 'person_bald': '🧑‍🦲',
  236. 'woman_blond_hair': '👱‍♀️',
  237. 'man_blond_hair': '👱‍♂️',
  238. 'older_person': '🧓',
  239. 'old_man': '👴',
  240. 'old_woman': '👵',
  241. 'person_frowning': '🙍',
  242. 'man_frowning': '🙍‍♂️',
  243. 'woman_frowning': '🙍‍♀️',
  244. 'person_pouting': '🙎',
  245. 'man_pouting': '🙎‍♂️',
  246. 'woman_pouting': '🙎‍♀️',
  247. 'person_gesturing_no': '🙅',
  248. 'man_gesturing_no': '🙅‍♂️',
  249. 'woman_gesturing_no': '🙅‍♀️',
  250. 'person_gesturing_ok': '🙆',
  251. 'man_gesturing_ok': '🙆‍♂️',
  252. 'woman_gesturing_ok': '🙆‍♀️',
  253. 'person_tipping_hand': '💁',
  254. 'man_tipping_hand': '💁‍♂️',
  255. 'woman_tipping_hand': '💁‍♀️',
  256. 'person_raising_hand': '🙋',
  257. 'man_raising_hand': '🙋‍♂️',
  258. 'woman_raising_hand': '🙋‍♀️',
  259. 'deaf_person': '🧏',
  260. 'deaf_man': '🧏‍♂️',
  261. 'deaf_woman': '🧏‍♀️',
  262. 'person_bowing': '🙇',
  263. 'man_bowing': '🙇‍♂️',
  264. 'woman_bowing': '🙇‍♀️',
  265. 'person_facepalming': '🤦',
  266. 'man_facepalming': '🤦‍♂️',
  267. 'woman_facepalming': '🤦‍♀️',
  268. 'person_shrugging': '🤷',
  269. 'man_shrugging': '🤷‍♂️',
  270. 'woman_shrugging': '🤷‍♀️',
  271. 'health_worker': '🧑‍⚕️',
  272. 'man_health_worker': '👨‍⚕️',
  273. 'woman_health_worker': '👩‍⚕️',
  274. 'student': '🧑‍🎓',
  275. 'man_student': '👨‍🎓',
  276. 'woman_student': '👩‍🎓',
  277. 'teacher': '🧑‍🏫',
  278. 'man_teacher': '👨‍🏫',
  279. 'woman_teacher': '👩‍🏫',
  280. 'judge': '🧑‍⚖️',
  281. 'man_judge': '👨‍⚖️',
  282. 'woman_judge': '👩‍⚖️',
  283. 'farmer': '🧑‍🌾',
  284. 'man_farmer': '👨‍🌾',
  285. 'woman_farmer': '👩‍🌾',
  286. 'cook': '🧑‍🍳',
  287. 'man_cook': '👨‍🍳',
  288. 'woman_cook': '👩‍🍳',
  289. 'mechanic': '🧑‍🔧',
  290. 'man_mechanic': '👨‍🔧',
  291. 'woman_mechanic': '👩‍🔧',
  292. 'factory_worker': '🧑‍🏭',
  293. 'man_factory_worker': '👨‍🏭',
  294. 'woman_factory_worker': '👩‍🏭',
  295. 'office_worker': '🧑‍💼',
  296. 'man_office_worker': '👨‍💼',
  297. 'woman_office_worker': '👩‍💼',
  298. 'scientist': '🧑‍🔬',
  299. 'man_scientist': '👨‍🔬',
  300. 'woman_scientist': '👩‍🔬',
  301. 'technologist': '🧑‍💻',
  302. 'man_technologist': '👨‍💻',
  303. 'woman_technologist': '👩‍💻',
  304. 'singer': '🧑‍🎤',
  305. 'man_singer': '👨‍🎤',
  306. 'woman_singer': '👩‍🎤',
  307. 'artist': '🧑‍🎨',
  308. 'man_artist': '👨‍🎨',
  309. 'woman_artist': '👩‍🎨',
  310. 'pilot': '🧑‍✈️',
  311. 'man_pilot': '👨‍✈️',
  312. 'woman_pilot': '👩‍✈️',
  313. 'astronaut': '🧑‍🚀',
  314. 'man_astronaut': '👨‍🚀',
  315. 'woman_astronaut': '👩‍🚀',
  316. 'firefighter': '🧑‍🚒',
  317. 'man_firefighter': '👨‍🚒',
  318. 'woman_firefighter': '👩‍🚒',
  319. 'police_officer': '👮',
  320. 'man_police_officer': '👮‍♂️',
  321. 'woman_police_officer': '👮‍♀️',
  322. 'detective': '🕵️',
  323. 'man_detective': '🕵️‍♂️',
  324. 'woman_detective': '🕵️‍♀️',
  325. 'guard': '💂',
  326. 'man_guard': '💂‍♂️',
  327. 'woman_guard': '💂‍♀️',
  328. 'ninja': '🥷',
  329. 'construction_worker': '👷',
  330. 'man_construction_worker': '👷‍♂️',
  331. 'woman_construction_worker': '👷‍♀️',
  332. 'prince': '🤴',
  333. 'princess': '👸',
  334. 'person_wearing_turban': '👳',
  335. 'man_wearing_turban': '👳‍♂️',
  336. 'woman_wearing_turban': '👳‍♀️',
  337. 'person_with_skullcap': '👲',
  338. 'woman_with_headscarf': '🧕',
  339. 'person_in_tuxedo': '🤵',
  340. 'man_in_tuxedo': '🤵‍♂️',
  341. 'woman_in_tuxedo': '🤵‍♀️',
  342. 'person_with_veil': '👰',
  343. 'man_with_veil': '👰‍♂️',
  344. 'woman_with_veil': '👰‍♀️',
  345. 'pregnant_woman': '🤰',
  346. 'breast_feeding': '🤱',
  347. 'woman_feeding_baby': '👩‍🍼',
  348. 'man_feeding_baby': '👨‍🍼',
  349. 'person_feeding_baby': '🧑‍🍼',
  350. 'baby_angel': '👼',
  351. 'santa_claus': '🎅',
  352. 'mrs_claus': '🤶',
  353. 'mx_claus': '🧑‍🎄',
  354. 'superhero': '🦸',
  355. 'man_superhero': '🦸‍♂️',
  356. 'woman_superhero': '🦸‍♀️',
  357. 'supervillain': '🦹',
  358. 'man_supervillain': '🦹‍♂️',
  359. 'woman_supervillain': '🦹‍♀️',
  360. 'mage': '🧙',
  361. 'man_mage': '🧙‍♂️',
  362. 'woman_mage': '🧙‍♀️',
  363. 'fairy': '🧚',
  364. 'man_fairy': '🧚‍♂️',
  365. 'woman_fairy': '🧚‍♀️',
  366. 'vampire': '🧛',
  367. 'man_vampire': '🧛‍♂️',
  368. 'woman_vampire': '🧛‍♀️',
  369. 'merperson': '🧜',
  370. 'merman': '🧜‍♂️',
  371. 'mermaid': '🧜‍♀️',
  372. 'elf': '🧝',
  373. 'man_elf': '🧝‍♂️',
  374. 'woman_elf': '🧝‍♀️',
  375. 'genie': '🧞',
  376. 'man_genie': '🧞‍♂️',
  377. 'woman_genie': '🧞‍♀️',
  378. 'zombie': '🧟',
  379. 'man_zombie': '🧟‍♂️',
  380. 'woman_zombie': '🧟‍♀️',
  381. 'person_getting_massage': '💆',
  382. 'man_getting_massage': '💆‍♂️',
  383. 'woman_getting_massage': '💆‍♀️',
  384. 'person_getting_haircut': '💇',
  385. 'man_getting_haircut': '💇‍♂️',
  386. 'woman_getting_haircut': '💇‍♀️',
  387. 'person_walking': '🚶',
  388. 'man_walking': '🚶‍♂️',
  389. 'woman_walking': '🚶‍♀️',
  390. 'person_standing': '🧍',
  391. 'man_standing': '🧍‍♂️',
  392. 'woman_standing': '🧍‍♀️',
  393. 'person_kneeling': '🧎',
  394. 'man_kneeling': '🧎‍♂️',
  395. 'woman_kneeling': '🧎‍♀️',
  396. 'person_with_white_cane': '🧑‍🦯',
  397. 'man_with_white_cane': '👨‍🦯',
  398. 'woman_with_white_cane': '👩‍🦯',
  399. 'person_in_motorized_wheelchair': '🧑‍🦼',
  400. 'man_in_motorized_wheelchair': '👨‍🦼',
  401. 'woman_in_motorized_wheelchair': '👩‍🦼',
  402. 'person_in_manual_wheelchair': '🧑‍🦽',
  403. 'man_in_manual_wheelchair': '👨‍🦽',
  404. 'woman_in_manual_wheelchair': '👩‍🦽',
  405. 'person_running': '🏃',
  406. 'man_running': '🏃‍♂️',
  407. 'woman_running': '🏃‍♀️',
  408. 'woman_dancing': '💃',
  409. 'man_dancing': '🕺',
  410. 'person_in_suit_levitating': '🕴️',
  411. 'people_with_bunny_ears': '👯',
  412. 'men_with_bunny_ears': '👯‍♂️',
  413. 'women_with_bunny_ears': '👯‍♀️',
  414. 'person_in_steamy_room': '🧖',
  415. 'man_in_steamy_room': '🧖‍♂️',
  416. 'woman_in_steamy_room': '🧖‍♀️',
  417. 'person_climbing': '🧗',
  418. 'man_climbing': '🧗‍♂️',
  419. 'woman_climbing': '🧗‍♀️',
  420. 'person_fencing': '🤺',
  421. 'horse_racing': '🏇',
  422. 'skier': '⛷️',
  423. 'snowboarder': '🏂',
  424. 'person_golfing': '🏌️',
  425. 'man_golfing': '🏌️‍♂️',
  426. 'woman_golfing': '🏌️‍♀️',
  427. 'person_surfing': '🏄',
  428. 'man_surfing': '🏄‍♂️',
  429. 'woman_surfing': '🏄‍♀️',
  430. 'person_rowing_boat': '🚣',
  431. 'man_rowing_boat': '🚣‍♂️',
  432. 'woman_rowing_boat': '🚣‍♀️',
  433. 'person_swimming': '🏊',
  434. 'man_swimming': '🏊‍♂️',
  435. 'woman_swimming': '🏊‍♀️',
  436. 'person_bouncing_ball': '⛹️',
  437. 'man_bouncing_ball': '⛹️‍♂️',
  438. 'woman_bouncing_ball': '⛹️‍♀️',
  439. 'person_lifting_weights': '🏋️',
  440. 'man_lifting_weights': '🏋️‍♂️',
  441. 'woman_lifting_weights': '🏋️‍♀️',
  442. 'person_biking': '🚴',
  443. 'man_biking': '🚴‍♂️',
  444. 'woman_biking': '🚴‍♀️',
  445. 'person_mountain_biking': '🚵',
  446. 'man_mountain_biking': '🚵‍♂️',
  447. 'woman_mountain_biking': '🚵‍♀️',
  448. 'person_cartwheeling': '🤸',
  449. 'man_cartwheeling': '🤸‍♂️',
  450. 'woman_cartwheeling': '🤸‍♀️',
  451. 'people_wrestling': '🤼',
  452. 'men_wrestling': '🤼‍♂️',
  453. 'women_wrestling': '🤼‍♀️',
  454. 'person_playing_water_polo': '🤽',
  455. 'man_playing_water_polo': '🤽‍♂️',
  456. 'woman_playing_water_polo': '🤽‍♀️',
  457. 'person_playing_handball': '🤾',
  458. 'man_playing_handball': '🤾‍♂️',
  459. 'woman_playing_handball': '🤾‍♀️',
  460. 'person_juggling': '🤹',
  461. 'man_juggling': '🤹‍♂️',
  462. 'woman_juggling': '🤹‍♀️',
  463. 'person_in_lotus_position': '🧘',
  464. 'man_in_lotus_position': '🧘‍♂️',
  465. 'woman_in_lotus_position': '🧘‍♀️',
  466. 'person_taking_bath': '🛀',
  467. 'person_in_bed': '🛌',
  468. 'people_holding_hands': '🧑‍🤝‍🧑',
  469. 'women_holding_hands': '👭',
  470. 'woman_and_man_holding_hands': '👫',
  471. 'men_holding_hands': '👬',
  472. 'kiss': '💏',
  473. 'kiss_woman_man': '👩‍❤️‍💋‍👨',
  474. 'kiss_man_man': '👨‍❤️‍💋‍👨',
  475. 'kiss_woman_woman': '👩‍❤️‍💋‍👩',
  476. 'couple_with_heart': '💑',
  477. 'couple_with_heart_woman_man': '👩‍❤️‍👨',
  478. 'couple_with_heart_man_man': '👨‍❤️‍👨',
  479. 'couple_with_heart_woman_woman': '👩‍❤️‍👩',
  480. 'family': '👪',
  481. 'family_man_woman_boy': '👨‍👩‍👦',
  482. 'family_man_woman_girl': '👨‍👩‍👧',
  483. 'family_man_woman_girl_boy': '👨‍👩‍👧‍👦',
  484. 'family_man_woman_boy_boy': '👨‍👩‍👦‍👦',
  485. 'family_man_woman_girl_girl': '👨‍👩‍👧‍👧',
  486. 'family_man_man_boy': '👨‍👨‍👦',
  487. 'family_man_man_girl': '👨‍👨‍👧',
  488. 'family_man_man_girl_boy': '👨‍👨‍👧‍👦',
  489. 'family_man_man_boy_boy': '👨‍👨‍👦‍👦',
  490. 'family_man_man_girl_girl': '👨‍👨‍👧‍👧',
  491. 'family_woman_woman_boy': '👩‍👩‍👦',
  492. 'family_woman_woman_girl': '👩‍👩‍👧',
  493. 'family_woman_woman_girl_boy': '👩‍👩‍👧‍👦',
  494. 'family_woman_woman_boy_boy': '👩‍👩‍👦‍👦',
  495. 'family_woman_woman_girl_girl': '👩‍👩‍👧‍👧',
  496. 'family_man_boy': '👨‍👦',
  497. 'family_man_boy_boy': '👨‍👦‍👦',
  498. 'family_man_girl': '👨‍👧',
  499. 'family_man_girl_boy': '👨‍👧‍👦',
  500. 'family_man_girl_girl': '👨‍👧‍👧',
  501. 'family_woman_boy': '👩‍👦',
  502. 'family_woman_boy_boy': '👩‍👦‍👦',
  503. 'family_woman_girl': '👩‍👧',
  504. 'family_woman_girl_boy': '👩‍👧‍👦',
  505. 'family_woman_girl_girl': '👩‍👧‍👧',
  506. 'speaking_head': '🗣️',
  507. 'bust_in_silhouette': '👤',
  508. 'busts_in_silhouette': '👥',
  509. 'people_hugging': '🫂',
  510. 'footprints': '👣',
  511. 'monkey_face': '🐵',
  512. 'monkey': '🐒',
  513. 'gorilla': '🦍',
  514. 'orangutan': '🦧',
  515. 'dog_face': '🐶',
  516. 'dog': '🐕',
  517. 'guide_dog': '🦮',
  518. 'service_dog': '🐕‍🦺',
  519. 'poodle': '🐩',
  520. 'wolf': '🐺',
  521. 'fox': '🦊',
  522. 'raccoon': '🦝',
  523. 'cat_face': '🐱',
  524. 'cat': '🐈',
  525. 'black_cat': '🐈‍⬛',
  526. 'lion': '🦁',
  527. 'tiger_face': '🐯',
  528. 'tiger': '🐅',
  529. 'leopard': '🐆',
  530. 'horse_face': '🐴',
  531. 'horse': '🐎',
  532. 'unicorn': '🦄',
  533. 'zebra': '🦓',
  534. 'deer': '🦌',
  535. 'bison': '🦬',
  536. 'cow_face': '🐮',
  537. 'ox': '🐂',
  538. 'water_buffalo': '🐃',
  539. 'cow': '🐄',
  540. 'pig_face': '🐷',
  541. 'pig': '🐖',
  542. 'boar': '🐗',
  543. 'pig_nose': '🐽',
  544. 'ram': '🐏',
  545. 'ewe': '🐑',
  546. 'goat': '🐐',
  547. 'camel': '🐪',
  548. 'two_hump_camel': '🐫',
  549. 'llama': '🦙',
  550. 'giraffe': '🦒',
  551. 'elephant': '🐘',
  552. 'mammoth': '🦣',
  553. 'rhinoceros': '🦏',
  554. 'hippopotamus': '🦛',
  555. 'mouse_face': '🐭',
  556. 'mouse': '🐁',
  557. 'rat': '🐀',
  558. 'hamster': '🐹',
  559. 'rabbit_face': '🐰',
  560. 'rabbit': '🐇',
  561. 'chipmunk': '🐿️',
  562. 'beaver': '🦫',
  563. 'hedgehog': '🦔',
  564. 'bat': '🦇',
  565. 'bear': '🐻',
  566. 'polar_bear': '🐻‍❄️',
  567. 'koala': '🐨',
  568. 'panda': '🐼',
  569. 'sloth': '🦥',
  570. 'otter': '🦦',
  571. 'skunk': '🦨',
  572. 'kangaroo': '🦘',
  573. 'badger': '🦡',
  574. 'paw_prints': '🐾',
  575. 'turkey': '🦃',
  576. 'chicken': '🐔',
  577. 'rooster': '🐓',
  578. 'hatching_chick': '🐣',
  579. 'baby_chick': '🐤',
  580. 'front_facing_baby_chick': '🐥',
  581. 'bird': '🐦',
  582. 'penguin': '🐧',
  583. 'dove': '🕊️',
  584. 'eagle': '🦅',
  585. 'duck': '🦆',
  586. 'swan': '🦢',
  587. 'owl': '🦉',
  588. 'dodo': '🦤',
  589. 'feather': '🪶',
  590. 'flamingo': '🦩',
  591. 'peacock': '🦚',
  592. 'parrot': '🦜',
  593. 'frog': '🐸',
  594. 'crocodile': '🐊',
  595. 'turtle': '🐢',
  596. 'lizard': '🦎',
  597. 'snake': '🐍',
  598. 'dragon_face': '🐲',
  599. 'dragon': '🐉',
  600. 'sauropod': '🦕',
  601. 't_rex': '🦖',
  602. 'spouting_whale': '🐳',
  603. 'whale': '🐋',
  604. 'dolphin': '🐬',
  605. 'seal': '🦭',
  606. 'fish': '🐟',
  607. 'tropical_fish': '🐠',
  608. 'blowfish': '🐡',
  609. 'shark': '🦈',
  610. 'octopus': '🐙',
  611. 'spiral_shell': '🐚',
  612. 'snail': '🐌',
  613. 'butterfly': '🦋',
  614. 'bug': '🐛',
  615. 'ant': '🐜',
  616. 'honeybee': '🐝',
  617. 'beetle': '🪲',
  618. 'lady_beetle': '🐞',
  619. 'cricket': '🦗',
  620. 'cockroach': '🪳',
  621. 'spider': '🕷️',
  622. 'spider_web': '🕸️',
  623. 'scorpion': '🦂',
  624. 'mosquito': '🦟',
  625. 'fly': '🪰',
  626. 'worm': '🪱',
  627. 'microbe': '🦠',
  628. 'bouquet': '💐',
  629. 'cherry_blossom': '🌸',
  630. 'white_flower': '💮',
  631. 'rosette': '🏵️',
  632. 'rose': '🌹',
  633. 'wilted_flower': '🥀',
  634. 'hibiscus': '🌺',
  635. 'sunflower': '🌻',
  636. 'blossom': '🌼',
  637. 'tulip': '🌷',
  638. 'seedling': '🌱',
  639. 'potted_plant': '🪴',
  640. 'evergreen_tree': '🌲',
  641. 'deciduous_tree': '🌳',
  642. 'palm_tree': '🌴',
  643. 'cactus': '🌵',
  644. 'sheaf_of_rice': '🌾',
  645. 'herb': '🌿',
  646. 'shamrock': '☘️',
  647. 'four_leaf_clover': '🍀',
  648. 'maple_leaf': '🍁',
  649. 'fallen_leaf': '🍂',
  650. 'leaf_fluttering_in_wind': '🍃',
  651. 'grapes': '🍇',
  652. 'melon': '🍈',
  653. 'watermelon': '🍉',
  654. 'tangerine': '🍊',
  655. 'lemon': '🍋',
  656. 'banana': '🍌',
  657. 'pineapple': '🍍',
  658. 'mango': '🥭',
  659. 'red_apple': '🍎',
  660. 'green_apple': '🍏',
  661. 'pear': '🍐',
  662. 'peach': '🍑',
  663. 'cherries': '🍒',
  664. 'strawberry': '🍓',
  665. 'blueberries': '🫐',
  666. 'kiwi_fruit': '🥝',
  667. 'tomato': '🍅',
  668. 'olive': '🫒',
  669. 'coconut': '🥥',
  670. 'avocado': '🥑',
  671. 'eggplant': '🍆',
  672. 'potato': '🥔',
  673. 'carrot': '🥕',
  674. 'ear_of_corn': '🌽',
  675. 'hot_pepper': '🌶️',
  676. 'bell_pepper': '🫑',
  677. 'cucumber': '🥒',
  678. 'leafy_green': '🥬',
  679. 'broccoli': '🥦',
  680. 'garlic': '🧄',
  681. 'onion': '🧅',
  682. 'mushroom': '🍄',
  683. 'peanuts': '🥜',
  684. 'chestnut': '🌰',
  685. 'bread': '🍞',
  686. 'croissant': '🥐',
  687. 'baguette_bread': '🥖',
  688. 'flatbread': '🫓',
  689. 'pretzel': '🥨',
  690. 'bagel': '🥯',
  691. 'pancakes': '🥞',
  692. 'waffle': '🧇',
  693. 'cheese_wedge': '🧀',
  694. 'meat_on_bone': '🍖',
  695. 'poultry_leg': '🍗',
  696. 'cut_of_meat': '🥩',
  697. 'bacon': '🥓',
  698. 'hamburger': '🍔',
  699. 'french_fries': '🍟',
  700. 'pizza': '🍕',
  701. 'hot_dog': '🌭',
  702. 'sandwich': '🥪',
  703. 'taco': '🌮',
  704. 'burrito': '🌯',
  705. 'tamale': '🫔',
  706. 'stuffed_flatbread': '🥙',
  707. 'falafel': '🧆',
  708. 'egg': '🥚',
  709. 'cooking': '🍳',
  710. 'shallow_pan_of_food': '🥘',
  711. 'pot_of_food': '🍲',
  712. 'fondue': '🫕',
  713. 'bowl_with_spoon': '🥣',
  714. 'green_salad': '🥗',
  715. 'popcorn': '🍿',
  716. 'butter': '🧈',
  717. 'salt': '🧂',
  718. 'canned_food': '🥫',
  719. 'bento_box': '🍱',
  720. 'rice_cracker': '🍘',
  721. 'rice_ball': '🍙',
  722. 'cooked_rice': '🍚',
  723. 'curry_rice': '🍛',
  724. 'steaming_bowl': '🍜',
  725. 'spaghetti': '🍝',
  726. 'roasted_sweet_potato': '🍠',
  727. 'oden': '🍢',
  728. 'sushi': '🍣',
  729. 'fried_shrimp': '🍤',
  730. 'fish_cake_with_swirl': '🍥',
  731. 'moon_cake': '🥮',
  732. 'dango': '🍡',
  733. 'dumpling': '🥟',
  734. 'fortune_cookie': '🥠',
  735. 'takeout_box': '🥡',
  736. 'crab': '🦀',
  737. 'lobster': '🦞',
  738. 'shrimp': '🦐',
  739. 'squid': '🦑',
  740. 'oyster': '🦪',
  741. 'soft_ice_cream': '🍦',
  742. 'shaved_ice': '🍧',
  743. 'ice_cream': '🍨',
  744. 'doughnut': '🍩',
  745. 'cookie': '🍪',
  746. 'birthday_cake': '🎂',
  747. 'shortcake': '🍰',
  748. 'cupcake': '🧁',
  749. 'pie': '🥧',
  750. 'chocolate_bar': '🍫',
  751. 'candy': '🍬',
  752. 'lollipop': '🍭',
  753. 'custard': '🍮',
  754. 'honey_pot': '🍯',
  755. 'baby_bottle': '🍼',
  756. 'glass_of_milk': '🥛',
  757. 'hot_beverage': '☕',
  758. 'teapot': '🫖',
  759. 'teacup_without_handle': '🍵',
  760. 'sake': '🍶',
  761. 'bottle_with_popping_cork': '🍾',
  762. 'wine_glass': '🍷',
  763. 'cocktail_glass': '🍸',
  764. 'tropical_drink': '🍹',
  765. 'beer_mug': '🍺',
  766. 'clinking_beer_mugs': '🍻',
  767. 'clinking_glasses': '🥂',
  768. 'tumbler_glass': '🥃',
  769. 'cup_with_straw': '🥤',
  770. 'bubble_tea': '🧋',
  771. 'beverage_box': '🧃',
  772. 'mate': '🧉',
  773. 'ice': '🧊',
  774. 'chopsticks': '🥢',
  775. 'fork_and_knife_with_plate': '🍽️',
  776. 'fork_and_knife': '🍴',
  777. 'spoon': '🥄',
  778. 'kitchen_knife': '🔪',
  779. 'amphora': '🏺',
  780. 'globe_showing_europe_africa': '🌍',
  781. 'globe_showing_americas': '🌎',
  782. 'globe_showing_asia_australia': '🌏',
  783. 'globe_with_meridians': '🌐',
  784. 'world_map': '🗺️',
  785. 'map_of_japan': '🗾',
  786. 'compass': '🧭',
  787. 'snow_capped_mountain': '🏔️',
  788. 'mountain': '⛰️',
  789. 'volcano': '🌋',
  790. 'mount_fuji': '🗻',
  791. 'camping': '🏕️',
  792. 'beach_with_umbrella': '🏖️',
  793. 'desert': '🏜️',
  794. 'desert_island': '🏝️',
  795. 'national_park': '🏞️',
  796. 'stadium': '🏟️',
  797. 'classical_building': '🏛️',
  798. 'building_construction': '🏗️',
  799. 'brick': '🧱',
  800. 'rock': '🪨',
  801. 'wood': '🪵',
  802. 'hut': '🛖',
  803. 'houses': '🏘️',
  804. 'derelict_house': '🏚️',
  805. 'house': '🏠',
  806. 'house_with_garden': '🏡',
  807. 'office_building': '🏢',
  808. 'japanese_post_office': '🏣',
  809. 'post_office': '🏤',
  810. 'hospital': '🏥',
  811. 'bank': '🏦',
  812. 'hotel': '🏨',
  813. 'love_hotel': '🏩',
  814. 'convenience_store': '🏪',
  815. 'school': '🏫',
  816. 'department_store': '🏬',
  817. 'factory': '🏭',
  818. 'japanese_castle': '🏯',
  819. 'castle': '🏰',
  820. 'wedding': '💒',
  821. 'tokyo_tower': '🗼',
  822. 'statue_of_liberty': '🗽',
  823. 'church': '⛪',
  824. 'mosque': '🕌',
  825. 'hindu_temple': '🛕',
  826. 'synagogue': '🕍',
  827. 'shinto_shrine': '⛩️',
  828. 'kaaba': '🕋',
  829. 'fountain': '⛲',
  830. 'tent': '⛺',
  831. 'foggy': '🌁',
  832. 'night_with_stars': '🌃',
  833. 'cityscape': '🏙️',
  834. 'sunrise_over_mountains': '🌄',
  835. 'sunrise': '🌅',
  836. 'cityscape_at_dusk': '🌆',
  837. 'sunset': '🌇',
  838. 'bridge_at_night': '🌉',
  839. 'hot_springs': '♨️',
  840. 'carousel_horse': '🎠',
  841. 'ferris_wheel': '🎡',
  842. 'roller_coaster': '🎢',
  843. 'barber_pole': '💈',
  844. 'circus_tent': '🎪',
  845. 'locomotive': '🚂',
  846. 'railway_car': '🚃',
  847. 'high_speed_train': '🚄',
  848. 'bullet_train': '🚅',
  849. 'train': '🚆',
  850. 'metro': '🚇',
  851. 'light_rail': '🚈',
  852. 'station': '🚉',
  853. 'tram': '🚊',
  854. 'monorail': '🚝',
  855. 'mountain_railway': '🚞',
  856. 'tram_car': '🚋',
  857. 'bus': '🚌',
  858. 'oncoming_bus': '🚍',
  859. 'trolleybus': '🚎',
  860. 'minibus': '🚐',
  861. 'ambulance': '🚑',
  862. 'fire_engine': '🚒',
  863. 'police_car': '🚓',
  864. 'oncoming_police_car': '🚔',
  865. 'taxi': '🚕',
  866. 'oncoming_taxi': '🚖',
  867. 'automobile': '🚗',
  868. 'oncoming_automobile': '🚘',
  869. 'sport_utility_vehicle': '🚙',
  870. 'pickup_truck': '🛻',
  871. 'delivery_truck': '🚚',
  872. 'articulated_lorry': '🚛',
  873. 'tractor': '🚜',
  874. 'racing_car': '🏎️',
  875. 'motorcycle': '🏍️',
  876. 'motor_scooter': '🛵',
  877. 'manual_wheelchair': '🦽',
  878. 'motorized_wheelchair': '🦼',
  879. 'auto_rickshaw': '🛺',
  880. 'bicycle': '🚲',
  881. 'kick_scooter': '🛴',
  882. 'skateboard': '🛹',
  883. 'roller_skate': '🛼',
  884. 'bus_stop': '🚏',
  885. 'motorway': '🛣️',
  886. 'railway_track': '🛤️',
  887. 'oil_drum': '🛢️',
  888. 'fuel_pump': '⛽',
  889. 'police_car_light': '🚨',
  890. 'horizontal_traffic_light': '🚥',
  891. 'vertical_traffic_light': '🚦',
  892. 'stop_sign': '🛑',
  893. 'construction': '🚧',
  894. 'anchor': '⚓',
  895. 'sailboat': '⛵',
  896. 'canoe': '🛶',
  897. 'speedboat': '🚤',
  898. 'passenger_ship': '🛳️',
  899. 'ferry': '⛴️',
  900. 'motor_boat': '🛥️',
  901. 'ship': '🚢',
  902. 'airplane': '✈️',
  903. 'small_airplane': '🛩️',
  904. 'airplane_departure': '🛫',
  905. 'airplane_arrival': '🛬',
  906. 'parachute': '🪂',
  907. 'seat': '💺',
  908. 'helicopter': '🚁',
  909. 'suspension_railway': '🚟',
  910. 'mountain_cableway': '🚠',
  911. 'aerial_tramway': '🚡',
  912. 'satellite': '🛰️',
  913. 'rocket': '🚀',
  914. 'flying_saucer': '🛸',
  915. 'bellhop_bell': '🛎️',
  916. 'luggage': '🧳',
  917. 'hourglass_done': '⌛',
  918. 'hourglass_not_done': '⏳',
  919. 'watch': '⌚',
  920. 'alarm_clock': '⏰',
  921. 'stopwatch': '⏱️',
  922. 'timer_clock': '⏲️',
  923. 'mantelpiece_clock': '🕰️',
  924. 'twelve_o_clock': '🕛',
  925. 'twelve_thirty': '🕧',
  926. 'one_o_clock': '🕐',
  927. 'one_thirty': '🕜',
  928. 'two_o_clock': '🕑',
  929. 'two_thirty': '🕝',
  930. 'three_o_clock': '🕒',
  931. 'three_thirty': '🕞',
  932. 'four_o_clock': '🕓',
  933. 'four_thirty': '🕟',
  934. 'five_o_clock': '🕔',
  935. 'five_thirty': '🕠',
  936. 'six_o_clock': '🕕',
  937. 'six_thirty': '🕡',
  938. 'seven_o_clock': '🕖',
  939. 'seven_thirty': '🕢',
  940. 'eight_o_clock': '🕗',
  941. 'eight_thirty': '🕣',
  942. 'nine_o_clock': '🕘',
  943. 'nine_thirty': '🕤',
  944. 'ten_o_clock': '🕙',
  945. 'ten_thirty': '🕥',
  946. 'eleven_o_clock': '🕚',
  947. 'eleven_thirty': '🕦',
  948. 'new_moon': '🌑',
  949. 'waxing_crescent_moon': '🌒',
  950. 'first_quarter_moon': '🌓',
  951. 'waxing_gibbous_moon': '🌔',
  952. 'full_moon': '🌕',
  953. 'waning_gibbous_moon': '🌖',
  954. 'last_quarter_moon': '🌗',
  955. 'waning_crescent_moon': '🌘',
  956. 'crescent_moon': '🌙',
  957. 'new_moon_face': '🌚',
  958. 'first_quarter_moon_face': '🌛',
  959. 'last_quarter_moon_face': '🌜',
  960. 'thermometer': '🌡️',
  961. 'sun': '☀️',
  962. 'full_moon_face': '🌝',
  963. 'sun_with_face': '🌞',
  964. 'ringed_planet': '🪐',
  965. 'star': '⭐',
  966. 'glowing_star': '🌟',
  967. 'shooting_star': '🌠',
  968. 'milky_way': '🌌',
  969. 'cloud': '☁️',
  970. 'sun_behind_cloud': '⛅',
  971. 'cloud_with_lightning_and_rain': '⛈️',
  972. 'sun_behind_small_cloud': '🌤️',
  973. 'sun_behind_large_cloud': '🌥️',
  974. 'sun_behind_rain_cloud': '🌦️',
  975. 'cloud_with_rain': '🌧️',
  976. 'cloud_with_snow': '🌨️',
  977. 'cloud_with_lightning': '🌩️',
  978. 'tornado': '🌪️',
  979. 'fog': '🌫️',
  980. 'wind_face': '🌬️',
  981. 'cyclone': '🌀',
  982. 'rainbow': '🌈',
  983. 'closed_umbrella': '🌂',
  984. 'umbrella': '☂️',
  985. 'umbrella_with_rain_drops': '☔',
  986. 'umbrella_on_ground': '⛱️',
  987. 'high_voltage': '⚡',
  988. 'snowflake': '❄️',
  989. 'snowman': '☃️',
  990. 'snowman_without_snow': '⛄',
  991. 'comet': '☄️',
  992. 'fire': '🔥',
  993. 'droplet': '💧',
  994. 'water_wave': '🌊',
  995. 'jack_o_lantern': '🎃',
  996. 'christmas_tree': '🎄',
  997. 'fireworks': '🎆',
  998. 'sparkler': '🎇',
  999. 'firecracker': '🧨',
  1000. 'sparkles': '✨',
  1001. 'balloon': '🎈',
  1002. 'party_popper': '🎉',
  1003. 'confetti_ball': '🎊',
  1004. 'tanabata_tree': '🎋',
  1005. 'pine_decoration': '🎍',
  1006. 'japanese_dolls': '🎎',
  1007. 'carp_streamer': '🎏',
  1008. 'wind_chime': '🎐',
  1009. 'moon_viewing_ceremony': '🎑',
  1010. 'red_envelope': '🧧',
  1011. 'ribbon': '🎀',
  1012. 'wrapped_gift': '🎁',
  1013. 'reminder_ribbon': '🎗️',
  1014. 'admission_tickets': '🎟️',
  1015. 'ticket': '🎫',
  1016. 'military_medal': '🎖️',
  1017. 'trophy': '🏆',
  1018. 'sports_medal': '🏅',
  1019. '1st_place_medal': '🥇',
  1020. '2nd_place_medal': '🥈',
  1021. '3rd_place_medal': '🥉',
  1022. 'soccer_ball': '⚽',
  1023. 'baseball': '⚾',
  1024. 'softball': '🥎',
  1025. 'basketball': '🏀',
  1026. 'volleyball': '🏐',
  1027. 'american_football': '🏈',
  1028. 'rugby_football': '🏉',
  1029. 'tennis': '🎾',
  1030. 'flying_disc': '🥏',
  1031. 'bowling': '🎳',
  1032. 'cricket_game': '🏏',
  1033. 'field_hockey': '🏑',
  1034. 'ice_hockey': '🏒',
  1035. 'lacrosse': '🥍',
  1036. 'ping_pong': '🏓',
  1037. 'badminton': '🏸',
  1038. 'boxing_glove': '🥊',
  1039. 'martial_arts_uniform': '🥋',
  1040. 'goal_net': '🥅',
  1041. 'flag_in_hole': '⛳',
  1042. 'ice_skate': '⛸️',
  1043. 'fishing_pole': '🎣',
  1044. 'diving_mask': '🤿',
  1045. 'running_shirt': '🎽',
  1046. 'skis': '🎿',
  1047. 'sled': '🛷',
  1048. 'curling_stone': '🥌',
  1049. 'bullseye': '🎯',
  1050. 'yo_yo': '🪀',
  1051. 'kite': '🪁',
  1052. 'pool_8_ball': '🎱',
  1053. 'crystal_ball': '🔮',
  1054. 'magic_wand': '🪄',
  1055. 'nazar_amulet': '🧿',
  1056. 'video_game': '🎮',
  1057. 'joystick': '🕹️',
  1058. 'slot_machine': '🎰',
  1059. 'game_die': '🎲',
  1060. 'puzzle_piece': '🧩',
  1061. 'teddy_bear': '🧸',
  1062. 'pinata': '🪅',
  1063. 'nesting_dolls': '🪆',
  1064. 'spade_suit': '♠️',
  1065. 'heart_suit': '♥️',
  1066. 'diamond_suit': '♦️',
  1067. 'club_suit': '♣️',
  1068. 'chess_pawn': '♟️',
  1069. 'joker': '🃏',
  1070. 'mahjong_red_dragon': '🀄',
  1071. 'flower_playing_cards': '🎴',
  1072. 'performing_arts': '🎭',
  1073. 'framed_picture': '🖼️',
  1074. 'artist_palette': '🎨',
  1075. 'thread': '🧵',
  1076. 'sewing_needle': '🪡',
  1077. 'yarn': '🧶',
  1078. 'knot': '🪢',
  1079. 'glasses': '👓',
  1080. 'sunglasses': '🕶️',
  1081. 'goggles': '🥽',
  1082. 'lab_coat': '🥼',
  1083. 'safety_vest': '🦺',
  1084. 'necktie': '👔',
  1085. 't_shirt': '👕',
  1086. 'jeans': '👖',
  1087. 'scarf': '🧣',
  1088. 'gloves': '🧤',
  1089. 'coat': '🧥',
  1090. 'socks': '🧦',
  1091. 'dress': '👗',
  1092. 'kimono': '👘',
  1093. 'sari': '🥻',
  1094. 'one_piece_swimsuit': '🩱',
  1095. 'briefs': '🩲',
  1096. 'shorts': '🩳',
  1097. 'bikini': '👙',
  1098. 'woman_s_clothes': '👚',
  1099. 'purse': '👛',
  1100. 'handbag': '👜',
  1101. 'clutch_bag': '👝',
  1102. 'shopping_bags': '🛍️',
  1103. 'backpack': '🎒',
  1104. 'thong_sandal': '🩴',
  1105. 'man_s_shoe': '👞',
  1106. 'running_shoe': '👟',
  1107. 'hiking_boot': '🥾',
  1108. 'flat_shoe': '🥿',
  1109. 'high_heeled_shoe': '👠',
  1110. 'woman_s_sandal': '👡',
  1111. 'ballet_shoes': '🩰',
  1112. 'woman_s_boot': '👢',
  1113. 'crown': '👑',
  1114. 'woman_s_hat': '👒',
  1115. 'top_hat': '🎩',
  1116. 'graduation_cap': '🎓',
  1117. 'billed_cap': '🧢',
  1118. 'military_helmet': '🪖',
  1119. 'rescue_worker_s_helmet': '⛑️',
  1120. 'prayer_beads': '📿',
  1121. 'lipstick': '💄',
  1122. 'ring': '💍',
  1123. 'gem_stone': '💎',
  1124. 'muted_speaker': '🔇',
  1125. 'speaker_low_volume': '🔈',
  1126. 'speaker_medium_volume': '🔉',
  1127. 'speaker_high_volume': '🔊',
  1128. 'loudspeaker': '📢',
  1129. 'megaphone': '📣',
  1130. 'postal_horn': '📯',
  1131. 'bell': '🔔',
  1132. 'bell_with_slash': '🔕',
  1133. 'musical_score': '🎼',
  1134. 'musical_note': '🎵',
  1135. 'musical_notes': '🎶',
  1136. 'studio_microphone': '🎙️',
  1137. 'level_slider': '🎚️',
  1138. 'control_knobs': '🎛️',
  1139. 'microphone': '🎤',
  1140. 'headphone': '🎧',
  1141. 'radio': '📻',
  1142. 'saxophone': '🎷',
  1143. 'accordion': '🪗',
  1144. 'guitar': '🎸',
  1145. 'musical_keyboard': '🎹',
  1146. 'trumpet': '🎺',
  1147. 'violin': '🎻',
  1148. 'banjo': '🪕',
  1149. 'drum': '🥁',
  1150. 'long_drum': '🪘',
  1151. 'mobile_phone': '📱',
  1152. 'mobile_phone_with_arrow': '📲',
  1153. 'telephone': '☎️',
  1154. 'telephone_receiver': '📞',
  1155. 'pager': '📟',
  1156. 'fax_machine': '📠',
  1157. 'battery': '🔋',
  1158. 'electric_plug': '🔌',
  1159. 'laptop': '💻',
  1160. 'desktop_computer': '🖥️',
  1161. 'printer': '🖨️',
  1162. 'keyboard': '⌨️',
  1163. 'computer_mouse': '🖱️',
  1164. 'trackball': '🖲️',
  1165. 'computer_disk': '💽',
  1166. 'floppy_disk': '💾',
  1167. 'optical_disk': '💿',
  1168. 'dvd': '📀',
  1169. 'abacus': '🧮',
  1170. 'movie_camera': '🎥',
  1171. 'film_frames': '🎞️',
  1172. 'film_projector': '📽️',
  1173. 'clapper_board': '🎬',
  1174. 'television': '📺',
  1175. 'camera': '📷',
  1176. 'camera_with_flash': '📸',
  1177. 'video_camera': '📹',
  1178. 'videocassette': '📼',
  1179. 'magnifying_glass_tilted_left': '🔍',
  1180. 'magnifying_glass_tilted_right': '🔎',
  1181. 'candle': '🕯️',
  1182. 'light_bulb': '💡',
  1183. 'flashlight': '🔦',
  1184. 'red_paper_lantern': '🏮',
  1185. 'diya_lamp': '🪔',
  1186. 'notebook_with_decorative_cover': '📔',
  1187. 'closed_book': '📕',
  1188. 'open_book': '📖',
  1189. 'green_book': '📗',
  1190. 'blue_book': '📘',
  1191. 'orange_book': '📙',
  1192. 'books': '📚',
  1193. 'notebook': '📓',
  1194. 'ledger': '📒',
  1195. 'page_with_curl': '📃',
  1196. 'scroll': '📜',
  1197. 'page_facing_up': '📄',
  1198. 'newspaper': '📰',
  1199. 'rolled_up_newspaper': '🗞️',
  1200. 'bookmark_tabs': '📑',
  1201. 'bookmark': '🔖',
  1202. 'label': '🏷️',
  1203. 'money_bag': '💰',
  1204. 'coin': '🪙',
  1205. 'yen_banknote': '💴',
  1206. 'dollar_banknote': '💵',
  1207. 'euro_banknote': '💶',
  1208. 'pound_banknote': '💷',
  1209. 'money_with_wings': '💸',
  1210. 'credit_card': '💳',
  1211. 'receipt': '🧾',
  1212. 'chart_increasing_with_yen': '💹',
  1213. 'envelope': '✉️',
  1214. 'e_mail': '📧',
  1215. 'incoming_envelope': '📨',
  1216. 'envelope_with_arrow': '📩',
  1217. 'outbox_tray': '📤',
  1218. 'inbox_tray': '📥',
  1219. 'package': '📦',
  1220. 'closed_mailbox_with_raised_flag': '📫',
  1221. 'closed_mailbox_with_lowered_flag': '📪',
  1222. 'open_mailbox_with_raised_flag': '📬',
  1223. 'open_mailbox_with_lowered_flag': '📭',
  1224. 'postbox': '📮',
  1225. 'ballot_box_with_ballot': '🗳️',
  1226. 'pencil': '✏️',
  1227. 'black_nib': '✒️',
  1228. 'fountain_pen': '🖋️',
  1229. 'pen': '🖊️',
  1230. 'paintbrush': '🖌️',
  1231. 'crayon': '🖍️',
  1232. 'memo': '📝',
  1233. 'briefcase': '💼',
  1234. 'file_folder': '📁',
  1235. 'open_file_folder': '📂',
  1236. 'card_index_dividers': '🗂️',
  1237. 'calendar': '📅',
  1238. 'tear_off_calendar': '📆',
  1239. 'spiral_notepad': '🗒️',
  1240. 'spiral_calendar': '🗓️',
  1241. 'card_index': '📇',
  1242. 'chart_increasing': '📈',
  1243. 'chart_decreasing': '📉',
  1244. 'bar_chart': '📊',
  1245. 'clipboard': '📋',
  1246. 'pushpin': '📌',
  1247. 'round_pushpin': '📍',
  1248. 'paperclip': '📎',
  1249. 'linked_paperclips': '🖇️',
  1250. 'straight_ruler': '📏',
  1251. 'triangular_ruler': '📐',
  1252. 'scissors': '✂️',
  1253. 'card_file_box': '🗃️',
  1254. 'file_cabinet': '🗄️',
  1255. 'wastebasket': '🗑️',
  1256. 'locked': '🔒',
  1257. 'unlocked': '🔓',
  1258. 'locked_with_pen': '🔏',
  1259. 'locked_with_key': '🔐',
  1260. 'key': '🔑',
  1261. 'old_key': '🗝️',
  1262. 'hammer': '🔨',
  1263. 'axe': '🪓',
  1264. 'pick': '⛏️',
  1265. 'hammer_and_pick': '⚒️',
  1266. 'hammer_and_wrench': '🛠️',
  1267. 'dagger': '🗡️',
  1268. 'crossed_swords': '⚔️',
  1269. 'water_pistol': '🔫',
  1270. 'boomerang': '🪃',
  1271. 'bow_and_arrow': '🏹',
  1272. 'shield': '🛡️',
  1273. 'carpentry_saw': '🪚',
  1274. 'wrench': '🔧',
  1275. 'screwdriver': '🪛',
  1276. 'nut_and_bolt': '🔩',
  1277. 'gear': '⚙️',
  1278. 'clamp': '🗜️',
  1279. 'balance_scale': '⚖️',
  1280. 'white_cane': '🦯',
  1281. 'link': '🔗',
  1282. 'chains': '⛓️',
  1283. 'hook': '🪝',
  1284. 'toolbox': '🧰',
  1285. 'magnet': '🧲',
  1286. 'ladder': '🪜',
  1287. 'alembic': '⚗️',
  1288. 'test_tube': '🧪',
  1289. 'petri_dish': '🧫',
  1290. 'dna': '🧬',
  1291. 'microscope': '🔬',
  1292. 'telescope': '🔭',
  1293. 'satellite_antenna': '📡',
  1294. 'syringe': '💉',
  1295. 'drop_of_blood': '🩸',
  1296. 'pill': '💊',
  1297. 'adhesive_bandage': '🩹',
  1298. 'stethoscope': '🩺',
  1299. 'door': '🚪',
  1300. 'elevator': '🛗',
  1301. 'mirror': '🪞',
  1302. 'window': '🪟',
  1303. 'bed': '🛏️',
  1304. 'couch_and_lamp': '🛋️',
  1305. 'chair': '🪑',
  1306. 'toilet': '🚽',
  1307. 'plunger': '🪠',
  1308. 'shower': '🚿',
  1309. 'bathtub': '🛁',
  1310. 'mouse_trap': '🪤',
  1311. 'razor': '🪒',
  1312. 'lotion_bottle': '🧴',
  1313. 'safety_pin': '🧷',
  1314. 'broom': '🧹',
  1315. 'basket': '🧺',
  1316. 'roll_of_paper': '🧻',
  1317. 'bucket': '🪣',
  1318. 'soap': '🧼',
  1319. 'toothbrush': '🪥',
  1320. 'sponge': '🧽',
  1321. 'fire_extinguisher': '🧯',
  1322. 'shopping_cart': '🛒',
  1323. 'cigarette': '🚬',
  1324. 'coffin': '⚰️',
  1325. 'headstone': '🪦',
  1326. 'funeral_urn': '⚱️',
  1327. 'moai': '🗿',
  1328. 'placard': '🪧',
  1329. 'atm_sign': '🏧',
  1330. 'litter_in_bin_sign': '🚮',
  1331. 'potable_water': '🚰',
  1332. 'wheelchair_symbol': '♿',
  1333. 'men_s_room': '🚹',
  1334. 'women_s_room': '🚺',
  1335. 'restroom': '🚻',
  1336. 'baby_symbol': '🚼',
  1337. 'water_closet': '🚾',
  1338. 'passport_control': '🛂',
  1339. 'customs': '🛃',
  1340. 'baggage_claim': '🛄',
  1341. 'left_luggage': '🛅',
  1342. 'warning': '⚠️',
  1343. 'children_crossing': '🚸',
  1344. 'no_entry': '⛔',
  1345. 'prohibited': '🚫',
  1346. 'no_bicycles': '🚳',
  1347. 'no_smoking': '🚭',
  1348. 'no_littering': '🚯',
  1349. 'non_potable_water': '🚱',
  1350. 'no_pedestrians': '🚷',
  1351. 'no_mobile_phones': '📵',
  1352. 'no_one_under_eighteen': '🔞',
  1353. 'radioactive': '☢️',
  1354. 'biohazard': '☣️',
  1355. 'up_arrow': '⬆️',
  1356. 'up_right_arrow': '↗️',
  1357. 'right_arrow': '➡️',
  1358. 'down_right_arrow': '↘️',
  1359. 'down_arrow': '⬇️',
  1360. 'down_left_arrow': '↙️',
  1361. 'left_arrow': '⬅️',
  1362. 'up_left_arrow': '↖️',
  1363. 'up_down_arrow': '↕️',
  1364. 'left_right_arrow': '↔️',
  1365. 'right_arrow_curving_left': '↩️',
  1366. 'left_arrow_curving_right': '↪️',
  1367. 'right_arrow_curving_up': '⤴️',
  1368. 'right_arrow_curving_down': '⤵️',
  1369. 'clockwise_vertical_arrows': '🔃',
  1370. 'counterclockwise_arrows_button': '🔄',
  1371. 'back_arrow': '🔙',
  1372. 'end_arrow': '🔚',
  1373. 'on_arrow': '🔛',
  1374. 'soon_arrow': '🔜',
  1375. 'top_arrow': '🔝',
  1376. 'place_of_worship': '🛐',
  1377. 'atom_symbol': '⚛️',
  1378. 'om': '🕉️',
  1379. 'star_of_david': '✡️',
  1380. 'wheel_of_dharma': '☸️',
  1381. 'yin_yang': '☯️',
  1382. 'latin_cross': '✝️',
  1383. 'orthodox_cross': '☦️',
  1384. 'star_and_crescent': '☪️',
  1385. 'peace_symbol': '☮️',
  1386. 'menorah': '🕎',
  1387. 'dotted_six_pointed_star': '🔯',
  1388. 'aries': '♈',
  1389. 'taurus': '♉',
  1390. 'gemini': '♊',
  1391. 'cancer': '♋',
  1392. 'leo': '♌',
  1393. 'virgo': '♍',
  1394. 'libra': '♎',
  1395. 'scorpio': '♏',
  1396. 'sagittarius': '♐',
  1397. 'capricorn': '♑',
  1398. 'aquarius': '♒',
  1399. 'pisces': '♓',
  1400. 'ophiuchus': '⛎',
  1401. 'shuffle_tracks_button': '🔀',
  1402. 'repeat_button': '🔁',
  1403. 'repeat_single_button': '🔂',
  1404. 'play_button': '▶️',
  1405. 'fast_forward_button': '⏩',
  1406. 'next_track_button': '⏭️',
  1407. 'play_or_pause_button': '⏯️',
  1408. 'reverse_button': '◀️',
  1409. 'fast_reverse_button': '⏪',
  1410. 'last_track_button': '⏮️',
  1411. 'upwards_button': '🔼',
  1412. 'fast_up_button': '⏫',
  1413. 'downwards_button': '🔽',
  1414. 'fast_down_button': '⏬',
  1415. 'pause_button': '⏸️',
  1416. 'stop_button': '⏹️',
  1417. 'record_button': '⏺️',
  1418. 'eject_button': '⏏️',
  1419. 'cinema': '🎦',
  1420. 'dim_button': '🔅',
  1421. 'bright_button': '🔆',
  1422. 'antenna_bars': '📶',
  1423. 'vibration_mode': '📳',
  1424. 'mobile_phone_off': '📴',
  1425. 'female_sign': '♀️',
  1426. 'male_sign': '♂️',
  1427. 'transgender_symbol': '⚧️',
  1428. 'multiply': '✖️',
  1429. 'plus': '➕',
  1430. 'minus': '➖',
  1431. 'divide': '➗',
  1432. 'infinity': '♾️',
  1433. 'double_exclamation_mark': '‼️',
  1434. 'exclamation_question_mark': '⁉️',
  1435. 'red_question_mark': '❓',
  1436. 'white_question_mark': '❔',
  1437. 'white_exclamation_mark': '❕',
  1438. 'red_exclamation_mark': '❗',
  1439. 'wavy_dash': '〰️',
  1440. 'currency_exchange': '💱',
  1441. 'heavy_dollar_sign': '💲',
  1442. 'medical_symbol': '⚕️',
  1443. 'recycling_symbol': '♻️',
  1444. 'fleur_de_lis': '⚜️',
  1445. 'trident_emblem': '🔱',
  1446. 'name_badge': '📛',
  1447. 'japanese_symbol_for_beginner': '🔰',
  1448. 'hollow_red_circle': '⭕',
  1449. 'check_mark_button': '✅',
  1450. 'check_box_with_check': '☑️',
  1451. 'check_mark': '✔️',
  1452. 'cross_mark': '❌',
  1453. 'cross_mark_button': '❎',
  1454. 'curly_loop': '➰',
  1455. 'double_curly_loop': '➿',
  1456. 'part_alternation_mark': '〽️',
  1457. 'eight_spoked_asterisk': '✳️',
  1458. 'eight_pointed_star': '✴️',
  1459. 'sparkle': '❇️',
  1460. 'copyright': '©️',
  1461. 'registered': '®️',
  1462. 'trade_mark': '™️',
  1463. 'keycap_': '*️⃣',
  1464. 'keycap_0': '0️⃣',
  1465. 'keycap_1': '1️⃣',
  1466. 'keycap_2': '2️⃣',
  1467. 'keycap_3': '3️⃣',
  1468. 'keycap_4': '4️⃣',
  1469. 'keycap_5': '5️⃣',
  1470. 'keycap_6': '6️⃣',
  1471. 'keycap_7': '7️⃣',
  1472. 'keycap_8': '8️⃣',
  1473. 'keycap_9': '9️⃣',
  1474. 'keycap_10': '🔟',
  1475. 'input_latin_uppercase': '🔠',
  1476. 'input_latin_lowercase': '🔡',
  1477. 'input_numbers': '🔢',
  1478. 'input_symbols': '🔣',
  1479. 'input_latin_letters': '🔤',
  1480. 'a_button': '🅰️',
  1481. 'ab_button': '🆎',
  1482. 'b_button': '🅱️',
  1483. 'cl_button': '🆑',
  1484. 'cool_button': '🆒',
  1485. 'free_button': '🆓',
  1486. 'information': 'ℹ️',
  1487. 'id_button': '🆔',
  1488. 'circled_m': 'Ⓜ️',
  1489. 'new_button': '🆕',
  1490. 'ng_button': '🆖',
  1491. 'o_button': '🅾️',
  1492. 'ok_button': '🆗',
  1493. 'p_button': '🅿️',
  1494. 'sos_button': '🆘',
  1495. 'up_button': '🆙',
  1496. 'vs_button': '🆚',
  1497. 'japanese_here_button': '🈁',
  1498. 'japanese_service_charge_button': '🈂️',
  1499. 'japanese_monthly_amount_button': '🈷️',
  1500. 'japanese_not_free_of_charge_button': '🈶',
  1501. 'japanese_reserved_button': '🈯',
  1502. 'japanese_bargain_button': '🉐',
  1503. 'japanese_discount_button': '🈹',
  1504. 'japanese_free_of_charge_button': '🈚',
  1505. 'japanese_prohibited_button': '🈲',
  1506. 'japanese_acceptable_button': '🉑',
  1507. 'japanese_application_button': '🈸',
  1508. 'japanese_passing_grade_button': '🈴',
  1509. 'japanese_vacancy_button': '🈳',
  1510. 'japanese_congratulations_button': '㊗️',
  1511. 'japanese_secret_button': '㊙️',
  1512. 'japanese_open_for_business_button': '🈺',
  1513. 'japanese_no_vacancy_button': '🈵',
  1514. 'red_circle': '🔴',
  1515. 'orange_circle': '🟠',
  1516. 'yellow_circle': '🟡',
  1517. 'green_circle': '🟢',
  1518. 'blue_circle': '🔵',
  1519. 'purple_circle': '🟣',
  1520. 'brown_circle': '🟤',
  1521. 'black_circle': '⚫',
  1522. 'white_circle': '⚪',
  1523. 'red_square': '🟥',
  1524. 'orange_square': '🟧',
  1525. 'yellow_square': '🟨',
  1526. 'green_square': '🟩',
  1527. 'blue_square': '🟦',
  1528. 'purple_square': '🟪',
  1529. 'brown_square': '🟫',
  1530. 'black_large_square': '⬛',
  1531. 'white_large_square': '⬜',
  1532. 'black_medium_square': '◼️',
  1533. 'white_medium_square': '◻️',
  1534. 'black_medium_small_square': '◾',
  1535. 'white_medium_small_square': '◽',
  1536. 'black_small_square': '▪️',
  1537. 'white_small_square': '▫️',
  1538. 'large_orange_diamond': '🔶',
  1539. 'large_blue_diamond': '🔷',
  1540. 'small_orange_diamond': '🔸',
  1541. 'small_blue_diamond': '🔹',
  1542. 'red_triangle_pointed_up': '🔺',
  1543. 'red_triangle_pointed_down': '🔻',
  1544. 'diamond_with_a_dot': '💠',
  1545. 'radio_button': '🔘',
  1546. 'white_square_button': '🔳',
  1547. 'black_square_button': '🔲',
  1548. 'chequered_flag': '🏁',
  1549. 'triangular_flag': '🚩',
  1550. 'crossed_flags': '🎌',
  1551. 'black_flag': '🏴',
  1552. 'white_flag': '🏳️',
  1553. 'rainbow_flag': '🏳️‍🌈',
  1554. 'transgender_flag': '🏳️‍⚧️',
  1555. 'pirate_flag': '🏴‍☠️',
  1556. 'flag_ascension_island': '🇦🇨',
  1557. 'flag_andorra': '🇦🇩',
  1558. 'flag_united_arab_emirates': '🇦🇪',
  1559. 'flag_afghanistan': '🇦🇫',
  1560. 'flag_antigua_barbuda': '🇦🇬',
  1561. 'flag_anguilla': '🇦🇮',
  1562. 'flag_albania': '🇦🇱',
  1563. 'flag_armenia': '🇦🇲',
  1564. 'flag_angola': '🇦🇴',
  1565. 'flag_antarctica': '🇦🇶',
  1566. 'flag_argentina': '🇦🇷',
  1567. 'flag_american_samoa': '🇦🇸',
  1568. 'flag_austria': '🇦🇹',
  1569. 'flag_australia': '🇦🇺',
  1570. 'flag_aruba': '🇦🇼',
  1571. 'flag_aland_islands': '🇦🇽',
  1572. 'flag_azerbaijan': '🇦🇿',
  1573. 'flag_bosnia_herzegovina': '🇧🇦',
  1574. 'flag_barbados': '🇧🇧',
  1575. 'flag_bangladesh': '🇧🇩',
  1576. 'flag_belgium': '🇧🇪',
  1577. 'flag_burkina_faso': '🇧🇫',
  1578. 'flag_bulgaria': '🇧🇬',
  1579. 'flag_bahrain': '🇧🇭',
  1580. 'flag_burundi': '🇧🇮',
  1581. 'flag_benin': '🇧🇯',
  1582. 'flag_st_barthelemy': '🇧🇱',
  1583. 'flag_bermuda': '🇧🇲',
  1584. 'flag_brunei': '🇧🇳',
  1585. 'flag_bolivia': '🇧🇴',
  1586. 'flag_caribbean_netherlands': '🇧🇶',
  1587. 'flag_brazil': '🇧🇷',
  1588. 'flag_bahamas': '🇧🇸',
  1589. 'flag_bhutan': '🇧🇹',
  1590. 'flag_bouvet_island': '🇧🇻',
  1591. 'flag_botswana': '🇧🇼',
  1592. 'flag_belarus': '🇧🇾',
  1593. 'flag_belize': '🇧🇿',
  1594. 'flag_canada': '🇨🇦',
  1595. 'flag_cocos_islands': '🇨🇨',
  1596. 'flag_congo_kinshasa': '🇨🇩',
  1597. 'flag_central_african_republic': '🇨🇫',
  1598. 'flag_congo_brazzaville': '🇨🇬',
  1599. 'flag_switzerland': '🇨🇭',
  1600. 'flag_cote_d_ivoire': '🇨🇮',
  1601. 'flag_cook_islands': '🇨🇰',
  1602. 'flag_chile': '🇨🇱',
  1603. 'flag_cameroon': '🇨🇲',
  1604. 'flag_china': '🇨🇳',
  1605. 'flag_colombia': '🇨🇴',
  1606. 'flag_clipperton_island': '🇨🇵',
  1607. 'flag_costa_rica': '🇨🇷',
  1608. 'flag_cuba': '🇨🇺',
  1609. 'flag_cape_verde': '🇨🇻',
  1610. 'flag_curacao': '🇨🇼',
  1611. 'flag_christmas_island': '🇨🇽',
  1612. 'flag_cyprus': '🇨🇾',
  1613. 'flag_czechia': '🇨🇿',
  1614. 'flag_germany': '🇩🇪',
  1615. 'flag_diego_garcia': '🇩🇬',
  1616. 'flag_djibouti': '🇩🇯',
  1617. 'flag_denmark': '🇩🇰',
  1618. 'flag_dominica': '🇩🇲',
  1619. 'flag_dominican_republic': '🇩🇴',
  1620. 'flag_algeria': '🇩🇿',
  1621. 'flag_ceuta_melilla': '🇪🇦',
  1622. 'flag_ecuador': '🇪🇨',
  1623. 'flag_estonia': '🇪🇪',
  1624. 'flag_egypt': '🇪🇬',
  1625. 'flag_western_sahara': '🇪🇭',
  1626. 'flag_eritrea': '🇪🇷',
  1627. 'flag_spain': '🇪🇸',
  1628. 'flag_ethiopia': '🇪🇹',
  1629. 'flag_european_union': '🇪🇺',
  1630. 'flag_finland': '🇫🇮',
  1631. 'flag_fiji': '🇫🇯',
  1632. 'flag_falkland_islands': '🇫🇰',
  1633. 'flag_micronesia': '🇫🇲',
  1634. 'flag_faroe_islands': '🇫🇴',
  1635. 'flag_france': '🇫🇷',
  1636. 'flag_gabon': '🇬🇦',
  1637. 'flag_united_kingdom': '🇬🇧',
  1638. 'flag_grenada': '🇬🇩',
  1639. 'flag_georgia': '🇬🇪',
  1640. 'flag_french_guiana': '🇬🇫',
  1641. 'flag_guernsey': '🇬🇬',
  1642. 'flag_ghana': '🇬🇭',
  1643. 'flag_gibraltar': '🇬🇮',
  1644. 'flag_greenland': '🇬🇱',
  1645. 'flag_gambia': '🇬🇲',
  1646. 'flag_guinea': '🇬🇳',
  1647. 'flag_guadeloupe': '🇬🇵',
  1648. 'flag_equatorial_guinea': '🇬🇶',
  1649. 'flag_greece': '🇬🇷',
  1650. 'flag_south_georgia_south_sandwich_islands': '🇬🇸',
  1651. 'flag_guatemala': '🇬🇹',
  1652. 'flag_guam': '🇬🇺',
  1653. 'flag_guinea_bissau': '🇬🇼',
  1654. 'flag_guyana': '🇬🇾',
  1655. 'flag_hong_kong_sar_china': '🇭🇰',
  1656. 'flag_heard_mcdonald_islands': '🇭🇲',
  1657. 'flag_honduras': '🇭🇳',
  1658. 'flag_croatia': '🇭🇷',
  1659. 'flag_haiti': '🇭🇹',
  1660. 'flag_hungary': '🇭🇺',
  1661. 'flag_canary_islands': '🇮🇨',
  1662. 'flag_indonesia': '🇮🇩',
  1663. 'flag_ireland': '🇮🇪',
  1664. 'flag_israel': '🇮🇱',
  1665. 'flag_isle_of_man': '🇮🇲',
  1666. 'flag_india': '🇮🇳',
  1667. 'flag_british_indian_ocean_territory': '🇮🇴',
  1668. 'flag_iraq': '🇮🇶',
  1669. 'flag_iran': '🇮🇷',
  1670. 'flag_iceland': '🇮🇸',
  1671. 'flag_italy': '🇮🇹',
  1672. 'flag_jersey': '🇯🇪',
  1673. 'flag_jamaica': '🇯🇲',
  1674. 'flag_jordan': '🇯🇴',
  1675. 'flag_japan': '🇯🇵',
  1676. 'flag_kenya': '🇰🇪',
  1677. 'flag_kyrgyzstan': '🇰🇬',
  1678. 'flag_cambodia': '🇰🇭',
  1679. 'flag_kiribati': '🇰🇮',
  1680. 'flag_comoros': '🇰🇲',
  1681. 'flag_st_kitts_nevis': '🇰🇳',
  1682. 'flag_north_korea': '🇰🇵',
  1683. 'flag_south_korea': '🇰🇷',
  1684. 'flag_kuwait': '🇰🇼',
  1685. 'flag_cayman_islands': '🇰🇾',
  1686. 'flag_kazakhstan': '🇰🇿',
  1687. 'flag_laos': '🇱🇦',
  1688. 'flag_lebanon': '🇱🇧',
  1689. 'flag_st_lucia': '🇱🇨',
  1690. 'flag_liechtenstein': '🇱🇮',
  1691. 'flag_sri_lanka': '🇱🇰',
  1692. 'flag_liberia': '🇱🇷',
  1693. 'flag_lesotho': '🇱🇸',
  1694. 'flag_lithuania': '🇱🇹',
  1695. 'flag_luxembourg': '🇱🇺',
  1696. 'flag_latvia': '🇱🇻',
  1697. 'flag_libya': '🇱🇾',
  1698. 'flag_morocco': '🇲🇦',
  1699. 'flag_monaco': '🇲🇨',
  1700. 'flag_moldova': '🇲🇩',
  1701. 'flag_montenegro': '🇲🇪',
  1702. 'flag_st_martin': '🇲🇫',
  1703. 'flag_madagascar': '🇲🇬',
  1704. 'flag_marshall_islands': '🇲🇭',
  1705. 'flag_north_macedonia': '🇲🇰',
  1706. 'flag_mali': '🇲🇱',
  1707. 'flag_myanmar': '🇲🇲',
  1708. 'flag_mongolia': '🇲🇳',
  1709. 'flag_macao_sar_china': '🇲🇴',
  1710. 'flag_northern_mariana_islands': '🇲🇵',
  1711. 'flag_martinique': '🇲🇶',
  1712. 'flag_mauritania': '🇲🇷',
  1713. 'flag_montserrat': '🇲🇸',
  1714. 'flag_malta': '🇲🇹',
  1715. 'flag_mauritius': '🇲🇺',
  1716. 'flag_maldives': '🇲🇻',
  1717. 'flag_malawi': '🇲🇼',
  1718. 'flag_mexico': '🇲🇽',
  1719. 'flag_malaysia': '🇲🇾',
  1720. 'flag_mozambique': '🇲🇿',
  1721. 'flag_namibia': '🇳🇦',
  1722. 'flag_new_caledonia': '🇳🇨',
  1723. 'flag_niger': '🇳🇪',
  1724. 'flag_norfolk_island': '🇳🇫',
  1725. 'flag_nigeria': '🇳🇬',
  1726. 'flag_nicaragua': '🇳🇮',
  1727. 'flag_netherlands': '🇳🇱',
  1728. 'flag_norway': '🇳🇴',
  1729. 'flag_nepal': '🇳🇵',
  1730. 'flag_nauru': '🇳🇷',
  1731. 'flag_niue': '🇳🇺',
  1732. 'flag_new_zealand': '🇳🇿',
  1733. 'flag_oman': '🇴🇲',
  1734. 'flag_panama': '🇵🇦',
  1735. 'flag_peru': '🇵🇪',
  1736. 'flag_french_polynesia': '🇵🇫',
  1737. 'flag_papua_new_guinea': '🇵🇬',
  1738. 'flag_philippines': '🇵🇭',
  1739. 'flag_pakistan': '🇵🇰',
  1740. 'flag_poland': '🇵🇱',
  1741. 'flag_st_pierre_miquelon': '🇵🇲',
  1742. 'flag_pitcairn_islands': '🇵🇳',
  1743. 'flag_puerto_rico': '🇵🇷',
  1744. 'flag_palestinian_territories': '🇵🇸',
  1745. 'flag_portugal': '🇵🇹',
  1746. 'flag_palau': '🇵🇼',
  1747. 'flag_paraguay': '🇵🇾',
  1748. 'flag_qatar': '🇶🇦',
  1749. 'flag_reunion': '🇷🇪',
  1750. 'flag_romania': '🇷🇴',
  1751. 'flag_serbia': '🇷🇸',
  1752. 'flag_russia': '🇷🇺',
  1753. 'flag_rwanda': '🇷🇼',
  1754. 'flag_saudi_arabia': '🇸🇦',
  1755. 'flag_solomon_islands': '🇸🇧',
  1756. 'flag_seychelles': '🇸🇨',
  1757. 'flag_sudan': '🇸🇩',
  1758. 'flag_sweden': '🇸🇪',
  1759. 'flag_singapore': '🇸🇬',
  1760. 'flag_st_helena': '🇸🇭',
  1761. 'flag_slovenia': '🇸🇮',
  1762. 'flag_svalbard_jan_mayen': '🇸🇯',
  1763. 'flag_slovakia': '🇸🇰',
  1764. 'flag_sierra_leone': '🇸🇱',
  1765. 'flag_san_marino': '🇸🇲',
  1766. 'flag_senegal': '🇸🇳',
  1767. 'flag_somalia': '🇸🇴',
  1768. 'flag_suriname': '🇸🇷',
  1769. 'flag_south_sudan': '🇸🇸',
  1770. 'flag_sao_tome_principe': '🇸🇹',
  1771. 'flag_el_salvador': '🇸🇻',
  1772. 'flag_sint_maarten': '🇸🇽',
  1773. 'flag_syria': '🇸🇾',
  1774. 'flag_eswatini': '🇸🇿',
  1775. 'flag_tristan_da_cunha': '🇹🇦',
  1776. 'flag_turks_caicos_islands': '🇹🇨',
  1777. 'flag_chad': '🇹🇩',
  1778. 'flag_french_southern_territories': '🇹🇫',
  1779. 'flag_togo': '🇹🇬',
  1780. 'flag_thailand': '🇹🇭',
  1781. 'flag_tajikistan': '🇹🇯',
  1782. 'flag_tokelau': '🇹🇰',
  1783. 'flag_timor_leste': '🇹🇱',
  1784. 'flag_turkmenistan': '🇹🇲',
  1785. 'flag_tunisia': '🇹🇳',
  1786. 'flag_tonga': '🇹🇴',
  1787. 'flag_turkey': '🇹🇷',
  1788. 'flag_trinidad_tobago': '🇹🇹',
  1789. 'flag_tuvalu': '🇹🇻',
  1790. 'flag_taiwan': '🇹🇼',
  1791. 'flag_tanzania': '🇹🇿',
  1792. 'flag_ukraine': '🇺🇦',
  1793. 'flag_uganda': '🇺🇬',
  1794. 'flag_u_s_outlying_islands': '🇺🇲',
  1795. 'flag_united_nations': '🇺🇳',
  1796. 'flag_united_states': '🇺🇸',
  1797. 'flag_uruguay': '🇺🇾',
  1798. 'flag_uzbekistan': '🇺🇿',
  1799. 'flag_vatican_city': '🇻🇦',
  1800. 'flag_st_vincent_grenadines': '🇻🇨',
  1801. 'flag_venezuela': '🇻🇪',
  1802. 'flag_british_virgin_islands': '🇻🇬',
  1803. 'flag_u_s_virgin_islands': '🇻🇮',
  1804. 'flag_vietnam': '🇻🇳',
  1805. 'flag_vanuatu': '🇻🇺',
  1806. 'flag_wallis_futuna': '🇼🇫',
  1807. 'flag_samoa': '🇼🇸',
  1808. 'flag_kosovo': '🇽🇰',
  1809. 'flag_yemen': '🇾🇪',
  1810. 'flag_mayotte': '🇾🇹',
  1811. 'flag_south_africa': '🇿🇦',
  1812. 'flag_zambia': '🇿🇲',
  1813. 'flag_zimbabwe': '🇿🇼',
  1814. 'flag_england': '🏴󠁧󠁢󠁥󠁮󠁧󠁿',
  1815. 'flag_scotland': '🏴󠁧󠁢󠁳󠁣󠁴󠁿',
  1816. 'flag_wales': '🏴󠁧󠁢󠁷󠁬󠁳󠁿',
  1817. };