map.go 184 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715
  1. package emoji
  2. // Code generated by github.com/enescakir/emoji/internal/generator DO NOT EDIT.
  3. // Source: https://raw.githubusercontent.com/github/gemoji/master/db/emoji.json
  4. // Create at: 2020-03-08T15:58:37+03:00
  5. var emojiMap = map[string]string{
  6. ":+1:": "\U0001f44d",
  7. ":-1:": "\U0001f44e",
  8. ":100:": "\U0001f4af",
  9. ":1234:": "\U0001f522",
  10. ":1st_place_medal:": "\U0001f947",
  11. ":2nd_place_medal:": "\U0001f948",
  12. ":3rd_place_medal:": "\U0001f949",
  13. ":8ball:": "\U0001f3b1",
  14. ":a:": "\U0001f170\ufe0f",
  15. ":a_button_blood_type:": "\U0001f170\ufe0f",
  16. ":ab:": "\U0001f18e",
  17. ":ab_button_blood_type:": "\U0001f18e",
  18. ":abacus:": "\U0001f9ee",
  19. ":abc:": "\U0001f524",
  20. ":abcd:": "\U0001f521",
  21. ":accept:": "\U0001f251",
  22. ":accordion:": "\U0001fa97",
  23. ":adhesive_bandage:": "\U0001fa79",
  24. ":admission_tickets:": "\U0001f39f\ufe0f",
  25. ":adult:": "\U0001f9d1",
  26. ":aerial_tramway:": "\U0001f6a1",
  27. ":afghanistan:": "\U0001f1e6\U0001f1eb",
  28. ":airplane:": "\u2708\ufe0f",
  29. ":airplane_arrival:": "\U0001f6ec",
  30. ":airplane_departure:": "\U0001f6eb",
  31. ":aland_islands:": "\U0001f1e6\U0001f1fd",
  32. ":alarm_clock:": "\u23f0",
  33. ":albania:": "\U0001f1e6\U0001f1f1",
  34. ":alembic:": "\u2697\ufe0f",
  35. ":algeria:": "\U0001f1e9\U0001f1ff",
  36. ":alien:": "\U0001f47d",
  37. ":alien_monster:": "\U0001f47e",
  38. ":ambulance:": "\U0001f691",
  39. ":american_football:": "\U0001f3c8",
  40. ":american_samoa:": "\U0001f1e6\U0001f1f8",
  41. ":amphora:": "\U0001f3fa",
  42. ":anatomical_heart:": "\U0001fac0",
  43. ":anchor:": "\u2693",
  44. ":andorra:": "\U0001f1e6\U0001f1e9",
  45. ":angel:": "\U0001f47c",
  46. ":anger:": "\U0001f4a2",
  47. ":anger_symbol:": "\U0001f4a2",
  48. ":angola:": "\U0001f1e6\U0001f1f4",
  49. ":angry:": "\U0001f620",
  50. ":angry_face:": "\U0001f620",
  51. ":angry_face_with_horns:": "\U0001f47f",
  52. ":anguilla:": "\U0001f1e6\U0001f1ee",
  53. ":anguished:": "\U0001f627",
  54. ":anguished_face:": "\U0001f627",
  55. ":ant:": "\U0001f41c",
  56. ":antarctica:": "\U0001f1e6\U0001f1f6",
  57. ":antenna_bars:": "\U0001f4f6",
  58. ":antigua_barbuda:": "\U0001f1e6\U0001f1ec",
  59. ":anxious_face_with_sweat:": "\U0001f630",
  60. ":apple:": "\U0001f34e",
  61. ":aquarius:": "\u2652",
  62. ":argentina:": "\U0001f1e6\U0001f1f7",
  63. ":aries:": "\u2648",
  64. ":armenia:": "\U0001f1e6\U0001f1f2",
  65. ":arrow_backward:": "\u25c0\ufe0f",
  66. ":arrow_double_down:": "\u23ec",
  67. ":arrow_double_up:": "\u23eb",
  68. ":arrow_down:": "\u2b07\ufe0f",
  69. ":arrow_down_small:": "\U0001f53d",
  70. ":arrow_forward:": "\u25b6\ufe0f",
  71. ":arrow_heading_down:": "\u2935\ufe0f",
  72. ":arrow_heading_up:": "\u2934\ufe0f",
  73. ":arrow_left:": "\u2b05\ufe0f",
  74. ":arrow_lower_left:": "\u2199\ufe0f",
  75. ":arrow_lower_right:": "\u2198\ufe0f",
  76. ":arrow_right:": "\u27a1\ufe0f",
  77. ":arrow_right_hook:": "\u21aa\ufe0f",
  78. ":arrow_up:": "\u2b06\ufe0f",
  79. ":arrow_up_down:": "\u2195\ufe0f",
  80. ":arrow_up_small:": "\U0001f53c",
  81. ":arrow_upper_left:": "\u2196\ufe0f",
  82. ":arrow_upper_right:": "\u2197\ufe0f",
  83. ":arrows_clockwise:": "\U0001f503",
  84. ":arrows_counterclockwise:": "\U0001f504",
  85. ":art:": "\U0001f3a8",
  86. ":articulated_lorry:": "\U0001f69b",
  87. ":artificial_satellite:": "\U0001f6f0\ufe0f",
  88. ":artist:": "\U0001f9d1\u200d\U0001f3a8",
  89. ":artist_palette:": "\U0001f3a8",
  90. ":aruba:": "\U0001f1e6\U0001f1fc",
  91. ":ascension_island:": "\U0001f1e6\U0001f1e8",
  92. ":asterisk:": "*\ufe0f\u20e3",
  93. ":astonished:": "\U0001f632",
  94. ":astonished_face:": "\U0001f632",
  95. ":astronaut:": "\U0001f9d1\u200d\U0001f680",
  96. ":athletic_shoe:": "\U0001f45f",
  97. ":atm:": "\U0001f3e7",
  98. ":atm_sign:": "\U0001f3e7",
  99. ":atom_symbol:": "\u269b\ufe0f",
  100. ":australia:": "\U0001f1e6\U0001f1fa",
  101. ":austria:": "\U0001f1e6\U0001f1f9",
  102. ":auto_rickshaw:": "\U0001f6fa",
  103. ":automobile:": "\U0001f697",
  104. ":avocado:": "\U0001f951",
  105. ":axe:": "\U0001fa93",
  106. ":azerbaijan:": "\U0001f1e6\U0001f1ff",
  107. ":b:": "\U0001f171\ufe0f",
  108. ":b_button_blood_type:": "\U0001f171\ufe0f",
  109. ":baby:": "\U0001f476",
  110. ":baby_angel:": "\U0001f47c",
  111. ":baby_bottle:": "\U0001f37c",
  112. ":baby_chick:": "\U0001f424",
  113. ":baby_symbol:": "\U0001f6bc",
  114. ":back:": "\U0001f519",
  115. ":back_arrow:": "\U0001f519",
  116. ":backhand_index_pointing_down:": "\U0001f447",
  117. ":backhand_index_pointing_left:": "\U0001f448",
  118. ":backhand_index_pointing_right:": "\U0001f449",
  119. ":backhand_index_pointing_up:": "\U0001f446",
  120. ":backpack:": "\U0001f392",
  121. ":bacon:": "\U0001f953",
  122. ":badger:": "\U0001f9a1",
  123. ":badminton:": "\U0001f3f8",
  124. ":bagel:": "\U0001f96f",
  125. ":baggage_claim:": "\U0001f6c4",
  126. ":baguette_bread:": "\U0001f956",
  127. ":bahamas:": "\U0001f1e7\U0001f1f8",
  128. ":bahrain:": "\U0001f1e7\U0001f1ed",
  129. ":balance_scale:": "\u2696\ufe0f",
  130. ":bald:": "\U0001f9b2",
  131. ":bald_man:": "\U0001f468\u200d\U0001f9b2",
  132. ":bald_woman:": "\U0001f469\u200d\U0001f9b2",
  133. ":ballet_shoes:": "\U0001fa70",
  134. ":balloon:": "\U0001f388",
  135. ":ballot_box:": "\U0001f5f3\ufe0f",
  136. ":ballot_box_with_ballot:": "\U0001f5f3\ufe0f",
  137. ":ballot_box_with_check:": "\u2611\ufe0f",
  138. ":bamboo:": "\U0001f38d",
  139. ":banana:": "\U0001f34c",
  140. ":bangbang:": "\u203c\ufe0f",
  141. ":bangladesh:": "\U0001f1e7\U0001f1e9",
  142. ":banjo:": "\U0001fa95",
  143. ":bank:": "\U0001f3e6",
  144. ":bar_chart:": "\U0001f4ca",
  145. ":barbados:": "\U0001f1e7\U0001f1e7",
  146. ":barber:": "\U0001f488",
  147. ":barber_pole:": "\U0001f488",
  148. ":baseball:": "\u26be",
  149. ":basket:": "\U0001f9fa",
  150. ":basketball:": "\U0001f3c0",
  151. ":basketball_man:": "\u26f9\ufe0f\u200d\u2642\ufe0f",
  152. ":basketball_woman:": "\u26f9\ufe0f\u200d\u2640\ufe0f",
  153. ":bat:": "\U0001f987",
  154. ":bath:": "\U0001f6c0",
  155. ":bathtub:": "\U0001f6c1",
  156. ":battery:": "\U0001f50b",
  157. ":beach_umbrella:": "\U0001f3d6\ufe0f",
  158. ":beach_with_umbrella:": "\U0001f3d6\ufe0f",
  159. ":beaming_face_with_smiling_eyes:": "\U0001f601",
  160. ":bear:": "\U0001f43b",
  161. ":bearded_person:": "\U0001f9d4",
  162. ":beating_heart:": "\U0001f493",
  163. ":beaver:": "\U0001f9ab",
  164. ":bed:": "\U0001f6cf\ufe0f",
  165. ":bee:": "\U0001f41d",
  166. ":beer:": "\U0001f37a",
  167. ":beer_mug:": "\U0001f37a",
  168. ":beers:": "\U0001f37b",
  169. ":beetle:": "\U0001fab2",
  170. ":beginner:": "\U0001f530",
  171. ":belarus:": "\U0001f1e7\U0001f1fe",
  172. ":belgium:": "\U0001f1e7\U0001f1ea",
  173. ":belize:": "\U0001f1e7\U0001f1ff",
  174. ":bell:": "\U0001f514",
  175. ":bell_pepper:": "\U0001fad1",
  176. ":bell_with_slash:": "\U0001f515",
  177. ":bellhop_bell:": "\U0001f6ce\ufe0f",
  178. ":benin:": "\U0001f1e7\U0001f1ef",
  179. ":bento:": "\U0001f371",
  180. ":bento_box:": "\U0001f371",
  181. ":bermuda:": "\U0001f1e7\U0001f1f2",
  182. ":beverage_box:": "\U0001f9c3",
  183. ":bhutan:": "\U0001f1e7\U0001f1f9",
  184. ":bicycle:": "\U0001f6b2",
  185. ":bicyclist:": "\U0001f6b4",
  186. ":bike:": "\U0001f6b2",
  187. ":biking_man:": "\U0001f6b4\u200d\u2642\ufe0f",
  188. ":biking_woman:": "\U0001f6b4\u200d\u2640\ufe0f",
  189. ":bikini:": "\U0001f459",
  190. ":billed_cap:": "\U0001f9e2",
  191. ":biohazard:": "\u2623\ufe0f",
  192. ":bird:": "\U0001f426",
  193. ":birthday:": "\U0001f382",
  194. ":birthday_cake:": "\U0001f382",
  195. ":bison:": "\U0001f9ac",
  196. ":black_cat:": "\U0001f408\u200d\u2b1b",
  197. ":black_circle:": "\u26ab",
  198. ":black_flag:": "\U0001f3f4",
  199. ":black_heart:": "\U0001f5a4",
  200. ":black_joker:": "\U0001f0cf",
  201. ":black_large_square:": "\u2b1b",
  202. ":black_medium_small_square:": "\u25fe",
  203. ":black_medium_square:": "\u25fc\ufe0f",
  204. ":black_nib:": "\u2712\ufe0f",
  205. ":black_small_square:": "\u25aa\ufe0f",
  206. ":black_square_button:": "\U0001f532",
  207. ":blond_haired_man:": "\U0001f471\u200d\u2642\ufe0f",
  208. ":blond_haired_person:": "\U0001f471",
  209. ":blond_haired_woman:": "\U0001f471\u200d\u2640\ufe0f",
  210. ":blonde_woman:": "\U0001f471\u200d\u2640\ufe0f",
  211. ":blossom:": "\U0001f33c",
  212. ":blowfish:": "\U0001f421",
  213. ":blue_book:": "\U0001f4d8",
  214. ":blue_car:": "\U0001f699",
  215. ":blue_circle:": "\U0001f535",
  216. ":blue_heart:": "\U0001f499",
  217. ":blue_square:": "\U0001f7e6",
  218. ":blueberries:": "\U0001fad0",
  219. ":blush:": "\U0001f60a",
  220. ":boar:": "\U0001f417",
  221. ":boat:": "\u26f5",
  222. ":bolivia:": "\U0001f1e7\U0001f1f4",
  223. ":bomb:": "\U0001f4a3",
  224. ":bone:": "\U0001f9b4",
  225. ":book:": "\U0001f4d6",
  226. ":bookmark:": "\U0001f516",
  227. ":bookmark_tabs:": "\U0001f4d1",
  228. ":books:": "\U0001f4da",
  229. ":boom:": "\U0001f4a5",
  230. ":boomerang:": "\U0001fa83",
  231. ":boot:": "\U0001f462",
  232. ":bosnia_herzegovina:": "\U0001f1e7\U0001f1e6",
  233. ":botswana:": "\U0001f1e7\U0001f1fc",
  234. ":bottle_with_popping_cork:": "\U0001f37e",
  235. ":bouncing_ball_man:": "\u26f9\ufe0f\u200d\u2642\ufe0f",
  236. ":bouncing_ball_person:": "\u26f9\ufe0f",
  237. ":bouncing_ball_woman:": "\u26f9\ufe0f\u200d\u2640\ufe0f",
  238. ":bouquet:": "\U0001f490",
  239. ":bouvet_island:": "\U0001f1e7\U0001f1fb",
  240. ":bow:": "\U0001f647",
  241. ":bow_and_arrow:": "\U0001f3f9",
  242. ":bowing_man:": "\U0001f647\u200d\u2642\ufe0f",
  243. ":bowing_woman:": "\U0001f647\u200d\u2640\ufe0f",
  244. ":bowl_with_spoon:": "\U0001f963",
  245. ":bowling:": "\U0001f3b3",
  246. ":boxing_glove:": "\U0001f94a",
  247. ":boy:": "\U0001f466",
  248. ":brain:": "\U0001f9e0",
  249. ":brazil:": "\U0001f1e7\U0001f1f7",
  250. ":bread:": "\U0001f35e",
  251. ":breast_feeding:": "\U0001f931",
  252. ":brick:": "\U0001f9f1",
  253. ":bricks:": "\U0001f9f1",
  254. ":bride_with_veil:": "\U0001f470\u200d\u2640\ufe0f",
  255. ":bridge_at_night:": "\U0001f309",
  256. ":briefcase:": "\U0001f4bc",
  257. ":briefs:": "\U0001fa72",
  258. ":bright_button:": "\U0001f506",
  259. ":british_indian_ocean_territory:": "\U0001f1ee\U0001f1f4",
  260. ":british_virgin_islands:": "\U0001f1fb\U0001f1ec",
  261. ":broccoli:": "\U0001f966",
  262. ":broken_heart:": "\U0001f494",
  263. ":broom:": "\U0001f9f9",
  264. ":brown_circle:": "\U0001f7e4",
  265. ":brown_heart:": "\U0001f90e",
  266. ":brown_square:": "\U0001f7eb",
  267. ":brunei:": "\U0001f1e7\U0001f1f3",
  268. ":bubble_tea:": "\U0001f9cb",
  269. ":bucket:": "\U0001faa3",
  270. ":bug:": "\U0001f41b",
  271. ":building_construction:": "\U0001f3d7\ufe0f",
  272. ":bulb:": "\U0001f4a1",
  273. ":bulgaria:": "\U0001f1e7\U0001f1ec",
  274. ":bullet_train:": "\U0001f685",
  275. ":bullettrain_front:": "\U0001f685",
  276. ":bullettrain_side:": "\U0001f684",
  277. ":burkina_faso:": "\U0001f1e7\U0001f1eb",
  278. ":burrito:": "\U0001f32f",
  279. ":burundi:": "\U0001f1e7\U0001f1ee",
  280. ":bus:": "\U0001f68c",
  281. ":bus_stop:": "\U0001f68f",
  282. ":business_suit_levitating:": "\U0001f574\ufe0f",
  283. ":busstop:": "\U0001f68f",
  284. ":bust_in_silhouette:": "\U0001f464",
  285. ":busts_in_silhouette:": "\U0001f465",
  286. ":butter:": "\U0001f9c8",
  287. ":butterfly:": "\U0001f98b",
  288. ":cactus:": "\U0001f335",
  289. ":cake:": "\U0001f370",
  290. ":calendar:": "\U0001f4c6",
  291. ":call_me_hand:": "\U0001f919",
  292. ":calling:": "\U0001f4f2",
  293. ":cambodia:": "\U0001f1f0\U0001f1ed",
  294. ":camel:": "\U0001f42b",
  295. ":camera:": "\U0001f4f7",
  296. ":camera_flash:": "\U0001f4f8",
  297. ":camera_with_flash:": "\U0001f4f8",
  298. ":cameroon:": "\U0001f1e8\U0001f1f2",
  299. ":camping:": "\U0001f3d5\ufe0f",
  300. ":canada:": "\U0001f1e8\U0001f1e6",
  301. ":canary_islands:": "\U0001f1ee\U0001f1e8",
  302. ":cancer:": "\u264b",
  303. ":candle:": "\U0001f56f\ufe0f",
  304. ":candy:": "\U0001f36c",
  305. ":canned_food:": "\U0001f96b",
  306. ":canoe:": "\U0001f6f6",
  307. ":cape_verde:": "\U0001f1e8\U0001f1fb",
  308. ":capital_abcd:": "\U0001f520",
  309. ":capricorn:": "\u2651",
  310. ":car:": "\U0001f697",
  311. ":card_file_box:": "\U0001f5c3\ufe0f",
  312. ":card_index:": "\U0001f4c7",
  313. ":card_index_dividers:": "\U0001f5c2\ufe0f",
  314. ":caribbean_netherlands:": "\U0001f1e7\U0001f1f6",
  315. ":carousel_horse:": "\U0001f3a0",
  316. ":carp_streamer:": "\U0001f38f",
  317. ":carpentry_saw:": "\U0001fa9a",
  318. ":carrot:": "\U0001f955",
  319. ":cartwheeling:": "\U0001f938",
  320. ":castle:": "\U0001f3f0",
  321. ":cat2:": "\U0001f408",
  322. ":cat:": "\U0001f431",
  323. ":cat_face:": "\U0001f431",
  324. ":cat_with_tears_of_joy:": "\U0001f639",
  325. ":cat_with_wry_smile:": "\U0001f63c",
  326. ":cayman_islands:": "\U0001f1f0\U0001f1fe",
  327. ":cd:": "\U0001f4bf",
  328. ":central_african_republic:": "\U0001f1e8\U0001f1eb",
  329. ":ceuta_melilla:": "\U0001f1ea\U0001f1e6",
  330. ":chad:": "\U0001f1f9\U0001f1e9",
  331. ":chains:": "\u26d3\ufe0f",
  332. ":chair:": "\U0001fa91",
  333. ":champagne:": "\U0001f37e",
  334. ":chart:": "\U0001f4b9",
  335. ":chart_decreasing:": "\U0001f4c9",
  336. ":chart_increasing:": "\U0001f4c8",
  337. ":chart_increasing_with_yen:": "\U0001f4b9",
  338. ":chart_with_downwards_trend:": "\U0001f4c9",
  339. ":chart_with_upwards_trend:": "\U0001f4c8",
  340. ":check_box_with_check:": "\u2611\ufe0f",
  341. ":check_mark:": "\u2714\ufe0f",
  342. ":check_mark_button:": "\u2705",
  343. ":checkered_flag:": "\U0001f3c1",
  344. ":cheese:": "\U0001f9c0",
  345. ":cheese_wedge:": "\U0001f9c0",
  346. ":chequered_flag:": "\U0001f3c1",
  347. ":cherries:": "\U0001f352",
  348. ":cherry_blossom:": "\U0001f338",
  349. ":chess_pawn:": "\u265f\ufe0f",
  350. ":chestnut:": "\U0001f330",
  351. ":chicken:": "\U0001f414",
  352. ":child:": "\U0001f9d2",
  353. ":children_crossing:": "\U0001f6b8",
  354. ":chile:": "\U0001f1e8\U0001f1f1",
  355. ":chipmunk:": "\U0001f43f\ufe0f",
  356. ":chocolate_bar:": "\U0001f36b",
  357. ":chopsticks:": "\U0001f962",
  358. ":christmas_island:": "\U0001f1e8\U0001f1fd",
  359. ":christmas_tree:": "\U0001f384",
  360. ":church:": "\u26ea",
  361. ":cigarette:": "\U0001f6ac",
  362. ":cinema:": "\U0001f3a6",
  363. ":circled_m:": "\u24c2\ufe0f",
  364. ":circus_tent:": "\U0001f3aa",
  365. ":city_sunrise:": "\U0001f307",
  366. ":city_sunset:": "\U0001f306",
  367. ":cityscape:": "\U0001f3d9\ufe0f",
  368. ":cityscape_at_dusk:": "\U0001f306",
  369. ":cl:": "\U0001f191",
  370. ":cl_button:": "\U0001f191",
  371. ":clamp:": "\U0001f5dc\ufe0f",
  372. ":clap:": "\U0001f44f",
  373. ":clapper:": "\U0001f3ac",
  374. ":clapper_board:": "\U0001f3ac",
  375. ":clapping_hands:": "\U0001f44f",
  376. ":classical_building:": "\U0001f3db\ufe0f",
  377. ":climbing:": "\U0001f9d7",
  378. ":climbing_man:": "\U0001f9d7\u200d\u2642\ufe0f",
  379. ":climbing_woman:": "\U0001f9d7\u200d\u2640\ufe0f",
  380. ":clinking_beer_mugs:": "\U0001f37b",
  381. ":clinking_glasses:": "\U0001f942",
  382. ":clipboard:": "\U0001f4cb",
  383. ":clipperton_island:": "\U0001f1e8\U0001f1f5",
  384. ":clock1030:": "\U0001f565",
  385. ":clock10:": "\U0001f559",
  386. ":clock1130:": "\U0001f566",
  387. ":clock11:": "\U0001f55a",
  388. ":clock1230:": "\U0001f567",
  389. ":clock12:": "\U0001f55b",
  390. ":clock130:": "\U0001f55c",
  391. ":clock1:": "\U0001f550",
  392. ":clock230:": "\U0001f55d",
  393. ":clock2:": "\U0001f551",
  394. ":clock330:": "\U0001f55e",
  395. ":clock3:": "\U0001f552",
  396. ":clock430:": "\U0001f55f",
  397. ":clock4:": "\U0001f553",
  398. ":clock530:": "\U0001f560",
  399. ":clock5:": "\U0001f554",
  400. ":clock630:": "\U0001f561",
  401. ":clock6:": "\U0001f555",
  402. ":clock730:": "\U0001f562",
  403. ":clock7:": "\U0001f556",
  404. ":clock830:": "\U0001f563",
  405. ":clock8:": "\U0001f557",
  406. ":clock930:": "\U0001f564",
  407. ":clock9:": "\U0001f558",
  408. ":clockwise_vertical_arrows:": "\U0001f503",
  409. ":closed_book:": "\U0001f4d5",
  410. ":closed_lock_with_key:": "\U0001f510",
  411. ":closed_mailbox_with_lowered_flag:": "\U0001f4ea",
  412. ":closed_mailbox_with_raised_flag:": "\U0001f4eb",
  413. ":closed_umbrella:": "\U0001f302",
  414. ":cloud:": "\u2601\ufe0f",
  415. ":cloud_with_lightning:": "\U0001f329\ufe0f",
  416. ":cloud_with_lightning_and_rain:": "\u26c8\ufe0f",
  417. ":cloud_with_rain:": "\U0001f327\ufe0f",
  418. ":cloud_with_snow:": "\U0001f328\ufe0f",
  419. ":clown_face:": "\U0001f921",
  420. ":club_suit:": "\u2663\ufe0f",
  421. ":clubs:": "\u2663\ufe0f",
  422. ":clutch_bag:": "\U0001f45d",
  423. ":cn:": "\U0001f1e8\U0001f1f3",
  424. ":coat:": "\U0001f9e5",
  425. ":cockroach:": "\U0001fab3",
  426. ":cocktail:": "\U0001f378",
  427. ":cocktail_glass:": "\U0001f378",
  428. ":coconut:": "\U0001f965",
  429. ":cocos_islands:": "\U0001f1e8\U0001f1e8",
  430. ":coffee:": "\u2615",
  431. ":coffin:": "\u26b0\ufe0f",
  432. ":coin:": "\U0001fa99",
  433. ":cold_face:": "\U0001f976",
  434. ":cold_sweat:": "\U0001f630",
  435. ":collision:": "\U0001f4a5",
  436. ":colombia:": "\U0001f1e8\U0001f1f4",
  437. ":comet:": "\u2604\ufe0f",
  438. ":comoros:": "\U0001f1f0\U0001f1f2",
  439. ":compass:": "\U0001f9ed",
  440. ":computer:": "\U0001f4bb",
  441. ":computer_disk:": "\U0001f4bd",
  442. ":computer_mouse:": "\U0001f5b1\ufe0f",
  443. ":confetti_ball:": "\U0001f38a",
  444. ":confounded:": "\U0001f616",
  445. ":confounded_face:": "\U0001f616",
  446. ":confused:": "\U0001f615",
  447. ":confused_face:": "\U0001f615",
  448. ":congo_brazzaville:": "\U0001f1e8\U0001f1ec",
  449. ":congo_kinshasa:": "\U0001f1e8\U0001f1e9",
  450. ":congratulations:": "\u3297\ufe0f",
  451. ":construction:": "\U0001f6a7",
  452. ":construction_worker:": "\U0001f477",
  453. ":construction_worker_man:": "\U0001f477\u200d\u2642\ufe0f",
  454. ":construction_worker_woman:": "\U0001f477\u200d\u2640\ufe0f",
  455. ":control_knobs:": "\U0001f39b\ufe0f",
  456. ":convenience_store:": "\U0001f3ea",
  457. ":cook:": "\U0001f9d1\u200d\U0001f373",
  458. ":cook_islands:": "\U0001f1e8\U0001f1f0",
  459. ":cooked_rice:": "\U0001f35a",
  460. ":cookie:": "\U0001f36a",
  461. ":cooking:": "\U0001f373",
  462. ":cool:": "\U0001f192",
  463. ":cool_button:": "\U0001f192",
  464. ":cop:": "\U0001f46e",
  465. ":copyright:": "\u00a9\ufe0f",
  466. ":corn:": "\U0001f33d",
  467. ":costa_rica:": "\U0001f1e8\U0001f1f7",
  468. ":cote_divoire:": "\U0001f1e8\U0001f1ee",
  469. ":couch_and_lamp:": "\U0001f6cb\ufe0f",
  470. ":counterclockwise_arrows_button:": "\U0001f504",
  471. ":couple:": "\U0001f46b",
  472. ":couple_with_heart:": "\U0001f491",
  473. ":couple_with_heart_man_man:": "\U0001f468\u200d\u2764\ufe0f\u200d\U0001f468",
  474. ":couple_with_heart_woman_man:": "\U0001f469\u200d\u2764\ufe0f\u200d\U0001f468",
  475. ":couple_with_heart_woman_woman:": "\U0001f469\u200d\u2764\ufe0f\u200d\U0001f469",
  476. ":couplekiss:": "\U0001f48f",
  477. ":couplekiss_man_man:": "\U0001f468\u200d\u2764\ufe0f\u200d\U0001f48b\u200d\U0001f468",
  478. ":couplekiss_man_woman:": "\U0001f469\u200d\u2764\ufe0f\u200d\U0001f48b\u200d\U0001f468",
  479. ":couplekiss_woman_woman:": "\U0001f469\u200d\u2764\ufe0f\u200d\U0001f48b\u200d\U0001f469",
  480. ":cow2:": "\U0001f404",
  481. ":cow:": "\U0001f42e",
  482. ":cow_face:": "\U0001f42e",
  483. ":cowboy_hat_face:": "\U0001f920",
  484. ":crab:": "\U0001f980",
  485. ":crayon:": "\U0001f58d\ufe0f",
  486. ":credit_card:": "\U0001f4b3",
  487. ":crescent_moon:": "\U0001f319",
  488. ":cricket:": "\U0001f997",
  489. ":cricket_game:": "\U0001f3cf",
  490. ":croatia:": "\U0001f1ed\U0001f1f7",
  491. ":crocodile:": "\U0001f40a",
  492. ":croissant:": "\U0001f950",
  493. ":cross_mark:": "\u274c",
  494. ":cross_mark_button:": "\u274e",
  495. ":crossed_fingers:": "\U0001f91e",
  496. ":crossed_flags:": "\U0001f38c",
  497. ":crossed_swords:": "\u2694\ufe0f",
  498. ":crown:": "\U0001f451",
  499. ":cry:": "\U0001f622",
  500. ":crying_cat:": "\U0001f63f",
  501. ":crying_cat_face:": "\U0001f63f",
  502. ":crying_face:": "\U0001f622",
  503. ":crystal_ball:": "\U0001f52e",
  504. ":cuba:": "\U0001f1e8\U0001f1fa",
  505. ":cucumber:": "\U0001f952",
  506. ":cup_with_straw:": "\U0001f964",
  507. ":cupcake:": "\U0001f9c1",
  508. ":cupid:": "\U0001f498",
  509. ":curacao:": "\U0001f1e8\U0001f1fc",
  510. ":curling_stone:": "\U0001f94c",
  511. ":curly_hair:": "\U0001f9b1",
  512. ":curly_haired_man:": "\U0001f468\u200d\U0001f9b1",
  513. ":curly_haired_woman:": "\U0001f469\u200d\U0001f9b1",
  514. ":curly_loop:": "\u27b0",
  515. ":currency_exchange:": "\U0001f4b1",
  516. ":curry:": "\U0001f35b",
  517. ":curry_rice:": "\U0001f35b",
  518. ":cursing_face:": "\U0001f92c",
  519. ":custard:": "\U0001f36e",
  520. ":customs:": "\U0001f6c3",
  521. ":cut_of_meat:": "\U0001f969",
  522. ":cyclone:": "\U0001f300",
  523. ":cyprus:": "\U0001f1e8\U0001f1fe",
  524. ":czech_republic:": "\U0001f1e8\U0001f1ff",
  525. ":dagger:": "\U0001f5e1\ufe0f",
  526. ":dancer:": "\U0001f483",
  527. ":dancers:": "\U0001f46f",
  528. ":dancing_men:": "\U0001f46f\u200d\u2642\ufe0f",
  529. ":dancing_women:": "\U0001f46f\u200d\u2640\ufe0f",
  530. ":dango:": "\U0001f361",
  531. ":dark_skin_tone:": "\U0001f3ff",
  532. ":dark_sunglasses:": "\U0001f576\ufe0f",
  533. ":dart:": "\U0001f3af",
  534. ":dash:": "\U0001f4a8",
  535. ":dashing_away:": "\U0001f4a8",
  536. ":date:": "\U0001f4c5",
  537. ":de:": "\U0001f1e9\U0001f1ea",
  538. ":deaf_man:": "\U0001f9cf\u200d\u2642\ufe0f",
  539. ":deaf_person:": "\U0001f9cf",
  540. ":deaf_woman:": "\U0001f9cf\u200d\u2640\ufe0f",
  541. ":deciduous_tree:": "\U0001f333",
  542. ":deer:": "\U0001f98c",
  543. ":delivery_truck:": "\U0001f69a",
  544. ":denmark:": "\U0001f1e9\U0001f1f0",
  545. ":department_store:": "\U0001f3ec",
  546. ":derelict_house:": "\U0001f3da\ufe0f",
  547. ":desert:": "\U0001f3dc\ufe0f",
  548. ":desert_island:": "\U0001f3dd\ufe0f",
  549. ":desktop_computer:": "\U0001f5a5\ufe0f",
  550. ":detective:": "\U0001f575\ufe0f",
  551. ":diamond_shape_with_a_dot_inside:": "\U0001f4a0",
  552. ":diamond_suit:": "\u2666\ufe0f",
  553. ":diamond_with_a_dot:": "\U0001f4a0",
  554. ":diamonds:": "\u2666\ufe0f",
  555. ":diego_garcia:": "\U0001f1e9\U0001f1ec",
  556. ":dim_button:": "\U0001f505",
  557. ":direct_hit:": "\U0001f3af",
  558. ":disappointed:": "\U0001f61e",
  559. ":disappointed_face:": "\U0001f61e",
  560. ":disappointed_relieved:": "\U0001f625",
  561. ":disguised_face:": "\U0001f978",
  562. ":divide:": "\u2797",
  563. ":diving_mask:": "\U0001f93f",
  564. ":diya_lamp:": "\U0001fa94",
  565. ":dizzy:": "\U0001f4ab",
  566. ":dizzy_face:": "\U0001f635",
  567. ":djibouti:": "\U0001f1e9\U0001f1ef",
  568. ":dna:": "\U0001f9ec",
  569. ":do_not_litter:": "\U0001f6af",
  570. ":dodo:": "\U0001f9a4",
  571. ":dog2:": "\U0001f415",
  572. ":dog:": "\U0001f436",
  573. ":dog_face:": "\U0001f436",
  574. ":dollar:": "\U0001f4b5",
  575. ":dollar_banknote:": "\U0001f4b5",
  576. ":dolls:": "\U0001f38e",
  577. ":dolphin:": "\U0001f42c",
  578. ":dominica:": "\U0001f1e9\U0001f1f2",
  579. ":dominican_republic:": "\U0001f1e9\U0001f1f4",
  580. ":door:": "\U0001f6aa",
  581. ":dotted_six_pointed_star:": "\U0001f52f",
  582. ":double_curly_loop:": "\u27bf",
  583. ":double_exclamation_mark:": "\u203c\ufe0f",
  584. ":doughnut:": "\U0001f369",
  585. ":dove:": "\U0001f54a\ufe0f",
  586. ":down_arrow:": "\u2b07\ufe0f",
  587. ":down_left_arrow:": "\u2199\ufe0f",
  588. ":down_right_arrow:": "\u2198\ufe0f",
  589. ":downcast_face_with_sweat:": "\U0001f613",
  590. ":downwards_button:": "\U0001f53d",
  591. ":dragon:": "\U0001f409",
  592. ":dragon_face:": "\U0001f432",
  593. ":dress:": "\U0001f457",
  594. ":dromedary_camel:": "\U0001f42a",
  595. ":drooling_face:": "\U0001f924",
  596. ":drop_of_blood:": "\U0001fa78",
  597. ":droplet:": "\U0001f4a7",
  598. ":drum:": "\U0001f941",
  599. ":duck:": "\U0001f986",
  600. ":dumpling:": "\U0001f95f",
  601. ":dvd:": "\U0001f4c0",
  602. ":e-mail:": "\U0001f4e7",
  603. ":e_mail:": "\U0001f4e7",
  604. ":eagle:": "\U0001f985",
  605. ":ear:": "\U0001f442",
  606. ":ear_of_corn:": "\U0001f33d",
  607. ":ear_of_rice:": "\U0001f33e",
  608. ":ear_with_hearing_aid:": "\U0001f9bb",
  609. ":earth_africa:": "\U0001f30d",
  610. ":earth_americas:": "\U0001f30e",
  611. ":earth_asia:": "\U0001f30f",
  612. ":ecuador:": "\U0001f1ea\U0001f1e8",
  613. ":egg:": "\U0001f95a",
  614. ":eggplant:": "\U0001f346",
  615. ":egypt:": "\U0001f1ea\U0001f1ec",
  616. ":eight:": "8\ufe0f\u20e3",
  617. ":eight_o_clock:": "\U0001f557",
  618. ":eight_pointed_black_star:": "\u2734\ufe0f",
  619. ":eight_pointed_star:": "\u2734\ufe0f",
  620. ":eight_spoked_asterisk:": "\u2733\ufe0f",
  621. ":eight_thirty:": "\U0001f563",
  622. ":eject_button:": "\u23cf\ufe0f",
  623. ":el_salvador:": "\U0001f1f8\U0001f1fb",
  624. ":electric_plug:": "\U0001f50c",
  625. ":elephant:": "\U0001f418",
  626. ":elevator:": "\U0001f6d7",
  627. ":eleven_o_clock:": "\U0001f55a",
  628. ":eleven_thirty:": "\U0001f566",
  629. ":elf:": "\U0001f9dd",
  630. ":elf_man:": "\U0001f9dd\u200d\u2642\ufe0f",
  631. ":elf_woman:": "\U0001f9dd\u200d\u2640\ufe0f",
  632. ":email:": "\u2709\ufe0f",
  633. ":end:": "\U0001f51a",
  634. ":end_arrow:": "\U0001f51a",
  635. ":england:": "\U0001f3f4\U000e0067\U000e0062\U000e0065\U000e006e\U000e0067\U000e007f",
  636. ":envelope:": "\u2709\ufe0f",
  637. ":envelope_with_arrow:": "\U0001f4e9",
  638. ":equatorial_guinea:": "\U0001f1ec\U0001f1f6",
  639. ":eritrea:": "\U0001f1ea\U0001f1f7",
  640. ":es:": "\U0001f1ea\U0001f1f8",
  641. ":estonia:": "\U0001f1ea\U0001f1ea",
  642. ":ethiopia:": "\U0001f1ea\U0001f1f9",
  643. ":eu:": "\U0001f1ea\U0001f1fa",
  644. ":euro:": "\U0001f4b6",
  645. ":euro_banknote:": "\U0001f4b6",
  646. ":european_castle:": "\U0001f3f0",
  647. ":european_post_office:": "\U0001f3e4",
  648. ":european_union:": "\U0001f1ea\U0001f1fa",
  649. ":evergreen_tree:": "\U0001f332",
  650. ":ewe:": "\U0001f411",
  651. ":exclamation:": "\u2757",
  652. ":exclamation_mark:": "\u2757",
  653. ":exclamation_question_mark:": "\u2049\ufe0f",
  654. ":exploding_head:": "\U0001f92f",
  655. ":expressionless:": "\U0001f611",
  656. ":expressionless_face:": "\U0001f611",
  657. ":eye:": "\U0001f441\ufe0f",
  658. ":eye_in_speech_bubble:": "\U0001f441\ufe0f\u200d\U0001f5e8\ufe0f",
  659. ":eye_speech_bubble:": "\U0001f441\ufe0f\u200d\U0001f5e8\ufe0f",
  660. ":eyeglasses:": "\U0001f453",
  661. ":eyes:": "\U0001f440",
  662. ":face_blowing_a_kiss:": "\U0001f618",
  663. ":face_savoring_food:": "\U0001f60b",
  664. ":face_screaming_in_fear:": "\U0001f631",
  665. ":face_vomiting:": "\U0001f92e",
  666. ":face_with_hand_over_mouth:": "\U0001f92d",
  667. ":face_with_head_bandage:": "\U0001f915",
  668. ":face_with_medical_mask:": "\U0001f637",
  669. ":face_with_monocle:": "\U0001f9d0",
  670. ":face_with_open_mouth:": "\U0001f62e",
  671. ":face_with_raised_eyebrow:": "\U0001f928",
  672. ":face_with_rolling_eyes:": "\U0001f644",
  673. ":face_with_steam_from_nose:": "\U0001f624",
  674. ":face_with_symbols_on_mouth:": "\U0001f92c",
  675. ":face_with_tears_of_joy:": "\U0001f602",
  676. ":face_with_thermometer:": "\U0001f912",
  677. ":face_with_tongue:": "\U0001f61b",
  678. ":face_without_mouth:": "\U0001f636",
  679. ":facepalm:": "\U0001f926",
  680. ":facepunch:": "\U0001f44a",
  681. ":factory:": "\U0001f3ed",
  682. ":factory_worker:": "\U0001f9d1\u200d\U0001f3ed",
  683. ":fairy:": "\U0001f9da",
  684. ":fairy_man:": "\U0001f9da\u200d\u2642\ufe0f",
  685. ":fairy_woman:": "\U0001f9da\u200d\u2640\ufe0f",
  686. ":falafel:": "\U0001f9c6",
  687. ":falkland_islands:": "\U0001f1eb\U0001f1f0",
  688. ":fallen_leaf:": "\U0001f342",
  689. ":family:": "\U0001f46a",
  690. ":family_man_boy:": "\U0001f468\u200d\U0001f466",
  691. ":family_man_boy_boy:": "\U0001f468\u200d\U0001f466\u200d\U0001f466",
  692. ":family_man_girl:": "\U0001f468\u200d\U0001f467",
  693. ":family_man_girl_boy:": "\U0001f468\u200d\U0001f467\u200d\U0001f466",
  694. ":family_man_girl_girl:": "\U0001f468\u200d\U0001f467\u200d\U0001f467",
  695. ":family_man_man_boy:": "\U0001f468\u200d\U0001f468\u200d\U0001f466",
  696. ":family_man_man_boy_boy:": "\U0001f468\u200d\U0001f468\u200d\U0001f466\u200d\U0001f466",
  697. ":family_man_man_girl:": "\U0001f468\u200d\U0001f468\u200d\U0001f467",
  698. ":family_man_man_girl_boy:": "\U0001f468\u200d\U0001f468\u200d\U0001f467\u200d\U0001f466",
  699. ":family_man_man_girl_girl:": "\U0001f468\u200d\U0001f468\u200d\U0001f467\u200d\U0001f467",
  700. ":family_man_woman_boy:": "\U0001f468\u200d\U0001f469\u200d\U0001f466",
  701. ":family_man_woman_boy_boy:": "\U0001f468\u200d\U0001f469\u200d\U0001f466\u200d\U0001f466",
  702. ":family_man_woman_girl:": "\U0001f468\u200d\U0001f469\u200d\U0001f467",
  703. ":family_man_woman_girl_boy:": "\U0001f468\u200d\U0001f469\u200d\U0001f467\u200d\U0001f466",
  704. ":family_man_woman_girl_girl:": "\U0001f468\u200d\U0001f469\u200d\U0001f467\u200d\U0001f467",
  705. ":family_woman_boy:": "\U0001f469\u200d\U0001f466",
  706. ":family_woman_boy_boy:": "\U0001f469\u200d\U0001f466\u200d\U0001f466",
  707. ":family_woman_girl:": "\U0001f469\u200d\U0001f467",
  708. ":family_woman_girl_boy:": "\U0001f469\u200d\U0001f467\u200d\U0001f466",
  709. ":family_woman_girl_girl:": "\U0001f469\u200d\U0001f467\u200d\U0001f467",
  710. ":family_woman_woman_boy:": "\U0001f469\u200d\U0001f469\u200d\U0001f466",
  711. ":family_woman_woman_boy_boy:": "\U0001f469\u200d\U0001f469\u200d\U0001f466\u200d\U0001f466",
  712. ":family_woman_woman_girl:": "\U0001f469\u200d\U0001f469\u200d\U0001f467",
  713. ":family_woman_woman_girl_boy:": "\U0001f469\u200d\U0001f469\u200d\U0001f467\u200d\U0001f466",
  714. ":family_woman_woman_girl_girl:": "\U0001f469\u200d\U0001f469\u200d\U0001f467\u200d\U0001f467",
  715. ":farmer:": "\U0001f9d1\u200d\U0001f33e",
  716. ":faroe_islands:": "\U0001f1eb\U0001f1f4",
  717. ":fast_down_button:": "\u23ec",
  718. ":fast_forward:": "\u23e9",
  719. ":fast_forward_button:": "\u23e9",
  720. ":fast_reverse_button:": "\u23ea",
  721. ":fast_up_button:": "\u23eb",
  722. ":fax:": "\U0001f4e0",
  723. ":fax_machine:": "\U0001f4e0",
  724. ":fearful:": "\U0001f628",
  725. ":fearful_face:": "\U0001f628",
  726. ":feather:": "\U0001fab6",
  727. ":feet:": "\U0001f43e",
  728. ":female_detective:": "\U0001f575\ufe0f\u200d\u2640\ufe0f",
  729. ":female_sign:": "\u2640\ufe0f",
  730. ":ferris_wheel:": "\U0001f3a1",
  731. ":ferry:": "\u26f4\ufe0f",
  732. ":field_hockey:": "\U0001f3d1",
  733. ":fiji:": "\U0001f1eb\U0001f1ef",
  734. ":file_cabinet:": "\U0001f5c4\ufe0f",
  735. ":file_folder:": "\U0001f4c1",
  736. ":film_frames:": "\U0001f39e\ufe0f",
  737. ":film_projector:": "\U0001f4fd\ufe0f",
  738. ":film_strip:": "\U0001f39e\ufe0f",
  739. ":finland:": "\U0001f1eb\U0001f1ee",
  740. ":fire:": "\U0001f525",
  741. ":fire_engine:": "\U0001f692",
  742. ":fire_extinguisher:": "\U0001f9ef",
  743. ":firecracker:": "\U0001f9e8",
  744. ":firefighter:": "\U0001f9d1\u200d\U0001f692",
  745. ":fireworks:": "\U0001f386",
  746. ":first_place_medal:": "\U0001f947",
  747. ":first_quarter_moon:": "\U0001f313",
  748. ":first_quarter_moon_face:": "\U0001f31b",
  749. ":first_quarter_moon_with_face:": "\U0001f31b",
  750. ":fish:": "\U0001f41f",
  751. ":fish_cake:": "\U0001f365",
  752. ":fish_cake_with_swirl:": "\U0001f365",
  753. ":fishing_pole:": "\U0001f3a3",
  754. ":fishing_pole_and_fish:": "\U0001f3a3",
  755. ":fist:": "\u270a",
  756. ":fist_left:": "\U0001f91b",
  757. ":fist_oncoming:": "\U0001f44a",
  758. ":fist_raised:": "\u270a",
  759. ":fist_right:": "\U0001f91c",
  760. ":five:": "5\ufe0f\u20e3",
  761. ":five_o_clock:": "\U0001f554",
  762. ":five_thirty:": "\U0001f560",
  763. ":flag_for_afghanistan:": "\U0001f1e6\U0001f1eb",
  764. ":flag_for_aland_islands:": "\U0001f1e6\U0001f1fd",
  765. ":flag_for_albania:": "\U0001f1e6\U0001f1f1",
  766. ":flag_for_algeria:": "\U0001f1e9\U0001f1ff",
  767. ":flag_for_american_samoa:": "\U0001f1e6\U0001f1f8",
  768. ":flag_for_andorra:": "\U0001f1e6\U0001f1e9",
  769. ":flag_for_angola:": "\U0001f1e6\U0001f1f4",
  770. ":flag_for_anguilla:": "\U0001f1e6\U0001f1ee",
  771. ":flag_for_antarctica:": "\U0001f1e6\U0001f1f6",
  772. ":flag_for_antigua_and_barbuda:": "\U0001f1e6\U0001f1ec",
  773. ":flag_for_argentina:": "\U0001f1e6\U0001f1f7",
  774. ":flag_for_armenia:": "\U0001f1e6\U0001f1f2",
  775. ":flag_for_aruba:": "\U0001f1e6\U0001f1fc",
  776. ":flag_for_ascension_island:": "\U0001f1e6\U0001f1e8",
  777. ":flag_for_australia:": "\U0001f1e6\U0001f1fa",
  778. ":flag_for_austria:": "\U0001f1e6\U0001f1f9",
  779. ":flag_for_azerbaijan:": "\U0001f1e6\U0001f1ff",
  780. ":flag_for_bahamas:": "\U0001f1e7\U0001f1f8",
  781. ":flag_for_bahrain:": "\U0001f1e7\U0001f1ed",
  782. ":flag_for_bangladesh:": "\U0001f1e7\U0001f1e9",
  783. ":flag_for_barbados:": "\U0001f1e7\U0001f1e7",
  784. ":flag_for_belarus:": "\U0001f1e7\U0001f1fe",
  785. ":flag_for_belgium:": "\U0001f1e7\U0001f1ea",
  786. ":flag_for_belize:": "\U0001f1e7\U0001f1ff",
  787. ":flag_for_benin:": "\U0001f1e7\U0001f1ef",
  788. ":flag_for_bermuda:": "\U0001f1e7\U0001f1f2",
  789. ":flag_for_bhutan:": "\U0001f1e7\U0001f1f9",
  790. ":flag_for_bolivia:": "\U0001f1e7\U0001f1f4",
  791. ":flag_for_bosnia_and_herzegovina:": "\U0001f1e7\U0001f1e6",
  792. ":flag_for_botswana:": "\U0001f1e7\U0001f1fc",
  793. ":flag_for_bouvet_island:": "\U0001f1e7\U0001f1fb",
  794. ":flag_for_brazil:": "\U0001f1e7\U0001f1f7",
  795. ":flag_for_british_indian_ocean_territory:": "\U0001f1ee\U0001f1f4",
  796. ":flag_for_british_virgin_islands:": "\U0001f1fb\U0001f1ec",
  797. ":flag_for_brunei:": "\U0001f1e7\U0001f1f3",
  798. ":flag_for_bulgaria:": "\U0001f1e7\U0001f1ec",
  799. ":flag_for_burkina_faso:": "\U0001f1e7\U0001f1eb",
  800. ":flag_for_burundi:": "\U0001f1e7\U0001f1ee",
  801. ":flag_for_cambodia:": "\U0001f1f0\U0001f1ed",
  802. ":flag_for_cameroon:": "\U0001f1e8\U0001f1f2",
  803. ":flag_for_canada:": "\U0001f1e8\U0001f1e6",
  804. ":flag_for_canary_islands:": "\U0001f1ee\U0001f1e8",
  805. ":flag_for_cape_verde:": "\U0001f1e8\U0001f1fb",
  806. ":flag_for_caribbean_netherlands:": "\U0001f1e7\U0001f1f6",
  807. ":flag_for_cayman_islands:": "\U0001f1f0\U0001f1fe",
  808. ":flag_for_central_african_republic:": "\U0001f1e8\U0001f1eb",
  809. ":flag_for_ceuta_and_melilla:": "\U0001f1ea\U0001f1e6",
  810. ":flag_for_chad:": "\U0001f1f9\U0001f1e9",
  811. ":flag_for_chile:": "\U0001f1e8\U0001f1f1",
  812. ":flag_for_china:": "\U0001f1e8\U0001f1f3",
  813. ":flag_for_christmas_island:": "\U0001f1e8\U0001f1fd",
  814. ":flag_for_clipperton_island:": "\U0001f1e8\U0001f1f5",
  815. ":flag_for_cocos_keeling_islands:": "\U0001f1e8\U0001f1e8",
  816. ":flag_for_colombia:": "\U0001f1e8\U0001f1f4",
  817. ":flag_for_comoros:": "\U0001f1f0\U0001f1f2",
  818. ":flag_for_congo_brazzaville:": "\U0001f1e8\U0001f1ec",
  819. ":flag_for_congo_kinshasa:": "\U0001f1e8\U0001f1e9",
  820. ":flag_for_cook_islands:": "\U0001f1e8\U0001f1f0",
  821. ":flag_for_costa_rica:": "\U0001f1e8\U0001f1f7",
  822. ":flag_for_cote_d_ivoire:": "\U0001f1e8\U0001f1ee",
  823. ":flag_for_croatia:": "\U0001f1ed\U0001f1f7",
  824. ":flag_for_cuba:": "\U0001f1e8\U0001f1fa",
  825. ":flag_for_curacao:": "\U0001f1e8\U0001f1fc",
  826. ":flag_for_cyprus:": "\U0001f1e8\U0001f1fe",
  827. ":flag_for_czechia:": "\U0001f1e8\U0001f1ff",
  828. ":flag_for_denmark:": "\U0001f1e9\U0001f1f0",
  829. ":flag_for_diego_garcia:": "\U0001f1e9\U0001f1ec",
  830. ":flag_for_djibouti:": "\U0001f1e9\U0001f1ef",
  831. ":flag_for_dominica:": "\U0001f1e9\U0001f1f2",
  832. ":flag_for_dominican_republic:": "\U0001f1e9\U0001f1f4",
  833. ":flag_for_ecuador:": "\U0001f1ea\U0001f1e8",
  834. ":flag_for_egypt:": "\U0001f1ea\U0001f1ec",
  835. ":flag_for_el_salvador:": "\U0001f1f8\U0001f1fb",
  836. ":flag_for_england:": "\U0001f3f4\U000e0067\U000e0062\U000e0065\U000e006e\U000e0067\U000e007f",
  837. ":flag_for_equatorial_guinea:": "\U0001f1ec\U0001f1f6",
  838. ":flag_for_eritrea:": "\U0001f1ea\U0001f1f7",
  839. ":flag_for_estonia:": "\U0001f1ea\U0001f1ea",
  840. ":flag_for_eswatini:": "\U0001f1f8\U0001f1ff",
  841. ":flag_for_ethiopia:": "\U0001f1ea\U0001f1f9",
  842. ":flag_for_european_union:": "\U0001f1ea\U0001f1fa",
  843. ":flag_for_falkland_islands:": "\U0001f1eb\U0001f1f0",
  844. ":flag_for_faroe_islands:": "\U0001f1eb\U0001f1f4",
  845. ":flag_for_fiji:": "\U0001f1eb\U0001f1ef",
  846. ":flag_for_finland:": "\U0001f1eb\U0001f1ee",
  847. ":flag_for_france:": "\U0001f1eb\U0001f1f7",
  848. ":flag_for_french_guiana:": "\U0001f1ec\U0001f1eb",
  849. ":flag_for_french_polynesia:": "\U0001f1f5\U0001f1eb",
  850. ":flag_for_french_southern_territories:": "\U0001f1f9\U0001f1eb",
  851. ":flag_for_gabon:": "\U0001f1ec\U0001f1e6",
  852. ":flag_for_gambia:": "\U0001f1ec\U0001f1f2",
  853. ":flag_for_georgia:": "\U0001f1ec\U0001f1ea",
  854. ":flag_for_germany:": "\U0001f1e9\U0001f1ea",
  855. ":flag_for_ghana:": "\U0001f1ec\U0001f1ed",
  856. ":flag_for_gibraltar:": "\U0001f1ec\U0001f1ee",
  857. ":flag_for_greece:": "\U0001f1ec\U0001f1f7",
  858. ":flag_for_greenland:": "\U0001f1ec\U0001f1f1",
  859. ":flag_for_grenada:": "\U0001f1ec\U0001f1e9",
  860. ":flag_for_guadeloupe:": "\U0001f1ec\U0001f1f5",
  861. ":flag_for_guam:": "\U0001f1ec\U0001f1fa",
  862. ":flag_for_guatemala:": "\U0001f1ec\U0001f1f9",
  863. ":flag_for_guernsey:": "\U0001f1ec\U0001f1ec",
  864. ":flag_for_guinea:": "\U0001f1ec\U0001f1f3",
  865. ":flag_for_guinea_bissau:": "\U0001f1ec\U0001f1fc",
  866. ":flag_for_guyana:": "\U0001f1ec\U0001f1fe",
  867. ":flag_for_haiti:": "\U0001f1ed\U0001f1f9",
  868. ":flag_for_heard_and_mcdonald_islands:": "\U0001f1ed\U0001f1f2",
  869. ":flag_for_honduras:": "\U0001f1ed\U0001f1f3",
  870. ":flag_for_hong_kong_sar_china:": "\U0001f1ed\U0001f1f0",
  871. ":flag_for_hungary:": "\U0001f1ed\U0001f1fa",
  872. ":flag_for_iceland:": "\U0001f1ee\U0001f1f8",
  873. ":flag_for_india:": "\U0001f1ee\U0001f1f3",
  874. ":flag_for_indonesia:": "\U0001f1ee\U0001f1e9",
  875. ":flag_for_iran:": "\U0001f1ee\U0001f1f7",
  876. ":flag_for_iraq:": "\U0001f1ee\U0001f1f6",
  877. ":flag_for_ireland:": "\U0001f1ee\U0001f1ea",
  878. ":flag_for_isle_of_man:": "\U0001f1ee\U0001f1f2",
  879. ":flag_for_israel:": "\U0001f1ee\U0001f1f1",
  880. ":flag_for_italy:": "\U0001f1ee\U0001f1f9",
  881. ":flag_for_jamaica:": "\U0001f1ef\U0001f1f2",
  882. ":flag_for_japan:": "\U0001f1ef\U0001f1f5",
  883. ":flag_for_jersey:": "\U0001f1ef\U0001f1ea",
  884. ":flag_for_jordan:": "\U0001f1ef\U0001f1f4",
  885. ":flag_for_kazakhstan:": "\U0001f1f0\U0001f1ff",
  886. ":flag_for_kenya:": "\U0001f1f0\U0001f1ea",
  887. ":flag_for_kiribati:": "\U0001f1f0\U0001f1ee",
  888. ":flag_for_kosovo:": "\U0001f1fd\U0001f1f0",
  889. ":flag_for_kuwait:": "\U0001f1f0\U0001f1fc",
  890. ":flag_for_kyrgyzstan:": "\U0001f1f0\U0001f1ec",
  891. ":flag_for_laos:": "\U0001f1f1\U0001f1e6",
  892. ":flag_for_latvia:": "\U0001f1f1\U0001f1fb",
  893. ":flag_for_lebanon:": "\U0001f1f1\U0001f1e7",
  894. ":flag_for_lesotho:": "\U0001f1f1\U0001f1f8",
  895. ":flag_for_liberia:": "\U0001f1f1\U0001f1f7",
  896. ":flag_for_libya:": "\U0001f1f1\U0001f1fe",
  897. ":flag_for_liechtenstein:": "\U0001f1f1\U0001f1ee",
  898. ":flag_for_lithuania:": "\U0001f1f1\U0001f1f9",
  899. ":flag_for_luxembourg:": "\U0001f1f1\U0001f1fa",
  900. ":flag_for_macao_sar_china:": "\U0001f1f2\U0001f1f4",
  901. ":flag_for_madagascar:": "\U0001f1f2\U0001f1ec",
  902. ":flag_for_malawi:": "\U0001f1f2\U0001f1fc",
  903. ":flag_for_malaysia:": "\U0001f1f2\U0001f1fe",
  904. ":flag_for_maldives:": "\U0001f1f2\U0001f1fb",
  905. ":flag_for_mali:": "\U0001f1f2\U0001f1f1",
  906. ":flag_for_malta:": "\U0001f1f2\U0001f1f9",
  907. ":flag_for_marshall_islands:": "\U0001f1f2\U0001f1ed",
  908. ":flag_for_martinique:": "\U0001f1f2\U0001f1f6",
  909. ":flag_for_mauritania:": "\U0001f1f2\U0001f1f7",
  910. ":flag_for_mauritius:": "\U0001f1f2\U0001f1fa",
  911. ":flag_for_mayotte:": "\U0001f1fe\U0001f1f9",
  912. ":flag_for_mexico:": "\U0001f1f2\U0001f1fd",
  913. ":flag_for_micronesia:": "\U0001f1eb\U0001f1f2",
  914. ":flag_for_moldova:": "\U0001f1f2\U0001f1e9",
  915. ":flag_for_monaco:": "\U0001f1f2\U0001f1e8",
  916. ":flag_for_mongolia:": "\U0001f1f2\U0001f1f3",
  917. ":flag_for_montenegro:": "\U0001f1f2\U0001f1ea",
  918. ":flag_for_montserrat:": "\U0001f1f2\U0001f1f8",
  919. ":flag_for_morocco:": "\U0001f1f2\U0001f1e6",
  920. ":flag_for_mozambique:": "\U0001f1f2\U0001f1ff",
  921. ":flag_for_myanmar_burma:": "\U0001f1f2\U0001f1f2",
  922. ":flag_for_namibia:": "\U0001f1f3\U0001f1e6",
  923. ":flag_for_nauru:": "\U0001f1f3\U0001f1f7",
  924. ":flag_for_nepal:": "\U0001f1f3\U0001f1f5",
  925. ":flag_for_netherlands:": "\U0001f1f3\U0001f1f1",
  926. ":flag_for_new_caledonia:": "\U0001f1f3\U0001f1e8",
  927. ":flag_for_new_zealand:": "\U0001f1f3\U0001f1ff",
  928. ":flag_for_nicaragua:": "\U0001f1f3\U0001f1ee",
  929. ":flag_for_niger:": "\U0001f1f3\U0001f1ea",
  930. ":flag_for_nigeria:": "\U0001f1f3\U0001f1ec",
  931. ":flag_for_niue:": "\U0001f1f3\U0001f1fa",
  932. ":flag_for_norfolk_island:": "\U0001f1f3\U0001f1eb",
  933. ":flag_for_north_korea:": "\U0001f1f0\U0001f1f5",
  934. ":flag_for_north_macedonia:": "\U0001f1f2\U0001f1f0",
  935. ":flag_for_northern_mariana_islands:": "\U0001f1f2\U0001f1f5",
  936. ":flag_for_norway:": "\U0001f1f3\U0001f1f4",
  937. ":flag_for_oman:": "\U0001f1f4\U0001f1f2",
  938. ":flag_for_pakistan:": "\U0001f1f5\U0001f1f0",
  939. ":flag_for_palau:": "\U0001f1f5\U0001f1fc",
  940. ":flag_for_palestinian_territories:": "\U0001f1f5\U0001f1f8",
  941. ":flag_for_panama:": "\U0001f1f5\U0001f1e6",
  942. ":flag_for_papua_new_guinea:": "\U0001f1f5\U0001f1ec",
  943. ":flag_for_paraguay:": "\U0001f1f5\U0001f1fe",
  944. ":flag_for_peru:": "\U0001f1f5\U0001f1ea",
  945. ":flag_for_philippines:": "\U0001f1f5\U0001f1ed",
  946. ":flag_for_pitcairn_islands:": "\U0001f1f5\U0001f1f3",
  947. ":flag_for_poland:": "\U0001f1f5\U0001f1f1",
  948. ":flag_for_portugal:": "\U0001f1f5\U0001f1f9",
  949. ":flag_for_puerto_rico:": "\U0001f1f5\U0001f1f7",
  950. ":flag_for_qatar:": "\U0001f1f6\U0001f1e6",
  951. ":flag_for_reunion:": "\U0001f1f7\U0001f1ea",
  952. ":flag_for_romania:": "\U0001f1f7\U0001f1f4",
  953. ":flag_for_russia:": "\U0001f1f7\U0001f1fa",
  954. ":flag_for_rwanda:": "\U0001f1f7\U0001f1fc",
  955. ":flag_for_samoa:": "\U0001f1fc\U0001f1f8",
  956. ":flag_for_san_marino:": "\U0001f1f8\U0001f1f2",
  957. ":flag_for_sao_tome_and_principe:": "\U0001f1f8\U0001f1f9",
  958. ":flag_for_saudi_arabia:": "\U0001f1f8\U0001f1e6",
  959. ":flag_for_scotland:": "\U0001f3f4\U000e0067\U000e0062\U000e0073\U000e0063\U000e0074\U000e007f",
  960. ":flag_for_senegal:": "\U0001f1f8\U0001f1f3",
  961. ":flag_for_serbia:": "\U0001f1f7\U0001f1f8",
  962. ":flag_for_seychelles:": "\U0001f1f8\U0001f1e8",
  963. ":flag_for_sierra_leone:": "\U0001f1f8\U0001f1f1",
  964. ":flag_for_singapore:": "\U0001f1f8\U0001f1ec",
  965. ":flag_for_sint_maarten:": "\U0001f1f8\U0001f1fd",
  966. ":flag_for_slovakia:": "\U0001f1f8\U0001f1f0",
  967. ":flag_for_slovenia:": "\U0001f1f8\U0001f1ee",
  968. ":flag_for_solomon_islands:": "\U0001f1f8\U0001f1e7",
  969. ":flag_for_somalia:": "\U0001f1f8\U0001f1f4",
  970. ":flag_for_south_africa:": "\U0001f1ff\U0001f1e6",
  971. ":flag_for_south_georgia_and_south_sandwich_islands:": "\U0001f1ec\U0001f1f8",
  972. ":flag_for_south_korea:": "\U0001f1f0\U0001f1f7",
  973. ":flag_for_south_sudan:": "\U0001f1f8\U0001f1f8",
  974. ":flag_for_spain:": "\U0001f1ea\U0001f1f8",
  975. ":flag_for_sri_lanka:": "\U0001f1f1\U0001f1f0",
  976. ":flag_for_st_barthelemy:": "\U0001f1e7\U0001f1f1",
  977. ":flag_for_st_helena:": "\U0001f1f8\U0001f1ed",
  978. ":flag_for_st_kitts_and_nevis:": "\U0001f1f0\U0001f1f3",
  979. ":flag_for_st_lucia:": "\U0001f1f1\U0001f1e8",
  980. ":flag_for_st_martin:": "\U0001f1f2\U0001f1eb",
  981. ":flag_for_st_pierre_and_miquelon:": "\U0001f1f5\U0001f1f2",
  982. ":flag_for_st_vincent_and_grenadines:": "\U0001f1fb\U0001f1e8",
  983. ":flag_for_sudan:": "\U0001f1f8\U0001f1e9",
  984. ":flag_for_suriname:": "\U0001f1f8\U0001f1f7",
  985. ":flag_for_svalbard_and_jan_mayen:": "\U0001f1f8\U0001f1ef",
  986. ":flag_for_sweden:": "\U0001f1f8\U0001f1ea",
  987. ":flag_for_switzerland:": "\U0001f1e8\U0001f1ed",
  988. ":flag_for_syria:": "\U0001f1f8\U0001f1fe",
  989. ":flag_for_taiwan:": "\U0001f1f9\U0001f1fc",
  990. ":flag_for_tajikistan:": "\U0001f1f9\U0001f1ef",
  991. ":flag_for_tanzania:": "\U0001f1f9\U0001f1ff",
  992. ":flag_for_thailand:": "\U0001f1f9\U0001f1ed",
  993. ":flag_for_timor_leste:": "\U0001f1f9\U0001f1f1",
  994. ":flag_for_togo:": "\U0001f1f9\U0001f1ec",
  995. ":flag_for_tokelau:": "\U0001f1f9\U0001f1f0",
  996. ":flag_for_tonga:": "\U0001f1f9\U0001f1f4",
  997. ":flag_for_trinidad_and_tobago:": "\U0001f1f9\U0001f1f9",
  998. ":flag_for_tristan_da_cunha:": "\U0001f1f9\U0001f1e6",
  999. ":flag_for_tunisia:": "\U0001f1f9\U0001f1f3",
  1000. ":flag_for_turkey:": "\U0001f1f9\U0001f1f7",
  1001. ":flag_for_turkmenistan:": "\U0001f1f9\U0001f1f2",
  1002. ":flag_for_turks_and_caicos_islands:": "\U0001f1f9\U0001f1e8",
  1003. ":flag_for_tuvalu:": "\U0001f1f9\U0001f1fb",
  1004. ":flag_for_uganda:": "\U0001f1fa\U0001f1ec",
  1005. ":flag_for_ukraine:": "\U0001f1fa\U0001f1e6",
  1006. ":flag_for_united_arab_emirates:": "\U0001f1e6\U0001f1ea",
  1007. ":flag_for_united_kingdom:": "\U0001f1ec\U0001f1e7",
  1008. ":flag_for_united_nations:": "\U0001f1fa\U0001f1f3",
  1009. ":flag_for_united_states:": "\U0001f1fa\U0001f1f8",
  1010. ":flag_for_uruguay:": "\U0001f1fa\U0001f1fe",
  1011. ":flag_for_us_outlying_islands:": "\U0001f1fa\U0001f1f2",
  1012. ":flag_for_us_virgin_islands:": "\U0001f1fb\U0001f1ee",
  1013. ":flag_for_uzbekistan:": "\U0001f1fa\U0001f1ff",
  1014. ":flag_for_vanuatu:": "\U0001f1fb\U0001f1fa",
  1015. ":flag_for_vatican_city:": "\U0001f1fb\U0001f1e6",
  1016. ":flag_for_venezuela:": "\U0001f1fb\U0001f1ea",
  1017. ":flag_for_vietnam:": "\U0001f1fb\U0001f1f3",
  1018. ":flag_for_wales:": "\U0001f3f4\U000e0067\U000e0062\U000e0077\U000e006c\U000e0073\U000e007f",
  1019. ":flag_for_wallis_and_futuna:": "\U0001f1fc\U0001f1eb",
  1020. ":flag_for_western_sahara:": "\U0001f1ea\U0001f1ed",
  1021. ":flag_for_yemen:": "\U0001f1fe\U0001f1ea",
  1022. ":flag_for_zambia:": "\U0001f1ff\U0001f1f2",
  1023. ":flag_for_zimbabwe:": "\U0001f1ff\U0001f1fc",
  1024. ":flag_in_hole:": "\u26f3",
  1025. ":flags:": "\U0001f38f",
  1026. ":flamingo:": "\U0001f9a9",
  1027. ":flashlight:": "\U0001f526",
  1028. ":flat_shoe:": "\U0001f97f",
  1029. ":flatbread:": "\U0001fad3",
  1030. ":fleur_de_lis:": "\u269c\ufe0f",
  1031. ":flexed_biceps:": "\U0001f4aa",
  1032. ":flight_arrival:": "\U0001f6ec",
  1033. ":flight_departure:": "\U0001f6eb",
  1034. ":flipper:": "\U0001f42c",
  1035. ":floppy_disk:": "\U0001f4be",
  1036. ":flower_playing_cards:": "\U0001f3b4",
  1037. ":flushed:": "\U0001f633",
  1038. ":flushed_face:": "\U0001f633",
  1039. ":fly:": "\U0001fab0",
  1040. ":flying_disc:": "\U0001f94f",
  1041. ":flying_saucer:": "\U0001f6f8",
  1042. ":fog:": "\U0001f32b\ufe0f",
  1043. ":foggy:": "\U0001f301",
  1044. ":folded_hands:": "\U0001f64f",
  1045. ":fondue:": "\U0001fad5",
  1046. ":foot:": "\U0001f9b6",
  1047. ":football:": "\U0001f3c8",
  1048. ":footprints:": "\U0001f463",
  1049. ":fork_and_knife:": "\U0001f374",
  1050. ":fork_and_knife_with_plate:": "\U0001f37d\ufe0f",
  1051. ":fortune_cookie:": "\U0001f960",
  1052. ":fountain:": "\u26f2",
  1053. ":fountain_pen:": "\U0001f58b\ufe0f",
  1054. ":four:": "4\ufe0f\u20e3",
  1055. ":four_leaf_clover:": "\U0001f340",
  1056. ":four_o_clock:": "\U0001f553",
  1057. ":four_thirty:": "\U0001f55f",
  1058. ":fox:": "\U0001f98a",
  1059. ":fox_face:": "\U0001f98a",
  1060. ":fr:": "\U0001f1eb\U0001f1f7",
  1061. ":framed_picture:": "\U0001f5bc\ufe0f",
  1062. ":free:": "\U0001f193",
  1063. ":free_button:": "\U0001f193",
  1064. ":french_fries:": "\U0001f35f",
  1065. ":french_guiana:": "\U0001f1ec\U0001f1eb",
  1066. ":french_polynesia:": "\U0001f1f5\U0001f1eb",
  1067. ":french_southern_territories:": "\U0001f1f9\U0001f1eb",
  1068. ":fried_egg:": "\U0001f373",
  1069. ":fried_shrimp:": "\U0001f364",
  1070. ":fries:": "\U0001f35f",
  1071. ":frog:": "\U0001f438",
  1072. ":front_facing_baby_chick:": "\U0001f425",
  1073. ":frowning:": "\U0001f626",
  1074. ":frowning_face:": "\u2639\ufe0f",
  1075. ":frowning_face_with_open_mouth:": "\U0001f626",
  1076. ":frowning_man:": "\U0001f64d\u200d\u2642\ufe0f",
  1077. ":frowning_person:": "\U0001f64d",
  1078. ":frowning_woman:": "\U0001f64d\u200d\u2640\ufe0f",
  1079. ":fu:": "\U0001f595",
  1080. ":fuel_pump:": "\u26fd",
  1081. ":fuelpump:": "\u26fd",
  1082. ":full_moon:": "\U0001f315",
  1083. ":full_moon_face:": "\U0001f31d",
  1084. ":full_moon_with_face:": "\U0001f31d",
  1085. ":funeral_urn:": "\u26b1\ufe0f",
  1086. ":gabon:": "\U0001f1ec\U0001f1e6",
  1087. ":gambia:": "\U0001f1ec\U0001f1f2",
  1088. ":game_die:": "\U0001f3b2",
  1089. ":garlic:": "\U0001f9c4",
  1090. ":gb:": "\U0001f1ec\U0001f1e7",
  1091. ":gear:": "\u2699\ufe0f",
  1092. ":gem:": "\U0001f48e",
  1093. ":gem_stone:": "\U0001f48e",
  1094. ":gemini:": "\u264a",
  1095. ":genie:": "\U0001f9de",
  1096. ":genie_man:": "\U0001f9de\u200d\u2642\ufe0f",
  1097. ":genie_woman:": "\U0001f9de\u200d\u2640\ufe0f",
  1098. ":georgia:": "\U0001f1ec\U0001f1ea",
  1099. ":ghana:": "\U0001f1ec\U0001f1ed",
  1100. ":ghost:": "\U0001f47b",
  1101. ":gibraltar:": "\U0001f1ec\U0001f1ee",
  1102. ":gift:": "\U0001f381",
  1103. ":gift_heart:": "\U0001f49d",
  1104. ":giraffe:": "\U0001f992",
  1105. ":girl:": "\U0001f467",
  1106. ":glass_of_milk:": "\U0001f95b",
  1107. ":glasses:": "\U0001f453",
  1108. ":globe_showing_americas:": "\U0001f30e",
  1109. ":globe_showing_asia_australia:": "\U0001f30f",
  1110. ":globe_showing_europe_africa:": "\U0001f30d",
  1111. ":globe_with_meridians:": "\U0001f310",
  1112. ":gloves:": "\U0001f9e4",
  1113. ":glowing_star:": "\U0001f31f",
  1114. ":goal_net:": "\U0001f945",
  1115. ":goat:": "\U0001f410",
  1116. ":goblin:": "\U0001f47a",
  1117. ":goggles:": "\U0001f97d",
  1118. ":golf:": "\u26f3",
  1119. ":golfing:": "\U0001f3cc\ufe0f",
  1120. ":golfing_man:": "\U0001f3cc\ufe0f\u200d\u2642\ufe0f",
  1121. ":golfing_woman:": "\U0001f3cc\ufe0f\u200d\u2640\ufe0f",
  1122. ":gorilla:": "\U0001f98d",
  1123. ":graduation_cap:": "\U0001f393",
  1124. ":grapes:": "\U0001f347",
  1125. ":greece:": "\U0001f1ec\U0001f1f7",
  1126. ":green_apple:": "\U0001f34f",
  1127. ":green_book:": "\U0001f4d7",
  1128. ":green_circle:": "\U0001f7e2",
  1129. ":green_heart:": "\U0001f49a",
  1130. ":green_salad:": "\U0001f957",
  1131. ":green_square:": "\U0001f7e9",
  1132. ":greenland:": "\U0001f1ec\U0001f1f1",
  1133. ":grenada:": "\U0001f1ec\U0001f1e9",
  1134. ":grey_exclamation:": "\u2755",
  1135. ":grey_question:": "\u2754",
  1136. ":grimacing:": "\U0001f62c",
  1137. ":grimacing_face:": "\U0001f62c",
  1138. ":grin:": "\U0001f601",
  1139. ":grinning:": "\U0001f600",
  1140. ":grinning_cat:": "\U0001f63a",
  1141. ":grinning_cat_with_smiling_eyes:": "\U0001f638",
  1142. ":grinning_face:": "\U0001f600",
  1143. ":grinning_face_with_big_eyes:": "\U0001f603",
  1144. ":grinning_face_with_smiling_eyes:": "\U0001f604",
  1145. ":grinning_face_with_sweat:": "\U0001f605",
  1146. ":grinning_squinting_face:": "\U0001f606",
  1147. ":growing_heart:": "\U0001f497",
  1148. ":guadeloupe:": "\U0001f1ec\U0001f1f5",
  1149. ":guam:": "\U0001f1ec\U0001f1fa",
  1150. ":guard:": "\U0001f482",
  1151. ":guardsman:": "\U0001f482\u200d\u2642\ufe0f",
  1152. ":guardswoman:": "\U0001f482\u200d\u2640\ufe0f",
  1153. ":guatemala:": "\U0001f1ec\U0001f1f9",
  1154. ":guernsey:": "\U0001f1ec\U0001f1ec",
  1155. ":guide_dog:": "\U0001f9ae",
  1156. ":guinea:": "\U0001f1ec\U0001f1f3",
  1157. ":guinea_bissau:": "\U0001f1ec\U0001f1fc",
  1158. ":guitar:": "\U0001f3b8",
  1159. ":gun:": "\U0001f52b",
  1160. ":guyana:": "\U0001f1ec\U0001f1fe",
  1161. ":haircut:": "\U0001f487",
  1162. ":haircut_man:": "\U0001f487\u200d\u2642\ufe0f",
  1163. ":haircut_woman:": "\U0001f487\u200d\u2640\ufe0f",
  1164. ":haiti:": "\U0001f1ed\U0001f1f9",
  1165. ":hamburger:": "\U0001f354",
  1166. ":hammer:": "\U0001f528",
  1167. ":hammer_and_pick:": "\u2692\ufe0f",
  1168. ":hammer_and_wrench:": "\U0001f6e0\ufe0f",
  1169. ":hamster:": "\U0001f439",
  1170. ":hand:": "\u270b",
  1171. ":hand_over_mouth:": "\U0001f92d",
  1172. ":hand_with_fingers_splayed:": "\U0001f590\ufe0f",
  1173. ":handbag:": "\U0001f45c",
  1174. ":handball_person:": "\U0001f93e",
  1175. ":handshake:": "\U0001f91d",
  1176. ":hankey:": "\U0001f4a9",
  1177. ":hash:": "#\ufe0f\u20e3",
  1178. ":hatched_chick:": "\U0001f425",
  1179. ":hatching_chick:": "\U0001f423",
  1180. ":headphone:": "\U0001f3a7",
  1181. ":headphones:": "\U0001f3a7",
  1182. ":headstone:": "\U0001faa6",
  1183. ":health_worker:": "\U0001f9d1\u200d\u2695\ufe0f",
  1184. ":hear_no_evil:": "\U0001f649",
  1185. ":hear_no_evil_monkey:": "\U0001f649",
  1186. ":heard_mcdonald_islands:": "\U0001f1ed\U0001f1f2",
  1187. ":heart:": "\u2764\ufe0f",
  1188. ":heart_decoration:": "\U0001f49f",
  1189. ":heart_exclamation:": "\u2763\ufe0f",
  1190. ":heart_eyes:": "\U0001f60d",
  1191. ":heart_eyes_cat:": "\U0001f63b",
  1192. ":heart_suit:": "\u2665\ufe0f",
  1193. ":heart_with_arrow:": "\U0001f498",
  1194. ":heart_with_ribbon:": "\U0001f49d",
  1195. ":heartbeat:": "\U0001f493",
  1196. ":heartpulse:": "\U0001f497",
  1197. ":hearts:": "\u2665\ufe0f",
  1198. ":heavy_check_mark:": "\u2714\ufe0f",
  1199. ":heavy_division_sign:": "\u2797",
  1200. ":heavy_dollar_sign:": "\U0001f4b2",
  1201. ":heavy_exclamation_mark:": "\u2757",
  1202. ":heavy_heart_exclamation:": "\u2763\ufe0f",
  1203. ":heavy_minus_sign:": "\u2796",
  1204. ":heavy_multiplication_x:": "\u2716\ufe0f",
  1205. ":heavy_plus_sign:": "\u2795",
  1206. ":hedgehog:": "\U0001f994",
  1207. ":helicopter:": "\U0001f681",
  1208. ":herb:": "\U0001f33f",
  1209. ":hibiscus:": "\U0001f33a",
  1210. ":high_brightness:": "\U0001f506",
  1211. ":high_heel:": "\U0001f460",
  1212. ":high_heeled_shoe:": "\U0001f460",
  1213. ":high_speed_train:": "\U0001f684",
  1214. ":high_voltage:": "\u26a1",
  1215. ":hiking_boot:": "\U0001f97e",
  1216. ":hindu_temple:": "\U0001f6d5",
  1217. ":hippopotamus:": "\U0001f99b",
  1218. ":hocho:": "\U0001f52a",
  1219. ":hole:": "\U0001f573\ufe0f",
  1220. ":hollow_red_circle:": "\u2b55",
  1221. ":honduras:": "\U0001f1ed\U0001f1f3",
  1222. ":honey_pot:": "\U0001f36f",
  1223. ":honeybee:": "\U0001f41d",
  1224. ":hong_kong:": "\U0001f1ed\U0001f1f0",
  1225. ":hook:": "\U0001fa9d",
  1226. ":horizontal_traffic_light:": "\U0001f6a5",
  1227. ":horse:": "\U0001f434",
  1228. ":horse_face:": "\U0001f434",
  1229. ":horse_racing:": "\U0001f3c7",
  1230. ":hospital:": "\U0001f3e5",
  1231. ":hot_beverage:": "\u2615",
  1232. ":hot_dog:": "\U0001f32d",
  1233. ":hot_face:": "\U0001f975",
  1234. ":hot_pepper:": "\U0001f336\ufe0f",
  1235. ":hot_springs:": "\u2668\ufe0f",
  1236. ":hotdog:": "\U0001f32d",
  1237. ":hotel:": "\U0001f3e8",
  1238. ":hotsprings:": "\u2668\ufe0f",
  1239. ":hourglass:": "\u231b",
  1240. ":hourglass_done:": "\u231b",
  1241. ":hourglass_flowing_sand:": "\u23f3",
  1242. ":hourglass_not_done:": "\u23f3",
  1243. ":house:": "\U0001f3e0",
  1244. ":house_with_garden:": "\U0001f3e1",
  1245. ":houses:": "\U0001f3d8\ufe0f",
  1246. ":hugging_face:": "\U0001f917",
  1247. ":hugs:": "\U0001f917",
  1248. ":hundred_points:": "\U0001f4af",
  1249. ":hungary:": "\U0001f1ed\U0001f1fa",
  1250. ":hushed:": "\U0001f62f",
  1251. ":hushed_face:": "\U0001f62f",
  1252. ":hut:": "\U0001f6d6",
  1253. ":ice:": "\U0001f9ca",
  1254. ":ice_cream:": "\U0001f368",
  1255. ":ice_cube:": "\U0001f9ca",
  1256. ":ice_hockey:": "\U0001f3d2",
  1257. ":ice_skate:": "\u26f8\ufe0f",
  1258. ":icecream:": "\U0001f366",
  1259. ":iceland:": "\U0001f1ee\U0001f1f8",
  1260. ":id:": "\U0001f194",
  1261. ":id_button:": "\U0001f194",
  1262. ":ideograph_advantage:": "\U0001f250",
  1263. ":imp:": "\U0001f47f",
  1264. ":inbox_tray:": "\U0001f4e5",
  1265. ":incoming_envelope:": "\U0001f4e8",
  1266. ":index_pointing_up:": "\u261d\ufe0f",
  1267. ":india:": "\U0001f1ee\U0001f1f3",
  1268. ":indonesia:": "\U0001f1ee\U0001f1e9",
  1269. ":infinity:": "\u267e\ufe0f",
  1270. ":information:": "\u2139\ufe0f",
  1271. ":information_desk_person:": "\U0001f481",
  1272. ":information_source:": "\u2139\ufe0f",
  1273. ":innocent:": "\U0001f607",
  1274. ":input_latin_letters:": "\U0001f524",
  1275. ":input_latin_lowercase:": "\U0001f521",
  1276. ":input_latin_uppercase:": "\U0001f520",
  1277. ":input_numbers:": "\U0001f522",
  1278. ":input_symbols:": "\U0001f523",
  1279. ":interrobang:": "\u2049\ufe0f",
  1280. ":iphone:": "\U0001f4f1",
  1281. ":iran:": "\U0001f1ee\U0001f1f7",
  1282. ":iraq:": "\U0001f1ee\U0001f1f6",
  1283. ":ireland:": "\U0001f1ee\U0001f1ea",
  1284. ":isle_of_man:": "\U0001f1ee\U0001f1f2",
  1285. ":israel:": "\U0001f1ee\U0001f1f1",
  1286. ":it:": "\U0001f1ee\U0001f1f9",
  1287. ":izakaya_lantern:": "\U0001f3ee",
  1288. ":jack_o_lantern:": "\U0001f383",
  1289. ":jamaica:": "\U0001f1ef\U0001f1f2",
  1290. ":japan:": "\U0001f5fe",
  1291. ":japanese_acceptable_button:": "\U0001f251",
  1292. ":japanese_application_button:": "\U0001f238",
  1293. ":japanese_bargain_button:": "\U0001f250",
  1294. ":japanese_castle:": "\U0001f3ef",
  1295. ":japanese_congratulations_button:": "\u3297\ufe0f",
  1296. ":japanese_discount_button:": "\U0001f239",
  1297. ":japanese_dolls:": "\U0001f38e",
  1298. ":japanese_free_of_charge_button:": "\U0001f21a",
  1299. ":japanese_goblin:": "\U0001f47a",
  1300. ":japanese_here_button:": "\U0001f201",
  1301. ":japanese_monthly_amount_button:": "\U0001f237\ufe0f",
  1302. ":japanese_no_vacancy_button:": "\U0001f235",
  1303. ":japanese_not_free_of_charge_button:": "\U0001f236",
  1304. ":japanese_ogre:": "\U0001f479",
  1305. ":japanese_open_for_business_button:": "\U0001f23a",
  1306. ":japanese_passing_grade_button:": "\U0001f234",
  1307. ":japanese_post_office:": "\U0001f3e3",
  1308. ":japanese_prohibited_button:": "\U0001f232",
  1309. ":japanese_reserved_button:": "\U0001f22f",
  1310. ":japanese_secret_button:": "\u3299\ufe0f",
  1311. ":japanese_service_charge_button:": "\U0001f202\ufe0f",
  1312. ":japanese_symbol_for_beginner:": "\U0001f530",
  1313. ":japanese_vacancy_button:": "\U0001f233",
  1314. ":jeans:": "\U0001f456",
  1315. ":jersey:": "\U0001f1ef\U0001f1ea",
  1316. ":jigsaw:": "\U0001f9e9",
  1317. ":joker:": "\U0001f0cf",
  1318. ":jordan:": "\U0001f1ef\U0001f1f4",
  1319. ":joy:": "\U0001f602",
  1320. ":joy_cat:": "\U0001f639",
  1321. ":joystick:": "\U0001f579\ufe0f",
  1322. ":jp:": "\U0001f1ef\U0001f1f5",
  1323. ":judge:": "\U0001f9d1\u200d\u2696\ufe0f",
  1324. ":juggling_person:": "\U0001f939",
  1325. ":kaaba:": "\U0001f54b",
  1326. ":kangaroo:": "\U0001f998",
  1327. ":kazakhstan:": "\U0001f1f0\U0001f1ff",
  1328. ":kenya:": "\U0001f1f0\U0001f1ea",
  1329. ":key:": "\U0001f511",
  1330. ":keyboard:": "\u2328\ufe0f",
  1331. ":keycap_0:": "0\ufe0f\u20e3",
  1332. ":keycap_10:": "\U0001f51f",
  1333. ":keycap_1:": "1\ufe0f\u20e3",
  1334. ":keycap_2:": "2\ufe0f\u20e3",
  1335. ":keycap_3:": "3\ufe0f\u20e3",
  1336. ":keycap_4:": "4\ufe0f\u20e3",
  1337. ":keycap_5:": "5\ufe0f\u20e3",
  1338. ":keycap_6:": "6\ufe0f\u20e3",
  1339. ":keycap_7:": "7\ufe0f\u20e3",
  1340. ":keycap_8:": "8\ufe0f\u20e3",
  1341. ":keycap_9:": "9\ufe0f\u20e3",
  1342. ":keycap_asterisk:": "*\ufe0f\u20e3",
  1343. ":keycap_hash:": "#\ufe0f\u20e3",
  1344. ":keycap_ten:": "\U0001f51f",
  1345. ":kick_scooter:": "\U0001f6f4",
  1346. ":kimono:": "\U0001f458",
  1347. ":kiribati:": "\U0001f1f0\U0001f1ee",
  1348. ":kiss:": "\U0001f48b",
  1349. ":kiss_man_man:": "\U0001f468\u200d\u2764\ufe0f\u200d\U0001f48b\u200d\U0001f468",
  1350. ":kiss_mark:": "\U0001f48b",
  1351. ":kiss_woman_man:": "\U0001f469\u200d\u2764\ufe0f\u200d\U0001f48b\u200d\U0001f468",
  1352. ":kiss_woman_woman:": "\U0001f469\u200d\u2764\ufe0f\u200d\U0001f48b\u200d\U0001f469",
  1353. ":kissing:": "\U0001f617",
  1354. ":kissing_cat:": "\U0001f63d",
  1355. ":kissing_closed_eyes:": "\U0001f61a",
  1356. ":kissing_face:": "\U0001f617",
  1357. ":kissing_face_with_closed_eyes:": "\U0001f61a",
  1358. ":kissing_face_with_smiling_eyes:": "\U0001f619",
  1359. ":kissing_heart:": "\U0001f618",
  1360. ":kissing_smiling_eyes:": "\U0001f619",
  1361. ":kitchen_knife:": "\U0001f52a",
  1362. ":kite:": "\U0001fa81",
  1363. ":kiwi_fruit:": "\U0001f95d",
  1364. ":kneeling_man:": "\U0001f9ce\u200d\u2642\ufe0f",
  1365. ":kneeling_person:": "\U0001f9ce",
  1366. ":kneeling_woman:": "\U0001f9ce\u200d\u2640\ufe0f",
  1367. ":knife:": "\U0001f52a",
  1368. ":knot:": "\U0001faa2",
  1369. ":koala:": "\U0001f428",
  1370. ":koko:": "\U0001f201",
  1371. ":kosovo:": "\U0001f1fd\U0001f1f0",
  1372. ":kr:": "\U0001f1f0\U0001f1f7",
  1373. ":kuwait:": "\U0001f1f0\U0001f1fc",
  1374. ":kyrgyzstan:": "\U0001f1f0\U0001f1ec",
  1375. ":lab_coat:": "\U0001f97c",
  1376. ":label:": "\U0001f3f7\ufe0f",
  1377. ":lacrosse:": "\U0001f94d",
  1378. ":ladder:": "\U0001fa9c",
  1379. ":lady_beetle:": "\U0001f41e",
  1380. ":lantern:": "\U0001f3ee",
  1381. ":laos:": "\U0001f1f1\U0001f1e6",
  1382. ":laptop:": "\U0001f4bb",
  1383. ":large_blue_circle:": "\U0001f535",
  1384. ":large_blue_diamond:": "\U0001f537",
  1385. ":large_orange_diamond:": "\U0001f536",
  1386. ":last_quarter_moon:": "\U0001f317",
  1387. ":last_quarter_moon_face:": "\U0001f31c",
  1388. ":last_quarter_moon_with_face:": "\U0001f31c",
  1389. ":last_track_button:": "\u23ee\ufe0f",
  1390. ":latin_cross:": "\u271d\ufe0f",
  1391. ":latvia:": "\U0001f1f1\U0001f1fb",
  1392. ":laughing:": "\U0001f606",
  1393. ":leaf_fluttering_in_wind:": "\U0001f343",
  1394. ":leafy_green:": "\U0001f96c",
  1395. ":leaves:": "\U0001f343",
  1396. ":lebanon:": "\U0001f1f1\U0001f1e7",
  1397. ":ledger:": "\U0001f4d2",
  1398. ":left_arrow:": "\u2b05\ufe0f",
  1399. ":left_arrow_curving_right:": "\u21aa\ufe0f",
  1400. ":left_facing_fist:": "\U0001f91b",
  1401. ":left_luggage:": "\U0001f6c5",
  1402. ":left_right_arrow:": "\u2194\ufe0f",
  1403. ":left_speech_bubble:": "\U0001f5e8\ufe0f",
  1404. ":leftwards_arrow_with_hook:": "\u21a9\ufe0f",
  1405. ":leg:": "\U0001f9b5",
  1406. ":lemon:": "\U0001f34b",
  1407. ":leo:": "\u264c",
  1408. ":leopard:": "\U0001f406",
  1409. ":lesotho:": "\U0001f1f1\U0001f1f8",
  1410. ":level_slider:": "\U0001f39a\ufe0f",
  1411. ":liberia:": "\U0001f1f1\U0001f1f7",
  1412. ":libra:": "\u264e",
  1413. ":libya:": "\U0001f1f1\U0001f1fe",
  1414. ":liechtenstein:": "\U0001f1f1\U0001f1ee",
  1415. ":light_bulb:": "\U0001f4a1",
  1416. ":light_rail:": "\U0001f688",
  1417. ":light_skin_tone:": "\U0001f3fb",
  1418. ":link:": "\U0001f517",
  1419. ":linked_paperclips:": "\U0001f587\ufe0f",
  1420. ":lion:": "\U0001f981",
  1421. ":lips:": "\U0001f444",
  1422. ":lipstick:": "\U0001f484",
  1423. ":lithuania:": "\U0001f1f1\U0001f1f9",
  1424. ":litter_in_bin_sign:": "\U0001f6ae",
  1425. ":lizard:": "\U0001f98e",
  1426. ":llama:": "\U0001f999",
  1427. ":lobster:": "\U0001f99e",
  1428. ":lock:": "\U0001f512",
  1429. ":lock_with_ink_pen:": "\U0001f50f",
  1430. ":locked:": "\U0001f512",
  1431. ":locked_with_key:": "\U0001f510",
  1432. ":locked_with_pen:": "\U0001f50f",
  1433. ":locomotive:": "\U0001f682",
  1434. ":lollipop:": "\U0001f36d",
  1435. ":long_drum:": "\U0001fa98",
  1436. ":loop:": "\u27bf",
  1437. ":lotion_bottle:": "\U0001f9f4",
  1438. ":lotus_position:": "\U0001f9d8",
  1439. ":lotus_position_man:": "\U0001f9d8\u200d\u2642\ufe0f",
  1440. ":lotus_position_woman:": "\U0001f9d8\u200d\u2640\ufe0f",
  1441. ":loud_sound:": "\U0001f50a",
  1442. ":loudly_crying_face:": "\U0001f62d",
  1443. ":loudspeaker:": "\U0001f4e2",
  1444. ":love_hotel:": "\U0001f3e9",
  1445. ":love_letter:": "\U0001f48c",
  1446. ":love_you_gesture:": "\U0001f91f",
  1447. ":low_brightness:": "\U0001f505",
  1448. ":luggage:": "\U0001f9f3",
  1449. ":lungs:": "\U0001fac1",
  1450. ":luxembourg:": "\U0001f1f1\U0001f1fa",
  1451. ":lying_face:": "\U0001f925",
  1452. ":m:": "\u24c2\ufe0f",
  1453. ":macau:": "\U0001f1f2\U0001f1f4",
  1454. ":macedonia:": "\U0001f1f2\U0001f1f0",
  1455. ":madagascar:": "\U0001f1f2\U0001f1ec",
  1456. ":mag:": "\U0001f50d",
  1457. ":mag_right:": "\U0001f50e",
  1458. ":mage:": "\U0001f9d9",
  1459. ":mage_man:": "\U0001f9d9\u200d\u2642\ufe0f",
  1460. ":mage_woman:": "\U0001f9d9\u200d\u2640\ufe0f",
  1461. ":magic_wand:": "\U0001fa84",
  1462. ":magnet:": "\U0001f9f2",
  1463. ":magnifying_glass_tilted_left:": "\U0001f50d",
  1464. ":magnifying_glass_tilted_right:": "\U0001f50e",
  1465. ":mahjong:": "\U0001f004",
  1466. ":mahjong_red_dragon:": "\U0001f004",
  1467. ":mailbox:": "\U0001f4eb",
  1468. ":mailbox_closed:": "\U0001f4ea",
  1469. ":mailbox_with_mail:": "\U0001f4ec",
  1470. ":mailbox_with_no_mail:": "\U0001f4ed",
  1471. ":malawi:": "\U0001f1f2\U0001f1fc",
  1472. ":malaysia:": "\U0001f1f2\U0001f1fe",
  1473. ":maldives:": "\U0001f1f2\U0001f1fb",
  1474. ":male_detective:": "\U0001f575\ufe0f\u200d\u2642\ufe0f",
  1475. ":male_sign:": "\u2642\ufe0f",
  1476. ":mali:": "\U0001f1f2\U0001f1f1",
  1477. ":malta:": "\U0001f1f2\U0001f1f9",
  1478. ":mammoth:": "\U0001f9a3",
  1479. ":man:": "\U0001f468",
  1480. ":man_artist:": "\U0001f468\u200d\U0001f3a8",
  1481. ":man_astronaut:": "\U0001f468\u200d\U0001f680",
  1482. ":man_bald:": "\U0001f468\u200d\U0001f9b2",
  1483. ":man_biking:": "\U0001f6b4\u200d\u2642\ufe0f",
  1484. ":man_bouncing_ball:": "\u26f9\ufe0f\u200d\u2642\ufe0f",
  1485. ":man_bowing:": "\U0001f647\u200d\u2642\ufe0f",
  1486. ":man_cartwheeling:": "\U0001f938\u200d\u2642\ufe0f",
  1487. ":man_climbing:": "\U0001f9d7\u200d\u2642\ufe0f",
  1488. ":man_construction_worker:": "\U0001f477\u200d\u2642\ufe0f",
  1489. ":man_cook:": "\U0001f468\u200d\U0001f373",
  1490. ":man_dancing:": "\U0001f57a",
  1491. ":man_detective:": "\U0001f575\ufe0f\u200d\u2642\ufe0f",
  1492. ":man_elf:": "\U0001f9dd\u200d\u2642\ufe0f",
  1493. ":man_facepalming:": "\U0001f926\u200d\u2642\ufe0f",
  1494. ":man_factory_worker:": "\U0001f468\u200d\U0001f3ed",
  1495. ":man_fairy:": "\U0001f9da\u200d\u2642\ufe0f",
  1496. ":man_farmer:": "\U0001f468\u200d\U0001f33e",
  1497. ":man_feeding_baby:": "\U0001f468\u200d\U0001f37c",
  1498. ":man_firefighter:": "\U0001f468\u200d\U0001f692",
  1499. ":man_frowning:": "\U0001f64d\u200d\u2642\ufe0f",
  1500. ":man_genie:": "\U0001f9de\u200d\u2642\ufe0f",
  1501. ":man_gesturing_no:": "\U0001f645\u200d\u2642\ufe0f",
  1502. ":man_gesturing_ok:": "\U0001f646\u200d\u2642\ufe0f",
  1503. ":man_getting_haircut:": "\U0001f487\u200d\u2642\ufe0f",
  1504. ":man_getting_massage:": "\U0001f486\u200d\u2642\ufe0f",
  1505. ":man_golfing:": "\U0001f3cc\ufe0f\u200d\u2642\ufe0f",
  1506. ":man_guard:": "\U0001f482\u200d\u2642\ufe0f",
  1507. ":man_health_worker:": "\U0001f468\u200d\u2695\ufe0f",
  1508. ":man_in_lotus_position:": "\U0001f9d8\u200d\u2642\ufe0f",
  1509. ":man_in_manual_wheelchair:": "\U0001f468\u200d\U0001f9bd",
  1510. ":man_in_motorized_wheelchair:": "\U0001f468\u200d\U0001f9bc",
  1511. ":man_in_steamy_room:": "\U0001f9d6\u200d\u2642\ufe0f",
  1512. ":man_in_tuxedo:": "\U0001f935\u200d\u2642\ufe0f",
  1513. ":man_judge:": "\U0001f468\u200d\u2696\ufe0f",
  1514. ":man_juggling:": "\U0001f939\u200d\u2642\ufe0f",
  1515. ":man_kneeling:": "\U0001f9ce\u200d\u2642\ufe0f",
  1516. ":man_lifting_weights:": "\U0001f3cb\ufe0f\u200d\u2642\ufe0f",
  1517. ":man_mage:": "\U0001f9d9\u200d\u2642\ufe0f",
  1518. ":man_mechanic:": "\U0001f468\u200d\U0001f527",
  1519. ":man_mountain_biking:": "\U0001f6b5\u200d\u2642\ufe0f",
  1520. ":man_office_worker:": "\U0001f468\u200d\U0001f4bc",
  1521. ":man_pilot:": "\U0001f468\u200d\u2708\ufe0f",
  1522. ":man_playing_handball:": "\U0001f93e\u200d\u2642\ufe0f",
  1523. ":man_playing_water_polo:": "\U0001f93d\u200d\u2642\ufe0f",
  1524. ":man_police_officer:": "\U0001f46e\u200d\u2642\ufe0f",
  1525. ":man_pouting:": "\U0001f64e\u200d\u2642\ufe0f",
  1526. ":man_raising_hand:": "\U0001f64b\u200d\u2642\ufe0f",
  1527. ":man_rowing_boat:": "\U0001f6a3\u200d\u2642\ufe0f",
  1528. ":man_running:": "\U0001f3c3\u200d\u2642\ufe0f",
  1529. ":man_s_shoe:": "\U0001f45e",
  1530. ":man_scientist:": "\U0001f468\u200d\U0001f52c",
  1531. ":man_shrugging:": "\U0001f937\u200d\u2642\ufe0f",
  1532. ":man_singer:": "\U0001f468\u200d\U0001f3a4",
  1533. ":man_standing:": "\U0001f9cd\u200d\u2642\ufe0f",
  1534. ":man_student:": "\U0001f468\u200d\U0001f393",
  1535. ":man_superhero:": "\U0001f9b8\u200d\u2642\ufe0f",
  1536. ":man_supervillain:": "\U0001f9b9\u200d\u2642\ufe0f",
  1537. ":man_surfing:": "\U0001f3c4\u200d\u2642\ufe0f",
  1538. ":man_swimming:": "\U0001f3ca\u200d\u2642\ufe0f",
  1539. ":man_teacher:": "\U0001f468\u200d\U0001f3eb",
  1540. ":man_technologist:": "\U0001f468\u200d\U0001f4bb",
  1541. ":man_tipping_hand:": "\U0001f481\u200d\u2642\ufe0f",
  1542. ":man_vampire:": "\U0001f9db\u200d\u2642\ufe0f",
  1543. ":man_walking:": "\U0001f6b6\u200d\u2642\ufe0f",
  1544. ":man_wearing_turban:": "\U0001f473\u200d\u2642\ufe0f",
  1545. ":man_with_beard:": "\U0001f9d4",
  1546. ":man_with_blond_hair:": "\U0001f471\u200d\u2642\ufe0f",
  1547. ":man_with_curly_hair:": "\U0001f468\u200d\U0001f9b1",
  1548. ":man_with_gua_pi_mao:": "\U0001f472",
  1549. ":man_with_probing_cane:": "\U0001f468\u200d\U0001f9af",
  1550. ":man_with_red_hair:": "\U0001f468\u200d\U0001f9b0",
  1551. ":man_with_turban:": "\U0001f473\u200d\u2642\ufe0f",
  1552. ":man_with_veil:": "\U0001f470\u200d\u2642\ufe0f",
  1553. ":man_with_white_cane:": "\U0001f468\u200d\U0001f9af",
  1554. ":man_with_white_hair:": "\U0001f468\u200d\U0001f9b3",
  1555. ":man_zombie:": "\U0001f9df\u200d\u2642\ufe0f",
  1556. ":mandarin:": "\U0001f34a",
  1557. ":mango:": "\U0001f96d",
  1558. ":mans_shoe:": "\U0001f45e",
  1559. ":mantelpiece_clock:": "\U0001f570\ufe0f",
  1560. ":manual_wheelchair:": "\U0001f9bd",
  1561. ":map_of_japan:": "\U0001f5fe",
  1562. ":maple_leaf:": "\U0001f341",
  1563. ":marshall_islands:": "\U0001f1f2\U0001f1ed",
  1564. ":martial_arts_uniform:": "\U0001f94b",
  1565. ":martinique:": "\U0001f1f2\U0001f1f6",
  1566. ":mask:": "\U0001f637",
  1567. ":massage:": "\U0001f486",
  1568. ":massage_man:": "\U0001f486\u200d\u2642\ufe0f",
  1569. ":massage_woman:": "\U0001f486\u200d\u2640\ufe0f",
  1570. ":mate:": "\U0001f9c9",
  1571. ":mauritania:": "\U0001f1f2\U0001f1f7",
  1572. ":mauritius:": "\U0001f1f2\U0001f1fa",
  1573. ":mayotte:": "\U0001f1fe\U0001f1f9",
  1574. ":meat_on_bone:": "\U0001f356",
  1575. ":mechanic:": "\U0001f9d1\u200d\U0001f527",
  1576. ":mechanical_arm:": "\U0001f9be",
  1577. ":mechanical_leg:": "\U0001f9bf",
  1578. ":medal_military:": "\U0001f396\ufe0f",
  1579. ":medal_sports:": "\U0001f3c5",
  1580. ":medical_symbol:": "\u2695\ufe0f",
  1581. ":medium_dark_skin_tone:": "\U0001f3fe",
  1582. ":medium_light_skin_tone:": "\U0001f3fc",
  1583. ":medium_skin_tone:": "\U0001f3fd",
  1584. ":mega:": "\U0001f4e3",
  1585. ":megaphone:": "\U0001f4e3",
  1586. ":melon:": "\U0001f348",
  1587. ":memo:": "\U0001f4dd",
  1588. ":men_holding_hands:": "\U0001f46c",
  1589. ":men_s_room:": "\U0001f6b9",
  1590. ":men_with_bunny_ears:": "\U0001f46f\u200d\u2642\ufe0f",
  1591. ":men_wrestling:": "\U0001f93c\u200d\u2642\ufe0f",
  1592. ":menorah:": "\U0001f54e",
  1593. ":mens:": "\U0001f6b9",
  1594. ":mermaid:": "\U0001f9dc\u200d\u2640\ufe0f",
  1595. ":merman:": "\U0001f9dc\u200d\u2642\ufe0f",
  1596. ":merperson:": "\U0001f9dc",
  1597. ":metal:": "\U0001f918",
  1598. ":metro:": "\U0001f687",
  1599. ":mexico:": "\U0001f1f2\U0001f1fd",
  1600. ":microbe:": "\U0001f9a0",
  1601. ":micronesia:": "\U0001f1eb\U0001f1f2",
  1602. ":microphone:": "\U0001f3a4",
  1603. ":microscope:": "\U0001f52c",
  1604. ":middle_finger:": "\U0001f595",
  1605. ":military_helmet:": "\U0001fa96",
  1606. ":military_medal:": "\U0001f396\ufe0f",
  1607. ":milk_glass:": "\U0001f95b",
  1608. ":milky_way:": "\U0001f30c",
  1609. ":minibus:": "\U0001f690",
  1610. ":minidisc:": "\U0001f4bd",
  1611. ":minus:": "\u2796",
  1612. ":mirror:": "\U0001fa9e",
  1613. ":moai:": "\U0001f5ff",
  1614. ":mobile_phone:": "\U0001f4f1",
  1615. ":mobile_phone_off:": "\U0001f4f4",
  1616. ":mobile_phone_with_arrow:": "\U0001f4f2",
  1617. ":moldova:": "\U0001f1f2\U0001f1e9",
  1618. ":monaco:": "\U0001f1f2\U0001f1e8",
  1619. ":money_bag:": "\U0001f4b0",
  1620. ":money_mouth_face:": "\U0001f911",
  1621. ":money_with_wings:": "\U0001f4b8",
  1622. ":moneybag:": "\U0001f4b0",
  1623. ":mongolia:": "\U0001f1f2\U0001f1f3",
  1624. ":monkey:": "\U0001f412",
  1625. ":monkey_face:": "\U0001f435",
  1626. ":monocle_face:": "\U0001f9d0",
  1627. ":monorail:": "\U0001f69d",
  1628. ":montenegro:": "\U0001f1f2\U0001f1ea",
  1629. ":montserrat:": "\U0001f1f2\U0001f1f8",
  1630. ":moon:": "\U0001f314",
  1631. ":moon_cake:": "\U0001f96e",
  1632. ":moon_viewing_ceremony:": "\U0001f391",
  1633. ":morocco:": "\U0001f1f2\U0001f1e6",
  1634. ":mortar_board:": "\U0001f393",
  1635. ":mosque:": "\U0001f54c",
  1636. ":mosquito:": "\U0001f99f",
  1637. ":motor_boat:": "\U0001f6e5\ufe0f",
  1638. ":motor_scooter:": "\U0001f6f5",
  1639. ":motorcycle:": "\U0001f3cd\ufe0f",
  1640. ":motorized_wheelchair:": "\U0001f9bc",
  1641. ":motorway:": "\U0001f6e3\ufe0f",
  1642. ":mount_fuji:": "\U0001f5fb",
  1643. ":mountain:": "\u26f0\ufe0f",
  1644. ":mountain_bicyclist:": "\U0001f6b5",
  1645. ":mountain_biking_man:": "\U0001f6b5\u200d\u2642\ufe0f",
  1646. ":mountain_biking_woman:": "\U0001f6b5\u200d\u2640\ufe0f",
  1647. ":mountain_cableway:": "\U0001f6a0",
  1648. ":mountain_railway:": "\U0001f69e",
  1649. ":mountain_snow:": "\U0001f3d4\ufe0f",
  1650. ":mouse2:": "\U0001f401",
  1651. ":mouse:": "\U0001f42d",
  1652. ":mouse_face:": "\U0001f42d",
  1653. ":mouse_trap:": "\U0001faa4",
  1654. ":mouth:": "\U0001f444",
  1655. ":movie_camera:": "\U0001f3a5",
  1656. ":moyai:": "\U0001f5ff",
  1657. ":mozambique:": "\U0001f1f2\U0001f1ff",
  1658. ":mrs_claus:": "\U0001f936",
  1659. ":multiply:": "\u2716\ufe0f",
  1660. ":muscle:": "\U0001f4aa",
  1661. ":mushroom:": "\U0001f344",
  1662. ":musical_keyboard:": "\U0001f3b9",
  1663. ":musical_note:": "\U0001f3b5",
  1664. ":musical_notes:": "\U0001f3b6",
  1665. ":musical_score:": "\U0001f3bc",
  1666. ":mute:": "\U0001f507",
  1667. ":muted_speaker:": "\U0001f507",
  1668. ":mx_claus:": "\U0001f9d1\u200d\U0001f384",
  1669. ":myanmar:": "\U0001f1f2\U0001f1f2",
  1670. ":nail_care:": "\U0001f485",
  1671. ":nail_polish:": "\U0001f485",
  1672. ":name_badge:": "\U0001f4db",
  1673. ":namibia:": "\U0001f1f3\U0001f1e6",
  1674. ":national_park:": "\U0001f3de\ufe0f",
  1675. ":nauru:": "\U0001f1f3\U0001f1f7",
  1676. ":nauseated_face:": "\U0001f922",
  1677. ":nazar_amulet:": "\U0001f9ff",
  1678. ":necktie:": "\U0001f454",
  1679. ":negative_squared_cross_mark:": "\u274e",
  1680. ":nepal:": "\U0001f1f3\U0001f1f5",
  1681. ":nerd_face:": "\U0001f913",
  1682. ":nesting_dolls:": "\U0001fa86",
  1683. ":netherlands:": "\U0001f1f3\U0001f1f1",
  1684. ":neutral_face:": "\U0001f610",
  1685. ":new:": "\U0001f195",
  1686. ":new_button:": "\U0001f195",
  1687. ":new_caledonia:": "\U0001f1f3\U0001f1e8",
  1688. ":new_moon:": "\U0001f311",
  1689. ":new_moon_face:": "\U0001f31a",
  1690. ":new_moon_with_face:": "\U0001f31a",
  1691. ":new_zealand:": "\U0001f1f3\U0001f1ff",
  1692. ":newspaper:": "\U0001f4f0",
  1693. ":newspaper_roll:": "\U0001f5de\ufe0f",
  1694. ":next_track_button:": "\u23ed\ufe0f",
  1695. ":ng:": "\U0001f196",
  1696. ":ng_button:": "\U0001f196",
  1697. ":ng_man:": "\U0001f645\u200d\u2642\ufe0f",
  1698. ":ng_woman:": "\U0001f645\u200d\u2640\ufe0f",
  1699. ":nicaragua:": "\U0001f1f3\U0001f1ee",
  1700. ":niger:": "\U0001f1f3\U0001f1ea",
  1701. ":nigeria:": "\U0001f1f3\U0001f1ec",
  1702. ":night_with_stars:": "\U0001f303",
  1703. ":nine:": "9\ufe0f\u20e3",
  1704. ":nine_o_clock:": "\U0001f558",
  1705. ":nine_thirty:": "\U0001f564",
  1706. ":ninja:": "\U0001f977",
  1707. ":niue:": "\U0001f1f3\U0001f1fa",
  1708. ":no_bell:": "\U0001f515",
  1709. ":no_bicycles:": "\U0001f6b3",
  1710. ":no_entry:": "\u26d4",
  1711. ":no_entry_sign:": "\U0001f6ab",
  1712. ":no_good:": "\U0001f645",
  1713. ":no_good_man:": "\U0001f645\u200d\u2642\ufe0f",
  1714. ":no_good_woman:": "\U0001f645\u200d\u2640\ufe0f",
  1715. ":no_littering:": "\U0001f6af",
  1716. ":no_mobile_phones:": "\U0001f4f5",
  1717. ":no_mouth:": "\U0001f636",
  1718. ":no_one_under_eighteen:": "\U0001f51e",
  1719. ":no_pedestrians:": "\U0001f6b7",
  1720. ":no_smoking:": "\U0001f6ad",
  1721. ":non-potable_water:": "\U0001f6b1",
  1722. ":non_potable_water:": "\U0001f6b1",
  1723. ":norfolk_island:": "\U0001f1f3\U0001f1eb",
  1724. ":north_korea:": "\U0001f1f0\U0001f1f5",
  1725. ":northern_mariana_islands:": "\U0001f1f2\U0001f1f5",
  1726. ":norway:": "\U0001f1f3\U0001f1f4",
  1727. ":nose:": "\U0001f443",
  1728. ":notebook:": "\U0001f4d3",
  1729. ":notebook_with_decorative_cover:": "\U0001f4d4",
  1730. ":notes:": "\U0001f3b6",
  1731. ":nut_and_bolt:": "\U0001f529",
  1732. ":o2:": "\U0001f17e\ufe0f",
  1733. ":o:": "\u2b55",
  1734. ":o_button_blood_type:": "\U0001f17e\ufe0f",
  1735. ":ocean:": "\U0001f30a",
  1736. ":octopus:": "\U0001f419",
  1737. ":oden:": "\U0001f362",
  1738. ":office:": "\U0001f3e2",
  1739. ":office_building:": "\U0001f3e2",
  1740. ":office_worker:": "\U0001f9d1\u200d\U0001f4bc",
  1741. ":ogre:": "\U0001f479",
  1742. ":oil_drum:": "\U0001f6e2\ufe0f",
  1743. ":ok:": "\U0001f197",
  1744. ":ok_button:": "\U0001f197",
  1745. ":ok_hand:": "\U0001f44c",
  1746. ":ok_man:": "\U0001f646\u200d\u2642\ufe0f",
  1747. ":ok_person:": "\U0001f646",
  1748. ":ok_woman:": "\U0001f646\u200d\u2640\ufe0f",
  1749. ":old_key:": "\U0001f5dd\ufe0f",
  1750. ":old_man:": "\U0001f474",
  1751. ":old_woman:": "\U0001f475",
  1752. ":older_adult:": "\U0001f9d3",
  1753. ":older_man:": "\U0001f474",
  1754. ":older_person:": "\U0001f9d3",
  1755. ":older_woman:": "\U0001f475",
  1756. ":olive:": "\U0001fad2",
  1757. ":om:": "\U0001f549\ufe0f",
  1758. ":oman:": "\U0001f1f4\U0001f1f2",
  1759. ":on:": "\U0001f51b",
  1760. ":on_arrow:": "\U0001f51b",
  1761. ":oncoming_automobile:": "\U0001f698",
  1762. ":oncoming_bus:": "\U0001f68d",
  1763. ":oncoming_fist:": "\U0001f44a",
  1764. ":oncoming_police_car:": "\U0001f694",
  1765. ":oncoming_taxi:": "\U0001f696",
  1766. ":one:": "1\ufe0f\u20e3",
  1767. ":one_o_clock:": "\U0001f550",
  1768. ":one_piece_swimsuit:": "\U0001fa71",
  1769. ":one_thirty:": "\U0001f55c",
  1770. ":onion:": "\U0001f9c5",
  1771. ":open_book:": "\U0001f4d6",
  1772. ":open_file_folder:": "\U0001f4c2",
  1773. ":open_hands:": "\U0001f450",
  1774. ":open_mailbox_with_lowered_flag:": "\U0001f4ed",
  1775. ":open_mailbox_with_raised_flag:": "\U0001f4ec",
  1776. ":open_mouth:": "\U0001f62e",
  1777. ":open_umbrella:": "\u2602\ufe0f",
  1778. ":ophiuchus:": "\u26ce",
  1779. ":optical_disk:": "\U0001f4bf",
  1780. ":orange:": "\U0001f34a",
  1781. ":orange_book:": "\U0001f4d9",
  1782. ":orange_circle:": "\U0001f7e0",
  1783. ":orange_heart:": "\U0001f9e1",
  1784. ":orange_square:": "\U0001f7e7",
  1785. ":orangutan:": "\U0001f9a7",
  1786. ":orthodox_cross:": "\u2626\ufe0f",
  1787. ":otter:": "\U0001f9a6",
  1788. ":outbox_tray:": "\U0001f4e4",
  1789. ":owl:": "\U0001f989",
  1790. ":ox:": "\U0001f402",
  1791. ":oyster:": "\U0001f9aa",
  1792. ":p_button:": "\U0001f17f\ufe0f",
  1793. ":package:": "\U0001f4e6",
  1794. ":page_facing_up:": "\U0001f4c4",
  1795. ":page_with_curl:": "\U0001f4c3",
  1796. ":pager:": "\U0001f4df",
  1797. ":paintbrush:": "\U0001f58c\ufe0f",
  1798. ":pakistan:": "\U0001f1f5\U0001f1f0",
  1799. ":palau:": "\U0001f1f5\U0001f1fc",
  1800. ":palestinian_territories:": "\U0001f1f5\U0001f1f8",
  1801. ":palm_tree:": "\U0001f334",
  1802. ":palms_up_together:": "\U0001f932",
  1803. ":panama:": "\U0001f1f5\U0001f1e6",
  1804. ":pancakes:": "\U0001f95e",
  1805. ":panda:": "\U0001f43c",
  1806. ":panda_face:": "\U0001f43c",
  1807. ":paperclip:": "\U0001f4ce",
  1808. ":paperclips:": "\U0001f587\ufe0f",
  1809. ":papua_new_guinea:": "\U0001f1f5\U0001f1ec",
  1810. ":parachute:": "\U0001fa82",
  1811. ":paraguay:": "\U0001f1f5\U0001f1fe",
  1812. ":parasol_on_ground:": "\u26f1\ufe0f",
  1813. ":parking:": "\U0001f17f\ufe0f",
  1814. ":parrot:": "\U0001f99c",
  1815. ":part_alternation_mark:": "\u303d\ufe0f",
  1816. ":partly_sunny:": "\u26c5",
  1817. ":party_popper:": "\U0001f389",
  1818. ":partying_face:": "\U0001f973",
  1819. ":passenger_ship:": "\U0001f6f3\ufe0f",
  1820. ":passport_control:": "\U0001f6c2",
  1821. ":pause_button:": "\u23f8\ufe0f",
  1822. ":paw_prints:": "\U0001f43e",
  1823. ":peace_symbol:": "\u262e\ufe0f",
  1824. ":peach:": "\U0001f351",
  1825. ":peacock:": "\U0001f99a",
  1826. ":peanuts:": "\U0001f95c",
  1827. ":pear:": "\U0001f350",
  1828. ":pen:": "\U0001f58a\ufe0f",
  1829. ":pencil2:": "\u270f\ufe0f",
  1830. ":pencil:": "\U0001f4dd",
  1831. ":penguin:": "\U0001f427",
  1832. ":pensive:": "\U0001f614",
  1833. ":pensive_face:": "\U0001f614",
  1834. ":people_holding_hands:": "\U0001f9d1\u200d\U0001f91d\u200d\U0001f9d1",
  1835. ":people_hugging:": "\U0001fac2",
  1836. ":people_with_bunny_ears:": "\U0001f46f",
  1837. ":people_wrestling:": "\U0001f93c",
  1838. ":performing_arts:": "\U0001f3ad",
  1839. ":persevere:": "\U0001f623",
  1840. ":persevering_face:": "\U0001f623",
  1841. ":person:": "\U0001f9d1",
  1842. ":person_bald:": "\U0001f9d1\u200d\U0001f9b2",
  1843. ":person_biking:": "\U0001f6b4",
  1844. ":person_bouncing_ball:": "\u26f9\ufe0f",
  1845. ":person_bowing:": "\U0001f647",
  1846. ":person_cartwheeling:": "\U0001f938",
  1847. ":person_climbing:": "\U0001f9d7",
  1848. ":person_curly_hair:": "\U0001f9d1\u200d\U0001f9b1",
  1849. ":person_facepalming:": "\U0001f926",
  1850. ":person_feeding_baby:": "\U0001f9d1\u200d\U0001f37c",
  1851. ":person_fencing:": "\U0001f93a",
  1852. ":person_frowning:": "\U0001f64d",
  1853. ":person_gesturing_no:": "\U0001f645",
  1854. ":person_gesturing_ok:": "\U0001f646",
  1855. ":person_getting_haircut:": "\U0001f487",
  1856. ":person_getting_massage:": "\U0001f486",
  1857. ":person_golfing:": "\U0001f3cc\ufe0f",
  1858. ":person_in_bed:": "\U0001f6cc",
  1859. ":person_in_lotus_position:": "\U0001f9d8",
  1860. ":person_in_manual_wheelchair:": "\U0001f9d1\u200d\U0001f9bd",
  1861. ":person_in_motorized_wheelchair:": "\U0001f9d1\u200d\U0001f9bc",
  1862. ":person_in_steamy_room:": "\U0001f9d6",
  1863. ":person_in_suit_levitating:": "\U0001f574\ufe0f",
  1864. ":person_in_tuxedo:": "\U0001f935",
  1865. ":person_juggling:": "\U0001f939",
  1866. ":person_kneeling:": "\U0001f9ce",
  1867. ":person_lifting_weights:": "\U0001f3cb\ufe0f",
  1868. ":person_mountain_biking:": "\U0001f6b5",
  1869. ":person_playing_handball:": "\U0001f93e",
  1870. ":person_playing_water_polo:": "\U0001f93d",
  1871. ":person_pouting:": "\U0001f64e",
  1872. ":person_raising_hand:": "\U0001f64b",
  1873. ":person_red_hair:": "\U0001f9d1\u200d\U0001f9b0",
  1874. ":person_rowing_boat:": "\U0001f6a3",
  1875. ":person_running:": "\U0001f3c3",
  1876. ":person_shrugging:": "\U0001f937",
  1877. ":person_standing:": "\U0001f9cd",
  1878. ":person_surfing:": "\U0001f3c4",
  1879. ":person_swimming:": "\U0001f3ca",
  1880. ":person_taking_bath:": "\U0001f6c0",
  1881. ":person_tipping_hand:": "\U0001f481",
  1882. ":person_walking:": "\U0001f6b6",
  1883. ":person_wearing_turban:": "\U0001f473",
  1884. ":person_white_hair:": "\U0001f9d1\u200d\U0001f9b3",
  1885. ":person_with_blond_hair:": "\U0001f471",
  1886. ":person_with_curly_hair:": "\U0001f9d1\u200d\U0001f9b1",
  1887. ":person_with_probing_cane:": "\U0001f9d1\u200d\U0001f9af",
  1888. ":person_with_red_hair:": "\U0001f9d1\u200d\U0001f9b0",
  1889. ":person_with_skullcap:": "\U0001f472",
  1890. ":person_with_turban:": "\U0001f473",
  1891. ":person_with_veil:": "\U0001f470",
  1892. ":person_with_white_cane:": "\U0001f9d1\u200d\U0001f9af",
  1893. ":person_with_white_hair:": "\U0001f9d1\u200d\U0001f9b3",
  1894. ":peru:": "\U0001f1f5\U0001f1ea",
  1895. ":petri_dish:": "\U0001f9eb",
  1896. ":philippines:": "\U0001f1f5\U0001f1ed",
  1897. ":phone:": "\u260e\ufe0f",
  1898. ":pi_ata:": "\U0001fa85",
  1899. ":pick:": "\u26cf\ufe0f",
  1900. ":pickup_truck:": "\U0001f6fb",
  1901. ":pie:": "\U0001f967",
  1902. ":pig2:": "\U0001f416",
  1903. ":pig:": "\U0001f437",
  1904. ":pig_face:": "\U0001f437",
  1905. ":pig_nose:": "\U0001f43d",
  1906. ":pile_of_poo:": "\U0001f4a9",
  1907. ":pill:": "\U0001f48a",
  1908. ":pilot:": "\U0001f9d1\u200d\u2708\ufe0f",
  1909. ":pinata:": "\U0001fa85",
  1910. ":pinched_fingers:": "\U0001f90c",
  1911. ":pinching_hand:": "\U0001f90f",
  1912. ":pine_decoration:": "\U0001f38d",
  1913. ":pineapple:": "\U0001f34d",
  1914. ":ping_pong:": "\U0001f3d3",
  1915. ":pirate_flag:": "\U0001f3f4\u200d\u2620\ufe0f",
  1916. ":pisces:": "\u2653",
  1917. ":pistol:": "\U0001f52b",
  1918. ":pitcairn_islands:": "\U0001f1f5\U0001f1f3",
  1919. ":pizza:": "\U0001f355",
  1920. ":placard:": "\U0001faa7",
  1921. ":place_of_worship:": "\U0001f6d0",
  1922. ":plate_with_cutlery:": "\U0001f37d\ufe0f",
  1923. ":play_button:": "\u25b6\ufe0f",
  1924. ":play_or_pause_button:": "\u23ef\ufe0f",
  1925. ":pleading_face:": "\U0001f97a",
  1926. ":plunger:": "\U0001faa0",
  1927. ":plus:": "\u2795",
  1928. ":point_down:": "\U0001f447",
  1929. ":point_left:": "\U0001f448",
  1930. ":point_right:": "\U0001f449",
  1931. ":point_up:": "\u261d\ufe0f",
  1932. ":point_up_2:": "\U0001f446",
  1933. ":poland:": "\U0001f1f5\U0001f1f1",
  1934. ":polar_bear:": "\U0001f43b\u200d\u2744\ufe0f",
  1935. ":police_car:": "\U0001f693",
  1936. ":police_car_light:": "\U0001f6a8",
  1937. ":police_officer:": "\U0001f46e",
  1938. ":policeman:": "\U0001f46e\u200d\u2642\ufe0f",
  1939. ":policewoman:": "\U0001f46e\u200d\u2640\ufe0f",
  1940. ":poodle:": "\U0001f429",
  1941. ":pool_8_ball:": "\U0001f3b1",
  1942. ":poop:": "\U0001f4a9",
  1943. ":popcorn:": "\U0001f37f",
  1944. ":portugal:": "\U0001f1f5\U0001f1f9",
  1945. ":post_office:": "\U0001f3e3",
  1946. ":postal_horn:": "\U0001f4ef",
  1947. ":postbox:": "\U0001f4ee",
  1948. ":pot_of_food:": "\U0001f372",
  1949. ":potable_water:": "\U0001f6b0",
  1950. ":potato:": "\U0001f954",
  1951. ":potted_plant:": "\U0001fab4",
  1952. ":pouch:": "\U0001f45d",
  1953. ":poultry_leg:": "\U0001f357",
  1954. ":pound:": "\U0001f4b7",
  1955. ":pound_banknote:": "\U0001f4b7",
  1956. ":pout:": "\U0001f621",
  1957. ":pouting_cat:": "\U0001f63e",
  1958. ":pouting_face:": "\U0001f64e",
  1959. ":pouting_man:": "\U0001f64e\u200d\u2642\ufe0f",
  1960. ":pouting_woman:": "\U0001f64e\u200d\u2640\ufe0f",
  1961. ":pray:": "\U0001f64f",
  1962. ":prayer_beads:": "\U0001f4ff",
  1963. ":pregnant_woman:": "\U0001f930",
  1964. ":pretzel:": "\U0001f968",
  1965. ":previous_track_button:": "\u23ee\ufe0f",
  1966. ":prince:": "\U0001f934",
  1967. ":princess:": "\U0001f478",
  1968. ":printer:": "\U0001f5a8\ufe0f",
  1969. ":probing_cane:": "\U0001f9af",
  1970. ":prohibited:": "\U0001f6ab",
  1971. ":puerto_rico:": "\U0001f1f5\U0001f1f7",
  1972. ":punch:": "\U0001f44a",
  1973. ":purple_circle:": "\U0001f7e3",
  1974. ":purple_heart:": "\U0001f49c",
  1975. ":purple_square:": "\U0001f7ea",
  1976. ":purse:": "\U0001f45b",
  1977. ":pushpin:": "\U0001f4cc",
  1978. ":put_litter_in_its_place:": "\U0001f6ae",
  1979. ":puzzle_piece:": "\U0001f9e9",
  1980. ":qatar:": "\U0001f1f6\U0001f1e6",
  1981. ":question:": "\u2753",
  1982. ":question_mark:": "\u2753",
  1983. ":rabbit2:": "\U0001f407",
  1984. ":rabbit:": "\U0001f430",
  1985. ":rabbit_face:": "\U0001f430",
  1986. ":raccoon:": "\U0001f99d",
  1987. ":racehorse:": "\U0001f40e",
  1988. ":racing_car:": "\U0001f3ce\ufe0f",
  1989. ":radio:": "\U0001f4fb",
  1990. ":radio_button:": "\U0001f518",
  1991. ":radioactive:": "\u2622\ufe0f",
  1992. ":rage:": "\U0001f621",
  1993. ":railway_car:": "\U0001f683",
  1994. ":railway_track:": "\U0001f6e4\ufe0f",
  1995. ":rainbow:": "\U0001f308",
  1996. ":rainbow_flag:": "\U0001f3f3\ufe0f\u200d\U0001f308",
  1997. ":raised_back_of_hand:": "\U0001f91a",
  1998. ":raised_eyebrow:": "\U0001f928",
  1999. ":raised_fist:": "\u270a",
  2000. ":raised_hand:": "\u270b",
  2001. ":raised_hand_with_fingers_splayed:": "\U0001f590\ufe0f",
  2002. ":raised_hands:": "\U0001f64c",
  2003. ":raising_hand:": "\U0001f64b",
  2004. ":raising_hand_man:": "\U0001f64b\u200d\u2642\ufe0f",
  2005. ":raising_hand_woman:": "\U0001f64b\u200d\u2640\ufe0f",
  2006. ":raising_hands:": "\U0001f64c",
  2007. ":ram:": "\U0001f40f",
  2008. ":ramen:": "\U0001f35c",
  2009. ":rat:": "\U0001f400",
  2010. ":razor:": "\U0001fa92",
  2011. ":receipt:": "\U0001f9fe",
  2012. ":record_button:": "\u23fa\ufe0f",
  2013. ":recycle:": "\u267b\ufe0f",
  2014. ":recycling_symbol:": "\u267b\ufe0f",
  2015. ":red_apple:": "\U0001f34e",
  2016. ":red_car:": "\U0001f697",
  2017. ":red_circle:": "\U0001f534",
  2018. ":red_envelope:": "\U0001f9e7",
  2019. ":red_hair:": "\U0001f9b0",
  2020. ":red_haired_man:": "\U0001f468\u200d\U0001f9b0",
  2021. ":red_haired_woman:": "\U0001f469\u200d\U0001f9b0",
  2022. ":red_heart:": "\u2764\ufe0f",
  2023. ":red_paper_lantern:": "\U0001f3ee",
  2024. ":red_square:": "\U0001f7e5",
  2025. ":red_triangle_pointed_down:": "\U0001f53b",
  2026. ":red_triangle_pointed_up:": "\U0001f53a",
  2027. ":registered:": "\u00ae\ufe0f",
  2028. ":relaxed:": "\u263a\ufe0f",
  2029. ":relieved:": "\U0001f60c",
  2030. ":relieved_face:": "\U0001f60c",
  2031. ":reminder_ribbon:": "\U0001f397\ufe0f",
  2032. ":repeat:": "\U0001f501",
  2033. ":repeat_button:": "\U0001f501",
  2034. ":repeat_one:": "\U0001f502",
  2035. ":repeat_single_button:": "\U0001f502",
  2036. ":rescue_worker_helmet:": "\u26d1\ufe0f",
  2037. ":rescue_worker_s_helmet:": "\u26d1\ufe0f",
  2038. ":restroom:": "\U0001f6bb",
  2039. ":reunion:": "\U0001f1f7\U0001f1ea",
  2040. ":reverse_button:": "\u25c0\ufe0f",
  2041. ":revolving_hearts:": "\U0001f49e",
  2042. ":rewind:": "\u23ea",
  2043. ":rhinoceros:": "\U0001f98f",
  2044. ":ribbon:": "\U0001f380",
  2045. ":rice:": "\U0001f35a",
  2046. ":rice_ball:": "\U0001f359",
  2047. ":rice_cracker:": "\U0001f358",
  2048. ":rice_scene:": "\U0001f391",
  2049. ":right_anger_bubble:": "\U0001f5ef\ufe0f",
  2050. ":right_arrow:": "\u27a1\ufe0f",
  2051. ":right_arrow_curving_down:": "\u2935\ufe0f",
  2052. ":right_arrow_curving_left:": "\u21a9\ufe0f",
  2053. ":right_arrow_curving_up:": "\u2934\ufe0f",
  2054. ":right_facing_fist:": "\U0001f91c",
  2055. ":ring:": "\U0001f48d",
  2056. ":ringed_planet:": "\U0001fa90",
  2057. ":roasted_sweet_potato:": "\U0001f360",
  2058. ":robot:": "\U0001f916",
  2059. ":robot_face:": "\U0001f916",
  2060. ":rock:": "\U0001faa8",
  2061. ":rocket:": "\U0001f680",
  2062. ":rofl:": "\U0001f923",
  2063. ":roll_eyes:": "\U0001f644",
  2064. ":roll_of_paper:": "\U0001f9fb",
  2065. ":rolled_up_newspaper:": "\U0001f5de\ufe0f",
  2066. ":roller_coaster:": "\U0001f3a2",
  2067. ":roller_skate:": "\U0001f6fc",
  2068. ":rolling_on_the_floor_laughing:": "\U0001f923",
  2069. ":romania:": "\U0001f1f7\U0001f1f4",
  2070. ":rooster:": "\U0001f413",
  2071. ":rose:": "\U0001f339",
  2072. ":rosette:": "\U0001f3f5\ufe0f",
  2073. ":rotating_light:": "\U0001f6a8",
  2074. ":round_pushpin:": "\U0001f4cd",
  2075. ":rowboat:": "\U0001f6a3",
  2076. ":rowing_man:": "\U0001f6a3\u200d\u2642\ufe0f",
  2077. ":rowing_woman:": "\U0001f6a3\u200d\u2640\ufe0f",
  2078. ":ru:": "\U0001f1f7\U0001f1fa",
  2079. ":rugby_football:": "\U0001f3c9",
  2080. ":runner:": "\U0001f3c3",
  2081. ":running:": "\U0001f3c3",
  2082. ":running_man:": "\U0001f3c3\u200d\u2642\ufe0f",
  2083. ":running_shirt:": "\U0001f3bd",
  2084. ":running_shirt_with_sash:": "\U0001f3bd",
  2085. ":running_shoe:": "\U0001f45f",
  2086. ":running_woman:": "\U0001f3c3\u200d\u2640\ufe0f",
  2087. ":rwanda:": "\U0001f1f7\U0001f1fc",
  2088. ":sa:": "\U0001f202\ufe0f",
  2089. ":sad_but_relieved_face:": "\U0001f625",
  2090. ":safety_pin:": "\U0001f9f7",
  2091. ":safety_vest:": "\U0001f9ba",
  2092. ":sagittarius:": "\u2650",
  2093. ":sailboat:": "\u26f5",
  2094. ":sake:": "\U0001f376",
  2095. ":salt:": "\U0001f9c2",
  2096. ":samoa:": "\U0001f1fc\U0001f1f8",
  2097. ":san_marino:": "\U0001f1f8\U0001f1f2",
  2098. ":sandal:": "\U0001f461",
  2099. ":sandwich:": "\U0001f96a",
  2100. ":santa:": "\U0001f385",
  2101. ":santa_claus:": "\U0001f385",
  2102. ":sao_tome_principe:": "\U0001f1f8\U0001f1f9",
  2103. ":sari:": "\U0001f97b",
  2104. ":sassy_man:": "\U0001f481\u200d\u2642\ufe0f",
  2105. ":sassy_woman:": "\U0001f481\u200d\u2640\ufe0f",
  2106. ":satellite:": "\U0001f4e1",
  2107. ":satellite_antenna:": "\U0001f4e1",
  2108. ":satisfied:": "\U0001f606",
  2109. ":saudi_arabia:": "\U0001f1f8\U0001f1e6",
  2110. ":sauna_man:": "\U0001f9d6\u200d\u2642\ufe0f",
  2111. ":sauna_person:": "\U0001f9d6",
  2112. ":sauna_woman:": "\U0001f9d6\u200d\u2640\ufe0f",
  2113. ":sauropod:": "\U0001f995",
  2114. ":saxophone:": "\U0001f3b7",
  2115. ":scarf:": "\U0001f9e3",
  2116. ":school:": "\U0001f3eb",
  2117. ":school_satchel:": "\U0001f392",
  2118. ":scientist:": "\U0001f9d1\u200d\U0001f52c",
  2119. ":scissors:": "\u2702\ufe0f",
  2120. ":scorpio:": "\u264f",
  2121. ":scorpion:": "\U0001f982",
  2122. ":scorpius:": "\u264f",
  2123. ":scotland:": "\U0001f3f4\U000e0067\U000e0062\U000e0073\U000e0063\U000e0074\U000e007f",
  2124. ":scream:": "\U0001f631",
  2125. ":scream_cat:": "\U0001f640",
  2126. ":screwdriver:": "\U0001fa9b",
  2127. ":scroll:": "\U0001f4dc",
  2128. ":seal:": "\U0001f9ad",
  2129. ":seat:": "\U0001f4ba",
  2130. ":second_place_medal:": "\U0001f948",
  2131. ":secret:": "\u3299\ufe0f",
  2132. ":see_no_evil:": "\U0001f648",
  2133. ":see_no_evil_monkey:": "\U0001f648",
  2134. ":seedling:": "\U0001f331",
  2135. ":selfie:": "\U0001f933",
  2136. ":senegal:": "\U0001f1f8\U0001f1f3",
  2137. ":serbia:": "\U0001f1f7\U0001f1f8",
  2138. ":service_dog:": "\U0001f415\u200d\U0001f9ba",
  2139. ":seven:": "7\ufe0f\u20e3",
  2140. ":seven_o_clock:": "\U0001f556",
  2141. ":seven_thirty:": "\U0001f562",
  2142. ":sewing_needle:": "\U0001faa1",
  2143. ":seychelles:": "\U0001f1f8\U0001f1e8",
  2144. ":shallow_pan_of_food:": "\U0001f958",
  2145. ":shamrock:": "\u2618\ufe0f",
  2146. ":shark:": "\U0001f988",
  2147. ":shaved_ice:": "\U0001f367",
  2148. ":sheaf_of_rice:": "\U0001f33e",
  2149. ":sheep:": "\U0001f411",
  2150. ":shell:": "\U0001f41a",
  2151. ":shield:": "\U0001f6e1\ufe0f",
  2152. ":shinto_shrine:": "\u26e9\ufe0f",
  2153. ":ship:": "\U0001f6a2",
  2154. ":shirt:": "\U0001f455",
  2155. ":shit:": "\U0001f4a9",
  2156. ":shoe:": "\U0001f45e",
  2157. ":shooting_star:": "\U0001f320",
  2158. ":shopping:": "\U0001f6cd\ufe0f",
  2159. ":shopping_bags:": "\U0001f6cd\ufe0f",
  2160. ":shopping_cart:": "\U0001f6d2",
  2161. ":shortcake:": "\U0001f370",
  2162. ":shorts:": "\U0001fa73",
  2163. ":shower:": "\U0001f6bf",
  2164. ":shrimp:": "\U0001f990",
  2165. ":shrug:": "\U0001f937",
  2166. ":shuffle_tracks_button:": "\U0001f500",
  2167. ":shushing_face:": "\U0001f92b",
  2168. ":sierra_leone:": "\U0001f1f8\U0001f1f1",
  2169. ":sign_of_the_horns:": "\U0001f918",
  2170. ":signal_strength:": "\U0001f4f6",
  2171. ":singapore:": "\U0001f1f8\U0001f1ec",
  2172. ":singer:": "\U0001f9d1\u200d\U0001f3a4",
  2173. ":sint_maarten:": "\U0001f1f8\U0001f1fd",
  2174. ":six:": "6\ufe0f\u20e3",
  2175. ":six_o_clock:": "\U0001f555",
  2176. ":six_pointed_star:": "\U0001f52f",
  2177. ":six_thirty:": "\U0001f561",
  2178. ":skateboard:": "\U0001f6f9",
  2179. ":ski:": "\U0001f3bf",
  2180. ":skier:": "\u26f7\ufe0f",
  2181. ":skis:": "\U0001f3bf",
  2182. ":skull:": "\U0001f480",
  2183. ":skull_and_crossbones:": "\u2620\ufe0f",
  2184. ":skunk:": "\U0001f9a8",
  2185. ":sled:": "\U0001f6f7",
  2186. ":sleeping:": "\U0001f634",
  2187. ":sleeping_bed:": "\U0001f6cc",
  2188. ":sleeping_face:": "\U0001f634",
  2189. ":sleepy:": "\U0001f62a",
  2190. ":sleepy_face:": "\U0001f62a",
  2191. ":slightly_frowning_face:": "\U0001f641",
  2192. ":slightly_smiling_face:": "\U0001f642",
  2193. ":slot_machine:": "\U0001f3b0",
  2194. ":sloth:": "\U0001f9a5",
  2195. ":slovakia:": "\U0001f1f8\U0001f1f0",
  2196. ":slovenia:": "\U0001f1f8\U0001f1ee",
  2197. ":small_airplane:": "\U0001f6e9\ufe0f",
  2198. ":small_blue_diamond:": "\U0001f539",
  2199. ":small_orange_diamond:": "\U0001f538",
  2200. ":small_red_triangle:": "\U0001f53a",
  2201. ":small_red_triangle_down:": "\U0001f53b",
  2202. ":smile:": "\U0001f604",
  2203. ":smile_cat:": "\U0001f638",
  2204. ":smiley:": "\U0001f603",
  2205. ":smiley_cat:": "\U0001f63a",
  2206. ":smiling_cat_with_heart_eyes:": "\U0001f63b",
  2207. ":smiling_face:": "\u263a\ufe0f",
  2208. ":smiling_face_with_halo:": "\U0001f607",
  2209. ":smiling_face_with_heart_eyes:": "\U0001f60d",
  2210. ":smiling_face_with_hearts:": "\U0001f970",
  2211. ":smiling_face_with_horns:": "\U0001f608",
  2212. ":smiling_face_with_smiling_eyes:": "\U0001f60a",
  2213. ":smiling_face_with_sunglasses:": "\U0001f60e",
  2214. ":smiling_face_with_tear:": "\U0001f972",
  2215. ":smiling_face_with_three_hearts:": "\U0001f970",
  2216. ":smiling_imp:": "\U0001f608",
  2217. ":smirk:": "\U0001f60f",
  2218. ":smirk_cat:": "\U0001f63c",
  2219. ":smirking_face:": "\U0001f60f",
  2220. ":smoking:": "\U0001f6ac",
  2221. ":snail:": "\U0001f40c",
  2222. ":snake:": "\U0001f40d",
  2223. ":sneezing_face:": "\U0001f927",
  2224. ":snow_capped_mountain:": "\U0001f3d4\ufe0f",
  2225. ":snowboarder:": "\U0001f3c2",
  2226. ":snowflake:": "\u2744\ufe0f",
  2227. ":snowman:": "\u26c4",
  2228. ":snowman_with_snow:": "\u2603\ufe0f",
  2229. ":snowman_without_snow:": "\u26c4",
  2230. ":soap:": "\U0001f9fc",
  2231. ":sob:": "\U0001f62d",
  2232. ":soccer:": "\u26bd",
  2233. ":soccer_ball:": "\u26bd",
  2234. ":socks:": "\U0001f9e6",
  2235. ":soft_ice_cream:": "\U0001f366",
  2236. ":softball:": "\U0001f94e",
  2237. ":solomon_islands:": "\U0001f1f8\U0001f1e7",
  2238. ":somalia:": "\U0001f1f8\U0001f1f4",
  2239. ":soon:": "\U0001f51c",
  2240. ":soon_arrow:": "\U0001f51c",
  2241. ":sos:": "\U0001f198",
  2242. ":sos_button:": "\U0001f198",
  2243. ":sound:": "\U0001f509",
  2244. ":south_africa:": "\U0001f1ff\U0001f1e6",
  2245. ":south_georgia_south_sandwich_islands:": "\U0001f1ec\U0001f1f8",
  2246. ":south_sudan:": "\U0001f1f8\U0001f1f8",
  2247. ":space_invader:": "\U0001f47e",
  2248. ":spade_suit:": "\u2660\ufe0f",
  2249. ":spades:": "\u2660\ufe0f",
  2250. ":spaghetti:": "\U0001f35d",
  2251. ":sparkle:": "\u2747\ufe0f",
  2252. ":sparkler:": "\U0001f387",
  2253. ":sparkles:": "\u2728",
  2254. ":sparkling_heart:": "\U0001f496",
  2255. ":speak_no_evil:": "\U0001f64a",
  2256. ":speak_no_evil_monkey:": "\U0001f64a",
  2257. ":speaker:": "\U0001f508",
  2258. ":speaker_high_volume:": "\U0001f50a",
  2259. ":speaker_low_volume:": "\U0001f508",
  2260. ":speaker_medium_volume:": "\U0001f509",
  2261. ":speaking_head:": "\U0001f5e3\ufe0f",
  2262. ":speech_balloon:": "\U0001f4ac",
  2263. ":speedboat:": "\U0001f6a4",
  2264. ":spider:": "\U0001f577\ufe0f",
  2265. ":spider_web:": "\U0001f578\ufe0f",
  2266. ":spiral_calendar:": "\U0001f5d3\ufe0f",
  2267. ":spiral_notepad:": "\U0001f5d2\ufe0f",
  2268. ":spiral_shell:": "\U0001f41a",
  2269. ":sponge:": "\U0001f9fd",
  2270. ":spoon:": "\U0001f944",
  2271. ":sport_utility_vehicle:": "\U0001f699",
  2272. ":sports_medal:": "\U0001f3c5",
  2273. ":spouting_whale:": "\U0001f433",
  2274. ":squid:": "\U0001f991",
  2275. ":squinting_face_with_tongue:": "\U0001f61d",
  2276. ":sri_lanka:": "\U0001f1f1\U0001f1f0",
  2277. ":st_barthelemy:": "\U0001f1e7\U0001f1f1",
  2278. ":st_helena:": "\U0001f1f8\U0001f1ed",
  2279. ":st_kitts_nevis:": "\U0001f1f0\U0001f1f3",
  2280. ":st_lucia:": "\U0001f1f1\U0001f1e8",
  2281. ":st_martin:": "\U0001f1f2\U0001f1eb",
  2282. ":st_pierre_miquelon:": "\U0001f1f5\U0001f1f2",
  2283. ":st_vincent_grenadines:": "\U0001f1fb\U0001f1e8",
  2284. ":stadium:": "\U0001f3df\ufe0f",
  2285. ":standing_man:": "\U0001f9cd\u200d\u2642\ufe0f",
  2286. ":standing_person:": "\U0001f9cd",
  2287. ":standing_woman:": "\U0001f9cd\u200d\u2640\ufe0f",
  2288. ":star2:": "\U0001f31f",
  2289. ":star:": "\u2b50",
  2290. ":star_and_crescent:": "\u262a\ufe0f",
  2291. ":star_of_david:": "\u2721\ufe0f",
  2292. ":star_struck:": "\U0001f929",
  2293. ":stars:": "\U0001f320",
  2294. ":station:": "\U0001f689",
  2295. ":statue_of_liberty:": "\U0001f5fd",
  2296. ":steam_locomotive:": "\U0001f682",
  2297. ":steaming_bowl:": "\U0001f35c",
  2298. ":stethoscope:": "\U0001fa7a",
  2299. ":stew:": "\U0001f372",
  2300. ":stop_button:": "\u23f9\ufe0f",
  2301. ":stop_sign:": "\U0001f6d1",
  2302. ":stopwatch:": "\u23f1\ufe0f",
  2303. ":straight_ruler:": "\U0001f4cf",
  2304. ":strawberry:": "\U0001f353",
  2305. ":stuck_out_tongue:": "\U0001f61b",
  2306. ":stuck_out_tongue_closed_eyes:": "\U0001f61d",
  2307. ":stuck_out_tongue_winking_eye:": "\U0001f61c",
  2308. ":student:": "\U0001f9d1\u200d\U0001f393",
  2309. ":studio_microphone:": "\U0001f399\ufe0f",
  2310. ":stuffed_flatbread:": "\U0001f959",
  2311. ":sudan:": "\U0001f1f8\U0001f1e9",
  2312. ":sun:": "\u2600\ufe0f",
  2313. ":sun_behind_cloud:": "\u26c5",
  2314. ":sun_behind_large_cloud:": "\U0001f325\ufe0f",
  2315. ":sun_behind_rain_cloud:": "\U0001f326\ufe0f",
  2316. ":sun_behind_small_cloud:": "\U0001f324\ufe0f",
  2317. ":sun_with_face:": "\U0001f31e",
  2318. ":sunflower:": "\U0001f33b",
  2319. ":sunglasses:": "\U0001f60e",
  2320. ":sunny:": "\u2600\ufe0f",
  2321. ":sunrise:": "\U0001f305",
  2322. ":sunrise_over_mountains:": "\U0001f304",
  2323. ":sunset:": "\U0001f307",
  2324. ":superhero:": "\U0001f9b8",
  2325. ":superhero_man:": "\U0001f9b8\u200d\u2642\ufe0f",
  2326. ":superhero_woman:": "\U0001f9b8\u200d\u2640\ufe0f",
  2327. ":supervillain:": "\U0001f9b9",
  2328. ":supervillain_man:": "\U0001f9b9\u200d\u2642\ufe0f",
  2329. ":supervillain_woman:": "\U0001f9b9\u200d\u2640\ufe0f",
  2330. ":surfer:": "\U0001f3c4",
  2331. ":surfing_man:": "\U0001f3c4\u200d\u2642\ufe0f",
  2332. ":surfing_woman:": "\U0001f3c4\u200d\u2640\ufe0f",
  2333. ":suriname:": "\U0001f1f8\U0001f1f7",
  2334. ":sushi:": "\U0001f363",
  2335. ":suspension_railway:": "\U0001f69f",
  2336. ":svalbard_jan_mayen:": "\U0001f1f8\U0001f1ef",
  2337. ":swan:": "\U0001f9a2",
  2338. ":swaziland:": "\U0001f1f8\U0001f1ff",
  2339. ":sweat:": "\U0001f613",
  2340. ":sweat_droplets:": "\U0001f4a6",
  2341. ":sweat_drops:": "\U0001f4a6",
  2342. ":sweat_smile:": "\U0001f605",
  2343. ":sweden:": "\U0001f1f8\U0001f1ea",
  2344. ":sweet_potato:": "\U0001f360",
  2345. ":swim_brief:": "\U0001fa72",
  2346. ":swimmer:": "\U0001f3ca",
  2347. ":swimming_man:": "\U0001f3ca\u200d\u2642\ufe0f",
  2348. ":swimming_woman:": "\U0001f3ca\u200d\u2640\ufe0f",
  2349. ":switzerland:": "\U0001f1e8\U0001f1ed",
  2350. ":symbols:": "\U0001f523",
  2351. ":synagogue:": "\U0001f54d",
  2352. ":syria:": "\U0001f1f8\U0001f1fe",
  2353. ":syringe:": "\U0001f489",
  2354. ":t-rex:": "\U0001f996",
  2355. ":t_rex:": "\U0001f996",
  2356. ":t_shirt:": "\U0001f455",
  2357. ":taco:": "\U0001f32e",
  2358. ":tada:": "\U0001f389",
  2359. ":taiwan:": "\U0001f1f9\U0001f1fc",
  2360. ":tajikistan:": "\U0001f1f9\U0001f1ef",
  2361. ":takeout_box:": "\U0001f961",
  2362. ":tamale:": "\U0001fad4",
  2363. ":tanabata_tree:": "\U0001f38b",
  2364. ":tangerine:": "\U0001f34a",
  2365. ":tanzania:": "\U0001f1f9\U0001f1ff",
  2366. ":taurus:": "\u2649",
  2367. ":taxi:": "\U0001f695",
  2368. ":tea:": "\U0001f375",
  2369. ":teacher:": "\U0001f9d1\u200d\U0001f3eb",
  2370. ":teacup_without_handle:": "\U0001f375",
  2371. ":teapot:": "\U0001fad6",
  2372. ":tear_off_calendar:": "\U0001f4c6",
  2373. ":technologist:": "\U0001f9d1\u200d\U0001f4bb",
  2374. ":teddy_bear:": "\U0001f9f8",
  2375. ":telephone:": "\u260e\ufe0f",
  2376. ":telephone_receiver:": "\U0001f4de",
  2377. ":telescope:": "\U0001f52d",
  2378. ":television:": "\U0001f4fa",
  2379. ":ten_o_clock:": "\U0001f559",
  2380. ":ten_thirty:": "\U0001f565",
  2381. ":tennis:": "\U0001f3be",
  2382. ":tent:": "\u26fa",
  2383. ":test_tube:": "\U0001f9ea",
  2384. ":thailand:": "\U0001f1f9\U0001f1ed",
  2385. ":thermometer:": "\U0001f321\ufe0f",
  2386. ":thinking:": "\U0001f914",
  2387. ":thinking_face:": "\U0001f914",
  2388. ":third_place_medal:": "\U0001f949",
  2389. ":thong_sandal:": "\U0001fa74",
  2390. ":thought_balloon:": "\U0001f4ad",
  2391. ":thread:": "\U0001f9f5",
  2392. ":three:": "3\ufe0f\u20e3",
  2393. ":three_o_clock:": "\U0001f552",
  2394. ":three_thirty:": "\U0001f55e",
  2395. ":thumbs_down:": "\U0001f44e",
  2396. ":thumbs_up:": "\U0001f44d",
  2397. ":thumbsdown:": "\U0001f44e",
  2398. ":thumbsup:": "\U0001f44d",
  2399. ":ticket:": "\U0001f3ab",
  2400. ":tickets:": "\U0001f39f\ufe0f",
  2401. ":tiger2:": "\U0001f405",
  2402. ":tiger:": "\U0001f42f",
  2403. ":tiger_face:": "\U0001f42f",
  2404. ":timer_clock:": "\u23f2\ufe0f",
  2405. ":timor_leste:": "\U0001f1f9\U0001f1f1",
  2406. ":tipping_hand_man:": "\U0001f481\u200d\u2642\ufe0f",
  2407. ":tipping_hand_person:": "\U0001f481",
  2408. ":tipping_hand_woman:": "\U0001f481\u200d\u2640\ufe0f",
  2409. ":tired_face:": "\U0001f62b",
  2410. ":tm:": "\u2122\ufe0f",
  2411. ":togo:": "\U0001f1f9\U0001f1ec",
  2412. ":toilet:": "\U0001f6bd",
  2413. ":tokelau:": "\U0001f1f9\U0001f1f0",
  2414. ":tokyo_tower:": "\U0001f5fc",
  2415. ":tomato:": "\U0001f345",
  2416. ":tonga:": "\U0001f1f9\U0001f1f4",
  2417. ":tongue:": "\U0001f445",
  2418. ":toolbox:": "\U0001f9f0",
  2419. ":tooth:": "\U0001f9b7",
  2420. ":toothbrush:": "\U0001faa5",
  2421. ":top:": "\U0001f51d",
  2422. ":top_arrow:": "\U0001f51d",
  2423. ":top_hat:": "\U0001f3a9",
  2424. ":tophat:": "\U0001f3a9",
  2425. ":tornado:": "\U0001f32a\ufe0f",
  2426. ":tr:": "\U0001f1f9\U0001f1f7",
  2427. ":trackball:": "\U0001f5b2\ufe0f",
  2428. ":tractor:": "\U0001f69c",
  2429. ":trade_mark:": "\u2122\ufe0f",
  2430. ":traffic_light:": "\U0001f6a5",
  2431. ":train2:": "\U0001f686",
  2432. ":train:": "\U0001f68b",
  2433. ":tram:": "\U0001f68a",
  2434. ":tram_car:": "\U0001f68b",
  2435. ":transgender_flag:": "\U0001f3f3\ufe0f\u200d\u26a7\ufe0f",
  2436. ":transgender_symbol:": "\u26a7\ufe0f",
  2437. ":triangular_flag:": "\U0001f6a9",
  2438. ":triangular_flag_on_post:": "\U0001f6a9",
  2439. ":triangular_ruler:": "\U0001f4d0",
  2440. ":trident:": "\U0001f531",
  2441. ":trident_emblem:": "\U0001f531",
  2442. ":trinidad_tobago:": "\U0001f1f9\U0001f1f9",
  2443. ":tristan_da_cunha:": "\U0001f1f9\U0001f1e6",
  2444. ":triumph:": "\U0001f624",
  2445. ":trolleybus:": "\U0001f68e",
  2446. ":trophy:": "\U0001f3c6",
  2447. ":tropical_drink:": "\U0001f379",
  2448. ":tropical_fish:": "\U0001f420",
  2449. ":truck:": "\U0001f69a",
  2450. ":trumpet:": "\U0001f3ba",
  2451. ":tshirt:": "\U0001f455",
  2452. ":tulip:": "\U0001f337",
  2453. ":tumbler_glass:": "\U0001f943",
  2454. ":tunisia:": "\U0001f1f9\U0001f1f3",
  2455. ":turkey:": "\U0001f983",
  2456. ":turkmenistan:": "\U0001f1f9\U0001f1f2",
  2457. ":turks_caicos_islands:": "\U0001f1f9\U0001f1e8",
  2458. ":turtle:": "\U0001f422",
  2459. ":tuvalu:": "\U0001f1f9\U0001f1fb",
  2460. ":tv:": "\U0001f4fa",
  2461. ":twelve_o_clock:": "\U0001f55b",
  2462. ":twelve_thirty:": "\U0001f567",
  2463. ":twisted_rightwards_arrows:": "\U0001f500",
  2464. ":two:": "2\ufe0f\u20e3",
  2465. ":two_hearts:": "\U0001f495",
  2466. ":two_hump_camel:": "\U0001f42b",
  2467. ":two_men_holding_hands:": "\U0001f46c",
  2468. ":two_o_clock:": "\U0001f551",
  2469. ":two_thirty:": "\U0001f55d",
  2470. ":two_women_holding_hands:": "\U0001f46d",
  2471. ":u5272:": "\U0001f239",
  2472. ":u5408:": "\U0001f234",
  2473. ":u55b6:": "\U0001f23a",
  2474. ":u6307:": "\U0001f22f",
  2475. ":u6708:": "\U0001f237\ufe0f",
  2476. ":u6709:": "\U0001f236",
  2477. ":u6e80:": "\U0001f235",
  2478. ":u7121:": "\U0001f21a",
  2479. ":u7533:": "\U0001f238",
  2480. ":u7981:": "\U0001f232",
  2481. ":u7a7a:": "\U0001f233",
  2482. ":uganda:": "\U0001f1fa\U0001f1ec",
  2483. ":uk:": "\U0001f1ec\U0001f1e7",
  2484. ":ukraine:": "\U0001f1fa\U0001f1e6",
  2485. ":umbrella:": "\u2614",
  2486. ":umbrella_on_ground:": "\u26f1\ufe0f",
  2487. ":umbrella_with_rain_drops:": "\u2614",
  2488. ":unamused:": "\U0001f612",
  2489. ":unamused_face:": "\U0001f612",
  2490. ":underage:": "\U0001f51e",
  2491. ":unicorn:": "\U0001f984",
  2492. ":united_arab_emirates:": "\U0001f1e6\U0001f1ea",
  2493. ":united_nations:": "\U0001f1fa\U0001f1f3",
  2494. ":unlock:": "\U0001f513",
  2495. ":unlocked:": "\U0001f513",
  2496. ":up:": "\U0001f199",
  2497. ":up_arrow:": "\u2b06\ufe0f",
  2498. ":up_button:": "\U0001f199",
  2499. ":up_down_arrow:": "\u2195\ufe0f",
  2500. ":up_left_arrow:": "\u2196\ufe0f",
  2501. ":up_right_arrow:": "\u2197\ufe0f",
  2502. ":upside_down_face:": "\U0001f643",
  2503. ":upwards_button:": "\U0001f53c",
  2504. ":uruguay:": "\U0001f1fa\U0001f1fe",
  2505. ":us:": "\U0001f1fa\U0001f1f8",
  2506. ":us_outlying_islands:": "\U0001f1fa\U0001f1f2",
  2507. ":us_virgin_islands:": "\U0001f1fb\U0001f1ee",
  2508. ":uzbekistan:": "\U0001f1fa\U0001f1ff",
  2509. ":v:": "\u270c\ufe0f",
  2510. ":vampire:": "\U0001f9db",
  2511. ":vampire_man:": "\U0001f9db\u200d\u2642\ufe0f",
  2512. ":vampire_woman:": "\U0001f9db\u200d\u2640\ufe0f",
  2513. ":vanuatu:": "\U0001f1fb\U0001f1fa",
  2514. ":vatican_city:": "\U0001f1fb\U0001f1e6",
  2515. ":venezuela:": "\U0001f1fb\U0001f1ea",
  2516. ":vertical_traffic_light:": "\U0001f6a6",
  2517. ":vhs:": "\U0001f4fc",
  2518. ":vibration_mode:": "\U0001f4f3",
  2519. ":victory_hand:": "\u270c\ufe0f",
  2520. ":video_camera:": "\U0001f4f9",
  2521. ":video_game:": "\U0001f3ae",
  2522. ":videocassette:": "\U0001f4fc",
  2523. ":vietnam:": "\U0001f1fb\U0001f1f3",
  2524. ":violin:": "\U0001f3bb",
  2525. ":virgo:": "\u264d",
  2526. ":volcano:": "\U0001f30b",
  2527. ":volleyball:": "\U0001f3d0",
  2528. ":vomiting_face:": "\U0001f92e",
  2529. ":vs:": "\U0001f19a",
  2530. ":vs_button:": "\U0001f19a",
  2531. ":vulcan_salute:": "\U0001f596",
  2532. ":waffle:": "\U0001f9c7",
  2533. ":wales:": "\U0001f3f4\U000e0067\U000e0062\U000e0077\U000e006c\U000e0073\U000e007f",
  2534. ":walking:": "\U0001f6b6",
  2535. ":walking_man:": "\U0001f6b6\u200d\u2642\ufe0f",
  2536. ":walking_woman:": "\U0001f6b6\u200d\u2640\ufe0f",
  2537. ":wallis_futuna:": "\U0001f1fc\U0001f1eb",
  2538. ":waning_crescent_moon:": "\U0001f318",
  2539. ":waning_gibbous_moon:": "\U0001f316",
  2540. ":warning:": "\u26a0\ufe0f",
  2541. ":wastebasket:": "\U0001f5d1\ufe0f",
  2542. ":watch:": "\u231a",
  2543. ":water_buffalo:": "\U0001f403",
  2544. ":water_closet:": "\U0001f6be",
  2545. ":water_polo:": "\U0001f93d",
  2546. ":water_wave:": "\U0001f30a",
  2547. ":watermelon:": "\U0001f349",
  2548. ":wave:": "\U0001f44b",
  2549. ":waving_hand:": "\U0001f44b",
  2550. ":wavy_dash:": "\u3030\ufe0f",
  2551. ":waxing_crescent_moon:": "\U0001f312",
  2552. ":waxing_gibbous_moon:": "\U0001f314",
  2553. ":wc:": "\U0001f6be",
  2554. ":weary:": "\U0001f629",
  2555. ":weary_cat:": "\U0001f640",
  2556. ":weary_face:": "\U0001f629",
  2557. ":wedding:": "\U0001f492",
  2558. ":weight_lifting:": "\U0001f3cb\ufe0f",
  2559. ":weight_lifting_man:": "\U0001f3cb\ufe0f\u200d\u2642\ufe0f",
  2560. ":weight_lifting_woman:": "\U0001f3cb\ufe0f\u200d\u2640\ufe0f",
  2561. ":western_sahara:": "\U0001f1ea\U0001f1ed",
  2562. ":whale2:": "\U0001f40b",
  2563. ":whale:": "\U0001f433",
  2564. ":wheel_of_dharma:": "\u2638\ufe0f",
  2565. ":wheelchair:": "\u267f",
  2566. ":wheelchair_symbol:": "\u267f",
  2567. ":white_cane:": "\U0001f9af",
  2568. ":white_check_mark:": "\u2705",
  2569. ":white_circle:": "\u26aa",
  2570. ":white_exclamation_mark:": "\u2755",
  2571. ":white_flag:": "\U0001f3f3\ufe0f",
  2572. ":white_flower:": "\U0001f4ae",
  2573. ":white_hair:": "\U0001f9b3",
  2574. ":white_haired_man:": "\U0001f468\u200d\U0001f9b3",
  2575. ":white_haired_woman:": "\U0001f469\u200d\U0001f9b3",
  2576. ":white_heart:": "\U0001f90d",
  2577. ":white_large_square:": "\u2b1c",
  2578. ":white_medium_small_square:": "\u25fd",
  2579. ":white_medium_square:": "\u25fb\ufe0f",
  2580. ":white_question_mark:": "\u2754",
  2581. ":white_small_square:": "\u25ab\ufe0f",
  2582. ":white_square_button:": "\U0001f533",
  2583. ":wilted_flower:": "\U0001f940",
  2584. ":wind_chime:": "\U0001f390",
  2585. ":wind_face:": "\U0001f32c\ufe0f",
  2586. ":window:": "\U0001fa9f",
  2587. ":wine_glass:": "\U0001f377",
  2588. ":wink:": "\U0001f609",
  2589. ":winking_face:": "\U0001f609",
  2590. ":winking_face_with_tongue:": "\U0001f61c",
  2591. ":wolf:": "\U0001f43a",
  2592. ":woman:": "\U0001f469",
  2593. ":woman_and_man_holding_hands:": "\U0001f46b",
  2594. ":woman_artist:": "\U0001f469\u200d\U0001f3a8",
  2595. ":woman_astronaut:": "\U0001f469\u200d\U0001f680",
  2596. ":woman_bald:": "\U0001f469\u200d\U0001f9b2",
  2597. ":woman_biking:": "\U0001f6b4\u200d\u2640\ufe0f",
  2598. ":woman_bouncing_ball:": "\u26f9\ufe0f\u200d\u2640\ufe0f",
  2599. ":woman_bowing:": "\U0001f647\u200d\u2640\ufe0f",
  2600. ":woman_cartwheeling:": "\U0001f938\u200d\u2640\ufe0f",
  2601. ":woman_climbing:": "\U0001f9d7\u200d\u2640\ufe0f",
  2602. ":woman_construction_worker:": "\U0001f477\u200d\u2640\ufe0f",
  2603. ":woman_cook:": "\U0001f469\u200d\U0001f373",
  2604. ":woman_dancing:": "\U0001f483",
  2605. ":woman_detective:": "\U0001f575\ufe0f\u200d\u2640\ufe0f",
  2606. ":woman_elf:": "\U0001f9dd\u200d\u2640\ufe0f",
  2607. ":woman_facepalming:": "\U0001f926\u200d\u2640\ufe0f",
  2608. ":woman_factory_worker:": "\U0001f469\u200d\U0001f3ed",
  2609. ":woman_fairy:": "\U0001f9da\u200d\u2640\ufe0f",
  2610. ":woman_farmer:": "\U0001f469\u200d\U0001f33e",
  2611. ":woman_feeding_baby:": "\U0001f469\u200d\U0001f37c",
  2612. ":woman_firefighter:": "\U0001f469\u200d\U0001f692",
  2613. ":woman_frowning:": "\U0001f64d\u200d\u2640\ufe0f",
  2614. ":woman_genie:": "\U0001f9de\u200d\u2640\ufe0f",
  2615. ":woman_gesturing_no:": "\U0001f645\u200d\u2640\ufe0f",
  2616. ":woman_gesturing_ok:": "\U0001f646\u200d\u2640\ufe0f",
  2617. ":woman_getting_haircut:": "\U0001f487\u200d\u2640\ufe0f",
  2618. ":woman_getting_massage:": "\U0001f486\u200d\u2640\ufe0f",
  2619. ":woman_golfing:": "\U0001f3cc\ufe0f\u200d\u2640\ufe0f",
  2620. ":woman_guard:": "\U0001f482\u200d\u2640\ufe0f",
  2621. ":woman_health_worker:": "\U0001f469\u200d\u2695\ufe0f",
  2622. ":woman_in_lotus_position:": "\U0001f9d8\u200d\u2640\ufe0f",
  2623. ":woman_in_manual_wheelchair:": "\U0001f469\u200d\U0001f9bd",
  2624. ":woman_in_motorized_wheelchair:": "\U0001f469\u200d\U0001f9bc",
  2625. ":woman_in_steamy_room:": "\U0001f9d6\u200d\u2640\ufe0f",
  2626. ":woman_in_tuxedo:": "\U0001f935\u200d\u2640\ufe0f",
  2627. ":woman_judge:": "\U0001f469\u200d\u2696\ufe0f",
  2628. ":woman_juggling:": "\U0001f939\u200d\u2640\ufe0f",
  2629. ":woman_kneeling:": "\U0001f9ce\u200d\u2640\ufe0f",
  2630. ":woman_lifting_weights:": "\U0001f3cb\ufe0f\u200d\u2640\ufe0f",
  2631. ":woman_mage:": "\U0001f9d9\u200d\u2640\ufe0f",
  2632. ":woman_mechanic:": "\U0001f469\u200d\U0001f527",
  2633. ":woman_mountain_biking:": "\U0001f6b5\u200d\u2640\ufe0f",
  2634. ":woman_office_worker:": "\U0001f469\u200d\U0001f4bc",
  2635. ":woman_pilot:": "\U0001f469\u200d\u2708\ufe0f",
  2636. ":woman_playing_handball:": "\U0001f93e\u200d\u2640\ufe0f",
  2637. ":woman_playing_water_polo:": "\U0001f93d\u200d\u2640\ufe0f",
  2638. ":woman_police_officer:": "\U0001f46e\u200d\u2640\ufe0f",
  2639. ":woman_pouting:": "\U0001f64e\u200d\u2640\ufe0f",
  2640. ":woman_raising_hand:": "\U0001f64b\u200d\u2640\ufe0f",
  2641. ":woman_rowing_boat:": "\U0001f6a3\u200d\u2640\ufe0f",
  2642. ":woman_running:": "\U0001f3c3\u200d\u2640\ufe0f",
  2643. ":woman_s_boot:": "\U0001f462",
  2644. ":woman_s_clothes:": "\U0001f45a",
  2645. ":woman_s_hat:": "\U0001f452",
  2646. ":woman_s_sandal:": "\U0001f461",
  2647. ":woman_scientist:": "\U0001f469\u200d\U0001f52c",
  2648. ":woman_shrugging:": "\U0001f937\u200d\u2640\ufe0f",
  2649. ":woman_singer:": "\U0001f469\u200d\U0001f3a4",
  2650. ":woman_standing:": "\U0001f9cd\u200d\u2640\ufe0f",
  2651. ":woman_student:": "\U0001f469\u200d\U0001f393",
  2652. ":woman_superhero:": "\U0001f9b8\u200d\u2640\ufe0f",
  2653. ":woman_supervillain:": "\U0001f9b9\u200d\u2640\ufe0f",
  2654. ":woman_surfing:": "\U0001f3c4\u200d\u2640\ufe0f",
  2655. ":woman_swimming:": "\U0001f3ca\u200d\u2640\ufe0f",
  2656. ":woman_teacher:": "\U0001f469\u200d\U0001f3eb",
  2657. ":woman_technologist:": "\U0001f469\u200d\U0001f4bb",
  2658. ":woman_tipping_hand:": "\U0001f481\u200d\u2640\ufe0f",
  2659. ":woman_vampire:": "\U0001f9db\u200d\u2640\ufe0f",
  2660. ":woman_walking:": "\U0001f6b6\u200d\u2640\ufe0f",
  2661. ":woman_wearing_turban:": "\U0001f473\u200d\u2640\ufe0f",
  2662. ":woman_with_blond_hair:": "\U0001f471\u200d\u2640\ufe0f",
  2663. ":woman_with_curly_hair:": "\U0001f469\u200d\U0001f9b1",
  2664. ":woman_with_headscarf:": "\U0001f9d5",
  2665. ":woman_with_probing_cane:": "\U0001f469\u200d\U0001f9af",
  2666. ":woman_with_red_hair:": "\U0001f469\u200d\U0001f9b0",
  2667. ":woman_with_turban:": "\U0001f473\u200d\u2640\ufe0f",
  2668. ":woman_with_veil:": "\U0001f470\u200d\u2640\ufe0f",
  2669. ":woman_with_white_cane:": "\U0001f469\u200d\U0001f9af",
  2670. ":woman_with_white_hair:": "\U0001f469\u200d\U0001f9b3",
  2671. ":woman_zombie:": "\U0001f9df\u200d\u2640\ufe0f",
  2672. ":womans_clothes:": "\U0001f45a",
  2673. ":womans_hat:": "\U0001f452",
  2674. ":women_holding_hands:": "\U0001f46d",
  2675. ":women_s_room:": "\U0001f6ba",
  2676. ":women_with_bunny_ears:": "\U0001f46f\u200d\u2640\ufe0f",
  2677. ":women_wrestling:": "\U0001f93c\u200d\u2640\ufe0f",
  2678. ":womens:": "\U0001f6ba",
  2679. ":wood:": "\U0001fab5",
  2680. ":woozy_face:": "\U0001f974",
  2681. ":world_map:": "\U0001f5fa\ufe0f",
  2682. ":worm:": "\U0001fab1",
  2683. ":worried:": "\U0001f61f",
  2684. ":worried_face:": "\U0001f61f",
  2685. ":wrapped_gift:": "\U0001f381",
  2686. ":wrench:": "\U0001f527",
  2687. ":wrestling:": "\U0001f93c",
  2688. ":writing_hand:": "\u270d\ufe0f",
  2689. ":x:": "\u274c",
  2690. ":yarn:": "\U0001f9f6",
  2691. ":yawning_face:": "\U0001f971",
  2692. ":yellow_circle:": "\U0001f7e1",
  2693. ":yellow_heart:": "\U0001f49b",
  2694. ":yellow_square:": "\U0001f7e8",
  2695. ":yemen:": "\U0001f1fe\U0001f1ea",
  2696. ":yen:": "\U0001f4b4",
  2697. ":yen_banknote:": "\U0001f4b4",
  2698. ":yin_yang:": "\u262f\ufe0f",
  2699. ":yo_yo:": "\U0001fa80",
  2700. ":yum:": "\U0001f60b",
  2701. ":zambia:": "\U0001f1ff\U0001f1f2",
  2702. ":zany_face:": "\U0001f92a",
  2703. ":zap:": "\u26a1",
  2704. ":zebra:": "\U0001f993",
  2705. ":zero:": "0\ufe0f\u20e3",
  2706. ":zimbabwe:": "\U0001f1ff\U0001f1fc",
  2707. ":zipper_mouth_face:": "\U0001f910",
  2708. ":zombie:": "\U0001f9df",
  2709. ":zombie_man:": "\U0001f9df\u200d\u2642\ufe0f",
  2710. ":zombie_woman:": "\U0001f9df\u200d\u2640\ufe0f",
  2711. ":zzz:": "\U0001f4a4",
  2712. }