diff --git a/gtk/emoji/convert-emoji.c b/gtk/emoji/convert-emoji.c index 3474259b76..49571b4157 100644 --- a/gtk/emoji/convert-emoji.c +++ b/gtk/emoji/convert-emoji.c @@ -23,7 +23,8 @@ gboolean parse_code (GVariantBuilder *b, - const char *code) + const char *code, + GString *name_key) { g_auto(GStrv) strv = NULL; int j; @@ -43,7 +44,12 @@ parse_code (GVariantBuilder *b, if (0x1f3fb <= u && u <= 0x1f3ff) g_variant_builder_add (b, "u", 0); else - g_variant_builder_add (b, "u", u); + { + g_variant_builder_add (b, "u", u); + if (j > 0) + g_string_append_c (name_key, '-'); + g_string_append_printf (name_key, "%x", u); + } } return TRUE; @@ -84,21 +90,56 @@ main (int argc, char *argv[]) JsonParser *parser; JsonNode *root; JsonArray *array; + JsonObject *ro; + JsonNode *node; + const char *name; + JsonObjectIter iter; GError *error = NULL; guint length, i; GVariantBuilder builder; GVariant *v; GString *s; GBytes *bytes; + GHashTable *names; + GString *name_key; - if (argc != 3) + if (argc != 4) { - g_print ("Usage: emoji-convert INPUT OUTPUT\n"); + g_print ("Usage: emoji-convert INPUT INPUT1 OUTPUT\n"); return 1; } parser = json_parser_new (); + if (!json_parser_load_from_file (parser, argv[2], &error)) + { + g_error ("%s", error->message); + return 1; + } + + root = json_parser_get_root (parser); + ro = json_node_get_object (root); + json_object_iter_init (&iter, ro); + + names = g_hash_table_new_full (g_str_hash, g_str_equal, g_free, g_free); + name_key = g_string_new (""); + + while (json_object_iter_next (&iter, &name, &node)) + { + JsonObject *obj = json_node_get_object (node); + const char *unicode; + const char *shortname; + + unicode = json_object_get_string_member (obj, "unicode"); + shortname = json_object_get_string_member (obj, "shortname"); + + g_hash_table_insert (names, g_strdup (unicode), g_strdup (shortname)); + } + + g_object_unref (parser); + + parser = json_parser_new (); + if (!json_parser_load_from_file (parser, argv[1], &error)) { g_error ("%s", error->message); @@ -109,7 +150,7 @@ main (int argc, char *argv[]) array = json_node_get_array (root); length = json_array_get_length (array); - g_variant_builder_init (&builder, G_VARIANT_TYPE ("a(aus)")); + g_variant_builder_init (&builder, G_VARIANT_TYPE ("a(auss)")); i = 0; while (i < length) { @@ -117,6 +158,7 @@ main (int argc, char *argv[]) JsonObject *obj = json_node_get_object (node); GVariantBuilder b1; const char *name; + const char *shortname; char *code; int j; gboolean skip; @@ -164,15 +206,18 @@ main (int argc, char *argv[]) i++; } - if (!parse_code (&b1, code)) + g_string_set_size (name_key, 0); + if (!parse_code (&b1, code, name_key)) return 1; - g_variant_builder_add (&builder, "(aus)", &b1, name); + shortname = g_hash_table_lookup (names, name_key->str); + + g_variant_builder_add (&builder, "(auss)", &b1, name, shortname ? shortname : ""); } v = g_variant_builder_end (&builder); bytes = g_variant_get_data_as_bytes (v); - if (!g_file_set_contents (argv[2], g_bytes_get_data (bytes, NULL), g_bytes_get_size (bytes), &error)) + if (!g_file_set_contents (argv[3], g_bytes_get_data (bytes, NULL), g_bytes_get_size (bytes), &error)) { g_error ("%s", error->message); return 1; diff --git a/gtk/emoji/emoji.data b/gtk/emoji/emoji.data index 12db9d4c40..fdf919d66f 100644 Binary files a/gtk/emoji/emoji.data and b/gtk/emoji/emoji.data differ diff --git a/gtk/emoji/emoji1.json b/gtk/emoji/emoji1.json new file mode 100644 index 0000000000..bdeceda8ae --- /dev/null +++ b/gtk/emoji/emoji1.json @@ -0,0 +1,34181 @@ +{ + "grinning" : { + "unicode" : "1f600", + "unicode_alternates" : "", + "name" : "grinning face", + "shortname" : ":grinning:", + "category" : "people", + "emoji_order" : "1", + "aliases" : [ + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "happy", + "joy", + "smile", + "grin", + "smiling", + "smiley", + "person" + ] + }, + "grimacing" : { + "unicode" : "1f62c", + "unicode_alternates" : "", + "name" : "grimacing face", + "shortname" : ":grimacing:", + "category" : "people", + "emoji_order" : "2", + "aliases" : [ + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "teeth", + "grimace", + "disapprove", + "pain", + "person" + ] + }, + "grin" : { + "unicode" : "1f601", + "unicode_alternates" : "", + "name" : "grinning face with smiling eyes", + "shortname" : ":grin:", + "category" : "people", + "emoji_order" : "3", + "aliases" : [ + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "happy", + "joy", + "smile", + "grin", + "smiley", + "eye", + "person" + ] + }, + "joy" : { + "unicode" : "1f602", + "unicode_alternates" : "", + "name" : "face with tears of joy", + "shortname" : ":joy:", + "category" : "people", + "emoji_order" : "4", + "aliases" : [ + ], + "aliases_ascii" : [ + ":')", + ":'-)" + ], + "keywords" : [ + "cry", + "haha", + "happy", + "weep", + "person", + "tear" + ] + }, + "smiley" : { + "unicode" : "1f603", + "unicode_alternates" : "", + "name" : "smiling face with open mouth", + "shortname" : ":smiley:", + "category" : "people", + "emoji_order" : "5", + "aliases" : [ + ], + "aliases_ascii" : [ + ":D", + ":-D", + "=D" + ], + "keywords" : [ + "haha", + "happy", + "joy", + "smile", + "smiley", + "person" + ] + }, + "smile" : { + "unicode" : "1f604", + "unicode_alternates" : "", + "name" : "smiling face with open mouth and smiling eyes", + "shortname" : ":smile:", + "category" : "people", + "emoji_order" : "6", + "aliases" : [ + ], + "aliases_ascii" : [ + ":)", + ":-)", + "=]", + "=)", + ":]" + ], + "keywords" : [ + "funny", + "haha", + "happy", + "joy", + "laugh", + "smile", + "smiley", + "eye", + "person" + ] + }, + "sweat_smile" : { + "unicode" : "1f605", + "unicode_alternates" : "", + "name" : "smiling face with open mouth and cold sweat", + "shortname" : ":sweat_smile:", + "category" : "people", + "emoji_order" : "7", + "aliases" : [ + ], + "aliases_ascii" : [ + "':)", + "':-)", + "'=)", + "':D", + "':-D", + "'=D" + ], + "keywords" : [ + "happy", + "hot", + "perspiration", + "smile", + "person" + ] + }, + "laughing" : { + "unicode" : "1f606", + "unicode_alternates" : "", + "name" : "smiling face with open mouth and tightly-closed eyes", + "shortname" : ":laughing:", + "category" : "people", + "emoji_order" : "8", + "aliases" : [ + ":satisfied:" + ], + "aliases_ascii" : [ + ">:)", + ">;)", + ">:-)", + ">=)" + ], + "keywords" : [ + "happy", + "joy", + "lol", + "laughing", + "laugh", + "person", + "satisfied", + "smile" + ] + }, + "innocent" : { + "unicode" : "1f607", + "unicode_alternates" : "", + "name" : "smiling face with halo", + "shortname" : ":innocent:", + "category" : "people", + "emoji_order" : "9", + "aliases" : [ + ], + "aliases_ascii" : [ + "O:-)", + "0:-3", + "0:3", + "0:-)", + "0:)", + "0;^)", + "O:)", + "O;-)", + "O=)", + "0;-)", + "O:-3", + "O:3" + ], + "keywords" : [ + "angel", + "innocent", + "ring", + "circle", + "heaven", + "fairy tale", + "fantasy", + "person", + "smile" + ] + }, + "wink" : { + "unicode" : "1f609", + "unicode_alternates" : "", + "name" : "winking face", + "shortname" : ":wink:", + "category" : "people", + "emoji_order" : "10", + "aliases" : [ + ], + "aliases_ascii" : [ + ";)", + ";-)", + "*-)", + "*)", + ";-]", + ";]", + ";D", + ";^)" + ], + "keywords" : [ + "happy", + "mischievous", + "secret", + "wink", + "friendly", + "joke", + "person" + ] + }, + "blush" : { + "unicode" : "1f60a", + "unicode_alternates" : "", + "name" : "smiling face with smiling eyes", + "shortname" : ":blush:", + "category" : "people", + "emoji_order" : "11", + "aliases" : [ + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "crush", + "embarrassed", + "flushed", + "happy", + "shy", + "smile", + "smiley", + "blush", + "eye", + "person" + ] + }, + "slight_smile" : { + "unicode" : "1f642", + "unicode_alternates" : "", + "name" : "slightly smiling face", + "shortname" : ":slight_smile:", + "category" : "people", + "emoji_order" : "12", + "aliases" : [ + ":slightly_smiling_face:" + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "slight", + "smile", + "happy", + "person" + ] + }, + "upside_down" : { + "unicode" : "1f643", + "unicode_alternates" : "", + "name" : "upside-down face", + "shortname" : ":upside_down:", + "category" : "people", + "emoji_order" : "13", + "aliases" : [ + ":upside_down_face:" + ], + "aliases_ascii" : [ + ], + "keywords" : [ + ] + }, + "relaxed" : { + "unicode" : "263a", + "unicode_alternates" : "263a-fe0f", + "name" : "white smiling face", + "shortname" : ":relaxed:", + "category" : "people", + "emoji_order" : "14", + "aliases" : [ + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "blush", + "happiness", + "massage", + "smile", + "relaxed", + "outlined", + "person" + ] + }, + "yum" : { + "unicode" : "1f60b", + "unicode_alternates" : "", + "name" : "face savouring delicious food", + "shortname" : ":yum:", + "category" : "people", + "emoji_order" : "15", + "aliases" : [ + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "happy", + "joy", + "smile", + "tongue", + "eat", + "yummy", + "yum", + "tasty", + "savory", + "person", + "um" + ] + }, + "relieved" : { + "unicode" : "1f60c", + "unicode_alternates" : "", + "name" : "relieved face", + "shortname" : ":relieved:", + "category" : "people", + "emoji_order" : "16", + "aliases" : [ + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "happiness", + "massage", + "relaxed", + "satisfied", + "phew", + "relief", + "person" + ] + }, + "heart_eyes" : { + "unicode" : "1f60d", + "unicode_alternates" : "", + "name" : "smiling face with heart-shaped eyes", + "shortname" : ":heart_eyes:", + "category" : "people", + "emoji_order" : "17", + "aliases" : [ + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "affection", + "crush", + "infatuation", + "like", + "valentines", + "heart", + "lovestruck", + "love", + "flirt", + "smile", + "eye", + "person" + ] + }, + "kissing_heart" : { + "unicode" : "1f618", + "unicode_alternates" : "", + "name" : "face throwing a kiss", + "shortname" : ":kissing_heart:", + "category" : "people", + "emoji_order" : "18", + "aliases" : [ + ], + "aliases_ascii" : [ + ":*", + ":-*", + "=*", + ":^*" + ], + "keywords" : [ + "affection", + "infatuation", + "blowing kiss", + "heart", + "lips", + "like", + "love", + "valentines", + "person" + ] + }, + "kissing" : { + "unicode" : "1f617", + "unicode_alternates" : "", + "name" : "kissing face", + "shortname" : ":kissing:", + "category" : "people", + "emoji_order" : "19", + "aliases" : [ + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "3", + "infatuation", + "like", + "love", + "valentines", + "kiss", + "pucker", + "lips", + "smooch", + "person" + ] + }, + "kissing_smiling_eyes" : { + "unicode" : "1f619", + "unicode_alternates" : "", + "name" : "kissing face with smiling eyes", + "shortname" : ":kissing_smiling_eyes:", + "category" : "people", + "emoji_order" : "20", + "aliases" : [ + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "affection", + "infatuation", + "valentines", + "kiss", + "smile", + "pucker", + "lips", + "smooch", + "eye", + "person" + ] + }, + "kissing_closed_eyes" : { + "unicode" : "1f61a", + "unicode_alternates" : "", + "name" : "kissing face with closed eyes", + "shortname" : ":kissing_closed_eyes:", + "category" : "people", + "emoji_order" : "21", + "aliases" : [ + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "affection", + "infatuation", + "like", + "love", + "valentines", + "kiss", + "passion", + "puckered", + "heart", + "smooch", + "eye", + "person" + ] + }, + "stuck_out_tongue_winking_eye" : { + "unicode" : "1f61c", + "unicode_alternates" : "", + "name" : "face with stuck-out tongue and winking eye", + "shortname" : ":stuck_out_tongue_winking_eye:", + "category" : "people", + "emoji_order" : "22", + "aliases" : [ + ], + "aliases_ascii" : [ + ">:P", + "X-P", + "x-p" + ], + "keywords" : [ + "childish", + "mischievous", + "playful", + "prank", + "wink", + "kidding", + "silly", + "playful", + "crazy", + "joke", + "person" + ] + }, + "stuck_out_tongue_closed_eyes" : { + "unicode" : "1f61d", + "unicode_alternates" : "", + "name" : "face with stuck-out tongue and tightly-closed eyes", + "shortname" : ":stuck_out_tongue_closed_eyes:", + "category" : "people", + "emoji_order" : "23", + "aliases" : [ + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "mischievous", + "playful", + "prank", + "kidding", + "silly", + "playful", + "ecstatic", + "eye", + "horrible", + "person", + "taste" + ] + }, + "stuck_out_tongue" : { + "unicode" : "1f61b", + "unicode_alternates" : "", + "name" : "face with stuck-out tongue", + "shortname" : ":stuck_out_tongue:", + "category" : "people", + "emoji_order" : "24", + "aliases" : [ + ], + "aliases_ascii" : [ + ":P", + ":-P", + "=P", + ":-p", + ":p", + "=p", + ":-Þ", + ":Þ", + ":þ", + ":-þ", + ":-b", + ":b", + "d:" + ], + "keywords" : [ + "childish", + "mischievous", + "playful", + "prank", + "silly", + "playful", + "cheeky", + "person" + ] + }, + "money_mouth" : { + "unicode" : "1f911", + "unicode_alternates" : "", + "name" : "money-mouth face", + "shortname" : ":money_mouth:", + "category" : "people", + "emoji_order" : "25", + "aliases" : [ + ":money_mouth_face:" + ], + "aliases_ascii" : [ + ], + "keywords" : [ + ] + }, + "nerd" : { + "unicode" : "1f913", + "unicode_alternates" : "", + "name" : "nerd face", + "shortname" : ":nerd:", + "category" : "people", + "emoji_order" : "26", + "aliases" : [ + ":nerd_face:" + ], + "aliases_ascii" : [ + ], + "keywords" : [ + ] + }, + "sunglasses" : { + "unicode" : "1f60e", + "unicode_alternates" : "", + "name" : "smiling face with sunglasses", + "shortname" : ":sunglasses:", + "category" : "people", + "emoji_order" : "27", + "aliases" : [ + ], + "aliases_ascii" : [ + "B-)", + "B)", + "8)", + "8-)", + "B-D", + "8-D" + ], + "keywords" : [ + "cool", + "sun", + "glasses", + "sunny", + "smooth", + "bright", + "eye", + "eyewear", + "person", + "smile", + "weather" + ] + }, + "hugging" : { + "unicode" : "1f917", + "unicode_alternates" : "", + "name" : "hugging face", + "shortname" : ":hugging:", + "category" : "people", + "emoji_order" : "28", + "aliases" : [ + ":hugging_face:" + ], + "aliases_ascii" : [ + ], + "keywords" : [ + ] + }, + "smirk" : { + "unicode" : "1f60f", + "unicode_alternates" : "", + "name" : "smirking face", + "shortname" : ":smirk:", + "category" : "people", + "emoji_order" : "29", + "aliases" : [ + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "mean", + "prank", + "smile", + "smug", + "smirk", + "half-smile", + "conceited", + "person" + ] + }, + "no_mouth" : { + "unicode" : "1f636", + "unicode_alternates" : "", + "name" : "face without mouth", + "shortname" : ":no_mouth:", + "category" : "people", + "emoji_order" : "30", + "aliases" : [ + ], + "aliases_ascii" : [ + ":-X", + ":X", + ":-#", + ":#", + "=X", + "=x", + ":x", + ":-x", + "=#" + ], + "keywords" : [ + "hellokitty", + "silent", + "vapid", + "person", + "quiet" + ] + }, + "neutral_face" : { + "unicode" : "1f610", + "unicode_alternates" : "", + "name" : "neutral face", + "shortname" : ":neutral_face:", + "category" : "people", + "emoji_order" : "31", + "aliases" : [ + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "indifference", + "objective", + "impartial", + "blank", + "deadpan", + "person" + ] + }, + "expressionless" : { + "unicode" : "1f611", + "unicode_alternates" : "", + "name" : "expressionless face", + "shortname" : ":expressionless:", + "category" : "people", + "emoji_order" : "32", + "aliases" : [ + ], + "aliases_ascii" : [ + "-_-", + "-__-", + "-___-" + ], + "keywords" : [ + "blank", + "void", + "vapid", + "without expression", + "indifferent", + "inexpressive", + "person", + "unexpressive" + ] + }, + "unamused" : { + "unicode" : "1f612", + "unicode_alternates" : "", + "name" : "unamused face", + "shortname" : ":unamused:", + "category" : "people", + "emoji_order" : "33", + "aliases" : [ + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "bored", + "indifference", + "serious", + "straight face", + "not amused", + "depressed", + "unhappy", + "disapprove", + "lame", + "person" + ] + }, + "rolling_eyes" : { + "unicode" : "1f644", + "unicode_alternates" : "", + "name" : "face with rolling eyes", + "shortname" : ":rolling_eyes:", + "category" : "people", + "emoji_order" : "34", + "aliases" : [ + ":face_with_rolling_eyes:" + ], + "aliases_ascii" : [ + ], + "keywords" : [ + ] + }, + "thinking" : { + "unicode" : "1f914", + "unicode_alternates" : "", + "name" : "thinking face", + "shortname" : ":thinking:", + "category" : "people", + "emoji_order" : "35", + "aliases" : [ + ":thinking_face:" + ], + "aliases_ascii" : [ + ], + "keywords" : [ + ] + }, + "flushed" : { + "unicode" : "1f633", + "unicode_alternates" : "", + "name" : "flushed face", + "shortname" : ":flushed:", + "category" : "people", + "emoji_order" : "36", + "aliases" : [ + ], + "aliases_ascii" : [ + ":$", + "=$" + ], + "keywords" : [ + "blush", + "flattered", + "flush", + "blush", + "red", + "pink", + "cheeks", + "shy", + "dazed", + "person" + ] + }, + "disappointed" : { + "unicode" : "1f61e", + "unicode_alternates" : "", + "name" : "disappointed face", + "shortname" : ":disappointed:", + "category" : "people", + "emoji_order" : "37", + "aliases" : [ + ], + "aliases_ascii" : [ + ">:[", + ":-(", + ":(", + ":-[", + ":[", + "=(" + ], + "keywords" : [ + "disappoint", + "frown", + "depressed", + "discouraged", + "sad", + "upset", + "person" + ] + }, + "worried" : { + "unicode" : "1f61f", + "unicode_alternates" : "", + "name" : "worried face", + "shortname" : ":worried:", + "category" : "people", + "emoji_order" : "38", + "aliases" : [ + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "concern", + "anxious", + "distressed", + "nervous", + "tense", + "person" + ] + }, + "angry" : { + "unicode" : "1f620", + "unicode_alternates" : "", + "name" : "angry face", + "shortname" : ":angry:", + "category" : "people", + "emoji_order" : "39", + "aliases" : [ + ], + "aliases_ascii" : [ + ">:(", + ">:-(", + ":@" + ], + "keywords" : [ + "livid", + "mad", + "vexed", + "irritated", + "annoyed", + "frustrated", + "person" + ] + }, + "rage" : { + "unicode" : "1f621", + "unicode_alternates" : "", + "name" : "pouting face", + "shortname" : ":rage:", + "category" : "people", + "emoji_order" : "40", + "aliases" : [ + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "angry", + "despise", + "hate", + "mad", + "pout", + "anger", + "rage", + "irate", + "person", + "red" + ] + }, + "pensive" : { + "unicode" : "1f614", + "unicode_alternates" : "", + "name" : "pensive face", + "shortname" : ":pensive:", + "category" : "people", + "emoji_order" : "41", + "aliases" : [ + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "okay", + "sad", + "thoughtful", + "think", + "reflective", + "wistful", + "meditate", + "serious", + "dejected", + "person" + ] + }, + "confused" : { + "unicode" : "1f615", + "unicode_alternates" : "", + "name" : "confused face", + "shortname" : ":confused:", + "category" : "people", + "emoji_order" : "42", + "aliases" : [ + ], + "aliases_ascii" : [ + ">:\\", + ">:/", + ":-/", + ":-.", + ":/", + ":\\", + "=/", + "=\\", + ":L", + "=L" + ], + "keywords" : [ + "daze", + "perplex", + "puzzle", + "indifference", + "skeptical", + "undecided", + "uneasy", + "hesitant", + "person" + ] + }, + "slight_frown" : { + "unicode" : "1f641", + "unicode_alternates" : "", + "name" : "slightly frowning face", + "shortname" : ":slight_frown:", + "category" : "people", + "emoji_order" : "43", + "aliases" : [ + ":slightly_frowning_face:" + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "slight", + "frown", + "unhappy", + "disappointed", + "person" + ] + }, + "frowning2" : { + "unicode" : "2639", + "unicode_alternates" : "2639-fe0f", + "name" : "white frowning face", + "shortname" : ":frowning2:", + "category" : "people", + "emoji_order" : "44", + "aliases" : [ + ":white_frowning_face:" + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "frown", + "person" + ] + }, + "persevere" : { + "unicode" : "1f623", + "unicode_alternates" : "", + "name" : "persevering face", + "shortname" : ":persevere:", + "category" : "people", + "emoji_order" : "45", + "aliases" : [ + ], + "aliases_ascii" : [ + ">.<" + ], + "keywords" : [ + "endure", + "persevere", + "no", + "sick", + "upset", + "person" + ] + }, + "confounded" : { + "unicode" : "1f616", + "unicode_alternates" : "", + "name" : "confounded face", + "shortname" : ":confounded:", + "category" : "people", + "emoji_order" : "46", + "aliases" : [ + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "confused", + "sick", + "unwell", + "amaze", + "perplex", + "puzzle", + "mystify", + "person" + ] + }, + "tired_face" : { + "unicode" : "1f62b", + "unicode_alternates" : "", + "name" : "tired face", + "shortname" : ":tired_face:", + "category" : "people", + "emoji_order" : "47", + "aliases" : [ + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "frustrated", + "sick", + "upset", + "whine", + "exhausted", + "sleepy", + "person" + ] + }, + "weary" : { + "unicode" : "1f629", + "unicode_alternates" : "", + "name" : "weary face", + "shortname" : ":weary:", + "category" : "people", + "emoji_order" : "48", + "aliases" : [ + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "frustrated", + "sad", + "sleepy", + "tired", + "tiredness", + "study", + "finals", + "school", + "exhausted", + "person" + ] + }, + "triumph" : { + "unicode" : "1f624", + "unicode_alternates" : "", + "name" : "face with look of triumph", + "shortname" : ":triumph:", + "category" : "people", + "emoji_order" : "49", + "aliases" : [ + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "gas", + "phew", + "steam", + "breath", + "person", + "won" + ] + }, + "open_mouth" : { + "unicode" : "1f62e", + "unicode_alternates" : "", + "name" : "face with open mouth", + "shortname" : ":open_mouth:", + "category" : "people", + "emoji_order" : "50", + "aliases" : [ + ], + "aliases_ascii" : [ + ":-O", + ":O", + ":-o", + ":o", + "O_O", + ">:O" + ], + "keywords" : [ + "impressed", + "jaw", + "gapping", + "surprise", + "wow", + "person", + "sympathy" + ] + }, + "scream" : { + "unicode" : "1f631", + "unicode_alternates" : "", + "name" : "face screaming in fear", + "shortname" : ":scream:", + "category" : "people", + "emoji_order" : "51", + "aliases" : [ + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "munch", + "scream", + "painting", + "artist", + "alien", + "fearful", + "person", + "scared" + ] + }, + "fearful" : { + "unicode" : "1f628", + "unicode_alternates" : "", + "name" : "fearful face", + "shortname" : ":fearful:", + "category" : "people", + "emoji_order" : "52", + "aliases" : [ + ], + "aliases_ascii" : [ + "D:" + ], + "keywords" : [ + "nervous", + "oops", + "scared", + "terrified", + "fear", + "frightened", + "horrified", + "person" + ] + }, + "cold_sweat" : { + "unicode" : "1f630", + "unicode_alternates" : "", + "name" : "face with open mouth and cold sweat", + "shortname" : ":cold_sweat:", + "category" : "people", + "emoji_order" : "53", + "aliases" : [ + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "nervous", + "exasperated", + "frustrated", + "blue", + "person", + "rushed" + ] + }, + "hushed" : { + "unicode" : "1f62f", + "unicode_alternates" : "", + "name" : "hushed face", + "shortname" : ":hushed:", + "category" : "people", + "emoji_order" : "54", + "aliases" : [ + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "woo", + "quiet", + "hush", + "whisper", + "silent", + "person", + "stunned", + "surprised" + ] + }, + "frowning" : { + "unicode" : "1f626", + "unicode_alternates" : "", + "name" : "frowning face with open mouth", + "shortname" : ":frowning:", + "category" : "people", + "emoji_order" : "55", + "aliases" : [ + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "aw", + "frown", + "sad", + "pout", + "sulk", + "glower", + "person" + ] + }, + "anguished" : { + "unicode" : "1f627", + "unicode_alternates" : "", + "name" : "anguished face", + "shortname" : ":anguished:", + "category" : "people", + "emoji_order" : "56", + "aliases" : [ + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "nervous", + "stunned", + "pain", + "anguish", + "ouch", + "misery", + "distress", + "grief", + "person" + ] + }, + "cry" : { + "unicode" : "1f622", + "unicode_alternates" : "", + "name" : "crying face", + "shortname" : ":cry:", + "category" : "people", + "emoji_order" : "57", + "aliases" : [ + ], + "aliases_ascii" : [ + ":'(", + ":'-(", + ";(", + ";-(" + ], + "keywords" : [ + "sad", + "cry", + "tear", + "weep", + "person" + ] + }, + "disappointed_relieved" : { + "unicode" : "1f625", + "unicode_alternates" : "", + "name" : "disappointed but relieved face", + "shortname" : ":disappointed_relieved:", + "category" : "people", + "emoji_order" : "58", + "aliases" : [ + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "nervous", + "phew", + "sweat", + "relief", + "person", + "whew" + ] + }, + "sleepy" : { + "unicode" : "1f62a", + "unicode_alternates" : "", + "name" : "sleepy face", + "shortname" : ":sleepy:", + "category" : "people", + "emoji_order" : "59", + "aliases" : [ + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "rest", + "tired", + "exhausted", + "person", + "sleep" + ] + }, + "sweat" : { + "unicode" : "1f613", + "unicode_alternates" : "", + "name" : "face with cold sweat", + "shortname" : ":sweat:", + "category" : "people", + "emoji_order" : "60", + "aliases" : [ + ], + "aliases_ascii" : [ + "':(", + "':-(", + "'=(" + ], + "keywords" : [ + "sick", + "anxious", + "worried", + "clammy", + "diaphoresis", + "hot", + "person" + ] + }, + "sob" : { + "unicode" : "1f62d", + "unicode_alternates" : "", + "name" : "loudly crying face", + "shortname" : ":sob:", + "category" : "people", + "emoji_order" : "61", + "aliases" : [ + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "cry", + "sad", + "tears", + "upset", + "sob", + "melancholy", + "morn", + "somber", + "hurt", + "person", + "tear" + ] + }, + "dizzy_face" : { + "unicode" : "1f635", + "unicode_alternates" : "", + "name" : "dizzy face", + "shortname" : ":dizzy_face:", + "category" : "people", + "emoji_order" : "62", + "aliases" : [ + ], + "aliases_ascii" : [ + "#-)", + "#)", + "%-)", + "%)", + "X)", + "X-)" + ], + "keywords" : [ + "drunk", + "inebriated", + "spent", + "unconscious", + "xox", + "buzzed", + "person" + ] + }, + "astonished" : { + "unicode" : "1f632", + "unicode_alternates" : "", + "name" : "astonished face", + "shortname" : ":astonished:", + "category" : "people", + "emoji_order" : "63", + "aliases" : [ + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "xox", + "shocked", + "surprise", + "person", + "totally" + ] + }, + "zipper_mouth" : { + "unicode" : "1f910", + "unicode_alternates" : "", + "name" : "zipper-mouth face", + "shortname" : ":zipper_mouth:", + "category" : "people", + "emoji_order" : "64", + "aliases" : [ + ":zipper_mouth_face:" + ], + "aliases_ascii" : [ + ], + "keywords" : [ + ] + }, + "mask" : { + "unicode" : "1f637", + "unicode_alternates" : "", + "name" : "face with medical mask", + "shortname" : ":mask:", + "category" : "people", + "emoji_order" : "65", + "aliases" : [ + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "ill", + "sick", + "virus", + "flu", + "cold", + "doctor", + "medicine", + "person" + ] + }, + "thermometer_face" : { + "unicode" : "1f912", + "unicode_alternates" : "", + "name" : "face with thermometer", + "shortname" : ":thermometer_face:", + "category" : "people", + "emoji_order" : "66", + "aliases" : [ + ":face_with_thermometer:" + ], + "aliases_ascii" : [ + ], + "keywords" : [ + ] + }, + "head_bandage" : { + "unicode" : "1f915", + "unicode_alternates" : "", + "name" : "face with head-bandage", + "shortname" : ":head_bandage:", + "category" : "people", + "emoji_order" : "67", + "aliases" : [ + ":face_with_head_bandage:" + ], + "aliases_ascii" : [ + ], + "keywords" : [ + ] + }, + "sleeping" : { + "unicode" : "1f634", + "unicode_alternates" : "", + "name" : "sleeping face", + "shortname" : ":sleeping:", + "category" : "people", + "emoji_order" : "68", + "aliases" : [ + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "sleepy", + "tired", + "sleep", + "sleepy", + "snore", + "person", + "zzz" + ] + }, + "zzz" : { + "unicode" : "1f4a4", + "unicode_alternates" : "", + "name" : "sleeping symbol", + "shortname" : ":zzz:", + "category" : "people", + "emoji_order" : "69", + "aliases" : [ + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "sleepy", + "tired", + "snooze", + "comic", + "emotion", + "person", + "sleep", + "word", + "zzz" + ] + }, + "poop" : { + "unicode" : "1f4a9", + "unicode_alternates" : "", + "name" : "pile of poo", + "shortname" : ":poop:", + "category" : "people", + "emoji_order" : "70", + "aliases" : [ + ":shit:", + ":hankey:", + ":poo:" + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "poop", + "shit", + "shitface", + "turd", + "comic", + "dung", + "face", + "monster", + "nature", + "object" + ] + }, + "smiling_imp" : { + "unicode" : "1f608", + "unicode_alternates" : "", + "name" : "smiling face with horns", + "shortname" : ":smiling_imp:", + "category" : "people", + "emoji_order" : "71", + "aliases" : [ + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "devil", + "impish", + "trouble", + "imp", + "fairy tale", + "fantasy", + "person", + "smile" + ] + }, + "imp" : { + "unicode" : "1f47f", + "unicode_alternates" : "", + "name" : "imp", + "shortname" : ":imp:", + "category" : "people", + "emoji_order" : "72", + "aliases" : [ + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "angry", + "devil", + "evil", + "horns", + "cute", + "face", + "fairy tale", + "fantasy", + "person" + ] + }, + "japanese_ogre" : { + "unicode" : "1f479", + "unicode_alternates" : "", + "name" : "japanese ogre", + "shortname" : ":japanese_ogre:", + "category" : "people", + "emoji_order" : "73", + "aliases" : [ + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "monster", + "oni", + "demon", + "troll", + "folklore", + "monster", + "devil", + "mask", + "theater", + "horns", + "teeth", + "creature", + "face", + "fairy tale", + "fantasy", + "person" + ] + }, + "japanese_goblin" : { + "unicode" : "1f47a", + "unicode_alternates" : "", + "name" : "japanese goblin", + "shortname" : ":japanese_goblin:", + "category" : "people", + "emoji_order" : "74", + "aliases" : [ + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "evil", + "mask", + "red", + "tengu", + "supernatural", + "avian", + "demon", + "mask", + "theater", + "nose", + "frown", + "mustache", + "anger", + "frustration", + "creature", + "face", + "fairy tale", + "fantasy", + "monster", + "person" + ] + }, + "skull" : { + "unicode" : "1f480", + "unicode_alternates" : "", + "name" : "skull", + "shortname" : ":skull:", + "category" : "people", + "emoji_order" : "75", + "aliases" : [ + ":skeleton:" + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "dead", + "skeleton", + "dying", + "death", + "body", + "face", + "fairy tale", + "monster", + "person" + ] + }, + "ghost" : { + "unicode" : "1f47b", + "unicode_alternates" : "", + "name" : "ghost", + "shortname" : ":ghost:", + "category" : "people", + "emoji_order" : "76", + "aliases" : [ + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "halloween", + "creature", + "face", + "fairy tale", + "fantasy", + "monster", + "person" + ] + }, + "alien" : { + "unicode" : "1f47d", + "unicode_alternates" : "", + "name" : "extraterrestrial alien", + "shortname" : ":alien:", + "category" : "people", + "emoji_order" : "77", + "aliases" : [ + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "UFO", + "paul", + "ufo", + "creature", + "face", + "fairy tale", + "fantasy", + "monster", + "nature", + "person", + "space" + ] + }, + "robot" : { + "unicode" : "1f916", + "unicode_alternates" : "", + "name" : "robot face", + "shortname" : ":robot:", + "category" : "people", + "emoji_order" : "78", + "aliases" : [ + ":robot_face:" + ], + "aliases_ascii" : [ + ], + "keywords" : [ + ] + }, + "smiley_cat" : { + "unicode" : "1f63a", + "unicode_alternates" : "", + "name" : "smiling cat face with open mouth", + "shortname" : ":smiley_cat:", + "category" : "people", + "emoji_order" : "79", + "aliases" : [ + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "animal", + "cats", + "happy", + "smile", + "smiley", + "nature" + ] + }, + "smile_cat" : { + "unicode" : "1f638", + "unicode_alternates" : "", + "name" : "grinning cat face with smiling eyes", + "shortname" : ":smile_cat:", + "category" : "people", + "emoji_order" : "80", + "aliases" : [ + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "animal", + "cats", + "smile", + "grin", + "eye", + "nature" + ] + }, + "joy_cat" : { + "unicode" : "1f639", + "unicode_alternates" : "", + "name" : "cat face with tears of joy", + "shortname" : ":joy_cat:", + "category" : "people", + "emoji_order" : "81", + "aliases" : [ + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "animal", + "cats", + "haha", + "happy", + "tears", + "happy", + "tears", + "cry", + "joy", + "nature", + "tear" + ] + }, + "heart_eyes_cat" : { + "unicode" : "1f63b", + "unicode_alternates" : "", + "name" : "smiling cat face with heart-shaped eyes", + "shortname" : ":heart_eyes_cat:", + "category" : "people", + "emoji_order" : "82", + "aliases" : [ + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "affection", + "animal", + "cats", + "like", + "love", + "valentines", + "lovestruck", + "love", + "heart", + "eye", + "nature", + "smile" + ] + }, + "smirk_cat" : { + "unicode" : "1f63c", + "unicode_alternates" : "", + "name" : "cat face with wry smile", + "shortname" : ":smirk_cat:", + "category" : "people", + "emoji_order" : "83", + "aliases" : [ + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "animal", + "cats", + "smirk", + "smirking", + "confident", + "confidence", + "ironic", + "nature" + ] + }, + "kissing_cat" : { + "unicode" : "1f63d", + "unicode_alternates" : "", + "name" : "kissing cat face with closed eyes", + "shortname" : ":kissing_cat:", + "category" : "people", + "emoji_order" : "84", + "aliases" : [ + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "animal", + "cats", + "passion", + "kiss", + "puckered", + "heart", + "love", + "eye", + "nature" + ] + }, + "scream_cat" : { + "unicode" : "1f640", + "unicode_alternates" : "", + "name" : "weary cat face", + "shortname" : ":scream_cat:", + "category" : "people", + "emoji_order" : "85", + "aliases" : [ + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "animal", + "cats", + "munch", + "sleepy", + "tired", + "tiredness", + "study", + "finals", + "school", + "exhausted", + "scream", + "painting", + "artist", + "nature", + "oh", + "surprised" + ] + }, + "crying_cat_face" : { + "unicode" : "1f63f", + "unicode_alternates" : "", + "name" : "crying cat face", + "shortname" : ":crying_cat_face:", + "category" : "people", + "emoji_order" : "86", + "aliases" : [ + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "animal", + "cats", + "sad", + "tears", + "weep", + "cry", + "sob", + "tears", + "sad", + "melancholy", + "morn", + "somber", + "hurt", + "nature", + "tear" + ] + }, + "pouting_cat" : { + "unicode" : "1f63e", + "unicode_alternates" : "", + "name" : "pouting cat face", + "shortname" : ":pouting_cat:", + "category" : "people", + "emoji_order" : "87", + "aliases" : [ + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "animal", + "cats", + "pout", + "annoyed", + "miffed", + "glower", + "frown", + "nature" + ] + }, + "raised_hands" : { + "unicode" : "1f64c", + "unicode_alternates" : "", + "name" : "person raising both hands in celebration", + "shortname" : ":raised_hands:", + "category" : "people", + "emoji_order" : "88", + "aliases" : [ + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "gesture", + "hooray", + "winning", + "woot", + "yay", + "banzai", + "raised", + "body", + "hand" + ] + }, + "clap" : { + "unicode" : "1f44f", + "unicode_alternates" : "", + "name" : "clapping hands sign", + "shortname" : ":clap:", + "category" : "people", + "emoji_order" : "89", + "aliases" : [ + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "applause", + "congrats", + "praise", + "clap", + "appreciation", + "approval", + "sound", + "encouragement", + "enthusiasm", + "body", + "hand", + "person" + ] + }, + "wave" : { + "unicode" : "1f44b", + "unicode_alternates" : "", + "name" : "waving hand sign", + "shortname" : ":wave:", + "category" : "people", + "emoji_order" : "90", + "aliases" : [ + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "farewell", + "gesture", + "goodbye", + "solong", + "hi", + "wave", + "body", + "person" + ] + }, + "thumbsup" : { + "unicode" : "1f44d", + "unicode_alternates" : "", + "name" : "thumbs up sign", + "shortname" : ":thumbsup:", + "category" : "people", + "emoji_order" : "91", + "aliases" : [ + ":+1:", + ":thumbup:" + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "cool", + "hand", + "like", + "yes", + "+1", + "body", + "person", + "thumb", + "thumbs up" + ] + }, + "thumbsdown" : { + "unicode" : "1f44e", + "unicode_alternates" : "", + "name" : "thumbs down sign", + "shortname" : ":thumbsdown:", + "category" : "people", + "emoji_order" : "92", + "aliases" : [ + ":-1:", + ":thumbdown:" + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "hand", + "no", + "-1", + "body", + "person", + "thumb", + "thumbs down" + ] + }, + "punch" : { + "unicode" : "1f44a", + "unicode_alternates" : "", + "name" : "fisted hand sign", + "shortname" : ":punch:", + "category" : "people", + "emoji_order" : "93", + "aliases" : [ + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "fist", + "punch", + "body", + "clenched", + "person" + ] + }, + "fist" : { + "unicode" : "270a", + "unicode_alternates" : "", + "name" : "raised fist", + "shortname" : ":fist:", + "category" : "people", + "emoji_order" : "94", + "aliases" : [ + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "fingers", + "grasp", + "hand", + "body", + "clenched", + "person", + "punch" + ] + }, + "v" : { + "unicode" : "270c", + "unicode_alternates" : "270c-fe0f", + "name" : "victory hand", + "shortname" : ":v:", + "category" : "people", + "emoji_order" : "95", + "aliases" : [ + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "fingers", + "ohyeah", + "peace", + "two", + "v", + "body", + "person" + ] + }, + "ok_hand" : { + "unicode" : "1f44c", + "unicode_alternates" : "", + "name" : "ok hand sign", + "shortname" : ":ok_hand:", + "category" : "people", + "emoji_order" : "96", + "aliases" : [ + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "fingers", + "limbs", + "perfect", + "okay", + "smoke", + "smoking", + "marijuana", + "joint", + "pot", + "420", + "body", + "person" + ] + }, + "raised_hand" : { + "unicode" : "270b", + "unicode_alternates" : "", + "name" : "raised hand", + "shortname" : ":raised_hand:", + "category" : "people", + "emoji_order" : "97", + "aliases" : [ + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "body", + "person" + ] + }, + "open_hands" : { + "unicode" : "1f450", + "unicode_alternates" : "", + "name" : "open hands sign", + "shortname" : ":open_hands:", + "category" : "people", + "emoji_order" : "98", + "aliases" : [ + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "butterfly", + "fingers", + "body", + "hand", + "person" + ] + }, + "muscle" : { + "unicode" : "1f4aa", + "unicode_alternates" : "", + "name" : "flexed biceps", + "shortname" : ":muscle:", + "category" : "people", + "emoji_order" : "99", + "aliases" : [ + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "arm", + "flex", + "hand", + "strong", + "muscle", + "bicep", + "body", + "comic", + "person" + ] + }, + "pray" : { + "unicode" : "1f64f", + "unicode_alternates" : "", + "name" : "person with folded hands", + "shortname" : ":pray:", + "category" : "people", + "emoji_order" : "100", + "aliases" : [ + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "highfive", + "hope", + "namaste", + "please", + "wish", + "pray", + "high five", + "sorrow", + "regret", + "sorry", + "ask", + "body", + "bow", + "gesture", + "hand", + "thanks" + ] + }, + "point_up" : { + "unicode" : "261d", + "unicode_alternates" : "261d-fe0f", + "name" : "white up pointing index", + "shortname" : ":point_up:", + "category" : "people", + "emoji_order" : "101", + "aliases" : [ + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "direction", + "finger", + "hand", + "one", + "body", + "person", + "point" + ] + }, + "point_up_2" : { + "unicode" : "1f446", + "unicode_alternates" : "", + "name" : "white up pointing backhand index", + "shortname" : ":point_up_2:", + "category" : "people", + "emoji_order" : "102", + "aliases" : [ + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "direction", + "finger", + "hand", + "one", + "body", + "person", + "point" + ] + }, + "point_down" : { + "unicode" : "1f447", + "unicode_alternates" : "", + "name" : "white down pointing backhand index", + "shortname" : ":point_down:", + "category" : "people", + "emoji_order" : "103", + "aliases" : [ + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "direction", + "finger", + "hand", + "body", + "person", + "point" + ] + }, + "point_left" : { + "unicode" : "1f448", + "unicode_alternates" : "", + "name" : "white left pointing backhand index", + "shortname" : ":point_left:", + "category" : "people", + "emoji_order" : "104", + "aliases" : [ + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "direction", + "finger", + "hand", + "body", + "person", + "point" + ] + }, + "point_right" : { + "unicode" : "1f449", + "unicode_alternates" : "", + "name" : "white right pointing backhand index", + "shortname" : ":point_right:", + "category" : "people", + "emoji_order" : "105", + "aliases" : [ + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "direction", + "finger", + "hand", + "body", + "person", + "point" + ] + }, + "middle_finger" : { + "unicode" : "1f595", + "unicode_alternates" : "", + "name" : "reversed hand with middle finger extended", + "shortname" : ":middle_finger:", + "category" : "people", + "emoji_order" : "106", + "aliases" : [ + ":reversed_hand_with_middle_finger_extended:" + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "fu", + "body", + "middle finger", + "person" + ] + }, + "hand_splayed" : { + "unicode" : "1f590", + "unicode_alternates" : "1f590-fe0f", + "name" : "raised hand with fingers splayed", + "shortname" : ":hand_splayed:", + "category" : "people", + "emoji_order" : "107", + "aliases" : [ + ":raised_hand_with_fingers_splayed:" + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "hi", + "five", + "stop", + "halt", + "body", + "finger", + "person" + ] + }, + "metal" : { + "unicode" : "1f918", + "unicode_alternates" : "", + "name" : "sign of the horns", + "shortname" : ":metal:", + "category" : "people", + "emoji_order" : "108", + "aliases" : [ + ":sign_of_the_horns:" + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "band", + "concert", + "fingers", + "rocknroll" + ] + }, + "vulcan" : { + "unicode" : "1f596", + "unicode_alternates" : "", + "name" : "raised hand with part between middle and ring fingers", + "shortname" : ":vulcan:", + "category" : "people", + "emoji_order" : "109", + "aliases" : [ + ":raised_hand_with_part_between_middle_and_ring_fingers:" + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "vulcan", + "spock", + "leonard", + "nimoy", + "star trek", + "live long", + "body", + "finger", + "person" + ] + }, + "writing_hand" : { + "unicode" : "270d", + "unicode_alternates" : "270d-fe0f", + "name" : "writing hand", + "shortname" : ":writing_hand:", + "category" : "people", + "emoji_order" : "110", + "aliases" : [ + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "write", + "sign", + "signature", + "draw", + "body", + "education", + "person" + ] + }, + "nail_care" : { + "unicode" : "1f485", + "unicode_alternates" : "", + "name" : "nail polish", + "shortname" : ":nail_care:", + "category" : "people", + "emoji_order" : "111", + "aliases" : [ + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "beauty", + "manicure", + "body", + "care", + "cosmetics", + "person" + ] + }, + "lips" : { + "unicode" : "1f444", + "unicode_alternates" : "", + "name" : "mouth", + "shortname" : ":lips:", + "category" : "people", + "emoji_order" : "112", + "aliases" : [ + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "kiss", + "mouth", + "lips", + "body", + "person" + ] + }, + "tongue" : { + "unicode" : "1f445", + "unicode_alternates" : "", + "name" : "tongue", + "shortname" : ":tongue:", + "category" : "people", + "emoji_order" : "113", + "aliases" : [ + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "mouth", + "playful", + "taste", + "buds", + "food", + "silly", + "playful", + "tease", + "kiss", + "french kiss", + "lick", + "tasty", + "playfulness", + "silliness", + "intimacy", + "body", + "person" + ] + }, + "ear" : { + "unicode" : "1f442", + "unicode_alternates" : "", + "name" : "ear", + "shortname" : ":ear:", + "category" : "people", + "emoji_order" : "114", + "aliases" : [ + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "hear", + "listen", + "sound", + "body", + "person" + ] + }, + "nose" : { + "unicode" : "1f443", + "unicode_alternates" : "", + "name" : "nose", + "shortname" : ":nose:", + "category" : "people", + "emoji_order" : "115", + "aliases" : [ + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "smell", + "sniff", + "body", + "person" + ] + }, + "eye" : { + "unicode" : "1f441", + "unicode_alternates" : "1f441-fe0f", + "name" : "eye", + "shortname" : ":eye:", + "category" : "people", + "emoji_order" : "116", + "aliases" : [ + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "look", + "peek", + "watch", + "body", + "person" + ] + }, + "eyes" : { + "unicode" : "1f440", + "unicode_alternates" : "", + "name" : "eyes", + "shortname" : ":eyes:", + "category" : "people", + "emoji_order" : "117", + "aliases" : [ + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "look", + "peek", + "stalk", + "watch", + "body", + "eye", + "face", + "person" + ] + }, + "bust_in_silhouette" : { + "unicode" : "1f464", + "unicode_alternates" : "", + "name" : "bust in silhouette", + "shortname" : ":bust_in_silhouette:", + "category" : "people", + "emoji_order" : "118", + "aliases" : [ + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "human", + "man", + "person", + "user", + "member", + "account", + "guest", + "icon", + "avatar", + "profile", + "me", + "myself", + "i" + ] + }, + "busts_in_silhouette" : { + "unicode" : "1f465", + "unicode_alternates" : "", + "name" : "busts in silhouette", + "shortname" : ":busts_in_silhouette:", + "category" : "people", + "emoji_order" : "119", + "aliases" : [ + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "group", + "human", + "man", + "person", + "team", + "user", + "people", + "members", + "accounts", + "relationship", + "shadow", + "bust" + ] + }, + "speaking_head" : { + "unicode" : "1f5e3", + "unicode_alternates" : "1f5e3-fe0f", + "name" : "speaking head in silhouette", + "shortname" : ":speaking_head:", + "category" : "people", + "emoji_order" : "120", + "aliases" : [ + ":speaking_head_in_silhouette:" + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "talk", + "face", + "person", + "speak" + ] + }, + "baby" : { + "unicode" : "1f476", + "unicode_alternates" : "", + "name" : "baby", + "shortname" : ":baby:", + "category" : "people", + "emoji_order" : "121", + "aliases" : [ + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "child", + "infant", + "toddler", + "person" + ] + }, + "boy" : { + "unicode" : "1f466", + "unicode_alternates" : "", + "name" : "boy", + "shortname" : ":boy:", + "category" : "people", + "emoji_order" : "122", + "aliases" : [ + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "male", + "kid", + "child", + "person" + ] + }, + "girl" : { + "unicode" : "1f467", + "unicode_alternates" : "", + "name" : "girl", + "shortname" : ":girl:", + "category" : "people", + "emoji_order" : "123", + "aliases" : [ + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "female", + "kid", + "child", + "maiden", + "person", + "virgin", + "virgo", + "zodiac" + ] + }, + "man" : { + "unicode" : "1f468", + "unicode_alternates" : "", + "name" : "man", + "shortname" : ":man:", + "category" : "people", + "emoji_order" : "124", + "aliases" : [ + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "classy", + "dad", + "father", + "guy", + "mustache", + "person" + ] + }, + "woman" : { + "unicode" : "1f469", + "unicode_alternates" : "", + "name" : "woman", + "shortname" : ":woman:", + "category" : "people", + "emoji_order" : "125", + "aliases" : [ + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "female", + "girl", + "lady", + "person" + ] + }, + "person_with_blond_hair" : { + "unicode" : "1f471", + "unicode_alternates" : "", + "name" : "person with blond hair", + "shortname" : ":person_with_blond_hair:", + "category" : "people", + "emoji_order" : "126", + "aliases" : [ + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "male", + "man", + "blonde", + "young", + "western", + "westerner", + "occidental" + ] + }, + "older_man" : { + "unicode" : "1f474", + "unicode_alternates" : "", + "name" : "older man", + "shortname" : ":older_man:", + "category" : "people", + "emoji_order" : "127", + "aliases" : [ + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "male", + "men", + "grandpa", + "grandfather", + "old", + "person" + ] + }, + "older_woman" : { + "unicode" : "1f475", + "unicode_alternates" : "", + "name" : "older woman", + "shortname" : ":older_woman:", + "category" : "people", + "emoji_order" : "128", + "aliases" : [ + ":grandma:" + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "female", + "women", + "lady", + "grandma", + "grandmother", + "old", + "person" + ] + }, + "man_with_gua_pi_mao" : { + "unicode" : "1f472", + "unicode_alternates" : "", + "name" : "man with gua pi mao", + "shortname" : ":man_with_gua_pi_mao:", + "category" : "people", + "emoji_order" : "129", + "aliases" : [ + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "boy", + "male", + "skullcap", + "chinese", + "asian", + "qing", + "gua pi mao", + "hat", + "person" + ] + }, + "man_with_turban" : { + "unicode" : "1f473", + "unicode_alternates" : "", + "name" : "man with turban", + "shortname" : ":man_with_turban:", + "category" : "people", + "emoji_order" : "130", + "aliases" : [ + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "male", + "headdress", + "headwear", + "pagri", + "india", + "indian", + "mummy", + "wisdom", + "peace", + "person" + ] + }, + "cop" : { + "unicode" : "1f46e", + "unicode_alternates" : "", + "name" : "police officer", + "shortname" : ":cop:", + "category" : "people", + "emoji_order" : "131", + "aliases" : [ + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "arrest", + "enforcement", + "law", + "man", + "cop", + "person" + ] + }, + "construction_worker" : { + "unicode" : "1f477", + "unicode_alternates" : "", + "name" : "construction worker", + "shortname" : ":construction_worker:", + "category" : "people", + "emoji_order" : "132", + "aliases" : [ + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "human", + "male", + "man", + "wip", + "hat", + "person" + ] + }, + "guardsman" : { + "unicode" : "1f482", + "unicode_alternates" : "", + "name" : "guardsman", + "shortname" : ":guardsman:", + "category" : "people", + "emoji_order" : "133", + "aliases" : [ + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "british", + "gb", + "male", + "man", + "uk", + "guard", + "bearskin", + "hat", + "british", + "queen", + "ceremonial", + "military", + "person" + ] + }, + "spy" : { + "unicode" : "1f575", + "unicode_alternates" : "1f575-fe0f", + "name" : "sleuth or spy", + "shortname" : ":spy:", + "category" : "people", + "emoji_order" : "134", + "aliases" : [ + ":sleuth_or_spy:" + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "pi", + "undercover", + "investigator", + "person" + ] + }, + "santa" : { + "unicode" : "1f385", + "unicode_alternates" : "", + "name" : "father christmas", + "shortname" : ":santa:", + "category" : "people", + "emoji_order" : "135", + "aliases" : [ + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "festival", + "male", + "man", + "xmas", + "santa", + "saint nick", + "jolly", + "ho ho ho", + "north pole", + "presents", + "gifts", + "naughty", + "nice", + "sleigh", + "holiday", + "activity", + "celebration", + "fairy tale", + "fantasy", + "person" + ] + }, + "angel" : { + "unicode" : "1f47c", + "unicode_alternates" : "", + "name" : "baby angel", + "shortname" : ":angel:", + "category" : "people", + "emoji_order" : "136", + "aliases" : [ + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "halo", + "cupid", + "heaven", + "wings", + "jesus", + "face", + "fairy tale", + "fantasy", + "person" + ] + }, + "princess" : { + "unicode" : "1f478", + "unicode_alternates" : "", + "name" : "princess", + "shortname" : ":princess:", + "category" : "people", + "emoji_order" : "137", + "aliases" : [ + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "blond", + "crown", + "female", + "girl", + "woman", + "royal", + "royalty", + "king", + "queen", + "daughter", + "disney", + "high-maintenance", + "fairy tale", + "fantasy", + "person" + ] + }, + "bride_with_veil" : { + "unicode" : "1f470", + "unicode_alternates" : "", + "name" : "bride with veil", + "shortname" : ":bride_with_veil:", + "category" : "people", + "emoji_order" : "138", + "aliases" : [ + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "couple", + "marriage", + "wedding", + "wedding", + "planning", + "gown", + "dress", + "engagement", + "white", + "person" + ] + }, + "walking" : { + "unicode" : "1f6b6", + "unicode_alternates" : "", + "name" : "pedestrian", + "shortname" : ":walking:", + "category" : "people", + "emoji_order" : "139", + "aliases" : [ + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "man", + "walk", + "stroll", + "stride", + "hiking", + "hike", + "person", + "walking" + ] + }, + "runner" : { + "unicode" : "1f3c3", + "unicode_alternates" : "", + "name" : "runner", + "shortname" : ":runner:", + "category" : "people", + "emoji_order" : "140", + "aliases" : [ + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "exercise", + "man", + "run", + "jog", + "sprint", + "race", + "dash", + "marathon", + "person", + "running" + ] + }, + "dancer" : { + "unicode" : "1f483", + "unicode_alternates" : "", + "name" : "dancer", + "shortname" : ":dancer:", + "category" : "people", + "emoji_order" : "141", + "aliases" : [ + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "female", + "fun", + "girl", + "woman", + "dress", + "fancy", + "boogy", + "party", + "celebrate", + "ballet", + "tango", + "cha cha", + "music", + "person" + ] + }, + "dancers" : { + "unicode" : "1f46f", + "unicode_alternates" : "", + "name" : "woman with bunny ears", + "shortname" : ":dancers:", + "category" : "people", + "emoji_order" : "142", + "aliases" : [ + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "female", + "girls", + "women", + "dancing", + "dancers", + "showgirl", + "playboy", + "costume", + "cancan", + "dancer", + "ear", + "girl", + "person" + ] + }, + "couple" : { + "unicode" : "1f46b", + "unicode_alternates" : "", + "name" : "man and woman holding hands", + "shortname" : ":couple:", + "category" : "people", + "emoji_order" : "143", + "aliases" : [ + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "affection", + "date", + "dating", + "human", + "like", + "love", + "marriage", + "people", + "valentines", + "couple", + "hand", + "hold", + "person" + ] + }, + "two_men_holding_hands" : { + "unicode" : "1f46c", + "unicode_alternates" : "", + "name" : "two men holding hands", + "shortname" : ":two_men_holding_hands:", + "category" : "people", + "emoji_order" : "144", + "aliases" : [ + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "bromance", + "couple", + "friends", + "like", + "love", + "gay", + "homosexual", + "friends", + "team", + "unity", + "gemini", + "hand", + "hold", + "man", + "person", + "twins", + "zodiac" + ] + }, + "two_women_holding_hands" : { + "unicode" : "1f46d", + "unicode_alternates" : "", + "name" : "two women holding hands", + "shortname" : ":two_women_holding_hands:", + "category" : "people", + "emoji_order" : "145", + "aliases" : [ + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "couple", + "female", + "friends", + "like", + "love", + "girlfriends", + "friends", + "sisters", + "mother", + "daughter", + "gay", + "homosexual", + "couple", + "unity", + "hand", + "hold", + "person", + "woman" + ] + }, + "bow" : { + "unicode" : "1f647", + "unicode_alternates" : "", + "name" : "person bowing deeply", + "shortname" : ":bow:", + "category" : "people", + "emoji_order" : "146", + "aliases" : [ + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "boy", + "male", + "man", + "sorry", + "bow", + "respect", + "bend", + "apology", + "gesture" + ] + }, + "information_desk_person" : { + "unicode" : "1f481", + "unicode_alternates" : "", + "name" : "information desk person", + "shortname" : ":information_desk_person:", + "category" : "people", + "emoji_order" : "147", + "aliases" : [ + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "female", + "girl", + "human", + "woman", + "help", + "question", + "answer", + "sassy", + "unimpressed", + "attitude", + "snarky", + "hand" + ] + }, + "no_good" : { + "unicode" : "1f645", + "unicode_alternates" : "", + "name" : "face with no good gesture", + "shortname" : ":no_good:", + "category" : "people", + "emoji_order" : "148", + "aliases" : [ + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "female", + "girl", + "woman", + "stop", + "nope", + "don't", + "not", + "forbidden", + "hand", + "person", + "prohibited" + ] + }, + "ok_woman" : { + "unicode" : "1f646", + "unicode_alternates" : "", + "name" : "face with ok gesture", + "shortname" : ":ok_woman:", + "category" : "people", + "emoji_order" : "149", + "aliases" : [ + ], + "aliases_ascii" : [ + "*\\0/*", + "\\0/", + "*\\O/*", + "\\O/" + ], + "keywords" : [ + "female", + "girl", + "human", + "pink", + "women", + "yes", + "okay", + "accept", + "hand", + "person" + ] + }, + "raising_hand" : { + "unicode" : "1f64b", + "unicode_alternates" : "", + "name" : "happy person raising one hand", + "shortname" : ":raising_hand:", + "category" : "people", + "emoji_order" : "150", + "aliases" : [ + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "female", + "girl", + "woman", + "raise", + "notice", + "attention", + "answer", + "gesture", + "raised" + ] + }, + "person_with_pouting_face" : { + "unicode" : "1f64e", + "unicode_alternates" : "", + "name" : "person with pouting face", + "shortname" : ":person_with_pouting_face:", + "category" : "people", + "emoji_order" : "151", + "aliases" : [ + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "female", + "girl", + "woman", + "pout", + "sexy", + "cute", + "annoyed", + "gesture" + ] + }, + "person_frowning" : { + "unicode" : "1f64d", + "unicode_alternates" : "", + "name" : "person frowning", + "shortname" : ":person_frowning:", + "category" : "people", + "emoji_order" : "152", + "aliases" : [ + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "female", + "girl", + "woman", + "dejected", + "rejected", + "sad", + "frown", + "gesture" + ] + }, + "haircut" : { + "unicode" : "1f487", + "unicode_alternates" : "", + "name" : "haircut", + "shortname" : ":haircut:", + "category" : "people", + "emoji_order" : "153", + "aliases" : [ + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "female", + "girl", + "woman", + "barber", + "beauty", + "parlor", + "person" + ] + }, + "massage" : { + "unicode" : "1f486", + "unicode_alternates" : "", + "name" : "face massage", + "shortname" : ":massage:", + "category" : "people", + "emoji_order" : "154", + "aliases" : [ + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "female", + "girl", + "woman", + "person", + "salon" + ] + }, + "couple_with_heart" : { + "unicode" : "1f491", + "unicode_alternates" : "", + "name" : "couple with heart", + "shortname" : ":couple_with_heart:", + "category" : "people", + "emoji_order" : "155", + "aliases" : [ + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "affection", + "dating", + "human", + "like", + "love", + "marriage", + "valentines", + "person", + "romance" + ] + }, + "couple_ww" : { + "unicode" : "1f469-2764-1f469", + "unicode_alternates" : "1f469-200d-2764-fe0f-200d-1f469", + "name" : "couple (woman,woman)", + "shortname" : ":couple_ww:", + "category" : "people", + "emoji_order" : "156", + "aliases" : [ + ":couple_with_heart_ww:" + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "affection", + "dating", + "human", + "like", + "love", + "marriage", + "valentines" + ] + }, + "couple_mm" : { + "unicode" : "1f468-2764-1f468", + "unicode_alternates" : "1f468-200d-2764-fe0f-200d-1f468", + "name" : "couple (man,man)", + "shortname" : ":couple_mm:", + "category" : "people", + "emoji_order" : "157", + "aliases" : [ + ":couple_with_heart_mm:" + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "affection", + "dating", + "human", + "like", + "love", + "marriage", + "valentines" + ] + }, + "couplekiss" : { + "unicode" : "1f48f", + "unicode_alternates" : "", + "name" : "kiss", + "shortname" : ":couplekiss:", + "category" : "people", + "emoji_order" : "158", + "aliases" : [ + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "dating", + "like", + "love", + "marriage", + "valentines", + "couple", + "person", + "romance" + ] + }, + "kiss_ww" : { + "unicode" : "1f469-2764-1f48b-1f469", + "unicode_alternates" : "1f469-200d-2764-fe0f-200d-1f48b-200d-1f469", + "name" : "kiss (woman,woman)", + "shortname" : ":kiss_ww:", + "category" : "people", + "emoji_order" : "159", + "aliases" : [ + ":couplekiss_ww:" + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "dating", + "like", + "love", + "marriage", + "valentines", + "couple" + ] + }, + "kiss_mm" : { + "unicode" : "1f468-2764-1f48b-1f468", + "unicode_alternates" : "1f468-200d-2764-fe0f-200d-1f48b-200d-1f468", + "name" : "kiss (man,man)", + "shortname" : ":kiss_mm:", + "category" : "people", + "emoji_order" : "160", + "aliases" : [ + ":couplekiss_mm:" + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "dating", + "like", + "love", + "marriage", + "valentines", + "couple" + ] + }, + "family" : { + "unicode" : "1f46a", + "unicode_alternates" : "", + "name" : "family", + "shortname" : ":family:", + "category" : "people", + "emoji_order" : "161", + "aliases" : [ + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "child", + "dad", + "father", + "mom", + "mother", + "parents", + "girl", + "boy", + "group", + "unit", + "man", + "woman", + "person" + ] + }, + "family_mwg" : { + "unicode" : "1f468-1f469-1f467", + "unicode_alternates" : "1f468-200d-1f469-200d-1f467", + "name" : "family (man,woman,girl)", + "shortname" : ":family_mwg:", + "category" : "people", + "emoji_order" : "162", + "aliases" : [ + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "child", + "dad", + "father", + "mom", + "mother", + "parents", + "girl", + "boy", + "group", + "unit", + "man", + "woman" + ] + }, + "family_mwgb" : { + "unicode" : "1f468-1f469-1f467-1f466", + "unicode_alternates" : "1f468-200d-1f469-200d-1f467-200d-1f466", + "name" : "family (man,woman,girl,boy)", + "shortname" : ":family_mwgb:", + "category" : "people", + "emoji_order" : "163", + "aliases" : [ + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "dad", + "father", + "mom", + "mother", + "parents", + "children", + "girl", + "boy", + "group", + "unit", + "man", + "woman" + ] + }, + "family_mwbb" : { + "unicode" : "1f468-1f469-1f466-1f466", + "unicode_alternates" : "1f468-200d-1f469-200d-1f466-200d-1f466", + "name" : "family (man,woman,boy,boy)", + "shortname" : ":family_mwbb:", + "category" : "people", + "emoji_order" : "164", + "aliases" : [ + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "dad", + "father", + "mom", + "mother", + "parents", + "children", + "boy", + "group", + "unit", + "man", + "woman" + ] + }, + "family_mwgg" : { + "unicode" : "1f468-1f469-1f467-1f467", + "unicode_alternates" : "1f468-200d-1f469-200d-1f467-200d-1f467", + "name" : "family (man,woman,girl,girl)", + "shortname" : ":family_mwgg:", + "category" : "people", + "emoji_order" : "165", + "aliases" : [ + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "dad", + "father", + "mom", + "mother", + "parents", + "children", + "girl", + "group", + "unit", + "man", + "woman" + ] + }, + "family_wwb" : { + "unicode" : "1f469-1f469-1f466", + "unicode_alternates" : "1f469-200d-1f469-200d-1f466", + "name" : "family (woman,woman,boy)", + "shortname" : ":family_wwb:", + "category" : "people", + "emoji_order" : "166", + "aliases" : [ + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "mom", + "mother", + "parents", + "child", + "boy", + "group", + "unit", + "gay", + "lesbian", + "homosexual", + "woman" + ] + }, + "family_wwg" : { + "unicode" : "1f469-1f469-1f467", + "unicode_alternates" : "1f469-200d-1f469-200d-1f467", + "name" : "family (woman,woman,girl)", + "shortname" : ":family_wwg:", + "category" : "people", + "emoji_order" : "167", + "aliases" : [ + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "mom", + "mother", + "parents", + "child", + "woman", + "girl", + "group", + "unit", + "gay", + "lesbian", + "homosexual" + ] + }, + "family_wwgb" : { + "unicode" : "1f469-1f469-1f467-1f466", + "unicode_alternates" : "1f469-200d-1f469-200d-1f467-200d-1f466", + "name" : "family (woman,woman,girl,boy)", + "shortname" : ":family_wwgb:", + "category" : "people", + "emoji_order" : "168", + "aliases" : [ + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "mom", + "mother", + "parents", + "children", + "group", + "unit", + "gay", + "lesbian", + "homosexual", + "woman", + "girl", + "boy" + ] + }, + "family_wwbb" : { + "unicode" : "1f469-1f469-1f466-1f466", + "unicode_alternates" : "1f469-200d-1f469-200d-1f466-200d-1f466", + "name" : "family (woman,woman,boy,boy)", + "shortname" : ":family_wwbb:", + "category" : "people", + "emoji_order" : "169", + "aliases" : [ + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "mom", + "mother", + "parents", + "children", + "group", + "unit", + "gay", + "lesbian", + "homosexual", + "woman", + "boy" + ] + }, + "family_wwgg" : { + "unicode" : "1f469-1f469-1f467-1f467", + "unicode_alternates" : "1f469-200d-1f469-200d-1f467-200d-1f467", + "name" : "family (woman,woman,girl,girl)", + "shortname" : ":family_wwgg:", + "category" : "people", + "emoji_order" : "170", + "aliases" : [ + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "mom", + "mother", + "parents", + "children", + "group", + "unit", + "gay", + "lesbian", + "homosexual", + "woman", + "girl" + ] + }, + "family_mmb" : { + "unicode" : "1f468-1f468-1f466", + "unicode_alternates" : "1f468-200d-1f468-200d-1f466", + "name" : "family (man,man,boy)", + "shortname" : ":family_mmb:", + "category" : "people", + "emoji_order" : "171", + "aliases" : [ + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "child", + "dad", + "father", + "parents", + "group", + "unit", + "gay", + "homosexual", + "man", + "boy" + ] + }, + "family_mmg" : { + "unicode" : "1f468-1f468-1f467", + "unicode_alternates" : "1f468-200d-1f468-200d-1f467", + "name" : "family (man,man,girl)", + "shortname" : ":family_mmg:", + "category" : "people", + "emoji_order" : "172", + "aliases" : [ + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "child", + "dad", + "father", + "parents", + "group", + "unit", + "gay", + "homosexual", + "man", + "girl" + ] + }, + "family_mmgb" : { + "unicode" : "1f468-1f468-1f467-1f466", + "unicode_alternates" : "1f468-200d-1f468-200d-1f467-200d-1f466", + "name" : "family (man,man,girl,boy)", + "shortname" : ":family_mmgb:", + "category" : "people", + "emoji_order" : "173", + "aliases" : [ + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "children", + "dad", + "father", + "parents", + "group", + "unit", + "gay", + "homosexual", + "man", + "girl", + "boy" + ] + }, + "family_mmbb" : { + "unicode" : "1f468-1f468-1f466-1f466", + "unicode_alternates" : "1f468-200d-1f468-200d-1f466-200d-1f466", + "name" : "family (man,man,boy,boy)", + "shortname" : ":family_mmbb:", + "category" : "people", + "emoji_order" : "174", + "aliases" : [ + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "children", + "dad", + "father", + "parents", + "group", + "unit", + "gay", + "homosexual", + "man", + "boy" + ] + }, + "family_mmgg" : { + "unicode" : "1f468-1f468-1f467-1f467", + "unicode_alternates" : "1f468-200d-1f468-200d-1f467-200d-1f467", + "name" : "family (man,man,girl,girl)", + "shortname" : ":family_mmgg:", + "category" : "people", + "emoji_order" : "175", + "aliases" : [ + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "children", + "dad", + "father", + "parents", + "group", + "unit", + "gay", + "homosexual", + "man", + "girl" + ] + }, + "womans_clothes" : { + "unicode" : "1f45a", + "unicode_alternates" : "", + "name" : "womans clothes", + "shortname" : ":womans_clothes:", + "category" : "people", + "emoji_order" : "176", + "aliases" : [ + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "fashion", + "clothing", + "blouse", + "shirt", + "wardrobe", + "breasts", + "cleavage", + "shopping", + "shop", + "dressing", + "dressed", + "object", + "person", + "woman" + ] + }, + "shirt" : { + "unicode" : "1f455", + "unicode_alternates" : "", + "name" : "t-shirt", + "shortname" : ":shirt:", + "category" : "people", + "emoji_order" : "177", + "aliases" : [ + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "cloth", + "fashion", + "shirt", + "tee", + "clothing", + "object", + "person", + "tshirt" + ] + }, + "jeans" : { + "unicode" : "1f456", + "unicode_alternates" : "", + "name" : "jeans", + "shortname" : ":jeans:", + "category" : "people", + "emoji_order" : "178", + "aliases" : [ + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "fashion", + "shopping", + "pants", + "blue", + "denim", + "levi's", + "levi", + "designer", + "work", + "skinny", + "clothing", + "object", + "person", + "trousers" + ] + }, + "necktie" : { + "unicode" : "1f454", + "unicode_alternates" : "", + "name" : "necktie", + "shortname" : ":necktie:", + "category" : "people", + "emoji_order" : "179", + "aliases" : [ + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "clothes", + "fashion", + "formal", + "shirt", + "tie", + "clothing", + "object", + "person" + ] + }, + "dress" : { + "unicode" : "1f457", + "unicode_alternates" : "", + "name" : "dress", + "shortname" : ":dress:", + "category" : "people", + "emoji_order" : "180", + "aliases" : [ + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "clothes", + "fashion", + "clothing", + "object", + "person" + ] + }, + "bikini" : { + "unicode" : "1f459", + "unicode_alternates" : "", + "name" : "bikini", + "shortname" : ":bikini:", + "category" : "people", + "emoji_order" : "181", + "aliases" : [ + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "beach", + "fashion", + "female", + "girl", + "swimming", + "woman", + "clothing", + "object", + "person", + "swim" + ] + }, + "kimono" : { + "unicode" : "1f458", + "unicode_alternates" : "", + "name" : "kimono", + "shortname" : ":kimono:", + "category" : "people", + "emoji_order" : "182", + "aliases" : [ + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "dress", + "fashion", + "female", + "japanese", + "women", + "clothing", + "object", + "person" + ] + }, + "lipstick" : { + "unicode" : "1f484", + "unicode_alternates" : "", + "name" : "lipstick", + "shortname" : ":lipstick:", + "category" : "people", + "emoji_order" : "183", + "aliases" : [ + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "fashion", + "female", + "girl", + "cosmetics", + "makeup", + "object", + "person" + ] + }, + "kiss" : { + "unicode" : "1f48b", + "unicode_alternates" : "", + "name" : "kiss mark", + "shortname" : ":kiss:", + "category" : "people", + "emoji_order" : "184", + "aliases" : [ + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "affection", + "face", + "like", + "lips", + "love", + "valentines", + "emotion", + "heart", + "person", + "romance" + ] + }, + "footprints" : { + "unicode" : "1f463", + "unicode_alternates" : "", + "name" : "footprints", + "shortname" : ":footprints:", + "category" : "people", + "emoji_order" : "185", + "aliases" : [ + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "feet", + "body", + "clothing", + "footprint", + "person", + "print" + ] + }, + "high_heel" : { + "unicode" : "1f460", + "unicode_alternates" : "", + "name" : "high-heeled shoe", + "shortname" : ":high_heel:", + "category" : "people", + "emoji_order" : "186", + "aliases" : [ + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "fashion", + "female", + "shoes", + "clothing", + "heel", + "object", + "person", + "woman" + ] + }, + "sandal" : { + "unicode" : "1f461", + "unicode_alternates" : "", + "name" : "womans sandal", + "shortname" : ":sandal:", + "category" : "people", + "emoji_order" : "187", + "aliases" : [ + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "fashion", + "shoes", + "female", + "clothing", + "object", + "person", + "shoe", + "woman" + ] + }, + "boot" : { + "unicode" : "1f462", + "unicode_alternates" : "", + "name" : "womans boots", + "shortname" : ":boot:", + "category" : "people", + "emoji_order" : "188", + "aliases" : [ + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "fashion", + "shoes", + "boot", + "clothing", + "object", + "person", + "shoe", + "woman" + ] + }, + "mans_shoe" : { + "unicode" : "1f45e", + "unicode_alternates" : "", + "name" : "mans shoe", + "shortname" : ":mans_shoe:", + "category" : "people", + "emoji_order" : "189", + "aliases" : [ + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "fashion", + "male", + "clothing", + "man", + "object", + "person" + ] + }, + "athletic_shoe" : { + "unicode" : "1f45f", + "unicode_alternates" : "", + "name" : "athletic shoe", + "shortname" : ":athletic_shoe:", + "category" : "people", + "emoji_order" : "190", + "aliases" : [ + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "sports", + "sneaker", + "clothing", + "object", + "person" + ] + }, + "womans_hat" : { + "unicode" : "1f452", + "unicode_alternates" : "", + "name" : "womans hat", + "shortname" : ":womans_hat:", + "category" : "people", + "emoji_order" : "191", + "aliases" : [ + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "accessories", + "fashion", + "female", + "clothing", + "object", + "person", + "woman" + ] + }, + "tophat" : { + "unicode" : "1f3a9", + "unicode_alternates" : "", + "name" : "top hat", + "shortname" : ":tophat:", + "category" : "people", + "emoji_order" : "192", + "aliases" : [ + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "classy", + "gentleman", + "magic", + "cap", + "beaver", + "high", + "tall", + "stove", + "pipe", + "chimney", + "topper", + "london", + "period piece", + "magician", + "activity", + "clothing", + "entertainment", + "object", + "person", + "tophat" + ] + }, + "helmet_with_cross" : { + "unicode" : "26d1", + "unicode_alternates" : "26d1-fe0f", + "name" : "helmet with white cross", + "shortname" : ":helmet_with_cross:", + "category" : "people", + "emoji_order" : "193", + "aliases" : [ + ":helmet_with_white_cross:" + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "aid", + "face", + "hat", + "person" + ] + }, + "mortar_board" : { + "unicode" : "1f393", + "unicode_alternates" : "", + "name" : "graduation cap", + "shortname" : ":mortar_board:", + "category" : "people", + "emoji_order" : "194", + "aliases" : [ + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "cap", + "college", + "degree", + "school", + "university", + "mortarboard", + "academic", + "education", + "ceremony", + "tassel", + "activity", + "celebration", + "clothing", + "hat", + "object" + ] + }, + "crown" : { + "unicode" : "1f451", + "unicode_alternates" : "", + "name" : "crown", + "shortname" : ":crown:", + "category" : "people", + "emoji_order" : "195", + "aliases" : [ + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "king", + "kod", + "leader", + "royalty", + "clothing", + "object", + "person", + "queen" + ] + }, + "school_satchel" : { + "unicode" : "1f392", + "unicode_alternates" : "", + "name" : "school satchel", + "shortname" : ":school_satchel:", + "category" : "people", + "emoji_order" : "196", + "aliases" : [ + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "bag", + "education", + "student", + "backpack", + "packing", + "pack", + "hike", + "education", + "adventure", + "travel", + "sightsee", + "activity", + "object" + ] + }, + "pouch" : { + "unicode" : "1f45d", + "unicode_alternates" : "", + "name" : "pouch", + "shortname" : ":pouch:", + "category" : "people", + "emoji_order" : "197", + "aliases" : [ + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "accessories", + "bag", + "cosmetic", + "packing", + "grandma", + "makeup", + "clothing", + "object", + "person" + ] + }, + "purse" : { + "unicode" : "1f45b", + "unicode_alternates" : "", + "name" : "purse", + "shortname" : ":purse:", + "category" : "people", + "emoji_order" : "198", + "aliases" : [ + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "accessories", + "fashion", + "money", + "clutch", + "bag", + "handbag", + "coin bag", + "accessory", + "ladies", + "shopping", + "clothing", + "coin", + "object", + "person" + ] + }, + "handbag" : { + "unicode" : "1f45c", + "unicode_alternates" : "", + "name" : "handbag", + "shortname" : ":handbag:", + "category" : "people", + "emoji_order" : "199", + "aliases" : [ + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "accessories", + "accessory", + "bag", + "fashion", + "clothing", + "object", + "person" + ] + }, + "briefcase" : { + "unicode" : "1f4bc", + "unicode_alternates" : "", + "name" : "briefcase", + "shortname" : ":briefcase:", + "category" : "people", + "emoji_order" : "200", + "aliases" : [ + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "business", + "documents", + "work", + "object", + "office", + "person" + ] + }, + "eyeglasses" : { + "unicode" : "1f453", + "unicode_alternates" : "", + "name" : "eyeglasses", + "shortname" : ":eyeglasses:", + "category" : "people", + "emoji_order" : "201", + "aliases" : [ + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "accessories", + "eyesight", + "fashion", + "spectacles", + "eye", + "sight", + "nearsightedness", + "myopia", + "farsightedness", + "hyperopia", + "frames", + "vision", + "see", + "blurry", + "contacts", + "clothing", + "eyewear", + "glasses", + "object", + "person" + ] + }, + "dark_sunglasses" : { + "unicode" : "1f576", + "unicode_alternates" : "1f576-fe0f", + "name" : "dark sunglasses", + "shortname" : ":dark_sunglasses:", + "category" : "people", + "emoji_order" : "202", + "aliases" : [ + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "shades", + "eyes", + "eye", + "eyewear", + "glasses", + "object" + ] + }, + "ring" : { + "unicode" : "1f48d", + "unicode_alternates" : "", + "name" : "ring", + "shortname" : ":ring:", + "category" : "people", + "emoji_order" : "203", + "aliases" : [ + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "marriage", + "propose", + "valentines", + "wedding", + "gold", + "diamond", + "emotion", + "object", + "person", + "romance" + ] + }, + "closed_umbrella" : { + "unicode" : "1f302", + "unicode_alternates" : "", + "name" : "closed umbrella", + "shortname" : ":closed_umbrella:", + "category" : "people", + "emoji_order" : "204", + "aliases" : [ + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "drizzle", + "rain", + "weather", + "moisture", + "protection", + "sun", + "ultraviolet", + "uv", + "clothing", + "nature", + "person" + ] + }, + "dog" : { + "unicode" : "1f436", + "unicode_alternates" : "", + "name" : "dog face", + "shortname" : ":dog:", + "category" : "nature", + "emoji_order" : "205", + "aliases" : [ + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "animal", + "friend", + "nature", + "pet", + "puppy", + "woof", + "bark", + "fido" + ] + }, + "cat" : { + "unicode" : "1f431", + "unicode_alternates" : "", + "name" : "cat face", + "shortname" : ":cat:", + "category" : "nature", + "emoji_order" : "206", + "aliases" : [ + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "animal", + "meow", + "pet", + "kitten", + "nature" + ] + }, + "mouse" : { + "unicode" : "1f42d", + "unicode_alternates" : "", + "name" : "mouse face", + "shortname" : ":mouse:", + "category" : "nature", + "emoji_order" : "207", + "aliases" : [ + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "animal", + "nature", + "rodent" + ] + }, + "hamster" : { + "unicode" : "1f439", + "unicode_alternates" : "", + "name" : "hamster face", + "shortname" : ":hamster:", + "category" : "nature", + "emoji_order" : "208", + "aliases" : [ + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "animal", + "nature", + "rodent", + "pet" + ] + }, + "rabbit" : { + "unicode" : "1f430", + "unicode_alternates" : "", + "name" : "rabbit face", + "shortname" : ":rabbit:", + "category" : "nature", + "emoji_order" : "209", + "aliases" : [ + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "animal", + "nature", + "bunny", + "easter", + "reproduction", + "prolific", + "pet" + ] + }, + "bear" : { + "unicode" : "1f43b", + "unicode_alternates" : "", + "name" : "bear face", + "shortname" : ":bear:", + "category" : "nature", + "emoji_order" : "210", + "aliases" : [ + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "animal", + "nature", + "grizzly" + ] + }, + "panda_face" : { + "unicode" : "1f43c", + "unicode_alternates" : "", + "name" : "panda face", + "shortname" : ":panda_face:", + "category" : "nature", + "emoji_order" : "211", + "aliases" : [ + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "animal", + "nature", + "bear", + "cub", + "cute", + "endearment", + "friendship", + "love", + "bamboo", + "china", + "black", + "white" + ] + }, + "koala" : { + "unicode" : "1f428", + "unicode_alternates" : "", + "name" : "koala", + "shortname" : ":koala:", + "category" : "nature", + "emoji_order" : "212", + "aliases" : [ + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "animal", + "nature", + "bear" + ] + }, + "tiger" : { + "unicode" : "1f42f", + "unicode_alternates" : "", + "name" : "tiger face", + "shortname" : ":tiger:", + "category" : "nature", + "emoji_order" : "213", + "aliases" : [ + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "animal", + "nature", + "cat", + "striped", + "tony", + "tigger", + "hobs" + ] + }, + "lion_face" : { + "unicode" : "1f981", + "unicode_alternates" : "", + "name" : "lion face", + "shortname" : ":lion_face:", + "category" : "nature", + "emoji_order" : "214", + "aliases" : [ + ":lion:" + ], + "aliases_ascii" : [ + ], + "keywords" : [ + ] + }, + "cow" : { + "unicode" : "1f42e", + "unicode_alternates" : "", + "name" : "cow face", + "shortname" : ":cow:", + "category" : "nature", + "emoji_order" : "215", + "aliases" : [ + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "animal", + "beef", + "ox", + "milk", + "dairy", + "nature" + ] + }, + "pig" : { + "unicode" : "1f437", + "unicode_alternates" : "", + "name" : "pig face", + "shortname" : ":pig:", + "category" : "nature", + "emoji_order" : "216", + "aliases" : [ + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "animal", + "nature", + "piggy", + "pork", + "ham", + "hog", + "bacon", + "oink", + "slop", + "livestock", + "greed", + "greedy", + "oink" + ] + }, + "pig_nose" : { + "unicode" : "1f43d", + "unicode_alternates" : "", + "name" : "pig nose", + "shortname" : ":pig_nose:", + "category" : "nature", + "emoji_order" : "217", + "aliases" : [ + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "animal", + "oink", + "snout", + "food", + "eat", + "cute", + "pink", + "smell", + "truffle", + "face", + "nature" + ] + }, + "frog" : { + "unicode" : "1f438", + "unicode_alternates" : "", + "name" : "frog face", + "shortname" : ":frog:", + "category" : "nature", + "emoji_order" : "218", + "aliases" : [ + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "animal", + "nature" + ] + }, + "octopus" : { + "unicode" : "1f419", + "unicode_alternates" : "", + "name" : "octopus", + "shortname" : ":octopus:", + "category" : "nature", + "emoji_order" : "219", + "aliases" : [ + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "animal", + "creature", + "ocean", + "sea", + "nature" + ] + }, + "monkey_face" : { + "unicode" : "1f435", + "unicode_alternates" : "", + "name" : "monkey face", + "shortname" : ":monkey_face:", + "category" : "nature", + "emoji_order" : "220", + "aliases" : [ + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "animal", + "nature" + ] + }, + "see_no_evil" : { + "unicode" : "1f648", + "unicode_alternates" : "", + "name" : "see-no-evil monkey", + "shortname" : ":see_no_evil:", + "category" : "nature", + "emoji_order" : "221", + "aliases" : [ + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "animal", + "nature", + "monkey", + "see", + "eyes", + "vision", + "sight", + "mizaru", + "evil", + "face", + "forbidden", + "gesture", + "no", + "not", + "prohibited" + ] + }, + "hear_no_evil" : { + "unicode" : "1f649", + "unicode_alternates" : "", + "name" : "hear-no-evil monkey", + "shortname" : ":hear_no_evil:", + "category" : "nature", + "emoji_order" : "222", + "aliases" : [ + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "animal", + "ears", + "hear", + "sound", + "kikazaru", + "evil", + "face", + "forbidden", + "gesture", + "nature", + "no", + "not", + "prohibited" + ] + }, + "speak_no_evil" : { + "unicode" : "1f64a", + "unicode_alternates" : "", + "name" : "speak-no-evil monkey", + "shortname" : ":speak_no_evil:", + "category" : "nature", + "emoji_order" : "223", + "aliases" : [ + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "animal", + "mouth", + "talk", + "say", + "words", + "verbal", + "verbalize", + "oral", + "iwazaru", + "evil", + "face", + "forbidden", + "gesture", + "nature", + "no", + "not", + "prohibited", + "speak" + ] + }, + "monkey" : { + "unicode" : "1f412", + "unicode_alternates" : "", + "name" : "monkey", + "shortname" : ":monkey:", + "category" : "nature", + "emoji_order" : "224", + "aliases" : [ + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "animal", + "nature", + "primate", + "banana", + "silly" + ] + }, + "chicken" : { + "unicode" : "1f414", + "unicode_alternates" : "", + "name" : "chicken", + "shortname" : ":chicken:", + "category" : "nature", + "emoji_order" : "225", + "aliases" : [ + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "animal", + "cluck", + "hen", + "poultry", + "livestock", + "nature" + ] + }, + "penguin" : { + "unicode" : "1f427", + "unicode_alternates" : "", + "name" : "penguin", + "shortname" : ":penguin:", + "category" : "nature", + "emoji_order" : "226", + "aliases" : [ + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "animal", + "nature", + "bird" + ] + }, + "bird" : { + "unicode" : "1f426", + "unicode_alternates" : "", + "name" : "bird", + "shortname" : ":bird:", + "category" : "nature", + "emoji_order" : "227", + "aliases" : [ + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "animal", + "fly", + "nature", + "tweet" + ] + }, + "baby_chick" : { + "unicode" : "1f424", + "unicode_alternates" : "", + "name" : "baby chick", + "shortname" : ":baby_chick:", + "category" : "nature", + "emoji_order" : "228", + "aliases" : [ + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "animal", + "chicken", + "bird", + "young", + "woman", + "cute", + "nature" + ] + }, + "hatching_chick" : { + "unicode" : "1f423", + "unicode_alternates" : "", + "name" : "hatching chick", + "shortname" : ":hatching_chick:", + "category" : "nature", + "emoji_order" : "229", + "aliases" : [ + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "born", + "chicken", + "egg", + "baby", + "bird", + "chicken", + "young", + "woman", + "cute", + "animal", + "nature" + ] + }, + "hatched_chick" : { + "unicode" : "1f425", + "unicode_alternates" : "", + "name" : "front-facing baby chick", + "shortname" : ":hatched_chick:", + "category" : "nature", + "emoji_order" : "230", + "aliases" : [ + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "baby", + "chicken", + "chick", + "baby", + "bird", + "chicken", + "young", + "woman", + "cute", + "animal", + "nature" + ] + }, + "wolf" : { + "unicode" : "1f43a", + "unicode_alternates" : "", + "name" : "wolf face", + "shortname" : ":wolf:", + "category" : "nature", + "emoji_order" : "231", + "aliases" : [ + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "animal", + "nature" + ] + }, + "boar" : { + "unicode" : "1f417", + "unicode_alternates" : "", + "name" : "boar", + "shortname" : ":boar:", + "category" : "nature", + "emoji_order" : "232", + "aliases" : [ + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "animal", + "nature", + "pig" + ] + }, + "horse" : { + "unicode" : "1f434", + "unicode_alternates" : "", + "name" : "horse face", + "shortname" : ":horse:", + "category" : "nature", + "emoji_order" : "233", + "aliases" : [ + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "animal", + "powerful", + "draft", + "colt", + "filly", + "mare", + "stallion", + "gelding", + "yearling", + "thoroughbred", + "pony", + "nature" + ] + }, + "unicorn" : { + "unicode" : "1f984", + "unicode_alternates" : "", + "name" : "unicorn face", + "shortname" : ":unicorn:", + "category" : "nature", + "emoji_order" : "234", + "aliases" : [ + ":unicorn_face:" + ], + "aliases_ascii" : [ + ], + "keywords" : [ + ] + }, + "bee" : { + "unicode" : "1f41d", + "unicode_alternates" : "", + "name" : "honeybee", + "shortname" : ":bee:", + "category" : "nature", + "emoji_order" : "235", + "aliases" : [ + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "insect", + "bee", + "queen", + "buzz", + "flower", + "pollen", + "sting", + "honey", + "hive", + "bumble", + "pollination", + "animal", + "nature" + ] + }, + "bug" : { + "unicode" : "1f41b", + "unicode_alternates" : "", + "name" : "bug", + "shortname" : ":bug:", + "category" : "nature", + "emoji_order" : "236", + "aliases" : [ + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "insect", + "nature", + "insect", + "virus", + "error", + "animal" + ] + }, + "snail" : { + "unicode" : "1f40c", + "unicode_alternates" : "", + "name" : "snail", + "shortname" : ":snail:", + "category" : "nature", + "emoji_order" : "237", + "aliases" : [ + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "animal", + "shell", + "slow", + "slow", + "escargot", + "french", + "appetizer", + "nature" + ] + }, + "beetle" : { + "unicode" : "1f41e", + "unicode_alternates" : "", + "name" : "lady beetle", + "shortname" : ":beetle:", + "category" : "nature", + "emoji_order" : "238", + "aliases" : [ + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "insect", + "nature", + "bug", + "ladybug", + "ladybird", + "cow", + "lady cow", + "endearment", + "animal", + "lady beetle" + ] + }, + "ant" : { + "unicode" : "1f41c", + "unicode_alternates" : "", + "name" : "ant", + "shortname" : ":ant:", + "category" : "nature", + "emoji_order" : "239", + "aliases" : [ + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "insect", + "queen", + "insect", + "team", + "animal", + "nature" + ] + }, + "spider" : { + "unicode" : "1f577", + "unicode_alternates" : "1f577-fe0f", + "name" : "spider", + "shortname" : ":spider:", + "category" : "nature", + "emoji_order" : "240", + "aliases" : [ + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "arachnid", + "eight-legged", + "animal", + "insect", + "object" + ] + }, + "scorpion" : { + "unicode" : "1f982", + "unicode_alternates" : "", + "name" : "scorpion", + "shortname" : ":scorpion:", + "category" : "nature", + "emoji_order" : "241", + "aliases" : [ + ], + "aliases_ascii" : [ + ], + "keywords" : [ + ] + }, + "crab" : { + "unicode" : "1f980", + "unicode_alternates" : "", + "name" : "crab", + "shortname" : ":crab:", + "category" : "nature", + "emoji_order" : "242", + "aliases" : [ + ], + "aliases_ascii" : [ + ], + "keywords" : [ + ] + }, + "snake" : { + "unicode" : "1f40d", + "unicode_alternates" : "", + "name" : "snake", + "shortname" : ":snake:", + "category" : "nature", + "emoji_order" : "243", + "aliases" : [ + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "animal", + "evil", + "bearer", + "nature", + "ophiuchus", + "serpent", + "zodiac" + ] + }, + "turtle" : { + "unicode" : "1f422", + "unicode_alternates" : "", + "name" : "turtle", + "shortname" : ":turtle:", + "category" : "nature", + "emoji_order" : "244", + "aliases" : [ + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "animal", + "slow", + "shell", + "tortoise", + "chelonian", + "reptile", + "slow", + "snap", + "steady", + "nature" + ] + }, + "tropical_fish" : { + "unicode" : "1f420", + "unicode_alternates" : "", + "name" : "tropical fish", + "shortname" : ":tropical_fish:", + "category" : "nature", + "emoji_order" : "245", + "aliases" : [ + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "animal", + "nature" + ] + }, + "fish" : { + "unicode" : "1f41f", + "unicode_alternates" : "", + "name" : "fish", + "shortname" : ":fish:", + "category" : "nature", + "emoji_order" : "246", + "aliases" : [ + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "animal", + "food", + "nature", + "pisces", + "zodiac" + ] + }, + "blowfish" : { + "unicode" : "1f421", + "unicode_alternates" : "", + "name" : "blowfish", + "shortname" : ":blowfish:", + "category" : "nature", + "emoji_order" : "247", + "aliases" : [ + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "food", + "nature", + "pufferfish", + "puffer", + "ballonfish", + "toadfish", + "fugu fish", + "sushi", + "animal", + "fish" + ] + }, + "dolphin" : { + "unicode" : "1f42c", + "unicode_alternates" : "", + "name" : "dolphin", + "shortname" : ":dolphin:", + "category" : "nature", + "emoji_order" : "248", + "aliases" : [ + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "animal", + "fins", + "fish", + "flipper", + "nature", + "ocean", + "sea" + ] + }, + "whale" : { + "unicode" : "1f433", + "unicode_alternates" : "", + "name" : "spouting whale", + "shortname" : ":whale:", + "category" : "nature", + "emoji_order" : "249", + "aliases" : [ + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "animal", + "nature", + "ocean", + "sea", + "face" + ] + }, + "whale2" : { + "unicode" : "1f40b", + "unicode_alternates" : "", + "name" : "whale", + "shortname" : ":whale2:", + "category" : "nature", + "emoji_order" : "250", + "aliases" : [ + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "animal", + "nature", + "ocean", + "sea", + "blubber", + "bloated", + "fat", + "large", + "massive" + ] + }, + "crocodile" : { + "unicode" : "1f40a", + "unicode_alternates" : "", + "name" : "crocodile", + "shortname" : ":crocodile:", + "category" : "nature", + "emoji_order" : "251", + "aliases" : [ + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "animal", + "nature", + "croc", + "alligator", + "gator", + "cranky" + ] + }, + "leopard" : { + "unicode" : "1f406", + "unicode_alternates" : "", + "name" : "leopard", + "shortname" : ":leopard:", + "category" : "nature", + "emoji_order" : "252", + "aliases" : [ + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "animal", + "nature", + "cat", + "spot", + "spotted", + "sexy" + ] + }, + "tiger2" : { + "unicode" : "1f405", + "unicode_alternates" : "", + "name" : "tiger", + "shortname" : ":tiger2:", + "category" : "nature", + "emoji_order" : "253", + "aliases" : [ + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "animal", + "nature", + "cat", + "striped", + "tony", + "tigger", + "hobs" + ] + }, + "water_buffalo" : { + "unicode" : "1f403", + "unicode_alternates" : "", + "name" : "water buffalo", + "shortname" : ":water_buffalo:", + "category" : "nature", + "emoji_order" : "254", + "aliases" : [ + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "animal", + "cow", + "nature", + "ox", + "asia", + "bovine" + ] + }, + "ox" : { + "unicode" : "1f402", + "unicode_alternates" : "", + "name" : "ox", + "shortname" : ":ox:", + "category" : "nature", + "emoji_order" : "255", + "aliases" : [ + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "animal", + "beef", + "cow", + "bull", + "nature", + "taurus", + "zodiac" + ] + }, + "cow2" : { + "unicode" : "1f404", + "unicode_alternates" : "", + "name" : "cow", + "shortname" : ":cow2:", + "category" : "nature", + "emoji_order" : "256", + "aliases" : [ + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "animal", + "beef", + "nature", + "ox", + "milk", + "dairy", + "beef", + "bessie", + "moo" + ] + }, + "dromedary_camel" : { + "unicode" : "1f42a", + "unicode_alternates" : "", + "name" : "dromedary camel", + "shortname" : ":dromedary_camel:", + "category" : "nature", + "emoji_order" : "257", + "aliases" : [ + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "animal", + "desert", + "hot", + "hump", + "middle east", + "heat", + "water", + "hump day", + "wednesday", + "sex", + "nature" + ] + }, + "camel" : { + "unicode" : "1f42b", + "unicode_alternates" : "", + "name" : "bactrian camel", + "shortname" : ":camel:", + "category" : "nature", + "emoji_order" : "258", + "aliases" : [ + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "animal", + "hot", + "nature", + "hump", + "desert", + "central asia", + "heat", + "water", + "hump day", + "wednesday", + "sex" + ] + }, + "elephant" : { + "unicode" : "1f418", + "unicode_alternates" : "", + "name" : "elephant", + "shortname" : ":elephant:", + "category" : "nature", + "emoji_order" : "259", + "aliases" : [ + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "animal", + "nature", + "nose", + "thailand" + ] + }, + "goat" : { + "unicode" : "1f410", + "unicode_alternates" : "", + "name" : "goat", + "shortname" : ":goat:", + "category" : "nature", + "emoji_order" : "260", + "aliases" : [ + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "animal", + "nature", + "kid", + "billy", + "livestock", + "capricorn", + "zodiac" + ] + }, + "ram" : { + "unicode" : "1f40f", + "unicode_alternates" : "", + "name" : "ram", + "shortname" : ":ram:", + "category" : "nature", + "emoji_order" : "261", + "aliases" : [ + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "animal", + "nature", + "sheep", + "male", + "horns", + "aries", + "zodiac" + ] + }, + "sheep" : { + "unicode" : "1f411", + "unicode_alternates" : "", + "name" : "sheep", + "shortname" : ":sheep:", + "category" : "nature", + "emoji_order" : "262", + "aliases" : [ + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "animal", + "nature", + "wool", + "flock", + "follower", + "ewe", + "female", + "lamb" + ] + }, + "racehorse" : { + "unicode" : "1f40e", + "unicode_alternates" : "", + "name" : "horse", + "shortname" : ":racehorse:", + "category" : "nature", + "emoji_order" : "263", + "aliases" : [ + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "animal", + "gamble", + "powerful", + "draft", + "calvary", + "cowboy", + "cowgirl", + "mounted", + "race", + "ride", + "gallop", + "trot", + "colt", + "filly", + "mare", + "stallion", + "gelding", + "yearling", + "thoroughbred", + "pony", + "nature", + "place", + "racehorse", + "racing" + ] + }, + "pig2" : { + "unicode" : "1f416", + "unicode_alternates" : "", + "name" : "pig", + "shortname" : ":pig2:", + "category" : "nature", + "emoji_order" : "264", + "aliases" : [ + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "animal", + "nature", + "piggy", + "pork", + "ham", + "hog", + "bacon", + "oink", + "slop", + "livestock", + "greed", + "greedy", + "oink", + "sow" + ] + }, + "rat" : { + "unicode" : "1f400", + "unicode_alternates" : "", + "name" : "rat", + "shortname" : ":rat:", + "category" : "nature", + "emoji_order" : "265", + "aliases" : [ + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "animal", + "mouse", + "rodent", + "crooked", + "snitch", + "nature" + ] + }, + "mouse2" : { + "unicode" : "1f401", + "unicode_alternates" : "", + "name" : "mouse", + "shortname" : ":mouse2:", + "category" : "nature", + "emoji_order" : "266", + "aliases" : [ + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "animal", + "nature", + "mice", + "rodent" + ] + }, + "rooster" : { + "unicode" : "1f413", + "unicode_alternates" : "", + "name" : "rooster", + "shortname" : ":rooster:", + "category" : "nature", + "emoji_order" : "267", + "aliases" : [ + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "animal", + "chicken", + "nature", + "cockerel", + "cock", + "male", + "cock-a-doodle-doo", + "crowing" + ] + }, + "turkey" : { + "unicode" : "1f983", + "unicode_alternates" : "", + "name" : "turkey", + "shortname" : ":turkey:", + "category" : "nature", + "emoji_order" : "268", + "aliases" : [ + ], + "aliases_ascii" : [ + ], + "keywords" : [ + ] + }, + "dove" : { + "unicode" : "1f54a", + "unicode_alternates" : "1f54a-fe0f", + "name" : "dove of peace", + "shortname" : ":dove:", + "category" : "nature", + "emoji_order" : "269", + "aliases" : [ + ":dove_of_peace:" + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "symbol", + "bird", + "animal", + "fly", + "nature" + ] + }, + "dog2" : { + "unicode" : "1f415", + "unicode_alternates" : "", + "name" : "dog", + "shortname" : ":dog2:", + "category" : "nature", + "emoji_order" : "270", + "aliases" : [ + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "animal", + "friend", + "nature", + "pet", + "puppy", + "woof", + "bark", + "fido" + ] + }, + "poodle" : { + "unicode" : "1f429", + "unicode_alternates" : "", + "name" : "poodle", + "shortname" : ":poodle:", + "category" : "nature", + "emoji_order" : "271", + "aliases" : [ + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "101", + "animal", + "dog", + "nature", + "showy", + "sophisticated", + "vain" + ] + }, + "cat2" : { + "unicode" : "1f408", + "unicode_alternates" : "", + "name" : "cat", + "shortname" : ":cat2:", + "category" : "nature", + "emoji_order" : "272", + "aliases" : [ + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "animal", + "meow", + "pet", + "kitten", + "nature" + ] + }, + "rabbit2" : { + "unicode" : "1f407", + "unicode_alternates" : "", + "name" : "rabbit", + "shortname" : ":rabbit2:", + "category" : "nature", + "emoji_order" : "273", + "aliases" : [ + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "animal", + "nature", + "bunny", + "easter", + "reproduction", + "prolific", + "pet" + ] + }, + "chipmunk" : { + "unicode" : "1f43f", + "unicode_alternates" : "1f43f-fe0f", + "name" : "chipmunk", + "shortname" : ":chipmunk:", + "category" : "nature", + "emoji_order" : "274", + "aliases" : [ + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "animal", + "nature" + ] + }, + "feet" : { + "unicode" : "1f43e", + "unicode_alternates" : "", + "name" : "paw prints", + "shortname" : ":feet:", + "category" : "nature", + "emoji_order" : "275", + "aliases" : [ + ":paw_prints:" + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "animal", + "pet", + "tracking", + "mark", + "imprints", + "footsteps", + "lion", + "bear", + "dog", + "cat", + "raccoon", + "critter", + "feet", + "nature", + "print" + ] + }, + "dragon" : { + "unicode" : "1f409", + "unicode_alternates" : "", + "name" : "dragon", + "shortname" : ":dragon:", + "category" : "nature", + "emoji_order" : "276", + "aliases" : [ + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "chinese", + "green", + "myth", + "nature", + "dragon", + "fire", + "legendary", + "myth", + "animal", + "fairy tale" + ] + }, + "dragon_face" : { + "unicode" : "1f432", + "unicode_alternates" : "", + "name" : "dragon face", + "shortname" : ":dragon_face:", + "category" : "nature", + "emoji_order" : "277", + "aliases" : [ + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "chinese", + "green", + "myth", + "nature", + "dragon", + "head", + "fire", + "legendary", + "myth", + "animal", + "fairy tale" + ] + }, + "cactus" : { + "unicode" : "1f335", + "unicode_alternates" : "", + "name" : "cactus", + "shortname" : ":cactus:", + "category" : "nature", + "emoji_order" : "278", + "aliases" : [ + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "nature", + "plant", + "vegetable", + "desert", + "drought", + "spike", + "poke" + ] + }, + "christmas_tree" : { + "unicode" : "1f384", + "unicode_alternates" : "", + "name" : "christmas tree", + "shortname" : ":christmas_tree:", + "category" : "nature", + "emoji_order" : "279", + "aliases" : [ + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "celebration", + "december", + "festival", + "vacation", + "xmas", + "santa", + "holiday", + "winter", + "evergreen", + "ornaments", + "jesus", + "gifts", + "presents", + "activity", + "entertainment", + "object" + ] + }, + "evergreen_tree" : { + "unicode" : "1f332", + "unicode_alternates" : "", + "name" : "evergreen tree", + "shortname" : ":evergreen_tree:", + "category" : "nature", + "emoji_order" : "280", + "aliases" : [ + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "nature", + "plant", + "needles", + "christmas" + ] + }, + "deciduous_tree" : { + "unicode" : "1f333", + "unicode_alternates" : "", + "name" : "deciduous tree", + "shortname" : ":deciduous_tree:", + "category" : "nature", + "emoji_order" : "281", + "aliases" : [ + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "nature", + "plant", + "leaves", + "fall", + "color", + "shedding" + ] + }, + "palm_tree" : { + "unicode" : "1f334", + "unicode_alternates" : "", + "name" : "palm tree", + "shortname" : ":palm_tree:", + "category" : "nature", + "emoji_order" : "282", + "aliases" : [ + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "nature", + "plant", + "coconuts", + "fronds", + "warm", + "tropical" + ] + }, + "seedling" : { + "unicode" : "1f331", + "unicode_alternates" : "", + "name" : "seedling", + "shortname" : ":seedling:", + "category" : "nature", + "emoji_order" : "283", + "aliases" : [ + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "grass", + "lawn", + "nature", + "plant", + "new", + "start", + "grow", + "young" + ] + }, + "herb" : { + "unicode" : "1f33f", + "unicode_alternates" : "", + "name" : "herb", + "shortname" : ":herb:", + "category" : "nature", + "emoji_order" : "284", + "aliases" : [ + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "grass", + "lawn", + "medicine", + "plant", + "vegetable", + "weed", + "spice", + "plant", + "cook", + "cooking", + "leaf", + "nature" + ] + }, + "shamrock" : { + "unicode" : "2618", + "unicode_alternates" : "2618-fe0f", + "name" : "shamrock", + "shortname" : ":shamrock:", + "category" : "nature", + "emoji_order" : "285", + "aliases" : [ + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "nature", + "plant" + ] + }, + "four_leaf_clover" : { + "unicode" : "1f340", + "unicode_alternates" : "", + "name" : "four leaf clover", + "shortname" : ":four_leaf_clover:", + "category" : "nature", + "emoji_order" : "286", + "aliases" : [ + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "lucky", + "nature", + "plant", + "luck", + "irish", + "saint", + "patrick", + "green", + "4" + ] + }, + "bamboo" : { + "unicode" : "1f38d", + "unicode_alternates" : "", + "name" : "pine decoration", + "shortname" : ":bamboo:", + "category" : "nature", + "emoji_order" : "287", + "aliases" : [ + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "nature", + "plant", + "vegetable", + "bamboo", + "new", + "years", + "spirits", + "harvest", + "prosperity", + "longevity", + "fortune", + "luck", + "welcome", + "farming", + "agriculture", + "activity", + "celebration", + "japanese", + "object" + ] + }, + "tanabata_tree" : { + "unicode" : "1f38b", + "unicode_alternates" : "", + "name" : "tanabata tree", + "shortname" : ":tanabata_tree:", + "category" : "nature", + "emoji_order" : "288", + "aliases" : [ + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "nature", + "plant", + "festival", + "star", + "wish", + "holiday", + "activity", + "banner", + "celebration", + "entertainment", + "japanese", + "object" + ] + }, + "leaves" : { + "unicode" : "1f343", + "unicode_alternates" : "", + "name" : "leaf fluttering in wind", + "shortname" : ":leaves:", + "category" : "nature", + "emoji_order" : "289", + "aliases" : [ + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "nature", + "plant", + "tree", + "vegetable", + "leaves", + "float", + "deciduous", + "blow", + "flutter" + ] + }, + "fallen_leaf" : { + "unicode" : "1f342", + "unicode_alternates" : "", + "name" : "fallen leaf", + "shortname" : ":fallen_leaf:", + "category" : "nature", + "emoji_order" : "290", + "aliases" : [ + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "leaves", + "nature", + "plant", + "vegetable", + "fall", + "color", + "deciduous", + "autumn", + "falling" + ] + }, + "maple_leaf" : { + "unicode" : "1f341", + "unicode_alternates" : "", + "name" : "maple leaf", + "shortname" : ":maple_leaf:", + "category" : "nature", + "emoji_order" : "291", + "aliases" : [ + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "canada", + "nature", + "plant", + "syrup", + "tree", + "falling" + ] + }, + "ear_of_rice" : { + "unicode" : "1f33e", + "unicode_alternates" : "", + "name" : "ear of rice", + "shortname" : ":ear_of_rice:", + "category" : "nature", + "emoji_order" : "292", + "aliases" : [ + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "nature", + "plant", + "food", + "seed" + ] + }, + "hibiscus" : { + "unicode" : "1f33a", + "unicode_alternates" : "", + "name" : "hibiscus", + "shortname" : ":hibiscus:", + "category" : "nature", + "emoji_order" : "293", + "aliases" : [ + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "plant", + "hibiscus", + "flower", + "warm", + "nature" + ] + }, + "sunflower" : { + "unicode" : "1f33b", + "unicode_alternates" : "", + "name" : "sunflower", + "shortname" : ":sunflower:", + "category" : "nature", + "emoji_order" : "294", + "aliases" : [ + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "nature", + "plant", + "sun", + "flower", + "seeds", + "yellow" + ] + }, + "rose" : { + "unicode" : "1f339", + "unicode_alternates" : "", + "name" : "rose", + "shortname" : ":rose:", + "category" : "nature", + "emoji_order" : "295", + "aliases" : [ + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "love", + "valentines", + "fragrant", + "flower", + "thorns", + "petals", + "romance", + "nature", + "plant" + ] + }, + "tulip" : { + "unicode" : "1f337", + "unicode_alternates" : "", + "name" : "tulip", + "shortname" : ":tulip:", + "category" : "nature", + "emoji_order" : "296", + "aliases" : [ + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "nature", + "plant", + "flower", + "bulb", + "spring", + "easter" + ] + }, + "blossom" : { + "unicode" : "1f33c", + "unicode_alternates" : "", + "name" : "blossom", + "shortname" : ":blossom:", + "category" : "nature", + "emoji_order" : "297", + "aliases" : [ + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "nature", + "yellow", + "daisy", + "flower", + "plant" + ] + }, + "cherry_blossom" : { + "unicode" : "1f338", + "unicode_alternates" : "", + "name" : "cherry blossom", + "shortname" : ":cherry_blossom:", + "category" : "nature", + "emoji_order" : "298", + "aliases" : [ + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "flower", + "nature", + "plant", + "tree" + ] + }, + "bouquet" : { + "unicode" : "1f490", + "unicode_alternates" : "", + "name" : "bouquet", + "shortname" : ":bouquet:", + "category" : "nature", + "emoji_order" : "299", + "aliases" : [ + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "flowers", + "nature", + "flower", + "object", + "place", + "plant", + "romance" + ] + }, + "mushroom" : { + "unicode" : "1f344", + "unicode_alternates" : "", + "name" : "mushroom", + "shortname" : ":mushroom:", + "category" : "nature", + "emoji_order" : "300", + "aliases" : [ + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "plant", + "vegetable", + "fungi", + "food", + "fungus", + "shroom", + "nature" + ] + }, + "chestnut" : { + "unicode" : "1f330", + "unicode_alternates" : "", + "name" : "chestnut", + "shortname" : ":chestnut:", + "category" : "nature", + "emoji_order" : "301", + "aliases" : [ + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "food", + "squirrel", + "chestnut", + "roasted", + "tree", + "nature", + "plant" + ] + }, + "jack_o_lantern" : { + "unicode" : "1f383", + "unicode_alternates" : "", + "name" : "jack-o-lantern", + "shortname" : ":jack_o_lantern:", + "category" : "nature", + "emoji_order" : "302", + "aliases" : [ + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "halloween", + "pumpkin", + "holiday", + "carve", + "autumn", + "fall", + "october", + "saints", + "costume", + "spooky", + "horror", + "scary", + "scared", + "dead", + "activity", + "celebration", + "entertainment", + "jack", + "lantern", + "object" + ] + }, + "shell" : { + "unicode" : "1f41a", + "unicode_alternates" : "", + "name" : "spiral shell", + "shortname" : ":shell:", + "category" : "nature", + "emoji_order" : "303", + "aliases" : [ + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "beach", + "nature", + "sea", + "beach", + "sand", + "crab", + "nautilus", + "animal" + ] + }, + "spider_web" : { + "unicode" : "1f578", + "unicode_alternates" : "1f578-fe0f", + "name" : "spider web", + "shortname" : ":spider_web:", + "category" : "nature", + "emoji_order" : "304", + "aliases" : [ + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "cobweb", + "animal", + "object" + ] + }, + "earth_americas" : { + "unicode" : "1f30e", + "unicode_alternates" : "", + "name" : "earth globe americas", + "shortname" : ":earth_americas:", + "category" : "nature", + "emoji_order" : "305", + "aliases" : [ + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "USA", + "globe", + "international", + "world", + "space", + "planet", + "north", + "south", + "nature", + "place" + ] + }, + "earth_africa" : { + "unicode" : "1f30d", + "unicode_alternates" : "", + "name" : "earth globe europe-africa", + "shortname" : ":earth_africa:", + "category" : "nature", + "emoji_order" : "306", + "aliases" : [ + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "globe", + "international", + "world", + "space", + "planet", + "africa", + "europe", + "nature", + "place" + ] + }, + "earth_asia" : { + "unicode" : "1f30f", + "unicode_alternates" : "", + "name" : "earth globe asia-australia", + "shortname" : ":earth_asia:", + "category" : "nature", + "emoji_order" : "307", + "aliases" : [ + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "east", + "globe", + "international", + "world", + "space", + "planet", + "australia", + "asia", + "nature", + "place" + ] + }, + "full_moon" : { + "unicode" : "1f315", + "unicode_alternates" : "", + "name" : "full moon symbol", + "shortname" : ":full_moon:", + "category" : "nature", + "emoji_order" : "308", + "aliases" : [ + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "nature", + "yellow", + "sky", + "night", + "cheese", + "phase", + "spooky", + "werewolves", + "twilight", + "place", + "space", + "time", + "weather" + ] + }, + "waning_gibbous_moon" : { + "unicode" : "1f316", + "unicode_alternates" : "", + "name" : "waning gibbous moon symbol", + "shortname" : ":waning_gibbous_moon:", + "category" : "nature", + "emoji_order" : "309", + "aliases" : [ + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "nature", + "sky", + "night", + "cheese", + "phase", + "place", + "space", + "time", + "weather" + ] + }, + "last_quarter_moon" : { + "unicode" : "1f317", + "unicode_alternates" : "", + "name" : "last quarter moon symbol", + "shortname" : ":last_quarter_moon:", + "category" : "nature", + "emoji_order" : "310", + "aliases" : [ + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "nature", + "sky", + "night", + "cheese", + "phase", + "place", + "space", + "time", + "weather" + ] + }, + "waning_crescent_moon" : { + "unicode" : "1f318", + "unicode_alternates" : "", + "name" : "waning crescent moon symbol", + "shortname" : ":waning_crescent_moon:", + "category" : "nature", + "emoji_order" : "311", + "aliases" : [ + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "nature", + "sky", + "night", + "cheese", + "phase", + "place", + "space", + "time", + "weather" + ] + }, + "new_moon" : { + "unicode" : "1f311", + "unicode_alternates" : "", + "name" : "new moon symbol", + "shortname" : ":new_moon:", + "category" : "nature", + "emoji_order" : "312", + "aliases" : [ + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "nature", + "sky", + "night", + "cheese", + "phase", + "dark", + "place", + "space", + "time", + "weather" + ] + }, + "waxing_crescent_moon" : { + "unicode" : "1f312", + "unicode_alternates" : "", + "name" : "waxing crescent moon symbol", + "shortname" : ":waxing_crescent_moon:", + "category" : "nature", + "emoji_order" : "313", + "aliases" : [ + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "nature", + "sky", + "night", + "cheese", + "phase", + "place", + "space", + "time", + "weather" + ] + }, + "first_quarter_moon" : { + "unicode" : "1f313", + "unicode_alternates" : "", + "name" : "first quarter moon symbol", + "shortname" : ":first_quarter_moon:", + "category" : "nature", + "emoji_order" : "314", + "aliases" : [ + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "nature", + "sky", + "night", + "cheese", + "phase", + "place", + "space", + "time", + "weather" + ] + }, + "waxing_gibbous_moon" : { + "unicode" : "1f314", + "unicode_alternates" : "", + "name" : "waxing gibbous moon symbol", + "shortname" : ":waxing_gibbous_moon:", + "category" : "nature", + "emoji_order" : "315", + "aliases" : [ + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "nature", + "sky", + "night", + "cheese", + "phase", + "place", + "space", + "time", + "weather" + ] + }, + "new_moon_with_face" : { + "unicode" : "1f31a", + "unicode_alternates" : "", + "name" : "new moon with face", + "shortname" : ":new_moon_with_face:", + "category" : "nature", + "emoji_order" : "316", + "aliases" : [ + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "nature", + "anthropomorphic", + "sky", + "night", + "cheese", + "phase", + "place", + "space", + "time", + "weather" + ] + }, + "full_moon_with_face" : { + "unicode" : "1f31d", + "unicode_alternates" : "", + "name" : "full moon with face", + "shortname" : ":full_moon_with_face:", + "category" : "nature", + "emoji_order" : "317", + "aliases" : [ + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "night", + "anthropomorphic", + "sky", + "night", + "cheese", + "phase", + "spooky", + "werewolves", + "bright", + "nature", + "place", + "space", + "weather" + ] + }, + "first_quarter_moon_with_face" : { + "unicode" : "1f31b", + "unicode_alternates" : "", + "name" : "first quarter moon with face", + "shortname" : ":first_quarter_moon_with_face:", + "category" : "nature", + "emoji_order" : "318", + "aliases" : [ + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "nature", + "anthropomorphic", + "sky", + "night", + "cheese", + "phase", + "crescent", + "place", + "space", + "weather" + ] + }, + "last_quarter_moon_with_face" : { + "unicode" : "1f31c", + "unicode_alternates" : "", + "name" : "last quarter moon with face", + "shortname" : ":last_quarter_moon_with_face:", + "category" : "nature", + "emoji_order" : "319", + "aliases" : [ + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "nature", + "anthropomorphic", + "sky", + "night", + "cheese", + "phase", + "crescent", + "place", + "space", + "weather" + ] + }, + "sun_with_face" : { + "unicode" : "1f31e", + "unicode_alternates" : "", + "name" : "sun with face", + "shortname" : ":sun_with_face:", + "category" : "nature", + "emoji_order" : "320", + "aliases" : [ + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "morning", + "anthropomorphic", + "sky", + "sunny", + "bright", + "nature", + "place", + "space", + "weather" + ] + }, + "crescent_moon" : { + "unicode" : "1f319", + "unicode_alternates" : "", + "name" : "crescent moon", + "shortname" : ":crescent_moon:", + "category" : "nature", + "emoji_order" : "321", + "aliases" : [ + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "night", + "waxing", + "sky", + "night", + "cheese", + "phase", + "nature", + "place", + "space", + "time", + "weather" + ] + }, + "star" : { + "unicode" : "2b50", + "unicode_alternates" : "2b50-fe0f", + "name" : "white medium star", + "shortname" : ":star:", + "category" : "nature", + "emoji_order" : "322", + "aliases" : [ + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "night", + "yellow", + "nature", + "place" + ] + }, + "star2" : { + "unicode" : "1f31f", + "unicode_alternates" : "", + "name" : "glowing star", + "shortname" : ":star2:", + "category" : "nature", + "emoji_order" : "323", + "aliases" : [ + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "night", + "sparkle", + "glow", + "five", + "points", + "classic", + "glittery", + "object", + "place", + "shining" + ] + }, + "dizzy" : { + "unicode" : "1f4ab", + "unicode_alternates" : "", + "name" : "dizzy symbol", + "shortname" : ":dizzy:", + "category" : "nature", + "emoji_order" : "324", + "aliases" : [ + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "shoot", + "sparkle", + "star", + "drunk", + "sick", + "intoxicated", + "squeans", + "starburst", + "star", + "comic", + "emotion", + "person" + ] + }, + "sparkles" : { + "unicode" : "2728", + "unicode_alternates" : "", + "name" : "sparkles", + "shortname" : ":sparkles:", + "category" : "nature", + "emoji_order" : "325", + "aliases" : [ + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "cool", + "shine", + "shiny", + "stars", + "emotion", + "entertainment", + "object", + "sign", + "sparkle", + "star" + ] + }, + "comet" : { + "unicode" : "2604", + "unicode_alternates" : "2604-fe0f", + "name" : "comet", + "shortname" : ":comet:", + "category" : "nature", + "emoji_order" : "326", + "aliases" : [ + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "object", + "space" + ] + }, + "sunny" : { + "unicode" : "2600", + "unicode_alternates" : "2600-fe0f", + "name" : "black sun with rays", + "shortname" : ":sunny:", + "category" : "nature", + "emoji_order" : "327", + "aliases" : [ + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "brightness", + "weather", + "sunny", + "bright", + "nature", + "space" + ] + }, + "white_sun_small_cloud" : { + "unicode" : "1f324", + "unicode_alternates" : "1f324-fe0f", + "name" : "white sun with small cloud", + "shortname" : ":white_sun_small_cloud:", + "category" : "nature", + "emoji_order" : "328", + "aliases" : [ + ":white_sun_with_small_cloud:" + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "nature", + "weather" + ] + }, + "partly_sunny" : { + "unicode" : "26c5", + "unicode_alternates" : "26c5-fe0f", + "name" : "sun behind cloud", + "shortname" : ":partly_sunny:", + "category" : "nature", + "emoji_order" : "329", + "aliases" : [ + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "nature", + "weather", + "partly", + "sunny" + ] + }, + "white_sun_cloud" : { + "unicode" : "1f325", + "unicode_alternates" : "1f325-fe0f", + "name" : "white sun behind cloud", + "shortname" : ":white_sun_cloud:", + "category" : "nature", + "emoji_order" : "330", + "aliases" : [ + ":white_sun_behind_cloud:" + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "nature", + "weather" + ] + }, + "white_sun_rain_cloud" : { + "unicode" : "1f326", + "unicode_alternates" : "1f326-fe0f", + "name" : "white sun behind cloud with rain", + "shortname" : ":white_sun_rain_cloud:", + "category" : "nature", + "emoji_order" : "331", + "aliases" : [ + ":white_sun_behind_cloud_with_rain:" + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "nature", + "weather" + ] + }, + "cloud" : { + "unicode" : "2601", + "unicode_alternates" : "2601-fe0f", + "name" : "cloud", + "shortname" : ":cloud:", + "category" : "nature", + "emoji_order" : "332", + "aliases" : [ + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "sky", + "weather", + "overcast", + "nature" + ] + }, + "cloud_rain" : { + "unicode" : "1f327", + "unicode_alternates" : "1f327-fe0f", + "name" : "cloud with rain", + "shortname" : ":cloud_rain:", + "category" : "nature", + "emoji_order" : "333", + "aliases" : [ + ":cloud_with_rain:" + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "weather", + "wet", + "nature" + ] + }, + "thunder_cloud_rain" : { + "unicode" : "26c8", + "unicode_alternates" : "26c8-fe0f", + "name" : "thunder cloud and rain", + "shortname" : ":thunder_cloud_rain:", + "category" : "nature", + "emoji_order" : "334", + "aliases" : [ + ":thunder_cloud_and_rain:" + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "nature", + "weather" + ] + }, + "cloud_lightning" : { + "unicode" : "1f329", + "unicode_alternates" : "1f329-fe0f", + "name" : "cloud with lightning", + "shortname" : ":cloud_lightning:", + "category" : "nature", + "emoji_order" : "335", + "aliases" : [ + ":cloud_with_lightning:" + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "weather", + "thunder", + "nature" + ] + }, + "zap" : { + "unicode" : "26a1", + "unicode_alternates" : "26a1-fe0f", + "name" : "high voltage sign", + "shortname" : ":zap:", + "category" : "nature", + "emoji_order" : "336", + "aliases" : [ + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "lightning bolt", + "thunder", + "weather", + "zap", + "danger", + "electric", + "electricity", + "lightning", + "nature", + "symbol" + ] + }, + "fire" : { + "unicode" : "1f525", + "unicode_alternates" : "", + "name" : "fire", + "shortname" : ":fire:", + "category" : "nature", + "emoji_order" : "337", + "aliases" : [ + ":flame:" + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "cook", + "hot", + "flame", + "object", + "tool" + ] + }, + "boom" : { + "unicode" : "1f4a5", + "unicode_alternates" : "", + "name" : "collision symbol", + "shortname" : ":boom:", + "category" : "nature", + "emoji_order" : "338", + "aliases" : [ + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "bomb", + "explode", + "explosion", + "boom", + "bang", + "fire", + "emphasis", + "wow", + "bam", + "comic", + "emotion", + "person" + ] + }, + "snowflake" : { + "unicode" : "2744", + "unicode_alternates" : "2744-fe0f", + "name" : "snowflake", + "shortname" : ":snowflake:", + "category" : "nature", + "emoji_order" : "339", + "aliases" : [ + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "christmas", + "season", + "weather", + "winter", + "xmas", + "snow", + "frozen", + "droplet", + "ice", + "crystal", + "cold", + "chilly", + "unique", + "special", + "below zero", + "elsa", + "nature" + ] + }, + "cloud_snow" : { + "unicode" : "1f328", + "unicode_alternates" : "1f328-fe0f", + "name" : "cloud with snow", + "shortname" : ":cloud_snow:", + "category" : "nature", + "emoji_order" : "340", + "aliases" : [ + ":cloud_with_snow:" + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "weather", + "cold", + "nature" + ] + }, + "snowman2" : { + "unicode" : "2603", + "unicode_alternates" : "2603-fe0f", + "name" : "snowman", + "shortname" : ":snowman2:", + "category" : "nature", + "emoji_order" : "341", + "aliases" : [ + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "cold", + "nature", + "snow", + "weather" + ] + }, + "snowman" : { + "unicode" : "26c4", + "unicode_alternates" : "26c4-fe0f", + "name" : "snowman without snow", + "shortname" : ":snowman:", + "category" : "nature", + "emoji_order" : "342", + "aliases" : [ + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "christmas", + "cold", + "season", + "weather", + "winter", + "xmas", + "nature" + ] + }, + "wind_blowing_face" : { + "unicode" : "1f32c", + "unicode_alternates" : "1f32c-fe0f", + "name" : "wind blowing face", + "shortname" : ":wind_blowing_face:", + "category" : "nature", + "emoji_order" : "343", + "aliases" : [ + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "mother", + "nature", + "blow", + "cloud", + "weather" + ] + }, + "dash" : { + "unicode" : "1f4a8", + "unicode_alternates" : "", + "name" : "dash symbol", + "shortname" : ":dash:", + "category" : "nature", + "emoji_order" : "344", + "aliases" : [ + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "air", + "fast", + "shoo", + "wind", + "comic", + "emotion", + "object", + "person", + "running" + ] + }, + "cloud_tornado" : { + "unicode" : "1f32a", + "unicode_alternates" : "1f32a-fe0f", + "name" : "cloud with tornado", + "shortname" : ":cloud_tornado:", + "category" : "nature", + "emoji_order" : "345", + "aliases" : [ + ":cloud_with_tornado:" + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "weather", + "destruction", + "funnel", + "nature" + ] + }, + "fog" : { + "unicode" : "1f32b", + "unicode_alternates" : "1f32b-fe0f", + "name" : "fog", + "shortname" : ":fog:", + "category" : "nature", + "emoji_order" : "346", + "aliases" : [ + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "weather", + "damp", + "cloud", + "hazy", + "nature" + ] + }, + "umbrella2" : { + "unicode" : "2602", + "unicode_alternates" : "2602-fe0f", + "name" : "umbrella", + "shortname" : ":umbrella2:", + "category" : "nature", + "emoji_order" : "347", + "aliases" : [ + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "clothing", + "nature", + "rain", + "weather" + ] + }, + "umbrella" : { + "unicode" : "2614", + "unicode_alternates" : "2614-fe0f", + "name" : "umbrella with rain drops", + "shortname" : ":umbrella:", + "category" : "nature", + "emoji_order" : "348", + "aliases" : [ + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "rain", + "weather", + "clothing", + "drop", + "nature" + ] + }, + "droplet" : { + "unicode" : "1f4a7", + "unicode_alternates" : "", + "name" : "droplet", + "shortname" : ":droplet:", + "category" : "nature", + "emoji_order" : "349", + "aliases" : [ + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "drip", + "faucet", + "water", + "drop", + "h20", + "aqua", + "tear", + "sweat", + "rain", + "moisture", + "wet", + "moist", + "spit", + "cold", + "comic", + "emotion", + "nature", + "object", + "person", + "weather" + ] + }, + "sweat_drops" : { + "unicode" : "1f4a6", + "unicode_alternates" : "", + "name" : "splashing sweat symbol", + "shortname" : ":sweat_drops:", + "category" : "nature", + "emoji_order" : "350", + "aliases" : [ + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "water", + "drops", + "comic", + "emotion", + "object", + "person" + ] + }, + "ocean" : { + "unicode" : "1f30a", + "unicode_alternates" : "", + "name" : "water wave", + "shortname" : ":ocean:", + "category" : "nature", + "emoji_order" : "351", + "aliases" : [ + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "sea", + "ocean", + "surf", + "beach", + "tide", + "nature", + "place", + "weather" + ] + }, + "green_apple" : { + "unicode" : "1f34f", + "unicode_alternates" : "", + "name" : "green apple", + "shortname" : ":green_apple:", + "category" : "food", + "emoji_order" : "352", + "aliases" : [ + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "fruit", + "nature", + "fruit", + "pie", + "granny", + "smith", + "core", + "food", + "object", + "plant" + ] + }, + "apple" : { + "unicode" : "1f34e", + "unicode_alternates" : "", + "name" : "red apple", + "shortname" : ":apple:", + "category" : "food", + "emoji_order" : "353", + "aliases" : [ + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "fruit", + "mac", + "electronics", + "doctor", + "teacher", + "school", + "core", + "pie", + "food", + "nature", + "object", + "plant" + ] + }, + "pear" : { + "unicode" : "1f350", + "unicode_alternates" : "", + "name" : "pear", + "shortname" : ":pear:", + "category" : "food", + "emoji_order" : "354", + "aliases" : [ + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "fruit", + "nature", + "shape", + "food", + "object", + "plant" + ] + }, + "tangerine" : { + "unicode" : "1f34a", + "unicode_alternates" : "", + "name" : "tangerine", + "shortname" : ":tangerine:", + "category" : "food", + "emoji_order" : "355", + "aliases" : [ + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "food", + "fruit", + "nature", + "citrus", + "orange", + "object", + "plant" + ] + }, + "lemon" : { + "unicode" : "1f34b", + "unicode_alternates" : "", + "name" : "lemon", + "shortname" : ":lemon:", + "category" : "food", + "emoji_order" : "356", + "aliases" : [ + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "fruit", + "nature", + "yellow", + "citrus", + "food", + "object", + "plant" + ] + }, + "banana" : { + "unicode" : "1f34c", + "unicode_alternates" : "", + "name" : "banana", + "shortname" : ":banana:", + "category" : "food", + "emoji_order" : "357", + "aliases" : [ + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "food", + "fruit", + "peel", + "bunch", + "nature", + "object", + "plant" + ] + }, + "watermelon" : { + "unicode" : "1f349", + "unicode_alternates" : "", + "name" : "watermelon", + "shortname" : ":watermelon:", + "category" : "food", + "emoji_order" : "358", + "aliases" : [ + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "food", + "fruit", + "melon", + "summer", + "large", + "nature", + "object", + "plant" + ] + }, + "grapes" : { + "unicode" : "1f347", + "unicode_alternates" : "", + "name" : "grapes", + "shortname" : ":grapes:", + "category" : "food", + "emoji_order" : "359", + "aliases" : [ + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "food", + "fruit", + "wine", + "vinegar", + "vine", + "grape", + "nature", + "object", + "plant" + ] + }, + "strawberry" : { + "unicode" : "1f353", + "unicode_alternates" : "", + "name" : "strawberry", + "shortname" : ":strawberry:", + "category" : "food", + "emoji_order" : "360", + "aliases" : [ + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "food", + "fruit", + "nature", + "shortcake", + "berry", + "object", + "plant" + ] + }, + "melon" : { + "unicode" : "1f348", + "unicode_alternates" : "", + "name" : "melon", + "shortname" : ":melon:", + "category" : "food", + "emoji_order" : "361", + "aliases" : [ + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "food", + "fruit", + "nature", + "cantaloupe", + "honeydew", + "object", + "plant" + ] + }, + "cherries" : { + "unicode" : "1f352", + "unicode_alternates" : "", + "name" : "cherries", + "shortname" : ":cherries:", + "category" : "food", + "emoji_order" : "362", + "aliases" : [ + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "food", + "fruit", + "cherry", + "tree", + "pit", + "nature", + "object", + "plant" + ] + }, + "peach" : { + "unicode" : "1f351", + "unicode_alternates" : "", + "name" : "peach", + "shortname" : ":peach:", + "category" : "food", + "emoji_order" : "363", + "aliases" : [ + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "food", + "fruit", + "nature", + "juicy", + "pit", + "object", + "plant" + ] + }, + "pineapple" : { + "unicode" : "1f34d", + "unicode_alternates" : "", + "name" : "pineapple", + "shortname" : ":pineapple:", + "category" : "food", + "emoji_order" : "364", + "aliases" : [ + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "food", + "fruit", + "nature", + "pina", + "tropical", + "flower", + "object", + "plant" + ] + }, + "tomato" : { + "unicode" : "1f345", + "unicode_alternates" : "", + "name" : "tomato", + "shortname" : ":tomato:", + "category" : "food", + "emoji_order" : "365", + "aliases" : [ + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "food", + "fruit", + "nature", + "vegetable", + "sauce", + "italian", + "object", + "plant" + ] + }, + "eggplant" : { + "unicode" : "1f346", + "unicode_alternates" : "", + "name" : "aubergine", + "shortname" : ":eggplant:", + "category" : "food", + "emoji_order" : "366", + "aliases" : [ + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "food", + "nature", + "vegetable", + "eggplant", + "purple", + "penis", + "object", + "plant" + ] + }, + "hot_pepper" : { + "unicode" : "1f336", + "unicode_alternates" : "1f336-fe0f", + "name" : "hot pepper", + "shortname" : ":hot_pepper:", + "category" : "food", + "emoji_order" : "367", + "aliases" : [ + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "food", + "nature", + "spicy", + "chili", + "cayenne", + "habanero", + "jalapeno", + "plant" + ] + }, + "corn" : { + "unicode" : "1f33d", + "unicode_alternates" : "", + "name" : "ear of maize", + "shortname" : ":corn:", + "category" : "food", + "emoji_order" : "368", + "aliases" : [ + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "food", + "plant", + "vegetable", + "corn", + "iowa", + "kernel", + "popcorn", + "husk", + "yellow", + "stalk", + "cob", + "maze", + "nature", + "object" + ] + }, + "sweet_potato" : { + "unicode" : "1f360", + "unicode_alternates" : "", + "name" : "roasted sweet potato", + "shortname" : ":sweet_potato:", + "category" : "food", + "emoji_order" : "369", + "aliases" : [ + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "food", + "nature", + "potassium", + "starch", + "object", + "restaurant" + ] + }, + "honey_pot" : { + "unicode" : "1f36f", + "unicode_alternates" : "", + "name" : "honey pot", + "shortname" : ":honey_pot:", + "category" : "food", + "emoji_order" : "370", + "aliases" : [ + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "bees", + "sweet", + "pooh", + "bear", + "food", + "honeypot", + "nature", + "object", + "restaurant" + ] + }, + "bread" : { + "unicode" : "1f35e", + "unicode_alternates" : "", + "name" : "bread", + "shortname" : ":bread:", + "category" : "food", + "emoji_order" : "371", + "aliases" : [ + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "food", + "toast", + "wheat", + "loaf", + "yeast", + "nature", + "object", + "restaurant" + ] + }, + "cheese" : { + "unicode" : "1f9c0", + "unicode_alternates" : "", + "name" : "cheese wedge", + "shortname" : ":cheese:", + "category" : "food", + "emoji_order" : "372", + "aliases" : [ + ":cheese_wedge:" + ], + "aliases_ascii" : [ + ], + "keywords" : [ + ] + }, + "poultry_leg" : { + "unicode" : "1f357", + "unicode_alternates" : "", + "name" : "poultry leg", + "shortname" : ":poultry_leg:", + "category" : "food", + "emoji_order" : "373", + "aliases" : [ + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "food", + "meat", + "chicken", + "fried", + "bone", + "nature", + "object", + "restaurant" + ] + }, + "meat_on_bone" : { + "unicode" : "1f356", + "unicode_alternates" : "", + "name" : "meat on bone", + "shortname" : ":meat_on_bone:", + "category" : "food", + "emoji_order" : "374", + "aliases" : [ + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "food", + "animal", + "cooked", + "mutton", + "nature", + "object", + "restaurant" + ] + }, + "fried_shrimp" : { + "unicode" : "1f364", + "unicode_alternates" : "", + "name" : "fried shrimp", + "shortname" : ":fried_shrimp:", + "category" : "food", + "emoji_order" : "375", + "aliases" : [ + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "animal", + "food", + "seafood", + "small", + "fish", + "nature", + "object", + "prawn", + "restaurant", + "tempura" + ] + }, + "egg" : { + "unicode" : "1f373", + "unicode_alternates" : "", + "name" : "cooking", + "shortname" : ":egg:", + "category" : "food", + "emoji_order" : "376", + "aliases" : [ + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "breakfast", + "food", + "egg", + "fry", + "pan", + "flat", + "cook", + "frying", + "utensil", + "nature", + "object", + "restaurant" + ] + }, + "hamburger" : { + "unicode" : "1f354", + "unicode_alternates" : "", + "name" : "hamburger", + "shortname" : ":hamburger:", + "category" : "food", + "emoji_order" : "377", + "aliases" : [ + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "food", + "meat", + "burger", + "cow", + "beef", + "angus", + "nature", + "object", + "restaurant" + ] + }, + "fries" : { + "unicode" : "1f35f", + "unicode_alternates" : "", + "name" : "french fries", + "shortname" : ":fries:", + "category" : "food", + "emoji_order" : "378", + "aliases" : [ + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "chips", + "food", + "potato", + "fry", + "russet", + "idaho", + "nature", + "object", + "restaurant" + ] + }, + "hotdog" : { + "unicode" : "1f32d", + "unicode_alternates" : "", + "name" : "hot dog", + "shortname" : ":hotdog:", + "category" : "food", + "emoji_order" : "379", + "aliases" : [ + ":hot_dog:" + ], + "aliases_ascii" : [ + ], + "keywords" : [ + ] + }, + "pizza" : { + "unicode" : "1f355", + "unicode_alternates" : "", + "name" : "slice of pizza", + "shortname" : ":pizza:", + "category" : "food", + "emoji_order" : "380", + "aliases" : [ + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "food", + "party", + "pie", + "new york", + "italian", + "italy", + "pepperoni", + "nature", + "object", + "restaurant" + ] + }, + "spaghetti" : { + "unicode" : "1f35d", + "unicode_alternates" : "", + "name" : "spaghetti", + "shortname" : ":spaghetti:", + "category" : "food", + "emoji_order" : "381", + "aliases" : [ + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "food", + "italian", + "noodle", + "noodles", + "tomato", + "sauce", + "nature", + "object", + "pasta", + "restaurant" + ] + }, + "taco" : { + "unicode" : "1f32e", + "unicode_alternates" : "", + "name" : "taco", + "shortname" : ":taco:", + "category" : "food", + "emoji_order" : "382", + "aliases" : [ + ], + "aliases_ascii" : [ + ], + "keywords" : [ + ] + }, + "burrito" : { + "unicode" : "1f32f", + "unicode_alternates" : "", + "name" : "burrito", + "shortname" : ":burrito:", + "category" : "food", + "emoji_order" : "383", + "aliases" : [ + ], + "aliases_ascii" : [ + ], + "keywords" : [ + ] + }, + "ramen" : { + "unicode" : "1f35c", + "unicode_alternates" : "", + "name" : "steaming bowl", + "shortname" : ":ramen:", + "category" : "food", + "emoji_order" : "384", + "aliases" : [ + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "chopsticks", + "food", + "japanese", + "noodle", + "ramen", + "noodles", + "soup", + "nature", + "object", + "restaurant" + ] + }, + "stew" : { + "unicode" : "1f372", + "unicode_alternates" : "", + "name" : "pot of food", + "shortname" : ":stew:", + "category" : "food", + "emoji_order" : "385", + "aliases" : [ + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "meat", + "stew", + "hearty", + "soup", + "thick", + "hot", + "nature", + "object", + "restaurant" + ] + }, + "fish_cake" : { + "unicode" : "1f365", + "unicode_alternates" : "", + "name" : "fish cake with swirl design", + "shortname" : ":fish_cake:", + "category" : "food", + "emoji_order" : "386", + "aliases" : [ + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "food", + "kamboko", + "ramen", + "noodles", + "naruto", + "nature", + "object", + "pastry", + "restaurant" + ] + }, + "sushi" : { + "unicode" : "1f363", + "unicode_alternates" : "", + "name" : "sushi", + "shortname" : ":sushi:", + "category" : "food", + "emoji_order" : "387", + "aliases" : [ + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "food", + "japanese", + "fish", + "raw", + "nigiri", + "nature", + "object", + "restaurant" + ] + }, + "bento" : { + "unicode" : "1f371", + "unicode_alternates" : "", + "name" : "bento box", + "shortname" : ":bento:", + "category" : "food", + "emoji_order" : "388", + "aliases" : [ + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "food", + "japanese", + "rice", + "meal", + "obento", + "convenient", + "lunchbox", + "nature", + "object", + "restaurant" + ] + }, + "curry" : { + "unicode" : "1f35b", + "unicode_alternates" : "", + "name" : "curry and rice", + "shortname" : ":curry:", + "category" : "food", + "emoji_order" : "389", + "aliases" : [ + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "food", + "hot", + "indian", + "spicy", + "spice", + "flavor", + "meal", + "nature", + "object", + "restaurant" + ] + }, + "rice_ball" : { + "unicode" : "1f359", + "unicode_alternates" : "", + "name" : "rice ball", + "shortname" : ":rice_ball:", + "category" : "food", + "emoji_order" : "390", + "aliases" : [ + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "food", + "japanese", + "white", + "nori", + "seaweed", + "nature", + "object", + "restaurant" + ] + }, + "rice" : { + "unicode" : "1f35a", + "unicode_alternates" : "", + "name" : "cooked rice", + "shortname" : ":rice:", + "category" : "food", + "emoji_order" : "391", + "aliases" : [ + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "food", + "white", + "grain", + "bowl", + "nature", + "object", + "restaurant" + ] + }, + "rice_cracker" : { + "unicode" : "1f358", + "unicode_alternates" : "", + "name" : "rice cracker", + "shortname" : ":rice_cracker:", + "category" : "food", + "emoji_order" : "392", + "aliases" : [ + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "food", + "japanese", + "seaweed", + "nature", + "object", + "restaurant" + ] + }, + "oden" : { + "unicode" : "1f362", + "unicode_alternates" : "", + "name" : "oden", + "shortname" : ":oden:", + "category" : "food", + "emoji_order" : "393", + "aliases" : [ + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "food", + "japanese", + "seafood", + "casserole", + "stew", + "kebab", + "nature", + "object", + "restaurant", + "skewer", + "stick" + ] + }, + "dango" : { + "unicode" : "1f361", + "unicode_alternates" : "", + "name" : "dango", + "shortname" : ":dango:", + "category" : "food", + "emoji_order" : "394", + "aliases" : [ + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "food", + "japanese", + "dumpling", + "mochi", + "balls", + "skewer", + "dessert", + "nature", + "object", + "restaurant", + "stick", + "sweet" + ] + }, + "shaved_ice" : { + "unicode" : "1f367", + "unicode_alternates" : "", + "name" : "shaved ice", + "shortname" : ":shaved_ice:", + "category" : "food", + "emoji_order" : "395", + "aliases" : [ + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "desert", + "dessert", + "treat", + "syrup", + "flavoring", + "food", + "nature", + "object", + "restaurant", + "sweet" + ] + }, + "ice_cream" : { + "unicode" : "1f368", + "unicode_alternates" : "", + "name" : "ice cream", + "shortname" : ":ice_cream:", + "category" : "food", + "emoji_order" : "396", + "aliases" : [ + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "desert", + "food", + "icecream", + "dairy", + "dessert", + "cold", + "soft", + "serve", + "cone", + "waffle", + "nature", + "object", + "restaurant", + "sweet" + ] + }, + "icecream" : { + "unicode" : "1f366", + "unicode_alternates" : "", + "name" : "soft ice cream", + "shortname" : ":icecream:", + "category" : "food", + "emoji_order" : "397", + "aliases" : [ + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "desert", + "food", + "icecream", + "dairy", + "dessert", + "cold", + "serve", + "cone", + "yogurt", + "nature", + "object", + "restaurant", + "sweet" + ] + }, + "cake" : { + "unicode" : "1f370", + "unicode_alternates" : "", + "name" : "shortcake", + "shortname" : ":cake:", + "category" : "food", + "emoji_order" : "398", + "aliases" : [ + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "desert", + "food", + "cake", + "short", + "dessert", + "strawberry", + "nature", + "object", + "pastry", + "restaurant", + "slice", + "sweet" + ] + }, + "birthday" : { + "unicode" : "1f382", + "unicode_alternates" : "", + "name" : "birthday cake", + "shortname" : ":birthday:", + "category" : "food", + "emoji_order" : "399", + "aliases" : [ + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "party", + "birth", + "dessert", + "wish", + "celebrate", + "celebration", + "food", + "object", + "pastry", + "sweet" + ] + }, + "custard" : { + "unicode" : "1f36e", + "unicode_alternates" : "", + "name" : "custard", + "shortname" : ":custard:", + "category" : "food", + "emoji_order" : "400", + "aliases" : [ + ":pudding:", + ":flan:" + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "desert", + "food", + "cream", + "rich", + "butter", + "dessert", + "crème", + "brûlée", + "french", + "nature", + "object", + "pudding", + "restaurant", + "sweet" + ] + }, + "candy" : { + "unicode" : "1f36c", + "unicode_alternates" : "", + "name" : "candy", + "shortname" : ":candy:", + "category" : "food", + "emoji_order" : "401", + "aliases" : [ + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "dessert", + "snack", + "sugar", + "sweet", + "hard", + "food", + "nature", + "object", + "restaurant" + ] + }, + "lollipop" : { + "unicode" : "1f36d", + "unicode_alternates" : "", + "name" : "lollipop", + "shortname" : ":lollipop:", + "category" : "food", + "emoji_order" : "402", + "aliases" : [ + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "candy", + "food", + "snack", + "sweet", + "stick", + "lick", + "sugar", + "dessert", + "nature", + "object", + "restaurant" + ] + }, + "chocolate_bar" : { + "unicode" : "1f36b", + "unicode_alternates" : "", + "name" : "chocolate bar", + "shortname" : ":chocolate_bar:", + "category" : "food", + "emoji_order" : "403", + "aliases" : [ + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "dessert", + "food", + "snack", + "candy", + "coca", + "hershey's", + "nature", + "object", + "restaurant", + "sweet" + ] + }, + "popcorn" : { + "unicode" : "1f37f", + "unicode_alternates" : "", + "name" : "popcorn", + "shortname" : ":popcorn:", + "category" : "food", + "emoji_order" : "404", + "aliases" : [ + ], + "aliases_ascii" : [ + ], + "keywords" : [ + ] + }, + "doughnut" : { + "unicode" : "1f369", + "unicode_alternates" : "", + "name" : "doughnut", + "shortname" : ":doughnut:", + "category" : "food", + "emoji_order" : "405", + "aliases" : [ + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "desert", + "food", + "snack", + "sweet", + "donut", + "pastry", + "fried", + "dessert", + "breakfast", + "police", + "homer", + "sweet", + "nature", + "object", + "restaurant" + ] + }, + "cookie" : { + "unicode" : "1f36a", + "unicode_alternates" : "", + "name" : "cookie", + "shortname" : ":cookie:", + "category" : "food", + "emoji_order" : "406", + "aliases" : [ + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "chocolate", + "food", + "oreo", + "snack", + "dessert", + "biscuit", + "sweet", + "chocolate", + "nature", + "object", + "restaurant" + ] + }, + "beer" : { + "unicode" : "1f37a", + "unicode_alternates" : "", + "name" : "beer mug", + "shortname" : ":beer:", + "category" : "food", + "emoji_order" : "407", + "aliases" : [ + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "beverage", + "drink", + "drunk", + "party", + "pub", + "relax", + "hops", + "barley", + "malt", + "yeast", + "portland", + "oregon", + "brewery", + "micro", + "pint", + "boot", + "bar", + "nature", + "object", + "restaurant" + ] + }, + "beers" : { + "unicode" : "1f37b", + "unicode_alternates" : "", + "name" : "clinking beer mugs", + "shortname" : ":beers:", + "category" : "food", + "emoji_order" : "408", + "aliases" : [ + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "beverage", + "drink", + "drunk", + "party", + "pub", + "relax", + "cheers", + "toast", + "celebrate", + "bar", + "jolly", + "hops", + "clink", + "mug", + "nature", + "object", + "restaurant" + ] + }, + "wine_glass" : { + "unicode" : "1f377", + "unicode_alternates" : "", + "name" : "wine glass", + "shortname" : ":wine_glass:", + "category" : "food", + "emoji_order" : "409", + "aliases" : [ + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "alcohol", + "beverage", + "booze", + "bottle", + "drink", + "drunk", + "fermented", + "grapes", + "tasting", + "winery", + "bar", + "nature", + "object", + "restaurant" + ] + }, + "cocktail" : { + "unicode" : "1f378", + "unicode_alternates" : "", + "name" : "cocktail glass", + "shortname" : ":cocktail:", + "category" : "food", + "emoji_order" : "410", + "aliases" : [ + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "alcohol", + "beverage", + "drink", + "drunk", + "mixed", + "martini", + "bar", + "nature", + "object", + "restaurant" + ] + }, + "tropical_drink" : { + "unicode" : "1f379", + "unicode_alternates" : "", + "name" : "tropical drink", + "shortname" : ":tropical_drink:", + "category" : "food", + "emoji_order" : "411", + "aliases" : [ + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "beverage", + "mixed", + "pineapple", + "coconut", + "pina", + "fruit", + "umbrella", + "bar", + "nature", + "object", + "restaurant" + ] + }, + "champagne" : { + "unicode" : "1f37e", + "unicode_alternates" : "", + "name" : "bottle with popping cork", + "shortname" : ":champagne:", + "category" : "food", + "emoji_order" : "412", + "aliases" : [ + ":bottle_with_popping_cork:" + ], + "aliases_ascii" : [ + ], + "keywords" : [ + ] + }, + "sake" : { + "unicode" : "1f376", + "unicode_alternates" : "", + "name" : "sake bottle and cup", + "shortname" : ":sake:", + "category" : "food", + "emoji_order" : "413", + "aliases" : [ + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "beverage", + "drink", + "drunk", + "wine", + "rice", + "ferment", + "alcohol", + "japanese", + "bar", + "nature", + "object", + "restaurant" + ] + }, + "tea" : { + "unicode" : "1f375", + "unicode_alternates" : "", + "name" : "teacup without handle", + "shortname" : ":tea:", + "category" : "food", + "emoji_order" : "414", + "aliases" : [ + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "bowl", + "breakfast", + "british", + "drink", + "green", + "tea", + "leaf", + "hot", + "beverage", + "cup", + "nature", + "object" + ] + }, + "coffee" : { + "unicode" : "2615", + "unicode_alternates" : "2615-fe0f", + "name" : "hot beverage", + "shortname" : ":coffee:", + "category" : "food", + "emoji_order" : "415", + "aliases" : [ + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "beverage", + "cafe", + "drink", + "espresso", + "coffee", + "nature", + "object", + "steaming", + "tea" + ] + }, + "baby_bottle" : { + "unicode" : "1f37c", + "unicode_alternates" : "", + "name" : "baby bottle", + "shortname" : ":baby_bottle:", + "category" : "food", + "emoji_order" : "416", + "aliases" : [ + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "container", + "food", + "milk", + "mother", + "nipple", + "newborn", + "formula", + "drink", + "nature", + "object" + ] + }, + "fork_and_knife" : { + "unicode" : "1f374", + "unicode_alternates" : "", + "name" : "fork and knife", + "shortname" : ":fork_and_knife:", + "category" : "food", + "emoji_order" : "417", + "aliases" : [ + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "cutlery", + "kitchen", + "restaurant", + "meal", + "food", + "eat", + "utensils", + "cooking", + "nature", + "object" + ] + }, + "fork_knife_plate" : { + "unicode" : "1f37d", + "unicode_alternates" : "1f37d-fe0f", + "name" : "fork and knife with plate", + "shortname" : ":fork_knife_plate:", + "category" : "food", + "emoji_order" : "418", + "aliases" : [ + ":fork_and_knife_with_plate:" + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "meal", + "food", + "breakfast", + "lunch", + "dinner", + "utensils", + "setting", + "cooking", + "object", + "place", + "restaurant" + ] + }, + "soccer" : { + "unicode" : "26bd", + "unicode_alternates" : "26bd-fe0f", + "name" : "soccer ball", + "shortname" : ":soccer:", + "category" : "activity", + "emoji_order" : "419", + "aliases" : [ + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "sport", + "fifa", + "football", + "european", + "object", + "place" + ] + }, + "basketball" : { + "unicode" : "1f3c0", + "unicode_alternates" : "", + "name" : "basketball and hoop", + "shortname" : ":basketball:", + "category" : "activity", + "emoji_order" : "420", + "aliases" : [ + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "NBA", + "ball", + "sport", + "bball", + "dribble", + "net", + "swish", + "rip city", + "court", + "object", + "place" + ] + }, + "football" : { + "unicode" : "1f3c8", + "unicode_alternates" : "", + "name" : "american football", + "shortname" : ":football:", + "category" : "activity", + "emoji_order" : "421", + "aliases" : [ + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "NFL", + "sport", + "ball", + "america", + "object", + "place" + ] + }, + "baseball" : { + "unicode" : "26be", + "unicode_alternates" : "26be-fe0f", + "name" : "baseball", + "shortname" : ":baseball:", + "category" : "activity", + "emoji_order" : "422", + "aliases" : [ + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "MLB", + "ball", + "sport", + "pitch", + "object", + "place" + ] + }, + "tennis" : { + "unicode" : "1f3be", + "unicode_alternates" : "", + "name" : "tennis racquet and ball", + "shortname" : ":tennis:", + "category" : "activity", + "emoji_order" : "423", + "aliases" : [ + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "ball", + "green", + "sport", + "racket", + "game", + "net", + "court", + "love", + "object", + "place" + ] + }, + "volleyball" : { + "unicode" : "1f3d0", + "unicode_alternates" : "", + "name" : "volleyball", + "shortname" : ":volleyball:", + "category" : "activity", + "emoji_order" : "424", + "aliases" : [ + ], + "aliases_ascii" : [ + ], + "keywords" : [ + ] + }, + "rugby_football" : { + "unicode" : "1f3c9", + "unicode_alternates" : "", + "name" : "rugby football", + "shortname" : ":rugby_football:", + "category" : "activity", + "emoji_order" : "425", + "aliases" : [ + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "sports", + "rugby", + "football", + "ball", + "sport", + "team", + "england", + "object", + "place" + ] + }, + "8ball" : { + "unicode" : "1f3b1", + "unicode_alternates" : "", + "name" : "billiards", + "shortname" : ":8ball:", + "category" : "activity", + "emoji_order" : "426", + "aliases" : [ + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "pool", + "eight ball", + "pocket ball", + "cue", + "8", + "8 ball", + "ball", + "billiard", + "eight", + "game", + "object", + "place", + "sport" + ] + }, + "golf" : { + "unicode" : "26f3", + "unicode_alternates" : "26f3-fe0f", + "name" : "flag in hole", + "shortname" : ":golf:", + "category" : "activity", + "emoji_order" : "427", + "aliases" : [ + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "business", + "sport", + "golf", + "object", + "place", + "travel" + ] + }, + "golfer" : { + "unicode" : "1f3cc", + "unicode_alternates" : "1f3cc-fe0f", + "name" : "golfer", + "shortname" : ":golfer:", + "category" : "activity", + "emoji_order" : "428", + "aliases" : [ + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "sport", + "par", + "birdie", + "eagle", + "mulligan", + "ball", + "golf", + "person" + ] + }, + "ping_pong" : { + "unicode" : "1f3d3", + "unicode_alternates" : "", + "name" : "table tennis paddle and ball", + "shortname" : ":ping_pong:", + "category" : "activity", + "emoji_order" : "429", + "aliases" : [ + ":table_tennis:" + ], + "aliases_ascii" : [ + ], + "keywords" : [ + ] + }, + "badminton" : { + "unicode" : "1f3f8", + "unicode_alternates" : "", + "name" : "badminton racquet", + "shortname" : ":badminton:", + "category" : "activity", + "emoji_order" : "430", + "aliases" : [ + ], + "aliases_ascii" : [ + ], + "keywords" : [ + ] + }, + "hockey" : { + "unicode" : "1f3d2", + "unicode_alternates" : "", + "name" : "ice hockey stick and puck", + "shortname" : ":hockey:", + "category" : "activity", + "emoji_order" : "431", + "aliases" : [ + ], + "aliases_ascii" : [ + ], + "keywords" : [ + ] + }, + "field_hockey" : { + "unicode" : "1f3d1", + "unicode_alternates" : "", + "name" : "field hockey stick and ball", + "shortname" : ":field_hockey:", + "category" : "activity", + "emoji_order" : "432", + "aliases" : [ + ], + "aliases_ascii" : [ + ], + "keywords" : [ + ] + }, + "cricket" : { + "unicode" : "1f3cf", + "unicode_alternates" : "", + "name" : "cricket bat and ball", + "shortname" : ":cricket:", + "category" : "activity", + "emoji_order" : "433", + "aliases" : [ + ":cricket_bat_ball:" + ], + "aliases_ascii" : [ + ], + "keywords" : [ + ] + }, + "ski" : { + "unicode" : "1f3bf", + "unicode_alternates" : "", + "name" : "ski and ski boot", + "shortname" : ":ski:", + "category" : "activity", + "emoji_order" : "434", + "aliases" : [ + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "cold", + "sport", + "winter", + "downhill", + "cross-country", + "poles", + "snow", + "mountain", + "alpine", + "powder", + "slalom", + "freestyle", + "object" + ] + }, + "skier" : { + "unicode" : "26f7", + "unicode_alternates" : "26f7-fe0f", + "name" : "skier", + "shortname" : ":skier:", + "category" : "activity", + "emoji_order" : "435", + "aliases" : [ + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "person", + "ski", + "snow", + "sport", + "travel" + ] + }, + "snowboarder" : { + "unicode" : "1f3c2", + "unicode_alternates" : "", + "name" : "snowboarder", + "shortname" : ":snowboarder:", + "category" : "activity", + "emoji_order" : "436", + "aliases" : [ + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "sport", + "winter", + "snow", + "boarding", + "freestyle", + "halfpipe", + "board", + "mountain", + "alpine", + "person", + "ski", + "snowboard" + ] + }, + "ice_skate" : { + "unicode" : "26f8", + "unicode_alternates" : "26f8-fe0f", + "name" : "ice skate", + "shortname" : ":ice_skate:", + "category" : "activity", + "emoji_order" : "437", + "aliases" : [ + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "place", + "sport", + "travel" + ] + }, + "bow_and_arrow" : { + "unicode" : "1f3f9", + "unicode_alternates" : "", + "name" : "bow and arrow", + "shortname" : ":bow_and_arrow:", + "category" : "activity", + "emoji_order" : "438", + "aliases" : [ + ":archery:" + ], + "aliases_ascii" : [ + ], + "keywords" : [ + ] + }, + "fishing_pole_and_fish" : { + "unicode" : "1f3a3", + "unicode_alternates" : "", + "name" : "fishing pole and fish", + "shortname" : ":fishing_pole_and_fish:", + "category" : "activity", + "emoji_order" : "439", + "aliases" : [ + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "food", + "hobby", + "rod", + "reel", + "entertainment", + "object", + "place", + "sport" + ] + }, + "rowboat" : { + "unicode" : "1f6a3", + "unicode_alternates" : "", + "name" : "rowboat", + "shortname" : ":rowboat:", + "category" : "activity", + "emoji_order" : "440", + "aliases" : [ + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "hobby", + "ship", + "water", + "boat", + "row", + "oar", + "paddle", + "place", + "travel", + "vehicle" + ] + }, + "swimmer" : { + "unicode" : "1f3ca", + "unicode_alternates" : "", + "name" : "swimmer", + "shortname" : ":swimmer:", + "category" : "activity", + "emoji_order" : "441", + "aliases" : [ + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "sport", + "swim", + "water", + "pool", + "laps", + "freestyle", + "butterfly", + "breaststroke", + "backstroke", + "person", + "travel" + ] + }, + "surfer" : { + "unicode" : "1f3c4", + "unicode_alternates" : "", + "name" : "surfer", + "shortname" : ":surfer:", + "category" : "activity", + "emoji_order" : "442", + "aliases" : [ + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "ocean", + "sea", + "sport", + "surf", + "wave", + "ocean", + "ride", + "swell", + "person", + "surfing" + ] + }, + "bath" : { + "unicode" : "1f6c0", + "unicode_alternates" : "", + "name" : "bath", + "shortname" : ":bath:", + "category" : "activity", + "emoji_order" : "443", + "aliases" : [ + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "shower", + "tub", + "basin", + "wash", + "bubble", + "soak", + "bathroom", + "soap", + "water", + "clean", + "shampoo", + "lather", + "bathtub", + "object", + "place", + "travel" + ] + }, + "basketball_player" : { + "unicode" : "26f9", + "unicode_alternates" : "26f9-fe0f", + "name" : "person with ball", + "shortname" : ":basketball_player:", + "category" : "activity", + "emoji_order" : "444", + "aliases" : [ + ":person_with_ball:" + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "sport" + ] + }, + "lifter" : { + "unicode" : "1f3cb", + "unicode_alternates" : "1f3cb-fe0f", + "name" : "weight lifter", + "shortname" : ":lifter:", + "category" : "activity", + "emoji_order" : "445", + "aliases" : [ + ":weight_lifter:" + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "bench", + "press", + "squats", + "deadlift", + "person", + "sport" + ] + }, + "bicyclist" : { + "unicode" : "1f6b4", + "unicode_alternates" : "", + "name" : "bicyclist", + "shortname" : ":bicyclist:", + "category" : "activity", + "emoji_order" : "446", + "aliases" : [ + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "bike", + "exercise", + "hipster", + "sport", + "road", + "pedal", + "bicycle", + "transportation", + "cyclist", + "person", + "place", + "travel" + ] + }, + "mountain_bicyclist" : { + "unicode" : "1f6b5", + "unicode_alternates" : "", + "name" : "mountain bicyclist", + "shortname" : ":mountain_bicyclist:", + "category" : "activity", + "emoji_order" : "447", + "aliases" : [ + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "sport", + "transportation", + "bike", + "pedal", + "bicycle", + "transportation", + "cyclist", + "person", + "place", + "travel" + ] + }, + "horse_racing" : { + "unicode" : "1f3c7", + "unicode_alternates" : "", + "name" : "horse racing", + "shortname" : ":horse_racing:", + "category" : "activity", + "emoji_order" : "448", + "aliases" : [ + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "animal", + "betting", + "competition", + "race", + "jockey", + "triple crown", + "person", + "racehorse", + "sport", + "travel" + ] + }, + "levitate" : { + "unicode" : "1f574", + "unicode_alternates" : "1f574-fe0f", + "name" : "man in business suit levitating", + "shortname" : ":levitate:", + "category" : "activity", + "emoji_order" : "449", + "aliases" : [ + ":man_in_business_suit_levitating:" + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "hover", + "exclamation", + "person" + ] + }, + "trophy" : { + "unicode" : "1f3c6", + "unicode_alternates" : "", + "name" : "trophy", + "shortname" : ":trophy:", + "category" : "activity", + "emoji_order" : "450", + "aliases" : [ + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "award", + "ceremony", + "contest", + "ftw", + "place", + "win", + "first", + "show", + "reward", + "achievement", + "medal", + "object", + "prize", + "sport" + ] + }, + "running_shirt_with_sash" : { + "unicode" : "1f3bd", + "unicode_alternates" : "", + "name" : "running shirt with sash", + "shortname" : ":running_shirt_with_sash:", + "category" : "activity", + "emoji_order" : "451", + "aliases" : [ + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "pageant", + "play", + "run", + "cloths", + "compete", + "sports", + "person", + "place", + "sport" + ] + }, + "medal" : { + "unicode" : "1f3c5", + "unicode_alternates" : "", + "name" : "sports medal", + "shortname" : ":medal:", + "category" : "activity", + "emoji_order" : "452", + "aliases" : [ + ":sports_medal:" + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "award", + "ceremony", + "contest", + "ftw", + "place", + "win", + "first", + "show", + "reward", + "achievement", + "object", + "sport" + ] + }, + "military_medal" : { + "unicode" : "1f396", + "unicode_alternates" : "1f396-fe0f", + "name" : "military medal", + "shortname" : ":military_medal:", + "category" : "activity", + "emoji_order" : "453", + "aliases" : [ + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "honor", + "acknowledgment", + "purple heart", + "heroism", + "veteran", + "celebration", + "object" + ] + }, + "reminder_ribbon" : { + "unicode" : "1f397", + "unicode_alternates" : "1f397-fe0f", + "name" : "reminder ribbon", + "shortname" : ":reminder_ribbon:", + "category" : "activity", + "emoji_order" : "454", + "aliases" : [ + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "awareness", + "celebration", + "object" + ] + }, + "rosette" : { + "unicode" : "1f3f5", + "unicode_alternates" : "1f3f5-fe0f", + "name" : "rosette", + "shortname" : ":rosette:", + "category" : "activity", + "emoji_order" : "455", + "aliases" : [ + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "flower", + "nature", + "plant" + ] + }, + "ticket" : { + "unicode" : "1f3ab", + "unicode_alternates" : "", + "name" : "ticket", + "shortname" : ":ticket:", + "category" : "activity", + "emoji_order" : "456", + "aliases" : [ + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "concert", + "event", + "pass", + "show", + "entertainment", + "stub", + "admission", + "proof", + "purchase", + "activity", + "object", + "place" + ] + }, + "tickets" : { + "unicode" : "1f39f", + "unicode_alternates" : "1f39f-fe0f", + "name" : "admission tickets", + "shortname" : ":tickets:", + "category" : "activity", + "emoji_order" : "457", + "aliases" : [ + ":admission_tickets:" + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "concert", + "event", + "pass", + "show", + "entertainment", + "stub", + "proof", + "purchase", + "object", + "ticket" + ] + }, + "performing_arts" : { + "unicode" : "1f3ad", + "unicode_alternates" : "", + "name" : "performing arts", + "shortname" : ":performing_arts:", + "category" : "activity", + "emoji_order" : "458", + "aliases" : [ + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "acting", + "drama", + "theater", + "performance", + "entertainment", + "story", + "comedy", + "tragedy", + "masks", + "activity", + "art", + "mask", + "object", + "place", + "theatre" + ] + }, + "art" : { + "unicode" : "1f3a8", + "unicode_alternates" : "", + "name" : "artist palette", + "shortname" : ":art:", + "category" : "activity", + "emoji_order" : "459", + "aliases" : [ + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "design", + "draw", + "paint", + "art", + "colors", + "brush", + "pastels", + "oils", + "acrylic", + "activity", + "entertainment", + "museum", + "object", + "painting" + ] + }, + "circus_tent" : { + "unicode" : "1f3aa", + "unicode_alternates" : "", + "name" : "circus tent", + "shortname" : ":circus_tent:", + "category" : "activity", + "emoji_order" : "460", + "aliases" : [ + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "carnival", + "festival", + "party", + "event", + "big", + "top", + "canvas", + "activity", + "entertainment", + "place" + ] + }, + "microphone" : { + "unicode" : "1f3a4", + "unicode_alternates" : "", + "name" : "microphone", + "shortname" : ":microphone:", + "category" : "activity", + "emoji_order" : "461", + "aliases" : [ + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "PA", + "music", + "sound", + "mic", + "audio", + "voice", + "karaoke", + "activity", + "entertainment", + "object" + ] + }, + "headphones" : { + "unicode" : "1f3a7", + "unicode_alternates" : "", + "name" : "headphone", + "shortname" : ":headphones:", + "category" : "activity", + "emoji_order" : "462", + "aliases" : [ + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "gadgets", + "music", + "score", + "sound", + "ears", + "beats", + "buds", + "audio", + "listen", + "activity", + "earbud", + "entertainment", + "object" + ] + }, + "musical_score" : { + "unicode" : "1f3bc", + "unicode_alternates" : "", + "name" : "musical score", + "shortname" : ":musical_score:", + "category" : "activity", + "emoji_order" : "463", + "aliases" : [ + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "clef", + "treble", + "music", + "clef", + "g-clef", + "stave", + "staff", + "activity", + "entertainment", + "object", + "sound" + ] + }, + "musical_keyboard" : { + "unicode" : "1f3b9", + "unicode_alternates" : "", + "name" : "musical keyboard", + "shortname" : ":musical_keyboard:", + "category" : "activity", + "emoji_order" : "464", + "aliases" : [ + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "instrument", + "piano", + "music", + "organ", + "electric", + "keys", + "activity", + "entertainment", + "object", + "sound" + ] + }, + "saxophone" : { + "unicode" : "1f3b7", + "unicode_alternates" : "", + "name" : "saxophone", + "shortname" : ":saxophone:", + "category" : "activity", + "emoji_order" : "465", + "aliases" : [ + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "instrument", + "music", + "sax", + "woodwind", + "activity", + "entertainment", + "object", + "sound" + ] + }, + "trumpet" : { + "unicode" : "1f3ba", + "unicode_alternates" : "", + "name" : "trumpet", + "shortname" : ":trumpet:", + "category" : "activity", + "emoji_order" : "466", + "aliases" : [ + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "brass", + "music", + "instrument", + "activity", + "entertainment", + "object", + "sound" + ] + }, + "guitar" : { + "unicode" : "1f3b8", + "unicode_alternates" : "", + "name" : "guitar", + "shortname" : ":guitar:", + "category" : "activity", + "emoji_order" : "467", + "aliases" : [ + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "instrument", + "music", + "string", + "jam", + "rock", + "acoustic", + "electric", + "activity", + "entertainment", + "object", + "sound" + ] + }, + "violin" : { + "unicode" : "1f3bb", + "unicode_alternates" : "", + "name" : "violin", + "shortname" : ":violin:", + "category" : "activity", + "emoji_order" : "468", + "aliases" : [ + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "instrument", + "music", + "fiddle", + "string", + "activity", + "entertainment", + "object", + "sound" + ] + }, + "clapper" : { + "unicode" : "1f3ac", + "unicode_alternates" : "", + "name" : "clapper board", + "shortname" : ":clapper:", + "category" : "activity", + "emoji_order" : "469", + "aliases" : [ + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "film", + "movie", + "record", + "clapboard", + "take", + "activity", + "entertainment", + "object" + ] + }, + "video_game" : { + "unicode" : "1f3ae", + "unicode_alternates" : "", + "name" : "video game", + "shortname" : ":video_game:", + "category" : "activity", + "emoji_order" : "470", + "aliases" : [ + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "PS4", + "console", + "controller", + "play", + "nintendo", + "xbox", + "playstation", + "entertainment", + "object", + "video game" + ] + }, + "space_invader" : { + "unicode" : "1f47e", + "unicode_alternates" : "", + "name" : "alien monster", + "shortname" : ":space_invader:", + "category" : "activity", + "emoji_order" : "471", + "aliases" : [ + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "arcade", + "game", + "space", + "invader", + "creature", + "extraterrestrial", + "face", + "fairy tale", + "fantasy", + "nature", + "person", + "ufo" + ] + }, + "dart" : { + "unicode" : "1f3af", + "unicode_alternates" : "", + "name" : "direct hit", + "shortname" : ":dart:", + "category" : "activity", + "emoji_order" : "472", + "aliases" : [ + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "bar", + "game", + "bullseye", + "dart", + "archery", + "fletching", + "arrow", + "sport", + "activity", + "bull", + "entertainment", + "eye", + "object", + "target" + ] + }, + "game_die" : { + "unicode" : "1f3b2", + "unicode_alternates" : "", + "name" : "game die", + "shortname" : ":game_die:", + "category" : "activity", + "emoji_order" : "473", + "aliases" : [ + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "dice", + "craps", + "gamble", + "play", + "entertainment", + "object" + ] + }, + "slot_machine" : { + "unicode" : "1f3b0", + "unicode_alternates" : "", + "name" : "slot machine", + "shortname" : ":slot_machine:", + "category" : "activity", + "emoji_order" : "474", + "aliases" : [ + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "bet", + "gamble", + "vegas", + "one-armed bandit", + "slots", + "luck", + "activity", + "game", + "object", + "place" + ] + }, + "bowling" : { + "unicode" : "1f3b3", + "unicode_alternates" : "", + "name" : "bowling", + "shortname" : ":bowling:", + "category" : "activity", + "emoji_order" : "475", + "aliases" : [ + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "fun", + "play", + "sports", + "bowl", + "ball", + "pin", + "strike", + "spare", + "game", + "object", + "place", + "sport" + ] + }, + "red_car" : { + "unicode" : "1f697", + "unicode_alternates" : "", + "name" : "automobile", + "shortname" : ":red_car:", + "category" : "travel", + "emoji_order" : "476", + "aliases" : [ + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "transportation", + "vehicle", + "red", + "car", + "place", + "travel" + ] + }, + "taxi" : { + "unicode" : "1f695", + "unicode_alternates" : "", + "name" : "taxi", + "shortname" : ":taxi:", + "category" : "travel", + "emoji_order" : "477", + "aliases" : [ + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "transportation", + "uber", + "vehicle", + "car", + "automobile", + "city", + "transport", + "service", + "cab", + "place", + "travel" + ] + }, + "blue_car" : { + "unicode" : "1f699", + "unicode_alternates" : "", + "name" : "recreational vehicle", + "shortname" : ":blue_car:", + "category" : "travel", + "emoji_order" : "478", + "aliases" : [ + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "car", + "suv", + "wagon", + "automobile", + "blue", + "place", + "rv", + "travel" + ] + }, + "bus" : { + "unicode" : "1f68c", + "unicode_alternates" : "", + "name" : "bus", + "shortname" : ":bus:", + "category" : "travel", + "emoji_order" : "479", + "aliases" : [ + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "car", + "transportation", + "vehicle", + "school", + "city", + "public", + "place", + "travel" + ] + }, + "trolleybus" : { + "unicode" : "1f68e", + "unicode_alternates" : "", + "name" : "trolleybus", + "shortname" : ":trolleybus:", + "category" : "travel", + "emoji_order" : "480", + "aliases" : [ + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "bart", + "transportation", + "vehicle", + "bus", + "city", + "transport", + "place", + "tram", + "travel", + "trolley" + ] + }, + "race_car" : { + "unicode" : "1f3ce", + "unicode_alternates" : "1f3ce-fe0f", + "name" : "racing car", + "shortname" : ":race_car:", + "category" : "travel", + "emoji_order" : "481", + "aliases" : [ + ":racing_car:" + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "formula 1", + "race", + "stock", + "nascar", + "speed", + "drive", + "place", + "sport", + "travel" + ] + }, + "police_car" : { + "unicode" : "1f693", + "unicode_alternates" : "", + "name" : "police car", + "shortname" : ":police_car:", + "category" : "travel", + "emoji_order" : "482", + "aliases" : [ + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "cars", + "enforcement", + "law", + "transportation", + "vehicle", + "police", + "car", + "emergency", + "ticket", + "citation", + "crime", + "help", + "officer", + "patrol", + "place", + "travel" + ] + }, + "ambulance" : { + "unicode" : "1f691", + "unicode_alternates" : "", + "name" : "ambulance", + "shortname" : ":ambulance:", + "category" : "travel", + "emoji_order" : "483", + "aliases" : [ + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "911", + "health", + "emergency", + "medical", + "help", + "assistance", + "place", + "travel", + "vehicle" + ] + }, + "fire_engine" : { + "unicode" : "1f692", + "unicode_alternates" : "", + "name" : "fire engine", + "shortname" : ":fire_engine:", + "category" : "travel", + "emoji_order" : "484", + "aliases" : [ + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "transportation", + "vehicle", + "fighter", + "truck", + "emergency", + "place", + "travel" + ] + }, + "minibus" : { + "unicode" : "1f690", + "unicode_alternates" : "", + "name" : "minibus", + "shortname" : ":minibus:", + "category" : "travel", + "emoji_order" : "485", + "aliases" : [ + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "transportation", + "vehicle", + "bus", + "city", + "transport", + "place", + "travel" + ] + }, + "truck" : { + "unicode" : "1f69a", + "unicode_alternates" : "", + "name" : "delivery truck", + "shortname" : ":truck:", + "category" : "travel", + "emoji_order" : "486", + "aliases" : [ + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "transportation", + "truck", + "delivery", + "package", + "place", + "travel", + "vehicle" + ] + }, + "articulated_lorry" : { + "unicode" : "1f69b", + "unicode_alternates" : "", + "name" : "articulated lorry", + "shortname" : ":articulated_lorry:", + "category" : "travel", + "emoji_order" : "487", + "aliases" : [ + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "transportation", + "vehicle", + "truck", + "delivery", + "semi", + "place", + "travel" + ] + }, + "tractor" : { + "unicode" : "1f69c", + "unicode_alternates" : "", + "name" : "tractor", + "shortname" : ":tractor:", + "category" : "travel", + "emoji_order" : "488", + "aliases" : [ + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "agriculture", + "farming", + "vehicle", + "farm", + "construction", + "equipment", + "place", + "travel" + ] + }, + "motorcycle" : { + "unicode" : "1f3cd", + "unicode_alternates" : "1f3cd-fe0f", + "name" : "racing motorcycle", + "shortname" : ":motorcycle:", + "category" : "travel", + "emoji_order" : "489", + "aliases" : [ + ":racing_motorcycle:" + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "bike", + "speed", + "person", + "sport", + "travel" + ] + }, + "bike" : { + "unicode" : "1f6b2", + "unicode_alternates" : "", + "name" : "bicycle", + "shortname" : ":bike:", + "category" : "travel", + "emoji_order" : "490", + "aliases" : [ + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "exercise", + "hipster", + "sports", + "bike", + "pedal", + "transportation", + "place", + "sport", + "travel", + "vehicle" + ] + }, + "rotating_light" : { + "unicode" : "1f6a8", + "unicode_alternates" : "", + "name" : "police cars revolving light", + "shortname" : ":rotating_light:", + "category" : "travel", + "emoji_order" : "491", + "aliases" : [ + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "911", + "ambulance", + "emergency", + "police", + "light", + "emergency", + "beacon", + "car", + "place", + "travel", + "vehicle" + ] + }, + "oncoming_police_car" : { + "unicode" : "1f694", + "unicode_alternates" : "", + "name" : "oncoming police car", + "shortname" : ":oncoming_police_car:", + "category" : "travel", + "emoji_order" : "492", + "aliases" : [ + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "enforcement", + "law", + "vehicle", + "emergency", + "ticket", + "citation", + "crime", + "help", + "officer", + "place", + "travel" + ] + }, + "oncoming_bus" : { + "unicode" : "1f68d", + "unicode_alternates" : "", + "name" : "oncoming bus", + "shortname" : ":oncoming_bus:", + "category" : "travel", + "emoji_order" : "493", + "aliases" : [ + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "transportation", + "vehicle", + "bus", + "school", + "city", + "public", + "place", + "travel" + ] + }, + "oncoming_automobile" : { + "unicode" : "1f698", + "unicode_alternates" : "", + "name" : "oncoming automobile", + "shortname" : ":oncoming_automobile:", + "category" : "travel", + "emoji_order" : "494", + "aliases" : [ + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "car", + "transportation", + "vehicle", + "sedan", + "car", + "automobile", + "place", + "travel" + ] + }, + "oncoming_taxi" : { + "unicode" : "1f696", + "unicode_alternates" : "", + "name" : "oncoming taxi", + "shortname" : ":oncoming_taxi:", + "category" : "travel", + "emoji_order" : "495", + "aliases" : [ + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "uber", + "vehicle", + "car", + "automobile", + "city", + "transport", + "service", + "cab", + "place", + "travel" + ] + }, + "aerial_tramway" : { + "unicode" : "1f6a1", + "unicode_alternates" : "", + "name" : "aerial tramway", + "shortname" : ":aerial_tramway:", + "category" : "travel", + "emoji_order" : "496", + "aliases" : [ + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "transportation", + "vehicle", + "tram", + "cable", + "transport", + "car", + "gondola", + "place", + "ropeway", + "travel" + ] + }, + "mountain_cableway" : { + "unicode" : "1f6a0", + "unicode_alternates" : "", + "name" : "mountain cableway", + "shortname" : ":mountain_cableway:", + "category" : "travel", + "emoji_order" : "497", + "aliases" : [ + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "transportation", + "vehicle", + "cable", + "gondola", + "place", + "travel" + ] + }, + "suspension_railway" : { + "unicode" : "1f69f", + "unicode_alternates" : "", + "name" : "suspension railway", + "shortname" : ":suspension_railway:", + "category" : "travel", + "emoji_order" : "498", + "aliases" : [ + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "transportation", + "vehicle", + "rail", + "place", + "travel" + ] + }, + "railway_car" : { + "unicode" : "1f683", + "unicode_alternates" : "", + "name" : "railway car", + "shortname" : ":railway_car:", + "category" : "travel", + "emoji_order" : "499", + "aliases" : [ + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "transportation", + "vehicle", + "streetcar", + "trolley", + "coach", + "train", + "electric", + "place", + "tram", + "travel", + "trolleybus" + ] + }, + "train" : { + "unicode" : "1f68b", + "unicode_alternates" : "", + "name" : "tram car", + "shortname" : ":train:", + "category" : "travel", + "emoji_order" : "500", + "aliases" : [ + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "rail", + "train", + "transit", + "vehicle", + "place", + "travel", + "trolleybus" + ] + }, + "monorail" : { + "unicode" : "1f69d", + "unicode_alternates" : "", + "name" : "monorail", + "shortname" : ":monorail:", + "category" : "travel", + "emoji_order" : "501", + "aliases" : [ + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "transportation", + "train", + "mono", + "rail", + "transit", + "place", + "travel", + "vehicle" + ] + }, + "bullettrain_side" : { + "unicode" : "1f684", + "unicode_alternates" : "", + "name" : "high-speed train", + "shortname" : ":bullettrain_side:", + "category" : "travel", + "emoji_order" : "502", + "aliases" : [ + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "transportation", + "train", + "bullet", + "rail", + "fast", + "transit", + "place", + "railway", + "shinkansen", + "speed", + "travel", + "vehicle" + ] + }, + "bullettrain_front" : { + "unicode" : "1f685", + "unicode_alternates" : "", + "name" : "high-speed train with bullet nose", + "shortname" : ":bullettrain_front:", + "category" : "travel", + "emoji_order" : "503", + "aliases" : [ + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "transportation", + "train", + "bullet", + "rail", + "fast", + "transit", + "place", + "railway", + "shinkansen", + "speed", + "travel", + "vehicle" + ] + }, + "light_rail" : { + "unicode" : "1f688", + "unicode_alternates" : "", + "name" : "light rail", + "shortname" : ":light_rail:", + "category" : "travel", + "emoji_order" : "504", + "aliases" : [ + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "transportation", + "train", + "transit", + "place", + "railway", + "travel", + "vehicle" + ] + }, + "mountain_railway" : { + "unicode" : "1f69e", + "unicode_alternates" : "", + "name" : "mountain railway", + "shortname" : ":mountain_railway:", + "category" : "travel", + "emoji_order" : "505", + "aliases" : [ + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "transportation", + "vehicle", + "rail", + "train", + "transport", + "car", + "place", + "travel" + ] + }, + "steam_locomotive" : { + "unicode" : "1f682", + "unicode_alternates" : "", + "name" : "steam locomotive", + "shortname" : ":steam_locomotive:", + "category" : "travel", + "emoji_order" : "506", + "aliases" : [ + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "train", + "transportation", + "engine", + "choo-choo", + "place", + "railway", + "travel", + "vehicle" + ] + }, + "train2" : { + "unicode" : "1f686", + "unicode_alternates" : "", + "name" : "train", + "shortname" : ":train2:", + "category" : "travel", + "emoji_order" : "507", + "aliases" : [ + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "transportation", + "locomotive", + "rail", + "transit", + "vehicle", + "place", + "railway", + "travel" + ] + }, + "metro" : { + "unicode" : "1f687", + "unicode_alternates" : "", + "name" : "metro", + "shortname" : ":metro:", + "category" : "travel", + "emoji_order" : "508", + "aliases" : [ + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "mrt", + "transportation", + "tube", + "underground", + "subway", + "train", + "railway", + "transit", + "place", + "travel", + "vehicle" + ] + }, + "tram" : { + "unicode" : "1f68a", + "unicode_alternates" : "", + "name" : "tram", + "shortname" : ":tram:", + "category" : "travel", + "emoji_order" : "509", + "aliases" : [ + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "transportation", + "vehicle", + "streetcar", + "trolley", + "transit", + "place", + "travel", + "trolleybus" + ] + }, + "station" : { + "unicode" : "1f689", + "unicode_alternates" : "", + "name" : "station", + "shortname" : ":station:", + "category" : "travel", + "emoji_order" : "510", + "aliases" : [ + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "public", + "transportation", + "train", + "subway", + "transit", + "place", + "railway", + "travel", + "vehicle" + ] + }, + "helicopter" : { + "unicode" : "1f681", + "unicode_alternates" : "", + "name" : "helicopter", + "shortname" : ":helicopter:", + "category" : "travel", + "emoji_order" : "511", + "aliases" : [ + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "transportation", + "vehicle", + "heli", + "gyro", + "gyrocopter", + "place", + "travel" + ] + }, + "airplane_small" : { + "unicode" : "1f6e9", + "unicode_alternates" : "1f6e9-fe0f", + "name" : "small airplane", + "shortname" : ":airplane_small:", + "category" : "travel", + "emoji_order" : "512", + "aliases" : [ + ":small_airplane:" + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "flight", + "transportation", + "vehicle", + "plane", + "airport", + "travel", + "airlines", + "fly", + "jet", + "jumbo", + "boeing", + "airbus", + "place" + ] + }, + "airplane" : { + "unicode" : "2708", + "unicode_alternates" : "2708-fe0f", + "name" : "airplane", + "shortname" : ":airplane:", + "category" : "travel", + "emoji_order" : "513", + "aliases" : [ + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "flight", + "transportation", + "vehicle", + "plane", + "airport", + "travel", + "airlines", + "fly", + "jet", + "jumbo", + "boeing", + "airbus", + "place" + ] + }, + "airplane_departure" : { + "unicode" : "1f6eb", + "unicode_alternates" : "", + "name" : "airplane departure", + "shortname" : ":airplane_departure:", + "category" : "travel", + "emoji_order" : "514", + "aliases" : [ + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "flight", + "transportation", + "vehicle", + "plane", + "airport", + "travel", + "airlines", + "fly", + "jet", + "jumbo", + "boeing", + "airbus", + "leaving", + "check-in", + "departures", + "place" + ] + }, + "airplane_arriving" : { + "unicode" : "1f6ec", + "unicode_alternates" : "", + "name" : "airplane arriving", + "shortname" : ":airplane_arriving:", + "category" : "travel", + "emoji_order" : "515", + "aliases" : [ + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "flight", + "transportation", + "vehicle", + "plane", + "airport", + "travel", + "airlines", + "fly", + "jet", + "jumbo", + "boeing", + "airbus", + "arrivals", + "landing", + "place" + ] + }, + "sailboat" : { + "unicode" : "26f5", + "unicode_alternates" : "26f5-fe0f", + "name" : "sailboat", + "shortname" : ":sailboat:", + "category" : "travel", + "emoji_order" : "516", + "aliases" : [ + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "transportation", + "cutter", + "catboat", + "dinghy", + "ketch", + "schooner", + "sloop", + "yawl", + "boat", + "place", + "resort", + "sea", + "travel", + "vehicle", + "yacht" + ] + }, + "motorboat" : { + "unicode" : "1f6e5", + "unicode_alternates" : "1f6e5-fe0f", + "name" : "motorboat", + "shortname" : ":motorboat:", + "category" : "travel", + "emoji_order" : "517", + "aliases" : [ + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "transportation", + "vehicle", + "boat", + "speedboat", + "powerboat", + "place", + "travel" + ] + }, + "speedboat" : { + "unicode" : "1f6a4", + "unicode_alternates" : "", + "name" : "speedboat", + "shortname" : ":speedboat:", + "category" : "travel", + "emoji_order" : "518", + "aliases" : [ + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "transportation", + "vehicle", + "motorboat", + "powerboat", + "boat", + "place", + "travel" + ] + }, + "ferry" : { + "unicode" : "26f4", + "unicode_alternates" : "26f4-fe0f", + "name" : "ferry", + "shortname" : ":ferry:", + "category" : "travel", + "emoji_order" : "519", + "aliases" : [ + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "boat", + "place", + "travel" + ] + }, + "cruise_ship" : { + "unicode" : "1f6f3", + "unicode_alternates" : "1f6f3-fe0f", + "name" : "passenger ship", + "shortname" : ":cruise_ship:", + "category" : "travel", + "emoji_order" : "520", + "aliases" : [ + ":passenger_ship:" + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "titanic", + "transportation", + "boat", + "place", + "travel", + "vehicle" + ] + }, + "rocket" : { + "unicode" : "1f680", + "unicode_alternates" : "", + "name" : "rocket", + "shortname" : ":rocket:", + "category" : "travel", + "emoji_order" : "521", + "aliases" : [ + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "launch", + "ship", + "staffmode", + "space", + "spacecraft", + "astronaut", + "cosmonaut", + "place", + "travel", + "vehicle" + ] + }, + "satellite_orbital" : { + "unicode" : "1f6f0", + "unicode_alternates" : "1f6f0-fe0f", + "name" : "satellite", + "shortname" : ":satellite_orbital:", + "category" : "travel", + "emoji_order" : "522", + "aliases" : [ + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "communication", + "orbital", + "space", + "place", + "vehicle" + ] + }, + "seat" : { + "unicode" : "1f4ba", + "unicode_alternates" : "", + "name" : "seat", + "shortname" : ":seat:", + "category" : "travel", + "emoji_order" : "523", + "aliases" : [ + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "sit", + "chair", + "object", + "office", + "place", + "travel" + ] + }, + "anchor" : { + "unicode" : "2693", + "unicode_alternates" : "2693-fe0f", + "name" : "anchor", + "shortname" : ":anchor:", + "category" : "travel", + "emoji_order" : "524", + "aliases" : [ + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "ferry", + "ship", + "boat", + "ocean", + "harbor", + "marina", + "shipyard", + "sailor", + "tattoo", + "place", + "tool", + "travel" + ] + }, + "construction" : { + "unicode" : "1f6a7", + "unicode_alternates" : "", + "name" : "construction sign", + "shortname" : ":construction:", + "category" : "travel", + "emoji_order" : "525", + "aliases" : [ + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "caution", + "progress", + "wip", + "barrier", + "place", + "travel" + ] + }, + "fuelpump" : { + "unicode" : "26fd", + "unicode_alternates" : "26fd-fe0f", + "name" : "fuel pump", + "shortname" : ":fuelpump:", + "category" : "travel", + "emoji_order" : "526", + "aliases" : [ + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "gas", + "station", + "petroleum", + "diesel", + "fuelpump", + "place", + "travel" + ] + }, + "busstop" : { + "unicode" : "1f68f", + "unicode_alternates" : "", + "name" : "bus stop", + "shortname" : ":busstop:", + "category" : "travel", + "emoji_order" : "527", + "aliases" : [ + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "transportation", + "city", + "public", + "busstop", + "place", + "travel" + ] + }, + "vertical_traffic_light" : { + "unicode" : "1f6a6", + "unicode_alternates" : "", + "name" : "vertical traffic light", + "shortname" : ":vertical_traffic_light:", + "category" : "travel", + "emoji_order" : "528", + "aliases" : [ + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "transportation", + "stop", + "go", + "yield", + "sign", + "place", + "signal", + "travel" + ] + }, + "traffic_light" : { + "unicode" : "1f6a5", + "unicode_alternates" : "", + "name" : "horizontal traffic light", + "shortname" : ":traffic_light:", + "category" : "travel", + "emoji_order" : "529", + "aliases" : [ + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "transportation", + "stop", + "go", + "yield", + "sign", + "place", + "signal", + "travel" + ] + }, + "checkered_flag" : { + "unicode" : "1f3c1", + "unicode_alternates" : "", + "name" : "chequered flag", + "shortname" : ":checkered_flag:", + "category" : "travel", + "emoji_order" : "530", + "aliases" : [ + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "contest", + "finishline", + "gokart", + "checkered", + "race", + "flag", + "finish", + "complete", + "end", + "object", + "place", + "racing", + "sport" + ] + }, + "ship" : { + "unicode" : "1f6a2", + "unicode_alternates" : "", + "name" : "ship", + "shortname" : ":ship:", + "category" : "travel", + "emoji_order" : "531", + "aliases" : [ + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "titanic", + "transportation", + "ferry", + "boat", + "yacht", + "place", + "travel", + "vehicle" + ] + }, + "ferris_wheel" : { + "unicode" : "1f3a1", + "unicode_alternates" : "", + "name" : "ferris wheel", + "shortname" : ":ferris_wheel:", + "category" : "travel", + "emoji_order" : "532", + "aliases" : [ + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "carnival", + "londoneye", + "farris", + "amusement", + "park", + "fair", + "ride", + "entertainment", + "activity", + "amusement park", + "place" + ] + }, + "roller_coaster" : { + "unicode" : "1f3a2", + "unicode_alternates" : "", + "name" : "roller coaster", + "shortname" : ":roller_coaster:", + "category" : "travel", + "emoji_order" : "533", + "aliases" : [ + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "carnival", + "fun", + "playground", + "amusement", + "park", + "fair", + "ride", + "entertainment", + "activity", + "amusement park", + "place" + ] + }, + "carousel_horse" : { + "unicode" : "1f3a0", + "unicode_alternates" : "", + "name" : "carousel horse", + "shortname" : ":carousel_horse:", + "category" : "travel", + "emoji_order" : "534", + "aliases" : [ + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "carnival", + "amusement", + "park", + "ride", + "entertainment", + "fair", + "activity", + "place" + ] + }, + "construction_site" : { + "unicode" : "1f3d7", + "unicode_alternates" : "1f3d7-fe0f", + "name" : "building construction", + "shortname" : ":construction_site:", + "category" : "travel", + "emoji_order" : "535", + "aliases" : [ + ":building_construction:" + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "site", + "work", + "place" + ] + }, + "foggy" : { + "unicode" : "1f301", + "unicode_alternates" : "", + "name" : "foggy", + "shortname" : ":foggy:", + "category" : "travel", + "emoji_order" : "536", + "aliases" : [ + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "mountain", + "bridge", + "weather", + "fog", + "nature", + "place" + ] + }, + "tokyo_tower" : { + "unicode" : "1f5fc", + "unicode_alternates" : "", + "name" : "tokyo tower", + "shortname" : ":tokyo_tower:", + "category" : "travel", + "emoji_order" : "537", + "aliases" : [ + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "japan", + "place" + ] + }, + "factory" : { + "unicode" : "1f3ed", + "unicode_alternates" : "", + "name" : "factory", + "shortname" : ":factory:", + "category" : "travel", + "emoji_order" : "538", + "aliases" : [ + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "building", + "production", + "manufacturing", + "place" + ] + }, + "fountain" : { + "unicode" : "26f2", + "unicode_alternates" : "26f2-fe0f", + "name" : "fountain", + "shortname" : ":fountain:", + "category" : "travel", + "emoji_order" : "539", + "aliases" : [ + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "water", + "display", + "art", + "feature", + "decor", + "architecture", + "object", + "place" + ] + }, + "rice_scene" : { + "unicode" : "1f391", + "unicode_alternates" : "", + "name" : "moon viewing ceremony", + "shortname" : ":rice_scene:", + "category" : "travel", + "emoji_order" : "540", + "aliases" : [ + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "observing", + "otsukimi", + "tsukimi", + "rice", + "scene", + "festival", + "autumn", + "activity", + "celebration", + "entertainment", + "nature", + "object" + ] + }, + "mountain" : { + "unicode" : "26f0", + "unicode_alternates" : "26f0-fe0f", + "name" : "mountain", + "shortname" : ":mountain:", + "category" : "travel", + "emoji_order" : "541", + "aliases" : [ + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "place" + ] + }, + "mountain_snow" : { + "unicode" : "1f3d4", + "unicode_alternates" : "1f3d4-fe0f", + "name" : "snow capped mountain", + "shortname" : ":mountain_snow:", + "category" : "travel", + "emoji_order" : "542", + "aliases" : [ + ":snow_capped_mountain:" + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "cold", + "elevation", + "hiking", + "peak", + "nature", + "place" + ] + }, + "mount_fuji" : { + "unicode" : "1f5fb", + "unicode_alternates" : "", + "name" : "mount fuji", + "shortname" : ":mount_fuji:", + "category" : "travel", + "emoji_order" : "543", + "aliases" : [ + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "japan", + "mountain", + "nature", + "peak", + "place" + ] + }, + "volcano" : { + "unicode" : "1f30b", + "unicode_alternates" : "", + "name" : "volcano", + "shortname" : ":volcano:", + "category" : "travel", + "emoji_order" : "544", + "aliases" : [ + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "nature", + "volcano", + "lava", + "magma", + "hot", + "explode", + "eruption", + "mountain", + "place", + "weather" + ] + }, + "japan" : { + "unicode" : "1f5fe", + "unicode_alternates" : "", + "name" : "silhouette of japan", + "shortname" : ":japan:", + "category" : "travel", + "emoji_order" : "545", + "aliases" : [ + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "nation", + "island", + "map", + "place" + ] + }, + "camping" : { + "unicode" : "1f3d5", + "unicode_alternates" : "1f3d5-fe0f", + "name" : "camping", + "shortname" : ":camping:", + "category" : "travel", + "emoji_order" : "546", + "aliases" : [ + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "outdoors", + "nature", + "wilderness", + "roughing", + "activity", + "place" + ] + }, + "tent" : { + "unicode" : "26fa", + "unicode_alternates" : "26fa-fe0f", + "name" : "tent", + "shortname" : ":tent:", + "category" : "travel", + "emoji_order" : "547", + "aliases" : [ + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "camp", + "outdoors", + "pup", + "camping", + "object", + "place" + ] + }, + "park" : { + "unicode" : "1f3de", + "unicode_alternates" : "1f3de-fe0f", + "name" : "national park", + "shortname" : ":park:", + "category" : "travel", + "emoji_order" : "548", + "aliases" : [ + ":national_park:" + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "woods", + "nature", + "wildlife", + "forest", + "wilderness", + "national", + "national park", + "place" + ] + }, + "motorway" : { + "unicode" : "1f6e3", + "unicode_alternates" : "1f6e3-fe0f", + "name" : "motorway", + "shortname" : ":motorway:", + "category" : "travel", + "emoji_order" : "549", + "aliases" : [ + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "road", + "highway", + "freeway", + "traffic", + "travel", + "place" + ] + }, + "railway_track" : { + "unicode" : "1f6e4", + "unicode_alternates" : "1f6e4-fe0f", + "name" : "railway track", + "shortname" : ":railway_track:", + "category" : "travel", + "emoji_order" : "550", + "aliases" : [ + ":railroad_track:" + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "train", + "trolley", + "subway", + "locomotive", + "transit", + "place", + "travel" + ] + }, + "sunrise" : { + "unicode" : "1f305", + "unicode_alternates" : "", + "name" : "sunrise", + "shortname" : ":sunrise:", + "category" : "travel", + "emoji_order" : "551", + "aliases" : [ + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "morning", + "vacation", + "view", + "sun", + "morning", + "color", + "sky", + "nature", + "place", + "time", + "weather" + ] + }, + "sunrise_over_mountains" : { + "unicode" : "1f304", + "unicode_alternates" : "", + "name" : "sunrise over mountains", + "shortname" : ":sunrise_over_mountains:", + "category" : "travel", + "emoji_order" : "552", + "aliases" : [ + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "vacation", + "view", + "sun", + "morning", + "rural", + "color", + "sky", + "mountain", + "nature", + "place", + "time", + "weather" + ] + }, + "desert" : { + "unicode" : "1f3dc", + "unicode_alternates" : "1f3dc-fe0f", + "name" : "desert", + "shortname" : ":desert:", + "category" : "travel", + "emoji_order" : "553", + "aliases" : [ + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "hot", + "dry", + "sandy", + "cactus", + "sunny", + "barren", + "nature", + "place" + ] + }, + "beach" : { + "unicode" : "1f3d6", + "unicode_alternates" : "1f3d6-fe0f", + "name" : "beach with umbrella", + "shortname" : ":beach:", + "category" : "travel", + "emoji_order" : "554", + "aliases" : [ + ":beach_with_umbrella:" + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "sand", + "sun", + "surf", + "vacation", + "relaxation", + "tanning", + "tan", + "swimming", + "nature", + "place" + ] + }, + "island" : { + "unicode" : "1f3dd", + "unicode_alternates" : "1f3dd-fe0f", + "name" : "desert island", + "shortname" : ":island:", + "category" : "travel", + "emoji_order" : "555", + "aliases" : [ + ":desert_island:" + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "land", + "solitude", + "alone", + "nature", + "place" + ] + }, + "city_sunset" : { + "unicode" : "1f307", + "unicode_alternates" : "", + "name" : "sunset over buildings", + "shortname" : ":city_sunset:", + "category" : "travel", + "emoji_order" : "556", + "aliases" : [ + ":city_sunrise:" + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "city", + "scape", + "light", + "metropolitan", + "rise", + "sun", + "dusk", + "evening", + "building", + "nature", + "place", + "time", + "weather" + ] + }, + "city_dusk" : { + "unicode" : "1f306", + "unicode_alternates" : "", + "name" : "cityscape at dusk", + "shortname" : ":city_dusk:", + "category" : "travel", + "emoji_order" : "557", + "aliases" : [ + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "city", + "scape", + "sunset", + "lights", + "evening", + "metropolitan", + "night", + "dark", + "building", + "landscape", + "nature", + "place", + "sun", + "time", + "weather" + ] + }, + "cityscape" : { + "unicode" : "1f3d9", + "unicode_alternates" : "1f3d9-fe0f", + "name" : "cityscape", + "shortname" : ":cityscape:", + "category" : "travel", + "emoji_order" : "558", + "aliases" : [ + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "skyscraper", + "city", + "view", + "lights", + "buildings", + "metropolis", + "building", + "place" + ] + }, + "night_with_stars" : { + "unicode" : "1f303", + "unicode_alternates" : "", + "name" : "night with stars", + "shortname" : ":night_with_stars:", + "category" : "travel", + "emoji_order" : "559", + "aliases" : [ + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "cloudless", + "evening", + "planets", + "space", + "sky", + "nature", + "place", + "star", + "weather" + ] + }, + "bridge_at_night" : { + "unicode" : "1f309", + "unicode_alternates" : "", + "name" : "bridge at night", + "shortname" : ":bridge_at_night:", + "category" : "travel", + "emoji_order" : "560", + "aliases" : [ + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "san francisco", + "water", + "road", + "evening", + "suspension", + "golden", + "nature", + "place", + "weather" + ] + }, + "milky_way" : { + "unicode" : "1f30c", + "unicode_alternates" : "", + "name" : "milky way", + "shortname" : ":milky_way:", + "category" : "travel", + "emoji_order" : "561", + "aliases" : [ + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "outer", + "space", + "galaxy", + "stars", + "planets", + "sky", + "milky way", + "nature", + "place", + "weather" + ] + }, + "stars" : { + "unicode" : "1f320", + "unicode_alternates" : "", + "name" : "shooting star", + "shortname" : ":stars:", + "category" : "travel", + "emoji_order" : "562", + "aliases" : [ + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "night", + "shoot", + "sky", + "comet", + "meteoroid", + "activity", + "falling", + "nature", + "place", + "space" + ] + }, + "sparkler" : { + "unicode" : "1f387", + "unicode_alternates" : "", + "name" : "firework sparkler", + "shortname" : ":sparkler:", + "category" : "travel", + "emoji_order" : "563", + "aliases" : [ + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "night", + "shine", + "stars", + "activity", + "celebration", + "entertainment", + "fireworks", + "object", + "sparkle" + ] + }, + "fireworks" : { + "unicode" : "1f386", + "unicode_alternates" : "", + "name" : "fireworks", + "shortname" : ":fireworks:", + "category" : "travel", + "emoji_order" : "564", + "aliases" : [ + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "carnival", + "congratulations", + "festival", + "independence", + "celebration", + "explosion", + "july", + "4th", + "rocket", + "sky", + "idea", + "excitement", + "activity", + "entertainment", + "object" + ] + }, + "rainbow" : { + "unicode" : "1f308", + "unicode_alternates" : "", + "name" : "rainbow", + "shortname" : ":rainbow:", + "category" : "travel", + "emoji_order" : "565", + "aliases" : [ + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "happy", + "nature", + "sky", + "unicorn", + "color", + "pride", + "diversity", + "spectrum", + "refract", + "leprechaun", + "gold", + "rain", + "weather" + ] + }, + "homes" : { + "unicode" : "1f3d8", + "unicode_alternates" : "1f3d8-fe0f", + "name" : "house buildings", + "shortname" : ":homes:", + "category" : "travel", + "emoji_order" : "566", + "aliases" : [ + ":house_buildings:" + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "home", + "residence", + "dwelling", + "mansion", + "bungalow", + "ranch", + "craftsman", + "building", + "place" + ] + }, + "european_castle" : { + "unicode" : "1f3f0", + "unicode_alternates" : "", + "name" : "european castle", + "shortname" : ":european_castle:", + "category" : "travel", + "emoji_order" : "567", + "aliases" : [ + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "building", + "history", + "residence", + "royalty", + "disneyland", + "disney", + "fort", + "fortified", + "moat", + "tower", + "princess", + "prince", + "lord", + "king", + "queen", + "fortress", + "nobel", + "stronghold", + "place" + ] + }, + "japanese_castle" : { + "unicode" : "1f3ef", + "unicode_alternates" : "", + "name" : "japanese castle", + "shortname" : ":japanese_castle:", + "category" : "travel", + "emoji_order" : "568", + "aliases" : [ + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "building", + "residence", + "royalty", + "fort", + "fortified", + "fortress", + "history", + "place" + ] + }, + "stadium" : { + "unicode" : "1f3df", + "unicode_alternates" : "1f3df-fe0f", + "name" : "stadium", + "shortname" : ":stadium:", + "category" : "travel", + "emoji_order" : "569", + "aliases" : [ + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "sport", + "event", + "concert", + "convention", + "game", + "place" + ] + }, + "statue_of_liberty" : { + "unicode" : "1f5fd", + "unicode_alternates" : "", + "name" : "statue of liberty", + "shortname" : ":statue_of_liberty:", + "category" : "travel", + "emoji_order" : "570", + "aliases" : [ + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "american", + "new york", + "staten island", + "place" + ] + }, + "house" : { + "unicode" : "1f3e0", + "unicode_alternates" : "", + "name" : "house building", + "shortname" : ":house:", + "category" : "travel", + "emoji_order" : "571", + "aliases" : [ + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "home", + "residence", + "dwelling", + "mansion", + "bungalow", + "ranch", + "craftsman", + "place" + ] + }, + "house_with_garden" : { + "unicode" : "1f3e1", + "unicode_alternates" : "", + "name" : "house with garden", + "shortname" : ":house_with_garden:", + "category" : "travel", + "emoji_order" : "572", + "aliases" : [ + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "home", + "nature", + "plant", + "yard", + "residence", + "dwelling", + "mansion", + "bungalow", + "ranch", + "craftsman", + "building", + "place" + ] + }, + "house_abandoned" : { + "unicode" : "1f3da", + "unicode_alternates" : "1f3da-fe0f", + "name" : "derelict house building", + "shortname" : ":house_abandoned:", + "category" : "travel", + "emoji_order" : "573", + "aliases" : [ + ":derelict_house_building:" + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "home", + "residence", + "dwelling", + "mansion", + "bungalow", + "ranch", + "craftsman", + "boarded", + "abandoned", + "vacant", + "run down", + "shoddy", + "place" + ] + }, + "office" : { + "unicode" : "1f3e2", + "unicode_alternates" : "", + "name" : "office building", + "shortname" : ":office:", + "category" : "travel", + "emoji_order" : "574", + "aliases" : [ + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "building", + "bureau", + "work", + "place" + ] + }, + "department_store" : { + "unicode" : "1f3ec", + "unicode_alternates" : "", + "name" : "department store", + "shortname" : ":department_store:", + "category" : "travel", + "emoji_order" : "575", + "aliases" : [ + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "building", + "mall", + "shopping", + "retail", + "sale", + "merchandise", + "place" + ] + }, + "post_office" : { + "unicode" : "1f3e3", + "unicode_alternates" : "", + "name" : "japanese post office", + "shortname" : ":post_office:", + "category" : "travel", + "emoji_order" : "576", + "aliases" : [ + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "building", + "letter", + "shipping", + "package", + "mail", + "place" + ] + }, + "european_post_office" : { + "unicode" : "1f3e4", + "unicode_alternates" : "", + "name" : "european post office", + "shortname" : ":european_post_office:", + "category" : "travel", + "emoji_order" : "577", + "aliases" : [ + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "building", + "letter", + "shipping", + "package", + "mail", + "place" + ] + }, + "hospital" : { + "unicode" : "1f3e5", + "unicode_alternates" : "", + "name" : "hospital", + "shortname" : ":hospital:", + "category" : "travel", + "emoji_order" : "578", + "aliases" : [ + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "building", + "doctor", + "health", + "surgery", + "medicine", + "place" + ] + }, + "bank" : { + "unicode" : "1f3e6", + "unicode_alternates" : "", + "name" : "bank", + "shortname" : ":bank:", + "category" : "travel", + "emoji_order" : "579", + "aliases" : [ + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "building", + "money", + "savings", + "loan", + "place" + ] + }, + "hotel" : { + "unicode" : "1f3e8", + "unicode_alternates" : "", + "name" : "hotel", + "shortname" : ":hotel:", + "category" : "travel", + "emoji_order" : "580", + "aliases" : [ + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "accomodation", + "building", + "checkin", + "motel", + "holiday inn", + "place" + ] + }, + "convenience_store" : { + "unicode" : "1f3ea", + "unicode_alternates" : "", + "name" : "convenience store", + "shortname" : ":convenience_store:", + "category" : "travel", + "emoji_order" : "581", + "aliases" : [ + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "building", + "bodega", + "7-eleven", + "corner", + "place" + ] + }, + "school" : { + "unicode" : "1f3eb", + "unicode_alternates" : "", + "name" : "school", + "shortname" : ":school:", + "category" : "travel", + "emoji_order" : "582", + "aliases" : [ + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "building", + "university", + "elementary", + "middle", + "high", + "college", + "teach", + "education", + "place" + ] + }, + "love_hotel" : { + "unicode" : "1f3e9", + "unicode_alternates" : "", + "name" : "love hotel", + "shortname" : ":love_hotel:", + "category" : "travel", + "emoji_order" : "583", + "aliases" : [ + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "affection", + "dating", + "like", + "sex", + "romance", + "leisure", + "adultery", + "prostitution", + "happy", + "no-tell", + "building", + "place" + ] + }, + "wedding" : { + "unicode" : "1f492", + "unicode_alternates" : "", + "name" : "wedding", + "shortname" : ":wedding:", + "category" : "travel", + "emoji_order" : "584", + "aliases" : [ + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "affection", + "bride", + "couple", + "groom", + "like", + "love", + "marriage", + "union", + "activity", + "chapel", + "place", + "romance" + ] + }, + "classical_building" : { + "unicode" : "1f3db", + "unicode_alternates" : "1f3db-fe0f", + "name" : "classical building", + "shortname" : ":classical_building:", + "category" : "travel", + "emoji_order" : "585", + "aliases" : [ + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "government", + "architecture", + "history", + "iconic", + "genre", + "place" + ] + }, + "church" : { + "unicode" : "26ea", + "unicode_alternates" : "26ea-fe0f", + "name" : "church", + "shortname" : ":church:", + "category" : "travel", + "emoji_order" : "586", + "aliases" : [ + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "building", + "christ", + "religion", + "christian", + "cross", + "place" + ] + }, + "mosque" : { + "unicode" : "1f54c", + "unicode_alternates" : "", + "name" : "mosque", + "shortname" : ":mosque:", + "category" : "travel", + "emoji_order" : "587", + "aliases" : [ + ], + "aliases_ascii" : [ + ], + "keywords" : [ + ] + }, + "synagogue" : { + "unicode" : "1f54d", + "unicode_alternates" : "", + "name" : "synagogue", + "shortname" : ":synagogue:", + "category" : "travel", + "emoji_order" : "588", + "aliases" : [ + ], + "aliases_ascii" : [ + ], + "keywords" : [ + ] + }, + "kaaba" : { + "unicode" : "1f54b", + "unicode_alternates" : "", + "name" : "kaaba", + "shortname" : ":kaaba:", + "category" : "travel", + "emoji_order" : "589", + "aliases" : [ + ], + "aliases_ascii" : [ + ], + "keywords" : [ + ] + }, + "shinto_shrine" : { + "unicode" : "26e9", + "unicode_alternates" : "26e9-fe0f", + "name" : "shinto shrine", + "shortname" : ":shinto_shrine:", + "category" : "travel", + "emoji_order" : "590", + "aliases" : [ + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "religion", + "symbol" + ] + }, + "watch" : { + "unicode" : "231a", + "unicode_alternates" : "231a-fe0f", + "name" : "watch", + "shortname" : ":watch:", + "category" : "objects", + "emoji_order" : "591", + "aliases" : [ + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "accessories", + "time", + "gadget", + "clock", + "object" + ] + }, + "iphone" : { + "unicode" : "1f4f1", + "unicode_alternates" : "", + "name" : "mobile phone", + "shortname" : ":iphone:", + "category" : "objects", + "emoji_order" : "592", + "aliases" : [ + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "apple", + "dial", + "gadget", + "technology", + "iphone", + "call", + "cell", + "communication", + "object", + "telephone" + ] + }, + "calling" : { + "unicode" : "1f4f2", + "unicode_alternates" : "", + "name" : "mobile phone with rightwards arrow at left", + "shortname" : ":calling:", + "category" : "objects", + "emoji_order" : "593", + "aliases" : [ + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "incoming", + "iphone", + "call", + "cell", + "communication", + "object", + "receive", + "telephone" + ] + }, + "computer" : { + "unicode" : "1f4bb", + "unicode_alternates" : "", + "name" : "personal computer", + "shortname" : ":computer:", + "category" : "objects", + "emoji_order" : "594", + "aliases" : [ + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "laptop", + "tech", + "object", + "office", + "pc" + ] + }, + "keyboard" : { + "unicode" : "2328", + "unicode_alternates" : "2328-fe0f", + "name" : "keyboard", + "shortname" : ":keyboard:", + "category" : "objects", + "emoji_order" : "595", + "aliases" : [ + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "typing", + "keys", + "input", + "device", + "computer", + "object", + "sign" + ] + }, + "desktop" : { + "unicode" : "1f5a5", + "unicode_alternates" : "1f5a5-fe0f", + "name" : "desktop computer", + "shortname" : ":desktop:", + "category" : "objects", + "emoji_order" : "596", + "aliases" : [ + ":desktop_computer:" + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "cpu", + "object", + "office" + ] + }, + "printer" : { + "unicode" : "1f5a8", + "unicode_alternates" : "1f5a8-fe0f", + "name" : "printer", + "shortname" : ":printer:", + "category" : "objects", + "emoji_order" : "597", + "aliases" : [ + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "hardcopy", + "paper", + "inkjet", + "laser", + "computer", + "object", + "office" + ] + }, + "mouse_three_button" : { + "unicode" : "1f5b1", + "unicode_alternates" : "1f5b1-fe0f", + "name" : "three button mouse", + "shortname" : ":mouse_three_button:", + "category" : "objects", + "emoji_order" : "598", + "aliases" : [ + ":three_button_mouse:" + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "3", + "computer", + "object", + "office" + ] + }, + "trackball" : { + "unicode" : "1f5b2", + "unicode_alternates" : "1f5b2-fe0f", + "name" : "trackball", + "shortname" : ":trackball:", + "category" : "objects", + "emoji_order" : "599", + "aliases" : [ + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "input", + "device", + "gadget", + "computer", + "object", + "office" + ] + }, + "joystick" : { + "unicode" : "1f579", + "unicode_alternates" : "1f579-fe0f", + "name" : "joystick", + "shortname" : ":joystick:", + "category" : "objects", + "emoji_order" : "600", + "aliases" : [ + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "games", + "atari", + "controller", + "entertainment", + "game", + "object", + "video game" + ] + }, + "compression" : { + "unicode" : "1f5dc", + "unicode_alternates" : "1f5dc-fe0f", + "name" : "compression", + "shortname" : ":compression:", + "category" : "objects", + "emoji_order" : "601", + "aliases" : [ + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "reduce", + "object", + "tool", + "vice" + ] + }, + "minidisc" : { + "unicode" : "1f4bd", + "unicode_alternates" : "", + "name" : "minidisc", + "shortname" : ":minidisc:", + "category" : "objects", + "emoji_order" : "602", + "aliases" : [ + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "data", + "disc", + "disk", + "record", + "technology", + "computer", + "entertainment", + "minidisk", + "object", + "office", + "optical" + ] + }, + "floppy_disk" : { + "unicode" : "1f4be", + "unicode_alternates" : "", + "name" : "floppy disk", + "shortname" : ":floppy_disk:", + "category" : "objects", + "emoji_order" : "603", + "aliases" : [ + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "oldschool", + "save", + "technology", + "storage", + "information", + "computer", + "drive", + "kilobyte", + "object", + "office" + ] + }, + "cd" : { + "unicode" : "1f4bf", + "unicode_alternates" : "", + "name" : "optical disc", + "shortname" : ":cd:", + "category" : "objects", + "emoji_order" : "604", + "aliases" : [ + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "disc", + "disk", + "dvd", + "technology", + "blu-ray", + "cd", + "computer", + "object", + "office" + ] + }, + "dvd" : { + "unicode" : "1f4c0", + "unicode_alternates" : "", + "name" : "dvd", + "shortname" : ":dvd:", + "category" : "objects", + "emoji_order" : "605", + "aliases" : [ + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "cd", + "disc", + "disk", + "technology", + "blu-ray", + "computer", + "entertainment", + "object", + "office", + "optical" + ] + }, + "vhs" : { + "unicode" : "1f4fc", + "unicode_alternates" : "", + "name" : "videocassette", + "shortname" : ":vhs:", + "category" : "objects", + "emoji_order" : "606", + "aliases" : [ + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "oldschool", + "record", + "video", + "entertainment", + "object", + "tape", + "vhs" + ] + }, + "camera" : { + "unicode" : "1f4f7", + "unicode_alternates" : "", + "name" : "camera", + "shortname" : ":camera:", + "category" : "objects", + "emoji_order" : "607", + "aliases" : [ + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "gadget", + "photo", + "picture", + "entertainment", + "object", + "video" + ] + }, + "camera_with_flash" : { + "unicode" : "1f4f8", + "unicode_alternates" : "", + "name" : "camera with flash", + "shortname" : ":camera_with_flash:", + "category" : "objects", + "emoji_order" : "608", + "aliases" : [ + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "photo", + "picture", + "object", + "video" + ] + }, + "video_camera" : { + "unicode" : "1f4f9", + "unicode_alternates" : "", + "name" : "video camera", + "shortname" : ":video_camera:", + "category" : "objects", + "emoji_order" : "609", + "aliases" : [ + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "film", + "record", + "camcorder", + "entertainment", + "object" + ] + }, + "movie_camera" : { + "unicode" : "1f3a5", + "unicode_alternates" : "", + "name" : "movie camera", + "shortname" : ":movie_camera:", + "category" : "objects", + "emoji_order" : "610", + "aliases" : [ + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "film", + "record", + "video", + "motion", + "picture", + "activity", + "cinema", + "entertainment", + "object" + ] + }, + "projector" : { + "unicode" : "1f4fd", + "unicode_alternates" : "1f4fd-fe0f", + "name" : "film projector", + "shortname" : ":projector:", + "category" : "objects", + "emoji_order" : "611", + "aliases" : [ + ":film_projector:" + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "movie", + "video", + "motion", + "picture", + "8mm", + "16mm", + "cinema", + "entertainment", + "object" + ] + }, + "film_frames" : { + "unicode" : "1f39e", + "unicode_alternates" : "1f39e-fe0f", + "name" : "film frames", + "shortname" : ":film_frames:", + "category" : "objects", + "emoji_order" : "612", + "aliases" : [ + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "movie", + "record", + "8mm", + "16mm", + "reel", + "celluloid", + "cinema", + "entertainment", + "object" + ] + }, + "telephone_receiver" : { + "unicode" : "1f4de", + "unicode_alternates" : "", + "name" : "telephone receiver", + "shortname" : ":telephone_receiver:", + "category" : "objects", + "emoji_order" : "613", + "aliases" : [ + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "communication", + "dial", + "technology", + "phone", + "object", + "sound" + ] + }, + "telephone" : { + "unicode" : "260e", + "unicode_alternates" : "260e-fe0f", + "name" : "black telephone", + "shortname" : ":telephone:", + "category" : "objects", + "emoji_order" : "614", + "aliases" : [ + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "communication", + "dial", + "technology", + "phone", + "object", + "office", + "sound" + ] + }, + "pager" : { + "unicode" : "1f4df", + "unicode_alternates" : "", + "name" : "pager", + "shortname" : ":pager:", + "category" : "objects", + "emoji_order" : "615", + "aliases" : [ + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "bbcall", + "oldschool", + "communication", + "object", + "office" + ] + }, + "fax" : { + "unicode" : "1f4e0", + "unicode_alternates" : "", + "name" : "fax machine", + "shortname" : ":fax:", + "category" : "objects", + "emoji_order" : "616", + "aliases" : [ + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "communication", + "technology", + "object", + "office" + ] + }, + "tv" : { + "unicode" : "1f4fa", + "unicode_alternates" : "", + "name" : "television", + "shortname" : ":tv:", + "category" : "objects", + "emoji_order" : "617", + "aliases" : [ + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "oldschool", + "program", + "show", + "technology", + "tv", + "entertainment", + "object", + "video" + ] + }, + "radio" : { + "unicode" : "1f4fb", + "unicode_alternates" : "", + "name" : "radio", + "shortname" : ":radio:", + "category" : "objects", + "emoji_order" : "618", + "aliases" : [ + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "communication", + "music", + "podcast", + "program", + "entertainment", + "object", + "video" + ] + }, + "microphone2" : { + "unicode" : "1f399", + "unicode_alternates" : "1f399-fe0f", + "name" : "studio microphone", + "shortname" : ":microphone2:", + "category" : "objects", + "emoji_order" : "619", + "aliases" : [ + ":studio_microphone:" + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "mic", + "audio", + "recording", + "music", + "object", + "sound" + ] + }, + "level_slider" : { + "unicode" : "1f39a", + "unicode_alternates" : "1f39a-fe0f", + "name" : "level slider", + "shortname" : ":level_slider:", + "category" : "objects", + "emoji_order" : "620", + "aliases" : [ + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "controls", + "music", + "object", + "sound" + ] + }, + "control_knobs" : { + "unicode" : "1f39b", + "unicode_alternates" : "1f39b-fe0f", + "name" : "control knobs", + "shortname" : ":control_knobs:", + "category" : "objects", + "emoji_order" : "621", + "aliases" : [ + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "dial", + "music", + "object", + "sound" + ] + }, + "stopwatch" : { + "unicode" : "23f1", + "unicode_alternates" : "23f1-fe0f", + "name" : "stopwatch", + "shortname" : ":stopwatch:", + "category" : "objects", + "emoji_order" : "622", + "aliases" : [ + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "clock", + "object", + "time" + ] + }, + "timer" : { + "unicode" : "23f2", + "unicode_alternates" : "23f2-fe0f", + "name" : "timer clock", + "shortname" : ":timer:", + "category" : "objects", + "emoji_order" : "623", + "aliases" : [ + ":timer_clock:" + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "object", + "time" + ] + }, + "alarm_clock" : { + "unicode" : "23f0", + "unicode_alternates" : "", + "name" : "alarm clock", + "shortname" : ":alarm_clock:", + "category" : "objects", + "emoji_order" : "624", + "aliases" : [ + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "time", + "wake", + "object" + ] + }, + "clock" : { + "unicode" : "1f570", + "unicode_alternates" : "1f570-fe0f", + "name" : "mantlepiece clock", + "shortname" : ":clock:", + "category" : "objects", + "emoji_order" : "625", + "aliases" : [ + ":mantlepiece_clock:" + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "time", + "object" + ] + }, + "hourglass_flowing_sand" : { + "unicode" : "23f3", + "unicode_alternates" : "", + "name" : "hourglass with flowing sand", + "shortname" : ":hourglass_flowing_sand:", + "category" : "objects", + "emoji_order" : "626", + "aliases" : [ + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "countdown", + "oldschool", + "time", + "object", + "timer" + ] + }, + "hourglass" : { + "unicode" : "231b", + "unicode_alternates" : "231b-fe0f", + "name" : "hourglass", + "shortname" : ":hourglass:", + "category" : "objects", + "emoji_order" : "627", + "aliases" : [ + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "clock", + "oldschool", + "time", + "object", + "sand", + "timer" + ] + }, + "satellite" : { + "unicode" : "1f4e1", + "unicode_alternates" : "", + "name" : "satellite antenna", + "shortname" : ":satellite:", + "category" : "objects", + "emoji_order" : "628", + "aliases" : [ + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "communication", + "dish", + "object", + "office" + ] + }, + "battery" : { + "unicode" : "1f50b", + "unicode_alternates" : "", + "name" : "battery", + "shortname" : ":battery:", + "category" : "objects", + "emoji_order" : "629", + "aliases" : [ + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "energy", + "power", + "sustain", + "object" + ] + }, + "electric_plug" : { + "unicode" : "1f50c", + "unicode_alternates" : "", + "name" : "electric plug", + "shortname" : ":electric_plug:", + "category" : "objects", + "emoji_order" : "630", + "aliases" : [ + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "charger", + "power", + "electricity", + "object" + ] + }, + "bulb" : { + "unicode" : "1f4a1", + "unicode_alternates" : "", + "name" : "electric light bulb", + "shortname" : ":bulb:", + "category" : "objects", + "emoji_order" : "631", + "aliases" : [ + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "electricity", + "idea", + "comic", + "object" + ] + }, + "flashlight" : { + "unicode" : "1f526", + "unicode_alternates" : "", + "name" : "electric torch", + "shortname" : ":flashlight:", + "category" : "objects", + "emoji_order" : "632", + "aliases" : [ + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "dark", + "flashlight", + "light", + "object", + "tool" + ] + }, + "candle" : { + "unicode" : "1f56f", + "unicode_alternates" : "1f56f-fe0f", + "name" : "candle", + "shortname" : ":candle:", + "category" : "objects", + "emoji_order" : "633", + "aliases" : [ + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "light", + "wax", + "object" + ] + }, + "wastebasket" : { + "unicode" : "1f5d1", + "unicode_alternates" : "1f5d1-fe0f", + "name" : "wastebasket", + "shortname" : ":wastebasket:", + "category" : "objects", + "emoji_order" : "634", + "aliases" : [ + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "trash", + "garbage", + "dispose", + "object", + "office" + ] + }, + "oil" : { + "unicode" : "1f6e2", + "unicode_alternates" : "1f6e2-fe0f", + "name" : "oil drum", + "shortname" : ":oil:", + "category" : "objects", + "emoji_order" : "635", + "aliases" : [ + ":oil_drum:" + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "petroleum", + "object" + ] + }, + "money_with_wings" : { + "unicode" : "1f4b8", + "unicode_alternates" : "", + "name" : "money with wings", + "shortname" : ":money_with_wings:", + "category" : "objects", + "emoji_order" : "636", + "aliases" : [ + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "bills", + "dollar", + "payment", + "spend", + "work", + "lost", + "blown", + "burned", + "gift", + "cash", + "dollar", + "bank", + "banknote", + "bill", + "fly", + "note", + "object", + "office" + ] + }, + "dollar" : { + "unicode" : "1f4b5", + "unicode_alternates" : "", + "name" : "banknote with dollar sign", + "shortname" : ":dollar:", + "category" : "objects", + "emoji_order" : "637", + "aliases" : [ + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "bill", + "currency", + "money", + "united states", + "canada", + "australia", + "paper", + "cash", + "bank", + "note", + "object", + "office" + ] + }, + "yen" : { + "unicode" : "1f4b4", + "unicode_alternates" : "", + "name" : "banknote with yen sign", + "shortname" : ":yen:", + "category" : "objects", + "emoji_order" : "638", + "aliases" : [ + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "currency", + "dollar", + "japanese", + "money", + "japan", + "paper", + "cash", + "bill", + "bank", + "note", + "object", + "office" + ] + }, + "euro" : { + "unicode" : "1f4b6", + "unicode_alternates" : "", + "name" : "banknote with euro sign", + "shortname" : ":euro:", + "category" : "objects", + "emoji_order" : "639", + "aliases" : [ + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "currency", + "dollar", + "money", + "europe", + "paper", + "cash", + "bill", + "bank", + "note", + "object", + "office" + ] + }, + "pound" : { + "unicode" : "1f4b7", + "unicode_alternates" : "", + "name" : "banknote with pound sign", + "shortname" : ":pound:", + "category" : "objects", + "emoji_order" : "640", + "aliases" : [ + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "bill", + "british", + "currency", + "england", + "money", + "sterling", + "uk", + "britain", + "paper", + "cash", + "bank", + "note", + "object", + "office" + ] + }, + "moneybag" : { + "unicode" : "1f4b0", + "unicode_alternates" : "", + "name" : "money bag", + "shortname" : ":moneybag:", + "category" : "objects", + "emoji_order" : "641", + "aliases" : [ + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "coins", + "dollar", + "payment", + "cash", + "loot", + "moneybag", + "object", + "office" + ] + }, + "credit_card" : { + "unicode" : "1f4b3", + "unicode_alternates" : "", + "name" : "credit card", + "shortname" : ":credit_card:", + "category" : "objects", + "emoji_order" : "642", + "aliases" : [ + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "bill", + "dollar", + "money", + "pay", + "payment", + "loan", + "purchase", + "shopping", + "mastercard", + "visa", + "american express", + "wallet", + "signature", + "bank", + "object", + "office" + ] + }, + "gem" : { + "unicode" : "1f48e", + "unicode_alternates" : "", + "name" : "gem stone", + "shortname" : ":gem:", + "category" : "objects", + "emoji_order" : "643", + "aliases" : [ + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "blue", + "ruby", + "precious", + "diamond", + "emotion", + "jewel", + "object", + "person", + "romance" + ] + }, + "scales" : { + "unicode" : "2696", + "unicode_alternates" : "2696-fe0f", + "name" : "scales", + "shortname" : ":scales:", + "category" : "objects", + "emoji_order" : "644", + "aliases" : [ + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "balance", + "justice", + "libra", + "object", + "tool", + "weight", + "zodiac" + ] + }, + "wrench" : { + "unicode" : "1f527", + "unicode_alternates" : "", + "name" : "wrench", + "shortname" : ":wrench:", + "category" : "objects", + "emoji_order" : "645", + "aliases" : [ + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "diy", + "ikea", + "tools", + "object", + "tool" + ] + }, + "hammer" : { + "unicode" : "1f528", + "unicode_alternates" : "", + "name" : "hammer", + "shortname" : ":hammer:", + "category" : "objects", + "emoji_order" : "646", + "aliases" : [ + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "done", + "judge", + "law", + "ruling", + "tools", + "verdict", + "object", + "tool" + ] + }, + "hammer_pick" : { + "unicode" : "2692", + "unicode_alternates" : "2692-fe0f", + "name" : "hammer and pick", + "shortname" : ":hammer_pick:", + "category" : "objects", + "emoji_order" : "647", + "aliases" : [ + ":hammer_and_pick:" + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "object", + "tool" + ] + }, + "tools" : { + "unicode" : "1f6e0", + "unicode_alternates" : "1f6e0-fe0f", + "name" : "hammer and wrench", + "shortname" : ":tools:", + "category" : "objects", + "emoji_order" : "648", + "aliases" : [ + ":hammer_and_wrench:" + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "tools", + "object", + "tool" + ] + }, + "pick" : { + "unicode" : "26cf", + "unicode_alternates" : "26cf-fe0f", + "name" : "pick", + "shortname" : ":pick:", + "category" : "objects", + "emoji_order" : "649", + "aliases" : [ + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "mining", + "object", + "tool" + ] + }, + "nut_and_bolt" : { + "unicode" : "1f529", + "unicode_alternates" : "", + "name" : "nut and bolt", + "shortname" : ":nut_and_bolt:", + "category" : "objects", + "emoji_order" : "650", + "aliases" : [ + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "tools", + "object", + "tool" + ] + }, + "gear" : { + "unicode" : "2699", + "unicode_alternates" : "2699-fe0f", + "name" : "gear", + "shortname" : ":gear:", + "category" : "objects", + "emoji_order" : "651", + "aliases" : [ + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "object", + "tool" + ] + }, + "chains" : { + "unicode" : "26d3", + "unicode_alternates" : "26d3-fe0f", + "name" : "chains", + "shortname" : ":chains:", + "category" : "objects", + "emoji_order" : "652", + "aliases" : [ + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "chain", + "object" + ] + }, + "gun" : { + "unicode" : "1f52b", + "unicode_alternates" : "", + "name" : "pistol", + "shortname" : ":gun:", + "category" : "objects", + "emoji_order" : "653", + "aliases" : [ + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "violence", + "weapon", + "gun", + "object", + "revolver", + "tool" + ] + }, + "bomb" : { + "unicode" : "1f4a3", + "unicode_alternates" : "", + "name" : "bomb", + "shortname" : ":bomb:", + "category" : "objects", + "emoji_order" : "654", + "aliases" : [ + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "boom", + "explode", + "comic", + "object" + ] + }, + "knife" : { + "unicode" : "1f52a", + "unicode_alternates" : "", + "name" : "hocho", + "shortname" : ":knife:", + "category" : "objects", + "emoji_order" : "655", + "aliases" : [ + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "blade", + "cooking", + "knife", + "object", + "tool", + "weapon" + ] + }, + "dagger" : { + "unicode" : "1f5e1", + "unicode_alternates" : "1f5e1-fe0f", + "name" : "dagger knife", + "shortname" : ":dagger:", + "category" : "objects", + "emoji_order" : "656", + "aliases" : [ + ":dagger_knife:" + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "blade", + "knife", + "object", + "weapon" + ] + }, + "crossed_swords" : { + "unicode" : "2694", + "unicode_alternates" : "2694-fe0f", + "name" : "crossed swords", + "shortname" : ":crossed_swords:", + "category" : "objects", + "emoji_order" : "657", + "aliases" : [ + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "object", + "weapon" + ] + }, + "shield" : { + "unicode" : "1f6e1", + "unicode_alternates" : "1f6e1-fe0f", + "name" : "shield", + "shortname" : ":shield:", + "category" : "objects", + "emoji_order" : "658", + "aliases" : [ + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "interstate", + "route", + "sign", + "highway", + "interstate", + "object", + "weapon" + ] + }, + "smoking" : { + "unicode" : "1f6ac", + "unicode_alternates" : "", + "name" : "smoking symbol", + "shortname" : ":smoking:", + "category" : "objects", + "emoji_order" : "659", + "aliases" : [ + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "cigarette", + "kills", + "tobacco", + "smoke", + "cancer", + "lungs", + "inhale", + "tar", + "nicotine", + "activity", + "object" + ] + }, + "skull_crossbones" : { + "unicode" : "2620", + "unicode_alternates" : "2620-fe0f", + "name" : "skull and crossbones", + "shortname" : ":skull_crossbones:", + "category" : "objects", + "emoji_order" : "660", + "aliases" : [ + ":skull_and_crossbones:" + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "body", + "death", + "face", + "monster", + "person" + ] + }, + "coffin" : { + "unicode" : "26b0", + "unicode_alternates" : "26b0-fe0f", + "name" : "coffin", + "shortname" : ":coffin:", + "category" : "objects", + "emoji_order" : "661", + "aliases" : [ + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "death", + "object" + ] + }, + "urn" : { + "unicode" : "26b1", + "unicode_alternates" : "26b1-fe0f", + "name" : "funeral urn", + "shortname" : ":urn:", + "category" : "objects", + "emoji_order" : "662", + "aliases" : [ + ":funeral_urn:" + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "death", + "object" + ] + }, + "amphora" : { + "unicode" : "1f3fa", + "unicode_alternates" : "", + "name" : "amphora", + "shortname" : ":amphora:", + "category" : "objects", + "emoji_order" : "663", + "aliases" : [ + ], + "aliases_ascii" : [ + ], + "keywords" : [ + ] + }, + "crystal_ball" : { + "unicode" : "1f52e", + "unicode_alternates" : "", + "name" : "crystal ball", + "shortname" : ":crystal_ball:", + "category" : "objects", + "emoji_order" : "664", + "aliases" : [ + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "fortune", + "future", + "reading", + "fairy tale", + "fantasy", + "object", + "tool" + ] + }, + "prayer_beads" : { + "unicode" : "1f4ff", + "unicode_alternates" : "", + "name" : "prayer beads", + "shortname" : ":prayer_beads:", + "category" : "objects", + "emoji_order" : "665", + "aliases" : [ + ], + "aliases_ascii" : [ + ], + "keywords" : [ + ] + }, + "barber" : { + "unicode" : "1f488", + "unicode_alternates" : "", + "name" : "barber pole", + "shortname" : ":barber:", + "category" : "objects", + "emoji_order" : "666", + "aliases" : [ + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "salon", + "style", + "haircut", + "trim", + "place" + ] + }, + "alembic" : { + "unicode" : "2697", + "unicode_alternates" : "2697-fe0f", + "name" : "alembic", + "shortname" : ":alembic:", + "category" : "objects", + "emoji_order" : "667", + "aliases" : [ + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "chemistry", + "object", + "tool" + ] + }, + "telescope" : { + "unicode" : "1f52d", + "unicode_alternates" : "", + "name" : "telescope", + "shortname" : ":telescope:", + "category" : "objects", + "emoji_order" : "668", + "aliases" : [ + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "space", + "stars", + "object", + "tool" + ] + }, + "microscope" : { + "unicode" : "1f52c", + "unicode_alternates" : "", + "name" : "microscope", + "shortname" : ":microscope:", + "category" : "objects", + "emoji_order" : "669", + "aliases" : [ + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "experiment", + "laboratory", + "zoomin", + "object", + "tool" + ] + }, + "hole" : { + "unicode" : "1f573", + "unicode_alternates" : "1f573-fe0f", + "name" : "hole", + "shortname" : ":hole:", + "category" : "objects", + "emoji_order" : "670", + "aliases" : [ + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "pit", + "well", + "symbol" + ] + }, + "pill" : { + "unicode" : "1f48a", + "unicode_alternates" : "", + "name" : "pill", + "shortname" : ":pill:", + "category" : "objects", + "emoji_order" : "671", + "aliases" : [ + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "health", + "medicine", + "drug", + "prescription", + "doctor", + "object", + "sick" + ] + }, + "syringe" : { + "unicode" : "1f489", + "unicode_alternates" : "", + "name" : "syringe", + "shortname" : ":syringe:", + "category" : "objects", + "emoji_order" : "672", + "aliases" : [ + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "blood", + "drugs", + "health", + "hospital", + "medicine", + "needle", + "doctor", + "object", + "shot", + "sick", + "tool" + ] + }, + "thermometer" : { + "unicode" : "1f321", + "unicode_alternates" : "1f321-fe0f", + "name" : "thermometer", + "shortname" : ":thermometer:", + "category" : "objects", + "emoji_order" : "673", + "aliases" : [ + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "temperature", + "nature", + "weather" + ] + }, + "label" : { + "unicode" : "1f3f7", + "unicode_alternates" : "1f3f7-fe0f", + "name" : "label", + "shortname" : ":label:", + "category" : "objects", + "emoji_order" : "674", + "aliases" : [ + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "tag", + "object" + ] + }, + "bookmark" : { + "unicode" : "1f516", + "unicode_alternates" : "", + "name" : "bookmark", + "shortname" : ":bookmark:", + "category" : "objects", + "emoji_order" : "675", + "aliases" : [ + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "favorite", + "mark", + "object" + ] + }, + "toilet" : { + "unicode" : "1f6bd", + "unicode_alternates" : "", + "name" : "toilet", + "shortname" : ":toilet:", + "category" : "objects", + "emoji_order" : "676", + "aliases" : [ + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "restroom", + "wc", + "bathroom", + "throne", + "porcelain", + "waste", + "flush", + "plumbing", + "object", + "place", + "travel" + ] + }, + "shower" : { + "unicode" : "1f6bf", + "unicode_alternates" : "", + "name" : "shower", + "shortname" : ":shower:", + "category" : "objects", + "emoji_order" : "677", + "aliases" : [ + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "bath", + "clean", + "wash", + "bathroom", + "soap", + "water", + "shampoo", + "lather", + "object", + "place", + "travel" + ] + }, + "bathtub" : { + "unicode" : "1f6c1", + "unicode_alternates" : "", + "name" : "bathtub", + "shortname" : ":bathtub:", + "category" : "objects", + "emoji_order" : "678", + "aliases" : [ + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "clean", + "shower", + "bath", + "tub", + "basin", + "wash", + "bubble", + "soak", + "bathroom", + "soap", + "water", + "shampoo", + "lather", + "object", + "place", + "travel" + ] + }, + "key" : { + "unicode" : "1f511", + "unicode_alternates" : "", + "name" : "key", + "shortname" : ":key:", + "category" : "objects", + "emoji_order" : "679", + "aliases" : [ + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "door", + "lock", + "password", + "object" + ] + }, + "key2" : { + "unicode" : "1f5dd", + "unicode_alternates" : "1f5dd-fe0f", + "name" : "old key", + "shortname" : ":key2:", + "category" : "objects", + "emoji_order" : "680", + "aliases" : [ + ":old_key:" + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "door", + "lock", + "password", + "skeleton", + "clue", + "object" + ] + }, + "couch" : { + "unicode" : "1f6cb", + "unicode_alternates" : "1f6cb-fe0f", + "name" : "couch and lamp", + "shortname" : ":couch:", + "category" : "objects", + "emoji_order" : "681", + "aliases" : [ + ":couch_and_lamp:" + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "lounge", + "sectional", + "sofa", + "loveseat", + "leather", + "microfiber", + "sit", + "relax", + "hotel", + "object" + ] + }, + "sleeping_accommodation" : { + "unicode" : "1f6cc", + "unicode_alternates" : "", + "name" : "sleeping accommodation", + "shortname" : ":sleeping_accommodation:", + "category" : "objects", + "emoji_order" : "682", + "aliases" : [ + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "hotel", + "motel", + "rest", + "object", + "sleep" + ] + }, + "bed" : { + "unicode" : "1f6cf", + "unicode_alternates" : "1f6cf-fe0f", + "name" : "bed", + "shortname" : ":bed:", + "category" : "objects", + "emoji_order" : "683", + "aliases" : [ + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "sleep", + "sex", + "queen", + "full", + "twin", + "king", + "mattress", + "hotel", + "object" + ] + }, + "door" : { + "unicode" : "1f6aa", + "unicode_alternates" : "", + "name" : "door", + "shortname" : ":door:", + "category" : "objects", + "emoji_order" : "684", + "aliases" : [ + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "entry", + "exit", + "house", + "doorway", + "entrance", + "enter", + "exit", + "entry", + "object", + "travel" + ] + }, + "bellhop" : { + "unicode" : "1f6ce", + "unicode_alternates" : "1f6ce-fe0f", + "name" : "bellhop bell", + "shortname" : ":bellhop:", + "category" : "objects", + "emoji_order" : "685", + "aliases" : [ + ":bellhop_bell:" + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "hotel", + "porter", + "ding", + "object" + ] + }, + "frame_photo" : { + "unicode" : "1f5bc", + "unicode_alternates" : "1f5bc-fe0f", + "name" : "frame with picture", + "shortname" : ":frame_photo:", + "category" : "objects", + "emoji_order" : "686", + "aliases" : [ + ":frame_with_picture:" + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "photo", + "art", + "museum", + "object", + "office", + "painting" + ] + }, + "map" : { + "unicode" : "1f5fa", + "unicode_alternates" : "1f5fa-fe0f", + "name" : "world map", + "shortname" : ":map:", + "category" : "objects", + "emoji_order" : "687", + "aliases" : [ + ":world_map:" + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "atlas", + "earth", + "cartography", + "place" + ] + }, + "beach_umbrella" : { + "unicode" : "26f1", + "unicode_alternates" : "26f1-fe0f", + "name" : "umbrella on ground", + "shortname" : ":beach_umbrella:", + "category" : "objects", + "emoji_order" : "688", + "aliases" : [ + ":umbrella_on_ground:" + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "nature", + "rain", + "sun", + "travel", + "weather" + ] + }, + "moyai" : { + "unicode" : "1f5ff", + "unicode_alternates" : "", + "name" : "moyai", + "shortname" : ":moyai:", + "category" : "objects", + "emoji_order" : "689", + "aliases" : [ + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "island", + "stone", + "face", + "place", + "statue", + "travel" + ] + }, + "shopping_bags" : { + "unicode" : "1f6cd", + "unicode_alternates" : "1f6cd-fe0f", + "name" : "shopping bags", + "shortname" : ":shopping_bags:", + "category" : "objects", + "emoji_order" : "690", + "aliases" : [ + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "purchase", + "mall", + "buy", + "store", + "shop", + "bag", + "hotel", + "object" + ] + }, + "balloon" : { + "unicode" : "1f388", + "unicode_alternates" : "", + "name" : "balloon", + "shortname" : ":balloon:", + "category" : "objects", + "emoji_order" : "691", + "aliases" : [ + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "celebration", + "party", + "birthday", + "helium", + "gas", + "children", + "float", + "activity", + "entertainment", + "object" + ] + }, + "flags" : { + "unicode" : "1f38f", + "unicode_alternates" : "", + "name" : "carp streamer", + "shortname" : ":flags:", + "category" : "objects", + "emoji_order" : "692", + "aliases" : [ + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "banner", + "fish", + "japanese", + "koinobori", + "children", + "kids", + "boys", + "celebration", + "happiness", + "holiday", + "flags", + "activity", + "entertainment", + "flag", + "object" + ] + }, + "ribbon" : { + "unicode" : "1f380", + "unicode_alternates" : "", + "name" : "ribbon", + "shortname" : ":ribbon:", + "category" : "objects", + "emoji_order" : "693", + "aliases" : [ + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "bowtie", + "decoration", + "pink", + "lace", + "wrap", + "decorate", + "celebration", + "emotion", + "object", + "person" + ] + }, + "gift" : { + "unicode" : "1f381", + "unicode_alternates" : "", + "name" : "wrapped present", + "shortname" : ":gift:", + "category" : "objects", + "emoji_order" : "694", + "aliases" : [ + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "birthday", + "christmas", + "xmas", + "gift", + "package", + "wedding", + "box", + "celebration", + "entertainment", + "object" + ] + }, + "confetti_ball" : { + "unicode" : "1f38a", + "unicode_alternates" : "", + "name" : "confetti ball", + "shortname" : ":confetti_ball:", + "category" : "objects", + "emoji_order" : "695", + "aliases" : [ + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "festival", + "party", + "congratulations", + "celebrate", + "win", + "birthday", + "new years", + "wedding", + "activity", + "celebration", + "entertainment", + "object" + ] + }, + "tada" : { + "unicode" : "1f389", + "unicode_alternates" : "", + "name" : "party popper", + "shortname" : ":tada:", + "category" : "objects", + "emoji_order" : "696", + "aliases" : [ + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "tada", + "celebration", + "victory", + "announcement", + "climax", + "congratulations", + "activity", + "entertainment", + "object" + ] + }, + "dolls" : { + "unicode" : "1f38e", + "unicode_alternates" : "", + "name" : "japanese dolls", + "shortname" : ":dolls:", + "category" : "objects", + "emoji_order" : "697", + "aliases" : [ + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "kimono", + "toy", + "japan", + "day", + "girls", + "emperor", + "empress", + "pray", + "blessing", + "imperial", + "family", + "royal", + "activity", + "celebration", + "doll", + "entertainment", + "festival", + "object" + ] + }, + "wind_chime" : { + "unicode" : "1f390", + "unicode_alternates" : "", + "name" : "wind chime", + "shortname" : ":wind_chime:", + "category" : "objects", + "emoji_order" : "698", + "aliases" : [ + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "ding", + "nature", + "bell", + "fūrin", + "instrument", + "music", + "spirits", + "soothing", + "protective", + "spiritual", + "sound", + "activity", + "celebration", + "entertainment", + "object" + ] + }, + "crossed_flags" : { + "unicode" : "1f38c", + "unicode_alternates" : "", + "name" : "crossed flags", + "shortname" : ":crossed_flags:", + "category" : "objects", + "emoji_order" : "699", + "aliases" : [ + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "japan", + "activity", + "celebration", + "cross", + "flag", + "japanese", + "object" + ] + }, + "izakaya_lantern" : { + "unicode" : "1f3ee", + "unicode_alternates" : "", + "name" : "izakaya lantern", + "shortname" : ":izakaya_lantern:", + "category" : "objects", + "emoji_order" : "700", + "aliases" : [ + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "light", + "stay", + "drink", + "alcohol", + "bar", + "sake", + "restaurant", + "japanese", + "place", + "red" + ] + }, + "envelope" : { + "unicode" : "2709", + "unicode_alternates" : "2709-fe0f", + "name" : "envelope", + "shortname" : ":envelope:", + "category" : "objects", + "emoji_order" : "701", + "aliases" : [ + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "communication", + "letter", + "mail", + "postal", + "e-mail", + "email", + "object", + "office" + ] + }, + "envelope_with_arrow" : { + "unicode" : "1f4e9", + "unicode_alternates" : "", + "name" : "envelope with downwards arrow above", + "shortname" : ":envelope_with_arrow:", + "category" : "objects", + "emoji_order" : "702", + "aliases" : [ + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "email", + "communication", + "down", + "e-mail", + "letter", + "mail", + "object", + "office", + "outgoing", + "sent" + ] + }, + "incoming_envelope" : { + "unicode" : "1f4e8", + "unicode_alternates" : "", + "name" : "incoming envelope", + "shortname" : ":incoming_envelope:", + "category" : "objects", + "emoji_order" : "703", + "aliases" : [ + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "email", + "inbox", + "communication", + "e-mail", + "letter", + "mail", + "object", + "office", + "receive" + ] + }, + "e-mail" : { + "unicode" : "1f4e7", + "unicode_alternates" : "", + "name" : "e-mail symbol", + "shortname" : ":e-mail:", + "category" : "objects", + "emoji_order" : "704", + "aliases" : [ + ":email:" + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "communication", + "inbox", + "email", + "letter", + "mail", + "object", + "office" + ] + }, + "love_letter" : { + "unicode" : "1f48c", + "unicode_alternates" : "", + "name" : "love letter", + "shortname" : ":love_letter:", + "category" : "objects", + "emoji_order" : "705", + "aliases" : [ + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "affection", + "email", + "envelope", + "like", + "valentines", + "kiss", + "heart", + "emotion", + "mail", + "person", + "romance" + ] + }, + "postbox" : { + "unicode" : "1f4ee", + "unicode_alternates" : "", + "name" : "postbox", + "shortname" : ":postbox:", + "category" : "objects", + "emoji_order" : "706", + "aliases" : [ + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "email", + "envelope", + "letter", + "communication", + "mail", + "mailbox", + "object", + "office" + ] + }, + "mailbox_closed" : { + "unicode" : "1f4ea", + "unicode_alternates" : "", + "name" : "closed mailbox with lowered flag", + "shortname" : ":mailbox_closed:", + "category" : "objects", + "emoji_order" : "707", + "aliases" : [ + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "communication", + "email", + "inbox", + "mail", + "object", + "office", + "postbox" + ] + }, + "mailbox" : { + "unicode" : "1f4eb", + "unicode_alternates" : "", + "name" : "closed mailbox with raised flag", + "shortname" : ":mailbox:", + "category" : "objects", + "emoji_order" : "708", + "aliases" : [ + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "communication", + "email", + "inbox", + "mail", + "object", + "office", + "postbox" + ] + }, + "mailbox_with_mail" : { + "unicode" : "1f4ec", + "unicode_alternates" : "", + "name" : "open mailbox with raised flag", + "shortname" : ":mailbox_with_mail:", + "category" : "objects", + "emoji_order" : "709", + "aliases" : [ + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "communication", + "email", + "inbox", + "mail", + "object", + "office", + "postbox" + ] + }, + "mailbox_with_no_mail" : { + "unicode" : "1f4ed", + "unicode_alternates" : "", + "name" : "open mailbox with lowered flag", + "shortname" : ":mailbox_with_no_mail:", + "category" : "objects", + "emoji_order" : "710", + "aliases" : [ + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "email", + "inbox", + "communication", + "mail", + "object", + "office", + "postbox" + ] + }, + "package" : { + "unicode" : "1f4e6", + "unicode_alternates" : "", + "name" : "package", + "shortname" : ":package:", + "category" : "objects", + "emoji_order" : "711", + "aliases" : [ + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "gift", + "mail", + "box", + "communication", + "object", + "office", + "parcel" + ] + }, + "postal_horn" : { + "unicode" : "1f4ef", + "unicode_alternates" : "", + "name" : "postal horn", + "shortname" : ":postal_horn:", + "category" : "objects", + "emoji_order" : "712", + "aliases" : [ + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "instrument", + "music", + "communication", + "entertainment", + "object", + "post", + "sound" + ] + }, + "inbox_tray" : { + "unicode" : "1f4e5", + "unicode_alternates" : "", + "name" : "inbox tray", + "shortname" : ":inbox_tray:", + "category" : "objects", + "emoji_order" : "713", + "aliases" : [ + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "documents", + "email", + "box", + "communication", + "letter", + "mail", + "object", + "office", + "receive" + ] + }, + "outbox_tray" : { + "unicode" : "1f4e4", + "unicode_alternates" : "", + "name" : "outbox tray", + "shortname" : ":outbox_tray:", + "category" : "objects", + "emoji_order" : "714", + "aliases" : [ + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "documents", + "email", + "box", + "communication", + "letter", + "mail", + "object", + "office", + "sent" + ] + }, + "scroll" : { + "unicode" : "1f4dc", + "unicode_alternates" : "", + "name" : "scroll", + "shortname" : ":scroll:", + "category" : "objects", + "emoji_order" : "715", + "aliases" : [ + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "documents", + "roll", + "parchment", + "history", + "papyrus", + "ancient", + "object", + "office", + "paper" + ] + }, + "page_with_curl" : { + "unicode" : "1f4c3", + "unicode_alternates" : "", + "name" : "page with curl", + "shortname" : ":page_with_curl:", + "category" : "objects", + "emoji_order" : "716", + "aliases" : [ + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "document", + "object", + "office" + ] + }, + "bookmark_tabs" : { + "unicode" : "1f4d1", + "unicode_alternates" : "", + "name" : "bookmark tabs", + "shortname" : ":bookmark_tabs:", + "category" : "objects", + "emoji_order" : "717", + "aliases" : [ + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "favorite", + "mark", + "marker", + "object", + "office" + ] + }, + "bar_chart" : { + "unicode" : "1f4ca", + "unicode_alternates" : "", + "name" : "bar chart", + "shortname" : ":bar_chart:", + "category" : "objects", + "emoji_order" : "718", + "aliases" : [ + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "graph", + "presentation", + "stats", + "object", + "office" + ] + }, + "chart_with_upwards_trend" : { + "unicode" : "1f4c8", + "unicode_alternates" : "", + "name" : "chart with upwards trend", + "shortname" : ":chart_with_upwards_trend:", + "category" : "objects", + "emoji_order" : "719", + "aliases" : [ + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "graph", + "business", + "growth", + "object", + "office", + "upward" + ] + }, + "chart_with_downwards_trend" : { + "unicode" : "1f4c9", + "unicode_alternates" : "", + "name" : "chart with downwards trend", + "shortname" : ":chart_with_downwards_trend:", + "category" : "objects", + "emoji_order" : "720", + "aliases" : [ + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "graph", + "business", + "down", + "object", + "office" + ] + }, + "page_facing_up" : { + "unicode" : "1f4c4", + "unicode_alternates" : "", + "name" : "page facing up", + "shortname" : ":page_facing_up:", + "category" : "objects", + "emoji_order" : "721", + "aliases" : [ + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "document", + "object", + "office" + ] + }, + "date" : { + "unicode" : "1f4c5", + "unicode_alternates" : "", + "name" : "calendar", + "shortname" : ":date:", + "category" : "objects", + "emoji_order" : "722", + "aliases" : [ + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "schedule", + "date", + "day", + "object", + "office" + ] + }, + "calendar" : { + "unicode" : "1f4c6", + "unicode_alternates" : "", + "name" : "tear-off calendar", + "shortname" : ":calendar:", + "category" : "objects", + "emoji_order" : "723", + "aliases" : [ + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "schedule", + "date", + "day", + "object", + "office" + ] + }, + "calendar_spiral" : { + "unicode" : "1f5d3", + "unicode_alternates" : "1f5d3-fe0f", + "name" : "spiral calendar pad", + "shortname" : ":calendar_spiral:", + "category" : "objects", + "emoji_order" : "724", + "aliases" : [ + ":spiral_calendar_pad:" + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "schedule", + "date", + "day", + "object", + "office" + ] + }, + "card_index" : { + "unicode" : "1f4c7", + "unicode_alternates" : "", + "name" : "card index", + "shortname" : ":card_index:", + "category" : "objects", + "emoji_order" : "725", + "aliases" : [ + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "business", + "stationery", + "rolodex", + "object", + "office" + ] + }, + "card_box" : { + "unicode" : "1f5c3", + "unicode_alternates" : "1f5c3-fe0f", + "name" : "card file box", + "shortname" : ":card_box:", + "category" : "objects", + "emoji_order" : "726", + "aliases" : [ + ":card_file_box:" + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "index", + "organization", + "object", + "office" + ] + }, + "ballot_box" : { + "unicode" : "1f5f3", + "unicode_alternates" : "1f5f3-fe0f", + "name" : "ballot box with ballot", + "shortname" : ":ballot_box:", + "category" : "objects", + "emoji_order" : "727", + "aliases" : [ + ":ballot_box_with_ballot:" + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "vote", + "object" + ] + }, + "file_cabinet" : { + "unicode" : "1f5c4", + "unicode_alternates" : "1f5c4-fe0f", + "name" : "file cabinet", + "shortname" : ":file_cabinet:", + "category" : "objects", + "emoji_order" : "728", + "aliases" : [ + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "folders", + "office", + "documents", + "storage", + "object" + ] + }, + "clipboard" : { + "unicode" : "1f4cb", + "unicode_alternates" : "", + "name" : "clipboard", + "shortname" : ":clipboard:", + "category" : "objects", + "emoji_order" : "729", + "aliases" : [ + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "documents", + "stationery", + "object", + "office" + ] + }, + "notepad_spiral" : { + "unicode" : "1f5d2", + "unicode_alternates" : "1f5d2-fe0f", + "name" : "spiral note pad", + "shortname" : ":notepad_spiral:", + "category" : "objects", + "emoji_order" : "730", + "aliases" : [ + ":spiral_note_pad:" + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "stationery", + "object", + "office" + ] + }, + "file_folder" : { + "unicode" : "1f4c1", + "unicode_alternates" : "", + "name" : "file folder", + "shortname" : ":file_folder:", + "category" : "objects", + "emoji_order" : "731", + "aliases" : [ + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "documents", + "object", + "office" + ] + }, + "open_file_folder" : { + "unicode" : "1f4c2", + "unicode_alternates" : "", + "name" : "open file folder", + "shortname" : ":open_file_folder:", + "category" : "objects", + "emoji_order" : "732", + "aliases" : [ + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "documents", + "load", + "object", + "office" + ] + }, + "dividers" : { + "unicode" : "1f5c2", + "unicode_alternates" : "1f5c2-fe0f", + "name" : "card index dividers", + "shortname" : ":dividers:", + "category" : "objects", + "emoji_order" : "733", + "aliases" : [ + ":card_index_dividers:" + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "stationery", + "rolodex", + "object", + "office" + ] + }, + "newspaper2" : { + "unicode" : "1f5de", + "unicode_alternates" : "1f5de-fe0f", + "name" : "rolled-up newspaper", + "shortname" : ":newspaper2:", + "category" : "objects", + "emoji_order" : "734", + "aliases" : [ + ":rolled_up_newspaper:" + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "headline", + "press", + "news", + "object", + "paper", + "rolled" + ] + }, + "newspaper" : { + "unicode" : "1f4f0", + "unicode_alternates" : "", + "name" : "newspaper", + "shortname" : ":newspaper:", + "category" : "objects", + "emoji_order" : "735", + "aliases" : [ + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "headline", + "press", + "communication", + "news", + "object", + "paper" + ] + }, + "notebook" : { + "unicode" : "1f4d3", + "unicode_alternates" : "", + "name" : "notebook", + "shortname" : ":notebook:", + "category" : "objects", + "emoji_order" : "736", + "aliases" : [ + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "notes", + "paper", + "record", + "stationery", + "school", + "object", + "office" + ] + }, + "closed_book" : { + "unicode" : "1f4d5", + "unicode_alternates" : "", + "name" : "closed book", + "shortname" : ":closed_book:", + "category" : "objects", + "emoji_order" : "737", + "aliases" : [ + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "library", + "read", + "novel", + "story", + "education", + "object", + "office" + ] + }, + "green_book" : { + "unicode" : "1f4d7", + "unicode_alternates" : "", + "name" : "green book", + "shortname" : ":green_book:", + "category" : "objects", + "emoji_order" : "738", + "aliases" : [ + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "library", + "read", + "novel", + "story", + "education", + "object", + "office" + ] + }, + "blue_book" : { + "unicode" : "1f4d8", + "unicode_alternates" : "", + "name" : "blue book", + "shortname" : ":blue_book:", + "category" : "objects", + "emoji_order" : "739", + "aliases" : [ + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "library", + "read", + "novel", + "story", + "education", + "object", + "office" + ] + }, + "orange_book" : { + "unicode" : "1f4d9", + "unicode_alternates" : "", + "name" : "orange book", + "shortname" : ":orange_book:", + "category" : "objects", + "emoji_order" : "740", + "aliases" : [ + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "library", + "read", + "novel", + "story", + "education", + "object", + "office" + ] + }, + "notebook_with_decorative_cover" : { + "unicode" : "1f4d4", + "unicode_alternates" : "", + "name" : "notebook with decorative cover", + "shortname" : ":notebook_with_decorative_cover:", + "category" : "objects", + "emoji_order" : "741", + "aliases" : [ + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "classroom", + "notes", + "paper", + "school", + "stationery", + "book", + "decorated", + "education", + "object", + "office" + ] + }, + "ledger" : { + "unicode" : "1f4d2", + "unicode_alternates" : "", + "name" : "ledger", + "shortname" : ":ledger:", + "category" : "objects", + "emoji_order" : "742", + "aliases" : [ + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "notes", + "business", + "bookkeeping", + "accounting", + "finances", + "notebook", + "object", + "office" + ] + }, + "books" : { + "unicode" : "1f4da", + "unicode_alternates" : "", + "name" : "books", + "shortname" : ":books:", + "category" : "objects", + "emoji_order" : "743", + "aliases" : [ + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "library", + "literature", + "novel", + "story", + "collection", + "series", + "book", + "education", + "object", + "office" + ] + }, + "book" : { + "unicode" : "1f4d6", + "unicode_alternates" : "", + "name" : "open book", + "shortname" : ":book:", + "category" : "objects", + "emoji_order" : "744", + "aliases" : [ + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "library", + "literature", + "novel", + "reading", + "story", + "education", + "object", + "office" + ] + }, + "link" : { + "unicode" : "1f517", + "unicode_alternates" : "", + "name" : "link symbol", + "shortname" : ":link:", + "category" : "objects", + "emoji_order" : "745", + "aliases" : [ + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "rings", + "url", + "object" + ] + }, + "paperclip" : { + "unicode" : "1f4ce", + "unicode_alternates" : "", + "name" : "paperclip", + "shortname" : ":paperclip:", + "category" : "objects", + "emoji_order" : "746", + "aliases" : [ + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "documents", + "stationery", + "object", + "office" + ] + }, + "paperclips" : { + "unicode" : "1f587", + "unicode_alternates" : "1f587-fe0f", + "name" : "linked paperclips", + "shortname" : ":paperclips:", + "category" : "objects", + "emoji_order" : "747", + "aliases" : [ + ":linked_paperclips:" + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "documents", + "stationery", + "communication", + "link", + "object", + "office", + "paperclip" + ] + }, + "scissors" : { + "unicode" : "2702", + "unicode_alternates" : "2702-fe0f", + "name" : "black scissors", + "shortname" : ":scissors:", + "category" : "objects", + "emoji_order" : "748", + "aliases" : [ + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "cut", + "stationery", + "object", + "office", + "tool" + ] + }, + "triangular_ruler" : { + "unicode" : "1f4d0", + "unicode_alternates" : "", + "name" : "triangular ruler", + "shortname" : ":triangular_ruler:", + "category" : "objects", + "emoji_order" : "749", + "aliases" : [ + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "architect", + "math", + "sketch", + "stationery", + "object", + "office", + "set", + "triangle" + ] + }, + "straight_ruler" : { + "unicode" : "1f4cf", + "unicode_alternates" : "", + "name" : "straight ruler", + "shortname" : ":straight_ruler:", + "category" : "objects", + "emoji_order" : "750", + "aliases" : [ + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "stationery", + "object", + "office", + "straight edge" + ] + }, + "pushpin" : { + "unicode" : "1f4cc", + "unicode_alternates" : "", + "name" : "pushpin", + "shortname" : ":pushpin:", + "category" : "objects", + "emoji_order" : "751", + "aliases" : [ + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "stationery", + "object", + "office", + "pin" + ] + }, + "round_pushpin" : { + "unicode" : "1f4cd", + "unicode_alternates" : "", + "name" : "round pushpin", + "shortname" : ":round_pushpin:", + "category" : "objects", + "emoji_order" : "752", + "aliases" : [ + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "stationery", + "object", + "office", + "pin", + "place" + ] + }, + "triangular_flag_on_post" : { + "unicode" : "1f6a9", + "unicode_alternates" : "", + "name" : "triangular flag on post", + "shortname" : ":triangular_flag_on_post:", + "category" : "objects", + "emoji_order" : "753", + "aliases" : [ + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "triangle", + "golf", + "flagpole", + "object", + "place", + "travel" + ] + }, + "flag_white" : { + "unicode" : "1f3f3", + "unicode_alternates" : "1f3f3-fe0f", + "name" : "waving white flag", + "shortname" : ":flag_white:", + "category" : "objects", + "emoji_order" : "754", + "aliases" : [ + ":waving_white_flag:" + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "symbol", + "signal", + "object" + ] + }, + "flag_black" : { + "unicode" : "1f3f4", + "unicode_alternates" : "", + "name" : "waving black flag", + "shortname" : ":flag_black:", + "category" : "objects", + "emoji_order" : "755", + "aliases" : [ + ":waving_black_flag:" + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "symbol", + "signal", + "object" + ] + }, + "closed_lock_with_key" : { + "unicode" : "1f510", + "unicode_alternates" : "", + "name" : "closed lock with key", + "shortname" : ":closed_lock_with_key:", + "category" : "objects", + "emoji_order" : "756", + "aliases" : [ + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "privacy", + "security", + "object", + "secure" + ] + }, + "lock" : { + "unicode" : "1f512", + "unicode_alternates" : "", + "name" : "lock", + "shortname" : ":lock:", + "category" : "objects", + "emoji_order" : "757", + "aliases" : [ + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "password", + "security", + "closed", + "object" + ] + }, + "unlock" : { + "unicode" : "1f513", + "unicode_alternates" : "", + "name" : "open lock", + "shortname" : ":unlock:", + "category" : "objects", + "emoji_order" : "758", + "aliases" : [ + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "privacy", + "security", + "unlock", + "object" + ] + }, + "lock_with_ink_pen" : { + "unicode" : "1f50f", + "unicode_alternates" : "", + "name" : "lock with ink pen", + "shortname" : ":lock_with_ink_pen:", + "category" : "objects", + "emoji_order" : "759", + "aliases" : [ + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "secret", + "security", + "nib", + "object", + "privacy" + ] + }, + "pen_ballpoint" : { + "unicode" : "1f58a", + "unicode_alternates" : "1f58a-fe0f", + "name" : "lower left ballpoint pen", + "shortname" : ":pen_ballpoint:", + "category" : "objects", + "emoji_order" : "760", + "aliases" : [ + ":lower_left_ballpoint_pen:" + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "write", + "bic", + "ink", + "communication", + "object", + "office" + ] + }, + "pen_fountain" : { + "unicode" : "1f58b", + "unicode_alternates" : "1f58b-fe0f", + "name" : "lower left fountain pen", + "shortname" : ":pen_fountain:", + "category" : "objects", + "emoji_order" : "761", + "aliases" : [ + ":lower_left_fountain_pen:" + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "write", + "calligraphy", + "ink", + "communication", + "object", + "office" + ] + }, + "black_nib" : { + "unicode" : "2712", + "unicode_alternates" : "2712-fe0f", + "name" : "black nib", + "shortname" : ":black_nib:", + "category" : "objects", + "emoji_order" : "762", + "aliases" : [ + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "pen", + "stationery", + "object", + "office" + ] + }, + "pencil" : { + "unicode" : "1f4dd", + "unicode_alternates" : "", + "name" : "memo", + "shortname" : ":pencil:", + "category" : "objects", + "emoji_order" : "763", + "aliases" : [ + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "documents", + "paper", + "station", + "write", + "pencil", + "communication", + "object", + "office" + ] + }, + "pencil2" : { + "unicode" : "270f", + "unicode_alternates" : "270f-fe0f", + "name" : "pencil", + "shortname" : ":pencil2:", + "category" : "objects", + "emoji_order" : "764", + "aliases" : [ + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "paper", + "stationery", + "write", + "object", + "office" + ] + }, + "crayon" : { + "unicode" : "1f58d", + "unicode_alternates" : "1f58d-fe0f", + "name" : "lower left crayon", + "shortname" : ":crayon:", + "category" : "objects", + "emoji_order" : "765", + "aliases" : [ + ":lower_left_crayon:" + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "write", + "draw", + "color", + "wax", + "communication", + "object", + "office" + ] + }, + "paintbrush" : { + "unicode" : "1f58c", + "unicode_alternates" : "1f58c-fe0f", + "name" : "lower left paintbrush", + "shortname" : ":paintbrush:", + "category" : "objects", + "emoji_order" : "766", + "aliases" : [ + ":lower_left_paintbrush:" + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "brush", + "art", + "painting", + "communication", + "object", + "office" + ] + }, + "mag" : { + "unicode" : "1f50d", + "unicode_alternates" : "", + "name" : "left-pointing magnifying glass", + "shortname" : ":mag:", + "category" : "objects", + "emoji_order" : "767", + "aliases" : [ + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "search", + "zoom", + "detective", + "investigator", + "details", + "object", + "tool" + ] + }, + "mag_right" : { + "unicode" : "1f50e", + "unicode_alternates" : "", + "name" : "right-pointing magnifying glass", + "shortname" : ":mag_right:", + "category" : "objects", + "emoji_order" : "768", + "aliases" : [ + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "search", + "zoom", + "detective", + "investigator", + "details", + "object", + "tool" + ] + }, + "heart" : { + "unicode" : "2764", + "unicode_alternates" : "2764-fe0f", + "name" : "heavy black heart", + "shortname" : ":heart:", + "category" : "symbols", + "emoji_order" : "769", + "aliases" : [ + ], + "aliases_ascii" : [ + "<3" + ], + "keywords" : [ + "like", + "love", + "red", + "pink", + "passion", + "romance", + "intense", + "desire", + "death", + "evil", + "cold", + "valentines", + "emotion", + "person" + ] + }, + "yellow_heart" : { + "unicode" : "1f49b", + "unicode_alternates" : "", + "name" : "yellow heart", + "shortname" : ":yellow_heart:", + "category" : "symbols", + "emoji_order" : "770", + "aliases" : [ + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "affection", + "like", + "love", + "valentines", + "gold", + "friendship", + "happy", + "happiness", + "trust", + "compassionate", + "respectful", + "honest", + "caring", + "selfless", + "emotion", + "person" + ] + }, + "green_heart" : { + "unicode" : "1f49a", + "unicode_alternates" : "", + "name" : "green heart", + "shortname" : ":green_heart:", + "category" : "symbols", + "emoji_order" : "771", + "aliases" : [ + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "affection", + "like", + "love", + "valentines", + "nature", + "rebirth", + "reborn", + "jealous", + "clingy", + "envious", + "possessive", + "emotion", + "person" + ] + }, + "blue_heart" : { + "unicode" : "1f499", + "unicode_alternates" : "", + "name" : "blue heart", + "shortname" : ":blue_heart:", + "category" : "symbols", + "emoji_order" : "772", + "aliases" : [ + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "affection", + "like", + "love", + "valentines", + "stability", + "truth", + "loyalty", + "trust", + "emotion", + "person" + ] + }, + "purple_heart" : { + "unicode" : "1f49c", + "unicode_alternates" : "", + "name" : "purple heart", + "shortname" : ":purple_heart:", + "category" : "symbols", + "emoji_order" : "773", + "aliases" : [ + ], + "aliases_ascii" : [ + ], + "keywords" : [ + "affection", + "like", + "love", + "valentines", + "violet", + "love", + "sensitive", + "understanding", + "compassionate", + "compassion", + "duty", + "honor", + "royalty", + "veteran", + "sacrifice", + "emotion", + "person" + ] + }, + "broken_heart" : { + "unicode" : "1f494", + "unicode_alternates" : "", + "name" : "broken heart", + "shortname" : ":broken_heart:", + "category" : "symbols", + "emoji_order" : "774", + "aliases" : [ + ], + "aliases_ascii" : [ + "