Files
andros d4af4b675e Resolve every emoji shortcode the relay sends
Replace the hand-curated 70-entry shortcode map with the full emojibase
catalog (5884 entries unioned over github + iamcal + emojibase, the
canonical dataset GitHub, Slack, Discord and Mastodon all derive from)
so any reaction users send through the wider Org Social ecosystem now
renders as the right emoji.

Two relay quirks that still slipped through the original :KEY: scanner:
- Some clients send moods as bare tokens (`happy`, `heartbeat`) with no
  delimiters. The resolver now treats a colon-free input as a candidate
  shortcode key when the whole string matches the map; multi-word body
  text is unaffected because it never matches.
- Other clients use dashes instead of underscores (`christmas-tree` vs
  `christmas_tree`). Lookups now fall back to the underscore form.

Apply the resolver in the two places it was still missing:
NotificationsView (reaction icon + action label) and ThreadView (chips),
plus the inline mood badge next to the language tag in PostRowView. The
test suite grows from 5 to 8 cases covering bare-token, dash-form and
free-text inputs.
2026-04-29 16:32:25 +01:00

5944 lines
241 KiB
Swift
Raw Permalink Blame History

This file contains invisible Unicode characters
This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
import Foundation
/// Resolves the most common GitHub / Mastodon-style emoji shortcodes
/// (`:thumbsup:`, `:heartbeat:`, `:happy:`, ...) to their Unicode
/// equivalents.
///
/// The map is generated from the `emojibase-data` package (the canonical
/// emoji dataset that GitHub, Slack, Discord and Mastodon all derive
/// from), unioned over the github + iamcal + emojibase shortcode sets,
/// plus a handful of common informal aliases (`happy`, `sad`, `lol`,
/// `+1`, ...). Some Org Social clients store the `:MOOD:` value or a
/// reaction emoji as the raw shortcode form because that is what their
/// input flow gives them. Renderers need a single representation, so this
/// helper either returns the looked-up Unicode glyph or, if unknown, the
/// input string unchanged (so it stays visible rather than vanishing).
public enum EmojiShortcode {
/// Returns `text` with every known `:shortcode:` token replaced by its
/// Unicode emoji, leaving everything else alone. Stable enough for
/// inline use inside a sentence (e.g. Org body) as well as on its own.
///
/// Some Org Social clients send reaction moods as bare tokens without the
/// `:colons:` (`happy`, `heartbeat`, ...), and others use dashes instead
/// of underscores (`christmas-tree` instead of `christmas_tree`). When the
/// input contains no colon we treat the whole string as a potential
/// shortcode key. Multi-token free text is unaffected because the bare
/// fallback only matches the entire input against the map.
public static func resolve(_ text: String) -> String {
guard text.contains(":") else { return lookup(text) ?? text }
var result = ""
result.reserveCapacity(text.count)
var i = text.startIndex
while i < text.endIndex {
if text[i] == ":",
let close = text[text.index(after: i)..<text.endIndex].firstIndex(of: ":") {
let key = String(text[text.index(after: i)..<close])
if let emoji = lookup(key) {
result.append(emoji)
i = text.index(after: close)
continue
}
}
result.append(text[i])
i = text.index(after: i)
}
return result
}
private static func lookup(_ key: String) -> String? {
if let hit = map[key] { return hit }
if key.contains("-") {
return map[key.replacingOccurrences(of: "-", with: "_")]
}
return nil
}
private static let map: [String: String] = [
"+1": "👍",
"+1_tone1": "👍🏻",
"+1_tone2": "👍🏼",
"+1_tone3": "👍🏽",
"+1_tone4": "👍🏾",
"+1_tone5": "👍🏿",
"-1": "👎",
"-1_tone1": "👎🏻",
"-1_tone2": "👎🏼",
"-1_tone3": "👎🏽",
"-1_tone4": "👎🏾",
"-1_tone5": "👎🏿",
"100": "💯",
"1234": "🔢",
"1st": "🥇",
"1st_place_medal": "🥇",
"2nd": "🥈",
"2nd_place_medal": "🥈",
"3rd": "🥉",
"3rd_place_medal": "🥉",
"8ball": "🎱",
"a": "🅰",
"a_blood": "🅰",
"ab": "🆎",
"ab_blood": "🆎",
"abacus": "🧮",
"abc": "🔤",
"abcd": "🔡",
"accept": "🉑",
"accordion": "🪗",
"adhesive_bandage": "🩹",
"admission_tickets": "🎟",
"adult": "🧑",
"adult_tone1": "🧑🏻",
"adult_tone2": "🧑🏼",
"adult_tone3": "🧑🏽",
"adult_tone4": "🧑🏾",
"adult_tone5": "🧑🏿",
"aerial_tramway": "🚡",
"afghanistan": "🇦🇫",
"airplane": "✈️",
"airplane_arriving": "🛬",
"airplane_departure": "🛫",
"aland_islands": "🇦🇽",
"alarm_clock": "⏰️",
"albania": "🇦🇱",
"alembic": "⚗️",
"algeria": "🇩🇿",
"alien": "👽",
"alien_monster": "👾",
"all_good": "🙆",
"all_good_tone1": "🙆🏻",
"all_good_tone2": "🙆🏼",
"all_good_tone3": "🙆🏽",
"all_good_tone4": "🙆🏾",
"all_good_tone5": "🙆🏿",
"ambulance": "🚑",
"american_samoa": "🇦🇸",
"amphora": "🏺",
"anatomical_heart": "🫀",
"anchor": "⚓️",
"andorra": "🇦🇩",
"android": "📱",
"angel": "👼",
"angel_tone1": "👼🏻",
"angel_tone2": "👼🏼",
"angel_tone3": "👼🏽",
"angel_tone4": "👼🏾",
"angel_tone5": "👼🏿",
"anger": "💢",
"angola": "🇦🇴",
"angry": "😠",
"angry_face": "😠",
"angry_imp": "👿",
"anguilla": "🇦🇮",
"anguished": "😧",
"anguished_face": "😧",
"ant": "🐜",
"antarctica": "🇦🇶",
"antenna_bars": "📶",
"antigua_barbuda": "🇦🇬",
"anxious": "😰",
"anxious_face": "😰",
"apple": "🍎",
"aquarius": "♒️",
"argentina": "🇦🇷",
"aries": "♈️",
"armenia": "🇦🇲",
"arrow_backward": "◀️",
"arrow_double_down": "⏬️",
"arrow_double_up": "⏫️",
"arrow_down": "⬇️",
"arrow_down_small": "🔽",
"arrow_forward": "▶️",
"arrow_heading_down": "⤵️",
"arrow_heading_up": "⤴️",
"arrow_left": "⬅️",
"arrow_left_hook": "↩️",
"arrow_lower_left": "↙️",
"arrow_lower_right": "↘️",
"arrow_right": "➡️",
"arrow_right_hook": "↪️",
"arrow_up": "⬆️",
"arrow_up_down": "↕️",
"arrow_up_small": "🔼",
"arrow_upper_left": "↖️",
"arrow_upper_right": "↗️",
"arrows_clockwise": "🔃",
"arrows_counterclockwise": "🔄",
"art": "🎨",
"articulated_lorry": "🚛",
"artificial_satellite": "🛰",
"artist": "🧑‍🎨",
"artist_tone1": "🧑🏻‍🎨",
"artist_tone2": "🧑🏼‍🎨",
"artist_tone3": "🧑🏽‍🎨",
"artist_tone4": "🧑🏾‍🎨",
"artist_tone5": "🧑🏿‍🎨",
"aruba": "🇦🇼",
"ascension_island": "🇦🇨",
"asterisk": "*️⃣",
"astonished": "😲",
"astonished_face": "😲",
"astronaut": "🧑‍🚀",
"astronaut_tone1": "🧑🏻‍🚀",
"astronaut_tone2": "🧑🏼‍🚀",
"astronaut_tone3": "🧑🏽‍🚀",
"astronaut_tone4": "🧑🏾‍🚀",
"astronaut_tone5": "🧑🏿‍🚀",
"athletic_shoe": "👟",
"atm": "🏧",
"atom": "⚛️",
"atom_symbol": "⚛️",
"australia": "🇦🇺",
"austria": "🇦🇹",
"auto_rickshaw": "🛺",
"avocado": "🥑",
"axe": "🪓",
"azerbaijan": "🇦🇿",
"b": "🅱",
"b_blood": "🅱",
"baby": "👶",
"baby_bottle": "🍼",
"baby_chick": "🐤",
"baby_symbol": "🚼",
"baby_tone1": "👶🏻",
"baby_tone2": "👶🏼",
"baby_tone3": "👶🏽",
"baby_tone4": "👶🏾",
"baby_tone5": "👶🏿",
"back": "🔙",
"backpack": "🎒",
"bacon": "🥓",
"badger": "🦡",
"badminton": "🏸",
"badminton_racquet_and_shuttlecock": "🏸",
"bagel": "🥯",
"baggage_claim": "🛄",
"baguette_bread": "🥖",
"bahamas": "🇧🇸",
"bahrain": "🇧🇭",
"balance_scale": "⚖️",
"bald": "🧑‍🦲",
"bald_man": "👨‍🦲",
"bald_person": "🧑‍🦲",
"bald_tone1": "🧑🏻‍🦲",
"bald_tone2": "🧑🏼‍🦲",
"bald_tone3": "🧑🏽‍🦲",
"bald_tone4": "🧑🏾‍🦲",
"bald_tone5": "🧑🏿‍🦲",
"bald_woman": "👩‍🦲",
"ballet_dancer": "🧑‍🩰",
"ballet_dancer_tone1": "🧑🏻‍🩰",
"ballet_dancer_tone2": "🧑🏼‍🩰",
"ballet_dancer_tone3": "🧑🏽‍🩰",
"ballet_dancer_tone4": "🧑🏾‍🩰",
"ballet_dancer_tone5": "🧑🏿‍🩰",
"ballet_shoes": "🩰",
"balloon": "🎈",
"ballot_box": "🗳",
"ballot_box_with_ballot": "🗳",
"ballot_box_with_check": "☑️",
"bamboo": "🎍",
"banana": "🍌",
"bandaid": "🩹",
"bangbang": "‼️",
"bangladesh": "🇧🇩",
"banjo": "🪕",
"bank": "🏦",
"bar_chart": "📊",
"barbados": "🇧🇧",
"barber": "💈",
"barber_pole": "💈",
"barely_sunny": "🌥",
"baseball": "⚾️",
"basket": "🧺",
"basketball": "🏀",
"basketball_man": "⛹️‍♂️",
"basketball_woman": "⛹️‍♀️",
"bat": "🦇",
"bath": "🛀",
"bath_tone1": "🛀🏻",
"bath_tone2": "🛀🏼",
"bath_tone3": "🛀🏽",
"bath_tone4": "🛀🏾",
"bath_tone5": "🛀🏿",
"bathroom": "🚻",
"bathtub": "🛁",
"battery": "🔋",
"beach": "🏖",
"beach_umbrella": "🏖",
"beach_with_umbrella": "🏖",
"beaming_face": "😁",
"beans": "🫘",
"bear": "🐻",
"bear_face": "🐻",
"bearded_person": "🧔",
"beating_heart": "💓",
"beaver": "🦫",
"bed": "🛏",
"bee": "🐝",
"beer": "🍺",
"beers": "🍻",
"beetle": "🪲",
"beginner": "🔰",
"belarus": "🇧🇾",
"belgium": "🇧🇪",
"belize": "🇧🇿",
"bell": "🔔",
"bell_pepper": "🫑",
"bellhop": "🛎",
"bellhop_bell": "🛎",
"benin": "🇧🇯",
"bento": "🍱",
"bento_box": "🍱",
"bermuda": "🇧🇲",
"beverage_box": "🧃",
"bhutan": "🇧🇹",
"bicycle": "🚲",
"bicyclist": "🚴",
"bicyclist_tone1": "🚴🏻",
"bicyclist_tone2": "🚴🏼",
"bicyclist_tone3": "🚴🏽",
"bicyclist_tone4": "🚴🏾",
"bicyclist_tone5": "🚴🏿",
"bike": "🚲",
"biking": "🚴",
"biking_man": "🚴‍♂️",
"biking_tone1": "🚴🏻",
"biking_tone2": "🚴🏼",
"biking_tone3": "🚴🏽",
"biking_tone4": "🚴🏾",
"biking_tone5": "🚴🏿",
"biking_woman": "🚴‍♀️",
"bikini": "👙",
"billed_cap": "🧢",
"billiards": "🎱",
"biohazard": "☣️",
"biohazard_sign": "☣️",
"bird": "🐦",
"bird_face": "🐦",
"birthday": "🎂",
"birthday_cake": "🎂",
"bison": "🦬",
"biting_lip": "🫦",
"black_bird": "🐦‍⬛",
"black_cat": "🐈‍⬛",
"black_circle": "⚫️",
"black_circle_for_record": "⏺️",
"black_flag": "🏴",
"black_heart": "🖤",
"black_joker": "🃏",
"black_large_square": "⬛️",
"black_left_pointing_double_triangle_with_vertical_bar": "⏮️",
"black_medium_small_square": "◾️",
"black_medium_square": "◼️",
"black_nib": "✒️",
"black_right_pointing_double_triangle_with_vertical_bar": "⏭️",
"black_right_pointing_triangle_with_double_vertical_bar": "⏯️",
"black_small_square": "▪️",
"black_square_button": "🔲",
"black_square_for_stop": "⏹️",
"blond-haired-man": "👱‍♂️",
"blond-haired-woman": "👱‍♀️",
"blond_haired": "👱",
"blond_haired_man": "👱‍♂️",
"blond_haired_person": "👱",
"blond_haired_tone1": "👱🏻",
"blond_haired_tone2": "👱🏼",
"blond_haired_tone3": "👱🏽",
"blond_haired_tone4": "👱🏾",
"blond_haired_tone5": "👱🏿",
"blond_haired_woman": "👱‍♀️",
"blonde_woman": "👱‍♀️",
"blossom": "🌼",
"blowfish": "🐡",
"blowing_a_kiss": "😘",
"blue_book": "📘",
"blue_car": "🚙",
"blue_circle": "🔵",
"blue_heart": "💙",
"blue_square": "🟦",
"blueberries": "🫐",
"blush": "😊",
"boar": "🐗",
"boat": "⛵️",
"boba_drink": "🧋",
"bolivia": "🇧🇴",
"bomb": "💣",
"bone": "🦴",
"book": "📖",
"bookmark": "🔖",
"bookmark_tabs": "📑",
"books": "📚",
"boom": "💥",
"boomerang": "🪃",
"boot": "👢",
"bosnia_herzegovina": "🇧🇦",
"botswana": "🇧🇼",
"bouncing_ball_man": "⛹️‍♂️",
"bouncing_ball_person": "⛹️",
"bouncing_ball_woman": "⛹️‍♀️",
"bouquet": "💐",
"bouvet_island": "🇧🇻",
"bow": "🙇",
"bow_and_arrow": "🏹",
"bow_tone1": "🙇🏻",
"bow_tone2": "🙇🏼",
"bow_tone3": "🙇🏽",
"bow_tone4": "🙇🏾",
"bow_tone5": "🙇🏿",
"bowing_man": "🙇‍♂️",
"bowing_woman": "🙇‍♀️",
"bowl_with_spoon": "🥣",
"bowling": "🎳",
"boxing_glove": "🥊",
"boy": "👦",
"boy_tone1": "👦🏻",
"boy_tone2": "👦🏼",
"boy_tone3": "👦🏽",
"boy_tone4": "👦🏾",
"boy_tone5": "👦🏿",
"brain": "🧠",
"brazil": "🇧🇷",
"bread": "🍞",
"breast-feeding": "🤱",
"breast_feeding": "🤱",
"breast_feeding_tone1": "🤱🏻",
"breast_feeding_tone2": "🤱🏼",
"breast_feeding_tone3": "🤱🏽",
"breast_feeding_tone4": "🤱🏾",
"breast_feeding_tone5": "🤱🏿",
"bricks": "🧱",
"bride_with_veil": "👰‍♀️",
"bridge_at_night": "🌉",
"briefcase": "💼",
"briefs": "🩲",
"bright_button": "🔆",
"british_indian_ocean_territory": "🇮🇴",
"british_virgin_islands": "🇻🇬",
"broccoli": "🥦",
"broken_chain": "⛓️‍💥",
"broken_heart": "💔",
"broom": "🧹",
"brown_circle": "🟤",
"brown_heart": "🤎",
"brown_mushroom": "🍄‍🟫",
"brown_square": "🟫",
"brunei": "🇧🇳",
"bubble_tea": "🧋",
"bubbles": "🫧",
"bucket": "🪣",
"bug": "🐛",
"building_construction": "🏗",
"bulb": "💡",
"bulgaria": "🇧🇬",
"bullettrain_front": "🚅",
"bullettrain_side": "🚄",
"bullseye": "🎯",
"burkina_faso": "🇧🇫",
"burma": "🇲🇲",
"burrito": "🌯",
"burundi": "🇧🇮",
"bus": "🚌",
"business_suit_levitating": "🕴",
"busstop": "🚏",
"bust_in_silhouette": "👤",
"busts_in_silhouette": "👥",
"butter": "🧈",
"butterfly": "🦋",
"cactus": "🌵",
"cake": "🍰",
"calendar": "📆",
"calendar_spiral": "🗓",
"call_me_hand": "🤙",
"call_me_hand_tone1": "🤙🏻",
"call_me_hand_tone2": "🤙🏼",
"call_me_hand_tone3": "🤙🏽",
"call_me_hand_tone4": "🤙🏾",
"call_me_hand_tone5": "🤙🏿",
"calling": "📲",
"cambodia": "🇰🇭",
"camel": "🐫",
"camera": "📷",
"camera_flash": "📸",
"camera_with_flash": "📸",
"cameroon": "🇨🇲",
"camping": "🏕",
"canada": "🇨🇦",
"canary_islands": "🇮🇨",
"cancer": "♋️",
"candle": "🕯",
"candy": "🍬",
"canned_food": "🥫",
"canoe": "🛶",
"cape_verde": "🇨🇻",
"capital_abcd": "🔠",
"capricorn": "♑️",
"car": "🚗",
"card_file_box": "🗃",
"card_index": "📇",
"card_index_dividers": "🗂",
"caribbean_netherlands": "🇧🇶",
"carousel_horse": "🎠",
"carp_streamer": "🎏",
"carpentry_saw": "🪚",
"carrot": "🥕",
"cartwheeling": "🤸",
"cartwheeling_tone1": "🤸🏻",
"cartwheeling_tone2": "🤸🏼",
"cartwheeling_tone3": "🤸🏽",
"cartwheeling_tone4": "🤸🏾",
"cartwheeling_tone5": "🤸🏿",
"castle": "🏰",
"cat": "🐱",
"cat2": "🐈",
"cat_face": "🐱",
"cayman_islands": "🇰🇾",
"cd": "💿",
"censored": "🤬",
"central_african_republic": "🇨🇫",
"ceuta_melilla": "🇪🇦",
"chad": "🇹🇩",
"chains": "⛓️",
"chair": "🪑",
"champagne": "🍾",
"chart": "💹",
"chart_decreasing": "📉",
"chart_increasing": "📈",
"chart_with_downwards_trend": "📉",
"chart_with_upwards_trend": "📈",
"check_mark": "✔️",
"check_mark_button": "✅️",
"checkered_flag": "🏁",
"cheese": "🧀",
"cheese_wedge": "🧀",
"cherries": "🍒",
"cherry_blossom": "🌸",
"chess_pawn": "♟️",
"chestnut": "🌰",
"chicken": "🐔",
"chicken_face": "🐔",
"child": "🧒",
"child_tone1": "🧒🏻",
"child_tone2": "🧒🏼",
"child_tone3": "🧒🏽",
"child_tone4": "🧒🏾",
"child_tone5": "🧒🏿",
"children_crossing": "🚸",
"chile": "🇨🇱",
"china": "🇨🇳",
"chipmunk": "🐿",
"chocolate_bar": "🍫",
"chopsticks": "🥢",
"christmas_island": "🇨🇽",
"christmas_tree": "🎄",
"church": "⛪️",
"cigarette": "🚬",
"cinema": "🎦",
"circus_tent": "🎪",
"city_dusk": "🌆",
"city_sunrise": "🌇",
"city_sunset": "🌆",
"cityscape": "🏙",
"cl": "🆑",
"clamp": "🗜",
"clap": "👏",
"clap_tone1": "👏🏻",
"clap_tone2": "👏🏼",
"clap_tone3": "👏🏽",
"clap_tone4": "👏🏾",
"clap_tone5": "👏🏿",
"clapper": "🎬",
"clapping_hands": "👏",
"clapping_hands_tone1": "👏🏻",
"clapping_hands_tone2": "👏🏼",
"clapping_hands_tone3": "👏🏽",
"clapping_hands_tone4": "👏🏾",
"clapping_hands_tone5": "👏🏿",
"classical_building": "🏛",
"climbing": "🧗",
"climbing_man": "🧗‍♂️",
"climbing_tone1": "🧗🏻",
"climbing_tone2": "🧗🏼",
"climbing_tone3": "🧗🏽",
"climbing_tone4": "🧗🏾",
"climbing_tone5": "🧗🏿",
"climbing_woman": "🧗‍♀️",
"clinking_glasses": "🥂",
"clipboard": "📋",
"clipperton_island": "🇨🇵",
"clock": "🕰",
"clock1": "🕐",
"clock10": "🕙",
"clock1030": "🕥",
"clock11": "🕚",
"clock1130": "🕦",
"clock12": "🕛",
"clock1230": "🕧",
"clock130": "🕜",
"clock2": "🕑",
"clock230": "🕝",
"clock3": "🕒",
"clock330": "🕞",
"clock4": "🕓",
"clock430": "🕟",
"clock5": "🕔",
"clock530": "🕠",
"clock6": "🕕",
"clock630": "🕡",
"clock7": "🕖",
"clock730": "🕢",
"clock8": "🕗",
"clock830": "🕣",
"clock9": "🕘",
"clock930": "🕤",
"clockwise": "🔃",
"closed_book": "📕",
"closed_lock_with_key": "🔐",
"closed_umbrella": "🌂",
"cloud": "☁️",
"cloud_with_lightning": "🌩",
"cloud_with_lightning_and_rain": "⛈️",
"cloud_with_rain": "🌧",
"cloud_with_snow": "🌨",
"cloudy": "🌥",
"clown": "🤡",
"clown_face": "🤡",
"clubs": "♣️",
"clutch_bag": "👝",
"cn": "🇨🇳",
"coat": "🧥",
"cockroach": "🪳",
"cocktail": "🍸",
"coconut": "🥥",
"cocos_islands": "🇨🇨",
"coffee": "☕️",
"coffin": "⚰️",
"coin": "🪙",
"cold": "🥶",
"cold_face": "🥶",
"cold_sweat": "😰",
"collision": "💥",
"colombia": "🇨🇴",
"comet": "☄️",
"comoros": "🇰🇲",
"compass": "🧭",
"compression": "🗜",
"computer": "💻",
"computer_disk": "💽",
"computer_mouse": "🖱",
"confetti_ball": "🎊",
"confounded": "😖",
"confounded_face": "😖",
"confused": "😕",
"confused_face": "😕",
"congo_brazzaville": "🇨🇬",
"congo_kinshasa": "🇨🇩",
"congratulations": "㊗️",
"construction": "🚧",
"construction_site": "🏗",
"construction_worker": "👷",
"construction_worker_man": "👷‍♂️",
"construction_worker_tone1": "👷🏻",
"construction_worker_tone2": "👷🏼",
"construction_worker_tone3": "👷🏽",
"construction_worker_tone4": "👷🏾",
"construction_worker_tone5": "👷🏿",
"construction_worker_woman": "👷‍♀️",
"control_knobs": "🎛",
"controller": "🎮",
"convenience_store": "🏪",
"cook": "🧑‍🍳",
"cook_islands": "🇨🇰",
"cook_tone1": "🧑🏻‍🍳",
"cook_tone2": "🧑🏼‍🍳",
"cook_tone3": "🧑🏽‍🍳",
"cook_tone4": "🧑🏾‍🍳",
"cook_tone5": "🧑🏿‍🍳",
"cooked_rice": "🍚",
"cookie": "🍪",
"cooking": "🍳",
"cool": "🆒",
"cop": "👮",
"cop_tone1": "👮🏻",
"cop_tone2": "👮🏼",
"cop_tone3": "👮🏽",
"cop_tone4": "👮🏾",
"cop_tone5": "👮🏿",
"copyright": "©️",
"coral": "🪸",
"corn": "🌽",
"costa_rica": "🇨🇷",
"cote_divoire": "🇨🇮",
"couch_and_lamp": "🛋",
"counterclockwise": "🔄",
"couple": "👫",
"couple_kiss": "💏",
"couple_kiss_tone1": "💏🏻",
"couple_kiss_tone1-2": "🧑🏻‍❤️‍💋‍🧑🏼",
"couple_kiss_tone1-3": "🧑🏻‍❤️‍💋‍🧑🏽",
"couple_kiss_tone1-4": "🧑🏻‍❤️‍💋‍🧑🏾",
"couple_kiss_tone1-5": "🧑🏻‍❤️‍💋‍🧑🏿",
"couple_kiss_tone2": "💏🏼",
"couple_kiss_tone2-1": "🧑🏼‍❤️‍💋‍🧑🏻",
"couple_kiss_tone2-3": "🧑🏼‍❤️‍💋‍🧑🏽",
"couple_kiss_tone2-4": "🧑🏼‍❤️‍💋‍🧑🏾",
"couple_kiss_tone2-5": "🧑🏼‍❤️‍💋‍🧑🏿",
"couple_kiss_tone3": "💏🏽",
"couple_kiss_tone3-1": "🧑🏽‍❤️‍💋‍🧑🏻",
"couple_kiss_tone3-2": "🧑🏽‍❤️‍💋‍🧑🏼",
"couple_kiss_tone3-4": "🧑🏽‍❤️‍💋‍🧑🏾",
"couple_kiss_tone3-5": "🧑🏽‍❤️‍💋‍🧑🏿",
"couple_kiss_tone4": "💏🏾",
"couple_kiss_tone4-1": "🧑🏾‍❤️‍💋‍🧑🏻",
"couple_kiss_tone4-2": "🧑🏾‍❤️‍💋‍🧑🏼",
"couple_kiss_tone4-3": "🧑🏾‍❤️‍💋‍🧑🏽",
"couple_kiss_tone4-5": "🧑🏾‍❤️‍💋‍🧑🏿",
"couple_kiss_tone5": "💏🏿",
"couple_kiss_tone5-1": "🧑🏿‍❤️‍💋‍🧑🏻",
"couple_kiss_tone5-2": "🧑🏿‍❤️‍💋‍🧑🏼",
"couple_kiss_tone5-3": "🧑🏿‍❤️‍💋‍🧑🏽",
"couple_kiss_tone5-4": "🧑🏿‍❤️‍💋‍🧑🏾",
"couple_tone1": "👫🏻",
"couple_tone1-2": "👩🏻‍🤝‍👨🏼",
"couple_tone1-3": "👩🏻‍🤝‍👨🏽",
"couple_tone1-4": "👩🏻‍🤝‍👨🏾",
"couple_tone1-5": "👩🏻‍🤝‍👨🏿",
"couple_tone2": "👫🏼",
"couple_tone2-1": "👩🏼‍🤝‍👨🏻",
"couple_tone2-3": "👩🏼‍🤝‍👨🏽",
"couple_tone2-4": "👩🏼‍🤝‍👨🏾",
"couple_tone2-5": "👩🏼‍🤝‍👨🏿",
"couple_tone3": "👫🏽",
"couple_tone3-1": "👩🏽‍🤝‍👨🏻",
"couple_tone3-2": "👩🏽‍🤝‍👨🏼",
"couple_tone3-4": "👩🏽‍🤝‍👨🏾",
"couple_tone3-5": "👩🏽‍🤝‍👨🏿",
"couple_tone4": "👫🏾",
"couple_tone4-1": "👩🏾‍🤝‍👨🏻",
"couple_tone4-2": "👩🏾‍🤝‍👨🏼",
"couple_tone4-3": "👩🏾‍🤝‍👨🏽",
"couple_tone4-5": "👩🏾‍🤝‍👨🏿",
"couple_tone5": "👫🏿",
"couple_tone5-1": "👩🏿‍🤝‍👨🏻",
"couple_tone5-2": "👩🏿‍🤝‍👨🏼",
"couple_tone5-3": "👩🏿‍🤝‍👨🏽",
"couple_tone5-4": "👩🏿‍🤝‍👨🏾",
"couple_with_heart": "💑",
"couple_with_heart_man_man": "👨‍❤️‍👨",
"couple_with_heart_mm": "👨‍❤️‍👨",
"couple_with_heart_mm_tone1": "👨🏻‍❤️‍👨🏻",
"couple_with_heart_mm_tone1-2": "👨🏻‍❤️‍👨🏼",
"couple_with_heart_mm_tone1-3": "👨🏻‍❤️‍👨🏽",
"couple_with_heart_mm_tone1-4": "👨🏻‍❤️‍👨🏾",
"couple_with_heart_mm_tone1-5": "👨🏻‍❤️‍👨🏿",
"couple_with_heart_mm_tone2": "👨🏼‍❤️‍👨🏼",
"couple_with_heart_mm_tone2-1": "👨🏼‍❤️‍👨🏻",
"couple_with_heart_mm_tone2-3": "👨🏼‍❤️‍👨🏽",
"couple_with_heart_mm_tone2-4": "👨🏼‍❤️‍👨🏾",
"couple_with_heart_mm_tone2-5": "👨🏼‍❤️‍👨🏿",
"couple_with_heart_mm_tone3": "👨🏽‍❤️‍👨🏽",
"couple_with_heart_mm_tone3-1": "👨🏽‍❤️‍👨🏻",
"couple_with_heart_mm_tone3-2": "👨🏽‍❤️‍👨🏼",
"couple_with_heart_mm_tone3-4": "👨🏽‍❤️‍👨🏾",
"couple_with_heart_mm_tone3-5": "👨🏽‍❤️‍👨🏿",
"couple_with_heart_mm_tone4": "👨🏾‍❤️‍👨🏾",
"couple_with_heart_mm_tone4-1": "👨🏾‍❤️‍👨🏻",
"couple_with_heart_mm_tone4-2": "👨🏾‍❤️‍👨🏼",
"couple_with_heart_mm_tone4-3": "👨🏾‍❤️‍👨🏽",
"couple_with_heart_mm_tone4-5": "👨🏾‍❤️‍👨🏿",
"couple_with_heart_mm_tone5": "👨🏿‍❤️‍👨🏿",
"couple_with_heart_mm_tone5-1": "👨🏿‍❤️‍👨🏻",
"couple_with_heart_mm_tone5-2": "👨🏿‍❤️‍👨🏼",
"couple_with_heart_mm_tone5-3": "👨🏿‍❤️‍👨🏽",
"couple_with_heart_mm_tone5-4": "👨🏿‍❤️‍👨🏾",
"couple_with_heart_mw": "👩‍❤️‍👨",
"couple_with_heart_mw_tone1": "👩🏻‍❤️‍👨🏻",
"couple_with_heart_mw_tone1-2": "👩🏻‍❤️‍👨🏼",
"couple_with_heart_mw_tone1-3": "👩🏻‍❤️‍👨🏽",
"couple_with_heart_mw_tone1-4": "👩🏻‍❤️‍👨🏾",
"couple_with_heart_mw_tone1-5": "👩🏻‍❤️‍👨🏿",
"couple_with_heart_mw_tone2": "👩🏼‍❤️‍👨🏼",
"couple_with_heart_mw_tone2-1": "👩🏼‍❤️‍👨🏻",
"couple_with_heart_mw_tone2-3": "👩🏼‍❤️‍👨🏽",
"couple_with_heart_mw_tone2-4": "👩🏼‍❤️‍👨🏾",
"couple_with_heart_mw_tone2-5": "👩🏼‍❤️‍👨🏿",
"couple_with_heart_mw_tone3": "👩🏽‍❤️‍👨🏽",
"couple_with_heart_mw_tone3-1": "👩🏽‍❤️‍👨🏻",
"couple_with_heart_mw_tone3-2": "👩🏽‍❤️‍👨🏼",
"couple_with_heart_mw_tone3-4": "👩🏽‍❤️‍👨🏾",
"couple_with_heart_mw_tone3-5": "👩🏽‍❤️‍👨🏿",
"couple_with_heart_mw_tone4": "👩🏾‍❤️‍👨🏾",
"couple_with_heart_mw_tone4-1": "👩🏾‍❤️‍👨🏻",
"couple_with_heart_mw_tone4-2": "👩🏾‍❤️‍👨🏼",
"couple_with_heart_mw_tone4-3": "👩🏾‍❤️‍👨🏽",
"couple_with_heart_mw_tone4-5": "👩🏾‍❤️‍👨🏿",
"couple_with_heart_mw_tone5": "👩🏿‍❤️‍👨🏿",
"couple_with_heart_mw_tone5-1": "👩🏿‍❤️‍👨🏻",
"couple_with_heart_mw_tone5-2": "👩🏿‍❤️‍👨🏼",
"couple_with_heart_mw_tone5-3": "👩🏿‍❤️‍👨🏽",
"couple_with_heart_mw_tone5-4": "👩🏿‍❤️‍👨🏾",
"couple_with_heart_tone1": "💑🏻",
"couple_with_heart_tone1-2": "🧑🏻‍❤️‍🧑🏼",
"couple_with_heart_tone1-3": "🧑🏻‍❤️‍🧑🏽",
"couple_with_heart_tone1-4": "🧑🏻‍❤️‍🧑🏾",
"couple_with_heart_tone1-5": "🧑🏻‍❤️‍🧑🏿",
"couple_with_heart_tone2": "💑🏼",
"couple_with_heart_tone2-1": "🧑🏼‍❤️‍🧑🏻",
"couple_with_heart_tone2-3": "🧑🏼‍❤️‍🧑🏽",
"couple_with_heart_tone2-4": "🧑🏼‍❤️‍🧑🏾",
"couple_with_heart_tone2-5": "🧑🏼‍❤️‍🧑🏿",
"couple_with_heart_tone3": "💑🏽",
"couple_with_heart_tone3-1": "🧑🏽‍❤️‍🧑🏻",
"couple_with_heart_tone3-2": "🧑🏽‍❤️‍🧑🏼",
"couple_with_heart_tone3-4": "🧑🏽‍❤️‍🧑🏾",
"couple_with_heart_tone3-5": "🧑🏽‍❤️‍🧑🏿",
"couple_with_heart_tone4": "💑🏾",
"couple_with_heart_tone4-1": "🧑🏾‍❤️‍🧑🏻",
"couple_with_heart_tone4-2": "🧑🏾‍❤️‍🧑🏼",
"couple_with_heart_tone4-3": "🧑🏾‍❤️‍🧑🏽",
"couple_with_heart_tone4-5": "🧑🏾‍❤️‍🧑🏿",
"couple_with_heart_tone5": "💑🏿",
"couple_with_heart_tone5-1": "🧑🏿‍❤️‍🧑🏻",
"couple_with_heart_tone5-2": "🧑🏿‍❤️‍🧑🏼",
"couple_with_heart_tone5-3": "🧑🏿‍❤️‍🧑🏽",
"couple_with_heart_tone5-4": "🧑🏿‍❤️‍🧑🏾",
"couple_with_heart_wm": "👩‍❤️‍👨",
"couple_with_heart_wm_tone1": "👩🏻‍❤️‍👨🏻",
"couple_with_heart_wm_tone1-2": "👩🏻‍❤️‍👨🏼",
"couple_with_heart_wm_tone1-3": "👩🏻‍❤️‍👨🏽",
"couple_with_heart_wm_tone1-4": "👩🏻‍❤️‍👨🏾",
"couple_with_heart_wm_tone1-5": "👩🏻‍❤️‍👨🏿",
"couple_with_heart_wm_tone2": "👩🏼‍❤️‍👨🏼",
"couple_with_heart_wm_tone2-1": "👩🏼‍❤️‍👨🏻",
"couple_with_heart_wm_tone2-3": "👩🏼‍❤️‍👨🏽",
"couple_with_heart_wm_tone2-4": "👩🏼‍❤️‍👨🏾",
"couple_with_heart_wm_tone2-5": "👩🏼‍❤️‍👨🏿",
"couple_with_heart_wm_tone3": "👩🏽‍❤️‍👨🏽",
"couple_with_heart_wm_tone3-1": "👩🏽‍❤️‍👨🏻",
"couple_with_heart_wm_tone3-2": "👩🏽‍❤️‍👨🏼",
"couple_with_heart_wm_tone3-4": "👩🏽‍❤️‍👨🏾",
"couple_with_heart_wm_tone3-5": "👩🏽‍❤️‍👨🏿",
"couple_with_heart_wm_tone4": "👩🏾‍❤️‍👨🏾",
"couple_with_heart_wm_tone4-1": "👩🏾‍❤️‍👨🏻",
"couple_with_heart_wm_tone4-2": "👩🏾‍❤️‍👨🏼",
"couple_with_heart_wm_tone4-3": "👩🏾‍❤️‍👨🏽",
"couple_with_heart_wm_tone4-5": "👩🏾‍❤️‍👨🏿",
"couple_with_heart_wm_tone5": "👩🏿‍❤️‍👨🏿",
"couple_with_heart_wm_tone5-1": "👩🏿‍❤️‍👨🏻",
"couple_with_heart_wm_tone5-2": "👩🏿‍❤️‍👨🏼",
"couple_with_heart_wm_tone5-3": "👩🏿‍❤️‍👨🏽",
"couple_with_heart_wm_tone5-4": "👩🏿‍❤️‍👨🏾",
"couple_with_heart_woman_man": "👩‍❤️‍👨",
"couple_with_heart_woman_woman": "👩‍❤️‍👩",
"couple_with_heart_ww": "👩‍❤️‍👩",
"couple_with_heart_ww_tone1": "👩🏻‍❤️‍👩🏻",
"couple_with_heart_ww_tone1-2": "👩🏻‍❤️‍👩🏼",
"couple_with_heart_ww_tone1-3": "👩🏻‍❤️‍👩🏽",
"couple_with_heart_ww_tone1-4": "👩🏻‍❤️‍👩🏾",
"couple_with_heart_ww_tone1-5": "👩🏻‍❤️‍👩🏿",
"couple_with_heart_ww_tone2": "👩🏼‍❤️‍👩🏼",
"couple_with_heart_ww_tone2-1": "👩🏼‍❤️‍👩🏻",
"couple_with_heart_ww_tone2-3": "👩🏼‍❤️‍👩🏽",
"couple_with_heart_ww_tone2-4": "👩🏼‍❤️‍👩🏾",
"couple_with_heart_ww_tone2-5": "👩🏼‍❤️‍👩🏿",
"couple_with_heart_ww_tone3": "👩🏽‍❤️‍👩🏽",
"couple_with_heart_ww_tone3-1": "👩🏽‍❤️‍👩🏻",
"couple_with_heart_ww_tone3-2": "👩🏽‍❤️‍👩🏼",
"couple_with_heart_ww_tone3-4": "👩🏽‍❤️‍👩🏾",
"couple_with_heart_ww_tone3-5": "👩🏽‍❤️‍👩🏿",
"couple_with_heart_ww_tone4": "👩🏾‍❤️‍👩🏾",
"couple_with_heart_ww_tone4-1": "👩🏾‍❤️‍👩🏻",
"couple_with_heart_ww_tone4-2": "👩🏾‍❤️‍👩🏼",
"couple_with_heart_ww_tone4-3": "👩🏾‍❤️‍👩🏽",
"couple_with_heart_ww_tone4-5": "👩🏾‍❤️‍👩🏿",
"couple_with_heart_ww_tone5": "👩🏿‍❤️‍👩🏿",
"couple_with_heart_ww_tone5-1": "👩🏿‍❤️‍👩🏻",
"couple_with_heart_ww_tone5-2": "👩🏿‍❤️‍👩🏼",
"couple_with_heart_ww_tone5-3": "👩🏿‍❤️‍👩🏽",
"couple_with_heart_ww_tone5-4": "👩🏿‍❤️‍👩🏾",
"couplekiss": "💏",
"couplekiss_man_man": "👨‍❤️‍💋‍👨",
"couplekiss_man_woman": "👩‍❤️‍💋‍👨",
"couplekiss_tone1": "💏🏻",
"couplekiss_tone1-2": "🧑🏻‍❤️‍💋‍🧑🏼",
"couplekiss_tone1-3": "🧑🏻‍❤️‍💋‍🧑🏽",
"couplekiss_tone1-4": "🧑🏻‍❤️‍💋‍🧑🏾",
"couplekiss_tone1-5": "🧑🏻‍❤️‍💋‍🧑🏿",
"couplekiss_tone2": "💏🏼",
"couplekiss_tone2-1": "🧑🏼‍❤️‍💋‍🧑🏻",
"couplekiss_tone2-3": "🧑🏼‍❤️‍💋‍🧑🏽",
"couplekiss_tone2-4": "🧑🏼‍❤️‍💋‍🧑🏾",
"couplekiss_tone2-5": "🧑🏼‍❤️‍💋‍🧑🏿",
"couplekiss_tone3": "💏🏽",
"couplekiss_tone3-1": "🧑🏽‍❤️‍💋‍🧑🏻",
"couplekiss_tone3-2": "🧑🏽‍❤️‍💋‍🧑🏼",
"couplekiss_tone3-4": "🧑🏽‍❤️‍💋‍🧑🏾",
"couplekiss_tone3-5": "🧑🏽‍❤️‍💋‍🧑🏿",
"couplekiss_tone4": "💏🏾",
"couplekiss_tone4-1": "🧑🏾‍❤️‍💋‍🧑🏻",
"couplekiss_tone4-2": "🧑🏾‍❤️‍💋‍🧑🏼",
"couplekiss_tone4-3": "🧑🏾‍❤️‍💋‍🧑🏽",
"couplekiss_tone4-5": "🧑🏾‍❤️‍💋‍🧑🏿",
"couplekiss_tone5": "💏🏿",
"couplekiss_tone5-1": "🧑🏿‍❤️‍💋‍🧑🏻",
"couplekiss_tone5-2": "🧑🏿‍❤️‍💋‍🧑🏼",
"couplekiss_tone5-3": "🧑🏿‍❤️‍💋‍🧑🏽",
"couplekiss_tone5-4": "🧑🏿‍❤️‍💋‍🧑🏾",
"couplekiss_woman_woman": "👩‍❤️‍💋‍👩",
"cow": "🐮",
"cow2": "🐄",
"cow_face": "🐮",
"cowboy": "🤠",
"cowboy_face": "🤠",
"cowboy_hat_face": "🤠",
"crab": "🦀",
"crayon": "🖍",
"credit_card": "💳",
"crescent_moon": "🌙",
"cricket": "🦗",
"cricket_bat_and_ball": "🏏",
"cricket_game": "🏏",
"croatia": "🇭🇷",
"crocodile": "🐊",
"croissant": "🥐",
"cross_mark": "❌️",
"cross_mark_button": "❎️",
"crossed_fingers": "🤞",
"crossed_flags": "🎌",
"crossed_swords": "⚔️",
"crown": "👑",
"cruise_ship": "🛳",
"crutch": "🩼",
"cry": "😢",
"crying_cat": "😿",
"crying_cat_face": "😿",
"crying_face": "😢",
"crystal_ball": "🔮",
"cuba": "🇨🇺",
"cucumber": "🥒",
"cup_with_straw": "🥤",
"cupcake": "🧁",
"cupid": "💘",
"curacao": "🇨🇼",
"curling_stone": "🥌",
"curly_hair": "🦱",
"curly_haired": "🧑‍🦱",
"curly_haired_man": "👨‍🦱",
"curly_haired_person": "🧑‍🦱",
"curly_haired_tone1": "🧑🏻‍🦱",
"curly_haired_tone2": "🧑🏼‍🦱",
"curly_haired_tone3": "🧑🏽‍🦱",
"curly_haired_tone4": "🧑🏾‍🦱",
"curly_haired_tone5": "🧑🏿‍🦱",
"curly_haired_woman": "👩‍🦱",
"curly_loop": "➰️",
"currency_exchange": "💱",
"curry": "🍛",
"curry_rice": "🍛",
"cursing_face": "🤬",
"custard": "🍮",
"customs": "🛃",
"cut_of_meat": "🥩",
"cyclone": "🌀",
"cyprus": "🇨🇾",
"czech_republic": "🇨🇿",
"czechia": "🇨🇿",
"dagger": "🗡",
"dagger_knife": "🗡",
"dancer": "💃",
"dancer_tone1": "💃🏻",
"dancer_tone2": "💃🏼",
"dancer_tone3": "💃🏽",
"dancer_tone4": "💃🏾",
"dancer_tone5": "💃🏿",
"dancers": "👯",
"dancers_tone1": "👯🏻",
"dancers_tone1-2": "🧑🏻‍🐰‍🧑🏼",
"dancers_tone1-3": "🧑🏻‍🐰‍🧑🏽",
"dancers_tone1-4": "🧑🏻‍🐰‍🧑🏾",
"dancers_tone1-5": "🧑🏻‍🐰‍🧑🏿",
"dancers_tone2": "👯🏼",
"dancers_tone2-1": "🧑🏼‍🐰‍🧑🏻",
"dancers_tone2-3": "🧑🏼‍🐰‍🧑🏽",
"dancers_tone2-4": "🧑🏼‍🐰‍🧑🏾",
"dancers_tone2-5": "🧑🏼‍🐰‍🧑🏿",
"dancers_tone3": "👯🏽",
"dancers_tone3-1": "🧑🏽‍🐰‍🧑🏻",
"dancers_tone3-2": "🧑🏽‍🐰‍🧑🏼",
"dancers_tone3-4": "🧑🏽‍🐰‍🧑🏾",
"dancers_tone3-5": "🧑🏽‍🐰‍🧑🏿",
"dancers_tone4": "👯🏾",
"dancers_tone4-1": "🧑🏾‍🐰‍🧑🏻",
"dancers_tone4-2": "🧑🏾‍🐰‍🧑🏼",
"dancers_tone4-3": "🧑🏾‍🐰‍🧑🏽",
"dancers_tone4-5": "🧑🏾‍🐰‍🧑🏿",
"dancers_tone5": "👯🏿",
"dancers_tone5-1": "🧑🏿‍🐰‍🧑🏻",
"dancers_tone5-2": "🧑🏿‍🐰‍🧑🏼",
"dancers_tone5-3": "🧑🏿‍🐰‍🧑🏽",
"dancers_tone5-4": "🧑🏿‍🐰‍🧑🏾",
"dancing_men": "👯‍♂️",
"dancing_women": "👯‍♀️",
"dango": "🍡",
"dark_sunglasses": "🕶",
"dart": "🎯",
"dash": "💨",
"dashing_away": "💨",
"date": "📅",
"de": "🇩🇪",
"deaf_man": "🧏‍♂️",
"deaf_man_tone1": "🧏🏻‍♂️",
"deaf_man_tone2": "🧏🏼‍♂️",
"deaf_man_tone3": "🧏🏽‍♂️",
"deaf_man_tone4": "🧏🏾‍♂️",
"deaf_man_tone5": "🧏🏿‍♂️",
"deaf_person": "🧏",
"deaf_person_tone1": "🧏🏻",
"deaf_person_tone2": "🧏🏼",
"deaf_person_tone3": "🧏🏽",
"deaf_person_tone4": "🧏🏾",
"deaf_person_tone5": "🧏🏿",
"deaf_woman": "🧏‍♀️",
"deaf_woman_tone1": "🧏🏻‍♀️",
"deaf_woman_tone2": "🧏🏼‍♀️",
"deaf_woman_tone3": "🧏🏽‍♀️",
"deaf_woman_tone4": "🧏🏾‍♀️",
"deaf_woman_tone5": "🧏🏿‍♀️",
"deciduous_tree": "🌳",
"deer": "🦌",
"delivery_truck": "🚚",
"denmark": "🇩🇰",
"department_store": "🏬",
"derelict_house": "🏚",
"derelict_house_building": "🏚",
"desert": "🏜",
"desert_island": "🏝",
"desktop_computer": "🖥",
"detective": "🕵",
"detective_tone1": "🕵🏻",
"detective_tone2": "🕵🏼",
"detective_tone3": "🕵🏽",
"detective_tone4": "🕵🏾",
"detective_tone5": "🕵🏿",
"diamond_shape_with_a_dot_inside": "💠",
"diamond_with_a_dot": "💠",
"diamonds": "♦️",
"diego_garcia": "🇩🇬",
"dim_button": "🔅",
"direct_hit": "🎯",
"disappointed": "😞",
"disappointed_face": "😞",
"disappointed_relieved": "😥",
"disco": "🪩",
"disco_ball": "🪩",
"disguised": "🥸",
"disguised_face": "🥸",
"distorted_face": "🫪",
"divide": "➗️",
"diving_mask": "🤿",
"division": "➗️",
"diya_lamp": "🪔",
"dizzy": "💫",
"dizzy_eyes": "😵‍💫",
"dizzy_face": "😵",
"djibouti": "🇩🇯",
"dna": "🧬",
"do_not_litter": "🚯",
"dodo": "🦤",
"dog": "🐶",
"dog2": "🐕",
"dog_face": "🐶",
"dollar": "💵",
"dolls": "🎎",
"dolphin": "🐬",
"dominica": "🇩🇲",
"dominican_republic": "🇩🇴",
"donkey": "🫏",
"door": "🚪",
"dotted_line_face": "🫥",
"double_curly_loop": "➿️",
"double_exclamation": "‼️",
"double_helix": "🧬",
"double_vertical_bar": "⏸️",
"doughnut": "🍩",
"dove": "🕊",
"dove_of_peace": "🕊",
"down": "🔽",
"downcast_face": "😓",
"dragon": "🐉",
"dragon_face": "🐲",
"dress": "👗",
"dromedary_camel": "🐪",
"drooling": "🤤",
"drooling_face": "🤤",
"drop_of_blood": "🩸",
"droplet": "💧",
"drum": "🥁",
"drum_with_drumsticks": "🥁",
"duck": "🦆",
"dumpling": "🥟",
"dvd": "📀",
"e-mail": "📧",
"eagle": "🦅",
"ear": "👂",
"ear_of_corn": "🌽",
"ear_of_rice": "🌾",
"ear_tone1": "👂🏻",
"ear_tone2": "👂🏼",
"ear_tone3": "👂🏽",
"ear_tone4": "👂🏾",
"ear_tone5": "👂🏿",
"ear_with_hearing_aid": "🦻",
"ear_with_hearing_aid_tone1": "🦻🏻",
"ear_with_hearing_aid_tone2": "🦻🏼",
"ear_with_hearing_aid_tone3": "🦻🏽",
"ear_with_hearing_aid_tone4": "🦻🏾",
"ear_with_hearing_aid_tone5": "🦻🏿",
"earth_africa": "🌍",
"earth_americas": "🌎",
"earth_asia": "🌏",
"earth_europe": "🌍",
"ecuador": "🇪🇨",
"egg": "🥚",
"eggplant": "🍆",
"egypt": "🇪🇬",
"eight": "8️⃣",
"eight_pointed_black_star": "✴️",
"eight_spoked_asterisk": "✳️",
"eject": "⏏️",
"eject_button": "⏏️",
"el_salvador": "🇸🇻",
"electric_plug": "🔌",
"elephant": "🐘",
"elevator": "🛗",
"elf": "🧝",
"elf_man": "🧝‍♂️",
"elf_tone1": "🧝🏻",
"elf_tone2": "🧝🏼",
"elf_tone3": "🧝🏽",
"elf_tone4": "🧝🏾",
"elf_tone5": "🧝🏿",
"elf_woman": "🧝‍♀️",
"email": "📧",
"empty_nest": "🪹",
"end": "🔚",
"england": "🏴󠁧󠁢󠁥󠁮󠁧󠁿",
"envelope": "✉️",
"envelope_with_arrow": "📩",
"equatorial_guinea": "🇬🇶",
"eritrea": "🇪🇷",
"es": "🇪🇸",
"estonia": "🇪🇪",
"eswatini": "🇸🇿",
"ethiopia": "🇪🇹",
"eu": "🇪🇺",
"euro": "💶",
"european_castle": "🏰",
"european_post_office": "🏤",
"european_union": "🇪🇺",
"evergreen_tree": "🌲",
"ewe": "🐑",
"exclamation": "❗️",
"exclamation_question": "⁉️",
"exhale": "😮‍💨",
"exhaling": "😮‍💨",
"exploding_head": "🤯",
"expressionless": "😑",
"expressionless_face": "😑",
"eye": "👁",
"eye-in-speech-bubble": "👁️‍🗨️",
"eye_in_speech_bubble": "👁️‍🗨️",
"eye_speech_bubble": "👁️‍🗨️",
"eyeglasses": "👓",
"eyes": "👀",
"face_exhaling": "😮‍💨",
"face_holding_back_tears": "🥹",
"face_in_clouds": "😶‍🌫️",
"face_palm": "🤦",
"face_vomiting": "🤮",
"face_with_bags_under_eyes": "🫩",
"face_with_cowboy_hat": "🤠",
"face_with_diagonal_mouth": "🫤",
"face_with_eye_bags": "🫩",
"face_with_finger_covering_closed_lips": "🤫",
"face_with_hand_over_mouth": "🤭",
"face_with_head_bandage": "🤕",
"face_with_monocle": "🧐",
"face_with_one_eyebrow_raised": "🤨",
"face_with_open_eyes_and_hand_over_mouth": "🫢",
"face_with_open_eyes_hand_over_mouth": "🫢",
"face_with_open_mouth": "😮",
"face_with_open_mouth_vomiting": "🤮",
"face_with_peeking_eye": "🫣",
"face_with_raised_eyebrow": "🤨",
"face_with_rolling_eyes": "🙄",
"face_with_spiral_eyes": "😵‍💫",
"face_with_symbols_on_mouth": "🤬",
"face_with_thermometer": "🤒",
"face_with_tongue": "😛",
"facepalm": "🤦",
"facepalm_tone1": "🤦🏻",
"facepalm_tone2": "🤦🏼",
"facepalm_tone3": "🤦🏽",
"facepalm_tone4": "🤦🏾",
"facepalm_tone5": "🤦🏿",
"facepunch": "👊",
"factory": "🏭",
"factory_worker": "🧑‍🏭",
"factory_worker_tone1": "🧑🏻‍🏭",
"factory_worker_tone2": "🧑🏼‍🏭",
"factory_worker_tone3": "🧑🏽‍🏭",
"factory_worker_tone4": "🧑🏾‍🏭",
"factory_worker_tone5": "🧑🏿‍🏭",
"fairy": "🧚",
"fairy_man": "🧚‍♂️",
"fairy_tone1": "🧚🏻",
"fairy_tone2": "🧚🏼",
"fairy_tone3": "🧚🏽",
"fairy_tone4": "🧚🏾",
"fairy_tone5": "🧚🏿",
"fairy_woman": "🧚‍♀️",
"falafel": "🧆",
"falkland_islands": "🇫🇰",
"fallen_leaf": "🍂",
"family": "👪",
"family_aa": "🧑‍🧒",
"family_aac": "🧑‍🧑‍🧒",
"family_aacc": "🧑‍🧑‍🧒‍🧒",
"family_ac": "🧑‍🧒",
"family_acc": "🧑‍🧒‍🧒",
"family_adult_adult_child": "🧑‍🧑‍🧒",
"family_adult_adult_child_child": "🧑‍🧑‍🧒‍🧒",
"family_adult_child": "🧑‍🧒",
"family_adult_child_child": "🧑‍🧒‍🧒",
"family_man_boy": "👨‍👦",
"family_man_boy_boy": "👨‍👦‍👦",
"family_man_girl": "👨‍👧",
"family_man_girl_boy": "👨‍👧‍👦",
"family_man_girl_girl": "👨‍👧‍👧",
"family_man_man_boy": "👨‍👨‍👦",
"family_man_man_boy_boy": "👨‍👨‍👦‍👦",
"family_man_man_girl": "👨‍👨‍👧",
"family_man_man_girl_boy": "👨‍👨‍👧‍👦",
"family_man_man_girl_girl": "👨‍👨‍👧‍👧",
"family_man_woman_boy": "👨‍👩‍👦",
"family_man_woman_boy_boy": "👨‍👩‍👦‍👦",
"family_man_woman_girl": "👨‍👩‍👧",
"family_man_woman_girl_boy": "👨‍👩‍👧‍👦",
"family_man_woman_girl_girl": "👨‍👩‍👧‍👧",
"family_mb": "👨‍👦",
"family_mbb": "👨‍👦‍👦",
"family_mg": "👨‍👧",
"family_mgb": "👨‍👧‍👦",
"family_mgg": "👨‍👧‍👧",
"family_mmb": "👨‍👨‍👦",
"family_mmbb": "👨‍👨‍👦‍👦",
"family_mmg": "👨‍👨‍👧",
"family_mmgb": "👨‍👨‍👧‍👦",
"family_mmgg": "👨‍👨‍👧‍👧",
"family_mwb": "👨‍👩‍👦",
"family_mwbb": "👨‍👩‍👦‍👦",
"family_mwg": "👨‍👩‍👧",
"family_mwgb": "👨‍👩‍👧‍👦",
"family_mwgg": "👨‍👩‍👧‍👧",
"family_wb": "👩‍👦",
"family_wbb": "👩‍👦‍👦",
"family_wg": "👩‍👧",
"family_wgb": "👩‍👧‍👦",
"family_wgg": "👩‍👧‍👧",
"family_woman_boy": "👩‍👦",
"family_woman_boy_boy": "👩‍👦‍👦",
"family_woman_girl": "👩‍👧",
"family_woman_girl_boy": "👩‍👧‍👦",
"family_woman_girl_girl": "👩‍👧‍👧",
"family_woman_woman_boy": "👩‍👩‍👦",
"family_woman_woman_boy_boy": "👩‍👩‍👦‍👦",
"family_woman_woman_girl": "👩‍👩‍👧",
"family_woman_woman_girl_boy": "👩‍👩‍👧‍👦",
"family_woman_woman_girl_girl": "👩‍👩‍👧‍👧",
"family_wwb": "👩‍👩‍👦",
"family_wwbb": "👩‍👩‍👦‍👦",
"family_wwg": "👩‍👩‍👧",
"family_wwgb": "👩‍👩‍👧‍👦",
"family_wwgg": "👩‍👩‍👧‍👧",
"farmer": "🧑‍🌾",
"farmer_tone1": "🧑🏻‍🌾",
"farmer_tone2": "🧑🏼‍🌾",
"farmer_tone3": "🧑🏽‍🌾",
"farmer_tone4": "🧑🏾‍🌾",
"farmer_tone5": "🧑🏿‍🌾",
"faroe_islands": "🇫🇴",
"fast_down": "⏬️",
"fast_forward": "⏩️",
"fast_reverse": "⏪️",
"fast_up": "⏫️",
"fax": "📠",
"fax_machine": "📠",
"fearful": "😨",
"fearful_face": "😨",
"feather": "🪶",
"feet": "🐾",
"female": "♀️",
"female-artist": "👩‍🎨",
"female-astronaut": "👩‍🚀",
"female-construction-worker": "👷‍♀️",
"female-cook": "👩‍🍳",
"female-detective": "🕵️‍♀️",
"female-doctor": "👩‍⚕️",
"female-factory-worker": "👩‍🏭",
"female-farmer": "👩‍🌾",
"female-firefighter": "👩‍🚒",
"female-guard": "💂‍♀️",
"female-judge": "👩‍⚖️",
"female-mechanic": "👩‍🔧",
"female-office-worker": "👩‍💼",
"female-pilot": "👩‍✈️",
"female-police-officer": "👮‍♀️",
"female-scientist": "👩‍🔬",
"female-singer": "👩‍🎤",
"female-student": "👩‍🎓",
"female-teacher": "👩‍🏫",
"female-technologist": "👩‍💻",
"female_detective": "🕵️‍♀️",
"female_elf": "🧝‍♀️",
"female_fairy": "🧚‍♀️",
"female_genie": "🧞‍♀️",
"female_mage": "🧙‍♀️",
"female_sign": "♀️",
"female_superhero": "🦸‍♀️",
"female_supervillain": "🦹‍♀️",
"female_vampire": "🧛‍♀️",
"female_zombie": "🧟‍♀️",
"fencer": "🤺",
"fencing": "🤺",
"ferris_wheel": "🎡",
"ferry": "⛴️",
"field_hockey": "🏑",
"field_hockey_stick_and_ball": "🏑",
"fight_cloud": "🫯",
"fiji": "🇫🇯",
"file_cabinet": "🗄",
"file_folder": "📁",
"film_frames": "🎞",
"film_projector": "📽",
"film_strip": "🎞",
"fingerprint": "🫆",
"fingers_crossed": "🤞",
"fingers_crossed_tone1": "🤞🏻",
"fingers_crossed_tone2": "🤞🏼",
"fingers_crossed_tone3": "🤞🏽",
"fingers_crossed_tone4": "🤞🏾",
"fingers_crossed_tone5": "🤞🏿",
"finland": "🇫🇮",
"fire": "🔥",
"fire_engine": "🚒",
"fire_extinguisher": "🧯",
"firecracker": "🧨",
"firefighter": "🧑‍🚒",
"firefighter_tone1": "🧑🏻‍🚒",
"firefighter_tone2": "🧑🏼‍🚒",
"firefighter_tone3": "🧑🏽‍🚒",
"firefighter_tone4": "🧑🏾‍🚒",
"firefighter_tone5": "🧑🏿‍🚒",
"fireworks": "🎆",
"first_place_medal": "🥇",
"first_quarter_moon": "🌓",
"first_quarter_moon_with_face": "🌛",
"fish": "🐟",
"fish_cake": "🍥",
"fishing_pole": "🎣",
"fishing_pole_and_fish": "🎣",
"fist": "✊️",
"fist_left": "🤛",
"fist_oncoming": "👊",
"fist_raised": "✊️",
"fist_right": "🤜",
"fist_tone1": "✊🏻",
"fist_tone2": "✊🏼",
"fist_tone3": "✊🏽",
"fist_tone4": "✊🏾",
"fist_tone5": "✊🏿",
"five": "5️⃣",
"flag-ac": "🇦🇨",
"flag-ad": "🇦🇩",
"flag-ae": "🇦🇪",
"flag-af": "🇦🇫",
"flag-ag": "🇦🇬",
"flag-ai": "🇦🇮",
"flag-al": "🇦🇱",
"flag-am": "🇦🇲",
"flag-ao": "🇦🇴",
"flag-aq": "🇦🇶",
"flag-ar": "🇦🇷",
"flag-as": "🇦🇸",
"flag-at": "🇦🇹",
"flag-au": "🇦🇺",
"flag-aw": "🇦🇼",
"flag-ax": "🇦🇽",
"flag-az": "🇦🇿",
"flag-ba": "🇧🇦",
"flag-bb": "🇧🇧",
"flag-bd": "🇧🇩",
"flag-be": "🇧🇪",
"flag-bf": "🇧🇫",
"flag-bg": "🇧🇬",
"flag-bh": "🇧🇭",
"flag-bi": "🇧🇮",
"flag-bj": "🇧🇯",
"flag-bl": "🇧🇱",
"flag-bm": "🇧🇲",
"flag-bn": "🇧🇳",
"flag-bo": "🇧🇴",
"flag-bq": "🇧🇶",
"flag-br": "🇧🇷",
"flag-bs": "🇧🇸",
"flag-bt": "🇧🇹",
"flag-bv": "🇧🇻",
"flag-bw": "🇧🇼",
"flag-by": "🇧🇾",
"flag-bz": "🇧🇿",
"flag-ca": "🇨🇦",
"flag-cc": "🇨🇨",
"flag-cd": "🇨🇩",
"flag-cf": "🇨🇫",
"flag-cg": "🇨🇬",
"flag-ch": "🇨🇭",
"flag-ci": "🇨🇮",
"flag-ck": "🇨🇰",
"flag-cl": "🇨🇱",
"flag-cm": "🇨🇲",
"flag-cn": "🇨🇳",
"flag-co": "🇨🇴",
"flag-cp": "🇨🇵",
"flag-cr": "🇨🇷",
"flag-cu": "🇨🇺",
"flag-cv": "🇨🇻",
"flag-cw": "🇨🇼",
"flag-cx": "🇨🇽",
"flag-cy": "🇨🇾",
"flag-cz": "🇨🇿",
"flag-de": "🇩🇪",
"flag-dg": "🇩🇬",
"flag-dj": "🇩🇯",
"flag-dk": "🇩🇰",
"flag-dm": "🇩🇲",
"flag-do": "🇩🇴",
"flag-dz": "🇩🇿",
"flag-ea": "🇪🇦",
"flag-ec": "🇪🇨",
"flag-ee": "🇪🇪",
"flag-eg": "🇪🇬",
"flag-eh": "🇪🇭",
"flag-england": "🏴󠁧󠁢󠁥󠁮󠁧󠁿",
"flag-er": "🇪🇷",
"flag-es": "🇪🇸",
"flag-et": "🇪🇹",
"flag-eu": "🇪🇺",
"flag-fi": "🇫🇮",
"flag-fj": "🇫🇯",
"flag-fk": "🇫🇰",
"flag-fm": "🇫🇲",
"flag-fo": "🇫🇴",
"flag-fr": "🇫🇷",
"flag-ga": "🇬🇦",
"flag-gb": "🇬🇧",
"flag-gd": "🇬🇩",
"flag-ge": "🇬🇪",
"flag-gf": "🇬🇫",
"flag-gg": "🇬🇬",
"flag-gh": "🇬🇭",
"flag-gi": "🇬🇮",
"flag-gl": "🇬🇱",
"flag-gm": "🇬🇲",
"flag-gn": "🇬🇳",
"flag-gp": "🇬🇵",
"flag-gq": "🇬🇶",
"flag-gr": "🇬🇷",
"flag-gs": "🇬🇸",
"flag-gt": "🇬🇹",
"flag-gu": "🇬🇺",
"flag-gw": "🇬🇼",
"flag-gy": "🇬🇾",
"flag-hk": "🇭🇰",
"flag-hm": "🇭🇲",
"flag-hn": "🇭🇳",
"flag-hr": "🇭🇷",
"flag-ht": "🇭🇹",
"flag-hu": "🇭🇺",
"flag-ic": "🇮🇨",
"flag-id": "🇮🇩",
"flag-ie": "🇮🇪",
"flag-il": "🇮🇱",
"flag-im": "🇮🇲",
"flag-in": "🇮🇳",
"flag-io": "🇮🇴",
"flag-iq": "🇮🇶",
"flag-ir": "🇮🇷",
"flag-is": "🇮🇸",
"flag-it": "🇮🇹",
"flag-je": "🇯🇪",
"flag-jm": "🇯🇲",
"flag-jo": "🇯🇴",
"flag-jp": "🇯🇵",
"flag-ke": "🇰🇪",
"flag-kg": "🇰🇬",
"flag-kh": "🇰🇭",
"flag-ki": "🇰🇮",
"flag-km": "🇰🇲",
"flag-kn": "🇰🇳",
"flag-kp": "🇰🇵",
"flag-kr": "🇰🇷",
"flag-kw": "🇰🇼",
"flag-ky": "🇰🇾",
"flag-kz": "🇰🇿",
"flag-la": "🇱🇦",
"flag-lb": "🇱🇧",
"flag-lc": "🇱🇨",
"flag-li": "🇱🇮",
"flag-lk": "🇱🇰",
"flag-lr": "🇱🇷",
"flag-ls": "🇱🇸",
"flag-lt": "🇱🇹",
"flag-lu": "🇱🇺",
"flag-lv": "🇱🇻",
"flag-ly": "🇱🇾",
"flag-ma": "🇲🇦",
"flag-mc": "🇲🇨",
"flag-md": "🇲🇩",
"flag-me": "🇲🇪",
"flag-mf": "🇲🇫",
"flag-mg": "🇲🇬",
"flag-mh": "🇲🇭",
"flag-mk": "🇲🇰",
"flag-ml": "🇲🇱",
"flag-mm": "🇲🇲",
"flag-mn": "🇲🇳",
"flag-mo": "🇲🇴",
"flag-mp": "🇲🇵",
"flag-mq": "🇲🇶",
"flag-mr": "🇲🇷",
"flag-ms": "🇲🇸",
"flag-mt": "🇲🇹",
"flag-mu": "🇲🇺",
"flag-mv": "🇲🇻",
"flag-mw": "🇲🇼",
"flag-mx": "🇲🇽",
"flag-my": "🇲🇾",
"flag-mz": "🇲🇿",
"flag-na": "🇳🇦",
"flag-nc": "🇳🇨",
"flag-ne": "🇳🇪",
"flag-nf": "🇳🇫",
"flag-ng": "🇳🇬",
"flag-ni": "🇳🇮",
"flag-nl": "🇳🇱",
"flag-no": "🇳🇴",
"flag-np": "🇳🇵",
"flag-nr": "🇳🇷",
"flag-nu": "🇳🇺",
"flag-nz": "🇳🇿",
"flag-om": "🇴🇲",
"flag-pa": "🇵🇦",
"flag-pe": "🇵🇪",
"flag-pf": "🇵🇫",
"flag-pg": "🇵🇬",
"flag-ph": "🇵🇭",
"flag-pk": "🇵🇰",
"flag-pl": "🇵🇱",
"flag-pm": "🇵🇲",
"flag-pn": "🇵🇳",
"flag-pr": "🇵🇷",
"flag-ps": "🇵🇸",
"flag-pt": "🇵🇹",
"flag-pw": "🇵🇼",
"flag-py": "🇵🇾",
"flag-qa": "🇶🇦",
"flag-re": "🇷🇪",
"flag-ro": "🇷🇴",
"flag-rs": "🇷🇸",
"flag-ru": "🇷🇺",
"flag-rw": "🇷🇼",
"flag-sa": "🇸🇦",
"flag-sark": "🇨🇶",
"flag-sb": "🇸🇧",
"flag-sc": "🇸🇨",
"flag-scotland": "🏴󠁧󠁢󠁳󠁣󠁴󠁿",
"flag-sd": "🇸🇩",
"flag-se": "🇸🇪",
"flag-sg": "🇸🇬",
"flag-sh": "🇸🇭",
"flag-si": "🇸🇮",
"flag-sj": "🇸🇯",
"flag-sk": "🇸🇰",
"flag-sl": "🇸🇱",
"flag-sm": "🇸🇲",
"flag-sn": "🇸🇳",
"flag-so": "🇸🇴",
"flag-sr": "🇸🇷",
"flag-ss": "🇸🇸",
"flag-st": "🇸🇹",
"flag-sv": "🇸🇻",
"flag-sx": "🇸🇽",
"flag-sy": "🇸🇾",
"flag-sz": "🇸🇿",
"flag-ta": "🇹🇦",
"flag-tc": "🇹🇨",
"flag-td": "🇹🇩",
"flag-tf": "🇹🇫",
"flag-tg": "🇹🇬",
"flag-th": "🇹🇭",
"flag-tj": "🇹🇯",
"flag-tk": "🇹🇰",
"flag-tl": "🇹🇱",
"flag-tm": "🇹🇲",
"flag-tn": "🇹🇳",
"flag-to": "🇹🇴",
"flag-tr": "🇹🇷",
"flag-tt": "🇹🇹",
"flag-tv": "🇹🇻",
"flag-tw": "🇹🇼",
"flag-tz": "🇹🇿",
"flag-ua": "🇺🇦",
"flag-ug": "🇺🇬",
"flag-um": "🇺🇲",
"flag-un": "🇺🇳",
"flag-us": "🇺🇸",
"flag-uy": "🇺🇾",
"flag-uz": "🇺🇿",
"flag-va": "🇻🇦",
"flag-vc": "🇻🇨",
"flag-ve": "🇻🇪",
"flag-vg": "🇻🇬",
"flag-vi": "🇻🇮",
"flag-vn": "🇻🇳",
"flag-vu": "🇻🇺",
"flag-wales": "🏴󠁧󠁢󠁷󠁬󠁳󠁿",
"flag-wf": "🇼🇫",
"flag-ws": "🇼🇸",
"flag-xk": "🇽🇰",
"flag-ye": "🇾🇪",
"flag-yt": "🇾🇹",
"flag-za": "🇿🇦",
"flag-zm": "🇿🇲",
"flag-zw": "🇿🇼",
"flag_ac": "🇦🇨",
"flag_ad": "🇦🇩",
"flag_ae": "🇦🇪",
"flag_af": "🇦🇫",
"flag_ag": "🇦🇬",
"flag_ai": "🇦🇮",
"flag_al": "🇦🇱",
"flag_am": "🇦🇲",
"flag_ao": "🇦🇴",
"flag_aq": "🇦🇶",
"flag_ar": "🇦🇷",
"flag_as": "🇦🇸",
"flag_at": "🇦🇹",
"flag_au": "🇦🇺",
"flag_aw": "🇦🇼",
"flag_ax": "🇦🇽",
"flag_az": "🇦🇿",
"flag_ba": "🇧🇦",
"flag_bb": "🇧🇧",
"flag_bd": "🇧🇩",
"flag_be": "🇧🇪",
"flag_bf": "🇧🇫",
"flag_bg": "🇧🇬",
"flag_bh": "🇧🇭",
"flag_bi": "🇧🇮",
"flag_bj": "🇧🇯",
"flag_bl": "🇧🇱",
"flag_bm": "🇧🇲",
"flag_bn": "🇧🇳",
"flag_bo": "🇧🇴",
"flag_bq": "🇧🇶",
"flag_br": "🇧🇷",
"flag_bs": "🇧🇸",
"flag_bt": "🇧🇹",
"flag_bv": "🇧🇻",
"flag_bw": "🇧🇼",
"flag_by": "🇧🇾",
"flag_bz": "🇧🇿",
"flag_ca": "🇨🇦",
"flag_cc": "🇨🇨",
"flag_cd": "🇨🇩",
"flag_cf": "🇨🇫",
"flag_cg": "🇨🇬",
"flag_ch": "🇨🇭",
"flag_ci": "🇨🇮",
"flag_ck": "🇨🇰",
"flag_cl": "🇨🇱",
"flag_cm": "🇨🇲",
"flag_cn": "🇨🇳",
"flag_co": "🇨🇴",
"flag_cp": "🇨🇵",
"flag_cq": "🇨🇶",
"flag_cr": "🇨🇷",
"flag_cu": "🇨🇺",
"flag_cv": "🇨🇻",
"flag_cw": "🇨🇼",
"flag_cx": "🇨🇽",
"flag_cy": "🇨🇾",
"flag_cz": "🇨🇿",
"flag_de": "🇩🇪",
"flag_dg": "🇩🇬",
"flag_dj": "🇩🇯",
"flag_dk": "🇩🇰",
"flag_dm": "🇩🇲",
"flag_do": "🇩🇴",
"flag_dz": "🇩🇿",
"flag_ea": "🇪🇦",
"flag_ec": "🇪🇨",
"flag_ee": "🇪🇪",
"flag_eg": "🇪🇬",
"flag_eh": "🇪🇭",
"flag_er": "🇪🇷",
"flag_es": "🇪🇸",
"flag_et": "🇪🇹",
"flag_eu": "🇪🇺",
"flag_fi": "🇫🇮",
"flag_fj": "🇫🇯",
"flag_fk": "🇫🇰",
"flag_fm": "🇫🇲",
"flag_fo": "🇫🇴",
"flag_fr": "🇫🇷",
"flag_ga": "🇬🇦",
"flag_gb": "🇬🇧",
"flag_gbeng": "🏴󠁧󠁢󠁥󠁮󠁧󠁿",
"flag_gbsct": "🏴󠁧󠁢󠁳󠁣󠁴󠁿",
"flag_gbwls": "🏴󠁧󠁢󠁷󠁬󠁳󠁿",
"flag_gd": "🇬🇩",
"flag_ge": "🇬🇪",
"flag_gf": "🇬🇫",
"flag_gg": "🇬🇬",
"flag_gh": "🇬🇭",
"flag_gi": "🇬🇮",
"flag_gl": "🇬🇱",
"flag_gm": "🇬🇲",
"flag_gn": "🇬🇳",
"flag_gp": "🇬🇵",
"flag_gq": "🇬🇶",
"flag_gr": "🇬🇷",
"flag_gs": "🇬🇸",
"flag_gt": "🇬🇹",
"flag_gu": "🇬🇺",
"flag_gw": "🇬🇼",
"flag_gy": "🇬🇾",
"flag_hk": "🇭🇰",
"flag_hm": "🇭🇲",
"flag_hn": "🇭🇳",
"flag_hr": "🇭🇷",
"flag_ht": "🇭🇹",
"flag_hu": "🇭🇺",
"flag_ic": "🇮🇨",
"flag_id": "🇮🇩",
"flag_ie": "🇮🇪",
"flag_il": "🇮🇱",
"flag_im": "🇮🇲",
"flag_in": "🇮🇳",
"flag_io": "🇮🇴",
"flag_iq": "🇮🇶",
"flag_ir": "🇮🇷",
"flag_is": "🇮🇸",
"flag_it": "🇮🇹",
"flag_je": "🇯🇪",
"flag_jm": "🇯🇲",
"flag_jo": "🇯🇴",
"flag_jp": "🇯🇵",
"flag_ke": "🇰🇪",
"flag_kg": "🇰🇬",
"flag_kh": "🇰🇭",
"flag_ki": "🇰🇮",
"flag_km": "🇰🇲",
"flag_kn": "🇰🇳",
"flag_kp": "🇰🇵",
"flag_kr": "🇰🇷",
"flag_kw": "🇰🇼",
"flag_ky": "🇰🇾",
"flag_kz": "🇰🇿",
"flag_la": "🇱🇦",
"flag_lb": "🇱🇧",
"flag_lc": "🇱🇨",
"flag_li": "🇱🇮",
"flag_lk": "🇱🇰",
"flag_lr": "🇱🇷",
"flag_ls": "🇱🇸",
"flag_lt": "🇱🇹",
"flag_lu": "🇱🇺",
"flag_lv": "🇱🇻",
"flag_ly": "🇱🇾",
"flag_ma": "🇲🇦",
"flag_mc": "🇲🇨",
"flag_md": "🇲🇩",
"flag_me": "🇲🇪",
"flag_mf": "🇲🇫",
"flag_mg": "🇲🇬",
"flag_mh": "🇲🇭",
"flag_mk": "🇲🇰",
"flag_ml": "🇲🇱",
"flag_mm": "🇲🇲",
"flag_mn": "🇲🇳",
"flag_mo": "🇲🇴",
"flag_mp": "🇲🇵",
"flag_mq": "🇲🇶",
"flag_mr": "🇲🇷",
"flag_ms": "🇲🇸",
"flag_mt": "🇲🇹",
"flag_mu": "🇲🇺",
"flag_mv": "🇲🇻",
"flag_mw": "🇲🇼",
"flag_mx": "🇲🇽",
"flag_my": "🇲🇾",
"flag_mz": "🇲🇿",
"flag_na": "🇳🇦",
"flag_nc": "🇳🇨",
"flag_ne": "🇳🇪",
"flag_nf": "🇳🇫",
"flag_ng": "🇳🇬",
"flag_ni": "🇳🇮",
"flag_nl": "🇳🇱",
"flag_no": "🇳🇴",
"flag_np": "🇳🇵",
"flag_nr": "🇳🇷",
"flag_nu": "🇳🇺",
"flag_nz": "🇳🇿",
"flag_om": "🇴🇲",
"flag_pa": "🇵🇦",
"flag_pe": "🇵🇪",
"flag_pf": "🇵🇫",
"flag_pg": "🇵🇬",
"flag_ph": "🇵🇭",
"flag_pk": "🇵🇰",
"flag_pl": "🇵🇱",
"flag_pm": "🇵🇲",
"flag_pn": "🇵🇳",
"flag_pr": "🇵🇷",
"flag_ps": "🇵🇸",
"flag_pt": "🇵🇹",
"flag_pw": "🇵🇼",
"flag_py": "🇵🇾",
"flag_qa": "🇶🇦",
"flag_re": "🇷🇪",
"flag_ro": "🇷🇴",
"flag_rs": "🇷🇸",
"flag_ru": "🇷🇺",
"flag_rw": "🇷🇼",
"flag_sa": "🇸🇦",
"flag_sb": "🇸🇧",
"flag_sc": "🇸🇨",
"flag_sd": "🇸🇩",
"flag_se": "🇸🇪",
"flag_sg": "🇸🇬",
"flag_sh": "🇸🇭",
"flag_si": "🇸🇮",
"flag_sj": "🇸🇯",
"flag_sk": "🇸🇰",
"flag_sl": "🇸🇱",
"flag_sm": "🇸🇲",
"flag_sn": "🇸🇳",
"flag_so": "🇸🇴",
"flag_sr": "🇸🇷",
"flag_ss": "🇸🇸",
"flag_st": "🇸🇹",
"flag_sv": "🇸🇻",
"flag_sx": "🇸🇽",
"flag_sy": "🇸🇾",
"flag_sz": "🇸🇿",
"flag_ta": "🇹🇦",
"flag_tc": "🇹🇨",
"flag_td": "🇹🇩",
"flag_tf": "🇹🇫",
"flag_tg": "🇹🇬",
"flag_th": "🇹🇭",
"flag_tj": "🇹🇯",
"flag_tk": "🇹🇰",
"flag_tl": "🇹🇱",
"flag_tm": "🇹🇲",
"flag_tn": "🇹🇳",
"flag_to": "🇹🇴",
"flag_tr": "🇹🇷",
"flag_tt": "🇹🇹",
"flag_tv": "🇹🇻",
"flag_tw": "🇹🇼",
"flag_tz": "🇹🇿",
"flag_ua": "🇺🇦",
"flag_ug": "🇺🇬",
"flag_um": "🇺🇲",
"flag_un": "🇺🇳",
"flag_us": "🇺🇸",
"flag_uy": "🇺🇾",
"flag_uz": "🇺🇿",
"flag_va": "🇻🇦",
"flag_vc": "🇻🇨",
"flag_ve": "🇻🇪",
"flag_vg": "🇻🇬",
"flag_vi": "🇻🇮",
"flag_vn": "🇻🇳",
"flag_vu": "🇻🇺",
"flag_wf": "🇼🇫",
"flag_ws": "🇼🇸",
"flag_xk": "🇽🇰",
"flag_ye": "🇾🇪",
"flag_yt": "🇾🇹",
"flag_za": "🇿🇦",
"flag_zm": "🇿🇲",
"flag_zw": "🇿🇼",
"flags": "🎏",
"flamingo": "🦩",
"flashlight": "🔦",
"flat_shoe": "🥿",
"flatbread": "🫓",
"fleur-de-lis": "⚜️",
"fleur_de_lis": "⚜️",
"flight_arrival": "🛬",
"flight_departure": "🛫",
"flipper": "🐬",
"floppy_disk": "💾",
"flower_playing_cards": "🎴",
"flushed": "😳",
"flushed_face": "😳",
"flute": "🪈",
"fly": "🪰",
"flying_disc": "🥏",
"flying_saucer": "🛸",
"fog": "🌫",
"foggy": "🌁",
"folded_hands": "🙏",
"folded_hands_tone1": "🙏🏻",
"folded_hands_tone2": "🙏🏼",
"folded_hands_tone3": "🙏🏽",
"folded_hands_tone4": "🙏🏾",
"folded_hands_tone5": "🙏🏿",
"folding_fan": "🪭",
"folding_hand_fan": "🪭",
"fondue": "🫕",
"foot": "🦶",
"foot_tone1": "🦶🏻",
"foot_tone2": "🦶🏼",
"foot_tone3": "🦶🏽",
"foot_tone4": "🦶🏾",
"foot_tone5": "🦶🏿",
"football": "🏈",
"footprints": "👣",
"fork_and_knife": "🍴",
"fork_knife_plate": "🍽",
"fortune_cookie": "🥠",
"fountain": "⛲️",
"fountain_pen": "🖋",
"four": "4️⃣",
"four_leaf_clover": "🍀",
"fox": "🦊",
"fox_face": "🦊",
"fr": "🇫🇷",
"frame_with_picture": "🖼",
"framed_picture": "🖼",
"france": "🇫🇷",
"free": "🆓",
"french_fries": "🍟",
"french_guiana": "🇬🇫",
"french_polynesia": "🇵🇫",
"french_southern_territories": "🇹🇫",
"fried_egg": "🍳",
"fried_shrimp": "🍤",
"fries": "🍟",
"frog": "🐸",
"frog_face": "🐸",
"frowning": "😦",
"frowning_face": "☹️",
"frowning_man": "🙍‍♂️",
"frowning_person": "🙍",
"frowning_woman": "🙍‍♀️",
"fu": "🖕",
"fuelpump": "⛽️",
"full_moon": "🌕",
"full_moon_with_face": "🌝",
"funeral_urn": "⚱️",
"gabon": "🇬🇦",
"gambia": "🇬🇲",
"game_die": "🎲",
"garlic": "🧄",
"gasp": "🫢",
"gb": "🇬🇧",
"gear": "⚙️",
"gem": "💎",
"gemini": "♊️",
"genie": "🧞",
"genie_man": "🧞‍♂️",
"genie_woman": "🧞‍♀️",
"georgia": "🇬🇪",
"germany": "🇩🇪",
"ghana": "🇬🇭",
"ghost": "👻",
"gibraltar": "🇬🇮",
"gift": "🎁",
"gift_heart": "💝",
"ginger": "🫚",
"ginger_root": "🫚",
"giraffe": "🦒",
"giraffe_face": "🦒",
"girl": "👧",
"girl_tone1": "👧🏻",
"girl_tone2": "👧🏼",
"girl_tone3": "👧🏽",
"girl_tone4": "👧🏾",
"girl_tone5": "👧🏿",
"glass_of_milk": "🥛",
"glasses": "👓",
"globe_with_meridians": "🌐",
"gloves": "🧤",
"glowing_star": "🌟",
"goal_net": "🥅",
"goat": "🐐",
"goblin": "👺",
"goggles": "🥽",
"golf": "⛳️",
"golfer": "🏌",
"golfer_tone1": "🏌🏻",
"golfer_tone2": "🏌🏼",
"golfer_tone3": "🏌🏽",
"golfer_tone4": "🏌🏾",
"golfer_tone5": "🏌🏿",
"golfing": "🏌",
"golfing_man": "🏌️‍♂️",
"golfing_tone1": "🏌🏻",
"golfing_tone2": "🏌🏼",
"golfing_tone3": "🏌🏽",
"golfing_tone4": "🏌🏾",
"golfing_tone5": "🏌🏿",
"golfing_woman": "🏌️‍♀️",
"goose": "🪿",
"gorilla": "🦍",
"graduation_cap": "🎓",
"grapes": "🍇",
"gray_heart": "🩶",
"greece": "🇬🇷",
"green_apple": "🍏",
"green_book": "📗",
"green_circle": "🟢",
"green_heart": "💚",
"green_salad": "🥗",
"green_square": "🟩",
"greenland": "🇬🇱",
"grenada": "🇬🇩",
"grey_exclamation": "❕️",
"grey_heart": "🩶",
"grey_question": "❔️",
"grimacing": "😬",
"grimacing_face": "😬",
"grin": "😁",
"grinning": "😀",
"grinning_cat": "😺",
"grinning_cat_with_closed_eyes": "😸",
"grinning_face": "😀",
"grinning_face_with_big_eyes": "😃",
"grinning_face_with_closed_eyes": "😄",
"grinning_face_with_one_large_and_one_small_eye": "🤪",
"grinning_face_with_star_eyes": "🤩",
"grinning_face_with_sweat": "😅",
"growing_heart": "💗",
"guadeloupe": "🇬🇵",
"guam": "🇬🇺",
"guard": "💂",
"guard_tone1": "💂🏻",
"guard_tone2": "💂🏼",
"guard_tone3": "💂🏽",
"guard_tone4": "💂🏾",
"guard_tone5": "💂🏿",
"guardsman": "💂‍♂️",
"guardswoman": "💂‍♀️",
"guatemala": "🇬🇹",
"guernsey": "🇬🇬",
"guide_dog": "🦮",
"guinea": "🇬🇳",
"guinea_bissau": "🇬🇼",
"guitar": "🎸",
"gun": "🔫",
"guyana": "🇬🇾",
"hair_pick": "🪮",
"haircut": "💇",
"haircut_man": "💇‍♂️",
"haircut_tone1": "💇🏻",
"haircut_tone2": "💇🏼",
"haircut_tone3": "💇🏽",
"haircut_tone4": "💇🏾",
"haircut_tone5": "💇🏿",
"haircut_woman": "💇‍♀️",
"hairy_creature": "🫈",
"haiti": "🇭🇹",
"halo": "😇",
"hamburger": "🍔",
"hammer": "🔨",
"hammer_and_pick": "⚒️",
"hammer_and_wrench": "🛠",
"hamsa": "🪬",
"hamster": "🐹",
"hamster_face": "🐹",
"hand": "✋️",
"hand_over_mouth": "🤭",
"hand_with_index_and_middle_fingers_crossed": "🤞",
"hand_with_index_finger_and_thumb_crossed": "🫰",
"hand_with_index_finger_and_thumb_crossed_tone1": "🫰🏻",
"hand_with_index_finger_and_thumb_crossed_tone2": "🫰🏼",
"hand_with_index_finger_and_thumb_crossed_tone3": "🫰🏽",
"hand_with_index_finger_and_thumb_crossed_tone4": "🫰🏾",
"hand_with_index_finger_and_thumb_crossed_tone5": "🫰🏿",
"handbag": "👜",
"handball": "🤾",
"handball_person": "🤾",
"handball_tone1": "🤾🏻",
"handball_tone2": "🤾🏼",
"handball_tone3": "🤾🏽",
"handball_tone4": "🤾🏾",
"handball_tone5": "🤾🏿",
"handicapped": "♿️",
"handshake": "🤝",
"handshake_tone1": "🤝🏻",
"handshake_tone1-2": "🫱🏻‍🫲🏼",
"handshake_tone1-3": "🫱🏻‍🫲🏽",
"handshake_tone1-4": "🫱🏻‍🫲🏾",
"handshake_tone1-5": "🫱🏻‍🫲🏿",
"handshake_tone2": "🤝🏼",
"handshake_tone2-1": "🫱🏼‍🫲🏻",
"handshake_tone2-3": "🫱🏼‍🫲🏽",
"handshake_tone2-4": "🫱🏼‍🫲🏾",
"handshake_tone2-5": "🫱🏼‍🫲🏿",
"handshake_tone3": "🤝🏽",
"handshake_tone3-1": "🫱🏽‍🫲🏻",
"handshake_tone3-2": "🫱🏽‍🫲🏼",
"handshake_tone3-4": "🫱🏽‍🫲🏾",
"handshake_tone3-5": "🫱🏽‍🫲🏿",
"handshake_tone4": "🤝🏾",
"handshake_tone4-1": "🫱🏾‍🫲🏻",
"handshake_tone4-2": "🫱🏾‍🫲🏼",
"handshake_tone4-3": "🫱🏾‍🫲🏽",
"handshake_tone4-5": "🫱🏾‍🫲🏿",
"handshake_tone5": "🤝🏿",
"handshake_tone5-1": "🫱🏿‍🫲🏻",
"handshake_tone5-2": "🫱🏿‍🫲🏼",
"handshake_tone5-3": "🫱🏿‍🫲🏽",
"handshake_tone5-4": "🫱🏿‍🫲🏾",
"hankey": "💩",
"happy": "😊",
"harp": "🪉",
"hash": "#️⃣",
"hatched_chick": "🐥",
"hatching_chick": "🐣",
"head_shaking_horizontally": "🙂‍↔️",
"head_shaking_vertically": "🙂‍↕️",
"headphones": "🎧",
"headstone": "🪦",
"health_worker": "🧑‍⚕️",
"health_worker_tone1": "🧑🏻‍⚕️",
"health_worker_tone2": "🧑🏼‍⚕️",
"health_worker_tone3": "🧑🏽‍⚕️",
"health_worker_tone4": "🧑🏾‍⚕️",
"health_worker_tone5": "🧑🏿‍⚕️",
"hear_no_evil": "🙉",
"heard_mcdonald_islands": "🇭🇲",
"hearing_aid": "🦻",
"hearing_aid_tone1": "🦻🏻",
"hearing_aid_tone2": "🦻🏼",
"hearing_aid_tone3": "🦻🏽",
"hearing_aid_tone4": "🦻🏾",
"hearing_aid_tone5": "🦻🏿",
"heart": "❤️",
"heart_decoration": "💟",
"heart_exclamation": "❣️",
"heart_eyes": "😍",
"heart_eyes_cat": "😻",
"heart_hands": "🫶",
"heart_hands_tone1": "🫶🏻",
"heart_hands_tone2": "🫶🏼",
"heart_hands_tone3": "🫶🏽",
"heart_hands_tone4": "🫶🏾",
"heart_hands_tone5": "🫶🏿",
"heart_on_fire": "❤️‍🔥",
"heart_with_arrow": "💘",
"heart_with_ribbon": "💝",
"heartbeat": "💓",
"heartpulse": "💗",
"hearts": "♥️",
"heavy_check_mark": "✔️",
"heavy_division_sign": "➗️",
"heavy_dollar_sign": "💲",
"heavy_equals_sign": "🟰",
"heavy_exclamation_mark": "❗️",
"heavy_heart_exclamation": "❣️",
"heavy_heart_exclamation_mark_ornament": "❣️",
"heavy_minus_sign": "",
"heavy_multiplication_x": "✖️",
"heavy_plus_sign": "",
"hedgehog": "🦔",
"helicopter": "🚁",
"helmet_with_cross": "⛑️",
"helmet_with_white_cross": "⛑️",
"herb": "🌿",
"hibiscus": "🌺",
"high_brightness": "🔆",
"high_five": "✋️",
"high_five_tone1": "✋🏻",
"high_five_tone2": "✋🏼",
"high_five_tone3": "✋🏽",
"high_five_tone4": "✋🏾",
"high_five_tone5": "✋🏿",
"high_heel": "👠",
"high_voltage": "⚡️",
"high_volume": "🔊",
"hiking_boot": "🥾",
"hindu_temple": "🛕",
"hippo": "🦛",
"hippopotamus": "🦛",
"hocho": "🔪",
"hockey": "🏒",
"hole": "🕳",
"hollow_red_circle": "⭕️",
"homes": "🏘",
"honduras": "🇭🇳",
"honey_pot": "🍯",
"honeybee": "🐝",
"hong_kong": "🇭🇰",
"hook": "🪝",
"hooray": "🥳",
"horse": "🐴",
"horse_face": "🐴",
"horse_racing": "🏇",
"horse_racing_tone1": "🏇🏻",
"horse_racing_tone2": "🏇🏼",
"horse_racing_tone3": "🏇🏽",
"horse_racing_tone4": "🏇🏾",
"horse_racing_tone5": "🏇🏿",
"hospital": "🏥",
"hot": "🥵",
"hot_face": "🥵",
"hot_pepper": "🌶",
"hotdog": "🌭",
"hotel": "🏨",
"hotsprings": "♨️",
"hourglass": "⌛️",
"hourglass_flowing_sand": "⏳️",
"house": "🏠",
"house_abandoned": "🏚",
"house_buildings": "🏘",
"house_with_garden": "🏡",
"houses": "🏘",
"hug": "🤗",
"hugging": "🤗",
"hugging_face": "🤗",
"hugs": "🤗",
"hungary": "🇭🇺",
"hushed": "😯",
"hushed_face": "😯",
"hut": "🛖",
"hyacinth": "🪻",
"i_love_you_hand_sign": "🤟",
"ice": "🧊",
"ice_cream": "🍨",
"ice_cube": "🧊",
"ice_hockey": "🏒",
"ice_hockey_stick_and_puck": "🏒",
"ice_skate": "⛸️",
"icecream": "🍦",
"iceland": "🇮🇸",
"id": "🆔",
"id_card": "🪪",
"idea": "💡",
"identification_card": "🪪",
"ideograph_advantage": "🉐",
"imp": "👿",
"in_clouds": "😶‍🌫️",
"inbox_tray": "📥",
"incoming_envelope": "📨",
"index_pointing_at_the_viewer": "🫵",
"india": "🇮🇳",
"indonesia": "🇮🇩",
"infinity": "♾️",
"info": "",
"information_desk_person": "💁",
"information_source": "",
"innocent": "😇",
"interrobang": "⁉️",
"iphone": "📱",
"iran": "🇮🇷",
"iraq": "🇮🇶",
"ireland": "🇮🇪",
"island": "🏝",
"isle_of_man": "🇮🇲",
"israel": "🇮🇱",
"it": "🇮🇹",
"italy": "🇮🇹",
"izakaya_lantern": "🏮",
"ja_acceptable": "🉑",
"ja_application": "🈸",
"ja_bargain": "🉐",
"ja_congratulations": "㊗️",
"ja_discount": "🈹",
"ja_free_of_charge": "🈚",
"ja_here": "🈁",
"ja_monthly_amount": "🈷",
"ja_no_vacancy": "🈵",
"ja_not_free_of_carge": "🈶",
"ja_open_for_business": "🈺",
"ja_passing_grade": "🈴",
"ja_prohibited": "🈲",
"ja_reserved": "🈯",
"ja_secret": "㊙️",
"ja_service_charge": "🈂",
"ja_vacancy": "🈳",
"jack_o_lantern": "🎃",
"jamaica": "🇯🇲",
"japan": "🗾",
"japan_map": "🗾",
"japanese_castle": "🏯",
"japanese_goblin": "👺",
"japanese_ogre": "👹",
"jar": "🫙",
"jeans": "👖",
"jellyfish": "🪼",
"jersey": "🇯🇪",
"jigsaw": "🧩",
"jolly_roger": "🏴‍☠️",
"jordan": "🇯🇴",
"joy": "😂",
"joy_cat": "😹",
"joystick": "🕹",
"jp": "🇯🇵",
"judge": "🧑‍⚖️",
"judge_tone1": "🧑🏻‍⚖️",
"judge_tone2": "🧑🏼‍⚖️",
"judge_tone3": "🧑🏽‍⚖️",
"judge_tone4": "🧑🏾‍⚖️",
"judge_tone5": "🧑🏿‍⚖️",
"juggler": "🤹",
"juggler_tone1": "🤹🏻",
"juggler_tone2": "🤹🏼",
"juggler_tone3": "🤹🏽",
"juggler_tone4": "🤹🏾",
"juggler_tone5": "🤹🏿",
"juggling": "🤹",
"juggling_person": "🤹",
"juggling_tone1": "🤹🏻",
"juggling_tone2": "🤹🏼",
"juggling_tone3": "🤹🏽",
"juggling_tone4": "🤹🏾",
"juggling_tone5": "🤹🏿",
"juice_box": "🧃",
"kaaba": "🕋",
"kangaroo": "🦘",
"kazakhstan": "🇰🇿",
"kenya": "🇰🇪",
"key": "🔑",
"keyboard": "⌨️",
"keycap_star": "*️⃣",
"keycap_ten": "🔟",
"khanda": "🪯",
"kick_scooter": "🛴",
"kimono": "👘",
"kiribati": "🇰🇮",
"kiss": "💋",
"kiss_mm": "👨‍❤️‍💋‍👨",
"kiss_mm_tone1": "👨🏻‍❤️‍💋‍👨🏻",
"kiss_mm_tone1-2": "👨🏻‍❤️‍💋‍👨🏼",
"kiss_mm_tone1-3": "👨🏻‍❤️‍💋‍👨🏽",
"kiss_mm_tone1-4": "👨🏻‍❤️‍💋‍👨🏾",
"kiss_mm_tone1-5": "👨🏻‍❤️‍💋‍👨🏿",
"kiss_mm_tone2": "👨🏼‍❤️‍💋‍👨🏼",
"kiss_mm_tone2-1": "👨🏼‍❤️‍💋‍👨🏻",
"kiss_mm_tone2-3": "👨🏼‍❤️‍💋‍👨🏽",
"kiss_mm_tone2-4": "👨🏼‍❤️‍💋‍👨🏾",
"kiss_mm_tone2-5": "👨🏼‍❤️‍💋‍👨🏿",
"kiss_mm_tone3": "👨🏽‍❤️‍💋‍👨🏽",
"kiss_mm_tone3-1": "👨🏽‍❤️‍💋‍👨🏻",
"kiss_mm_tone3-2": "👨🏽‍❤️‍💋‍👨🏼",
"kiss_mm_tone3-4": "👨🏽‍❤️‍💋‍👨🏾",
"kiss_mm_tone3-5": "👨🏽‍❤️‍💋‍👨🏿",
"kiss_mm_tone4": "👨🏾‍❤️‍💋‍👨🏾",
"kiss_mm_tone4-1": "👨🏾‍❤️‍💋‍👨🏻",
"kiss_mm_tone4-2": "👨🏾‍❤️‍💋‍👨🏼",
"kiss_mm_tone4-3": "👨🏾‍❤️‍💋‍👨🏽",
"kiss_mm_tone4-5": "👨🏾‍❤️‍💋‍👨🏿",
"kiss_mm_tone5": "👨🏿‍❤️‍💋‍👨🏿",
"kiss_mm_tone5-1": "👨🏿‍❤️‍💋‍👨🏻",
"kiss_mm_tone5-2": "👨🏿‍❤️‍💋‍👨🏼",
"kiss_mm_tone5-3": "👨🏿‍❤️‍💋‍👨🏽",
"kiss_mm_tone5-4": "👨🏿‍❤️‍💋‍👨🏾",
"kiss_mw": "👩‍❤️‍💋‍👨",
"kiss_mw_tone1": "👩🏻‍❤️‍💋‍👨🏻",
"kiss_mw_tone1-2": "👩🏻‍❤️‍💋‍👨🏼",
"kiss_mw_tone1-3": "👩🏻‍❤️‍💋‍👨🏽",
"kiss_mw_tone1-4": "👩🏻‍❤️‍💋‍👨🏾",
"kiss_mw_tone1-5": "👩🏻‍❤️‍💋‍👨🏿",
"kiss_mw_tone2": "👩🏼‍❤️‍💋‍👨🏼",
"kiss_mw_tone2-1": "👩🏼‍❤️‍💋‍👨🏻",
"kiss_mw_tone2-3": "👩🏼‍❤️‍💋‍👨🏽",
"kiss_mw_tone2-4": "👩🏼‍❤️‍💋‍👨🏾",
"kiss_mw_tone2-5": "👩🏼‍❤️‍💋‍👨🏿",
"kiss_mw_tone3": "👩🏽‍❤️‍💋‍👨🏽",
"kiss_mw_tone3-1": "👩🏽‍❤️‍💋‍👨🏻",
"kiss_mw_tone3-2": "👩🏽‍❤️‍💋‍👨🏼",
"kiss_mw_tone3-4": "👩🏽‍❤️‍💋‍👨🏾",
"kiss_mw_tone3-5": "👩🏽‍❤️‍💋‍👨🏿",
"kiss_mw_tone4": "👩🏾‍❤️‍💋‍👨🏾",
"kiss_mw_tone4-1": "👩🏾‍❤️‍💋‍👨🏻",
"kiss_mw_tone4-2": "👩🏾‍❤️‍💋‍👨🏼",
"kiss_mw_tone4-3": "👩🏾‍❤️‍💋‍👨🏽",
"kiss_mw_tone4-5": "👩🏾‍❤️‍💋‍👨🏿",
"kiss_mw_tone5": "👩🏿‍❤️‍💋‍👨🏿",
"kiss_mw_tone5-1": "👩🏿‍❤️‍💋‍👨🏻",
"kiss_mw_tone5-2": "👩🏿‍❤️‍💋‍👨🏼",
"kiss_mw_tone5-3": "👩🏿‍❤️‍💋‍👨🏽",
"kiss_mw_tone5-4": "👩🏿‍❤️‍💋‍👨🏾",
"kiss_wm": "👩‍❤️‍💋‍👨",
"kiss_wm_tone1": "👩🏻‍❤️‍💋‍👨🏻",
"kiss_wm_tone1-2": "👩🏻‍❤️‍💋‍👨🏼",
"kiss_wm_tone1-3": "👩🏻‍❤️‍💋‍👨🏽",
"kiss_wm_tone1-4": "👩🏻‍❤️‍💋‍👨🏾",
"kiss_wm_tone1-5": "👩🏻‍❤️‍💋‍👨🏿",
"kiss_wm_tone2": "👩🏼‍❤️‍💋‍👨🏼",
"kiss_wm_tone2-1": "👩🏼‍❤️‍💋‍👨🏻",
"kiss_wm_tone2-3": "👩🏼‍❤️‍💋‍👨🏽",
"kiss_wm_tone2-4": "👩🏼‍❤️‍💋‍👨🏾",
"kiss_wm_tone2-5": "👩🏼‍❤️‍💋‍👨🏿",
"kiss_wm_tone3": "👩🏽‍❤️‍💋‍👨🏽",
"kiss_wm_tone3-1": "👩🏽‍❤️‍💋‍👨🏻",
"kiss_wm_tone3-2": "👩🏽‍❤️‍💋‍👨🏼",
"kiss_wm_tone3-4": "👩🏽‍❤️‍💋‍👨🏾",
"kiss_wm_tone3-5": "👩🏽‍❤️‍💋‍👨🏿",
"kiss_wm_tone4": "👩🏾‍❤️‍💋‍👨🏾",
"kiss_wm_tone4-1": "👩🏾‍❤️‍💋‍👨🏻",
"kiss_wm_tone4-2": "👩🏾‍❤️‍💋‍👨🏼",
"kiss_wm_tone4-3": "👩🏾‍❤️‍💋‍👨🏽",
"kiss_wm_tone4-5": "👩🏾‍❤️‍💋‍👨🏿",
"kiss_wm_tone5": "👩🏿‍❤️‍💋‍👨🏿",
"kiss_wm_tone5-1": "👩🏿‍❤️‍💋‍👨🏻",
"kiss_wm_tone5-2": "👩🏿‍❤️‍💋‍👨🏼",
"kiss_wm_tone5-3": "👩🏿‍❤️‍💋‍👨🏽",
"kiss_wm_tone5-4": "👩🏿‍❤️‍💋‍👨🏾",
"kiss_ww": "👩‍❤️‍💋‍👩",
"kiss_ww_tone1": "👩🏻‍❤️‍💋‍👩🏻",
"kiss_ww_tone1-2": "👩🏻‍❤️‍💋‍👩🏼",
"kiss_ww_tone1-3": "👩🏻‍❤️‍💋‍👩🏽",
"kiss_ww_tone1-4": "👩🏻‍❤️‍💋‍👩🏾",
"kiss_ww_tone1-5": "👩🏻‍❤️‍💋‍👩🏿",
"kiss_ww_tone2": "👩🏼‍❤️‍💋‍👩🏼",
"kiss_ww_tone2-1": "👩🏼‍❤️‍💋‍👩🏻",
"kiss_ww_tone2-3": "👩🏼‍❤️‍💋‍👩🏽",
"kiss_ww_tone2-4": "👩🏼‍❤️‍💋‍👩🏾",
"kiss_ww_tone2-5": "👩🏼‍❤️‍💋‍👩🏿",
"kiss_ww_tone3": "👩🏽‍❤️‍💋‍👩🏽",
"kiss_ww_tone3-1": "👩🏽‍❤️‍💋‍👩🏻",
"kiss_ww_tone3-2": "👩🏽‍❤️‍💋‍👩🏼",
"kiss_ww_tone3-4": "👩🏽‍❤️‍💋‍👩🏾",
"kiss_ww_tone3-5": "👩🏽‍❤️‍💋‍👩🏿",
"kiss_ww_tone4": "👩🏾‍❤️‍💋‍👩🏾",
"kiss_ww_tone4-1": "👩🏾‍❤️‍💋‍👩🏻",
"kiss_ww_tone4-2": "👩🏾‍❤️‍💋‍👩🏼",
"kiss_ww_tone4-3": "👩🏾‍❤️‍💋‍👩🏽",
"kiss_ww_tone4-5": "👩🏾‍❤️‍💋‍👩🏿",
"kiss_ww_tone5": "👩🏿‍❤️‍💋‍👩🏿",
"kiss_ww_tone5-1": "👩🏿‍❤️‍💋‍👩🏻",
"kiss_ww_tone5-2": "👩🏿‍❤️‍💋‍👩🏼",
"kiss_ww_tone5-3": "👩🏿‍❤️‍💋‍👩🏽",
"kiss_ww_tone5-4": "👩🏿‍❤️‍💋‍👩🏾",
"kissing": "😗",
"kissing_cat": "😽",
"kissing_closed_eyes": "😚",
"kissing_face": "😗",
"kissing_face_with_closed_eyes": "😚",
"kissing_face_with_smiling_eyes": "😙",
"kissing_heart": "😘",
"kissing_smiling_eyes": "😙",
"kite": "🪁",
"kiwi": "🥝",
"kiwi_fruit": "🥝",
"kiwifruit": "🥝",
"kneeling": "🧎",
"kneeling_man": "🧎‍♂️",
"kneeling_person": "🧎",
"kneeling_tone1": "🧎🏻",
"kneeling_tone2": "🧎🏼",
"kneeling_tone3": "🧎🏽",
"kneeling_tone4": "🧎🏾",
"kneeling_tone5": "🧎🏿",
"kneeling_woman": "🧎‍♀️",
"knife": "🔪",
"knife_fork_plate": "🍽",
"knocked_out": "😵",
"knot": "🪢",
"koala": "🐨",
"koala_face": "🐨",
"koko": "🈁",
"kosovo": "🇽🇰",
"kr": "🇰🇷",
"kuwait": "🇰🇼",
"kyrgyzstan": "🇰🇬",
"lab_coat": "🥼",
"label": "🏷",
"lacrosse": "🥍",
"ladder": "🪜",
"lady_beetle": "🐞",
"ladybug": "🐞",
"landslide": "🛘",
"lantern": "🏮",
"laos": "🇱🇦",
"laptop": "💻",
"large_blue_circle": "🔵",
"large_blue_diamond": "🔷",
"large_blue_square": "🟦",
"large_brown_circle": "🟤",
"large_brown_square": "🟫",
"large_green_circle": "🟢",
"large_green_square": "🟩",
"large_orange_circle": "🟠",
"large_orange_diamond": "🔶",
"large_orange_square": "🟧",
"large_purple_circle": "🟣",
"large_purple_square": "🟪",
"large_red_square": "🟥",
"large_yellow_circle": "🟡",
"large_yellow_square": "🟨",
"last_quarter_moon": "🌗",
"last_quarter_moon_with_face": "🌜",
"latin_cross": "✝️",
"latvia": "🇱🇻",
"laughing": "😆",
"leafless_tree": "🪾",
"leafy_green": "🥬",
"leaves": "🍃",
"lebanon": "🇱🇧",
"ledger": "📒",
"left-facing_fist": "🤛",
"left_facing_fist": "🤛",
"left_facing_fist_tone1": "🤛🏻",
"left_facing_fist_tone2": "🤛🏼",
"left_facing_fist_tone3": "🤛🏽",
"left_facing_fist_tone4": "🤛🏾",
"left_facing_fist_tone5": "🤛🏿",
"left_luggage": "🛅",
"left_right_arrow": "↔️",
"left_speech_bubble": "🗨",
"leftwards_arrow_with_hook": "↩️",
"leftwards_hand": "🫲",
"leftwards_hand_tone1": "🫲🏻",
"leftwards_hand_tone2": "🫲🏼",
"leftwards_hand_tone3": "🫲🏽",
"leftwards_hand_tone4": "🫲🏾",
"leftwards_hand_tone5": "🫲🏿",
"leftwards_pushing_hand": "🫷",
"leftwards_pushing_hand_tone1": "🫷🏻",
"leftwards_pushing_hand_tone2": "🫷🏼",
"leftwards_pushing_hand_tone3": "🫷🏽",
"leftwards_pushing_hand_tone4": "🫷🏾",
"leftwards_pushing_hand_tone5": "🫷🏿",
"leg": "🦵",
"leg_tone1": "🦵🏻",
"leg_tone2": "🦵🏼",
"leg_tone3": "🦵🏽",
"leg_tone4": "🦵🏾",
"leg_tone5": "🦵🏿",
"lemon": "🍋",
"leo": "♌️",
"leopard": "🐆",
"lesotho": "🇱🇸",
"level_slider": "🎚",
"levitate": "🕴",
"levitate_tone1": "🕴🏻",
"levitate_tone2": "🕴🏼",
"levitate_tone3": "🕴🏽",
"levitate_tone4": "🕴🏾",
"levitate_tone5": "🕴🏿",
"levitating": "🕴",
"levitating_tone1": "🕴🏻",
"levitating_tone2": "🕴🏼",
"levitating_tone3": "🕴🏽",
"levitating_tone4": "🕴🏾",
"levitating_tone5": "🕴🏿",
"liberia": "🇱🇷",
"libra": "♎️",
"libya": "🇱🇾",
"liechtenstein": "🇱🇮",
"lifebuoy": "🛟",
"light_blue_heart": "🩵",
"light_bulb": "💡",
"light_rail": "🚈",
"lightning": "🌩",
"lightning_cloud": "🌩",
"lime": "🍋‍🟩",
"link": "🔗",
"linked_paperclips": "🖇",
"lion": "🦁",
"lion_face": "🦁",
"lips": "👄",
"lipstick": "💄",
"lithuania": "🇱🇹",
"litter_bin": "🚮",
"lizard": "🦎",
"llama": "🦙",
"lmao": "😂",
"lobster": "🦞",
"lock": "🔒",
"lock_with_ink_pen": "🔏",
"locked": "🔒",
"locked_with_key": "🔐",
"locked_with_pen": "🔏",
"lol": "😆",
"lollipop": "🍭",
"long_drum": "🪘",
"loop": "➿️",
"lotion_bottle": "🧴",
"lotus": "🪷",
"lotus_position": "🧘",
"lotus_position_man": "🧘‍♂️",
"lotus_position_woman": "🧘‍♀️",
"loud_sound": "🔊",
"loudly_crying_face": "😭",
"loudspeaker": "📢",
"love_hotel": "🏩",
"love_letter": "💌",
"love_you_gesture": "🤟",
"love_you_gesture_tone1": "🤟🏻",
"love_you_gesture_tone2": "🤟🏼",
"love_you_gesture_tone3": "🤟🏽",
"love_you_gesture_tone4": "🤟🏾",
"love_you_gesture_tone5": "🤟🏿",
"low_battery": "🪫",
"low_brightness": "🔅",
"low_volume": "🔈",
"lower_left_ballpoint_pen": "🖊",
"lower_left_crayon": "🖍",
"lower_left_fountain_pen": "🖋",
"lower_left_paintbrush": "🖌",
"luggage": "🧳",
"lungs": "🫁",
"luxembourg": "🇱🇺",
"lying": "🤥",
"lying_face": "🤥",
"m": "Ⓜ️",
"macao": "🇲🇴",
"macau": "🇲🇴",
"macedonia": "🇲🇰",
"madagascar": "🇲🇬",
"mag": "🔍",
"mag_right": "🔎",
"mage": "🧙",
"mage_man": "🧙‍♂️",
"mage_tone1": "🧙🏻",
"mage_tone2": "🧙🏼",
"mage_tone3": "🧙🏽",
"mage_tone4": "🧙🏾",
"mage_tone5": "🧙🏿",
"mage_woman": "🧙‍♀️",
"magic_wand": "🪄",
"magnet": "🧲",
"mahjong": "🀄",
"mailbox": "📫",
"mailbox_closed": "📪",
"mailbox_with_mail": "📬",
"mailbox_with_no_mail": "📭",
"malawi": "🇲🇼",
"malaysia": "🇲🇾",
"maldives": "🇲🇻",
"male": "♂️",
"male-artist": "👨‍🎨",
"male-astronaut": "👨‍🚀",
"male-construction-worker": "👷‍♂️",
"male-cook": "👨‍🍳",
"male-detective": "🕵️‍♂️",
"male-doctor": "👨‍⚕️",
"male-factory-worker": "👨‍🏭",
"male-farmer": "👨‍🌾",
"male-firefighter": "👨‍🚒",
"male-guard": "💂‍♂️",
"male-judge": "👨‍⚖️",
"male-mechanic": "👨‍🔧",
"male-office-worker": "👨‍💼",
"male-pilot": "👨‍✈️",
"male-police-officer": "👮‍♂️",
"male-scientist": "👨‍🔬",
"male-singer": "👨‍🎤",
"male-student": "👨‍🎓",
"male-teacher": "👨‍🏫",
"male-technologist": "👨‍💻",
"male_detective": "🕵️‍♂️",
"male_elf": "🧝‍♂️",
"male_fairy": "🧚‍♂️",
"male_genie": "🧞‍♂️",
"male_mage": "🧙‍♂️",
"male_sign": "♂️",
"male_superhero": "🦸‍♂️",
"male_supervillain": "🦹‍♂️",
"male_vampire": "🧛‍♂️",
"male_zombie": "🧟‍♂️",
"mali": "🇲🇱",
"malta": "🇲🇹",
"mammoth": "🦣",
"man": "👨",
"man-biking": "🚴‍♂️",
"man-bouncing-ball": "⛹️‍♂️",
"man-bowing": "🙇‍♂️",
"man-boy": "👨‍👦",
"man-boy-boy": "👨‍👦‍👦",
"man-cartwheeling": "🤸‍♂️",
"man-facepalming": "🤦‍♂️",
"man-frowning": "🙍‍♂️",
"man-gesturing-no": "🙅‍♂️",
"man-gesturing-ok": "🙆‍♂️",
"man-getting-haircut": "💇‍♂️",
"man-getting-massage": "💆‍♂️",
"man-girl": "👨‍👧",
"man-girl-boy": "👨‍👧‍👦",
"man-girl-girl": "👨‍👧‍👧",
"man-golfing": "🏌️‍♂️",
"man-heart-man": "👨‍❤️‍👨",
"man-juggling": "🤹‍♂️",
"man-kiss-man": "👨‍❤️‍💋‍👨",
"man-lifting-weights": "🏋️‍♂️",
"man-man-boy": "👨‍👨‍👦",
"man-man-boy-boy": "👨‍👨‍👦‍👦",
"man-man-girl": "👨‍👨‍👧",
"man-man-girl-boy": "👨‍👨‍👧‍👦",
"man-man-girl-girl": "👨‍👨‍👧‍👧",
"man-mountain-biking": "🚵‍♂️",
"man-playing-handball": "🤾‍♂️",
"man-playing-water-polo": "🤽‍♂️",
"man-pouting": "🙎‍♂️",
"man-raising-hand": "🙋‍♂️",
"man-rowing-boat": "🚣‍♂️",
"man-running": "🏃‍♂️",
"man-shrugging": "🤷‍♂️",
"man-surfing": "🏄‍♂️",
"man-swimming": "🏊‍♂️",
"man-tipping-hand": "💁‍♂️",
"man-walking": "🚶‍♂️",
"man-wearing-turban": "👳‍♂️",
"man-with-bunny-ears-partying": "👯‍♂️",
"man-woman-boy": "👨‍👩‍👦",
"man-woman-boy-boy": "👨‍👩‍👦‍👦",
"man-woman-girl": "👨‍👩‍👧",
"man-woman-girl-boy": "👨‍👩‍👧‍👦",
"man-woman-girl-girl": "👨‍👩‍👧‍👧",
"man-wrestling": "🤼‍♂️",
"man_and_woman_holding_hands": "👫",
"man_artist": "👨‍🎨",
"man_artist_tone1": "👨🏻‍🎨",
"man_artist_tone2": "👨🏼‍🎨",
"man_artist_tone3": "👨🏽‍🎨",
"man_artist_tone4": "👨🏾‍🎨",
"man_artist_tone5": "👨🏿‍🎨",
"man_astronaut": "👨‍🚀",
"man_astronaut_tone1": "👨🏻‍🚀",
"man_astronaut_tone2": "👨🏼‍🚀",
"man_astronaut_tone3": "👨🏽‍🚀",
"man_astronaut_tone4": "👨🏾‍🚀",
"man_astronaut_tone5": "👨🏿‍🚀",
"man_bald": "👨‍🦲",
"man_bald_tone1": "👨🏻‍🦲",
"man_bald_tone2": "👨🏼‍🦲",
"man_bald_tone3": "👨🏽‍🦲",
"man_bald_tone4": "👨🏾‍🦲",
"man_bald_tone5": "👨🏿‍🦲",
"man_beard": "🧔‍♂️",
"man_bearded": "🧔‍♂️",
"man_bearded_tone1": "🧔🏻‍♂️",
"man_bearded_tone2": "🧔🏼‍♂️",
"man_bearded_tone3": "🧔🏽‍♂️",
"man_bearded_tone4": "🧔🏾‍♂️",
"man_bearded_tone5": "🧔🏿‍♂️",
"man_biking": "🚴‍♂️",
"man_biking_tone1": "🚴🏻‍♂️",
"man_biking_tone2": "🚴🏼‍♂️",
"man_biking_tone3": "🚴🏽‍♂️",
"man_biking_tone4": "🚴🏾‍♂️",
"man_biking_tone5": "🚴🏿‍♂️",
"man_blond_haired": "👱‍♂️",
"man_blond_haired_tone1": "👱🏻‍♂️",
"man_blond_haired_tone2": "👱🏼‍♂️",
"man_blond_haired_tone3": "👱🏽‍♂️",
"man_blond_haired_tone4": "👱🏾‍♂️",
"man_blond_haired_tone5": "👱🏿‍♂️",
"man_bouncing_ball": "⛹️‍♂️",
"man_bouncing_ball_tone1": "⛹🏻‍♂️",
"man_bouncing_ball_tone2": "⛹🏼‍♂️",
"man_bouncing_ball_tone3": "⛹🏽‍♂️",
"man_bouncing_ball_tone4": "⛹🏾‍♂️",
"man_bouncing_ball_tone5": "⛹🏿‍♂️",
"man_bowing": "🙇‍♂️",
"man_bowing_tone1": "🙇🏻‍♂️",
"man_bowing_tone2": "🙇🏼‍♂️",
"man_bowing_tone3": "🙇🏽‍♂️",
"man_bowing_tone4": "🙇🏾‍♂️",
"man_bowing_tone5": "🙇🏿‍♂️",
"man_cartwheeling": "🤸‍♂️",
"man_cartwheeling_tone1": "🤸🏻‍♂️",
"man_cartwheeling_tone2": "🤸🏼‍♂️",
"man_cartwheeling_tone3": "🤸🏽‍♂️",
"man_cartwheeling_tone4": "🤸🏾‍♂️",
"man_cartwheeling_tone5": "🤸🏿‍♂️",
"man_climbing": "🧗‍♂️",
"man_climbing_tone1": "🧗🏻‍♂️",
"man_climbing_tone2": "🧗🏼‍♂️",
"man_climbing_tone3": "🧗🏽‍♂️",
"man_climbing_tone4": "🧗🏾‍♂️",
"man_climbing_tone5": "🧗🏿‍♂️",
"man_construction_worker": "👷‍♂️",
"man_construction_worker_tone1": "👷🏻‍♂️",
"man_construction_worker_tone2": "👷🏼‍♂️",
"man_construction_worker_tone3": "👷🏽‍♂️",
"man_construction_worker_tone4": "👷🏾‍♂️",
"man_construction_worker_tone5": "👷🏿‍♂️",
"man_cook": "👨‍🍳",
"man_cook_tone1": "👨🏻‍🍳",
"man_cook_tone2": "👨🏼‍🍳",
"man_cook_tone3": "👨🏽‍🍳",
"man_cook_tone4": "👨🏾‍🍳",
"man_cook_tone5": "👨🏿‍🍳",
"man_curly_haired": "👨‍🦱",
"man_curly_haired_tone1": "👨🏻‍🦱",
"man_curly_haired_tone2": "👨🏼‍🦱",
"man_curly_haired_tone3": "👨🏽‍🦱",
"man_curly_haired_tone4": "👨🏾‍🦱",
"man_curly_haired_tone5": "👨🏿‍🦱",
"man_dancing": "🕺",
"man_dancing_tone1": "🕺🏻",
"man_dancing_tone2": "🕺🏼",
"man_dancing_tone3": "🕺🏽",
"man_dancing_tone4": "🕺🏾",
"man_dancing_tone5": "🕺🏿",
"man_detective": "🕵️‍♂️",
"man_detective_tone1": "🕵🏻‍♂️",
"man_detective_tone2": "🕵🏼‍♂️",
"man_detective_tone3": "🕵🏽‍♂️",
"man_detective_tone4": "🕵🏾‍♂️",
"man_detective_tone5": "🕵🏿‍♂️",
"man_elf": "🧝‍♂️",
"man_elf_tone1": "🧝🏻‍♂️",
"man_elf_tone2": "🧝🏼‍♂️",
"man_elf_tone3": "🧝🏽‍♂️",
"man_elf_tone4": "🧝🏾‍♂️",
"man_elf_tone5": "🧝🏿‍♂️",
"man_facepalming": "🤦‍♂️",
"man_facepalming_tone1": "🤦🏻‍♂️",
"man_facepalming_tone2": "🤦🏼‍♂️",
"man_facepalming_tone3": "🤦🏽‍♂️",
"man_facepalming_tone4": "🤦🏾‍♂️",
"man_facepalming_tone5": "🤦🏿‍♂️",
"man_factory_worker": "👨‍🏭",
"man_factory_worker_tone1": "👨🏻‍🏭",
"man_factory_worker_tone2": "👨🏼‍🏭",
"man_factory_worker_tone3": "👨🏽‍🏭",
"man_factory_worker_tone4": "👨🏾‍🏭",
"man_factory_worker_tone5": "👨🏿‍🏭",
"man_fairy": "🧚‍♂️",
"man_fairy_tone1": "🧚🏻‍♂️",
"man_fairy_tone2": "🧚🏼‍♂️",
"man_fairy_tone3": "🧚🏽‍♂️",
"man_fairy_tone4": "🧚🏾‍♂️",
"man_fairy_tone5": "🧚🏿‍♂️",
"man_farmer": "👨‍🌾",
"man_farmer_tone1": "👨🏻‍🌾",
"man_farmer_tone2": "👨🏼‍🌾",
"man_farmer_tone3": "👨🏽‍🌾",
"man_farmer_tone4": "👨🏾‍🌾",
"man_farmer_tone5": "👨🏿‍🌾",
"man_feeding_baby": "👨‍🍼",
"man_feeding_baby_tone1": "👨🏻‍🍼",
"man_feeding_baby_tone2": "👨🏼‍🍼",
"man_feeding_baby_tone3": "👨🏽‍🍼",
"man_feeding_baby_tone4": "👨🏾‍🍼",
"man_feeding_baby_tone5": "👨🏿‍🍼",
"man_firefighter": "👨‍🚒",
"man_firefighter_tone1": "👨🏻‍🚒",
"man_firefighter_tone2": "👨🏼‍🚒",
"man_firefighter_tone3": "👨🏽‍🚒",
"man_firefighter_tone4": "👨🏾‍🚒",
"man_firefighter_tone5": "👨🏿‍🚒",
"man_frowning": "🙍‍♂️",
"man_frowning_tone1": "🙍🏻‍♂️",
"man_frowning_tone2": "🙍🏼‍♂️",
"man_frowning_tone3": "🙍🏽‍♂️",
"man_frowning_tone4": "🙍🏾‍♂️",
"man_frowning_tone5": "🙍🏿‍♂️",
"man_genie": "🧞‍♂️",
"man_gesturing_no": "🙅‍♂️",
"man_gesturing_no_tone1": "🙅🏻‍♂️",
"man_gesturing_no_tone2": "🙅🏼‍♂️",
"man_gesturing_no_tone3": "🙅🏽‍♂️",
"man_gesturing_no_tone4": "🙅🏾‍♂️",
"man_gesturing_no_tone5": "🙅🏿‍♂️",
"man_gesturing_ok": "🙆‍♂️",
"man_gesturing_ok_tone1": "🙆🏻‍♂️",
"man_gesturing_ok_tone2": "🙆🏼‍♂️",
"man_gesturing_ok_tone3": "🙆🏽‍♂️",
"man_gesturing_ok_tone4": "🙆🏾‍♂️",
"man_gesturing_ok_tone5": "🙆🏿‍♂️",
"man_getting_haircut": "💇‍♂️",
"man_getting_haircut_tone1": "💇🏻‍♂️",
"man_getting_haircut_tone2": "💇🏼‍♂️",
"man_getting_haircut_tone3": "💇🏽‍♂️",
"man_getting_haircut_tone4": "💇🏾‍♂️",
"man_getting_haircut_tone5": "💇🏿‍♂️",
"man_getting_massage": "💆‍♂️",
"man_getting_massage_tone1": "💆🏻‍♂️",
"man_getting_massage_tone2": "💆🏼‍♂️",
"man_getting_massage_tone3": "💆🏽‍♂️",
"man_getting_massage_tone4": "💆🏾‍♂️",
"man_getting_massage_tone5": "💆🏿‍♂️",
"man_golfing": "🏌️‍♂️",
"man_golfing_tone1": "🏌🏻‍♂️",
"man_golfing_tone2": "🏌🏼‍♂️",
"man_golfing_tone3": "🏌🏽‍♂️",
"man_golfing_tone4": "🏌🏾‍♂️",
"man_golfing_tone5": "🏌🏿‍♂️",
"man_guard": "💂‍♂️",
"man_guard_tone1": "💂🏻‍♂️",
"man_guard_tone2": "💂🏼‍♂️",
"man_guard_tone3": "💂🏽‍♂️",
"man_guard_tone4": "💂🏾‍♂️",
"man_guard_tone5": "💂🏿‍♂️",
"man_health_worker": "👨‍⚕️",
"man_health_worker_tone1": "👨🏻‍⚕️",
"man_health_worker_tone2": "👨🏼‍⚕️",
"man_health_worker_tone3": "👨🏽‍⚕️",
"man_health_worker_tone4": "👨🏾‍⚕️",
"man_health_worker_tone5": "👨🏿‍⚕️",
"man_in_business_suit_levitating": "🕴",
"man_in_lotus_position": "🧘‍♂️",
"man_in_lotus_position_tone1": "🧘🏻‍♂️",
"man_in_lotus_position_tone2": "🧘🏼‍♂️",
"man_in_lotus_position_tone3": "🧘🏽‍♂️",
"man_in_lotus_position_tone4": "🧘🏾‍♂️",
"man_in_lotus_position_tone5": "🧘🏿‍♂️",
"man_in_manual_wheelchair": "👨‍🦽",
"man_in_manual_wheelchair_facing_right": "👨‍🦽‍➡️",
"man_in_manual_wheelchair_right": "👨‍🦽‍➡️",
"man_in_manual_wheelchair_right_tone1": "👨🏻‍🦽‍➡️",
"man_in_manual_wheelchair_right_tone2": "👨🏼‍🦽‍➡️",
"man_in_manual_wheelchair_right_tone3": "👨🏽‍🦽‍➡️",
"man_in_manual_wheelchair_right_tone4": "👨🏾‍🦽‍➡️",
"man_in_manual_wheelchair_right_tone5": "👨🏿‍🦽‍➡️",
"man_in_manual_wheelchair_tone1": "👨🏻‍🦽",
"man_in_manual_wheelchair_tone2": "👨🏼‍🦽",
"man_in_manual_wheelchair_tone3": "👨🏽‍🦽",
"man_in_manual_wheelchair_tone4": "👨🏾‍🦽",
"man_in_manual_wheelchair_tone5": "👨🏿‍🦽",
"man_in_motorized_wheelchair": "👨‍🦼",
"man_in_motorized_wheelchair_facing_right": "👨‍🦼‍➡️",
"man_in_motorized_wheelchair_right": "👨‍🦼‍➡️",
"man_in_motorized_wheelchair_right_tone1": "👨🏻‍🦼‍➡️",
"man_in_motorized_wheelchair_right_tone2": "👨🏼‍🦼‍➡️",
"man_in_motorized_wheelchair_right_tone3": "👨🏽‍🦼‍➡️",
"man_in_motorized_wheelchair_right_tone4": "👨🏾‍🦼‍➡️",
"man_in_motorized_wheelchair_right_tone5": "👨🏿‍🦼‍➡️",
"man_in_motorized_wheelchair_tone1": "👨🏻‍🦼",
"man_in_motorized_wheelchair_tone2": "👨🏼‍🦼",
"man_in_motorized_wheelchair_tone3": "👨🏽‍🦼",
"man_in_motorized_wheelchair_tone4": "👨🏾‍🦼",
"man_in_motorized_wheelchair_tone5": "👨🏿‍🦼",
"man_in_steamy_room": "🧖‍♂️",
"man_in_steamy_room_tone1": "🧖🏻‍♂️",
"man_in_steamy_room_tone2": "🧖🏼‍♂️",
"man_in_steamy_room_tone3": "🧖🏽‍♂️",
"man_in_steamy_room_tone4": "🧖🏾‍♂️",
"man_in_steamy_room_tone5": "🧖🏿‍♂️",
"man_in_tuxedo": "🤵‍♂️",
"man_in_tuxedo_tone1": "🤵🏻‍♂️",
"man_in_tuxedo_tone2": "🤵🏼‍♂️",
"man_in_tuxedo_tone3": "🤵🏽‍♂️",
"man_in_tuxedo_tone4": "🤵🏾‍♂️",
"man_in_tuxedo_tone5": "🤵🏿‍♂️",
"man_judge": "👨‍⚖️",
"man_judge_tone1": "👨🏻‍⚖️",
"man_judge_tone2": "👨🏼‍⚖️",
"man_judge_tone3": "👨🏽‍⚖️",
"man_judge_tone4": "👨🏾‍⚖️",
"man_judge_tone5": "👨🏿‍⚖️",
"man_juggling": "🤹‍♂️",
"man_juggling_tone1": "🤹🏻‍♂️",
"man_juggling_tone2": "🤹🏼‍♂️",
"man_juggling_tone3": "🤹🏽‍♂️",
"man_juggling_tone4": "🤹🏾‍♂️",
"man_juggling_tone5": "🤹🏿‍♂️",
"man_kneeling": "🧎‍♂️",
"man_kneeling_facing_right": "🧎‍♂️‍➡️",
"man_kneeling_right": "🧎‍♂️‍➡️",
"man_kneeling_right_tone1": "🧎🏻‍♂️‍➡️",
"man_kneeling_right_tone2": "🧎🏼‍♂️‍➡️",
"man_kneeling_right_tone3": "🧎🏽‍♂️‍➡️",
"man_kneeling_right_tone4": "🧎🏾‍♂️‍➡️",
"man_kneeling_right_tone5": "🧎🏿‍♂️‍➡️",
"man_kneeling_tone1": "🧎🏻‍♂️",
"man_kneeling_tone2": "🧎🏼‍♂️",
"man_kneeling_tone3": "🧎🏽‍♂️",
"man_kneeling_tone4": "🧎🏾‍♂️",
"man_kneeling_tone5": "🧎🏿‍♂️",
"man_lifting_weights": "🏋️‍♂️",
"man_lifting_weights_tone1": "🏋🏻‍♂️",
"man_lifting_weights_tone2": "🏋🏼‍♂️",
"man_lifting_weights_tone3": "🏋🏽‍♂️",
"man_lifting_weights_tone4": "🏋🏾‍♂️",
"man_lifting_weights_tone5": "🏋🏿‍♂️",
"man_mage": "🧙‍♂️",
"man_mage_tone1": "🧙🏻‍♂️",
"man_mage_tone2": "🧙🏼‍♂️",
"man_mage_tone3": "🧙🏽‍♂️",
"man_mage_tone4": "🧙🏾‍♂️",
"man_mage_tone5": "🧙🏿‍♂️",
"man_mechanic": "👨‍🔧",
"man_mechanic_tone1": "👨🏻‍🔧",
"man_mechanic_tone2": "👨🏼‍🔧",
"man_mechanic_tone3": "👨🏽‍🔧",
"man_mechanic_tone4": "👨🏾‍🔧",
"man_mechanic_tone5": "👨🏿‍🔧",
"man_mountain_biking": "🚵‍♂️",
"man_mountain_biking_tone1": "🚵🏻‍♂️",
"man_mountain_biking_tone2": "🚵🏼‍♂️",
"man_mountain_biking_tone3": "🚵🏽‍♂️",
"man_mountain_biking_tone4": "🚵🏾‍♂️",
"man_mountain_biking_tone5": "🚵🏿‍♂️",
"man_office_worker": "👨‍💼",
"man_office_worker_tone1": "👨🏻‍💼",
"man_office_worker_tone2": "👨🏼‍💼",
"man_office_worker_tone3": "👨🏽‍💼",
"man_office_worker_tone4": "👨🏾‍💼",
"man_office_worker_tone5": "👨🏿‍💼",
"man_pilot": "👨‍✈️",
"man_pilot_tone1": "👨🏻‍✈️",
"man_pilot_tone2": "👨🏼‍✈️",
"man_pilot_tone3": "👨🏽‍✈️",
"man_pilot_tone4": "👨🏾‍✈️",
"man_pilot_tone5": "👨🏿‍✈️",
"man_playing_handball": "🤾‍♂️",
"man_playing_handball_tone1": "🤾🏻‍♂️",
"man_playing_handball_tone2": "🤾🏼‍♂️",
"man_playing_handball_tone3": "🤾🏽‍♂️",
"man_playing_handball_tone4": "🤾🏾‍♂️",
"man_playing_handball_tone5": "🤾🏿‍♂️",
"man_playing_water_polo": "🤽‍♂️",
"man_playing_water_polo_tone1": "🤽🏻‍♂️",
"man_playing_water_polo_tone2": "🤽🏼‍♂️",
"man_playing_water_polo_tone3": "🤽🏽‍♂️",
"man_playing_water_polo_tone4": "🤽🏾‍♂️",
"man_playing_water_polo_tone5": "🤽🏿‍♂️",
"man_police_officer": "👮‍♂️",
"man_police_officer_tone1": "👮🏻‍♂️",
"man_police_officer_tone2": "👮🏼‍♂️",
"man_police_officer_tone3": "👮🏽‍♂️",
"man_police_officer_tone4": "👮🏾‍♂️",
"man_police_officer_tone5": "👮🏿‍♂️",
"man_pouting": "🙎‍♂️",
"man_pouting_tone1": "🙎🏻‍♂️",
"man_pouting_tone2": "🙎🏼‍♂️",
"man_pouting_tone3": "🙎🏽‍♂️",
"man_pouting_tone4": "🙎🏾‍♂️",
"man_pouting_tone5": "🙎🏿‍♂️",
"man_raising_hand": "🙋‍♂️",
"man_raising_hand_tone1": "🙋🏻‍♂️",
"man_raising_hand_tone2": "🙋🏼‍♂️",
"man_raising_hand_tone3": "🙋🏽‍♂️",
"man_raising_hand_tone4": "🙋🏾‍♂️",
"man_raising_hand_tone5": "🙋🏿‍♂️",
"man_red_haired": "👨‍🦰",
"man_red_haired_tone1": "👨🏻‍🦰",
"man_red_haired_tone2": "👨🏼‍🦰",
"man_red_haired_tone3": "👨🏽‍🦰",
"man_red_haired_tone4": "👨🏾‍🦰",
"man_red_haired_tone5": "👨🏿‍🦰",
"man_rowing_boat": "🚣‍♂️",
"man_rowing_boat_tone1": "🚣🏻‍♂️",
"man_rowing_boat_tone2": "🚣🏼‍♂️",
"man_rowing_boat_tone3": "🚣🏽‍♂️",
"man_rowing_boat_tone4": "🚣🏾‍♂️",
"man_rowing_boat_tone5": "🚣🏿‍♂️",
"man_running": "🏃‍♂️",
"man_running_facing_right": "🏃‍♂️‍➡️",
"man_running_right": "🏃‍♂️‍➡️",
"man_running_right_tone1": "🏃🏻‍♂️‍➡️",
"man_running_right_tone2": "🏃🏼‍♂️‍➡️",
"man_running_right_tone3": "🏃🏽‍♂️‍➡️",
"man_running_right_tone4": "🏃🏾‍♂️‍➡️",
"man_running_right_tone5": "🏃🏿‍♂️‍➡️",
"man_running_tone1": "🏃🏻‍♂️",
"man_running_tone2": "🏃🏼‍♂️",
"man_running_tone3": "🏃🏽‍♂️",
"man_running_tone4": "🏃🏾‍♂️",
"man_running_tone5": "🏃🏿‍♂️",
"man_scientist": "👨‍🔬",
"man_scientist_tone1": "👨🏻‍🔬",
"man_scientist_tone2": "👨🏼‍🔬",
"man_scientist_tone3": "👨🏽‍🔬",
"man_scientist_tone4": "👨🏾‍🔬",
"man_scientist_tone5": "👨🏿‍🔬",
"man_shrugging": "🤷‍♂️",
"man_shrugging_tone1": "🤷🏻‍♂️",
"man_shrugging_tone2": "🤷🏼‍♂️",
"man_shrugging_tone3": "🤷🏽‍♂️",
"man_shrugging_tone4": "🤷🏾‍♂️",
"man_shrugging_tone5": "🤷🏿‍♂️",
"man_singer": "👨‍🎤",
"man_singer_tone1": "👨🏻‍🎤",
"man_singer_tone2": "👨🏼‍🎤",
"man_singer_tone3": "👨🏽‍🎤",
"man_singer_tone4": "👨🏾‍🎤",
"man_singer_tone5": "👨🏿‍🎤",
"man_standing": "🧍‍♂️",
"man_standing_tone1": "🧍🏻‍♂️",
"man_standing_tone2": "🧍🏼‍♂️",
"man_standing_tone3": "🧍🏽‍♂️",
"man_standing_tone4": "🧍🏾‍♂️",
"man_standing_tone5": "🧍🏿‍♂️",
"man_student": "👨‍🎓",
"man_student_tone1": "👨🏻‍🎓",
"man_student_tone2": "👨🏼‍🎓",
"man_student_tone3": "👨🏽‍🎓",
"man_student_tone4": "👨🏾‍🎓",
"man_student_tone5": "👨🏿‍🎓",
"man_superhero": "🦸‍♂️",
"man_superhero_tone1": "🦸🏻‍♂️",
"man_superhero_tone2": "🦸🏼‍♂️",
"man_superhero_tone3": "🦸🏽‍♂️",
"man_superhero_tone4": "🦸🏾‍♂️",
"man_superhero_tone5": "🦸🏿‍♂️",
"man_supervillain": "🦹‍♂️",
"man_supervillain_tone1": "🦹🏻‍♂️",
"man_supervillain_tone2": "🦹🏼‍♂️",
"man_supervillain_tone3": "🦹🏽‍♂️",
"man_supervillain_tone4": "🦹🏾‍♂️",
"man_supervillain_tone5": "🦹🏿‍♂️",
"man_surfing": "🏄‍♂️",
"man_surfing_tone1": "🏄🏻‍♂️",
"man_surfing_tone2": "🏄🏼‍♂️",
"man_surfing_tone3": "🏄🏽‍♂️",
"man_surfing_tone4": "🏄🏾‍♂️",
"man_surfing_tone5": "🏄🏿‍♂️",
"man_swimming": "🏊‍♂️",
"man_swimming_tone1": "🏊🏻‍♂️",
"man_swimming_tone2": "🏊🏼‍♂️",
"man_swimming_tone3": "🏊🏽‍♂️",
"man_swimming_tone4": "🏊🏾‍♂️",
"man_swimming_tone5": "🏊🏿‍♂️",
"man_teacher": "👨‍🏫",
"man_teacher_tone1": "👨🏻‍🏫",
"man_teacher_tone2": "👨🏼‍🏫",
"man_teacher_tone3": "👨🏽‍🏫",
"man_teacher_tone4": "👨🏾‍🏫",
"man_teacher_tone5": "👨🏿‍🏫",
"man_technologist": "👨‍💻",
"man_technologist_tone1": "👨🏻‍💻",
"man_technologist_tone2": "👨🏼‍💻",
"man_technologist_tone3": "👨🏽‍💻",
"man_technologist_tone4": "👨🏾‍💻",
"man_technologist_tone5": "👨🏿‍💻",
"man_tipping_hand": "💁‍♂️",
"man_tipping_hand_tone1": "💁🏻‍♂️",
"man_tipping_hand_tone2": "💁🏼‍♂️",
"man_tipping_hand_tone3": "💁🏽‍♂️",
"man_tipping_hand_tone4": "💁🏾‍♂️",
"man_tipping_hand_tone5": "💁🏿‍♂️",
"man_tone1": "👨🏻",
"man_tone2": "👨🏼",
"man_tone3": "👨🏽",
"man_tone4": "👨🏾",
"man_tone5": "👨🏿",
"man_vampire": "🧛‍♂️",
"man_vampire_tone1": "🧛🏻‍♂️",
"man_vampire_tone2": "🧛🏼‍♂️",
"man_vampire_tone3": "🧛🏽‍♂️",
"man_vampire_tone4": "🧛🏾‍♂️",
"man_vampire_tone5": "🧛🏿‍♂️",
"man_walking": "🚶‍♂️",
"man_walking_facing_right": "🚶‍♂️‍➡️",
"man_walking_right": "🚶‍♂️‍➡️",
"man_walking_right_tone1": "🚶🏻‍♂️‍➡️",
"man_walking_right_tone2": "🚶🏼‍♂️‍➡️",
"man_walking_right_tone3": "🚶🏽‍♂️‍➡️",
"man_walking_right_tone4": "🚶🏾‍♂️‍➡️",
"man_walking_right_tone5": "🚶🏿‍♂️‍➡️",
"man_walking_tone1": "🚶🏻‍♂️",
"man_walking_tone2": "🚶🏼‍♂️",
"man_walking_tone3": "🚶🏽‍♂️",
"man_walking_tone4": "🚶🏾‍♂️",
"man_walking_tone5": "🚶🏿‍♂️",
"man_wearing_turban": "👳‍♂️",
"man_wearing_turban_tone1": "👳🏻‍♂️",
"man_wearing_turban_tone2": "👳🏼‍♂️",
"man_wearing_turban_tone3": "👳🏽‍♂️",
"man_wearing_turban_tone4": "👳🏾‍♂️",
"man_wearing_turban_tone5": "👳🏿‍♂️",
"man_white_haired": "👨‍🦳",
"man_white_haired_tone1": "👨🏻‍🦳",
"man_white_haired_tone2": "👨🏼‍🦳",
"man_white_haired_tone3": "👨🏽‍🦳",
"man_white_haired_tone4": "👨🏾‍🦳",
"man_white_haired_tone5": "👨🏿‍🦳",
"man_with_beard": "🧔‍♂️",
"man_with_gua_pi_mao": "👲",
"man_with_probing_cane": "👨‍🦯",
"man_with_probing_cane_tone1": "👨🏻‍🦯",
"man_with_probing_cane_tone2": "👨🏼‍🦯",
"man_with_probing_cane_tone3": "👨🏽‍🦯",
"man_with_probing_cane_tone4": "👨🏾‍🦯",
"man_with_probing_cane_tone5": "👨🏿‍🦯",
"man_with_turban": "👳‍♂️",
"man_with_veil": "👰‍♂️",
"man_with_veil_tone1": "👰🏻‍♂️",
"man_with_veil_tone2": "👰🏼‍♂️",
"man_with_veil_tone3": "👰🏽‍♂️",
"man_with_veil_tone4": "👰🏾‍♂️",
"man_with_veil_tone5": "👰🏿‍♂️",
"man_with_white_cane": "👨‍🦯",
"man_with_white_cane_facing_right": "👨‍🦯‍➡️",
"man_with_white_cane_right": "👨‍🦯‍➡️",
"man_with_white_cane_right_tone1": "👨🏻‍🦯‍➡️",
"man_with_white_cane_right_tone2": "👨🏼‍🦯‍➡️",
"man_with_white_cane_right_tone3": "👨🏽‍🦯‍➡️",
"man_with_white_cane_right_tone4": "👨🏾‍🦯‍➡️",
"man_with_white_cane_right_tone5": "👨🏿‍🦯‍➡️",
"man_with_white_cane_tone1": "👨🏻‍🦯",
"man_with_white_cane_tone2": "👨🏼‍🦯",
"man_with_white_cane_tone3": "👨🏽‍🦯",
"man_with_white_cane_tone4": "👨🏾‍🦯",
"man_with_white_cane_tone5": "👨🏿‍🦯",
"man_zombie": "🧟‍♂️",
"mandarin": "🍊",
"mango": "🥭",
"mans_shoe": "👞",
"mantelpiece_clock": "🕰",
"manual_wheelchair": "🦽",
"maple_leaf": "🍁",
"maracas": "🪇",
"marshall_islands": "🇲🇭",
"martial_arts_uniform": "🥋",
"martinique": "🇲🇶",
"mask": "😷",
"massage": "💆",
"massage_man": "💆‍♂️",
"massage_tone1": "💆🏻",
"massage_tone2": "💆🏼",
"massage_tone3": "💆🏽",
"massage_tone4": "💆🏾",
"massage_tone5": "💆🏿",
"massage_woman": "💆‍♀️",
"mate": "🧉",
"mate_drink": "🧉",
"mauritania": "🇲🇷",
"mauritius": "🇲🇺",
"mayotte": "🇾🇹",
"meat_on_bone": "🍖",
"mechanic": "🧑‍🔧",
"mechanic_tone1": "🧑🏻‍🔧",
"mechanic_tone2": "🧑🏼‍🔧",
"mechanic_tone3": "🧑🏽‍🔧",
"mechanic_tone4": "🧑🏾‍🔧",
"mechanic_tone5": "🧑🏿‍🔧",
"mechanical_arm": "🦾",
"mechanical_leg": "🦿",
"medal": "🎖",
"medal_military": "🎖",
"medal_sports": "🏅",
"medical": "⚕️",
"medical_mask": "😷",
"medical_symbol": "⚕️",
"medium_volumne": "🔉",
"mega": "📣",
"megaphone": "📣",
"melon": "🍈",
"melt": "🫠",
"melting_face": "🫠",
"memo": "📝",
"men-with-bunny-ears-partying": "👯‍♂️",
"men_holding_hands": "👬",
"men_with_bunny_ears_partying": "👯‍♂️",
"men_with_bunny_ears_partying_tone1": "👯🏻‍♂️",
"men_with_bunny_ears_partying_tone1-2": "👨🏻‍🐰‍👨🏼",
"men_with_bunny_ears_partying_tone1-3": "👨🏻‍🐰‍👨🏽",
"men_with_bunny_ears_partying_tone1-4": "👨🏻‍🐰‍👨🏾",
"men_with_bunny_ears_partying_tone1-5": "👨🏻‍🐰‍👨🏿",
"men_with_bunny_ears_partying_tone2": "👯🏼‍♂️",
"men_with_bunny_ears_partying_tone2-1": "👨🏼‍🐰‍👨🏻",
"men_with_bunny_ears_partying_tone2-3": "👨🏼‍🐰‍👨🏽",
"men_with_bunny_ears_partying_tone2-4": "👨🏼‍🐰‍👨🏾",
"men_with_bunny_ears_partying_tone2-5": "👨🏼‍🐰‍👨🏿",
"men_with_bunny_ears_partying_tone3": "👯🏽‍♂️",
"men_with_bunny_ears_partying_tone3-1": "👨🏽‍🐰‍👨🏻",
"men_with_bunny_ears_partying_tone3-2": "👨🏽‍🐰‍👨🏼",
"men_with_bunny_ears_partying_tone3-4": "👨🏽‍🐰‍👨🏾",
"men_with_bunny_ears_partying_tone3-5": "👨🏽‍🐰‍👨🏿",
"men_with_bunny_ears_partying_tone4": "👯🏾‍♂️",
"men_with_bunny_ears_partying_tone4-1": "👨🏾‍🐰‍👨🏻",
"men_with_bunny_ears_partying_tone4-2": "👨🏾‍🐰‍👨🏼",
"men_with_bunny_ears_partying_tone4-3": "👨🏾‍🐰‍👨🏽",
"men_with_bunny_ears_partying_tone4-5": "👨🏾‍🐰‍👨🏿",
"men_with_bunny_ears_partying_tone5": "👯🏿‍♂️",
"men_with_bunny_ears_partying_tone5-1": "👨🏿‍🐰‍👨🏻",
"men_with_bunny_ears_partying_tone5-2": "👨🏿‍🐰‍👨🏼",
"men_with_bunny_ears_partying_tone5-3": "👨🏿‍🐰‍👨🏽",
"men_with_bunny_ears_partying_tone5-4": "👨🏿‍🐰‍👨🏾",
"men_wrestling": "🤼‍♂️",
"men_wrestling_tone1": "🤼🏻‍♂️",
"men_wrestling_tone1-2": "👨🏻‍🫯‍👨🏼",
"men_wrestling_tone1-3": "👨🏻‍🫯‍👨🏽",
"men_wrestling_tone1-4": "👨🏻‍🫯‍👨🏾",
"men_wrestling_tone1-5": "👨🏻‍🫯‍👨🏿",
"men_wrestling_tone2": "🤼🏼‍♂️",
"men_wrestling_tone2-1": "👨🏼‍🫯‍👨🏻",
"men_wrestling_tone2-3": "👨🏼‍🫯‍👨🏽",
"men_wrestling_tone2-4": "👨🏼‍🫯‍👨🏾",
"men_wrestling_tone2-5": "👨🏼‍🫯‍👨🏿",
"men_wrestling_tone3": "🤼🏽‍♂️",
"men_wrestling_tone3-1": "👨🏽‍🫯‍👨🏻",
"men_wrestling_tone3-2": "👨🏽‍🫯‍👨🏼",
"men_wrestling_tone3-4": "👨🏽‍🫯‍👨🏾",
"men_wrestling_tone3-5": "👨🏽‍🫯‍👨🏿",
"men_wrestling_tone4": "🤼🏾‍♂️",
"men_wrestling_tone4-1": "👨🏾‍🫯‍👨🏻",
"men_wrestling_tone4-2": "👨🏾‍🫯‍👨🏼",
"men_wrestling_tone4-3": "👨🏾‍🫯‍👨🏽",
"men_wrestling_tone4-5": "👨🏾‍🫯‍👨🏿",
"men_wrestling_tone5": "🤼🏿‍♂️",
"men_wrestling_tone5-1": "👨🏿‍🫯‍👨🏻",
"men_wrestling_tone5-2": "👨🏿‍🫯‍👨🏼",
"men_wrestling_tone5-3": "👨🏿‍🫯‍👨🏽",
"men_wrestling_tone5-4": "👨🏿‍🫯‍👨🏾",
"mending_heart": "❤️‍🩹",
"menorah": "🕎",
"menorah_with_nine_branches": "🕎",
"mens": "🚹",
"mermaid": "🧜‍♀️",
"mermaid_tone1": "🧜🏻‍♀️",
"mermaid_tone2": "🧜🏼‍♀️",
"mermaid_tone3": "🧜🏽‍♀️",
"mermaid_tone4": "🧜🏾‍♀️",
"mermaid_tone5": "🧜🏿‍♀️",
"merman": "🧜‍♂️",
"merman_tone1": "🧜🏻‍♂️",
"merman_tone2": "🧜🏼‍♂️",
"merman_tone3": "🧜🏽‍♂️",
"merman_tone4": "🧜🏾‍♂️",
"merman_tone5": "🧜🏿‍♂️",
"merperson": "🧜",
"merperson_tone1": "🧜🏻",
"merperson_tone2": "🧜🏼",
"merperson_tone3": "🧜🏽",
"merperson_tone4": "🧜🏾",
"merperson_tone5": "🧜🏿",
"metal": "🤘",
"metal_tone1": "🤘🏻",
"metal_tone2": "🤘🏼",
"metal_tone3": "🤘🏽",
"metal_tone4": "🤘🏾",
"metal_tone5": "🤘🏿",
"metro": "🚇",
"mexico": "🇲🇽",
"microbe": "🦠",
"micronesia": "🇫🇲",
"microphone": "🎤",
"microscope": "🔬",
"middle_finger": "🖕",
"middle_finger_tone1": "🖕🏻",
"middle_finger_tone2": "🖕🏼",
"middle_finger_tone3": "🖕🏽",
"middle_finger_tone4": "🖕🏾",
"middle_finger_tone5": "🖕🏿",
"military_helmet": "🪖",
"military_medal": "🎖",
"milk": "🥛",
"milk_glass": "🥛",
"milky_way": "🌌",
"minibus": "🚐",
"minidisc": "💽",
"minus": "",
"mirror": "🪞",
"mirror_ball": "🪩",
"moai": "🗿",
"mobile_phone": "📱",
"mobile_phone_arrow": "📲",
"mobile_phone_off": "📴",
"moldova": "🇲🇩",
"monaco": "🇲🇨",
"money_mouth_face": "🤑",
"money_with_wings": "💸",
"moneybag": "💰",
"mongolia": "🇲🇳",
"monkey": "🐒",
"monkey_face": "🐵",
"monocle_face": "🧐",
"monorail": "🚝",
"montenegro": "🇲🇪",
"montserrat": "🇲🇸",
"moon": "🌔",
"moon_cake": "🥮",
"moon_ceremony": "🎑",
"moose": "🫎",
"morocco": "🇲🇦",
"mortar_board": "🎓",
"mosque": "🕌",
"mosquito": "🦟",
"mostly_sunny": "🌤",
"mother_christmas": "🤶",
"motor_boat": "🛥",
"motor_scooter": "🛵",
"motorboat": "🛥",
"motorcycle": "🏍",
"motorized_wheelchair": "🦼",
"motorway": "🛣",
"mount_fuji": "🗻",
"mountain": "⛰️",
"mountain_bicyclist": "🚵",
"mountain_bicyclist_tone1": "🚵🏻",
"mountain_bicyclist_tone2": "🚵🏼",
"mountain_bicyclist_tone3": "🚵🏽",
"mountain_bicyclist_tone4": "🚵🏾",
"mountain_bicyclist_tone5": "🚵🏿",
"mountain_biking": "🚵",
"mountain_biking_man": "🚵‍♂️",
"mountain_biking_tone1": "🚵🏻",
"mountain_biking_tone2": "🚵🏼",
"mountain_biking_tone3": "🚵🏽",
"mountain_biking_tone4": "🚵🏾",
"mountain_biking_tone5": "🚵🏿",
"mountain_biking_woman": "🚵‍♀️",
"mountain_cableway": "🚠",
"mountain_railway": "🚞",
"mountain_snow": "🏔",
"mouse": "🐭",
"mouse2": "🐁",
"mouse_face": "🐭",
"mouse_trap": "🪤",
"mouth": "👄",
"movie_camera": "🎥",
"moyai": "🗿",
"mozambique": "🇲🇿",
"mrs_claus": "🤶",
"mrs_claus_tone1": "🤶🏻",
"mrs_claus_tone2": "🤶🏼",
"mrs_claus_tone3": "🤶🏽",
"mrs_claus_tone4": "🤶🏾",
"mrs_claus_tone5": "🤶🏿",
"multiplication": "✖️",
"multiply": "✖️",
"muscle": "💪",
"muscle_tone1": "💪🏻",
"muscle_tone2": "💪🏼",
"muscle_tone3": "💪🏽",
"muscle_tone4": "💪🏾",
"muscle_tone5": "💪🏿",
"mushroom": "🍄",
"musical_keyboard": "🎹",
"musical_note": "🎵",
"musical_notes": "🎶",
"musical_score": "🎼",
"mute": "🔇",
"mx_claus": "🧑‍🎄",
"mx_claus_tone1": "🧑🏻‍🎄",
"mx_claus_tone2": "🧑🏼‍🎄",
"mx_claus_tone3": "🧑🏽‍🎄",
"mx_claus_tone4": "🧑🏾‍🎄",
"mx_claus_tone5": "🧑🏿‍🎄",
"myanmar": "🇲🇲",
"nail_care": "💅",
"nail_care_tone1": "💅🏻",
"nail_care_tone2": "💅🏼",
"nail_care_tone3": "💅🏽",
"nail_care_tone4": "💅🏾",
"nail_care_tone5": "💅🏿",
"nail_polish": "💅",
"nail_polish_tone1": "💅🏻",
"nail_polish_tone2": "💅🏼",
"nail_polish_tone3": "💅🏽",
"nail_polish_tone4": "💅🏾",
"nail_polish_tone5": "💅🏿",
"name_badge": "📛",
"namibia": "🇳🇦",
"national_park": "🏞",
"nauru": "🇳🇷",
"nauseated": "🤢",
"nauseated_face": "🤢",
"nazar_amulet": "🧿",
"necktie": "👔",
"negative_squared_cross_mark": "❎️",
"nepal": "🇳🇵",
"nerd": "🤓",
"nerd_face": "🤓",
"nest": "🪹",
"nest_with_eggs": "🪺",
"nesting_dolls": "🪆",
"netherlands": "🇳🇱",
"neutral": "😐",
"neutral_face": "😐",
"new": "🆕",
"new_caledonia": "🇳🇨",
"new_moon": "🌑",
"new_moon_with_face": "🌚",
"new_zealand": "🇳🇿",
"newspaper": "📰",
"newspaper_roll": "🗞",
"next_track": "⏭️",
"next_track_button": "⏭️",
"ng": "🆖",
"ng_man": "🙅‍♂️",
"ng_woman": "🙅‍♀️",
"nicaragua": "🇳🇮",
"niger": "🇳🇪",
"nigeria": "🇳🇬",
"night_with_stars": "🌃",
"nine": "9️⃣",
"ninja": "🥷",
"ninja_tone1": "🥷🏻",
"ninja_tone2": "🥷🏼",
"ninja_tone3": "🥷🏽",
"ninja_tone4": "🥷🏾",
"ninja_tone5": "🥷🏿",
"niue": "🇳🇺",
"no": "👎",
"no_bell": "🔕",
"no_bicycles": "🚳",
"no_entry": "⛔️",
"no_entry_sign": "🚫",
"no_good": "🙅",
"no_good_man": "🙅‍♂️",
"no_good_tone1": "🙅🏻",
"no_good_tone2": "🙅🏼",
"no_good_tone3": "🙅🏽",
"no_good_tone4": "🙅🏾",
"no_good_tone5": "🙅🏿",
"no_good_woman": "🙅‍♀️",
"no_hair": "🦲",
"no_littering": "🚯",
"no_mobile_phones": "📵",
"no_mouth": "😶",
"no_one_under_18": "🔞",
"no_pedestrians": "🚷",
"no_smoking": "🚭",
"no_sound": "🔇",
"no_tone1": "👎🏻",
"no_tone2": "👎🏼",
"no_tone3": "👎🏽",
"no_tone4": "👎🏾",
"no_tone5": "👎🏿",
"non-potable_water": "🚱",
"norfolk_island": "🇳🇫",
"north_korea": "🇰🇵",
"northern_mariana_islands": "🇲🇵",
"norway": "🇳🇴",
"nose": "👃",
"nose_steam": "😤",
"nose_tone1": "👃🏻",
"nose_tone2": "👃🏼",
"nose_tone3": "👃🏽",
"nose_tone4": "👃🏾",
"nose_tone5": "👃🏿",
"notebook": "📓",
"notebook_with_decorative_cover": "📔",
"notepad_spiral": "🗒",
"notes": "🎶",
"number_sign": "#️⃣",
"nut_and_bolt": "🔩",
"o": "⭕️",
"o2": "🅾",
"o_blood": "🅾",
"ocean": "🌊",
"octagonal_sign": "🛑",
"octopus": "🐙",
"oden": "🍢",
"office": "🏢",
"office_worker": "🧑‍💼",
"office_worker_tone1": "🧑🏻‍💼",
"office_worker_tone2": "🧑🏼‍💼",
"office_worker_tone3": "🧑🏽‍💼",
"office_worker_tone4": "🧑🏾‍💼",
"office_worker_tone5": "🧑🏿‍💼",
"ogre": "👹",
"oil_drum": "🛢",
"ok": "🆗",
"ok_hand": "👌",
"ok_hand_tone1": "👌🏻",
"ok_hand_tone2": "👌🏼",
"ok_hand_tone3": "👌🏽",
"ok_hand_tone4": "👌🏾",
"ok_hand_tone5": "👌🏿",
"ok_man": "🙆‍♂️",
"ok_person": "🙆",
"ok_woman": "🙆‍♀️",
"old_key": "🗝",
"older_adult": "🧓",
"older_adult_tone1": "🧓🏻",
"older_adult_tone2": "🧓🏼",
"older_adult_tone3": "🧓🏽",
"older_adult_tone4": "🧓🏾",
"older_adult_tone5": "🧓🏿",
"older_man": "👴",
"older_man_tone1": "👴🏻",
"older_man_tone2": "👴🏼",
"older_man_tone3": "👴🏽",
"older_man_tone4": "👴🏾",
"older_man_tone5": "👴🏿",
"older_woman": "👵",
"older_woman_tone1": "👵🏻",
"older_woman_tone2": "👵🏼",
"older_woman_tone3": "👵🏽",
"older_woman_tone4": "👵🏾",
"older_woman_tone5": "👵🏿",
"olive": "🫒",
"om": "🕉",
"om_symbol": "🕉",
"oman": "🇴🇲",
"on": "🔛",
"oncoming_automobile": "🚘",
"oncoming_bus": "🚍",
"oncoming_police_car": "🚔",
"oncoming_taxi": "🚖",
"one": "1️⃣",
"one-piece_swimsuit": "🩱",
"one_piece_swimsuit": "🩱",
"onion": "🧅",
"open_book": "📖",
"open_file_folder": "📂",
"open_hands": "👐",
"open_hands_tone1": "👐🏻",
"open_hands_tone2": "👐🏼",
"open_hands_tone3": "👐🏽",
"open_hands_tone4": "👐🏾",
"open_hands_tone5": "👐🏿",
"open_mouth": "😮",
"open_umbrella": "☂️",
"ophiuchus": "⛎️",
"optical_disk": "💿",
"orange": "🍊",
"orange_book": "📙",
"orange_circle": "🟠",
"orange_heart": "🧡",
"orange_square": "🟧",
"orangutan": "🦧",
"orca": "🫍",
"orthodox_cross": "☦️",
"otter": "🦦",
"outbox_tray": "📤",
"owl": "🦉",
"ox": "🐂",
"oyster": "🦪",
"package": "📦",
"page_facing_up": "📄",
"page_with_curl": "📃",
"pager": "📟",
"paintbrush": "🖌",
"pakistan": "🇵🇰",
"palau": "🇵🇼",
"palestinian_territories": "🇵🇸",
"palette": "🎨",
"palm_down": "🫳",
"palm_down_hand": "🫳",
"palm_down_tone1": "🫳🏻",
"palm_down_tone2": "🫳🏼",
"palm_down_tone3": "🫳🏽",
"palm_down_tone4": "🫳🏾",
"palm_down_tone5": "🫳🏿",
"palm_tree": "🌴",
"palm_up": "🫴",
"palm_up_hand": "🫴",
"palm_up_tone1": "🫴🏻",
"palm_up_tone2": "🫴🏼",
"palm_up_tone3": "🫴🏽",
"palm_up_tone4": "🫴🏾",
"palm_up_tone5": "🫴🏿",
"palms_up_together": "🤲",
"palms_up_together_tone1": "🤲🏻",
"palms_up_together_tone2": "🤲🏼",
"palms_up_together_tone3": "🤲🏽",
"palms_up_together_tone4": "🤲🏾",
"palms_up_together_tone5": "🤲🏿",
"panama": "🇵🇦",
"pancakes": "🥞",
"panda": "🐼",
"panda_face": "🐼",
"paperclip": "📎",
"paperclips": "🖇",
"papua_new_guinea": "🇵🇬",
"parachute": "🪂",
"paraguay": "🇵🇾",
"parasol_on_ground": "⛱️",
"parking": "🅿",
"parrot": "🦜",
"part_alternation_mark": "〽️",
"partly_sunny": "⛅️",
"partly_sunny_rain": "🌦",
"party": "🎉",
"party_popper": "🎉",
"partying": "🥳",
"partying_face": "🥳",
"passenger_ship": "🛳",
"passport_control": "🛂",
"pause": "⏸️",
"pause_button": "⏸️",
"paw_prints": "🐾",
"pea": "🫛",
"pea_pod": "🫛",
"peace": "☮️",
"peace_symbol": "☮️",
"peach": "🍑",
"peacock": "🦚",
"peanuts": "🥜",
"pear": "🍐",
"peek": "🫣",
"pen": "🖊",
"pencil": "📝",
"pencil2": "✏️",
"penguin": "🐧",
"penguin_face": "🐧",
"pensive": "😔",
"pensive_face": "😔",
"people_holding_hands": "🧑‍🤝‍🧑",
"people_holding_hands_tone1": "🧑🏻‍🤝‍🧑🏻",
"people_holding_hands_tone1-2": "🧑🏻‍🤝‍🧑🏼",
"people_holding_hands_tone1-3": "🧑🏻‍🤝‍🧑🏽",
"people_holding_hands_tone1-4": "🧑🏻‍🤝‍🧑🏾",
"people_holding_hands_tone1-5": "🧑🏻‍🤝‍🧑🏿",
"people_holding_hands_tone2": "🧑🏼‍🤝‍🧑🏼",
"people_holding_hands_tone2-1": "🧑🏼‍🤝‍🧑🏻",
"people_holding_hands_tone2-3": "🧑🏼‍🤝‍🧑🏽",
"people_holding_hands_tone2-4": "🧑🏼‍🤝‍🧑🏾",
"people_holding_hands_tone2-5": "🧑🏼‍🤝‍🧑🏿",
"people_holding_hands_tone3": "🧑🏽‍🤝‍🧑🏽",
"people_holding_hands_tone3-1": "🧑🏽‍🤝‍🧑🏻",
"people_holding_hands_tone3-2": "🧑🏽‍🤝‍🧑🏼",
"people_holding_hands_tone3-4": "🧑🏽‍🤝‍🧑🏾",
"people_holding_hands_tone3-5": "🧑🏽‍🤝‍🧑🏿",
"people_holding_hands_tone4": "🧑🏾‍🤝‍🧑🏾",
"people_holding_hands_tone4-1": "🧑🏾‍🤝‍🧑🏻",
"people_holding_hands_tone4-2": "🧑🏾‍🤝‍🧑🏼",
"people_holding_hands_tone4-3": "🧑🏾‍🤝‍🧑🏽",
"people_holding_hands_tone4-5": "🧑🏾‍🤝‍🧑🏿",
"people_holding_hands_tone5": "🧑🏿‍🤝‍🧑🏿",
"people_holding_hands_tone5-1": "🧑🏿‍🤝‍🧑🏻",
"people_holding_hands_tone5-2": "🧑🏿‍🤝‍🧑🏼",
"people_holding_hands_tone5-3": "🧑🏿‍🤝‍🧑🏽",
"people_holding_hands_tone5-4": "🧑🏿‍🤝‍🧑🏾",
"people_hugging": "🫂",
"people_with_bunny_ears_partying": "👯",
"people_with_bunny_ears_partying_tone1": "👯🏻",
"people_with_bunny_ears_partying_tone1-2": "🧑🏻‍🐰‍🧑🏼",
"people_with_bunny_ears_partying_tone1-3": "🧑🏻‍🐰‍🧑🏽",
"people_with_bunny_ears_partying_tone1-4": "🧑🏻‍🐰‍🧑🏾",
"people_with_bunny_ears_partying_tone1-5": "🧑🏻‍🐰‍🧑🏿",
"people_with_bunny_ears_partying_tone2": "👯🏼",
"people_with_bunny_ears_partying_tone2-1": "🧑🏼‍🐰‍🧑🏻",
"people_with_bunny_ears_partying_tone2-3": "🧑🏼‍🐰‍🧑🏽",
"people_with_bunny_ears_partying_tone2-4": "🧑🏼‍🐰‍🧑🏾",
"people_with_bunny_ears_partying_tone2-5": "🧑🏼‍🐰‍🧑🏿",
"people_with_bunny_ears_partying_tone3": "👯🏽",
"people_with_bunny_ears_partying_tone3-1": "🧑🏽‍🐰‍🧑🏻",
"people_with_bunny_ears_partying_tone3-2": "🧑🏽‍🐰‍🧑🏼",
"people_with_bunny_ears_partying_tone3-4": "🧑🏽‍🐰‍🧑🏾",
"people_with_bunny_ears_partying_tone3-5": "🧑🏽‍🐰‍🧑🏿",
"people_with_bunny_ears_partying_tone4": "👯🏾",
"people_with_bunny_ears_partying_tone4-1": "🧑🏾‍🐰‍🧑🏻",
"people_with_bunny_ears_partying_tone4-2": "🧑🏾‍🐰‍🧑🏼",
"people_with_bunny_ears_partying_tone4-3": "🧑🏾‍🐰‍🧑🏽",
"people_with_bunny_ears_partying_tone4-5": "🧑🏾‍🐰‍🧑🏿",
"people_with_bunny_ears_partying_tone5": "👯🏿",
"people_with_bunny_ears_partying_tone5-1": "🧑🏿‍🐰‍🧑🏻",
"people_with_bunny_ears_partying_tone5-2": "🧑🏿‍🐰‍🧑🏼",
"people_with_bunny_ears_partying_tone5-3": "🧑🏿‍🐰‍🧑🏽",
"people_with_bunny_ears_partying_tone5-4": "🧑🏿‍🐰‍🧑🏾",
"people_wrestling": "🤼",
"people_wrestling_tone1": "🤼🏻",
"people_wrestling_tone1-2": "🧑🏻‍🫯‍🧑🏼",
"people_wrestling_tone1-3": "🧑🏻‍🫯‍🧑🏽",
"people_wrestling_tone1-4": "🧑🏻‍🫯‍🧑🏾",
"people_wrestling_tone1-5": "🧑🏻‍🫯‍🧑🏿",
"people_wrestling_tone2": "🤼🏼",
"people_wrestling_tone2-1": "🧑🏼‍🫯‍🧑🏻",
"people_wrestling_tone2-3": "🧑🏼‍🫯‍🧑🏽",
"people_wrestling_tone2-4": "🧑🏼‍🫯‍🧑🏾",
"people_wrestling_tone2-5": "🧑🏼‍🫯‍🧑🏿",
"people_wrestling_tone3": "🤼🏽",
"people_wrestling_tone3-1": "🧑🏽‍🫯‍🧑🏻",
"people_wrestling_tone3-2": "🧑🏽‍🫯‍🧑🏼",
"people_wrestling_tone3-4": "🧑🏽‍🫯‍🧑🏾",
"people_wrestling_tone3-5": "🧑🏽‍🫯‍🧑🏿",
"people_wrestling_tone4": "🤼🏾",
"people_wrestling_tone4-1": "🧑🏾‍🫯‍🧑🏻",
"people_wrestling_tone4-2": "🧑🏾‍🫯‍🧑🏼",
"people_wrestling_tone4-3": "🧑🏾‍🫯‍🧑🏽",
"people_wrestling_tone4-5": "🧑🏾‍🫯‍🧑🏿",
"people_wrestling_tone5": "🤼🏿",
"people_wrestling_tone5-1": "🧑🏿‍🫯‍🧑🏻",
"people_wrestling_tone5-2": "🧑🏿‍🫯‍🧑🏼",
"people_wrestling_tone5-3": "🧑🏿‍🫯‍🧑🏽",
"people_wrestling_tone5-4": "🧑🏿‍🫯‍🧑🏾",
"performing_arts": "🎭",
"persevere": "😣",
"persevering_face": "😣",
"person_bald": "🧑‍🦲",
"person_bearded": "🧔",
"person_bearded_tone1": "🧔🏻",
"person_bearded_tone2": "🧔🏼",
"person_bearded_tone3": "🧔🏽",
"person_bearded_tone4": "🧔🏾",
"person_bearded_tone5": "🧔🏿",
"person_biking": "🚴",
"person_biking_tone1": "🚴🏻",
"person_biking_tone2": "🚴🏼",
"person_biking_tone3": "🚴🏽",
"person_biking_tone4": "🚴🏾",
"person_biking_tone5": "🚴🏿",
"person_bouncing_ball": "⛹️",
"person_bouncing_ball_tone1": "⛹🏻",
"person_bouncing_ball_tone2": "⛹🏼",
"person_bouncing_ball_tone3": "⛹🏽",
"person_bouncing_ball_tone4": "⛹🏾",
"person_bouncing_ball_tone5": "⛹🏿",
"person_bowing": "🙇",
"person_bowing_tone1": "🙇🏻",
"person_bowing_tone2": "🙇🏼",
"person_bowing_tone3": "🙇🏽",
"person_bowing_tone4": "🙇🏾",
"person_bowing_tone5": "🙇🏿",
"person_cartwheel": "🤸",
"person_cartwheel_tone1": "🤸🏻",
"person_cartwheel_tone2": "🤸🏼",
"person_cartwheel_tone3": "🤸🏽",
"person_cartwheel_tone4": "🤸🏾",
"person_cartwheel_tone5": "🤸🏿",
"person_climbing": "🧗",
"person_climbing_tone1": "🧗🏻",
"person_climbing_tone2": "🧗🏼",
"person_climbing_tone3": "🧗🏽",
"person_climbing_tone4": "🧗🏾",
"person_climbing_tone5": "🧗🏿",
"person_curly_hair": "🧑‍🦱",
"person_doing_cartwheel": "🤸",
"person_facepalming": "🤦",
"person_facepalming_tone1": "🤦🏻",
"person_facepalming_tone2": "🤦🏼",
"person_facepalming_tone3": "🤦🏽",
"person_facepalming_tone4": "🤦🏾",
"person_facepalming_tone5": "🤦🏿",
"person_feeding_baby": "🧑‍🍼",
"person_feeding_baby_tone1": "🧑🏻‍🍼",
"person_feeding_baby_tone2": "🧑🏼‍🍼",
"person_feeding_baby_tone3": "🧑🏽‍🍼",
"person_feeding_baby_tone4": "🧑🏾‍🍼",
"person_feeding_baby_tone5": "🧑🏿‍🍼",
"person_fencing": "🤺",
"person_frowning": "🙍",
"person_frowning_tone1": "🙍🏻",
"person_frowning_tone2": "🙍🏼",
"person_frowning_tone3": "🙍🏽",
"person_frowning_tone4": "🙍🏾",
"person_frowning_tone5": "🙍🏿",
"person_gesturing_no": "🙅",
"person_gesturing_no_tone1": "🙅🏻",
"person_gesturing_no_tone2": "🙅🏼",
"person_gesturing_no_tone3": "🙅🏽",
"person_gesturing_no_tone4": "🙅🏾",
"person_gesturing_no_tone5": "🙅🏿",
"person_gesturing_ok": "🙆",
"person_gesturing_ok_tone1": "🙆🏻",
"person_gesturing_ok_tone2": "🙆🏼",
"person_gesturing_ok_tone3": "🙆🏽",
"person_gesturing_ok_tone4": "🙆🏾",
"person_gesturing_ok_tone5": "🙆🏿",
"person_getting_haircut": "💇",
"person_getting_haircut_tone1": "💇🏻",
"person_getting_haircut_tone2": "💇🏼",
"person_getting_haircut_tone3": "💇🏽",
"person_getting_haircut_tone4": "💇🏾",
"person_getting_haircut_tone5": "💇🏿",
"person_getting_massage": "💆",
"person_getting_massage_tone1": "💆🏻",
"person_getting_massage_tone2": "💆🏼",
"person_getting_massage_tone3": "💆🏽",
"person_getting_massage_tone4": "💆🏾",
"person_getting_massage_tone5": "💆🏿",
"person_golfing": "🏌",
"person_golfing_tone1": "🏌🏻",
"person_golfing_tone2": "🏌🏼",
"person_golfing_tone3": "🏌🏽",
"person_golfing_tone4": "🏌🏾",
"person_golfing_tone5": "🏌🏿",
"person_in_bed": "🛌",
"person_in_bed_tone1": "🛌🏻",
"person_in_bed_tone2": "🛌🏼",
"person_in_bed_tone3": "🛌🏽",
"person_in_bed_tone4": "🛌🏾",
"person_in_bed_tone5": "🛌🏿",
"person_in_lotus_position": "🧘",
"person_in_lotus_position_tone1": "🧘🏻",
"person_in_lotus_position_tone2": "🧘🏼",
"person_in_lotus_position_tone3": "🧘🏽",
"person_in_lotus_position_tone4": "🧘🏾",
"person_in_lotus_position_tone5": "🧘🏿",
"person_in_manual_wheelchair": "🧑‍🦽",
"person_in_manual_wheelchair_facing_right": "🧑‍🦽‍➡️",
"person_in_manual_wheelchair_right": "🧑‍🦽‍➡️",
"person_in_manual_wheelchair_right_tone1": "🧑🏻‍🦽‍➡️",
"person_in_manual_wheelchair_right_tone2": "🧑🏼‍🦽‍➡️",
"person_in_manual_wheelchair_right_tone3": "🧑🏽‍🦽‍➡️",
"person_in_manual_wheelchair_right_tone4": "🧑🏾‍🦽‍➡️",
"person_in_manual_wheelchair_right_tone5": "🧑🏿‍🦽‍➡️",
"person_in_manual_wheelchair_tone1": "🧑🏻‍🦽",
"person_in_manual_wheelchair_tone2": "🧑🏼‍🦽",
"person_in_manual_wheelchair_tone3": "🧑🏽‍🦽",
"person_in_manual_wheelchair_tone4": "🧑🏾‍🦽",
"person_in_manual_wheelchair_tone5": "🧑🏿‍🦽",
"person_in_motorized_wheelchair": "🧑‍🦼",
"person_in_motorized_wheelchair_facing_right": "🧑‍🦼‍➡️",
"person_in_motorized_wheelchair_right": "🧑‍🦼‍➡️",
"person_in_motorized_wheelchair_right_tone1": "🧑🏻‍🦼‍➡️",
"person_in_motorized_wheelchair_right_tone2": "🧑🏼‍🦼‍➡️",
"person_in_motorized_wheelchair_right_tone3": "🧑🏽‍🦼‍➡️",
"person_in_motorized_wheelchair_right_tone4": "🧑🏾‍🦼‍➡️",
"person_in_motorized_wheelchair_right_tone5": "🧑🏿‍🦼‍➡️",
"person_in_motorized_wheelchair_tone1": "🧑🏻‍🦼",
"person_in_motorized_wheelchair_tone2": "🧑🏼‍🦼",
"person_in_motorized_wheelchair_tone3": "🧑🏽‍🦼",
"person_in_motorized_wheelchair_tone4": "🧑🏾‍🦼",
"person_in_motorized_wheelchair_tone5": "🧑🏿‍🦼",
"person_in_steamy_room": "🧖",
"person_in_steamy_room_tone1": "🧖🏻",
"person_in_steamy_room_tone2": "🧖🏼",
"person_in_steamy_room_tone3": "🧖🏽",
"person_in_steamy_room_tone4": "🧖🏾",
"person_in_steamy_room_tone5": "🧖🏿",
"person_in_suit_levitating": "🕴",
"person_in_suit_levitating_tone1": "🕴🏻",
"person_in_suit_levitating_tone2": "🕴🏼",
"person_in_suit_levitating_tone3": "🕴🏽",
"person_in_suit_levitating_tone4": "🕴🏾",
"person_in_suit_levitating_tone5": "🕴🏿",
"person_in_tuxedo": "🤵",
"person_in_tuxedo_tone1": "🤵🏻",
"person_in_tuxedo_tone2": "🤵🏼",
"person_in_tuxedo_tone3": "🤵🏽",
"person_in_tuxedo_tone4": "🤵🏾",
"person_in_tuxedo_tone5": "🤵🏿",
"person_juggling": "🤹",
"person_juggling_tone1": "🤹🏻",
"person_juggling_tone2": "🤹🏼",
"person_juggling_tone3": "🤹🏽",
"person_juggling_tone4": "🤹🏾",
"person_juggling_tone5": "🤹🏿",
"person_kneeling": "🧎",
"person_kneeling_facing_right": "🧎‍➡️",
"person_kneeling_right": "🧎‍➡️",
"person_kneeling_right_tone1": "🧎🏻‍➡️",
"person_kneeling_right_tone2": "🧎🏼‍➡️",
"person_kneeling_right_tone3": "🧎🏽‍➡️",
"person_kneeling_right_tone4": "🧎🏾‍➡️",
"person_kneeling_right_tone5": "🧎🏿‍➡️",
"person_kneeling_tone1": "🧎🏻",
"person_kneeling_tone2": "🧎🏼",
"person_kneeling_tone3": "🧎🏽",
"person_kneeling_tone4": "🧎🏾",
"person_kneeling_tone5": "🧎🏿",
"person_lifting_weights": "🏋",
"person_lifting_weights_tone1": "🏋🏻",
"person_lifting_weights_tone2": "🏋🏼",
"person_lifting_weights_tone3": "🏋🏽",
"person_lifting_weights_tone4": "🏋🏾",
"person_lifting_weights_tone5": "🏋🏿",
"person_mountain_biking": "🚵",
"person_mountain_biking_tone1": "🚵🏻",
"person_mountain_biking_tone2": "🚵🏼",
"person_mountain_biking_tone3": "🚵🏽",
"person_mountain_biking_tone4": "🚵🏾",
"person_mountain_biking_tone5": "🚵🏿",
"person_playing_handball": "🤾",
"person_playing_handball_tone1": "🤾🏻",
"person_playing_handball_tone2": "🤾🏼",
"person_playing_handball_tone3": "🤾🏽",
"person_playing_handball_tone4": "🤾🏾",
"person_playing_handball_tone5": "🤾🏿",
"person_playing_water_polo": "🤽",
"person_playing_water_polo_tone1": "🤽🏻",
"person_playing_water_polo_tone2": "🤽🏼",
"person_playing_water_polo_tone3": "🤽🏽",
"person_playing_water_polo_tone4": "🤽🏾",
"person_playing_water_polo_tone5": "🤽🏿",
"person_pouting": "🙎",
"person_pouting_tone1": "🙎🏻",
"person_pouting_tone2": "🙎🏼",
"person_pouting_tone3": "🙎🏽",
"person_pouting_tone4": "🙎🏾",
"person_pouting_tone5": "🙎🏿",
"person_raising_hand": "🙋",
"person_raising_hand_tone1": "🙋🏻",
"person_raising_hand_tone2": "🙋🏼",
"person_raising_hand_tone3": "🙋🏽",
"person_raising_hand_tone4": "🙋🏾",
"person_raising_hand_tone5": "🙋🏿",
"person_red_hair": "🧑‍🦰",
"person_rowing_boat": "🚣",
"person_rowing_boat_tone1": "🚣🏻",
"person_rowing_boat_tone2": "🚣🏼",
"person_rowing_boat_tone3": "🚣🏽",
"person_rowing_boat_tone4": "🚣🏾",
"person_rowing_boat_tone5": "🚣🏿",
"person_running": "🏃",
"person_running_facing_right": "🏃‍➡️",
"person_running_right": "🏃‍➡️",
"person_running_right_tone1": "🏃🏻‍➡️",
"person_running_right_tone2": "🏃🏼‍➡️",
"person_running_right_tone3": "🏃🏽‍➡️",
"person_running_right_tone4": "🏃🏾‍➡️",
"person_running_right_tone5": "🏃🏿‍➡️",
"person_running_tone1": "🏃🏻",
"person_running_tone2": "🏃🏼",
"person_running_tone3": "🏃🏽",
"person_running_tone4": "🏃🏾",
"person_running_tone5": "🏃🏿",
"person_shrugging": "🤷",
"person_shrugging_tone1": "🤷🏻",
"person_shrugging_tone2": "🤷🏼",
"person_shrugging_tone3": "🤷🏽",
"person_shrugging_tone4": "🤷🏾",
"person_shrugging_tone5": "🤷🏿",
"person_skiing": "⛷️",
"person_snowboarding": "🏂",
"person_snowboarding_tone1": "🏂🏻",
"person_snowboarding_tone2": "🏂🏼",
"person_snowboarding_tone3": "🏂🏽",
"person_snowboarding_tone4": "🏂🏾",
"person_snowboarding_tone5": "🏂🏿",
"person_standing": "🧍",
"person_standing_tone1": "🧍🏻",
"person_standing_tone2": "🧍🏼",
"person_standing_tone3": "🧍🏽",
"person_standing_tone4": "🧍🏾",
"person_standing_tone5": "🧍🏿",
"person_surfing": "🏄",
"person_surfing_tone1": "🏄🏻",
"person_surfing_tone2": "🏄🏼",
"person_surfing_tone3": "🏄🏽",
"person_surfing_tone4": "🏄🏾",
"person_surfing_tone5": "🏄🏿",
"person_swimming": "🏊",
"person_swimming_tone1": "🏊🏻",
"person_swimming_tone2": "🏊🏼",
"person_swimming_tone3": "🏊🏽",
"person_swimming_tone4": "🏊🏾",
"person_swimming_tone5": "🏊🏿",
"person_taking_bath": "🛀",
"person_taking_bath_tone1": "🛀🏻",
"person_taking_bath_tone2": "🛀🏼",
"person_taking_bath_tone3": "🛀🏽",
"person_taking_bath_tone4": "🛀🏾",
"person_taking_bath_tone5": "🛀🏿",
"person_tipping_hand": "💁",
"person_tipping_hand_tone1": "💁🏻",
"person_tipping_hand_tone2": "💁🏼",
"person_tipping_hand_tone3": "💁🏽",
"person_tipping_hand_tone4": "💁🏾",
"person_tipping_hand_tone5": "💁🏿",
"person_walking": "🚶",
"person_walking_facing_right": "🚶‍➡️",
"person_walking_right": "🚶‍➡️",
"person_walking_right_tone1": "🚶🏻‍➡️",
"person_walking_right_tone2": "🚶🏼‍➡️",
"person_walking_right_tone3": "🚶🏽‍➡️",
"person_walking_right_tone4": "🚶🏾‍➡️",
"person_walking_right_tone5": "🚶🏿‍➡️",
"person_walking_tone1": "🚶🏻",
"person_walking_tone2": "🚶🏼",
"person_walking_tone3": "🚶🏽",
"person_walking_tone4": "🚶🏾",
"person_walking_tone5": "🚶🏿",
"person_wearing_turban": "👳",
"person_wearing_turban_tone1": "👳🏻",
"person_wearing_turban_tone2": "👳🏼",
"person_wearing_turban_tone3": "👳🏽",
"person_wearing_turban_tone4": "👳🏾",
"person_wearing_turban_tone5": "👳🏿",
"person_white_hair": "🧑‍🦳",
"person_with_ball": "⛹️",
"person_with_blond_hair": "👱",
"person_with_crown": "🫅",
"person_with_crown_tone1": "🫅🏻",
"person_with_crown_tone2": "🫅🏼",
"person_with_crown_tone3": "🫅🏽",
"person_with_crown_tone4": "🫅🏾",
"person_with_crown_tone5": "🫅🏿",
"person_with_headscarf": "🧕",
"person_with_pouting_face": "🙎",
"person_with_probing_cane": "🧑‍🦯",
"person_with_probing_cane_tone1": "🧑🏻‍🦯",
"person_with_probing_cane_tone2": "🧑🏼‍🦯",
"person_with_probing_cane_tone3": "🧑🏽‍🦯",
"person_with_probing_cane_tone4": "🧑🏾‍🦯",
"person_with_probing_cane_tone5": "🧑🏿‍🦯",
"person_with_skullcap": "👲",
"person_with_skullcap_tone1": "👲🏻",
"person_with_skullcap_tone2": "👲🏼",
"person_with_skullcap_tone3": "👲🏽",
"person_with_skullcap_tone4": "👲🏾",
"person_with_skullcap_tone5": "👲🏿",
"person_with_turban": "👳",
"person_with_veil": "👰",
"person_with_veil_tone1": "👰🏻",
"person_with_veil_tone2": "👰🏼",
"person_with_veil_tone3": "👰🏽",
"person_with_veil_tone4": "👰🏾",
"person_with_veil_tone5": "👰🏿",
"person_with_white_cane": "🧑‍🦯",
"person_with_white_cane_facing_right": "🧑‍🦯‍➡️",
"person_with_white_cane_right": "🧑‍🦯‍➡️",
"person_with_white_cane_right_tone1": "🧑🏻‍🦯‍➡️",
"person_with_white_cane_right_tone2": "🧑🏼‍🦯‍➡️",
"person_with_white_cane_right_tone3": "🧑🏽‍🦯‍➡️",
"person_with_white_cane_right_tone4": "🧑🏾‍🦯‍➡️",
"person_with_white_cane_right_tone5": "🧑🏿‍🦯‍➡️",
"person_with_white_cane_tone1": "🧑🏻‍🦯",
"person_with_white_cane_tone2": "🧑🏼‍🦯",
"person_with_white_cane_tone3": "🧑🏽‍🦯",
"person_with_white_cane_tone4": "🧑🏾‍🦯",
"person_with_white_cane_tone5": "🧑🏿‍🦯",
"peru": "🇵🇪",
"petri_dish": "🧫",
"philippines": "🇵🇭",
"phoenix": "🐦‍🔥",
"phone": "☎️",
"pick": "⛏️",
"pickup_truck": "🛻",
"pie": "🥧",
"pig": "🐷",
"pig2": "🐖",
"pig_face": "🐷",
"pig_nose": "🐽",
"pill": "💊",
"pilot": "🧑‍✈️",
"pilot_tone1": "🧑🏻‍✈️",
"pilot_tone2": "🧑🏼‍✈️",
"pilot_tone3": "🧑🏽‍✈️",
"pilot_tone4": "🧑🏾‍✈️",
"pilot_tone5": "🧑🏿‍✈️",
"pinata": "🪅",
"pinch": "🤌",
"pinch_tone1": "🤌🏻",
"pinch_tone2": "🤌🏼",
"pinch_tone3": "🤌🏽",
"pinch_tone4": "🤌🏾",
"pinch_tone5": "🤌🏿",
"pinched_fingers": "🤌",
"pinched_fingers_tone1": "🤌🏻",
"pinched_fingers_tone2": "🤌🏼",
"pinched_fingers_tone3": "🤌🏽",
"pinched_fingers_tone4": "🤌🏾",
"pinched_fingers_tone5": "🤌🏿",
"pinching_hand": "🤏",
"pinching_hand_tone1": "🤏🏻",
"pinching_hand_tone2": "🤏🏼",
"pinching_hand_tone3": "🤏🏽",
"pinching_hand_tone4": "🤏🏾",
"pinching_hand_tone5": "🤏🏿",
"pineapple": "🍍",
"ping_pong": "🏓",
"pink_heart": "🩷",
"pirate_flag": "🏴‍☠️",
"pisces": "♓️",
"pistol": "🔫",
"pitcairn_islands": "🇵🇳",
"pizza": "🍕",
"placard": "🪧",
"place_of_worship": "🛐",
"plate_with_cutlery": "🍽",
"play": "▶️",
"play_or_pause_button": "⏯️",
"play_pause": "⏯️",
"playground_slide": "🛝",
"pleading": "🥺",
"pleading_face": "🥺",
"plunger": "🪠",
"plus": "",
"point_down": "👇",
"point_down_tone1": "👇🏻",
"point_down_tone2": "👇🏼",
"point_down_tone3": "👇🏽",
"point_down_tone4": "👇🏾",
"point_down_tone5": "👇🏿",
"point_forward": "🫵",
"point_forward_tone1": "🫵🏻",
"point_forward_tone2": "🫵🏼",
"point_forward_tone3": "🫵🏽",
"point_forward_tone4": "🫵🏾",
"point_forward_tone5": "🫵🏿",
"point_left": "👈",
"point_left_tone1": "👈🏻",
"point_left_tone2": "👈🏼",
"point_left_tone3": "👈🏽",
"point_left_tone4": "👈🏾",
"point_left_tone5": "👈🏿",
"point_right": "👉",
"point_right_tone1": "👉🏻",
"point_right_tone2": "👉🏼",
"point_right_tone3": "👉🏽",
"point_right_tone4": "👉🏾",
"point_right_tone5": "👉🏿",
"point_up": "☝️",
"point_up_2": "👆",
"point_up_2_tone1": "☝🏻",
"point_up_2_tone2": "☝🏼",
"point_up_2_tone3": "☝🏽",
"point_up_2_tone4": "☝🏾",
"point_up_2_tone5": "☝🏿",
"point_up_tone1": "👆🏻",
"point_up_tone2": "👆🏼",
"point_up_tone3": "👆🏽",
"point_up_tone4": "👆🏾",
"point_up_tone5": "👆🏿",
"poland": "🇵🇱",
"polar_bear": "🐻‍❄️",
"polar_bear_face": "🐻‍❄️",
"police_car": "🚓",
"police_officer": "👮",
"police_officer_tone1": "👮🏻",
"police_officer_tone2": "👮🏼",
"police_officer_tone3": "👮🏽",
"police_officer_tone4": "👮🏾",
"police_officer_tone5": "👮🏿",
"policeman": "👮‍♂️",
"policewoman": "👮‍♀️",
"poodle": "🐩",
"poop": "💩",
"popcorn": "🍿",
"portugal": "🇵🇹",
"post_office": "🏣",
"postal_horn": "📯",
"postbox": "📮",
"pot_of_food": "🍲",
"potable_water": "🚰",
"potato": "🥔",
"potted_plant": "🪴",
"pouch": "👝",
"poultry_leg": "🍗",
"pound": "💷",
"pour": "🫗",
"pouring_liquid": "🫗",
"pout": "😡",
"pouting": "🙎",
"pouting_cat": "😾",
"pouting_face": "🙎",
"pouting_man": "🙎‍♂️",
"pouting_tone1": "🙎🏻",
"pouting_tone2": "🙎🏼",
"pouting_tone3": "🙎🏽",
"pouting_tone4": "🙎🏾",
"pouting_tone5": "🙎🏿",
"pouting_woman": "🙎‍♀️",
"pray": "🙏",
"pray_tone1": "🙏🏻",
"pray_tone2": "🙏🏼",
"pray_tone3": "🙏🏽",
"pray_tone4": "🙏🏾",
"pray_tone5": "🙏🏿",
"prayer_beads": "📿",
"pregnant_man": "🫃",
"pregnant_man_tone1": "🫃🏻",
"pregnant_man_tone2": "🫃🏼",
"pregnant_man_tone3": "🫃🏽",
"pregnant_man_tone4": "🫃🏾",
"pregnant_man_tone5": "🫃🏿",
"pregnant_person": "🫄",
"pregnant_person_tone1": "🫄🏻",
"pregnant_person_tone2": "🫄🏼",
"pregnant_person_tone3": "🫄🏽",
"pregnant_person_tone4": "🫄🏾",
"pregnant_person_tone5": "🫄🏿",
"pregnant_woman": "🤰",
"pregnant_woman_tone1": "🤰🏻",
"pregnant_woman_tone2": "🤰🏼",
"pregnant_woman_tone3": "🤰🏽",
"pregnant_woman_tone4": "🤰🏾",
"pregnant_woman_tone5": "🤰🏿",
"pretzel": "🥨",
"previous_track": "⏮️",
"previous_track_button": "⏮️",
"prince": "🤴",
"prince_tone1": "🤴🏻",
"prince_tone2": "🤴🏼",
"prince_tone3": "🤴🏽",
"prince_tone4": "🤴🏾",
"prince_tone5": "🤴🏿",
"princess": "👸",
"princess_tone1": "👸🏻",
"princess_tone2": "👸🏼",
"princess_tone3": "👸🏽",
"princess_tone4": "👸🏾",
"princess_tone5": "👸🏿",
"printer": "🖨",
"probing_cane": "🦯",
"puerto_rico": "🇵🇷",
"punch": "👊",
"punch_tone1": "👊🏻",
"punch_tone2": "👊🏼",
"punch_tone3": "👊🏽",
"punch_tone4": "👊🏾",
"punch_tone5": "👊🏿",
"purple_circle": "🟣",
"purple_heart": "💜",
"purple_square": "🟪",
"purse": "👛",
"pushpin": "📌",
"put_litter_in_its_place": "🚮",
"puzzle_piece": "🧩",
"qatar": "🇶🇦",
"question": "❓️",
"quiet_sound": "🔈",
"rabbit": "🐰",
"rabbit2": "🐇",
"rabbit_face": "🐰",
"raccoon": "🦝",
"racehorse": "🐎",
"racing_car": "🏎",
"racing_motorcycle": "🏍",
"radio": "📻",
"radio_button": "🔘",
"radioactive": "☢️",
"radioactive_sign": "☢️",
"rage": "😡",
"railway_car": "🚃",
"railway_track": "🛤",
"rain_cloud": "🌧",
"rainbow": "🌈",
"rainbow-flag": "🏳️‍🌈",
"rainbow_flag": "🏳️‍🌈",
"rainy": "🌧",
"raised_back_of_hand": "🤚",
"raised_back_of_hand_tone1": "🤚🏻",
"raised_back_of_hand_tone2": "🤚🏼",
"raised_back_of_hand_tone3": "🤚🏽",
"raised_back_of_hand_tone4": "🤚🏾",
"raised_back_of_hand_tone5": "🤚🏿",
"raised_eyebrow": "🤨",
"raised_hand": "✋️",
"raised_hand_tone1": "✋🏻",
"raised_hand_tone2": "✋🏼",
"raised_hand_tone3": "✋🏽",
"raised_hand_tone4": "✋🏾",
"raised_hand_tone5": "✋🏿",
"raised_hand_with_fingers_splayed": "🖐",
"raised_hand_with_fingers_splayed_tone1": "🖐🏻",
"raised_hand_with_fingers_splayed_tone2": "🖐🏼",
"raised_hand_with_fingers_splayed_tone3": "🖐🏽",
"raised_hand_with_fingers_splayed_tone4": "🖐🏾",
"raised_hand_with_fingers_splayed_tone5": "🖐🏿",
"raised_hands": "🙌",
"raised_hands_tone1": "🙌🏻",
"raised_hands_tone2": "🙌🏼",
"raised_hands_tone3": "🙌🏽",
"raised_hands_tone4": "🙌🏾",
"raised_hands_tone5": "🙌🏿",
"raising_hand": "🙋",
"raising_hand_man": "🙋‍♂️",
"raising_hand_woman": "🙋‍♀️",
"ram": "🐏",
"ramen": "🍜",
"rat": "🐀",
"razor": "🪒",
"receipt": "🧾",
"record": "⏺️",
"record_button": "⏺️",
"recycle": "♻️",
"recycling_symbol": "♻️",
"red_apple": "🍎",
"red_car": "🚗",
"red_circle": "🔴",
"red_envelope": "🧧",
"red_hair": "🦰",
"red_haired": "🧑‍🦰",
"red_haired_man": "👨‍🦰",
"red_haired_person": "🧑‍🦰",
"red_haired_tone1": "🧑🏻‍🦰",
"red_haired_tone2": "🧑🏼‍🦰",
"red_haired_tone3": "🧑🏽‍🦰",
"red_haired_tone4": "🧑🏾‍🦰",
"red_haired_tone5": "🧑🏿‍🦰",
"red_haired_woman": "👩‍🦰",
"red_heart": "❤️",
"red_o": "⭕️",
"red_paper_lantern": "🏮",
"red_square": "🟥",
"regional_indicator_a": "🇦",
"regional_indicator_b": "🇧",
"regional_indicator_c": "🇨",
"regional_indicator_d": "🇩",
"regional_indicator_e": "🇪",
"regional_indicator_f": "🇫",
"regional_indicator_g": "🇬",
"regional_indicator_h": "🇭",
"regional_indicator_i": "🇮",
"regional_indicator_j": "🇯",
"regional_indicator_k": "🇰",
"regional_indicator_l": "🇱",
"regional_indicator_m": "🇲",
"regional_indicator_n": "🇳",
"regional_indicator_o": "🇴",
"regional_indicator_p": "🇵",
"regional_indicator_q": "🇶",
"regional_indicator_r": "🇷",
"regional_indicator_s": "🇸",
"regional_indicator_t": "🇹",
"regional_indicator_u": "🇺",
"regional_indicator_v": "🇻",
"regional_indicator_w": "🇼",
"regional_indicator_x": "🇽",
"regional_indicator_y": "🇾",
"regional_indicator_z": "🇿",
"registered": "®️",
"relaxed": "☺️",
"relieved": "😌",
"relieved_face": "😌",
"reminder_ribbon": "🎗",
"repeat": "🔁",
"repeat_one": "🔂",
"rescue_worker_helmet": "⛑️",
"restroom": "🚻",
"reunion": "🇷🇪",
"reverse": "◀️",
"reversed_hand_with_middle_finger_extended": "🖕",
"revolving_hearts": "💞",
"rewind": "⏪️",
"rhino": "🦏",
"rhinoceros": "🦏",
"ribbon": "🎀",
"rice": "🍚",
"rice_ball": "🍙",
"rice_cracker": "🍘",
"rice_scene": "🎑",
"right-facing_fist": "🤜",
"right_anger_bubble": "🗯",
"right_bicep": "💪",
"right_bicep_tone1": "💪🏻",
"right_bicep_tone2": "💪🏼",
"right_bicep_tone3": "💪🏽",
"right_bicep_tone4": "💪🏾",
"right_bicep_tone5": "💪🏿",
"right_facing_fist": "🤜",
"right_facing_fist_tone1": "🤜🏻",
"right_facing_fist_tone2": "🤜🏼",
"right_facing_fist_tone3": "🤜🏽",
"right_facing_fist_tone4": "🤜🏾",
"right_facing_fist_tone5": "🤜🏿",
"rightwards_arrow_with_hook": "↪️",
"rightwards_hand": "🫱",
"rightwards_hand_tone1": "🫱🏻",
"rightwards_hand_tone2": "🫱🏼",
"rightwards_hand_tone3": "🫱🏽",
"rightwards_hand_tone4": "🫱🏾",
"rightwards_hand_tone5": "🫱🏿",
"rightwards_pushing_hand": "🫸",
"rightwards_pushing_hand_tone1": "🫸🏻",
"rightwards_pushing_hand_tone2": "🫸🏼",
"rightwards_pushing_hand_tone3": "🫸🏽",
"rightwards_pushing_hand_tone4": "🫸🏾",
"rightwards_pushing_hand_tone5": "🫸🏿",
"ring": "💍",
"ring_buoy": "🛟",
"ringed_planet": "🪐",
"robot": "🤖",
"robot_face": "🤖",
"rock": "🪨",
"rocket": "🚀",
"rofl": "🤣",
"roll_eyes": "🙄",
"roll_of_paper": "🧻",
"rolled_up_newspaper": "🗞",
"roller_coaster": "🎢",
"roller_skate": "🛼",
"rolling_eyes": "🙄",
"rolling_on_the_floor_laughing": "🤣",
"romania": "🇷🇴",
"rooster": "🐓",
"root_vegetable": "🫜",
"rose": "🌹",
"rosette": "🏵",
"rotating_light": "🚨",
"round_pushpin": "📍",
"rowboat": "🚣",
"rowboat_tone1": "🚣🏻",
"rowboat_tone2": "🚣🏼",
"rowboat_tone3": "🚣🏽",
"rowboat_tone4": "🚣🏾",
"rowboat_tone5": "🚣🏿",
"rowing_man": "🚣‍♂️",
"rowing_woman": "🚣‍♀️",
"royalty": "🫅",
"royalty_tone1": "🫅🏻",
"royalty_tone2": "🫅🏼",
"royalty_tone3": "🫅🏽",
"royalty_tone4": "🫅🏾",
"royalty_tone5": "🫅🏿",
"ru": "🇷🇺",
"rugby_football": "🏉",
"runner": "🏃",
"running": "🏃",
"running_man": "🏃‍♂️",
"running_shirt": "🎽",
"running_shirt_with_sash": "🎽",
"running_tone1": "🏃🏻",
"running_tone2": "🏃🏼",
"running_tone3": "🏃🏽",
"running_tone4": "🏃🏾",
"running_tone5": "🏃🏿",
"running_woman": "🏃‍♀️",
"russia": "🇷🇺",
"rwanda": "🇷🇼",
"sa": "🈂",
"sad": "😢",
"sad_relieved_face": "😥",
"safety_pin": "🧷",
"safety_vest": "🦺",
"sagittarius": "♐️",
"sailboat": "⛵️",
"sake": "🍶",
"salad": "🥗",
"salt": "🧂",
"salute": "🫡",
"saluting_face": "🫡",
"samoa": "🇼🇸",
"san_marino": "🇸🇲",
"sandal": "👡",
"sandwich": "🥪",
"santa": "🎅",
"santa_tone1": "🎅🏻",
"santa_tone2": "🎅🏼",
"santa_tone3": "🎅🏽",
"santa_tone4": "🎅🏾",
"santa_tone5": "🎅🏿",
"sao_tome_principe": "🇸🇹",
"sari": "🥻",
"sark": "🇨🇶",
"sassy_man": "💁‍♂️",
"sassy_woman": "💁‍♀️",
"satellite": "📡",
"satellite_antenna": "📡",
"satisfied": "😆",
"saturn": "🪐",
"saudi_arabia": "🇸🇦",
"sauna_man": "🧖‍♂️",
"sauna_person": "🧖",
"sauna_woman": "🧖‍♀️",
"sauropod": "🦕",
"savoring_food": "😋",
"saxophone": "🎷",
"scales": "⚖️",
"scarf": "🧣",
"school": "🏫",
"school_satchel": "🎒",
"scientist": "🧑‍🔬",
"scientist_tone1": "🧑🏻‍🔬",
"scientist_tone2": "🧑🏼‍🔬",
"scientist_tone3": "🧑🏽‍🔬",
"scientist_tone4": "🧑🏾‍🔬",
"scientist_tone5": "🧑🏿‍🔬",
"scissors": "✂️",
"scooter": "🛴",
"scorpion": "🦂",
"scorpius": "♏️",
"scotland": "🏴󠁧󠁢󠁳󠁣󠁴󠁿",
"scream": "😱",
"scream_cat": "🙀",
"screaming_in_fear": "😱",
"screwdriver": "🪛",
"scroll": "📜",
"seal": "🦭",
"seat": "💺",
"second_place_medal": "🥈",
"secret": "㊙️",
"see_no_evil": "🙈",
"seedling": "🌱",
"selfie": "🤳",
"selfie_tone1": "🤳🏻",
"selfie_tone2": "🤳🏼",
"selfie_tone3": "🤳🏽",
"selfie_tone4": "🤳🏾",
"selfie_tone5": "🤳🏿",
"senegal": "🇸🇳",
"serbia": "🇷🇸",
"serious_face_with_symbols_covering_mouth": "🤬",
"service_dog": "🐕‍🦺",
"seven": "7️⃣",
"sewing_needle": "🪡",
"seychelles": "🇸🇨",
"shaking": "🫨",
"shaking_face": "🫨",
"shallow_pan_of_food": "🥘",
"shamrock": "☘️",
"shark": "🦈",
"shaved_ice": "🍧",
"sheaf_of_rice": "🌾",
"sheep": "🐑",
"shell": "🐚",
"shield": "🛡",
"shinto_shrine": "⛩️",
"ship": "🚢",
"shirt": "👕",
"shit": "💩",
"shocked_face_with_exploding_head": "🤯",
"shoe": "👞",
"shooting_star": "🌠",
"shopping": "🛍",
"shopping_bags": "🛍",
"shopping_cart": "🛒",
"shopping_trolley": "🛒",
"shortcake": "🍰",
"shorts": "🩳",
"shovel": "🪏",
"shower": "🚿",
"shrimp": "🦐",
"shrug": "🤷",
"shrug_tone1": "🤷🏻",
"shrug_tone2": "🤷🏼",
"shrug_tone3": "🤷🏽",
"shrug_tone4": "🤷🏾",
"shrug_tone5": "🤷🏿",
"shuffle": "🔀",
"shush": "🤫",
"shushing_face": "🤫",
"sick": "🤒",
"sierra_leone": "🇸🇱",
"sign_of_the_horns": "🤘",
"sign_of_the_horns_tone1": "🤘🏻",
"sign_of_the_horns_tone2": "🤘🏼",
"sign_of_the_horns_tone3": "🤘🏽",
"sign_of_the_horns_tone4": "🤘🏾",
"sign_of_the_horns_tone5": "🤘🏿",
"signal_strength": "📶",
"singapore": "🇸🇬",
"singer": "🧑‍🎤",
"singer_tone1": "🧑🏻‍🎤",
"singer_tone2": "🧑🏼‍🎤",
"singer_tone3": "🧑🏽‍🎤",
"singer_tone4": "🧑🏾‍🎤",
"singer_tone5": "🧑🏿‍🎤",
"sint_maarten": "🇸🇽",
"six": "6️⃣",
"six_pointed_star": "🔯",
"skateboard": "🛹",
"ski": "🎿",
"skier": "⛷️",
"skiing": "⛷️",
"skin-tone-2": "🏻",
"skin-tone-3": "🏼",
"skin-tone-4": "🏽",
"skin-tone-5": "🏾",
"skin-tone-6": "🏿",
"skull": "💀",
"skull_and_crossbones": "☠️",
"skunk": "🦨",
"sled": "🛷",
"sleeping": "😴",
"sleeping_accommodation": "🛌",
"sleeping_accommodation_tone1": "🛌🏻",
"sleeping_accommodation_tone2": "🛌🏼",
"sleeping_accommodation_tone3": "🛌🏽",
"sleeping_accommodation_tone4": "🛌🏾",
"sleeping_accommodation_tone5": "🛌🏿",
"sleeping_bed": "🛌",
"sleeping_face": "😴",
"sleepy": "😪",
"sleepy_face": "😪",
"sleuth_or_spy": "🕵",
"slide": "🛝",
"slightly_frowning_face": "🙁",
"slightly_smiling_face": "🙂",
"slot_machine": "🎰",
"sloth": "🦥",
"slovakia": "🇸🇰",
"slovenia": "🇸🇮",
"small_airplane": "🛩",
"small_blue_diamond": "🔹",
"small_orange_diamond": "🔸",
"small_red_triangle": "🔺",
"small_red_triangle_down": "🔻",
"smile": "😄",
"smile_cat": "😸",
"smiley": "😃",
"smiley_cat": "😺",
"smiling_cat_with_heart_eyes": "😻",
"smiling_face": "☺️",
"smiling_face_with_3_hearts": "🥰",
"smiling_face_with_closed_eyes": "😊",
"smiling_face_with_heart_eyes": "😍",
"smiling_face_with_smiling_eyes_and_hand_covering_mouth": "🤭",
"smiling_face_with_sunglasses": "😎",
"smiling_face_with_tear": "🥲",
"smiling_face_with_three_hearts": "🥰",
"smiling_imp": "😈",
"smirk": "😏",
"smirk_cat": "😼",
"smirking": "😏",
"smirking_face": "😏",
"smoking": "🚬",
"snail": "🐌",
"snake": "🐍",
"sneaker": "👟",
"sneezing": "🤧",
"sneezing_face": "🤧",
"snow_capped_mountain": "🏔",
"snow_cloud": "🌨",
"snowboarder": "🏂",
"snowboarder_tone1": "🏂🏻",
"snowboarder_tone2": "🏂🏼",
"snowboarder_tone3": "🏂🏽",
"snowboarder_tone4": "🏂🏾",
"snowboarder_tone5": "🏂🏿",
"snowboarding": "🏂",
"snowboarding_tone1": "🏂🏻",
"snowboarding_tone2": "🏂🏼",
"snowboarding_tone3": "🏂🏽",
"snowboarding_tone4": "🏂🏾",
"snowboarding_tone5": "🏂🏿",
"snowflake": "❄️",
"snowman": "⛄️",
"snowman2": "☃️",
"snowman_with_snow": "☃️",
"snowman_without_snow": "⛄️",
"snowy": "🌨",
"soap": "🧼",
"sob": "😭",
"soccer": "⚽️",
"socks": "🧦",
"soft_serve": "🍦",
"softball": "🥎",
"solomon_islands": "🇸🇧",
"somalia": "🇸🇴",
"soon": "🔜",
"sos": "🆘",
"sound": "🔉",
"south_africa": "🇿🇦",
"south_georgia_south_sandwich_islands": "🇬🇸",
"south_korea": "🇰🇷",
"south_sudan": "🇸🇸",
"space_invader": "👾",
"spades": "♠️",
"spaghetti": "🍝",
"spain": "🇪🇸",
"sparkle": "❇️",
"sparkler": "🎇",
"sparkles": "✨️",
"sparkling_heart": "💖",
"speak_no_evil": "🙊",
"speaker": "🔈",
"speaking_head": "🗣",
"speaking_head_in_silhouette": "🗣",
"speech_balloon": "💬",
"speedboat": "🚤",
"spider": "🕷",
"spider_web": "🕸",
"spiral_calendar": "🗓",
"spiral_calendar_pad": "🗓",
"spiral_note_pad": "🗒",
"spiral_notepad": "🗒",
"splatter": "🫟",
"spock-hand": "🖖",
"sponge": "🧽",
"spoon": "🥄",
"sports_medal": "🏅",
"spouting_whale": "🐳",
"squid": "🦑",
"squinting_face": "😆",
"sri_lanka": "🇱🇰",
"st_barthelemy": "🇧🇱",
"st_helena": "🇸🇭",
"st_kitts_nevis": "🇰🇳",
"st_lucia": "🇱🇨",
"st_martin": "🇲🇫",
"st_pierre_miquelon": "🇵🇲",
"st_vincent_grenadines": "🇻🇨",
"stadium": "🏟",
"staff_of_aesculapius": "⚕️",
"standing": "🧍",
"standing_man": "🧍‍♂️",
"standing_person": "🧍",
"standing_tone1": "🧍🏻",
"standing_tone2": "🧍🏼",
"standing_tone3": "🧍🏽",
"standing_tone4": "🧍🏾",
"standing_tone5": "🧍🏿",
"standing_woman": "🧍‍♀️",
"star": "⭐️",
"star-struck": "🤩",
"star2": "🌟",
"star_and_crescent": "☪️",
"star_of_david": "✡️",
"star_struck": "🤩",
"stars": "🌠",
"station": "🚉",
"statue_of_liberty": "🗽",
"steam_locomotive": "🚂",
"steaming_bowl": "🍜",
"stethoscope": "🩺",
"stew": "🍲",
"stop": "⏹️",
"stop_button": "⏹️",
"stop_sign": "🛑",
"stopwatch": "⏱️",
"stormy": "⛈️",
"straight_ruler": "📏",
"strawberry": "🍓",
"stuck_out_tongue": "😛",
"stuck_out_tongue_closed_eyes": "😝",
"stuck_out_tongue_winking_eye": "😜",
"student": "🧑‍🎓",
"student_tone1": "🧑🏻‍🎓",
"student_tone2": "🧑🏼‍🎓",
"student_tone3": "🧑🏽‍🎓",
"student_tone4": "🧑🏾‍🎓",
"student_tone5": "🧑🏿‍🎓",
"studio_microphone": "🎙",
"stuffed_flatbread": "🥙",
"sudan": "🇸🇩",
"sun": "☀️",
"sun_and_rain": "🌦",
"sun_behind_cloud": "🌥",
"sun_behind_large_cloud": "🌥",
"sun_behind_rain_cloud": "🌦",
"sun_behind_small_cloud": "🌤",
"sun_small_cloud": "🌤",
"sun_with_face": "🌞",
"sunflower": "🌻",
"sunglasses": "😎",
"sunglasses_cool": "😎",
"sunny": "☀️",
"sunrise": "🌅",
"sunrise_over_mountains": "🌄",
"superhero": "🦸",
"superhero_man": "🦸‍♂️",
"superhero_tone1": "🦸🏻",
"superhero_tone2": "🦸🏼",
"superhero_tone3": "🦸🏽",
"superhero_tone4": "🦸🏾",
"superhero_tone5": "🦸🏿",
"superhero_woman": "🦸‍♀️",
"supervillain": "🦹",
"supervillain_man": "🦹‍♂️",
"supervillain_tone1": "🦹🏻",
"supervillain_tone2": "🦹🏼",
"supervillain_tone3": "🦹🏽",
"supervillain_tone4": "🦹🏾",
"supervillain_tone5": "🦹🏿",
"supervillain_woman": "🦹‍♀️",
"surfer": "🏄",
"surfer_tone1": "🏄🏻",
"surfer_tone2": "🏄🏼",
"surfer_tone3": "🏄🏽",
"surfer_tone4": "🏄🏾",
"surfer_tone5": "🏄🏿",
"surfing": "🏄",
"surfing_man": "🏄‍♂️",
"surfing_tone1": "🏄🏻",
"surfing_tone2": "🏄🏼",
"surfing_tone3": "🏄🏽",
"surfing_tone4": "🏄🏾",
"surfing_tone5": "🏄🏿",
"surfing_woman": "🏄‍♀️",
"suriname": "🇸🇷",
"sushi": "🍣",
"suspension_railway": "🚟",
"suv": "🚙",
"svalbard_jan_mayen": "🇸🇯",
"swan": "🦢",
"swaziland": "🇸🇿",
"sweat": "😓",
"sweat_drops": "💦",
"sweat_smile": "😅",
"sweden": "🇸🇪",
"sweet_potato": "🍠",
"swim_brief": "🩲",
"swimmer": "🏊",
"swimmer_tone1": "🏊🏻",
"swimmer_tone2": "🏊🏼",
"swimmer_tone3": "🏊🏽",
"swimmer_tone4": "🏊🏾",
"swimmer_tone5": "🏊🏿",
"swimming": "🏊",
"swimming_man": "🏊‍♂️",
"swimming_tone1": "🏊🏻",
"swimming_tone2": "🏊🏼",
"swimming_tone3": "🏊🏽",
"swimming_tone4": "🏊🏾",
"swimming_tone5": "🏊🏿",
"swimming_woman": "🏊‍♀️",
"switzerland": "🇨🇭",
"symbols": "🔣",
"synagogue": "🕍",
"syria": "🇸🇾",
"syringe": "💉",
"t-rex": "🦖",
"table_tennis_paddle_and_ball": "🏓",
"taco": "🌮",
"tada": "🎉",
"taiwan": "🇹🇼",
"tajikistan": "🇹🇯",
"takeout_box": "🥡",
"tamale": "🫔",
"tanabata_tree": "🎋",
"tangerine": "🍊",
"tanzania": "🇹🇿",
"taurus": "♉️",
"taxi": "🚕",
"tea": "🍵",
"teacher": "🧑‍🏫",
"teacher_tone1": "🧑🏻‍🏫",
"teacher_tone2": "🧑🏼‍🏫",
"teacher_tone3": "🧑🏽‍🏫",
"teacher_tone4": "🧑🏾‍🏫",
"teacher_tone5": "🧑🏿‍🏫",
"teapot": "🫖",
"tears_of_joy": "😂",
"tears_of_joy_cat": "😹",
"technologist": "🧑‍💻",
"technologist_tone1": "🧑🏻‍💻",
"technologist_tone2": "🧑🏼‍💻",
"technologist_tone3": "🧑🏽‍💻",
"technologist_tone4": "🧑🏾‍💻",
"technologist_tone5": "🧑🏿‍💻",
"teddy_bear": "🧸",
"telephone": "☎️",
"telephone_receiver": "📞",
"telescope": "🔭",
"ten": "🔟",
"tennis": "🎾",
"tent": "⛺️",
"test_tube": "🧪",
"thailand": "🇹🇭",
"the_horns": "🤘",
"thermometer": "🌡",
"thinking": "🤔",
"thinking_face": "🤔",
"third_place_medal": "🥉",
"thong_sandal": "🩴",
"thought_balloon": "💭",
"thread": "🧵",
"three": "3️⃣",
"three_button_mouse": "🖱",
"thumbsdown": "👎",
"thumbsdown_tone1": "👎🏻",
"thumbsdown_tone2": "👎🏼",
"thumbsdown_tone3": "👎🏽",
"thumbsdown_tone4": "👎🏾",
"thumbsdown_tone5": "👎🏿",
"thumbsup": "👍",
"thumbsup_tone1": "👍🏻",
"thumbsup_tone2": "👍🏼",
"thumbsup_tone3": "👍🏽",
"thumbsup_tone4": "👍🏾",
"thumbsup_tone5": "👍🏿",
"thunder_cloud_and_rain": "⛈️",
"ticket": "🎫",
"tickets": "🎟",
"tiger": "🐯",
"tiger2": "🐅",
"tiger_face": "🐯",
"timer_clock": "⏲️",
"timor_leste": "🇹🇱",
"tipping_hand_man": "💁‍♂️",
"tipping_hand_person": "💁",
"tipping_hand_woman": "💁‍♀️",
"tired": "😫",
"tired_face": "😫",
"tm": "™️",
"togo": "🇹🇬",
"toilet": "🚽",
"toilet_paper": "🧻",
"tokelau": "🇹🇰",
"tokyo_tower": "🗼",
"tomato": "🍅",
"tone1": "🏻",
"tone2": "🏼",
"tone3": "🏽",
"tone4": "🏾",
"tone5": "🏿",
"tone_dark": "🏿",
"tone_light": "🏻",
"tone_medium": "🏽",
"tone_medium_dark": "🏾",
"tone_medium_light": "🏼",
"tonga": "🇹🇴",
"tongue": "👅",
"too_cool": "😎",
"toolbox": "🧰",
"tooth": "🦷",
"toothbrush": "🪥",
"top": "🔝",
"top_hat": "🎩",
"tophat": "🎩",
"tornado": "🌪",
"tornado_cloud": "🌪",
"tr": "🇹🇷",
"trackball": "🖲",
"tractor": "🚜",
"trade_mark": "™️",
"traffic_light": "🚥",
"train": "🚋",
"train2": "🚆",
"tram": "🚊",
"tram_car": "🚋",
"transgender_flag": "🏳️‍⚧️",
"transgender_symbol": "⚧️",
"trashcan": "🗑",
"treasure_chest": "🪎",
"trex": "🦖",
"triangular_flag": "🚩",
"triangular_flag_on_post": "🚩",
"triangular_ruler": "📐",
"trident": "🔱",
"trinidad_tobago": "🇹🇹",
"tristan_da_cunha": "🇹🇦",
"triumph": "😤",
"troll": "🧌",
"trolleybus": "🚎",
"trombone": "🪊",
"trophy": "🏆",
"tropical_drink": "🍹",
"tropical_fish": "🐠",
"truck": "🚚",
"trumpet": "🎺",
"tshirt": "👕",
"tulip": "🌷",
"tumbler_glass": "🥃",
"tunisia": "🇹🇳",
"turkey": "🦃",
"turkey_tr": "🇹🇷",
"turkmenistan": "🇹🇲",
"turks_caicos_islands": "🇹🇨",
"turtle": "🐢",
"tuvalu": "🇹🇻",
"tv": "📺",
"twisted_rightwards_arrows": "🔀",
"two": "2️⃣",
"two_hearts": "💕",
"two_men_holding_hands": "👬",
"two_men_holding_hands_tone1": "👬🏻",
"two_men_holding_hands_tone1-2": "👨🏻‍🤝‍👨🏼",
"two_men_holding_hands_tone1-3": "👨🏻‍🤝‍👨🏽",
"two_men_holding_hands_tone1-4": "👨🏻‍🤝‍👨🏾",
"two_men_holding_hands_tone1-5": "👨🏻‍🤝‍👨🏿",
"two_men_holding_hands_tone2": "👬🏼",
"two_men_holding_hands_tone2-1": "👨🏼‍🤝‍👨🏻",
"two_men_holding_hands_tone2-3": "👨🏼‍🤝‍👨🏽",
"two_men_holding_hands_tone2-4": "👨🏼‍🤝‍👨🏾",
"two_men_holding_hands_tone2-5": "👨🏼‍🤝‍👨🏿",
"two_men_holding_hands_tone3": "👬🏽",
"two_men_holding_hands_tone3-1": "👨🏽‍🤝‍👨🏻",
"two_men_holding_hands_tone3-2": "👨🏽‍🤝‍👨🏼",
"two_men_holding_hands_tone3-4": "👨🏽‍🤝‍👨🏾",
"two_men_holding_hands_tone3-5": "👨🏽‍🤝‍👨🏿",
"two_men_holding_hands_tone4": "👬🏾",
"two_men_holding_hands_tone4-1": "👨🏾‍🤝‍👨🏻",
"two_men_holding_hands_tone4-2": "👨🏾‍🤝‍👨🏼",
"two_men_holding_hands_tone4-3": "👨🏾‍🤝‍👨🏽",
"two_men_holding_hands_tone4-5": "👨🏾‍🤝‍👨🏿",
"two_men_holding_hands_tone5": "👬🏿",
"two_men_holding_hands_tone5-1": "👨🏿‍🤝‍👨🏻",
"two_men_holding_hands_tone5-2": "👨🏿‍🤝‍👨🏼",
"two_men_holding_hands_tone5-3": "👨🏿‍🤝‍👨🏽",
"two_men_holding_hands_tone5-4": "👨🏿‍🤝‍👨🏾",
"two_women_holding_hands": "👭",
"two_women_holding_hands_tone1": "👭🏻",
"two_women_holding_hands_tone1-2": "👩🏻‍🤝‍👩🏼",
"two_women_holding_hands_tone1-3": "👩🏻‍🤝‍👩🏽",
"two_women_holding_hands_tone1-4": "👩🏻‍🤝‍👩🏾",
"two_women_holding_hands_tone1-5": "👩🏻‍🤝‍👩🏿",
"two_women_holding_hands_tone2": "👭🏼",
"two_women_holding_hands_tone2-1": "👩🏼‍🤝‍👩🏻",
"two_women_holding_hands_tone2-3": "👩🏼‍🤝‍👩🏽",
"two_women_holding_hands_tone2-4": "👩🏼‍🤝‍👩🏾",
"two_women_holding_hands_tone2-5": "👩🏼‍🤝‍👩🏿",
"two_women_holding_hands_tone3": "👭🏽",
"two_women_holding_hands_tone3-1": "👩🏽‍🤝‍👩🏻",
"two_women_holding_hands_tone3-2": "👩🏽‍🤝‍👩🏼",
"two_women_holding_hands_tone3-4": "👩🏽‍🤝‍👩🏾",
"two_women_holding_hands_tone3-5": "👩🏽‍🤝‍👩🏿",
"two_women_holding_hands_tone4": "👭🏾",
"two_women_holding_hands_tone4-1": "👩🏾‍🤝‍👩🏻",
"two_women_holding_hands_tone4-2": "👩🏾‍🤝‍👩🏼",
"two_women_holding_hands_tone4-3": "👩🏾‍🤝‍👩🏽",
"two_women_holding_hands_tone4-5": "👩🏾‍🤝‍👩🏿",
"two_women_holding_hands_tone5": "👭🏿",
"two_women_holding_hands_tone5-1": "👩🏿‍🤝‍👩🏻",
"two_women_holding_hands_tone5-2": "👩🏿‍🤝‍👩🏼",
"two_women_holding_hands_tone5-3": "👩🏿‍🤝‍👩🏽",
"two_women_holding_hands_tone5-4": "👩🏿‍🤝‍👩🏾",
"u5272": "🈹",
"u5408": "🈴",
"u55b6": "🈺",
"u6307": "🈯",
"u6708": "🈷",
"u6709": "🈶",
"u6e80": "🈵",
"u7121": "🈚",
"u7533": "🈸",
"u7981": "🈲",
"u7a7a": "🈳",
"uganda": "🇺🇬",
"uk": "🇬🇧",
"ukraine": "🇺🇦",
"umbrella": "☔️",
"umbrella_on_ground": "⛱️",
"umbrella_with_rain": "☔️",
"umbrella_with_rain_drops": "☔️",
"un": "🇺🇳",
"unamused": "😒",
"unamused_face": "😒",
"underage": "🔞",
"unicorn": "🦄",
"unicorn_face": "🦄",
"united_arab_emirates": "🇦🇪",
"united_kingdom": "🇬🇧",
"united_nations": "🇺🇳",
"united_states": "🇺🇸",
"unlock": "🔓",
"unlocked": "🔓",
"up": "🆙",
"up2": "🆙",
"upside_down_face": "🙃",
"uruguay": "🇺🇾",
"us": "🇺🇸",
"us_outlying_islands": "🇺🇲",
"us_virgin_islands": "🇻🇮",
"usa": "🇺🇸",
"uzbekistan": "🇺🇿",
"v": "✌️",
"v_tone1": "✌🏻",
"v_tone2": "✌🏼",
"v_tone3": "✌🏽",
"v_tone4": "✌🏾",
"v_tone5": "✌🏿",
"vampire": "🧛",
"vampire_man": "🧛‍♂️",
"vampire_tone1": "🧛🏻",
"vampire_tone2": "🧛🏼",
"vampire_tone3": "🧛🏽",
"vampire_tone4": "🧛🏾",
"vampire_tone5": "🧛🏿",
"vampire_woman": "🧛‍♀️",
"vanuatu": "🇻🇺",
"vatican_city": "🇻🇦",
"venezuela": "🇻🇪",
"vertical_traffic_light": "🚦",
"vhs": "📼",
"vibration_mode": "📳",
"victory": "✌️",
"victory_tone1": "✌🏻",
"victory_tone2": "✌🏼",
"victory_tone3": "✌🏽",
"victory_tone4": "✌🏾",
"victory_tone5": "✌🏿",
"video_camera": "📹",
"video_game": "🎮",
"videocassette": "📼",
"vietnam": "🇻🇳",
"violin": "🎻",
"virgo": "♍️",
"volcano": "🌋",
"volleyball": "🏐",
"vomiting": "🤮",
"vomiting_face": "🤮",
"vs": "🆚",
"vulcan": "🖖",
"vulcan_salute": "🖖",
"vulcan_tone1": "🖖🏻",
"vulcan_tone2": "🖖🏼",
"vulcan_tone3": "🖖🏽",
"vulcan_tone4": "🖖🏾",
"vulcan_tone5": "🖖🏿",
"waffle": "🧇",
"wales": "🏴󠁧󠁢󠁷󠁬󠁳󠁿",
"walking": "🚶",
"walking_man": "🚶‍♂️",
"walking_tone1": "🚶🏻",
"walking_tone2": "🚶🏼",
"walking_tone3": "🚶🏽",
"walking_tone4": "🚶🏾",
"walking_tone5": "🚶🏿",
"walking_woman": "🚶‍♀️",
"wallis_futuna": "🇼🇫",
"waning_crescent_moon": "🌘",
"waning_gibbous_moon": "🌖",
"warning": "⚠️",
"wastebasket": "🗑",
"watch": "⌚️",
"water_buffalo": "🐃",
"water_closet": "🚾",
"water_polo": "🤽",
"water_polo_tone1": "🤽🏻",
"water_polo_tone2": "🤽🏼",
"water_polo_tone3": "🤽🏽",
"water_polo_tone4": "🤽🏾",
"water_polo_tone5": "🤽🏿",
"water_wave": "🌊",
"watermelon": "🍉",
"watery_eyes": "🥹",
"wave": "👋",
"wave_tone1": "👋🏻",
"wave_tone2": "👋🏼",
"wave_tone3": "👋🏽",
"wave_tone4": "👋🏾",
"wave_tone5": "👋🏿",
"waving_black_flag": "🏴",
"waving_hand": "👋",
"waving_hand_tone1": "👋🏻",
"waving_hand_tone2": "👋🏼",
"waving_hand_tone3": "👋🏽",
"waving_hand_tone4": "👋🏾",
"waving_hand_tone5": "👋🏿",
"waving_white_flag": "🏳",
"wavy_dash": "〰️",
"waxing_crescent_moon": "🌒",
"waxing_gibbous_moon": "🌔",
"wc": "🚾",
"weary": "😩",
"weary_cat": "🙀",
"weary_face": "😩",
"wedding": "💒",
"weight_lifter": "🏋",
"weight_lifter_tone1": "🏋🏻",
"weight_lifter_tone2": "🏋🏼",
"weight_lifter_tone3": "🏋🏽",
"weight_lifter_tone4": "🏋🏾",
"weight_lifter_tone5": "🏋🏿",
"weight_lifting": "🏋",
"weight_lifting_man": "🏋️‍♂️",
"weight_lifting_tone1": "🏋🏻",
"weight_lifting_tone2": "🏋🏼",
"weight_lifting_tone3": "🏋🏽",
"weight_lifting_tone4": "🏋🏾",
"weight_lifting_tone5": "🏋🏿",
"weight_lifting_woman": "🏋️‍♀️",
"western_sahara": "🇪🇭",
"whale": "🐳",
"whale2": "🐋",
"wheel": "🛞",
"wheel_of_dharma": "☸️",
"wheelchair": "♿️",
"whisky": "🥃",
"white_cane": "🦯",
"white_check_mark": "✅️",
"white_circle": "⚪️",
"white_exclamation": "❕️",
"white_flag": "🏳",
"white_flower": "💮",
"white_frowning_face": "☹️",
"white_hair": "🦳",
"white_haired": "🧑‍🦳",
"white_haired_man": "👨‍🦳",
"white_haired_person": "🧑‍🦳",
"white_haired_tone1": "🧑🏻‍🦳",
"white_haired_tone2": "🧑🏼‍🦳",
"white_haired_tone3": "🧑🏽‍🦳",
"white_haired_tone4": "🧑🏾‍🦳",
"white_haired_tone5": "🧑🏿‍🦳",
"white_haired_woman": "👩‍🦳",
"white_heart": "🤍",
"white_large_square": "⬜️",
"white_medium_small_square": "◽️",
"white_medium_square": "◻️",
"white_question": "❔️",
"white_small_square": "▫️",
"white_square_button": "🔳",
"wilted_flower": "🥀",
"wind_blowing_face": "🌬",
"wind_chime": "🎐",
"wind_face": "🌬",
"window": "🪟",
"wine_glass": "🍷",
"wing": "🪽",
"wink": "😉",
"winking_face": "😉",
"wireless": "🛜",
"wolf": "🐺",
"wolf_face": "🐺",
"woman": "👩",
"woman-biking": "🚴‍♀️",
"woman-bouncing-ball": "⛹️‍♀️",
"woman-bowing": "🙇‍♀️",
"woman-boy": "👩‍👦",
"woman-boy-boy": "👩‍👦‍👦",
"woman-cartwheeling": "🤸‍♀️",
"woman-facepalming": "🤦‍♀️",
"woman-frowning": "🙍‍♀️",
"woman-gesturing-no": "🙅‍♀️",
"woman-gesturing-ok": "🙆‍♀️",
"woman-getting-haircut": "💇‍♀️",
"woman-getting-massage": "💆‍♀️",
"woman-girl": "👩‍👧",
"woman-girl-boy": "👩‍👧‍👦",
"woman-girl-girl": "👩‍👧‍👧",
"woman-golfing": "🏌️‍♀️",
"woman-heart-man": "👩‍❤️‍👨",
"woman-heart-woman": "👩‍❤️‍👩",
"woman-juggling": "🤹‍♀️",
"woman-kiss-man": "👩‍❤️‍💋‍👨",
"woman-kiss-woman": "👩‍❤️‍💋‍👩",
"woman-lifting-weights": "🏋️‍♀️",
"woman-mountain-biking": "🚵‍♀️",
"woman-playing-handball": "🤾‍♀️",
"woman-playing-water-polo": "🤽‍♀️",
"woman-pouting": "🙎‍♀️",
"woman-raising-hand": "🙋‍♀️",
"woman-rowing-boat": "🚣‍♀️",
"woman-running": "🏃‍♀️",
"woman-shrugging": "🤷‍♀️",
"woman-surfing": "🏄‍♀️",
"woman-swimming": "🏊‍♀️",
"woman-tipping-hand": "💁‍♀️",
"woman-walking": "🚶‍♀️",
"woman-wearing-turban": "👳‍♀️",
"woman-with-bunny-ears-partying": "👯‍♀️",
"woman-woman-boy": "👩‍👩‍👦",
"woman-woman-boy-boy": "👩‍👩‍👦‍👦",
"woman-woman-girl": "👩‍👩‍👧",
"woman-woman-girl-boy": "👩‍👩‍👧‍👦",
"woman-woman-girl-girl": "👩‍👩‍👧‍👧",
"woman-wrestling": "🤼‍♀️",
"woman_and_man_holding_hands": "👫",
"woman_artist": "👩‍🎨",
"woman_artist_tone1": "👩🏻‍🎨",
"woman_artist_tone2": "👩🏼‍🎨",
"woman_artist_tone3": "👩🏽‍🎨",
"woman_artist_tone4": "👩🏾‍🎨",
"woman_artist_tone5": "👩🏿‍🎨",
"woman_astronaut": "👩‍🚀",
"woman_astronaut_tone1": "👩🏻‍🚀",
"woman_astronaut_tone2": "👩🏼‍🚀",
"woman_astronaut_tone3": "👩🏽‍🚀",
"woman_astronaut_tone4": "👩🏾‍🚀",
"woman_astronaut_tone5": "👩🏿‍🚀",
"woman_bald": "👩‍🦲",
"woman_bald_tone1": "👩🏻‍🦲",
"woman_bald_tone2": "👩🏼‍🦲",
"woman_bald_tone3": "👩🏽‍🦲",
"woman_bald_tone4": "👩🏾‍🦲",
"woman_bald_tone5": "👩🏿‍🦲",
"woman_beard": "🧔‍♀️",
"woman_bearded": "🧔‍♀️",
"woman_bearded_tone1": "🧔🏻‍♀️",
"woman_bearded_tone2": "🧔🏼‍♀️",
"woman_bearded_tone3": "🧔🏽‍♀️",
"woman_bearded_tone4": "🧔🏾‍♀️",
"woman_bearded_tone5": "🧔🏿‍♀️",
"woman_biking": "🚴‍♀️",
"woman_biking_tone1": "🚴🏻‍♀️",
"woman_biking_tone2": "🚴🏼‍♀️",
"woman_biking_tone3": "🚴🏽‍♀️",
"woman_biking_tone4": "🚴🏾‍♀️",
"woman_biking_tone5": "🚴🏿‍♀️",
"woman_blond_haired": "👱‍♀️",
"woman_blond_haired_tone1": "👱🏻‍♀️",
"woman_blond_haired_tone2": "👱🏼‍♀️",
"woman_blond_haired_tone3": "👱🏽‍♀️",
"woman_blond_haired_tone4": "👱🏾‍♀️",
"woman_blond_haired_tone5": "👱🏿‍♀️",
"woman_bouncing_ball": "⛹️‍♀️",
"woman_bouncing_ball_tone1": "⛹🏻‍♀️",
"woman_bouncing_ball_tone2": "⛹🏼‍♀️",
"woman_bouncing_ball_tone3": "⛹🏽‍♀️",
"woman_bouncing_ball_tone4": "⛹🏾‍♀️",
"woman_bouncing_ball_tone5": "⛹🏿‍♀️",
"woman_bowing": "🙇‍♀️",
"woman_bowing_tone1": "🙇🏻‍♀️",
"woman_bowing_tone2": "🙇🏼‍♀️",
"woman_bowing_tone3": "🙇🏽‍♀️",
"woman_bowing_tone4": "🙇🏾‍♀️",
"woman_bowing_tone5": "🙇🏿‍♀️",
"woman_cartwheeling": "🤸‍♀️",
"woman_cartwheeling_tone1": "🤸🏻‍♀️",
"woman_cartwheeling_tone2": "🤸🏼‍♀️",
"woman_cartwheeling_tone3": "🤸🏽‍♀️",
"woman_cartwheeling_tone4": "🤸🏾‍♀️",
"woman_cartwheeling_tone5": "🤸🏿‍♀️",
"woman_climbing": "🧗‍♀️",
"woman_climbing_tone1": "🧗🏻‍♀️",
"woman_climbing_tone2": "🧗🏼‍♀️",
"woman_climbing_tone3": "🧗🏽‍♀️",
"woman_climbing_tone4": "🧗🏾‍♀️",
"woman_climbing_tone5": "🧗🏿‍♀️",
"woman_construction_worker": "👷‍♀️",
"woman_construction_worker_tone1": "👷🏻‍♀️",
"woman_construction_worker_tone2": "👷🏼‍♀️",
"woman_construction_worker_tone3": "👷🏽‍♀️",
"woman_construction_worker_tone4": "👷🏾‍♀️",
"woman_construction_worker_tone5": "👷🏿‍♀️",
"woman_cook": "👩‍🍳",
"woman_cook_tone1": "👩🏻‍🍳",
"woman_cook_tone2": "👩🏼‍🍳",
"woman_cook_tone3": "👩🏽‍🍳",
"woman_cook_tone4": "👩🏾‍🍳",
"woman_cook_tone5": "👩🏿‍🍳",
"woman_curly_haired": "👩‍🦱",
"woman_curly_haired_tone1": "👩🏻‍🦱",
"woman_curly_haired_tone2": "👩🏼‍🦱",
"woman_curly_haired_tone3": "👩🏽‍🦱",
"woman_curly_haired_tone4": "👩🏾‍🦱",
"woman_curly_haired_tone5": "👩🏿‍🦱",
"woman_dancing": "💃",
"woman_dancing_tone1": "💃🏻",
"woman_dancing_tone2": "💃🏼",
"woman_dancing_tone3": "💃🏽",
"woman_dancing_tone4": "💃🏾",
"woman_dancing_tone5": "💃🏿",
"woman_detective": "🕵️‍♀️",
"woman_detective_tone1": "🕵🏻‍♀️",
"woman_detective_tone2": "🕵🏼‍♀️",
"woman_detective_tone3": "🕵🏽‍♀️",
"woman_detective_tone4": "🕵🏾‍♀️",
"woman_detective_tone5": "🕵🏿‍♀️",
"woman_elf": "🧝‍♀️",
"woman_elf_tone1": "🧝🏻‍♀️",
"woman_elf_tone2": "🧝🏼‍♀️",
"woman_elf_tone3": "🧝🏽‍♀️",
"woman_elf_tone4": "🧝🏾‍♀️",
"woman_elf_tone5": "🧝🏿‍♀️",
"woman_facepalming": "🤦‍♀️",
"woman_facepalming_tone1": "🤦🏻‍♀️",
"woman_facepalming_tone2": "🤦🏼‍♀️",
"woman_facepalming_tone3": "🤦🏽‍♀️",
"woman_facepalming_tone4": "🤦🏾‍♀️",
"woman_facepalming_tone5": "🤦🏿‍♀️",
"woman_factory_worker": "👩‍🏭",
"woman_factory_worker_tone1": "👩🏻‍🏭",
"woman_factory_worker_tone2": "👩🏼‍🏭",
"woman_factory_worker_tone3": "👩🏽‍🏭",
"woman_factory_worker_tone4": "👩🏾‍🏭",
"woman_factory_worker_tone5": "👩🏿‍🏭",
"woman_fairy": "🧚‍♀️",
"woman_fairy_tone1": "🧚🏻‍♀️",
"woman_fairy_tone2": "🧚🏼‍♀️",
"woman_fairy_tone3": "🧚🏽‍♀️",
"woman_fairy_tone4": "🧚🏾‍♀️",
"woman_fairy_tone5": "🧚🏿‍♀️",
"woman_farmer": "👩‍🌾",
"woman_farmer_tone1": "👩🏻‍🌾",
"woman_farmer_tone2": "👩🏼‍🌾",
"woman_farmer_tone3": "👩🏽‍🌾",
"woman_farmer_tone4": "👩🏾‍🌾",
"woman_farmer_tone5": "👩🏿‍🌾",
"woman_feeding_baby": "👩‍🍼",
"woman_feeding_baby_tone1": "👩🏻‍🍼",
"woman_feeding_baby_tone2": "👩🏼‍🍼",
"woman_feeding_baby_tone3": "👩🏽‍🍼",
"woman_feeding_baby_tone4": "👩🏾‍🍼",
"woman_feeding_baby_tone5": "👩🏿‍🍼",
"woman_firefighter": "👩‍🚒",
"woman_firefighter_tone1": "👩🏻‍🚒",
"woman_firefighter_tone2": "👩🏼‍🚒",
"woman_firefighter_tone3": "👩🏽‍🚒",
"woman_firefighter_tone4": "👩🏾‍🚒",
"woman_firefighter_tone5": "👩🏿‍🚒",
"woman_frowning": "🙍‍♀️",
"woman_frowning_tone1": "🙍🏻‍♀️",
"woman_frowning_tone2": "🙍🏼‍♀️",
"woman_frowning_tone3": "🙍🏽‍♀️",
"woman_frowning_tone4": "🙍🏾‍♀️",
"woman_frowning_tone5": "🙍🏿‍♀️",
"woman_genie": "🧞‍♀️",
"woman_gesturing_no": "🙅‍♀️",
"woman_gesturing_no_tone1": "🙅🏻‍♀️",
"woman_gesturing_no_tone2": "🙅🏼‍♀️",
"woman_gesturing_no_tone3": "🙅🏽‍♀️",
"woman_gesturing_no_tone4": "🙅🏾‍♀️",
"woman_gesturing_no_tone5": "🙅🏿‍♀️",
"woman_gesturing_ok": "🙆‍♀️",
"woman_gesturing_ok_tone1": "🙆🏻‍♀️",
"woman_gesturing_ok_tone2": "🙆🏼‍♀️",
"woman_gesturing_ok_tone3": "🙆🏽‍♀️",
"woman_gesturing_ok_tone4": "🙆🏾‍♀️",
"woman_gesturing_ok_tone5": "🙆🏿‍♀️",
"woman_getting_haircut": "💇‍♀️",
"woman_getting_haircut_tone1": "💇🏻‍♀️",
"woman_getting_haircut_tone2": "💇🏼‍♀️",
"woman_getting_haircut_tone3": "💇🏽‍♀️",
"woman_getting_haircut_tone4": "💇🏾‍♀️",
"woman_getting_haircut_tone5": "💇🏿‍♀️",
"woman_getting_massage": "💆‍♀️",
"woman_getting_massage_tone1": "💆🏻‍♀️",
"woman_getting_massage_tone2": "💆🏼‍♀️",
"woman_getting_massage_tone3": "💆🏽‍♀️",
"woman_getting_massage_tone4": "💆🏾‍♀️",
"woman_getting_massage_tone5": "💆🏿‍♀️",
"woman_golfing": "🏌️‍♀️",
"woman_golfing_tone1": "🏌🏻‍♀️",
"woman_golfing_tone2": "🏌🏼‍♀️",
"woman_golfing_tone3": "🏌🏽‍♀️",
"woman_golfing_tone4": "🏌🏾‍♀️",
"woman_golfing_tone5": "🏌🏿‍♀️",
"woman_guard": "💂‍♀️",
"woman_guard_tone1": "💂🏻‍♀️",
"woman_guard_tone2": "💂🏼‍♀️",
"woman_guard_tone3": "💂🏽‍♀️",
"woman_guard_tone4": "💂🏾‍♀️",
"woman_guard_tone5": "💂🏿‍♀️",
"woman_health_worker": "👩‍⚕️",
"woman_health_worker_tone1": "👩🏻‍⚕️",
"woman_health_worker_tone2": "👩🏼‍⚕️",
"woman_health_worker_tone3": "👩🏽‍⚕️",
"woman_health_worker_tone4": "👩🏾‍⚕️",
"woman_health_worker_tone5": "👩🏿‍⚕️",
"woman_in_lotus_position": "🧘‍♀️",
"woman_in_lotus_position_tone1": "🧘🏻‍♀️",
"woman_in_lotus_position_tone2": "🧘🏼‍♀️",
"woman_in_lotus_position_tone3": "🧘🏽‍♀️",
"woman_in_lotus_position_tone4": "🧘🏾‍♀️",
"woman_in_lotus_position_tone5": "🧘🏿‍♀️",
"woman_in_manual_wheelchair": "👩‍🦽",
"woman_in_manual_wheelchair_facing_right": "👩‍🦽‍➡️",
"woman_in_manual_wheelchair_right": "👩‍🦽‍➡️",
"woman_in_manual_wheelchair_right_tone1": "👩🏻‍🦽‍➡️",
"woman_in_manual_wheelchair_right_tone2": "👩🏼‍🦽‍➡️",
"woman_in_manual_wheelchair_right_tone3": "👩🏽‍🦽‍➡️",
"woman_in_manual_wheelchair_right_tone4": "👩🏾‍🦽‍➡️",
"woman_in_manual_wheelchair_right_tone5": "👩🏿‍🦽‍➡️",
"woman_in_manual_wheelchair_tone1": "👩🏻‍🦽",
"woman_in_manual_wheelchair_tone2": "👩🏼‍🦽",
"woman_in_manual_wheelchair_tone3": "👩🏽‍🦽",
"woman_in_manual_wheelchair_tone4": "👩🏾‍🦽",
"woman_in_manual_wheelchair_tone5": "👩🏿‍🦽",
"woman_in_motorized_wheelchair": "👩‍🦼",
"woman_in_motorized_wheelchair_facing_right": "👩‍🦼‍➡️",
"woman_in_motorized_wheelchair_right": "👩‍🦼‍➡️",
"woman_in_motorized_wheelchair_right_tone1": "👩🏻‍🦼‍➡️",
"woman_in_motorized_wheelchair_right_tone2": "👩🏼‍🦼‍➡️",
"woman_in_motorized_wheelchair_right_tone3": "👩🏽‍🦼‍➡️",
"woman_in_motorized_wheelchair_right_tone4": "👩🏾‍🦼‍➡️",
"woman_in_motorized_wheelchair_right_tone5": "👩🏿‍🦼‍➡️",
"woman_in_motorized_wheelchair_tone1": "👩🏻‍🦼",
"woman_in_motorized_wheelchair_tone2": "👩🏼‍🦼",
"woman_in_motorized_wheelchair_tone3": "👩🏽‍🦼",
"woman_in_motorized_wheelchair_tone4": "👩🏾‍🦼",
"woman_in_motorized_wheelchair_tone5": "👩🏿‍🦼",
"woman_in_steamy_room": "🧖‍♀️",
"woman_in_steamy_room_tone1": "🧖🏻‍♀️",
"woman_in_steamy_room_tone2": "🧖🏼‍♀️",
"woman_in_steamy_room_tone3": "🧖🏽‍♀️",
"woman_in_steamy_room_tone4": "🧖🏾‍♀️",
"woman_in_steamy_room_tone5": "🧖🏿‍♀️",
"woman_in_tuxedo": "🤵‍♀️",
"woman_in_tuxedo_tone1": "🤵🏻‍♀️",
"woman_in_tuxedo_tone2": "🤵🏼‍♀️",
"woman_in_tuxedo_tone3": "🤵🏽‍♀️",
"woman_in_tuxedo_tone4": "🤵🏾‍♀️",
"woman_in_tuxedo_tone5": "🤵🏿‍♀️",
"woman_judge": "👩‍⚖️",
"woman_judge_tone1": "👩🏻‍⚖️",
"woman_judge_tone2": "👩🏼‍⚖️",
"woman_judge_tone3": "👩🏽‍⚖️",
"woman_judge_tone4": "👩🏾‍⚖️",
"woman_judge_tone5": "👩🏿‍⚖️",
"woman_juggling": "🤹‍♀️",
"woman_juggling_tone1": "🤹🏻‍♀️",
"woman_juggling_tone2": "🤹🏼‍♀️",
"woman_juggling_tone3": "🤹🏽‍♀️",
"woman_juggling_tone4": "🤹🏾‍♀️",
"woman_juggling_tone5": "🤹🏿‍♀️",
"woman_kneeling": "🧎‍♀️",
"woman_kneeling_facing_right": "🧎‍♀️‍➡️",
"woman_kneeling_right": "🧎‍♀️‍➡️",
"woman_kneeling_right_tone1": "🧎🏻‍♀️‍➡️",
"woman_kneeling_right_tone2": "🧎🏼‍♀️‍➡️",
"woman_kneeling_right_tone3": "🧎🏽‍♀️‍➡️",
"woman_kneeling_right_tone4": "🧎🏾‍♀️‍➡️",
"woman_kneeling_right_tone5": "🧎🏿‍♀️‍➡️",
"woman_kneeling_tone1": "🧎🏻‍♀️",
"woman_kneeling_tone2": "🧎🏼‍♀️",
"woman_kneeling_tone3": "🧎🏽‍♀️",
"woman_kneeling_tone4": "🧎🏾‍♀️",
"woman_kneeling_tone5": "🧎🏿‍♀️",
"woman_lifting_weights": "🏋️‍♀️",
"woman_lifting_weights_tone1": "🏋🏻‍♀️",
"woman_lifting_weights_tone2": "🏋🏼‍♀️",
"woman_lifting_weights_tone3": "🏋🏽‍♀️",
"woman_lifting_weights_tone4": "🏋🏾‍♀️",
"woman_lifting_weights_tone5": "🏋🏿‍♀️",
"woman_mage": "🧙‍♀️",
"woman_mage_tone1": "🧙🏻‍♀️",
"woman_mage_tone2": "🧙🏼‍♀️",
"woman_mage_tone3": "🧙🏽‍♀️",
"woman_mage_tone4": "🧙🏾‍♀️",
"woman_mage_tone5": "🧙🏿‍♀️",
"woman_mechanic": "👩‍🔧",
"woman_mechanic_tone1": "👩🏻‍🔧",
"woman_mechanic_tone2": "👩🏼‍🔧",
"woman_mechanic_tone3": "👩🏽‍🔧",
"woman_mechanic_tone4": "👩🏾‍🔧",
"woman_mechanic_tone5": "👩🏿‍🔧",
"woman_mountain_biking": "🚵‍♀️",
"woman_mountain_biking_tone1": "🚵🏻‍♀️",
"woman_mountain_biking_tone2": "🚵🏼‍♀️",
"woman_mountain_biking_tone3": "🚵🏽‍♀️",
"woman_mountain_biking_tone4": "🚵🏾‍♀️",
"woman_mountain_biking_tone5": "🚵🏿‍♀️",
"woman_office_worker": "👩‍💼",
"woman_office_worker_tone1": "👩🏻‍💼",
"woman_office_worker_tone2": "👩🏼‍💼",
"woman_office_worker_tone3": "👩🏽‍💼",
"woman_office_worker_tone4": "👩🏾‍💼",
"woman_office_worker_tone5": "👩🏿‍💼",
"woman_pilot": "👩‍✈️",
"woman_pilot_tone1": "👩🏻‍✈️",
"woman_pilot_tone2": "👩🏼‍✈️",
"woman_pilot_tone3": "👩🏽‍✈️",
"woman_pilot_tone4": "👩🏾‍✈️",
"woman_pilot_tone5": "👩🏿‍✈️",
"woman_playing_handball": "🤾‍♀️",
"woman_playing_handball_tone1": "🤾🏻‍♀️",
"woman_playing_handball_tone2": "🤾🏼‍♀️",
"woman_playing_handball_tone3": "🤾🏽‍♀️",
"woman_playing_handball_tone4": "🤾🏾‍♀️",
"woman_playing_handball_tone5": "🤾🏿‍♀️",
"woman_playing_water_polo": "🤽‍♀️",
"woman_playing_water_polo_tone1": "🤽🏻‍♀️",
"woman_playing_water_polo_tone2": "🤽🏼‍♀️",
"woman_playing_water_polo_tone3": "🤽🏽‍♀️",
"woman_playing_water_polo_tone4": "🤽🏾‍♀️",
"woman_playing_water_polo_tone5": "🤽🏿‍♀️",
"woman_police_officer": "👮‍♀️",
"woman_police_officer_tone1": "👮🏻‍♀️",
"woman_police_officer_tone2": "👮🏼‍♀️",
"woman_police_officer_tone3": "👮🏽‍♀️",
"woman_police_officer_tone4": "👮🏾‍♀️",
"woman_police_officer_tone5": "👮🏿‍♀️",
"woman_pouting": "🙎‍♀️",
"woman_pouting_tone1": "🙎🏻‍♀️",
"woman_pouting_tone2": "🙎🏼‍♀️",
"woman_pouting_tone3": "🙎🏽‍♀️",
"woman_pouting_tone4": "🙎🏾‍♀️",
"woman_pouting_tone5": "🙎🏿‍♀️",
"woman_raising_hand": "🙋‍♀️",
"woman_raising_hand_tone1": "🙋🏻‍♀️",
"woman_raising_hand_tone2": "🙋🏼‍♀️",
"woman_raising_hand_tone3": "🙋🏽‍♀️",
"woman_raising_hand_tone4": "🙋🏾‍♀️",
"woman_raising_hand_tone5": "🙋🏿‍♀️",
"woman_red_haired": "👩‍🦰",
"woman_red_haired_tone1": "👩🏻‍🦰",
"woman_red_haired_tone2": "👩🏼‍🦰",
"woman_red_haired_tone3": "👩🏽‍🦰",
"woman_red_haired_tone4": "👩🏾‍🦰",
"woman_red_haired_tone5": "👩🏿‍🦰",
"woman_rowing_boat": "🚣‍♀️",
"woman_rowing_boat_tone1": "🚣🏻‍♀️",
"woman_rowing_boat_tone2": "🚣🏼‍♀️",
"woman_rowing_boat_tone3": "🚣🏽‍♀️",
"woman_rowing_boat_tone4": "🚣🏾‍♀️",
"woman_rowing_boat_tone5": "🚣🏿‍♀️",
"woman_running": "🏃‍♀️",
"woman_running_facing_right": "🏃‍♀️‍➡️",
"woman_running_right": "🏃‍♀️‍➡️",
"woman_running_right_tone1": "🏃🏻‍♀️‍➡️",
"woman_running_right_tone2": "🏃🏼‍♀️‍➡️",
"woman_running_right_tone3": "🏃🏽‍♀️‍➡️",
"woman_running_right_tone4": "🏃🏾‍♀️‍➡️",
"woman_running_right_tone5": "🏃🏿‍♀️‍➡️",
"woman_running_tone1": "🏃🏻‍♀️",
"woman_running_tone2": "🏃🏼‍♀️",
"woman_running_tone3": "🏃🏽‍♀️",
"woman_running_tone4": "🏃🏾‍♀️",
"woman_running_tone5": "🏃🏿‍♀️",
"woman_scientist": "👩‍🔬",
"woman_scientist_tone1": "👩🏻‍🔬",
"woman_scientist_tone2": "👩🏼‍🔬",
"woman_scientist_tone3": "👩🏽‍🔬",
"woman_scientist_tone4": "👩🏾‍🔬",
"woman_scientist_tone5": "👩🏿‍🔬",
"woman_shrugging": "🤷‍♀️",
"woman_shrugging_tone1": "🤷🏻‍♀️",
"woman_shrugging_tone2": "🤷🏼‍♀️",
"woman_shrugging_tone3": "🤷🏽‍♀️",
"woman_shrugging_tone4": "🤷🏾‍♀️",
"woman_shrugging_tone5": "🤷🏿‍♀️",
"woman_singer": "👩‍🎤",
"woman_singer_tone1": "👩🏻‍🎤",
"woman_singer_tone2": "👩🏼‍🎤",
"woman_singer_tone3": "👩🏽‍🎤",
"woman_singer_tone4": "👩🏾‍🎤",
"woman_singer_tone5": "👩🏿‍🎤",
"woman_standing": "🧍‍♀️",
"woman_standing_tone1": "🧍🏻‍♀️",
"woman_standing_tone2": "🧍🏼‍♀️",
"woman_standing_tone3": "🧍🏽‍♀️",
"woman_standing_tone4": "🧍🏾‍♀️",
"woman_standing_tone5": "🧍🏿‍♀️",
"woman_student": "👩‍🎓",
"woman_student_tone1": "👩🏻‍🎓",
"woman_student_tone2": "👩🏼‍🎓",
"woman_student_tone3": "👩🏽‍🎓",
"woman_student_tone4": "👩🏾‍🎓",
"woman_student_tone5": "👩🏿‍🎓",
"woman_superhero": "🦸‍♀️",
"woman_superhero_tone1": "🦸🏻‍♀️",
"woman_superhero_tone2": "🦸🏼‍♀️",
"woman_superhero_tone3": "🦸🏽‍♀️",
"woman_superhero_tone4": "🦸🏾‍♀️",
"woman_superhero_tone5": "🦸🏿‍♀️",
"woman_supervillain": "🦹‍♀️",
"woman_supervillain_tone1": "🦹🏻‍♀️",
"woman_supervillain_tone2": "🦹🏼‍♀️",
"woman_supervillain_tone3": "🦹🏽‍♀️",
"woman_supervillain_tone4": "🦹🏾‍♀️",
"woman_supervillain_tone5": "🦹🏿‍♀️",
"woman_surfing": "🏄‍♀️",
"woman_surfing_tone1": "🏄🏻‍♀️",
"woman_surfing_tone2": "🏄🏼‍♀️",
"woman_surfing_tone3": "🏄🏽‍♀️",
"woman_surfing_tone4": "🏄🏾‍♀️",
"woman_surfing_tone5": "🏄🏿‍♀️",
"woman_swimming": "🏊‍♀️",
"woman_swimming_tone1": "🏊🏻‍♀️",
"woman_swimming_tone2": "🏊🏼‍♀️",
"woman_swimming_tone3": "🏊🏽‍♀️",
"woman_swimming_tone4": "🏊🏾‍♀️",
"woman_swimming_tone5": "🏊🏿‍♀️",
"woman_teacher": "👩‍🏫",
"woman_teacher_tone1": "👩🏻‍🏫",
"woman_teacher_tone2": "👩🏼‍🏫",
"woman_teacher_tone3": "👩🏽‍🏫",
"woman_teacher_tone4": "👩🏾‍🏫",
"woman_teacher_tone5": "👩🏿‍🏫",
"woman_technologist": "👩‍💻",
"woman_technologist_tone1": "👩🏻‍💻",
"woman_technologist_tone2": "👩🏼‍💻",
"woman_technologist_tone3": "👩🏽‍💻",
"woman_technologist_tone4": "👩🏾‍💻",
"woman_technologist_tone5": "👩🏿‍💻",
"woman_tipping_hand": "💁‍♀️",
"woman_tipping_hand_tone1": "💁🏻‍♀️",
"woman_tipping_hand_tone2": "💁🏼‍♀️",
"woman_tipping_hand_tone3": "💁🏽‍♀️",
"woman_tipping_hand_tone4": "💁🏾‍♀️",
"woman_tipping_hand_tone5": "💁🏿‍♀️",
"woman_tone1": "👩🏻",
"woman_tone2": "👩🏼",
"woman_tone3": "👩🏽",
"woman_tone4": "👩🏾",
"woman_tone5": "👩🏿",
"woman_vampire": "🧛‍♀️",
"woman_vampire_tone1": "🧛🏻‍♀️",
"woman_vampire_tone2": "🧛🏼‍♀️",
"woman_vampire_tone3": "🧛🏽‍♀️",
"woman_vampire_tone4": "🧛🏾‍♀️",
"woman_vampire_tone5": "🧛🏿‍♀️",
"woman_walking": "🚶‍♀️",
"woman_walking_facing_right": "🚶‍♀️‍➡️",
"woman_walking_right": "🚶‍♀️‍➡️",
"woman_walking_right_tone1": "🚶🏻‍♀️‍➡️",
"woman_walking_right_tone2": "🚶🏼‍♀️‍➡️",
"woman_walking_right_tone3": "🚶🏽‍♀️‍➡️",
"woman_walking_right_tone4": "🚶🏾‍♀️‍➡️",
"woman_walking_right_tone5": "🚶🏿‍♀️‍➡️",
"woman_walking_tone1": "🚶🏻‍♀️",
"woman_walking_tone2": "🚶🏼‍♀️",
"woman_walking_tone3": "🚶🏽‍♀️",
"woman_walking_tone4": "🚶🏾‍♀️",
"woman_walking_tone5": "🚶🏿‍♀️",
"woman_wearing_turban": "👳‍♀️",
"woman_wearing_turban_tone1": "👳🏻‍♀️",
"woman_wearing_turban_tone2": "👳🏼‍♀️",
"woman_wearing_turban_tone3": "👳🏽‍♀️",
"woman_wearing_turban_tone4": "👳🏾‍♀️",
"woman_wearing_turban_tone5": "👳🏿‍♀️",
"woman_white_haired": "👩‍🦳",
"woman_white_haired_tone1": "👩🏻‍🦳",
"woman_white_haired_tone2": "👩🏼‍🦳",
"woman_white_haired_tone3": "👩🏽‍🦳",
"woman_white_haired_tone4": "👩🏾‍🦳",
"woman_white_haired_tone5": "👩🏿‍🦳",
"woman_with_beard": "🧔‍♀️",
"woman_with_headscarf": "🧕",
"woman_with_headscarf_tone1": "🧕🏻",
"woman_with_headscarf_tone2": "🧕🏼",
"woman_with_headscarf_tone3": "🧕🏽",
"woman_with_headscarf_tone4": "🧕🏾",
"woman_with_headscarf_tone5": "🧕🏿",
"woman_with_probing_cane": "👩‍🦯",
"woman_with_probing_cane_tone1": "👩🏻‍🦯",
"woman_with_probing_cane_tone2": "👩🏼‍🦯",
"woman_with_probing_cane_tone3": "👩🏽‍🦯",
"woman_with_probing_cane_tone4": "👩🏾‍🦯",
"woman_with_probing_cane_tone5": "👩🏿‍🦯",
"woman_with_turban": "👳‍♀️",
"woman_with_veil": "👰‍♀️",
"woman_with_veil_tone1": "👰🏻‍♀️",
"woman_with_veil_tone2": "👰🏼‍♀️",
"woman_with_veil_tone3": "👰🏽‍♀️",
"woman_with_veil_tone4": "👰🏾‍♀️",
"woman_with_veil_tone5": "👰🏿‍♀️",
"woman_with_white_cane": "👩‍🦯",
"woman_with_white_cane_facing_right": "👩‍🦯‍➡️",
"woman_with_white_cane_right": "👩‍🦯‍➡️",
"woman_with_white_cane_right_tone1": "👩🏻‍🦯‍➡️",
"woman_with_white_cane_right_tone2": "👩🏼‍🦯‍➡️",
"woman_with_white_cane_right_tone3": "👩🏽‍🦯‍➡️",
"woman_with_white_cane_right_tone4": "👩🏾‍🦯‍➡️",
"woman_with_white_cane_right_tone5": "👩🏿‍🦯‍➡️",
"woman_with_white_cane_tone1": "👩🏻‍🦯",
"woman_with_white_cane_tone2": "👩🏼‍🦯",
"woman_with_white_cane_tone3": "👩🏽‍🦯",
"woman_with_white_cane_tone4": "👩🏾‍🦯",
"woman_with_white_cane_tone5": "👩🏿‍🦯",
"woman_zombie": "🧟‍♀️",
"womans_clothes": "👚",
"womans_flat_shoe": "🥿",
"womans_hat": "👒",
"women-with-bunny-ears-partying": "👯‍♀️",
"women_holding_hands": "👭",
"women_with_bunny_ears_partying": "👯‍♀️",
"women_with_bunny_ears_partying_tone1": "👯🏻‍♀️",
"women_with_bunny_ears_partying_tone1-2": "👩🏻‍🐰‍👩🏼",
"women_with_bunny_ears_partying_tone1-3": "👩🏻‍🐰‍👩🏽",
"women_with_bunny_ears_partying_tone1-4": "👩🏻‍🐰‍👩🏾",
"women_with_bunny_ears_partying_tone1-5": "👩🏻‍🐰‍👩🏿",
"women_with_bunny_ears_partying_tone2": "👯🏼‍♀️",
"women_with_bunny_ears_partying_tone2-1": "👩🏼‍🐰‍👩🏻",
"women_with_bunny_ears_partying_tone2-3": "👩🏼‍🐰‍👩🏽",
"women_with_bunny_ears_partying_tone2-4": "👩🏼‍🐰‍👩🏾",
"women_with_bunny_ears_partying_tone2-5": "👩🏼‍🐰‍👩🏿",
"women_with_bunny_ears_partying_tone3": "👯🏽‍♀️",
"women_with_bunny_ears_partying_tone3-1": "👩🏽‍🐰‍👩🏻",
"women_with_bunny_ears_partying_tone3-2": "👩🏽‍🐰‍👩🏼",
"women_with_bunny_ears_partying_tone3-4": "👩🏽‍🐰‍👩🏾",
"women_with_bunny_ears_partying_tone3-5": "👩🏽‍🐰‍👩🏿",
"women_with_bunny_ears_partying_tone4": "👯🏾‍♀️",
"women_with_bunny_ears_partying_tone4-1": "👩🏾‍🐰‍👩🏻",
"women_with_bunny_ears_partying_tone4-2": "👩🏾‍🐰‍👩🏼",
"women_with_bunny_ears_partying_tone4-3": "👩🏾‍🐰‍👩🏽",
"women_with_bunny_ears_partying_tone4-5": "👩🏾‍🐰‍👩🏿",
"women_with_bunny_ears_partying_tone5": "👯🏿‍♀️",
"women_with_bunny_ears_partying_tone5-1": "👩🏿‍🐰‍👩🏻",
"women_with_bunny_ears_partying_tone5-2": "👩🏿‍🐰‍👩🏼",
"women_with_bunny_ears_partying_tone5-3": "👩🏿‍🐰‍👩🏽",
"women_with_bunny_ears_partying_tone5-4": "👩🏿‍🐰‍👩🏾",
"women_wrestling": "🤼‍♀️",
"women_wrestling_tone1": "🤼🏻‍♀️",
"women_wrestling_tone1-2": "👩🏻‍🫯‍👩🏼",
"women_wrestling_tone1-3": "👩🏻‍🫯‍👩🏽",
"women_wrestling_tone1-4": "👩🏻‍🫯‍👩🏾",
"women_wrestling_tone1-5": "👩🏻‍🫯‍👩🏿",
"women_wrestling_tone2": "🤼🏼‍♀️",
"women_wrestling_tone2-1": "👩🏼‍🫯‍👩🏻",
"women_wrestling_tone2-3": "👩🏼‍🫯‍👩🏽",
"women_wrestling_tone2-4": "👩🏼‍🫯‍👩🏾",
"women_wrestling_tone2-5": "👩🏼‍🫯‍👩🏿",
"women_wrestling_tone3": "🤼🏽‍♀️",
"women_wrestling_tone3-1": "👩🏽‍🫯‍👩🏻",
"women_wrestling_tone3-2": "👩🏽‍🫯‍👩🏼",
"women_wrestling_tone3-4": "👩🏽‍🫯‍👩🏾",
"women_wrestling_tone3-5": "👩🏽‍🫯‍👩🏿",
"women_wrestling_tone4": "🤼🏾‍♀️",
"women_wrestling_tone4-1": "👩🏾‍🫯‍👩🏻",
"women_wrestling_tone4-2": "👩🏾‍🫯‍👩🏼",
"women_wrestling_tone4-3": "👩🏾‍🫯‍👩🏽",
"women_wrestling_tone4-5": "👩🏾‍🫯‍👩🏿",
"women_wrestling_tone5": "🤼🏿‍♀️",
"women_wrestling_tone5-1": "👩🏿‍🫯‍👩🏻",
"women_wrestling_tone5-2": "👩🏿‍🫯‍👩🏼",
"women_wrestling_tone5-3": "👩🏿‍🫯‍👩🏽",
"women_wrestling_tone5-4": "👩🏿‍🫯‍👩🏾",
"womens": "🚺",
"wood": "🪵",
"woozy": "🥴",
"woozy_face": "🥴",
"world_map": "🗺",
"worm": "🪱",
"worried": "😟",
"worried_face": "😟",
"wrench": "🔧",
"wrestlers": "🤼",
"wrestlers_tone1": "🤼🏻",
"wrestlers_tone1-2": "🧑🏻‍🫯‍🧑🏼",
"wrestlers_tone1-3": "🧑🏻‍🫯‍🧑🏽",
"wrestlers_tone1-4": "🧑🏻‍🫯‍🧑🏾",
"wrestlers_tone1-5": "🧑🏻‍🫯‍🧑🏿",
"wrestlers_tone2": "🤼🏼",
"wrestlers_tone2-1": "🧑🏼‍🫯‍🧑🏻",
"wrestlers_tone2-3": "🧑🏼‍🫯‍🧑🏽",
"wrestlers_tone2-4": "🧑🏼‍🫯‍🧑🏾",
"wrestlers_tone2-5": "🧑🏼‍🫯‍🧑🏿",
"wrestlers_tone3": "🤼🏽",
"wrestlers_tone3-1": "🧑🏽‍🫯‍🧑🏻",
"wrestlers_tone3-2": "🧑🏽‍🫯‍🧑🏼",
"wrestlers_tone3-4": "🧑🏽‍🫯‍🧑🏾",
"wrestlers_tone3-5": "🧑🏽‍🫯‍🧑🏿",
"wrestlers_tone4": "🤼🏾",
"wrestlers_tone4-1": "🧑🏾‍🫯‍🧑🏻",
"wrestlers_tone4-2": "🧑🏾‍🫯‍🧑🏼",
"wrestlers_tone4-3": "🧑🏾‍🫯‍🧑🏽",
"wrestlers_tone4-5": "🧑🏾‍🫯‍🧑🏿",
"wrestlers_tone5": "🤼🏿",
"wrestlers_tone5-1": "🧑🏿‍🫯‍🧑🏻",
"wrestlers_tone5-2": "🧑🏿‍🫯‍🧑🏼",
"wrestlers_tone5-3": "🧑🏿‍🫯‍🧑🏽",
"wrestlers_tone5-4": "🧑🏿‍🫯‍🧑🏾",
"wrestling": "🤼",
"wrestling_tone1": "🤼🏻",
"wrestling_tone1-2": "🧑🏻‍🫯‍🧑🏼",
"wrestling_tone1-3": "🧑🏻‍🫯‍🧑🏽",
"wrestling_tone1-4": "🧑🏻‍🫯‍🧑🏾",
"wrestling_tone1-5": "🧑🏻‍🫯‍🧑🏿",
"wrestling_tone2": "🤼🏼",
"wrestling_tone2-1": "🧑🏼‍🫯‍🧑🏻",
"wrestling_tone2-3": "🧑🏼‍🫯‍🧑🏽",
"wrestling_tone2-4": "🧑🏼‍🫯‍🧑🏾",
"wrestling_tone2-5": "🧑🏼‍🫯‍🧑🏿",
"wrestling_tone3": "🤼🏽",
"wrestling_tone3-1": "🧑🏽‍🫯‍🧑🏻",
"wrestling_tone3-2": "🧑🏽‍🫯‍🧑🏼",
"wrestling_tone3-4": "🧑🏽‍🫯‍🧑🏾",
"wrestling_tone3-5": "🧑🏽‍🫯‍🧑🏿",
"wrestling_tone4": "🤼🏾",
"wrestling_tone4-1": "🧑🏾‍🫯‍🧑🏻",
"wrestling_tone4-2": "🧑🏾‍🫯‍🧑🏼",
"wrestling_tone4-3": "🧑🏾‍🫯‍🧑🏽",
"wrestling_tone4-5": "🧑🏾‍🫯‍🧑🏿",
"wrestling_tone5": "🤼🏿",
"wrestling_tone5-1": "🧑🏿‍🫯‍🧑🏻",
"wrestling_tone5-2": "🧑🏿‍🫯‍🧑🏼",
"wrestling_tone5-3": "🧑🏿‍🫯‍🧑🏽",
"wrestling_tone5-4": "🧑🏿‍🫯‍🧑🏾",
"writing_hand": "✍️",
"writing_hand_tone1": "✍🏻",
"writing_hand_tone2": "✍🏼",
"writing_hand_tone3": "✍🏽",
"writing_hand_tone4": "✍🏾",
"writing_hand_tone5": "✍🏿",
"wry_smile_cat": "😼",
"wtf": "🤔",
"x": "❌️",
"x-ray": "🩻",
"x_ray": "🩻",
"xray": "🩻",
"yarn": "🧶",
"yawn": "🥱",
"yawning": "🥱",
"yawning_face": "🥱",
"yellow_circle": "🟡",
"yellow_heart": "💛",
"yellow_square": "🟨",
"yemen": "🇾🇪",
"yen": "💴",
"yes": "👍",
"yes_tone1": "👍🏻",
"yes_tone2": "👍🏼",
"yes_tone3": "👍🏽",
"yes_tone4": "👍🏾",
"yes_tone5": "👍🏿",
"yin_yang": "☯️",
"yo-yo": "🪀",
"yo_yo": "🪀",
"yum": "😋",
"zambia": "🇿🇲",
"zany": "🤪",
"zany_face": "🤪",
"zap": "⚡️",
"zebra": "🦓",
"zebra_face": "🦓",
"zero": "0️⃣",
"zimbabwe": "🇿🇼",
"zipper_mouth": "🤐",
"zipper_mouth_face": "🤐",
"zombie": "🧟",
"zombie_man": "🧟‍♂️",
"zombie_woman": "🧟‍♀️",
"zzz": "💤",
]
}