#!/data/data/com.termux/files/usr/bin/env bash
#
# emojify
# https://github.com/mrowa44/emojify
#
# Substitutes emoji aliases (like :sparkling_heart:) to emoji raw characters.
#
# emojify takes input from argument list or from the pipeline.
#
#
# For instance, to emojify git log run:
#   $ git log --oneline --color | emojify | less
# (you need to specify color option if you want colors)
#
# To have an alias that does that for you, add something like:
#   log = ! git log --oneline --color | emojify | less
# to your .gitconfig
#
# Or, you could do something silly like:
#   $ emojify "Hey, I just :raising_hand: you, and this is :scream: , but
#     here's my :calling: , so :telephone_receiver: me, maybe?"

emojify_version=2.1.0

version_error_message="Oh my! That’s a very old version of bash you’re using, we don’t support that anymore :(
Consider upgrading it or, if you must use bash ${BASH_VERSION}, download an old version of
emojify from here: https://github.com/mrowa44/emojify/blob/old_bash_support/emojify"
# Checks the installed bash version to see if it's compatible with emojify
if (( ${BASH_VERSION%%.*} < 4 )); then
    echo -e "$version_error_message"
    exit 1
fi

# List generated by 
# https://gist.github.com/GrenderG/fd4eb4c73eadad219b0ecb5f9345070a#file-emoji_scrap-py
# and emoji_scrap_github.py
declare -A emojis=(
    [":100:"]="\U1f4af"
    [":1234:"]="\U1f522"
    [":1st_place_medal:"]="\U1f947"
    [":+1:"]="\U1f44d"
    [":-1:"]="\U1f44e"
    [":2nd_place_medal:"]="\U1f948"
    [":3rd_place_medal:"]="\U1f949"
    [":8ball:"]="\U1f3b1"
    [":abacus:"]="\U1f9ee"
    [":abcd:"]="\U1f521"
    [":abc:"]="\U1f524"
    [":ab:"]="\U1f18e"
    [":accept:"]="\U1f251"
    [":adhesive_bandage:"]="\U1fa79"
    [":adult:"]="\U1f9d1"
    [":aerial_tramway:"]="\U1f6a1"
    [":airplane_arriving:"]="\U1f6ec"
    [":airplane_departure:"]="\U1f6eb"
    [":airplane_small:"]="\U1f6e9"
    [":airplane:"]="\U2708"
    [":afghanistan:"]="\U1f1e6\U1f1eb"
    [":airplane:"]="\U2708\Ufe0f"
    [":aland_islands:"]="\U1f1e6\U1f1fd"
    [":alarm_clock:"]="\U23f0"
    [":alembic:"]="\U2697"
    [":albania:"]="\U1f1e6\U1f1f1"
    [":alembic:"]="\U2697\Ufe0f"
    [":algeria:"]="\U1f1e9\U1f1ff"
    [":alien:"]="\U1f47d"
    [":ambulance:"]="\U1f691"
    [":american_samoa:"]="\U1f1e6\U1f1f8"
    [":amphora:"]="\U1f3fa"
    [":anchor:"]="\U2693"
    [":angel_tone1:"]="\U1f47c\U1f3fb"
    [":angel_tone2:"]="\U1f47c\U1f3fc"
    [":angel_tone3:"]="\U1f47c\U1f3fd"
    [":angel_tone4:"]="\U1f47c\U1f3fe"
    [":angel_tone5:"]="\U1f47c\U1f3ff"
    [":andorra:"]="\U1f1e6\U1f1e9"
    [":angel:"]="\U1f47c"
    [":angel:"]="\U1f47c"
    [":anger_right:"]="\U1f5ef"
    [":anger:"]="\U1f4a2"
    [":angola:"]="\U1f1e6\U1f1f4"
    [":angry:"]="\U1f620"
    [":anguilla:"]="\U1f1e6\U1f1ee"
    [":anguished:"]="\U1f627"
    [":antarctica:"]="\U1f1e6\U1f1f6"
    [":antigua_barbuda:"]="\U1f1e6\U1f1ec"
    [":ant:"]="\U1f41c"
    [":apple:"]="\U1f34e"
    [":aquarius:"]="\U2652"
    [":argentina:"]="\U1f1e6\U1f1f7"
    [":aries:"]="\U2648"
    [":arrow_backward:"]="\U25c0"
    [":armenia:"]="\U1f1e6\U1f1f2"
    [":arrow_backward:"]="\U25c0\Ufe0f"
    [":arrow_double_down:"]="\U23ec"
    [":arrow_double_up:"]="\U23eb"
    [":arrow_down_small:"]="\U1f53d"
    [":arrow_down:"]="\U2b07"
    [":arrow_forward:"]="\U25b6"
    [":arrow_heading_down:"]="\U2935"
    [":arrow_heading_up:"]="\U2934"
    [":arrow_left:"]="\U2b05"
    [":arrow_lower_left:"]="\U2199"
    [":arrow_lower_right:"]="\U2198"
    [":arrow_right_hook:"]="\U21aa"
    [":arrow_right:"]="\U27a1"
    [":arrow_down:"]="\U2b07\Ufe0f"
    [":arrow_forward:"]="\U25b6\Ufe0f"
    [":arrow_heading_down:"]="\U2935\Ufe0f"
    [":arrow_heading_up:"]="\U2934\Ufe0f"
    [":arrow_left:"]="\U2b05\Ufe0f"
    [":arrow_lower_left:"]="\U2199\Ufe0f"
    [":arrow_lower_right:"]="\U2198\Ufe0f"
    [":arrow_right_hook:"]="\U21aa\Ufe0f"
    [":arrow_right:"]="\U27a1\Ufe0f"
    [":arrows_clockwise:"]="\U1f503"
    [":arrows_counterclockwise:"]="\U1f504"
    [":arrow_up_down:"]="\U2195"
    [":arrow_upper_left:"]="\U2196"
    [":arrow_upper_right:"]="\U2197"
    [":arrow_up_down:"]="\U2195\Ufe0f"
    [":arrow_upper_left:"]="\U2196\Ufe0f"
    [":arrow_upper_right:"]="\U2197\Ufe0f"
    [":arrow_up_small:"]="\U1f53c"
    [":arrow_up:"]="\U2b06"
    [":arrow_up:"]="\U2b06\Ufe0f"
    [":articulated_lorry:"]="\U1f69b"
    [":artificial_satellite:"]="\U1f6f0\Ufe0f"
    [":art:"]="\U1f3a8"
    [":asterisk:"]="\U002a\U20e3"
    [":aruba:"]="\U1f1e6\U1f1fc"
    [":ascension_island:"]="\U1f1e6\U1f1e8"
    [":asterisk:"]="\U2a\Ufe0f\U20e3"
    [":astonished:"]="\U1f632"
    [":athletic_shoe:"]="\U1f45f"
    [":atm:"]="\U1f3e7"
    [":atom:"]="\U269b"
    [":a:"]="\U1f170"
    [":atom_symbol:"]="\U269b\Ufe0f"
    [":a:"]="\U1f170\Ufe0f"
    [":australia:"]="\U1f1e6\U1f1fa"
    [":austria:"]="\U1f1e6\U1f1f9"
    [":auto_rickshaw:"]="\U1f6fa"
    [":avocado:"]="\U1f951"
    [":axe:"]="\U1fa93"
    [":azerbaijan:"]="\U1f1e6\U1f1ff"
    [":baby_bottle:"]="\U1f37c"
    [":baby_chick:"]="\U1f424"
    [":baby_symbol:"]="\U1f6bc"
    [":baby_tone1:"]="\U1f476\U1f3fb"
    [":baby_tone2:"]="\U1f476\U1f3fc"
    [":baby_tone3:"]="\U1f476\U1f3fd"
    [":baby_tone4:"]="\U1f476\U1f3fe"
    [":baby_tone5:"]="\U1f476\U1f3ff"
    [":baby:"]="\U1f476"
    [":baby:"]="\U1f476"
    [":back:"]="\U1f519"
    [":bacon:"]="\U1f953"
    [":badger:"]="\U1f9a1"
    [":badminton:"]="\U1f3f8"
    [":bagel:"]="\U1f96f"
    [":baggage_claim:"]="\U1f6c4"
    [":baguette_bread:"]="\U1f956"
    [":bahamas:"]="\U1f1e7\U1f1f8"
    [":bahrain:"]="\U1f1e7\U1f1ed"
    [":balance_scale:"]="\U2696\Ufe0f"
    [":bald_man:"]="\U1f468\U200d\U1f9b2"
    [":bald_woman:"]="\U1f469\U200d\U1f9b2"
    [":ballet_shoes:"]="\U1fa70"
    [":balloon:"]="\U1f388"
    [":ballot_box:"]="\U1f5f3"
    [":ballot_box_with_check:"]="\U2611"
    [":ballot_box:"]="\U1f5f3\Ufe0f"
    [":ballot_box_with_check:"]="\U2611\Ufe0f"
    [":bamboo:"]="\U1f38d"
    [":banana:"]="\U1f34c"
    [":bangbang:"]="\U203c"
    [":bangbang:"]="\U203c\Ufe0f"
    [":bangladesh:"]="\U1f1e7\U1f1e9"
    [":banjo:"]="\U1fa95"
    [":bank:"]="\U1f3e6"
    [":barbados:"]="\U1f1e7\U1f1e7"
    [":barber:"]="\U1f488"
    [":bar_chart:"]="\U1f4ca"
    [":baseball:"]="\U26be"
    [":basketball_player_tone1:"]="\U26f9\U1f3fb"
    [":basketball_player_tone2:"]="\U26f9\U1f3fc"
    [":basketball_player_tone3:"]="\U26f9\U1f3fd"
    [":basketball_player_tone4:"]="\U26f9\U1f3fe"
    [":basketball_player_tone5:"]="\U26f9\U1f3ff"
    [":basketball_player:"]="\U26f9"
    [":basketball_player:"]="\U26f9"
    [":basketball_man:"]="\U26f9\Ufe0f\U200d\U2642\Ufe0f"
    [":basketball:"]="\U1f3c0"
    [":bath_tone1:"]="\U1f6c0\U1f3fb"
    [":bath_tone2:"]="\U1f6c0\U1f3fc"
    [":bath_tone3:"]="\U1f6c0\U1f3fd"
    [":bath_tone4:"]="\U1f6c0\U1f3fe"
    [":bath_tone5:"]="\U1f6c0\U1f3ff"
    [":basketball_woman:"]="\U26f9\Ufe0f\U200d\U2640\Ufe0f"
    [":basket:"]="\U1f9fa"
    [":bathtub:"]="\U1f6c1"
    [":bath:"]="\U1f6c0"
    [":bath:"]="\U1f6c0"
    [":battery:"]="\U1f50b"
    [":bat:"]="\U1f987"
    [":beach:"]="\U1f3d6"
    [":beach_umbrella:"]="\U26f1"
    [":beach_umbrella:"]="\U1f3d6\Ufe0f"
    [":bearded_person:"]="\U1f9d4"
    [":bear:"]="\U1f43b"
    [":bed:"]="\U1f6cf"
    [":bed:"]="\U1f6cf\Ufe0f"
    [":beers:"]="\U1f37b"
    [":beer:"]="\U1f37a"
    [":beetle:"]="\U1f41e"
    [":bee:"]="\U1f41d"
    [":beginner:"]="\U1f530"
    [":bellhop:"]="\U1f6ce"
    [":belarus:"]="\U1f1e7\U1f1fe"
    [":belgium:"]="\U1f1e7\U1f1ea"
    [":belize:"]="\U1f1e7\U1f1ff"
    [":bellhop_bell:"]="\U1f6ce\Ufe0f"
    [":bell:"]="\U1f514"
    [":benin:"]="\U1f1e7\U1f1ef"
    [":bento:"]="\U1f371"
    [":bicyclist_tone1:"]="\U1f6b4\U1f3fb"
    [":bicyclist_tone2:"]="\U1f6b4\U1f3fc"
    [":bicyclist_tone3:"]="\U1f6b4\U1f3fd"
    [":bicyclist_tone4:"]="\U1f6b4\U1f3fe"
    [":bicyclist_tone5:"]="\U1f6b4\U1f3ff"
    [":bicyclist:"]="\U1f6b4"
    [":bermuda:"]="\U1f1e7\U1f1f2"
    [":beverage_box:"]="\U1f9c3"
    [":bhutan:"]="\U1f1e7\U1f1f9"
    [":bicyclist:"]="\U1f6b4"
    [":bike:"]="\U1f6b2"
    [":biohazard:"]="\U2623"
    [":biking_man:"]="\U1f6b4\U200d\U2642\Ufe0f"
    [":biking_woman:"]="\U1f6b4\U200d\U2640\Ufe0f"
    [":bikini:"]="\U1f459"
    [":billed_cap:"]="\U1f9e2"
    [":biohazard:"]="\U2623\Ufe0f"
    [":bird:"]="\U1f426"
    [":birthday:"]="\U1f382"
    [":black_circle:"]="\U26ab"
    [":black_flag:"]="\U1f3f4"
    [":black_heart:"]="\U1f5a4"
    [":black_joker:"]="\U1f0cf"
    [":black_large_square:"]="\U2b1b"
    [":black_medium_small_square:"]="\U25fe"
    [":black_medium_square:"]="\U25fc"
    [":black_nib:"]="\U2712"
    [":black_small_square:"]="\U25aa"
    [":black_medium_square:"]="\U25fc\Ufe0f"
    [":black_nib:"]="\U2712\Ufe0f"
    [":black_small_square:"]="\U25aa\Ufe0f"
    [":black_square_button:"]="\U1f532"
    [":blonde_woman:"]="\U1f471\U200d\U2640\Ufe0f"
    [":blond_haired_man:"]="\U1f471\U200d\U2642\Ufe0f"
    [":blond_haired_person:"]="\U1f471"
    [":blond_haired_woman:"]="\U1f471\U200d\U2640\Ufe0f"
    [":blossom:"]="\U1f33c"
    [":blowfish:"]="\U1f421"
    [":blue_book:"]="\U1f4d8"
    [":blue_car:"]="\U1f699"
    [":blue_circle:"]="\U1f535"
    [":blue_heart:"]="\U1f499"
    [":blue_square:"]="\U1f7e6"
    [":blush:"]="\U1f60a"
    [":boar:"]="\U1f417"
    [":boat:"]="\U26f5"
    [":bolivia:"]="\U1f1e7\U1f1f4"
    [":bomb:"]="\U1f4a3"
    [":bone:"]="\U1f9b4"
    [":bookmark_tabs:"]="\U1f4d1"
    [":bookmark:"]="\U1f516"
    [":books:"]="\U1f4da"
    [":book:"]="\U1f4d6"
    [":boom:"]="\U1f4a5"
    [":boot:"]="\U1f462"
    [":bosnia_herzegovina:"]="\U1f1e7\U1f1e6"
    [":botswana:"]="\U1f1e7\U1f1fc"
    [":bouncing_ball_man:"]="\U26f9\Ufe0f\U200d\U2642\Ufe0f"
    [":bouncing_ball_person:"]="\U26f9\Ufe0f"
    [":bouncing_ball_woman:"]="\U26f9\Ufe0f\U200d\U2640\Ufe0f"
    [":bouquet:"]="\U1f490"
    [":bouvet_island:"]="\U1f1e7\U1f1fb"
    [":bow_and_arrow:"]="\U1f3f9"
    [":bowing_man:"]="\U1f647\U200d\U2642\Ufe0f"
    [":bowing_woman:"]="\U1f647\U200d\U2640\Ufe0f"
    [":bowling:"]="\U1f3b3"
    [":bow_tone1:"]="\U1f647\U1f3fb"
    [":bow_tone2:"]="\U1f647\U1f3fc"
    [":bow_tone3:"]="\U1f647\U1f3fd"
    [":bow_tone4:"]="\U1f647\U1f3fe"
    [":bow_tone5:"]="\U1f647\U1f3ff"
    [":bow:"]="\U1f647"
    [":bowl_with_spoon:"]="\U1f963"
    [":bow:"]="\U1f647"
    [":boxing_glove:"]="\U1f94a"
    [":boy_tone1:"]="\U1f466\U1f3fb"
    [":boy_tone2:"]="\U1f466\U1f3fc"
    [":boy_tone3:"]="\U1f466\U1f3fd"
    [":boy_tone4:"]="\U1f466\U1f3fe"
    [":boy_tone5:"]="\U1f466\U1f3ff"
    [":boy:"]="\U1f466"
    [":boy:"]="\U1f466"
    [":brain:"]="\U1f9e0"
    [":brazil:"]="\U1f1e7\U1f1f7"
    [":bread:"]="\U1f35e"
    [":bride_with_veil_tone1:"]="\U1f470\U1f3fb"
    [":bride_with_veil_tone2:"]="\U1f470\U1f3fc"
    [":bride_with_veil_tone3:"]="\U1f470\U1f3fd"
    [":bride_with_veil_tone4:"]="\U1f470\U1f3fe"
    [":bride_with_veil_tone5:"]="\U1f470\U1f3ff"
    [":bride_with_veil:"]="\U1f470"
    [":breast_feeding:"]="\U1f931"
    [":bricks:"]="\U1f9f1"
    [":bride_with_veil:"]="\U1f470"
    [":bridge_at_night:"]="\U1f309"
    [":briefcase:"]="\U1f4bc"
    [":british_indian_ocean_territory:"]="\U1f1ee\U1f1f4"
    [":british_virgin_islands:"]="\U1f1fb\U1f1ec"
    [":broccoli:"]="\U1f966"
    [":broken_heart:"]="\U1f494"
    [":b:"]="\U1f171"
    [":broom:"]="\U1f9f9"
    [":brown_circle:"]="\U1f7e4"
    [":brown_heart:"]="\U1f90e"
    [":brown_square:"]="\U1f7eb"
    [":brunei:"]="\U1f1e7\U1f1f3"
    [":b:"]="\U1f171\Ufe0f"
    [":bug:"]="\U1f41b"
    [":building_construction:"]="\U1f3d7\Ufe0f"
    [":bulb:"]="\U1f4a1"
    [":bulgaria:"]="\U1f1e7\U1f1ec"
    [":bullettrain_front:"]="\U1f685"
    [":bullettrain_side:"]="\U1f684"
    [":burkina_faso:"]="\U1f1e7\U1f1eb"
    [":burrito:"]="\U1f32f"
    [":burundi:"]="\U1f1e7\U1f1ee"
    [":business_suit_levitating:"]="\U1f574\Ufe0f"
    [":busstop:"]="\U1f68f"
    [":bust_in_silhouette:"]="\U1f464"
    [":busts_in_silhouette:"]="\U1f465"
    [":bus:"]="\U1f68c"
    [":butterfly:"]="\U1f98b"
    [":butter:"]="\U1f9c8"
    [":cactus:"]="\U1f335"
    [":cake:"]="\U1f370"
    [":calendar_spiral:"]="\U1f5d3"
    [":calendar:"]="\U1f4c6"
    [":calling:"]="\U1f4f2"
    [":call_me_tone1:"]="\U1f919\U1f3fb"
    [":call_me_tone2:"]="\U1f919\U1f3fc"
    [":call_me_tone3:"]="\U1f919\U1f3fd"
    [":call_me_tone4:"]="\U1f919\U1f3fe"
    [":call_me_tone5:"]="\U1f919\U1f3ff"
    [":call_me:"]="\U1f919"
    [":call_me_hand:"]="\U1f919"
    [":cambodia:"]="\U1f1f0\U1f1ed"
    [":camel:"]="\U1f42b"
    [":camera_flash:"]="\U1f4f8"
    [":camera:"]="\U1f4f7"
    [":camera_with_flash:"]="\U1f4f8"
    [":camping:"]="\U1f3d5"
    [":cameroon:"]="\U1f1e8\U1f1f2"
    [":camping:"]="\U1f3d5\Ufe0f"
    [":canada:"]="\U1f1e8\U1f1e6"
    [":canary_islands:"]="\U1f1ee\U1f1e8"
    [":cancer:"]="\U264b"
    [":candle:"]="\U1f56f"
    [":candle:"]="\U1f56f\Ufe0f"
    [":candy:"]="\U1f36c"
    [":canned_food:"]="\U1f96b"
    [":canoe:"]="\U1f6f6"
    [":cape_verde:"]="\U1f1e8\U1f1fb"
    [":capital_abcd:"]="\U1f520"
    [":capricorn:"]="\U2651"
    [":card_box:"]="\U1f5c3"
    [":card_file_box:"]="\U1f5c3"    
    [":card_file_box:"]="\U1f5c3\Ufe0f"
    [":card_index_dividers:"]="\U1f5c2\Ufe0f"
    [":card_index:"]="\U1f4c7"
    [":caribbean_netherlands:"]="\U1f1e7\U1f1f6"
    [":carousel_horse:"]="\U1f3a0"
    [":carrot:"]="\U1f955"
    [":cartwheel_tone1:"]="\U1f938\U1f3fb"
    [":cartwheel_tone2:"]="\U1f938\U1f3fc"
    [":cartwheel_tone3:"]="\U1f938\U1f3fd"
    [":cartwheel_tone4:"]="\U1f938\U1f3fe"
    [":cartwheel_tone5:"]="\U1f938\U1f3ff"
    [":cartwheel:"]="\U1f938"
    [":cartwheel:"]="\U1f938"
    [":cartwheeling:"]="\U1f938"
    [":car:"]="\U1f697"
    [":cat2:"]="\U1f408"
    # category: activity
    # category: diversity
    # category: flags
    # category: food
    # category: nature
    # category: objects
    # category: symbols
    # category: travel
    [":cat:"]="\U1f431"
    [":cayman_islands:"]="\U1f1f0\U1f1fe"
    [":cd:"]="\U1f4bf"
    [":chains:"]="\U26d3"
    [":champagne_glass:"]="\U1f942"
    [":central_african_republic:"]="\U1f1e8\U1f1eb"
    [":ceuta_melilla:"]="\U1f1ea\U1f1e6"
    [":chad:"]="\U1f1f9\U1f1e9"
    [":chains:"]="\U26d3\Ufe0f"
    [":chair:"]="\U1fa91"
    [":champagne:"]="\U1f37e"
    [":chart:"]="\U1f4b9"
    [":chart_with_downwards_trend:"]="\U1f4c9"
    [":chart_with_upwards_trend:"]="\U1f4c8"
    [":checkered_flag:"]="\U1f3c1"
    [":cheese:"]="\U1f9c0"
    [":cherries:"]="\U1f352"
    [":cherry_blossom:"]="\U1f338"
    [":chess_pawn:"]="\U265f\Ufe0f"
    [":chestnut:"]="\U1f330"
    [":chicken:"]="\U1f414"
    [":children_crossing:"]="\U1f6b8"
    [":chipmunk:"]="\U1f43f"
    [":child:"]="\U1f9d2"
    [":chile:"]="\U1f1e8\U1f1f1"
    [":chipmunk:"]="\U1f43f\Ufe0f"
    [":chocolate_bar:"]="\U1f36b"
    [":chopsticks:"]="\U1f962"
    [":christmas_island:"]="\U1f1e8\U1f1fd"
    [":christmas_tree:"]="\U1f384"
    [":church:"]="\U26ea"
    [":cinema:"]="\U1f3a6"
    [":circus_tent:"]="\U1f3aa"
    [":city_dusk:"]="\U1f306"
    [":cityscape:"]="\U1f3d9"
    [":city_sunset:"]="\U1f307"
    [":cityscape:"]="\U1f3d9\Ufe0f"
    [":city_sunrise:"]="\U1f307"
    [":city_sunset:"]="\U1f306"
    [":clamp:"]="\U1f5dc\Ufe0f"
    [":clapper:"]="\U1f3ac"
    [":clap_tone1:"]="\U1f44f\U1f3fb"
    [":clap_tone2:"]="\U1f44f\U1f3fc"
    [":clap_tone3:"]="\U1f44f\U1f3fd"
    [":clap_tone4:"]="\U1f44f\U1f3fe"
    [":clap_tone5:"]="\U1f44f\U1f3ff"
    [":clap:"]="\U1f44f"
    [":classical_building:"]="\U1f3db"
    [":classical_building:"]="\U1f3db\Ufe0f"
    [":climbing_man:"]="\U1f9d7\U200d\U2642\Ufe0f"
    [":climbing:"]="\U1f9d7"
    [":climbing_woman:"]="\U1f9d7\U200d\U2640\Ufe0f"
    [":clinking_glasses:"]="\U1f942"
    [":clipboard:"]="\U1f4cb"
    [":clipperton_island:"]="\U1f1e8\U1f1f5"
    [":clock1030:"]="\U1f565"
    [":clock10:"]="\U1f559"
    [":clock1130:"]="\U1f566"
    [":clock11:"]="\U1f55a"
    [":clock1230:"]="\U1f567"
    [":clock12:"]="\U1f55b"
    [":clock130:"]="\U1f55c"
    [":clock1:"]="\U1f550"
    [":clock230:"]="\U1f55d"
    [":clock2:"]="\U1f551"
    [":clock330:"]="\U1f55e"
    [":clock3:"]="\U1f552"
    [":clock430:"]="\U1f55f"
    [":clock4:"]="\U1f553"
    [":clock530:"]="\U1f560"
    [":clock5:"]="\U1f554"
    [":clock630:"]="\U1f561"
    [":clock6:"]="\U1f555"
    [":clock730:"]="\U1f562"
    [":clock7:"]="\U1f556"
    [":clock830:"]="\U1f563"
    [":clock8:"]="\U1f557"
    [":clock930:"]="\U1f564"
    [":clock9:"]="\U1f558"
    [":clock:"]="\U1f570"
    [":closed_book:"]="\U1f4d5"
    [":closed_lock_with_key:"]="\U1f510"
    [":cloud_lightning:"]="\U1f329"
    [":cloud_rain:"]="\U1f327"
    [":cloud_snow:"]="\U1f328"
    [":cloud_tornado:"]="\U1f32a"
    [":cloud:"]="\U2601"
    [":clown:"]="\U1f921"
    [":closed_umbrella:"]="\U1f302"
    [":cloud:"]="\U2601\Ufe0f"
    [":cloud_with_lightning_and_rain:"]="\U26c8\Ufe0f"
    [":cloud_with_lightning:"]="\U1f329\Ufe0f"
    [":cloud_with_rain:"]="\U1f327\Ufe0f"
    [":cloud_with_snow:"]="\U1f328\Ufe0f"
    [":clown_face:"]="\U1f921"
    [":cl:"]="\U1f191"
    [":clubs:"]="\U2663"
    [":clubs:"]="\U2663\Ufe0f"
    [":cn:"]="\U1f1e8\U1f1f3"
    [":coat:"]="\U1f9e5"
    [":cocktail:"]="\U1f378"
    [":coconut:"]="\U1f965"
    [":cocos_islands:"]="\U1f1e8\U1f1e8"
    [":coffee:"]="\U2615"
    [":coffin:"]="\U26b0"
    [":coffin:"]="\U26b0\Ufe0f"
    [":cold_face:"]="\U1f976"
    [":cold_sweat:"]="\U1f630"
    [":comet:"]="\U2604"
    [":compression:"]="\U1f5dc"
    [":collision:"]="\U1f4a5"
    [":colombia:"]="\U1f1e8\U1f1f4"
    [":comet:"]="\U2604\Ufe0f"
    [":comoros:"]="\U1f1f0\U1f1f2"
    [":compass:"]="\U1f9ed"
    [":computer_mouse:"]="\U1f5b1\Ufe0f"
    [":computer:"]="\U1f4bb"
    [":confetti_ball:"]="\U1f38a"
    [":confounded:"]="\U1f616"
    [":confused:"]="\U1f615"
    [":congratulations:"]="\U3297"
    [":construction_site:"]="\U1f3d7"
    [":congo_brazzaville:"]="\U1f1e8\U1f1ec"
    [":congo_kinshasa:"]="\U1f1e8\U1f1e9"
    [":congratulations:"]="\U3297\Ufe0f"
    [":construction:"]="\U1f6a7"
    [":construction_worker_tone1:"]="\U1f477\U1f3fb"
    [":construction_worker_tone2:"]="\U1f477\U1f3fc"
    [":construction_worker_tone3:"]="\U1f477\U1f3fd"
    [":construction_worker_tone4:"]="\U1f477\U1f3fe"
    [":construction_worker_tone5:"]="\U1f477\U1f3ff"
    [":construction_worker:"]="\U1f477"
    [":construction_worker_man:"]="\U1f477\U200d\U2642\Ufe0f"
    [":construction_worker:"]="\U1f477"
    [":control_knobs:"]="\U1f39b"
    [":construction_worker_woman:"]="\U1f477\U200d\U2640\Ufe0f"
    [":control_knobs:"]="\U1f39b\Ufe0f"
    [":convenience_store:"]="\U1f3ea"
    [":cookie:"]="\U1f36a"
    [":cooking:"]="\U1f373"
    [":cook_islands:"]="\U1f1e8\U1f1f0"
    [":cool:"]="\U1f192"
    [":cop_tone1:"]="\U1f46e\U1f3fb"
    [":cop_tone2:"]="\U1f46e\U1f3fc"
    [":cop_tone3:"]="\U1f46e\U1f3fd"
    [":cop_tone4:"]="\U1f46e\U1f3fe"
    [":cop_tone5:"]="\U1f46e\U1f3ff"
    [":cop:"]="\U1f46e"
    [":cop:"]="\U1f46e"
    [":copyright:"]="\U00a9"
    [":copyright:"]="\Ua9\Ufe0f"
    [":corn:"]="\U1f33d"
    [":couch:"]="\U1f6cb"
    [":costa_rica:"]="\U1f1e8\U1f1f7"
    [":cote_divoire:"]="\U1f1e8\U1f1ee"
    [":couch_and_lamp:"]="\U1f6cb\Ufe0f"
    [":couplekiss_man_man:"]="\U1f468\U200d\U2764\Ufe0f\U200d\U1f48b\U200d\U1f468"
    [":couplekiss_man_woman:"]="\U1f469\U200d\U2764\Ufe0f\U200d\U1f48b\U200d\U1f468"
    [":couplekiss:"]="\U1f48f"
    [":couplekiss_woman_woman:"]="\U1f469\U200d\U2764\Ufe0f\U200d\U1f48b\U200d\U1f469"
    [":couple:"]="\U1f46b"
    [":couple_with_heart_man_man:"]="\U1f468\U200d\U2764\Ufe0f\U200d\U1f468"
    [":couple_with_heart:"]="\U1f491"
    [":couple_with_heart_woman_man:"]="\U1f469\U200d\U2764\Ufe0f\U200d\U1f468"
    [":couple_with_heart_woman_woman:"]="\U1f469\U200d\U2764\Ufe0f\U200d\U1f469"
    [":cow2:"]="\U1f404"
    [":cowboy:"]="\U1f920"
    [":cowboy_hat_face:"]="\U1f920"
    [":cow:"]="\U1f42e"
    [":crab:"]="\U1f980"
    [":crayon:"]="\U1f58d"
    [":crayon:"]="\U1f58d\Ufe0f"
    [":credit_card:"]="\U1f4b3"
    [":crescent_moon:"]="\U1f319"
    [":cricket:"]="\U1f3cf"
    [":cricket_game:"]="\U1f3cf"
    [":cricket:"]="\U1f997"
    [":croatia:"]="\U1f1ed\U1f1f7"
    [":crocodile:"]="\U1f40a"
    [":croissant:"]="\U1f950"
    [":crossed_fingers:"]="\U1f91e"
    [":crossed_flags:"]="\U1f38c"
    [":crossed_swords:"]="\U2694"
    [":cross:"]="\U271d"
    [":cruise_ship:"]="\U1f6f3"
    [":crossed_swords:"]="\U2694\Ufe0f"
    [":crown:"]="\U1f451"
    [":crying_cat_face:"]="\U1f63f"
    [":crystal_ball:"]="\U1f52e"
    [":cry:"]="\U1f622"
    [":cuba:"]="\U1f1e8\U1f1fa"
    [":cucumber:"]="\U1f952"
    [":cupcake:"]="\U1f9c1"
    [":cupid:"]="\U1f498"
    [":cup_with_straw:"]="\U1f964"
    [":curacao:"]="\U1f1e8\U1f1fc"
    [":curling_stone:"]="\U1f94c"
    [":curly_haired_man:"]="\U1f468\U200d\U1f9b1"
    [":curly_haired_woman:"]="\U1f469\U200d\U1f9b1"
    [":curly_loop:"]="\U27b0"
    [":currency_exchange:"]="\U1f4b1"
    [":curry:"]="\U1f35b"
    [":cursing_face:"]="\U1f92c"
    [":custard:"]="\U1f36e"
    [":customs:"]="\U1f6c3"
    [":cut_of_meat:"]="\U1f969"
    [":cyclone:"]="\U1f300"
    [":dagger:"]="\U1f5e1"
    [":cyprus:"]="\U1f1e8\U1f1fe"
    [":czech_republic:"]="\U1f1e8\U1f1ff"
    [":dagger:"]="\U1f5e1\Ufe0f"
    [":dancers:"]="\U1f46f"
    [":dancer_tone1:"]="\U1f483\U1f3fb"
    [":dancer_tone2:"]="\U1f483\U1f3fc"
    [":dancer_tone3:"]="\U1f483\U1f3fd"
    [":dancer_tone4:"]="\U1f483\U1f3fe"
    [":dancer_tone5:"]="\U1f483\U1f3ff"
    [":dancer:"]="\U1f483"
    [":dancer:"]="\U1f483"
    [":dancing_men:"]="\U1f46f\U200d\U2642\Ufe0f"
    [":dancing_women:"]="\U1f46f\U200d\U2640\Ufe0f"
    [":dango:"]="\U1f361"
    [":dark_sunglasses:"]="\U1f576\Ufe0f"
    [":dart:"]="\U1f3af"
    [":dash:"]="\U1f4a8"
    [":date:"]="\U1f4c5"
    [":deaf_man:"]="\U1f9cf\U200d\U2642\Ufe0f"
    [":deaf_person:"]="\U1f9cf"
    [":deaf_woman:"]="\U1f9cf\U200d\U2640\Ufe0f"
    [":deciduous_tree:"]="\U1f333"
    [":deer:"]="\U1f98c"
    [":denmark:"]="\U1f1e9\U1f1f0"
    [":department_store:"]="\U1f3ec"
    [":desert:"]="\U1f3dc"
    [":desktop:"]="\U1f5a5"
    [":derelict_house:"]="\U1f3da\Ufe0f"
    [":desert_island:"]="\U1f3dd\Ufe0f"
    [":desert:"]="\U1f3dc\Ufe0f"
    [":desktop_computer:"]="\U1f5a5\Ufe0f"
    [":detective:"]="\U1f575\Ufe0f"
    [":de:"]="\U1f1e9\U1f1ea"
    [":diamond_shape_with_a_dot_inside:"]="\U1f4a0"
    [":diamonds:"]="\U2666"
    [":diamonds:"]="\U2666\Ufe0f"
    [":diego_garcia:"]="\U1f1e9\U1f1ec"
    [":disappointed_relieved:"]="\U1f625"
    [":disappointed:"]="\U1f61e"
    [":dividers:"]="\U1f5c2"
    [":diving_mask:"]="\U1f93f"
    [":diya_lamp:"]="\U1fa94"
    [":dizzy_face:"]="\U1f635"
    [":dizzy:"]="\U1f4ab"
    [":djibouti:"]="\U1f1e9\U1f1ef"
    [":dna:"]="\U1f9ec"
    [":dog2:"]="\U1f415"
    [":dog:"]="\U1f436"
    [":dollar:"]="\U1f4b5"
    [":dolls:"]="\U1f38e"
    [":dolphin:"]="\U1f42c"
    [":dominican_republic:"]="\U1f1e9\U1f1f4"
    [":dominica:"]="\U1f1e9\U1f1f2"
    [":do_not_litter:"]="\U1f6af"
    [":door:"]="\U1f6aa"
    [":doughnut:"]="\U1f369"
    [":dove:"]="\U1f54a"
    [":dove:"]="\U1f54a\Ufe0f"
    [":dragon_face:"]="\U1f432"
    [":dragon:"]="\U1f409"
    [":dress:"]="\U1f457"
    [":dromedary_camel:"]="\U1f42a"
    [":drooling_face:"]="\U1f924"
    [":droplet:"]="\U1f4a7"
    [":drop_of_blood:"]="\U1fa78"
    [":drum:"]="\U1f941"
    [":duck:"]="\U1f986"
    [":dumpling:"]="\U1f95f"
    [":dvd:"]="\U1f4c0"
    [":eagle:"]="\U1f985"
    [":ear_of_rice:"]="\U1f33e"
    [":earth_africa:"]="\U1f30d"
    [":earth_americas:"]="\U1f30e"
    [":earth_asia:"]="\U1f30f"
    [":ear_tone1:"]="\U1f442\U1f3fb"
    [":ear_tone2:"]="\U1f442\U1f3fc"
    [":ear_tone3:"]="\U1f442\U1f3fd"
    [":ear_tone4:"]="\U1f442\U1f3fe"
    [":ear_tone5:"]="\U1f442\U1f3ff"
    [":ear:"]="\U1f442"
    [":ear_with_hearing_aid:"]="\U1f9bb"
    [":ecuador:"]="\U1f1ea\U1f1e8"
    [":eggplant:"]="\U1f346"
    [":egg:"]="\U1f95a"
    [":eight_pointed_black_star:"]="\U2734"
    [":eight_spoked_asterisk:"]="\U2733"
    [":eight:"]="\U0038\U20e3"
    [":eject:"]="\U23cf"
    [":egypt:"]="\U1f1ea\U1f1ec"
    [":eight_pointed_black_star:"]="\U2734\Ufe0f"
    [":eight_spoked_asterisk:"]="\U2733\Ufe0f"
    [":eight:"]="\U38\Ufe0f\U20e3"
    [":eject_button:"]="\U23cf\Ufe0f"
    [":electric_plug:"]="\U1f50c"
    [":elephant:"]="\U1f418"
    [":elf_man:"]="\U1f9dd\U200d\U2642\Ufe0f"
    [":elf:"]="\U1f9dd"
    [":elf_woman:"]="\U1f9dd\U200d\U2640\Ufe0f"
    [":el_salvador:"]="\U1f1f8\U1f1fb"
    [":e-mail:"]="\U1f4e7"
    [":email:"]="\U2709\Ufe0f"
    [":end:"]="\U1f51a"
    [":envelope:"]="\U2709"
    [":england:"]="\U1f3f4\Ue0067\Ue0062\Ue0065\Ue006e\Ue0067\Ue007f"
    [":envelope:"]="\U2709\Ufe0f"
    [":envelope_with_arrow:"]="\U1f4e9"
    [":equatorial_guinea:"]="\U1f1ec\U1f1f6"
    [":eritrea:"]="\U1f1ea\U1f1f7"
    [":estonia:"]="\U1f1ea\U1f1ea"
    [":es:"]="\U1f1ea\U1f1f8"
    [":ethiopia:"]="\U1f1ea\U1f1f9"
    [":european_castle:"]="\U1f3f0"
    [":european_post_office:"]="\U1f3e4"
    [":european_union:"]="\U1f1ea\U1f1fa"
    [":euro:"]="\U1f4b6"
    [":eu:"]="\U1f1ea\U1f1fa"
    [":evergreen_tree:"]="\U1f332"
    [":exclamation:"]="\U2757"
    [":exploding_head:"]="\U1f92f"
    [":expressionless:"]="\U1f611"
    [":eye_in_speech_bubble:"]="\U1f441\U1f5e8"
    [":face_palm_tone1:"]="\U1f926\U1f3fb"
    [":face_palm_tone2:"]="\U1f926\U1f3fc"
    [":face_palm_tone3:"]="\U1f926\U1f3fd"
    [":face_palm_tone4:"]="\U1f926\U1f3fe"
    [":face_palm_tone5:"]="\U1f926\U1f3ff"
    [":face_palm:"]="\U1f926"
    [":face_palm:"]="\U1f926"
    [":eyeglasses:"]="\U1f453"
    [":eye_speech_bubble:"]="\U1f441\Ufe0f\U200d\U1f5e8\Ufe0f"
    [":eyes:"]="\U1f440"
    [":eye:"]="\U1f441\Ufe0f"
    [":facepalm:"]="\U1f926"
    [":facepunch:"]="\U1f44a"
    [":face_with_head_bandage:"]="\U1f915"
    [":face_with_thermometer:"]="\U1f912"
    [":factory:"]="\U1f3ed"
    [":fairy_man:"]="\U1f9da\U200d\U2642\Ufe0f"
    [":fairy:"]="\U1f9da"
    [":fairy_woman:"]="\U1f9da\U200d\U2640\Ufe0f"
    [":falafel:"]="\U1f9c6"
    [":falkland_islands:"]="\U1f1eb\U1f1f0"
    [":fallen_leaf:"]="\U1f342"
    [":family_man_boy_boy:"]="\U1f468\U200d\U1f466\U200d\U1f466"
    [":family_man_boy:"]="\U1f468\U200d\U1f466"
    [":family_man_girl_boy:"]="\U1f468\U200d\U1f467\U200d\U1f466"
    [":family_man_girl_girl:"]="\U1f468\U200d\U1f467\U200d\U1f467"
    [":family_man_girl:"]="\U1f468\U200d\U1f467"
    [":family_man_man_boy_boy:"]="\U1f468\U200d\U1f468\U200d\U1f466\U200d\U1f466"
    [":family_man_man_boy:"]="\U1f468\U200d\U1f468\U200d\U1f466"
    [":family_man_man_girl_boy:"]="\U1f468\U200d\U1f468\U200d\U1f467\U200d\U1f466"
    [":family_man_man_girl_girl:"]="\U1f468\U200d\U1f468\U200d\U1f467\U200d\U1f467"
    [":family_man_man_girl:"]="\U1f468\U200d\U1f468\U200d\U1f467"
    [":family_man_woman_boy_boy:"]="\U1f468\U200d\U1f469\U200d\U1f466\U200d\U1f466"
    [":family_man_woman_boy:"]="\U1f468\U200d\U1f469\U200d\U1f466"
    [":family_man_woman_girl_boy:"]="\U1f468\U200d\U1f469\U200d\U1f467\U200d\U1f466"
    [":family_man_woman_girl_girl:"]="\U1f468\U200d\U1f469\U200d\U1f467\U200d\U1f467"
    [":family_man_woman_girl:"]="\U1f468\U200d\U1f469\U200d\U1f467"
    [":family:"]="\U1f46a"
    [":family_woman_boy_boy:"]="\U1f469\U200d\U1f466\U200d\U1f466"
    [":family_woman_boy:"]="\U1f469\U200d\U1f466"
    [":family_woman_girl_boy:"]="\U1f469\U200d\U1f467\U200d\U1f466"
    [":family_woman_girl_girl:"]="\U1f469\U200d\U1f467\U200d\U1f467"
    [":family_woman_girl:"]="\U1f469\U200d\U1f467"
    [":family_woman_woman_boy_boy:"]="\U1f469\U200d\U1f469\U200d\U1f466\U200d\U1f466"
    [":family_woman_woman_boy:"]="\U1f469\U200d\U1f469\U200d\U1f466"
    [":family_woman_woman_girl_boy:"]="\U1f469\U200d\U1f469\U200d\U1f467\U200d\U1f466"
    [":family_woman_woman_girl_girl:"]="\U1f469\U200d\U1f469\U200d\U1f467\U200d\U1f467"
    [":family_woman_woman_girl:"]="\U1f469\U200d\U1f469\U200d\U1f467"
    [":faroe_islands:"]="\U1f1eb\U1f1f4"
    [":fast_forward:"]="\U23e9"
    [":fax:"]="\U1f4e0"
    [":fearful:"]="\U1f628"
    [":feet:"]="\U1f43e"
    [":fencer:"]="\U1f93a"
    [":female_detective:"]="\U1f575\Ufe0f\U200d\U2640\Ufe0f"
    [":female_sign:"]="\U2640\Ufe0f"
    [":ferris_wheel:"]="\U1f3a1"
    [":ferry:"]="\U26f4"
    [":ferry:"]="\U26f4\Ufe0f"
    [":field_hockey:"]="\U1f3d1"
    [":file_cabinet:"]="\U1f5c4"
    [":fiji:"]="\U1f1eb\U1f1ef"
    [":file_cabinet:"]="\U1f5c4\Ufe0f"
    [":file_folder:"]="\U1f4c1"
    [":film_frames:"]="\U1f39e"
    [":fingers_crossed_tone1:"]="\U1f91e\U1f3fb"
    [":fingers_crossed_tone2:"]="\U1f91e\U1f3fc"
    [":fingers_crossed_tone3:"]="\U1f91e\U1f3fd"
    [":fingers_crossed_tone4:"]="\U1f91e\U1f3fe"
    [":fingers_crossed_tone5:"]="\U1f91e\U1f3ff"
    [":fingers_crossed:"]="\U1f91e"
    [":film_projector:"]="\U1f4fd\Ufe0f"
    [":film_strip:"]="\U1f39e\Ufe0f"
    [":finland:"]="\U1f1eb\U1f1ee"
    [":firecracker:"]="\U1f9e8"
    [":fire_engine:"]="\U1f692"
    [":fire_extinguisher:"]="\U1f9ef"
    [":fire:"]="\U1f525"
    [":fireworks:"]="\U1f386"
    [":first_place:"]="\U1f947"
    [":first_quarter_moon:"]="\U1f313"
    [":first_quarter_moon_with_face:"]="\U1f31b"
    [":fish_cake:"]="\U1f365"
    [":fishing_pole_and_fish:"]="\U1f3a3"
    [":fish:"]="\U1f41f"
    [":fist_tone1:"]="\U270a\U1f3fb"
    [":fist_tone2:"]="\U270a\U1f3fc"
    [":fist_tone3:"]="\U270a\U1f3fd"
    [":fist_tone4:"]="\U270a\U1f3fe"
    [":fist_tone5:"]="\U270a\U1f3ff"
    [":fist_left:"]="\U1f91b"
    [":fist_oncoming:"]="\U1f44a"
    [":fist_raised:"]="\U270a"
    [":fist_right:"]="\U1f91c"
    [":fist:"]="\U270a"
    [":five:"]="\U0035\U20e3"
    [":flag_ac:"]="\U1f1e6\U1f1e8"
    [":flag_ad:"]="\U1f1e6\U1f1e9"
    [":flag_ae:"]="\U1f1e6\U1f1ea"
    [":flag_af:"]="\U1f1e6\U1f1eb"
    [":flag_ag:"]="\U1f1e6\U1f1ec"
    [":flag_ai:"]="\U1f1e6\U1f1ee"
    [":flag_al:"]="\U1f1e6\U1f1f1"
    [":flag_am:"]="\U1f1e6\U1f1f2"
    [":flag_ao:"]="\U1f1e6\U1f1f4"
    [":flag_aq:"]="\U1f1e6\U1f1f6"
    [":flag_ar:"]="\U1f1e6\U1f1f7"
    [":flag_as:"]="\U1f1e6\U1f1f8"
    [":flag_at:"]="\U1f1e6\U1f1f9"
    [":flag_au:"]="\U1f1e6\U1f1fa"
    [":flag_aw:"]="\U1f1e6\U1f1fc"
    [":flag_ax:"]="\U1f1e6\U1f1fd"
    [":flag_az:"]="\U1f1e6\U1f1ff"
    [":flag_ba:"]="\U1f1e7\U1f1e6"
    [":flag_bb:"]="\U1f1e7\U1f1e7"
    [":flag_bd:"]="\U1f1e7\U1f1e9"
    [":flag_be:"]="\U1f1e7\U1f1ea"
    [":flag_bf:"]="\U1f1e7\U1f1eb"
    [":flag_bg:"]="\U1f1e7\U1f1ec"
    [":flag_bh:"]="\U1f1e7\U1f1ed"
    [":flag_bi:"]="\U1f1e7\U1f1ee"
    [":flag_bj:"]="\U1f1e7\U1f1ef"
    [":flag_black:"]="\U1f3f4"
    [":flag_bl:"]="\U1f1e7\U1f1f1"
    [":flag_bm:"]="\U1f1e7\U1f1f2"
    [":flag_bn:"]="\U1f1e7\U1f1f3"
    [":flag_bo:"]="\U1f1e7\U1f1f4"
    [":flag_bq:"]="\U1f1e7\U1f1f6"
    [":flag_br:"]="\U1f1e7\U1f1f7"
    [":flag_bs:"]="\U1f1e7\U1f1f8"
    [":flag_bt:"]="\U1f1e7\U1f1f9"
    [":flag_bv:"]="\U1f1e7\U1f1fb"
    [":flag_bw:"]="\U1f1e7\U1f1fc"
    [":flag_by:"]="\U1f1e7\U1f1fe"
    [":flag_bz:"]="\U1f1e7\U1f1ff"
    [":flag_ca:"]="\U1f1e8\U1f1e6"
    [":flag_cc:"]="\U1f1e8\U1f1e8"
    [":flag_cd:"]="\U1f1e8\U1f1e9"
    [":flag_cf:"]="\U1f1e8\U1f1eb"
    [":flag_cg:"]="\U1f1e8\U1f1ec"
    [":flag_ch:"]="\U1f1e8\U1f1ed"
    [":flag_ci:"]="\U1f1e8\U1f1ee"
    [":flag_ck:"]="\U1f1e8\U1f1f0"
    [":flag_cl:"]="\U1f1e8\U1f1f1"
    [":flag_cm:"]="\U1f1e8\U1f1f2"
    [":flag_cn:"]="\U1f1e8\U1f1f3"
    [":flag_co:"]="\U1f1e8\U1f1f4"
    [":flag_cp:"]="\U1f1e8\U1f1f5"
    [":flag_cr:"]="\U1f1e8\U1f1f7"
    [":flag_cu:"]="\U1f1e8\U1f1fa"
    [":flag_cv:"]="\U1f1e8\U1f1fb"
    [":flag_cw:"]="\U1f1e8\U1f1fc"
    [":flag_cx:"]="\U1f1e8\U1f1fd"
    [":flag_cy:"]="\U1f1e8\U1f1fe"
    [":flag_cz:"]="\U1f1e8\U1f1ff"
    [":flag_de:"]="\U1f1e9\U1f1ea"
    [":flag_dg:"]="\U1f1e9\U1f1ec"
    [":flag_dj:"]="\U1f1e9\U1f1ef"
    [":flag_dk:"]="\U1f1e9\U1f1f0"
    [":flag_dm:"]="\U1f1e9\U1f1f2"
    [":flag_do:"]="\U1f1e9\U1f1f4"
    [":flag_dz:"]="\U1f1e9\U1f1ff"
    [":flag_ea:"]="\U1f1ea\U1f1e6"
    [":flag_ec:"]="\U1f1ea\U1f1e8"
    [":flag_ee:"]="\U1f1ea\U1f1ea"
    [":flag_eg:"]="\U1f1ea\U1f1ec"
    [":flag_eh:"]="\U1f1ea\U1f1ed"
    [":flag_er:"]="\U1f1ea\U1f1f7"
    [":flag_es:"]="\U1f1ea\U1f1f8"
    [":flag_et:"]="\U1f1ea\U1f1f9"
    [":flag_eu:"]="\U1f1ea\U1f1fa"
    [":flag_fi:"]="\U1f1eb\U1f1ee"
    [":flag_fj:"]="\U1f1eb\U1f1ef"
    [":flag_fk:"]="\U1f1eb\U1f1f0"
    [":flag_fm:"]="\U1f1eb\U1f1f2"
    [":flag_fo:"]="\U1f1eb\U1f1f4"
    [":flag_fr:"]="\U1f1eb\U1f1f7"
    [":flag_ga:"]="\U1f1ec\U1f1e6"
    [":flag_gb:"]="\U1f1ec\U1f1e7"
    [":flag_gd:"]="\U1f1ec\U1f1e9"
    [":flag_ge:"]="\U1f1ec\U1f1ea"
    [":flag_gf:"]="\U1f1ec\U1f1eb"
    [":flag_gg:"]="\U1f1ec\U1f1ec"
    [":flag_gh:"]="\U1f1ec\U1f1ed"
    [":flag_gi:"]="\U1f1ec\U1f1ee"
    [":flag_gl:"]="\U1f1ec\U1f1f1"
    [":flag_gm:"]="\U1f1ec\U1f1f2"
    [":flag_gn:"]="\U1f1ec\U1f1f3"
    [":flag_gp:"]="\U1f1ec\U1f1f5"
    [":flag_gq:"]="\U1f1ec\U1f1f6"
    [":flag_gr:"]="\U1f1ec\U1f1f7"
    [":flag_gs:"]="\U1f1ec\U1f1f8"
    [":flag_gt:"]="\U1f1ec\U1f1f9"
    [":flag_gu:"]="\U1f1ec\U1f1fa"
    [":flag_gw:"]="\U1f1ec\U1f1fc"
    [":flag_gy:"]="\U1f1ec\U1f1fe"
    [":flag_hk:"]="\U1f1ed\U1f1f0"
    [":flag_hm:"]="\U1f1ed\U1f1f2"
    [":flag_hn:"]="\U1f1ed\U1f1f3"
    [":flag_hr:"]="\U1f1ed\U1f1f7"
    [":flag_ht:"]="\U1f1ed\U1f1f9"
    [":flag_hu:"]="\U1f1ed\U1f1fa"
    [":flag_ic:"]="\U1f1ee\U1f1e8"
    [":flag_id:"]="\U1f1ee\U1f1e9"
    [":flag_ie:"]="\U1f1ee\U1f1ea"
    [":flag_il:"]="\U1f1ee\U1f1f1"
    [":flag_im:"]="\U1f1ee\U1f1f2"
    [":flag_in:"]="\U1f1ee\U1f1f3"
    [":flag_io:"]="\U1f1ee\U1f1f4"
    [":flag_iq:"]="\U1f1ee\U1f1f6"
    [":flag_ir:"]="\U1f1ee\U1f1f7"
    [":flag_is:"]="\U1f1ee\U1f1f8"
    [":flag_it:"]="\U1f1ee\U1f1f9"
    [":flag_je:"]="\U1f1ef\U1f1ea"
    [":flag_jm:"]="\U1f1ef\U1f1f2"
    [":flag_jo:"]="\U1f1ef\U1f1f4"
    [":flag_jp:"]="\U1f1ef\U1f1f5"
    [":flag_ke:"]="\U1f1f0\U1f1ea"
    [":flag_kg:"]="\U1f1f0\U1f1ec"
    [":flag_kh:"]="\U1f1f0\U1f1ed"
    [":flag_ki:"]="\U1f1f0\U1f1ee"
    [":flag_km:"]="\U1f1f0\U1f1f2"
    [":flag_kn:"]="\U1f1f0\U1f1f3"
    [":flag_kp:"]="\U1f1f0\U1f1f5"
    [":flag_kr:"]="\U1f1f0\U1f1f7"
    [":flag_kw:"]="\U1f1f0\U1f1fc"
    [":flag_ky:"]="\U1f1f0\U1f1fe"
    [":flag_kz:"]="\U1f1f0\U1f1ff"
    [":flag_la:"]="\U1f1f1\U1f1e6"
    [":flag_lb:"]="\U1f1f1\U1f1e7"
    [":flag_lc:"]="\U1f1f1\U1f1e8"
    [":flag_li:"]="\U1f1f1\U1f1ee"
    [":flag_lk:"]="\U1f1f1\U1f1f0"
    [":flag_lr:"]="\U1f1f1\U1f1f7"
    [":flag_ls:"]="\U1f1f1\U1f1f8"
    [":flag_lt:"]="\U1f1f1\U1f1f9"
    [":flag_lu:"]="\U1f1f1\U1f1fa"
    [":flag_lv:"]="\U1f1f1\U1f1fb"
    [":flag_ly:"]="\U1f1f1\U1f1fe"
    [":flag_ma:"]="\U1f1f2\U1f1e6"
    [":flag_mc:"]="\U1f1f2\U1f1e8"
    [":flag_md:"]="\U1f1f2\U1f1e9"
    [":flag_me:"]="\U1f1f2\U1f1ea"
    [":flag_mf:"]="\U1f1f2\U1f1eb"
    [":flag_mg:"]="\U1f1f2\U1f1ec"
    [":flag_mh:"]="\U1f1f2\U1f1ed"
    [":flag_mk:"]="\U1f1f2\U1f1f0"
    [":flag_ml:"]="\U1f1f2\U1f1f1"
    [":flag_mm:"]="\U1f1f2\U1f1f2"
    [":flag_mn:"]="\U1f1f2\U1f1f3"
    [":flag_mo:"]="\U1f1f2\U1f1f4"
    [":flag_mp:"]="\U1f1f2\U1f1f5"
    [":flag_mq:"]="\U1f1f2\U1f1f6"
    [":flag_mr:"]="\U1f1f2\U1f1f7"
    [":flag_ms:"]="\U1f1f2\U1f1f8"
    [":flag_mt:"]="\U1f1f2\U1f1f9"
    [":flag_mu:"]="\U1f1f2\U1f1fa"
    [":flag_mv:"]="\U1f1f2\U1f1fb"
    [":flag_mw:"]="\U1f1f2\U1f1fc"
    [":flag_mx:"]="\U1f1f2\U1f1fd"
    [":flag_my:"]="\U1f1f2\U1f1fe"
    [":flag_mz:"]="\U1f1f2\U1f1ff"
    [":flag_na:"]="\U1f1f3\U1f1e6"
    [":flag_nc:"]="\U1f1f3\U1f1e8"
    [":flag_ne:"]="\U1f1f3\U1f1ea"
    [":flag_nf:"]="\U1f1f3\U1f1eb"
    [":flag_ng:"]="\U1f1f3\U1f1ec"
    [":flag_ni:"]="\U1f1f3\U1f1ee"
    [":flag_nl:"]="\U1f1f3\U1f1f1"
    [":flag_no:"]="\U1f1f3\U1f1f4"
    [":flag_np:"]="\U1f1f3\U1f1f5"
    [":flag_nr:"]="\U1f1f3\U1f1f7"
    [":flag_nu:"]="\U1f1f3\U1f1fa"
    [":flag_nz:"]="\U1f1f3\U1f1ff"
    [":flag_om:"]="\U1f1f4\U1f1f2"
    [":flag_pa:"]="\U1f1f5\U1f1e6"
    [":flag_pe:"]="\U1f1f5\U1f1ea"
    [":flag_pf:"]="\U1f1f5\U1f1eb"
    [":flag_pg:"]="\U1f1f5\U1f1ec"
    [":flag_ph:"]="\U1f1f5\U1f1ed"
    [":flag_pk:"]="\U1f1f5\U1f1f0"
    [":flag_pl:"]="\U1f1f5\U1f1f1"
    [":flag_pm:"]="\U1f1f5\U1f1f2"
    [":flag_pn:"]="\U1f1f5\U1f1f3"
    [":flag_pr:"]="\U1f1f5\U1f1f7"
    [":flag_ps:"]="\U1f1f5\U1f1f8"
    [":flag_pt:"]="\U1f1f5\U1f1f9"
    [":flag_pw:"]="\U1f1f5\U1f1fc"
    [":flag_py:"]="\U1f1f5\U1f1fe"
    [":flag_qa:"]="\U1f1f6\U1f1e6"
    [":flag_re:"]="\U1f1f7\U1f1ea"
    [":flag_ro:"]="\U1f1f7\U1f1f4"
    [":flag_rs:"]="\U1f1f7\U1f1f8"
    [":flag_ru:"]="\U1f1f7\U1f1fa"
    [":flag_rw:"]="\U1f1f7\U1f1fc"
    [":flag_sa:"]="\U1f1f8\U1f1e6"
    [":flag_sb:"]="\U1f1f8\U1f1e7"
    [":flag_sc:"]="\U1f1f8\U1f1e8"
    [":flag_sd:"]="\U1f1f8\U1f1e9"
    [":flag_se:"]="\U1f1f8\U1f1ea"
    [":flag_sg:"]="\U1f1f8\U1f1ec"
    [":flag_sh:"]="\U1f1f8\U1f1ed"
    [":flag_si:"]="\U1f1f8\U1f1ee"
    [":flag_sj:"]="\U1f1f8\U1f1ef"
    [":flag_sk:"]="\U1f1f8\U1f1f0"
    [":flag_sl:"]="\U1f1f8\U1f1f1"
    [":flag_sm:"]="\U1f1f8\U1f1f2"
    [":flag_sn:"]="\U1f1f8\U1f1f3"
    [":flag_so:"]="\U1f1f8\U1f1f4"
    [":flag_sr:"]="\U1f1f8\U1f1f7"
    [":flag_ss:"]="\U1f1f8\U1f1f8"
    [":flag_st:"]="\U1f1f8\U1f1f9"
    [":five:"]="\U35\Ufe0f\U20e3"
    [":flags:"]="\U1f38f"
    [":flag_sv:"]="\U1f1f8\U1f1fb"
    [":flag_sx:"]="\U1f1f8\U1f1fd"
    [":flag_sy:"]="\U1f1f8\U1f1fe"
    [":flag_sz:"]="\U1f1f8\U1f1ff"
    [":flag_ta:"]="\U1f1f9\U1f1e6"
    [":flag_tc:"]="\U1f1f9\U1f1e8"
    [":flag_td:"]="\U1f1f9\U1f1e9"
    [":flag_tf:"]="\U1f1f9\U1f1eb"
    [":flag_tg:"]="\U1f1f9\U1f1ec"
    [":flag_th:"]="\U1f1f9\U1f1ed"
    [":flag_tj:"]="\U1f1f9\U1f1ef"
    [":flag_tk:"]="\U1f1f9\U1f1f0"
    [":flag_tl:"]="\U1f1f9\U1f1f1"
    [":flag_tm:"]="\U1f1f9\U1f1f2"
    [":flag_tn:"]="\U1f1f9\U1f1f3"
    [":flag_to:"]="\U1f1f9\U1f1f4"
    [":flag_tr:"]="\U1f1f9\U1f1f7"
    [":flag_tt:"]="\U1f1f9\U1f1f9"
    [":flag_tv:"]="\U1f1f9\U1f1fb"
    [":flag_tw:"]="\U1f1f9\U1f1fc"
    [":flag_tz:"]="\U1f1f9\U1f1ff"
    [":flag_ua:"]="\U1f1fa\U1f1e6"
    [":flag_ug:"]="\U1f1fa\U1f1ec"
    [":flag_um:"]="\U1f1fa\U1f1f2"
    [":flag_us:"]="\U1f1fa\U1f1f8"
    [":flag_uy:"]="\U1f1fa\U1f1fe"
    [":flag_uz:"]="\U1f1fa\U1f1ff"
    [":flag_va:"]="\U1f1fb\U1f1e6"
    [":flag_vc:"]="\U1f1fb\U1f1e8"
    [":flag_ve:"]="\U1f1fb\U1f1ea"
    [":flag_vg:"]="\U1f1fb\U1f1ec"
    [":flag_vi:"]="\U1f1fb\U1f1ee"
    [":flag_vn:"]="\U1f1fb\U1f1f3"
    [":flag_vu:"]="\U1f1fb\U1f1fa"
    [":flag_wf:"]="\U1f1fc\U1f1eb"
    [":flag_white:"]="\U1f3f3"
    [":flag_ws:"]="\U1f1fc\U1f1f8"
    [":flag_xk:"]="\U1f1fd\U1f1f0"
    [":flag_ye:"]="\U1f1fe\U1f1ea"
    [":flag_yt:"]="\U1f1fe\U1f1f9"
    [":flag_za:"]="\U1f1ff\U1f1e6"
    [":flag_zm:"]="\U1f1ff\U1f1f2"
    [":flag_zw:"]="\U1f1ff\U1f1fc"
    [":flamingo:"]="\U1f9a9"
    [":flashlight:"]="\U1f526"
    [":fleur-de-lis:"]="\U269c"
    [":flat_shoe:"]="\U1f97f"
    [":fleur_de_lis:"]="\U269c\Ufe0f"
    [":flight_arrival:"]="\U1f6ec"
    [":flight_departure:"]="\U1f6eb"
    [":flipper:"]="\U1f42c"
    [":floppy_disk:"]="\U1f4be"
    [":flower_playing_cards:"]="\U1f3b4"
    [":flushed:"]="\U1f633"
    [":flying_disc:"]="\U1f94f"
    [":flying_saucer:"]="\U1f6f8"
    [":foggy:"]="\U1f301"
    [":fog:"]="\U1f32b"
    [":fog:"]="\U1f32b\Ufe0f"
    [":football:"]="\U1f3c8"
    [":footprints:"]="\U1f463"
    [":foot:"]="\U1f9b6"
    [":fork_and_knife:"]="\U1f374"
    [":fork_knife_plate:"]="\U1f37d"
    [":fortune_cookie:"]="\U1f960"
    [":fountain_pen:"]="\U1f58b\Ufe0f"
    [":fountain:"]="\U26f2"
    [":four_leaf_clover:"]="\U1f340"
    [":four:"]="\U0034\U20e3"
    [":fox:"]="\U1f98a"
    [":frame_photo:"]="\U1f5bc"
    [":four:"]="\U34\Ufe0f\U20e3"
    [":fox_face:"]="\U1f98a"
    [":framed_picture:"]="\U1f5bc\Ufe0f"
    [":free:"]="\U1f193"
    [":french_bread:"]="\U1f956"
    [":french_guiana:"]="\U1f1ec\U1f1eb"
    [":french_polynesia:"]="\U1f1f5\U1f1eb"
    [":french_southern_territories:"]="\U1f1f9\U1f1eb"
    [":fried_egg:"]="\U1f373"
    [":fried_shrimp:"]="\U1f364"
    [":fries:"]="\U1f35f"
    [":frog:"]="\U1f438"
    [":frowning2:"]="\U2639"
    [":frowning_face:"]="\U2639\Ufe0f"
    [":frowning_man:"]="\U1f64d\U200d\U2642\Ufe0f"
    [":frowning_person:"]="\U1f64d"
    [":frowning:"]="\U1f626"
    [":frowning_woman:"]="\U1f64d\U200d\U2640\Ufe0f"
    [":fr:"]="\U1f1eb\U1f1f7"
    [":fuelpump:"]="\U26fd"
    [":full_moon:"]="\U1f315"
    [":full_moon_with_face:"]="\U1f31d"
    [":funeral_urn:"]="\U26b1\Ufe0f"
    [":fu:"]="\U1f595"
    [":gabon:"]="\U1f1ec\U1f1e6"
    [":gambia:"]="\U1f1ec\U1f1f2"
    [":game_die:"]="\U1f3b2"
    [":gear:"]="\U2699"
    [":garlic:"]="\U1f9c4"
    [":gb:"]="\U1f1ec\U1f1e7"
    [":gear:"]="\U2699\Ufe0f"
    [":gemini:"]="\U264a"
    [":gem:"]="\U1f48e"
    [":genie_man:"]="\U1f9de\U200d\U2642\Ufe0f"
    [":genie:"]="\U1f9de"
    [":genie_woman:"]="\U1f9de\U200d\U2640\Ufe0f"
    [":georgia:"]="\U1f1ec\U1f1ea"
    [":ghana:"]="\U1f1ec\U1f1ed"
    [":ghost:"]="\U1f47b"
    [":gibraltar:"]="\U1f1ec\U1f1ee"
    [":gift_heart:"]="\U1f49d"
    [":gift:"]="\U1f381"
    [":girl_tone1:"]="\U1f467\U1f3fb"
    [":girl_tone2:"]="\U1f467\U1f3fc"
    [":girl_tone3:"]="\U1f467\U1f3fd"
    [":girl_tone4:"]="\U1f467\U1f3fe"
    [":girl_tone5:"]="\U1f467\U1f3ff"
    [":girl:"]="\U1f467"
    [":giraffe:"]="\U1f992"
    [":girl:"]="\U1f467"
    [":globe_with_meridians:"]="\U1f310"
    [":goal:"]="\U1f945"
    [":gloves:"]="\U1f9e4"
    [":goal_net:"]="\U1f945"
    [":goat:"]="\U1f410"
    [":golfer:"]="\U1f3cc"
    [":goggles:"]="\U1f97d"
    [":golfing_man:"]="\U1f3cc\Ufe0f\U200d\U2642\Ufe0f"
    [":golfing:"]="\U1f3cc\Ufe0f"
    [":golfing_woman:"]="\U1f3cc\Ufe0f\U200d\U2640\Ufe0f"
    [":golf:"]="\U26f3"
    [":gorilla:"]="\U1f98d"
    [":grapes:"]="\U1f347"
    [":greece:"]="\U1f1ec\U1f1f7"
    [":green_apple:"]="\U1f34f"
    [":green_book:"]="\U1f4d7"
    [":green_circle:"]="\U1f7e2"
    [":green_heart:"]="\U1f49a"
    [":greenland:"]="\U1f1ec\U1f1f1"
    [":green_salad:"]="\U1f957"
    [":green_square:"]="\U1f7e9"
    [":grenada:"]="\U1f1ec\U1f1e9"
    [":grey_exclamation:"]="\U2755"
    [":grey_question:"]="\U2754"
    [":grimacing:"]="\U1f62c"
    [":grinning:"]="\U1f600"
    [":grin:"]="\U1f601"
    [":guardsman_tone1:"]="\U1f482\U1f3fb"
    [":guardsman_tone2:"]="\U1f482\U1f3fc"
    [":guardsman_tone3:"]="\U1f482\U1f3fd"
    [":guardsman_tone4:"]="\U1f482\U1f3fe"
    [":guardsman_tone5:"]="\U1f482\U1f3ff"
    [":guardsman:"]="\U1f482"
    [":guardsman:"]="\U1f482"
    [":guadeloupe:"]="\U1f1ec\U1f1f5"
    [":guam:"]="\U1f1ec\U1f1fa"
    [":guardsman:"]="\U1f482\U200d\U2642\Ufe0f"
    [":guardswoman:"]="\U1f482\U200d\U2640\Ufe0f"
    [":guard:"]="\U1f482"
    [":guatemala:"]="\U1f1ec\U1f1f9"
    [":guernsey:"]="\U1f1ec\U1f1ec"
    [":guide_dog:"]="\U1f9ae"
    [":guinea_bissau:"]="\U1f1ec\U1f1fc"
    [":guinea:"]="\U1f1ec\U1f1f3"
    [":guitar:"]="\U1f3b8"
    [":gun:"]="\U1f52b"
    [":haircut_tone1:"]="\U1f487\U1f3fb"
    [":haircut_tone2:"]="\U1f487\U1f3fc"
    [":haircut_tone3:"]="\U1f487\U1f3fd"
    [":haircut_tone4:"]="\U1f487\U1f3fe"
    [":haircut_tone5:"]="\U1f487\U1f3ff"
    [":haircut:"]="\U1f487"
    [":guyana:"]="\U1f1ec\U1f1fe"
    [":haircut_man:"]="\U1f487\U200d\U2642\Ufe0f"
    [":haircut:"]="\U1f487"
    [":haircut_woman:"]="\U1f487\U200d\U2640\Ufe0f"
    [":haiti:"]="\U1f1ed\U1f1f9"
    [":hamburger:"]="\U1f354"
    [":hammer_pick:"]="\U2692"
    [":hammer_and_pick:"]="\U2692\Ufe0f"
    [":hammer_and_wrench:"]="\U1f6e0\Ufe0f"
    [":hammer:"]="\U1f528"
    [":hamster:"]="\U1f439"
    [":handball_tone1:"]="\U1f93e\U1f3fb"
    [":handball_tone2:"]="\U1f93e\U1f3fc"
    [":handball_tone3:"]="\U1f93e\U1f3fd"
    [":handball_tone4:"]="\U1f93e\U1f3fe"
    [":handball_tone5:"]="\U1f93e\U1f3ff"
    [":handball:"]="\U1f93e"
    [":handball:"]="\U1f93e"
    [":handshake_tone1:"]="\U1f91d\U1f3fb"
    [":handshake_tone2:"]="\U1f91d\U1f3fc"
    [":handshake_tone3:"]="\U1f91d\U1f3fd"
    [":handshake_tone4:"]="\U1f91d\U1f3fe"
    [":handshake_tone5:"]="\U1f91d\U1f3ff"
    [":handbag:"]="\U1f45c"
    [":handball_person:"]="\U1f93e"
    [":hand_over_mouth:"]="\U1f92d"
    [":handshake:"]="\U1f91d"
    [":hand_splayed_tone1:"]="\U1f590\U1f3fb"
    [":hand_splayed_tone2:"]="\U1f590\U1f3fc"
    [":hand_splayed_tone3:"]="\U1f590\U1f3fd"
    [":hand_splayed_tone4:"]="\U1f590\U1f3fe"
    [":hand_splayed_tone5:"]="\U1f590\U1f3ff"
    [":hand_splayed:"]="\U1f590"
    [":hand:"]="\U270b"
    [":hankey:"]="\U1f4a9"
    [":hash:"]="\U0023\U20e3"
    [":hash:"]="\U23\Ufe0f\U20e3"
    [":hatched_chick:"]="\U1f425"
    [":hatching_chick:"]="\U1f423"
    [":head_bandage:"]="\U1f915"
    [":headphones:"]="\U1f3a7"
    [":heard_mcdonald_islands:"]="\U1f1ed\U1f1f2"
    [":hear_no_evil:"]="\U1f649"
    [":heartbeat:"]="\U1f493"
    [":heart_decoration:"]="\U1f49f"
    [":heart_exclamation:"]="\U2763"
    [":heart_eyes_cat:"]="\U1f63b"
    [":heart_eyes:"]="\U1f60d"
    [":heartpulse:"]="\U1f497"
    [":hearts:"]="\U2665"
    [":heart:"]="\U2764"
    [":heavy_check_mark:"]="\U2714"
    [":hearts:"]="\U2665\Ufe0f"
    [":heart:"]="\U2764\Ufe0f"
    [":heavy_check_mark:"]="\U2714\Ufe0f"
    [":heavy_division_sign:"]="\U2797"
    [":heavy_dollar_sign:"]="\U1f4b2"
    [":heavy_exclamation_mark:"]="\U2757"
    [":heavy_heart_exclamation:"]="\U2763\Ufe0f"
    [":heavy_minus_sign:"]="\U2796"
    [":heavy_multiplication_x:"]="\U2716"
    [":heavy_multiplication_x:"]="\U2716\Ufe0f"
    [":heavy_plus_sign:"]="\U2795"
    [":hedgehog:"]="\U1f994"
    [":helicopter:"]="\U1f681"
    [":herb:"]="\U1f33f"
    [":hibiscus:"]="\U1f33a"
    [":high_brightness:"]="\U1f506"
    [":hockey:"]="\U1f3d2"
    [":hole:"]="\U1f573"
    [":homes:"]="\U1f3d8"
    [":high_heel:"]="\U1f460"
    [":hiking_boot:"]="\U1f97e"
    [":hindu_temple:"]="\U1f6d5"
    [":hippopotamus:"]="\U1f99b"
    [":hocho:"]="\U1f52a"
    [":hole:"]="\U1f573\Ufe0f"
    [":honduras:"]="\U1f1ed\U1f1f3"
    [":honeybee:"]="\U1f41d"
    [":honey_pot:"]="\U1f36f"
    [":horse_racing_tone1:"]="\U1f3c7\U1f3fb"
    [":horse_racing_tone2:"]="\U1f3c7\U1f3fc"
    [":horse_racing_tone3:"]="\U1f3c7\U1f3fd"
    [":horse_racing_tone4:"]="\U1f3c7\U1f3fe"
    [":horse_racing_tone5:"]="\U1f3c7\U1f3ff"
    [":horse_racing:"]="\U1f3c7"
    [":hong_kong:"]="\U1f1ed\U1f1f0"
    [":horse_racing:"]="\U1f3c7"
    [":horse:"]="\U1f434"
    [":hospital:"]="\U1f3e5"
    [":hotdog:"]="\U1f32d"
    [":hotel:"]="\U1f3e8"
    [":hot_pepper:"]="\U1f336"
    [":hotsprings:"]="\U2668"
    [":hot_face:"]="\U1f975"
    [":hot_pepper:"]="\U1f336\Ufe0f"
    [":hotsprings:"]="\U2668\Ufe0f"
    [":hourglass_flowing_sand:"]="\U23f3"
    [":hourglass:"]="\U231b"
    [":house_abandoned:"]="\U1f3da"
    [":houses:"]="\U1f3d8\Ufe0f"
    [":house:"]="\U1f3e0"
    [":house_with_garden:"]="\U1f3e1"
    [":hugging:"]="\U1f917"
    [":hugs:"]="\U1f917"
    [":hungary:"]="\U1f1ed\U1f1fa"
    [":hushed:"]="\U1f62f"
    [":icecream:"]="\U1f366"
    [":ice_cream:"]="\U1f368"
    [":ice_skate:"]="\U26f8"
    [":ice_cube:"]="\U1f9ca"
    [":ice_hockey:"]="\U1f3d2"
    [":iceland:"]="\U1f1ee\U1f1f8"
    [":ice_skate:"]="\U26f8\Ufe0f"
    [":ideograph_advantage:"]="\U1f250"
    [":id:"]="\U1f194"
    [":imp:"]="\U1f47f"
    [":inbox_tray:"]="\U1f4e5"
    [":incoming_envelope:"]="\U1f4e8"
    [":information_desk_person_tone1:"]="\U1f481\U1f3fb"
    [":information_desk_person_tone2:"]="\U1f481\U1f3fc"
    [":information_desk_person_tone3:"]="\U1f481\U1f3fd"
    [":information_desk_person_tone4:"]="\U1f481\U1f3fe"
    [":information_desk_person_tone5:"]="\U1f481\U1f3ff"
    [":india:"]="\U1f1ee\U1f1f3"
    [":indonesia:"]="\U1f1ee\U1f1e9"
    [":infinity:"]="\U267e\Ufe0f"
    [":information_desk_person:"]="\U1f481"
    [":information_desk_person:"]="\U1f481"
    [":information_source:"]="\U2139"
    [":information_source:"]="\U2139\Ufe0f"
    [":innocent:"]="\U1f607"
    [":interrobang:"]="\U2049"
    [":interrobang:"]="\U2049\Ufe0f"
    [":iphone:"]="\U1f4f1"
    [":island:"]="\U1f3dd"
    [":iran:"]="\U1f1ee\U1f1f7"
    [":iraq:"]="\U1f1ee\U1f1f6"
    [":ireland:"]="\U1f1ee\U1f1ea"
    [":isle_of_man:"]="\U1f1ee\U1f1f2"
    [":israel:"]="\U1f1ee\U1f1f1"
    [":it:"]="\U1f1ee\U1f1f9"
    [":izakaya_lantern:"]="\U1f3ee"
    [":jack_o_lantern:"]="\U1f383"
    [":jamaica:"]="\U1f1ef\U1f1f2"
    [":japanese_castle:"]="\U1f3ef"
    [":japanese_goblin:"]="\U1f47a"
    [":japanese_ogre:"]="\U1f479"
    [":japan:"]="\U1f5fe"
    [":jeans:"]="\U1f456"
    [":jersey:"]="\U1f1ef\U1f1ea"
    [":jigsaw:"]="\U1f9e9"
    [":jordan:"]="\U1f1ef\U1f1f4"
    [":joy_cat:"]="\U1f639"
    [":joystick:"]="\U1f579"
    [":joystick:"]="\U1f579\Ufe0f"
    [":joy:"]="\U1f602"
    [":juggling_tone1:"]="\U1f939\U1f3fb"
    [":juggling_tone2:"]="\U1f939\U1f3fc"
    [":juggling_tone3:"]="\U1f939\U1f3fd"
    [":juggling_tone4:"]="\U1f939\U1f3fe"
    [":juggling_tone5:"]="\U1f939\U1f3ff"
    [":juggling:"]="\U1f939"
    [":juggling:"]="\U1f939"
    [":jp:"]="\U1f1ef\U1f1f5"
    [":juggling_person:"]="\U1f939"
    [":kaaba:"]="\U1f54b"
    [":key2:"]="\U1f5dd"
    [":keyboard:"]="\U2328"
    [":kangaroo:"]="\U1f998"
    [":kazakhstan:"]="\U1f1f0\U1f1ff"
    [":kenya:"]="\U1f1f0\U1f1ea"
    [":keyboard:"]="\U2328\Ufe0f"
    [":keycap_ten:"]="\U1f51f"
    [":key:"]="\U1f511"
    [":kick_scooter:"]="\U1f6f4"
    [":kimono:"]="\U1f458"
    [":kiribati:"]="\U1f1f0\U1f1ee"
    [":kissing_cat:"]="\U1f63d"
    [":kissing_closed_eyes:"]="\U1f61a"
    [":kissing_heart:"]="\U1f618"
    [":kissing_smiling_eyes:"]="\U1f619"
    [":kissing:"]="\U1f617"
    [":kiss_mm:"]="\U1f468\U2764\U1f48b\U1f468"
    [":kiwi:"]="\U1f95d"
    [":kiss:"]="\U1f48b"
    [":kite:"]="\U1fa81"
    [":kiwi_fruit:"]="\U1f95d"
    [":kneeling_man:"]="\U1f9ce\U200d\U2642\Ufe0f"
    [":kneeling_person:"]="\U1f9ce"
    [":kneeling_woman:"]="\U1f9ce\U200d\U2640\Ufe0f"
    [":knife:"]="\U1f52a"
    [":koala:"]="\U1f428"
    [":koko:"]="\U1f201"
    [":label:"]="\U1f3f7"
    [":kosovo:"]="\U1f1fd\U1f1f0"
    [":kr:"]="\U1f1f0\U1f1f7"
    [":kuwait:"]="\U1f1f0\U1f1fc"
    [":kyrgyzstan:"]="\U1f1f0\U1f1ec"
    [":lab_coat:"]="\U1f97c"
    [":label:"]="\U1f3f7\Ufe0f"
    [":lacrosse:"]="\U1f94d"
    [":lantern:"]="\U1f3ee"
    [":laos:"]="\U1f1f1\U1f1e6"
    [":large_blue_circle:"]="\U1f535"
    [":large_blue_diamond:"]="\U1f537"
    [":large_orange_diamond:"]="\U1f536"
    [":last_quarter_moon:"]="\U1f317"
    [":last_quarter_moon_with_face:"]="\U1f31c"
    [":latin_cross:"]="\U271d\Ufe0f"
    [":latvia:"]="\U1f1f1\U1f1fb"
    [":laughing:"]="\U1f606"
    [":leafy_green:"]="\U1f96c"
    [":leaves:"]="\U1f343"
    [":lebanon:"]="\U1f1f1\U1f1e7"
    [":ledger:"]="\U1f4d2"
    [":left_facing_fist_tone1:"]="\U1f91b\U1f3fb"
    [":left_facing_fist_tone2:"]="\U1f91b\U1f3fc"
    [":left_facing_fist_tone3:"]="\U1f91b\U1f3fd"
    [":left_facing_fist_tone4:"]="\U1f91b\U1f3fe"
    [":left_facing_fist_tone5:"]="\U1f91b\U1f3ff"
    [":left_facing_fist:"]="\U1f91b"
    [":left_luggage:"]="\U1f6c5"
    [":left_right_arrow:"]="\U2194"
    [":leftwards_arrow_with_hook:"]="\U21a9"
    [":left_right_arrow:"]="\U2194\Ufe0f"
    [":left_speech_bubble:"]="\U1f5e8\Ufe0f"
    [":leftwards_arrow_with_hook:"]="\U21a9\Ufe0f"
    [":leg:"]="\U1f9b5"
    [":lemon:"]="\U1f34b"
    [":leopard:"]="\U1f406"
    [":leo:"]="\U264c"
    [":level_slider:"]="\U1f39a"
    [":levitate:"]="\U1f574"
    [":lesotho:"]="\U1f1f1\U1f1f8"
    [":level_slider:"]="\U1f39a\Ufe0f"
    [":liberia:"]="\U1f1f1\U1f1f7"
    [":libra:"]="\U264e"
    [":lifter_tone1:"]="\U1f3cb\U1f3fb"
    [":lifter_tone2:"]="\U1f3cb\U1f3fc"
    [":lifter_tone3:"]="\U1f3cb\U1f3fd"
    [":lifter_tone4:"]="\U1f3cb\U1f3fe"
    [":lifter_tone5:"]="\U1f3cb\U1f3ff"
    [":lifter:"]="\U1f3cb"
    [":lifter:"]="\U1f3cb"
    [":libya:"]="\U1f1f1\U1f1fe"
    [":liechtenstein:"]="\U1f1f1\U1f1ee"
    [":light_rail:"]="\U1f688"
    [":link:"]="\U1f517"
    [":lion_face:"]="\U1f981"
    [":lion:"]="\U1f981"
    [":lipstick:"]="\U1f484"
    [":lips:"]="\U1f444"
    [":lithuania:"]="\U1f1f1\U1f1f9"
    [":lizard:"]="\U1f98e"
    [":llama:"]="\U1f999"
    [":lobster:"]="\U1f99e"
    [":lock:"]="\U1f512"
    [":lock_with_ink_pen:"]="\U1f50f"
    [":lollipop:"]="\U1f36d"
    [":loop:"]="\U27bf"
    [":lotion_bottle:"]="\U1f9f4"
    [":lotus_position_man:"]="\U1f9d8\U200d\U2642\Ufe0f"
    [":lotus_position:"]="\U1f9d8"
    [":lotus_position_woman:"]="\U1f9d8\U200d\U2640\Ufe0f"
    [":loud_sound:"]="\U1f50a"
    [":loudspeaker:"]="\U1f4e2"
    [":love_hotel:"]="\U1f3e9"
    [":love_letter:"]="\U1f48c"
    [":love_you_gesture:"]="\U1f91f"
    [":low_brightness:"]="\U1f505"
    [":luggage:"]="\U1f9f3"
    [":luxembourg:"]="\U1f1f1\U1f1fa"
    [":lying_face:"]="\U1f925"
    [":macau:"]="\U1f1f2\U1f1f4"
    [":macedonia:"]="\U1f1f2\U1f1f0"
    [":madagascar:"]="\U1f1f2\U1f1ec"
    [":mage_man:"]="\U1f9d9\U200d\U2642\Ufe0f"
    [":mage:"]="\U1f9d9"
    [":mage_woman:"]="\U1f9d9\U200d\U2640\Ufe0f"
    [":magnet:"]="\U1f9f2"
    [":mag_right:"]="\U1f50e"
    [":mag:"]="\U1f50d"
    [":mahjong:"]="\U1f004"
    [":mailbox_closed:"]="\U1f4ea"
    [":mailbox:"]="\U1f4eb"
    [":mailbox_with_mail:"]="\U1f4ec"
    [":mailbox_with_no_mail:"]="\U1f4ed"
    [":man_dancing_tone1:"]="\U1f57a\U1f3fb"
    [":man_dancing_tone2:"]="\U1f57a\U1f3fc"
    [":man_dancing_tone3:"]="\U1f57a\U1f3fd"
    [":man_dancing_tone4:"]="\U1f57a\U1f3fe"
    [":man_dancing_tone5:"]="\U1f57a\U1f3ff"
    [":man_dancing:"]="\U1f57a"
    [":malawi:"]="\U1f1f2\U1f1fc"
    [":malaysia:"]="\U1f1f2\U1f1fe"
    [":maldives:"]="\U1f1f2\U1f1fb"
    [":male_detective:"]="\U1f575\Ufe0f\U200d\U2642\Ufe0f"
    [":male_sign:"]="\U2642\Ufe0f"
    [":mali:"]="\U1f1f2\U1f1f1"
    [":malta:"]="\U1f1f2\U1f1f9"
    [":man_artist:"]="\U1f468\U200d\U1f3a8"
    [":man_astronaut:"]="\U1f468\U200d\U1f680"
    [":man_cartwheeling:"]="\U1f938\U200d\U2642\Ufe0f"
    [":man_cook:"]="\U1f468\U200d\U1f373"
    [":man_dancing:"]="\U1f57a"
    [":man_in_tuxedo_tone1:"]="\U1f935\U1f3fb"
    [":man_in_tuxedo_tone2:"]="\U1f935\U1f3fc"
    [":man_in_tuxedo_tone3:"]="\U1f935\U1f3fd"
    [":man_in_tuxedo_tone4:"]="\U1f935\U1f3fe"
    [":man_in_tuxedo_tone5:"]="\U1f935\U1f3ff"
    [":mandarin:"]="\U1f34a"
    [":man_facepalming:"]="\U1f926\U200d\U2642\Ufe0f"
    [":man_factory_worker:"]="\U1f468\U200d\U1f3ed"
    [":man_farmer:"]="\U1f468\U200d\U1f33e"
    [":man_firefighter:"]="\U1f468\U200d\U1f692"
    [":mango:"]="\U1f96d"
    [":man_health_worker:"]="\U1f468\U200d\U2695\Ufe0f"
    [":man_in_manual_wheelchair:"]="\U1f468\U200d\U1f9bd"
    [":man_in_motorized_wheelchair:"]="\U1f468\U200d\U1f9bc"
    [":man_in_tuxedo:"]="\U1f935"
    [":man_in_tuxedo:"]="\U1f935"
    [":man_tone1:"]="\U1f468\U1f3fb"
    [":man_tone2:"]="\U1f468\U1f3fc"
    [":man_tone3:"]="\U1f468\U1f3fd"
    [":man_tone4:"]="\U1f468\U1f3fe"
    [":man_tone5:"]="\U1f468\U1f3ff"
    [":man:"]="\U1f468"
    [":man_judge:"]="\U1f468\U200d\U2696\Ufe0f"
    [":man_juggling:"]="\U1f939\U200d\U2642\Ufe0f"
    [":man_mechanic:"]="\U1f468\U200d\U1f527"
    [":man_office_worker:"]="\U1f468\U200d\U1f4bc"
    [":man_pilot:"]="\U1f468\U200d\U2708\Ufe0f"
    [":man_playing_handball:"]="\U1f93e\U200d\U2642\Ufe0f"
    [":man_playing_water_polo:"]="\U1f93d\U200d\U2642\Ufe0f"
    [":man_scientist:"]="\U1f468\U200d\U1f52c"
    [":man_shrugging:"]="\U1f937\U200d\U2642\Ufe0f"
    [":man_singer:"]="\U1f468\U200d\U1f3a4"
    [":mans_shoe:"]="\U1f45e"
    [":man_student:"]="\U1f468\U200d\U1f393"
    [":man_teacher:"]="\U1f468\U200d\U1f3eb"
    [":man_technologist:"]="\U1f468\U200d\U1f4bb"
    [":mantelpiece_clock:"]="\U1f570\Ufe0f"
    [":man:"]="\U1f468"
    [":man_with_gua_pi_mao_tone1:"]="\U1f472\U1f3fb"
    [":man_with_gua_pi_mao_tone2:"]="\U1f472\U1f3fc"
    [":man_with_gua_pi_mao_tone3:"]="\U1f472\U1f3fd"
    [":man_with_gua_pi_mao_tone4:"]="\U1f472\U1f3fe"
    [":man_with_gua_pi_mao_tone5:"]="\U1f472\U1f3ff"
    [":manual_wheelchair:"]="\U1f9bd"
    [":man_with_gua_pi_mao:"]="\U1f472"
    [":man_with_gua_pi_mao:"]="\U1f472"
    [":man_with_turban_tone1:"]="\U1f473\U1f3fb"
    [":man_with_turban_tone2:"]="\U1f473\U1f3fc"
    [":man_with_turban_tone3:"]="\U1f473\U1f3fd"
    [":man_with_turban_tone4:"]="\U1f473\U1f3fe"
    [":man_with_turban_tone5:"]="\U1f473\U1f3ff"
    [":man_with_turban:"]="\U1f473"
    [":man_with_turban:"]="\U1f473"
    [":man_with_probing_cane:"]="\U1f468\U200d\U1f9af"
    [":man_with_turban:"]="\U1f473\U200d\U2642\Ufe0f"
    [":maple_leaf:"]="\U1f341"
    [":map:"]="\U1f5fa"
    [":marshall_islands:"]="\U1f1f2\U1f1ed"
    [":martial_arts_uniform:"]="\U1f94b"
    [":martinique:"]="\U1f1f2\U1f1f6"
    [":mask:"]="\U1f637"
    [":massage_tone1:"]="\U1f486\U1f3fb"
    [":massage_tone2:"]="\U1f486\U1f3fc"
    [":massage_tone3:"]="\U1f486\U1f3fd"
    [":massage_tone4:"]="\U1f486\U1f3fe"
    [":massage_tone5:"]="\U1f486\U1f3ff"
    [":massage:"]="\U1f486"
    [":massage_man:"]="\U1f486\U200d\U2642\Ufe0f"
    [":massage:"]="\U1f486"
    [":massage_woman:"]="\U1f486\U200d\U2640\Ufe0f"
    [":mate:"]="\U1f9c9"
    [":mauritania:"]="\U1f1f2\U1f1f7"
    [":mauritius:"]="\U1f1f2\U1f1fa"
    [":mayotte:"]="\U1f1fe\U1f1f9"
    [":meat_on_bone:"]="\U1f356"
    [":medal:"]="\U1f3c5"
    [":mechanical_arm:"]="\U1f9be"
    [":mechanical_leg:"]="\U1f9bf"
    [":medal_military:"]="\U1f396\Ufe0f"
    [":medal_sports:"]="\U1f3c5"
    [":medical_symbol:"]="\U2695\Ufe0f"
    [":mega:"]="\U1f4e3"
    [":melon:"]="\U1f348"
    [":memo:"]="\U1f4dd"
    [":menorah:"]="\U1f54e"
    [":mens:"]="\U1f6b9"
    [":metal_tone1:"]="\U1f918\U1f3fb"
    [":metal_tone2:"]="\U1f918\U1f3fc"
    [":metal_tone3:"]="\U1f918\U1f3fd"
    [":metal_tone4:"]="\U1f918\U1f3fe"
    [":metal_tone5:"]="\U1f918\U1f3ff"
    [":men_wrestling:"]="\U1f93c\U200d\U2642\Ufe0f"
    [":mermaid:"]="\U1f9dc\U200d\U2640\Ufe0f"
    [":merman:"]="\U1f9dc\U200d\U2642\Ufe0f"
    [":merperson:"]="\U1f9dc"
    [":metal:"]="\U1f918"
    [":metro:"]="\U1f687"
    [":microphone2:"]="\U1f399"
    [":mexico:"]="\U1f1f2\U1f1fd"
    [":microbe:"]="\U1f9a0"
    [":micronesia:"]="\U1f1eb\U1f1f2"
    [":microphone:"]="\U1f3a4"
    [":microscope:"]="\U1f52c"
    [":middle_finger_tone1:"]="\U1f595\U1f3fb"
    [":middle_finger_tone2:"]="\U1f595\U1f3fc"
    [":middle_finger_tone3:"]="\U1f595\U1f3fd"
    [":middle_finger_tone4:"]="\U1f595\U1f3fe"
    [":middle_finger_tone5:"]="\U1f595\U1f3ff"
    [":middle_finger:"]="\U1f595"
    [":military_medal:"]="\U1f396"
    [":milk:"]="\U1f95b"
    [":milk_glass:"]="\U1f95b"
    [":milky_way:"]="\U1f30c"
    [":minibus:"]="\U1f690"
    [":minidisc:"]="\U1f4bd"
    [":mobile_phone_off:"]="\U1f4f4"
    [":moldova:"]="\U1f1f2\U1f1e9"
    [":monaco:"]="\U1f1f2\U1f1e8"
    [":moneybag:"]="\U1f4b0"
    [":money_mouth:"]="\U1f911"
    [":money_mouth_face:"]="\U1f911"
    [":money_with_wings:"]="\U1f4b8"
    [":mongolia:"]="\U1f1f2\U1f1f3"
    [":monkey_face:"]="\U1f435"
    [":monkey:"]="\U1f412"
    [":monocle_face:"]="\U1f9d0"
    [":monorail:"]="\U1f69d"
    [":montenegro:"]="\U1f1f2\U1f1ea"
    [":montserrat:"]="\U1f1f2\U1f1f8"
    [":moon_cake:"]="\U1f96e"
    [":moon:"]="\U1f314"
    [":morocco:"]="\U1f1f2\U1f1e6"
    [":mortar_board:"]="\U1f393"
    [":mosque:"]="\U1f54c"
    [":motorboat:"]="\U1f6e5"
    [":motorcycle:"]="\U1f3cd"
    [":mosquito:"]="\U1f99f"
    [":motor_boat:"]="\U1f6e5\Ufe0f"
    [":motorcycle:"]="\U1f3cd\Ufe0f"
    [":motorized_wheelchair:"]="\U1f9bc"
    [":motor_scooter:"]="\U1f6f5"
    [":motorway:"]="\U1f6e3"
    [":mountain_bicyclist_tone1:"]="\U1f6b5\U1f3fb"
    [":mountain_bicyclist_tone2:"]="\U1f6b5\U1f3fc"
    [":mountain_bicyclist_tone3:"]="\U1f6b5\U1f3fd"
    [":mountain_bicyclist_tone4:"]="\U1f6b5\U1f3fe"
    [":mountain_bicyclist_tone5:"]="\U1f6b5\U1f3ff"
    [":mountain_bicyclist:"]="\U1f6b5"
    [":motorway:"]="\U1f6e3\Ufe0f"
    [":mountain_bicyclist:"]="\U1f6b5"
    [":mountain_biking_man:"]="\U1f6b5\U200d\U2642\Ufe0f"
    [":mountain_biking_woman:"]="\U1f6b5\U200d\U2640\Ufe0f"
    [":mountain_cableway:"]="\U1f6a0"
    [":mountain_railway:"]="\U1f69e"
    [":mountain_snow:"]="\U1f3d4"
    [":mountain:"]="\U26f0"
    [":mountain_snow:"]="\U1f3d4\Ufe0f"
    [":mountain:"]="\U26f0\Ufe0f"
    [":mount_fuji:"]="\U1f5fb"
    [":mouse2:"]="\U1f401"
    [":mouse_three_button:"]="\U1f5b1"
    [":mouse:"]="\U1f42d"
    [":movie_camera:"]="\U1f3a5"
    [":moyai:"]="\U1f5ff"
    [":mrs_claus_tone1:"]="\U1f936\U1f3fb"
    [":mrs_claus_tone2:"]="\U1f936\U1f3fc"
    [":mrs_claus_tone3:"]="\U1f936\U1f3fd"
    [":mrs_claus_tone4:"]="\U1f936\U1f3fe"
    [":mrs_claus_tone5:"]="\U1f936\U1f3ff"
    [":mrs_claus:"]="\U1f936"
    [":mozambique:"]="\U1f1f2\U1f1ff"
    [":mrs_claus:"]="\U1f936"
    [":m:"]="\U24c2"
    [":muscle_tone1:"]="\U1f4aa\U1f3fb"
    [":muscle_tone2:"]="\U1f4aa\U1f3fc"
    [":muscle_tone3:"]="\U1f4aa\U1f3fd"
    [":muscle_tone4:"]="\U1f4aa\U1f3fe"
    [":muscle_tone5:"]="\U1f4aa\U1f3ff"
    [":m:"]="\U24c2\Ufe0f"
    [":muscle:"]="\U1f4aa"
    [":mushroom:"]="\U1f344"
    [":musical_keyboard:"]="\U1f3b9"
    [":musical_note:"]="\U1f3b5"
    [":musical_score:"]="\U1f3bc"
    [":mute:"]="\U1f507"
    [":nail_care_tone1:"]="\U1f485\U1f3fb"
    [":nail_care_tone2:"]="\U1f485\U1f3fc"
    [":nail_care_tone3:"]="\U1f485\U1f3fd"
    [":nail_care_tone4:"]="\U1f485\U1f3fe"
    [":nail_care_tone5:"]="\U1f485\U1f3ff"
    [":myanmar:"]="\U1f1f2\U1f1f2"
    [":nail_care:"]="\U1f485"
    [":name_badge:"]="\U1f4db"
    [":namibia:"]="\U1f1f3\U1f1e6"
    [":national_park:"]="\U1f3de\Ufe0f"
    [":nauru:"]="\U1f1f3\U1f1f7"
    [":nauseated_face:"]="\U1f922"
    [":nazar_amulet:"]="\U1f9ff"
    [":necktie:"]="\U1f454"
    [":negative_squared_cross_mark:"]="\U274e"
    [":nerd:"]="\U1f913"
    [":nepal:"]="\U1f1f3\U1f1f5"
    [":nerd_face:"]="\U1f913"
    [":netherlands:"]="\U1f1f3\U1f1f1"
    [":neutral_face:"]="\U1f610"
    [":new_caledonia:"]="\U1f1f3\U1f1e8"
    [":new_moon:"]="\U1f311"
    [":new_moon_with_face:"]="\U1f31a"
    [":newspaper2:"]="\U1f5de"
    [":newspaper_roll:"]="\U1f5de\Ufe0f"
    [":newspaper:"]="\U1f4f0"
    [":new:"]="\U1f195"
    [":new_zealand:"]="\U1f1f3\U1f1ff"
    [":next_track_button:"]="\U23ed\Ufe0f"
    [":ng_man:"]="\U1f645\U200d\U2642\Ufe0f"
    [":ng:"]="\U1f196"
    [":ng_woman:"]="\U1f645\U200d\U2640\Ufe0f"
    [":nicaragua:"]="\U1f1f3\U1f1ee"
    [":nigeria:"]="\U1f1f3\U1f1ec"
    [":niger:"]="\U1f1f3\U1f1ea"
    [":night_with_stars:"]="\U1f303"
    [":nine:"]="\U0039\U20e3"
    [":nine:"]="\U39\Ufe0f\U20e3"
    [":niue:"]="\U1f1f3\U1f1fa"
    [":no_bell:"]="\U1f515"
    [":no_bicycles:"]="\U1f6b3"
    [":no_entry_sign:"]="\U1f6ab"
    [":no_entry:"]="\U26d4"
    [":no_good_tone1:"]="\U1f645\U1f3fb"
    [":no_good_tone2:"]="\U1f645\U1f3fc"
    [":no_good_tone3:"]="\U1f645\U1f3fd"
    [":no_good_tone4:"]="\U1f645\U1f3fe"
    [":no_good_tone5:"]="\U1f645\U1f3ff"
    [":no_good:"]="\U1f645"
    [":no_good_man:"]="\U1f645\U200d\U2642\Ufe0f"
    [":no_good:"]="\U1f645"
    [":no_good_woman:"]="\U1f645\U200d\U2640\Ufe0f"
    [":no_mobile_phones:"]="\U1f4f5"
    [":no_mouth:"]="\U1f636"
    [":non-potable_water:"]="\U1f6b1"
    [":no_pedestrians:"]="\U1f6b7"
    [":nose_tone1:"]="\U1f443\U1f3fb"
    [":nose_tone2:"]="\U1f443\U1f3fc"
    [":nose_tone3:"]="\U1f443\U1f3fd"
    [":nose_tone4:"]="\U1f443\U1f3fe"
    [":nose_tone5:"]="\U1f443\U1f3ff"
    [":norfolk_island:"]="\U1f1f3\U1f1eb"
    [":northern_mariana_islands:"]="\U1f1f2\U1f1f5"
    [":north_korea:"]="\U1f1f0\U1f1f5"
    [":norway:"]="\U1f1f3\U1f1f4"
    [":nose:"]="\U1f443"
    [":no_smoking:"]="\U1f6ad"
    [":notebook:"]="\U1f4d3"
    [":notebook_with_decorative_cover:"]="\U1f4d4"
    [":notepad_spiral:"]="\U1f5d2"
    [":notes:"]="\U1f3b6"
    [":nut_and_bolt:"]="\U1f529"
    [":o2:"]="\U1f17e"
    [":o2:"]="\U1f17e\Ufe0f"
    [":ocean:"]="\U1f30a"
    [":octagonal_sign:"]="\U1f6d1"
    [":octopus:"]="\U1f419"
    [":oden:"]="\U1f362"
    [":office:"]="\U1f3e2"
    [":oil:"]="\U1f6e2"
    [":ok_hand_tone1:"]="\U1f44c\U1f3fb"
    [":ok_hand_tone2:"]="\U1f44c\U1f3fc"
    [":ok_hand_tone3:"]="\U1f44c\U1f3fd"
    [":ok_hand_tone4:"]="\U1f44c\U1f3fe"
    [":ok_hand_tone5:"]="\U1f44c\U1f3ff"
    [":oil_drum:"]="\U1f6e2\Ufe0f"
    [":ok_hand:"]="\U1f44c"
    [":ok_man:"]="\U1f646\U200d\U2642\Ufe0f"
    [":ok_person:"]="\U1f646"
    [":ok:"]="\U1f197"
    [":ok_woman_tone1:"]="\U1f646\U1f3fb"
    [":ok_woman_tone2:"]="\U1f646\U1f3fc"
    [":ok_woman_tone3:"]="\U1f646\U1f3fd"
    [":ok_woman_tone4:"]="\U1f646\U1f3fe"
    [":ok_woman_tone5:"]="\U1f646\U1f3ff"
    [":ok_woman:"]="\U1f646"
    [":ok_woman:"]="\U1f646"
    [":older_man_tone1:"]="\U1f474\U1f3fb"
    [":older_man_tone2:"]="\U1f474\U1f3fc"
    [":older_man_tone3:"]="\U1f474\U1f3fd"
    [":older_man_tone4:"]="\U1f474\U1f3fe"
    [":older_man_tone5:"]="\U1f474\U1f3ff"
    [":ok_woman:"]="\U1f646\U200d\U2640\Ufe0f"
    [":older_adult:"]="\U1f9d3"
    [":older_man:"]="\U1f474"
    [":older_man:"]="\U1f474"
    [":older_woman_tone1:"]="\U1f475\U1f3fb"
    [":older_woman_tone2:"]="\U1f475\U1f3fc"
    [":older_woman_tone3:"]="\U1f475\U1f3fd"
    [":older_woman_tone4:"]="\U1f475\U1f3fe"
    [":older_woman_tone5:"]="\U1f475\U1f3ff"
    [":older_woman:"]="\U1f475"
    [":older_woman:"]="\U1f475"
    [":om_symbol:"]="\U1f549"
    [":old_key:"]="\U1f5dd\Ufe0f"
    [":oman:"]="\U1f1f4\U1f1f2"
    [":om:"]="\U1f549\Ufe0f"
    [":oncoming_automobile:"]="\U1f698"
    [":oncoming_bus:"]="\U1f68d"
    [":oncoming_police_car:"]="\U1f694"
    [":oncoming_taxi:"]="\U1f696"
    [":one:"]="\U0031\U20e3"
    [":one_piece_swimsuit:"]="\U1fa71"
    [":one:"]="\U31\Ufe0f\U20e3"
    [":onion:"]="\U1f9c5"
    [":on:"]="\U1f51b"
    [":open_book:"]="\U1f4d6"
    [":open_file_folder:"]="\U1f4c2"
    [":open_hands_tone1:"]="\U1f450\U1f3fb"
    [":open_hands_tone2:"]="\U1f450\U1f3fc"
    [":open_hands_tone3:"]="\U1f450\U1f3fd"
    [":open_hands_tone4:"]="\U1f450\U1f3fe"
    [":open_hands_tone5:"]="\U1f450\U1f3ff"
    [":open_hands:"]="\U1f450"
    [":open_mouth:"]="\U1f62e"
    [":open_umbrella:"]="\U2602\Ufe0f"
    [":ophiuchus:"]="\U26ce"
    [":orange_book:"]="\U1f4d9"
    [":orthodox_cross:"]="\U2626"
    [":orange_circle:"]="\U1f7e0"
    [":orange_heart:"]="\U1f9e1"
    [":orange_square:"]="\U1f7e7"
    [":orange:"]="\U1f34a"
    [":orangutan:"]="\U1f9a7"
    [":orthodox_cross:"]="\U2626\Ufe0f"
    [":otter:"]="\U1f9a6"
    [":o:"]="\U2b55"
    [":outbox_tray:"]="\U1f4e4"
    [":owl:"]="\U1f989"
    [":ox:"]="\U1f402"
    [":oyster:"]="\U1f9aa"
    [":package:"]="\U1f4e6"
    [":page_facing_up:"]="\U1f4c4"
    [":pager:"]="\U1f4df"
    [":page_with_curl:"]="\U1f4c3"
    [":paintbrush:"]="\U1f58c"
    [":paintbrush:"]="\U1f58c\Ufe0f"
    [":pakistan:"]="\U1f1f5\U1f1f0"
    [":palau:"]="\U1f1f5\U1f1fc"
    [":palestinian_territories:"]="\U1f1f5\U1f1f8"
    [":palms_up_together:"]="\U1f932"
    [":palm_tree:"]="\U1f334"
    [":panama:"]="\U1f1f5\U1f1e6"
    [":pancakes:"]="\U1f95e"
    [":panda_face:"]="\U1f43c"
    [":paperclips:"]="\U1f587"
    [":paperclips:"]="\U1f587\Ufe0f"
    [":paperclip:"]="\U1f4ce"
    [":parking:"]="\U1f17f"
    [":park:"]="\U1f3de"
    [":part_alternation_mark:"]="\U303d"
    [":papua_new_guinea:"]="\U1f1f5\U1f1ec"
    [":parachute:"]="\U1fa82"
    [":paraguay:"]="\U1f1f5\U1f1fe"
    [":parasol_on_ground:"]="\U26f1\Ufe0f"
    [":parking:"]="\U1f17f\Ufe0f"
    [":parrot:"]="\U1f99c"
    [":part_alternation_mark:"]="\U303d\Ufe0f"
    [":partly_sunny:"]="\U26c5"
    [":partying_face:"]="\U1f973"
    [":passenger_ship:"]="\U1f6f3\Ufe0f"
    [":passport_control:"]="\U1f6c2"
    [":pause_button:"]="\U23f8"
    [":peace:"]="\U262e"
    [":pause_button:"]="\U23f8\Ufe0f"
    [":paw_prints:"]="\U1f43e"
    [":peace_symbol:"]="\U262e\Ufe0f"
    [":peach:"]="\U1f351"
    [":peacock:"]="\U1f99a"
    [":peanuts:"]="\U1f95c"
    [":pear:"]="\U1f350"
    [":pen_ballpoint:"]="\U1f58a"
    [":pencil2:"]="\U270f"
    [":pencil2:"]="\U270f\Ufe0f"
    [":pencil:"]="\U1f4dd"
    [":pen_fountain:"]="\U1f58b"
    [":penguin:"]="\U1f427"
    [":pensive:"]="\U1f614"
    [":pen:"]="\U1f58a\Ufe0f"
    [":people_holding_hands:"]="\U1f9d1\U200d\U1f91d\U200d\U1f9d1"
    [":performing_arts:"]="\U1f3ad"
    [":persevere:"]="\U1f623"
    [":person_frowning_tone1:"]="\U1f64d\U1f3fb"
    [":person_frowning_tone2:"]="\U1f64d\U1f3fc"
    [":person_frowning_tone3:"]="\U1f64d\U1f3fd"
    [":person_frowning_tone4:"]="\U1f64d\U1f3fe"
    [":person_frowning_tone5:"]="\U1f64d\U1f3ff"
    [":person_frowning:"]="\U1f64d"
    [":person_frowning:"]="\U1f64d"
    [":person_with_blond_hair_tone1:"]="\U1f471\U1f3fb"
    [":person_with_blond_hair_tone2:"]="\U1f471\U1f3fc"
    [":person_with_blond_hair_tone3:"]="\U1f471\U1f3fd"
    [":person_with_blond_hair_tone4:"]="\U1f471\U1f3fe"
    [":person_with_blond_hair_tone5:"]="\U1f471\U1f3ff"
    [":person_with_blond_hair:"]="\U1f471"
    [":person_with_blond_hair:"]="\U1f471"
    [":person_with_pouting_face_tone1:"]="\U1f64e\U1f3fb"
    [":person_with_pouting_face_tone2:"]="\U1f64e\U1f3fc"
    [":person_with_pouting_face_tone3:"]="\U1f64e\U1f3fd"
    [":person_with_pouting_face_tone4:"]="\U1f64e\U1f3fe"
    [":person_with_pouting_face_tone5:"]="\U1f64e\U1f3ff"
    [":person_with_pouting_face:"]="\U1f64e"
    [":person_with_pouting_face:"]="\U1f64e"
    [":pick:"]="\U26cf"
    [":person_fencing:"]="\U1f93a"
    [":person_with_turban:"]="\U1f473"
    [":peru:"]="\U1f1f5\U1f1ea"
    [":petri_dish:"]="\U1f9eb"
    [":philippines:"]="\U1f1f5\U1f1ed"
    [":phone:"]="\U260e\Ufe0f"
    [":pick:"]="\U26cf\Ufe0f"
    [":pie:"]="\U1f967"
    [":pig2:"]="\U1f416"
    [":pig_nose:"]="\U1f43d"
    [":pig:"]="\U1f437"
    [":pill:"]="\U1f48a"
    [":pinching_hand:"]="\U1f90f"
    [":pineapple:"]="\U1f34d"
    [":ping_pong:"]="\U1f3d3"
    [":pirate_flag:"]="\U1f3f4\U200d\U2620\Ufe0f"
    [":pisces:"]="\U2653"
    [":pitcairn_islands:"]="\U1f1f5\U1f1f3"
    [":pizza:"]="\U1f355"
    [":place_of_worship:"]="\U1f6d0"
    [":play_pause:"]="\U23ef"
    [":point_down_tone1:"]="\U1f447\U1f3fb"
    [":point_down_tone2:"]="\U1f447\U1f3fc"
    [":point_down_tone3:"]="\U1f447\U1f3fd"
    [":point_down_tone4:"]="\U1f447\U1f3fe"
    [":point_down_tone5:"]="\U1f447\U1f3ff"
    [":plate_with_cutlery:"]="\U1f37d\Ufe0f"
    [":play_or_pause_button:"]="\U23ef\Ufe0f"
    [":pleading_face:"]="\U1f97a"
    [":point_down:"]="\U1f447"
    [":point_left_tone1:"]="\U1f448\U1f3fb"
    [":point_left_tone2:"]="\U1f448\U1f3fc"
    [":point_left_tone3:"]="\U1f448\U1f3fd"
    [":point_left_tone4:"]="\U1f448\U1f3fe"
    [":point_left_tone5:"]="\U1f448\U1f3ff"
    [":point_left:"]="\U1f448"
    [":point_right_tone1:"]="\U1f449\U1f3fb"
    [":point_right_tone2:"]="\U1f449\U1f3fc"
    [":point_right_tone3:"]="\U1f449\U1f3fd"
    [":point_right_tone4:"]="\U1f449\U1f3fe"
    [":point_right_tone5:"]="\U1f449\U1f3ff"
    [":point_right:"]="\U1f449"
    [":point_up_2_tone1:"]="\U1f446\U1f3fb"
    [":point_up_2_tone2:"]="\U1f446\U1f3fc"
    [":point_up_2_tone3:"]="\U1f446\U1f3fd"
    [":point_up_2_tone4:"]="\U1f446\U1f3fe"
    [":point_up_2_tone5:"]="\U1f446\U1f3ff"
    [":point_up_2:"]="\U1f446"
    [":point_up_tone1:"]="\U261d\U1f3fb"
    [":point_up_tone2:"]="\U261d\U1f3fc"
    [":point_up_tone3:"]="\U261d\U1f3fd"
    [":point_up_tone4:"]="\U261d\U1f3fe"
    [":point_up_tone5:"]="\U261d\U1f3ff"
    [":point_up:"]="\U261d"
    [":point_up:"]="\U261d\Ufe0f"
    [":poland:"]="\U1f1f5\U1f1f1"
    [":police_car:"]="\U1f693"
    [":policeman:"]="\U1f46e\U200d\U2642\Ufe0f"
    [":police_officer:"]="\U1f46e"
    [":policewoman:"]="\U1f46e\U200d\U2640\Ufe0f"
    [":poodle:"]="\U1f429"
    [":poop:"]="\U1f4a9"
    [":popcorn:"]="\U1f37f"
    [":portugal:"]="\U1f1f5\U1f1f9"
    [":postal_horn:"]="\U1f4ef"
    [":postbox:"]="\U1f4ee"    
    [":postbox:"]="\U1f4ee"
    [":post_office:"]="\U1f3e3"
    [":potable_water:"]="\U1f6b0"
    [":potato:"]="\U1f954"
    [":pouch:"]="\U1f45d"
    [":poultry_leg:"]="\U1f357"
    [":pound:"]="\U1f4b7"
    [":pouting_cat:"]="\U1f63e"
    [":pouting_face:"]="\U1f64e"
    [":pouting_man:"]="\U1f64e\U200d\U2642\Ufe0f"
    [":pouting_woman:"]="\U1f64e\U200d\U2640\Ufe0f"
    [":pout:"]="\U1f621"
    [":prayer_beads:"]="\U1f4ff"
    [":pray_tone1:"]="\U1f64f\U1f3fb"
    [":pray_tone2:"]="\U1f64f\U1f3fc"
    [":pray_tone3:"]="\U1f64f\U1f3fd"
    [":pray_tone4:"]="\U1f64f\U1f3fe"
    [":pray_tone5:"]="\U1f64f\U1f3ff"
    [":pray:"]="\U1f64f"
    [":pregnant_woman_tone1:"]="\U1f930\U1f3fb"
    [":pregnant_woman_tone2:"]="\U1f930\U1f3fc"
    [":pregnant_woman_tone3:"]="\U1f930\U1f3fd"
    [":pregnant_woman_tone4:"]="\U1f930\U1f3fe"
    [":pregnant_woman_tone5:"]="\U1f930\U1f3ff"
    [":pregnant_woman:"]="\U1f930"
    [":pregnant_woman:"]="\U1f930"
    [":princess_tone1:"]="\U1f478\U1f3fb"
    [":princess_tone2:"]="\U1f478\U1f3fc"
    [":princess_tone3:"]="\U1f478\U1f3fd"
    [":princess_tone4:"]="\U1f478\U1f3fe"
    [":princess_tone5:"]="\U1f478\U1f3ff"
    [":princess:"]="\U1f478"
    [":pretzel:"]="\U1f968"
    [":previous_track_button:"]="\U23ee\Ufe0f"
    [":princess:"]="\U1f478"
    [":prince_tone1:"]="\U1f934\U1f3fb"
    [":prince_tone2:"]="\U1f934\U1f3fc"
    [":prince_tone3:"]="\U1f934\U1f3fd"
    [":prince_tone4:"]="\U1f934\U1f3fe"
    [":prince_tone5:"]="\U1f934\U1f3ff"
    [":prince:"]="\U1f934"
    [":prince:"]="\U1f934"
    [":printer:"]="\U1f5a8"
    [":projector:"]="\U1f4fd"
    [":punch_tone1:"]="\U1f44a\U1f3fb"
    [":punch_tone2:"]="\U1f44a\U1f3fc"
    [":punch_tone3:"]="\U1f44a\U1f3fd"
    [":punch_tone4:"]="\U1f44a\U1f3fe"
    [":punch_tone5:"]="\U1f44a\U1f3ff"
    [":printer:"]="\U1f5a8\Ufe0f"
    [":probing_cane:"]="\U1f9af"
    [":puerto_rico:"]="\U1f1f5\U1f1f7"
    [":punch:"]="\U1f44a"
    [":purple_circle:"]="\U1f7e3"
    [":purple_heart:"]="\U1f49c"
    [":purple_square:"]="\U1f7ea"
    [":purse:"]="\U1f45b"
    [":pushpin:"]="\U1f4cc"
    [":put_litter_in_its_place:"]="\U1f6ae"
    [":qatar:"]="\U1f1f6\U1f1e6"
    [":question:"]="\U2753"
    [":rabbit2:"]="\U1f407"
    [":rabbit:"]="\U1f430"
    [":race_car:"]="\U1f3ce"
    [":raccoon:"]="\U1f99d"
    [":racehorse:"]="\U1f40e"
    [":radioactive:"]="\U2622"
    [":racing_car:"]="\U1f3ce\Ufe0f"
    [":radioactive:"]="\U2622\Ufe0f"
    [":radio_button:"]="\U1f518"
    [":radio:"]="\U1f4fb"
    [":rage:"]="\U1f621"
    [":railway_car:"]="\U1f683"
    [":railway_track:"]="\U1f6e4"
    [":rainbow_flag:"]="\U1f3f3\U1f308"
    [":railway_track:"]="\U1f6e4\Ufe0f"
    [":rainbow_flag:"]="\U1f3f3\Ufe0f\U200d\U1f308"
    [":rainbow:"]="\U1f308"
    [":raised_back_of_hand_tone1:"]="\U1f91a\U1f3fb"
    [":raised_back_of_hand_tone2:"]="\U1f91a\U1f3fc"
    [":raised_back_of_hand_tone3:"]="\U1f91a\U1f3fd"
    [":raised_back_of_hand_tone4:"]="\U1f91a\U1f3fe"
    [":raised_back_of_hand_tone5:"]="\U1f91a\U1f3ff"
    [":raised_back_of_hand:"]="\U1f91a"
    [":raised_hands_tone1:"]="\U1f64c\U1f3fb"
    [":raised_hands_tone2:"]="\U1f64c\U1f3fc"
    [":raised_hands_tone3:"]="\U1f64c\U1f3fd"
    [":raised_hands_tone4:"]="\U1f64c\U1f3fe"
    [":raised_hands_tone5:"]="\U1f64c\U1f3ff"
    [":raised_eyebrow:"]="\U1f928"
    [":raised_hands:"]="\U1f64c"
    [":raised_hand_tone1:"]="\U270b\U1f3fb"
    [":raised_hand_tone2:"]="\U270b\U1f3fc"
    [":raised_hand_tone3:"]="\U270b\U1f3fd"
    [":raised_hand_tone4:"]="\U270b\U1f3fe"
    [":raised_hand_tone5:"]="\U270b\U1f3ff"
    [":raised_hand:"]="\U270b"
    [":raising_hand_tone1:"]="\U1f64b\U1f3fb"
    [":raising_hand_tone2:"]="\U1f64b\U1f3fc"
    [":raising_hand_tone3:"]="\U1f64b\U1f3fd"
    [":raising_hand_tone4:"]="\U1f64b\U1f3fe"
    [":raising_hand_tone5:"]="\U1f64b\U1f3ff"
    [":raising_hand:"]="\U1f64b"
    [":raised_hand_with_fingers_splayed:"]="\U1f590\Ufe0f"
    [":raising_hand_man:"]="\U1f64b\U200d\U2642\Ufe0f"
    [":raising_hand:"]="\U1f64b"
    [":raising_hand_woman:"]="\U1f64b\U200d\U2640\Ufe0f"
    [":ramen:"]="\U1f35c"
    [":ram:"]="\U1f40f"
    [":rat:"]="\U1f400"
    [":record_button:"]="\U23fa"
    [":recycle:"]="\U267b"
    [":razor:"]="\U1fa92"
    [":receipt:"]="\U1f9fe"
    [":record_button:"]="\U23fa\Ufe0f"
    [":recycle:"]="\U267b\Ufe0f"
    [":red_car:"]="\U1f697"
    [":red_circle:"]="\U1f534"
    [":registered:"]="\U00ae"
    [":relaxed:"]="\U263a"
    [":red_envelope:"]="\U1f9e7"
    [":red_haired_man:"]="\U1f468\U200d\U1f9b0"
    [":red_haired_woman:"]="\U1f469\U200d\U1f9b0"
    [":red_square:"]="\U1f7e5"
    [":registered:"]="\Uae\Ufe0f"
    [":relaxed:"]="\U263a\Ufe0f"
    [":relieved:"]="\U1f60c"
    [":reminder_ribbon:"]="\U1f397"
    [":reminder_ribbon:"]="\U1f397\Ufe0f"
    [":repeat_one:"]="\U1f502"
    [":repeat:"]="\U1f501"
    [":rescue_worker_helmet:"]="\U26d1\Ufe0f"
    [":restroom:"]="\U1f6bb"
    [":reunion:"]="\U1f1f7\U1f1ea"
    [":revolving_hearts:"]="\U1f49e"
    [":rewind:"]="\U23ea"
    [":rhino:"]="\U1f98f"
    [":rhinoceros:"]="\U1f98f"
    [":ribbon:"]="\U1f380"
    [":rice_ball:"]="\U1f359"
    [":rice_cracker:"]="\U1f358"
    [":rice_scene:"]="\U1f391"
    [":rice:"]="\U1f35a"
    [":right_facing_fist_tone1:"]="\U1f91c\U1f3fb"
    [":right_facing_fist_tone2:"]="\U1f91c\U1f3fc"
    [":right_facing_fist_tone3:"]="\U1f91c\U1f3fd"
    [":right_facing_fist_tone4:"]="\U1f91c\U1f3fe"
    [":right_facing_fist_tone5:"]="\U1f91c\U1f3ff"
    [":right_facing_fist:"]="\U1f91c"
    [":right_anger_bubble:"]="\U1f5ef\Ufe0f"
    [":ringed_planet:"]="\U1fa90"
    [":ring:"]="\U1f48d"
    [":robot:"]="\U1f916"
    [":rocket:"]="\U1f680"
    [":rofl:"]="\U1f923"
    [":roller_coaster:"]="\U1f3a2"
    [":rolling_eyes:"]="\U1f644"
    [":roll_eyes:"]="\U1f644"
    [":roll_of_paper:"]="\U1f9fb"
    [":romania:"]="\U1f1f7\U1f1f4"
    [":rooster:"]="\U1f413"
    [":rosette:"]="\U1f3f5"
    [":rosette:"]="\U1f3f5\Ufe0f"
    [":rose:"]="\U1f339"
    [":rotating_light:"]="\U1f6a8"
    [":round_pushpin:"]="\U1f4cd"
    [":rowboat_tone1:"]="\U1f6a3\U1f3fb"
    [":rowboat_tone2:"]="\U1f6a3\U1f3fc"
    [":rowboat_tone3:"]="\U1f6a3\U1f3fd"
    [":rowboat_tone4:"]="\U1f6a3\U1f3fe"
    [":rowboat_tone5:"]="\U1f6a3\U1f3ff"
    [":rowboat:"]="\U1f6a3"
    [":rowboat:"]="\U1f6a3"
    [":rowing_man:"]="\U1f6a3\U200d\U2642\Ufe0f"
    [":rowing_woman:"]="\U1f6a3\U200d\U2640\Ufe0f"
    [":rugby_football:"]="\U1f3c9"
    [":runner_tone1:"]="\U1f3c3\U1f3fb"
    [":runner_tone2:"]="\U1f3c3\U1f3fc"
    [":runner_tone3:"]="\U1f3c3\U1f3fd"
    [":runner_tone4:"]="\U1f3c3\U1f3fe"
    [":runner_tone5:"]="\U1f3c3\U1f3ff"
    [":runner:"]="\U1f3c3"
    [":runner:"]="\U1f3c3"
    [":running_man:"]="\U1f3c3\U200d\U2642\Ufe0f"
    [":running_shirt_with_sash:"]="\U1f3bd"
    [":running:"]="\U1f3c3"
    [":running_woman:"]="\U1f3c3\U200d\U2640\Ufe0f"
    [":ru:"]="\U1f1f7\U1f1fa"
    [":rwanda:"]="\U1f1f7\U1f1fc"
    [":safety_pin:"]="\U1f9f7"
    [":safety_vest:"]="\U1f9ba"
    [":sagittarius:"]="\U2650"
    [":sailboat:"]="\U26f5"
    [":sake:"]="\U1f376"
    [":salad:"]="\U1f957"
    [":santa_tone1:"]="\U1f385\U1f3fb"
    [":santa_tone2:"]="\U1f385\U1f3fc"
    [":santa_tone3:"]="\U1f385\U1f3fd"
    [":santa_tone4:"]="\U1f385\U1f3fe"
    [":santa_tone5:"]="\U1f385\U1f3ff"
    [":santa:"]="\U1f385"
    [":salt:"]="\U1f9c2"
    [":samoa:"]="\U1f1fc\U1f1f8"
    [":sandal:"]="\U1f461"
    [":sandwich:"]="\U1f96a"
    [":san_marino:"]="\U1f1f8\U1f1f2"
    [":santa:"]="\U1f385"
    [":satellite_orbital:"]="\U1f6f0"
    [":sao_tome_principe:"]="\U1f1f8\U1f1f9"
    [":sari:"]="\U1f97b"
    [":sassy_man:"]="\U1f481\U200d\U2642\Ufe0f"
    [":sassy_woman:"]="\U1f481\U200d\U2640\Ufe0f"
    [":satellite:"]="\U1f4e1"
    [":sa:"]="\U1f202"
    [":satisfied:"]="\U1f606"
    [":sa:"]="\U1f202\Ufe0f"
    [":saudi_arabia:"]="\U1f1f8\U1f1e6"
    [":sauna_man:"]="\U1f9d6\U200d\U2642\Ufe0f"
    [":sauna_person:"]="\U1f9d6"
    [":sauna_woman:"]="\U1f9d6\U200d\U2640\Ufe0f"
    [":sauropod:"]="\U1f995"
    [":saxophone:"]="\U1f3b7"
    [":scales:"]="\U2696"
    [":scarf:"]="\U1f9e3"
    [":school_satchel:"]="\U1f392"
    [":school:"]="\U1f3eb"
    [":scissors:"]="\U2702"
    [":scooter:"]="\U1f6f4"
    [":scissors:"]="\U2702\Ufe0f"
    [":scorpion:"]="\U1f982"
    [":scorpius:"]="\U264f"
    [":scotland:"]="\U1f3f4\Ue0067\Ue0062\Ue0073\Ue0063\Ue0074\Ue007f"
    [":scream_cat:"]="\U1f640"
    [":scream:"]="\U1f631"
    [":scroll:"]="\U1f4dc"
    [":seat:"]="\U1f4ba"
    [":second_place:"]="\U1f948"
    [":secret:"]="\U3299"
    [":secret:"]="\U3299\Ufe0f"
    [":seedling:"]="\U1f331"
    [":see_no_evil:"]="\U1f648"
    [":selfie_tone1:"]="\U1f933\U1f3fb"
    [":selfie_tone2:"]="\U1f933\U1f3fc"
    [":selfie_tone3:"]="\U1f933\U1f3fd"
    [":selfie_tone4:"]="\U1f933\U1f3fe"
    [":selfie_tone5:"]="\U1f933\U1f3ff"
    [":selfie:"]="\U1f933"
    [":seven:"]="\U0037\U20e3"
    [":senegal:"]="\U1f1f8\U1f1f3"
    [":serbia:"]="\U1f1f7\U1f1f8"
    [":service_dog:"]="\U1f415\U200d\U1f9ba"
    [":seven:"]="\U37\Ufe0f\U20e3"
    [":seychelles:"]="\U1f1f8\U1f1e8"
    [":shallow_pan_of_food:"]="\U1f958"
    [":shamrock:"]="\U2618"
    [":shamrock:"]="\U2618\Ufe0f"
    [":shark:"]="\U1f988"
    [":shaved_ice:"]="\U1f367"
    [":sheep:"]="\U1f411"
    [":shell:"]="\U1f41a"
    [":shield:"]="\U1f6e1"
    [":shinto_shrine:"]="\U26e9"
    [":shield:"]="\U1f6e1\Ufe0f"
    [":shinto_shrine:"]="\U26e9\Ufe0f"
    [":ship:"]="\U1f6a2"
    [":shirt:"]="\U1f455"
    [":shit:"]="\U1f4a9"
    [":shopping_bags:"]="\U1f6cd"
    [":shoe:"]="\U1f45e"
    [":shopping_cart:"]="\U1f6d2"
    [":shopping:"]="\U1f6cd\Ufe0f"
    [":shorts:"]="\U1fa73"
    [":shower:"]="\U1f6bf"
    [":shrimp:"]="\U1f990"
    [":shrug_tone1:"]="\U1f937\U1f3fb"
    [":shrug_tone2:"]="\U1f937\U1f3fc"
    [":shrug_tone3:"]="\U1f937\U1f3fd"
    [":shrug_tone4:"]="\U1f937\U1f3fe"
    [":shrug_tone5:"]="\U1f937\U1f3ff"
    [":shrug:"]="\U1f937"
    [":shrug:"]="\U1f937"
    [":shushing_face:"]="\U1f92b"
    [":sierra_leone:"]="\U1f1f8\U1f1f1"
    [":signal_strength:"]="\U1f4f6"
    [":singapore:"]="\U1f1f8\U1f1ec"
    [":sint_maarten:"]="\U1f1f8\U1f1fd"
    [":six_pointed_star:"]="\U1f52f"
    [":six:"]="\U0036\U20e3"
    [":skier:"]="\U26f7"
    [":six:"]="\U36\Ufe0f\U20e3"
    [":skateboard:"]="\U1f6f9"
    [":skier:"]="\U26f7\Ufe0f"
    [":ski:"]="\U1f3bf"
    [":skull_crossbones:"]="\U2620"
    [":skull_and_crossbones:"]="\U2620\Ufe0f"
    [":skull:"]="\U1f480"
    [":sleeping_accommodation:"]="\U1f6cc"
    [":skunk:"]="\U1f9a8"
    [":sled:"]="\U1f6f7"
    [":sleeping_bed:"]="\U1f6cc"
    [":sleeping:"]="\U1f634"
    [":sleepy:"]="\U1f62a"
    [":slight_frown:"]="\U1f641"
    [":slight_smile:"]="\U1f642"
    [":slightly_frowning_face:"]="\U1f641"
    [":slightly_smiling_face:"]="\U1f642"
    [":sloth:"]="\U1f9a5"
    [":slot_machine:"]="\U1f3b0"
    [":slovakia:"]="\U1f1f8\U1f1f0"
    [":slovenia:"]="\U1f1f8\U1f1ee"
    [":small_airplane:"]="\U1f6e9\Ufe0f"
    [":small_blue_diamond:"]="\U1f539"
    [":small_orange_diamond:"]="\U1f538"
    [":small_red_triangle_down:"]="\U1f53b"
    [":small_red_triangle:"]="\U1f53a"
    [":smile_cat:"]="\U1f638"
    [":smile:"]="\U1f604"
    [":smiley_cat:"]="\U1f63a"
    [":smiley:"]="\U1f603"
    [":smiling_face_with_three_hearts:"]="\U1f970"
    [":smiling_imp:"]="\U1f608"
    [":smirk_cat:"]="\U1f63c"
    [":smirk:"]="\U1f60f"
    [":smoking:"]="\U1f6ac"
    [":snail:"]="\U1f40c"
    [":snake:"]="\U1f40d"
    [":sneezing_face:"]="\U1f927"
    [":snowboarder:"]="\U1f3c2"
    [":snowflake:"]="\U2744"
    [":snowman2:"]="\U2603"
    [":snowflake:"]="\U2744\Ufe0f"
    [":snowman:"]="\U26c4"
    [":snowman_with_snow:"]="\U2603\Ufe0f"
    [":soap:"]="\U1f9fc"
    [":sob:"]="\U1f62d"
    [":soccer:"]="\U26bd"
    [":socks:"]="\U1f9e6"
    [":softball:"]="\U1f94e"
    [":solomon_islands:"]="\U1f1f8\U1f1e7"
    [":somalia:"]="\U1f1f8\U1f1f4"
    [":soon:"]="\U1f51c"
    [":sos:"]="\U1f198"
    [":sound:"]="\U1f509"
    [":south_africa:"]="\U1f1ff\U1f1e6"
    [":south_georgia_south_sandwich_islands:"]="\U1f1ec\U1f1f8"
    [":south_sudan:"]="\U1f1f8\U1f1f8"
    [":space_invader:"]="\U1f47e"
    [":spades:"]="\U2660"
    [":spades:"]="\U2660\Ufe0f"
    [":spaghetti:"]="\U1f35d"
    [":sparkler:"]="\U1f387"
    [":sparkles:"]="\U2728"
    [":sparkle:"]="\U2747"
    [":sparkle:"]="\U2747\Ufe0f"
    [":sparkling_heart:"]="\U1f496"
    [":speaker:"]="\U1f508"
    [":speaking_head:"]="\U1f5e3"
    [":speaking_head:"]="\U1f5e3\Ufe0f"
    [":speak_no_evil:"]="\U1f64a"
    [":speech_balloon:"]="\U1f4ac"
    [":speech_left:"]="\U1f5e8"
    [":speedboat:"]="\U1f6a4"
    [":spider:"]="\U1f577"
    [":spider_web:"]="\U1f578"
    [":spider:"]="\U1f577\Ufe0f"
    [":spider_web:"]="\U1f578\Ufe0f"
    [":spiral_calendar:"]="\U1f5d3\Ufe0f"
    [":spiral_notepad:"]="\U1f5d2\Ufe0f"
    [":sponge:"]="\U1f9fd"
    [":spoon:"]="\U1f944"
    [":spy_tone1:"]="\U1f575\U1f3fb"
    [":spy_tone2:"]="\U1f575\U1f3fc"
    [":spy_tone3:"]="\U1f575\U1f3fd"
    [":spy_tone4:"]="\U1f575\U1f3fe"
    [":spy_tone5:"]="\U1f575\U1f3ff"
    [":spy:"]="\U1f575"
    [":spy:"]="\U1f575"
    [":squid:"]="\U1f991"
    [":stadium:"]="\U1f3df"
    [":sri_lanka:"]="\U1f1f1\U1f1f0"
    [":stadium:"]="\U1f3df\Ufe0f"
    [":standing_man:"]="\U1f9cd\U200d\U2642\Ufe0f"
    [":standing_person:"]="\U1f9cd"
    [":standing_woman:"]="\U1f9cd\U200d\U2640\Ufe0f"
    [":star2:"]="\U1f31f"
    [":star_and_crescent:"]="\U262a"
    [":star_of_david:"]="\U2721"
    [":star_and_crescent:"]="\U262a\Ufe0f"
    [":star_of_david:"]="\U2721\Ufe0f"
    [":star_struck:"]="\U1f929"
    [":stars:"]="\U1f320"
    [":star:"]="\U2b50"
    [":station:"]="\U1f689"
    [":statue_of_liberty:"]="\U1f5fd"
    [":st_barthelemy:"]="\U1f1e7\U1f1f1"
    [":steam_locomotive:"]="\U1f682"
    [":stethoscope:"]="\U1fa7a"
    [":stew:"]="\U1f372"
    [":stop_button:"]="\U23f9"
    [":stopwatch:"]="\U23f1"
    [":st_helena:"]="\U1f1f8\U1f1ed"
    [":st_kitts_nevis:"]="\U1f1f0\U1f1f3"
    [":st_lucia:"]="\U1f1f1\U1f1e8"
    [":st_martin:"]="\U1f1f2\U1f1eb"
    [":stop_button:"]="\U23f9\Ufe0f"
    [":stop_sign:"]="\U1f6d1"
    [":stopwatch:"]="\U23f1\Ufe0f"
    [":st_pierre_miquelon:"]="\U1f1f5\U1f1f2"
    [":straight_ruler:"]="\U1f4cf"
    [":strawberry:"]="\U1f353"
    [":stuck_out_tongue_closed_eyes:"]="\U1f61d"
    [":stuck_out_tongue:"]="\U1f61b"
    [":stuck_out_tongue_winking_eye:"]="\U1f61c"
    [":studio_microphone:"]="\U1f399\Ufe0f"
    [":stuffed_flatbread:"]="\U1f959"
    [":st_vincent_grenadines:"]="\U1f1fb\U1f1e8"
    [":sudan:"]="\U1f1f8\U1f1e9"
    [":sun_behind_large_cloud:"]="\U1f325\Ufe0f"
    [":sun_behind_rain_cloud:"]="\U1f326\Ufe0f"
    [":sun_behind_small_cloud:"]="\U1f324\Ufe0f"
    [":sunflower:"]="\U1f33b"
    [":sunglasses:"]="\U1f60e"
    [":sunny:"]="\U2600"
    [":sunny:"]="\U2600\Ufe0f"
    [":sunrise_over_mountains:"]="\U1f304"
    [":sunrise:"]="\U1f305"
    [":sun_with_face:"]="\U1f31e"
    [":surfer_tone1:"]="\U1f3c4\U1f3fb"
    [":surfer_tone2:"]="\U1f3c4\U1f3fc"
    [":surfer_tone3:"]="\U1f3c4\U1f3fd"
    [":surfer_tone4:"]="\U1f3c4\U1f3fe"
    [":surfer_tone5:"]="\U1f3c4\U1f3ff"
    [":surfer:"]="\U1f3c4"
    [":superhero_man:"]="\U1f9b8\U200d\U2642\Ufe0f"
    [":superhero:"]="\U1f9b8"
    [":superhero_woman:"]="\U1f9b8\U200d\U2640\Ufe0f"
    [":supervillain_man:"]="\U1f9b9\U200d\U2642\Ufe0f"
    [":supervillain:"]="\U1f9b9"
    [":supervillain_woman:"]="\U1f9b9\U200d\U2640\Ufe0f"
    [":surfer:"]="\U1f3c4"
    [":surfing_man:"]="\U1f3c4\U200d\U2642\Ufe0f"
    [":surfing_woman:"]="\U1f3c4\U200d\U2640\Ufe0f"
    [":suriname:"]="\U1f1f8\U1f1f7"
    [":sushi:"]="\U1f363"
    [":suspension_railway:"]="\U1f69f"
    [":svalbard_jan_mayen:"]="\U1f1f8\U1f1ef"
    [":swan:"]="\U1f9a2"
    [":swaziland:"]="\U1f1f8\U1f1ff"
    [":sweat_drops:"]="\U1f4a6"
    [":sweat_smile:"]="\U1f605"
    [":sweat:"]="\U1f613"
    [":sweden:"]="\U1f1f8\U1f1ea"
    [":sweet_potato:"]="\U1f360"
    [":swimmer_tone1:"]="\U1f3ca\U1f3fb"
    [":swimmer_tone2:"]="\U1f3ca\U1f3fc"
    [":swimmer_tone3:"]="\U1f3ca\U1f3fd"
    [":swimmer_tone4:"]="\U1f3ca\U1f3fe"
    [":swimmer_tone5:"]="\U1f3ca\U1f3ff"
    [":swimmer:"]="\U1f3ca"
    [":swim_brief:"]="\U1fa72"
    [":swimmer:"]="\U1f3ca"
    [":swimming_man:"]="\U1f3ca\U200d\U2642\Ufe0f"
    [":swimming_woman:"]="\U1f3ca\U200d\U2640\Ufe0f"
    [":switzerland:"]="\U1f1e8\U1f1ed"
    [":symbols:"]="\U1f523"
    [":synagogue:"]="\U1f54d"
    [":syria:"]="\U1f1f8\U1f1fe"
    [":syringe:"]="\U1f489"
    [":taco:"]="\U1f32e"
    [":tada:"]="\U1f389"
    [":taiwan:"]="\U1f1f9\U1f1fc"
    [":tajikistan:"]="\U1f1f9\U1f1ef"
    [":takeout_box:"]="\U1f961"
    [":tanabata_tree:"]="\U1f38b"
    [":tangerine:"]="\U1f34a"
    [":tanzania:"]="\U1f1f9\U1f1ff"
    [":taurus:"]="\U2649"
    [":taxi:"]="\U1f695"
    [":tea:"]="\U1f375"
    [":teddy_bear:"]="\U1f9f8"
    [":telephone_receiver:"]="\U1f4de"
    [":telephone:"]="\U260e"
    [":telephone:"]="\U260e\Ufe0f"
    [":telescope:"]="\U1f52d"
    [":tennis:"]="\U1f3be"
    [":tent:"]="\U26fa"
    [":thermometer_face:"]="\U1f912"
    [":thermometer:"]="\U1f321"
    [":test_tube:"]="\U1f9ea"
    [":thailand:"]="\U1f1f9\U1f1ed"
    [":thermometer:"]="\U1f321\Ufe0f"
    [":thinking:"]="\U1f914"
    [":third_place:"]="\U1f949"
    [":thought_balloon:"]="\U1f4ad"
    [":three:"]="\U0033\U20e3"
    [":thumbsdown_tone1:"]="\U1f44e\U1f3fb"
    [":thumbsdown_tone2:"]="\U1f44e\U1f3fc"
    [":thumbsdown_tone3:"]="\U1f44e\U1f3fd"
    [":thumbsdown_tone4:"]="\U1f44e\U1f3fe"
    [":thumbsdown_tone5:"]="\U1f44e\U1f3ff"
    [":thread:"]="\U1f9f5"
    [":three:"]="\U33\Ufe0f\U20e3"
    [":thumbsdown:"]="\U1f44e"
    [":thumbsup_tone1:"]="\U1f44d\U1f3fb"
    [":thumbsup_tone2:"]="\U1f44d\U1f3fc"
    [":thumbsup_tone3:"]="\U1f44d\U1f3fd"
    [":thumbsup_tone4:"]="\U1f44d\U1f3fe"
    [":thumbsup_tone5:"]="\U1f44d\U1f3ff"
    [":thumbsup:"]="\U1f44d"
    [":thunder_cloud_rain:"]="\U26c8"
    [":tickets:"]="\U1f39f"
    [":tickets:"]="\U1f39f\Ufe0f"
    [":ticket:"]="\U1f3ab"
    [":tiger2:"]="\U1f405"
    [":tiger:"]="\U1f42f"
    [":timer:"]="\U23f2"
    [":timer_clock:"]="\U23f2\Ufe0f"
    [":timor_leste:"]="\U1f1f9\U1f1f1"
    [":tipping_hand_man:"]="\U1f481\U200d\U2642\Ufe0f"
    [":tipping_hand_person:"]="\U1f481"
    [":tipping_hand_woman:"]="\U1f481\U200d\U2640\Ufe0f"
    [":tired_face:"]="\U1f62b"
    [":tm:"]="\U2122"
    [":tm:"]="\U2122\Ufe0f"
    [":togo:"]="\U1f1f9\U1f1ec"
    [":toilet:"]="\U1f6bd"
    [":tokelau:"]="\U1f1f9\U1f1f0"
    [":tokyo_tower:"]="\U1f5fc"
    [":tomato:"]="\U1f345"
    [":tools:"]="\U1f6e0"
    [":tonga:"]="\U1f1f9\U1f1f4"
    [":tongue:"]="\U1f445"
    [":toolbox:"]="\U1f9f0"
    [":tooth:"]="\U1f9b7"
    [":tophat:"]="\U1f3a9"
    [":top:"]="\U1f51d"
    [":trackball:"]="\U1f5b2"
    [":track_next:"]="\U23ed"
    [":track_previous:"]="\U23ee"
    [":tornado:"]="\U1f32a\Ufe0f"
    [":trackball:"]="\U1f5b2\Ufe0f"
    [":tractor:"]="\U1f69c"
    [":traffic_light:"]="\U1f6a5"
    [":train2:"]="\U1f686"
    [":train:"]="\U1f68b"
    [":tram:"]="\U1f68a"
    [":t-rex:"]="\U1f996"
    [":triangular_flag_on_post:"]="\U1f6a9"
    [":triangular_ruler:"]="\U1f4d0"
    [":trident:"]="\U1f531"
    [":trinidad_tobago:"]="\U1f1f9\U1f1f9"
    [":tristan_da_cunha:"]="\U1f1f9\U1f1e6"
    [":triumph:"]="\U1f624"
    [":trolleybus:"]="\U1f68e"
    [":trophy:"]="\U1f3c6"
    [":tropical_drink:"]="\U1f379"
    [":tropical_fish:"]="\U1f420"
    [":tr:"]="\U1f1f9\U1f1f7"
    [":truck:"]="\U1f69a"
    [":trumpet:"]="\U1f3ba"
    [":tshirt:"]="\U1f455"
    [":tulip:"]="\U1f337"
    [":tumbler_glass:"]="\U1f943"
    [":tunisia:"]="\U1f1f9\U1f1f3"
    [":turkey:"]="\U1f983"
    [":turkmenistan:"]="\U1f1f9\U1f1f2"
    [":turks_caicos_islands:"]="\U1f1f9\U1f1e8"
    [":turtle:"]="\U1f422"
    [":tuvalu:"]="\U1f1f9\U1f1fb"
    [":tv:"]="\U1f4fa"
    [":twisted_rightwards_arrows:"]="\U1f500"
    [":two_hearts:"]="\U1f495"
    [":two_men_holding_hands:"]="\U1f46c"
    [":two:"]="\U0032\U20e3"
    [":two:"]="\U32\Ufe0f\U20e3"
    [":two_women_holding_hands:"]="\U1f46d"
    [":u5272:"]="\U1f239"
    [":u5408:"]="\U1f234"
    [":u55b6:"]="\U1f23a"
    [":u6307:"]="\U1f22f"
    [":u6708:"]="\U1f237"
    [":u6708:"]="\U1f237\Ufe0f"
    [":u6709:"]="\U1f236"
    [":u6e80:"]="\U1f235"
    [":u7121:"]="\U1f21a"
    [":u7533:"]="\U1f238"
    [":u7981:"]="\U1f232"
    [":u7a7a:"]="\U1f233"
    [":umbrella2:"]="\U2602"
    [":uganda:"]="\U1f1fa\U1f1ec"
    [":ukraine:"]="\U1f1fa\U1f1e6"
    [":uk:"]="\U1f1ec\U1f1e7"
    [":umbrella:"]="\U2614"
    [":unamused:"]="\U1f612"
    [":underage:"]="\U1f51e"
    [":unicorn:"]="\U1f984"
    [":united_arab_emirates:"]="\U1f1e6\U1f1ea"
    [":united_nations:"]="\U1f1fa\U1f1f3"
    [":unlock:"]="\U1f513"
    [":upside_down:"]="\U1f643"
    [":upside_down_face:"]="\U1f643"
    [":up:"]="\U1f199"
    [":urn:"]="\U26b1"
    [":uruguay:"]="\U1f1fa\U1f1fe"
    [":us_outlying_islands:"]="\U1f1fa\U1f1f2"
    [":us:"]="\U1f1fa\U1f1f8"
    [":us_virgin_islands:"]="\U1f1fb\U1f1ee"
    [":uzbekistan:"]="\U1f1fa\U1f1ff"
    [":vampire_man:"]="\U1f9db\U200d\U2642\Ufe0f"
    [":vampire:"]="\U1f9db"
    [":vampire_woman:"]="\U1f9db\U200d\U2640\Ufe0f"
    [":vanuatu:"]="\U1f1fb\U1f1fa"
    [":vatican_city:"]="\U1f1fb\U1f1e6"
    [":venezuela:"]="\U1f1fb\U1f1ea"
    [":vertical_traffic_light:"]="\U1f6a6"
    [":vhs:"]="\U1f4fc"
    [":vibration_mode:"]="\U1f4f3"
    [":video_camera:"]="\U1f4f9"
    [":video_game:"]="\U1f3ae"
    [":vietnam:"]="\U1f1fb\U1f1f3"
    [":violin:"]="\U1f3bb"
    [":virgo:"]="\U264d"
    [":volcano:"]="\U1f30b"
    [":volleyball:"]="\U1f3d0"
    [":vomiting_face:"]="\U1f92e"
    [":vs:"]="\U1f19a"
    [":v_tone1:"]="\U270c\U1f3fb"
    [":v_tone2:"]="\U270c\U1f3fc"
    [":v_tone3:"]="\U270c\U1f3fd"
    [":v_tone4:"]="\U270c\U1f3fe"
    [":v_tone5:"]="\U270c\U1f3ff"
    [":v:"]="\U270c"
    [":vulcan_tone1:"]="\U1f596\U1f3fb"
    [":vulcan_tone2:"]="\U1f596\U1f3fc"
    [":vulcan_tone3:"]="\U1f596\U1f3fd"
    [":vulcan_tone4:"]="\U1f596\U1f3fe"
    [":vulcan_tone5:"]="\U1f596\U1f3ff"
    [":vulcan:"]="\U1f596"
    [":walking_tone1:"]="\U1f6b6\U1f3fb"
    [":walking_tone2:"]="\U1f6b6\U1f3fc"
    [":walking_tone3:"]="\U1f6b6\U1f3fd"
    [":walking_tone4:"]="\U1f6b6\U1f3fe"
    [":walking_tone5:"]="\U1f6b6\U1f3ff"
    [":walking:"]="\U1f6b6"
    [":v:"]="\U270c\Ufe0f"
    [":vulcan_salute:"]="\U1f596"
    [":waffle:"]="\U1f9c7"
    [":wales:"]="\U1f3f4\Ue0067\Ue0062\Ue0077\Ue006c\Ue0073\Ue007f"
    [":walking_man:"]="\U1f6b6\U200d\U2642\Ufe0f"
    [":walking:"]="\U1f6b6"
    [":walking_woman:"]="\U1f6b6\U200d\U2640\Ufe0f"
    [":wallis_futuna:"]="\U1f1fc\U1f1eb"
    [":waning_crescent_moon:"]="\U1f318"
    [":waning_gibbous_moon:"]="\U1f316"
    [":warning:"]="\U26a0"
    [":wastebasket:"]="\U1f5d1"
    [":warning:"]="\U26a0\Ufe0f"
    [":wastebasket:"]="\U1f5d1\Ufe0f"
    [":watch:"]="\U231a"
    [":water_buffalo:"]="\U1f403"
    [":watermelon:"]="\U1f349"
    [":water_polo_tone1:"]="\U1f93d\U1f3fb"
    [":water_polo_tone2:"]="\U1f93d\U1f3fc"
    [":water_polo_tone3:"]="\U1f93d\U1f3fd"
    [":water_polo_tone4:"]="\U1f93d\U1f3fe"
    [":water_polo_tone5:"]="\U1f93d\U1f3ff"
    [":water_polo:"]="\U1f93d"
    [":water_polo:"]="\U1f93d"
    [":wave_tone1:"]="\U1f44b\U1f3fb"
    [":wave_tone2:"]="\U1f44b\U1f3fc"
    [":wave_tone3:"]="\U1f44b\U1f3fd"
    [":wave_tone4:"]="\U1f44b\U1f3fe"
    [":wave_tone5:"]="\U1f44b\U1f3ff"
    [":wave:"]="\U1f44b"
    [":wavy_dash:"]="\U3030"
    [":wavy_dash:"]="\U3030\Ufe0f"
    [":waxing_crescent_moon:"]="\U1f312"
    [":waxing_gibbous_moon:"]="\U1f314"
    [":wc:"]="\U1f6be"
    [":weary:"]="\U1f629"
    [":wedding:"]="\U1f492"
    [":weight_lifting_man:"]="\U1f3cb\Ufe0f\U200d\U2642\Ufe0f"
    [":weight_lifting:"]="\U1f3cb\Ufe0f"
    [":weight_lifting_woman:"]="\U1f3cb\Ufe0f\U200d\U2640\Ufe0f"
    [":western_sahara:"]="\U1f1ea\U1f1ed"
    [":whale2:"]="\U1f40b"
    [":whale:"]="\U1f433"
    [":wheelchair:"]="\U267f"
    [":wheel_of_dharma:"]="\U2638"
    [":wheel_of_dharma:"]="\U2638\Ufe0f"
    [":white_check_mark:"]="\U2705"
    [":white_circle:"]="\U26aa"
    [":white_flag:"]="\U1f3f3\Ufe0f"
    [":white_flower:"]="\U1f4ae"
    [":white_haired_man:"]="\U1f468\U200d\U1f9b3"
    [":white_haired_woman:"]="\U1f469\U200d\U1f9b3"
    [":white_heart:"]="\U1f90d"
    [":white_large_square:"]="\U2b1c"
    [":white_medium_small_square:"]="\U25fd"
    [":white_medium_square:"]="\U25fb"
    [":white_small_square:"]="\U25ab"
    [":white_medium_square:"]="\U25fb\Ufe0f"
    [":white_small_square:"]="\U25ab\Ufe0f"
    [":white_square_button:"]="\U1f533"
    [":white_sun_cloud:"]="\U1f325"
    [":white_sun_rain_cloud:"]="\U1f326"
    [":white_sun_small_cloud:"]="\U1f324"
    [":wilted_rose:"]="\U1f940"
    [":wind_blowing_face:"]="\U1f32c"
    [":wilted_flower:"]="\U1f940"
    [":wind_chime:"]="\U1f390"
    [":wind_face:"]="\U1f32c\Ufe0f"
    [":wine_glass:"]="\U1f377"
    [":wink:"]="\U1f609"
    [":wolf:"]="\U1f43a"
    [":woman_tone1:"]="\U1f469\U1f3fb"
    [":woman_tone2:"]="\U1f469\U1f3fc"
    [":woman_tone3:"]="\U1f469\U1f3fd"
    [":woman_tone4:"]="\U1f469\U1f3fe"
    [":woman_tone5:"]="\U1f469\U1f3ff"
    [":woman:"]="\U1f469"
    [":woman_artist:"]="\U1f469\U200d\U1f3a8"
    [":woman_astronaut:"]="\U1f469\U200d\U1f680"
    [":woman_cartwheeling:"]="\U1f938\U200d\U2640\Ufe0f"
    [":woman_cook:"]="\U1f469\U200d\U1f373"
    [":woman_dancing:"]="\U1f483"
    [":woman_facepalming:"]="\U1f926\U200d\U2640\Ufe0f"
    [":woman_factory_worker:"]="\U1f469\U200d\U1f3ed"
    [":woman_farmer:"]="\U1f469\U200d\U1f33e"
    [":woman_firefighter:"]="\U1f469\U200d\U1f692"
    [":woman_health_worker:"]="\U1f469\U200d\U2695\Ufe0f"
    [":woman_in_manual_wheelchair:"]="\U1f469\U200d\U1f9bd"
    [":woman_in_motorized_wheelchair:"]="\U1f469\U200d\U1f9bc"
    [":woman_judge:"]="\U1f469\U200d\U2696\Ufe0f"
    [":woman_juggling:"]="\U1f939\U200d\U2640\Ufe0f"
    [":woman_mechanic:"]="\U1f469\U200d\U1f527"
    [":woman_office_worker:"]="\U1f469\U200d\U1f4bc"
    [":woman_pilot:"]="\U1f469\U200d\U2708\Ufe0f"
    [":woman_playing_handball:"]="\U1f93e\U200d\U2640\Ufe0f"
    [":woman_playing_water_polo:"]="\U1f93d\U200d\U2640\Ufe0f"
    [":woman_scientist:"]="\U1f469\U200d\U1f52c"
    [":womans_clothes:"]="\U1f45a"
    [":womans_hat:"]="\U1f452"
    [":woman_shrugging:"]="\U1f937\U200d\U2640\Ufe0f"
    [":woman_singer:"]="\U1f469\U200d\U1f3a4"
    [":woman_student:"]="\U1f469\U200d\U1f393"
    [":woman_teacher:"]="\U1f469\U200d\U1f3eb"
    [":woman_technologist:"]="\U1f469\U200d\U1f4bb"
    [":woman:"]="\U1f469"
    [":woman_with_headscarf:"]="\U1f9d5"
    [":woman_with_probing_cane:"]="\U1f469\U200d\U1f9af"
    [":woman_with_turban:"]="\U1f473\U200d\U2640\Ufe0f"
    [":womens:"]="\U1f6ba"
    [":women_wrestling:"]="\U1f93c\U200d\U2640\Ufe0f"
    [":woozy_face:"]="\U1f974"
    [":world_map:"]="\U1f5fa\Ufe0f"
    [":worried:"]="\U1f61f"
    [":wrench:"]="\U1f527"
    [":wrestlers_tone1:"]="\U1f93c\U1f3fb"
    [":wrestlers_tone2:"]="\U1f93c\U1f3fc"
    [":wrestlers_tone3:"]="\U1f93c\U1f3fd"
    [":wrestlers_tone4:"]="\U1f93c\U1f3fe"
    [":wrestlers_tone5:"]="\U1f93c\U1f3ff"
    [":wrestlers:"]="\U1f93c"
    [":wrestlers:"]="\U1f93c"
    [":writing_hand_tone1:"]="\U270d\U1f3fb"
    [":writing_hand_tone2:"]="\U270d\U1f3fc"
    [":writing_hand_tone3:"]="\U270d\U1f3fd"
    [":writing_hand_tone4:"]="\U270d\U1f3fe"
    [":writing_hand_tone5:"]="\U270d\U1f3ff"
    [":writing_hand:"]="\U270d"
    [":wrestling:"]="\U1f93c"
    [":writing_hand:"]="\U270d\Ufe0f"
    [":x:"]="\U274c"
    [":yarn:"]="\U1f9f6"
    [":yawning_face:"]="\U1f971"
    [":yellow_circle:"]="\U1f7e1"
    [":yellow_heart:"]="\U1f49b"
    [":yellow_square:"]="\U1f7e8"
    [":yemen:"]="\U1f1fe\U1f1ea"
    [":yen:"]="\U1f4b4"
    [":yin_yang:"]="\U262f"
    [":yin_yang:"]="\U262f\Ufe0f"
    [":yo_yo:"]="\U1fa80"
    [":yum:"]="\U1f60b"
    [":zambia:"]="\U1f1ff\U1f1f2"
    [":zany_face:"]="\U1f92a"
    [":zap:"]="\U26a1"
    [":zero:"]="\U0030\U20e3"
    [":zipper_mouth:"]="\U1f910"
    [":zebra:"]="\U1f993"
    [":zero:"]="\U30\Ufe0f\U20e3"
    [":zimbabwe:"]="\U1f1ff\U1f1fc"
    [":zipper_mouth_face:"]="\U1f910"
    [":zombie_man:"]="\U1f9df\U200d\U2642\Ufe0f"
    [":zombie:"]="\U1f9df"
    [":zombie_woman:"]="\U1f9df\U200d\U2640\Ufe0f"
    [":zzz:"]="\U1f4a4"
)

# Gets emoji from the associative array
# Returns raw emoji character or original token
emojify_token () {
    local value=${emojis[$1]}
    [[ -n $value ]] && echo -e "$value" || echo "$1"
}

# Function to emojify a line.
emojify_line () {
    line=$*
    current_token=""
    emojified_line=""
    for (( i=0; i<${#line}; i++ )); do
        current_char="${line:$i:1}"

        if [[ -z "$current_token" ]]; then
            # starting a new token.
            if [[ $current_char =~ ^:$ ]]; then
                current_token+=$current_char
            # not starting a new token.
            else
                emojified_line+=$current_char
            fi
        else
            # finishing the current token.
            if [[ $current_char =~ ^:$ ]]; then
                emojified_token=$(emojify_token "$current_token$current_char")

                # nothing changed. we still need the ending ':' as it might
                # serve for an upcoming emoji 😁😁🎉🎉
                if [[ "$emojified_token" == "$current_token$current_char" ]]; then
                    emojified_line+=$current_token
                    current_token=$current_char
                else
                    emojified_line+=$emojified_token
                    current_token=""
                fi
            # continuing the current token.
            elif [[ $current_char =~ ^[a-zA-Z0-9_+-]$ ]]; then
                current_token+=$current_char
            # dropping the current token.
            else
                current_token+=$current_char
                emojified_line+=$current_token
                current_token=""
            fi
        fi
    done
    emojified_line+=$current_token
    echo "$emojified_line"
}

# Function to print help info.
help () {
    cat <<EOF
    emojify - emoji on the command line 😱

    USAGE: emojify [-h|--help] [-l|--list] TEXT
EOF
    if [[ 'list' == "$1" ]]; then
        echo 'Supported emojis:'
        for key in "${!emojis[@]}"; do
            echo -e "$key ${emojis[$key]}"
        done
    fi
    exit 0
}

# If arguments are provided on the command line then check for supported help
# options or process the arguments as emoji names.
if [[ -n $1 ]]; then
    case $1 in
    '-h' | '--help' )
        help
        ;;

    '-l' | '--list' )
        help list
        ;;

    '-v' | '--version' )
        echo $emojify_version
        ;;

    * )
        emojify_line "$*"
        ;;
    esac
else
    while IFS=''; read -r line || [ -n "$line" ]; do
        emojify_line "$line"
    done
fi
