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 /lisp | |
| parent | ecbe80198951093edd98e5c2f41798ac7b0dc5ad (diff) | |
| download | emacs-c1f9db475828db39b06da08064f868f9519b0b8f.tar.gz emacs-c1f9db475828db39b06da08064f868f9519b0b8f.zip | |
* lisp/leim/quail/emoji.el: New file (bug#52605).
Diffstat (limited to 'lisp')
| -rw-r--r-- | lisp/leim/quail/emoji.el | 2003 |
1 files changed, 2003 insertions, 0 deletions
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 | ||