diff --git a/flake.lock b/flake.lock index c361dc5..f139a46 100644 --- a/flake.lock +++ b/flake.lock @@ -189,11 +189,11 @@ ] }, "locked": { - "lastModified": 1768949235, - "narHash": "sha256-TtjKgXyg1lMfh374w5uxutd6Vx2P/hU81aEhTxrO2cg=", + "lastModified": 1769580047, + "narHash": "sha256-tNqCP/+2+peAXXQ2V8RwsBkenlfWMERb+Uy6xmevyhM=", "owner": "nix-community", "repo": "home-manager", - "rev": "75ed713570ca17427119e7e204ab3590cc3bf2a5", + "rev": "366d78c2856de6ab3411c15c1cb4fb4c2bf5c826", "type": "github" }, "original": { @@ -221,11 +221,11 @@ }, "nixpkgs-unstable": { "locked": { - "lastModified": 1769170682, - "narHash": "sha256-oMmN1lVQU0F0W2k6OI3bgdzp2YOHWYUAw79qzDSjenU=", + "lastModified": 1769461804, + "narHash": "sha256-msG8SU5WsBUfVVa/9RPLaymvi5bI8edTavbIq3vRlhI=", "owner": "NixOS", "repo": "nixpkgs", - "rev": "c5296fdd05cfa2c187990dd909864da9658df755", + "rev": "bfc1b8a4574108ceef22f02bafcf6611380c100d", "type": "github" }, "original": { @@ -243,11 +243,11 @@ ] }, "locked": { - "lastModified": 1769510829, - "narHash": "sha256-Zce7RVaNRKmLXC5iTceP4mqv8VvWOPX2UEwvYJ/BJlQ=", + "lastModified": 1769619830, + "narHash": "sha256-HSsga0w7sb0/6DTlL/++FsJzquZhfeB7VyQRlRipYNU=", "owner": "nix-community", "repo": "NUR", - "rev": "22087f41186c3a3ef09a60d5518f5c56f91a9814", + "rev": "3067f1733723fd959bd600157a16658764d1743e", "type": "github" }, "original": { @@ -264,11 +264,11 @@ ] }, "locked": { - "lastModified": 1769510829, - "narHash": "sha256-Zce7RVaNRKmLXC5iTceP4mqv8VvWOPX2UEwvYJ/BJlQ=", + "lastModified": 1769619830, + "narHash": "sha256-HSsga0w7sb0/6DTlL/++FsJzquZhfeB7VyQRlRipYNU=", "owner": "nix-community", "repo": "NUR", - "rev": "22087f41186c3a3ef09a60d5518f5c56f91a9814", + "rev": "3067f1733723fd959bd600157a16658764d1743e", "type": "github" }, "original": { @@ -333,11 +333,11 @@ "tinted-zed": "tinted-zed" }, "locked": { - "lastModified": 1769471853, - "narHash": "sha256-aqs0HkV2T/7Syf/pYLRVSwfk23PPAyGJmWT43U5ZSF4=", + "lastModified": 1769610400, + "narHash": "sha256-R9LkpKVxLMr/KV9+N+uP4Jve+LdFsUXMPSS0zlgnWlg=", "owner": "danth", "repo": "stylix", - "rev": "805fa4262a21ada28cc918fa014359b9b35caea7", + "rev": "477c504322c7df6388d556aac82965ed49072190", "type": "github" }, "original": { diff --git a/home/alisceon/workstation.nix b/home/alisceon/workstation.nix index 4dd1682..dadc699 100644 --- a/home/alisceon/workstation.nix +++ b/home/alisceon/workstation.nix @@ -1,9 +1,5 @@ { pkgs, config, hostName, lib, ... }: { - home.packages = with pkgs; [ - signal-desktop - discord - ]; stylix.enableReleaseChecks = false; programs = { diff --git a/home/wm/sway.nix b/home/wm/sway.nix index aa51c71..9b94396 100644 --- a/home/wm/sway.nix +++ b/home/wm/sway.nix @@ -8,6 +8,7 @@ notify = "${pkgs.libnotify}/bin/notify-send"; nag = "${pkgs.sway}/bin/swaynag --edge bottom"; dmenu = "${pkgs.rofi-unwrapped}/bin/rofi"; + espanso = "${pkgs.espanso-wayland}/bin/espanso cmd"; # keybinds key_mod = "Mod4"; @@ -206,6 +207,8 @@ # Apps "${key_mod}+Return" = ''exec "${uwsm} ${term}"''; "${key_mod}+d" = ''exec "${uwsm} ${dmenu} -show drun"''; + "${key_mod}+e" = ''exec "${uwsm} ${espanso} search"''; + "${key_mod}+Shift+e" = ''exec "${uwsm} ${espanso} toggle"''; # Screenshot region @@ -242,6 +245,69 @@ }; }; services = { + espanso = { + enable = true; + waylandSupport = true; + configs = { + default = { + toggle_key = "OFF"; + preserve_clipboard = true; + show_notifications = true; + }; + }; + matches = { + base = { + matches = [ + { + trigger = ":date"; + replace = "{{currentdate}}"; + } + { + trigger = ":time"; + replace = "{{currenttime}}"; + } + { + trigger = ":ip"; + replace = "{{pubip}}"; + } + { + regex = ":em(?P\\S+) "; + replace = "{{emoji}}"; + vars = [ + { + name = "emoji"; + type = "shell"; + params = { + cmd = "${pkgs.python3}/bin/python3 /home/alisceon/.nixos_config/util/get_emoji.py $ESPANSO_EMNAME"; + }; + } + ]; + } + ]; + }; + global_vars = { + global_vars = [ + { + name = "currentdate"; + type = "date"; + params = {format = "%Y-%m-%d";}; + } + { + name = "currenttime"; + type = "date"; + params = {format = "%R";}; + } + { + name = "pubip"; + type = "shell"; + params = { + cmd = "curl -s https://ifconfig.me"; + }; + } + ]; + }; + }; + }; mako = { enable = true; settings = { diff --git a/hosts/common/wm/sway.nix b/hosts/common/wm/sway.nix index 66041bc..8ab5f94 100644 --- a/hosts/common/wm/sway.nix +++ b/hosts/common/wm/sway.nix @@ -42,6 +42,7 @@ kitty # terminal emulator dotool # tool to send keyboard/mouse input to wayland apps mako # notification system developed by swaywm maintainer + espanso-wayland # text expander ]; }; # end sway uwsm = { # responsible for creating xdg-portal and systemd insteraction for sway diff --git a/util/get_emoji.py b/util/get_emoji.py new file mode 100644 index 0000000..0d8cc25 --- /dev/null +++ b/util/get_emoji.py @@ -0,0 +1,2670 @@ +import sys +print({ + "100": "๐Ÿ’ฏ", + "1234": "๐Ÿ”ข", + "8ball": "๐ŸŽฑ", + "a": "๐Ÿ…ฐ", + "ab": "๐Ÿ†Ž", + "abc": "๐Ÿ”ค", + "abcd": "๐Ÿ”ก", + "accept": "๐Ÿ‰‘", + "adult": "๐Ÿง‘", + "adult_tone1": "๐Ÿง‘๐Ÿป", + "adult_tone2": "๐Ÿง‘๐Ÿผ", + "adult_tone3": "๐Ÿง‘๐Ÿฝ", + "adult_tone4": "๐Ÿง‘๐Ÿพ", + "adult_tone5": "๐Ÿง‘๐Ÿฟ", + "aerial_tramway": "๐Ÿšก", + "airplane": "โœˆ", + "airplane_arriving": "๐Ÿ›ฌ", + "airplane_departure": "๐Ÿ›ซ", + "airplane_small": "๐Ÿ›ฉ", + "alarm_clock": "โฐ", + "alembic": "โš—", + "alien": "๐Ÿ‘ฝ", + "ambulance": "๐Ÿš‘", + "amphora": "๐Ÿบ", + "anchor": "โš“", + "angel": "๐Ÿ‘ผ", + "angel_tone1": "๐Ÿ‘ผ๐Ÿป", + "angel_tone2": "๐Ÿ‘ผ๐Ÿผ", + "angel_tone3": "๐Ÿ‘ผ๐Ÿฝ", + "angel_tone4": "๐Ÿ‘ผ๐Ÿพ", + "angel_tone5": "๐Ÿ‘ผ๐Ÿฟ", + "anger": "๐Ÿ’ข", + "anger_right": "๐Ÿ—ฏ", + "angry": "๐Ÿ˜ ", + "anguished": "๐Ÿ˜ง", + "ant": "๐Ÿœ", + "apple": "๐ŸŽ", + "aquarius": "โ™’", + "aries": "โ™ˆ", + "arrow_backward": "โ—€", + "arrow_double_down": "โฌ", + "arrow_double_up": "โซ", + "arrow_down": "โฌ‡", + "arrow_down_small": "๐Ÿ”ฝ", + "arrow_forward": "โ–ถ", + "arrow_heading_down": "โคต", + "arrow_heading_up": "โคด", + "arrow_left": "โฌ…", + "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": "๐Ÿš›", + "asterisk": "*โƒฃ", + "asterisk_symbol": "*", + "astonished": "๐Ÿ˜ฒ", + "athletic_shoe": "๐Ÿ‘Ÿ", + "atm": "๐Ÿง", + "atom": "โš›", + "avocado": "๐Ÿฅ‘", + "b": "๐Ÿ…ฑ", + "baby": "๐Ÿ‘ถ", + "baby_bottle": "๐Ÿผ", + "baby_chick": "๐Ÿค", + "baby_symbol": "๐Ÿšผ", + "baby_tone1": "๐Ÿ‘ถ๐Ÿป", + "baby_tone2": "๐Ÿ‘ถ๐Ÿผ", + "baby_tone3": "๐Ÿ‘ถ๐Ÿฝ", + "baby_tone4": "๐Ÿ‘ถ๐Ÿพ", + "baby_tone5": "๐Ÿ‘ถ๐Ÿฟ", + "back": "๐Ÿ”™", + "bacon": "๐Ÿฅ“", + "badminton": "๐Ÿธ", + "baggage_claim": "๐Ÿ›„", + "balloon": "๐ŸŽˆ", + "ballot_box": "๐Ÿ—ณ", + "ballot_box_with_check": "โ˜‘", + "bamboo": "๐ŸŽ", + "banana": "๐ŸŒ", + "bangbang": "โ€ผ", + "bank": "๐Ÿฆ", + "bar_chart": "๐Ÿ“Š", + "barber": "๐Ÿ’ˆ", + "baseball": "โšพ", + "basketball": "๐Ÿ€", + "bat": "๐Ÿฆ‡", + "bath": "๐Ÿ›€", + "bath_tone1": "๐Ÿ›€๐Ÿป", + "bath_tone2": "๐Ÿ›€๐Ÿผ", + "bath_tone3": "๐Ÿ›€๐Ÿฝ", + "bath_tone4": "๐Ÿ›€๐Ÿพ", + "bath_tone5": "๐Ÿ›€๐Ÿฟ", + "bathtub": "๐Ÿ›", + "battery": "๐Ÿ”‹", + "beach": "๐Ÿ–", + "beach_umbrella": "โ›ฑ", + "bear": "๐Ÿป", + "bearded_person": "๐Ÿง”", + "bearded_person_tone1": "๐Ÿง”๐Ÿป", + "bearded_person_tone2": "๐Ÿง”๐Ÿผ", + "bearded_person_tone3": "๐Ÿง”๐Ÿฝ", + "bearded_person_tone4": "๐Ÿง”๐Ÿพ", + "bearded_person_tone5": "๐Ÿง”๐Ÿฟ", + "bed": "๐Ÿ›", + "bee": "๐Ÿ", + "beer": "๐Ÿบ", + "beers": "๐Ÿป", + "beetle": "๐Ÿž", + "beginner": "๐Ÿ”ฐ", + "bell": "๐Ÿ””", + "bellhop": "๐Ÿ›Ž", + "bento": "๐Ÿฑ", + "bike": "๐Ÿšฒ", + "bikini": "๐Ÿ‘™", + "billed_cap": "๐Ÿงข", + "biohazard": "โ˜ฃ", + "bird": "๐Ÿฆ", + "birthday": "๐ŸŽ‚", + "black_circle": "โšซ", + "black_heart": "๐Ÿ–ค", + "black_joker": "๐Ÿƒ", + "black_large_square": "โฌ›", + "black_medium_small_square": "โ—พ", + "black_medium_square": "โ—ผ", + "black_nib": "โœ’", + "black_small_square": "โ–ช", + "black_square_button": "๐Ÿ”ฒ", + "blond-haired_man": "๐Ÿ‘ฑโ™‚", + "blond-haired_man_tone1": "๐Ÿ‘ฑ๐Ÿปโ™‚", + "blond-haired_man_tone2": "๐Ÿ‘ฑ๐Ÿผโ™‚", + "blond-haired_man_tone3": "๐Ÿ‘ฑ๐Ÿฝโ™‚", + "blond-haired_man_tone4": "๐Ÿ‘ฑ๐Ÿพโ™‚", + "blond-haired_man_tone5": "๐Ÿ‘ฑ๐Ÿฟโ™‚", + "blond-haired_woman": "๐Ÿ‘ฑโ™€", + "blond-haired_woman_tone1": "๐Ÿ‘ฑ๐Ÿปโ™€", + "blond-haired_woman_tone2": "๐Ÿ‘ฑ๐Ÿผโ™€", + "blond-haired_woman_tone3": "๐Ÿ‘ฑ๐Ÿฝโ™€", + "blond-haired_woman_tone4": "๐Ÿ‘ฑ๐Ÿพโ™€", + "blond-haired_woman_tone5": "๐Ÿ‘ฑ๐Ÿฟโ™€", + "blond_haired_person": "๐Ÿ‘ฑ", + "blond_haired_person_tone1": "๐Ÿ‘ฑ๐Ÿป", + "blond_haired_person_tone2": "๐Ÿ‘ฑ๐Ÿผ", + "blond_haired_person_tone3": "๐Ÿ‘ฑ๐Ÿฝ", + "blond_haired_person_tone4": "๐Ÿ‘ฑ๐Ÿพ", + "blond_haired_person_tone5": "๐Ÿ‘ฑ๐Ÿฟ", + "blossom": "๐ŸŒผ", + "blowfish": "๐Ÿก", + "blue_book": "๐Ÿ“˜", + "blue_car": "๐Ÿš™", + "blue_circle": "๐Ÿ”ต", + "blue_heart": "๐Ÿ’™", + "blush": "๐Ÿ˜Š", + "boar": "๐Ÿ—", + "bomb": "๐Ÿ’ฃ", + "book": "๐Ÿ“–", + "bookmark": "๐Ÿ”–", + "bookmark_tabs": "๐Ÿ“‘", + "books": "๐Ÿ“š", + "boom": "๐Ÿ’ฅ", + "boot": "๐Ÿ‘ข", + "bouquet": "๐Ÿ’", + "bow_and_arrow": "๐Ÿน", + "bowl_with_spoon": "๐Ÿฅฃ", + "bowling": "๐ŸŽณ", + "boxing_glove": "๐ŸฅŠ", + "boy": "๐Ÿ‘ฆ", + "boy_tone1": "๐Ÿ‘ฆ๐Ÿป", + "boy_tone2": "๐Ÿ‘ฆ๐Ÿผ", + "boy_tone3": "๐Ÿ‘ฆ๐Ÿฝ", + "boy_tone4": "๐Ÿ‘ฆ๐Ÿพ", + "boy_tone5": "๐Ÿ‘ฆ๐Ÿฟ", + "brain": "๐Ÿง ", + "bread": "๐Ÿž", + "breast_feeding": "๐Ÿคฑ", + "breast_feeding_tone1": "๐Ÿคฑ๐Ÿป", + "breast_feeding_tone2": "๐Ÿคฑ๐Ÿผ", + "breast_feeding_tone3": "๐Ÿคฑ๐Ÿฝ", + "breast_feeding_tone4": "๐Ÿคฑ๐Ÿพ", + "breast_feeding_tone5": "๐Ÿคฑ๐Ÿฟ", + "bride_with_veil": "๐Ÿ‘ฐ", + "bride_with_veil_tone1": "๐Ÿ‘ฐ๐Ÿป", + "bride_with_veil_tone2": "๐Ÿ‘ฐ๐Ÿผ", + "bride_with_veil_tone3": "๐Ÿ‘ฐ๐Ÿฝ", + "bride_with_veil_tone4": "๐Ÿ‘ฐ๐Ÿพ", + "bride_with_veil_tone5": "๐Ÿ‘ฐ๐Ÿฟ", + "bridge_at_night": "๐ŸŒ‰", + "briefcase": "๐Ÿ’ผ", + "broccoli": "๐Ÿฅฆ", + "broken_heart": "๐Ÿ’”", + "bug": "๐Ÿ›", + "bulb": "๐Ÿ’ก", + "bullettrain_front": "๐Ÿš…", + "bullettrain_side": "๐Ÿš„", + "burrito": "๐ŸŒฏ", + "bus": "๐ŸšŒ", + "busstop": "๐Ÿš", + "bust_in_silhouette": "๐Ÿ‘ค", + "busts_in_silhouette": "๐Ÿ‘ฅ", + "butterfly": "๐Ÿฆ‹", + "cactus": "๐ŸŒต", + "cake": "๐Ÿฐ", + "calendar": "๐Ÿ“†", + "calendar_spiral": "๐Ÿ—“", + "call_me": "๐Ÿค™", + "call_me_tone1": "๐Ÿค™๐Ÿป", + "call_me_tone2": "๐Ÿค™๐Ÿผ", + "call_me_tone3": "๐Ÿค™๐Ÿฝ", + "call_me_tone4": "๐Ÿค™๐Ÿพ", + "call_me_tone5": "๐Ÿค™๐Ÿฟ", + "calling": "๐Ÿ“ฒ", + "camel": "๐Ÿซ", + "camera": "๐Ÿ“ท", + "camera_with_flash": "๐Ÿ“ธ", + "camping": "๐Ÿ•", + "cancer": "โ™‹", + "candle": "๐Ÿ•ฏ", + "candy": "๐Ÿฌ", + "canned_food": "๐Ÿฅซ", + "canoe": "๐Ÿ›ถ", + "capital_abcd": "๐Ÿ” ", + "capricorn": "โ™‘", + "card_box": "๐Ÿ—ƒ", + "card_index": "๐Ÿ“‡", + "carousel_horse": "๐ŸŽ ", + "carrot": "๐Ÿฅ•", + "cat2": "๐Ÿˆ", + "cat": "๐Ÿฑ", + "cd": "๐Ÿ’ฟ", + "chains": "โ›“", + "champagne": "๐Ÿพ", + "champagne_glass": "๐Ÿฅ‚", + "chart": "๐Ÿ’น", + "chart_with_downwards_trend": "๐Ÿ“‰", + "chart_with_upwards_trend": "๐Ÿ“ˆ", + "checkered_flag": "๐Ÿ", + "cheese": "๐Ÿง€", + "cherries": "๐Ÿ’", + "cherry_blossom": "๐ŸŒธ", + "chestnut": "๐ŸŒฐ", + "chicken": "๐Ÿ”", + "child": "๐Ÿง’", + "child_tone1": "๐Ÿง’๐Ÿป", + "child_tone2": "๐Ÿง’๐Ÿผ", + "child_tone3": "๐Ÿง’๐Ÿฝ", + "child_tone4": "๐Ÿง’๐Ÿพ", + "child_tone5": "๐Ÿง’๐Ÿฟ", + "children_crossing": "๐Ÿšธ", + "chipmunk": "๐Ÿฟ", + "chocolate_bar": "๐Ÿซ", + "chopsticks": "๐Ÿฅข", + "christmas_tree": "๐ŸŽ„", + "church": "โ›ช", + "cinema": "๐ŸŽฆ", + "circus_tent": "๐ŸŽช", + "city_dusk": "๐ŸŒ†", + "city_sunset": "๐ŸŒ‡", + "cityscape": "๐Ÿ™", + "cl": "๐Ÿ†‘", + "clap": "๐Ÿ‘", + "clap_tone1": "๐Ÿ‘๐Ÿป", + "clap_tone2": "๐Ÿ‘๐Ÿผ", + "clap_tone3": "๐Ÿ‘๐Ÿฝ", + "clap_tone4": "๐Ÿ‘๐Ÿพ", + "clap_tone5": "๐Ÿ‘๐Ÿฟ", + "clapper": "๐ŸŽฌ", + "classical_building": "๐Ÿ›", + "clipboard": "๐Ÿ“‹", + "clock1030": "๐Ÿ•ฅ", + "clock10": "๐Ÿ•™", + "clock1130": "๐Ÿ•ฆ", + "clock11": "๐Ÿ•š", + "clock1230": "๐Ÿ•ง", + "clock12": "๐Ÿ•›", + "clock130": "๐Ÿ•œ", + "clock1": "๐Ÿ•", + "clock230": "๐Ÿ•", + "clock2": "๐Ÿ•‘", + "clock330": "๐Ÿ•ž", + "clock3": "๐Ÿ•’", + "clock430": "๐Ÿ•Ÿ", + "clock4": "๐Ÿ•“", + "clock530": "๐Ÿ• ", + "clock5": "๐Ÿ•”", + "clock630": "๐Ÿ•ก", + "clock6": "๐Ÿ••", + "clock730": "๐Ÿ•ข", + "clock7": "๐Ÿ•–", + "clock830": "๐Ÿ•ฃ", + "clock8": "๐Ÿ•—", + "clock930": "๐Ÿ•ค", + "clock9": "๐Ÿ•˜", + "clock": "๐Ÿ•ฐ", + "closed_book": "๐Ÿ“•", + "closed_lock_with_key": "๐Ÿ”", + "closed_umbrella": "๐ŸŒ‚", + "cloud": "โ˜", + "cloud_lightning": "๐ŸŒฉ", + "cloud_rain": "๐ŸŒง", + "cloud_snow": "๐ŸŒจ", + "cloud_tornado": "๐ŸŒช", + "clown": "๐Ÿคก", + "clubs": "โ™ฃ", + "coat": "๐Ÿงฅ", + "cocktail": "๐Ÿธ", + "coconut": "๐Ÿฅฅ", + "coffee": "โ˜•", + "coffin": "โšฐ", + "cold_sweat": "๐Ÿ˜ฐ", + "comet": "โ˜„", + "compression": "๐Ÿ—œ", + "computer": "๐Ÿ’ป", + "confetti_ball": "๐ŸŽŠ", + "confounded": "๐Ÿ˜–", + "confused": "๐Ÿ˜•", + "congratulations": "ใŠ—", + "construction": "๐Ÿšง", + "construction_site": "๐Ÿ—", + "construction_worker": "๐Ÿ‘ท", + "construction_worker_tone1": "๐Ÿ‘ท๐Ÿป", + "construction_worker_tone2": "๐Ÿ‘ท๐Ÿผ", + "construction_worker_tone3": "๐Ÿ‘ท๐Ÿฝ", + "construction_worker_tone4": "๐Ÿ‘ท๐Ÿพ", + "construction_worker_tone5": "๐Ÿ‘ท๐Ÿฟ", + "control_knobs": "๐ŸŽ›", + "convenience_store": "๐Ÿช", + "cookie": "๐Ÿช", + "cooking": "๐Ÿณ", + "cool": "๐Ÿ†’", + "copyright": "ยฉ", + "corn": "๐ŸŒฝ", + "couch": "๐Ÿ›‹", + "couple": "๐Ÿ‘ซ", + "couple_mm": "๐Ÿ‘จโค๐Ÿ‘จ", + "couple_with_heart": "๐Ÿ’‘", + "couple_with_heart_woman_man": "๐Ÿ‘ฉโค๐Ÿ‘จ", + "couple_ww": "๐Ÿ‘ฉโค๐Ÿ‘ฉ", + "couplekiss": "๐Ÿ’", + "cow2": "๐Ÿ„", + "cow": "๐Ÿฎ", + "cowboy": "๐Ÿค ", + "crab": "๐Ÿฆ€", + "crayon": "๐Ÿ–", + "crazy_face": "๐Ÿคช", + "credit_card": "๐Ÿ’ณ", + "crescent_moon": "๐ŸŒ™", + "cricket": "๐Ÿฆ—", + "cricket_game": "๐Ÿ", + "crocodile": "๐ŸŠ", + "croissant": "๐Ÿฅ", + "cross": "โœ", + "crossed_flags": "๐ŸŽŒ", + "crossed_swords": "โš”", + "crown": "๐Ÿ‘‘", + "cruise_ship": "๐Ÿ›ณ", + "cry": "๐Ÿ˜ข", + "crying_cat_face": "๐Ÿ˜ฟ", + "crystal_ball": "๐Ÿ”ฎ", + "cucumber": "๐Ÿฅ’", + "cup_with_straw": "๐Ÿฅค", + "cupid": "๐Ÿ’˜", + "curling_stone": "๐ŸฅŒ", + "curly_loop": "โžฐ", + "currency_exchange": "๐Ÿ’ฑ", + "curry": "๐Ÿ›", + "custard": "๐Ÿฎ", + "customs": "๐Ÿ›ƒ", + "cut_of_meat": "๐Ÿฅฉ", + "cyclone": "๐ŸŒ€", + "dagger": "๐Ÿ—ก", + "dancer": "๐Ÿ’ƒ", + "dancer_tone1": "๐Ÿ’ƒ๐Ÿป", + "dancer_tone2": "๐Ÿ’ƒ๐Ÿผ", + "dancer_tone3": "๐Ÿ’ƒ๐Ÿฝ", + "dancer_tone4": "๐Ÿ’ƒ๐Ÿพ", + "dancer_tone5": "๐Ÿ’ƒ๐Ÿฟ", + "dango": "๐Ÿก", + "dark_sunglasses": "๐Ÿ•ถ", + "dart": "๐ŸŽฏ", + "dash": "๐Ÿ’จ", + "date": "๐Ÿ“…", + "deciduous_tree": "๐ŸŒณ", + "deer": "๐ŸฆŒ", + "department_store": "๐Ÿฌ", + "desert": "๐Ÿœ", + "desktop": "๐Ÿ–ฅ", + "detective": "๐Ÿ•ต", + "detective_tone1": "๐Ÿ•ต๐Ÿป", + "detective_tone2": "๐Ÿ•ต๐Ÿผ", + "detective_tone3": "๐Ÿ•ต๐Ÿฝ", + "detective_tone4": "๐Ÿ•ต๐Ÿพ", + "detective_tone5": "๐Ÿ•ต๐Ÿฟ", + "diamond_shape_with_a_dot_inside": "๐Ÿ’ ", + "diamonds": "โ™ฆ", + "digit_eight": "8", + "digit_five": "5", + "digit_four": "4", + "digit_nine": "9", + "digit_one": "1", + "digit_seven": "7", + "digit_six": "6", + "digit_three": "3", + "digit_two": "2", + "digit_zero": "0", + "disappointed": "๐Ÿ˜ž", + "disappointed_relieved": "๐Ÿ˜ฅ", + "dividers": "๐Ÿ—‚", + "dizzy": "๐Ÿ’ซ", + "dizzy_face": "๐Ÿ˜ต", + "do_not_litter": "๐Ÿšฏ", + "dog2": "๐Ÿ•", + "dog": "๐Ÿถ", + "dollar": "๐Ÿ’ต", + "dolls": "๐ŸŽŽ", + "dolphin": "๐Ÿฌ", + "door": "๐Ÿšช", + "doughnut": "๐Ÿฉ", + "dove": "๐Ÿ•Š", + "dragon": "๐Ÿ‰", + "dragon_face": "๐Ÿฒ", + "dress": "๐Ÿ‘—", + "dromedary_camel": "๐Ÿช", + "drooling_face": "๐Ÿคค", + "droplet": "๐Ÿ’ง", + "drum": "๐Ÿฅ", + "duck": "๐Ÿฆ†", + "dumpling": "๐ŸฅŸ", + "dvd": "๐Ÿ“€", + "e-mail": "๐Ÿ“ง", + "eagle": "๐Ÿฆ…", + "ear": "๐Ÿ‘‚", + "ear_of_rice": "๐ŸŒพ", + "ear_tone1": "๐Ÿ‘‚๐Ÿป", + "ear_tone2": "๐Ÿ‘‚๐Ÿผ", + "ear_tone3": "๐Ÿ‘‚๐Ÿฝ", + "ear_tone4": "๐Ÿ‘‚๐Ÿพ", + "ear_tone5": "๐Ÿ‘‚๐Ÿฟ", + "earth_africa": "๐ŸŒ", + "earth_americas": "๐ŸŒŽ", + "earth_asia": "๐ŸŒ", + "egg": "๐Ÿฅš", + "eggplant": "๐Ÿ†", + "eight": "8โƒฃ", + "eight_pointed_black_star": "โœด", + "eight_spoked_asterisk": "โœณ", + "eject": "โ", + "electric_plug": "๐Ÿ”Œ", + "elephant": "๐Ÿ˜", + "elf": "๐Ÿง", + "elf_tone1": "๐Ÿง๐Ÿป", + "elf_tone2": "๐Ÿง๐Ÿผ", + "elf_tone3": "๐Ÿง๐Ÿฝ", + "elf_tone4": "๐Ÿง๐Ÿพ", + "elf_tone5": "๐Ÿง๐Ÿฟ", + "end": "๐Ÿ”š", + "england": "๐Ÿด๓ ง๓ ข๓ ฅ๓ ฎ๓ ง๓ ฟ", + "envelope": "โœ‰", + "envelope_with_arrow": "๐Ÿ“ฉ", + "euro": "๐Ÿ’ถ", + "european_castle": "๐Ÿฐ", + "european_post_office": "๐Ÿค", + "evergreen_tree": "๐ŸŒฒ", + "exclamation": "โ—", + "exploding_head": "๐Ÿคฏ", + "expressionless": "๐Ÿ˜‘", + "eye": "๐Ÿ‘", + "eye_in_speech_bubble": "๐Ÿ‘๐Ÿ—จ", + "eyeglasses": "๐Ÿ‘“", + "eyes": "๐Ÿ‘€", + "face_vomiting": "๐Ÿคฎ", + "face_with_hand_over_mouth": "๐Ÿคญ", + "face_with_monocle": "๐Ÿง", + "face_with_raised_eyebrow": "๐Ÿคจ", + "face_with_symbols_over_mouth": "๐Ÿคฌ", + "factory": "๐Ÿญ", + "fairy": "๐Ÿงš", + "fairy_tone1": "๐Ÿงš๐Ÿป", + "fairy_tone2": "๐Ÿงš๐Ÿผ", + "fairy_tone3": "๐Ÿงš๐Ÿฝ", + "fairy_tone4": "๐Ÿงš๐Ÿพ", + "fairy_tone5": "๐Ÿงš๐Ÿฟ", + "fallen_leaf": "๐Ÿ‚", + "family": "๐Ÿ‘ช", + "family_man_boy": "๐Ÿ‘จ๐Ÿ‘ฆ", + "family_man_boy_boy": "๐Ÿ‘จ๐Ÿ‘ฆ๐Ÿ‘ฆ", + "family_man_girl": "๐Ÿ‘จ๐Ÿ‘ง", + "family_man_girl_boy": "๐Ÿ‘จ๐Ÿ‘ง๐Ÿ‘ฆ", + "family_man_girl_girl": "๐Ÿ‘จ๐Ÿ‘ง๐Ÿ‘ง", + "family_man_woman_boy": "๐Ÿ‘จ๐Ÿ‘ฉ๐Ÿ‘ฆ", + "family_mmb": "๐Ÿ‘จ๐Ÿ‘จ๐Ÿ‘ฆ", + "family_mmbb": "๐Ÿ‘จ๐Ÿ‘จ๐Ÿ‘ฆ๐Ÿ‘ฆ", + "family_mmg": "๐Ÿ‘จ๐Ÿ‘จ๐Ÿ‘ง", + "family_mmgb": "๐Ÿ‘จ๐Ÿ‘จ๐Ÿ‘ง๐Ÿ‘ฆ", + "family_mmgg": "๐Ÿ‘จ๐Ÿ‘จ๐Ÿ‘ง๐Ÿ‘ง", + "family_mwbb": "๐Ÿ‘จ๐Ÿ‘ฉ๐Ÿ‘ฆ๐Ÿ‘ฆ", + "family_mwg": "๐Ÿ‘จ๐Ÿ‘ฉ๐Ÿ‘ง", + "family_mwgb": "๐Ÿ‘จ๐Ÿ‘ฉ๐Ÿ‘ง๐Ÿ‘ฆ", + "family_mwgg": "๐Ÿ‘จ๐Ÿ‘ฉ๐Ÿ‘ง๐Ÿ‘ง", + "family_woman_boy": "๐Ÿ‘ฉ๐Ÿ‘ฆ", + "family_woman_boy_boy": "๐Ÿ‘ฉ๐Ÿ‘ฆ๐Ÿ‘ฆ", + "family_woman_girl": "๐Ÿ‘ฉ๐Ÿ‘ง", + "family_woman_girl_boy": "๐Ÿ‘ฉ๐Ÿ‘ง๐Ÿ‘ฆ", + "family_woman_girl_girl": "๐Ÿ‘ฉ๐Ÿ‘ง๐Ÿ‘ง", + "family_wwb": "๐Ÿ‘ฉ๐Ÿ‘ฉ๐Ÿ‘ฆ", + "family_wwbb": "๐Ÿ‘ฉ๐Ÿ‘ฉ๐Ÿ‘ฆ๐Ÿ‘ฆ", + "family_wwg": "๐Ÿ‘ฉ๐Ÿ‘ฉ๐Ÿ‘ง", + "family_wwgb": "๐Ÿ‘ฉ๐Ÿ‘ฉ๐Ÿ‘ง๐Ÿ‘ฆ", + "family_wwgg": "๐Ÿ‘ฉ๐Ÿ‘ฉ๐Ÿ‘ง๐Ÿ‘ง", + "fast_forward": "โฉ", + "fax": "๐Ÿ“ ", + "fearful": "๐Ÿ˜จ", + "feet": "๐Ÿพ", + "female_sign": "โ™€", + "ferris_wheel": "๐ŸŽก", + "ferry": "โ›ด", + "field_hockey": "๐Ÿ‘", + "file_cabinet": "๐Ÿ—„", + "file_folder": "๐Ÿ“", + "film_frames": "๐ŸŽž", + "fingers_crossed": "๐Ÿคž", + "fingers_crossed_tone1": "๐Ÿคž๐Ÿป", + "fingers_crossed_tone2": "๐Ÿคž๐Ÿผ", + "fingers_crossed_tone3": "๐Ÿคž๐Ÿฝ", + "fingers_crossed_tone4": "๐Ÿคž๐Ÿพ", + "fingers_crossed_tone5": "๐Ÿคž๐Ÿฟ", + "fire": "๐Ÿ”ฅ", + "fire_engine": "๐Ÿš’", + "fireworks": "๐ŸŽ†", + "first_place": "๐Ÿฅ‡", + "first_quarter_moon": "๐ŸŒ“", + "first_quarter_moon_with_face": "๐ŸŒ›", + "fish": "๐ŸŸ", + "fish_cake": "๐Ÿฅ", + "fishing_pole_and_fish": "๐ŸŽฃ", + "fist": "โœŠ", + "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_black": "๐Ÿด", + "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_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_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_us": "๐Ÿ‡บ๐Ÿ‡ธ", + "flag_uy": "๐Ÿ‡บ๐Ÿ‡พ", + "flag_uz": "๐Ÿ‡บ๐Ÿ‡ฟ", + "flag_va": "๐Ÿ‡ป๐Ÿ‡ฆ", + "flag_vc": "๐Ÿ‡ป๐Ÿ‡จ", + "flag_ve": "๐Ÿ‡ป๐Ÿ‡ช", + "flag_vg": "๐Ÿ‡ป๐Ÿ‡ฌ", + "flag_vi": "๐Ÿ‡ป๐Ÿ‡ฎ", + "flag_vn": "๐Ÿ‡ป๐Ÿ‡ณ", + "flag_vu": "๐Ÿ‡ป๐Ÿ‡บ", + "flag_wf": "๐Ÿ‡ผ๐Ÿ‡ซ", + "flag_white": "๐Ÿณ", + "flag_ws": "๐Ÿ‡ผ๐Ÿ‡ธ", + "flag_xk": "๐Ÿ‡ฝ๐Ÿ‡ฐ", + "flag_ye": "๐Ÿ‡พ๐Ÿ‡ช", + "flag_yt": "๐Ÿ‡พ๐Ÿ‡น", + "flag_za": "๐Ÿ‡ฟ๐Ÿ‡ฆ", + "flag_zm": "๐Ÿ‡ฟ๐Ÿ‡ฒ", + "flag_zw": "๐Ÿ‡ฟ๐Ÿ‡ผ", + "flags": "๐ŸŽ", + "flashlight": "๐Ÿ”ฆ", + "fleur-de-lis": "โšœ", + "floppy_disk": "๐Ÿ’พ", + "flower_playing_cards": "๐ŸŽด", + "flushed": "๐Ÿ˜ณ", + "flying_saucer": "๐Ÿ›ธ", + "fog": "๐ŸŒซ", + "foggy": "๐ŸŒ", + "football": "๐Ÿˆ", + "footprints": "๐Ÿ‘ฃ", + "fork_and_knife": "๐Ÿด", + "fork_knife_plate": "๐Ÿฝ", + "fortune_cookie": "๐Ÿฅ ", + "fountain": "โ›ฒ", + "four": "4โƒฃ", + "four_leaf_clover": "๐Ÿ€", + "fox": "๐ŸฆŠ", + "frame_photo": "๐Ÿ–ผ", + "free": "๐Ÿ†“", + "french_bread": "๐Ÿฅ–", + "fried_shrimp": "๐Ÿค", + "fries": "๐ŸŸ", + "frog": "๐Ÿธ", + "frowning2": "โ˜น", + "frowning": "๐Ÿ˜ฆ", + "fuelpump": "โ›ฝ", + "full_moon": "๐ŸŒ•", + "full_moon_with_face": "๐ŸŒ", + "game_die": "๐ŸŽฒ", + "gear": "โš™", + "gem": "๐Ÿ’Ž", + "gemini": "โ™Š", + "genie": "๐Ÿงž", + "ghost": "๐Ÿ‘ป", + "gift": "๐ŸŽ", + "gift_heart": "๐Ÿ’", + "giraffe": "๐Ÿฆ’", + "girl": "๐Ÿ‘ง", + "girl_tone1": "๐Ÿ‘ง๐Ÿป", + "girl_tone2": "๐Ÿ‘ง๐Ÿผ", + "girl_tone3": "๐Ÿ‘ง๐Ÿฝ", + "girl_tone4": "๐Ÿ‘ง๐Ÿพ", + "girl_tone5": "๐Ÿ‘ง๐Ÿฟ", + "globe_with_meridians": "๐ŸŒ", + "gloves": "๐Ÿงค", + "goal": "๐Ÿฅ…", + "goat": "๐Ÿ", + "golf": "โ›ณ", + "gorilla": "๐Ÿฆ", + "grapes": "๐Ÿ‡", + "green_apple": "๐Ÿ", + "green_book": "๐Ÿ“—", + "green_heart": "๐Ÿ’š", + "grey_exclamation": "โ•", + "grey_question": "โ”", + "grimacing": "๐Ÿ˜ฌ", + "grin": "๐Ÿ˜", + "grinning": "๐Ÿ˜€", + "guard": "๐Ÿ’‚", + "guard_tone1": "๐Ÿ’‚๐Ÿป", + "guard_tone2": "๐Ÿ’‚๐Ÿผ", + "guard_tone3": "๐Ÿ’‚๐Ÿฝ", + "guard_tone4": "๐Ÿ’‚๐Ÿพ", + "guard_tone5": "๐Ÿ’‚๐Ÿฟ", + "guitar": "๐ŸŽธ", + "gun": "๐Ÿ”ซ", + "hamburger": "๐Ÿ”", + "hammer": "๐Ÿ”จ", + "hammer_pick": "โš’", + "hamster": "๐Ÿน", + "hand_splayed": "๐Ÿ–", + "hand_splayed_tone1": "๐Ÿ–๐Ÿป", + "hand_splayed_tone2": "๐Ÿ–๐Ÿผ", + "hand_splayed_tone3": "๐Ÿ–๐Ÿฝ", + "hand_splayed_tone4": "๐Ÿ–๐Ÿพ", + "hand_splayed_tone5": "๐Ÿ–๐Ÿฟ", + "handbag": "๐Ÿ‘œ", + "handshake": "๐Ÿค", + "hash": "#โƒฃ", + "hatched_chick": "๐Ÿฅ", + "hatching_chick": "๐Ÿฃ", + "head_bandage": "๐Ÿค•", + "headphones": "๐ŸŽง", + "hear_no_evil": "๐Ÿ™‰", + "heart": "โค", + "heart_decoration": "๐Ÿ’Ÿ", + "heart_exclamation": "โฃ", + "heart_eyes": "๐Ÿ˜", + "heart_eyes_cat": "๐Ÿ˜ป", + "heartbeat": "๐Ÿ’“", + "heartpulse": "๐Ÿ’—", + "hearts": "โ™ฅ", + "heavy_check_mark": "โœ”", + "heavy_division_sign": "โž—", + "heavy_dollar_sign": "๐Ÿ’ฒ", + "heavy_minus_sign": "โž–", + "heavy_multiplication_x": "โœ–", + "heavy_plus_sign": "โž•", + "hedgehog": "๐Ÿฆ”", + "helicopter": "๐Ÿš", + "helmet_with_cross": "โ›‘", + "herb": "๐ŸŒฟ", + "hibiscus": "๐ŸŒบ", + "high_brightness": "๐Ÿ”†", + "high_heel": "๐Ÿ‘ ", + "hockey": "๐Ÿ’", + "hole": "๐Ÿ•ณ", + "homes": "๐Ÿ˜", + "honey_pot": "๐Ÿฏ", + "horse": "๐Ÿด", + "horse_racing": "๐Ÿ‡", + "horse_racing_tone1": "๐Ÿ‡๐Ÿป", + "horse_racing_tone2": "๐Ÿ‡๐Ÿผ", + "horse_racing_tone3": "๐Ÿ‡๐Ÿฝ", + "horse_racing_tone4": "๐Ÿ‡๐Ÿพ", + "horse_racing_tone5": "๐Ÿ‡๐Ÿฟ", + "hospital": "๐Ÿฅ", + "hot_pepper": "๐ŸŒถ", + "hotdog": "๐ŸŒญ", + "hotel": "๐Ÿจ", + "hotsprings": "โ™จ", + "hourglass": "โŒ›", + "hourglass_flowing_sand": "โณ", + "house": "๐Ÿ ", + "house_abandoned": "๐Ÿš", + "house_with_garden": "๐Ÿก", + "hugging": "๐Ÿค—", + "hushed": "๐Ÿ˜ฏ", + "ice_cream": "๐Ÿจ", + "ice_skate": "โ›ธ", + "icecream": "๐Ÿฆ", + "id": "๐Ÿ†”", + "ideograph_advantage": "๐Ÿ‰", + "imp": "๐Ÿ‘ฟ", + "inbox_tray": "๐Ÿ“ฅ", + "incoming_envelope": "๐Ÿ“จ", + "information_source": "โ„น", + "innocent": "๐Ÿ˜‡", + "interrobang": "โ‰", + "iphone": "๐Ÿ“ฑ", + "island": "๐Ÿ", + "izakaya_lantern": "๐Ÿฎ", + "jack_o_lantern": "๐ŸŽƒ", + "japan": "๐Ÿ—พ", + "japanese_castle": "๐Ÿฏ", + "japanese_goblin": "๐Ÿ‘บ", + "japanese_ogre": "๐Ÿ‘น", + "jeans": "๐Ÿ‘–", + "joy": "๐Ÿ˜‚", + "joy_cat": "๐Ÿ˜น", + "joystick": "๐Ÿ•น", + "kaaba": "๐Ÿ•‹", + "key2": "๐Ÿ—", + "key": "๐Ÿ”‘", + "keyboard": "โŒจ", + "keycap_ten": "๐Ÿ”Ÿ", + "kimono": "๐Ÿ‘˜", + "kiss": "๐Ÿ’‹", + "kiss_mm": "๐Ÿ‘จโค๐Ÿ’‹๐Ÿ‘จ", + "kiss_woman_man": "๐Ÿ‘ฉโค๐Ÿ’‹๐Ÿ‘จ", + "kiss_ww": "๐Ÿ‘ฉโค๐Ÿ’‹๐Ÿ‘ฉ", + "kissing": "๐Ÿ˜—", + "kissing_cat": "๐Ÿ˜ฝ", + "kissing_closed_eyes": "๐Ÿ˜š", + "kissing_heart": "๐Ÿ˜˜", + "kissing_smiling_eyes": "๐Ÿ˜™", + "kiwi": "๐Ÿฅ", + "knife": "๐Ÿ”ช", + "koala": "๐Ÿจ", + "koko": "๐Ÿˆ", + "label": "๐Ÿท", + "large_blue_diamond": "๐Ÿ”ท", + "large_orange_diamond": "๐Ÿ”ถ", + "last_quarter_moon": "๐ŸŒ—", + "last_quarter_moon_with_face": "๐ŸŒœ", + "laughing": "๐Ÿ˜†", + "leaves": "๐Ÿƒ", + "ledger": "๐Ÿ“’", + "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": "โ†”", + "leftwards_arrow_with_hook": "โ†ฉ", + "lemon": "๐Ÿ‹", + "leo": "โ™Œ", + "leopard": "๐Ÿ†", + "level_slider": "๐ŸŽš", + "levitate": "๐Ÿ•ด", + "libra": "โ™Ž", + "light_rail": "๐Ÿšˆ", + "link": "๐Ÿ”—", + "lion_face": "๐Ÿฆ", + "lips": "๐Ÿ‘„", + "lipstick": "๐Ÿ’„", + "lizard": "๐ŸฆŽ", + "lock": "๐Ÿ”’", + "lock_with_ink_pen": "๐Ÿ”", + "lollipop": "๐Ÿญ", + "loop": "โžฟ", + "loud_sound": "๐Ÿ”Š", + "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_brightness": "๐Ÿ”…", + "lying_face": "๐Ÿคฅ", + "m": "โ“‚", + "mag": "๐Ÿ”", + "mag_right": "๐Ÿ”Ž", + "mage": "๐Ÿง™", + "mage_tone1": "๐Ÿง™๐Ÿป", + "mage_tone2": "๐Ÿง™๐Ÿผ", + "mage_tone3": "๐Ÿง™๐Ÿฝ", + "mage_tone4": "๐Ÿง™๐Ÿพ", + "mage_tone5": "๐Ÿง™๐Ÿฟ", + "mahjong": "๐Ÿ€„", + "mailbox": "๐Ÿ“ซ", + "mailbox_closed": "๐Ÿ“ช", + "mailbox_with_mail": "๐Ÿ“ฌ", + "mailbox_with_no_mail": "๐Ÿ“ญ", + "male_sign": "โ™‚", + "man": "๐Ÿ‘จ", + "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_biking": "๐Ÿšดโ™‚", + "man_biking_tone1": "๐Ÿšด๐Ÿปโ™‚", + "man_biking_tone2": "๐Ÿšด๐Ÿผโ™‚", + "man_biking_tone3": "๐Ÿšด๐Ÿฝโ™‚", + "man_biking_tone4": "๐Ÿšด๐Ÿพโ™‚", + "man_biking_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_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_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_face_massage": "๐Ÿ’†โ™‚", + "man_getting_face_massage_tone1": "๐Ÿ’†๐Ÿปโ™‚", + "man_getting_face_massage_tone2": "๐Ÿ’†๐Ÿผโ™‚", + "man_getting_face_massage_tone3": "๐Ÿ’†๐Ÿฝโ™‚", + "man_getting_face_massage_tone4": "๐Ÿ’†๐Ÿพโ™‚", + "man_getting_face_massage_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_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_tone1": "๐Ÿ•ด๐Ÿป", + "man_in_business_suit_levitating_tone2": "๐Ÿ•ด๐Ÿผ", + "man_in_business_suit_levitating_tone3": "๐Ÿ•ด๐Ÿฝ", + "man_in_business_suit_levitating_tone4": "๐Ÿ•ด๐Ÿพ", + "man_in_business_suit_levitating_tone5": "๐Ÿ•ด๐Ÿฟ", + "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_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_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_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_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_student": "๐Ÿ‘จ๐ŸŽ“", + "man_student_tone1": "๐Ÿ‘จ๐Ÿป๐ŸŽ“", + "man_student_tone2": "๐Ÿ‘จ๐Ÿผ๐ŸŽ“", + "man_student_tone3": "๐Ÿ‘จ๐Ÿฝ๐ŸŽ“", + "man_student_tone4": "๐Ÿ‘จ๐Ÿพ๐ŸŽ“", + "man_student_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_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_with_chinese_cap": "๐Ÿ‘ฒ", + "man_with_chinese_cap_tone1": "๐Ÿ‘ฒ๐Ÿป", + "man_with_chinese_cap_tone2": "๐Ÿ‘ฒ๐Ÿผ", + "man_with_chinese_cap_tone3": "๐Ÿ‘ฒ๐Ÿฝ", + "man_with_chinese_cap_tone4": "๐Ÿ‘ฒ๐Ÿพ", + "man_with_chinese_cap_tone5": "๐Ÿ‘ฒ๐Ÿฟ", + "man_zombie": "๐ŸงŸโ™‚", + "mans_shoe": "๐Ÿ‘ž", + "map": "๐Ÿ—บ", + "maple_leaf": "๐Ÿ", + "martial_arts_uniform": "๐Ÿฅ‹", + "mask": "๐Ÿ˜ท", + "meat_on_bone": "๐Ÿ–", + "medal": "๐Ÿ…", + "medical_symbol": "โš•", + "mega": "๐Ÿ“ฃ", + "melon": "๐Ÿˆ", + "men_with_bunny_ears_partying": "๐Ÿ‘ฏโ™‚", + "men_wrestling": "๐Ÿคผโ™‚", + "menorah": "๐Ÿ•Ž", + "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": "๐Ÿš‡", + "microphone2": "๐ŸŽ™", + "microphone": "๐ŸŽค", + "microscope": "๐Ÿ”ฌ", + "middle_finger": "๐Ÿ–•", + "middle_finger_tone1": "๐Ÿ–•๐Ÿป", + "middle_finger_tone2": "๐Ÿ–•๐Ÿผ", + "middle_finger_tone3": "๐Ÿ–•๐Ÿฝ", + "middle_finger_tone4": "๐Ÿ–•๐Ÿพ", + "middle_finger_tone5": "๐Ÿ–•๐Ÿฟ", + "military_medal": "๐ŸŽ–", + "milk": "๐Ÿฅ›", + "milky_way": "๐ŸŒŒ", + "minibus": "๐Ÿš", + "minidisc": "๐Ÿ’ฝ", + "mobile_phone_off": "๐Ÿ“ด", + "money_mouth": "๐Ÿค‘", + "money_with_wings": "๐Ÿ’ธ", + "moneybag": "๐Ÿ’ฐ", + "monkey": "๐Ÿ’", + "monkey_face": "๐Ÿต", + "monorail": "๐Ÿš", + "mortar_board": "๐ŸŽ“", + "mosque": "๐Ÿ•Œ", + "motor_scooter": "๐Ÿ›ต", + "motorboat": "๐Ÿ›ฅ", + "motorcycle": "๐Ÿ", + "motorway": "๐Ÿ›ฃ", + "mount_fuji": "๐Ÿ—ป", + "mountain": "โ›ฐ", + "mountain_cableway": "๐Ÿš ", + "mountain_railway": "๐Ÿšž", + "mountain_snow": "๐Ÿ”", + "mouse2": "๐Ÿ", + "mouse": "๐Ÿญ", + "mouse_three_button": "๐Ÿ–ฑ", + "movie_camera": "๐ŸŽฅ", + "moyai": "๐Ÿ—ฟ", + "mrs_claus": "๐Ÿคถ", + "mrs_claus_tone1": "๐Ÿคถ๐Ÿป", + "mrs_claus_tone2": "๐Ÿคถ๐Ÿผ", + "mrs_claus_tone3": "๐Ÿคถ๐Ÿฝ", + "mrs_claus_tone4": "๐Ÿคถ๐Ÿพ", + "mrs_claus_tone5": "๐Ÿคถ๐Ÿฟ", + "muscle": "๐Ÿ’ช", + "muscle_tone1": "๐Ÿ’ช๐Ÿป", + "muscle_tone2": "๐Ÿ’ช๐Ÿผ", + "muscle_tone3": "๐Ÿ’ช๐Ÿฝ", + "muscle_tone4": "๐Ÿ’ช๐Ÿพ", + "muscle_tone5": "๐Ÿ’ช๐Ÿฟ", + "mushroom": "๐Ÿ„", + "musical_keyboard": "๐ŸŽน", + "musical_note": "๐ŸŽต", + "musical_score": "๐ŸŽผ", + "mute": "๐Ÿ”‡", + "nail_care": "๐Ÿ’…", + "nail_care_tone1": "๐Ÿ’…๐Ÿป", + "nail_care_tone2": "๐Ÿ’…๐Ÿผ", + "nail_care_tone3": "๐Ÿ’…๐Ÿฝ", + "nail_care_tone4": "๐Ÿ’…๐Ÿพ", + "nail_care_tone5": "๐Ÿ’…๐Ÿฟ", + "name_badge": "๐Ÿ“›", + "nauseated_face": "๐Ÿคข", + "necktie": "๐Ÿ‘”", + "negative_squared_cross_mark": "โŽ", + "nerd": "๐Ÿค“", + "neutral_face": "๐Ÿ˜", + "new": "๐Ÿ†•", + "new_moon": "๐ŸŒ‘", + "new_moon_with_face": "๐ŸŒš", + "newspaper2": "๐Ÿ—ž", + "newspaper": "๐Ÿ“ฐ", + "ng": "๐Ÿ†–", + "night_with_stars": "๐ŸŒƒ", + "nine": "9โƒฃ", + "no_bell": "๐Ÿ”•", + "no_bicycles": "๐Ÿšณ", + "no_entry": "โ›”", + "no_entry_sign": "๐Ÿšซ", + "no_mobile_phones": "๐Ÿ“ต", + "no_mouth": "๐Ÿ˜ถ", + "no_pedestrians": "๐Ÿšท", + "no_smoking": "๐Ÿšญ", + "non-potable_water": "๐Ÿšฑ", + "nose": "๐Ÿ‘ƒ", + "nose_tone1": "๐Ÿ‘ƒ๐Ÿป", + "nose_tone2": "๐Ÿ‘ƒ๐Ÿผ", + "nose_tone3": "๐Ÿ‘ƒ๐Ÿฝ", + "nose_tone4": "๐Ÿ‘ƒ๐Ÿพ", + "nose_tone5": "๐Ÿ‘ƒ๐Ÿฟ", + "notebook": "๐Ÿ““", + "notebook_with_decorative_cover": "๐Ÿ“”", + "notepad_spiral": "๐Ÿ—’", + "notes": "๐ŸŽถ", + "nut_and_bolt": "๐Ÿ”ฉ", + "o2": "๐Ÿ…พ", + "o": "โญ•", + "ocean": "๐ŸŒŠ", + "octagonal_sign": "๐Ÿ›‘", + "octopus": "๐Ÿ™", + "oden": "๐Ÿข", + "office": "๐Ÿข", + "oil": "๐Ÿ›ข", + "ok": "๐Ÿ†—", + "ok_hand": "๐Ÿ‘Œ", + "ok_hand_tone1": "๐Ÿ‘Œ๐Ÿป", + "ok_hand_tone2": "๐Ÿ‘Œ๐Ÿผ", + "ok_hand_tone3": "๐Ÿ‘Œ๐Ÿฝ", + "ok_hand_tone4": "๐Ÿ‘Œ๐Ÿพ", + "ok_hand_tone5": "๐Ÿ‘Œ๐Ÿฟ", + "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": "๐Ÿ‘ต๐Ÿฟ", + "om_symbol": "๐Ÿ•‰", + "on": "๐Ÿ”›", + "oncoming_automobile": "๐Ÿš˜", + "oncoming_bus": "๐Ÿš", + "oncoming_police_car": "๐Ÿš”", + "oncoming_taxi": "๐Ÿš–", + "one": "1โƒฃ", + "open_file_folder": "๐Ÿ“‚", + "open_hands": "๐Ÿ‘", + "open_hands_tone1": "๐Ÿ‘๐Ÿป", + "open_hands_tone2": "๐Ÿ‘๐Ÿผ", + "open_hands_tone3": "๐Ÿ‘๐Ÿฝ", + "open_hands_tone4": "๐Ÿ‘๐Ÿพ", + "open_hands_tone5": "๐Ÿ‘๐Ÿฟ", + "open_mouth": "๐Ÿ˜ฎ", + "ophiuchus": "โ›Ž", + "orange_book": "๐Ÿ“™", + "orange_heart": "๐Ÿงก", + "orthodox_cross": "โ˜ฆ", + "outbox_tray": "๐Ÿ“ค", + "owl": "๐Ÿฆ‰", + "ox": "๐Ÿ‚", + "package": "๐Ÿ“ฆ", + "page_facing_up": "๐Ÿ“„", + "page_with_curl": "๐Ÿ“ƒ", + "pager": "๐Ÿ“Ÿ", + "paintbrush": "๐Ÿ–Œ", + "palm_tree": "๐ŸŒด", + "palms_up_together": "๐Ÿคฒ", + "palms_up_together_tone1": "๐Ÿคฒ๐Ÿป", + "palms_up_together_tone2": "๐Ÿคฒ๐Ÿผ", + "palms_up_together_tone3": "๐Ÿคฒ๐Ÿฝ", + "palms_up_together_tone4": "๐Ÿคฒ๐Ÿพ", + "palms_up_together_tone5": "๐Ÿคฒ๐Ÿฟ", + "pancakes": "๐Ÿฅž", + "panda_face": "๐Ÿผ", + "paperclip": "๐Ÿ“Ž", + "paperclips": "๐Ÿ–‡", + "park": "๐Ÿž", + "parking": "๐Ÿ…ฟ", + "part_alternation_mark": "ใ€ฝ", + "partly_sunny": "โ›…", + "passport_control": "๐Ÿ›‚", + "pause_button": "โธ", + "peace": "โ˜ฎ", + "peach": "๐Ÿ‘", + "peanuts": "๐Ÿฅœ", + "pear": "๐Ÿ", + "pen_ballpoint": "๐Ÿ–Š", + "pen_fountain": "๐Ÿ–‹", + "pencil2": "โœ", + "pencil": "๐Ÿ“", + "penguin": "๐Ÿง", + "pensive": "๐Ÿ˜”", + "people_with_bunny_ears_partying": "๐Ÿ‘ฏ", + "people_wrestling": "๐Ÿคผ", + "performing_arts": "๐ŸŽญ", + "persevere": "๐Ÿ˜ฃ", + "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_climbing": "๐Ÿง—", + "person_climbing_tone1": "๐Ÿง—๐Ÿป", + "person_climbing_tone2": "๐Ÿง—๐Ÿผ", + "person_climbing_tone3": "๐Ÿง—๐Ÿฝ", + "person_climbing_tone4": "๐Ÿง—๐Ÿพ", + "person_climbing_tone5": "๐Ÿง—๐Ÿฟ", + "person_doing_cartwheel": "๐Ÿคธ", + "person_doing_cartwheel_tone1": "๐Ÿคธ๐Ÿป", + "person_doing_cartwheel_tone2": "๐Ÿคธ๐Ÿผ", + "person_doing_cartwheel_tone3": "๐Ÿคธ๐Ÿฝ", + "person_doing_cartwheel_tone4": "๐Ÿคธ๐Ÿพ", + "person_doing_cartwheel_tone5": "๐Ÿคธ๐Ÿฟ", + "person_facepalming": "๐Ÿคฆ", + "person_facepalming_tone1": "๐Ÿคฆ๐Ÿป", + "person_facepalming_tone2": "๐Ÿคฆ๐Ÿผ", + "person_facepalming_tone3": "๐Ÿคฆ๐Ÿฝ", + "person_facepalming_tone4": "๐Ÿคฆ๐Ÿพ", + "person_facepalming_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_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_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_juggling": "๐Ÿคน", + "person_juggling_tone1": "๐Ÿคน๐Ÿป", + "person_juggling_tone2": "๐Ÿคน๐Ÿผ", + "person_juggling_tone3": "๐Ÿคน๐Ÿฝ", + "person_juggling_tone4": "๐Ÿคน๐Ÿพ", + "person_juggling_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_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_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_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_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_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": "๐Ÿ‘ณ๐Ÿฟ", + "pick": "โ›", + "pie": "๐Ÿฅง", + "pig2": "๐Ÿ–", + "pig": "๐Ÿท", + "pig_nose": "๐Ÿฝ", + "pill": "๐Ÿ’Š", + "pineapple": "๐Ÿ", + "ping_pong": "๐Ÿ“", + "pisces": "โ™“", + "pizza": "๐Ÿ•", + "place_of_worship": "๐Ÿ›", + "play_pause": "โฏ", + "point_down": "๐Ÿ‘‡", + "point_down_tone1": "๐Ÿ‘‡๐Ÿป", + "point_down_tone2": "๐Ÿ‘‡๐Ÿผ", + "point_down_tone3": "๐Ÿ‘‡๐Ÿฝ", + "point_down_tone4": "๐Ÿ‘‡๐Ÿพ", + "point_down_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": "โ˜๐Ÿฟ", + "police_car": "๐Ÿš“", + "police_officer": "๐Ÿ‘ฎ", + "police_officer_tone1": "๐Ÿ‘ฎ๐Ÿป", + "police_officer_tone2": "๐Ÿ‘ฎ๐Ÿผ", + "police_officer_tone3": "๐Ÿ‘ฎ๐Ÿฝ", + "police_officer_tone4": "๐Ÿ‘ฎ๐Ÿพ", + "police_officer_tone5": "๐Ÿ‘ฎ๐Ÿฟ", + "poodle": "๐Ÿฉ", + "poop": "๐Ÿ’ฉ", + "popcorn": "๐Ÿฟ", + "post_office": "๐Ÿฃ", + "postal_horn": "๐Ÿ“ฏ", + "postbox": "๐Ÿ“ฎ", + "potable_water": "๐Ÿšฐ", + "potato": "๐Ÿฅ”", + "pouch": "๐Ÿ‘", + "poultry_leg": "๐Ÿ—", + "pound": "๐Ÿ’ท", + "pound_symbol": "#", + "pouting_cat": "๐Ÿ˜พ", + "pray": "๐Ÿ™", + "pray_tone1": "๐Ÿ™๐Ÿป", + "pray_tone2": "๐Ÿ™๐Ÿผ", + "pray_tone3": "๐Ÿ™๐Ÿฝ", + "pray_tone4": "๐Ÿ™๐Ÿพ", + "pray_tone5": "๐Ÿ™๐Ÿฟ", + "prayer_beads": "๐Ÿ“ฟ", + "pregnant_woman": "๐Ÿคฐ", + "pregnant_woman_tone1": "๐Ÿคฐ๐Ÿป", + "pregnant_woman_tone2": "๐Ÿคฐ๐Ÿผ", + "pregnant_woman_tone3": "๐Ÿคฐ๐Ÿฝ", + "pregnant_woman_tone4": "๐Ÿคฐ๐Ÿพ", + "pregnant_woman_tone5": "๐Ÿคฐ๐Ÿฟ", + "pretzel": "๐Ÿฅจ", + "prince": "๐Ÿคด", + "prince_tone1": "๐Ÿคด๐Ÿป", + "prince_tone2": "๐Ÿคด๐Ÿผ", + "prince_tone3": "๐Ÿคด๐Ÿฝ", + "prince_tone4": "๐Ÿคด๐Ÿพ", + "prince_tone5": "๐Ÿคด๐Ÿฟ", + "princess": "๐Ÿ‘ธ", + "princess_tone1": "๐Ÿ‘ธ๐Ÿป", + "princess_tone2": "๐Ÿ‘ธ๐Ÿผ", + "princess_tone3": "๐Ÿ‘ธ๐Ÿฝ", + "princess_tone4": "๐Ÿ‘ธ๐Ÿพ", + "princess_tone5": "๐Ÿ‘ธ๐Ÿฟ", + "printer": "๐Ÿ–จ", + "projector": "๐Ÿ“ฝ", + "punch": "๐Ÿ‘Š", + "punch_tone1": "๐Ÿ‘Š๐Ÿป", + "punch_tone2": "๐Ÿ‘Š๐Ÿผ", + "punch_tone3": "๐Ÿ‘Š๐Ÿฝ", + "punch_tone4": "๐Ÿ‘Š๐Ÿพ", + "punch_tone5": "๐Ÿ‘Š๐Ÿฟ", + "purple_heart": "๐Ÿ’œ", + "purse": "๐Ÿ‘›", + "pushpin": "๐Ÿ“Œ", + "put_litter_in_its_place": "๐Ÿšฎ", + "question": "โ“", + "rabbit2": "๐Ÿ‡", + "rabbit": "๐Ÿฐ", + "race_car": "๐ŸŽ", + "racehorse": "๐ŸŽ", + "radio": "๐Ÿ“ป", + "radio_button": "๐Ÿ”˜", + "radioactive": "โ˜ข", + "rage": "๐Ÿ˜ก", + "railway_car": "๐Ÿšƒ", + "railway_track": "๐Ÿ›ค", + "rainbow": "๐ŸŒˆ", + "rainbow_flag": "๐Ÿณ๐ŸŒˆ", + "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_hand": "โœ‹", + "raised_hand_tone1": "โœ‹๐Ÿป", + "raised_hand_tone2": "โœ‹๐Ÿผ", + "raised_hand_tone3": "โœ‹๐Ÿฝ", + "raised_hand_tone4": "โœ‹๐Ÿพ", + "raised_hand_tone5": "โœ‹๐Ÿฟ", + "raised_hands": "๐Ÿ™Œ", + "raised_hands_tone1": "๐Ÿ™Œ๐Ÿป", + "raised_hands_tone2": "๐Ÿ™Œ๐Ÿผ", + "raised_hands_tone3": "๐Ÿ™Œ๐Ÿฝ", + "raised_hands_tone4": "๐Ÿ™Œ๐Ÿพ", + "raised_hands_tone5": "๐Ÿ™Œ๐Ÿฟ", + "ram": "๐Ÿ", + "ramen": "๐Ÿœ", + "rat": "๐Ÿ€", + "record_button": "โบ", + "recycle": "โ™ป", + "red_car": "๐Ÿš—", + "red_circle": "๐Ÿ”ด", + "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": "๐Ÿ˜Œ", + "reminder_ribbon": "๐ŸŽ—", + "repeat": "๐Ÿ”", + "repeat_one": "๐Ÿ”‚", + "restroom": "๐Ÿšป", + "revolving_hearts": "๐Ÿ’ž", + "rewind": "โช", + "rhino": "๐Ÿฆ", + "ribbon": "๐ŸŽ€", + "rice": "๐Ÿš", + "rice_ball": "๐Ÿ™", + "rice_cracker": "๐Ÿ˜", + "rice_scene": "๐ŸŽ‘", + "right_facing_fist": "๐Ÿคœ", + "right_facing_fist_tone1": "๐Ÿคœ๐Ÿป", + "right_facing_fist_tone2": "๐Ÿคœ๐Ÿผ", + "right_facing_fist_tone3": "๐Ÿคœ๐Ÿฝ", + "right_facing_fist_tone4": "๐Ÿคœ๐Ÿพ", + "right_facing_fist_tone5": "๐Ÿคœ๐Ÿฟ", + "ring": "๐Ÿ’", + "robot": "๐Ÿค–", + "rocket": "๐Ÿš€", + "rofl": "๐Ÿคฃ", + "roller_coaster": "๐ŸŽข", + "rolling_eyes": "๐Ÿ™„", + "rooster": "๐Ÿ“", + "rose": "๐ŸŒน", + "rosette": "๐Ÿต", + "rotating_light": "๐Ÿšจ", + "round_pushpin": "๐Ÿ“", + "rugby_football": "๐Ÿ‰", + "running_shirt_with_sash": "๐ŸŽฝ", + "sa": "๐Ÿˆ‚", + "sagittarius": "โ™", + "sailboat": "โ›ต", + "sake": "๐Ÿถ", + "salad": "๐Ÿฅ—", + "sandal": "๐Ÿ‘ก", + "sandwich": "๐Ÿฅช", + "santa": "๐ŸŽ…", + "santa_tone1": "๐ŸŽ…๐Ÿป", + "santa_tone2": "๐ŸŽ…๐Ÿผ", + "santa_tone3": "๐ŸŽ…๐Ÿฝ", + "santa_tone4": "๐ŸŽ…๐Ÿพ", + "santa_tone5": "๐ŸŽ…๐Ÿฟ", + "satellite": "๐Ÿ“ก", + "satellite_orbital": "๐Ÿ›ฐ", + "sauropod": "๐Ÿฆ•", + "saxophone": "๐ŸŽท", + "scales": "โš–", + "scarf": "๐Ÿงฃ", + "school": "๐Ÿซ", + "school_satchel": "๐ŸŽ’", + "scissors": "โœ‚", + "scooter": "๐Ÿ›ด", + "scorpion": "๐Ÿฆ‚", + "scorpius": "โ™", + "scotland": "๐Ÿด๓ ง๓ ข๓ ณ๓ ฃ๓ ด๓ ฟ", + "scream": "๐Ÿ˜ฑ", + "scream_cat": "๐Ÿ™€", + "scroll": "๐Ÿ“œ", + "seat": "๐Ÿ’บ", + "second_place": "๐Ÿฅˆ", + "secret": "ใŠ™", + "see_no_evil": "๐Ÿ™ˆ", + "seedling": "๐ŸŒฑ", + "selfie": "๐Ÿคณ", + "selfie_tone1": "๐Ÿคณ๐Ÿป", + "selfie_tone2": "๐Ÿคณ๐Ÿผ", + "selfie_tone3": "๐Ÿคณ๐Ÿฝ", + "selfie_tone4": "๐Ÿคณ๐Ÿพ", + "selfie_tone5": "๐Ÿคณ๐Ÿฟ", + "seven": "7โƒฃ", + "shallow_pan_of_food": "๐Ÿฅ˜", + "shamrock": "โ˜˜", + "shark": "๐Ÿฆˆ", + "shaved_ice": "๐Ÿง", + "sheep": "๐Ÿ‘", + "shell": "๐Ÿš", + "shield": "๐Ÿ›ก", + "shinto_shrine": "โ›ฉ", + "ship": "๐Ÿšข", + "shirt": "๐Ÿ‘•", + "shopping_bags": "๐Ÿ›", + "shopping_cart": "๐Ÿ›’", + "shower": "๐Ÿšฟ", + "shrimp": "๐Ÿฆ", + "shushing_face": "๐Ÿคซ", + "signal_strength": "๐Ÿ“ถ", + "six": "6โƒฃ", + "six_pointed_star": "๐Ÿ”ฏ", + "ski": "๐ŸŽฟ", + "skier": "โ›ท", + "skull": "๐Ÿ’€", + "skull_crossbones": "โ˜ ", + "sled": "๐Ÿ›ท", + "sleeping": "๐Ÿ˜ด", + "sleeping_accommodation": "๐Ÿ›Œ", + "sleepy": "๐Ÿ˜ช", + "slight_frown": "๐Ÿ™", + "slight_smile": "๐Ÿ™‚", + "slot_machine": "๐ŸŽฐ", + "small_blue_diamond": "๐Ÿ”น", + "small_orange_diamond": "๐Ÿ”ธ", + "small_red_triangle": "๐Ÿ”บ", + "small_red_triangle_down": "๐Ÿ”ป", + "smile": "๐Ÿ˜„", + "smile_cat": "๐Ÿ˜ธ", + "smiley": "๐Ÿ˜ƒ", + "smiley_cat": "๐Ÿ˜บ", + "smiling_imp": "๐Ÿ˜ˆ", + "smirk": "๐Ÿ˜", + "smirk_cat": "๐Ÿ˜ผ", + "smoking": "๐Ÿšฌ", + "snail": "๐ŸŒ", + "snake": "๐Ÿ", + "sneezing_face": "๐Ÿคง", + "snowboarder": "๐Ÿ‚", + "snowboarder_tone1": "๐Ÿ‚๐Ÿป", + "snowboarder_tone2": "๐Ÿ‚๐Ÿผ", + "snowboarder_tone3": "๐Ÿ‚๐Ÿฝ", + "snowboarder_tone4": "๐Ÿ‚๐Ÿพ", + "snowboarder_tone5": "๐Ÿ‚๐Ÿฟ", + "snowflake": "โ„", + "snowman2": "โ˜ƒ", + "snowman": "โ›„", + "sob": "๐Ÿ˜ญ", + "soccer": "โšฝ", + "socks": "๐Ÿงฆ", + "soon": "๐Ÿ”œ", + "sos": "๐Ÿ†˜", + "sound": "๐Ÿ”‰", + "space_invader": "๐Ÿ‘พ", + "spades": "โ™ ", + "spaghetti": "๐Ÿ", + "sparkle": "โ‡", + "sparkler": "๐ŸŽ‡", + "sparkles": "โœจ", + "sparkling_heart": "๐Ÿ’–", + "speak_no_evil": "๐Ÿ™Š", + "speaker": "๐Ÿ”ˆ", + "speaking_head": "๐Ÿ—ฃ", + "speech_balloon": "๐Ÿ’ฌ", + "speech_left": "๐Ÿ—จ", + "speedboat": "๐Ÿšค", + "spider": "๐Ÿ•ท", + "spider_web": "๐Ÿ•ธ", + "spoon": "๐Ÿฅ„", + "squid": "๐Ÿฆ‘", + "stadium": "๐ŸŸ", + "star2": "๐ŸŒŸ", + "star": "โญ", + "star_and_crescent": "โ˜ช", + "star_of_david": "โœก", + "star_struck": "๐Ÿคฉ", + "stars": "๐ŸŒ ", + "station": "๐Ÿš‰", + "statue_of_liberty": "๐Ÿ—ฝ", + "steam_locomotive": "๐Ÿš‚", + "stew": "๐Ÿฒ", + "stop_button": "โน", + "stopwatch": "โฑ", + "straight_ruler": "๐Ÿ“", + "strawberry": "๐Ÿ“", + "stuck_out_tongue": "๐Ÿ˜›", + "stuck_out_tongue_closed_eyes": "๐Ÿ˜", + "stuck_out_tongue_winking_eye": "๐Ÿ˜œ", + "stuffed_flatbread": "๐Ÿฅ™", + "sun_with_face": "๐ŸŒž", + "sunflower": "๐ŸŒป", + "sunglasses": "๐Ÿ˜Ž", + "sunny": "โ˜€", + "sunrise": "๐ŸŒ…", + "sunrise_over_mountains": "๐ŸŒ„", + "sushi": "๐Ÿฃ", + "suspension_railway": "๐ŸšŸ", + "sweat": "๐Ÿ˜“", + "sweat_drops": "๐Ÿ’ฆ", + "sweat_smile": "๐Ÿ˜…", + "sweet_potato": "๐Ÿ ", + "symbols": "๐Ÿ”ฃ", + "synagogue": "๐Ÿ•", + "syringe": "๐Ÿ’‰", + "t_rex": "๐Ÿฆ–", + "taco": "๐ŸŒฎ", + "tada": "๐ŸŽ‰", + "takeout_box": "๐Ÿฅก", + "tanabata_tree": "๐ŸŽ‹", + "tangerine": "๐ŸŠ", + "taurus": "โ™‰", + "taxi": "๐Ÿš•", + "tea": "๐Ÿต", + "telephone": "โ˜Ž", + "telephone_receiver": "๐Ÿ“ž", + "telescope": "๐Ÿ”ญ", + "tennis": "๐ŸŽพ", + "tent": "โ›บ", + "thermometer": "๐ŸŒก", + "thermometer_face": "๐Ÿค’", + "thinking": "๐Ÿค”", + "third_place": "๐Ÿฅ‰", + "thought_balloon": "๐Ÿ’ญ", + "three": "3โƒฃ", + "thumbsdown": "๐Ÿ‘Ž", + "thumbsdown_tone1": "๐Ÿ‘Ž๐Ÿป", + "thumbsdown_tone2": "๐Ÿ‘Ž๐Ÿผ", + "thumbsdown_tone3": "๐Ÿ‘Ž๐Ÿฝ", + "thumbsdown_tone4": "๐Ÿ‘Ž๐Ÿพ", + "thumbsdown_tone5": "๐Ÿ‘Ž๐Ÿฟ", + "thumbsup": "๐Ÿ‘", + "thumbsup_tone1": "๐Ÿ‘๐Ÿป", + "thumbsup_tone2": "๐Ÿ‘๐Ÿผ", + "thumbsup_tone3": "๐Ÿ‘๐Ÿฝ", + "thumbsup_tone4": "๐Ÿ‘๐Ÿพ", + "thumbsup_tone5": "๐Ÿ‘๐Ÿฟ", + "thunder_cloud_rain": "โ›ˆ", + "ticket": "๐ŸŽซ", + "tickets": "๐ŸŽŸ", + "tiger2": "๐Ÿ…", + "tiger": "๐Ÿฏ", + "timer": "โฒ", + "tired_face": "๐Ÿ˜ซ", + "tm": "โ„ข", + "toilet": "๐Ÿšฝ", + "tokyo_tower": "๐Ÿ—ผ", + "tomato": "๐Ÿ…", + "tone1": "๐Ÿป", + "tone2": "๐Ÿผ", + "tone3": "๐Ÿฝ", + "tone4": "๐Ÿพ", + "tone5": "๐Ÿฟ", + "tongue": "๐Ÿ‘…", + "tools": "๐Ÿ› ", + "top": "๐Ÿ”", + "tophat": "๐ŸŽฉ", + "track_next": "โญ", + "track_previous": "โฎ", + "trackball": "๐Ÿ–ฒ", + "tractor": "๐Ÿšœ", + "traffic_light": "๐Ÿšฅ", + "train2": "๐Ÿš†", + "train": "๐Ÿš‹", + "tram": "๐ŸšŠ", + "triangular_flag_on_post": "๐Ÿšฉ", + "triangular_ruler": "๐Ÿ“", + "trident": "๐Ÿ”ฑ", + "triumph": "๐Ÿ˜ค", + "trolleybus": "๐ŸšŽ", + "trophy": "๐Ÿ†", + "tropical_drink": "๐Ÿน", + "tropical_fish": "๐Ÿ ", + "truck": "๐Ÿšš", + "trumpet": "๐ŸŽบ", + "tulip": "๐ŸŒท", + "tumbler_glass": "๐Ÿฅƒ", + "turkey": "๐Ÿฆƒ", + "turtle": "๐Ÿข", + "tv": "๐Ÿ“บ", + "twisted_rightwards_arrows": "๐Ÿ”€", + "two": "2โƒฃ", + "two_hearts": "๐Ÿ’•", + "two_men_holding_hands": "๐Ÿ‘ฌ", + "two_women_holding_hands": "๐Ÿ‘ญ", + "u5272": "๐Ÿˆน", + "u5408": "๐Ÿˆด", + "u55b6": "๐Ÿˆบ", + "u6307": "๐Ÿˆฏ", + "u6708": "๐Ÿˆท", + "u6709": "๐Ÿˆถ", + "u6e80": "๐Ÿˆต", + "u7121": "๐Ÿˆš", + "u7533": "๐Ÿˆธ", + "u7981": "๐Ÿˆฒ", + "u7a7a": "๐Ÿˆณ", + "umbrella2": "โ˜‚", + "umbrella": "โ˜”", + "unamused": "๐Ÿ˜’", + "underage": "๐Ÿ”ž", + "unicorn": "๐Ÿฆ„", + "united_nations": "๐Ÿ‡บ๐Ÿ‡ณ", + "unlock": "๐Ÿ”“", + "up": "๐Ÿ†™", + "upside_down": "๐Ÿ™ƒ", + "urn": "โšฑ", + "v": "โœŒ", + "v_tone1": "โœŒ๐Ÿป", + "v_tone2": "โœŒ๐Ÿผ", + "v_tone3": "โœŒ๐Ÿฝ", + "v_tone4": "โœŒ๐Ÿพ", + "v_tone5": "โœŒ๐Ÿฟ", + "vampire": "๐Ÿง›", + "vampire_tone1": "๐Ÿง›๐Ÿป", + "vampire_tone2": "๐Ÿง›๐Ÿผ", + "vampire_tone3": "๐Ÿง›๐Ÿฝ", + "vampire_tone4": "๐Ÿง›๐Ÿพ", + "vampire_tone5": "๐Ÿง›๐Ÿฟ", + "vertical_traffic_light": "๐Ÿšฆ", + "vhs": "๐Ÿ“ผ", + "vibration_mode": "๐Ÿ“ณ", + "video_camera": "๐Ÿ“น", + "video_game": "๐ŸŽฎ", + "violin": "๐ŸŽป", + "virgo": "โ™", + "volcano": "๐ŸŒ‹", + "volleyball": "๐Ÿ", + "vs": "๐Ÿ†š", + "vulcan": "๐Ÿ––", + "vulcan_tone1": "๐Ÿ––๐Ÿป", + "vulcan_tone2": "๐Ÿ––๐Ÿผ", + "vulcan_tone3": "๐Ÿ––๐Ÿฝ", + "vulcan_tone4": "๐Ÿ––๐Ÿพ", + "vulcan_tone5": "๐Ÿ––๐Ÿฟ", + "wales": "๐Ÿด๓ ง๓ ข๓ ท๓ ฌ๓ ณ๓ ฟ", + "waning_crescent_moon": "๐ŸŒ˜", + "waning_gibbous_moon": "๐ŸŒ–", + "warning": "โš ", + "wastebasket": "๐Ÿ—‘", + "watch": "โŒš", + "water_buffalo": "๐Ÿƒ", + "watermelon": "๐Ÿ‰", + "wave": "๐Ÿ‘‹", + "wave_tone1": "๐Ÿ‘‹๐Ÿป", + "wave_tone2": "๐Ÿ‘‹๐Ÿผ", + "wave_tone3": "๐Ÿ‘‹๐Ÿฝ", + "wave_tone4": "๐Ÿ‘‹๐Ÿพ", + "wave_tone5": "๐Ÿ‘‹๐Ÿฟ", + "wavy_dash": "ใ€ฐ", + "waxing_crescent_moon": "๐ŸŒ’", + "waxing_gibbous_moon": "๐ŸŒ”", + "wc": "๐Ÿšพ", + "weary": "๐Ÿ˜ฉ", + "wedding": "๐Ÿ’’", + "whale2": "๐Ÿ‹", + "whale": "๐Ÿณ", + "wheel_of_dharma": "โ˜ธ", + "wheelchair": "โ™ฟ", + "white_check_mark": "โœ…", + "white_circle": "โšช", + "white_flower": "๐Ÿ’ฎ", + "white_large_square": "โฌœ", + "white_medium_small_square": "โ—ฝ", + "white_medium_square": "โ—ป", + "white_small_square": "โ–ซ", + "white_square_button": "๐Ÿ”ณ", + "white_sun_cloud": "๐ŸŒฅ", + "white_sun_rain_cloud": "๐ŸŒฆ", + "white_sun_small_cloud": "๐ŸŒค", + "wilted_rose": "๐Ÿฅ€", + "wind_blowing_face": "๐ŸŒฌ", + "wind_chime": "๐ŸŽ", + "wine_glass": "๐Ÿท", + "wink": "๐Ÿ˜‰", + "wolf": "๐Ÿบ", + "woman": "๐Ÿ‘ฉ", + "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_biking": "๐Ÿšดโ™€", + "woman_biking_tone1": "๐Ÿšด๐Ÿปโ™€", + "woman_biking_tone2": "๐Ÿšด๐Ÿผโ™€", + "woman_biking_tone3": "๐Ÿšด๐Ÿฝโ™€", + "woman_biking_tone4": "๐Ÿšด๐Ÿพโ™€", + "woman_biking_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_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_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_face_massage": "๐Ÿ’†โ™€", + "woman_getting_face_massage_tone1": "๐Ÿ’†๐Ÿปโ™€", + "woman_getting_face_massage_tone2": "๐Ÿ’†๐Ÿผโ™€", + "woman_getting_face_massage_tone3": "๐Ÿ’†๐Ÿฝโ™€", + "woman_getting_face_massage_tone4": "๐Ÿ’†๐Ÿพโ™€", + "woman_getting_face_massage_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_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_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_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_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_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_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_student": "๐Ÿ‘ฉ๐ŸŽ“", + "woman_student_tone1": "๐Ÿ‘ฉ๐Ÿป๐ŸŽ“", + "woman_student_tone2": "๐Ÿ‘ฉ๐Ÿผ๐ŸŽ“", + "woman_student_tone3": "๐Ÿ‘ฉ๐Ÿฝ๐ŸŽ“", + "woman_student_tone4": "๐Ÿ‘ฉ๐Ÿพ๐ŸŽ“", + "woman_student_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_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_with_headscarf": "๐Ÿง•", + "woman_with_headscarf_tone1": "๐Ÿง•๐Ÿป", + "woman_with_headscarf_tone2": "๐Ÿง•๐Ÿผ", + "woman_with_headscarf_tone3": "๐Ÿง•๐Ÿฝ", + "woman_with_headscarf_tone4": "๐Ÿง•๐Ÿพ", + "woman_with_headscarf_tone5": "๐Ÿง•๐Ÿฟ", + "woman_zombie": "๐ŸงŸโ™€", + "womans_clothes": "๐Ÿ‘š", + "womans_hat": "๐Ÿ‘’", + "women_with_bunny_ears_partying": "๐Ÿ‘ฏโ™€", + "women_wrestling": "๐Ÿคผโ™€", + "womens": "๐Ÿšบ", + "worried": "๐Ÿ˜Ÿ", + "wrench": "๐Ÿ”ง", + "writing_hand": "โœ", + "writing_hand_tone1": "โœ๐Ÿป", + "writing_hand_tone2": "โœ๐Ÿผ", + "writing_hand_tone3": "โœ๐Ÿฝ", + "writing_hand_tone4": "โœ๐Ÿพ", + "writing_hand_tone5": "โœ๐Ÿฟ", + "x": "โŒ", + "yellow_heart": "๐Ÿ’›", + "yen": "๐Ÿ’ด", + "yin_yang": "โ˜ฏ", + "yum": "๐Ÿ˜‹", + "zap": "โšก", + "zebra": "๐Ÿฆ“", + "zero": "0โƒฃ", + "zipper_mouth": "๐Ÿค", + "zombie": "๐ŸงŸ", + "zzz": "๐Ÿ’ค" + }.get(sys.argv[1] if len(sys.argv) > 1 else "", "") +) \ No newline at end of file