diff options
| author | Juri Linkov | 2022-01-12 19:47:32 +0200 |
|---|---|---|
| committer | Juri Linkov | 2022-01-12 19:49:50 +0200 |
| commit | c1f9db475828db39b06da08064f868f9519b0b8f (patch) | |
| tree | cd53df04b32eec4548750570b7a1ed4c11dd215d | |
| parent | ecbe80198951093edd98e5c2f41798ac7b0dc5ad (diff) | |
| download | emacs-c1f9db475828db39b06da08064f868f9519b0b8f.tar.gz emacs-c1f9db475828db39b06da08064f868f9519b0b8f.zip | |
* lisp/leim/quail/emoji.el: New file (bug#52605).
| -rw-r--r-- | etc/NEWS | 2 | ||||
| -rw-r--r-- | lisp/leim/quail/emoji.el | 2003 |
2 files changed, 2005 insertions, 0 deletions
| @@ -223,6 +223,8 @@ inserted. | |||
| 223 | This command will tell you the name of the Emoji at point. (This | 223 | This command will tell you the name of the Emoji at point. (This |
| 224 | command also works for non-Emoji characters.) | 224 | command also works for non-Emoji characters.) |
| 225 | 225 | ||
| 226 | *** New input method 'emoji'. | ||
| 227 | |||
| 226 | ** Help | 228 | ** Help |
| 227 | 229 | ||
| 228 | --- | 230 | --- |
diff --git a/lisp/leim/quail/emoji.el b/lisp/leim/quail/emoji.el new file mode 100644 index 00000000000..f9d3e170be5 --- /dev/null +++ b/lisp/leim/quail/emoji.el | |||
| @@ -0,0 +1,2003 @@ | |||
| 1 | ;;; emoji.el --- Quail package for emoji character composition -*- lexical-binding: t -*- | ||
| 2 | |||
| 3 | ;; Copyright (C) 2022 Free Software Foundation, Inc. | ||
| 4 | |||
| 5 | ;; Author: Juri Linkov <juri@linkov.net> | ||
| 6 | ;; Keywords: multilingual, input method, i18n | ||
| 7 | |||
| 8 | ;; This file is part of GNU Emacs. | ||
| 9 | |||
| 10 | ;; GNU Emacs is free software: you can redistribute it and/or modify | ||
| 11 | ;; it under the terms of the GNU General Public License as published by | ||
| 12 | ;; the Free Software Foundation, either version 3 of the License, or | ||
| 13 | ;; (at your option) any later version. | ||
| 14 | |||
| 15 | ;; GNU Emacs is distributed in the hope that it will be useful, | ||
| 16 | ;; but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
| 17 | ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
| 18 | ;; GNU General Public License for more details. | ||
| 19 | |||
| 20 | ;; You should have received a copy of the GNU General Public License | ||
| 21 | ;; along with GNU Emacs. If not, see <https://www.gnu.org/licenses/>. | ||
| 22 | |||
| 23 | ;;; Commentary: | ||
| 24 | |||
| 25 | ;; This input method supports the same key sequences as the names | ||
| 26 | ;; defined by the `C-x 8 e s' completions in emoji.el. Also it adds | ||
| 27 | ;; more emoji that enclosed in double colons. | ||
| 28 | |||
| 29 | ;; You can enable this input method transiently with `C-u C-x \ emoji RET'. | ||
| 30 | ;; Then typing `C-x \' will enable this input method temporarily, and | ||
| 31 | ;; after typing a key sequence it will be disabled. So typing | ||
| 32 | ;; e.g. `C-x \ : )' will insert the smiling character, and disable | ||
| 33 | ;; this input method automatically afterwards. | ||
| 34 | |||
| 35 | ;;; Code: | ||
| 36 | |||
| 37 | (require 'quail) | ||
| 38 | |||
| 39 | (quail-define-package | ||
| 40 | "emoji" "UTF-8" "🙂" t | ||
| 41 | "Emoji input method for inserting emoji characters. | ||
| 42 | Examples: | ||
| 43 | slightly smiling face -> 🙂 | ||
| 44 | :slightly_smiling_face: -> 🙂 | ||
| 45 | :-) -> 🙂" | ||
| 46 | '(("\t" . quail-completion)) | ||
| 47 | t nil nil nil nil nil nil nil nil t) | ||
| 48 | |||
| 49 | (eval-when-compile | ||
| 50 | (require 'emoji) | ||
| 51 | (emoji--init) | ||
| 52 | (defmacro emoji--define-rules () | ||
| 53 | `(quail-define-rules | ||
| 54 | ,@(let ((rules nil)) | ||
| 55 | (maphash (lambda (from to) | ||
| 56 | (push (list from (if (stringp to) | ||
| 57 | (vector to) | ||
| 58 | to)) | ||
| 59 | rules)) | ||
| 60 | emoji--all-bases) | ||
| 61 | (append | ||
| 62 | rules | ||
| 63 | '((":hash:" ["#️⃣"]) | ||
| 64 | (":keycap_star:" ["*️⃣"]) | ||
| 65 | (":zero:" ["0️⃣"]) | ||
| 66 | (":one:" ["1️⃣"]) | ||
| 67 | (":two:" ["2️⃣"]) | ||
| 68 | (":three:" ["3️⃣"]) | ||
| 69 | (":four:" ["4️⃣"]) | ||
| 70 | (":five:" ["5️⃣"]) | ||
| 71 | (":six:" ["6️⃣"]) | ||
| 72 | (":seven:" ["7️⃣"]) | ||
| 73 | (":eight:" ["8️⃣"]) | ||
| 74 | (":nine:" ["9️⃣"]) | ||
| 75 | (":copyright:" ["©️"]) | ||
| 76 | (":registered:" ["®️"]) | ||
| 77 | (":mahjong:" ["🀄"]) | ||
| 78 | (":black_joker:" ["🃏"]) | ||
| 79 | (":a:" ["🅰️"]) | ||
| 80 | (":b:" ["🅱️"]) | ||
| 81 | (":o2:" ["🅾️"]) | ||
| 82 | (":parking:" ["🅿️"]) | ||
| 83 | (":ab:" ["🆎"]) | ||
| 84 | (":cl:" ["🆑"]) | ||
| 85 | (":cool:" ["🆒"]) | ||
| 86 | (":free:" ["🆓"]) | ||
| 87 | (":id:" ["🆔"]) | ||
| 88 | (":new:" ["🆕"]) | ||
| 89 | (":ng:" ["🆖"]) | ||
| 90 | (":ok:" ["🆗"]) | ||
| 91 | (":sos:" ["🆘"]) | ||
| 92 | (":up:" ["🆙"]) | ||
| 93 | (":vs:" ["🆚"]) | ||
| 94 | (":flag-ac:" ["🇦🇨"]) | ||
| 95 | (":flag-ad:" ["🇦🇩"]) | ||
| 96 | (":flag-ae:" ["🇦🇪"]) | ||
| 97 | (":flag-af:" ["🇦🇫"]) | ||
| 98 | (":flag-ag:" ["🇦🇬"]) | ||
| 99 | (":flag-ai:" ["🇦🇮"]) | ||
| 100 | (":flag-al:" ["🇦🇱"]) | ||
| 101 | (":flag-am:" ["🇦🇲"]) | ||
| 102 | (":flag-ao:" ["🇦🇴"]) | ||
| 103 | (":flag-aq:" ["🇦🇶"]) | ||
| 104 | (":flag-ar:" ["🇦🇷"]) | ||
| 105 | (":flag-as:" ["🇦🇸"]) | ||
| 106 | (":flag-at:" ["🇦🇹"]) | ||
| 107 | (":flag-au:" ["🇦🇺"]) | ||
| 108 | (":flag-aw:" ["🇦🇼"]) | ||
| 109 | (":flag-ax:" ["🇦🇽"]) | ||
| 110 | (":flag-az:" ["🇦🇿"]) | ||
| 111 | (":flag-ba:" ["🇧🇦"]) | ||
| 112 | (":flag-bb:" ["🇧🇧"]) | ||
| 113 | (":flag-bd:" ["🇧🇩"]) | ||
| 114 | (":flag-be:" ["🇧🇪"]) | ||
| 115 | (":flag-bf:" ["🇧🇫"]) | ||
| 116 | (":flag-bg:" ["🇧🇬"]) | ||
| 117 | (":flag-bh:" ["🇧🇭"]) | ||
| 118 | (":flag-bi:" ["🇧🇮"]) | ||
| 119 | (":flag-bj:" ["🇧🇯"]) | ||
| 120 | (":flag-bl:" ["🇧🇱"]) | ||
| 121 | (":flag-bm:" ["🇧🇲"]) | ||
| 122 | (":flag-bn:" ["🇧🇳"]) | ||
| 123 | (":flag-bo:" ["🇧🇴"]) | ||
| 124 | (":flag-bq:" ["🇧🇶"]) | ||
| 125 | (":flag-br:" ["🇧🇷"]) | ||
| 126 | (":flag-bs:" ["🇧🇸"]) | ||
| 127 | (":flag-bt:" ["🇧🇹"]) | ||
| 128 | (":flag-bv:" ["🇧🇻"]) | ||
| 129 | (":flag-bw:" ["🇧🇼"]) | ||
| 130 | (":flag-by:" ["🇧🇾"]) | ||
| 131 | (":flag-bz:" ["🇧🇿"]) | ||
| 132 | (":flag-ca:" ["🇨🇦"]) | ||
| 133 | (":flag-cc:" ["🇨🇨"]) | ||
| 134 | (":flag-cd:" ["🇨🇩"]) | ||
| 135 | (":flag-cf:" ["🇨🇫"]) | ||
| 136 | (":flag-cg:" ["🇨🇬"]) | ||
| 137 | (":flag-ch:" ["🇨🇭"]) | ||
| 138 | (":flag-ci:" ["🇨🇮"]) | ||
| 139 | (":flag-ck:" ["🇨🇰"]) | ||
| 140 | (":flag-cl:" ["🇨🇱"]) | ||
| 141 | (":flag-cm:" ["🇨🇲"]) | ||
| 142 | (":cn:" ["🇨🇳"]) | ||
| 143 | (":flag-cn:" ["🇨🇳"]) | ||
| 144 | (":flag-co:" ["🇨🇴"]) | ||
| 145 | (":flag-cp:" ["🇨🇵"]) | ||
| 146 | (":flag-cr:" ["🇨🇷"]) | ||
| 147 | (":flag-cu:" ["🇨🇺"]) | ||
| 148 | (":flag-cv:" ["🇨🇻"]) | ||
| 149 | (":flag-cw:" ["🇨🇼"]) | ||
| 150 | (":flag-cx:" ["🇨🇽"]) | ||
| 151 | (":flag-cy:" ["🇨🇾"]) | ||
| 152 | (":flag-cz:" ["🇨🇿"]) | ||
| 153 | (":de:" ["🇩🇪"]) | ||
| 154 | (":flag-de:" ["🇩🇪"]) | ||
| 155 | (":flag-dg:" ["🇩🇬"]) | ||
| 156 | (":flag-dj:" ["🇩🇯"]) | ||
| 157 | (":flag-dk:" ["🇩🇰"]) | ||
| 158 | (":flag-dm:" ["🇩🇲"]) | ||
| 159 | (":flag-do:" ["🇩🇴"]) | ||
| 160 | (":flag-dz:" ["🇩🇿"]) | ||
| 161 | (":flag-ea:" ["🇪🇦"]) | ||
| 162 | (":flag-ec:" ["🇪🇨"]) | ||
| 163 | (":flag-ee:" ["🇪🇪"]) | ||
| 164 | (":flag-eg:" ["🇪🇬"]) | ||
| 165 | (":flag-eh:" ["🇪🇭"]) | ||
| 166 | (":flag-er:" ["🇪🇷"]) | ||
| 167 | (":es:" ["🇪🇸"]) | ||
| 168 | (":flag-es:" ["🇪🇸"]) | ||
| 169 | (":flag-et:" ["🇪🇹"]) | ||
| 170 | (":flag-eu:" ["🇪🇺"]) | ||
| 171 | (":flag-fi:" ["🇫🇮"]) | ||
| 172 | (":flag-fj:" ["🇫🇯"]) | ||
| 173 | (":flag-fk:" ["🇫🇰"]) | ||
| 174 | (":flag-fm:" ["🇫🇲"]) | ||
| 175 | (":flag-fo:" ["🇫🇴"]) | ||
| 176 | (":fr:" ["🇫🇷"]) | ||
| 177 | (":flag-fr:" ["🇫🇷"]) | ||
| 178 | (":flag-ga:" ["🇬🇦"]) | ||
| 179 | (":gb:" ["🇬🇧"]) | ||
| 180 | (":uk:" ["🇬🇧"]) | ||
| 181 | (":flag-gb:" ["🇬🇧"]) | ||
| 182 | (":flag-gd:" ["🇬🇩"]) | ||
| 183 | (":flag-ge:" ["🇬🇪"]) | ||
| 184 | (":flag-gf:" ["🇬🇫"]) | ||
| 185 | (":flag-gg:" ["🇬🇬"]) | ||
| 186 | (":flag-gh:" ["🇬🇭"]) | ||
| 187 | (":flag-gi:" ["🇬🇮"]) | ||
| 188 | (":flag-gl:" ["🇬🇱"]) | ||
| 189 | (":flag-gm:" ["🇬🇲"]) | ||
| 190 | (":flag-gn:" ["🇬🇳"]) | ||
| 191 | (":flag-gp:" ["🇬🇵"]) | ||
| 192 | (":flag-gq:" ["🇬🇶"]) | ||
| 193 | (":flag-gr:" ["🇬🇷"]) | ||
| 194 | (":flag-gs:" ["🇬🇸"]) | ||
| 195 | (":flag-gt:" ["🇬🇹"]) | ||
| 196 | (":flag-gu:" ["🇬🇺"]) | ||
| 197 | (":flag-gw:" ["🇬🇼"]) | ||
| 198 | (":flag-gy:" ["🇬🇾"]) | ||
| 199 | (":flag-hk:" ["🇭🇰"]) | ||
| 200 | (":flag-hm:" ["🇭🇲"]) | ||
| 201 | (":flag-hn:" ["🇭🇳"]) | ||
| 202 | (":flag-hr:" ["🇭🇷"]) | ||
| 203 | (":flag-ht:" ["🇭🇹"]) | ||
| 204 | (":flag-hu:" ["🇭🇺"]) | ||
| 205 | (":flag-ic:" ["🇮🇨"]) | ||
| 206 | (":flag-id:" ["🇮🇩"]) | ||
| 207 | (":flag-ie:" ["🇮🇪"]) | ||
| 208 | (":flag-il:" ["🇮🇱"]) | ||
| 209 | (":flag-im:" ["🇮🇲"]) | ||
| 210 | (":flag-in:" ["🇮🇳"]) | ||
| 211 | (":flag-io:" ["🇮🇴"]) | ||
| 212 | (":flag-iq:" ["🇮🇶"]) | ||
| 213 | (":flag-ir:" ["🇮🇷"]) | ||
| 214 | (":flag-is:" ["🇮🇸"]) | ||
| 215 | (":it:" ["🇮🇹"]) | ||
| 216 | (":flag-it:" ["🇮🇹"]) | ||
| 217 | (":flag-je:" ["🇯🇪"]) | ||
| 218 | (":flag-jm:" ["🇯🇲"]) | ||
| 219 | (":flag-jo:" ["🇯🇴"]) | ||
| 220 | (":jp:" ["🇯🇵"]) | ||
| 221 | (":flag-jp:" ["🇯🇵"]) | ||
| 222 | (":flag-ke:" ["🇰🇪"]) | ||
| 223 | (":flag-kg:" ["🇰🇬"]) | ||
| 224 | (":flag-kh:" ["🇰🇭"]) | ||
| 225 | (":flag-ki:" ["🇰🇮"]) | ||
| 226 | (":flag-km:" ["🇰🇲"]) | ||
| 227 | (":flag-kn:" ["🇰🇳"]) | ||
| 228 | (":flag-kp:" ["🇰🇵"]) | ||
| 229 | (":kr:" ["🇰🇷"]) | ||
| 230 | (":flag-kr:" ["🇰🇷"]) | ||
| 231 | (":flag-kw:" ["🇰🇼"]) | ||
| 232 | (":flag-ky:" ["🇰🇾"]) | ||
| 233 | (":flag-kz:" ["🇰🇿"]) | ||
| 234 | (":flag-la:" ["🇱🇦"]) | ||
| 235 | (":flag-lb:" ["🇱🇧"]) | ||
| 236 | (":flag-lc:" ["🇱🇨"]) | ||
| 237 | (":flag-li:" ["🇱🇮"]) | ||
| 238 | (":flag-lk:" ["🇱🇰"]) | ||
| 239 | (":flag-lr:" ["🇱🇷"]) | ||
| 240 | (":flag-ls:" ["🇱🇸"]) | ||
| 241 | (":flag-lt:" ["🇱🇹"]) | ||
| 242 | (":flag-lu:" ["🇱🇺"]) | ||
| 243 | (":flag-lv:" ["🇱🇻"]) | ||
| 244 | (":flag-ly:" ["🇱🇾"]) | ||
| 245 | (":flag-ma:" ["🇲🇦"]) | ||
| 246 | (":flag-mc:" ["🇲🇨"]) | ||
| 247 | (":flag-md:" ["🇲🇩"]) | ||
| 248 | (":flag-me:" ["🇲🇪"]) | ||
| 249 | (":flag-mf:" ["🇲🇫"]) | ||
| 250 | (":flag-mg:" ["🇲🇬"]) | ||
| 251 | (":flag-mh:" ["🇲🇭"]) | ||
| 252 | (":flag-mk:" ["🇲🇰"]) | ||
| 253 | (":flag-ml:" ["🇲🇱"]) | ||
| 254 | (":flag-mm:" ["🇲🇲"]) | ||
| 255 | (":flag-mn:" ["🇲🇳"]) | ||
| 256 | (":flag-mo:" ["🇲🇴"]) | ||
| 257 | (":flag-mp:" ["🇲🇵"]) | ||
| 258 | (":flag-mq:" ["🇲🇶"]) | ||
| 259 | (":flag-mr:" ["🇲🇷"]) | ||
| 260 | (":flag-ms:" ["🇲🇸"]) | ||
| 261 | (":flag-mt:" ["🇲🇹"]) | ||
| 262 | (":flag-mu:" ["🇲🇺"]) | ||
| 263 | (":flag-mv:" ["🇲🇻"]) | ||
| 264 | (":flag-mw:" ["🇲🇼"]) | ||
| 265 | (":flag-mx:" ["🇲🇽"]) | ||
| 266 | (":flag-my:" ["🇲🇾"]) | ||
| 267 | (":flag-mz:" ["🇲🇿"]) | ||
| 268 | (":flag-na:" ["🇳🇦"]) | ||
| 269 | (":flag-nc:" ["🇳🇨"]) | ||
| 270 | (":flag-ne:" ["🇳🇪"]) | ||
| 271 | (":flag-nf:" ["🇳🇫"]) | ||
| 272 | (":flag-ng:" ["🇳🇬"]) | ||
| 273 | (":flag-ni:" ["🇳🇮"]) | ||
| 274 | (":flag-nl:" ["🇳🇱"]) | ||
| 275 | (":flag-no:" ["🇳🇴"]) | ||
| 276 | (":flag-np:" ["🇳🇵"]) | ||
| 277 | (":flag-nr:" ["🇳🇷"]) | ||
| 278 | (":flag-nu:" ["🇳🇺"]) | ||
| 279 | (":flag-nz:" ["🇳🇿"]) | ||
| 280 | (":flag-om:" ["🇴🇲"]) | ||
| 281 | (":flag-pa:" ["🇵🇦"]) | ||
| 282 | (":flag-pe:" ["🇵🇪"]) | ||
| 283 | (":flag-pf:" ["🇵🇫"]) | ||
| 284 | (":flag-pg:" ["🇵🇬"]) | ||
| 285 | (":flag-ph:" ["🇵🇭"]) | ||
| 286 | (":flag-pk:" ["🇵🇰"]) | ||
| 287 | (":flag-pl:" ["🇵🇱"]) | ||
| 288 | (":flag-pm:" ["🇵🇲"]) | ||
| 289 | (":flag-pn:" ["🇵🇳"]) | ||
| 290 | (":flag-pr:" ["🇵🇷"]) | ||
| 291 | (":flag-ps:" ["🇵🇸"]) | ||
| 292 | (":flag-pt:" ["🇵🇹"]) | ||
| 293 | (":flag-pw:" ["🇵🇼"]) | ||
| 294 | (":flag-py:" ["🇵🇾"]) | ||
| 295 | (":flag-qa:" ["🇶🇦"]) | ||
| 296 | (":flag-re:" ["🇷🇪"]) | ||
| 297 | (":flag-ro:" ["🇷🇴"]) | ||
| 298 | (":flag-rs:" ["🇷🇸"]) | ||
| 299 | (":ru:" ["🇷🇺"]) | ||
| 300 | (":flag-ru:" ["🇷🇺"]) | ||
| 301 | (":flag-rw:" ["🇷🇼"]) | ||
| 302 | (":flag-sa:" ["🇸🇦"]) | ||
| 303 | (":flag-sb:" ["🇸🇧"]) | ||
| 304 | (":flag-sc:" ["🇸🇨"]) | ||
| 305 | (":flag-sd:" ["🇸🇩"]) | ||
| 306 | (":flag-se:" ["🇸🇪"]) | ||
| 307 | (":flag-sg:" ["🇸🇬"]) | ||
| 308 | (":flag-sh:" ["🇸🇭"]) | ||
| 309 | (":flag-si:" ["🇸🇮"]) | ||
| 310 | (":flag-sj:" ["🇸🇯"]) | ||
| 311 | (":flag-sk:" ["🇸🇰"]) | ||
| 312 | (":flag-sl:" ["🇸🇱"]) | ||
| 313 | (":flag-sm:" ["🇸🇲"]) | ||
| 314 | (":flag-sn:" ["🇸🇳"]) | ||
| 315 | (":flag-so:" ["🇸🇴"]) | ||
| 316 | (":flag-sr:" ["🇸🇷"]) | ||
| 317 | (":flag-ss:" ["🇸🇸"]) | ||
| 318 | (":flag-st:" ["🇸🇹"]) | ||
| 319 | (":flag-sv:" ["🇸🇻"]) | ||
| 320 | (":flag-sx:" ["🇸🇽"]) | ||
| 321 | (":flag-sy:" ["🇸🇾"]) | ||
| 322 | (":flag-sz:" ["🇸🇿"]) | ||
| 323 | (":flag-ta:" ["🇹🇦"]) | ||
| 324 | (":flag-tc:" ["🇹🇨"]) | ||
| 325 | (":flag-td:" ["🇹🇩"]) | ||
| 326 | (":flag-tf:" ["🇹🇫"]) | ||
| 327 | (":flag-tg:" ["🇹🇬"]) | ||
| 328 | (":flag-th:" ["🇹🇭"]) | ||
| 329 | (":flag-tj:" ["🇹🇯"]) | ||
| 330 | (":flag-tk:" ["🇹🇰"]) | ||
| 331 | (":flag-tl:" ["🇹🇱"]) | ||
| 332 | (":flag-tm:" ["🇹🇲"]) | ||
| 333 | (":flag-tn:" ["🇹🇳"]) | ||
| 334 | (":flag-to:" ["🇹🇴"]) | ||
| 335 | (":flag-tr:" ["🇹🇷"]) | ||
| 336 | (":flag-tt:" ["🇹🇹"]) | ||
| 337 | (":flag-tv:" ["🇹🇻"]) | ||
| 338 | (":flag-tw:" ["🇹🇼"]) | ||
| 339 | (":flag-tz:" ["🇹🇿"]) | ||
| 340 | (":flag-ua:" ["🇺🇦"]) | ||
| 341 | (":flag-ug:" ["🇺🇬"]) | ||
| 342 | (":flag-um:" ["🇺🇲"]) | ||
| 343 | (":flag-un:" ["🇺🇳"]) | ||
| 344 | (":us:" ["🇺🇸"]) | ||
| 345 | (":flag-us:" ["🇺🇸"]) | ||
| 346 | (":flag-uy:" ["🇺🇾"]) | ||
| 347 | (":flag-uz:" ["🇺🇿"]) | ||
| 348 | (":flag-va:" ["🇻🇦"]) | ||
| 349 | (":flag-vc:" ["🇻🇨"]) | ||
| 350 | (":flag-ve:" ["🇻🇪"]) | ||
| 351 | (":flag-vg:" ["🇻🇬"]) | ||
| 352 | (":flag-vi:" ["🇻🇮"]) | ||
| 353 | (":flag-vn:" ["🇻🇳"]) | ||
| 354 | (":flag-vu:" ["🇻🇺"]) | ||
| 355 | (":flag-wf:" ["🇼🇫"]) | ||
| 356 | (":flag-ws:" ["🇼🇸"]) | ||
| 357 | (":flag-xk:" ["🇽🇰"]) | ||
| 358 | (":flag-ye:" ["🇾🇪"]) | ||
| 359 | (":flag-yt:" ["🇾🇹"]) | ||
| 360 | (":flag-za:" ["🇿🇦"]) | ||
| 361 | (":flag-zm:" ["🇿🇲"]) | ||
| 362 | (":flag-zw:" ["🇿🇼"]) | ||
| 363 | (":koko:" ["🈁"]) | ||
| 364 | (":sa:" ["🈂️"]) | ||
| 365 | (":u7121:" ["🈚"]) | ||
| 366 | (":u6307:" ["🈯"]) | ||
| 367 | (":u7981:" ["🈲"]) | ||
| 368 | (":u7a7a:" ["🈳"]) | ||
| 369 | (":u5408:" ["🈴"]) | ||
| 370 | (":u6e80:" ["🈵"]) | ||
| 371 | (":u6709:" ["🈶"]) | ||
| 372 | (":u6708:" ["🈷️"]) | ||
| 373 | (":u7533:" ["🈸"]) | ||
| 374 | (":u5272:" ["🈹"]) | ||
| 375 | (":u55b6:" ["🈺"]) | ||
| 376 | (":ideograph_advantage:" ["🉐"]) | ||
| 377 | (":accept:" ["🉑"]) | ||
| 378 | (":cyclone:" ["🌀"]) | ||
| 379 | (":foggy:" ["🌁"]) | ||
| 380 | (":closed_umbrella:" ["🌂"]) | ||
| 381 | (":night_with_stars:" ["🌃"]) | ||
| 382 | (":sunrise_over_mountains:" ["🌄"]) | ||
| 383 | (":sunrise:" ["🌅"]) | ||
| 384 | (":city_sunset:" ["🌆"]) | ||
| 385 | (":city_sunrise:" ["🌇"]) | ||
| 386 | (":rainbow:" ["🌈"]) | ||
| 387 | (":bridge_at_night:" ["🌉"]) | ||
| 388 | (":ocean:" ["🌊"]) | ||
| 389 | (":volcano:" ["🌋"]) | ||
| 390 | (":milky_way:" ["🌌"]) | ||
| 391 | (":earth_africa:" ["🌍"]) | ||
| 392 | (":earth_americas:" ["🌎"]) | ||
| 393 | (":earth_asia:" ["🌏"]) | ||
| 394 | (":globe_with_meridians:" ["🌐"]) | ||
| 395 | (":new_moon:" ["🌑"]) | ||
| 396 | (":waxing_crescent_moon:" ["🌒"]) | ||
| 397 | (":first_quarter_moon:" ["🌓"]) | ||
| 398 | (":moon:" ["🌔"]) | ||
| 399 | (":waxing_gibbous_moon:" ["🌔"]) | ||
| 400 | (":full_moon:" ["🌕"]) | ||
| 401 | (":waning_gibbous_moon:" ["🌖"]) | ||
| 402 | (":last_quarter_moon:" ["🌗"]) | ||
| 403 | (":waning_crescent_moon:" ["🌘"]) | ||
| 404 | (":crescent_moon:" ["🌙"]) | ||
| 405 | (":new_moon_with_face:" ["🌚"]) | ||
| 406 | (":first_quarter_moon_with_face:" ["🌛"]) | ||
| 407 | (":last_quarter_moon_with_face:" ["🌜"]) | ||
| 408 | (":full_moon_with_face:" ["🌝"]) | ||
| 409 | (":sun_with_face:" ["🌞"]) | ||
| 410 | (":star2:" ["🌟"]) | ||
| 411 | (":stars:" ["🌠"]) | ||
| 412 | (":thermometer:" ["🌡️"]) | ||
| 413 | (":mostly_sunny:" ["🌤️"]) | ||
| 414 | (":sun_small_cloud:" ["🌤️"]) | ||
| 415 | (":barely_sunny:" ["🌥️"]) | ||
| 416 | (":sun_behind_cloud:" ["🌥️"]) | ||
| 417 | (":partly_sunny_rain:" ["🌦️"]) | ||
| 418 | (":sun_behind_rain_cloud:" ["🌦️"]) | ||
| 419 | (":rain_cloud:" ["🌧️"]) | ||
| 420 | (":snow_cloud:" ["🌨️"]) | ||
| 421 | (":lightning:" ["🌩️"]) | ||
| 422 | (":lightning_cloud:" ["🌩️"]) | ||
| 423 | (":tornado:" ["🌪️"]) | ||
| 424 | (":tornado_cloud:" ["🌪️"]) | ||
| 425 | (":fog:" ["🌫️"]) | ||
| 426 | (":wind_blowing_face:" ["🌬️"]) | ||
| 427 | (":hotdog:" ["🌭"]) | ||
| 428 | (":taco:" ["🌮"]) | ||
| 429 | (":burrito:" ["🌯"]) | ||
| 430 | (":chestnut:" ["🌰"]) | ||
| 431 | (":seedling:" ["🌱"]) | ||
| 432 | (":evergreen_tree:" ["🌲"]) | ||
| 433 | (":deciduous_tree:" ["🌳"]) | ||
| 434 | (":palm_tree:" ["🌴"]) | ||
| 435 | (":cactus:" ["🌵"]) | ||
| 436 | (":hot_pepper:" ["🌶️"]) | ||
| 437 | (":tulip:" ["🌷"]) | ||
| 438 | (":cherry_blossom:" ["🌸"]) | ||
| 439 | (":rose:" ["🌹"]) | ||
| 440 | (":hibiscus:" ["🌺"]) | ||
| 441 | (":sunflower:" ["🌻"]) | ||
| 442 | (":blossom:" ["🌼"]) | ||
| 443 | (":corn:" ["🌽"]) | ||
| 444 | (":ear_of_rice:" ["🌾"]) | ||
| 445 | (":herb:" ["🌿"]) | ||
| 446 | (":four_leaf_clover:" ["🍀"]) | ||
| 447 | (":maple_leaf:" ["🍁"]) | ||
| 448 | (":fallen_leaf:" ["🍂"]) | ||
| 449 | (":leaves:" ["🍃"]) | ||
| 450 | (":mushroom:" ["🍄"]) | ||
| 451 | (":tomato:" ["🍅"]) | ||
| 452 | (":eggplant:" ["🍆"]) | ||
| 453 | (":grapes:" ["🍇"]) | ||
| 454 | (":melon:" ["🍈"]) | ||
| 455 | (":watermelon:" ["🍉"]) | ||
| 456 | (":tangerine:" ["🍊"]) | ||
| 457 | (":lemon:" ["🍋"]) | ||
| 458 | (":banana:" ["🍌"]) | ||
| 459 | (":pineapple:" ["🍍"]) | ||
| 460 | (":apple:" ["🍎"]) | ||
| 461 | (":green_apple:" ["🍏"]) | ||
| 462 | (":pear:" ["🍐"]) | ||
| 463 | (":peach:" ["🍑"]) | ||
| 464 | (":cherries:" ["🍒"]) | ||
| 465 | (":strawberry:" ["🍓"]) | ||
| 466 | (":hamburger:" ["🍔"]) | ||
| 467 | (":pizza:" ["🍕"]) | ||
| 468 | (":meat_on_bone:" ["🍖"]) | ||
| 469 | (":poultry_leg:" ["🍗"]) | ||
| 470 | (":rice_cracker:" ["🍘"]) | ||
| 471 | (":rice_ball:" ["🍙"]) | ||
| 472 | (":rice:" ["🍚"]) | ||
| 473 | (":curry:" ["🍛"]) | ||
| 474 | (":ramen:" ["🍜"]) | ||
| 475 | (":spaghetti:" ["🍝"]) | ||
| 476 | (":bread:" ["🍞"]) | ||
| 477 | (":fries:" ["🍟"]) | ||
| 478 | (":sweet_potato:" ["🍠"]) | ||
| 479 | (":dango:" ["🍡"]) | ||
| 480 | (":oden:" ["🍢"]) | ||
| 481 | (":sushi:" ["🍣"]) | ||
| 482 | (":fried_shrimp:" ["🍤"]) | ||
| 483 | (":fish_cake:" ["🍥"]) | ||
| 484 | (":icecream:" ["🍦"]) | ||
| 485 | (":shaved_ice:" ["🍧"]) | ||
| 486 | (":ice_cream:" ["🍨"]) | ||
| 487 | (":doughnut:" ["🍩"]) | ||
| 488 | (":cookie:" ["🍪"]) | ||
| 489 | (":chocolate_bar:" ["🍫"]) | ||
| 490 | (":candy:" ["🍬"]) | ||
| 491 | (":lollipop:" ["🍭"]) | ||
| 492 | (":custard:" ["🍮"]) | ||
| 493 | (":honey_pot:" ["🍯"]) | ||
| 494 | (":cake:" ["🍰"]) | ||
| 495 | (":bento:" ["🍱"]) | ||
| 496 | (":stew:" ["🍲"]) | ||
| 497 | (":fried_egg:" ["🍳"]) | ||
| 498 | (":cooking:" ["🍳"]) | ||
| 499 | (":fork_and_knife:" ["🍴"]) | ||
| 500 | (":tea:" ["🍵"]) | ||
| 501 | (":sake:" ["🍶"]) | ||
| 502 | (":wine_glass:" ["🍷"]) | ||
| 503 | (":cocktail:" ["🍸"]) | ||
| 504 | (":tropical_drink:" ["🍹"]) | ||
| 505 | (":beer:" ["🍺"]) | ||
| 506 | (":beers:" ["🍻"]) | ||
| 507 | (":baby_bottle:" ["🍼"]) | ||
| 508 | (":knife_fork_plate:" ["🍽️"]) | ||
| 509 | (":champagne:" ["🍾"]) | ||
| 510 | (":popcorn:" ["🍿"]) | ||
| 511 | (":ribbon:" ["🎀"]) | ||
| 512 | (":gift:" ["🎁"]) | ||
| 513 | (":birthday:" ["🎂"]) | ||
| 514 | (":jack_o_lantern:" ["🎃"]) | ||
| 515 | (":christmas_tree:" ["🎄"]) | ||
| 516 | (":santa:" ["🎅"]) | ||
| 517 | (":fireworks:" ["🎆"]) | ||
| 518 | (":sparkler:" ["🎇"]) | ||
| 519 | (":balloon:" ["🎈"]) | ||
| 520 | (":tada:" ["🎉"]) | ||
| 521 | (":confetti_ball:" ["🎊"]) | ||
| 522 | (":tanabata_tree:" ["🎋"]) | ||
| 523 | (":crossed_flags:" ["🎌"]) | ||
| 524 | (":bamboo:" ["🎍"]) | ||
| 525 | (":dolls:" ["🎎"]) | ||
| 526 | (":flags:" ["🎏"]) | ||
| 527 | (":wind_chime:" ["🎐"]) | ||
| 528 | (":rice_scene:" ["🎑"]) | ||
| 529 | (":school_satchel:" ["🎒"]) | ||
| 530 | (":mortar_board:" ["🎓"]) | ||
| 531 | (":medal:" ["🎖️"]) | ||
| 532 | (":reminder_ribbon:" ["🎗️"]) | ||
| 533 | (":studio_microphone:" ["🎙️"]) | ||
| 534 | (":level_slider:" ["🎚️"]) | ||
| 535 | (":control_knobs:" ["🎛️"]) | ||
| 536 | (":film_frames:" ["🎞️"]) | ||
| 537 | (":admission_tickets:" ["🎟️"]) | ||
| 538 | (":carousel_horse:" ["🎠"]) | ||
| 539 | (":ferris_wheel:" ["🎡"]) | ||
| 540 | (":roller_coaster:" ["🎢"]) | ||
| 541 | (":fishing_pole_and_fish:" ["🎣"]) | ||
| 542 | (":microphone:" ["🎤"]) | ||
| 543 | (":movie_camera:" ["🎥"]) | ||
| 544 | (":cinema:" ["🎦"]) | ||
| 545 | (":headphones:" ["🎧"]) | ||
| 546 | (":art:" ["🎨"]) | ||
| 547 | (":tophat:" ["🎩"]) | ||
| 548 | (":circus_tent:" ["🎪"]) | ||
| 549 | (":ticket:" ["🎫"]) | ||
| 550 | (":clapper:" ["🎬"]) | ||
| 551 | (":performing_arts:" ["🎭"]) | ||
| 552 | (":video_game:" ["🎮"]) | ||
| 553 | (":dart:" ["🎯"]) | ||
| 554 | (":slot_machine:" ["🎰"]) | ||
| 555 | (":8ball:" ["🎱"]) | ||
| 556 | (":game_die:" ["🎲"]) | ||
| 557 | (":bowling:" ["🎳"]) | ||
| 558 | (":flower_playing_cards:" ["🎴"]) | ||
| 559 | (":musical_note:" ["🎵"]) | ||
| 560 | (":notes:" ["🎶"]) | ||
| 561 | (":saxophone:" ["🎷"]) | ||
| 562 | (":guitar:" ["🎸"]) | ||
| 563 | (":musical_keyboard:" ["🎹"]) | ||
| 564 | (":trumpet:" ["🎺"]) | ||
| 565 | (":violin:" ["🎻"]) | ||
| 566 | (":musical_score:" ["🎼"]) | ||
| 567 | (":running_shirt_with_sash:" ["🎽"]) | ||
| 568 | (":tennis:" ["🎾"]) | ||
| 569 | (":ski:" ["🎿"]) | ||
| 570 | (":basketball:" ["🏀"]) | ||
| 571 | (":checkered_flag:" ["🏁"]) | ||
| 572 | (":snowboarder:" ["🏂"]) | ||
| 573 | (":woman-running:" ["🏃♀️"]) | ||
| 574 | (":man-running:" ["🏃♂️"]) | ||
| 575 | (":runner:" ["🏃"]) | ||
| 576 | (":running:" ["🏃"]) | ||
| 577 | (":woman-surfing:" ["🏄♀️"]) | ||
| 578 | (":man-surfing:" ["🏄♂️"]) | ||
| 579 | (":surfer:" ["🏄"]) | ||
| 580 | (":sports_medal:" ["🏅"]) | ||
| 581 | (":trophy:" ["🏆"]) | ||
| 582 | (":horse_racing:" ["🏇"]) | ||
| 583 | (":football:" ["🏈"]) | ||
| 584 | (":rugby_football:" ["🏉"]) | ||
| 585 | (":woman-swimming:" ["🏊♀️"]) | ||
| 586 | (":man-swimming:" ["🏊♂️"]) | ||
| 587 | (":swimmer:" ["🏊"]) | ||
| 588 | (":woman-lifting-weights:" ["🏋️♀️"]) | ||
| 589 | (":man-lifting-weights:" ["🏋️♂️"]) | ||
| 590 | (":weight_lifter:" ["🏋️"]) | ||
| 591 | (":woman-golfing:" ["🏌️♀️"]) | ||
| 592 | (":man-golfing:" ["🏌️♂️"]) | ||
| 593 | (":golfer:" ["🏌️"]) | ||
| 594 | (":racing_motorcycle:" ["🏍️"]) | ||
| 595 | (":racing_car:" ["🏎️"]) | ||
| 596 | (":cricket_bat_and_ball:" ["🏏"]) | ||
| 597 | (":volleyball:" ["🏐"]) | ||
| 598 | (":field_hockey_stick_and_ball:" ["🏑"]) | ||
| 599 | (":ice_hockey_stick_and_puck:" ["🏒"]) | ||
| 600 | (":table_tennis_paddle_and_ball:" ["🏓"]) | ||
| 601 | (":snow_capped_mountain:" ["🏔️"]) | ||
| 602 | (":camping:" ["🏕️"]) | ||
| 603 | (":beach_with_umbrella:" ["🏖️"]) | ||
| 604 | (":building_construction:" ["🏗️"]) | ||
| 605 | (":house_buildings:" ["🏘️"]) | ||
| 606 | (":cityscape:" ["🏙️"]) | ||
| 607 | (":derelict_house_building:" ["🏚️"]) | ||
| 608 | (":classical_building:" ["🏛️"]) | ||
| 609 | (":desert:" ["🏜️"]) | ||
| 610 | (":desert_island:" ["🏝️"]) | ||
| 611 | (":national_park:" ["🏞️"]) | ||
| 612 | (":stadium:" ["🏟️"]) | ||
| 613 | (":house:" ["🏠"]) | ||
| 614 | (":house_with_garden:" ["🏡"]) | ||
| 615 | (":office:" ["🏢"]) | ||
| 616 | (":post_office:" ["🏣"]) | ||
| 617 | (":european_post_office:" ["🏤"]) | ||
| 618 | (":hospital:" ["🏥"]) | ||
| 619 | (":bank:" ["🏦"]) | ||
| 620 | (":atm:" ["🏧"]) | ||
| 621 | (":hotel:" ["🏨"]) | ||
| 622 | (":love_hotel:" ["🏩"]) | ||
| 623 | (":convenience_store:" ["🏪"]) | ||
| 624 | (":school:" ["🏫"]) | ||
| 625 | (":department_store:" ["🏬"]) | ||
| 626 | (":factory:" ["🏭"]) | ||
| 627 | (":izakaya_lantern:" ["🏮"]) | ||
| 628 | (":lantern:" ["🏮"]) | ||
| 629 | (":japanese_castle:" ["🏯"]) | ||
| 630 | (":european_castle:" ["🏰"]) | ||
| 631 | (":rainbow-flag:" ["🏳️🌈"]) | ||
| 632 | (":transgender_flag:" ["🏳️⚧️"]) | ||
| 633 | (":waving_white_flag:" ["🏳️"]) | ||
| 634 | (":pirate_flag:" ["🏴☠️"]) | ||
| 635 | (":flag-england:" ["🏴"]) | ||
| 636 | (":flag-scotland:" ["🏴"]) | ||
| 637 | (":flag-wales:" ["🏴"]) | ||
| 638 | (":waving_black_flag:" ["🏴"]) | ||
| 639 | (":rosette:" ["🏵️"]) | ||
| 640 | (":label:" ["🏷️"]) | ||
| 641 | (":badminton_racquet_and_shuttlecock:" ["🏸"]) | ||
| 642 | (":bow_and_arrow:" ["🏹"]) | ||
| 643 | (":amphora:" ["🏺"]) | ||
| 644 | (":skin-tone-2:" ["🏻"]) | ||
| 645 | (":skin-tone-3:" ["🏼"]) | ||
| 646 | (":skin-tone-4:" ["🏽"]) | ||
| 647 | (":skin-tone-5:" ["🏾"]) | ||
| 648 | (":skin-tone-6:" ["🏿"]) | ||
| 649 | (":rat:" ["🐀"]) | ||
| 650 | (":mouse2:" ["🐁"]) | ||
| 651 | (":ox:" ["🐂"]) | ||
| 652 | (":water_buffalo:" ["🐃"]) | ||
| 653 | (":cow2:" ["🐄"]) | ||
| 654 | (":tiger2:" ["🐅"]) | ||
| 655 | (":leopard:" ["🐆"]) | ||
| 656 | (":rabbit2:" ["🐇"]) | ||
| 657 | (":black_cat:" ["🐈⬛"]) | ||
| 658 | (":cat2:" ["🐈"]) | ||
| 659 | (":dragon:" ["🐉"]) | ||
| 660 | (":crocodile:" ["🐊"]) | ||
| 661 | (":whale2:" ["🐋"]) | ||
| 662 | (":snail:" ["🐌"]) | ||
| 663 | (":snake:" ["🐍"]) | ||
| 664 | (":racehorse:" ["🐎"]) | ||
| 665 | (":ram:" ["🐏"]) | ||
| 666 | (":goat:" ["🐐"]) | ||
| 667 | (":sheep:" ["🐑"]) | ||
| 668 | (":monkey:" ["🐒"]) | ||
| 669 | (":rooster:" ["🐓"]) | ||
| 670 | (":chicken:" ["🐔"]) | ||
| 671 | (":service_dog:" ["🐕🦺"]) | ||
| 672 | (":dog2:" ["🐕"]) | ||
| 673 | (":pig2:" ["🐖"]) | ||
| 674 | (":boar:" ["🐗"]) | ||
| 675 | (":elephant:" ["🐘"]) | ||
| 676 | (":octopus:" ["🐙"]) | ||
| 677 | (":shell:" ["🐚"]) | ||
| 678 | (":bug:" ["🐛"]) | ||
| 679 | (":ant:" ["🐜"]) | ||
| 680 | (":bee:" ["🐝"]) | ||
| 681 | (":honeybee:" ["🐝"]) | ||
| 682 | (":ladybug:" ["🐞"]) | ||
| 683 | (":lady_beetle:" ["🐞"]) | ||
| 684 | (":fish:" ["🐟"]) | ||
| 685 | (":tropical_fish:" ["🐠"]) | ||
| 686 | (":blowfish:" ["🐡"]) | ||
| 687 | (":turtle:" ["🐢"]) | ||
| 688 | (":hatching_chick:" ["🐣"]) | ||
| 689 | (":baby_chick:" ["🐤"]) | ||
| 690 | (":hatched_chick:" ["🐥"]) | ||
| 691 | (":bird:" ["🐦"]) | ||
| 692 | (":penguin:" ["🐧"]) | ||
| 693 | (":koala:" ["🐨"]) | ||
| 694 | (":poodle:" ["🐩"]) | ||
| 695 | (":dromedary_camel:" ["🐪"]) | ||
| 696 | (":camel:" ["🐫"]) | ||
| 697 | (":dolphin:" ["🐬"]) | ||
| 698 | (":flipper:" ["🐬"]) | ||
| 699 | (":mouse:" ["🐭"]) | ||
| 700 | (":cow:" ["🐮"]) | ||
| 701 | (":tiger:" ["🐯"]) | ||
| 702 | (":rabbit:" ["🐰"]) | ||
| 703 | (":cat:" ["🐱"]) | ||
| 704 | (":dragon_face:" ["🐲"]) | ||
| 705 | (":whale:" ["🐳"]) | ||
| 706 | (":horse:" ["🐴"]) | ||
| 707 | (":monkey_face:" ["🐵"]) | ||
| 708 | (":o)" ["🐵"]) | ||
| 709 | (":dog:" ["🐶"]) | ||
| 710 | (":pig:" ["🐷"]) | ||
| 711 | (":frog:" ["🐸"]) | ||
| 712 | (":hamster:" ["🐹"]) | ||
| 713 | (":wolf:" ["🐺"]) | ||
| 714 | (":polar_bear:" ["🐻❄️"]) | ||
| 715 | (":bear:" ["🐻"]) | ||
| 716 | (":panda_face:" ["🐼"]) | ||
| 717 | (":pig_nose:" ["🐽"]) | ||
| 718 | (":feet:" ["🐾"]) | ||
| 719 | (":paw_prints:" ["🐾"]) | ||
| 720 | (":chipmunk:" ["🐿️"]) | ||
| 721 | (":eyes:" ["👀"]) | ||
| 722 | (":eye-in-speech-bubble:" ["👁️🗨️"]) | ||
| 723 | (":eye:" ["👁️"]) | ||
| 724 | (":ear:" ["👂"]) | ||
| 725 | (":nose:" ["👃"]) | ||
| 726 | (":lips:" ["👄"]) | ||
| 727 | (":tongue:" ["👅"]) | ||
| 728 | (":point_up_2:" ["👆"]) | ||
| 729 | (":point_down:" ["👇"]) | ||
| 730 | (":point_left:" ["👈"]) | ||
| 731 | (":point_right:" ["👉"]) | ||
| 732 | (":facepunch:" ["👊"]) | ||
| 733 | (":punch:" ["👊"]) | ||
| 734 | (":wave:" ["👋"]) | ||
| 735 | (":ok_hand:" ["👌"]) | ||
| 736 | (":+1:" ["👍"]) | ||
| 737 | (":thumbsup:" ["👍"]) | ||
| 738 | (":-1:" ["👎"]) | ||
| 739 | (":thumbsdown:" ["👎"]) | ||
| 740 | (":clap:" ["👏"]) | ||
| 741 | (":open_hands:" ["👐"]) | ||
| 742 | (":crown:" ["👑"]) | ||
| 743 | (":womans_hat:" ["👒"]) | ||
| 744 | (":eyeglasses:" ["👓"]) | ||
| 745 | (":necktie:" ["👔"]) | ||
| 746 | (":shirt:" ["👕"]) | ||
| 747 | (":tshirt:" ["👕"]) | ||
| 748 | (":jeans:" ["👖"]) | ||
| 749 | (":dress:" ["👗"]) | ||
| 750 | (":kimono:" ["👘"]) | ||
| 751 | (":bikini:" ["👙"]) | ||
| 752 | (":womans_clothes:" ["👚"]) | ||
| 753 | (":purse:" ["👛"]) | ||
| 754 | (":handbag:" ["👜"]) | ||
| 755 | (":pouch:" ["👝"]) | ||
| 756 | (":mans_shoe:" ["👞"]) | ||
| 757 | (":shoe:" ["👞"]) | ||
| 758 | (":athletic_shoe:" ["👟"]) | ||
| 759 | (":high_heel:" ["👠"]) | ||
| 760 | (":sandal:" ["👡"]) | ||
| 761 | (":boot:" ["👢"]) | ||
| 762 | (":footprints:" ["👣"]) | ||
| 763 | (":bust_in_silhouette:" ["👤"]) | ||
| 764 | (":busts_in_silhouette:" ["👥"]) | ||
| 765 | (":boy:" ["👦"]) | ||
| 766 | (":girl:" ["👧"]) | ||
| 767 | (":male-farmer:" ["👨🌾"]) | ||
| 768 | (":male-cook:" ["👨🍳"]) | ||
| 769 | (":man_feeding_baby:" ["👨🍼"]) | ||
| 770 | (":male-student:" ["👨🎓"]) | ||
| 771 | (":male-singer:" ["👨🎤"]) | ||
| 772 | (":male-artist:" ["👨🎨"]) | ||
| 773 | (":male-teacher:" ["👨🏫"]) | ||
| 774 | (":male-factory-worker:" ["👨🏭"]) | ||
| 775 | (":man-boy-boy:" ["👨👦👦"]) | ||
| 776 | (":man-boy:" ["👨👦"]) | ||
| 777 | (":man-girl-boy:" ["👨👧👦"]) | ||
| 778 | (":man-girl-girl:" ["👨👧👧"]) | ||
| 779 | (":man-girl:" ["👨👧"]) | ||
| 780 | (":man-man-boy:" ["👨👨👦"]) | ||
| 781 | (":man-man-boy-boy:" ["👨👨👦👦"]) | ||
| 782 | (":man-man-girl:" ["👨👨👧"]) | ||
| 783 | (":man-man-girl-boy:" ["👨👨👧👦"]) | ||
| 784 | (":man-man-girl-girl:" ["👨👨👧👧"]) | ||
| 785 | (":man-woman-boy:" ["👨👩👦"]) | ||
| 786 | (":man-woman-boy-boy:" ["👨👩👦👦"]) | ||
| 787 | (":man-woman-girl:" ["👨👩👧"]) | ||
| 788 | (":man-woman-girl-boy:" ["👨👩👧👦"]) | ||
| 789 | (":man-woman-girl-girl:" ["👨👩👧👧"]) | ||
| 790 | (":male-technologist:" ["👨💻"]) | ||
| 791 | (":male-office-worker:" ["👨💼"]) | ||
| 792 | (":male-mechanic:" ["👨🔧"]) | ||
| 793 | (":male-scientist:" ["👨🔬"]) | ||
| 794 | (":male-astronaut:" ["👨🚀"]) | ||
| 795 | (":male-firefighter:" ["👨🚒"]) | ||
| 796 | (":man_with_probing_cane:" ["👨🦯"]) | ||
| 797 | (":red_haired_man:" ["👨🦰"]) | ||
| 798 | (":curly_haired_man:" ["👨🦱"]) | ||
| 799 | (":bald_man:" ["👨🦲"]) | ||
| 800 | (":white_haired_man:" ["👨🦳"]) | ||
| 801 | (":man_in_motorized_wheelchair:" ["👨🦼"]) | ||
| 802 | (":man_in_manual_wheelchair:" ["👨🦽"]) | ||
| 803 | (":male-doctor:" ["👨⚕️"]) | ||
| 804 | (":male-judge:" ["👨⚖️"]) | ||
| 805 | (":male-pilot:" ["👨✈️"]) | ||
| 806 | (":man-heart-man:" ["👨❤️👨"]) | ||
| 807 | (":man-kiss-man:" ["👨❤️💋👨"]) | ||
| 808 | (":man:" ["👨"]) | ||
| 809 | (":female-farmer:" ["👩🌾"]) | ||
| 810 | (":female-cook:" ["👩🍳"]) | ||
| 811 | (":woman_feeding_baby:" ["👩🍼"]) | ||
| 812 | (":female-student:" ["👩🎓"]) | ||
| 813 | (":female-singer:" ["👩🎤"]) | ||
| 814 | (":female-artist:" ["👩🎨"]) | ||
| 815 | (":female-teacher:" ["👩🏫"]) | ||
| 816 | (":female-factory-worker:" ["👩🏭"]) | ||
| 817 | (":woman-boy-boy:" ["👩👦👦"]) | ||
| 818 | (":woman-boy:" ["👩👦"]) | ||
| 819 | (":woman-girl-boy:" ["👩👧👦"]) | ||
| 820 | (":woman-girl-girl:" ["👩👧👧"]) | ||
| 821 | (":woman-girl:" ["👩👧"]) | ||
| 822 | (":woman-woman-boy:" ["👩👩👦"]) | ||
| 823 | (":woman-woman-boy-boy:" ["👩👩👦👦"]) | ||
| 824 | (":woman-woman-girl:" ["👩👩👧"]) | ||
| 825 | (":woman-woman-girl-boy:" ["👩👩👧👦"]) | ||
| 826 | (":woman-woman-girl-girl:" ["👩👩👧👧"]) | ||
| 827 | (":female-technologist:" ["👩💻"]) | ||
| 828 | (":female-office-worker:" ["👩💼"]) | ||
| 829 | (":female-mechanic:" ["👩🔧"]) | ||
| 830 | (":female-scientist:" ["👩🔬"]) | ||
| 831 | (":female-astronaut:" ["👩🚀"]) | ||
| 832 | (":female-firefighter:" ["👩🚒"]) | ||
| 833 | (":woman_with_probing_cane:" ["👩🦯"]) | ||
| 834 | (":red_haired_woman:" ["👩🦰"]) | ||
| 835 | (":curly_haired_woman:" ["👩🦱"]) | ||
| 836 | (":bald_woman:" ["👩🦲"]) | ||
| 837 | (":white_haired_woman:" ["👩🦳"]) | ||
| 838 | (":woman_in_motorized_wheelchair:" ["👩🦼"]) | ||
| 839 | (":woman_in_manual_wheelchair:" ["👩🦽"]) | ||
| 840 | (":female-doctor:" ["👩⚕️"]) | ||
| 841 | (":female-judge:" ["👩⚖️"]) | ||
| 842 | (":female-pilot:" ["👩✈️"]) | ||
| 843 | (":woman-heart-man:" ["👩❤️👨"]) | ||
| 844 | (":woman-heart-woman:" ["👩❤️👩"]) | ||
| 845 | (":woman-kiss-man:" ["👩❤️💋👨"]) | ||
| 846 | (":woman-kiss-woman:" ["👩❤️💋👩"]) | ||
| 847 | (":woman:" ["👩"]) | ||
| 848 | (":family:" ["👪"]) | ||
| 849 | (":man_and_woman_holding_hands:" ["👫"]) | ||
| 850 | (":woman_and_man_holding_hands:" ["👫"]) | ||
| 851 | (":couple:" ["👫"]) | ||
| 852 | (":two_men_holding_hands:" ["👬"]) | ||
| 853 | (":men_holding_hands:" ["👬"]) | ||
| 854 | (":two_women_holding_hands:" ["👭"]) | ||
| 855 | (":women_holding_hands:" ["👭"]) | ||
| 856 | (":female-police-officer:" ["👮♀️"]) | ||
| 857 | (":male-police-officer:" ["👮♂️"]) | ||
| 858 | (":cop:" ["👮"]) | ||
| 859 | (":women-with-bunny-ears-partying:" ["👯♀️"]) | ||
| 860 | (":woman-with-bunny-ears-partying:" ["👯♀️"]) | ||
| 861 | (":men-with-bunny-ears-partying:" ["👯♂️"]) | ||
| 862 | (":man-with-bunny-ears-partying:" ["👯♂️"]) | ||
| 863 | (":dancers:" ["👯"]) | ||
| 864 | (":woman_with_veil:" ["👰♀️"]) | ||
| 865 | (":man_with_veil:" ["👰♂️"]) | ||
| 866 | (":bride_with_veil:" ["👰"]) | ||
| 867 | (":blond-haired-woman:" ["👱♀️"]) | ||
| 868 | (":blond-haired-man:" ["👱♂️"]) | ||
| 869 | (":person_with_blond_hair:" ["👱"]) | ||
| 870 | (":man_with_gua_pi_mao:" ["👲"]) | ||
| 871 | (":woman-wearing-turban:" ["👳♀️"]) | ||
| 872 | (":man-wearing-turban:" ["👳♂️"]) | ||
| 873 | (":man_with_turban:" ["👳"]) | ||
| 874 | (":older_man:" ["👴"]) | ||
| 875 | (":older_woman:" ["👵"]) | ||
| 876 | (":baby:" ["👶"]) | ||
| 877 | (":female-construction-worker:" ["👷♀️"]) | ||
| 878 | (":male-construction-worker:" ["👷♂️"]) | ||
| 879 | (":construction_worker:" ["👷"]) | ||
| 880 | (":princess:" ["👸"]) | ||
| 881 | (":japanese_ogre:" ["👹"]) | ||
| 882 | (":japanese_goblin:" ["👺"]) | ||
| 883 | (":ghost:" ["👻"]) | ||
| 884 | (":angel:" ["👼"]) | ||
| 885 | (":alien:" ["👽"]) | ||
| 886 | (":space_invader:" ["👾"]) | ||
| 887 | (":imp:" ["👿"]) | ||
| 888 | (":skull:" ["💀"]) | ||
| 889 | (":woman-tipping-hand:" ["💁♀️"]) | ||
| 890 | (":man-tipping-hand:" ["💁♂️"]) | ||
| 891 | (":information_desk_person:" ["💁"]) | ||
| 892 | (":female-guard:" ["💂♀️"]) | ||
| 893 | (":male-guard:" ["💂♂️"]) | ||
| 894 | (":guardsman:" ["💂"]) | ||
| 895 | (":dancer:" ["💃"]) | ||
| 896 | (":lipstick:" ["💄"]) | ||
| 897 | (":nail_care:" ["💅"]) | ||
| 898 | (":woman-getting-massage:" ["💆♀️"]) | ||
| 899 | (":man-getting-massage:" ["💆♂️"]) | ||
| 900 | (":massage:" ["💆"]) | ||
| 901 | (":woman-getting-haircut:" ["💇♀️"]) | ||
| 902 | (":man-getting-haircut:" ["💇♂️"]) | ||
| 903 | (":haircut:" ["💇"]) | ||
| 904 | (":barber:" ["💈"]) | ||
| 905 | (":syringe:" ["💉"]) | ||
| 906 | (":pill:" ["💊"]) | ||
| 907 | (":kiss:" ["💋"]) | ||
| 908 | (":love_letter:" ["💌"]) | ||
| 909 | (":ring:" ["💍"]) | ||
| 910 | (":gem:" ["💎"]) | ||
| 911 | (":couplekiss:" ["💏"]) | ||
| 912 | (":bouquet:" ["💐"]) | ||
| 913 | (":couple_with_heart:" ["💑"]) | ||
| 914 | (":wedding:" ["💒"]) | ||
| 915 | (":heartbeat:" ["💓"]) | ||
| 916 | (":broken_heart:" ["💔"]) | ||
| 917 | ("</3" ["💔"]) | ||
| 918 | (":two_hearts:" ["💕"]) | ||
| 919 | (":sparkling_heart:" ["💖"]) | ||
| 920 | (":heartpulse:" ["💗"]) | ||
| 921 | (":cupid:" ["💘"]) | ||
| 922 | (":blue_heart:" ["💙"]) | ||
| 923 | ("<3" ["💙"]) | ||
| 924 | (":green_heart:" ["💚"]) | ||
| 925 | ("<3" ["💚"]) | ||
| 926 | (":yellow_heart:" ["💛"]) | ||
| 927 | ("<3" ["💛"]) | ||
| 928 | (":purple_heart:" ["💜"]) | ||
| 929 | ("<3" ["💜"]) | ||
| 930 | (":gift_heart:" ["💝"]) | ||
| 931 | (":revolving_hearts:" ["💞"]) | ||
| 932 | (":heart_decoration:" ["💟"]) | ||
| 933 | (":diamond_shape_with_a_dot_inside:" ["💠"]) | ||
| 934 | (":bulb:" ["💡"]) | ||
| 935 | (":anger:" ["💢"]) | ||
| 936 | (":bomb:" ["💣"]) | ||
| 937 | (":zzz:" ["💤"]) | ||
| 938 | (":boom:" ["💥"]) | ||
| 939 | (":collision:" ["💥"]) | ||
| 940 | (":sweat_drops:" ["💦"]) | ||
| 941 | (":droplet:" ["💧"]) | ||
| 942 | (":dash:" ["💨"]) | ||
| 943 | (":hankey:" ["💩"]) | ||
| 944 | (":poop:" ["💩"]) | ||
| 945 | (":shit:" ["💩"]) | ||
| 946 | (":muscle:" ["💪"]) | ||
| 947 | (":dizzy:" ["💫"]) | ||
| 948 | (":speech_balloon:" ["💬"]) | ||
| 949 | (":thought_balloon:" ["💭"]) | ||
| 950 | (":white_flower:" ["💮"]) | ||
| 951 | (":100:" ["💯"]) | ||
| 952 | (":moneybag:" ["💰"]) | ||
| 953 | (":currency_exchange:" ["💱"]) | ||
| 954 | (":heavy_dollar_sign:" ["💲"]) | ||
| 955 | (":credit_card:" ["💳"]) | ||
| 956 | (":yen:" ["💴"]) | ||
| 957 | (":dollar:" ["💵"]) | ||
| 958 | (":euro:" ["💶"]) | ||
| 959 | (":pound:" ["💷"]) | ||
| 960 | (":money_with_wings:" ["💸"]) | ||
| 961 | (":chart:" ["💹"]) | ||
| 962 | (":seat:" ["💺"]) | ||
| 963 | (":computer:" ["💻"]) | ||
| 964 | (":briefcase:" ["💼"]) | ||
| 965 | (":minidisc:" ["💽"]) | ||
| 966 | (":floppy_disk:" ["💾"]) | ||
| 967 | (":cd:" ["💿"]) | ||
| 968 | (":dvd:" ["📀"]) | ||
| 969 | (":file_folder:" ["📁"]) | ||
| 970 | (":open_file_folder:" ["📂"]) | ||
| 971 | (":page_with_curl:" ["📃"]) | ||
| 972 | (":page_facing_up:" ["📄"]) | ||
| 973 | (":date:" ["📅"]) | ||
| 974 | (":calendar:" ["📆"]) | ||
| 975 | (":card_index:" ["📇"]) | ||
| 976 | (":chart_with_upwards_trend:" ["📈"]) | ||
| 977 | (":chart_with_downwards_trend:" ["📉"]) | ||
| 978 | (":bar_chart:" ["📊"]) | ||
| 979 | (":clipboard:" ["📋"]) | ||
| 980 | (":pushpin:" ["📌"]) | ||
| 981 | (":round_pushpin:" ["📍"]) | ||
| 982 | (":paperclip:" ["📎"]) | ||
| 983 | (":straight_ruler:" ["📏"]) | ||
| 984 | (":triangular_ruler:" ["📐"]) | ||
| 985 | (":bookmark_tabs:" ["📑"]) | ||
| 986 | (":ledger:" ["📒"]) | ||
| 987 | (":notebook:" ["📓"]) | ||
| 988 | (":notebook_with_decorative_cover:" ["📔"]) | ||
| 989 | (":closed_book:" ["📕"]) | ||
| 990 | (":book:" ["📖"]) | ||
| 991 | (":open_book:" ["📖"]) | ||
| 992 | (":green_book:" ["📗"]) | ||
| 993 | (":blue_book:" ["📘"]) | ||
| 994 | (":orange_book:" ["📙"]) | ||
| 995 | (":books:" ["📚"]) | ||
| 996 | (":name_badge:" ["📛"]) | ||
| 997 | (":scroll:" ["📜"]) | ||
| 998 | (":memo:" ["📝"]) | ||
| 999 | (":pencil:" ["📝"]) | ||
| 1000 | (":telephone_receiver:" ["📞"]) | ||
| 1001 | (":pager:" ["📟"]) | ||
| 1002 | (":fax:" ["📠"]) | ||
| 1003 | (":satellite_antenna:" ["📡"]) | ||
| 1004 | (":loudspeaker:" ["📢"]) | ||
| 1005 | (":mega:" ["📣"]) | ||
| 1006 | (":outbox_tray:" ["📤"]) | ||
| 1007 | (":inbox_tray:" ["📥"]) | ||
| 1008 | (":package:" ["📦"]) | ||
| 1009 | (":e-mail:" ["📧"]) | ||
| 1010 | (":incoming_envelope:" ["📨"]) | ||
| 1011 | (":envelope_with_arrow:" ["📩"]) | ||
| 1012 | (":mailbox_closed:" ["📪"]) | ||
| 1013 | (":mailbox:" ["📫"]) | ||
| 1014 | (":mailbox_with_mail:" ["📬"]) | ||
| 1015 | (":mailbox_with_no_mail:" ["📭"]) | ||
| 1016 | (":postbox:" ["📮"]) | ||
| 1017 | (":postal_horn:" ["📯"]) | ||
| 1018 | (":newspaper:" ["📰"]) | ||
| 1019 | (":iphone:" ["📱"]) | ||
| 1020 | (":calling:" ["📲"]) | ||
| 1021 | (":vibration_mode:" ["📳"]) | ||
| 1022 | (":mobile_phone_off:" ["📴"]) | ||
| 1023 | (":no_mobile_phones:" ["📵"]) | ||
| 1024 | (":signal_strength:" ["📶"]) | ||
| 1025 | (":camera:" ["📷"]) | ||
| 1026 | (":camera_with_flash:" ["📸"]) | ||
| 1027 | (":video_camera:" ["📹"]) | ||
| 1028 | (":tv:" ["📺"]) | ||
| 1029 | (":radio:" ["📻"]) | ||
| 1030 | (":vhs:" ["📼"]) | ||
| 1031 | (":film_projector:" ["📽️"]) | ||
| 1032 | (":prayer_beads:" ["📿"]) | ||
| 1033 | (":twisted_rightwards_arrows:" ["🔀"]) | ||
| 1034 | (":repeat:" ["🔁"]) | ||
| 1035 | (":repeat_one:" ["🔂"]) | ||
| 1036 | (":arrows_clockwise:" ["🔃"]) | ||
| 1037 | (":arrows_counterclockwise:" ["🔄"]) | ||
| 1038 | (":low_brightness:" ["🔅"]) | ||
| 1039 | (":high_brightness:" ["🔆"]) | ||
| 1040 | (":mute:" ["🔇"]) | ||
| 1041 | (":speaker:" ["🔈"]) | ||
| 1042 | (":sound:" ["🔉"]) | ||
| 1043 | (":loud_sound:" ["🔊"]) | ||
| 1044 | (":battery:" ["🔋"]) | ||
| 1045 | (":electric_plug:" ["🔌"]) | ||
| 1046 | (":mag:" ["🔍"]) | ||
| 1047 | (":mag_right:" ["🔎"]) | ||
| 1048 | (":lock_with_ink_pen:" ["🔏"]) | ||
| 1049 | (":closed_lock_with_key:" ["🔐"]) | ||
| 1050 | (":key:" ["🔑"]) | ||
| 1051 | (":lock:" ["🔒"]) | ||
| 1052 | (":unlock:" ["🔓"]) | ||
| 1053 | (":bell:" ["🔔"]) | ||
| 1054 | (":no_bell:" ["🔕"]) | ||
| 1055 | (":bookmark:" ["🔖"]) | ||
| 1056 | (":link:" ["🔗"]) | ||
| 1057 | (":radio_button:" ["🔘"]) | ||
| 1058 | (":back:" ["🔙"]) | ||
| 1059 | (":end:" ["🔚"]) | ||
| 1060 | (":on:" ["🔛"]) | ||
| 1061 | (":soon:" ["🔜"]) | ||
| 1062 | (":top:" ["🔝"]) | ||
| 1063 | (":underage:" ["🔞"]) | ||
| 1064 | (":keycap_ten:" ["🔟"]) | ||
| 1065 | (":capital_abcd:" ["🔠"]) | ||
| 1066 | (":abcd:" ["🔡"]) | ||
| 1067 | (":1234:" ["🔢"]) | ||
| 1068 | (":symbols:" ["🔣"]) | ||
| 1069 | (":abc:" ["🔤"]) | ||
| 1070 | (":fire:" ["🔥"]) | ||
| 1071 | (":flashlight:" ["🔦"]) | ||
| 1072 | (":wrench:" ["🔧"]) | ||
| 1073 | (":hammer:" ["🔨"]) | ||
| 1074 | (":nut_and_bolt:" ["🔩"]) | ||
| 1075 | (":hocho:" ["🔪"]) | ||
| 1076 | (":knife:" ["🔪"]) | ||
| 1077 | (":gun:" ["🔫"]) | ||
| 1078 | (":microscope:" ["🔬"]) | ||
| 1079 | (":telescope:" ["🔭"]) | ||
| 1080 | (":crystal_ball:" ["🔮"]) | ||
| 1081 | (":six_pointed_star:" ["🔯"]) | ||
| 1082 | (":beginner:" ["🔰"]) | ||
| 1083 | (":trident:" ["🔱"]) | ||
| 1084 | (":black_square_button:" ["🔲"]) | ||
| 1085 | (":white_square_button:" ["🔳"]) | ||
| 1086 | (":red_circle:" ["🔴"]) | ||
| 1087 | (":large_blue_circle:" ["🔵"]) | ||
| 1088 | (":large_orange_diamond:" ["🔶"]) | ||
| 1089 | (":large_blue_diamond:" ["🔷"]) | ||
| 1090 | (":small_orange_diamond:" ["🔸"]) | ||
| 1091 | (":small_blue_diamond:" ["🔹"]) | ||
| 1092 | (":small_red_triangle:" ["🔺"]) | ||
| 1093 | (":small_red_triangle_down:" ["🔻"]) | ||
| 1094 | (":arrow_up_small:" ["🔼"]) | ||
| 1095 | (":arrow_down_small:" ["🔽"]) | ||
| 1096 | (":om_symbol:" ["🕉️"]) | ||
| 1097 | (":dove_of_peace:" ["🕊️"]) | ||
| 1098 | (":kaaba:" ["🕋"]) | ||
| 1099 | (":mosque:" ["🕌"]) | ||
| 1100 | (":synagogue:" ["🕍"]) | ||
| 1101 | (":menorah_with_nine_branches:" ["🕎"]) | ||
| 1102 | (":clock1:" ["🕐"]) | ||
| 1103 | (":clock2:" ["🕑"]) | ||
| 1104 | (":clock3:" ["🕒"]) | ||
| 1105 | (":clock4:" ["🕓"]) | ||
| 1106 | (":clock5:" ["🕔"]) | ||
| 1107 | (":clock6:" ["🕕"]) | ||
| 1108 | (":clock7:" ["🕖"]) | ||
| 1109 | (":clock8:" ["🕗"]) | ||
| 1110 | (":clock9:" ["🕘"]) | ||
| 1111 | (":clock10:" ["🕙"]) | ||
| 1112 | (":clock11:" ["🕚"]) | ||
| 1113 | (":clock12:" ["🕛"]) | ||
| 1114 | (":clock130:" ["🕜"]) | ||
| 1115 | (":clock230:" ["🕝"]) | ||
| 1116 | (":clock330:" ["🕞"]) | ||
| 1117 | (":clock430:" ["🕟"]) | ||
| 1118 | (":clock530:" ["🕠"]) | ||
| 1119 | (":clock630:" ["🕡"]) | ||
| 1120 | (":clock730:" ["🕢"]) | ||
| 1121 | (":clock830:" ["🕣"]) | ||
| 1122 | (":clock930:" ["🕤"]) | ||
| 1123 | (":clock1030:" ["🕥"]) | ||
| 1124 | (":clock1130:" ["🕦"]) | ||
| 1125 | (":clock1230:" ["🕧"]) | ||
| 1126 | (":candle:" ["🕯️"]) | ||
| 1127 | (":mantelpiece_clock:" ["🕰️"]) | ||
| 1128 | (":hole:" ["🕳️"]) | ||
| 1129 | (":man_in_business_suit_levitating:" ["🕴️"]) | ||
| 1130 | (":female-detective:" ["🕵️♀️"]) | ||
| 1131 | (":male-detective:" ["🕵️♂️"]) | ||
| 1132 | (":sleuth_or_spy:" ["🕵️"]) | ||
| 1133 | (":dark_sunglasses:" ["🕶️"]) | ||
| 1134 | (":spider:" ["🕷️"]) | ||
| 1135 | (":spider_web:" ["🕸️"]) | ||
| 1136 | (":joystick:" ["🕹️"]) | ||
| 1137 | (":man_dancing:" ["🕺"]) | ||
| 1138 | (":linked_paperclips:" ["🖇️"]) | ||
| 1139 | (":lower_left_ballpoint_pen:" ["🖊️"]) | ||
| 1140 | (":lower_left_fountain_pen:" ["🖋️"]) | ||
| 1141 | (":lower_left_paintbrush:" ["🖌️"]) | ||
| 1142 | (":lower_left_crayon:" ["🖍️"]) | ||
| 1143 | (":raised_hand_with_fingers_splayed:" ["🖐️"]) | ||
| 1144 | (":middle_finger:" ["🖕"]) | ||
| 1145 | (":reversed_hand_with_middle_finger_extended:" ["🖕"]) | ||
| 1146 | (":spock-hand:" ["🖖"]) | ||
| 1147 | (":black_heart:" ["🖤"]) | ||
| 1148 | (":desktop_computer:" ["🖥️"]) | ||
| 1149 | (":printer:" ["🖨️"]) | ||
| 1150 | (":three_button_mouse:" ["🖱️"]) | ||
| 1151 | (":trackball:" ["🖲️"]) | ||
| 1152 | (":frame_with_picture:" ["🖼️"]) | ||
| 1153 | (":card_index_dividers:" ["🗂️"]) | ||
| 1154 | (":card_file_box:" ["🗃️"]) | ||
| 1155 | (":file_cabinet:" ["🗄️"]) | ||
| 1156 | (":wastebasket:" ["🗑️"]) | ||
| 1157 | (":spiral_note_pad:" ["🗒️"]) | ||
| 1158 | (":spiral_calendar_pad:" ["🗓️"]) | ||
| 1159 | (":compression:" ["🗜️"]) | ||
| 1160 | (":old_key:" ["🗝️"]) | ||
| 1161 | (":rolled_up_newspaper:" ["🗞️"]) | ||
| 1162 | (":dagger_knife:" ["🗡️"]) | ||
| 1163 | (":speaking_head_in_silhouette:" ["🗣️"]) | ||
| 1164 | (":left_speech_bubble:" ["🗨️"]) | ||
| 1165 | (":right_anger_bubble:" ["🗯️"]) | ||
| 1166 | (":ballot_box_with_ballot:" ["🗳️"]) | ||
| 1167 | (":world_map:" ["🗺️"]) | ||
| 1168 | (":mount_fuji:" ["🗻"]) | ||
| 1169 | (":tokyo_tower:" ["🗼"]) | ||
| 1170 | (":statue_of_liberty:" ["🗽"]) | ||
| 1171 | (":japan:" ["🗾"]) | ||
| 1172 | (":moyai:" ["🗿"]) | ||
| 1173 | (":grinning:" ["😀"]) | ||
| 1174 | (":D" ["😀"]) | ||
| 1175 | (":grin:" ["😁"]) | ||
| 1176 | (":joy:" ["😂"]) | ||
| 1177 | (":smiley:" ["😃"]) | ||
| 1178 | (":)" ["😃"]) | ||
| 1179 | ("=)" ["😃"]) | ||
| 1180 | ("=-)" ["😃"]) | ||
| 1181 | (":smile:" ["😄"]) | ||
| 1182 | (":)" ["😄"]) | ||
| 1183 | ("C:" ["😄"]) | ||
| 1184 | ("c:" ["😄"]) | ||
| 1185 | (":D" ["😄"]) | ||
| 1186 | (":-D" ["😄"]) | ||
| 1187 | (":sweat_smile:" ["😅"]) | ||
| 1188 | (":laughing:" ["😆"]) | ||
| 1189 | (":satisfied:" ["😆"]) | ||
| 1190 | (":>" ["😆"]) | ||
| 1191 | (":->" ["😆"]) | ||
| 1192 | (":innocent:" ["😇"]) | ||
| 1193 | (":smiling_imp:" ["😈"]) | ||
| 1194 | (":wink:" ["😉"]) | ||
| 1195 | (";)" ["😉"]) | ||
| 1196 | (";-)" ["😉"]) | ||
| 1197 | (":blush:" ["😊"]) | ||
| 1198 | (":)" ["😊"]) | ||
| 1199 | (":yum:" ["😋"]) | ||
| 1200 | (":relieved:" ["😌"]) | ||
| 1201 | (":heart_eyes:" ["😍"]) | ||
| 1202 | (":sunglasses:" ["😎"]) | ||
| 1203 | ("8)" ["😎"]) | ||
| 1204 | (":smirk:" ["😏"]) | ||
| 1205 | (":neutral_face:" ["😐"]) | ||
| 1206 | (":|" ["😐"]) | ||
| 1207 | (":-|" ["😐"]) | ||
| 1208 | (":expressionless:" ["😑"]) | ||
| 1209 | (":unamused:" ["😒"]) | ||
| 1210 | (":(" ["😒"]) | ||
| 1211 | (":sweat:" ["😓"]) | ||
| 1212 | (":pensive:" ["😔"]) | ||
| 1213 | (":confused:" ["😕"]) | ||
| 1214 | (":\\" ["😕"]) | ||
| 1215 | (":-\\" ["😕"]) | ||
| 1216 | (":/" ["😕"]) | ||
| 1217 | (":-/" ["😕"]) | ||
| 1218 | (":confounded:" ["😖"]) | ||
| 1219 | (":kissing:" ["😗"]) | ||
| 1220 | (":kissing_heart:" ["😘"]) | ||
| 1221 | (":*" ["😘"]) | ||
| 1222 | (":-*" ["😘"]) | ||
| 1223 | (":kissing_smiling_eyes:" ["😙"]) | ||
| 1224 | (":kissing_closed_eyes:" ["😚"]) | ||
| 1225 | (":stuck_out_tongue:" ["😛"]) | ||
| 1226 | (":p" ["😛"]) | ||
| 1227 | (":-p" ["😛"]) | ||
| 1228 | (":P" ["😛"]) | ||
| 1229 | (":-P" ["😛"]) | ||
| 1230 | (":b" ["😛"]) | ||
| 1231 | (":-b" ["😛"]) | ||
| 1232 | (":stuck_out_tongue_winking_eye:" ["😜"]) | ||
| 1233 | (";p" ["😜"]) | ||
| 1234 | (";-p" ["😜"]) | ||
| 1235 | (";b" ["😜"]) | ||
| 1236 | (";-b" ["😜"]) | ||
| 1237 | (";P" ["😜"]) | ||
| 1238 | (";-P" ["😜"]) | ||
| 1239 | (":stuck_out_tongue_closed_eyes:" ["😝"]) | ||
| 1240 | (":disappointed:" ["😞"]) | ||
| 1241 | (":(" ["😞"]) | ||
| 1242 | ("):" ["😞"]) | ||
| 1243 | (":-(" ["😞"]) | ||
| 1244 | (":worried:" ["😟"]) | ||
| 1245 | (":angry:" ["😠"]) | ||
| 1246 | (">:(" ["😠"]) | ||
| 1247 | (">:-(" ["😠"]) | ||
| 1248 | (":rage:" ["😡"]) | ||
| 1249 | (":cry:" ["😢"]) | ||
| 1250 | (":'(" ["😢"]) | ||
| 1251 | (":persevere:" ["😣"]) | ||
| 1252 | (":triumph:" ["😤"]) | ||
| 1253 | (":disappointed_relieved:" ["😥"]) | ||
| 1254 | (":frowning:" ["😦"]) | ||
| 1255 | (":anguished:" ["😧"]) | ||
| 1256 | ("D:" ["😧"]) | ||
| 1257 | (":fearful:" ["😨"]) | ||
| 1258 | (":weary:" ["😩"]) | ||
| 1259 | (":sleepy:" ["😪"]) | ||
| 1260 | (":tired_face:" ["😫"]) | ||
| 1261 | (":grimacing:" ["😬"]) | ||
| 1262 | (":sob:" ["😭"]) | ||
| 1263 | (":'(" ["😭"]) | ||
| 1264 | (":face_exhaling:" ["😮💨"]) | ||
| 1265 | (":open_mouth:" ["😮"]) | ||
| 1266 | (":o" ["😮"]) | ||
| 1267 | (":-o" ["😮"]) | ||
| 1268 | (":O" ["😮"]) | ||
| 1269 | (":-O" ["😮"]) | ||
| 1270 | (":hushed:" ["😯"]) | ||
| 1271 | (":cold_sweat:" ["😰"]) | ||
| 1272 | (":scream:" ["😱"]) | ||
| 1273 | (":astonished:" ["😲"]) | ||
| 1274 | (":flushed:" ["😳"]) | ||
| 1275 | (":sleeping:" ["😴"]) | ||
| 1276 | (":face_with_spiral_eyes:" ["😵💫"]) | ||
| 1277 | (":dizzy_face:" ["😵"]) | ||
| 1278 | (":face_in_clouds:" ["😶🌫️"]) | ||
| 1279 | (":no_mouth:" ["😶"]) | ||
| 1280 | (":mask:" ["😷"]) | ||
| 1281 | (":smile_cat:" ["😸"]) | ||
| 1282 | (":joy_cat:" ["😹"]) | ||
| 1283 | (":smiley_cat:" ["😺"]) | ||
| 1284 | (":heart_eyes_cat:" ["😻"]) | ||
| 1285 | (":smirk_cat:" ["😼"]) | ||
| 1286 | (":kissing_cat:" ["😽"]) | ||
| 1287 | (":pouting_cat:" ["😾"]) | ||
| 1288 | (":crying_cat_face:" ["😿"]) | ||
| 1289 | (":scream_cat:" ["🙀"]) | ||
| 1290 | (":slightly_frowning_face:" ["🙁"]) | ||
| 1291 | (":slightly_smiling_face:" ["🙂"]) | ||
| 1292 | (":)" ["🙂"]) | ||
| 1293 | ("(:" ["🙂"]) | ||
| 1294 | (":-)" ["🙂"]) | ||
| 1295 | (":upside_down_face:" ["🙃"]) | ||
| 1296 | (":face_with_rolling_eyes:" ["🙄"]) | ||
| 1297 | (":woman-gesturing-no:" ["🙅♀️"]) | ||
| 1298 | (":man-gesturing-no:" ["🙅♂️"]) | ||
| 1299 | (":no_good:" ["🙅"]) | ||
| 1300 | (":woman-gesturing-ok:" ["🙆♀️"]) | ||
| 1301 | (":man-gesturing-ok:" ["🙆♂️"]) | ||
| 1302 | (":ok_woman:" ["🙆"]) | ||
| 1303 | (":woman-bowing:" ["🙇♀️"]) | ||
| 1304 | (":man-bowing:" ["🙇♂️"]) | ||
| 1305 | (":bow:" ["🙇"]) | ||
| 1306 | (":see_no_evil:" ["🙈"]) | ||
| 1307 | (":hear_no_evil:" ["🙉"]) | ||
| 1308 | (":speak_no_evil:" ["🙊"]) | ||
| 1309 | (":woman-raising-hand:" ["🙋♀️"]) | ||
| 1310 | (":man-raising-hand:" ["🙋♂️"]) | ||
| 1311 | (":raising_hand:" ["🙋"]) | ||
| 1312 | (":raised_hands:" ["🙌"]) | ||
| 1313 | (":woman-frowning:" ["🙍♀️"]) | ||
| 1314 | (":man-frowning:" ["🙍♂️"]) | ||
| 1315 | (":person_frowning:" ["🙍"]) | ||
| 1316 | (":woman-pouting:" ["🙎♀️"]) | ||
| 1317 | (":man-pouting:" ["🙎♂️"]) | ||
| 1318 | (":person_with_pouting_face:" ["🙎"]) | ||
| 1319 | (":pray:" ["🙏"]) | ||
| 1320 | (":rocket:" ["🚀"]) | ||
| 1321 | (":helicopter:" ["🚁"]) | ||
| 1322 | (":steam_locomotive:" ["🚂"]) | ||
| 1323 | (":railway_car:" ["🚃"]) | ||
| 1324 | (":bullettrain_side:" ["🚄"]) | ||
| 1325 | (":bullettrain_front:" ["🚅"]) | ||
| 1326 | (":train2:" ["🚆"]) | ||
| 1327 | (":metro:" ["🚇"]) | ||
| 1328 | (":light_rail:" ["🚈"]) | ||
| 1329 | (":station:" ["🚉"]) | ||
| 1330 | (":tram:" ["🚊"]) | ||
| 1331 | (":train:" ["🚋"]) | ||
| 1332 | (":bus:" ["🚌"]) | ||
| 1333 | (":oncoming_bus:" ["🚍"]) | ||
| 1334 | (":trolleybus:" ["🚎"]) | ||
| 1335 | (":busstop:" ["🚏"]) | ||
| 1336 | (":minibus:" ["🚐"]) | ||
| 1337 | (":ambulance:" ["🚑"]) | ||
| 1338 | (":fire_engine:" ["🚒"]) | ||
| 1339 | (":police_car:" ["🚓"]) | ||
| 1340 | (":oncoming_police_car:" ["🚔"]) | ||
| 1341 | (":taxi:" ["🚕"]) | ||
| 1342 | (":oncoming_taxi:" ["🚖"]) | ||
| 1343 | (":car:" ["🚗"]) | ||
| 1344 | (":red_car:" ["🚗"]) | ||
| 1345 | (":oncoming_automobile:" ["🚘"]) | ||
| 1346 | (":blue_car:" ["🚙"]) | ||
| 1347 | (":truck:" ["🚚"]) | ||
| 1348 | (":articulated_lorry:" ["🚛"]) | ||
| 1349 | (":tractor:" ["🚜"]) | ||
| 1350 | (":monorail:" ["🚝"]) | ||
| 1351 | (":mountain_railway:" ["🚞"]) | ||
| 1352 | (":suspension_railway:" ["🚟"]) | ||
| 1353 | (":mountain_cableway:" ["🚠"]) | ||
| 1354 | (":aerial_tramway:" ["🚡"]) | ||
| 1355 | (":ship:" ["🚢"]) | ||
| 1356 | (":woman-rowing-boat:" ["🚣♀️"]) | ||
| 1357 | (":man-rowing-boat:" ["🚣♂️"]) | ||
| 1358 | (":rowboat:" ["🚣"]) | ||
| 1359 | (":speedboat:" ["🚤"]) | ||
| 1360 | (":traffic_light:" ["🚥"]) | ||
| 1361 | (":vertical_traffic_light:" ["🚦"]) | ||
| 1362 | (":construction:" ["🚧"]) | ||
| 1363 | (":rotating_light:" ["🚨"]) | ||
| 1364 | (":triangular_flag_on_post:" ["🚩"]) | ||
| 1365 | (":door:" ["🚪"]) | ||
| 1366 | (":no_entry_sign:" ["🚫"]) | ||
| 1367 | (":smoking:" ["🚬"]) | ||
| 1368 | (":no_smoking:" ["🚭"]) | ||
| 1369 | (":put_litter_in_its_place:" ["🚮"]) | ||
| 1370 | (":do_not_litter:" ["🚯"]) | ||
| 1371 | (":potable_water:" ["🚰"]) | ||
| 1372 | (":non-potable_water:" ["🚱"]) | ||
| 1373 | (":bike:" ["🚲"]) | ||
| 1374 | (":no_bicycles:" ["🚳"]) | ||
| 1375 | (":woman-biking:" ["🚴♀️"]) | ||
| 1376 | (":man-biking:" ["🚴♂️"]) | ||
| 1377 | (":bicyclist:" ["🚴"]) | ||
| 1378 | (":woman-mountain-biking:" ["🚵♀️"]) | ||
| 1379 | (":man-mountain-biking:" ["🚵♂️"]) | ||
| 1380 | (":mountain_bicyclist:" ["🚵"]) | ||
| 1381 | (":woman-walking:" ["🚶♀️"]) | ||
| 1382 | (":man-walking:" ["🚶♂️"]) | ||
| 1383 | (":walking:" ["🚶"]) | ||
| 1384 | (":no_pedestrians:" ["🚷"]) | ||
| 1385 | (":children_crossing:" ["🚸"]) | ||
| 1386 | (":mens:" ["🚹"]) | ||
| 1387 | (":womens:" ["🚺"]) | ||
| 1388 | (":restroom:" ["🚻"]) | ||
| 1389 | (":baby_symbol:" ["🚼"]) | ||
| 1390 | (":toilet:" ["🚽"]) | ||
| 1391 | (":wc:" ["🚾"]) | ||
| 1392 | (":shower:" ["🚿"]) | ||
| 1393 | (":bath:" ["🛀"]) | ||
| 1394 | (":bathtub:" ["🛁"]) | ||
| 1395 | (":passport_control:" ["🛂"]) | ||
| 1396 | (":customs:" ["🛃"]) | ||
| 1397 | (":baggage_claim:" ["🛄"]) | ||
| 1398 | (":left_luggage:" ["🛅"]) | ||
| 1399 | (":couch_and_lamp:" ["🛋️"]) | ||
| 1400 | (":sleeping_accommodation:" ["🛌"]) | ||
| 1401 | (":shopping_bags:" ["🛍️"]) | ||
| 1402 | (":bellhop_bell:" ["🛎️"]) | ||
| 1403 | (":bed:" ["🛏️"]) | ||
| 1404 | (":place_of_worship:" ["🛐"]) | ||
| 1405 | (":octagonal_sign:" ["🛑"]) | ||
| 1406 | (":shopping_trolley:" ["🛒"]) | ||
| 1407 | (":hindu_temple:" ["🛕"]) | ||
| 1408 | (":hut:" ["🛖"]) | ||
| 1409 | (":elevator:" ["🛗"]) | ||
| 1410 | (":hammer_and_wrench:" ["🛠️"]) | ||
| 1411 | (":shield:" ["🛡️"]) | ||
| 1412 | (":oil_drum:" ["🛢️"]) | ||
| 1413 | (":motorway:" ["🛣️"]) | ||
| 1414 | (":railway_track:" ["🛤️"]) | ||
| 1415 | (":motor_boat:" ["🛥️"]) | ||
| 1416 | (":small_airplane:" ["🛩️"]) | ||
| 1417 | (":airplane_departure:" ["🛫"]) | ||
| 1418 | (":airplane_arriving:" ["🛬"]) | ||
| 1419 | (":satellite:" ["🛰️"]) | ||
| 1420 | (":passenger_ship:" ["🛳️"]) | ||
| 1421 | (":scooter:" ["🛴"]) | ||
| 1422 | (":motor_scooter:" ["🛵"]) | ||
| 1423 | (":canoe:" ["🛶"]) | ||
| 1424 | (":sled:" ["🛷"]) | ||
| 1425 | (":flying_saucer:" ["🛸"]) | ||
| 1426 | (":skateboard:" ["🛹"]) | ||
| 1427 | (":auto_rickshaw:" ["🛺"]) | ||
| 1428 | (":pickup_truck:" ["🛻"]) | ||
| 1429 | (":roller_skate:" ["🛼"]) | ||
| 1430 | (":large_orange_circle:" ["🟠"]) | ||
| 1431 | (":large_yellow_circle:" ["🟡"]) | ||
| 1432 | (":large_green_circle:" ["🟢"]) | ||
| 1433 | (":large_purple_circle:" ["🟣"]) | ||
| 1434 | (":large_brown_circle:" ["🟤"]) | ||
| 1435 | (":large_red_square:" ["🟥"]) | ||
| 1436 | (":large_blue_square:" ["🟦"]) | ||
| 1437 | (":large_orange_square:" ["🟧"]) | ||
| 1438 | (":large_yellow_square:" ["🟨"]) | ||
| 1439 | (":large_green_square:" ["🟩"]) | ||
| 1440 | (":large_purple_square:" ["🟪"]) | ||
| 1441 | (":large_brown_square:" ["🟫"]) | ||
| 1442 | (":pinched_fingers:" ["🤌"]) | ||
| 1443 | (":white_heart:" ["🤍"]) | ||
| 1444 | (":brown_heart:" ["🤎"]) | ||
| 1445 | (":pinching_hand:" ["🤏"]) | ||
| 1446 | (":zipper_mouth_face:" ["🤐"]) | ||
| 1447 | (":money_mouth_face:" ["🤑"]) | ||
| 1448 | (":face_with_thermometer:" ["🤒"]) | ||
| 1449 | (":nerd_face:" ["🤓"]) | ||
| 1450 | (":thinking_face:" ["🤔"]) | ||
| 1451 | (":face_with_head_bandage:" ["🤕"]) | ||
| 1452 | (":robot_face:" ["🤖"]) | ||
| 1453 | (":hugging_face:" ["🤗"]) | ||
| 1454 | (":the_horns:" ["🤘"]) | ||
| 1455 | (":sign_of_the_horns:" ["🤘"]) | ||
| 1456 | (":call_me_hand:" ["🤙"]) | ||
| 1457 | (":raised_back_of_hand:" ["🤚"]) | ||
| 1458 | (":left-facing_fist:" ["🤛"]) | ||
| 1459 | (":right-facing_fist:" ["🤜"]) | ||
| 1460 | (":handshake:" ["🤝"]) | ||
| 1461 | (":crossed_fingers:" ["🤞"]) | ||
| 1462 | (":hand_with_index_and_middle_fingers_crossed:" ["🤞"]) | ||
| 1463 | (":i_love_you_hand_sign:" ["🤟"]) | ||
| 1464 | (":face_with_cowboy_hat:" ["🤠"]) | ||
| 1465 | (":clown_face:" ["🤡"]) | ||
| 1466 | (":nauseated_face:" ["🤢"]) | ||
| 1467 | (":rolling_on_the_floor_laughing:" ["🤣"]) | ||
| 1468 | (":drooling_face:" ["🤤"]) | ||
| 1469 | (":lying_face:" ["🤥"]) | ||
| 1470 | (":woman-facepalming:" ["🤦♀️"]) | ||
| 1471 | (":man-facepalming:" ["🤦♂️"]) | ||
| 1472 | (":face_palm:" ["🤦"]) | ||
| 1473 | (":sneezing_face:" ["🤧"]) | ||
| 1474 | (":face_with_raised_eyebrow:" ["🤨"]) | ||
| 1475 | (":face_with_one_eyebrow_raised:" ["🤨"]) | ||
| 1476 | (":star-struck:" ["🤩"]) | ||
| 1477 | (":grinning_face_with_star_eyes:" ["🤩"]) | ||
| 1478 | (":zany_face:" ["🤪"]) | ||
| 1479 | (":grinning_face_with_one_large_and_one_small_eye:" ["🤪"]) | ||
| 1480 | (":shushing_face:" ["🤫"]) | ||
| 1481 | (":face_with_finger_covering_closed_lips:" ["🤫"]) | ||
| 1482 | (":face_with_symbols_on_mouth:" ["🤬"]) | ||
| 1483 | (":serious_face_with_symbols_covering_mouth:" ["🤬"]) | ||
| 1484 | (":face_with_hand_over_mouth:" ["🤭"]) | ||
| 1485 | (":smiling_face_with_smiling_eyes_and_hand_covering_mouth:" ["🤭"]) | ||
| 1486 | (":face_vomiting:" ["🤮"]) | ||
| 1487 | (":face_with_open_mouth_vomiting:" ["🤮"]) | ||
| 1488 | (":exploding_head:" ["🤯"]) | ||
| 1489 | (":shocked_face_with_exploding_head:" ["🤯"]) | ||
| 1490 | (":pregnant_woman:" ["🤰"]) | ||
| 1491 | (":breast-feeding:" ["🤱"]) | ||
| 1492 | (":palms_up_together:" ["🤲"]) | ||
| 1493 | (":selfie:" ["🤳"]) | ||
| 1494 | (":prince:" ["🤴"]) | ||
| 1495 | (":woman_in_tuxedo:" ["🤵♀️"]) | ||
| 1496 | (":man_in_tuxedo:" ["🤵♂️"]) | ||
| 1497 | (":person_in_tuxedo:" ["🤵"]) | ||
| 1498 | (":mrs_claus:" ["🤶"]) | ||
| 1499 | (":mother_christmas:" ["🤶"]) | ||
| 1500 | (":woman-shrugging:" ["🤷♀️"]) | ||
| 1501 | (":man-shrugging:" ["🤷♂️"]) | ||
| 1502 | (":shrug:" ["🤷"]) | ||
| 1503 | (":woman-cartwheeling:" ["🤸♀️"]) | ||
| 1504 | (":man-cartwheeling:" ["🤸♂️"]) | ||
| 1505 | (":person_doing_cartwheel:" ["🤸"]) | ||
| 1506 | (":woman-juggling:" ["🤹♀️"]) | ||
| 1507 | (":man-juggling:" ["🤹♂️"]) | ||
| 1508 | (":juggling:" ["🤹"]) | ||
| 1509 | (":fencer:" ["🤺"]) | ||
| 1510 | (":woman-wrestling:" ["🤼♀️"]) | ||
| 1511 | (":man-wrestling:" ["🤼♂️"]) | ||
| 1512 | (":wrestlers:" ["🤼"]) | ||
| 1513 | (":woman-playing-water-polo:" ["🤽♀️"]) | ||
| 1514 | (":man-playing-water-polo:" ["🤽♂️"]) | ||
| 1515 | (":water_polo:" ["🤽"]) | ||
| 1516 | (":woman-playing-handball:" ["🤾♀️"]) | ||
| 1517 | (":man-playing-handball:" ["🤾♂️"]) | ||
| 1518 | (":handball:" ["🤾"]) | ||
| 1519 | (":diving_mask:" ["🤿"]) | ||
| 1520 | (":wilted_flower:" ["🥀"]) | ||
| 1521 | (":drum_with_drumsticks:" ["🥁"]) | ||
| 1522 | (":clinking_glasses:" ["🥂"]) | ||
| 1523 | (":tumbler_glass:" ["🥃"]) | ||
| 1524 | (":spoon:" ["🥄"]) | ||
| 1525 | (":goal_net:" ["🥅"]) | ||
| 1526 | (":first_place_medal:" ["🥇"]) | ||
| 1527 | (":second_place_medal:" ["🥈"]) | ||
| 1528 | (":third_place_medal:" ["🥉"]) | ||
| 1529 | (":boxing_glove:" ["🥊"]) | ||
| 1530 | (":martial_arts_uniform:" ["🥋"]) | ||
| 1531 | (":curling_stone:" ["🥌"]) | ||
| 1532 | (":lacrosse:" ["🥍"]) | ||
| 1533 | (":softball:" ["🥎"]) | ||
| 1534 | (":flying_disc:" ["🥏"]) | ||
| 1535 | (":croissant:" ["🥐"]) | ||
| 1536 | (":avocado:" ["🥑"]) | ||
| 1537 | (":cucumber:" ["🥒"]) | ||
| 1538 | (":bacon:" ["🥓"]) | ||
| 1539 | (":potato:" ["🥔"]) | ||
| 1540 | (":carrot:" ["🥕"]) | ||
| 1541 | (":baguette_bread:" ["🥖"]) | ||
| 1542 | (":green_salad:" ["🥗"]) | ||
| 1543 | (":shallow_pan_of_food:" ["🥘"]) | ||
| 1544 | (":stuffed_flatbread:" ["🥙"]) | ||
| 1545 | (":egg:" ["🥚"]) | ||
| 1546 | (":glass_of_milk:" ["🥛"]) | ||
| 1547 | (":peanuts:" ["🥜"]) | ||
| 1548 | (":kiwifruit:" ["🥝"]) | ||
| 1549 | (":pancakes:" ["🥞"]) | ||
| 1550 | (":dumpling:" ["🥟"]) | ||
| 1551 | (":fortune_cookie:" ["🥠"]) | ||
| 1552 | (":takeout_box:" ["🥡"]) | ||
| 1553 | (":chopsticks:" ["🥢"]) | ||
| 1554 | (":bowl_with_spoon:" ["🥣"]) | ||
| 1555 | (":cup_with_straw:" ["🥤"]) | ||
| 1556 | (":coconut:" ["🥥"]) | ||
| 1557 | (":broccoli:" ["🥦"]) | ||
| 1558 | (":pie:" ["🥧"]) | ||
| 1559 | (":pretzel:" ["🥨"]) | ||
| 1560 | (":cut_of_meat:" ["🥩"]) | ||
| 1561 | (":sandwich:" ["🥪"]) | ||
| 1562 | (":canned_food:" ["🥫"]) | ||
| 1563 | (":leafy_green:" ["🥬"]) | ||
| 1564 | (":mango:" ["🥭"]) | ||
| 1565 | (":moon_cake:" ["🥮"]) | ||
| 1566 | (":bagel:" ["🥯"]) | ||
| 1567 | (":smiling_face_with_3_hearts:" ["🥰"]) | ||
| 1568 | (":yawning_face:" ["🥱"]) | ||
| 1569 | (":smiling_face_with_tear:" ["🥲"]) | ||
| 1570 | (":partying_face:" ["🥳"]) | ||
| 1571 | (":woozy_face:" ["🥴"]) | ||
| 1572 | (":hot_face:" ["🥵"]) | ||
| 1573 | (":cold_face:" ["🥶"]) | ||
| 1574 | (":ninja:" ["🥷"]) | ||
| 1575 | (":disguised_face:" ["🥸"]) | ||
| 1576 | (":pleading_face:" ["🥺"]) | ||
| 1577 | (":sari:" ["🥻"]) | ||
| 1578 | (":lab_coat:" ["🥼"]) | ||
| 1579 | (":goggles:" ["🥽"]) | ||
| 1580 | (":hiking_boot:" ["🥾"]) | ||
| 1581 | (":womans_flat_shoe:" ["🥿"]) | ||
| 1582 | (":crab:" ["🦀"]) | ||
| 1583 | (":lion_face:" ["🦁"]) | ||
| 1584 | (":scorpion:" ["🦂"]) | ||
| 1585 | (":turkey:" ["🦃"]) | ||
| 1586 | (":unicorn_face:" ["🦄"]) | ||
| 1587 | (":eagle:" ["🦅"]) | ||
| 1588 | (":duck:" ["🦆"]) | ||
| 1589 | (":bat:" ["🦇"]) | ||
| 1590 | (":shark:" ["🦈"]) | ||
| 1591 | (":owl:" ["🦉"]) | ||
| 1592 | (":fox_face:" ["🦊"]) | ||
| 1593 | (":butterfly:" ["🦋"]) | ||
| 1594 | (":deer:" ["🦌"]) | ||
| 1595 | (":gorilla:" ["🦍"]) | ||
| 1596 | (":lizard:" ["🦎"]) | ||
| 1597 | (":rhinoceros:" ["🦏"]) | ||
| 1598 | (":shrimp:" ["🦐"]) | ||
| 1599 | (":squid:" ["🦑"]) | ||
| 1600 | (":giraffe_face:" ["🦒"]) | ||
| 1601 | (":zebra_face:" ["🦓"]) | ||
| 1602 | (":hedgehog:" ["🦔"]) | ||
| 1603 | (":sauropod:" ["🦕"]) | ||
| 1604 | (":t-rex:" ["🦖"]) | ||
| 1605 | (":cricket:" ["🦗"]) | ||
| 1606 | (":kangaroo:" ["🦘"]) | ||
| 1607 | (":llama:" ["🦙"]) | ||
| 1608 | (":peacock:" ["🦚"]) | ||
| 1609 | (":hippopotamus:" ["🦛"]) | ||
| 1610 | (":parrot:" ["🦜"]) | ||
| 1611 | (":raccoon:" ["🦝"]) | ||
| 1612 | (":lobster:" ["🦞"]) | ||
| 1613 | (":mosquito:" ["🦟"]) | ||
| 1614 | (":microbe:" ["🦠"]) | ||
| 1615 | (":badger:" ["🦡"]) | ||
| 1616 | (":swan:" ["🦢"]) | ||
| 1617 | (":mammoth:" ["🦣"]) | ||
| 1618 | (":dodo:" ["🦤"]) | ||
| 1619 | (":sloth:" ["🦥"]) | ||
| 1620 | (":otter:" ["🦦"]) | ||
| 1621 | (":orangutan:" ["🦧"]) | ||
| 1622 | (":skunk:" ["🦨"]) | ||
| 1623 | (":flamingo:" ["🦩"]) | ||
| 1624 | (":oyster:" ["🦪"]) | ||
| 1625 | (":beaver:" ["🦫"]) | ||
| 1626 | (":bison:" ["🦬"]) | ||
| 1627 | (":seal:" ["🦭"]) | ||
| 1628 | (":guide_dog:" ["🦮"]) | ||
| 1629 | (":probing_cane:" ["🦯"]) | ||
| 1630 | (":bone:" ["🦴"]) | ||
| 1631 | (":leg:" ["🦵"]) | ||
| 1632 | (":foot:" ["🦶"]) | ||
| 1633 | (":tooth:" ["🦷"]) | ||
| 1634 | (":female_superhero:" ["🦸♀️"]) | ||
| 1635 | (":male_superhero:" ["🦸♂️"]) | ||
| 1636 | (":superhero:" ["🦸"]) | ||
| 1637 | (":female_supervillain:" ["🦹♀️"]) | ||
| 1638 | (":male_supervillain:" ["🦹♂️"]) | ||
| 1639 | (":supervillain:" ["🦹"]) | ||
| 1640 | (":safety_vest:" ["🦺"]) | ||
| 1641 | (":ear_with_hearing_aid:" ["🦻"]) | ||
| 1642 | (":motorized_wheelchair:" ["🦼"]) | ||
| 1643 | (":manual_wheelchair:" ["🦽"]) | ||
| 1644 | (":mechanical_arm:" ["🦾"]) | ||
| 1645 | (":mechanical_leg:" ["🦿"]) | ||
| 1646 | (":cheese_wedge:" ["🧀"]) | ||
| 1647 | (":cupcake:" ["🧁"]) | ||
| 1648 | (":salt:" ["🧂"]) | ||
| 1649 | (":beverage_box:" ["🧃"]) | ||
| 1650 | (":garlic:" ["🧄"]) | ||
| 1651 | (":onion:" ["🧅"]) | ||
| 1652 | (":falafel:" ["🧆"]) | ||
| 1653 | (":waffle:" ["🧇"]) | ||
| 1654 | (":butter:" ["🧈"]) | ||
| 1655 | (":mate_drink:" ["🧉"]) | ||
| 1656 | (":ice_cube:" ["🧊"]) | ||
| 1657 | (":bubble_tea:" ["🧋"]) | ||
| 1658 | (":woman_standing:" ["🧍♀️"]) | ||
| 1659 | (":man_standing:" ["🧍♂️"]) | ||
| 1660 | (":standing_person:" ["🧍"]) | ||
| 1661 | (":woman_kneeling:" ["🧎♀️"]) | ||
| 1662 | (":man_kneeling:" ["🧎♂️"]) | ||
| 1663 | (":kneeling_person:" ["🧎"]) | ||
| 1664 | (":deaf_woman:" ["🧏♀️"]) | ||
| 1665 | (":deaf_man:" ["🧏♂️"]) | ||
| 1666 | (":deaf_person:" ["🧏"]) | ||
| 1667 | (":face_with_monocle:" ["🧐"]) | ||
| 1668 | (":farmer:" ["🧑🌾"]) | ||
| 1669 | (":cook:" ["🧑🍳"]) | ||
| 1670 | (":person_feeding_baby:" ["🧑🍼"]) | ||
| 1671 | (":mx_claus:" ["🧑🎄"]) | ||
| 1672 | (":student:" ["🧑🎓"]) | ||
| 1673 | (":singer:" ["🧑🎤"]) | ||
| 1674 | (":artist:" ["🧑🎨"]) | ||
| 1675 | (":teacher:" ["🧑🏫"]) | ||
| 1676 | (":factory_worker:" ["🧑🏭"]) | ||
| 1677 | (":technologist:" ["🧑💻"]) | ||
| 1678 | (":office_worker:" ["🧑💼"]) | ||
| 1679 | (":mechanic:" ["🧑🔧"]) | ||
| 1680 | (":scientist:" ["🧑🔬"]) | ||
| 1681 | (":astronaut:" ["🧑🚀"]) | ||
| 1682 | (":firefighter:" ["🧑🚒"]) | ||
| 1683 | (":people_holding_hands:" ["🧑🤝🧑"]) | ||
| 1684 | (":person_with_probing_cane:" ["🧑🦯"]) | ||
| 1685 | (":red_haired_person:" ["🧑🦰"]) | ||
| 1686 | (":curly_haired_person:" ["🧑🦱"]) | ||
| 1687 | (":bald_person:" ["🧑🦲"]) | ||
| 1688 | (":white_haired_person:" ["🧑🦳"]) | ||
| 1689 | (":person_in_motorized_wheelchair:" ["🧑🦼"]) | ||
| 1690 | (":person_in_manual_wheelchair:" ["🧑🦽"]) | ||
| 1691 | (":health_worker:" ["🧑⚕️"]) | ||
| 1692 | (":judge:" ["🧑⚖️"]) | ||
| 1693 | (":pilot:" ["🧑✈️"]) | ||
| 1694 | (":adult:" ["🧑"]) | ||
| 1695 | (":child:" ["🧒"]) | ||
| 1696 | (":older_adult:" ["🧓"]) | ||
| 1697 | (":woman_with_beard:" ["🧔♀️"]) | ||
| 1698 | (":man_with_beard:" ["🧔♂️"]) | ||
| 1699 | (":bearded_person:" ["🧔"]) | ||
| 1700 | (":person_with_headscarf:" ["🧕"]) | ||
| 1701 | (":woman_in_steamy_room:" ["🧖♀️"]) | ||
| 1702 | (":man_in_steamy_room:" ["🧖♂️"]) | ||
| 1703 | (":person_in_steamy_room:" ["🧖"]) | ||
| 1704 | (":woman_climbing:" ["🧗♀️"]) | ||
| 1705 | (":man_climbing:" ["🧗♂️"]) | ||
| 1706 | (":person_climbing:" ["🧗"]) | ||
| 1707 | (":woman_in_lotus_position:" ["🧘♀️"]) | ||
| 1708 | (":man_in_lotus_position:" ["🧘♂️"]) | ||
| 1709 | (":person_in_lotus_position:" ["🧘"]) | ||
| 1710 | (":female_mage:" ["🧙♀️"]) | ||
| 1711 | (":male_mage:" ["🧙♂️"]) | ||
| 1712 | (":mage:" ["🧙"]) | ||
| 1713 | (":female_fairy:" ["🧚♀️"]) | ||
| 1714 | (":male_fairy:" ["🧚♂️"]) | ||
| 1715 | (":fairy:" ["🧚"]) | ||
| 1716 | (":female_vampire:" ["🧛♀️"]) | ||
| 1717 | (":male_vampire:" ["🧛♂️"]) | ||
| 1718 | (":vampire:" ["🧛"]) | ||
| 1719 | (":mermaid:" ["🧜♀️"]) | ||
| 1720 | (":merman:" ["🧜♂️"]) | ||
| 1721 | (":merperson:" ["🧜"]) | ||
| 1722 | (":female_elf:" ["🧝♀️"]) | ||
| 1723 | (":male_elf:" ["🧝♂️"]) | ||
| 1724 | (":elf:" ["🧝"]) | ||
| 1725 | (":female_genie:" ["🧞♀️"]) | ||
| 1726 | (":male_genie:" ["🧞♂️"]) | ||
| 1727 | (":genie:" ["🧞"]) | ||
| 1728 | (":female_zombie:" ["🧟♀️"]) | ||
| 1729 | (":male_zombie:" ["🧟♂️"]) | ||
| 1730 | (":zombie:" ["🧟"]) | ||
| 1731 | (":brain:" ["🧠"]) | ||
| 1732 | (":orange_heart:" ["🧡"]) | ||
| 1733 | (":billed_cap:" ["🧢"]) | ||
| 1734 | (":scarf:" ["🧣"]) | ||
| 1735 | (":gloves:" ["🧤"]) | ||
| 1736 | (":coat:" ["🧥"]) | ||
| 1737 | (":socks:" ["🧦"]) | ||
| 1738 | (":red_envelope:" ["🧧"]) | ||
| 1739 | (":firecracker:" ["🧨"]) | ||
| 1740 | (":jigsaw:" ["🧩"]) | ||
| 1741 | (":test_tube:" ["🧪"]) | ||
| 1742 | (":petri_dish:" ["🧫"]) | ||
| 1743 | (":dna:" ["🧬"]) | ||
| 1744 | (":compass:" ["🧭"]) | ||
| 1745 | (":abacus:" ["🧮"]) | ||
| 1746 | (":fire_extinguisher:" ["🧯"]) | ||
| 1747 | (":toolbox:" ["🧰"]) | ||
| 1748 | (":bricks:" ["🧱"]) | ||
| 1749 | (":magnet:" ["🧲"]) | ||
| 1750 | (":luggage:" ["🧳"]) | ||
| 1751 | (":lotion_bottle:" ["🧴"]) | ||
| 1752 | (":thread:" ["🧵"]) | ||
| 1753 | (":yarn:" ["🧶"]) | ||
| 1754 | (":safety_pin:" ["🧷"]) | ||
| 1755 | (":teddy_bear:" ["🧸"]) | ||
| 1756 | (":broom:" ["🧹"]) | ||
| 1757 | (":basket:" ["🧺"]) | ||
| 1758 | (":roll_of_paper:" ["🧻"]) | ||
| 1759 | (":soap:" ["🧼"]) | ||
| 1760 | (":sponge:" ["🧽"]) | ||
| 1761 | (":receipt:" ["🧾"]) | ||
| 1762 | (":nazar_amulet:" ["🧿"]) | ||
| 1763 | (":ballet_shoes:" ["🩰"]) | ||
| 1764 | (":one-piece_swimsuit:" ["🩱"]) | ||
| 1765 | (":briefs:" ["🩲"]) | ||
| 1766 | (":shorts:" ["🩳"]) | ||
| 1767 | (":thong_sandal:" ["🩴"]) | ||
| 1768 | (":drop_of_blood:" ["🩸"]) | ||
| 1769 | (":adhesive_bandage:" ["🩹"]) | ||
| 1770 | (":stethoscope:" ["🩺"]) | ||
| 1771 | (":yo-yo:" ["🪀"]) | ||
| 1772 | (":kite:" ["🪁"]) | ||
| 1773 | (":parachute:" ["🪂"]) | ||
| 1774 | (":boomerang:" ["🪃"]) | ||
| 1775 | (":magic_wand:" ["🪄"]) | ||
| 1776 | (":pinata:" ["🪅"]) | ||
| 1777 | (":nesting_dolls:" ["🪆"]) | ||
| 1778 | (":ringed_planet:" ["🪐"]) | ||
| 1779 | (":chair:" ["🪑"]) | ||
| 1780 | (":razor:" ["🪒"]) | ||
| 1781 | (":axe:" ["🪓"]) | ||
| 1782 | (":diya_lamp:" ["🪔"]) | ||
| 1783 | (":banjo:" ["🪕"]) | ||
| 1784 | (":military_helmet:" ["🪖"]) | ||
| 1785 | (":accordion:" ["🪗"]) | ||
| 1786 | (":long_drum:" ["🪘"]) | ||
| 1787 | (":coin:" ["🪙"]) | ||
| 1788 | (":carpentry_saw:" ["🪚"]) | ||
| 1789 | (":screwdriver:" ["🪛"]) | ||
| 1790 | (":ladder:" ["🪜"]) | ||
| 1791 | (":hook:" ["🪝"]) | ||
| 1792 | (":mirror:" ["🪞"]) | ||
| 1793 | (":window:" ["🪟"]) | ||
| 1794 | (":plunger:" ["🪠"]) | ||
| 1795 | (":sewing_needle:" ["🪡"]) | ||
| 1796 | (":knot:" ["🪢"]) | ||
| 1797 | (":bucket:" ["🪣"]) | ||
| 1798 | (":mouse_trap:" ["🪤"]) | ||
| 1799 | (":toothbrush:" ["🪥"]) | ||
| 1800 | (":headstone:" ["🪦"]) | ||
| 1801 | (":placard:" ["🪧"]) | ||
| 1802 | (":rock:" ["🪨"]) | ||
| 1803 | (":fly:" ["🪰"]) | ||
| 1804 | (":worm:" ["🪱"]) | ||
| 1805 | (":beetle:" ["🪲"]) | ||
| 1806 | (":cockroach:" ["🪳"]) | ||
| 1807 | (":potted_plant:" ["🪴"]) | ||
| 1808 | (":wood:" ["🪵"]) | ||
| 1809 | (":feather:" ["🪶"]) | ||
| 1810 | (":anatomical_heart:" ["🫀"]) | ||
| 1811 | (":lungs:" ["🫁"]) | ||
| 1812 | (":people_hugging:" ["🫂"]) | ||
| 1813 | (":blueberries:" ["🫐"]) | ||
| 1814 | (":bell_pepper:" ["🫑"]) | ||
| 1815 | (":olive:" ["🫒"]) | ||
| 1816 | (":flatbread:" ["🫓"]) | ||
| 1817 | (":tamale:" ["🫔"]) | ||
| 1818 | (":fondue:" ["🫕"]) | ||
| 1819 | (":teapot:" ["🫖"]) | ||
| 1820 | (":bangbang:" ["‼️"]) | ||
| 1821 | (":interrobang:" ["⁉️"]) | ||
| 1822 | (":tm:" ["™️"]) | ||
| 1823 | (":information_source:" ["ℹ️"]) | ||
| 1824 | (":left_right_arrow:" ["↔️"]) | ||
| 1825 | (":arrow_up_down:" ["↕️"]) | ||
| 1826 | (":arrow_upper_left:" ["↖️"]) | ||
| 1827 | (":arrow_upper_right:" ["↗️"]) | ||
| 1828 | (":arrow_lower_right:" ["↘️"]) | ||
| 1829 | (":arrow_lower_left:" ["↙️"]) | ||
| 1830 | (":leftwards_arrow_with_hook:" ["↩️"]) | ||
| 1831 | (":arrow_right_hook:" ["↪️"]) | ||
| 1832 | (":watch:" ["⌚"]) | ||
| 1833 | (":hourglass:" ["⌛"]) | ||
| 1834 | (":keyboard:" ["⌨️"]) | ||
| 1835 | (":eject:" ["⏏️"]) | ||
| 1836 | (":fast_forward:" ["⏩"]) | ||
| 1837 | (":rewind:" ["⏪"]) | ||
| 1838 | (":arrow_double_up:" ["⏫"]) | ||
| 1839 | (":arrow_double_down:" ["⏬"]) | ||
| 1840 | (":black_right_pointing_double_triangle_with_vertical_bar:" ["⏭️"]) | ||
| 1841 | (":black_left_pointing_double_triangle_with_vertical_bar:" ["⏮️"]) | ||
| 1842 | (":black_right_pointing_triangle_with_double_vertical_bar:" ["⏯️"]) | ||
| 1843 | (":alarm_clock:" ["⏰"]) | ||
| 1844 | (":stopwatch:" ["⏱️"]) | ||
| 1845 | (":timer_clock:" ["⏲️"]) | ||
| 1846 | (":hourglass_flowing_sand:" ["⏳"]) | ||
| 1847 | (":double_vertical_bar:" ["⏸️"]) | ||
| 1848 | (":black_square_for_stop:" ["⏹️"]) | ||
| 1849 | (":black_circle_for_record:" ["⏺️"]) | ||
| 1850 | (":m:" ["Ⓜ️"]) | ||
| 1851 | (":black_small_square:" ["▪️"]) | ||
| 1852 | (":white_small_square:" ["▫️"]) | ||
| 1853 | (":arrow_forward:" ["▶️"]) | ||
| 1854 | (":arrow_backward:" ["◀️"]) | ||
| 1855 | (":white_medium_square:" ["◻️"]) | ||
| 1856 | (":black_medium_square:" ["◼️"]) | ||
| 1857 | (":white_medium_small_square:" ["◽"]) | ||
| 1858 | (":black_medium_small_square:" ["◾"]) | ||
| 1859 | (":sunny:" ["☀️"]) | ||
| 1860 | (":cloud:" ["☁️"]) | ||
| 1861 | (":umbrella:" ["☂️"]) | ||
| 1862 | (":snowman:" ["☃️"]) | ||
| 1863 | (":comet:" ["☄️"]) | ||
| 1864 | (":phone:" ["☎️"]) | ||
| 1865 | (":telephone:" ["☎️"]) | ||
| 1866 | (":ballot_box_with_check:" ["☑️"]) | ||
| 1867 | (":umbrella_with_rain_drops:" ["☔"]) | ||
| 1868 | (":coffee:" ["☕"]) | ||
| 1869 | (":shamrock:" ["☘️"]) | ||
| 1870 | (":point_up:" ["☝️"]) | ||
| 1871 | (":skull_and_crossbones:" ["☠️"]) | ||
| 1872 | (":radioactive_sign:" ["☢️"]) | ||
| 1873 | (":biohazard_sign:" ["☣️"]) | ||
| 1874 | (":orthodox_cross:" ["☦️"]) | ||
| 1875 | (":star_and_crescent:" ["☪️"]) | ||
| 1876 | (":peace_symbol:" ["☮️"]) | ||
| 1877 | (":yin_yang:" ["☯️"]) | ||
| 1878 | (":wheel_of_dharma:" ["☸️"]) | ||
| 1879 | (":white_frowning_face:" ["☹️"]) | ||
| 1880 | (":relaxed:" ["☺️"]) | ||
| 1881 | (":female_sign:" ["♀️"]) | ||
| 1882 | (":male_sign:" ["♂️"]) | ||
| 1883 | (":aries:" ["♈"]) | ||
| 1884 | (":taurus:" ["♉"]) | ||
| 1885 | (":gemini:" ["♊"]) | ||
| 1886 | (":cancer:" ["♋"]) | ||
| 1887 | (":leo:" ["♌"]) | ||
| 1888 | (":virgo:" ["♍"]) | ||
| 1889 | (":libra:" ["♎"]) | ||
| 1890 | (":scorpius:" ["♏"]) | ||
| 1891 | (":sagittarius:" ["♐"]) | ||
| 1892 | (":capricorn:" ["♑"]) | ||
| 1893 | (":aquarius:" ["♒"]) | ||
| 1894 | (":pisces:" ["♓"]) | ||
| 1895 | (":chess_pawn:" ["♟️"]) | ||
| 1896 | (":spades:" ["♠️"]) | ||
| 1897 | (":clubs:" ["♣️"]) | ||
| 1898 | (":hearts:" ["♥️"]) | ||
| 1899 | (":diamonds:" ["♦️"]) | ||
| 1900 | (":hotsprings:" ["♨️"]) | ||
| 1901 | (":recycle:" ["♻️"]) | ||
| 1902 | (":infinity:" ["♾️"]) | ||
| 1903 | (":wheelchair:" ["♿"]) | ||
| 1904 | (":hammer_and_pick:" ["⚒️"]) | ||
| 1905 | (":anchor:" ["⚓"]) | ||
| 1906 | (":crossed_swords:" ["⚔️"]) | ||
| 1907 | (":medical_symbol:" ["⚕️"]) | ||
| 1908 | (":staff_of_aesculapius:" ["⚕️"]) | ||
| 1909 | (":scales:" ["⚖️"]) | ||
| 1910 | (":alembic:" ["⚗️"]) | ||
| 1911 | (":gear:" ["⚙️"]) | ||
| 1912 | (":atom_symbol:" ["⚛️"]) | ||
| 1913 | (":fleur_de_lis:" ["⚜️"]) | ||
| 1914 | (":warning:" ["⚠️"]) | ||
| 1915 | (":zap:" ["⚡"]) | ||
| 1916 | (":transgender_symbol:" ["⚧️"]) | ||
| 1917 | (":white_circle:" ["⚪"]) | ||
| 1918 | (":black_circle:" ["⚫"]) | ||
| 1919 | (":coffin:" ["⚰️"]) | ||
| 1920 | (":funeral_urn:" ["⚱️"]) | ||
| 1921 | (":soccer:" ["⚽"]) | ||
| 1922 | (":baseball:" ["⚾"]) | ||
| 1923 | (":snowman_without_snow:" ["⛄"]) | ||
| 1924 | (":partly_sunny:" ["⛅"]) | ||
| 1925 | (":thunder_cloud_and_rain:" ["⛈️"]) | ||
| 1926 | (":ophiuchus:" ["⛎"]) | ||
| 1927 | (":pick:" ["⛏️"]) | ||
| 1928 | (":helmet_with_white_cross:" ["⛑️"]) | ||
| 1929 | (":chains:" ["⛓️"]) | ||
| 1930 | (":no_entry:" ["⛔"]) | ||
| 1931 | (":shinto_shrine:" ["⛩️"]) | ||
| 1932 | (":church:" ["⛪"]) | ||
| 1933 | (":mountain:" ["⛰️"]) | ||
| 1934 | (":umbrella_on_ground:" ["⛱️"]) | ||
| 1935 | (":fountain:" ["⛲"]) | ||
| 1936 | (":golf:" ["⛳"]) | ||
| 1937 | (":ferry:" ["⛴️"]) | ||
| 1938 | (":boat:" ["⛵"]) | ||
| 1939 | (":sailboat:" ["⛵"]) | ||
| 1940 | (":skier:" ["⛷️"]) | ||
| 1941 | (":ice_skate:" ["⛸️"]) | ||
| 1942 | (":woman-bouncing-ball:" ["⛹️♀️"]) | ||
| 1943 | (":man-bouncing-ball:" ["⛹️♂️"]) | ||
| 1944 | (":person_with_ball:" ["⛹️"]) | ||
| 1945 | (":tent:" ["⛺"]) | ||
| 1946 | (":fuelpump:" ["⛽"]) | ||
| 1947 | (":scissors:" ["✂️"]) | ||
| 1948 | (":white_check_mark:" ["✅"]) | ||
| 1949 | (":airplane:" ["✈️"]) | ||
| 1950 | (":email:" ["✉️"]) | ||
| 1951 | (":envelope:" ["✉️"]) | ||
| 1952 | (":fist:" ["✊"]) | ||
| 1953 | (":hand:" ["✋"]) | ||
| 1954 | (":raised_hand:" ["✋"]) | ||
| 1955 | (":v:" ["✌️"]) | ||
| 1956 | (":writing_hand:" ["✍️"]) | ||
| 1957 | (":pencil2:" ["✏️"]) | ||
| 1958 | (":black_nib:" ["✒️"]) | ||
| 1959 | (":heavy_check_mark:" ["✔️"]) | ||
| 1960 | (":heavy_multiplication_x:" ["✖️"]) | ||
| 1961 | (":latin_cross:" ["✝️"]) | ||
| 1962 | (":star_of_david:" ["✡️"]) | ||
| 1963 | (":sparkles:" ["✨"]) | ||
| 1964 | (":eight_spoked_asterisk:" ["✳️"]) | ||
| 1965 | (":eight_pointed_black_star:" ["✴️"]) | ||
| 1966 | (":snowflake:" ["❄️"]) | ||
| 1967 | (":sparkle:" ["❇️"]) | ||
| 1968 | (":x:" ["❌"]) | ||
| 1969 | (":negative_squared_cross_mark:" ["❎"]) | ||
| 1970 | (":question:" ["❓"]) | ||
| 1971 | (":grey_question:" ["❔"]) | ||
| 1972 | (":grey_exclamation:" ["❕"]) | ||
| 1973 | (":exclamation:" ["❗"]) | ||
| 1974 | (":heavy_exclamation_mark:" ["❗"]) | ||
| 1975 | (":heavy_heart_exclamation_mark_ornament:" ["❣️"]) | ||
| 1976 | (":heart_on_fire:" ["❤️🔥"]) | ||
| 1977 | (":mending_heart:" ["❤️🩹"]) | ||
| 1978 | (":heart:" ["❤️"]) | ||
| 1979 | ("<3" ["❤️"]) | ||
| 1980 | (":heavy_plus_sign:" ["➕"]) | ||
| 1981 | (":heavy_minus_sign:" ["➖"]) | ||
| 1982 | (":heavy_division_sign:" ["➗"]) | ||
| 1983 | (":arrow_right:" ["➡️"]) | ||
| 1984 | (":curly_loop:" ["➰"]) | ||
| 1985 | (":loop:" ["➿"]) | ||
| 1986 | (":arrow_heading_up:" ["⤴️"]) | ||
| 1987 | (":arrow_heading_down:" ["⤵️"]) | ||
| 1988 | (":arrow_left:" ["⬅️"]) | ||
| 1989 | (":arrow_up:" ["⬆️"]) | ||
| 1990 | (":arrow_down:" ["⬇️"]) | ||
| 1991 | (":black_large_square:" ["⬛"]) | ||
| 1992 | (":white_large_square:" ["⬜"]) | ||
| 1993 | (":star:" ["⭐"]) | ||
| 1994 | (":o:" ["⭕"]) | ||
| 1995 | (":wavy_dash:" ["〰️"]) | ||
| 1996 | (":part_alternation_mark:" ["〽️"]) | ||
| 1997 | (":congratulations:" ["㊗️"]) | ||
| 1998 | (":secret:" ["㊙️"]))))))) | ||
| 1999 | |||
| 2000 | (emoji--define-rules) | ||
| 2001 | |||
| 2002 | (provide 'emoji) | ||
| 2003 | ;;; emoji.el ends here | ||