From d14ebc4cc7edc7f966b90aae87c458d008a849f6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Benedikt=20Gro=C3=9F?= Date: Wed, 4 Jul 2018 09:14:58 +0200 Subject: [PATCH 1/4] WIP: first proof of concept auto generating skintones variants with JSDOM --- helpers/create-skintones-svg.js | 20 + package-lock.json | 683 +++++++++++++++++++++++++++++--- package.json | 1 + 3 files changed, 646 insertions(+), 58 deletions(-) create mode 100644 helpers/create-skintones-svg.js diff --git a/helpers/create-skintones-svg.js b/helpers/create-skintones-svg.js new file mode 100644 index 000000000..c1bb280a6 --- /dev/null +++ b/helpers/create-skintones-svg.js @@ -0,0 +1,20 @@ +const fs = require('fs'); +var JSDOM = require('jsdom').JSDOM; + +const fitzpatrick = ['#FADCBC', '#E0BB95', '#BF8F68', '#9B643D', '#594539']; + +const writeSvg = (filePath, data) => { + const head = '' + '\n'; + fs.writeFileSync(filePath, head + data); +} + +const dom = new JSDOM(fs.readFileSync('./color/svg/1F60A.svg', 'utf8')); +const doc = dom.window.document; + +const fillSkins = doc.querySelectorAll('[fill*="#FCEA2B" i]'); +fitzpatrick.forEach((skintone, i) => { + fillSkins.forEach(s => { + s.setAttribute('fill', skintone); + }); + writeSvg('/Users/bene/Desktop/1F60A_skin_'+i+'.svg', doc.querySelector('svg').outerHTML); +}); diff --git a/package-lock.json b/package-lock.json index 2633fa0d9..6196d6bed 100644 --- a/package-lock.json +++ b/package-lock.json @@ -4,6 +4,35 @@ "lockfileVersion": 1, "requires": true, "dependencies": { + "abab": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/abab/-/abab-1.0.4.tgz", + "integrity": "sha1-X6rZwsB/YN12dw9xzwJbYqY8/U4=" + }, + "acorn": { + "version": "5.7.1", + "resolved": "https://registry.npmjs.org/acorn/-/acorn-5.7.1.tgz", + "integrity": "sha512-d+nbxBUGKg7Arpsvbnlq61mc12ek3EY8EQldM3GPAhWJ1UVxC6TDGbIvUMNU6obBX3i1+ptCIzV4vq0gFPEGVQ==" + }, + "acorn-globals": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/acorn-globals/-/acorn-globals-4.1.0.tgz", + "integrity": "sha512-KjZwU26uG3u6eZcfGbTULzFcsoz6pegNKtHPksZPOUsiKo5bUmiBPa38FuHZ/Eun+XYh/JCCkS9AS3Lu4McQOQ==", + "requires": { + "acorn": "5.7.1" + } + }, + "ajv": { + "version": "5.5.2", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-5.5.2.tgz", + "integrity": "sha1-c7Xuyj+rZT49P5Qis0GtQiBdyWU=", + "requires": { + "co": "4.6.0", + "fast-deep-equal": "1.1.0", + "fast-json-stable-stringify": "2.0.0", + "json-schema-traverse": "0.3.1" + } + }, "argparse": { "version": "1.0.9", "resolved": "https://registry.npmjs.org/argparse/-/argparse-1.0.9.tgz", @@ -12,11 +41,55 @@ "sprintf-js": "1.0.3" } }, + "array-equal": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/array-equal/-/array-equal-1.0.0.tgz", + "integrity": "sha1-jCpe8kcv2ep0KwTHenUJO6J1fJM=" + }, + "asn1": { + "version": "0.2.3", + "resolved": "https://registry.npmjs.org/asn1/-/asn1-0.2.3.tgz", + "integrity": "sha1-2sh4dxPJlmhJ/IGAd36+nB3fO4Y=" + }, + "assert-plus": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/assert-plus/-/assert-plus-1.0.0.tgz", + "integrity": "sha1-8S4PPF13sLHN2RRpQuTpbB5N1SU=" + }, + "async-limiter": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/async-limiter/-/async-limiter-1.0.0.tgz", + "integrity": "sha512-jp/uFnooOiO+L211eZOoSyzpOITMXx1rBITauYykG3BRYPu8h0UcxsPNB04RR5vo4Tyz3+ay17tR6JVf9qzYWg==" + }, + "asynckit": { + "version": "0.4.0", + "resolved": "https://registry.npmjs.org/asynckit/-/asynckit-0.4.0.tgz", + "integrity": "sha1-x57Zf380y48robyXkLzDZkdLS3k=" + }, + "aws-sign2": { + "version": "0.7.0", + "resolved": "https://registry.npmjs.org/aws-sign2/-/aws-sign2-0.7.0.tgz", + "integrity": "sha1-tG6JCTSpWR8tL2+G1+ap8bP+dqg=" + }, + "aws4": { + "version": "1.7.0", + "resolved": "https://registry.npmjs.org/aws4/-/aws4-1.7.0.tgz", + "integrity": "sha512-32NDda82rhwD9/JBCCkB+MRYDp0oSvlo2IL6rQWA10PQi7tDUM3eqMSltXmY+Oyl/7N3P3qNtAlv7X0d9bI28w==" + }, "balanced-match": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.0.tgz", "integrity": "sha1-ibTRmasr7kneFk6gK4nORi1xt2c=" }, + "bcrypt-pbkdf": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/bcrypt-pbkdf/-/bcrypt-pbkdf-1.0.2.tgz", + "integrity": "sha1-pDAdOJtqQ/m2f/PKEaP2Y342Dp4=", + "optional": true, + "requires": { + "tweetnacl": "0.14.5" + } + }, "brace-expansion": { "version": "1.1.11", "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", @@ -26,10 +99,28 @@ "concat-map": "0.0.1" } }, - "check-more-types": { - "version": "2.24.0", - "resolved": "https://registry.npmjs.org/check-more-types/-/check-more-types-2.24.0.tgz", - "integrity": "sha1-FCD/sQ/URNz8ebQ4kbv//TKoRgA=" + "browser-process-hrtime": { + "version": "0.1.2", + "resolved": "https://registry.npmjs.org/browser-process-hrtime/-/browser-process-hrtime-0.1.2.tgz", + "integrity": "sha1-Ql1opY00R/AqBKqJQYf86K+Le44=" + }, + "caseless": { + "version": "0.12.0", + "resolved": "https://registry.npmjs.org/caseless/-/caseless-0.12.0.tgz", + "integrity": "sha1-G2gcIf+EAzyCZUMJBolCDRhxUdw=" + }, + "co": { + "version": "4.6.0", + "resolved": "https://registry.npmjs.org/co/-/co-4.6.0.tgz", + "integrity": "sha1-bqa989hTrlTMuOR7+gvz+QMfsYQ=" + }, + "combined-stream": { + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/combined-stream/-/combined-stream-1.0.6.tgz", + "integrity": "sha1-cj599ugBrFYTETp+RFqbactjKBg=", + "requires": { + "delayed-stream": "1.0.0" + } }, "concat-map": { "version": "0.0.1", @@ -41,12 +132,17 @@ "resolved": "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.2.tgz", "integrity": "sha1-tf1UIgqivFq1eqtxQMlAdUUDwac=" }, - "csv-load-sync": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/csv-load-sync/-/csv-load-sync-1.0.0.tgz", - "integrity": "sha1-UoXKmTrgcngI9xfab0NisbYhQgU=", + "cssom": { + "version": "0.3.4", + "resolved": "https://registry.npmjs.org/cssom/-/cssom-0.3.4.tgz", + "integrity": "sha512-+7prCSORpXNeR4/fUP3rL+TzqtiFfhMvTd7uEqMdgPvLPt4+uzFUeufx5RHjGTACCargg/DiEt/moMQmvnfkog==" + }, + "cssstyle": { + "version": "0.3.1", + "resolved": "https://registry.npmjs.org/cssstyle/-/cssstyle-0.3.1.tgz", + "integrity": "sha512-tNvaxM5blOnxanyxI6panOsnfiyLRj3HV4qjqqS45WPNS1usdYWRUQjqTEEELK73lpeP/1KoIGYUwrBn/VcECA==", "requires": { - "check-more-types": "2.24.0" + "cssom": "0.3.4" } }, "csv-parse": { @@ -64,13 +160,49 @@ "ndjson": "1.5.0" } }, - "csvtojson": { - "version": "1.1.9", - "resolved": "https://registry.npmjs.org/csvtojson/-/csvtojson-1.1.9.tgz", - "integrity": "sha1-5kGucve8L6P5qvEn4CH8iUR8HNE=", + "dashdash": { + "version": "1.14.1", + "resolved": "https://registry.npmjs.org/dashdash/-/dashdash-1.14.1.tgz", + "integrity": "sha1-hTz6D3y+L+1d4gMmuN1YEDX24vA=", "requires": { - "lodash": "4.17.4", - "strip-bom": "1.0.0" + "assert-plus": "1.0.0" + } + }, + "data-urls": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/data-urls/-/data-urls-1.0.0.tgz", + "integrity": "sha512-ai40PPQR0Fn1lD2PPie79CibnlMN2AYiDhwFX/rZHVsxbs5kNJSjegqXIprhouGXlRdEnfybva7kqRGnB6mypA==", + "requires": { + "abab": "1.0.4", + "whatwg-mimetype": "2.1.0", + "whatwg-url": "6.5.0" + } + }, + "deep-is": { + "version": "0.1.3", + "resolved": "https://registry.npmjs.org/deep-is/-/deep-is-0.1.3.tgz", + "integrity": "sha1-s2nW+128E+7PUk+RsHD+7cNXzzQ=" + }, + "delayed-stream": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/delayed-stream/-/delayed-stream-1.0.0.tgz", + "integrity": "sha1-3zrhmayt+31ECqrgsp4icrJOxhk=" + }, + "domexception": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/domexception/-/domexception-1.0.1.tgz", + "integrity": "sha512-raigMkn7CJNNo6Ihro1fzG7wr3fHuYVytzquZKX5n0yizGsTcYgzdIUwj1X9pK0VvjeihV+XiclP+DjwbsSKug==", + "requires": { + "webidl-conversions": "4.0.2" + } + }, + "ecc-jsbn": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/ecc-jsbn/-/ecc-jsbn-0.1.1.tgz", + "integrity": "sha1-D8c6ntXw1Tw4GTOYUj735UN3dQU=", + "optional": true, + "requires": { + "jsbn": "0.1.1" } }, "emojibase-data": { @@ -78,21 +210,71 @@ "resolved": "https://registry.npmjs.org/emojibase-data/-/emojibase-data-3.0.0.tgz", "integrity": "sha1-crEsMWoQskLtaW1egCReNMh9/dQ=" }, - "first-chunk-stream": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/first-chunk-stream/-/first-chunk-stream-1.0.0.tgz", - "integrity": "sha1-Wb+1DNkF9g18OUzT2ayqtOatk04=" + "escodegen": { + "version": "1.10.0", + "resolved": "https://registry.npmjs.org/escodegen/-/escodegen-1.10.0.tgz", + "integrity": "sha512-fjUOf8johsv23WuIKdNQU4P9t9jhQ4Qzx6pC2uW890OloK3Zs1ZAoCNpg/2larNF501jLl3UNy0kIRcF6VI22g==", + "requires": { + "esprima": "3.1.3", + "estraverse": "4.2.0", + "esutils": "2.0.2", + "optionator": "0.8.2", + "source-map": "0.6.1" + } }, - "fs-sync": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/fs-sync/-/fs-sync-1.0.4.tgz", - "integrity": "sha1-L5Tq3jGGLsCp8zocJUbfsaPz0a4=", + "esprima": { + "version": "3.1.3", + "resolved": "https://registry.npmjs.org/esprima/-/esprima-3.1.3.tgz", + "integrity": "sha1-/cpRzuYTOJXjyI1TXOSdv/YqRjM=" + }, + "estraverse": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-4.2.0.tgz", + "integrity": "sha1-De4/7TH81GlhjOc0IJn8GvoL2xM=" + }, + "esutils": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/esutils/-/esutils-2.0.2.tgz", + "integrity": "sha1-Cr9PHKpbyx96nYrMbepPqqBLrJs=" + }, + "extend": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/extend/-/extend-3.0.1.tgz", + "integrity": "sha1-p1Xqe8Gt/MWjHOfnYtuq3F5jZEQ=" + }, + "extsprintf": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/extsprintf/-/extsprintf-1.3.0.tgz", + "integrity": "sha1-lpGEQOMEGnpBT4xS48V06zw+HgU=" + }, + "fast-deep-equal": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-1.1.0.tgz", + "integrity": "sha1-wFNHeBfIa1HaqFPIHgWbcz0CNhQ=" + }, + "fast-json-stable-stringify": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/fast-json-stable-stringify/-/fast-json-stable-stringify-2.0.0.tgz", + "integrity": "sha1-1RQsDK7msRifh9OnYREGT4bIu/I=" + }, + "fast-levenshtein": { + "version": "2.0.6", + "resolved": "https://registry.npmjs.org/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz", + "integrity": "sha1-PYpcZog6FqMMqGQ+hR8Zuqd5eRc=" + }, + "forever-agent": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/forever-agent/-/forever-agent-0.6.1.tgz", + "integrity": "sha1-+8cfDEGt6zf5bFd60e1C2P2sypE=" + }, + "form-data": { + "version": "2.3.2", + "resolved": "https://registry.npmjs.org/form-data/-/form-data-2.3.2.tgz", + "integrity": "sha1-SXBJi+YEwgwAXU9cI67NIda0kJk=", "requires": { - "glob": "7.1.2", - "iconv-lite": "0.4.19", - "lodash": "4.17.4", - "mkdirp": "0.5.1", - "rimraf": "2.6.2" + "asynckit": "0.4.0", + "combined-stream": "1.0.6", + "mime-types": "2.1.18" } }, "fs.realpath": { @@ -108,6 +290,14 @@ "is-property": "1.0.2" } }, + "getpass": { + "version": "0.1.7", + "resolved": "https://registry.npmjs.org/getpass/-/getpass-0.1.7.tgz", + "integrity": "sha1-Xv+OPmhNVprkyysSgmBOi6YhSfo=", + "requires": { + "assert-plus": "1.0.0" + } + }, "glob": { "version": "7.1.2", "resolved": "https://registry.npmjs.org/glob/-/glob-7.1.2.tgz", @@ -121,6 +311,38 @@ "path-is-absolute": "1.0.1" } }, + "har-schema": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/har-schema/-/har-schema-2.0.0.tgz", + "integrity": "sha1-qUwiJOvKwEeCoNkDVSHyRzW37JI=" + }, + "har-validator": { + "version": "5.0.3", + "resolved": "https://registry.npmjs.org/har-validator/-/har-validator-5.0.3.tgz", + "integrity": "sha1-ukAsJmGU8VlW7xXg/PJCmT9qff0=", + "requires": { + "ajv": "5.5.2", + "har-schema": "2.0.0" + } + }, + "html-encoding-sniffer": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/html-encoding-sniffer/-/html-encoding-sniffer-1.0.2.tgz", + "integrity": "sha512-71lZziiDnsuabfdYiUeWdCVyKuqwWi23L8YeIgV9jSSZHCtb6wB1BKWooH7L3tn4/FuZJMVWyNaIDr4RGmaSYw==", + "requires": { + "whatwg-encoding": "1.0.3" + } + }, + "http-signature": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/http-signature/-/http-signature-1.2.0.tgz", + "integrity": "sha1-muzZJRFHcvPZW2WmCruPfBj7rOE=", + "requires": { + "assert-plus": "1.0.0", + "jsprim": "1.4.1", + "sshpk": "1.14.2" + } + }, "iconv-lite": { "version": "0.4.19", "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.19.tgz", @@ -145,26 +367,130 @@ "resolved": "https://registry.npmjs.org/is-property/-/is-property-1.0.2.tgz", "integrity": "sha1-V/4cTkhHTt1lsJkR8msc1Ald2oQ=" }, - "is-utf8": { - "version": "0.2.1", - "resolved": "https://registry.npmjs.org/is-utf8/-/is-utf8-0.2.1.tgz", - "integrity": "sha1-Sw2hRCEE0bM2NA6AeX6GXPOffXI=" + "is-typedarray": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-typedarray/-/is-typedarray-1.0.0.tgz", + "integrity": "sha1-5HnICFjfDBsR3dppQPlgEfzaSpo=" }, "isarray": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz", "integrity": "sha1-u5NdSFgsuhaMBoNJV6VKPgcSTxE=" }, + "isstream": { + "version": "0.1.2", + "resolved": "https://registry.npmjs.org/isstream/-/isstream-0.1.2.tgz", + "integrity": "sha1-R+Y/evVa+m+S4VAOaQ64uFKcCZo=" + }, + "jsbn": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/jsbn/-/jsbn-0.1.1.tgz", + "integrity": "sha1-peZUwuWi3rXyAdls77yoDA7y9RM=", + "optional": true + }, + "jsdom": { + "version": "11.11.0", + "resolved": "https://registry.npmjs.org/jsdom/-/jsdom-11.11.0.tgz", + "integrity": "sha512-ou1VyfjwsSuWkudGxb03FotDajxAto6USAlmMZjE2lc0jCznt7sBWkhfRBRaWwbnmDqdMSTKTLT5d9sBFkkM7A==", + "requires": { + "abab": "1.0.4", + "acorn": "5.7.1", + "acorn-globals": "4.1.0", + "array-equal": "1.0.0", + "cssom": "0.3.4", + "cssstyle": "0.3.1", + "data-urls": "1.0.0", + "domexception": "1.0.1", + "escodegen": "1.10.0", + "html-encoding-sniffer": "1.0.2", + "left-pad": "1.3.0", + "nwsapi": "2.0.4", + "parse5": "4.0.0", + "pn": "1.1.0", + "request": "2.87.0", + "request-promise-native": "1.0.5", + "sax": "1.2.4", + "symbol-tree": "3.2.2", + "tough-cookie": "2.4.3", + "w3c-hr-time": "1.0.1", + "webidl-conversions": "4.0.2", + "whatwg-encoding": "1.0.3", + "whatwg-mimetype": "2.1.0", + "whatwg-url": "6.5.0", + "ws": "4.1.0", + "xml-name-validator": "3.0.0" + }, + "dependencies": { + "parse5": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/parse5/-/parse5-4.0.0.tgz", + "integrity": "sha512-VrZ7eOd3T1Fk4XWNXMgiGBK/z0MG48BWG2uQNU4I72fkQuKUTZpl+u9k+CxEG0twMVzSmXEEz12z5Fnw1jIQFA==" + } + } + }, + "json-schema": { + "version": "0.2.3", + "resolved": "https://registry.npmjs.org/json-schema/-/json-schema-0.2.3.tgz", + "integrity": "sha1-tIDIkuWaLwWVTOcnvT8qTogvnhM=" + }, + "json-schema-traverse": { + "version": "0.3.1", + "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.3.1.tgz", + "integrity": "sha1-NJptRMU6Ud6JtAgFxdXlm0F9M0A=" + }, "json-stringify-safe": { "version": "5.0.1", "resolved": "https://registry.npmjs.org/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz", "integrity": "sha1-Epai1Y/UXxmg9s4B1lcB4sc1tus=" }, + "jsprim": { + "version": "1.4.1", + "resolved": "https://registry.npmjs.org/jsprim/-/jsprim-1.4.1.tgz", + "integrity": "sha1-MT5mvB5cwG5Di8G3SZwuXFastqI=", + "requires": { + "assert-plus": "1.0.0", + "extsprintf": "1.3.0", + "json-schema": "0.2.3", + "verror": "1.10.0" + } + }, + "left-pad": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/left-pad/-/left-pad-1.3.0.tgz", + "integrity": "sha512-XI5MPzVNApjAyhQzphX8BkmKsKUxD4LdyK24iZeQGinBN9yTQT3bFlCBy/aVx2HrNcqQGsdot8ghrjyrvMCoEA==" + }, + "levn": { + "version": "0.3.0", + "resolved": "https://registry.npmjs.org/levn/-/levn-0.3.0.tgz", + "integrity": "sha1-OwmSTt+fCDwEkP3UwLxEIeBHZO4=", + "requires": { + "prelude-ls": "1.1.2", + "type-check": "0.3.2" + } + }, "lodash": { "version": "4.17.4", "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.4.tgz", "integrity": "sha1-eCA6TRwyiuHYbcpkYONptX9AVa4=" }, + "lodash.sortby": { + "version": "4.7.0", + "resolved": "https://registry.npmjs.org/lodash.sortby/-/lodash.sortby-4.7.0.tgz", + "integrity": "sha1-7dFMgk4sycHgsKG0K7UhBRakJDg=" + }, + "mime-db": { + "version": "1.33.0", + "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.33.0.tgz", + "integrity": "sha512-BHJ/EKruNIqJf/QahvxwQZXKygOQ256myeN/Ew+THcAa5q+PjyTTMMeNQC4DZw5AwfvelsUrA6B67NKMqXDbzQ==" + }, + "mime-types": { + "version": "2.1.18", + "resolved": "https://registry.npmjs.org/mime-types/-/mime-types-2.1.18.tgz", + "integrity": "sha512-lc/aahn+t4/SWV/qcmumYjymLsWfN3ELhpmVuUFjgsORruuZPVSwAQryq+HHGvO/SI2KVX26bx+En+zhM8g8hQ==", + "requires": { + "mime-db": "1.33.0" + } + }, "minimatch": { "version": "3.0.4", "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.0.4.tgz", @@ -173,19 +499,6 @@ "brace-expansion": "1.1.11" } }, - "minimist": { - "version": "0.0.8", - "resolved": "https://registry.npmjs.org/minimist/-/minimist-0.0.8.tgz", - "integrity": "sha1-hX/Kv8M5fSYluCKCYuhqp6ARsF0=" - }, - "mkdirp": { - "version": "0.5.1", - "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-0.5.1.tgz", - "integrity": "sha1-MAV0OOrGz3+MR2fzhkjWaX11yQM=", - "requires": { - "minimist": "0.0.8" - } - }, "ndjson": { "version": "1.5.0", "resolved": "https://registry.npmjs.org/ndjson/-/ndjson-1.5.0.tgz", @@ -204,6 +517,16 @@ } } }, + "nwsapi": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/nwsapi/-/nwsapi-2.0.4.tgz", + "integrity": "sha512-Zt6HRR6RcJkuj5/N9zeE7FN6YitRW//hK2wTOwX274IBphbY3Zf5+yn5mZ9v/SzAOTMjQNxZf9KkmPLWn0cV4g==" + }, + "oauth-sign": { + "version": "0.8.2", + "resolved": "https://registry.npmjs.org/oauth-sign/-/oauth-sign-0.8.2.tgz", + "integrity": "sha1-Rqarfwrq2N6unsBWV4C31O/rnUM=" + }, "once": { "version": "1.4.0", "resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz", @@ -212,16 +535,59 @@ "wrappy": "1.0.2" } }, + "optionator": { + "version": "0.8.2", + "resolved": "https://registry.npmjs.org/optionator/-/optionator-0.8.2.tgz", + "integrity": "sha1-NkxeQJ0/TWMB1sC0wFu6UBgK62Q=", + "requires": { + "deep-is": "0.1.3", + "fast-levenshtein": "2.0.6", + "levn": "0.3.0", + "prelude-ls": "1.1.2", + "type-check": "0.3.2", + "wordwrap": "1.0.0" + } + }, "path-is-absolute": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz", "integrity": "sha1-F0uSaHNVNP+8es5r9TpanhtcX18=" }, + "performance-now": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/performance-now/-/performance-now-2.1.0.tgz", + "integrity": "sha1-Ywn04OX6kT7BxpMHrjZLSzd8nns=" + }, + "pn": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/pn/-/pn-1.1.0.tgz", + "integrity": "sha512-2qHaIQr2VLRFoxe2nASzsV6ef4yOOH+Fi9FBOVH6cqeSgUnoyySPZkxzLuzd+RYOQTRpROA0ztTMqxROKSb/nA==" + }, + "prelude-ls": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/prelude-ls/-/prelude-ls-1.1.2.tgz", + "integrity": "sha1-IZMqVJ9eUv/ZqCf1cOBL5iqX2lQ=" + }, "process-nextick-args": { "version": "1.0.7", "resolved": "https://registry.npmjs.org/process-nextick-args/-/process-nextick-args-1.0.7.tgz", "integrity": "sha1-FQ4gt1ZZCtP5EJPyWk8q2L/zC6M=" }, + "psl": { + "version": "1.1.28", + "resolved": "https://registry.npmjs.org/psl/-/psl-1.1.28.tgz", + "integrity": "sha512-+AqO1Ae+N/4r7Rvchrdm432afjT9hqJRyBN3DQv9At0tPz4hIFSGKbq64fN9dVoCow4oggIIax5/iONx0r9hZw==" + }, + "punycode": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/punycode/-/punycode-2.1.1.tgz", + "integrity": "sha512-XRsRjdf+j5ml+y/6GKHPZbrF/8p2Yga0JPtdqTIY2Xe5ohJPD9saDJJLPvp9+NSBprVvevdXZybnj2cv8OEd0A==" + }, + "qs": { + "version": "6.5.2", + "resolved": "https://registry.npmjs.org/qs/-/qs-6.5.2.tgz", + "integrity": "sha512-N5ZAX4/LxJmF+7wN74pUD6qAh9/wnvdQcjq9TZjevvXzSUo7bfmw91saqMjzGS2xq91/odN2dW/WOl7qQHNDGA==" + }, "readable-stream": { "version": "2.3.3", "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.3.tgz", @@ -236,12 +602,64 @@ "util-deprecate": "1.0.2" } }, - "rimraf": { - "version": "2.6.2", - "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-2.6.2.tgz", - "integrity": "sha512-lreewLK/BlghmxtfH36YYVg1i8IAce4TI7oao75I1g245+6BctqTVQiBP3YUJ9C6DQOXJmkYR9X9fCLtCOJc5w==", + "request": { + "version": "2.87.0", + "resolved": "https://registry.npmjs.org/request/-/request-2.87.0.tgz", + "integrity": "sha512-fcogkm7Az5bsS6Sl0sibkbhcKsnyon/jV1kF3ajGmF0c8HrttdKTPRT9hieOaQHA5HEq6r8OyWOo/o781C1tNw==", "requires": { - "glob": "7.1.2" + "aws-sign2": "0.7.0", + "aws4": "1.7.0", + "caseless": "0.12.0", + "combined-stream": "1.0.6", + "extend": "3.0.1", + "forever-agent": "0.6.1", + "form-data": "2.3.2", + "har-validator": "5.0.3", + "http-signature": "1.2.0", + "is-typedarray": "1.0.0", + "isstream": "0.1.2", + "json-stringify-safe": "5.0.1", + "mime-types": "2.1.18", + "oauth-sign": "0.8.2", + "performance-now": "2.1.0", + "qs": "6.5.2", + "safe-buffer": "5.1.1", + "tough-cookie": "2.3.4", + "tunnel-agent": "0.6.0", + "uuid": "3.3.2" + }, + "dependencies": { + "punycode": { + "version": "1.4.1", + "resolved": "https://registry.npmjs.org/punycode/-/punycode-1.4.1.tgz", + "integrity": "sha1-wNWmOycYgArY4esPpSachN1BhF4=" + }, + "tough-cookie": { + "version": "2.3.4", + "resolved": "https://registry.npmjs.org/tough-cookie/-/tough-cookie-2.3.4.tgz", + "integrity": "sha512-TZ6TTfI5NtZnuyy/Kecv+CnoROnyXn2DN97LontgQpCwsX2XyLYCC0ENhYkehSOwAp8rTQKc/NUIF7BkQ5rKLA==", + "requires": { + "punycode": "1.4.1" + } + } + } + }, + "request-promise-core": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/request-promise-core/-/request-promise-core-1.1.1.tgz", + "integrity": "sha1-Pu4AssWqgyOc+wTFcA2jb4HNCLY=", + "requires": { + "lodash": "4.17.4" + } + }, + "request-promise-native": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/request-promise-native/-/request-promise-native-1.0.5.tgz", + "integrity": "sha1-UoF3D2jgyXGeUWP9P6tIIhX0/aU=", + "requires": { + "request-promise-core": "1.1.1", + "stealthy-require": "1.1.1", + "tough-cookie": "2.4.3" } }, "safe-buffer": { @@ -249,6 +667,22 @@ "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.1.tgz", "integrity": "sha512-kKvNJn6Mm93gAczWVJg7wH+wGYWNrDHdWvpUmHyEsgCtIwwo3bqPtV4tR5tuPaUhTOo/kvhVwd8XwwOllGYkbg==" }, + "safer-buffer": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/safer-buffer/-/safer-buffer-2.1.2.tgz", + "integrity": "sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==" + }, + "sax": { + "version": "1.2.4", + "resolved": "https://registry.npmjs.org/sax/-/sax-1.2.4.tgz", + "integrity": "sha512-NqVDv9TpANUjFm0N8uM5GxL36UgKi9/atZw+x7YFnQ8ckwFGKrl4xX4yWtrey3UJm5nP1kUbnYgLopqWNSRhWw==" + }, + "source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", + "optional": true + }, "split2": { "version": "2.2.0", "resolved": "https://registry.npmjs.org/split2/-/split2-2.2.0.tgz", @@ -262,6 +696,27 @@ "resolved": "https://registry.npmjs.org/sprintf-js/-/sprintf-js-1.0.3.tgz", "integrity": "sha1-BOaSb2YolTVPPdAVIDYzuFcpfiw=" }, + "sshpk": { + "version": "1.14.2", + "resolved": "https://registry.npmjs.org/sshpk/-/sshpk-1.14.2.tgz", + "integrity": "sha1-xvxhZIo9nE52T9P8306hBeSSupg=", + "requires": { + "asn1": "0.2.3", + "assert-plus": "1.0.0", + "bcrypt-pbkdf": "1.0.2", + "dashdash": "1.14.1", + "ecc-jsbn": "0.1.1", + "getpass": "0.1.7", + "jsbn": "0.1.1", + "safer-buffer": "2.1.2", + "tweetnacl": "0.14.5" + } + }, + "stealthy-require": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/stealthy-require/-/stealthy-require-1.1.1.tgz", + "integrity": "sha1-NbCYdbT/SfJqd35QmzCQoyJr8ks=" + }, "string_decoder": { "version": "1.0.3", "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.0.3.tgz", @@ -270,14 +725,10 @@ "safe-buffer": "5.1.1" } }, - "strip-bom": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/strip-bom/-/strip-bom-1.0.0.tgz", - "integrity": "sha1-hbiGLzhEtabV7IRnqTWYFzo295Q=", - "requires": { - "first-chunk-stream": "1.0.0", - "is-utf8": "0.2.1" - } + "symbol-tree": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/symbol-tree/-/symbol-tree-3.2.2.tgz", + "integrity": "sha1-rifbOPZgp64uHDt9G8KQgZuFGeY=" }, "through2": { "version": "2.0.3", @@ -288,16 +739,132 @@ "xtend": "4.0.1" } }, + "tough-cookie": { + "version": "2.4.3", + "resolved": "https://registry.npmjs.org/tough-cookie/-/tough-cookie-2.4.3.tgz", + "integrity": "sha512-Q5srk/4vDM54WJsJio3XNn6K2sCG+CQ8G5Wz6bZhRZoAe/+TxjWB/GlFAnYEbkYVlON9FMk/fE3h2RLpPXo4lQ==", + "requires": { + "psl": "1.1.28", + "punycode": "1.4.1" + }, + "dependencies": { + "punycode": { + "version": "1.4.1", + "resolved": "https://registry.npmjs.org/punycode/-/punycode-1.4.1.tgz", + "integrity": "sha1-wNWmOycYgArY4esPpSachN1BhF4=" + } + } + }, + "tr46": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/tr46/-/tr46-1.0.1.tgz", + "integrity": "sha1-qLE/1r/SSJUZZ0zN5VujaTtwbQk=", + "requires": { + "punycode": "2.1.1" + } + }, + "tunnel-agent": { + "version": "0.6.0", + "resolved": "https://registry.npmjs.org/tunnel-agent/-/tunnel-agent-0.6.0.tgz", + "integrity": "sha1-J6XeoGs2sEoKmWZ3SykIaPD8QP0=", + "requires": { + "safe-buffer": "5.1.1" + } + }, + "tweetnacl": { + "version": "0.14.5", + "resolved": "https://registry.npmjs.org/tweetnacl/-/tweetnacl-0.14.5.tgz", + "integrity": "sha1-WuaBd/GS1EViadEIr6k/+HQ/T2Q=", + "optional": true + }, + "type-check": { + "version": "0.3.2", + "resolved": "https://registry.npmjs.org/type-check/-/type-check-0.3.2.tgz", + "integrity": "sha1-WITKtRLPHTVeP7eE8wgEsrUg23I=", + "requires": { + "prelude-ls": "1.1.2" + } + }, "util-deprecate": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz", "integrity": "sha1-RQ1Nyfpw3nMnYvvS1KKJgUGaDM8=" }, + "uuid": { + "version": "3.3.2", + "resolved": "https://registry.npmjs.org/uuid/-/uuid-3.3.2.tgz", + "integrity": "sha512-yXJmeNaw3DnnKAOKJE51sL/ZaYfWJRl1pK9dr19YFCu0ObS231AB1/LbqTKRAQ5kw8A90rA6fr4riOUpTZvQZA==" + }, + "verror": { + "version": "1.10.0", + "resolved": "https://registry.npmjs.org/verror/-/verror-1.10.0.tgz", + "integrity": "sha1-OhBcoXBTr1XW4nDB+CiGguGNpAA=", + "requires": { + "assert-plus": "1.0.0", + "core-util-is": "1.0.2", + "extsprintf": "1.3.0" + } + }, + "w3c-hr-time": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/w3c-hr-time/-/w3c-hr-time-1.0.1.tgz", + "integrity": "sha1-gqwr/2PZUOqeMYmlimViX+3xkEU=", + "requires": { + "browser-process-hrtime": "0.1.2" + } + }, + "webidl-conversions": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-4.0.2.tgz", + "integrity": "sha512-YQ+BmxuTgd6UXZW3+ICGfyqRyHXVlD5GtQr5+qjiNW7bF0cqrzX500HVXPBOvgXb5YnzDd+h0zqyv61KUD7+Sg==" + }, + "whatwg-encoding": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/whatwg-encoding/-/whatwg-encoding-1.0.3.tgz", + "integrity": "sha512-jLBwwKUhi8WtBfsMQlL4bUUcT8sMkAtQinscJAe/M4KHCkHuUJAF6vuB0tueNIw4c8ziO6AkRmgY+jL3a0iiPw==", + "requires": { + "iconv-lite": "0.4.19" + } + }, + "whatwg-mimetype": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/whatwg-mimetype/-/whatwg-mimetype-2.1.0.tgz", + "integrity": "sha512-FKxhYLytBQiUKjkYteN71fAUA3g6KpNXoho1isLiLSB3N1G4F35Q5vUxWfKFhBwi5IWF27VE6WxhrnnC+m0Mew==" + }, + "whatwg-url": { + "version": "6.5.0", + "resolved": "https://registry.npmjs.org/whatwg-url/-/whatwg-url-6.5.0.tgz", + "integrity": "sha512-rhRZRqx/TLJQWUpQ6bmrt2UV4f0HCQ463yQuONJqC6fO2VoEb1pTYddbe59SkYq87aoM5A3bdhMZiUiVws+fzQ==", + "requires": { + "lodash.sortby": "4.7.0", + "tr46": "1.0.1", + "webidl-conversions": "4.0.2" + } + }, + "wordwrap": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/wordwrap/-/wordwrap-1.0.0.tgz", + "integrity": "sha1-J1hIEIkUVqQXHI0CJkQa3pDLyus=" + }, "wrappy": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz", "integrity": "sha1-tSQ9jz7BqjXxNkYFvA0QNuMKtp8=" }, + "ws": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/ws/-/ws-4.1.0.tgz", + "integrity": "sha512-ZGh/8kF9rrRNffkLFV4AzhvooEclrOH0xaugmqGsIfFgOE/pIz4fMc4Ef+5HSQqTEug2S9JZIWDR47duDSLfaA==", + "requires": { + "async-limiter": "1.0.0", + "safe-buffer": "5.1.1" + } + }, + "xml-name-validator": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/xml-name-validator/-/xml-name-validator-3.0.0.tgz", + "integrity": "sha512-A5CUptxDsvxKJEU3yO6DuWBSJz/qizqzJKOMIfUJHETbBw/sFaDxgd6fxm1ewUaM0jZ444Fc5vC5ROYurg/4Pw==" + }, "xtend": { "version": "4.0.1", "resolved": "https://registry.npmjs.org/xtend/-/xtend-4.0.1.tgz", diff --git a/package.json b/package.json index 30c966716..6dc86ce02 100644 --- a/package.json +++ b/package.json @@ -19,6 +19,7 @@ "csv-write-stream": "^2.0.0", "emojibase-data": "^3.0.0", "glob": "^7.1.2", + "jsdom": "^11.11.0", "lodash": "^4.17.4" } } From cab9c39f58092f68b966d17cbc1bfab306b949b5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Benedikt=20Gro=C3=9F?= Date: Wed, 4 Jul 2018 13:14:23 +0200 Subject: [PATCH 2/4] Evo: auto generating skintones --- data/openmoji.csv | 3144 +++++++++++++++---------------- data/openmoji.json | 1823 ++++++++++++++++-- helpers/create-emoji-tables.js | 7 +- helpers/create-skintones-svg.js | 20 - helpers/create-svg-skintones.js | 36 + 5 files changed, 3310 insertions(+), 1720 deletions(-) delete mode 100644 helpers/create-skintones-svg.js create mode 100644 helpers/create-svg-skintones.js diff --git a/data/openmoji.csv b/data/openmoji.csv index 26d3a9e5d..47abcc924 100644 --- a/data/openmoji.csv +++ b/data/openmoji.csv @@ -1,1572 +1,1572 @@ -emoji,hexcode,group,subgroups,annotation,tags,hfg_tags,hfg_author,skintone,skintone_base_emoji,unicode,order -๐Ÿ˜€,1F600,smileys-people,face-positive,grinning face,"face, grin","smile, happy",Emily Jรคger,,,1,1 -๐Ÿ˜,1F601,smileys-people,face-positive,beaming face with smiling eyes,"eye, face, grin, smile","happy, teeth, mouth",Emily Jรคger,,,1,2 -๐Ÿ˜‚,1F602,smileys-people,face-positive,face with tears of joy,"face, joy, laugh, tear",,Emily Jรคger,,,1,3 -๐Ÿคฃ,1F923,smileys-people,face-positive,rolling on the floor laughing,"face, floor, laugh, rolling",tears,Emily Jรคger,,,3,4 -๐Ÿ˜ƒ,1F603,smileys-people,face-positive,grinning face with big eyes,"face, mouth, open, smile","eyes, teeth",Emily Jรคger,,,1,5 -๐Ÿ˜„,1F604,smileys-people,face-positive,grinning face with smiling eyes,"eye, face, mouth, open, smile","happy, teeth",Emily Jรคger,,,1,6 -๐Ÿ˜…,1F605,smileys-people,face-positive,grinning face with sweat,"cold, face, open, smile, sweat",laugh,Emily Jรคger,,,1,7 -๐Ÿ˜†,1F606,smileys-people,face-positive,grinning squinting face,"face, laugh, mouth, satisfied, smile",,Emily Jรคger,,,1,8 -๐Ÿ˜‰,1F609,smileys-people,face-positive,winking face,"face, wink",eye,Emily Jรคger,,,1,9 -๐Ÿ˜Š,1F60A,smileys-people,face-positive,smiling face with smiling eyes,"blush, eye, face, smile",satisfied,Emily Jรคger,,,1,10 -๐Ÿ˜‹,1F60B,smileys-people,face-positive,face savoring food,"delicious, face, savouring, smile, yum","yummi, tongue",Emily Jรคger,,,1,11 -๐Ÿ˜Ž,1F60E,smileys-people,face-positive,smiling face with sunglasses,"bright, cool, face, sun, sunglasses",,Emily Jรคger,,,1,12 -๐Ÿ˜,1F60D,smileys-people,face-positive,smiling face with heart-eyes,"eye, face, love, smile","hearts, happy",Emily Jรคger,,,1,13 -๐Ÿ˜˜,1F618,smileys-people,face-positive,face blowing a kiss,"face, kiss","love, happy",Emily Jรคger,,,1,14 -๐Ÿ˜—,1F617,smileys-people,face-positive,kissing face,"face, kiss",,Emily Jรคger,,,1,16 -๐Ÿ˜™,1F619,smileys-people,face-positive,kissing face with smiling eyes,"eye, face, kiss, smile",,Emily Jรคger,,,1,17 -๐Ÿ˜š,1F61A,smileys-people,face-positive,kissing face with closed eyes,"closed, eye, face, kiss","love, happy",Emily Jรคger,,,1,18 -โ˜บ๏ธ,263A,smileys-people,face-positive,smiling face,"face, outlined, relaxed, smile",satisfied,Emily Jรคger,,,1,20 -๐Ÿ™‚,1F642,smileys-people,face-positive,slightly smiling face,"face, smile",satisfied,Emily Jรคger,,,1,21 -๐Ÿค—,1F917,smileys-people,face-positive,hugging face,"face, hug, hugging",hands,Emily Jรคger,,,1,22 -๐Ÿคฉ,1F929,smileys-people,face-positive,star-struck,"eyes, face, grinning, star",suprised,Emily Jรคger,,,5,23 -๐Ÿค”,1F914,smileys-people,face-neutral,thinking face,"face, thinking","hand, overthinking",Emily Jรคger,,,1,24 -๐Ÿคจ,1F928,smileys-people,face-neutral,face with raised eyebrow,"distrust, skeptic",suspiciously,Emily Jรคger,,,5,25 -๐Ÿ˜๏ธ,1F610,smileys-people,face-neutral,neutral face,"deadpan, face, neutral",,Mariella Steeb,,,1,26 -๐Ÿ˜‘,1F611,smileys-people,face-neutral,expressionless face,"expressionless, face, inexpressive, unexpressive",,Mariella Steeb,,,1,27 -๐Ÿ˜ถ,1F636,smileys-people,face-neutral,face without mouth,"face, mouth, quiet, silent",shhh,Emily Jรคger,,,1,28 -๐Ÿ™„,1F644,smileys-people,face-neutral,face with rolling eyes,"eyes, face, rolling",annoyed,Emily Jรคger,,,1,29 -๐Ÿ˜,1F60F,smileys-people,face-neutral,smirking face,"face, smirk",,Mariella Steeb,,,1,30 -๐Ÿ˜ฃ,1F623,smileys-people,face-neutral,persevering face,"face, persevere",,Mariella Steeb,,,1,31 -๐Ÿ˜ฅ,1F625,smileys-people,face-neutral,sad but relieved face,"disappointed, face, relieved, whew",,Mariella Steeb,,,1,32 -๐Ÿ˜ฎ,1F62E,smileys-people,face-neutral,face with open mouth,"face, mouth, open, sympathy",,Mariella Steeb,,,1,33 -๐Ÿค,1F910,smileys-people,face-neutral,zipper-mouth face,"face, mouth, zipper",,Emily Jรคger,,,1,34 -๐Ÿ˜ฏ,1F62F,smileys-people,face-neutral,hushed face,"face, hushed, stunned, surprised",,Mariella Steeb,,,1,35 -๐Ÿ˜ช,1F62A,smileys-people,face-neutral,sleepy face,"face, sleep","snot bubble, side-tear",Mariella Steeb,,,1,36 -๐Ÿ˜ซ,1F62B,smileys-people,face-neutral,tired face,"face, tired",exhausted,Mariella Steeb,,,1,37 -๐Ÿ˜ด,1F634,smileys-people,face-neutral,sleeping face,"face, sleep, zzz",tired,Emily Jรคger,,,1,38 -๐Ÿ˜Œ,1F60C,smileys-people,face-neutral,relieved face,"face, relieved",,Mariella Steeb,,,1,39 -๐Ÿ˜›,1F61B,smileys-people,face-neutral,face with tongue,"face, tongue",,Mariella Steeb,,,1,40 -๐Ÿ˜œ,1F61C,smileys-people,face-neutral,winking face with tongue,"eye, face, joke, tongue, wink",,Mariella Steeb,,,1,41 -๐Ÿ˜,1F61D,smileys-people,face-neutral,squinting face with tongue,"eye, face, horrible, taste, tongue",,Mariella Steeb,,,1,42 -๐Ÿคค,1F924,smileys-people,face-neutral,drooling face,"drooling, face","hungry, yummi",Emily Jรคger,,,3,43 -๐Ÿ˜’,1F612,smileys-people,face-neutral,unamused face,"face, unamused, unhappy",,Mariella Steeb,,,1,44 -๐Ÿ˜“,1F613,smileys-people,face-neutral,downcast face with sweat,"cold, face, sweat",,Mariella Steeb,,,1,45 -๐Ÿ˜”,1F614,smileys-people,face-neutral,pensive face,"dejected, face, pensive",,Mariella Steeb,,,1,46 -๐Ÿ˜•,1F615,smileys-people,face-neutral,confused face,"confused, face",,Mariella Steeb,,,1,47 -๐Ÿ™ƒ,1F643,smileys-people,face-neutral,upside-down face,"face, upside-down",turn,Emily Jรคger,,,1,48 -๐Ÿค‘,1F911,smileys-people,face-neutral,money-mouth face,"face, money, mouth","tongue, dollar",Emily Jรคger,,,1,49 -๐Ÿ˜ฒ,1F632,smileys-people,face-neutral,astonished face,"astonished, face, shocked, totally",,Emily Jรคger,,,1,50 -โ˜น๏ธ,2639,smileys-people,face-negative,frowning face,"face, frown",negative,Mariella Steeb,,,1,52 -๐Ÿ™,1F641,smileys-people,face-negative,slightly frowning face,"face, frown",,Mariella Steeb,,,1,53 -๐Ÿ˜–,1F616,smileys-people,face-negative,confounded face,"confounded, face",,Mariella Steeb,,,1,54 -๐Ÿ˜ž,1F61E,smileys-people,face-negative,disappointed face,"disappointed, face",,Mariella Steeb,,,1,55 -๐Ÿ˜Ÿ,1F61F,smileys-people,face-negative,worried face,"face, worried",,Mariella Steeb,,,1,56 -๐Ÿ˜ค,1F624,smileys-people,face-negative,face with steam from nose,"face, triumph, won",,Mariella Steeb,,,1,57 -๐Ÿ˜ข,1F622,smileys-people,face-negative,crying face,"cry, face, sad, tear",,Mariella Steeb,,,1,58 -๐Ÿ˜ญ,1F62D,smileys-people,face-negative,loudly crying face,"cry, face, sad, sob, tear",,Mariella Steeb,,,1,59 -๐Ÿ˜ฆ,1F626,smileys-people,face-negative,frowning face with open mouth,"face, frown, mouth, open",,Mariella Steeb,,,1,60 -๐Ÿ˜ง,1F627,smileys-people,face-negative,anguished face,"anguished, face",,Mariella Steeb,,,1,61 -๐Ÿ˜จ,1F628,smileys-people,face-negative,fearful face,"face, fear, fearful, scared",,Mariella Steeb,,,1,62 -๐Ÿ˜ฉ,1F629,smileys-people,face-negative,weary face,"face, tired, weary",distraught,Mariella Steeb,,,1,63 -๐Ÿคฏ,1F92F,smileys-people,face-negative,exploding head,shocked,explosion,Mariella Steeb,,,5,64 -๐Ÿ˜ฌ,1F62C,smileys-people,face-negative,grimacing face,"face, grimace",awkward,Mariella Steeb,,,1,65 -๐Ÿ˜ฐ,1F630,smileys-people,face-negative,anxious face with sweat,"blue, cold, face, rushed, sweat","anxious, worried, considerate",Mariella Steeb,,,1,66 -๐Ÿ˜ฑ,1F631,smileys-people,face-negative,face screaming in fear,"face, fear, munch, scared, scream",open mouth,Mariella Steeb,,,1,67 -๐Ÿ˜ณ,1F633,smileys-people,face-negative,flushed face,"dazed, face, flushed",red jaws,Mariella Steeb,,,1,70 -๐Ÿคช,1F92A,smileys-people,face-negative,zany face,"eye, goofy, large, small",,Mariella Steeb,,,5,71 -๐Ÿ˜ต,1F635,smileys-people,face-negative,dizzy face,"dizzy, face",dead eyes,Mariella Steeb,,,1,72 -๐Ÿ˜ก,1F621,smileys-people,face-negative,pouting face,"angry, face, mad, pouting, rage, red",,Mariella Steeb,,,1,73 -๐Ÿ˜ ,1F620,smileys-people,face-negative,angry face,"angry, face, mad",,Mariella Steeb,,,1,74 -๐Ÿคฌ,1F92C,smileys-people,face-negative,face with symbols on mouth,swearing,angry,Mariella Steeb,,,5,75 -๐Ÿ˜ท,1F637,smileys-people,face-sick,face with medical mask,"cold, doctor, face, mask, sick",ill,Emily Jรคger,,,1,76 -๐Ÿค’,1F912,smileys-people,face-sick,face with thermometer,"face, ill, sick, thermometer",fever,Emily Jรคger,,,1,77 -๐Ÿค•,1F915,smileys-people,face-sick,face with head-bandage,"bandage, face, hurt, injury",head,Emily Jรคger,,,1,78 -๐Ÿคข,1F922,smileys-people,face-sick,nauseated face,"face, nauseated, vomit",green,Emily Jรคger,,,3,79 -๐Ÿคฎ,1F92E,smileys-people,face-sick,face vomiting,"sick, vomit",,Emily Jรคger,,,5,80 -๐Ÿคง,1F927,smileys-people,face-sick,sneezing face,"face, gesundheit, sneeze",tissue,Emily Jรคger,,,3,81 -๐Ÿ˜‡,1F607,smileys-people,face-role,smiling face with halo,"angel, face, fantasy, halo, innocent",,Emily Jรคger,,,1,82 -๐Ÿค ,1F920,smileys-people,face-role,cowboy hat face,"cowboy, cowgirl, face, hat",howdy,Emily Jรคger,,,3,83 -๐Ÿคฅ,1F925,smileys-people,face-role,lying face,"face, lie, pinocchio","nose, long",Emily Jรคger,,,3,87 -๐Ÿคซ,1F92B,smileys-people,face-role,shushing face,"quiet, shush","hand, silent",Emily Jรคger,,,5,88 -๐Ÿคญ,1F92D,smileys-people,face-role,face with hand over mouth,whoops,"hand, mouth",Emily Jรคger,,,5,89 -๐Ÿง,1F9D0,smileys-people,face-role,face with monocle,stuffy,"glasses, intelligent",Emily Jรคger,,,5,90 -๐Ÿค“,1F913,smileys-people,face-role,nerd face,"face, geek, nerd","glasses, learning",Emily Jรคger,,,1,91 -๐Ÿ˜ˆ,1F608,smileys-people,face-fantasy,smiling face with horns,"face, fairy tale, fantasy, horns, smile","malicious, sardonic",Mariella Steeb,,,1,92 -๐Ÿ‘ฟ,1F47F,smileys-people,face-fantasy,angry face with horns,"demon, devil, face, fantasy, imp",mean,Mariella Steeb,,,1,93 -๐Ÿคก,1F921,smileys-people,face-fantasy,clown face,"clown, face",,Emily Jรคger,,,3,94 -๐Ÿ’€,1F480,smileys-people,face-fantasy,skull,"death, face, fairy tale, monster",skull,Mariella Steeb,,,1,97 -โ˜ ๏ธ,2620,smileys-people,face-fantasy,skull and crossbones,"crossbones, death, face, monster, skull",,Mariella Steeb,,,1,99 -๐Ÿ‘ป,1F47B,smileys-people,face-fantasy,ghost,"creature, face, fairy tale, fantasy, monster",ghost,Mariella Steeb,,,1,100 -๐Ÿ‘ฝ๏ธ,1F47D,smileys-people,face-fantasy,alien,"creature, extraterrestrial, face, fantasy, ufo",alien,Mariella Steeb,,,1,101 -๐Ÿค–,1F916,smileys-people,face-fantasy,robot face,"face, monster, robot",,Mariella Steeb,,,1,103 -๐Ÿ’ฉ,1F4A9,smileys-people,face-fantasy,pile of poo,"dung, face, monster, poo, poop",,Mariella Steeb,,,1,104 -๐Ÿ˜บ,1F63A,smileys-people,cat-face,grinning cat face,"cat, face, mouth, open, smile",grinning,Emily Jรคger,,,1,105 -๐Ÿ˜ธ,1F638,smileys-people,cat-face,grinning cat face with smiling eyes,"cat, eye, face, grin, smile",grinning,Emily Jรคger,,,1,106 -๐Ÿ˜น,1F639,smileys-people,cat-face,cat face with tears of joy,"cat, face, joy, tear","laughing, smile",Emily Jรคger,,,1,107 -๐Ÿ˜ป,1F63B,smileys-people,cat-face,smiling cat face with heart-eyes,"cat, eye, face, love, smile","hearts, red",Emily Jรคger,,,1,108 -๐Ÿ˜ผ,1F63C,smileys-people,cat-face,cat face with wry smile,"cat, face, ironic, smile, wry",,Emily Jรคger,,,1,109 -๐Ÿ˜ฝ,1F63D,smileys-people,cat-face,kissing cat face,"cat, eye, face, kiss",,Emily Jรคger,,,1,110 -๐Ÿ™€,1F640,smileys-people,cat-face,weary cat face,"cat, face, oh, surprised, weary",wow,Emily Jรคger,,,1,111 -๐Ÿ˜ฟ,1F63F,smileys-people,cat-face,crying cat face,"cat, cry, face, sad, tear","unhappy, depressed",Emily Jรคger,,,1,112 -๐Ÿ˜พ,1F63E,smileys-people,cat-face,pouting cat face,"cat, face, pouting","sad, angry",Emily Jรคger,,,1,113 -๐Ÿ™ˆ,1F648,smileys-people,monkey-face,see-no-evil monkey,"evil, face, forbidden, monkey, see",,Mariella Steeb,,,1,114 -๐Ÿ™‰,1F649,smileys-people,monkey-face,hear-no-evil monkey,"evil, face, forbidden, hear, monkey",,Mariella Steeb,,,1,115 -๐Ÿ™Š,1F64A,smileys-people,monkey-face,speak-no-evil monkey,"evil, face, forbidden, monkey, speak",,Mariella Steeb,,,1,116 -๐Ÿ‘ถ,1F476,smileys-people,person,baby,young,"human, person",Johanna Wellnitz,,,1,117 -๐Ÿ‘ถ๐Ÿป,1F476-1F3FB,smileys-people,person,baby: light skin tone,,,Johanna Wellnitz,1,๐Ÿ‘ถ,2,118 -๐Ÿ‘ถ๐Ÿผ,1F476-1F3FC,smileys-people,person,baby: medium-light skin tone,,,Johanna Wellnitz,2,๐Ÿ‘ถ,2,119 -๐Ÿ‘ถ๐Ÿฝ,1F476-1F3FD,smileys-people,person,baby: medium skin tone,,,Johanna Wellnitz,3,๐Ÿ‘ถ,2,120 -๐Ÿ‘ถ๐Ÿพ,1F476-1F3FE,smileys-people,person,baby: medium-dark skin tone,,,Johanna Wellnitz,4,๐Ÿ‘ถ,2,121 -๐Ÿ‘ถ๐Ÿฟ,1F476-1F3FF,smileys-people,person,baby: dark skin tone,,,Johanna Wellnitz,5,๐Ÿ‘ถ,2,122 -๐Ÿง’,1F9D2,smileys-people,person,child,"gender-neutral, unspecified gender, young","human, person",Johanna Wellnitz,,,5,123 -๐Ÿง’๐Ÿป,1F9D2-1F3FB,smileys-people,person,child: light skin tone,,,Johanna Wellnitz,1,๐Ÿง’,5,124 -๐Ÿง’๐Ÿผ,1F9D2-1F3FC,smileys-people,person,child: medium-light skin tone,,,Johanna Wellnitz,2,๐Ÿง’,5,125 -๐Ÿง’๐Ÿฝ,1F9D2-1F3FD,smileys-people,person,child: medium skin tone,,,Johanna Wellnitz,3,๐Ÿง’,5,126 -๐Ÿง’๐Ÿพ,1F9D2-1F3FE,smileys-people,person,child: medium-dark skin tone,,,Johanna Wellnitz,4,๐Ÿง’,5,127 -๐Ÿง’๐Ÿฟ,1F9D2-1F3FF,smileys-people,person,child: dark skin tone,,,Johanna Wellnitz,5,๐Ÿง’,5,128 -๐Ÿ‘ฆ,1F466,smileys-people,person,boy,young,"human, person",Johanna Wellnitz,,,1,129 -๐Ÿ‘ฆ๐Ÿป,1F466-1F3FB,smileys-people,person,boy: light skin tone,,,Johanna Wellnitz,1,๐Ÿ‘ฆ,2,130 -๐Ÿ‘ฆ๐Ÿผ,1F466-1F3FC,smileys-people,person,boy: medium-light skin tone,,,Johanna Wellnitz,2,๐Ÿ‘ฆ,2,131 -๐Ÿ‘ฆ๐Ÿฝ,1F466-1F3FD,smileys-people,person,boy: medium skin tone,,,Johanna Wellnitz,3,๐Ÿ‘ฆ,2,132 -๐Ÿ‘ฆ๐Ÿพ,1F466-1F3FE,smileys-people,person,boy: medium-dark skin tone,,,Johanna Wellnitz,4,๐Ÿ‘ฆ,2,133 -๐Ÿ‘ฆ๐Ÿฟ,1F466-1F3FF,smileys-people,person,boy: dark skin tone,,,Johanna Wellnitz,5,๐Ÿ‘ฆ,2,134 -๐Ÿ‘ง,1F467,smileys-people,person,girl,"virgo, young, zodiac","human, person",Johanna Wellnitz,,,1,135 -๐Ÿ‘ง๐Ÿป,1F467-1F3FB,smileys-people,person,girl: light skin tone,,,Johanna Wellnitz,1,๐Ÿ‘ง,2,136 -๐Ÿ‘ง๐Ÿผ,1F467-1F3FC,smileys-people,person,girl: medium-light skin tone,,,Johanna Wellnitz,2,๐Ÿ‘ง,2,137 -๐Ÿ‘ง๐Ÿฝ,1F467-1F3FD,smileys-people,person,girl: medium skin tone,,,Johanna Wellnitz,3,๐Ÿ‘ง,2,138 -๐Ÿ‘ง๐Ÿพ,1F467-1F3FE,smileys-people,person,girl: medium-dark skin tone,,,Johanna Wellnitz,4,๐Ÿ‘ง,2,139 -๐Ÿ‘ง๐Ÿฟ,1F467-1F3FF,smileys-people,person,girl: dark skin tone,,,Johanna Wellnitz,5,๐Ÿ‘ง,2,140 -๐Ÿง‘,1F9D1,smileys-people,person,person,"adult, gender-neutral, unspecified gender","human, person",Johanna Wellnitz,,,5,141 -๐Ÿง‘๐Ÿป,1F9D1-1F3FB,smileys-people,person,person: light skin tone,,,Johanna Wellnitz,1,๐Ÿง‘,5,142 -๐Ÿง‘๐Ÿผ,1F9D1-1F3FC,smileys-people,person,person: medium-light skin tone,,,Johanna Wellnitz,2,๐Ÿง‘,5,143 -๐Ÿง‘๐Ÿฝ,1F9D1-1F3FD,smileys-people,person,person: medium skin tone,,,Johanna Wellnitz,3,๐Ÿง‘,5,144 -๐Ÿง‘๐Ÿพ,1F9D1-1F3FE,smileys-people,person,person: medium-dark skin tone,,,Johanna Wellnitz,4,๐Ÿง‘,5,145 -๐Ÿง‘๐Ÿฟ,1F9D1-1F3FF,smileys-people,person,person: dark skin tone,,,Johanna Wellnitz,5,๐Ÿง‘,5,146 -๐Ÿ‘จ,1F468,smileys-people,person,man,adult,"human, person",Johanna Wellnitz,,,1,147 -๐Ÿ‘จ๐Ÿป,1F468-1F3FB,smileys-people,person,man: light skin tone,,,Johanna Wellnitz,1,๐Ÿ‘จ,2,148 -๐Ÿ‘จ๐Ÿผ,1F468-1F3FC,smileys-people,person,man: medium-light skin tone,,,Johanna Wellnitz,2,๐Ÿ‘จ,2,149 -๐Ÿ‘จ๐Ÿฝ,1F468-1F3FD,smileys-people,person,man: medium skin tone,,,Johanna Wellnitz,3,๐Ÿ‘จ,2,150 -๐Ÿ‘จ๐Ÿพ,1F468-1F3FE,smileys-people,person,man: medium-dark skin tone,,,Johanna Wellnitz,4,๐Ÿ‘จ,2,151 -๐Ÿ‘จ๐Ÿฟ,1F468-1F3FF,smileys-people,person,man: dark skin tone,,,Johanna Wellnitz,5,๐Ÿ‘จ,2,152 -๐Ÿ‘ฉ,1F469,smileys-people,person,woman,adult,"human, person",Johanna Wellnitz,,,1,153 -๐Ÿ‘ฉ๐Ÿป,1F469-1F3FB,smileys-people,person,woman: light skin tone,,,Johanna Wellnitz,1,๐Ÿ‘ฉ,2,154 -๐Ÿ‘ฉ๐Ÿผ,1F469-1F3FC,smileys-people,person,woman: medium-light skin tone,,,Johanna Wellnitz,2,๐Ÿ‘ฉ,2,155 -๐Ÿ‘ฉ๐Ÿฝ,1F469-1F3FD,smileys-people,person,woman: medium skin tone,,,Johanna Wellnitz,3,๐Ÿ‘ฉ,2,156 -๐Ÿ‘ฉ๐Ÿพ,1F469-1F3FE,smileys-people,person,woman: medium-dark skin tone,,,Johanna Wellnitz,4,๐Ÿ‘ฉ,2,157 -๐Ÿ‘ฉ๐Ÿฟ,1F469-1F3FF,smileys-people,person,woman: dark skin tone,,,Johanna Wellnitz,5,๐Ÿ‘ฉ,2,158 -๐Ÿง“,1F9D3,smileys-people,person,older person,"adult, gender-neutral, old, unspecified gender","human, person",Johanna Wellnitz,,,5,159 -๐Ÿง“๐Ÿป,1F9D3-1F3FB,smileys-people,person,older person: light skin tone,,,Johanna Wellnitz,1,๐Ÿง“,5,160 -๐Ÿง“๐Ÿผ,1F9D3-1F3FC,smileys-people,person,older person: medium-light skin tone,,,Johanna Wellnitz,2,๐Ÿง“,5,161 -๐Ÿง“๐Ÿฝ,1F9D3-1F3FD,smileys-people,person,older person: medium skin tone,,,Johanna Wellnitz,3,๐Ÿง“,5,162 -๐Ÿง“๐Ÿพ,1F9D3-1F3FE,smileys-people,person,older person: medium-dark skin tone,,,Johanna Wellnitz,4,๐Ÿง“,5,163 -๐Ÿง“๐Ÿฟ,1F9D3-1F3FF,smileys-people,person,older person: dark skin tone,,,Johanna Wellnitz,5,๐Ÿง“,5,164 -๐Ÿ‘ด,1F474,smileys-people,person,old man,"adult, man, old","grandpa, human, person",Johanna Wellnitz,,,1,165 -๐Ÿ‘ด๐Ÿป,1F474-1F3FB,smileys-people,person,old man: light skin tone,,,Johanna Wellnitz,1,๐Ÿ‘ด,2,166 -๐Ÿ‘ด๐Ÿผ,1F474-1F3FC,smileys-people,person,old man: medium-light skin tone,,,Johanna Wellnitz,2,๐Ÿ‘ด,2,167 -๐Ÿ‘ด๐Ÿฝ,1F474-1F3FD,smileys-people,person,old man: medium skin tone,,,Johanna Wellnitz,3,๐Ÿ‘ด,2,168 -๐Ÿ‘ด๐Ÿพ,1F474-1F3FE,smileys-people,person,old man: medium-dark skin tone,,,Johanna Wellnitz,4,๐Ÿ‘ด,2,169 -๐Ÿ‘ด๐Ÿฟ,1F474-1F3FF,smileys-people,person,old man: dark skin tone,,,Johanna Wellnitz,5,๐Ÿ‘ด,2,170 -๐Ÿ‘ต,1F475,smileys-people,person,old woman,"adult, old, woman","gradma, human, person",Johanna Wellnitz,,,1,171 -๐Ÿ‘ต๐Ÿป,1F475-1F3FB,smileys-people,person,old woman: light skin tone,,,Johanna Wellnitz,1,๐Ÿ‘ต,2,172 -๐Ÿ‘ต๐Ÿผ,1F475-1F3FC,smileys-people,person,old woman: medium-light skin tone,,,Johanna Wellnitz,2,๐Ÿ‘ต,2,173 -๐Ÿ‘ต๐Ÿฝ,1F475-1F3FD,smileys-people,person,old woman: medium skin tone,,,Johanna Wellnitz,3,๐Ÿ‘ต,2,174 -๐Ÿ‘ต๐Ÿพ,1F475-1F3FE,smileys-people,person,old woman: medium-dark skin tone,,,Johanna Wellnitz,4,๐Ÿ‘ต,2,175 -๐Ÿ‘ต๐Ÿฟ,1F475-1F3FF,smileys-people,person,old woman: dark skin tone,,,Johanna Wellnitz,5,๐Ÿ‘ต,2,176 -๐Ÿ‘จโ€โš•๏ธ,1F468-200D-2695-FE0F,smileys-people,person-role,man health worker,"doctor, healthcare, man, nurse, therapist","doctor, healthcare, man, nurse, therapist, stethoscope, doctor smock",Lisa Thiel,,,4,177 -๐Ÿ‘จ๐Ÿปโ€โš•๏ธ,1F468-1F3FB-200D-2695-FE0F,smileys-people,person-role,man health worker: light skin tone,,,Lisa Thiel,1,๐Ÿ‘จโ€โš•๏ธ,4,179 -๐Ÿ‘จ๐Ÿผโ€โš•๏ธ,1F468-1F3FC-200D-2695-FE0F,smileys-people,person-role,man health worker: medium-light skin tone,,,Lisa Thiel,2,๐Ÿ‘จโ€โš•๏ธ,4,181 -๐Ÿ‘จ๐Ÿฝโ€โš•๏ธ,1F468-1F3FD-200D-2695-FE0F,smileys-people,person-role,man health worker: medium skin tone,,,Lisa Thiel,3,๐Ÿ‘จโ€โš•๏ธ,4,183 -๐Ÿ‘จ๐Ÿพโ€โš•๏ธ,1F468-1F3FE-200D-2695-FE0F,smileys-people,person-role,man health worker: medium-dark skin tone,,,Lisa Thiel,4,๐Ÿ‘จโ€โš•๏ธ,4,185 -๐Ÿ‘จ๐Ÿฟโ€โš•๏ธ,1F468-1F3FF-200D-2695-FE0F,smileys-people,person-role,man health worker: dark skin tone,,,Lisa Thiel,5,๐Ÿ‘จโ€โš•๏ธ,4,187 -๐Ÿ‘ฉโ€โš•๏ธ,1F469-200D-2695-FE0F,smileys-people,person-role,woman health worker,"doctor, healthcare, nurse, therapist, woman","doctor, healthcare, woman, nurse, therapist, stethoscope, doctor smock",Lisa Thiel,,,4,189 -๐Ÿ‘ฉ๐Ÿปโ€โš•๏ธ,1F469-1F3FB-200D-2695-FE0F,smileys-people,person-role,woman health worker: light skin tone,,,Lisa Thiel,1,๐Ÿ‘ฉโ€โš•๏ธ,4,191 -๐Ÿ‘ฉ๐Ÿผโ€โš•๏ธ,1F469-1F3FC-200D-2695-FE0F,smileys-people,person-role,woman health worker: medium-light skin tone,,,Lisa Thiel,2,๐Ÿ‘ฉโ€โš•๏ธ,4,193 -๐Ÿ‘ฉ๐Ÿฝโ€โš•๏ธ,1F469-1F3FD-200D-2695-FE0F,smileys-people,person-role,woman health worker: medium skin tone,,,Lisa Thiel,3,๐Ÿ‘ฉโ€โš•๏ธ,4,195 -๐Ÿ‘ฉ๐Ÿพโ€โš•๏ธ,1F469-1F3FE-200D-2695-FE0F,smileys-people,person-role,woman health worker: medium-dark skin tone,,,Lisa Thiel,4,๐Ÿ‘ฉโ€โš•๏ธ,4,197 -๐Ÿ‘ฉ๐Ÿฟโ€โš•๏ธ,1F469-1F3FF-200D-2695-FE0F,smileys-people,person-role,woman health worker: dark skin tone,,,Lisa Thiel,5,๐Ÿ‘ฉโ€โš•๏ธ,4,199 -๐Ÿ‘จโ€๐ŸŽ“,1F468-200D-1F393,smileys-people,person-role,man student,"graduate, man, student","graduate, man, student, black robe, collegian, undergraduate, graduation",Lisa Thiel,,,4,201 -๐Ÿ‘จ๐Ÿปโ€๐ŸŽ“,1F468-1F3FB-200D-1F393,smileys-people,person-role,man student: light skin tone,,,Lisa Thiel,1,๐Ÿ‘จโ€๐ŸŽ“,4,202 -๐Ÿ‘จ๐Ÿผโ€๐ŸŽ“,1F468-1F3FC-200D-1F393,smileys-people,person-role,man student: medium-light skin tone,,,Lisa Thiel,2,๐Ÿ‘จโ€๐ŸŽ“,4,203 -๐Ÿ‘จ๐Ÿฝโ€๐ŸŽ“,1F468-1F3FD-200D-1F393,smileys-people,person-role,man student: medium skin tone,,,Lisa Thiel,3,๐Ÿ‘จโ€๐ŸŽ“,4,204 -๐Ÿ‘จ๐Ÿพโ€๐ŸŽ“,1F468-1F3FE-200D-1F393,smileys-people,person-role,man student: medium-dark skin tone,,,Lisa Thiel,4,๐Ÿ‘จโ€๐ŸŽ“,4,205 -๐Ÿ‘จ๐Ÿฟโ€๐ŸŽ“,1F468-1F3FF-200D-1F393,smileys-people,person-role,man student: dark skin tone,,,Lisa Thiel,5,๐Ÿ‘จโ€๐ŸŽ“,4,206 -๐Ÿ‘ฉโ€๐ŸŽ“,1F469-200D-1F393,smileys-people,person-role,woman student,"graduate, student, woman","graduate, woman, student, black robe, collegian, undergraduate, graduation",Lisa Thiel,,,4,207 -๐Ÿ‘ฉ๐Ÿปโ€๐ŸŽ“,1F469-1F3FB-200D-1F393,smileys-people,person-role,woman student: light skin tone,,,Lisa Thiel,1,๐Ÿ‘ฉโ€๐ŸŽ“,4,208 -๐Ÿ‘ฉ๐Ÿผโ€๐ŸŽ“,1F469-1F3FC-200D-1F393,smileys-people,person-role,woman student: medium-light skin tone,,,Lisa Thiel,2,๐Ÿ‘ฉโ€๐ŸŽ“,4,209 -๐Ÿ‘ฉ๐Ÿฝโ€๐ŸŽ“,1F469-1F3FD-200D-1F393,smileys-people,person-role,woman student: medium skin tone,,,Lisa Thiel,3,๐Ÿ‘ฉโ€๐ŸŽ“,4,210 -๐Ÿ‘ฉ๐Ÿพโ€๐ŸŽ“,1F469-1F3FE-200D-1F393,smileys-people,person-role,woman student: medium-dark skin tone,,,Lisa Thiel,4,๐Ÿ‘ฉโ€๐ŸŽ“,4,211 -๐Ÿ‘ฉ๐Ÿฟโ€๐ŸŽ“,1F469-1F3FF-200D-1F393,smileys-people,person-role,woman student: dark skin tone,,,Lisa Thiel,5,๐Ÿ‘ฉโ€๐ŸŽ“,4,212 -๐Ÿ‘จโ€๐Ÿซ,1F468-200D-1F3EB,smileys-people,person-role,man teacher,"instructor, man, professor, teacher","instructor, man, professor, teacher, lecturer, educator, chalkboard",Lisa Thiel,,,4,213 -๐Ÿ‘จ๐Ÿปโ€๐Ÿซ,1F468-1F3FB-200D-1F3EB,smileys-people,person-role,man teacher: light skin tone,,,Lisa Thiel,1,๐Ÿ‘จโ€๐Ÿซ,4,214 -๐Ÿ‘จ๐Ÿผโ€๐Ÿซ,1F468-1F3FC-200D-1F3EB,smileys-people,person-role,man teacher: medium-light skin tone,,,Lisa Thiel,2,๐Ÿ‘จโ€๐Ÿซ,4,215 -๐Ÿ‘จ๐Ÿฝโ€๐Ÿซ,1F468-1F3FD-200D-1F3EB,smileys-people,person-role,man teacher: medium skin tone,,,Lisa Thiel,3,๐Ÿ‘จโ€๐Ÿซ,4,216 -๐Ÿ‘จ๐Ÿพโ€๐Ÿซ,1F468-1F3FE-200D-1F3EB,smileys-people,person-role,man teacher: medium-dark skin tone,,,Lisa Thiel,4,๐Ÿ‘จโ€๐Ÿซ,4,217 -๐Ÿ‘จ๐Ÿฟโ€๐Ÿซ,1F468-1F3FF-200D-1F3EB,smileys-people,person-role,man teacher: dark skin tone,,,Lisa Thiel,5,๐Ÿ‘จโ€๐Ÿซ,4,218 -๐Ÿ‘ฉโ€๐Ÿซ,1F469-200D-1F3EB,smileys-people,person-role,woman teacher,"instructor, professor, teacher, woman","instructor, woman, professor, teacher, lecturer, educator, chalkboard",Lisa Thiel,,,4,219 -๐Ÿ‘ฉ๐Ÿปโ€๐Ÿซ,1F469-1F3FB-200D-1F3EB,smileys-people,person-role,woman teacher: light skin tone,,,Lisa Thiel,1,๐Ÿ‘ฉโ€๐Ÿซ,4,220 -๐Ÿ‘ฉ๐Ÿผโ€๐Ÿซ,1F469-1F3FC-200D-1F3EB,smileys-people,person-role,woman teacher: medium-light skin tone,,,Lisa Thiel,2,๐Ÿ‘ฉโ€๐Ÿซ,4,221 -๐Ÿ‘ฉ๐Ÿฝโ€๐Ÿซ,1F469-1F3FD-200D-1F3EB,smileys-people,person-role,woman teacher: medium skin tone,,,Lisa Thiel,3,๐Ÿ‘ฉโ€๐Ÿซ,4,222 -๐Ÿ‘ฉ๐Ÿพโ€๐Ÿซ,1F469-1F3FE-200D-1F3EB,smileys-people,person-role,woman teacher: medium-dark skin tone,,,Lisa Thiel,4,๐Ÿ‘ฉโ€๐Ÿซ,4,223 -๐Ÿ‘ฉ๐Ÿฟโ€๐Ÿซ,1F469-1F3FF-200D-1F3EB,smileys-people,person-role,woman teacher: dark skin tone,,,Lisa Thiel,5,๐Ÿ‘ฉโ€๐Ÿซ,4,224 -๐Ÿ‘จโ€โš–๏ธ,1F468-200D-2696-FE0F,smileys-people,person-role,man judge,"justice, man, scales","justice, man, scales, judge hammer, gavel, black robe, law, order",Lisa Thiel,,,4,225 -๐Ÿ‘จ๐Ÿปโ€โš–๏ธ,1F468-1F3FB-200D-2696-FE0F,smileys-people,person-role,man judge: light skin tone,,,Lisa Thiel,1,๐Ÿ‘จโ€โš–๏ธ,4,227 -๐Ÿ‘จ๐Ÿผโ€โš–๏ธ,1F468-1F3FC-200D-2696-FE0F,smileys-people,person-role,man judge: medium-light skin tone,,,Lisa Thiel,2,๐Ÿ‘จโ€โš–๏ธ,4,229 -๐Ÿ‘จ๐Ÿฝโ€โš–๏ธ,1F468-1F3FD-200D-2696-FE0F,smileys-people,person-role,man judge: medium skin tone,,,Lisa Thiel,3,๐Ÿ‘จโ€โš–๏ธ,4,231 -๐Ÿ‘จ๐Ÿพโ€โš–๏ธ,1F468-1F3FE-200D-2696-FE0F,smileys-people,person-role,man judge: medium-dark skin tone,,,Lisa Thiel,4,๐Ÿ‘จโ€โš–๏ธ,4,233 -๐Ÿ‘จ๐Ÿฟโ€โš–๏ธ,1F468-1F3FF-200D-2696-FE0F,smileys-people,person-role,man judge: dark skin tone,,,Lisa Thiel,5,๐Ÿ‘จโ€โš–๏ธ,4,235 -๐Ÿ‘ฉโ€โš–๏ธ,1F469-200D-2696-FE0F,smileys-people,person-role,woman judge,"judge, scales, woman","justice, woman, scales, judge hammer, gavel, black robe, law, order",Lisa Thiel,,,4,237 -๐Ÿ‘ฉ๐Ÿปโ€โš–๏ธ,1F469-1F3FB-200D-2696-FE0F,smileys-people,person-role,woman judge: light skin tone,,,Lisa Thiel,1,๐Ÿ‘ฉโ€โš–๏ธ,4,239 -๐Ÿ‘ฉ๐Ÿผโ€โš–๏ธ,1F469-1F3FC-200D-2696-FE0F,smileys-people,person-role,woman judge: medium-light skin tone,,,Lisa Thiel,2,๐Ÿ‘ฉโ€โš–๏ธ,4,241 -๐Ÿ‘ฉ๐Ÿฝโ€โš–๏ธ,1F469-1F3FD-200D-2696-FE0F,smileys-people,person-role,woman judge: medium skin tone,,,Lisa Thiel,3,๐Ÿ‘ฉโ€โš–๏ธ,4,243 -๐Ÿ‘ฉ๐Ÿพโ€โš–๏ธ,1F469-1F3FE-200D-2696-FE0F,smileys-people,person-role,woman judge: medium-dark skin tone,,,Lisa Thiel,4,๐Ÿ‘ฉโ€โš–๏ธ,4,245 -๐Ÿ‘ฉ๐Ÿฟโ€โš–๏ธ,1F469-1F3FF-200D-2696-FE0F,smileys-people,person-role,woman judge: dark skin tone,,,Lisa Thiel,5,๐Ÿ‘ฉโ€โš–๏ธ,4,247 -๐Ÿ‘จโ€๐ŸŒพ,1F468-200D-1F33E,smileys-people,person-role,man farmer,"farmer, gardener, man, rancher","farmer, gardener, man, rancher, pitchfork, strawhat",Lisa Thiel,,,4,249 -๐Ÿ‘จ๐Ÿปโ€๐ŸŒพ,1F468-1F3FB-200D-1F33E,smileys-people,person-role,man farmer: light skin tone,,,Lisa Thiel,1,๐Ÿ‘จโ€๐ŸŒพ,4,250 -๐Ÿ‘จ๐Ÿผโ€๐ŸŒพ,1F468-1F3FC-200D-1F33E,smileys-people,person-role,man farmer: medium-light skin tone,,,Lisa Thiel,2,๐Ÿ‘จโ€๐ŸŒพ,4,251 -๐Ÿ‘จ๐Ÿฝโ€๐ŸŒพ,1F468-1F3FD-200D-1F33E,smileys-people,person-role,man farmer: medium skin tone,,,Lisa Thiel,3,๐Ÿ‘จโ€๐ŸŒพ,4,252 -๐Ÿ‘จ๐Ÿพโ€๐ŸŒพ,1F468-1F3FE-200D-1F33E,smileys-people,person-role,man farmer: medium-dark skin tone,,,Lisa Thiel,4,๐Ÿ‘จโ€๐ŸŒพ,4,253 -๐Ÿ‘จ๐Ÿฟโ€๐ŸŒพ,1F468-1F3FF-200D-1F33E,smileys-people,person-role,man farmer: dark skin tone,,,Lisa Thiel,5,๐Ÿ‘จโ€๐ŸŒพ,4,254 -๐Ÿ‘ฉโ€๐ŸŒพ,1F469-200D-1F33E,smileys-people,person-role,woman farmer,"farmer, gardener, rancher, woman","farmer, gardener, woman, rancher, pitchfork, strawhat, braids",Lisa Thiel,,,4,255 -๐Ÿ‘ฉ๐Ÿปโ€๐ŸŒพ,1F469-1F3FB-200D-1F33E,smileys-people,person-role,woman farmer: light skin tone,,,Lisa Thiel,1,๐Ÿ‘ฉโ€๐ŸŒพ,4,256 -๐Ÿ‘ฉ๐Ÿผโ€๐ŸŒพ,1F469-1F3FC-200D-1F33E,smileys-people,person-role,woman farmer: medium-light skin tone,,,Lisa Thiel,2,๐Ÿ‘ฉโ€๐ŸŒพ,4,257 -๐Ÿ‘ฉ๐Ÿฝโ€๐ŸŒพ,1F469-1F3FD-200D-1F33E,smileys-people,person-role,woman farmer: medium skin tone,,,Lisa Thiel,3,๐Ÿ‘ฉโ€๐ŸŒพ,4,258 -๐Ÿ‘ฉ๐Ÿพโ€๐ŸŒพ,1F469-1F3FE-200D-1F33E,smileys-people,person-role,woman farmer: medium-dark skin tone,,,Lisa Thiel,4,๐Ÿ‘ฉโ€๐ŸŒพ,4,259 -๐Ÿ‘ฉ๐Ÿฟโ€๐ŸŒพ,1F469-1F3FF-200D-1F33E,smileys-people,person-role,woman farmer: dark skin tone,,,Lisa Thiel,5,๐Ÿ‘ฉโ€๐ŸŒพ,4,260 -๐Ÿ‘จโ€๐Ÿณ,1F468-200D-1F373,smileys-people,person-role,man cook,"chef, cook, man","chef, cook, man, toque, chef's hat, food, cooking",Lisa Thiel,,,4,261 -๐Ÿ‘จ๐Ÿปโ€๐Ÿณ,1F468-1F3FB-200D-1F373,smileys-people,person-role,man cook: light skin tone,,,Lisa Thiel,1,๐Ÿ‘จโ€๐Ÿณ,4,262 -๐Ÿ‘จ๐Ÿผโ€๐Ÿณ,1F468-1F3FC-200D-1F373,smileys-people,person-role,man cook: medium-light skin tone,,,Lisa Thiel,2,๐Ÿ‘จโ€๐Ÿณ,4,263 -๐Ÿ‘จ๐Ÿฝโ€๐Ÿณ,1F468-1F3FD-200D-1F373,smileys-people,person-role,man cook: medium skin tone,,,Lisa Thiel,3,๐Ÿ‘จโ€๐Ÿณ,4,264 -๐Ÿ‘จ๐Ÿพโ€๐Ÿณ,1F468-1F3FE-200D-1F373,smileys-people,person-role,man cook: medium-dark skin tone,,,Lisa Thiel,4,๐Ÿ‘จโ€๐Ÿณ,4,265 -๐Ÿ‘จ๐Ÿฟโ€๐Ÿณ,1F468-1F3FF-200D-1F373,smileys-people,person-role,man cook: dark skin tone,,,Lisa Thiel,5,๐Ÿ‘จโ€๐Ÿณ,4,266 -๐Ÿ‘ฉโ€๐Ÿณ,1F469-200D-1F373,smileys-people,person-role,woman cook,"chef, cook, woman","chef, cook, woman, toque, chef's hat, food, cooking",Lisa Thiel,,,4,267 -๐Ÿ‘ฉ๐Ÿปโ€๐Ÿณ,1F469-1F3FB-200D-1F373,smileys-people,person-role,woman cook: light skin tone,,,Lisa Thiel,1,๐Ÿ‘ฉโ€๐Ÿณ,4,268 -๐Ÿ‘ฉ๐Ÿผโ€๐Ÿณ,1F469-1F3FC-200D-1F373,smileys-people,person-role,woman cook: medium-light skin tone,,,Lisa Thiel,2,๐Ÿ‘ฉโ€๐Ÿณ,4,269 -๐Ÿ‘ฉ๐Ÿฝโ€๐Ÿณ,1F469-1F3FD-200D-1F373,smileys-people,person-role,woman cook: medium skin tone,,,Lisa Thiel,3,๐Ÿ‘ฉโ€๐Ÿณ,4,270 -๐Ÿ‘ฉ๐Ÿพโ€๐Ÿณ,1F469-1F3FE-200D-1F373,smileys-people,person-role,woman cook: medium-dark skin tone,,,Lisa Thiel,4,๐Ÿ‘ฉโ€๐Ÿณ,4,271 -๐Ÿ‘ฉ๐Ÿฟโ€๐Ÿณ,1F469-1F3FF-200D-1F373,smileys-people,person-role,woman cook: dark skin tone,,,Lisa Thiel,5,๐Ÿ‘ฉโ€๐Ÿณ,4,272 -๐Ÿ‘จโ€๐Ÿ”ง,1F468-200D-1F527,smileys-people,person-role,man mechanic,"electrician, man, mechanic, plumber, tradesperson","electrician, man, mechanic, plumber, tradesperson, wrench, overalls, blue hat, auto mechanic",Lisa Thiel,,,4,273 -๐Ÿ‘จ๐Ÿปโ€๐Ÿ”ง,1F468-1F3FB-200D-1F527,smileys-people,person-role,man mechanic: light skin tone,,,Lisa Thiel,1,๐Ÿ‘จโ€๐Ÿ”ง,4,274 -๐Ÿ‘จ๐Ÿผโ€๐Ÿ”ง,1F468-1F3FC-200D-1F527,smileys-people,person-role,man mechanic: medium-light skin tone,,,Lisa Thiel,2,๐Ÿ‘จโ€๐Ÿ”ง,4,275 -๐Ÿ‘จ๐Ÿฝโ€๐Ÿ”ง,1F468-1F3FD-200D-1F527,smileys-people,person-role,man mechanic: medium skin tone,,,Lisa Thiel,3,๐Ÿ‘จโ€๐Ÿ”ง,4,276 -๐Ÿ‘จ๐Ÿพโ€๐Ÿ”ง,1F468-1F3FE-200D-1F527,smileys-people,person-role,man mechanic: medium-dark skin tone,,,Lisa Thiel,4,๐Ÿ‘จโ€๐Ÿ”ง,4,277 -๐Ÿ‘จ๐Ÿฟโ€๐Ÿ”ง,1F468-1F3FF-200D-1F527,smileys-people,person-role,man mechanic: dark skin tone,,,Lisa Thiel,5,๐Ÿ‘จโ€๐Ÿ”ง,4,278 -๐Ÿ‘ฉโ€๐Ÿ”ง,1F469-200D-1F527,smileys-people,person-role,woman mechanic,"electrician, mechanic, plumber, tradesperson, woman","electrician, woman, mechanic, plumber, tradesperson, wrench, overalls, blue hat, auto mechanic",Lisa Thiel,,,4,279 -๐Ÿ‘ฉ๐Ÿปโ€๐Ÿ”ง,1F469-1F3FB-200D-1F527,smileys-people,person-role,woman mechanic: light skin tone,,,Lisa Thiel,1,๐Ÿ‘ฉโ€๐Ÿ”ง,4,280 -๐Ÿ‘ฉ๐Ÿผโ€๐Ÿ”ง,1F469-1F3FC-200D-1F527,smileys-people,person-role,woman mechanic: medium-light skin tone,,,Lisa Thiel,2,๐Ÿ‘ฉโ€๐Ÿ”ง,4,281 -๐Ÿ‘ฉ๐Ÿฝโ€๐Ÿ”ง,1F469-1F3FD-200D-1F527,smileys-people,person-role,woman mechanic: medium skin tone,,,Lisa Thiel,3,๐Ÿ‘ฉโ€๐Ÿ”ง,4,282 -๐Ÿ‘ฉ๐Ÿพโ€๐Ÿ”ง,1F469-1F3FE-200D-1F527,smileys-people,person-role,woman mechanic: medium-dark skin tone,,,Lisa Thiel,4,๐Ÿ‘ฉโ€๐Ÿ”ง,4,283 -๐Ÿ‘ฉ๐Ÿฟโ€๐Ÿ”ง,1F469-1F3FF-200D-1F527,smileys-people,person-role,woman mechanic: dark skin tone,,,Lisa Thiel,5,๐Ÿ‘ฉโ€๐Ÿ”ง,4,284 -๐Ÿ‘จโ€๐Ÿญ,1F468-200D-1F3ED,smileys-people,person-role,man factory worker,"assembly, factory, industrial, man, worker","assembly, factory, industrial, man, worker, welder, welding, welding helmet",Lisa Thiel,,,4,285 -๐Ÿ‘จ๐Ÿปโ€๐Ÿญ,1F468-1F3FB-200D-1F3ED,smileys-people,person-role,man factory worker: light skin tone,,,Lisa Thiel,1,๐Ÿ‘จโ€๐Ÿญ,4,286 -๐Ÿ‘จ๐Ÿผโ€๐Ÿญ,1F468-1F3FC-200D-1F3ED,smileys-people,person-role,man factory worker: medium-light skin tone,,,Lisa Thiel,2,๐Ÿ‘จโ€๐Ÿญ,4,287 -๐Ÿ‘จ๐Ÿฝโ€๐Ÿญ,1F468-1F3FD-200D-1F3ED,smileys-people,person-role,man factory worker: medium skin tone,,,Lisa Thiel,3,๐Ÿ‘จโ€๐Ÿญ,4,288 -๐Ÿ‘จ๐Ÿพโ€๐Ÿญ,1F468-1F3FE-200D-1F3ED,smileys-people,person-role,man factory worker: medium-dark skin tone,,,Lisa Thiel,4,๐Ÿ‘จโ€๐Ÿญ,4,289 -๐Ÿ‘จ๐Ÿฟโ€๐Ÿญ,1F468-1F3FF-200D-1F3ED,smileys-people,person-role,man factory worker: dark skin tone,,,Lisa Thiel,5,๐Ÿ‘จโ€๐Ÿญ,4,290 -๐Ÿ‘ฉโ€๐Ÿญ,1F469-200D-1F3ED,smileys-people,person-role,woman factory worker,"assembly, factory, industrial, woman, worker","assembly, factory, industrial, woman, worker, welder, welding, welding helmet",Lisa Thiel,,,4,291 -๐Ÿ‘ฉ๐Ÿปโ€๐Ÿญ,1F469-1F3FB-200D-1F3ED,smileys-people,person-role,woman factory worker: light skin tone,,,Lisa Thiel,1,๐Ÿ‘ฉโ€๐Ÿญ,4,292 -๐Ÿ‘ฉ๐Ÿผโ€๐Ÿญ,1F469-1F3FC-200D-1F3ED,smileys-people,person-role,woman factory worker: medium-light skin tone,,,Lisa Thiel,2,๐Ÿ‘ฉโ€๐Ÿญ,4,293 -๐Ÿ‘ฉ๐Ÿฝโ€๐Ÿญ,1F469-1F3FD-200D-1F3ED,smileys-people,person-role,woman factory worker: medium skin tone,,,Lisa Thiel,3,๐Ÿ‘ฉโ€๐Ÿญ,4,294 -๐Ÿ‘ฉ๐Ÿพโ€๐Ÿญ,1F469-1F3FE-200D-1F3ED,smileys-people,person-role,woman factory worker: medium-dark skin tone,,,Lisa Thiel,4,๐Ÿ‘ฉโ€๐Ÿญ,4,295 -๐Ÿ‘ฉ๐Ÿฟโ€๐Ÿญ,1F469-1F3FF-200D-1F3ED,smileys-people,person-role,woman factory worker: dark skin tone,,,Lisa Thiel,5,๐Ÿ‘ฉโ€๐Ÿญ,4,296 -๐Ÿ‘จโ€๐Ÿ’ผ,1F468-200D-1F4BC,smileys-people,person-role,man office worker,"architect, business, man, manager, white-collar","architect, business, man, manager, office, white-collar, papers, copy",Lisa Thiel,,,4,297 -๐Ÿ‘จ๐Ÿปโ€๐Ÿ’ผ,1F468-1F3FB-200D-1F4BC,smileys-people,person-role,man office worker: light skin tone,,,Lisa Thiel,1,๐Ÿ‘จโ€๐Ÿ’ผ,4,298 -๐Ÿ‘จ๐Ÿผโ€๐Ÿ’ผ,1F468-1F3FC-200D-1F4BC,smileys-people,person-role,man office worker: medium-light skin tone,,,Lisa Thiel,2,๐Ÿ‘จโ€๐Ÿ’ผ,4,299 -๐Ÿ‘จ๐Ÿฝโ€๐Ÿ’ผ,1F468-1F3FD-200D-1F4BC,smileys-people,person-role,man office worker: medium skin tone,,,Lisa Thiel,3,๐Ÿ‘จโ€๐Ÿ’ผ,4,300 -๐Ÿ‘จ๐Ÿพโ€๐Ÿ’ผ,1F468-1F3FE-200D-1F4BC,smileys-people,person-role,man office worker: medium-dark skin tone,,,Lisa Thiel,4,๐Ÿ‘จโ€๐Ÿ’ผ,4,301 -๐Ÿ‘จ๐Ÿฟโ€๐Ÿ’ผ,1F468-1F3FF-200D-1F4BC,smileys-people,person-role,man office worker: dark skin tone,,,Lisa Thiel,5,๐Ÿ‘จโ€๐Ÿ’ผ,4,302 -๐Ÿ‘ฉโ€๐Ÿ’ผ,1F469-200D-1F4BC,smileys-people,person-role,woman office worker,"architect, business, manager, white-collar, woman","architect, business, woman, manager, office, white-collar, papers, copy",Lisa Thiel,,,4,303 -๐Ÿ‘ฉ๐Ÿปโ€๐Ÿ’ผ,1F469-1F3FB-200D-1F4BC,smileys-people,person-role,woman office worker: light skin tone,,,Lisa Thiel,1,๐Ÿ‘ฉโ€๐Ÿ’ผ,4,304 -๐Ÿ‘ฉ๐Ÿผโ€๐Ÿ’ผ,1F469-1F3FC-200D-1F4BC,smileys-people,person-role,woman office worker: medium-light skin tone,,,Lisa Thiel,2,๐Ÿ‘ฉโ€๐Ÿ’ผ,4,305 -๐Ÿ‘ฉ๐Ÿฝโ€๐Ÿ’ผ,1F469-1F3FD-200D-1F4BC,smileys-people,person-role,woman office worker: medium skin tone,,,Lisa Thiel,3,๐Ÿ‘ฉโ€๐Ÿ’ผ,4,306 -๐Ÿ‘ฉ๐Ÿพโ€๐Ÿ’ผ,1F469-1F3FE-200D-1F4BC,smileys-people,person-role,woman office worker: medium-dark skin tone,,,Lisa Thiel,4,๐Ÿ‘ฉโ€๐Ÿ’ผ,4,307 -๐Ÿ‘ฉ๐Ÿฟโ€๐Ÿ’ผ,1F469-1F3FF-200D-1F4BC,smileys-people,person-role,woman office worker: dark skin tone,,,Lisa Thiel,5,๐Ÿ‘ฉโ€๐Ÿ’ผ,4,308 -๐Ÿ‘จโ€๐Ÿ”ฌ,1F468-200D-1F52C,smileys-people,person-role,man scientist,"biologist, chemist, engineer, man, physicist, scientist","biologist, chemist, engineer, man, mathematician, physicist, scientist, experiment, laboratory, lab, erlenmeyer flask, safety glasses",Lisa Thiel,,,4,309 -๐Ÿ‘จ๐Ÿปโ€๐Ÿ”ฌ,1F468-1F3FB-200D-1F52C,smileys-people,person-role,man scientist: light skin tone,,,Lisa Thiel,1,๐Ÿ‘จโ€๐Ÿ”ฌ,4,310 -๐Ÿ‘จ๐Ÿผโ€๐Ÿ”ฌ,1F468-1F3FC-200D-1F52C,smileys-people,person-role,man scientist: medium-light skin tone,,,Lisa Thiel,2,๐Ÿ‘จโ€๐Ÿ”ฌ,4,311 -๐Ÿ‘จ๐Ÿฝโ€๐Ÿ”ฌ,1F468-1F3FD-200D-1F52C,smileys-people,person-role,man scientist: medium skin tone,,,Lisa Thiel,3,๐Ÿ‘จโ€๐Ÿ”ฌ,4,312 -๐Ÿ‘จ๐Ÿพโ€๐Ÿ”ฌ,1F468-1F3FE-200D-1F52C,smileys-people,person-role,man scientist: medium-dark skin tone,,,Lisa Thiel,4,๐Ÿ‘จโ€๐Ÿ”ฌ,4,313 -๐Ÿ‘จ๐Ÿฟโ€๐Ÿ”ฌ,1F468-1F3FF-200D-1F52C,smileys-people,person-role,man scientist: dark skin tone,,,Lisa Thiel,5,๐Ÿ‘จโ€๐Ÿ”ฌ,4,314 -๐Ÿ‘ฉโ€๐Ÿ”ฌ,1F469-200D-1F52C,smileys-people,person-role,woman scientist,"biologist, chemist, engineer, physicist, scientist, woman","biologist, chemist, engineer, woman, mathematician, physicist, scientist, experiment, laboratory, lab, erlenmeyer flask, safety glasses",Lisa Thiel,,,4,315 -๐Ÿ‘ฉ๐Ÿปโ€๐Ÿ”ฌ,1F469-1F3FB-200D-1F52C,smileys-people,person-role,woman scientist: light skin tone,,,Lisa Thiel,1,๐Ÿ‘ฉโ€๐Ÿ”ฌ,4,316 -๐Ÿ‘ฉ๐Ÿผโ€๐Ÿ”ฌ,1F469-1F3FC-200D-1F52C,smileys-people,person-role,woman scientist: medium-light skin tone,,,Lisa Thiel,2,๐Ÿ‘ฉโ€๐Ÿ”ฌ,4,317 -๐Ÿ‘ฉ๐Ÿฝโ€๐Ÿ”ฌ,1F469-1F3FD-200D-1F52C,smileys-people,person-role,woman scientist: medium skin tone,,,Lisa Thiel,3,๐Ÿ‘ฉโ€๐Ÿ”ฌ,4,318 -๐Ÿ‘ฉ๐Ÿพโ€๐Ÿ”ฌ,1F469-1F3FE-200D-1F52C,smileys-people,person-role,woman scientist: medium-dark skin tone,,,Lisa Thiel,4,๐Ÿ‘ฉโ€๐Ÿ”ฌ,4,319 -๐Ÿ‘ฉ๐Ÿฟโ€๐Ÿ”ฌ,1F469-1F3FF-200D-1F52C,smileys-people,person-role,woman scientist: dark skin tone,,,Lisa Thiel,5,๐Ÿ‘ฉโ€๐Ÿ”ฌ,4,320 -๐Ÿ‘จโ€๐Ÿ’ป,1F468-200D-1F4BB,smileys-people,person-role,man technologist,"coder, developer, inventor, man, software, technologist","coder, developer, inventor, man, software, technologist, tablet, graphs, glasses, smart, clever, coding, code",Lisa Thiel,,,4,321 -๐Ÿ‘จ๐Ÿปโ€๐Ÿ’ป,1F468-1F3FB-200D-1F4BB,smileys-people,person-role,man technologist: light skin tone,,,Lisa Thiel,1,๐Ÿ‘จโ€๐Ÿ’ป,4,322 -๐Ÿ‘จ๐Ÿผโ€๐Ÿ’ป,1F468-1F3FC-200D-1F4BB,smileys-people,person-role,man technologist: medium-light skin tone,,,Lisa Thiel,2,๐Ÿ‘จโ€๐Ÿ’ป,4,323 -๐Ÿ‘จ๐Ÿฝโ€๐Ÿ’ป,1F468-1F3FD-200D-1F4BB,smileys-people,person-role,man technologist: medium skin tone,,,Lisa Thiel,3,๐Ÿ‘จโ€๐Ÿ’ป,4,324 -๐Ÿ‘จ๐Ÿพโ€๐Ÿ’ป,1F468-1F3FE-200D-1F4BB,smileys-people,person-role,man technologist: medium-dark skin tone,,,Lisa Thiel,4,๐Ÿ‘จโ€๐Ÿ’ป,4,325 -๐Ÿ‘จ๐Ÿฟโ€๐Ÿ’ป,1F468-1F3FF-200D-1F4BB,smileys-people,person-role,man technologist: dark skin tone,,,Lisa Thiel,5,๐Ÿ‘จโ€๐Ÿ’ป,4,326 -๐Ÿ‘ฉโ€๐Ÿ’ป,1F469-200D-1F4BB,smileys-people,person-role,woman technologist,"coder, developer, inventor, software, technologist, woman","coder, developer, inventor, woman, software, technologist, tablet, graphs, glasses, smart, clever, coding, code",Lisa Thiel,,,4,327 -๐Ÿ‘ฉ๐Ÿปโ€๐Ÿ’ป,1F469-1F3FB-200D-1F4BB,smileys-people,person-role,woman technologist: light skin tone,,,Lisa Thiel,1,๐Ÿ‘ฉโ€๐Ÿ’ป,4,328 -๐Ÿ‘ฉ๐Ÿผโ€๐Ÿ’ป,1F469-1F3FC-200D-1F4BB,smileys-people,person-role,woman technologist: medium-light skin tone,,,Lisa Thiel,2,๐Ÿ‘ฉโ€๐Ÿ’ป,4,329 -๐Ÿ‘ฉ๐Ÿฝโ€๐Ÿ’ป,1F469-1F3FD-200D-1F4BB,smileys-people,person-role,woman technologist: medium skin tone,,,Lisa Thiel,3,๐Ÿ‘ฉโ€๐Ÿ’ป,4,330 -๐Ÿ‘ฉ๐Ÿพโ€๐Ÿ’ป,1F469-1F3FE-200D-1F4BB,smileys-people,person-role,woman technologist: medium-dark skin tone,,,Lisa Thiel,4,๐Ÿ‘ฉโ€๐Ÿ’ป,4,331 -๐Ÿ‘ฉ๐Ÿฟโ€๐Ÿ’ป,1F469-1F3FF-200D-1F4BB,smileys-people,person-role,woman technologist: dark skin tone,,,Lisa Thiel,5,๐Ÿ‘ฉโ€๐Ÿ’ป,4,332 -๐Ÿ‘จโ€๐ŸŽค,1F468-200D-1F3A4,smileys-people,person-role,man singer,"actor, entertainer, man, rock, singer, star","actor, entertainer, man, rock, singer, star, microphone, musician",Lisa Thiel,,,4,333 -๐Ÿ‘จ๐Ÿปโ€๐ŸŽค,1F468-1F3FB-200D-1F3A4,smileys-people,person-role,man singer: light skin tone,,,Lisa Thiel,1,๐Ÿ‘จโ€๐ŸŽค,4,334 -๐Ÿ‘จ๐Ÿผโ€๐ŸŽค,1F468-1F3FC-200D-1F3A4,smileys-people,person-role,man singer: medium-light skin tone,,,Lisa Thiel,2,๐Ÿ‘จโ€๐ŸŽค,4,335 -๐Ÿ‘จ๐Ÿฝโ€๐ŸŽค,1F468-1F3FD-200D-1F3A4,smileys-people,person-role,man singer: medium skin tone,,,Lisa Thiel,3,๐Ÿ‘จโ€๐ŸŽค,4,336 -๐Ÿ‘จ๐Ÿพโ€๐ŸŽค,1F468-1F3FE-200D-1F3A4,smileys-people,person-role,man singer: medium-dark skin tone,,,Lisa Thiel,4,๐Ÿ‘จโ€๐ŸŽค,4,337 -๐Ÿ‘จ๐Ÿฟโ€๐ŸŽค,1F468-1F3FF-200D-1F3A4,smileys-people,person-role,man singer: dark skin tone,,,Lisa Thiel,5,๐Ÿ‘จโ€๐ŸŽค,4,338 -๐Ÿ‘ฉโ€๐ŸŽค,1F469-200D-1F3A4,smileys-people,person-role,woman singer,"actor, entertainer, rock, singer, star, woman","actor, entertainer, woman, rock, singer, star, microphone, musician, glamour, glamorous, dress, wavy hair",Lisa Thiel,,,4,339 -๐Ÿ‘ฉ๐Ÿปโ€๐ŸŽค,1F469-1F3FB-200D-1F3A4,smileys-people,person-role,woman singer: light skin tone,,,Lisa Thiel,1,๐Ÿ‘ฉโ€๐ŸŽค,4,340 -๐Ÿ‘ฉ๐Ÿผโ€๐ŸŽค,1F469-1F3FC-200D-1F3A4,smileys-people,person-role,woman singer: medium-light skin tone,,,Lisa Thiel,2,๐Ÿ‘ฉโ€๐ŸŽค,4,341 -๐Ÿ‘ฉ๐Ÿฝโ€๐ŸŽค,1F469-1F3FD-200D-1F3A4,smileys-people,person-role,woman singer: medium skin tone,,,Lisa Thiel,3,๐Ÿ‘ฉโ€๐ŸŽค,4,342 -๐Ÿ‘ฉ๐Ÿพโ€๐ŸŽค,1F469-1F3FE-200D-1F3A4,smileys-people,person-role,woman singer: medium-dark skin tone,,,Lisa Thiel,4,๐Ÿ‘ฉโ€๐ŸŽค,4,343 -๐Ÿ‘ฉ๐Ÿฟโ€๐ŸŽค,1F469-1F3FF-200D-1F3A4,smileys-people,person-role,woman singer: dark skin tone,,,Lisa Thiel,5,๐Ÿ‘ฉโ€๐ŸŽค,4,344 -๐Ÿ‘จโ€๐ŸŽจ,1F468-200D-1F3A8,smileys-people,person-role,man artist,"artist, man, palette","artist, man, palette, brush, beret, french hat, colors, painter, art, drawing, painting, illustrator, illustrating, creative, creativity",Lisa Thiel,,,4,345 -๐Ÿ‘จ๐Ÿปโ€๐ŸŽจ,1F468-1F3FB-200D-1F3A8,smileys-people,person-role,man artist: light skin tone,,,Lisa Thiel,1,๐Ÿ‘จโ€๐ŸŽจ,4,346 -๐Ÿ‘จ๐Ÿผโ€๐ŸŽจ,1F468-1F3FC-200D-1F3A8,smileys-people,person-role,man artist: medium-light skin tone,,,Lisa Thiel,2,๐Ÿ‘จโ€๐ŸŽจ,4,347 -๐Ÿ‘จ๐Ÿฝโ€๐ŸŽจ,1F468-1F3FD-200D-1F3A8,smileys-people,person-role,man artist: medium skin tone,,,Lisa Thiel,3,๐Ÿ‘จโ€๐ŸŽจ,4,348 -๐Ÿ‘จ๐Ÿพโ€๐ŸŽจ,1F468-1F3FE-200D-1F3A8,smileys-people,person-role,man artist: medium-dark skin tone,,,Lisa Thiel,4,๐Ÿ‘จโ€๐ŸŽจ,4,349 -๐Ÿ‘จ๐Ÿฟโ€๐ŸŽจ,1F468-1F3FF-200D-1F3A8,smileys-people,person-role,man artist: dark skin tone,,,Lisa Thiel,5,๐Ÿ‘จโ€๐ŸŽจ,4,350 -๐Ÿ‘ฉโ€๐ŸŽจ,1F469-200D-1F3A8,smileys-people,person-role,woman artist,"artist, palette, woman","artist, woman, palette, brush, beret, french hat, colors, painter, art, drawing, painting, illustrator, illustrating, creative, creativity",Lisa Thiel,,,4,351 -๐Ÿ‘ฉ๐Ÿปโ€๐ŸŽจ,1F469-1F3FB-200D-1F3A8,smileys-people,person-role,woman artist: light skin tone,,,Lisa Thiel,1,๐Ÿ‘ฉโ€๐ŸŽจ,4,352 -๐Ÿ‘ฉ๐Ÿผโ€๐ŸŽจ,1F469-1F3FC-200D-1F3A8,smileys-people,person-role,woman artist: medium-light skin tone,,,Lisa Thiel,2,๐Ÿ‘ฉโ€๐ŸŽจ,4,353 -๐Ÿ‘ฉ๐Ÿฝโ€๐ŸŽจ,1F469-1F3FD-200D-1F3A8,smileys-people,person-role,woman artist: medium skin tone,,,Lisa Thiel,3,๐Ÿ‘ฉโ€๐ŸŽจ,4,354 -๐Ÿ‘ฉ๐Ÿพโ€๐ŸŽจ,1F469-1F3FE-200D-1F3A8,smileys-people,person-role,woman artist: medium-dark skin tone,,,Lisa Thiel,4,๐Ÿ‘ฉโ€๐ŸŽจ,4,355 -๐Ÿ‘ฉ๐Ÿฟโ€๐ŸŽจ,1F469-1F3FF-200D-1F3A8,smileys-people,person-role,woman artist: dark skin tone,,,Lisa Thiel,5,๐Ÿ‘ฉโ€๐ŸŽจ,4,356 -๐Ÿ‘จโ€โœˆ๏ธ,1F468-200D-2708-FE0F,smileys-people,person-role,man pilot,"man, pilot, plane","man, pilot, plane, flying, control stick",Lisa Thiel,,,4,357 -๐Ÿ‘จ๐Ÿปโ€โœˆ๏ธ,1F468-1F3FB-200D-2708-FE0F,smileys-people,person-role,man pilot: light skin tone,,,Lisa Thiel,1,๐Ÿ‘จโ€โœˆ๏ธ,4,359 -๐Ÿ‘จ๐Ÿผโ€โœˆ๏ธ,1F468-1F3FC-200D-2708-FE0F,smileys-people,person-role,man pilot: medium-light skin tone,,,Lisa Thiel,2,๐Ÿ‘จโ€โœˆ๏ธ,4,361 -๐Ÿ‘จ๐Ÿฝโ€โœˆ๏ธ,1F468-1F3FD-200D-2708-FE0F,smileys-people,person-role,man pilot: medium skin tone,,,Lisa Thiel,3,๐Ÿ‘จโ€โœˆ๏ธ,4,363 -๐Ÿ‘จ๐Ÿพโ€โœˆ๏ธ,1F468-1F3FE-200D-2708-FE0F,smileys-people,person-role,man pilot: medium-dark skin tone,,,Lisa Thiel,4,๐Ÿ‘จโ€โœˆ๏ธ,4,365 -๐Ÿ‘จ๐Ÿฟโ€โœˆ๏ธ,1F468-1F3FF-200D-2708-FE0F,smileys-people,person-role,man pilot: dark skin tone,,,Lisa Thiel,5,๐Ÿ‘จโ€โœˆ๏ธ,4,367 -๐Ÿ‘ฉโ€โœˆ๏ธ,1F469-200D-2708-FE0F,smileys-people,person-role,woman pilot,"pilot, plane, woman","woman, pilot, plane, flying, control stick",Lisa Thiel,,,4,369 -๐Ÿ‘ฉ๐Ÿปโ€โœˆ๏ธ,1F469-1F3FB-200D-2708-FE0F,smileys-people,person-role,woman pilot: light skin tone,,,Lisa Thiel,1,๐Ÿ‘ฉโ€โœˆ๏ธ,4,371 -๐Ÿ‘ฉ๐Ÿผโ€โœˆ๏ธ,1F469-1F3FC-200D-2708-FE0F,smileys-people,person-role,woman pilot: medium-light skin tone,,,Lisa Thiel,2,๐Ÿ‘ฉโ€โœˆ๏ธ,4,373 -๐Ÿ‘ฉ๐Ÿฝโ€โœˆ๏ธ,1F469-1F3FD-200D-2708-FE0F,smileys-people,person-role,woman pilot: medium skin tone,,,Lisa Thiel,3,๐Ÿ‘ฉโ€โœˆ๏ธ,4,375 -๐Ÿ‘ฉ๐Ÿพโ€โœˆ๏ธ,1F469-1F3FE-200D-2708-FE0F,smileys-people,person-role,woman pilot: medium-dark skin tone,,,Lisa Thiel,4,๐Ÿ‘ฉโ€โœˆ๏ธ,4,377 -๐Ÿ‘ฉ๐Ÿฟโ€โœˆ๏ธ,1F469-1F3FF-200D-2708-FE0F,smileys-people,person-role,woman pilot: dark skin tone,,,Lisa Thiel,5,๐Ÿ‘ฉโ€โœˆ๏ธ,4,379 -๐Ÿ‘จโ€๐Ÿš€,1F468-200D-1F680,smileys-people,person-role,man astronaut,"astronaut, man, rocket","astronaut, man, rocket, spacesuit, space, universe, spaceship",Lisa Thiel,,,4,381 -๐Ÿ‘จ๐Ÿปโ€๐Ÿš€,1F468-1F3FB-200D-1F680,smileys-people,person-role,man astronaut: light skin tone,,,Lisa Thiel,1,๐Ÿ‘จโ€๐Ÿš€,4,382 -๐Ÿ‘จ๐Ÿผโ€๐Ÿš€,1F468-1F3FC-200D-1F680,smileys-people,person-role,man astronaut: medium-light skin tone,,,Lisa Thiel,2,๐Ÿ‘จโ€๐Ÿš€,4,383 -๐Ÿ‘จ๐Ÿฝโ€๐Ÿš€,1F468-1F3FD-200D-1F680,smileys-people,person-role,man astronaut: medium skin tone,,,Lisa Thiel,3,๐Ÿ‘จโ€๐Ÿš€,4,384 -๐Ÿ‘จ๐Ÿพโ€๐Ÿš€,1F468-1F3FE-200D-1F680,smileys-people,person-role,man astronaut: medium-dark skin tone,,,Lisa Thiel,4,๐Ÿ‘จโ€๐Ÿš€,4,385 -๐Ÿ‘จ๐Ÿฟโ€๐Ÿš€,1F468-1F3FF-200D-1F680,smileys-people,person-role,man astronaut: dark skin tone,,,Lisa Thiel,5,๐Ÿ‘จโ€๐Ÿš€,4,386 -๐Ÿ‘ฉโ€๐Ÿš€,1F469-200D-1F680,smileys-people,person-role,woman astronaut,"astronaut, rocket, woman","astronaut, woman, rocket, spacesuit, space, universe, spaceship",Lisa Thiel,,,4,387 -๐Ÿ‘ฉ๐Ÿปโ€๐Ÿš€,1F469-1F3FB-200D-1F680,smileys-people,person-role,woman astronaut: light skin tone,,,Lisa Thiel,1,๐Ÿ‘ฉโ€๐Ÿš€,4,388 -๐Ÿ‘ฉ๐Ÿผโ€๐Ÿš€,1F469-1F3FC-200D-1F680,smileys-people,person-role,woman astronaut: medium-light skin tone,,,Lisa Thiel,2,๐Ÿ‘ฉโ€๐Ÿš€,4,389 -๐Ÿ‘ฉ๐Ÿฝโ€๐Ÿš€,1F469-1F3FD-200D-1F680,smileys-people,person-role,woman astronaut: medium skin tone,,,Lisa Thiel,3,๐Ÿ‘ฉโ€๐Ÿš€,4,390 -๐Ÿ‘ฉ๐Ÿพโ€๐Ÿš€,1F469-1F3FE-200D-1F680,smileys-people,person-role,woman astronaut: medium-dark skin tone,,,Lisa Thiel,4,๐Ÿ‘ฉโ€๐Ÿš€,4,391 -๐Ÿ‘ฉ๐Ÿฟโ€๐Ÿš€,1F469-1F3FF-200D-1F680,smileys-people,person-role,woman astronaut: dark skin tone,,,Lisa Thiel,5,๐Ÿ‘ฉโ€๐Ÿš€,4,392 -๐Ÿ‘จโ€๐Ÿš’,1F468-200D-1F692,smileys-people,person-role,man firefighter,"firefighter, firetruck, man","firefighter, firetruck, man, water hose, save, rescue, red helmet",Lisa Thiel,,,4,393 -๐Ÿ‘จ๐Ÿปโ€๐Ÿš’,1F468-1F3FB-200D-1F692,smileys-people,person-role,man firefighter: light skin tone,,,Lisa Thiel,1,๐Ÿ‘จโ€๐Ÿš’,4,394 -๐Ÿ‘จ๐Ÿผโ€๐Ÿš’,1F468-1F3FC-200D-1F692,smileys-people,person-role,man firefighter: medium-light skin tone,,,Lisa Thiel,2,๐Ÿ‘จโ€๐Ÿš’,4,395 -๐Ÿ‘จ๐Ÿฝโ€๐Ÿš’,1F468-1F3FD-200D-1F692,smileys-people,person-role,man firefighter: medium skin tone,,,Lisa Thiel,3,๐Ÿ‘จโ€๐Ÿš’,4,396 -๐Ÿ‘จ๐Ÿพโ€๐Ÿš’,1F468-1F3FE-200D-1F692,smileys-people,person-role,man firefighter: medium-dark skin tone,,,Lisa Thiel,4,๐Ÿ‘จโ€๐Ÿš’,4,397 -๐Ÿ‘จ๐Ÿฟโ€๐Ÿš’,1F468-1F3FF-200D-1F692,smileys-people,person-role,man firefighter: dark skin tone,,,Lisa Thiel,5,๐Ÿ‘จโ€๐Ÿš’,4,398 -๐Ÿ‘ฉโ€๐Ÿš’,1F469-200D-1F692,smileys-people,person-role,woman firefighter,"firefighter, firetruck, woman","firefighter, firetruck, woman, water hose, save, rescue, red helmet",Lisa Thiel,,,4,399 -๐Ÿ‘ฉ๐Ÿปโ€๐Ÿš’,1F469-1F3FB-200D-1F692,smileys-people,person-role,woman firefighter: light skin tone,,,Lisa Thiel,1,๐Ÿ‘ฉโ€๐Ÿš’,4,400 -๐Ÿ‘ฉ๐Ÿผโ€๐Ÿš’,1F469-1F3FC-200D-1F692,smileys-people,person-role,woman firefighter: medium-light skin tone,,,Lisa Thiel,2,๐Ÿ‘ฉโ€๐Ÿš’,4,401 -๐Ÿ‘ฉ๐Ÿฝโ€๐Ÿš’,1F469-1F3FD-200D-1F692,smileys-people,person-role,woman firefighter: medium skin tone,,,Lisa Thiel,3,๐Ÿ‘ฉโ€๐Ÿš’,4,402 -๐Ÿ‘ฉ๐Ÿพโ€๐Ÿš’,1F469-1F3FE-200D-1F692,smileys-people,person-role,woman firefighter: medium-dark skin tone,,,Lisa Thiel,4,๐Ÿ‘ฉโ€๐Ÿš’,4,403 -๐Ÿ‘ฉ๐Ÿฟโ€๐Ÿš’,1F469-1F3FF-200D-1F692,smileys-people,person-role,woman firefighter: dark skin tone,,,Lisa Thiel,5,๐Ÿ‘ฉโ€๐Ÿš’,4,404 -๐Ÿ‘ฎ,1F46E,smileys-people,person-role,police officer,"cop, officer, police","cop, officer, police, law, justice, blue, badge",Lisa Thiel,,,1,405 -๐Ÿ‘ฎ๐Ÿป,1F46E-1F3FB,smileys-people,person-role,police officer: light skin tone,,,Lisa Thiel,1,๐Ÿ‘ฎ,2,406 -๐Ÿ‘ฎ๐Ÿผ,1F46E-1F3FC,smileys-people,person-role,police officer: medium-light skin tone,,,Lisa Thiel,2,๐Ÿ‘ฎ,2,407 -๐Ÿ‘ฎ๐Ÿฝ,1F46E-1F3FD,smileys-people,person-role,police officer: medium skin tone,,,Lisa Thiel,3,๐Ÿ‘ฎ,2,408 -๐Ÿ‘ฎ๐Ÿพ,1F46E-1F3FE,smileys-people,person-role,police officer: medium-dark skin tone,,,Lisa Thiel,4,๐Ÿ‘ฎ,2,409 -๐Ÿ‘ฎ๐Ÿฟ,1F46E-1F3FF,smileys-people,person-role,police officer: dark skin tone,,,Lisa Thiel,5,๐Ÿ‘ฎ,2,410 -๐Ÿ•ต๏ธ,1F575,smileys-people,person-role,detective,"sleuth, spy","sleuth, spy, sherlock, investigator, magnifier, magnifying glass, cloak, coat",Lisa Thiel,,,1,436 -๐Ÿ•ต๐Ÿป,1F575-1F3FB,smileys-people,person-role,detective: light skin tone,,,Lisa Thiel,1,๐Ÿ•ต๏ธ,2,437 -๐Ÿ•ต๐Ÿผ,1F575-1F3FC,smileys-people,person-role,detective: medium-light skin tone,,,Lisa Thiel,2,๐Ÿ•ต๏ธ,2,438 -๐Ÿ•ต๐Ÿฝ,1F575-1F3FD,smileys-people,person-role,detective: medium skin tone,,,Lisa Thiel,3,๐Ÿ•ต๏ธ,2,439 -๐Ÿ•ต๐Ÿพ,1F575-1F3FE,smileys-people,person-role,detective: medium-dark skin tone,,,Lisa Thiel,4,๐Ÿ•ต๏ธ,2,440 -๐Ÿ•ต๐Ÿฟ,1F575-1F3FF,smileys-people,person-role,detective: dark skin tone,,,Lisa Thiel,5,๐Ÿ•ต๏ธ,2,441 -๐Ÿ’‚,1F482,smileys-people,person-role,guard,guard,"guard, britain, great britain, queen, england, london, royal guard, furry hat guard, protection",Lisa Thiel,,,1,470 -๐Ÿ’‚๐Ÿป,1F482-1F3FB,smileys-people,person-role,guard: light skin tone,,,Lisa Thiel,1,๐Ÿ’‚,2,471 -๐Ÿ’‚๐Ÿผ,1F482-1F3FC,smileys-people,person-role,guard: medium-light skin tone,,,Lisa Thiel,2,๐Ÿ’‚,2,472 -๐Ÿ’‚๐Ÿฝ,1F482-1F3FD,smileys-people,person-role,guard: medium skin tone,,,Lisa Thiel,3,๐Ÿ’‚,2,473 -๐Ÿ’‚๐Ÿพ,1F482-1F3FE,smileys-people,person-role,guard: medium-dark skin tone,,,Lisa Thiel,4,๐Ÿ’‚,2,474 -๐Ÿ’‚๐Ÿฟ,1F482-1F3FF,smileys-people,person-role,guard: dark skin tone,,,Lisa Thiel,5,๐Ÿ’‚,2,475 -๐Ÿ‘ท,1F477,smileys-people,person-role,construction worker,"construction, hat, worker","construction, hat, worker, striped west, helmet",Lisa Thiel,,,1,500 -๐Ÿ‘ท๐Ÿป,1F477-1F3FB,smileys-people,person-role,construction worker: light skin tone,,,Lisa Thiel,1,๐Ÿ‘ท,2,501 -๐Ÿ‘ท๐Ÿผ,1F477-1F3FC,smileys-people,person-role,construction worker: medium-light skin tone,,,Lisa Thiel,2,๐Ÿ‘ท,2,502 -๐Ÿ‘ท๐Ÿฝ,1F477-1F3FD,smileys-people,person-role,construction worker: medium skin tone,,,Lisa Thiel,3,๐Ÿ‘ท,2,503 -๐Ÿ‘ท๐Ÿพ,1F477-1F3FE,smileys-people,person-role,construction worker: medium-dark skin tone,,,Lisa Thiel,4,๐Ÿ‘ท,2,504 -๐Ÿ‘ท๐Ÿฟ,1F477-1F3FF,smileys-people,person-role,construction worker: dark skin tone,,,Lisa Thiel,5,๐Ÿ‘ท,2,505 -๐Ÿคด,1F934,smileys-people,person-role,prince,prince,"prince, charming, crown, fairy tale, fantasy, pink",Lisa Thiel,,,3,530 -๐Ÿคด๐Ÿป,1F934-1F3FB,smileys-people,person-role,prince: light skin tone,,,Lisa Thiel,1,๐Ÿคด,3,531 -๐Ÿคด๐Ÿผ,1F934-1F3FC,smileys-people,person-role,prince: medium-light skin tone,,,Lisa Thiel,2,๐Ÿคด,3,532 -๐Ÿคด๐Ÿฝ,1F934-1F3FD,smileys-people,person-role,prince: medium skin tone,,,Lisa Thiel,3,๐Ÿคด,3,533 -๐Ÿคด๐Ÿพ,1F934-1F3FE,smileys-people,person-role,prince: medium-dark skin tone,,,Lisa Thiel,4,๐Ÿคด,3,534 -๐Ÿคด๐Ÿฟ,1F934-1F3FF,smileys-people,person-role,prince: dark skin tone,,,Lisa Thiel,5,๐Ÿคด,3,535 -๐Ÿ‘ธ,1F478,smileys-people,person-role,princess,"fairy tale, fantasy","fairy tale, fantasy, crown, pink dress, princess crown",Lisa Thiel,,,1,536 -๐Ÿ‘ธ๐Ÿป,1F478-1F3FB,smileys-people,person-role,princess: light skin tone,,,Lisa Thiel,1,๐Ÿ‘ธ,2,537 -๐Ÿ‘ธ๐Ÿผ,1F478-1F3FC,smileys-people,person-role,princess: medium-light skin tone,,,Lisa Thiel,2,๐Ÿ‘ธ,2,538 -๐Ÿ‘ธ๐Ÿฝ,1F478-1F3FD,smileys-people,person-role,princess: medium skin tone,,,Lisa Thiel,3,๐Ÿ‘ธ,2,539 -๐Ÿ‘ธ๐Ÿพ,1F478-1F3FE,smileys-people,person-role,princess: medium-dark skin tone,,,Lisa Thiel,4,๐Ÿ‘ธ,2,540 -๐Ÿ‘ธ๐Ÿฟ,1F478-1F3FF,smileys-people,person-role,princess: dark skin tone,,,Lisa Thiel,5,๐Ÿ‘ธ,2,541 -๐Ÿ‘ณ,1F473,smileys-people,person-role,person wearing turban,turban,"man, beard, turban, religion",Lisa Thiel,,,1,542 -๐Ÿ‘ณ๐Ÿป,1F473-1F3FB,smileys-people,person-role,person wearing turban: light skin tone,,,Lisa Thiel,1,๐Ÿ‘ณ,2,543 -๐Ÿ‘ณ๐Ÿผ,1F473-1F3FC,smileys-people,person-role,person wearing turban: medium-light skin tone,,,Lisa Thiel,2,๐Ÿ‘ณ,2,544 -๐Ÿ‘ณ๐Ÿฝ,1F473-1F3FD,smileys-people,person-role,person wearing turban: medium skin tone,,,Lisa Thiel,3,๐Ÿ‘ณ,2,545 -๐Ÿ‘ณ๐Ÿพ,1F473-1F3FE,smileys-people,person-role,person wearing turban: medium-dark skin tone,,,Lisa Thiel,4,๐Ÿ‘ณ,2,546 -๐Ÿ‘ณ๐Ÿฟ,1F473-1F3FF,smileys-people,person-role,person wearing turban: dark skin tone,,,Lisa Thiel,5,๐Ÿ‘ณ,2,547 -๐Ÿง•,1F9D5,smileys-people,person-role,woman with headscarf,"headscarf, hijab, mantilla, tichel","headscarf, hijab, mantilla, tichel, religion, religous, muslim",Lisa Thiel,,,5,578 -๐Ÿง•๐Ÿป,1F9D5-1F3FB,smileys-people,person-role,woman with headscarf: light skin tone,,,Lisa Thiel,1,๐Ÿง•,5,579 -๐Ÿง•๐Ÿผ,1F9D5-1F3FC,smileys-people,person-role,woman with headscarf: medium-light skin tone,,,Lisa Thiel,2,๐Ÿง•,5,580 -๐Ÿง•๐Ÿฝ,1F9D5-1F3FD,smileys-people,person-role,woman with headscarf: medium skin tone,,,Lisa Thiel,3,๐Ÿง•,5,581 -๐Ÿง•๐Ÿพ,1F9D5-1F3FE,smileys-people,person-role,woman with headscarf: medium-dark skin tone,,,Lisa Thiel,4,๐Ÿง•,5,582 -๐Ÿง•๐Ÿฟ,1F9D5-1F3FF,smileys-people,person-role,woman with headscarf: dark skin tone,,,Lisa Thiel,5,๐Ÿง•,5,583 -๐Ÿง”,1F9D4,smileys-people,person,man: beard,"beard, person","beard, man, facial hair, man, manly",Lisa Thiel,,,5,584 -๐Ÿง”๐Ÿป,1F9D4-1F3FB,smileys-people,person-role,"man: light skin tone, beard",,,Lisa Thiel,1,๐Ÿง”,5,585 -๐Ÿง”๐Ÿผ,1F9D4-1F3FC,smileys-people,person-role,"man: medium-light skin tone, beard",,,Lisa Thiel,2,๐Ÿง”,5,586 -๐Ÿง”๐Ÿฝ,1F9D4-1F3FD,smileys-people,person-role,"man: medium skin tone, beard",,,Lisa Thiel,3,๐Ÿง”,5,587 -๐Ÿง”๐Ÿพ,1F9D4-1F3FE,smileys-people,person-role,"man: medium-dark skin tone, beard",,,Lisa Thiel,4,๐Ÿง”,5,588 -๐Ÿง”๐Ÿฟ,1F9D4-1F3FF,smileys-people,person-role,"man: dark skin tone, beard",,,Lisa Thiel,5,๐Ÿง”,5,589 -๐Ÿ‘ฐ,1F470,smileys-people,person-role,bride with veil,"bride, veil, wedding","bride, veil, wedding, woman, female, marriage, married, love, wedding dress",Lisa Thiel,,,1,674 -๐Ÿ‘ฐ๐Ÿป,1F470-1F3FB,smileys-people,person-role,bride with veil: light skin tone,,,Lisa Thiel,1,๐Ÿ‘ฐ,2,675 -๐Ÿ‘ฐ๐Ÿผ,1F470-1F3FC,smileys-people,person-role,bride with veil: medium-light skin tone,,,Lisa Thiel,2,๐Ÿ‘ฐ,2,676 -๐Ÿ‘ฐ๐Ÿฝ,1F470-1F3FD,smileys-people,person-role,bride with veil: medium skin tone,,,Lisa Thiel,3,๐Ÿ‘ฐ,2,677 -๐Ÿ‘ฐ๐Ÿพ,1F470-1F3FE,smileys-people,person-role,bride with veil: medium-dark skin tone,,,Lisa Thiel,4,๐Ÿ‘ฐ,2,678 -๐Ÿ‘ฐ๐Ÿฟ,1F470-1F3FF,smileys-people,person-role,bride with veil: dark skin tone,,,Lisa Thiel,5,๐Ÿ‘ฐ,2,679 -๐Ÿคฐ,1F930,smileys-people,person-role,pregnant woman,"pregnant, woman","pregnant, woman, child, birth, love, mother, motherhood, trust, baby",Lisa Thiel,,,3,680 -๐Ÿคฐ๐Ÿป,1F930-1F3FB,smileys-people,person-role,pregnant woman: light skin tone,,,Lisa Thiel,1,๐Ÿคฐ,3,681 -๐Ÿคฐ๐Ÿผ,1F930-1F3FC,smileys-people,person-role,pregnant woman: medium-light skin tone,,,Lisa Thiel,2,๐Ÿคฐ,3,682 -๐Ÿคฐ๐Ÿฝ,1F930-1F3FD,smileys-people,person-role,pregnant woman: medium skin tone,,,Lisa Thiel,3,๐Ÿคฐ,3,683 -๐Ÿคฐ๐Ÿพ,1F930-1F3FE,smileys-people,person-role,pregnant woman: medium-dark skin tone,,,Lisa Thiel,4,๐Ÿคฐ,3,684 -๐Ÿคฐ๐Ÿฟ,1F930-1F3FF,smileys-people,person-role,pregnant woman: dark skin tone,,,Lisa Thiel,5,๐Ÿคฐ,3,685 -๐Ÿคฑ,1F931,smileys-people,person-role,breast-feeding,"baby, breast, nursing","baby, breast, nursing, love, trust, mother, motherhood",Lisa Thiel,,,5,686 -๐Ÿคฑ๐Ÿป,1F931-1F3FB,smileys-people,person-role,breast-feeding: light skin tone,,,Lisa Thiel,1,๐Ÿคฑ,5,687 -๐Ÿคฑ๐Ÿผ,1F931-1F3FC,smileys-people,person-role,breast-feeding: medium-light skin tone,,,Lisa Thiel,2,๐Ÿคฑ,5,688 -๐Ÿคฑ๐Ÿฝ,1F931-1F3FD,smileys-people,person-role,breast-feeding: medium skin tone,,,Lisa Thiel,3,๐Ÿคฑ,5,689 -๐Ÿคฑ๐Ÿพ,1F931-1F3FE,smileys-people,person-role,breast-feeding: medium-dark skin tone,,,Lisa Thiel,4,๐Ÿคฑ,5,690 -๐Ÿคฑ๐Ÿฟ,1F931-1F3FF,smileys-people,person-role,breast-feeding: dark skin tone,,,Lisa Thiel,5,๐Ÿคฑ,5,691 -๐ŸŽ…,1F385,smileys-people,person-fantasy,Santa Claus,"celebration, christmas, claus, father, santa, santa claus","christmas, holiday, jolly, happy, saint nicholas, santa claus, xmas, celebration",Lisa Thiel,,,1,698 -๐ŸŽ…๐Ÿป,1F385-1F3FB,smileys-people,person-fantasy,Santa Claus: light skin tone,,,Lisa Thiel,1,๐ŸŽ…,2,699 -๐ŸŽ…๐Ÿผ,1F385-1F3FC,smileys-people,person-fantasy,Santa Claus: medium-light skin tone,,,Lisa Thiel,2,๐ŸŽ…,2,700 -๐ŸŽ…๐Ÿฝ,1F385-1F3FD,smileys-people,person-fantasy,Santa Claus: medium skin tone,,,Lisa Thiel,3,๐ŸŽ…,2,701 -๐ŸŽ…๐Ÿพ,1F385-1F3FE,smileys-people,person-fantasy,Santa Claus: medium-dark skin tone,,,Lisa Thiel,4,๐ŸŽ…,2,702 -๐ŸŽ…๐Ÿฟ,1F385-1F3FF,smileys-people,person-fantasy,Santa Claus: dark skin tone,,,Lisa Thiel,5,๐ŸŽ…,2,703 -๐Ÿคถ,1F936,smileys-people,person-fantasy,Mrs. Claus,"celebration, christmas, claus, mother, mrs., mrs. claus","christmas, holiday, jolly, happy, mrs. clause, xmas, celebration",Lisa Thiel,,,3,704 -๐Ÿคถ๐Ÿป,1F936-1F3FB,smileys-people,person-fantasy,Mrs. Claus: light skin tone,,,Lisa Thiel,1,๐Ÿคถ,3,705 -๐Ÿคถ๐Ÿผ,1F936-1F3FC,smileys-people,person-fantasy,Mrs. Claus: medium-light skin tone,,,Lisa Thiel,2,๐Ÿคถ,3,706 -๐Ÿคถ๐Ÿฝ,1F936-1F3FD,smileys-people,person-fantasy,Mrs. Claus: medium skin tone,,,Lisa Thiel,3,๐Ÿคถ,3,707 -๐Ÿคถ๐Ÿพ,1F936-1F3FE,smileys-people,person-fantasy,Mrs. Claus: medium-dark skin tone,,,Lisa Thiel,4,๐Ÿคถ,3,708 -๐Ÿคถ๐Ÿฟ,1F936-1F3FF,smileys-people,person-fantasy,Mrs. Claus: dark skin tone,,,Lisa Thiel,5,๐Ÿคถ,3,709 -๐Ÿง™,1F9D9,smileys-people,person-fantasy,mage,"sorcerer, sorceress, witch, wizard","sorcerer, sorceress, witch, wizard, magician, wand, sage",Lisa Thiel,,,5,770 -๐Ÿง™๐Ÿป,1F9D9-1F3FB,smileys-people,person-fantasy,mage: light skin tone,,,Lisa Thiel,1,๐Ÿง™,5,771 -๐Ÿง™๐Ÿผ,1F9D9-1F3FC,smileys-people,person-fantasy,mage: medium-light skin tone,,,Lisa Thiel,2,๐Ÿง™,5,772 -๐Ÿง™๐Ÿฝ,1F9D9-1F3FD,smileys-people,person-fantasy,mage: medium skin tone,,,Lisa Thiel,3,๐Ÿง™,5,773 -๐Ÿง™๐Ÿพ,1F9D9-1F3FE,smileys-people,person-fantasy,mage: medium-dark skin tone,,,Lisa Thiel,4,๐Ÿง™,5,774 -๐Ÿง™๐Ÿฟ,1F9D9-1F3FF,smileys-people,person-fantasy,mage: dark skin tone,,,Lisa Thiel,5,๐Ÿง™,5,775 -๐Ÿง,1F9DD,smileys-people,person-fantasy,elf,magical,"magical, mystic, bow, arrow, pointy ears",Lisa Thiel,,,5,890 -๐Ÿง๐Ÿป,1F9DD-1F3FB,smileys-people,person-fantasy,elf: light skin tone,,,Lisa Thiel,1,๐Ÿง,5,891 -๐Ÿง๐Ÿผ,1F9DD-1F3FC,smileys-people,person-fantasy,elf: medium-light skin tone,,,Lisa Thiel,2,๐Ÿง,5,892 -๐Ÿง๐Ÿฝ,1F9DD-1F3FD,smileys-people,person-fantasy,elf: medium skin tone,,,Lisa Thiel,3,๐Ÿง,5,893 -๐Ÿง๐Ÿพ,1F9DD-1F3FE,smileys-people,person-fantasy,elf: medium-dark skin tone,,,Lisa Thiel,4,๐Ÿง,5,894 -๐Ÿง๐Ÿฟ,1F9DD-1F3FF,smileys-people,person-fantasy,elf: dark skin tone,,,Lisa Thiel,5,๐Ÿง,5,895 -๐Ÿงž,1F9DE,smileys-people,person-fantasy,genie,djinn,"djinn, magic lamp, wish, magic",Lisa Thiel,,,5,920 -๐ŸงŸ,1F9DF,smileys-people,person-fantasy,zombie,"undead, walking dead","undead, walking dead, brain, decayed, moldy",Lisa Thiel,,,5,925 -๐Ÿ™,1F64D,smileys-people,person-gesture,person frowning,"frown, gesture","negative, angry, head, face",Johanna Wellnitz,,,1,930 -๐Ÿ™๐Ÿป,1F64D-1F3FB,smileys-people,person-gesture,person frowning: light skin tone,,,Johanna Wellnitz,1,๐Ÿ™,2,931 -๐Ÿ™๐Ÿผ,1F64D-1F3FC,smileys-people,person-gesture,person frowning: medium-light skin tone,,,Johanna Wellnitz,2,๐Ÿ™,2,932 -๐Ÿ™๐Ÿฝ,1F64D-1F3FD,smileys-people,person-gesture,person frowning: medium skin tone,,,Johanna Wellnitz,3,๐Ÿ™,2,933 -๐Ÿ™๐Ÿพ,1F64D-1F3FE,smileys-people,person-gesture,person frowning: medium-dark skin tone,,,Johanna Wellnitz,4,๐Ÿ™,2,934 -๐Ÿ™๐Ÿฟ,1F64D-1F3FF,smileys-people,person-gesture,person frowning: dark skin tone,,,Johanna Wellnitz,5,๐Ÿ™,2,935 -๐Ÿ™Ž,1F64E,smileys-people,person-gesture,person pouting,"gesture, pouting","sad, negative, head, face",Johanna Wellnitz,,,1,960 -๐Ÿ™Ž๐Ÿป,1F64E-1F3FB,smileys-people,person-gesture,person pouting: light skin tone,,,Johanna Wellnitz,1,๐Ÿ™Ž,2,961 -๐Ÿ™Ž๐Ÿผ,1F64E-1F3FC,smileys-people,person-gesture,person pouting: medium-light skin tone,,,Johanna Wellnitz,2,๐Ÿ™Ž,2,962 -๐Ÿ™Ž๐Ÿฝ,1F64E-1F3FD,smileys-people,person-gesture,person pouting: medium skin tone,,,Johanna Wellnitz,3,๐Ÿ™Ž,2,963 -๐Ÿ™Ž๐Ÿพ,1F64E-1F3FE,smileys-people,person-gesture,person pouting: medium-dark skin tone,,,Johanna Wellnitz,4,๐Ÿ™Ž,2,964 -๐Ÿ™Ž๐Ÿฟ,1F64E-1F3FF,smileys-people,person-gesture,person pouting: dark skin tone,,,Johanna Wellnitz,5,๐Ÿ™Ž,2,965 -๐Ÿ™…,1F645,smileys-people,person-gesture,person gesturing NO,"forbidden, gesture, hand, person gesturing no, prohibited","human, head, face",Johanna Wellnitz,,,1,990 -๐Ÿ™…๐Ÿป,1F645-1F3FB,smileys-people,person-gesture,person gesturing NO: light skin tone,,,Johanna Wellnitz,1,๐Ÿ™…,2,991 -๐Ÿ™…๐Ÿผ,1F645-1F3FC,smileys-people,person-gesture,person gesturing NO: medium-light skin tone,,,Johanna Wellnitz,2,๐Ÿ™…,2,992 -๐Ÿ™…๐Ÿฝ,1F645-1F3FD,smileys-people,person-gesture,person gesturing NO: medium skin tone,,,Johanna Wellnitz,3,๐Ÿ™…,2,993 -๐Ÿ™…๐Ÿพ,1F645-1F3FE,smileys-people,person-gesture,person gesturing NO: medium-dark skin tone,,,Johanna Wellnitz,4,๐Ÿ™…,2,994 -๐Ÿ™…๐Ÿฟ,1F645-1F3FF,smileys-people,person-gesture,person gesturing NO: dark skin tone,,,Johanna Wellnitz,5,๐Ÿ™…,2,995 -๐Ÿ™†,1F646,smileys-people,person-gesture,person gesturing OK,"gesture, hand, ok, person gesturing ok","human, head, face",Johanna Wellnitz,,,1,1020 -๐Ÿ™†๐Ÿป,1F646-1F3FB,smileys-people,person-gesture,person gesturing OK: light skin tone,,,Johanna Wellnitz,1,๐Ÿ™†,2,1021 -๐Ÿ™†๐Ÿผ,1F646-1F3FC,smileys-people,person-gesture,person gesturing OK: medium-light skin tone,,,Johanna Wellnitz,2,๐Ÿ™†,2,1022 -๐Ÿ™†๐Ÿฝ,1F646-1F3FD,smileys-people,person-gesture,person gesturing OK: medium skin tone,,,Johanna Wellnitz,3,๐Ÿ™†,2,1023 -๐Ÿ™†๐Ÿพ,1F646-1F3FE,smileys-people,person-gesture,person gesturing OK: medium-dark skin tone,,,Johanna Wellnitz,4,๐Ÿ™†,2,1024 -๐Ÿ™†๐Ÿฟ,1F646-1F3FF,smileys-people,person-gesture,person gesturing OK: dark skin tone,,,Johanna Wellnitz,5,๐Ÿ™†,2,1025 -๐Ÿ’,1F481,smileys-people,person-gesture,person tipping hand,"hand, help, information, sassy, tipping","human, head, face",Johanna Wellnitz,,,1,1050 -๐Ÿ’๐Ÿป,1F481-1F3FB,smileys-people,person-gesture,person tipping hand: light skin tone,,,Johanna Wellnitz,1,๐Ÿ’,2,1051 -๐Ÿ’๐Ÿผ,1F481-1F3FC,smileys-people,person-gesture,person tipping hand: medium-light skin tone,,,Johanna Wellnitz,2,๐Ÿ’,2,1052 -๐Ÿ’๐Ÿฝ,1F481-1F3FD,smileys-people,person-gesture,person tipping hand: medium skin tone,,,Johanna Wellnitz,3,๐Ÿ’,2,1053 -๐Ÿ’๐Ÿพ,1F481-1F3FE,smileys-people,person-gesture,person tipping hand: medium-dark skin tone,,,Johanna Wellnitz,4,๐Ÿ’,2,1054 -๐Ÿ’๐Ÿฟ,1F481-1F3FF,smileys-people,person-gesture,person tipping hand: dark skin tone,,,Johanna Wellnitz,5,๐Ÿ’,2,1055 -๐Ÿ™‹,1F64B,smileys-people,person-gesture,person raising hand,"gesture, hand, happy, raised","human, head, face",Johanna Wellnitz,,,1,1080 -๐Ÿ™‹๐Ÿป,1F64B-1F3FB,smileys-people,person-gesture,person raising hand: light skin tone,,,Johanna Wellnitz,1,๐Ÿ™‹,2,1081 -๐Ÿ™‹๐Ÿผ,1F64B-1F3FC,smileys-people,person-gesture,person raising hand: medium-light skin tone,,,Johanna Wellnitz,2,๐Ÿ™‹,2,1082 -๐Ÿ™‹๐Ÿฝ,1F64B-1F3FD,smileys-people,person-gesture,person raising hand: medium skin tone,,,Johanna Wellnitz,3,๐Ÿ™‹,2,1083 -๐Ÿ™‹๐Ÿพ,1F64B-1F3FE,smileys-people,person-gesture,person raising hand: medium-dark skin tone,,,Johanna Wellnitz,4,๐Ÿ™‹,2,1084 -๐Ÿ™‹๐Ÿฟ,1F64B-1F3FF,smileys-people,person-gesture,person raising hand: dark skin tone,,,Johanna Wellnitz,5,๐Ÿ™‹,2,1085 -๐Ÿ™‡,1F647,smileys-people,person-gesture,person bowing,"apology, bow, gesture, sorry","human, head, face",Johanna Wellnitz,,,1,1110 -๐Ÿ™‡๐Ÿป,1F647-1F3FB,smileys-people,person-gesture,person bowing: light skin tone,,,Johanna Wellnitz,1,๐Ÿ™‡,2,1111 -๐Ÿ™‡๐Ÿผ,1F647-1F3FC,smileys-people,person-gesture,person bowing: medium-light skin tone,,,Johanna Wellnitz,2,๐Ÿ™‡,2,1112 -๐Ÿ™‡๐Ÿฝ,1F647-1F3FD,smileys-people,person-gesture,person bowing: medium skin tone,,,Johanna Wellnitz,3,๐Ÿ™‡,2,1113 -๐Ÿ™‡๐Ÿพ,1F647-1F3FE,smileys-people,person-gesture,person bowing: medium-dark skin tone,,,Johanna Wellnitz,4,๐Ÿ™‡,2,1114 -๐Ÿ™‡๐Ÿฟ,1F647-1F3FF,smileys-people,person-gesture,person bowing: dark skin tone,,,Johanna Wellnitz,5,๐Ÿ™‡,2,1115 -๐Ÿคฆ,1F926,smileys-people,person-gesture,person facepalming,"disbelief, exasperation, face, palm","facepalm, human, head, face",Johanna Wellnitz,,,3,1140 -๐Ÿคฆ๐Ÿป,1F926-1F3FB,smileys-people,person-gesture,person facepalming: light skin tone,,,Johanna Wellnitz,1,๐Ÿคฆ,3,1141 -๐Ÿคฆ๐Ÿผ,1F926-1F3FC,smileys-people,person-gesture,person facepalming: medium-light skin tone,,,Johanna Wellnitz,2,๐Ÿคฆ,3,1142 -๐Ÿคฆ๐Ÿฝ,1F926-1F3FD,smileys-people,person-gesture,person facepalming: medium skin tone,,,Johanna Wellnitz,3,๐Ÿคฆ,3,1143 -๐Ÿคฆ๐Ÿพ,1F926-1F3FE,smileys-people,person-gesture,person facepalming: medium-dark skin tone,,,Johanna Wellnitz,4,๐Ÿคฆ,3,1144 -๐Ÿคฆ๐Ÿฟ,1F926-1F3FF,smileys-people,person-gesture,person facepalming: dark skin tone,,,Johanna Wellnitz,5,๐Ÿคฆ,3,1145 -๐Ÿคฆโ€โ™‚๏ธ,1F926-200D-2642-FE0F,smileys-people,person-gesture,man facepalming,"disbelief, exasperation, facepalm, man","facepalm, head, face",Johanna Wellnitz,,,4,1146 -๐Ÿคฆ๐Ÿปโ€โ™‚๏ธ,1F926-1F3FB-200D-2642-FE0F,smileys-people,person-gesture,man facepalming: light skin tone,,,Johanna Wellnitz,1,๐Ÿคฆโ€โ™‚๏ธ,4,1148 -๐Ÿคฆ๐Ÿผโ€โ™‚๏ธ,1F926-1F3FC-200D-2642-FE0F,smileys-people,person-gesture,man facepalming: medium-light skin tone,,,Johanna Wellnitz,2,๐Ÿคฆโ€โ™‚๏ธ,4,1150 -๐Ÿคฆ๐Ÿฝโ€โ™‚๏ธ,1F926-1F3FD-200D-2642-FE0F,smileys-people,person-gesture,man facepalming: medium skin tone,,,Johanna Wellnitz,3,๐Ÿคฆโ€โ™‚๏ธ,4,1152 -๐Ÿคฆ๐Ÿพโ€โ™‚๏ธ,1F926-1F3FE-200D-2642-FE0F,smileys-people,person-gesture,man facepalming: medium-dark skin tone,,,Johanna Wellnitz,4,๐Ÿคฆโ€โ™‚๏ธ,4,1154 -๐Ÿคฆ๐Ÿฟโ€โ™‚๏ธ,1F926-1F3FF-200D-2642-FE0F,smileys-people,person-gesture,man facepalming: dark skin tone,,,Johanna Wellnitz,5,๐Ÿคฆโ€โ™‚๏ธ,4,1156 -๐Ÿคฆโ€โ™€๏ธ,1F926-200D-2640-FE0F,smileys-people,person-gesture,woman facepalming,"disbelief, exasperation, facepalm, woman","facepalm, head, face",Johanna Wellnitz,,,4,1158 -๐Ÿคฆ๐Ÿปโ€โ™€๏ธ,1F926-1F3FB-200D-2640-FE0F,smileys-people,person-gesture,woman facepalming: light skin tone,,,Johanna Wellnitz,1,๐Ÿคฆโ€โ™€๏ธ,4,1160 -๐Ÿคฆ๐Ÿผโ€โ™€๏ธ,1F926-1F3FC-200D-2640-FE0F,smileys-people,person-gesture,woman facepalming: medium-light skin tone,,,Johanna Wellnitz,2,๐Ÿคฆโ€โ™€๏ธ,4,1162 -๐Ÿคฆ๐Ÿฝโ€โ™€๏ธ,1F926-1F3FD-200D-2640-FE0F,smileys-people,person-gesture,woman facepalming: medium skin tone,,,Johanna Wellnitz,3,๐Ÿคฆโ€โ™€๏ธ,4,1164 -๐Ÿคฆ๐Ÿพโ€โ™€๏ธ,1F926-1F3FE-200D-2640-FE0F,smileys-people,person-gesture,woman facepalming: medium-dark skin tone,,,Johanna Wellnitz,4,๐Ÿคฆโ€โ™€๏ธ,4,1166 -๐Ÿคฆ๐Ÿฟโ€โ™€๏ธ,1F926-1F3FF-200D-2640-FE0F,smileys-people,person-gesture,woman facepalming: dark skin tone,,,Johanna Wellnitz,5,๐Ÿคฆโ€โ™€๏ธ,4,1168 -๐Ÿคท,1F937,smileys-people,person-gesture,person shrugging,"doubt, ignorance, indifference, shrug","human, head, face",Johanna Wellnitz,,,3,1170 -๐Ÿคท๐Ÿป,1F937-1F3FB,smileys-people,person-gesture,person shrugging: light skin tone,,,Johanna Wellnitz,1,๐Ÿคท,3,1171 -๐Ÿคท๐Ÿผ,1F937-1F3FC,smileys-people,person-gesture,person shrugging: medium-light skin tone,,,Johanna Wellnitz,2,๐Ÿคท,3,1172 -๐Ÿคท๐Ÿฝ,1F937-1F3FD,smileys-people,person-gesture,person shrugging: medium skin tone,,,Johanna Wellnitz,3,๐Ÿคท,3,1173 -๐Ÿคท๐Ÿพ,1F937-1F3FE,smileys-people,person-gesture,person shrugging: medium-dark skin tone,,,Johanna Wellnitz,4,๐Ÿคท,3,1174 -๐Ÿคท๐Ÿฟ,1F937-1F3FF,smileys-people,person-gesture,person shrugging: dark skin tone,,,Johanna Wellnitz,5,๐Ÿคท,3,1175 -๐Ÿ’†,1F486,smileys-people,person-activity,person getting massage,"face, massage, salon","human, person",Johanna Wellnitz,,,1,1200 -๐Ÿ’†๐Ÿป,1F486-1F3FB,smileys-people,person-activity,person getting massage: light skin tone,,,Johanna Wellnitz,1,๐Ÿ’†,2,1201 -๐Ÿ’†๐Ÿผ,1F486-1F3FC,smileys-people,person-activity,person getting massage: medium-light skin tone,,,Johanna Wellnitz,2,๐Ÿ’†,2,1202 -๐Ÿ’†๐Ÿฝ,1F486-1F3FD,smileys-people,person-activity,person getting massage: medium skin tone,,,Johanna Wellnitz,3,๐Ÿ’†,2,1203 -๐Ÿ’†๐Ÿพ,1F486-1F3FE,smileys-people,person-activity,person getting massage: medium-dark skin tone,,,Johanna Wellnitz,4,๐Ÿ’†,2,1204 -๐Ÿ’†๐Ÿฟ,1F486-1F3FF,smileys-people,person-activity,person getting massage: dark skin tone,,,Johanna Wellnitz,5,๐Ÿ’†,2,1205 -๐Ÿ’‡,1F487,smileys-people,person-activity,person getting haircut,"barber, beauty, haircut, parlor","human, person",Johanna Wellnitz,,,1,1230 -๐Ÿ’‡๐Ÿป,1F487-1F3FB,smileys-people,person-activity,person getting haircut: light skin tone,,,Johanna Wellnitz,1,๐Ÿ’‡,2,1231 -๐Ÿ’‡๐Ÿผ,1F487-1F3FC,smileys-people,person-activity,person getting haircut: medium-light skin tone,,,Johanna Wellnitz,2,๐Ÿ’‡,2,1232 -๐Ÿ’‡๐Ÿฝ,1F487-1F3FD,smileys-people,person-activity,person getting haircut: medium skin tone,,,Johanna Wellnitz,3,๐Ÿ’‡,2,1233 -๐Ÿ’‡๐Ÿพ,1F487-1F3FE,smileys-people,person-activity,person getting haircut: medium-dark skin tone,,,Johanna Wellnitz,4,๐Ÿ’‡,2,1234 -๐Ÿ’‡๐Ÿฟ,1F487-1F3FF,smileys-people,person-activity,person getting haircut: dark skin tone,,,Johanna Wellnitz,5,๐Ÿ’‡,2,1235 -๐Ÿšถ,1F6B6,smileys-people,person-activity,person walking,"hike, walk, walking","human, person",Johanna Wellnitz,,,1,1260 -๐Ÿšถ๐Ÿป,1F6B6-1F3FB,smileys-people,person-activity,person walking: light skin tone,,,Johanna Wellnitz,1,๐Ÿšถ,2,1261 -๐Ÿšถ๐Ÿผ,1F6B6-1F3FC,smileys-people,person-activity,person walking: medium-light skin tone,,,Johanna Wellnitz,2,๐Ÿšถ,2,1262 -๐Ÿšถ๐Ÿฝ,1F6B6-1F3FD,smileys-people,person-activity,person walking: medium skin tone,,,Johanna Wellnitz,3,๐Ÿšถ,2,1263 -๐Ÿšถ๐Ÿพ,1F6B6-1F3FE,smileys-people,person-activity,person walking: medium-dark skin tone,,,Johanna Wellnitz,4,๐Ÿšถ,2,1264 -๐Ÿšถ๐Ÿฟ,1F6B6-1F3FF,smileys-people,person-activity,person walking: dark skin tone,,,Johanna Wellnitz,5,๐Ÿšถ,2,1265 -๐Ÿšถโ€โ™‚๏ธ,1F6B6-200D-2642-FE0F,smileys-people,person-activity,man walking,"hike, man, walk","human, person",Johanna Wellnitz,,,4,1266 -๐Ÿšถ๐Ÿปโ€โ™‚๏ธ,1F6B6-1F3FB-200D-2642-FE0F,smileys-people,person-activity,man walking: light skin tone,,,Johanna Wellnitz,1,๐Ÿšถโ€โ™‚๏ธ,4,1268 -๐Ÿšถ๐Ÿผโ€โ™‚๏ธ,1F6B6-1F3FC-200D-2642-FE0F,smileys-people,person-activity,man walking: medium-light skin tone,,,Johanna Wellnitz,2,๐Ÿšถโ€โ™‚๏ธ,4,1270 -๐Ÿšถ๐Ÿฝโ€โ™‚๏ธ,1F6B6-1F3FD-200D-2642-FE0F,smileys-people,person-activity,man walking: medium skin tone,,,Johanna Wellnitz,3,๐Ÿšถโ€โ™‚๏ธ,4,1272 -๐Ÿšถ๐Ÿพโ€โ™‚๏ธ,1F6B6-1F3FE-200D-2642-FE0F,smileys-people,person-activity,man walking: medium-dark skin tone,,,Johanna Wellnitz,4,๐Ÿšถโ€โ™‚๏ธ,4,1274 -๐Ÿšถ๐Ÿฟโ€โ™‚๏ธ,1F6B6-1F3FF-200D-2642-FE0F,smileys-people,person-activity,man walking: dark skin tone,,,Johanna Wellnitz,5,๐Ÿšถโ€โ™‚๏ธ,4,1276 -๐Ÿšถโ€โ™€๏ธ,1F6B6-200D-2640-FE0F,smileys-people,person-activity,woman walking,"hike, walk, woman","human, person",Johanna Wellnitz,,,4,1278 -๐Ÿšถ๐Ÿปโ€โ™€๏ธ,1F6B6-1F3FB-200D-2640-FE0F,smileys-people,person-activity,woman walking: light skin tone,,,Johanna Wellnitz,1,๐Ÿšถโ€โ™€๏ธ,4,1280 -๐Ÿšถ๐Ÿผโ€โ™€๏ธ,1F6B6-1F3FC-200D-2640-FE0F,smileys-people,person-activity,woman walking: medium-light skin tone,,,Johanna Wellnitz,2,๐Ÿšถโ€โ™€๏ธ,4,1282 -๐Ÿšถ๐Ÿฝโ€โ™€๏ธ,1F6B6-1F3FD-200D-2640-FE0F,smileys-people,person-activity,woman walking: medium skin tone,,,Johanna Wellnitz,3,๐Ÿšถโ€โ™€๏ธ,4,1284 -๐Ÿšถ๐Ÿพโ€โ™€๏ธ,1F6B6-1F3FE-200D-2640-FE0F,smileys-people,person-activity,woman walking: medium-dark skin tone,,,Johanna Wellnitz,4,๐Ÿšถโ€โ™€๏ธ,4,1286 -๐Ÿšถ๐Ÿฟโ€โ™€๏ธ,1F6B6-1F3FF-200D-2640-FE0F,smileys-people,person-activity,woman walking: dark skin tone,,,Johanna Wellnitz,5,๐Ÿšถโ€โ™€๏ธ,4,1288 -๐Ÿƒ,1F3C3,smileys-people,person-activity,person running,"marathon, running","human, person",Johanna Wellnitz,,,1,1290 -๐Ÿƒ๐Ÿป,1F3C3-1F3FB,smileys-people,person-activity,person running: light skin tone,,,Johanna Wellnitz,1,๐Ÿƒ,2,1291 -๐Ÿƒ๐Ÿผ,1F3C3-1F3FC,smileys-people,person-activity,person running: medium-light skin tone,,,Johanna Wellnitz,2,๐Ÿƒ,2,1292 -๐Ÿƒ๐Ÿฝ,1F3C3-1F3FD,smileys-people,person-activity,person running: medium skin tone,,,Johanna Wellnitz,3,๐Ÿƒ,2,1293 -๐Ÿƒ๐Ÿพ,1F3C3-1F3FE,smileys-people,person-activity,person running: medium-dark skin tone,,,Johanna Wellnitz,4,๐Ÿƒ,2,1294 -๐Ÿƒ๐Ÿฟ,1F3C3-1F3FF,smileys-people,person-activity,person running: dark skin tone,,,Johanna Wellnitz,5,๐Ÿƒ,2,1295 -๐Ÿ’ƒ,1F483,smileys-people,person-activity,woman dancing,"dancing, woman","human, person",Johanna Wellnitz,,,1,1320 -๐Ÿ’ƒ๐Ÿป,1F483-1F3FB,smileys-people,person-activity,woman dancing: light skin tone,,,Johanna Wellnitz,1,๐Ÿ’ƒ,2,1321 -๐Ÿ’ƒ๐Ÿผ,1F483-1F3FC,smileys-people,person-activity,woman dancing: medium-light skin tone,,,Johanna Wellnitz,2,๐Ÿ’ƒ,2,1322 -๐Ÿ’ƒ๐Ÿฝ,1F483-1F3FD,smileys-people,person-activity,woman dancing: medium skin tone,,,Johanna Wellnitz,3,๐Ÿ’ƒ,2,1323 -๐Ÿ’ƒ๐Ÿพ,1F483-1F3FE,smileys-people,person-activity,woman dancing: medium-dark skin tone,,,Johanna Wellnitz,4,๐Ÿ’ƒ,2,1324 -๐Ÿ’ƒ๐Ÿฟ,1F483-1F3FF,smileys-people,person-activity,woman dancing: dark skin tone,,,Johanna Wellnitz,5,๐Ÿ’ƒ,2,1325 -๐Ÿ•บ,1F57A,smileys-people,person-activity,man dancing,"dance, man","human, person",Johanna Wellnitz,,,3,1326 -๐Ÿ•บ๐Ÿป,1F57A-1F3FB,smileys-people,person-activity,man dancing: light skin tone,,,Johanna Wellnitz,1,๐Ÿ•บ,3,1327 -๐Ÿ•บ๐Ÿผ,1F57A-1F3FC,smileys-people,person-activity,man dancing: medium-light skin tone,,,Johanna Wellnitz,2,๐Ÿ•บ,3,1328 -๐Ÿ•บ๐Ÿฝ,1F57A-1F3FD,smileys-people,person-activity,man dancing: medium skin tone,,,Johanna Wellnitz,3,๐Ÿ•บ,3,1329 -๐Ÿ•บ๐Ÿพ,1F57A-1F3FE,smileys-people,person-activity,man dancing: medium-dark skin tone,,,Johanna Wellnitz,4,๐Ÿ•บ,3,1330 -๐Ÿ•บ๐Ÿฟ,1F57A-1F3FF,smileys-people,person-activity,man dancing: dark skin tone,,,Johanna Wellnitz,5,๐Ÿ•บ,3,1331 -๐Ÿ‘ฏ,1F46F,smileys-people,person-activity,people with bunny ears,"bunny ear, dancer, partying","human, person",Johanna Wellnitz,,,1,1332 -๐Ÿง—,1F9D7,smileys-people,person-activity,person climbing,climber,"human, person",Johanna Wellnitz,,,5,1367 -๐Ÿง—๐Ÿป,1F9D7-1F3FB,smileys-people,person-activity,person climbing: light skin tone,,,Johanna Wellnitz,1,๐Ÿง—,5,1368 -๐Ÿง—๐Ÿผ,1F9D7-1F3FC,smileys-people,person-activity,person climbing: medium-light skin tone,,,Johanna Wellnitz,2,๐Ÿง—,5,1369 -๐Ÿง—๐Ÿฝ,1F9D7-1F3FD,smileys-people,person-activity,person climbing: medium skin tone,,,Johanna Wellnitz,3,๐Ÿง—,5,1370 -๐Ÿง—๐Ÿพ,1F9D7-1F3FE,smileys-people,person-activity,person climbing: medium-dark skin tone,,,Johanna Wellnitz,4,๐Ÿง—,5,1371 -๐Ÿง—๐Ÿฟ,1F9D7-1F3FF,smileys-people,person-activity,person climbing: dark skin tone,,,Johanna Wellnitz,5,๐Ÿง—,5,1372 -๐Ÿง˜,1F9D8,smileys-people,person-activity,person in lotus position,"meditation, yoga","human, person, excercise",Johanna Wellnitz,,,5,1397 -๐Ÿง˜๐Ÿป,1F9D8-1F3FB,smileys-people,person-activity,person in lotus position: light skin tone,,,Johanna Wellnitz,1,๐Ÿง˜,5,1398 -๐Ÿง˜๐Ÿผ,1F9D8-1F3FC,smileys-people,person-activity,person in lotus position: medium-light skin tone,,,Johanna Wellnitz,2,๐Ÿง˜,5,1399 -๐Ÿง˜๐Ÿฝ,1F9D8-1F3FD,smileys-people,person-activity,person in lotus position: medium skin tone,,,Johanna Wellnitz,3,๐Ÿง˜,5,1400 -๐Ÿง˜๐Ÿพ,1F9D8-1F3FE,smileys-people,person-activity,person in lotus position: medium-dark skin tone,,,Johanna Wellnitz,4,๐Ÿง˜,5,1401 -๐Ÿง˜๐Ÿฟ,1F9D8-1F3FF,smileys-people,person-activity,person in lotus position: dark skin tone,,,Johanna Wellnitz,5,๐Ÿง˜,5,1402 -๐Ÿ›Œ,1F6CC,smileys-people,person-activity,person in bed,"hotel, sleep","human, person",Johanna Wellnitz,,,1,1433 -๐Ÿ›Œ๐Ÿป,1F6CC-1F3FB,smileys-people,person-activity,person in bed: light skin tone,,,Johanna Wellnitz,1,๐Ÿ›Œ,4,1434 -๐Ÿ›Œ๐Ÿผ,1F6CC-1F3FC,smileys-people,person-activity,person in bed: medium-light skin tone,,,Johanna Wellnitz,2,๐Ÿ›Œ,4,1435 -๐Ÿ›Œ๐Ÿฝ,1F6CC-1F3FD,smileys-people,person-activity,person in bed: medium skin tone,,,Johanna Wellnitz,3,๐Ÿ›Œ,4,1436 -๐Ÿ›Œ๐Ÿพ,1F6CC-1F3FE,smileys-people,person-activity,person in bed: medium-dark skin tone,,,Johanna Wellnitz,4,๐Ÿ›Œ,4,1437 -๐Ÿ›Œ๐Ÿฟ,1F6CC-1F3FF,smileys-people,person-activity,person in bed: dark skin tone,,,Johanna Wellnitz,5,๐Ÿ›Œ,4,1438 -๐Ÿ—ฃ๏ธ,1F5E3,smileys-people,person-activity,speaking head,"face, head, silhouette, speak, speaking","human, person",Johanna Wellnitz,,,1,1447 -๐Ÿ‘ค,1F464,smileys-people,person-activity,bust in silhouette,"bust, silhouette","human, person",Johanna Wellnitz,,,1,1448 -๐Ÿ‘ฅ,1F465,smileys-people,person-activity,busts in silhouette,"bust, silhouette","human, person",Johanna Wellnitz,,,1,1449 -๐Ÿคบ,1F93A,smileys-people,person-sport,person fencing,"fencer, fencing, sword","epee, sports",Johanna Wellnitz,,,3,1450 -๐Ÿ‡,1F3C7,smileys-people,person-sport,horse racing,"horse, jockey, racehorse, racing","animal, sports",Johanna Wellnitz,,,1,1451 -๐Ÿ‡๐Ÿป,1F3C7-1F3FB,smileys-people,person-sport,horse racing: light skin tone,,,Johanna Wellnitz,1,๐Ÿ‡,4,1452 -๐Ÿ‡๐Ÿผ,1F3C7-1F3FC,smileys-people,person-sport,horse racing: medium-light skin tone,,,Johanna Wellnitz,2,๐Ÿ‡,4,1453 -๐Ÿ‡๐Ÿฝ,1F3C7-1F3FD,smileys-people,person-sport,horse racing: medium skin tone,,,Johanna Wellnitz,3,๐Ÿ‡,4,1454 -๐Ÿ‡๐Ÿพ,1F3C7-1F3FE,smileys-people,person-sport,horse racing: medium-dark skin tone,,,Johanna Wellnitz,4,๐Ÿ‡,4,1455 -๐Ÿ‡๐Ÿฟ,1F3C7-1F3FF,smileys-people,person-sport,horse racing: dark skin tone,,,Johanna Wellnitz,5,๐Ÿ‡,4,1456 -โ›ท๏ธ,26F7,smileys-people,person-sport,skier,"ski, snow","winter, sports",Johanna Wellnitz,,,1,1458 -๐Ÿ‚๏ธ,1F3C2,smileys-people,person-sport,snowboarder,"ski, snow, snowboard","winter, sports",Johanna Wellnitz,,,1,1459 -๐Ÿ‚๐Ÿป,1F3C2-1F3FB,smileys-people,person-sport,snowboarder: light skin tone,,,Johanna Wellnitz,1,๐Ÿ‚๏ธ,4,1460 -๐Ÿ‚๐Ÿผ,1F3C2-1F3FC,smileys-people,person-sport,snowboarder: medium-light skin tone,,,Johanna Wellnitz,2,๐Ÿ‚๏ธ,4,1461 -๐Ÿ‚๐Ÿฝ,1F3C2-1F3FD,smileys-people,person-sport,snowboarder: medium skin tone,,,Johanna Wellnitz,3,๐Ÿ‚๏ธ,4,1462 -๐Ÿ‚๐Ÿพ,1F3C2-1F3FE,smileys-people,person-sport,snowboarder: medium-dark skin tone,,,Johanna Wellnitz,4,๐Ÿ‚๏ธ,4,1463 -๐Ÿ‚๐Ÿฟ,1F3C2-1F3FF,smileys-people,person-sport,snowboarder: dark skin tone,,,Johanna Wellnitz,5,๐Ÿ‚๏ธ,4,1464 -๐ŸŒ๏ธ,1F3CC,smileys-people,person-sport,person golfing,"ball, golf",sports,Johanna Wellnitz,,,1,1466 -๐ŸŒ๐Ÿป,1F3CC-1F3FB,smileys-people,person-sport,person golfing: light skin tone,,,Johanna Wellnitz,1,๐ŸŒ๏ธ,4,1467 -๐ŸŒ๐Ÿผ,1F3CC-1F3FC,smileys-people,person-sport,person golfing: medium-light skin tone,,,Johanna Wellnitz,2,๐ŸŒ๏ธ,4,1468 -๐ŸŒ๐Ÿฝ,1F3CC-1F3FD,smileys-people,person-sport,person golfing: medium skin tone,,,Johanna Wellnitz,3,๐ŸŒ๏ธ,4,1469 -๐ŸŒ๐Ÿพ,1F3CC-1F3FE,smileys-people,person-sport,person golfing: medium-dark skin tone,,,Johanna Wellnitz,4,๐ŸŒ๏ธ,4,1470 -๐ŸŒ๐Ÿฟ,1F3CC-1F3FF,smileys-people,person-sport,person golfing: dark skin tone,,,Johanna Wellnitz,5,๐ŸŒ๏ธ,4,1471 -๐Ÿ„๏ธ,1F3C4,smileys-people,person-sport,person surfing,surfing,"water, ocean, sea, wave, surfer, sports",Johanna Wellnitz,,,1,1500 -๐Ÿ„๐Ÿป,1F3C4-1F3FB,smileys-people,person-sport,person surfing: light skin tone,,,Johanna Wellnitz,1,๐Ÿ„๏ธ,2,1501 -๐Ÿ„๐Ÿผ,1F3C4-1F3FC,smileys-people,person-sport,person surfing: medium-light skin tone,,,Johanna Wellnitz,2,๐Ÿ„๏ธ,2,1502 -๐Ÿ„๐Ÿฝ,1F3C4-1F3FD,smileys-people,person-sport,person surfing: medium skin tone,,,Johanna Wellnitz,3,๐Ÿ„๏ธ,2,1503 -๐Ÿ„๐Ÿพ,1F3C4-1F3FE,smileys-people,person-sport,person surfing: medium-dark skin tone,,,Johanna Wellnitz,4,๐Ÿ„๏ธ,2,1504 -๐Ÿ„๐Ÿฟ,1F3C4-1F3FF,smileys-people,person-sport,person surfing: dark skin tone,,,Johanna Wellnitz,5,๐Ÿ„๏ธ,2,1505 -๐Ÿšฃ,1F6A3,smileys-people,person-sport,person rowing boat,"boat, rowboat","sports, kayak, canoe, water",Johanna Wellnitz,,,1,1530 -๐Ÿšฃ๐Ÿป,1F6A3-1F3FB,smileys-people,person-sport,person rowing boat: light skin tone,,,Johanna Wellnitz,1,๐Ÿšฃ,2,1531 -๐Ÿšฃ๐Ÿผ,1F6A3-1F3FC,smileys-people,person-sport,person rowing boat: medium-light skin tone,,,Johanna Wellnitz,2,๐Ÿšฃ,2,1532 -๐Ÿšฃ๐Ÿฝ,1F6A3-1F3FD,smileys-people,person-sport,person rowing boat: medium skin tone,,,Johanna Wellnitz,3,๐Ÿšฃ,2,1533 -๐Ÿšฃ๐Ÿพ,1F6A3-1F3FE,smileys-people,person-sport,person rowing boat: medium-dark skin tone,,,Johanna Wellnitz,4,๐Ÿšฃ,2,1534 -๐Ÿšฃ๐Ÿฟ,1F6A3-1F3FF,smileys-people,person-sport,person rowing boat: dark skin tone,,,Johanna Wellnitz,5,๐Ÿšฃ,2,1535 -๐ŸŠ๏ธ,1F3CA,smileys-people,person-sport,person swimming,swim,"sports, water",Johanna Wellnitz,,,1,1560 -๐ŸŠ๐Ÿป,1F3CA-1F3FB,smileys-people,person-sport,person swimming: light skin tone,,,Johanna Wellnitz,1,๐ŸŠ๏ธ,2,1561 -๐ŸŠ๐Ÿผ,1F3CA-1F3FC,smileys-people,person-sport,person swimming: medium-light skin tone,,,Johanna Wellnitz,2,๐ŸŠ๏ธ,2,1562 -๐ŸŠ๐Ÿฝ,1F3CA-1F3FD,smileys-people,person-sport,person swimming: medium skin tone,,,Johanna Wellnitz,3,๐ŸŠ๏ธ,2,1563 -๐ŸŠ๐Ÿพ,1F3CA-1F3FE,smileys-people,person-sport,person swimming: medium-dark skin tone,,,Johanna Wellnitz,4,๐ŸŠ๏ธ,2,1564 -๐ŸŠ๐Ÿฟ,1F3CA-1F3FF,smileys-people,person-sport,person swimming: dark skin tone,,,Johanna Wellnitz,5,๐ŸŠ๏ธ,2,1565 -โ›น๏ธ,26F9,smileys-people,person-sport,person bouncing ball,ball,"dribble, sports",Johanna Wellnitz,,,1,1591 -โ›น๐Ÿป,26F9-1F3FB,smileys-people,person-sport,person bouncing ball: light skin tone,,,Johanna Wellnitz,1,โ›น๏ธ,2,1592 -โ›น๐Ÿผ,26F9-1F3FC,smileys-people,person-sport,person bouncing ball: medium-light skin tone,,,Johanna Wellnitz,2,โ›น๏ธ,2,1593 -โ›น๐Ÿฝ,26F9-1F3FD,smileys-people,person-sport,person bouncing ball: medium skin tone,,,Johanna Wellnitz,3,โ›น๏ธ,2,1594 -โ›น๐Ÿพ,26F9-1F3FE,smileys-people,person-sport,person bouncing ball: medium-dark skin tone,,,Johanna Wellnitz,4,โ›น๏ธ,2,1595 -โ›น๐Ÿฟ,26F9-1F3FF,smileys-people,person-sport,person bouncing ball: dark skin tone,,,Johanna Wellnitz,5,โ›น๏ธ,2,1596 -๐Ÿ‹๏ธ,1F3CB,smileys-people,person-sport,person lifting weights,"lifter, weight","sports, power",Johanna Wellnitz,,,1,1626 -๐Ÿ‹๐Ÿป,1F3CB-1F3FB,smileys-people,person-sport,person lifting weights: light skin tone,,,Johanna Wellnitz,1,๐Ÿ‹๏ธ,2,1627 -๐Ÿ‹๐Ÿผ,1F3CB-1F3FC,smileys-people,person-sport,person lifting weights: medium-light skin tone,,,Johanna Wellnitz,2,๐Ÿ‹๏ธ,2,1628 -๐Ÿ‹๐Ÿฝ,1F3CB-1F3FD,smileys-people,person-sport,person lifting weights: medium skin tone,,,Johanna Wellnitz,3,๐Ÿ‹๏ธ,2,1629 -๐Ÿ‹๐Ÿพ,1F3CB-1F3FE,smileys-people,person-sport,person lifting weights: medium-dark skin tone,,,Johanna Wellnitz,4,๐Ÿ‹๏ธ,2,1630 -๐Ÿ‹๐Ÿฟ,1F3CB-1F3FF,smileys-people,person-sport,person lifting weights: dark skin tone,,,Johanna Wellnitz,5,๐Ÿ‹๏ธ,2,1631 -๐Ÿšด,1F6B4,smileys-people,person-sport,person biking,"bicycle, biking, cyclist",sports,Johanna Wellnitz,,,1,1660 -๐Ÿšด๐Ÿป,1F6B4-1F3FB,smileys-people,person-sport,person biking: light skin tone,,,Johanna Wellnitz,1,๐Ÿšด,2,1661 -๐Ÿšด๐Ÿผ,1F6B4-1F3FC,smileys-people,person-sport,person biking: medium-light skin tone,,,Johanna Wellnitz,2,๐Ÿšด,2,1662 -๐Ÿšด๐Ÿฝ,1F6B4-1F3FD,smileys-people,person-sport,person biking: medium skin tone,,,Johanna Wellnitz,3,๐Ÿšด,2,1663 -๐Ÿšด๐Ÿพ,1F6B4-1F3FE,smileys-people,person-sport,person biking: medium-dark skin tone,,,Johanna Wellnitz,4,๐Ÿšด,2,1664 -๐Ÿšด๐Ÿฟ,1F6B4-1F3FF,smileys-people,person-sport,person biking: dark skin tone,,,Johanna Wellnitz,5,๐Ÿšด,2,1665 -๐ŸŽ๏ธ,1F3CE,smileys-people,person-sport,racing car,"car, racing","sports, motor",Johanna Wellnitz,,,1,1721 -๐Ÿ๏ธ,1F3CD,smileys-people,person-sport,motorcycle,racing,"motorsports, vehicle",Johanna Wellnitz,,,1,1723 -๐Ÿคธ,1F938,smileys-people,person-sport,person cartwheeling,"cartwheel, gymnastics",sports,Johanna Wellnitz,,,3,1724 -๐Ÿคธ๐Ÿป,1F938-1F3FB,smileys-people,person-sport,person cartwheeling: light skin tone,,,Johanna Wellnitz,1,๐Ÿคธ,3,1725 -๐Ÿคธ๐Ÿผ,1F938-1F3FC,smileys-people,person-sport,person cartwheeling: medium-light skin tone,,,Johanna Wellnitz,2,๐Ÿคธ,3,1726 -๐Ÿคธ๐Ÿฝ,1F938-1F3FD,smileys-people,person-sport,person cartwheeling: medium skin tone,,,Johanna Wellnitz,3,๐Ÿคธ,3,1727 -๐Ÿคธ๐Ÿพ,1F938-1F3FE,smileys-people,person-sport,person cartwheeling: medium-dark skin tone,,,Johanna Wellnitz,4,๐Ÿคธ,3,1728 -๐Ÿคธ๐Ÿฟ,1F938-1F3FF,smileys-people,person-sport,person cartwheeling: dark skin tone,,,Johanna Wellnitz,5,๐Ÿคธ,3,1729 -๐Ÿคผ,1F93C,smileys-people,person-sport,people wrestling,"wrestle, wrestler","fighting, sports",Johanna Wellnitz,,,3,1754 -๐Ÿคฝ,1F93D,smileys-people,person-sport,person playing water polo,"polo, water",sports,Johanna Wellnitz,,,3,1759 -๐Ÿคฝ๐Ÿป,1F93D-1F3FB,smileys-people,person-sport,person playing water polo: light skin tone,,,Johanna Wellnitz,1,๐Ÿคฝ,3,1760 -๐Ÿคฝ๐Ÿผ,1F93D-1F3FC,smileys-people,person-sport,person playing water polo: medium-light skin tone,,,Johanna Wellnitz,2,๐Ÿคฝ,3,1761 -๐Ÿคฝ๐Ÿฝ,1F93D-1F3FD,smileys-people,person-sport,person playing water polo: medium skin tone,,,Johanna Wellnitz,3,๐Ÿคฝ,3,1762 -๐Ÿคฝ๐Ÿพ,1F93D-1F3FE,smileys-people,person-sport,person playing water polo: medium-dark skin tone,,,Johanna Wellnitz,4,๐Ÿคฝ,3,1763 -๐Ÿคฝ๐Ÿฟ,1F93D-1F3FF,smileys-people,person-sport,person playing water polo: dark skin tone,,,Johanna Wellnitz,5,๐Ÿคฝ,3,1764 -๐Ÿคพ,1F93E,smileys-people,person-sport,person playing handball,"ball, handball","sports, indoor",Johanna Wellnitz,,,3,1789 -๐Ÿคพ๐Ÿป,1F93E-1F3FB,smileys-people,person-sport,person playing handball: light skin tone,,,Johanna Wellnitz,1,๐Ÿคพ,3,1790 -๐Ÿคพ๐Ÿผ,1F93E-1F3FC,smileys-people,person-sport,person playing handball: medium-light skin tone,,,Johanna Wellnitz,2,๐Ÿคพ,3,1791 -๐Ÿคพ๐Ÿฝ,1F93E-1F3FD,smileys-people,person-sport,person playing handball: medium skin tone,,,Johanna Wellnitz,3,๐Ÿคพ,3,1792 -๐Ÿคพ๐Ÿพ,1F93E-1F3FE,smileys-people,person-sport,person playing handball: medium-dark skin tone,,,Johanna Wellnitz,4,๐Ÿคพ,3,1793 -๐Ÿคพ๐Ÿฟ,1F93E-1F3FF,smileys-people,person-sport,person playing handball: dark skin tone,,,Johanna Wellnitz,5,๐Ÿคพ,3,1794 -๐Ÿคน,1F939,smileys-people,person-sport,person juggling,"balance, juggle, multitask, skill",artist,Johanna Wellnitz,,,3,1819 -๐Ÿคน๐Ÿป,1F939-1F3FB,smileys-people,person-sport,person juggling: light skin tone,,,Johanna Wellnitz,1,๐Ÿคน,3,1820 -๐Ÿคน๐Ÿผ,1F939-1F3FC,smileys-people,person-sport,person juggling: medium-light skin tone,,,Johanna Wellnitz,2,๐Ÿคน,3,1821 -๐Ÿคน๐Ÿฝ,1F939-1F3FD,smileys-people,person-sport,person juggling: medium skin tone,,,Johanna Wellnitz,3,๐Ÿคน,3,1822 -๐Ÿคน๐Ÿพ,1F939-1F3FE,smileys-people,person-sport,person juggling: medium-dark skin tone,,,Johanna Wellnitz,4,๐Ÿคน,3,1823 -๐Ÿคน๐Ÿฟ,1F939-1F3FF,smileys-people,person-sport,person juggling: dark skin tone,,,Johanna Wellnitz,5,๐Ÿคน,3,1824 -๐Ÿ‘ซ,1F46B,smileys-people,family,man and woman holding hands,"couple, hand, hold, man, woman","together, heterosexual, straight",Lisa Schulz,,,1,1849 -๐Ÿ‘ฌ,1F46C,smileys-people,family,two men holding hands,"couple, gemini, man, twins, zodiac","together, gay, homosexual",Lisa Schulz,,,1,1850 -๐Ÿ‘ญ,1F46D,smileys-people,family,two women holding hands,"couple, hand, woman","together, girlfriend, lesbian, homosexual",Lisa Schulz,,,1,1851 -๐Ÿ’,1F48F,smileys-people,family,kiss,couple,"man, woman, face, kiss, boy, girl",Lisa Schulz,,,1,1852 -๐Ÿ‘ฉโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿ‘จ,1F469-200D-2764-FE0F-200D-1F48B-200D-1F468,smileys-people,family,"kiss: woman, man","couple, kiss, man, woman",,Lisa Schulz,,,2,1853 -๐Ÿ‘จโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿ‘จ,1F468-200D-2764-FE0F-200D-1F48B-200D-1F468,smileys-people,family,"kiss: man, man","couple, kiss, man",gay,Lisa Schulz,,,2,1855 -๐Ÿ‘ฉโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿ‘ฉ,1F469-200D-2764-FE0F-200D-1F48B-200D-1F469,smileys-people,family,"kiss: woman, woman","couple, kiss, woman","lesbian, girlfriend",Lisa Schulz,,,2,1857 -๐Ÿ’‘,1F491,smileys-people,family,couple with heart,"couple, love","man, woman, heart",Lisa Schulz,,,1,1859 -๐Ÿ‘ฉโ€โค๏ธโ€๐Ÿ‘จ,1F469-200D-2764-FE0F-200D-1F468,smileys-people,family,"couple with heart: woman, man","couple, couple with heart, love, man, woman",,Lisa Schulz,,,2,1860 -๐Ÿ‘จโ€โค๏ธโ€๐Ÿ‘จ,1F468-200D-2764-FE0F-200D-1F468,smileys-people,family,"couple with heart: man, man","couple, couple with heart, love, man",gay,Lisa Schulz,,,2,1862 -๐Ÿ‘ฉโ€โค๏ธโ€๐Ÿ‘ฉ,1F469-200D-2764-FE0F-200D-1F469,smileys-people,family,"couple with heart: woman, woman","couple, couple with heart, love, woman","lesbian, girlfried",Lisa Schulz,,,2,1864 -๐Ÿ‘ช๏ธ,1F46A,smileys-people,family,family,family,"man, woman, boy, child",Lisa Schulz,,,1,1866 -๐Ÿ‘จโ€๐Ÿ‘ฉโ€๐Ÿ‘ง,1F468-200D-1F469-200D-1F467,smileys-people,family,"family: man, woman, girl","family, girl, man, woman",child,Lisa Schulz,,,2,1868 -๐Ÿคณ,1F933,smileys-people,body,selfie,"camera, phone","camera, phone",Julian Grรผneberg,,,3,1892 -๐Ÿคณ๐Ÿป,1F933-1F3FB,smileys-people,body,selfie: light skin tone,,,Julian Grรผneberg,1,๐Ÿคณ,3,1893 -๐Ÿคณ๐Ÿผ,1F933-1F3FC,smileys-people,body,selfie: medium-light skin tone,,,Julian Grรผneberg,2,๐Ÿคณ,3,1894 -๐Ÿคณ๐Ÿฝ,1F933-1F3FD,smileys-people,body,selfie: medium skin tone,,,Julian Grรผneberg,3,๐Ÿคณ,3,1895 -๐Ÿคณ๐Ÿพ,1F933-1F3FE,smileys-people,body,selfie: medium-dark skin tone,,,Julian Grรผneberg,4,๐Ÿคณ,3,1896 -๐Ÿคณ๐Ÿฟ,1F933-1F3FF,smileys-people,body,selfie: dark skin tone,,,Julian Grรผneberg,5,๐Ÿคณ,3,1897 -๐Ÿ’ช,1F4AA,smileys-people,body,flexed biceps,"biceps, comic, flex, muscle","Flexed Biceps, Biceps, Flexed, flex, muscle, Feats of Strength, strength, feats, Strong, lisa schulz, julian grรผneberg",Julian Grรผneberg,,,1,1898 -๐Ÿ’ช๐Ÿป,1F4AA-1F3FB,smileys-people,body,flexed biceps: light skin tone,,,Julian Grรผneberg,1,๐Ÿ’ช,2,1899 -๐Ÿ’ช๐Ÿผ,1F4AA-1F3FC,smileys-people,body,flexed biceps: medium-light skin tone,,,Julian Grรผneberg,2,๐Ÿ’ช,2,1900 -๐Ÿ’ช๐Ÿฝ,1F4AA-1F3FD,smileys-people,body,flexed biceps: medium skin tone,,,Julian Grรผneberg,3,๐Ÿ’ช,2,1901 -๐Ÿ’ช๐Ÿพ,1F4AA-1F3FE,smileys-people,body,flexed biceps: medium-dark skin tone,,,Julian Grรผneberg,4,๐Ÿ’ช,2,1902 -๐Ÿ’ช๐Ÿฟ,1F4AA-1F3FF,smileys-people,body,flexed biceps: dark skin tone,,,Julian Grรผneberg,5,๐Ÿ’ช,2,1903 -๐Ÿ‘ˆ๏ธ,1F448,smileys-people,body,backhand index pointing left,"backhand, finger, hand, index, point","backhand, finger, hand, index, point, point, left, Middle Finger, White left",Julian Grรผneberg,,,1,1916 -๐Ÿ‘ˆ๐Ÿป,1F448-1F3FB,smileys-people,body,backhand index pointing left: light skin tone,,,Julian Grรผneberg,1,๐Ÿ‘ˆ๏ธ,2,1917 -๐Ÿ‘ˆ๐Ÿผ,1F448-1F3FC,smileys-people,body,backhand index pointing left: medium-light skin tone,,,Julian Grรผneberg,2,๐Ÿ‘ˆ๏ธ,2,1918 -๐Ÿ‘ˆ๐Ÿฝ,1F448-1F3FD,smileys-people,body,backhand index pointing left: medium skin tone,,,Julian Grรผneberg,3,๐Ÿ‘ˆ๏ธ,2,1919 -๐Ÿ‘ˆ๐Ÿพ,1F448-1F3FE,smileys-people,body,backhand index pointing left: medium-dark skin tone,,,Julian Grรผneberg,4,๐Ÿ‘ˆ๏ธ,2,1920 -๐Ÿ‘ˆ๐Ÿฟ,1F448-1F3FF,smileys-people,body,backhand index pointing left: dark skin tone,,,Julian Grรผneberg,5,๐Ÿ‘ˆ๏ธ,2,1921 -๐Ÿ‘‰๏ธ,1F449,smileys-people,body,backhand index pointing right,"backhand, finger, hand, index, point","backhand, finger, hand, index, point, point, right, Middle Finger, White right",Julian Grรผneberg,,,1,1922 -๐Ÿ‘‰๐Ÿป,1F449-1F3FB,smileys-people,body,backhand index pointing right: light skin tone,,,Julian Grรผneberg,1,๐Ÿ‘‰๏ธ,2,1923 -๐Ÿ‘‰๐Ÿผ,1F449-1F3FC,smileys-people,body,backhand index pointing right: medium-light skin tone,,,Julian Grรผneberg,2,๐Ÿ‘‰๏ธ,2,1924 -๐Ÿ‘‰๐Ÿฝ,1F449-1F3FD,smileys-people,body,backhand index pointing right: medium skin tone,,,Julian Grรผneberg,3,๐Ÿ‘‰๏ธ,2,1925 -๐Ÿ‘‰๐Ÿพ,1F449-1F3FE,smileys-people,body,backhand index pointing right: medium-dark skin tone,,,Julian Grรผneberg,4,๐Ÿ‘‰๏ธ,2,1926 -๐Ÿ‘‰๐Ÿฟ,1F449-1F3FF,smileys-people,body,backhand index pointing right: dark skin tone,,,Julian Grรผneberg,5,๐Ÿ‘‰๏ธ,2,1927 -โ˜๏ธ,261D,smileys-people,body,index pointing up,"finger, hand, index, point, up","finger, hand, index, point, up",Julian Grรผneberg,,,1,1929 -โ˜๐Ÿป,261D-1F3FB,smileys-people,body,index pointing up: light skin tone,,,Julian Grรผneberg,1,โ˜๏ธ,2,1930 -โ˜๐Ÿผ,261D-1F3FC,smileys-people,body,index pointing up: medium-light skin tone,,,Julian Grรผneberg,2,โ˜๏ธ,2,1931 -โ˜๐Ÿฝ,261D-1F3FD,smileys-people,body,index pointing up: medium skin tone,,,Julian Grรผneberg,3,โ˜๏ธ,2,1932 -โ˜๐Ÿพ,261D-1F3FE,smileys-people,body,index pointing up: medium-dark skin tone,,,Julian Grรผneberg,4,โ˜๏ธ,2,1933 -โ˜๐Ÿฟ,261D-1F3FF,smileys-people,body,index pointing up: dark skin tone,,,Julian Grรผneberg,5,โ˜๏ธ,2,1934 -๐Ÿ‘†๏ธ,1F446,smileys-people,body,backhand index pointing up,"backhand, finger, hand, point, up","backhand, finger, hand, index, point, up, Middle Finger, White Up",Julian Grรผneberg,,,1,1935 -๐Ÿ‘†๐Ÿป,1F446-1F3FB,smileys-people,body,backhand index pointing up: light skin tone,,,Julian Grรผneberg,1,๐Ÿ‘†๏ธ,2,1936 -๐Ÿ‘†๐Ÿผ,1F446-1F3FC,smileys-people,body,backhand index pointing up: medium-light skin tone,,,Julian Grรผneberg,2,๐Ÿ‘†๏ธ,2,1937 -๐Ÿ‘†๐Ÿฝ,1F446-1F3FD,smileys-people,body,backhand index pointing up: medium skin tone,,,Julian Grรผneberg,3,๐Ÿ‘†๏ธ,2,1938 -๐Ÿ‘†๐Ÿพ,1F446-1F3FE,smileys-people,body,backhand index pointing up: medium-dark skin tone,,,Julian Grรผneberg,4,๐Ÿ‘†๏ธ,2,1939 -๐Ÿ‘†๐Ÿฟ,1F446-1F3FF,smileys-people,body,backhand index pointing up: dark skin tone,,,Julian Grรผneberg,5,๐Ÿ‘†๏ธ,2,1940 -๐Ÿ–•,1F595,smileys-people,body,middle finger,"finger, hand","finger, hand, fingering",Julian Grรผneberg,,,1,1941 -๐Ÿ–•๐Ÿป,1F595-1F3FB,smileys-people,body,middle finger: light skin tone,,,Julian Grรผneberg,1,๐Ÿ–•,2,1942 -๐Ÿ–•๐Ÿผ,1F595-1F3FC,smileys-people,body,middle finger: medium-light skin tone,,,Julian Grรผneberg,2,๐Ÿ–•,2,1943 -๐Ÿ–•๐Ÿฝ,1F595-1F3FD,smileys-people,body,middle finger: medium skin tone,,,Julian Grรผneberg,3,๐Ÿ–•,2,1944 -๐Ÿ–•๐Ÿพ,1F595-1F3FE,smileys-people,body,middle finger: medium-dark skin tone,,,Julian Grรผneberg,4,๐Ÿ–•,2,1945 -๐Ÿ–•๐Ÿฟ,1F595-1F3FF,smileys-people,body,middle finger: dark skin tone,,,Julian Grรผneberg,5,๐Ÿ–•,2,1946 -๐Ÿ‘‡๏ธ,1F447,smileys-people,body,backhand index pointing down,"backhand, down, finger, hand, point","backhand, down, finger, hand, index, point, point, down, Middle Finger, White down",Julian Grรผneberg,,,1,1947 -๐Ÿ‘‡๐Ÿป,1F447-1F3FB,smileys-people,body,backhand index pointing down: light skin tone,,,Julian Grรผneberg,1,๐Ÿ‘‡๏ธ,2,1948 -๐Ÿ‘‡๐Ÿผ,1F447-1F3FC,smileys-people,body,backhand index pointing down: medium-light skin tone,,,Julian Grรผneberg,2,๐Ÿ‘‡๏ธ,2,1949 -๐Ÿ‘‡๐Ÿฝ,1F447-1F3FD,smileys-people,body,backhand index pointing down: medium skin tone,,,Julian Grรผneberg,3,๐Ÿ‘‡๏ธ,2,1950 -๐Ÿ‘‡๐Ÿพ,1F447-1F3FE,smileys-people,body,backhand index pointing down: medium-dark skin tone,,,Julian Grรผneberg,4,๐Ÿ‘‡๏ธ,2,1951 -๐Ÿ‘‡๐Ÿฟ,1F447-1F3FF,smileys-people,body,backhand index pointing down: dark skin tone,,,Julian Grรผneberg,5,๐Ÿ‘‡๏ธ,2,1952 -โœŒ๏ธ,270C,smileys-people,body,victory hand,"hand, v, victory","hand, v, victory, Air Quotes, quotes, Peace, Peace Sign, V Sign",Julian Grรผneberg,,,1,1954 -โœŒ๐Ÿป,270C-1F3FB,smileys-people,body,victory hand: light skin tone,,,Julian Grรผneberg,1,โœŒ๏ธ,2,1955 -โœŒ๐Ÿผ,270C-1F3FC,smileys-people,body,victory hand: medium-light skin tone,,,Julian Grรผneberg,2,โœŒ๏ธ,2,1956 -โœŒ๐Ÿฝ,270C-1F3FD,smileys-people,body,victory hand: medium skin tone,,,Julian Grรผneberg,3,โœŒ๏ธ,2,1957 -โœŒ๐Ÿพ,270C-1F3FE,smileys-people,body,victory hand: medium-dark skin tone,,,Julian Grรผneberg,4,โœŒ๏ธ,2,1958 -โœŒ๐Ÿฟ,270C-1F3FF,smileys-people,body,victory hand: dark skin tone,,,Julian Grรผneberg,5,โœŒ๏ธ,2,1959 -๐Ÿคž,1F91E,smileys-people,body,crossed fingers,"cross, finger, hand, luck","Fingers Crossed, crossed, fingers, Good Luck, luck",Julian Grรผneberg,,,3,1960 -๐Ÿคž๐Ÿป,1F91E-1F3FB,smileys-people,body,crossed fingers: light skin tone,,,Julian Grรผneberg,1,๐Ÿคž,3,1961 -๐Ÿคž๐Ÿผ,1F91E-1F3FC,smileys-people,body,crossed fingers: medium-light skin tone,,,Julian Grรผneberg,2,๐Ÿคž,3,1962 -๐Ÿคž๐Ÿฝ,1F91E-1F3FD,smileys-people,body,crossed fingers: medium skin tone,,,Julian Grรผneberg,3,๐Ÿคž,3,1963 -๐Ÿคž๐Ÿพ,1F91E-1F3FE,smileys-people,body,crossed fingers: medium-dark skin tone,,,Julian Grรผneberg,4,๐Ÿคž,3,1964 -๐Ÿคž๐Ÿฟ,1F91E-1F3FF,smileys-people,body,crossed fingers: dark skin tone,,,Julian Grรผneberg,5,๐Ÿคž,3,1965 -๐Ÿ––,1F596,smileys-people,body,vulcan salute,"finger, hand, spock, vulcan","finger, hand, spock, vulcan",Julian Grรผneberg,,,1,1966 -๐Ÿ––๐Ÿป,1F596-1F3FB,smileys-people,body,vulcan salute: light skin tone,,,Julian Grรผneberg,1,๐Ÿ––,2,1967 -๐Ÿ––๐Ÿผ,1F596-1F3FC,smileys-people,body,vulcan salute: medium-light skin tone,,,Julian Grรผneberg,2,๐Ÿ––,2,1968 -๐Ÿ––๐Ÿฝ,1F596-1F3FD,smileys-people,body,vulcan salute: medium skin tone,,,Julian Grรผneberg,3,๐Ÿ––,2,1969 -๐Ÿ––๐Ÿพ,1F596-1F3FE,smileys-people,body,vulcan salute: medium-dark skin tone,,,Julian Grรผneberg,4,๐Ÿ––,2,1970 -๐Ÿ––๐Ÿฟ,1F596-1F3FF,smileys-people,body,vulcan salute: dark skin tone,,,Julian Grรผneberg,5,๐Ÿ––,2,1971 -๐Ÿค˜,1F918,smileys-people,body,sign of the horns,"finger, hand, horns, rock-on","rock on, finger, hand, horns, rock-on, rock, Devil, Devil Fingers, Heavy, Metal, Heavy Metal, rock",Julian Grรผneberg,,,1,1972 -๐Ÿค˜๐Ÿป,1F918-1F3FB,smileys-people,body,sign of the horns: light skin tone,,,Julian Grรผneberg,1,๐Ÿค˜,2,1973 -๐Ÿค˜๐Ÿผ,1F918-1F3FC,smileys-people,body,sign of the horns: medium-light skin tone,,,Julian Grรผneberg,2,๐Ÿค˜,2,1974 -๐Ÿค˜๐Ÿฝ,1F918-1F3FD,smileys-people,body,sign of the horns: medium skin tone,,,Julian Grรผneberg,3,๐Ÿค˜,2,1975 -๐Ÿค˜๐Ÿพ,1F918-1F3FE,smileys-people,body,sign of the horns: medium-dark skin tone,,,Julian Grรผneberg,4,๐Ÿค˜,2,1976 -๐Ÿค˜๐Ÿฟ,1F918-1F3FF,smileys-people,body,sign of the horns: dark skin tone,,,Julian Grรผneberg,5,๐Ÿค˜,2,1977 -๐Ÿค™,1F919,smileys-people,body,call me hand,"call, hand","Call Me Hand, call, hand, Phone, Shaka",Julian Grรผneberg,,,3,1978 -๐Ÿค™๐Ÿป,1F919-1F3FB,smileys-people,body,call me hand: light skin tone,,,Julian Grรผneberg,1,๐Ÿค™,3,1979 -๐Ÿค™๐Ÿผ,1F919-1F3FC,smileys-people,body,call me hand: medium-light skin tone,,,Julian Grรผneberg,2,๐Ÿค™,3,1980 -๐Ÿค™๐Ÿฝ,1F919-1F3FD,smileys-people,body,call me hand: medium skin tone,,,Julian Grรผneberg,3,๐Ÿค™,3,1981 -๐Ÿค™๐Ÿพ,1F919-1F3FE,smileys-people,body,call me hand: medium-dark skin tone,,,Julian Grรผneberg,4,๐Ÿค™,3,1982 -๐Ÿค™๐Ÿฟ,1F919-1F3FF,smileys-people,body,call me hand: dark skin tone,,,Julian Grรผneberg,5,๐Ÿค™,3,1983 -๐Ÿ–๏ธ,1F590,smileys-people,body,hand with fingers splayed,"finger, hand, splayed","Five Hand, Hand, Five, Splayed",Julian Grรผneberg,,,1,1985 -๐Ÿ–๐Ÿป,1F590-1F3FB,smileys-people,body,hand with fingers splayed: light skin tone,,,Julian Grรผneberg,1,๐Ÿ–๏ธ,2,1986 -๐Ÿ–๐Ÿผ,1F590-1F3FC,smileys-people,body,hand with fingers splayed: medium-light skin tone,,,Julian Grรผneberg,2,๐Ÿ–๏ธ,2,1987 -๐Ÿ–๐Ÿฝ,1F590-1F3FD,smileys-people,body,hand with fingers splayed: medium skin tone,,,Julian Grรผneberg,3,๐Ÿ–๏ธ,2,1988 -๐Ÿ–๐Ÿพ,1F590-1F3FE,smileys-people,body,hand with fingers splayed: medium-dark skin tone,,,Julian Grรผneberg,4,๐Ÿ–๏ธ,2,1989 -๐Ÿ–๐Ÿฟ,1F590-1F3FF,smileys-people,body,hand with fingers splayed: dark skin tone,,,Julian Grรผneberg,5,๐Ÿ–๏ธ,2,1990 -โœ‹,270B,smileys-people,body,raised hand,hand,"raise, raised, raised hand, hand",Julian Grรผneberg,,,1,1991 -โœ‹๐Ÿป,270B-1F3FB,smileys-people,body,raised hand: light skin tone,,,Julian Grรผneberg,1,โœ‹,2,1992 -โœ‹๐Ÿผ,270B-1F3FC,smileys-people,body,raised hand: medium-light skin tone,,,Julian Grรผneberg,2,โœ‹,2,1993 -โœ‹๐Ÿฝ,270B-1F3FD,smileys-people,body,raised hand: medium skin tone,,,Julian Grรผneberg,3,โœ‹,2,1994 -โœ‹๐Ÿพ,270B-1F3FE,smileys-people,body,raised hand: medium-dark skin tone,,,Julian Grรผneberg,4,โœ‹,2,1995 -โœ‹๐Ÿฟ,270B-1F3FF,smileys-people,body,raised hand: dark skin tone,,,Julian Grรผneberg,5,โœ‹,2,1996 -๐Ÿ‘Œ,1F44C,smileys-people,body,OK hand,"hand, ok","hand, ok, okay, perfect",Julian Grรผneberg,,,1,1997 -๐Ÿ‘Œ๐Ÿป,1F44C-1F3FB,smileys-people,body,OK hand: light skin tone,,,Julian Grรผneberg,1,๐Ÿ‘Œ,2,1998 -๐Ÿ‘Œ๐Ÿผ,1F44C-1F3FC,smileys-people,body,OK hand: medium-light skin tone,,,Julian Grรผneberg,2,๐Ÿ‘Œ,2,1999 -๐Ÿ‘Œ๐Ÿฝ,1F44C-1F3FD,smileys-people,body,OK hand: medium skin tone,,,Julian Grรผneberg,3,๐Ÿ‘Œ,2,2000 -๐Ÿ‘Œ๐Ÿพ,1F44C-1F3FE,smileys-people,body,OK hand: medium-dark skin tone,,,Julian Grรผneberg,4,๐Ÿ‘Œ,2,2001 -๐Ÿ‘Œ๐Ÿฟ,1F44C-1F3FF,smileys-people,body,OK hand: dark skin tone,,,Julian Grรผneberg,5,๐Ÿ‘Œ,2,2002 -๐Ÿ‘๏ธ,1F44D,smileys-people,body,thumbs up,"+1, hand, thumb, up","Like, yes, +1, hand, thumb, up, thumbs up, thumbs up",Julian Grรผneberg,,,1,2003 -๐Ÿ‘๐Ÿป,1F44D-1F3FB,smileys-people,body,thumbs up: light skin tone,,,Julian Grรผneberg,1,๐Ÿ‘๏ธ,2,2004 -๐Ÿ‘๐Ÿผ,1F44D-1F3FC,smileys-people,body,thumbs up: medium-light skin tone,,,Julian Grรผneberg,2,๐Ÿ‘๏ธ,2,2005 -๐Ÿ‘๐Ÿฝ,1F44D-1F3FD,smileys-people,body,thumbs up: medium skin tone,,,Julian Grรผneberg,3,๐Ÿ‘๏ธ,2,2006 -๐Ÿ‘๐Ÿพ,1F44D-1F3FE,smileys-people,body,thumbs up: medium-dark skin tone,,,Julian Grรผneberg,4,๐Ÿ‘๏ธ,2,2007 -๐Ÿ‘๐Ÿฟ,1F44D-1F3FF,smileys-people,body,thumbs up: dark skin tone,,,Julian Grรผneberg,5,๐Ÿ‘๏ธ,2,2008 -๐Ÿ‘Ž๏ธ,1F44E,smileys-people,body,thumbs down,"-1, down, hand, thumb","Dislike no, Thumbs Down, Thumbs Down sign, -1, down, hand, thumb, thumbs",Julian Grรผneberg,,,1,2009 -๐Ÿ‘Ž๐Ÿป,1F44E-1F3FB,smileys-people,body,thumbs down: light skin tone,,,Julian Grรผneberg,1,๐Ÿ‘Ž๏ธ,2,2010 -๐Ÿ‘Ž๐Ÿผ,1F44E-1F3FC,smileys-people,body,thumbs down: medium-light skin tone,,,Julian Grรผneberg,2,๐Ÿ‘Ž๏ธ,2,2011 -๐Ÿ‘Ž๐Ÿฝ,1F44E-1F3FD,smileys-people,body,thumbs down: medium skin tone,,,Julian Grรผneberg,3,๐Ÿ‘Ž๏ธ,2,2012 -๐Ÿ‘Ž๐Ÿพ,1F44E-1F3FE,smileys-people,body,thumbs down: medium-dark skin tone,,,Julian Grรผneberg,4,๐Ÿ‘Ž๏ธ,2,2013 -๐Ÿ‘Ž๐Ÿฟ,1F44E-1F3FF,smileys-people,body,thumbs down: dark skin tone,,,Julian Grรผneberg,5,๐Ÿ‘Ž๏ธ,2,2014 -โœŠ,270A,smileys-people,body,raised fist,"clenched, fist, hand, punch","clenched, fist, hand, punch",Julian Grรผneberg,,,1,2015 -โœŠ๐Ÿป,270A-1F3FB,smileys-people,body,raised fist: light skin tone,,,Julian Grรผneberg,1,โœŠ,2,2016 -โœŠ๐Ÿผ,270A-1F3FC,smileys-people,body,raised fist: medium-light skin tone,,,Julian Grรผneberg,2,โœŠ,2,2017 -โœŠ๐Ÿฝ,270A-1F3FD,smileys-people,body,raised fist: medium skin tone,,,Julian Grรผneberg,3,โœŠ,2,2018 -โœŠ๐Ÿพ,270A-1F3FE,smileys-people,body,raised fist: medium-dark skin tone,,,Julian Grรผneberg,4,โœŠ,2,2019 -โœŠ๐Ÿฟ,270A-1F3FF,smileys-people,body,raised fist: dark skin tone,,,Julian Grรผneberg,5,โœŠ,2,2020 -๐Ÿ‘Š,1F44A,smileys-people,body,oncoming fist,"clenched, fist, hand, punch","clenched, fist, hand, punch, fist, oncoming fist, Brofist, Bro, Bump,",Julian Grรผneberg,,,1,2021 -๐Ÿ‘Š๐Ÿป,1F44A-1F3FB,smileys-people,body,oncoming fist: light skin tone,,,Julian Grรผneberg,1,๐Ÿ‘Š,2,2022 -๐Ÿ‘Š๐Ÿผ,1F44A-1F3FC,smileys-people,body,oncoming fist: medium-light skin tone,,,Julian Grรผneberg,2,๐Ÿ‘Š,2,2023 -๐Ÿ‘Š๐Ÿฝ,1F44A-1F3FD,smileys-people,body,oncoming fist: medium skin tone,,,Julian Grรผneberg,3,๐Ÿ‘Š,2,2024 -๐Ÿ‘Š๐Ÿพ,1F44A-1F3FE,smileys-people,body,oncoming fist: medium-dark skin tone,,,Julian Grรผneberg,4,๐Ÿ‘Š,2,2025 -๐Ÿ‘Š๐Ÿฟ,1F44A-1F3FF,smileys-people,body,oncoming fist: dark skin tone,,,Julian Grรผneberg,5,๐Ÿ‘Š,2,2026 -๐Ÿค›,1F91B,smileys-people,body,left-facing fist,"fist, leftwards","Fist, left, leftwards, Left-Facing Fist",Julian Grรผneberg,,,3,2027 -๐Ÿค›๐Ÿป,1F91B-1F3FB,smileys-people,body,left-facing fist: light skin tone,,,Julian Grรผneberg,1,๐Ÿค›,3,2028 -๐Ÿค›๐Ÿผ,1F91B-1F3FC,smileys-people,body,left-facing fist: medium-light skin tone,,,Julian Grรผneberg,2,๐Ÿค›,3,2029 -๐Ÿค›๐Ÿฝ,1F91B-1F3FD,smileys-people,body,left-facing fist: medium skin tone,,,Julian Grรผneberg,3,๐Ÿค›,3,2030 -๐Ÿค›๐Ÿพ,1F91B-1F3FE,smileys-people,body,left-facing fist: medium-dark skin tone,,,Julian Grรผneberg,4,๐Ÿค›,3,2031 -๐Ÿค›๐Ÿฟ,1F91B-1F3FF,smileys-people,body,left-facing fist: dark skin tone,,,Julian Grรผneberg,5,๐Ÿค›,3,2032 -๐Ÿคœ,1F91C,smileys-people,body,right-facing fist,"fist, rightwards","Right, fist, rightwards, right-Facing Fist",Julian Grรผneberg,,,3,2033 -๐Ÿคœ๐Ÿป,1F91C-1F3FB,smileys-people,body,right-facing fist: light skin tone,,,Julian Grรผneberg,1,๐Ÿคœ,3,2034 -๐Ÿคœ๐Ÿผ,1F91C-1F3FC,smileys-people,body,right-facing fist: medium-light skin tone,,,Julian Grรผneberg,2,๐Ÿคœ,3,2035 -๐Ÿคœ๐Ÿฝ,1F91C-1F3FD,smileys-people,body,right-facing fist: medium skin tone,,,Julian Grรผneberg,3,๐Ÿคœ,3,2036 -๐Ÿคœ๐Ÿพ,1F91C-1F3FE,smileys-people,body,right-facing fist: medium-dark skin tone,,,Julian Grรผneberg,4,๐Ÿคœ,3,2037 -๐Ÿคœ๐Ÿฟ,1F91C-1F3FF,smileys-people,body,right-facing fist: dark skin tone,,,Julian Grรผneberg,5,๐Ÿคœ,3,2038 -๐Ÿคš,1F91A,smileys-people,body,raised back of hand,"backhand, raised","Backhand, raised, hand",Julian Grรผneberg,,,3,2039 -๐Ÿคš๐Ÿป,1F91A-1F3FB,smileys-people,body,raised back of hand: light skin tone,,,Julian Grรผneberg,1,๐Ÿคš,3,2040 -๐Ÿคš๐Ÿผ,1F91A-1F3FC,smileys-people,body,raised back of hand: medium-light skin tone,,,Julian Grรผneberg,2,๐Ÿคš,3,2041 -๐Ÿคš๐Ÿฝ,1F91A-1F3FD,smileys-people,body,raised back of hand: medium skin tone,,,Julian Grรผneberg,3,๐Ÿคš,3,2042 -๐Ÿคš๐Ÿพ,1F91A-1F3FE,smileys-people,body,raised back of hand: medium-dark skin tone,,,Julian Grรผneberg,4,๐Ÿคš,3,2043 -๐Ÿคš๐Ÿฟ,1F91A-1F3FF,smileys-people,body,raised back of hand: dark skin tone,,,Julian Grรผneberg,5,๐Ÿคš,3,2044 -๐Ÿ‘‹,1F44B,smileys-people,body,waving hand,"hand, wave, waving","Hello, Goodbye, Waving Hand Sign, Wave",Julian Grรผneberg,,,1,2045 -๐Ÿ‘‹๐Ÿป,1F44B-1F3FB,smileys-people,body,waving hand: light skin tone,,,Julian Grรผneberg,1,๐Ÿ‘‹,2,2046 -๐Ÿ‘‹๐Ÿผ,1F44B-1F3FC,smileys-people,body,waving hand: medium-light skin tone,,,Julian Grรผneberg,2,๐Ÿ‘‹,2,2047 -๐Ÿ‘‹๐Ÿฝ,1F44B-1F3FD,smileys-people,body,waving hand: medium skin tone,,,Julian Grรผneberg,3,๐Ÿ‘‹,2,2048 -๐Ÿ‘‹๐Ÿพ,1F44B-1F3FE,smileys-people,body,waving hand: medium-dark skin tone,,,Julian Grรผneberg,4,๐Ÿ‘‹,2,2049 -๐Ÿ‘‹๐Ÿฟ,1F44B-1F3FF,smileys-people,body,waving hand: dark skin tone,,,Julian Grรผneberg,5,๐Ÿ‘‹,2,2050 -๐ŸคŸ,1F91F,smileys-people,body,love-you gesture,"hand, ily","hand, ily, love,",Julian Grรผneberg,,,5,2051 -๐ŸคŸ๐Ÿป,1F91F-1F3FB,smileys-people,body,love-you gesture: light skin tone,,,Julian Grรผneberg,1,๐ŸคŸ,5,2052 -๐ŸคŸ๐Ÿผ,1F91F-1F3FC,smileys-people,body,love-you gesture: medium-light skin tone,,,Julian Grรผneberg,2,๐ŸคŸ,5,2053 -๐ŸคŸ๐Ÿฝ,1F91F-1F3FD,smileys-people,body,love-you gesture: medium skin tone,,,Julian Grรผneberg,3,๐ŸคŸ,5,2054 -๐ŸคŸ๐Ÿพ,1F91F-1F3FE,smileys-people,body,love-you gesture: medium-dark skin tone,,,Julian Grรผneberg,4,๐ŸคŸ,5,2055 -๐ŸคŸ๐Ÿฟ,1F91F-1F3FF,smileys-people,body,love-you gesture: dark skin tone,,,Julian Grรผneberg,5,๐ŸคŸ,5,2056 -โœ๏ธ,270D,smileys-people,body,writing hand,"hand, write","Writing Hand, Writing, Write",Julian Grรผneberg,,,1,2058 -โœ๐Ÿป,270D-1F3FB,smileys-people,body,writing hand: light skin tone,,,Julian Grรผneberg,1,โœ๏ธ,2,2059 -โœ๐Ÿผ,270D-1F3FC,smileys-people,body,writing hand: medium-light skin tone,,,Julian Grรผneberg,2,โœ๏ธ,2,2060 -โœ๐Ÿฝ,270D-1F3FD,smileys-people,body,writing hand: medium skin tone,,,Julian Grรผneberg,3,โœ๏ธ,2,2061 -โœ๐Ÿพ,270D-1F3FE,smileys-people,body,writing hand: medium-dark skin tone,,,Julian Grรผneberg,4,โœ๏ธ,2,2062 -โœ๐Ÿฟ,270D-1F3FF,smileys-people,body,writing hand: dark skin tone,,,Julian Grรผneberg,5,โœ๏ธ,2,2063 -๐Ÿ‘,1F44F,smileys-people,body,clapping hands,"clap, hand","clap, hand, clapping hands, Applause, Clap, Clapping, Golf Clap, Round Of Applause",Julian Grรผneberg,,,1,2064 -๐Ÿ‘๐Ÿป,1F44F-1F3FB,smileys-people,body,clapping hands: light skin tone,,,Julian Grรผneberg,1,๐Ÿ‘,2,2065 -๐Ÿ‘๐Ÿผ,1F44F-1F3FC,smileys-people,body,clapping hands: medium-light skin tone,,,Julian Grรผneberg,2,๐Ÿ‘,2,2066 -๐Ÿ‘๐Ÿฝ,1F44F-1F3FD,smileys-people,body,clapping hands: medium skin tone,,,Julian Grรผneberg,3,๐Ÿ‘,2,2067 -๐Ÿ‘๐Ÿพ,1F44F-1F3FE,smileys-people,body,clapping hands: medium-dark skin tone,,,Julian Grรผneberg,4,๐Ÿ‘,2,2068 -๐Ÿ‘๐Ÿฟ,1F44F-1F3FF,smileys-people,body,clapping hands: dark skin tone,,,Julian Grรผneberg,5,๐Ÿ‘,2,2069 -๐Ÿ‘,1F450,smileys-people,body,open hands,"hand, open","Hug, Open Hands, Open, Hands, Jazz Hands, Jazz",Julian Grรผneberg,,,1,2070 -๐Ÿ‘๐Ÿป,1F450-1F3FB,smileys-people,body,open hands: light skin tone,,,Julian Grรผneberg,1,๐Ÿ‘,2,2071 -๐Ÿ‘๐Ÿผ,1F450-1F3FC,smileys-people,body,open hands: medium-light skin tone,,,Julian Grรผneberg,2,๐Ÿ‘,2,2072 -๐Ÿ‘๐Ÿฝ,1F450-1F3FD,smileys-people,body,open hands: medium skin tone,,,Julian Grรผneberg,3,๐Ÿ‘,2,2073 -๐Ÿ‘๐Ÿพ,1F450-1F3FE,smileys-people,body,open hands: medium-dark skin tone,,,Julian Grรผneberg,4,๐Ÿ‘,2,2074 -๐Ÿ‘๐Ÿฟ,1F450-1F3FF,smileys-people,body,open hands: dark skin tone,,,Julian Grรผneberg,5,๐Ÿ‘,2,2075 -๐Ÿ™Œ,1F64C,smileys-people,body,raising hands,"celebration, gesture, hand, hooray, raised","Raising Hands, Raising, Hands, celebration, gesture, hand, hooray, raised, Arms In The Air, Banzai, Festivus Miracle, Hallelujah, Praise Hands, Two Hands",Julian Grรผneberg,,,1,2076 -๐Ÿ™Œ๐Ÿป,1F64C-1F3FB,smileys-people,body,raising hands: light skin tone,,,Julian Grรผneberg,1,๐Ÿ™Œ,2,2077 -๐Ÿ™Œ๐Ÿผ,1F64C-1F3FC,smileys-people,body,raising hands: medium-light skin tone,,,Julian Grรผneberg,2,๐Ÿ™Œ,2,2078 -๐Ÿ™Œ๐Ÿฝ,1F64C-1F3FD,smileys-people,body,raising hands: medium skin tone,,,Julian Grรผneberg,3,๐Ÿ™Œ,2,2079 -๐Ÿ™Œ๐Ÿพ,1F64C-1F3FE,smileys-people,body,raising hands: medium-dark skin tone,,,Julian Grรผneberg,4,๐Ÿ™Œ,2,2080 -๐Ÿ™Œ๐Ÿฟ,1F64C-1F3FF,smileys-people,body,raising hands: dark skin tone,,,Julian Grรผneberg,5,๐Ÿ™Œ,2,2081 -๐Ÿคฒ,1F932,smileys-people,body,palms up together,prayer,"prayer, pray, god",Julian Grรผneberg,,,5,2082 -๐Ÿคฒ๐Ÿป,1F932-1F3FB,smileys-people,body,palms up together: light skin tone,,,Julian Grรผneberg,1,๐Ÿคฒ,5,2083 -๐Ÿคฒ๐Ÿผ,1F932-1F3FC,smileys-people,body,palms up together: medium-light skin tone,,,Julian Grรผneberg,2,๐Ÿคฒ,5,2084 -๐Ÿคฒ๐Ÿฝ,1F932-1F3FD,smileys-people,body,palms up together: medium skin tone,,,Julian Grรผneberg,3,๐Ÿคฒ,5,2085 -๐Ÿคฒ๐Ÿพ,1F932-1F3FE,smileys-people,body,palms up together: medium-dark skin tone,,,Julian Grรผneberg,4,๐Ÿคฒ,5,2086 -๐Ÿคฒ๐Ÿฟ,1F932-1F3FF,smileys-people,body,palms up together: dark skin tone,,,Julian Grรผneberg,5,๐Ÿคฒ,5,2087 -๐Ÿ™,1F64F,smileys-people,body,folded hands,"ask, hand, please, pray, thanks","ask, bow, folded, gesture, hand, please, pray, thanks",Julian Grรผneberg,,,1,2088 -๐Ÿ™๐Ÿป,1F64F-1F3FB,smileys-people,body,folded hands: light skin tone,,,Julian Grรผneberg,1,๐Ÿ™,2,2089 -๐Ÿ™๐Ÿผ,1F64F-1F3FC,smileys-people,body,folded hands: medium-light skin tone,,,Julian Grรผneberg,2,๐Ÿ™,2,2090 -๐Ÿ™๐Ÿฝ,1F64F-1F3FD,smileys-people,body,folded hands: medium skin tone,,,Julian Grรผneberg,3,๐Ÿ™,2,2091 -๐Ÿ™๐Ÿพ,1F64F-1F3FE,smileys-people,body,folded hands: medium-dark skin tone,,,Julian Grรผneberg,4,๐Ÿ™,2,2092 -๐Ÿ™๐Ÿฟ,1F64F-1F3FF,smileys-people,body,folded hands: dark skin tone,,,Julian Grรผneberg,5,๐Ÿ™,2,2093 -๐Ÿค,1F91D,smileys-people,body,handshake,"agreement, hand, meeting, shake","Shaking Hands, agreement, hand, meeting, shake, hello, bye, goodbye",Julian Grรผneberg,,,3,2094 -๐Ÿ‘‚๏ธ,1F442,smileys-people,body,ear,body,"ear, hear, listen",Julian Grรผneberg,,,1,2101 -๐Ÿ‘‚๐Ÿป,1F442-1F3FB,smileys-people,body,ear: light skin tone,,,Julian Grรผneberg,1,๐Ÿ‘‚๏ธ,2,2102 -๐Ÿ‘‚๐Ÿผ,1F442-1F3FC,smileys-people,body,ear: medium-light skin tone,,,Julian Grรผneberg,2,๐Ÿ‘‚๏ธ,2,2103 -๐Ÿ‘‚๐Ÿฝ,1F442-1F3FD,smileys-people,body,ear: medium skin tone,,,Julian Grรผneberg,3,๐Ÿ‘‚๏ธ,2,2104 -๐Ÿ‘‚๐Ÿพ,1F442-1F3FE,smileys-people,body,ear: medium-dark skin tone,,,Julian Grรผneberg,4,๐Ÿ‘‚๏ธ,2,2105 -๐Ÿ‘‚๐Ÿฟ,1F442-1F3FF,smileys-people,body,ear: dark skin tone,,,Julian Grรผneberg,5,๐Ÿ‘‚๏ธ,2,2106 -๐Ÿ‘ƒ,1F443,smileys-people,body,nose,body,"nose, smell",Julian Grรผneberg,,,1,2107 -๐Ÿ‘ƒ๐Ÿป,1F443-1F3FB,smileys-people,body,nose: light skin tone,,,Julian Grรผneberg,1,๐Ÿ‘ƒ,2,2108 -๐Ÿ‘ƒ๐Ÿผ,1F443-1F3FC,smileys-people,body,nose: medium-light skin tone,,,Julian Grรผneberg,2,๐Ÿ‘ƒ,2,2109 -๐Ÿ‘ƒ๐Ÿฝ,1F443-1F3FD,smileys-people,body,nose: medium skin tone,,,Julian Grรผneberg,3,๐Ÿ‘ƒ,2,2110 -๐Ÿ‘ƒ๐Ÿพ,1F443-1F3FE,smileys-people,body,nose: medium-dark skin tone,,,Julian Grรผneberg,4,๐Ÿ‘ƒ,2,2111 -๐Ÿ‘ƒ๐Ÿฟ,1F443-1F3FF,smileys-people,body,nose: dark skin tone,,,Julian Grรผneberg,5,๐Ÿ‘ƒ,2,2112 -๐Ÿ‘ฃ,1F463,smileys-people,body,footprints,"clothing, footprint, print","clothing, footprint, print",Julian Grรผneberg,,,1,2117 -๐Ÿ‘€,1F440,smileys-people,body,eyes,"eye, face","eye, face, eyes",Julian Grรผneberg,,,1,2118 -๐Ÿ‘๏ธ,1F441,smileys-people,body,eye,body,"eye, face",Julian Grรผneberg,,,1,2120 -๐Ÿ‘๏ธโ€๐Ÿ—จ๏ธ,1F441-FE0F-200D-1F5E8-FE0F,smileys-people,body,eye in speech bubble,"eye, speech bubble, witness","eye, speech bubble, witness",Julian Grรผneberg,,,4,2121 -๐Ÿง ,1F9E0,smileys-people,body,brain,intelligent,"brain, intelligent, clever",Julian Grรผneberg,,,5,2125 -๐Ÿ‘…,1F445,smileys-people,body,tongue,body,"tongue, kiss, lick, licking",Julian Grรผneberg,,,1,2128 -๐Ÿ‘„,1F444,smileys-people,body,mouth,lips,"lips, kiss, mouth",Julian Grรผneberg,,,1,2129 -๐Ÿ’‹,1F48B,smileys-people,emotion,kiss mark,"kiss, lips",love,Laura Humpfer,,,1,2130 -๐Ÿ’˜,1F498,smileys-people,emotion,heart with arrow,"arrow, cupid","love, inlove",Laura Humpfer,,,1,2131 -โค๏ธ,2764,smileys-people,emotion,red heart,heart,"love, red",Laura Humpfer,,,1,2133 -๐Ÿ’“,1F493,smileys-people,emotion,beating heart,"beating, heartbeat, pulsating",love,Laura Humpfer,,,1,2134 -๐Ÿ’”,1F494,smileys-people,emotion,broken heart,"break, broken",heartbreak,Laura Humpfer,,,1,2135 -๐Ÿ’•,1F495,smileys-people,emotion,two hearts,love,,Laura Humpfer,,,1,2136 -๐Ÿ’–,1F496,smileys-people,emotion,sparkling heart,"excited, sparkle","love, inlove",Laura Humpfer,,,1,2137 -๐Ÿ’—,1F497,smileys-people,emotion,growing heart,"excited, growing, nervous, pulse","love, inlove",Laura Humpfer,,,1,2138 -๐Ÿ’™,1F499,smileys-people,emotion,blue heart,blue,,Laura Humpfer,,,1,2139 -๐Ÿ’š,1F49A,smileys-people,emotion,green heart,green,,Laura Humpfer,,,1,2140 -๐Ÿ’›,1F49B,smileys-people,emotion,yellow heart,yellow,,Laura Humpfer,,,1,2141 -๐Ÿ’œ,1F49C,smileys-people,emotion,purple heart,purple,,Laura Humpfer,,,1,2143 -๐Ÿ–ค,1F5A4,smileys-people,emotion,black heart,"black, evil, wicked",,Laura Humpfer,,,3,2144 -๐Ÿ’,1F49D,smileys-people,emotion,heart with ribbon,"ribbon, valentine","present, love",Laura Humpfer,,,1,2145 -๐Ÿ’ž,1F49E,smileys-people,emotion,revolving hearts,revolving,,Laura Humpfer,,,1,2146 -๐Ÿ’Ÿ,1F49F,smileys-people,emotion,heart decoration,heart,,Laura Humpfer,,,1,2147 -โฃ๏ธ,2763,smileys-people,emotion,heavy heart exclamation,"exclamation, mark, punctuation",,Laura Humpfer,,,1,2149 -๐Ÿ’Œ,1F48C,smileys-people,emotion,love letter,"heart, letter, love, mail",,Laura Humpfer,,,1,2150 -๐Ÿ’ค,1F4A4,smileys-people,emotion,zzz,"comic, sleep",night,Laura Humpfer,,,1,2151 -๐Ÿ’ฃ๏ธ,1F4A3,smileys-people,emotion,bomb,comic,explosion,Laura Humpfer,,,1,2153 -๐Ÿ’ฅ,1F4A5,smileys-people,emotion,collision,"boom, comic",explosion,Laura Humpfer,,,1,2154 -๐Ÿ’ฆ,1F4A6,smileys-people,emotion,sweat droplets,"comic, splashing, sweat",,Laura Humpfer,,,1,2155 -๐Ÿ’จ,1F4A8,smileys-people,emotion,dashing away,"comic, dash, running",,Laura Humpfer,,,1,2156 -๐Ÿ’ซ,1F4AB,smileys-people,emotion,dizzy,"comic, star",shootingstar,Laura Humpfer,,,1,2157 -๐Ÿ’ฌ,1F4AC,smileys-people,emotion,speech balloon,"balloon, bubble, comic, dialog, speech",talk,Laura Humpfer,,,1,2158 -๐Ÿ—จ๏ธ,1F5E8,smileys-people,emotion,left speech bubble,"dialog, speech",,Laura Humpfer,,,2,2160 -๐Ÿ—ฏ๏ธ,1F5EF,smileys-people,emotion,right anger bubble,"angry, balloon, bubble, mad",,Laura Humpfer,,,1,2162 -๐Ÿ’ญ,1F4AD,smileys-people,emotion,thought balloon,"balloon, bubble, comic, thought",think,Laura Humpfer,,,1,2163 -๐Ÿ•ณ๏ธ,1F573,smileys-people,emotion,hole,hole,,Laura Humpfer,,,1,2165 -๐Ÿ‘“๏ธ,1F453,smileys-people,clothing,glasses,"clothing, eye, eyeglasses, eyewear",,Jonas RoรŸner,,,1,2166 -๐Ÿ•ถ๏ธ,1F576,smileys-people,clothing,sunglasses,"dark, eye, eyewear, glasses",sunglasses,Jonas RoรŸner,,,1,2168 -๐Ÿ‘”,1F454,smileys-people,clothing,necktie,"clothing, tie","cravatte, smart",Jonas RoรŸner,,,1,2171 -๐Ÿ‘•,1F455,smileys-people,clothing,t-shirt,"clothing, shirt, tshirt",,Jonas RoรŸner,,,1,2172 -๐Ÿ‘–,1F456,smileys-people,clothing,jeans,"clothing, pants, trousers",,Jonas RoรŸner,,,1,2173 -๐Ÿ‘—,1F457,smileys-people,clothing,dress,clothing,"beautiful, dress, woman",Jonas RoรŸner,,,1,2178 -๐Ÿ‘˜,1F458,smileys-people,clothing,kimono,clothing,"japan, clothing",Jonas RoรŸner,,,1,2179 -๐Ÿ‘™,1F459,smileys-people,clothing,bikini,"clothing, swim","summer,",Jonas RoรŸner,,,1,2180 -๐Ÿ‘š,1F45A,smileys-people,clothing,womanโ€™s clothes,"clothing, woman",,Jonas RoรŸner,,,1,2181 -๐Ÿ‘›,1F45B,smileys-people,clothing,purse,"clothing, coin","money,",Jonas RoรŸner,,,1,2182 -๐Ÿ‘œ,1F45C,smileys-people,clothing,handbag,"bag, clothing, purse",,Jonas RoรŸner,,,1,2183 -๐Ÿ‘,1F45D,smileys-people,clothing,clutch bag,"bag, clothing, pouch",,Jonas RoรŸner,,,1,2184 -๐Ÿ›๏ธ,1F6CD,smileys-people,clothing,shopping bags,"bag, hotel, shopping","buy,",Jonas RoรŸner,,,1,2186 -๐ŸŽ’,1F392,smileys-people,clothing,backpack,"bag, rucksack, satchel, school","young,",Jonas RoรŸner,,,1,2187 -๐Ÿ‘ž,1F45E,smileys-people,clothing,manโ€™s shoe,"clothing, man, shoe",,Jonas RoรŸner,,,1,2188 -๐Ÿ‘Ÿ,1F45F,smileys-people,clothing,running shoe,"athletic, clothing, shoe, sneaker",,Jonas RoรŸner,,,1,2189 -๐Ÿ‘ ,1F460,smileys-people,clothing,high-heeled shoe,"clothing, heel, shoe, woman",,Jonas RoรŸner,,,1,2192 -๐Ÿ‘ก,1F461,smileys-people,clothing,womanโ€™s sandal,"clothing, sandal, shoe, woman",,Jonas RoรŸner,,,1,2193 -๐Ÿ‘ข,1F462,smileys-people,clothing,womanโ€™s boot,"boot, clothing, shoe, woman",,Jonas RoรŸner,,,1,2194 -๐Ÿ‘‘,1F451,smileys-people,clothing,crown,"clothing, king, queen","crone, gold,",Jonas RoรŸner,,,1,2195 -๐Ÿ‘’,1F452,smileys-people,clothing,womanโ€™s hat,"clothing, hat, woman","beautiful,",Jonas RoรŸner,,,1,2196 -๐ŸŽฉ,1F3A9,smileys-people,clothing,top hat,"clothing, hat, top, tophat","magic,",Jonas RoรŸner,,,1,2197 -๐ŸŽ“๏ธ,1F393,smileys-people,clothing,graduation cap,"cap, celebration, clothing, graduation, hat",,Jonas RoรŸner,,,1,2198 -๐Ÿ“ฟ,1F4FF,smileys-people,clothing,prayer beads,"beads, clothing, necklace, prayer, religion","expensive, jewelry",Jonas RoรŸner,,,1,2202 -๐Ÿ’,1F48D,smileys-people,clothing,ring,diamond,"expensive, jewelry",Jonas RoรŸner,,,1,2204 -๐Ÿ’Ž,1F48E,smileys-people,clothing,gem stone,"diamond, gem, jewel","expensive,",Jonas RoรŸner,,,1,2205 -๐Ÿต,1F435,animals-nature,animal-mammal,monkey face,"face, monkey","jungle, ape, evolution, primate, africa",Sofie Ascherl,,,1,2206 -๐Ÿ’,1F412,animals-nature,animal-mammal,monkey,monkey,"jungle, ape, evolution, primate",Sofie Ascherl,,,1,2207 -๐Ÿฆ,1F98D,animals-nature,animal-mammal,gorilla,gorilla,"monkey, primate, evolution",Sofie Ascherl,,,3,2208 -๐Ÿถ,1F436,animals-nature,animal-mammal,dog face,"dog, face, pet","friend, puppy, doggy",Sofie Ascherl,,,1,2209 -๐Ÿ•๏ธ,1F415,animals-nature,animal-mammal,dog,pet,"puppy, doggy",Sofie Ascherl,,,1,2210 -๐Ÿบ,1F43A,animals-nature,animal-mammal,wolf face,"face, wolf","pack, wild, free, forest, dog",Sofie Ascherl,,,1,2212 -๐ŸฆŠ,1F98A,animals-nature,animal-mammal,fox face,"face, fox","smart, red, quick, intelligent",Sofie Ascherl,,,3,2213 -๐Ÿฑ,1F431,animals-nature,animal-mammal,cat face,"cat, face, pet","pet, kitty, kitten, miau",Sofie Ascherl,,,1,2215 -๐Ÿˆ๏ธ,1F408,animals-nature,animal-mammal,cat,pet,"pet, kitty, kitten, miau",Sofie Ascherl,,,1,2216 -๐Ÿฆ,1F981,animals-nature,animal-mammal,lion face,"face, leo, lion, zodiac","king, simba, royal, wild, cat",Sofie Ascherl,,,1,2217 -๐Ÿฏ,1F42F,animals-nature,animal-mammal,tiger face,"face, tiger","stripes, strong, cat, wild",Sofie Ascherl,,,1,2218 -๐Ÿ…,1F405,animals-nature,animal-mammal,tiger,tiger,"stripes, strong, cat, wild",Sofie Ascherl,,,1,2219 -๐Ÿ†,1F406,animals-nature,animal-mammal,leopard,leopard,"dots, strong, cat, wild, spots",Sofie Ascherl,,,1,2220 -๐Ÿด,1F434,animals-nature,animal-mammal,horse face,"face, horse","riding, sport",Sofie Ascherl,,,1,2221 -๐ŸŽ,1F40E,animals-nature,animal-mammal,horse,"equestrian, racehorse, racing","riding, sport",Sofie Ascherl,,,1,2222 -๐Ÿฆ„,1F984,animals-nature,animal-mammal,unicorn face,"face, unicorn","fabulous, magical, rainbow, schwรคbisch, gmรผnd",Sofie Ascherl,,,1,2223 -๐Ÿฆ“,1F993,animals-nature,animal-mammal,zebra,stripe,"horse, black, white",Sofie Ascherl,,,5,2224 -๐ŸฆŒ,1F98C,animals-nature,animal-mammal,deer,deer,"forest, hunt, antler",Sofie Ascherl,,,3,2225 -๐Ÿฎ,1F42E,animals-nature,animal-mammal,cow face,"cow, face","farm, milk, beef, grass, dairy, horns, cheese",Sofie Ascherl,,,1,2226 -๐Ÿ‚,1F402,animals-nature,animal-mammal,ox,"bull, taurus, zodiac","strong, farm, acre, horns, beef",Sofie Ascherl,,,1,2227 -๐Ÿƒ,1F403,animals-nature,animal-mammal,water buffalo,"buffalo, water","black, horns, beef",Sofie Ascherl,,,1,2228 -๐Ÿ„,1F404,animals-nature,animal-mammal,cow,cow,"farm, milk, beef, grass, dairy, horns, cheese",Sofie Ascherl,,,1,2229 -๐Ÿท,1F437,animals-nature,animal-mammal,pig face,"face, pig","pork, farm, pink, meat, oink",Sofie Ascherl,,,1,2230 -๐Ÿ–,1F416,animals-nature,animal-mammal,pig,sow,"pork, farm, pink, meat, oink",Sofie Ascherl,,,1,2231 -๐Ÿ—,1F417,animals-nature,animal-mammal,boar,pig,"wild, strong, forest, angry, teeth, tusk",Sofie Ascherl,,,1,2232 -๐Ÿฝ,1F43D,animals-nature,animal-mammal,pig nose,"face, nose, pig","smell, socket, nose",Sofie Ascherl,,,1,2233 -๐Ÿ,1F40F,animals-nature,animal-mammal,ram,"aries, male, sheep, zodiac","horns, grass, hooves, wool",Sofie Ascherl,,,1,2234 -๐Ÿ‘,1F411,animals-nature,animal-mammal,ewe,"female, sheep","horns, grass, hooves, wool, farm",Sofie Ascherl,,,1,2235 -๐Ÿ,1F410,animals-nature,animal-mammal,goat,"capricorn, zodiac","horns, farm, milk, cheese",Sofie Ascherl,,,1,2236 -๐Ÿช,1F42A,animals-nature,animal-mammal,camel,"dromedary, hump","desert, oasis, sahara, sun, hot, hump",Sofie Ascherl,,,1,2237 -๐Ÿซ,1F42B,animals-nature,animal-mammal,two-hump camel,"bactrian, camel, hump","desert, oasis, sahara, sun, hot, hump",Sofie Ascherl,,,1,2238 -๐Ÿฆ’,1F992,animals-nature,animal-mammal,giraffe,spots,"long, neck, trees, big",Sofie Ascherl,,,5,2240 -๐Ÿ˜,1F418,animals-nature,animal-mammal,elephant,elephant,"big, wrinkles, trunk, tรถrรถรถ",Sofie Ascherl,,,1,2241 -๐Ÿฆ,1F98F,animals-nature,animal-mammal,rhinoceros,rhinoceros,"rhino, horn, africa",Sofie Ascherl,,,3,2242 -๐Ÿญ,1F42D,animals-nature,animal-mammal,mouse face,"face, mouse","cute, whiskers, tiny, rodent",Sofie Ascherl,,,1,2244 -๐Ÿ,1F401,animals-nature,animal-mammal,mouse,mouse,"small, cute, whiskers, tiny, rodent",Sofie Ascherl,,,1,2245 -๐Ÿ€,1F400,animals-nature,animal-mammal,rat,rat,"rodent, plaque, fleas, canal, garbage",Sofie Ascherl,,,1,2246 -๐Ÿน,1F439,animals-nature,animal-mammal,hamster face,"face, hamster, pet","rodent, fat, fluffy, corn",Sofie Ascherl,,,1,2247 -๐Ÿฐ,1F430,animals-nature,animal-mammal,rabbit face,"bunny, face, pet, rabbit","rodent, teeth, cute, ears, bunny, hopping, easter",Sofie Ascherl,,,1,2248 -๐Ÿ‡,1F407,animals-nature,animal-mammal,rabbit,"bunny, pet","rodent, teeth, cute, ears, bunny, hopping, easter",Sofie Ascherl,,,1,2249 -๐Ÿฟ๏ธ,1F43F,animals-nature,animal-mammal,chipmunk,squirrel,"squirrel, alvin",Sofie Ascherl,,,1,2251 -๐Ÿฆ”,1F994,animals-nature,animal-mammal,hedgehog,spiny,"prickly, fall, apple, leafs",Sofie Ascherl,,,5,2252 -๐Ÿฆ‡,1F987,animals-nature,animal-mammal,bat,vampire,"batman, dracula",Sofie Ascherl,,,3,2253 -๐Ÿป,1F43B,animals-nature,animal-mammal,bear face,"bear, face","brown, salmon, river, thick",Sofie Ascherl,,,1,2254 -๐Ÿจ,1F428,animals-nature,animal-mammal,koala,bear,"grey, fluffy, eucalyptus, australia, clingy",Sofie Ascherl,,,1,2255 -๐Ÿผ,1F43C,animals-nature,animal-mammal,panda face,"face, panda","kawaii, cute, japan",Sofie Ascherl,,,1,2256 -๐Ÿพ,1F43E,animals-nature,animal-mammal,paw prints,"feet, paw, print","paws, feet, pet, animal",Sofie Ascherl,,,1,2259 -๐Ÿฆƒ,1F983,animals-nature,animal-bird,turkey,bird,,Selina Bauder,,,1,2260 -๐Ÿ”,1F414,animals-nature,animal-bird,chicken,bird,egg,Selina Bauder,,,1,2261 -๐Ÿ“,1F413,animals-nature,animal-bird,rooster,bird,egg,Selina Bauder,,,1,2262 -๐Ÿฃ,1F423,animals-nature,animal-bird,hatching chick,"baby, bird, chick, hatching","baby, egg",Selina Bauder,,,1,2263 -๐Ÿค,1F424,animals-nature,animal-bird,baby chick,"baby, bird, chick","small, baby, egg",Selina Bauder,,,1,2264 -๐Ÿฅ,1F425,animals-nature,animal-bird,front-facing baby chick,"baby, bird, chick",,Selina Bauder,,,1,2265 -๐Ÿฆ๏ธ,1F426,animals-nature,animal-bird,bird,bird,"fly, colourful",Selina Bauder,,,1,2266 -๐Ÿง,1F427,animals-nature,animal-bird,penguin,bird,,Selina Bauder,,,1,2267 -๐Ÿ•Š๏ธ,1F54A,animals-nature,animal-bird,dove,"bird, fly, peace",fly,Selina Bauder,,,1,2269 -๐Ÿฆ…,1F985,animals-nature,animal-bird,eagle,bird,fly,Selina Bauder,,,3,2270 -๐Ÿฆ†,1F986,animals-nature,animal-bird,duck,bird,"water, fly",Selina Bauder,,,3,2271 -๐Ÿฆ‰,1F989,animals-nature,animal-bird,owl,"bird, wise",,Selina Bauder,,,3,2273 -๐Ÿธ,1F438,animals-nature,animal-amphibian,frog face,"face, frog","jump, green",Selina Bauder,,,1,2276 -๐ŸŠ,1F40A,animals-nature,animal-reptile,crocodile,crocodile,dinosaur,Selina Bauder,,,1,2277 -๐Ÿข,1F422,animals-nature,animal-reptile,turtle,"terrapin, tortoise","slow, water, sand",Selina Bauder,,,1,2278 -๐ŸฆŽ,1F98E,animals-nature,animal-reptile,lizard,reptile,"fast, small",Selina Bauder,,,3,2279 -๐Ÿ,1F40D,animals-nature,animal-reptile,snake,"bearer, ophiuchus, serpent, zodiac","wriggle, fast,",Selina Bauder,,,1,2280 -๐Ÿฒ,1F432,animals-nature,animal-reptile,dragon face,"dragon, face, fairy tale","fire, fly",Selina Bauder,,,1,2281 -๐Ÿ‰,1F409,animals-nature,animal-reptile,dragon,fairy tale,"fire, fly",Selina Bauder,,,1,2282 -๐Ÿฆ•,1F995,animals-nature,animal-reptile,sauropod,"brachiosaurus, brontosaurus, diplodocus",dinosaur,Selina Bauder,,,5,2283 -๐Ÿฆ–,1F996,animals-nature,animal-reptile,T-Rex,"t-rex, tyrannosaurus rex",dinosaur,Selina Bauder,,,5,2284 -๐Ÿณ,1F433,animals-nature,animal-marine,spouting whale,"face, spouting, whale","swim, animal, water",Selina Bauder,,,1,2285 -๐Ÿ‹,1F40B,animals-nature,animal-marine,whale,whale,"swim, animal, water",Selina Bauder,,,1,2286 -๐Ÿฌ,1F42C,animals-nature,animal-marine,dolphin,flipper,"swim, animal, water",Selina Bauder,,,1,2287 -๐ŸŸ๏ธ,1F41F,animals-nature,animal-marine,fish,"pisces, zodiac","swim, animal, water",Selina Bauder,,,1,2288 -๐Ÿ ,1F420,animals-nature,animal-marine,tropical fish,"fish, tropical","swim, animal, water",Selina Bauder,,,1,2289 -๐Ÿก,1F421,animals-nature,animal-marine,blowfish,fish,"swim, animal, water",Selina Bauder,,,1,2290 -๐Ÿฆˆ,1F988,animals-nature,animal-marine,shark,fish,"swim, animal, water",Selina Bauder,,,3,2291 -๐Ÿ™,1F419,animals-nature,animal-marine,octopus,octopus,"swim, animal, water",Selina Bauder,,,1,2292 -๐Ÿš,1F41A,animals-nature,animal-marine,spiral shell,"shell, spiral","beach, sand, water",Selina Bauder,,,1,2293 -๐Ÿฆ€,1F980,animals-nature,animal-marine,crab,"cancer, zodiac","beach, sand, water",Selina Bauder,,,1,2294 -๐Ÿฆ,1F990,animals-nature,animal-marine,shrimp,"food, shellfish, small","swim, animal, water, food",Selina Bauder,,,3,2296 -๐Ÿฆ‘,1F991,animals-nature,animal-marine,squid,"food, molusc","swim, animal, water",Selina Bauder,,,3,2297 -๐ŸŒ,1F40C,animals-nature,animal-bug,snail,snail,,Selina Bauder,,,1,2298 -๐Ÿฆ‹,1F98B,animals-nature,animal-bug,butterfly,"insect, pretty",,Selina Bauder,,,3,2299 -๐Ÿ›,1F41B,animals-nature,animal-bug,bug,insect,,Selina Bauder,,,1,2300 -๐Ÿœ,1F41C,animals-nature,animal-bug,ant,insect,,Selina Bauder,,,1,2301 -๐Ÿ,1F41D,animals-nature,animal-bug,honeybee,"bee, insect",,Selina Bauder,,,1,2302 -๐Ÿž,1F41E,animals-nature,animal-bug,lady beetle,"beetle, insect, ladybird, ladybug",,Selina Bauder,,,1,2303 -๐Ÿฆ—,1F997,animals-nature,animal-bug,cricket,grasshopper,,Selina Bauder,,,5,2304 -๐Ÿ•ท๏ธ,1F577,animals-nature,animal-bug,spider,insect,,Selina Bauder,,,1,2306 -๐Ÿ•ธ๏ธ,1F578,animals-nature,animal-bug,spider web,"spider, web",,Selina Bauder,,,1,2308 -๐Ÿฆ‚,1F982,animals-nature,animal-bug,scorpion,"scorpio, zodiac",,Selina Bauder,,,1,2309 -๐Ÿ’,1F490,animals-nature,plant-flower,bouquet,flower,"present, flower, tulip, bouquet",Hilda Kalyoncu,,,1,2312 -๐ŸŒธ,1F338,animals-nature,plant-flower,cherry blossom,"blossom, cherry, flower","pink,",Hilda Kalyoncu,,,1,2313 -๐ŸŒน,1F339,animals-nature,plant-flower,rose,flower,"rose, red, nature, present, valentines day",Hilda Kalyoncu,,,1,2317 -๐Ÿฅ€,1F940,animals-nature,plant-flower,wilted flower,"flower, wilted","rose, wilted, flowe, red, sad, plant",Hilda Kalyoncu,,,3,2318 -๐ŸŒบ,1F33A,animals-nature,plant-flower,hibiscus,flower,pink,Hilda Kalyoncu,,,1,2319 -๐ŸŒป,1F33B,animals-nature,plant-flower,sunflower,"flower, sun","sun, flower, yellow, summer",Hilda Kalyoncu,,,1,2320 -๐ŸŒผ,1F33C,animals-nature,plant-flower,blossom,flower,"yellow, nature",Hilda Kalyoncu,,,1,2321 -๐ŸŒท,1F337,animals-nature,plant-flower,tulip,flower,"pink, eastern",Hilda Kalyoncu,,,1,2322 -๐ŸŒฑ,1F331,animals-nature,plant-other,seedling,young,"farming, growing, green",Hilda Kalyoncu,,,1,2323 -๐ŸŒฒ,1F332,animals-nature,plant-other,evergreen tree,tree,"green, tree, fir, plant",Hilda Kalyoncu,,,1,2324 -๐ŸŒณ,1F333,animals-nature,plant-other,deciduous tree,"deciduous, shedding, tree","green, tree, huge, plant",Hilda Kalyoncu,,,1,2325 -๐ŸŒด,1F334,animals-nature,plant-other,palm tree,"palm, tree","sea, vacation, beach, relax, plant",Hilda Kalyoncu,,,1,2326 -๐ŸŒต,1F335,animals-nature,plant-other,cactus,plant,"desert, sun, warm, hot, texas, plant",Hilda Kalyoncu,,,1,2327 -๐ŸŒฟ,1F33F,animals-nature,plant-other,herb,leaf,green,Hilda Kalyoncu,,,1,2329 -โ˜˜๏ธ,2618,animals-nature,plant-other,shamrock,plant,"green, plant",Hilda Kalyoncu,,,1,2331 -๐Ÿ€,1F340,animals-nature,plant-other,four leaf clover,"4, clover, four, four-leaf clover, leaf","luck, four, leaf, green, plant",Hilda Kalyoncu,,,1,2332 -๐Ÿ,1F341,animals-nature,plant-other,maple leaf,"falling, leaf, maple","autumn, colorful",Hilda Kalyoncu,,,1,2333 -๐Ÿ‰,1F349,food-drink,food-fruit,watermelon,fruit,"melon, red",Marius Schnabel,,,1,2338 -๐Ÿ‹,1F34B,food-drink,food-fruit,lemon,"citrus, fruit",yellow,Marius Schnabel,,,1,2340 -๐ŸŒ,1F34C,food-drink,food-fruit,banana,fruit,yellow,Marius Schnabel,,,1,2341 -๐Ÿ,1F34D,food-drink,food-fruit,pineapple,fruit,tropical,Marius Schnabel,,,1,2342 -๐Ÿ,1F34F,food-drink,food-fruit,green apple,"apple, fruit, green",,Marius Schnabel,,,1,2345 -๐Ÿ,1F350,food-drink,food-fruit,pear,fruit,green,Marius Schnabel,,,1,2346 -๐Ÿ‘,1F351,food-drink,food-fruit,peach,fruit,"pink, red",Marius Schnabel,,,1,2347 -๐Ÿ’,1F352,food-drink,food-fruit,cherries,"berries, cherry, fruit, red",,Marius Schnabel,,,1,2348 -๐Ÿฅ,1F95D,food-drink,food-fruit,kiwi fruit,"food, fruit, kiwi",green,Marius Schnabel,,,3,2350 -๐Ÿ…,1F345,food-drink,food-fruit,tomato,"fruit, vegetable",red,Marius Schnabel,,,1,2351 -๐Ÿฅฅ,1F965,food-drink,food-fruit,coconut,"palm, piรฑa colada",nut,Marius Schnabel,,,5,2352 -๐Ÿฅ‘,1F951,food-drink,food-vegetable,avocado,"food, fruit",avocado,Marius Schnabel,,,3,2353 -๐Ÿ†,1F346,food-drink,food-vegetable,eggplant,"aubergine, vegetable",purple,Marius Schnabel,,,1,2354 -๐Ÿฅ”,1F954,food-drink,food-vegetable,potato,"food, vegetable",,Marius Schnabel,,,3,2355 -๐Ÿฅ•,1F955,food-drink,food-vegetable,carrot,"food, vegetable",,Marius Schnabel,,,3,2356 -๐ŸŒฝ,1F33D,food-drink,food-vegetable,ear of corn,"corn, ear, maize, maze",yellow,Marius Schnabel,,,1,2357 -๐ŸŒถ๏ธ,1F336,food-drink,food-vegetable,hot pepper,"hot, pepper",red,Marius Schnabel,,,1,2359 -๐Ÿฅ’,1F952,food-drink,food-vegetable,cucumber,"food, pickle, vegetable",,Marius Schnabel,,,3,2360 -๐Ÿฅฆ,1F966,food-drink,food-vegetable,broccoli,wild cabbage,,Marius Schnabel,,,5,2362 -๐Ÿ„,1F344,food-drink,food-vegetable,mushroom,toadstool,mushroom,Marius Schnabel,,,1,2363 -๐Ÿฅœ,1F95C,food-drink,food-vegetable,peanuts,"food, nut, peanut, vegetable",,Marius Schnabel,,,3,2364 -๐Ÿž,1F35E,food-drink,food-prepared,bread,loaf,,Miriam Vollmeier,,,1,2366 -๐Ÿฅ,1F950,food-drink,food-prepared,croissant,"bread, crescent roll, food, french",,Miriam Vollmeier,,,3,2367 -๐Ÿฅ–,1F956,food-drink,food-prepared,baguette bread,"baguette, bread, food, french",,Miriam Vollmeier,,,3,2368 -๐Ÿฅจ,1F968,food-drink,food-prepared,pretzel,twisted,,Miriam Vollmeier,,,5,2369 -๐Ÿง€,1F9C0,food-drink,food-prepared,cheese wedge,cheese,,Miriam Vollmeier,,,1,2372 -๐Ÿ–,1F356,food-drink,food-prepared,meat on bone,"bone, meat",,Miriam Vollmeier,,,1,2373 -๐Ÿ—,1F357,food-drink,food-prepared,poultry leg,"bone, chicken, drumstick, leg, poultry",,Miriam Vollmeier,,,1,2374 -๐Ÿฅฉ,1F969,food-drink,food-prepared,cut of meat,"chop, lambchop, porkchop, steak",,Miriam Vollmeier,,,5,2375 -๐Ÿฅ“,1F953,food-drink,food-prepared,bacon,"food, meat",,Miriam Vollmeier,,,3,2376 -๐Ÿ”,1F354,food-drink,food-prepared,hamburger,burger,,Miriam Vollmeier,,,1,2377 -๐ŸŸ,1F35F,food-drink,food-prepared,french fries,"french, fries",,Miriam Vollmeier,,,1,2378 -๐Ÿ•,1F355,food-drink,food-prepared,pizza,"cheese, slice",,Miriam Vollmeier,,,1,2379 -๐ŸŒญ,1F32D,food-drink,food-prepared,hot dog,"frankfurter, hotdog, sausage",,Miriam Vollmeier,,,1,2380 -๐Ÿฅช,1F96A,food-drink,food-prepared,sandwich,bread,,Miriam Vollmeier,,,5,2381 -๐ŸŒฎ,1F32E,food-drink,food-prepared,taco,mexican,,Miriam Vollmeier,,,1,2382 -๐ŸŒฏ,1F32F,food-drink,food-prepared,burrito,"mexican, wrap",,Miriam Vollmeier,,,1,2383 -๐Ÿฅš,1F95A,food-drink,food-prepared,egg,food,,Miriam Vollmeier,,,3,2385 -๐Ÿณ,1F373,food-drink,food-prepared,cooking,"egg, frying, pan",,Miriam Vollmeier,,,1,2386 -๐Ÿฒ,1F372,food-drink,food-prepared,pot of food,"pot, stew",,Miriam Vollmeier,,,1,2388 -๐Ÿฅฃ,1F963,food-drink,food-prepared,bowl with spoon,"breakfast, cereal, congee",,Miriam Vollmeier,,,5,2389 -๐Ÿฟ,1F37F,food-drink,food-prepared,popcorn,popcorn,,Miriam Vollmeier,,,1,2391 -๐Ÿฑ,1F371,food-drink,food-asian,bento box,"bento, box",,Miriam Vollmeier,,,1,2394 -๐Ÿ˜,1F358,food-drink,food-asian,rice cracker,"cracker, rice",,Miriam Vollmeier,,,1,2395 -๐Ÿ™,1F359,food-drink,food-asian,rice ball,"ball, japanese, rice",,Miriam Vollmeier,,,1,2396 -๐Ÿš,1F35A,food-drink,food-asian,cooked rice,"cooked, rice",,Miriam Vollmeier,,,1,2397 -๐Ÿ,1F35D,food-drink,food-asian,spaghetti,pasta,,Miriam Vollmeier,,,1,2400 -๐Ÿ ,1F360,food-drink,food-asian,roasted sweet potato,"potato, roasted, sweet",,Miriam Vollmeier,,,1,2401 -๐Ÿข,1F362,food-drink,food-asian,oden,"kebab, seafood, skewer, stick",,Miriam Vollmeier,,,1,2402 -๐Ÿฃ,1F363,food-drink,food-asian,sushi,sushi,,Miriam Vollmeier,,,1,2403 -๐Ÿค,1F364,food-drink,food-asian,fried shrimp,"fried, prawn, shrimp, tempura",,Miriam Vollmeier,,,1,2404 -๐Ÿก,1F361,food-drink,food-asian,dango,"dessert, japanese, skewer, stick, sweet",,Miriam Vollmeier,,,1,2407 -๐Ÿฆ,1F366,food-drink,food-sweet,soft ice cream,"cream, dessert, ice, icecream, soft, sweet",,Miriam Vollmeier,,,1,2411 -๐Ÿง,1F367,food-drink,food-sweet,shaved ice,"dessert, ice, shaved, sweet",,Miriam Vollmeier,,,1,2412 -๐Ÿจ,1F368,food-drink,food-sweet,ice cream,"cream, dessert, ice, sweet",,Miriam Vollmeier,,,1,2413 -๐Ÿฉ,1F369,food-drink,food-sweet,doughnut,"dessert, donut, sweet",,Miriam Vollmeier,,,1,2414 -๐Ÿช,1F36A,food-drink,food-sweet,cookie,"dessert, sweet",,Miriam Vollmeier,,,1,2415 -๐ŸŽ‚,1F382,food-drink,food-sweet,birthday cake,"birthday, cake, celebration, dessert, pastry, sweet",,Miriam Vollmeier,,,1,2416 -๐Ÿฐ,1F370,food-drink,food-sweet,shortcake,"cake, dessert, pastry, slice, sweet",,Miriam Vollmeier,,,1,2417 -๐Ÿฅง,1F967,food-drink,food-sweet,pie,"filling, pastry",,Miriam Vollmeier,,,5,2419 -๐Ÿซ,1F36B,food-drink,food-sweet,chocolate bar,"bar, chocolate, dessert, sweet",,Miriam Vollmeier,,,1,2420 -๐Ÿฌ,1F36C,food-drink,food-sweet,candy,"dessert, sweet",,Miriam Vollmeier,,,1,2421 -๐Ÿญ,1F36D,food-drink,food-sweet,lollipop,"candy, dessert, sweet",,Miriam Vollmeier,,,1,2422 -๐Ÿฎ,1F36E,food-drink,food-sweet,custard,"dessert, pudding, sweet",,Miriam Vollmeier,,,1,2423 -๐Ÿฏ,1F36F,food-drink,food-sweet,honey pot,"honey, honeypot, pot, sweet",,Miriam Vollmeier,,,1,2424 -๐Ÿผ,1F37C,food-drink,drink,baby bottle,"baby, bottle, drink, milk","baby, drink, sweet",Laura Humpfer,,,1,2425 -๐Ÿฅ›,1F95B,food-drink,drink,glass of milk,"drink, glass, milk",,Laura Humpfer,,,3,2426 -โ˜•๏ธ,2615,food-drink,drink,hot beverage,"beverage, coffee, drink, hot, steaming, tea",,Laura Humpfer,,,1,2427 -๐Ÿต,1F375,food-drink,drink,teacup without handle,"beverage, cup, drink, tea, teacup","glass, hot",Laura Humpfer,,,1,2428 -๐Ÿถ,1F376,food-drink,drink,sake,"bar, beverage, bottle, cup, drink",,Laura Humpfer,,,1,2429 -๐Ÿพ,1F37E,food-drink,drink,bottle with popping cork,"bar, bottle, cork, drink, popping","party, celebrate, event",Laura Humpfer,,,1,2430 -๐Ÿท,1F377,food-drink,drink,wine glass,"bar, beverage, drink, glass, wine","classic, drink, beverage, alcohol",Laura Humpfer,,,1,2431 -๐Ÿธ๏ธ,1F378,food-drink,drink,cocktail glass,"bar, cocktail, drink, glass","classic, alcohol, elegant, party",Laura Humpfer,,,1,2432 -๐Ÿน,1F379,food-drink,drink,tropical drink,"bar, drink, tropical","cocktail, glass, drink, party, summer, party",Laura Humpfer,,,1,2433 -๐Ÿบ,1F37A,food-drink,drink,beer mug,"bar, beer, drink, mug","beer, german, alcohol, bavaria, party",Laura Humpfer,,,1,2434 -๐Ÿป,1F37B,food-drink,drink,clinking beer mugs,"bar, beer, clink, drink, mug","beer, german, party, alcohol, bavaria, party",Laura Humpfer,,,1,2435 -๐Ÿฅ‚,1F942,food-drink,drink,clinking glasses,"celebrate, clink, drink, glass","party, secco,",Laura Humpfer,,,3,2436 -๐Ÿฅƒ,1F943,food-drink,drink,tumbler glass,"glass, liquor, shot, tumbler, whisky","alcohol, classic",Laura Humpfer,,,3,2437 -๐Ÿฅค,1F964,food-drink,drink,cup with straw,"juice, soda","beverage, fastfood",Laura Humpfer,,,5,2438 -๐Ÿฅข,1F962,food-drink,dishware,chopsticks,hashi,"sticks, eat, chopstick",Jonas RoรŸner,,,5,2439 -๐Ÿฝ๏ธ,1F37D,food-drink,dishware,fork and knife with plate,"cooking, fork, knife, plate",eat,Jonas RoรŸner,,,1,2441 -๐Ÿด,1F374,food-drink,dishware,fork and knife,"cooking, cutlery, fork, knife",eat,Jonas RoรŸner,,,1,2442 -๐Ÿฅ„,1F944,food-drink,dishware,spoon,tableware,"metal, spoon, eat",Jonas RoรŸner,,,3,2443 -๐Ÿ”ช,1F52A,food-drink,dishware,kitchen knife,"cooking, hocho, knife, tool, weapon",eat,Jonas RoรŸner,,,1,2444 -๐ŸŒ๏ธ,1F30D,travel-places,place-map,globe showing Europe-Africa,"africa, earth, europe, globe, globe showing europe-africa, world","geographic, continent, global, planet",Martin Wehl,,,1,2446 -๐ŸŒŽ๏ธ,1F30E,travel-places,place-map,globe showing Americas,"americas, earth, globe, globe showing americas, world","geographic, continent, global, planet",Martin Wehl,,,1,2447 -๐ŸŒ๏ธ,1F30F,travel-places,place-map,globe showing Asia-Australia,"asia, australia, earth, globe, globe showing asia-australia, world","geographic, continent, global, planet",Martin Wehl,,,1,2448 -๐ŸŒ,1F310,travel-places,place-map,globe with meridians,"earth, globe, meridians, world","geographic, continent, global, planet, grid",Martin Wehl,,,1,2449 -๐Ÿ—บ๏ธ,1F5FA,travel-places,place-map,world map,"map, world","geographic, continent, global, planet, earth",Martin Wehl,,,1,2451 -๐Ÿ”๏ธ,1F3D4,travel-places,place-geographic,snow-capped mountain,"cold, mountain, snow","landscape, nature, hiking, climbing, white, outdoor, adventure",Martin Wehl,,,1,2455 -โ›ฐ๏ธ,26F0,travel-places,place-geographic,mountain,mountain,"landscape, nature, hiking, climbing, outdoor, adventure",Martin Wehl,,,1,2457 -๐ŸŒ‹,1F30B,travel-places,place-geographic,volcano,"eruption, mountain","landscape, nature, fire, smoke, hot",Martin Wehl,,,1,2458 -๐Ÿ—ป,1F5FB,travel-places,place-geographic,mount fuji,"fuji, mountain","japan, japanese, geographic",Martin Wehl,,,1,2459 -๐Ÿ•๏ธ,1F3D5,travel-places,place-geographic,camping,camping,"nature, outdoor, tent, adventure, sleeping",Martin Wehl,,,1,2461 -๐Ÿ–๏ธ,1F3D6,travel-places,place-geographic,beach with umbrella,"beach, umbrella","nature, summer, sun, sand, water, holidays",Martin Wehl,,,1,2463 -๐Ÿœ๏ธ,1F3DC,travel-places,place-geographic,desert,desert,"nature, hot, sun, sand, dry",Martin Wehl,,,1,2465 -๐Ÿ๏ธ,1F3DD,travel-places,place-geographic,desert island,"desert, island","sun, lonely, sand, water, stranded, palm, nature",Martin Wehl,,,1,2467 -๐Ÿž๏ธ,1F3DE,travel-places,place-geographic,national park,park,"nature, outdoor, adventure, woods, mountain",Martin Wehl,,,1,2469 -๐ŸŸ๏ธ,1F3DF,travel-places,place-building,stadium,stadium,"building, football, sports, olympic",Martin Wehl,,,1,2471 -๐Ÿ›๏ธ,1F3DB,travel-places,place-building,classical building,classical,"building, historical, old, antique",Martin Wehl,,,1,2473 -๐Ÿ—๏ธ,1F3D7,travel-places,place-building,building construction,construction,"work, building lot, crane",Martin Wehl,,,1,2475 -๐Ÿ˜๏ธ,1F3D8,travel-places,place-building,houses,houses,"buildings, neighbourhood",Martin Wehl,,,1,2478 -๐Ÿš๏ธ,1F3DA,travel-places,place-building,derelict house,"derelict, house","building, old, rotten, dangerous",Martin Wehl,,,1,2480 -๐Ÿ ๏ธ,1F3E0,travel-places,place-building,house,home,building,Martin Wehl,,,1,2481 -๐Ÿก,1F3E1,travel-places,place-building,house with garden,"garden, home, house","building, grass, green, tree",Martin Wehl,,,1,2482 -๐Ÿข,1F3E2,travel-places,place-building,office building,building,"workplace, company, firm, business",Martin Wehl,,,1,2483 -๐Ÿฃ,1F3E3,travel-places,place-building,Japanese post office,"japanese, japanese post office, post","delivery, mailing, communication",Martin Wehl,,,1,2484 -๐Ÿค,1F3E4,travel-places,place-building,post office,"european, post","delivery, mailing, yellow, communication",Martin Wehl,,,1,2485 -๐Ÿฅ,1F3E5,travel-places,place-building,hospital,"doctor, medicine","building, cross, help, social, public",Martin Wehl,,,1,2486 -๐Ÿฆ,1F3E6,travel-places,place-building,bank,building,"money, business, finance, venture",Martin Wehl,,,1,2487 -๐Ÿจ,1F3E8,travel-places,place-building,hotel,building,"sleep, travel, business, holiday, vacation",Martin Wehl,,,1,2488 -๐Ÿฉ,1F3E9,travel-places,place-building,love hotel,"hotel, love","building, sex, affair",Martin Wehl,,,1,2489 -๐Ÿช,1F3EA,travel-places,place-building,convenience store,"convenience, store","building, shopping, buying, 24",Martin Wehl,,,1,2490 -๐Ÿซ,1F3EB,travel-places,place-building,school,building,"learning, public, teaching, education",Martin Wehl,,,1,2491 -๐Ÿฌ,1F3EC,travel-places,place-building,department store,"department, store","building, shopping, buying",Martin Wehl,,,1,2492 -๐Ÿญ๏ธ,1F3ED,travel-places,place-building,factory,building,"firm, workplace, business",Martin Wehl,,,1,2493 -๐Ÿฏ,1F3EF,travel-places,place-building,Japanese castle,"castle, japanese","building, culture, historical, war",Martin Wehl,,,1,2494 -๐Ÿฐ,1F3F0,travel-places,place-building,castle,european,"building, culture, historical, war",Martin Wehl,,,1,2495 -๐Ÿ’’,1F492,travel-places,place-building,wedding,"chapel, romance","building, love, marriage, heart",Martin Wehl,,,1,2496 -โ›ช๏ธ,26EA,travel-places,place-religious,church,"christian, cross, religion","religious, pray, cross, building, god, mess, faith",Martin Wehl,,,1,2499 -๐Ÿ•Œ,1F54C,travel-places,place-religious,mosque,"islam, muslim, religion","religious, pray, building, god, faith",Martin Wehl,,,1,2500 -๐Ÿ•,1F54D,travel-places,place-religious,synagogue,"jew, jewish, religion, temple","religious, pray, building, god, faith",Martin Wehl,,,1,2501 -โ›ฉ๏ธ,26E9,travel-places,place-religious,shinto shrine,"religion, shinto, shrine","religious, pray, building, god, faith",Martin Wehl,,,1,2503 -๐Ÿ•‹,1F54B,travel-places,place-religious,kaaba,"islam, muslim, religion","religious, pray, building, god, black, mecca, faith",Martin Wehl,,,1,2504 -โ›บ๏ธ,26FA,travel-places,place-other,tent,camping,"nature, outdoor, adventure",Martin Wehl,,,1,2506 -๐Ÿ™๏ธ,1F3D9,travel-places,place-other,cityscape,city,"buildings, metropolis",Martin Wehl,,,1,2510 -๐Ÿ’ˆ,1F488,travel-places,place-other,barber pole,"barber, haircut, pole","beauty, hairdresser",Martin Wehl,,,1,2522 -๐ŸŽช,1F3AA,travel-places,place-other,circus tent,"circus, tent","fun, leisure, entertainment, red, white",Martin Wehl,,,1,2523 -๐Ÿš‚,1F682,travel-places,transport-ground,locomotive,"engine, railway, steam, train","Train, Locomotive, travle, drive",Ronja Bรคurlen,,,1,2524 -๐Ÿšƒ,1F683,travel-places,transport-ground,railway car,"car, electric, railway, train, tram, trolleybus","train, locomotive, railway car, travle",Ronja Bรคurlen,,,1,2525 -๐Ÿš…,1F685,travel-places,transport-ground,bullet train,"bullet, railway, shinkansen, speed, train","train, locomotive, railway car, travle, transportation",Ronja Bรคurlen,,,1,2527 -๐Ÿš‰,1F689,travel-places,transport-ground,station,"railway, train","trainstation, station, stop, train, railway, travle, departure, arrives",Ronja Bรคurlen,,,1,2531 -๐Ÿš,1F69D,travel-places,transport-ground,monorail,vehicle,"train, locomotive, monorail, travle, transportation",Ronja Bรคurlen,,,1,2533 -๐ŸšŒ,1F68C,travel-places,transport-ground,bus,vehicle,"Bus, travle, transportation",Ronja Bรคurlen,,,1,2536 -๐Ÿš,1F690,travel-places,transport-ground,minibus,bus,"Bus, travle, transportation, car",Ronja Bรคurlen,,,1,2539 -๐Ÿš‘๏ธ,1F691,travel-places,transport-ground,ambulance,vehicle,"travle, hospital, ambulance, alarm, doctor, help",Ronja Bรคurlen,,,1,2540 -๐Ÿš’,1F692,travel-places,transport-ground,fire engine,"engine, fire, truck","travle, fire, fire engine, red, alarm",Ronja Bรคurlen,,,1,2541 -๐Ÿš“,1F693,travel-places,transport-ground,police car,"car, patrol, police","travle, cardepartment, police, patrol",Ronja Bรคurlen,,,1,2542 -๐Ÿš•,1F695,travel-places,transport-ground,taxi,vehicle,"travle, tranportation, car, taxi, cab",Ronja Bรคurlen,,,1,2544 -๐Ÿš—,1F697,travel-places,transport-ground,automobile,car,"car, travle, automobile, vehicle, transportation",Ronja Bรคurlen,,,1,2546 -๐Ÿš™,1F699,travel-places,transport-ground,sport utility vehicle,"recreational, sport utility","car, travle, automobile, vehicle, transportation, sport, utility",Ronja Bรคurlen,,,1,2548 -๐Ÿšš,1F69A,travel-places,transport-ground,delivery truck,"delivery, truck","truck, delivery, car, transportation, travle, trucker, driver",Ronja Bรคurlen,,,1,2549 -๐Ÿš›,1F69B,travel-places,transport-ground,articulated lorry,"lorry, semi, truck","deliverytruck, truck, car, transportation, travle, trucker, truckdriver",Ronja Bรคurlen,,,1,2550 -๐Ÿšœ,1F69C,travel-places,transport-ground,tractor,vehicle,"tractor, towing, vehicle, farm, farming, field, acre",Ronja Bรคurlen,,,1,2551 -๐Ÿšฒ๏ธ,1F6B2,travel-places,transport-ground,bicycle,bike,"bike, vehicle, bicycle",Ronja Bรคurlen,,,1,2552 -๐Ÿ›ด,1F6F4,travel-places,transport-ground,kick scooter,"kick, scooter","kick, scooter, cityroller",Ronja Bรคurlen,,,3,2553 -๐Ÿ›ต,1F6F5,travel-places,transport-ground,motor scooter,"motor, scooter","motor, scooter, transportation, bicycle,",Ronja Bรคurlen,,,3,2555 -๐Ÿš,1F68F,travel-places,transport-ground,bus stop,"bus, busstop, stop","station, stop, bus, traffic, travle, busstop, departure, arrive",Ronja Bรคurlen,,,1,2556 -โ›ฝ๏ธ,26FD,travel-places,transport-ground,fuel pump,"diesel, fuel, fuelpump, gas, pump, station","fuel, gas, station, transportation",Ronja Bรคurlen,,,1,2563 -๐Ÿšฅ,1F6A5,travel-places,transport-ground,horizontal traffic light,"light, signal, traffic","light, red, green, yellow, traffic, trafficlight",Ronja Bรคurlen,,,1,2565 -๐Ÿšฆ,1F6A6,travel-places,transport-ground,vertical traffic light,"light, signal, traffic","light, red, reen, yellow, vertical, traffic, light",Ronja Bรคurlen,,,1,2566 -๐Ÿ›‘,1F6D1,travel-places,transport-ground,stop sign,"octagonal, sign, stop","stop, sign, signal, warning",Ronja Bรคurlen,,,3,2567 -๐Ÿšง,1F6A7,travel-places,transport-ground,construction,barrier,"barrier, warning, stop, attention, traffic",Ronja Bรคurlen,,,1,2568 -โš“๏ธ,2693,travel-places,transport-water,anchor,"ship, tool","boat, ship, travle, sea, atlantic, ocean, water, tool, anchor, metal",Ronja Bรคurlen,,,1,2569 -โ›ต๏ธ,26F5,travel-places,transport-water,sailboat,"boat, resort, sea, yacht","boat, passengers, ship, travle, sea, atlantic, ocean, water, yacht, resort, sail, sailboat",Ronja Bรคurlen,,,1,2570 -๐Ÿšค,1F6A4,travel-places,transport-water,speedboat,boat,"boat, passengers, ship, travle, sea, atlantic, ocean, water, speed",Ronja Bรคurlen,,,1,2572 -๐Ÿ›ณ๏ธ,1F6F3,travel-places,transport-water,passenger ship,"passenger, ship","boat, passengers, ship, travle, sea, atlantic, ocean, water",Ronja Bรคurlen,,,1,2574 -๐Ÿ›ฅ๏ธ,1F6E5,travel-places,transport-water,motor boat,"boat, motorboat","boat, passengers, ship, travle, sea, atlantic, ocean, water, motor",Ronja Bรคurlen,,,1,2578 -๐Ÿšข,1F6A2,travel-places,transport-water,ship,"boat, passenger","boat, passengers, ship, travle, sea, atlantic, ocean, water",Ronja Bรคurlen,,,1,2579 -โœˆ๏ธ,2708,travel-places,transport-air,airplane,aeroplane,"fly, airplane, aeroplane, air, sky, travle, departure, arrive",Ronja Bรคurlen,,,1,2581 -๐Ÿ›ฉ๏ธ,1F6E9,travel-places,transport-air,small airplane,"aeroplane, airplane","fly, airplane, aeroplane, air, sky, travle, departure, arrive",Ronja Bรคurlen,,,1,2583 -๐Ÿ›ซ,1F6EB,travel-places,transport-air,airplane departure,"aeroplane, airplane, check-in, departure, departures","fly, airplane, aeroplane, ir, sky, travle, departure",Ronja Bรคurlen,,,1,2584 -๐Ÿ›ฌ,1F6EC,travel-places,transport-air,airplane arrival,"aeroplane, airplane, arrivals, arriving, landing","fly, airplane, aeroplane, air, sky, travle, arrive",Ronja Bรคurlen,,,1,2585 -๐Ÿ’บ,1F4BA,travel-places,transport-air,seat,chair,"seat, chair, lounge, Airplane, sitting, comfort",Ronja Bรคurlen,,,1,2586 -๐Ÿš,1F681,travel-places,transport-air,helicopter,vehicle,"helicopter, air, transportation, sky, fly, flying",Ronja Bรคurlen,,,1,2587 -๐Ÿš ,1F6A0,travel-places,transport-air,mountain cableway,"cable, gondola, mountain","travle, mountain, high",Ronja Bรคurlen,,,1,2589 -๐Ÿ›ฐ๏ธ,1F6F0,travel-places,transport-air,satellite,space,"space, galaxy, satelite",Ronja Bรคurlen,,,1,2592 -๐Ÿš€,1F680,travel-places,transport-air,rocket,space,"rocket, space, galaxy, adventure, discorver, alien, transportation",Ronja Bรคurlen,,,1,2593 -๐Ÿ›ธ,1F6F8,travel-places,transport-air,flying saucer,ufo,"Ailien, Ufo flyingsaucer, space, planets, adventures",Ronja Bรคurlen,,,5,2594 -โŒ›๏ธ,231B,travel-places,time,hourglass done,"sand, timer","countdown, hourglass",Rana Cakir,,,1,2598 -โณ๏ธ,23F3,travel-places,time,hourglass not done,"hourglass, sand, timer",,Rana Cakir,,,1,2599 -โŒš๏ธ,231A,travel-places,time,watch,clock,"watch, time,",Rana Cakir,,,1,2600 -โฐ,23F0,travel-places,time,alarm clock,"alarm, clock",,Rana Cakir,,,1,2601 -โฑ๏ธ,23F1,travel-places,time,stopwatch,clock,,Rana Cakir,,,1,2603 -โฒ๏ธ,23F2,travel-places,time,timer clock,"clock, timer",time,Rana Cakir,,,1,2605 -๐Ÿ•›๏ธ,1F55B,travel-places,time,twelve oโ€™clock,"00, 12, 12:00, clock, oโ€™clock, twelve",time,Rana Cakir,,,1,2608 -๐Ÿ•ง๏ธ,1F567,travel-places,time,twelve-thirty,"12, 12:30, clock, thirty, twelve",time,Rana Cakir,,,1,2609 -๐Ÿ•๏ธ,1F550,travel-places,time,one oโ€™clock,"00, 1, 1:00, clock, one, oโ€™clock",time,Rana Cakir,,,1,2610 -๐Ÿ•œ๏ธ,1F55C,travel-places,time,one-thirty,"1, 1:30, clock, one, thirty",time,Rana Cakir,,,1,2611 -๐Ÿ•‘๏ธ,1F551,travel-places,time,two oโ€™clock,"00, 2, 2:00, clock, oโ€™clock, two",time,Rana Cakir,,,1,2612 -๐Ÿ•๏ธ,1F55D,travel-places,time,two-thirty,"2, 2:30, clock, thirty, two",time,Rana Cakir,,,1,2613 -๐Ÿ•’๏ธ,1F552,travel-places,time,three oโ€™clock,"00, 3, 3:00, clock, oโ€™clock, three",time,Rana Cakir,,,1,2614 -๐Ÿ•ž๏ธ,1F55E,travel-places,time,three-thirty,"3, 3:30, clock, thirty, three",time,Rana Cakir,,,1,2615 -๐Ÿ•“๏ธ,1F553,travel-places,time,four oโ€™clock,"00, 4, 4:00, clock, four, oโ€™clock",time,Rana Cakir,,,1,2616 -๐Ÿ•Ÿ๏ธ,1F55F,travel-places,time,four-thirty,"4, 4:30, clock, four, thirty",time,Rana Cakir,,,1,2617 -๐Ÿ•”๏ธ,1F554,travel-places,time,five oโ€™clock,"00, 5, 5:00, clock, five, oโ€™clock",time,Rana Cakir,,,1,2618 -๐Ÿ• ๏ธ,1F560,travel-places,time,five-thirty,"5, 5:30, clock, five, thirty",time,Rana Cakir,,,1,2619 -๐Ÿ••๏ธ,1F555,travel-places,time,six oโ€™clock,"00, 6, 6:00, clock, oโ€™clock, six",time,Rana Cakir,,,1,2620 -๐Ÿ•ก๏ธ,1F561,travel-places,time,six-thirty,"6, 6:30, clock, six, thirty",time,Rana Cakir,,,1,2621 -๐Ÿ•–๏ธ,1F556,travel-places,time,seven oโ€™clock,"00, 7, 7:00, clock, oโ€™clock, seven",time,Rana Cakir,,,1,2622 -๐Ÿ•ข๏ธ,1F562,travel-places,time,seven-thirty,"7, 7:30, clock, seven, thirty",time,Rana Cakir,,,1,2623 -๐Ÿ•—๏ธ,1F557,travel-places,time,eight oโ€™clock,"00, 8, 8:00, clock, eight, oโ€™clock",time,Rana Cakir,,,1,2624 -๐Ÿ•ฃ๏ธ,1F563,travel-places,time,eight-thirty,"8, 8:30, clock, eight, thirty",time,Rana Cakir,,,1,2625 -๐Ÿ•˜๏ธ,1F558,travel-places,time,nine oโ€™clock,"00, 9, 9:00, clock, nine, oโ€™clock",time,Rana Cakir,,,1,2626 -๐Ÿ•ค๏ธ,1F564,travel-places,time,nine-thirty,"9, 9:30, clock, nine, thirty",time,Rana Cakir,,,1,2627 -๐Ÿ•™๏ธ,1F559,travel-places,time,ten oโ€™clock,"00, 10, 10:00, clock, oโ€™clock, ten",time,Rana Cakir,,,1,2628 -๐Ÿ•ฅ๏ธ,1F565,travel-places,time,ten-thirty,"10, 10:30, clock, ten, thirty",time,Rana Cakir,,,1,2629 -๐Ÿ•š๏ธ,1F55A,travel-places,time,eleven oโ€™clock,"00, 11, 11:00, clock, eleven, oโ€™clock",time,Rana Cakir,,,1,2630 -๐Ÿ•ฆ๏ธ,1F566,travel-places,time,eleven-thirty,"11, 11:30, clock, eleven, thirty",time,Rana Cakir,,,1,2631 -๐ŸŒ™,1F319,travel-places,sky-weather,crescent moon,"crescent, moon","crescent moon, full moon, night, night sky, moon, celestial bodie, crescent, planet, far away",Vanessa Boutzikoudi,,,1,2640 -๐ŸŒ›,1F31B,travel-places,sky-weather,first quarter moon face,"face, moon, quarter","face, first quarter, half moon, moon, full moon, night, night sky, starry sky, light, moonlight, round, celestial bodies, sickle, planet",Vanessa Boutzikoudi,,,1,2642 -๐ŸŒœ๏ธ,1F31C,travel-places,sky-weather,last quarter moon face,"face, moon, quarter","face, last quarter, half moon, moon, full moon, night, night sky, starry sky, light, moonlight, round, celestial bodies, sickle, planet",Vanessa Boutzikoudi,,,1,2643 -๐ŸŒก๏ธ,1F321,travel-places,sky-weather,thermometer,weather,"temperatures, room temperatures, degrees, heat, warming, fever, cold, celsius, measure, sick",Vanessa Boutzikoudi,,,1,2645 -โ˜€๏ธ,2600,travel-places,sky-weather,sun,"bright, rays, sunny","sun, sunrise, warm, sunbeams, feel good, beach, tanning, fire, fireball, hot, heavenly body",Vanessa Boutzikoudi,,,1,2647 -๐ŸŒ,1F31D,travel-places,sky-weather,full moon face,"bright, face, full, moon","moon, full moon, night, stars, moonlight, disc, no clouds",Vanessa Boutzikoudi,,,1,2648 -๐ŸŒž,1F31E,travel-places,sky-weather,sun with face,"bright, face, sun","sun, face, bright, sun, sunrise, warm, rays, beach, tanning, fire, fireball, hot, celestial bodies, star",Vanessa Boutzikoudi,,,1,2649 -โญ๏ธ,2B50,travel-places,sky-weather,star,star,"star, shine, small planet, sky, yellow, sparkle, far away",Vanessa Boutzikoudi,,,1,2650 -๐ŸŒŸ,1F31F,travel-places,sky-weather,glowing star,"glittery, glow, shining, sparkle, star","star, shine, glow, bright, sparkle, small planet, sky, yellow, far away, constellation, shooting star, milky way",Vanessa Boutzikoudi,,,1,2651 -๐ŸŒ ,1F320,travel-places,sky-weather,shooting star,"falling, shooting, star","shooting star, star, sparkle, shine, bright, far away, sky, star sky, night, wish, lightning",Vanessa Boutzikoudi,,,1,2652 -โ˜๏ธ,2601,travel-places,sky-weather,cloud,weather,"cloud, cloudy, rain, gray, misty, diffuse, sky, dream, fleecy clouds",Vanessa Boutzikoudi,,,1,2654 -โ›…๏ธ,26C5,travel-places,sky-weather,sun behind cloud,"cloud, sun","sun, behind, cloud, appear, cloudy, cool, sunny, weather",Vanessa Boutzikoudi,,,1,2655 -โ›ˆ๏ธ,26C8,travel-places,sky-weather,cloud with lightning and rain,"cloud, rain, thunder","cloud, lightning, rain, thunder, weather, storm, thunderstorm",Vanessa Boutzikoudi,,,1,2657 -๐ŸŒค๏ธ,1F324,travel-places,sky-weather,sun behind small cloud,"cloud, sun","sun, behind, small, cloud, sunny, cloudy, rain, cool, sky, weather",Vanessa Boutzikoudi,,,1,2659 -๐ŸŒฅ๏ธ,1F325,travel-places,sky-weather,sun behind large cloud,"cloud, sun","sun, behind, large, cloud, gray, cloudy, rain, diffuse, sky, weather",Vanessa Boutzikoudi,,,1,2661 -๐ŸŒฆ๏ธ,1F326,travel-places,sky-weather,sun behind rain cloud,"cloud, rain, sun","sun, behind, rain, cloud, wet, rainy, cloudy, cool, weather",Vanessa Boutzikoudi,,,1,2663 -๐ŸŒง๏ธ,1F327,travel-places,sky-weather,cloud with rain,"cloud, rain","cloud, rain, raindrops, falling, down, wet, cool, cloudy, weather, stormy",Vanessa Boutzikoudi,,,1,2665 -๐ŸŒจ๏ธ,1F328,travel-places,sky-weather,cloud with snow,"cloud, cold, snow","cloud, snow, falling, ice, wet, cold, cloudy, stormy, weather",Vanessa Boutzikoudi,,,1,2667 -๐ŸŒฉ๏ธ,1F329,travel-places,sky-weather,cloud with lightning,"cloud, lightning","cloud, lightning, glaring, wet, cold, cloudy, gray, weather, storm, current, voltage, light up, light",Vanessa Boutzikoudi,,,1,2669 -๐ŸŒช๏ธ,1F32A,travel-places,sky-weather,tornado,"cloud, whirlwind","tornado, wind, blow, sky, dangerous, severe weather, storm, hurricane, typhoon, cyclone",Vanessa Boutzikoudi,,,1,2671 -๐ŸŒฌ๏ธ,1F32C,travel-places,sky-weather,wind face,"blow, cloud, face, wind","wind, face, blowing, air, mouth, mother nature, sky",Vanessa Boutzikoudi,,,1,2675 -๐ŸŒ€,1F300,travel-places,sky-weather,cyclone,"dizzy, hurricane, twister, typhoon","whirl, swirl, spiral, funnel, rotation, rotate, air, turbulent",Vanessa Boutzikoudi,,,1,2676 -๐ŸŒˆ,1F308,travel-places,sky-weather,rainbow,rain,"rainbow, color, colorful, colors formed in the sky, sunbeams, sunlight, facet, sparkle, unicorn",Vanessa Boutzikoudi,,,1,2677 -โ˜‚๏ธ,2602,travel-places,sky-weather,umbrella,"clothing, rain","purple, umbrella, rain, wet, drop, raindrops",Vanessa Boutzikoudi,,,1,2680 -โ˜”๏ธ,2614,travel-places,sky-weather,umbrella with rain drops,"clothing, drop, rain, umbrella","umbrella, rain, raindrops, wet, drops, windy, rain falling",Vanessa Boutzikoudi,,,1,2681 -โšก๏ธ,26A1,travel-places,sky-weather,high voltage,"danger, electric, lightning, voltage, zap","lightning, high voltage, storm, current, voltage, volts, lights, light",Vanessa Boutzikoudi,,,1,2684 -โ„๏ธ,2744,travel-places,sky-weather,snowflake,"cold, snow","snowflake, snow, ice, icy, wintry, snow storm, white, cold, frosty, season, weather, melting",Vanessa Boutzikoudi,,,1,2686 -โ›„๏ธ,26C4,travel-places,sky-weather,snowman without snow,"cold, snow, snowman","snowman, frosty, frosty the snowman, snowman, olaf, winter, not snowing",Vanessa Boutzikoudi,,,1,2689 -๐Ÿ”ฅ,1F525,travel-places,sky-weather,fire,"flame, tool","fire, burn, hot, high temperature, flame, glow, flame, tool",Vanessa Boutzikoudi,,,1,2692 -๐Ÿ’ง,1F4A7,travel-places,sky-weather,droplet,"cold, comic, drop, sweat","drops, droplets, raindrops, wet, rain, cold, fluid, liquid, wet, puddle, pearl, tear",Vanessa Boutzikoudi,,,1,2693 -๐ŸŒŠ,1F30A,travel-places,sky-weather,water wave,"ocean, water, wave","wave, water, salty, sea, wet, cold, sun, beach, vacation, air, surf, sough, listen",Vanessa Boutzikoudi,,,1,2694 -๐ŸŽƒ,1F383,activities,event,jack-o-lantern,"celebration, halloween, jack, lantern",pumpkin,Laura Humpfer,,,1,2695 -๐ŸŽ„,1F384,activities,event,Christmas tree,"celebration, christmas, tree",,Laura Humpfer,,,1,2696 -โœจ,2728,activities,event,sparkles,"sparkle, star","magic, beautiful",Laura Humpfer,,,1,2700 -๐ŸŽˆ,1F388,activities,event,balloon,celebration,"balloon, birthday, party, decoration",Laura Humpfer,,,1,2701 -๐ŸŽ‰,1F389,activities,event,party popper,"celebration, party, popper, tada","decoration, happy",Laura Humpfer,,,1,2702 -๐ŸŽŠ,1F38A,activities,event,confetti ball,"ball, celebration, confetti","decoration, happy",Laura Humpfer,,,1,2703 -๐ŸŽ‹,1F38B,activities,event,tanabata tree,"banner, celebration, japanese, tree",,Laura Humpfer,,,1,2704 -๐ŸŽŽ,1F38E,activities,event,Japanese dolls,"celebration, doll, festival, japanese, japanese dolls",,Laura Humpfer,,,1,2706 -๐ŸŽ€,1F380,activities,event,ribbon,celebration,"present, gift, decoration, party, girl, girly, fashion",Laura Humpfer,,,1,2711 -๐ŸŽ,1F381,activities,event,wrapped gift,"box, celebration, gift, present, wrapped","present, birthday, christmas",Laura Humpfer,,,1,2712 -๐ŸŽ—๏ธ,1F397,activities,event,reminder ribbon,"celebration, reminder, ribbon",,Laura Humpfer,,,1,2714 -๐ŸŽŸ๏ธ,1F39F,activities,event,admission tickets,"admission, ticket",,Laura Humpfer,,,1,2716 -๐ŸŽซ,1F3AB,activities,event,ticket,admission,,Laura Humpfer,,,1,2717 -๐ŸŽ–๏ธ,1F396,activities,award-medal,military medal,"celebration, medal, military","Medal, Medallion, Military, Ribbon",Julian Grรผneberg,,,1,2719 -๐Ÿ†๏ธ,1F3C6,activities,award-medal,trophy,prize,"Trophy, Championship, Winner, Gold Cup, award",Julian Grรผneberg,,,1,2720 -๐Ÿ…,1F3C5,activities,award-medal,sports medal,medal,"Sports, Medal, Sporting",Julian Grรผneberg,,,1,2721 -๐Ÿฅ‡,1F947,activities,award-medal,1st place medal,"first, gold, medal","Gold Medal, Gold, Medal, 1st Place Medal, First Place Medal",Julian Grรผneberg,,,3,2722 -๐Ÿฅˆ,1F948,activities,award-medal,2nd place medal,"medal, second, silver","Silver, Medal, Silver Medal, Second Place, Second Place Medal, 2nd Place Medal",Julian Grรผneberg,,,3,2723 -๐Ÿฅ‰,1F949,activities,award-medal,3rd place medal,"bronze, medal, third","Bronze, Medal, Bronze Medal, Third Place, Third Place Medal, 3rd Place Medal",Julian Grรผneberg,,,3,2724 -โšฝ๏ธ,26BD,activities,sport,soccer ball,"ball, football, soccer","soccer, ball, football, game, ball game, team sports",Vanessa Boutzikoudi,,,1,2725 -โšพ๏ธ,26BE,activities,sport,baseball,ball,"baseball, white, ball, american, game, ball game, team sports",Vanessa Boutzikoudi,,,1,2726 -๐Ÿ€,1F3C0,activities,sport,basketball,"ball, hoop","basketball, orange ball, team sport, sport, canadian sport, game",Vanessa Boutzikoudi,,,1,2728 -๐Ÿ,1F3D0,activities,sport,volleyball,"ball, game","ball, ball game, team sport, sport, hobby, olympic games",Vanessa Boutzikoudi,,,1,2729 -๐Ÿˆ,1F3C8,activities,sport,american football,"american, ball, football","american, football, american game, oval ball, ball game, superbowl, team sport",Vanessa Boutzikoudi,,,1,2730 -๐Ÿ‰,1F3C9,activities,sport,rugby football,"ball, football, rugby","rugby, football, brown ball, league, rugby, union, team sport, british sports, sport",Vanessa Boutzikoudi,,,1,2731 -๐ŸŽพ,1F3BE,activities,sport,tennis,"ball, racquet","tennis, tennis ball, ball game, game, racket, racquet, sport",Vanessa Boutzikoudi,,,1,2732 -๐Ÿ,1F3CF,activities,sport,cricket game,"ball, bat, game","cricket, game, cricket bat and ball, hobby, activity",Vanessa Boutzikoudi,,,1,2735 -๐Ÿ‘,1F3D1,activities,sport,field hockey,"ball, field, game, hockey, stick","field, hockey, field hockey stick and ball, ice hockey, team sport, hockey stick, puck",Vanessa Boutzikoudi,,,1,2736 -๐Ÿ’,1F3D2,activities,sport,ice hockey,"game, hockey, ice, puck, stick","ice hockey, hockey stick, puck, field hockey, game, team sport",Vanessa Boutzikoudi,,,1,2737 -๐Ÿ“,1F3D3,activities,sport,ping pong,"ball, bat, game, paddle, table tennis","ping pong, table tennis, paddle, ball, game, ball game, hobby",Vanessa Boutzikoudi,,,1,2739 -๐ŸฅŠ,1F94A,activities,sport,boxing glove,"boxing, glove","boxing, glove, red, mitt, sport, fist, beat, slap, slap in your face, muhammad ali",Vanessa Boutzikoudi,,,3,2741 -๐Ÿฅ‹,1F94B,activities,sport,martial arts uniform,"judo, karate, martial arts, taekwondo, uniform","white, uniform, judo, karate, keikogi, sport",Vanessa Boutzikoudi,,,3,2742 -โ›ณ๏ธ,26F3,activities,sport,flag in hole,"golf, hole","flag, golf, golf flag, golf hole with flag, sport, ball, goal",Vanessa Boutzikoudi,,,1,2744 -๐ŸŽฃ,1F3A3,activities,sport,fishing pole,"fish, pole","fishing rod, fishing pole, line, fish, caught, hobby",Vanessa Boutzikoudi,,,1,2747 -๐ŸŽฟ,1F3BF,activities,sport,skis,"ski, snow","skis, Skiing, Ski Boot, to ski, winter, snow, hobby, sport",Vanessa Boutzikoudi,,,1,2749 -๐ŸŽฏ,1F3AF,activities,game,direct hit,"bullseye, dart, game, hit, target","direct, hit, dart board, archery, bullseye, target, darts, game",Vanessa Boutzikoudi,,,1,2752 -๐ŸŽฑ,1F3B1,activities,game,pool 8 ball,"8, ball, billiard, eight, game","pool ball, 8 Ball, black ball, cue ball, magic 8 ball, pool, snooker, billiards, game",Vanessa Boutzikoudi,,,1,2753 -๐Ÿ”ฎ,1F52E,activities,game,crystal ball,"ball, crystal, fairy tale, fantasy, fortune, tool",mystery,Marius Schnabel,,,1,2754 -๐ŸŽฎ๏ธ,1F3AE,activities,game,video game,"controller, game",gamble,Lisa Schulz,,,1,2756 -๐Ÿ•น๏ธ,1F579,activities,game,joystick,"game, video game",,Lisa Schulz,,,1,2758 -๐ŸŽฒ,1F3B2,activities,game,game die,"dice, die, game",board game,Lisa Schulz,,,1,2760 -๐ŸŽญ๏ธ,1F3AD,activities,arts-crafts,performing arts,"art, mask, performing, theater, theatre","culture, entertainment, education",Martin Wehl,,,1,2776 -๐Ÿ–ผ๏ธ,1F5BC,activities,arts-crafts,framed picture,"art, frame, museum, painting, picture","culture, artist, entertainment",Martin Wehl,,,1,2778 -๐ŸŽจ,1F3A8,activities,arts-crafts,artist palette,"art, museum, painting, palette","culture, artist, leisure, entertainment",Martin Wehl,,,1,2779 -๐Ÿ”‡,1F507,objects,sound,muted speaker,"mute, quiet, silent, speaker",,Rana Cakir,,,1,2782 -๐Ÿ”ˆ๏ธ,1F508,objects,sound,speaker low volume,soft,sound,Rana Cakir,,,1,2783 -๐Ÿ”‰,1F509,objects,sound,speaker medium volume,medium,,Rana Cakir,,,1,2784 -๐Ÿ”Š,1F50A,objects,sound,speaker high volume,loud,sound,Rana Cakir,,,1,2785 -๐Ÿ“ข,1F4E2,objects,sound,loudspeaker,"loud, public address",sound,Rana Cakir,,,1,2786 -๐Ÿ“ฏ,1F4EF,objects,sound,postal horn,"horn, post, postal",,Rana Cakir,,,1,2788 -๐Ÿ””,1F514,objects,sound,bell,bell,sound,Rana Cakir,,,1,2789 -๐Ÿ”•,1F515,objects,sound,bell with slash,"bell, forbidden, mute, quiet, silent",,Rana Cakir,,,1,2790 -๐ŸŽผ,1F3BC,objects,music,musical score,"music, score","violin key, rhythmn",Sina Schulz,,,1,2791 -๐ŸŽต,1F3B5,objects,music,musical note,"music, note","song, melody, sounds, tone",Sina Schulz,,,1,2792 -๐ŸŽถ,1F3B6,objects,music,musical notes,"music, note, notes","melody, harmony, sounds, rhythmn",Sina Schulz,,,1,2793 -๐ŸŽ™๏ธ,1F399,objects,music,studio microphone,"mic, microphone, music, studio","studio, microphone, stereo, recording",Sina Schulz,,,1,2795 -๐ŸŽš๏ธ,1F39A,objects,music,level slider,"level, music, slider","studio, music slider",Sina Schulz,,,1,2797 -๐ŸŽ›๏ธ,1F39B,objects,music,control knobs,"control, knobs, music","music, mix, recording, tool, knobs",Sina Schulz,,,1,2799 -๐ŸŽค,1F3A4,objects,music,microphone,"karaoke, mic","sound, loud, stage, speech, singing, karaoke, mic, microphone, tone",Sina Schulz,,,1,2800 -๐ŸŽง๏ธ,1F3A7,objects,music,headphone,earbud,"music, headphones",Sina Schulz,,,1,2801 -๐Ÿ“ป๏ธ,1F4FB,objects,music,radio,video,"radio, stereo radio, analog radio",Sina Schulz,,,1,2802 -๐ŸŽท,1F3B7,objects,musical-instrument,saxophone,"instrument, music, sax","saxophone, sax, jazz, instrument",Sina Schulz,,,1,2803 -๐ŸŽธ,1F3B8,objects,musical-instrument,guitar,"instrument, music","guitar, e-guitar, instrumental, accustic, chords,",Sina Schulz,,,1,2804 -๐ŸŽน,1F3B9,objects,musical-instrument,musical keyboard,"instrument, keyboard, music, piano","keyboard, piano keys, chords",Sina Schulz,,,1,2805 -๐ŸŽบ,1F3BA,objects,musical-instrument,trumpet,"instrument, music","trumpet, horns, music, woodwind instrument",Sina Schulz,,,1,2806 -๐ŸŽป,1F3BB,objects,musical-instrument,violin,"instrument, music","string, violin, fiddel, bow",Sina Schulz,,,1,2807 -๐Ÿฅ,1F941,objects,musical-instrument,drum,"drumsticks, music","drum, drumsticks, music, beat",Sina Schulz,,,3,2808 -๐Ÿ“ฑ,1F4F1,objects,phone,mobile phone,"cell, mobile, phone, telephone","smartphone, message, voice, communication",Martin Wehl,,,1,2809 -๐Ÿ“ฒ,1F4F2,objects,phone,mobile phone with arrow,"arrow, cell, mobile, phone, receive","voice, smartphone, message",Martin Wehl,,,1,2810 -โ˜Ž๏ธ,260E,objects,phone,telephone,phone,"call, voice, communication",Kai Wanschura,,,1,2812 -๐Ÿ“ž,1F4DE,objects,phone,telephone receiver,"phone, receiver, telephone","call, voice, communication",Kai Wanschura,,,1,2813 -๐Ÿ“ ,1F4E0,objects,phone,fax machine,fax,"office, paper, communication",Martin Wehl,,,1,2815 -๐Ÿ”‹,1F50B,objects,computer,battery,battery,"electricity, energy, electric",Jonas RoรŸner,,,1,2816 -๐Ÿ”Œ,1F50C,objects,computer,electric plug,"electric, electricity, plug",,Jonas RoรŸner,,,1,2817 -๐Ÿ’ป๏ธ,1F4BB,objects,computer,laptop computer,"computer, pc, personal","old, retro",Jonas RoรŸner,,,1,2818 -๐Ÿ–ฅ๏ธ,1F5A5,objects,computer,desktop computer,"computer, desktop","electric, screen",Jonas RoรŸner,,,1,2820 -๐Ÿ–จ๏ธ,1F5A8,objects,computer,printer,computer,"color, electric",Jonas RoรŸner,,,1,2822 -โŒจ๏ธ,2328,objects,computer,keyboard,computer,"key, write, electric",Jonas RoรŸner,,,1,2824 -๐Ÿ–ฑ๏ธ,1F5B1,objects,computer,computer mouse,computer,"electric, computer, mouse",Jonas RoรŸner,,,1,2826 -๐Ÿ’ฝ,1F4BD,objects,computer,computer disk,"computer, disk, minidisk, optical","old, retro",Jonas RoรŸner,,,1,2829 -๐Ÿ’พ,1F4BE,objects,computer,floppy disk,"computer, disk, floppy","old, retro",Jonas RoรŸner,,,1,2830 -๐Ÿ’ฟ๏ธ,1F4BF,objects,computer,optical disk,"cd, computer, disk, optical","analog,",Jonas RoรŸner,,,1,2831 -๐Ÿ“€,1F4C0,objects,computer,dvd,"blu-ray, computer, disk, optical",film,Jonas RoรŸner,,,1,2832 -๐ŸŽฅ,1F3A5,objects,light-video,movie camera,"camera, cinema, movie","film, record",Sina Schulz,,,1,2834 -๐ŸŽž๏ธ,1F39E,objects,light-video,film frames,"cinema, film, frames, movie","clip, film",Sina Schulz,,,1,2836 -๐Ÿ“ฝ๏ธ,1F4FD,objects,light-video,film projector,"cinema, film, movie, projector, video","play, film clip, movie",Sina Schulz,,,1,2838 -๐ŸŽฌ๏ธ,1F3AC,objects,light-video,clapper board,"clapper, movie","cut, new recording",Sina Schulz,,,1,2839 -๐Ÿ“บ๏ธ,1F4FA,objects,light-video,television,"tv, video","flat screen, tv, modern",Sina Schulz,,,1,2840 -๐Ÿ“ท๏ธ,1F4F7,objects,light-video,camera,video,"camera, digital",Sina Schulz,,,1,2841 -๐Ÿ“ธ,1F4F8,objects,light-video,camera with flash,"camera, flash, video","camera, bright",Sina Schulz,,,1,2842 -๐Ÿ“น๏ธ,1F4F9,objects,light-video,video camera,"camera, video","record, recording, film, movie",Sina Schulz,,,1,2843 -๐Ÿ“ผ,1F4FC,objects,light-video,videocassette,"tape, vhs, video","movie, film, vhs, cassette, record, recording",Sina Schulz,,,1,2844 -๐Ÿ”๏ธ,1F50D,objects,light-video,magnifying glass tilted left,"glass, magnifying, search, tool","detail, big, zoom, detective",Sina Schulz,,,1,2845 -๐Ÿ”Ž,1F50E,objects,light-video,magnifying glass tilted right,"glass, magnifying, search, tool","detail, big, zoom, detective",Sina Schulz,,,1,2846 -๐Ÿ•ฏ๏ธ,1F56F,objects,light-video,candle,light,"fire, bright, shine",Sina Schulz,,,1,2848 -๐Ÿ’ก,1F4A1,objects,light-video,light bulb,"bulb, comic, electric, idea, light","shine, light, bulb, power, on, electric, idea",Sina Schulz,,,1,2849 -๐Ÿ”ฆ,1F526,objects,light-video,flashlight,"electric, light, tool, torch","bright, shine, light, flashlight, gadget",Sina Schulz,,,1,2850 -๐Ÿ“•,1F4D5,objects,book-paper,closed book,"book, closed","book, read, write, closed",Jonas RoรŸner,,,1,2853 -๐Ÿ“–,1F4D6,objects,book-paper,open book,"book, open","book, read, write, open",Jonas RoรŸner,,,1,2854 -๐Ÿ“š๏ธ,1F4DA,objects,book-paper,books,book,"book, read, write",Jonas RoรŸner,,,1,2858 -๐Ÿ““,1F4D3,objects,book-paper,notebook,notebook,"book, read, write",Jonas RoรŸner,,,1,2859 -๐Ÿ“’,1F4D2,objects,book-paper,ledger,notebook,"book, read, write",Jonas RoรŸner,,,1,2860 -๐Ÿ“ƒ,1F4C3,objects,book-paper,page with curl,"curl, document, page","rolled, page, text",Jonas RoรŸner,,,1,2861 -๐Ÿ“œ,1F4DC,objects,book-paper,scroll,paper,"old, papyrus, text",Jonas RoรŸner,,,1,2862 -๐Ÿ“„,1F4C4,objects,book-paper,page facing up,"document, page","write, text, paper",Jonas RoรŸner,,,1,2863 -๐Ÿ“ฐ,1F4F0,objects,book-paper,newspaper,"news, paper","read, news, paper, text",Jonas RoรŸner,,,1,2864 -๐Ÿ”–,1F516,objects,book-paper,bookmark,mark,"remember,",Jonas RoรŸner,,,1,2868 -๐Ÿท๏ธ,1F3F7,objects,book-paper,label,label,"stick,",Jonas RoรŸner,,,1,2870 -๐Ÿ’ฐ๏ธ,1F4B0,objects,money,money bag,"bag, dollar, money, moneybag",,Marius Schnabel,,,1,2871 -๐Ÿ’ด,1F4B4,objects,money,yen banknote,"banknote, bill, currency, money, note, yen",,Marius Schnabel,,,1,2872 -๐Ÿ’ต,1F4B5,objects,money,dollar banknote,"banknote, bill, currency, dollar, money, note",,Marius Schnabel,,,1,2873 -๐Ÿ’ถ,1F4B6,objects,money,euro banknote,"banknote, bill, currency, euro, money, note",,Marius Schnabel,,,1,2874 -๐Ÿ’ท,1F4B7,objects,money,pound banknote,"banknote, bill, currency, money, note, pound",,Marius Schnabel,,,1,2875 -๐Ÿ’ธ,1F4B8,objects,money,money with wings,"banknote, bill, fly, money, wings",,Marius Schnabel,,,1,2876 -๐Ÿ’ณ๏ธ,1F4B3,objects,money,credit card,"card, credit, money",,Marius Schnabel,,,1,2877 -โœ‰๏ธ,2709,objects,mail,envelope,"email, letter","post, message",Marius Schnabel,,,1,2883 -๐Ÿ“ง,1F4E7,objects,mail,e-mail,"email, letter, mail","message, eletronic",Marius Schnabel,,,1,2884 -๐Ÿ“ฉ,1F4E9,objects,mail,envelope with arrow,"arrow, e-mail, email, envelope, outgoing",post,Marius Schnabel,,,1,2886 -๐Ÿ“ค๏ธ,1F4E4,objects,mail,outbox tray,"box, letter, mail, outbox, sent, tray",post,Marius Schnabel,,,1,2887 -๐Ÿ“ฅ๏ธ,1F4E5,objects,mail,inbox tray,"box, inbox, letter, mail, receive, tray",post,Marius Schnabel,,,1,2888 -๐Ÿ“ฆ๏ธ,1F4E6,objects,mail,package,"box, parcel","shipping, post",Marius Schnabel,,,1,2889 -๐Ÿ“ซ๏ธ,1F4EB,objects,mail,closed mailbox with raised flag,"closed, mail, mailbox, postbox",post,Marius Schnabel,,,1,2890 -๐Ÿ“ช๏ธ,1F4EA,objects,mail,closed mailbox with lowered flag,"closed, lowered, mail, mailbox, postbox",post,Marius Schnabel,,,1,2891 -๐Ÿ“ฎ,1F4EE,objects,mail,postbox,"mail, mailbox",post,Marius Schnabel,,,1,2894 -โœ๏ธ,270F,objects,writing,pencil,pencil,,Rana Cakir,,,1,2898 -๐Ÿ–‹๏ธ,1F58B,objects,writing,fountain pen,"fountain, pen",,Rana Cakir,,,1,2902 -๐Ÿ–Š๏ธ,1F58A,objects,writing,pen,ballpoint,,Rana Cakir,,,1,2904 -๐Ÿ–Œ๏ธ,1F58C,objects,writing,paintbrush,painting,"colors, pain, brush",Rana Cakir,,,1,2906 -๐Ÿ–๏ธ,1F58D,objects,writing,crayon,crayon,"painting, colors",Rana Cakir,,,1,2908 -๐Ÿ“,1F4DD,objects,writing,memo,pencil,"pencil, paper, notice",Rana Cakir,,,1,2909 -๐Ÿ’ผ,1F4BC,objects,office,briefcase,briefcase,"bag, briefcase, office bag, leather bag",Sina Schulz,,,1,2910 -๐Ÿ“,1F4C1,objects,office,file folder,"file, folder","file, folder, paper, organise, structure, office, box",Sina Schulz,,,1,2911 -๐Ÿ“‚,1F4C2,objects,office,open file folder,"file, folder, open","open file, folder, organise, structure, office, box",Sina Schulz,,,1,2912 -๐Ÿ“…,1F4C5,objects,office,calendar,date,"calendar, day view, pages, analoge",Sina Schulz,,,1,2915 -๐Ÿ“†,1F4C6,objects,office,tear-off calendar,calendar,"calendar, tear off",Sina Schulz,,,1,2916 -๐Ÿ—’๏ธ,1F5D2,objects,office,spiral notepad,"note, pad, spiral","notes, handwrite, paper, pen, spiral block, college",Sina Schulz,,,1,2918 -๐Ÿ—“๏ธ,1F5D3,objects,office,spiral calendar,"calendar, pad, spiral","calender, year, month view",Sina Schulz,,,1,2920 -๐Ÿ“ˆ,1F4C8,objects,office,chart increasing,"chart, graph, growth, trend, upward","graph going up, upward trend",Sina Schulz,,,1,2922 -๐Ÿ“‰,1F4C9,objects,office,chart decreasing,"chart, down, graph, trend","graph going down, downtrend",Sina Schulz,,,1,2923 -๐Ÿ“Š,1F4CA,objects,office,bar chart,"bar, chart, graph","data, chart, sheet, graph",Sina Schulz,,,1,2924 -๐Ÿ“‹๏ธ,1F4CB,objects,office,clipboard,clipboard,"board, clip, metal, wood, handwriting",Sina Schulz,,,1,2925 -๐Ÿ“Œ,1F4CC,objects,office,pushpin,pin,"pin, wall, push, paper",Sina Schulz,,,1,2926 -๐Ÿ“,1F4CD,objects,office,round pushpin,"pin, pushpin","pin, wall, push, paper, notes",Sina Schulz,,,1,2927 -๐Ÿ“Ž,1F4CE,objects,office,paperclip,paperclip,"office, paperclip, organisation",Sina Schulz,,,1,2928 -๐Ÿ“,1F4CF,objects,office,straight ruler,"ruler, straight edge","ruler, straight, line, measure, detail",Sina Schulz,,,1,2931 -๐Ÿ“,1F4D0,objects,office,triangular ruler,"ruler, set, triangle","triangle, ruler, line, measure, detail",Sina Schulz,,,1,2932 -โœ‚๏ธ,2702,objects,office,scissors,"cutting, tool","scissors, cut, cutting, tool, work, paper, material",Sina Schulz,,,1,2934 -๐Ÿ—ƒ๏ธ,1F5C3,objects,office,card file box,"box, card, file","card, file, system, organising, structure, tidy",Sina Schulz,,,1,2936 -๐Ÿ—„๏ธ,1F5C4,objects,office,file cabinet,"cabinet, file, filing","box, file system, cabinet, file organising",Sina Schulz,,,1,2938 -๐Ÿ—‘๏ธ,1F5D1,objects,office,wastebasket,wastebasket,"paper, bin, trash",Sina Schulz,,,1,2940 -๐Ÿ”’๏ธ,1F512,objects,lock,locked,closed,"locker, padlock",Lisa Schulz,,,1,2941 -๐Ÿ”“๏ธ,1F513,objects,lock,unlocked,"lock, open, unlock","locker, padlock",Lisa Schulz,,,1,2942 -๐Ÿ”,1F510,objects,lock,locked with key,"closed, key, lock, secure",,Lisa Schulz,,,1,2944 -๐Ÿ”‘,1F511,objects,lock,key,"lock, password",closing,Lisa Schulz,,,1,2945 -๐Ÿ—๏ธ,1F5DD,objects,lock,old key,"clue, key, lock, old",,Lisa Schulz,,,1,2947 -๐Ÿ”จ,1F528,objects,tool,hammer,tool,"toolbox, metal, wood",Hilda Kalyoncu,,,1,2948 -โ›๏ธ,26CF,objects,tool,pick,"mining, tool",weapon,Hilda Kalyoncu,,,1,2950 -๐Ÿ› ๏ธ,1F6E0,objects,tool,hammer and wrench,"hammer, spanner, tool, wrench","craftmans, logo",Hilda Kalyoncu,,,1,2954 -๐Ÿ—ก๏ธ,1F5E1,objects,tool,dagger,"knife, weapon",metal,Hilda Kalyoncu,,,1,2956 -๐Ÿ”ซ,1F52B,objects,tool,pistol,"gun, handgun, revolver, tool, weapon","gun, weapon, pistol",Hilda Kalyoncu,,,1,2959 -๐Ÿ›ก๏ธ,1F6E1,objects,tool,shield,weapon,"protection, fight, middle ages",Hilda Kalyoncu,,,1,2962 -๐Ÿ”ง,1F527,objects,tool,wrench,"spanner, tool","toolbox, silver",Hilda Kalyoncu,,,1,2963 -โš™๏ธ,2699,objects,tool,gear,"cog, cogwheel, tool","tool, metal, silver",Hilda Kalyoncu,,,1,2966 -๐Ÿ—œ๏ธ,1F5DC,objects,tool,clamp,"compress, tool, vice",toolbox,Hilda Kalyoncu,,,1,2968 -โš–๏ธ,2696,objects,tool,balance scale,"balance, justice, libra, scale, zodiac",silver,Hilda Kalyoncu,,,1,2970 -๐Ÿ”—,1F517,objects,tool,link,link,"silver, link",Hilda Kalyoncu,,,1,2971 -โ›“๏ธ,26D3,objects,tool,chains,chain,"metal, silver",Hilda Kalyoncu,,,1,2973 -๐Ÿ”ญ,1F52D,objects,science,telescope,"science, tool","stars, sky, space",Sina Schulz,,,1,2982 -๐Ÿ“ก,1F4E1,objects,science,satellite antenna,"antenna, dish, satellite","signal, receive, radiation",Sina Schulz,,,1,2983 -๐Ÿ’‰,1F489,objects,medical,syringe,"medicine, needle, shot, sick",health,Marius Schnabel,,,1,2984 -๐Ÿ’Š,1F48A,objects,medical,pill,"doctor, medicine, sick",health,Marius Schnabel,,,1,2985 -๐Ÿšช,1F6AA,objects,household,door,door,,Lisa Schulz,,,1,2986 -๐Ÿ›๏ธ,1F6CF,objects,household,bed,"hotel, sleep",furniture,Lisa Schulz,,,1,2988 -๐Ÿ›‹๏ธ,1F6CB,objects,household,couch and lamp,"couch, hotel, lamp",furniture,Lisa Schulz,,,1,2990 -๐Ÿšฝ,1F6BD,objects,household,toilet,toilet,,Lisa Schulz,,,1,2991 -๐Ÿšฟ,1F6BF,objects,household,shower,water,wash,Lisa Schulz,,,1,2992 -๐Ÿ›,1F6C1,objects,household,bathtub,bath,"wash, water, foam",Lisa Schulz,,,1,2993 -๐Ÿ›’,1F6D2,objects,household,shopping cart,"cart, shopping, trolley",,Marius Schnabel,,,3,3002 -๐Ÿšฌ,1F6AC,objects,other-object,cigarette,smoking,"tobacco, smoke",Marius Schnabel,,,1,3003 -โšฐ๏ธ,26B0,objects,other-object,coffin,death,"funeral, dead",Marius Schnabel,,,1,3005 -๐Ÿ—ฟ,1F5FF,objects,other-object,moai,"face, moyai, statue","stone, easter island",Marius Schnabel,,,1,3008 -๐Ÿšฎ,1F6AE,symbols,transport-sign,litter in bin sign,"litter, litter bin","trsh, litter, bin, garbage, can, throw, away",Ronja Bรคurlen,,,1,3010 -๐Ÿšฐ,1F6B0,symbols,transport-sign,potable water,"drinking, potable, water","water, faucet, tap, glas",Ronja Bรคurlen,,,1,3011 -โ™ฟ๏ธ,267F,symbols,transport-sign,wheelchair symbol,access,"disabled, toilet, restroom",Ronja Bรคurlen,,,1,3012 -๐Ÿšน๏ธ,1F6B9,symbols,transport-sign,menโ€™s room,"lavatory, man, restroom, wc","man, restroom, guy, dude, male, toilet",Ronja Bรคurlen,,,1,3013 -๐Ÿšบ๏ธ,1F6BA,symbols,transport-sign,womenโ€™s room,"lavatory, restroom, wc, woman","woman, female, restroom, chick, women, toilet",Ronja Bรคurlen,,,1,3014 -๐Ÿšป,1F6BB,symbols,transport-sign,restroom,"lavatory, wc","unisex, restroom, male, toilet, woman, female",Ronja Bรคurlen,,,1,3015 -๐Ÿšผ๏ธ,1F6BC,symbols,transport-sign,baby symbol,"baby, changing","baby, changing, station, restroom, toilet",Ronja Bรคurlen,,,1,3016 -๐Ÿšพ,1F6BE,symbols,transport-sign,water closet,"closet, lavatory, restroom, water, wc","restroom, WC, toilett, water, closet",Ronja Bรคurlen,,,1,3017 -โš ๏ธ,26A0,symbols,warning,warning,warning,,Miriam Vollmeier,,,1,3023 -โ›”๏ธ,26D4,symbols,warning,no entry,"entry, forbidden, no, not, prohibited, traffic",,Miriam Vollmeier,,,1,3025 -๐Ÿšซ,1F6AB,symbols,warning,prohibited,"entry, forbidden, no, not",,Miriam Vollmeier,,,1,3026 -๐Ÿšณ,1F6B3,symbols,warning,no bicycles,"bicycle, bike, forbidden, no, prohibited",,Miriam Vollmeier,,,1,3027 -๐Ÿšญ๏ธ,1F6AD,symbols,warning,no smoking,"forbidden, no, not, prohibited, smoking",,Miriam Vollmeier,,,1,3028 -๐Ÿ“ต,1F4F5,symbols,warning,no mobile phones,"cell, forbidden, mobile, no, phone",,Miriam Vollmeier,,,1,3032 -๐Ÿ”ž,1F51E,symbols,warning,no one under eighteen,"18, age restriction, eighteen, prohibited, underage",,Miriam Vollmeier,,,1,3033 -โฌ†๏ธ,2B06,symbols,arrow,up arrow,"arrow, cardinal, direction, north",above,Jose Avila,,,1,3039 -โ†—๏ธ,2197,symbols,arrow,up-right arrow,"arrow, direction, intercardinal, northeast",diagonal,Jose Avila,,,1,3041 -โžก๏ธ,27A1,symbols,arrow,right arrow,"arrow, cardinal, direction, east","soon, future",Jose Avila,,,1,3043 -โ†˜๏ธ,2198,symbols,arrow,down-right arrow,"arrow, direction, intercardinal, southeast",diagonal,Jose Avila,,,1,3045 -โฌ‡๏ธ,2B07,symbols,arrow,down arrow,"arrow, cardinal, direction, down, south",underneath,Jose Avila,,,1,3047 -โ†™๏ธ,2199,symbols,arrow,down-left arrow,"arrow, direction, intercardinal, southwest",diagonal,Jose Avila,,,1,3049 -โฌ…๏ธ,2B05,symbols,arrow,left arrow,"arrow, cardinal, direction, west",past,Jose Avila,,,1,3051 -โ†–๏ธ,2196,symbols,arrow,up-left arrow,"arrow, direction, intercardinal, northwest",diagonal,Jose Avila,,,1,3053 -โ†•๏ธ,2195,symbols,arrow,up-down arrow,arrow,"directions, opposite",Jose Avila,,,1,3055 -โ†”๏ธ,2194,symbols,arrow,left-right arrow,arrow,"directions, opposite",Jose Avila,,,1,3057 -โ†ฉ๏ธ,21A9,symbols,arrow,right arrow curving left,arrow,"directions, turn arround",Jose Avila,,,1,3059 -โ†ช๏ธ,21AA,symbols,arrow,left arrow curving right,arrow,"directions, turn arround",Jose Avila,,,1,3061 -โคด๏ธ,2934,symbols,arrow,right arrow curving up,arrow,"direction, curve",Jose Avila,,,1,3063 -โคต๏ธ,2935,symbols,arrow,right arrow curving down,"arrow, down","direction, curve",Jose Avila,,,1,3065 -๐Ÿ”„,1F504,symbols,arrow,counterclockwise arrows button,"anticlockwise, arrow, counterclockwise, withershins",cycle,Jose Avila,,,1,3067 -๐Ÿ›,1F6D0,symbols,religion,place of worship,"religion, worship",pray,Jose Avila,,,1,3073 -โš›๏ธ,269B,symbols,religion,atom symbol,"atheist, atom",,Jose Avila,,,1,3075 -โ˜ฏ๏ธ,262F,symbols,religion,yin yang,"religion, tao, taoist, yang, yin",balance,Jose Avila,,,1,3083 -โœ๏ธ,271D,symbols,religion,latin cross,"christian, cross, religion",,Jose Avila,,,1,3085 -โ˜ช๏ธ,262A,symbols,religion,star and crescent,"islam, muslim, religion",,Jose Avila,,,1,3089 -โ˜ฎ๏ธ,262E,symbols,religion,peace symbol,peace,,Jose Avila,,,1,3091 -๐Ÿ”€,1F500,symbols,av-symbol,shuffle tracks button,"arrow, crossed",random,Jose Avila,,,1,3107 -๐Ÿ”,1F501,symbols,av-symbol,repeat button,"arrow, clockwise, repeat",cycle,Jose Avila,,,1,3108 -๐Ÿ”‚,1F502,symbols,av-symbol,repeat single button,"arrow, clockwise, once",,Jose Avila,,,1,3109 -โ–ถ๏ธ,25B6,symbols,av-symbol,play button,"arrow, play, right, triangle",,Jose Avila,,,1,3111 -โฉ๏ธ,23E9,symbols,av-symbol,fast-forward button,"arrow, double, fast, forward",,Jose Avila,,,1,3112 -โญ๏ธ,23ED,symbols,av-symbol,next track button,"arrow, next scene, next track, triangle",,Jose Avila,,,1,3114 -โฏ๏ธ,23EF,symbols,av-symbol,play or pause button,"arrow, pause, play, right, triangle",,Jose Avila,,,1,3116 -โ—€๏ธ,25C0,symbols,av-symbol,reverse button,"arrow, left, reverse, triangle",,Jose Avila,,,1,3118 -โช๏ธ,23EA,symbols,av-symbol,fast reverse button,"arrow, double, rewind",,Jose Avila,,,1,3119 -โฎ๏ธ,23EE,symbols,av-symbol,last track button,"arrow, previous scene, previous track, triangle",,Jose Avila,,,1,3121 -๐Ÿ”ผ,1F53C,symbols,av-symbol,upwards button,"arrow, button, red",improve,Jose Avila,,,1,3122 -โซ,23EB,symbols,av-symbol,fast up button,"arrow, double",,Jose Avila,,,1,3123 -๐Ÿ”ฝ,1F53D,symbols,av-symbol,downwards button,"arrow, button, down, red","decline, decrease",Jose Avila,,,1,3124 -โฌ,23EC,symbols,av-symbol,fast down button,"arrow, double, down",,Jose Avila,,,1,3125 -โธ๏ธ,23F8,symbols,av-symbol,pause button,"bar, double, pause, vertical",,Jose Avila,,,1,3127 -โน๏ธ,23F9,symbols,av-symbol,stop button,"square, stop",,Jose Avila,,,1,3129 -โบ๏ธ,23FA,symbols,av-symbol,record button,"circle, record",,Jose Avila,,,1,3131 -โ๏ธ,23CF,symbols,av-symbol,eject button,eject,,Jose Avila,,,1,3133 -๐ŸŽฆ,1F3A6,symbols,av-symbol,cinema,"camera, film, movie",,Jose Avila,,,1,3134 -๐Ÿ”…,1F505,symbols,av-symbol,dim button,"brightness, dim, low",,Jose Avila,,,1,3135 -๐Ÿ”†,1F506,symbols,av-symbol,bright button,"bright, brightness",,Jose Avila,,,1,3136 -๐Ÿ“ถ,1F4F6,symbols,av-symbol,antenna bars,"antenna, bar, cell, mobile, phone",,Jose Avila,,,1,3137 -๐Ÿ“ณ,1F4F3,symbols,av-symbol,vibration mode,"cell, mobile, mode, phone, telephone, vibration",silent mode,Jose Avila,,,1,3138 -๐Ÿ“ด,1F4F4,symbols,av-symbol,mobile phone off,"cell, mobile, off, phone, telephone",caos,Jose Avila,,,1,3139 -โ™€๏ธ,2640,symbols,other-symbol,female sign,woman,"woman, sign, gender",Hilda Kalyoncu,,,4,3141 -โ™‚๏ธ,2642,symbols,other-symbol,male sign,man,"man, sign, gender",Hilda Kalyoncu,,,4,3143 -โš•๏ธ,2695,symbols,other-symbol,medical symbol,"aesculapius, medicine, staff","medical, staff",Hilda Kalyoncu,,,4,3145 -โ™ป๏ธ,267B,symbols,other-symbol,recycling symbol,recycle,"recycle, nature",Hilda Kalyoncu,,,1,3149 -๐Ÿ”ฑ,1F531,symbols,other-symbol,trident emblem,"anchor, emblem, ship, tool, trident","trident, emblem",Hilda Kalyoncu,,,1,3152 -โญ•๏ธ,2B55,symbols,other-symbol,heavy large circle,"circle, o","circle, red",Hilda Kalyoncu,,,1,3155 -โœ…,2705,symbols,other-symbol,white heavy check mark,"check, mark","check, mark, white, right",Hilda Kalyoncu,,,1,3156 -โ˜‘๏ธ,2611,symbols,other-symbol,ballot box with check,"ballot, box, check","check, right, box",Hilda Kalyoncu,,,1,3158 -โœ”๏ธ,2714,symbols,other-symbol,heavy check mark,"check, mark","check, mark, right, todo",Hilda Kalyoncu,,,1,3160 -โœ–๏ธ,2716,symbols,other-symbol,heavy multiplication x,"cancel, multiplication, multiply, x","multiplication, x, cancel, wrong",Hilda Kalyoncu,,,1,3162 -โŒ,274C,symbols,other-symbol,cross mark,"cancel, mark, multiplication, multiply, x","cancel, wrong, multiply, x,",Hilda Kalyoncu,,,1,3163 -โŽ,274E,symbols,other-symbol,cross mark button,"mark, square","mark, square, button",Hilda Kalyoncu,,,1,3164 -โž•,2795,symbols,other-symbol,heavy plus sign,"math, plus","math, plus, sign",Hilda Kalyoncu,,,1,3165 -โž–,2796,symbols,other-symbol,heavy minus sign,"math, minus","math, minus, sign",Hilda Kalyoncu,,,1,3166 -โž—,2797,symbols,other-symbol,heavy division sign,"division, math","math, division, sign",Hilda Kalyoncu,,,1,3167 -โ“๏ธ,2753,symbols,other-symbol,question mark,"mark, punctuation, question","question, punctation",Hilda Kalyoncu,,,1,3182 -โ”,2754,symbols,other-symbol,white question mark,"mark, outlined, punctuation, question","punctation, mark, question, white",Hilda Kalyoncu,,,1,3183 -โ•,2755,symbols,other-symbol,white exclamation mark,"exclamation, mark, outlined, punctuation","exlamation, mark, punctation, white",Hilda Kalyoncu,,,1,3184 -โ—๏ธ,2757,symbols,other-symbol,exclamation mark,"exclamation, mark, punctuation","exlamation, mark, punctation",Hilda Kalyoncu,,,1,3185 -ใ€ฐ๏ธ,3030,symbols,other-symbol,wavy dash,"dash, punctuation, wavy","dash, punctuation, wavy",Hilda Kalyoncu,,,1,3187 -ยฉ๏ธ,00A9,symbols,other-symbol,copyright,copyright,"copyright, c, sign",Hilda Kalyoncu,,,1,3189 -ยฎ๏ธ,00AE,symbols,other-symbol,registered,registered,"registered, r, sign",Hilda Kalyoncu,,,1,3191 -๐Ÿ’ฏ,1F4AF,symbols,alphanum,hundred points,"100, full, hundred, score","perfect, excellent",Jose Avila,,,1,3219 -๐Ÿ” ,1F520,symbols,alphanum,input latin uppercase,"abcd, input, latin, letters, uppercase","letters, alphabet",Jose Avila,,,1,3220 -๐Ÿ”ก,1F521,symbols,alphanum,input latin lowercase,"abcd, input, latin, letters, lowercase","letters, alphabet",Jose Avila,,,1,3221 -๐Ÿ”ข,1F522,symbols,alphanum,input numbers,"1234, input, numbers",numbers,Jose Avila,,,1,3222 -๐Ÿ”ฃ,1F523,symbols,alphanum,input symbols,"input, ใ€’โ™ช&%","ampersand, music, note, percentage",Jose Avila,,,1,3223 -๐Ÿ”ค,1F524,symbols,alphanum,input latin letters,"abc, alphabet, input, latin, letters","letters, alphabet",Jose Avila,,,1,3224 -๐Ÿ†’,1F192,symbols,alphanum,COOL button,"cool, cool button","popular, nice",Jose Avila,,,1,3231 -โ„น๏ธ,2139,symbols,alphanum,information,i,"advice, info",Jose Avila,,,1,3234 -๐Ÿ†”,1F194,symbols,alphanum,ID button,"id, id button, identity",id card,Jose Avila,,,1,3235 -๐Ÿ†•,1F195,symbols,alphanum,NEW button,"new, new button","modern, recent",Jose Avila,,,1,3238 -๐Ÿ†—,1F197,symbols,alphanum,OK button,"ok, ok button",okay,Jose Avila,,,1,3242 -๐Ÿ…ฟ๏ธ,1F17F,symbols,alphanum,P button,"p button, parking","place, drive",Jose Avila,,,1,3244 -๐Ÿ†˜,1F198,symbols,alphanum,SOS button,"help, sos, sos button","emergency, warning",Jose Avila,,,1,3245 -๐Ÿ†š,1F19A,symbols,alphanum,VS button,"versus, vs, vs button",against,Jose Avila,,,1,3247 -๐Ÿˆ‚๏ธ,1F202,symbols,alphanum,Japanese โ€œservice chargeโ€ button,"japanese, japanese โ€œservice chargeโ€ button, katakana, โ€œservice chargeโ€, ใ‚ต",japanese,Jose Avila,,,1,3250 -ใŠ—๏ธ,3297,symbols,alphanum,Japanese โ€œcongratulationsโ€ button,"ideograph, japanese, japanese โ€œcongratulationsโ€ button, โ€œcongratulationsโ€, ็ฅ","japanese, compliments",Jose Avila,,,1,3264 -ใŠ™๏ธ,3299,symbols,alphanum,Japanese โ€œsecretโ€ button,"ideograph, japanese, japanese โ€œsecretโ€ button, โ€œsecretโ€, ็ง˜","japanese, mysterious",Jose Avila,,,1,3266 -๐Ÿ”บ,1F53A,symbols,geometric,red triangle pointed up,"geometric, red",arrow,Lisa Schulz,,,1,3285 -๐Ÿ”ป,1F53B,symbols,geometric,red triangle pointed down,"down, geometric, red",arrow,Lisa Schulz,,,1,3286 -๐Ÿ”˜,1F518,symbols,geometric,radio button,"button, geometric, radio",,Lisa Schulz,,,1,3288 -๐Ÿ,1F3C1,flags,flag,chequered flag,"checkered, chequered, racing","black, white, grid, racing",Lisa Schulz,,,1,3295 -๐Ÿด,1F3F4,flags,flag,black flag,waving,,Lisa Schulz,,,1,3298 -๐Ÿณ๏ธ,1F3F3,flags,flag,white flag,waving,white,Lisa Schulz,,,1,3300 -๐Ÿณ๏ธโ€๐ŸŒˆ,1F3F3-FE0F-200D-1F308,flags,flag,rainbow flag,rainbow,color,Lisa Schulz,,,4,3301 +emoji,hexcode,group,subgroups,annotation,tags,hfg_tags,hfg_author,skintone,skintone_base_emoji,skintone_base_hexcode,unicode,order +๐Ÿ˜€,1F600,smileys-people,face-positive,grinning face,"face, grin","smile, happy",Emily Jรคger,,,,1,1 +๐Ÿ˜,1F601,smileys-people,face-positive,beaming face with smiling eyes,"eye, face, grin, smile","happy, teeth, mouth",Emily Jรคger,,,,1,2 +๐Ÿ˜‚,1F602,smileys-people,face-positive,face with tears of joy,"face, joy, laugh, tear",,Emily Jรคger,,,,1,3 +๐Ÿคฃ,1F923,smileys-people,face-positive,rolling on the floor laughing,"face, floor, laugh, rolling",tears,Emily Jรคger,,,,3,4 +๐Ÿ˜ƒ,1F603,smileys-people,face-positive,grinning face with big eyes,"face, mouth, open, smile","eyes, teeth",Emily Jรคger,,,,1,5 +๐Ÿ˜„,1F604,smileys-people,face-positive,grinning face with smiling eyes,"eye, face, mouth, open, smile","happy, teeth",Emily Jรคger,,,,1,6 +๐Ÿ˜…,1F605,smileys-people,face-positive,grinning face with sweat,"cold, face, open, smile, sweat",laugh,Emily Jรคger,,,,1,7 +๐Ÿ˜†,1F606,smileys-people,face-positive,grinning squinting face,"face, laugh, mouth, satisfied, smile",,Emily Jรคger,,,,1,8 +๐Ÿ˜‰,1F609,smileys-people,face-positive,winking face,"face, wink",eye,Emily Jรคger,,,,1,9 +๐Ÿ˜Š,1F60A,smileys-people,face-positive,smiling face with smiling eyes,"blush, eye, face, smile",satisfied,Emily Jรคger,,,,1,10 +๐Ÿ˜‹,1F60B,smileys-people,face-positive,face savoring food,"delicious, face, savouring, smile, yum","yummi, tongue",Emily Jรคger,,,,1,11 +๐Ÿ˜Ž,1F60E,smileys-people,face-positive,smiling face with sunglasses,"bright, cool, face, sun, sunglasses",,Emily Jรคger,,,,1,12 +๐Ÿ˜,1F60D,smileys-people,face-positive,smiling face with heart-eyes,"eye, face, love, smile","hearts, happy",Emily Jรคger,,,,1,13 +๐Ÿ˜˜,1F618,smileys-people,face-positive,face blowing a kiss,"face, kiss","love, happy",Emily Jรคger,,,,1,14 +๐Ÿ˜—,1F617,smileys-people,face-positive,kissing face,"face, kiss",,Emily Jรคger,,,,1,16 +๐Ÿ˜™,1F619,smileys-people,face-positive,kissing face with smiling eyes,"eye, face, kiss, smile",,Emily Jรคger,,,,1,17 +๐Ÿ˜š,1F61A,smileys-people,face-positive,kissing face with closed eyes,"closed, eye, face, kiss","love, happy",Emily Jรคger,,,,1,18 +โ˜บ๏ธ,263A,smileys-people,face-positive,smiling face,"face, outlined, relaxed, smile",satisfied,Emily Jรคger,,,,1,20 +๐Ÿ™‚,1F642,smileys-people,face-positive,slightly smiling face,"face, smile",satisfied,Emily Jรคger,,,,1,21 +๐Ÿค—,1F917,smileys-people,face-positive,hugging face,"face, hug, hugging",hands,Emily Jรคger,,,,1,22 +๐Ÿคฉ,1F929,smileys-people,face-positive,star-struck,"eyes, face, grinning, star",suprised,Emily Jรคger,,,,5,23 +๐Ÿค”,1F914,smileys-people,face-neutral,thinking face,"face, thinking","hand, overthinking",Emily Jรคger,,,,1,24 +๐Ÿคจ,1F928,smileys-people,face-neutral,face with raised eyebrow,"distrust, skeptic",suspiciously,Emily Jรคger,,,,5,25 +๐Ÿ˜๏ธ,1F610,smileys-people,face-neutral,neutral face,"deadpan, face, neutral",,Mariella Steeb,,,,1,26 +๐Ÿ˜‘,1F611,smileys-people,face-neutral,expressionless face,"expressionless, face, inexpressive, unexpressive",,Mariella Steeb,,,,1,27 +๐Ÿ˜ถ,1F636,smileys-people,face-neutral,face without mouth,"face, mouth, quiet, silent",shhh,Emily Jรคger,,,,1,28 +๐Ÿ™„,1F644,smileys-people,face-neutral,face with rolling eyes,"eyes, face, rolling",annoyed,Emily Jรคger,,,,1,29 +๐Ÿ˜,1F60F,smileys-people,face-neutral,smirking face,"face, smirk",,Mariella Steeb,,,,1,30 +๐Ÿ˜ฃ,1F623,smileys-people,face-neutral,persevering face,"face, persevere",,Mariella Steeb,,,,1,31 +๐Ÿ˜ฅ,1F625,smileys-people,face-neutral,sad but relieved face,"disappointed, face, relieved, whew",,Mariella Steeb,,,,1,32 +๐Ÿ˜ฎ,1F62E,smileys-people,face-neutral,face with open mouth,"face, mouth, open, sympathy",,Mariella Steeb,,,,1,33 +๐Ÿค,1F910,smileys-people,face-neutral,zipper-mouth face,"face, mouth, zipper",,Emily Jรคger,,,,1,34 +๐Ÿ˜ฏ,1F62F,smileys-people,face-neutral,hushed face,"face, hushed, stunned, surprised",,Mariella Steeb,,,,1,35 +๐Ÿ˜ช,1F62A,smileys-people,face-neutral,sleepy face,"face, sleep","snot bubble, side-tear",Mariella Steeb,,,,1,36 +๐Ÿ˜ซ,1F62B,smileys-people,face-neutral,tired face,"face, tired",exhausted,Mariella Steeb,,,,1,37 +๐Ÿ˜ด,1F634,smileys-people,face-neutral,sleeping face,"face, sleep, zzz",tired,Emily Jรคger,,,,1,38 +๐Ÿ˜Œ,1F60C,smileys-people,face-neutral,relieved face,"face, relieved",,Mariella Steeb,,,,1,39 +๐Ÿ˜›,1F61B,smileys-people,face-neutral,face with tongue,"face, tongue",,Mariella Steeb,,,,1,40 +๐Ÿ˜œ,1F61C,smileys-people,face-neutral,winking face with tongue,"eye, face, joke, tongue, wink",,Mariella Steeb,,,,1,41 +๐Ÿ˜,1F61D,smileys-people,face-neutral,squinting face with tongue,"eye, face, horrible, taste, tongue",,Mariella Steeb,,,,1,42 +๐Ÿคค,1F924,smileys-people,face-neutral,drooling face,"drooling, face","hungry, yummi",Emily Jรคger,,,,3,43 +๐Ÿ˜’,1F612,smileys-people,face-neutral,unamused face,"face, unamused, unhappy",,Mariella Steeb,,,,1,44 +๐Ÿ˜“,1F613,smileys-people,face-neutral,downcast face with sweat,"cold, face, sweat",,Mariella Steeb,,,,1,45 +๐Ÿ˜”,1F614,smileys-people,face-neutral,pensive face,"dejected, face, pensive",,Mariella Steeb,,,,1,46 +๐Ÿ˜•,1F615,smileys-people,face-neutral,confused face,"confused, face",,Mariella Steeb,,,,1,47 +๐Ÿ™ƒ,1F643,smileys-people,face-neutral,upside-down face,"face, upside-down",turn,Emily Jรคger,,,,1,48 +๐Ÿค‘,1F911,smileys-people,face-neutral,money-mouth face,"face, money, mouth","tongue, dollar",Emily Jรคger,,,,1,49 +๐Ÿ˜ฒ,1F632,smileys-people,face-neutral,astonished face,"astonished, face, shocked, totally",,Emily Jรคger,,,,1,50 +โ˜น๏ธ,2639,smileys-people,face-negative,frowning face,"face, frown",negative,Mariella Steeb,,,,1,52 +๐Ÿ™,1F641,smileys-people,face-negative,slightly frowning face,"face, frown",,Mariella Steeb,,,,1,53 +๐Ÿ˜–,1F616,smileys-people,face-negative,confounded face,"confounded, face",,Mariella Steeb,,,,1,54 +๐Ÿ˜ž,1F61E,smileys-people,face-negative,disappointed face,"disappointed, face",,Mariella Steeb,,,,1,55 +๐Ÿ˜Ÿ,1F61F,smileys-people,face-negative,worried face,"face, worried",,Mariella Steeb,,,,1,56 +๐Ÿ˜ค,1F624,smileys-people,face-negative,face with steam from nose,"face, triumph, won",,Mariella Steeb,,,,1,57 +๐Ÿ˜ข,1F622,smileys-people,face-negative,crying face,"cry, face, sad, tear",,Mariella Steeb,,,,1,58 +๐Ÿ˜ญ,1F62D,smileys-people,face-negative,loudly crying face,"cry, face, sad, sob, tear",,Mariella Steeb,,,,1,59 +๐Ÿ˜ฆ,1F626,smileys-people,face-negative,frowning face with open mouth,"face, frown, mouth, open",,Mariella Steeb,,,,1,60 +๐Ÿ˜ง,1F627,smileys-people,face-negative,anguished face,"anguished, face",,Mariella Steeb,,,,1,61 +๐Ÿ˜จ,1F628,smileys-people,face-negative,fearful face,"face, fear, fearful, scared",,Mariella Steeb,,,,1,62 +๐Ÿ˜ฉ,1F629,smileys-people,face-negative,weary face,"face, tired, weary",distraught,Mariella Steeb,,,,1,63 +๐Ÿคฏ,1F92F,smileys-people,face-negative,exploding head,shocked,explosion,Mariella Steeb,,,,5,64 +๐Ÿ˜ฌ,1F62C,smileys-people,face-negative,grimacing face,"face, grimace",awkward,Mariella Steeb,,,,1,65 +๐Ÿ˜ฐ,1F630,smileys-people,face-negative,anxious face with sweat,"blue, cold, face, rushed, sweat","anxious, worried, considerate",Mariella Steeb,,,,1,66 +๐Ÿ˜ฑ,1F631,smileys-people,face-negative,face screaming in fear,"face, fear, munch, scared, scream",open mouth,Mariella Steeb,,,,1,67 +๐Ÿ˜ณ,1F633,smileys-people,face-negative,flushed face,"dazed, face, flushed",red jaws,Mariella Steeb,,,,1,70 +๐Ÿคช,1F92A,smileys-people,face-negative,zany face,"eye, goofy, large, small",,Mariella Steeb,,,,5,71 +๐Ÿ˜ต,1F635,smileys-people,face-negative,dizzy face,"dizzy, face",dead eyes,Mariella Steeb,,,,1,72 +๐Ÿ˜ก,1F621,smileys-people,face-negative,pouting face,"angry, face, mad, pouting, rage, red",,Mariella Steeb,,,,1,73 +๐Ÿ˜ ,1F620,smileys-people,face-negative,angry face,"angry, face, mad",,Mariella Steeb,,,,1,74 +๐Ÿคฌ,1F92C,smileys-people,face-negative,face with symbols on mouth,swearing,angry,Mariella Steeb,,,,5,75 +๐Ÿ˜ท,1F637,smileys-people,face-sick,face with medical mask,"cold, doctor, face, mask, sick",ill,Emily Jรคger,,,,1,76 +๐Ÿค’,1F912,smileys-people,face-sick,face with thermometer,"face, ill, sick, thermometer",fever,Emily Jรคger,,,,1,77 +๐Ÿค•,1F915,smileys-people,face-sick,face with head-bandage,"bandage, face, hurt, injury",head,Emily Jรคger,,,,1,78 +๐Ÿคข,1F922,smileys-people,face-sick,nauseated face,"face, nauseated, vomit",green,Emily Jรคger,,,,3,79 +๐Ÿคฎ,1F92E,smileys-people,face-sick,face vomiting,"sick, vomit",,Emily Jรคger,,,,5,80 +๐Ÿคง,1F927,smileys-people,face-sick,sneezing face,"face, gesundheit, sneeze",tissue,Emily Jรคger,,,,3,81 +๐Ÿ˜‡,1F607,smileys-people,face-role,smiling face with halo,"angel, face, fantasy, halo, innocent",,Emily Jรคger,,,,1,82 +๐Ÿค ,1F920,smileys-people,face-role,cowboy hat face,"cowboy, cowgirl, face, hat",howdy,Emily Jรคger,,,,3,83 +๐Ÿคฅ,1F925,smileys-people,face-role,lying face,"face, lie, pinocchio","nose, long",Emily Jรคger,,,,3,87 +๐Ÿคซ,1F92B,smileys-people,face-role,shushing face,"quiet, shush","hand, silent",Emily Jรคger,,,,5,88 +๐Ÿคญ,1F92D,smileys-people,face-role,face with hand over mouth,whoops,"hand, mouth",Emily Jรคger,,,,5,89 +๐Ÿง,1F9D0,smileys-people,face-role,face with monocle,stuffy,"glasses, intelligent",Emily Jรคger,,,,5,90 +๐Ÿค“,1F913,smileys-people,face-role,nerd face,"face, geek, nerd","glasses, learning",Emily Jรคger,,,,1,91 +๐Ÿ˜ˆ,1F608,smileys-people,face-fantasy,smiling face with horns,"face, fairy tale, fantasy, horns, smile","malicious, sardonic",Mariella Steeb,,,,1,92 +๐Ÿ‘ฟ,1F47F,smileys-people,face-fantasy,angry face with horns,"demon, devil, face, fantasy, imp",mean,Mariella Steeb,,,,1,93 +๐Ÿคก,1F921,smileys-people,face-fantasy,clown face,"clown, face",,Emily Jรคger,,,,3,94 +๐Ÿ’€,1F480,smileys-people,face-fantasy,skull,"death, face, fairy tale, monster",skull,Mariella Steeb,,,,1,97 +โ˜ ๏ธ,2620,smileys-people,face-fantasy,skull and crossbones,"crossbones, death, face, monster, skull",,Mariella Steeb,,,,1,99 +๐Ÿ‘ป,1F47B,smileys-people,face-fantasy,ghost,"creature, face, fairy tale, fantasy, monster",ghost,Mariella Steeb,,,,1,100 +๐Ÿ‘ฝ๏ธ,1F47D,smileys-people,face-fantasy,alien,"creature, extraterrestrial, face, fantasy, ufo",alien,Mariella Steeb,,,,1,101 +๐Ÿค–,1F916,smileys-people,face-fantasy,robot face,"face, monster, robot",,Mariella Steeb,,,,1,103 +๐Ÿ’ฉ,1F4A9,smileys-people,face-fantasy,pile of poo,"dung, face, monster, poo, poop",,Mariella Steeb,,,,1,104 +๐Ÿ˜บ,1F63A,smileys-people,cat-face,grinning cat face,"cat, face, mouth, open, smile",grinning,Emily Jรคger,,,,1,105 +๐Ÿ˜ธ,1F638,smileys-people,cat-face,grinning cat face with smiling eyes,"cat, eye, face, grin, smile",grinning,Emily Jรคger,,,,1,106 +๐Ÿ˜น,1F639,smileys-people,cat-face,cat face with tears of joy,"cat, face, joy, tear","laughing, smile",Emily Jรคger,,,,1,107 +๐Ÿ˜ป,1F63B,smileys-people,cat-face,smiling cat face with heart-eyes,"cat, eye, face, love, smile","hearts, red",Emily Jรคger,,,,1,108 +๐Ÿ˜ผ,1F63C,smileys-people,cat-face,cat face with wry smile,"cat, face, ironic, smile, wry",,Emily Jรคger,,,,1,109 +๐Ÿ˜ฝ,1F63D,smileys-people,cat-face,kissing cat face,"cat, eye, face, kiss",,Emily Jรคger,,,,1,110 +๐Ÿ™€,1F640,smileys-people,cat-face,weary cat face,"cat, face, oh, surprised, weary",wow,Emily Jรคger,,,,1,111 +๐Ÿ˜ฟ,1F63F,smileys-people,cat-face,crying cat face,"cat, cry, face, sad, tear","unhappy, depressed",Emily Jรคger,,,,1,112 +๐Ÿ˜พ,1F63E,smileys-people,cat-face,pouting cat face,"cat, face, pouting","sad, angry",Emily Jรคger,,,,1,113 +๐Ÿ™ˆ,1F648,smileys-people,monkey-face,see-no-evil monkey,"evil, face, forbidden, monkey, see",,Mariella Steeb,,,,1,114 +๐Ÿ™‰,1F649,smileys-people,monkey-face,hear-no-evil monkey,"evil, face, forbidden, hear, monkey",,Mariella Steeb,,,,1,115 +๐Ÿ™Š,1F64A,smileys-people,monkey-face,speak-no-evil monkey,"evil, face, forbidden, monkey, speak",,Mariella Steeb,,,,1,116 +๐Ÿ‘ถ,1F476,smileys-people,person,baby,young,"human, person",Johanna Wellnitz,,๐Ÿ‘ถ,1F476,1,117 +๐Ÿ‘ถ๐Ÿป,1F476-1F3FB,smileys-people,person,baby: light skin tone,,,Johanna Wellnitz,1,๐Ÿ‘ถ,1F476,2,118 +๐Ÿ‘ถ๐Ÿผ,1F476-1F3FC,smileys-people,person,baby: medium-light skin tone,,,Johanna Wellnitz,2,๐Ÿ‘ถ,1F476,2,119 +๐Ÿ‘ถ๐Ÿฝ,1F476-1F3FD,smileys-people,person,baby: medium skin tone,,,Johanna Wellnitz,3,๐Ÿ‘ถ,1F476,2,120 +๐Ÿ‘ถ๐Ÿพ,1F476-1F3FE,smileys-people,person,baby: medium-dark skin tone,,,Johanna Wellnitz,4,๐Ÿ‘ถ,1F476,2,121 +๐Ÿ‘ถ๐Ÿฟ,1F476-1F3FF,smileys-people,person,baby: dark skin tone,,,Johanna Wellnitz,5,๐Ÿ‘ถ,1F476,2,122 +๐Ÿง’,1F9D2,smileys-people,person,child,"gender-neutral, unspecified gender, young","human, person",Johanna Wellnitz,,๐Ÿง’,1F9D2,5,123 +๐Ÿง’๐Ÿป,1F9D2-1F3FB,smileys-people,person,child: light skin tone,,,Johanna Wellnitz,1,๐Ÿง’,1F9D2,5,124 +๐Ÿง’๐Ÿผ,1F9D2-1F3FC,smileys-people,person,child: medium-light skin tone,,,Johanna Wellnitz,2,๐Ÿง’,1F9D2,5,125 +๐Ÿง’๐Ÿฝ,1F9D2-1F3FD,smileys-people,person,child: medium skin tone,,,Johanna Wellnitz,3,๐Ÿง’,1F9D2,5,126 +๐Ÿง’๐Ÿพ,1F9D2-1F3FE,smileys-people,person,child: medium-dark skin tone,,,Johanna Wellnitz,4,๐Ÿง’,1F9D2,5,127 +๐Ÿง’๐Ÿฟ,1F9D2-1F3FF,smileys-people,person,child: dark skin tone,,,Johanna Wellnitz,5,๐Ÿง’,1F9D2,5,128 +๐Ÿ‘ฆ,1F466,smileys-people,person,boy,young,"human, person",Johanna Wellnitz,,๐Ÿ‘ฆ,1F466,1,129 +๐Ÿ‘ฆ๐Ÿป,1F466-1F3FB,smileys-people,person,boy: light skin tone,,,Johanna Wellnitz,1,๐Ÿ‘ฆ,1F466,2,130 +๐Ÿ‘ฆ๐Ÿผ,1F466-1F3FC,smileys-people,person,boy: medium-light skin tone,,,Johanna Wellnitz,2,๐Ÿ‘ฆ,1F466,2,131 +๐Ÿ‘ฆ๐Ÿฝ,1F466-1F3FD,smileys-people,person,boy: medium skin tone,,,Johanna Wellnitz,3,๐Ÿ‘ฆ,1F466,2,132 +๐Ÿ‘ฆ๐Ÿพ,1F466-1F3FE,smileys-people,person,boy: medium-dark skin tone,,,Johanna Wellnitz,4,๐Ÿ‘ฆ,1F466,2,133 +๐Ÿ‘ฆ๐Ÿฟ,1F466-1F3FF,smileys-people,person,boy: dark skin tone,,,Johanna Wellnitz,5,๐Ÿ‘ฆ,1F466,2,134 +๐Ÿ‘ง,1F467,smileys-people,person,girl,"virgo, young, zodiac","human, person",Johanna Wellnitz,,๐Ÿ‘ง,1F467,1,135 +๐Ÿ‘ง๐Ÿป,1F467-1F3FB,smileys-people,person,girl: light skin tone,,,Johanna Wellnitz,1,๐Ÿ‘ง,1F467,2,136 +๐Ÿ‘ง๐Ÿผ,1F467-1F3FC,smileys-people,person,girl: medium-light skin tone,,,Johanna Wellnitz,2,๐Ÿ‘ง,1F467,2,137 +๐Ÿ‘ง๐Ÿฝ,1F467-1F3FD,smileys-people,person,girl: medium skin tone,,,Johanna Wellnitz,3,๐Ÿ‘ง,1F467,2,138 +๐Ÿ‘ง๐Ÿพ,1F467-1F3FE,smileys-people,person,girl: medium-dark skin tone,,,Johanna Wellnitz,4,๐Ÿ‘ง,1F467,2,139 +๐Ÿ‘ง๐Ÿฟ,1F467-1F3FF,smileys-people,person,girl: dark skin tone,,,Johanna Wellnitz,5,๐Ÿ‘ง,1F467,2,140 +๐Ÿง‘,1F9D1,smileys-people,person,person,"adult, gender-neutral, unspecified gender","human, person",Johanna Wellnitz,,๐Ÿง‘,1F9D1,5,141 +๐Ÿง‘๐Ÿป,1F9D1-1F3FB,smileys-people,person,person: light skin tone,,,Johanna Wellnitz,1,๐Ÿง‘,1F9D1,5,142 +๐Ÿง‘๐Ÿผ,1F9D1-1F3FC,smileys-people,person,person: medium-light skin tone,,,Johanna Wellnitz,2,๐Ÿง‘,1F9D1,5,143 +๐Ÿง‘๐Ÿฝ,1F9D1-1F3FD,smileys-people,person,person: medium skin tone,,,Johanna Wellnitz,3,๐Ÿง‘,1F9D1,5,144 +๐Ÿง‘๐Ÿพ,1F9D1-1F3FE,smileys-people,person,person: medium-dark skin tone,,,Johanna Wellnitz,4,๐Ÿง‘,1F9D1,5,145 +๐Ÿง‘๐Ÿฟ,1F9D1-1F3FF,smileys-people,person,person: dark skin tone,,,Johanna Wellnitz,5,๐Ÿง‘,1F9D1,5,146 +๐Ÿ‘จ,1F468,smileys-people,person,man,adult,"human, person",Johanna Wellnitz,,๐Ÿ‘จ,1F468,1,147 +๐Ÿ‘จ๐Ÿป,1F468-1F3FB,smileys-people,person,man: light skin tone,,,Johanna Wellnitz,1,๐Ÿ‘จ,1F468,2,148 +๐Ÿ‘จ๐Ÿผ,1F468-1F3FC,smileys-people,person,man: medium-light skin tone,,,Johanna Wellnitz,2,๐Ÿ‘จ,1F468,2,149 +๐Ÿ‘จ๐Ÿฝ,1F468-1F3FD,smileys-people,person,man: medium skin tone,,,Johanna Wellnitz,3,๐Ÿ‘จ,1F468,2,150 +๐Ÿ‘จ๐Ÿพ,1F468-1F3FE,smileys-people,person,man: medium-dark skin tone,,,Johanna Wellnitz,4,๐Ÿ‘จ,1F468,2,151 +๐Ÿ‘จ๐Ÿฟ,1F468-1F3FF,smileys-people,person,man: dark skin tone,,,Johanna Wellnitz,5,๐Ÿ‘จ,1F468,2,152 +๐Ÿ‘ฉ,1F469,smileys-people,person,woman,adult,"human, person",Johanna Wellnitz,,๐Ÿ‘ฉ,1F469,1,153 +๐Ÿ‘ฉ๐Ÿป,1F469-1F3FB,smileys-people,person,woman: light skin tone,,,Johanna Wellnitz,1,๐Ÿ‘ฉ,1F469,2,154 +๐Ÿ‘ฉ๐Ÿผ,1F469-1F3FC,smileys-people,person,woman: medium-light skin tone,,,Johanna Wellnitz,2,๐Ÿ‘ฉ,1F469,2,155 +๐Ÿ‘ฉ๐Ÿฝ,1F469-1F3FD,smileys-people,person,woman: medium skin tone,,,Johanna Wellnitz,3,๐Ÿ‘ฉ,1F469,2,156 +๐Ÿ‘ฉ๐Ÿพ,1F469-1F3FE,smileys-people,person,woman: medium-dark skin tone,,,Johanna Wellnitz,4,๐Ÿ‘ฉ,1F469,2,157 +๐Ÿ‘ฉ๐Ÿฟ,1F469-1F3FF,smileys-people,person,woman: dark skin tone,,,Johanna Wellnitz,5,๐Ÿ‘ฉ,1F469,2,158 +๐Ÿง“,1F9D3,smileys-people,person,older person,"adult, gender-neutral, old, unspecified gender","human, person",Johanna Wellnitz,,๐Ÿง“,1F9D3,5,159 +๐Ÿง“๐Ÿป,1F9D3-1F3FB,smileys-people,person,older person: light skin tone,,,Johanna Wellnitz,1,๐Ÿง“,1F9D3,5,160 +๐Ÿง“๐Ÿผ,1F9D3-1F3FC,smileys-people,person,older person: medium-light skin tone,,,Johanna Wellnitz,2,๐Ÿง“,1F9D3,5,161 +๐Ÿง“๐Ÿฝ,1F9D3-1F3FD,smileys-people,person,older person: medium skin tone,,,Johanna Wellnitz,3,๐Ÿง“,1F9D3,5,162 +๐Ÿง“๐Ÿพ,1F9D3-1F3FE,smileys-people,person,older person: medium-dark skin tone,,,Johanna Wellnitz,4,๐Ÿง“,1F9D3,5,163 +๐Ÿง“๐Ÿฟ,1F9D3-1F3FF,smileys-people,person,older person: dark skin tone,,,Johanna Wellnitz,5,๐Ÿง“,1F9D3,5,164 +๐Ÿ‘ด,1F474,smileys-people,person,old man,"adult, man, old","grandpa, human, person",Johanna Wellnitz,,๐Ÿ‘ด,1F474,1,165 +๐Ÿ‘ด๐Ÿป,1F474-1F3FB,smileys-people,person,old man: light skin tone,,,Johanna Wellnitz,1,๐Ÿ‘ด,1F474,2,166 +๐Ÿ‘ด๐Ÿผ,1F474-1F3FC,smileys-people,person,old man: medium-light skin tone,,,Johanna Wellnitz,2,๐Ÿ‘ด,1F474,2,167 +๐Ÿ‘ด๐Ÿฝ,1F474-1F3FD,smileys-people,person,old man: medium skin tone,,,Johanna Wellnitz,3,๐Ÿ‘ด,1F474,2,168 +๐Ÿ‘ด๐Ÿพ,1F474-1F3FE,smileys-people,person,old man: medium-dark skin tone,,,Johanna Wellnitz,4,๐Ÿ‘ด,1F474,2,169 +๐Ÿ‘ด๐Ÿฟ,1F474-1F3FF,smileys-people,person,old man: dark skin tone,,,Johanna Wellnitz,5,๐Ÿ‘ด,1F474,2,170 +๐Ÿ‘ต,1F475,smileys-people,person,old woman,"adult, old, woman","gradma, human, person",Johanna Wellnitz,,๐Ÿ‘ต,1F475,1,171 +๐Ÿ‘ต๐Ÿป,1F475-1F3FB,smileys-people,person,old woman: light skin tone,,,Johanna Wellnitz,1,๐Ÿ‘ต,1F475,2,172 +๐Ÿ‘ต๐Ÿผ,1F475-1F3FC,smileys-people,person,old woman: medium-light skin tone,,,Johanna Wellnitz,2,๐Ÿ‘ต,1F475,2,173 +๐Ÿ‘ต๐Ÿฝ,1F475-1F3FD,smileys-people,person,old woman: medium skin tone,,,Johanna Wellnitz,3,๐Ÿ‘ต,1F475,2,174 +๐Ÿ‘ต๐Ÿพ,1F475-1F3FE,smileys-people,person,old woman: medium-dark skin tone,,,Johanna Wellnitz,4,๐Ÿ‘ต,1F475,2,175 +๐Ÿ‘ต๐Ÿฟ,1F475-1F3FF,smileys-people,person,old woman: dark skin tone,,,Johanna Wellnitz,5,๐Ÿ‘ต,1F475,2,176 +๐Ÿ‘จโ€โš•๏ธ,1F468-200D-2695-FE0F,smileys-people,person-role,man health worker,"doctor, healthcare, man, nurse, therapist","doctor, healthcare, man, nurse, therapist, stethoscope, doctor smock",Lisa Thiel,,๐Ÿ‘จโ€โš•๏ธ,1F468-200D-2695-FE0F,4,177 +๐Ÿ‘จ๐Ÿปโ€โš•๏ธ,1F468-1F3FB-200D-2695-FE0F,smileys-people,person-role,man health worker: light skin tone,,,Lisa Thiel,1,๐Ÿ‘จโ€โš•๏ธ,1F468-200D-2695-FE0F,4,179 +๐Ÿ‘จ๐Ÿผโ€โš•๏ธ,1F468-1F3FC-200D-2695-FE0F,smileys-people,person-role,man health worker: medium-light skin tone,,,Lisa Thiel,2,๐Ÿ‘จโ€โš•๏ธ,1F468-200D-2695-FE0F,4,181 +๐Ÿ‘จ๐Ÿฝโ€โš•๏ธ,1F468-1F3FD-200D-2695-FE0F,smileys-people,person-role,man health worker: medium skin tone,,,Lisa Thiel,3,๐Ÿ‘จโ€โš•๏ธ,1F468-200D-2695-FE0F,4,183 +๐Ÿ‘จ๐Ÿพโ€โš•๏ธ,1F468-1F3FE-200D-2695-FE0F,smileys-people,person-role,man health worker: medium-dark skin tone,,,Lisa Thiel,4,๐Ÿ‘จโ€โš•๏ธ,1F468-200D-2695-FE0F,4,185 +๐Ÿ‘จ๐Ÿฟโ€โš•๏ธ,1F468-1F3FF-200D-2695-FE0F,smileys-people,person-role,man health worker: dark skin tone,,,Lisa Thiel,5,๐Ÿ‘จโ€โš•๏ธ,1F468-200D-2695-FE0F,4,187 +๐Ÿ‘ฉโ€โš•๏ธ,1F469-200D-2695-FE0F,smileys-people,person-role,woman health worker,"doctor, healthcare, nurse, therapist, woman","doctor, healthcare, woman, nurse, therapist, stethoscope, doctor smock",Lisa Thiel,,๐Ÿ‘ฉโ€โš•๏ธ,1F469-200D-2695-FE0F,4,189 +๐Ÿ‘ฉ๐Ÿปโ€โš•๏ธ,1F469-1F3FB-200D-2695-FE0F,smileys-people,person-role,woman health worker: light skin tone,,,Lisa Thiel,1,๐Ÿ‘ฉโ€โš•๏ธ,1F469-200D-2695-FE0F,4,191 +๐Ÿ‘ฉ๐Ÿผโ€โš•๏ธ,1F469-1F3FC-200D-2695-FE0F,smileys-people,person-role,woman health worker: medium-light skin tone,,,Lisa Thiel,2,๐Ÿ‘ฉโ€โš•๏ธ,1F469-200D-2695-FE0F,4,193 +๐Ÿ‘ฉ๐Ÿฝโ€โš•๏ธ,1F469-1F3FD-200D-2695-FE0F,smileys-people,person-role,woman health worker: medium skin tone,,,Lisa Thiel,3,๐Ÿ‘ฉโ€โš•๏ธ,1F469-200D-2695-FE0F,4,195 +๐Ÿ‘ฉ๐Ÿพโ€โš•๏ธ,1F469-1F3FE-200D-2695-FE0F,smileys-people,person-role,woman health worker: medium-dark skin tone,,,Lisa Thiel,4,๐Ÿ‘ฉโ€โš•๏ธ,1F469-200D-2695-FE0F,4,197 +๐Ÿ‘ฉ๐Ÿฟโ€โš•๏ธ,1F469-1F3FF-200D-2695-FE0F,smileys-people,person-role,woman health worker: dark skin tone,,,Lisa Thiel,5,๐Ÿ‘ฉโ€โš•๏ธ,1F469-200D-2695-FE0F,4,199 +๐Ÿ‘จโ€๐ŸŽ“,1F468-200D-1F393,smileys-people,person-role,man student,"graduate, man, student","graduate, man, student, black robe, collegian, undergraduate, graduation",Lisa Thiel,,๐Ÿ‘จโ€๐ŸŽ“,1F468-200D-1F393,4,201 +๐Ÿ‘จ๐Ÿปโ€๐ŸŽ“,1F468-1F3FB-200D-1F393,smileys-people,person-role,man student: light skin tone,,,Lisa Thiel,1,๐Ÿ‘จโ€๐ŸŽ“,1F468-200D-1F393,4,202 +๐Ÿ‘จ๐Ÿผโ€๐ŸŽ“,1F468-1F3FC-200D-1F393,smileys-people,person-role,man student: medium-light skin tone,,,Lisa Thiel,2,๐Ÿ‘จโ€๐ŸŽ“,1F468-200D-1F393,4,203 +๐Ÿ‘จ๐Ÿฝโ€๐ŸŽ“,1F468-1F3FD-200D-1F393,smileys-people,person-role,man student: medium skin tone,,,Lisa Thiel,3,๐Ÿ‘จโ€๐ŸŽ“,1F468-200D-1F393,4,204 +๐Ÿ‘จ๐Ÿพโ€๐ŸŽ“,1F468-1F3FE-200D-1F393,smileys-people,person-role,man student: medium-dark skin tone,,,Lisa Thiel,4,๐Ÿ‘จโ€๐ŸŽ“,1F468-200D-1F393,4,205 +๐Ÿ‘จ๐Ÿฟโ€๐ŸŽ“,1F468-1F3FF-200D-1F393,smileys-people,person-role,man student: dark skin tone,,,Lisa Thiel,5,๐Ÿ‘จโ€๐ŸŽ“,1F468-200D-1F393,4,206 +๐Ÿ‘ฉโ€๐ŸŽ“,1F469-200D-1F393,smileys-people,person-role,woman student,"graduate, student, woman","graduate, woman, student, black robe, collegian, undergraduate, graduation",Lisa Thiel,,๐Ÿ‘ฉโ€๐ŸŽ“,1F469-200D-1F393,4,207 +๐Ÿ‘ฉ๐Ÿปโ€๐ŸŽ“,1F469-1F3FB-200D-1F393,smileys-people,person-role,woman student: light skin tone,,,Lisa Thiel,1,๐Ÿ‘ฉโ€๐ŸŽ“,1F469-200D-1F393,4,208 +๐Ÿ‘ฉ๐Ÿผโ€๐ŸŽ“,1F469-1F3FC-200D-1F393,smileys-people,person-role,woman student: medium-light skin tone,,,Lisa Thiel,2,๐Ÿ‘ฉโ€๐ŸŽ“,1F469-200D-1F393,4,209 +๐Ÿ‘ฉ๐Ÿฝโ€๐ŸŽ“,1F469-1F3FD-200D-1F393,smileys-people,person-role,woman student: medium skin tone,,,Lisa Thiel,3,๐Ÿ‘ฉโ€๐ŸŽ“,1F469-200D-1F393,4,210 +๐Ÿ‘ฉ๐Ÿพโ€๐ŸŽ“,1F469-1F3FE-200D-1F393,smileys-people,person-role,woman student: medium-dark skin tone,,,Lisa Thiel,4,๐Ÿ‘ฉโ€๐ŸŽ“,1F469-200D-1F393,4,211 +๐Ÿ‘ฉ๐Ÿฟโ€๐ŸŽ“,1F469-1F3FF-200D-1F393,smileys-people,person-role,woman student: dark skin tone,,,Lisa Thiel,5,๐Ÿ‘ฉโ€๐ŸŽ“,1F469-200D-1F393,4,212 +๐Ÿ‘จโ€๐Ÿซ,1F468-200D-1F3EB,smileys-people,person-role,man teacher,"instructor, man, professor, teacher","instructor, man, professor, teacher, lecturer, educator, chalkboard",Lisa Thiel,,๐Ÿ‘จโ€๐Ÿซ,1F468-200D-1F3EB,4,213 +๐Ÿ‘จ๐Ÿปโ€๐Ÿซ,1F468-1F3FB-200D-1F3EB,smileys-people,person-role,man teacher: light skin tone,,,Lisa Thiel,1,๐Ÿ‘จโ€๐Ÿซ,1F468-200D-1F3EB,4,214 +๐Ÿ‘จ๐Ÿผโ€๐Ÿซ,1F468-1F3FC-200D-1F3EB,smileys-people,person-role,man teacher: medium-light skin tone,,,Lisa Thiel,2,๐Ÿ‘จโ€๐Ÿซ,1F468-200D-1F3EB,4,215 +๐Ÿ‘จ๐Ÿฝโ€๐Ÿซ,1F468-1F3FD-200D-1F3EB,smileys-people,person-role,man teacher: medium skin tone,,,Lisa Thiel,3,๐Ÿ‘จโ€๐Ÿซ,1F468-200D-1F3EB,4,216 +๐Ÿ‘จ๐Ÿพโ€๐Ÿซ,1F468-1F3FE-200D-1F3EB,smileys-people,person-role,man teacher: medium-dark skin tone,,,Lisa Thiel,4,๐Ÿ‘จโ€๐Ÿซ,1F468-200D-1F3EB,4,217 +๐Ÿ‘จ๐Ÿฟโ€๐Ÿซ,1F468-1F3FF-200D-1F3EB,smileys-people,person-role,man teacher: dark skin tone,,,Lisa Thiel,5,๐Ÿ‘จโ€๐Ÿซ,1F468-200D-1F3EB,4,218 +๐Ÿ‘ฉโ€๐Ÿซ,1F469-200D-1F3EB,smileys-people,person-role,woman teacher,"instructor, professor, teacher, woman","instructor, woman, professor, teacher, lecturer, educator, chalkboard",Lisa Thiel,,๐Ÿ‘ฉโ€๐Ÿซ,1F469-200D-1F3EB,4,219 +๐Ÿ‘ฉ๐Ÿปโ€๐Ÿซ,1F469-1F3FB-200D-1F3EB,smileys-people,person-role,woman teacher: light skin tone,,,Lisa Thiel,1,๐Ÿ‘ฉโ€๐Ÿซ,1F469-200D-1F3EB,4,220 +๐Ÿ‘ฉ๐Ÿผโ€๐Ÿซ,1F469-1F3FC-200D-1F3EB,smileys-people,person-role,woman teacher: medium-light skin tone,,,Lisa Thiel,2,๐Ÿ‘ฉโ€๐Ÿซ,1F469-200D-1F3EB,4,221 +๐Ÿ‘ฉ๐Ÿฝโ€๐Ÿซ,1F469-1F3FD-200D-1F3EB,smileys-people,person-role,woman teacher: medium skin tone,,,Lisa Thiel,3,๐Ÿ‘ฉโ€๐Ÿซ,1F469-200D-1F3EB,4,222 +๐Ÿ‘ฉ๐Ÿพโ€๐Ÿซ,1F469-1F3FE-200D-1F3EB,smileys-people,person-role,woman teacher: medium-dark skin tone,,,Lisa Thiel,4,๐Ÿ‘ฉโ€๐Ÿซ,1F469-200D-1F3EB,4,223 +๐Ÿ‘ฉ๐Ÿฟโ€๐Ÿซ,1F469-1F3FF-200D-1F3EB,smileys-people,person-role,woman teacher: dark skin tone,,,Lisa Thiel,5,๐Ÿ‘ฉโ€๐Ÿซ,1F469-200D-1F3EB,4,224 +๐Ÿ‘จโ€โš–๏ธ,1F468-200D-2696-FE0F,smileys-people,person-role,man judge,"justice, man, scales","justice, man, scales, judge hammer, gavel, black robe, law, order",Lisa Thiel,,๐Ÿ‘จโ€โš–๏ธ,1F468-200D-2696-FE0F,4,225 +๐Ÿ‘จ๐Ÿปโ€โš–๏ธ,1F468-1F3FB-200D-2696-FE0F,smileys-people,person-role,man judge: light skin tone,,,Lisa Thiel,1,๐Ÿ‘จโ€โš–๏ธ,1F468-200D-2696-FE0F,4,227 +๐Ÿ‘จ๐Ÿผโ€โš–๏ธ,1F468-1F3FC-200D-2696-FE0F,smileys-people,person-role,man judge: medium-light skin tone,,,Lisa Thiel,2,๐Ÿ‘จโ€โš–๏ธ,1F468-200D-2696-FE0F,4,229 +๐Ÿ‘จ๐Ÿฝโ€โš–๏ธ,1F468-1F3FD-200D-2696-FE0F,smileys-people,person-role,man judge: medium skin tone,,,Lisa Thiel,3,๐Ÿ‘จโ€โš–๏ธ,1F468-200D-2696-FE0F,4,231 +๐Ÿ‘จ๐Ÿพโ€โš–๏ธ,1F468-1F3FE-200D-2696-FE0F,smileys-people,person-role,man judge: medium-dark skin tone,,,Lisa Thiel,4,๐Ÿ‘จโ€โš–๏ธ,1F468-200D-2696-FE0F,4,233 +๐Ÿ‘จ๐Ÿฟโ€โš–๏ธ,1F468-1F3FF-200D-2696-FE0F,smileys-people,person-role,man judge: dark skin tone,,,Lisa Thiel,5,๐Ÿ‘จโ€โš–๏ธ,1F468-200D-2696-FE0F,4,235 +๐Ÿ‘ฉโ€โš–๏ธ,1F469-200D-2696-FE0F,smileys-people,person-role,woman judge,"judge, scales, woman","justice, woman, scales, judge hammer, gavel, black robe, law, order",Lisa Thiel,,๐Ÿ‘ฉโ€โš–๏ธ,1F469-200D-2696-FE0F,4,237 +๐Ÿ‘ฉ๐Ÿปโ€โš–๏ธ,1F469-1F3FB-200D-2696-FE0F,smileys-people,person-role,woman judge: light skin tone,,,Lisa Thiel,1,๐Ÿ‘ฉโ€โš–๏ธ,1F469-200D-2696-FE0F,4,239 +๐Ÿ‘ฉ๐Ÿผโ€โš–๏ธ,1F469-1F3FC-200D-2696-FE0F,smileys-people,person-role,woman judge: medium-light skin tone,,,Lisa Thiel,2,๐Ÿ‘ฉโ€โš–๏ธ,1F469-200D-2696-FE0F,4,241 +๐Ÿ‘ฉ๐Ÿฝโ€โš–๏ธ,1F469-1F3FD-200D-2696-FE0F,smileys-people,person-role,woman judge: medium skin tone,,,Lisa Thiel,3,๐Ÿ‘ฉโ€โš–๏ธ,1F469-200D-2696-FE0F,4,243 +๐Ÿ‘ฉ๐Ÿพโ€โš–๏ธ,1F469-1F3FE-200D-2696-FE0F,smileys-people,person-role,woman judge: medium-dark skin tone,,,Lisa Thiel,4,๐Ÿ‘ฉโ€โš–๏ธ,1F469-200D-2696-FE0F,4,245 +๐Ÿ‘ฉ๐Ÿฟโ€โš–๏ธ,1F469-1F3FF-200D-2696-FE0F,smileys-people,person-role,woman judge: dark skin tone,,,Lisa Thiel,5,๐Ÿ‘ฉโ€โš–๏ธ,1F469-200D-2696-FE0F,4,247 +๐Ÿ‘จโ€๐ŸŒพ,1F468-200D-1F33E,smileys-people,person-role,man farmer,"farmer, gardener, man, rancher","farmer, gardener, man, rancher, pitchfork, strawhat",Lisa Thiel,,๐Ÿ‘จโ€๐ŸŒพ,1F468-200D-1F33E,4,249 +๐Ÿ‘จ๐Ÿปโ€๐ŸŒพ,1F468-1F3FB-200D-1F33E,smileys-people,person-role,man farmer: light skin tone,,,Lisa Thiel,1,๐Ÿ‘จโ€๐ŸŒพ,1F468-200D-1F33E,4,250 +๐Ÿ‘จ๐Ÿผโ€๐ŸŒพ,1F468-1F3FC-200D-1F33E,smileys-people,person-role,man farmer: medium-light skin tone,,,Lisa Thiel,2,๐Ÿ‘จโ€๐ŸŒพ,1F468-200D-1F33E,4,251 +๐Ÿ‘จ๐Ÿฝโ€๐ŸŒพ,1F468-1F3FD-200D-1F33E,smileys-people,person-role,man farmer: medium skin tone,,,Lisa Thiel,3,๐Ÿ‘จโ€๐ŸŒพ,1F468-200D-1F33E,4,252 +๐Ÿ‘จ๐Ÿพโ€๐ŸŒพ,1F468-1F3FE-200D-1F33E,smileys-people,person-role,man farmer: medium-dark skin tone,,,Lisa Thiel,4,๐Ÿ‘จโ€๐ŸŒพ,1F468-200D-1F33E,4,253 +๐Ÿ‘จ๐Ÿฟโ€๐ŸŒพ,1F468-1F3FF-200D-1F33E,smileys-people,person-role,man farmer: dark skin tone,,,Lisa Thiel,5,๐Ÿ‘จโ€๐ŸŒพ,1F468-200D-1F33E,4,254 +๐Ÿ‘ฉโ€๐ŸŒพ,1F469-200D-1F33E,smileys-people,person-role,woman farmer,"farmer, gardener, rancher, woman","farmer, gardener, woman, rancher, pitchfork, strawhat, braids",Lisa Thiel,,๐Ÿ‘ฉโ€๐ŸŒพ,1F469-200D-1F33E,4,255 +๐Ÿ‘ฉ๐Ÿปโ€๐ŸŒพ,1F469-1F3FB-200D-1F33E,smileys-people,person-role,woman farmer: light skin tone,,,Lisa Thiel,1,๐Ÿ‘ฉโ€๐ŸŒพ,1F469-200D-1F33E,4,256 +๐Ÿ‘ฉ๐Ÿผโ€๐ŸŒพ,1F469-1F3FC-200D-1F33E,smileys-people,person-role,woman farmer: medium-light skin tone,,,Lisa Thiel,2,๐Ÿ‘ฉโ€๐ŸŒพ,1F469-200D-1F33E,4,257 +๐Ÿ‘ฉ๐Ÿฝโ€๐ŸŒพ,1F469-1F3FD-200D-1F33E,smileys-people,person-role,woman farmer: medium skin tone,,,Lisa Thiel,3,๐Ÿ‘ฉโ€๐ŸŒพ,1F469-200D-1F33E,4,258 +๐Ÿ‘ฉ๐Ÿพโ€๐ŸŒพ,1F469-1F3FE-200D-1F33E,smileys-people,person-role,woman farmer: medium-dark skin tone,,,Lisa Thiel,4,๐Ÿ‘ฉโ€๐ŸŒพ,1F469-200D-1F33E,4,259 +๐Ÿ‘ฉ๐Ÿฟโ€๐ŸŒพ,1F469-1F3FF-200D-1F33E,smileys-people,person-role,woman farmer: dark skin tone,,,Lisa Thiel,5,๐Ÿ‘ฉโ€๐ŸŒพ,1F469-200D-1F33E,4,260 +๐Ÿ‘จโ€๐Ÿณ,1F468-200D-1F373,smileys-people,person-role,man cook,"chef, cook, man","chef, cook, man, toque, chef's hat, food, cooking",Lisa Thiel,,๐Ÿ‘จโ€๐Ÿณ,1F468-200D-1F373,4,261 +๐Ÿ‘จ๐Ÿปโ€๐Ÿณ,1F468-1F3FB-200D-1F373,smileys-people,person-role,man cook: light skin tone,,,Lisa Thiel,1,๐Ÿ‘จโ€๐Ÿณ,1F468-200D-1F373,4,262 +๐Ÿ‘จ๐Ÿผโ€๐Ÿณ,1F468-1F3FC-200D-1F373,smileys-people,person-role,man cook: medium-light skin tone,,,Lisa Thiel,2,๐Ÿ‘จโ€๐Ÿณ,1F468-200D-1F373,4,263 +๐Ÿ‘จ๐Ÿฝโ€๐Ÿณ,1F468-1F3FD-200D-1F373,smileys-people,person-role,man cook: medium skin tone,,,Lisa Thiel,3,๐Ÿ‘จโ€๐Ÿณ,1F468-200D-1F373,4,264 +๐Ÿ‘จ๐Ÿพโ€๐Ÿณ,1F468-1F3FE-200D-1F373,smileys-people,person-role,man cook: medium-dark skin tone,,,Lisa Thiel,4,๐Ÿ‘จโ€๐Ÿณ,1F468-200D-1F373,4,265 +๐Ÿ‘จ๐Ÿฟโ€๐Ÿณ,1F468-1F3FF-200D-1F373,smileys-people,person-role,man cook: dark skin tone,,,Lisa Thiel,5,๐Ÿ‘จโ€๐Ÿณ,1F468-200D-1F373,4,266 +๐Ÿ‘ฉโ€๐Ÿณ,1F469-200D-1F373,smileys-people,person-role,woman cook,"chef, cook, woman","chef, cook, woman, toque, chef's hat, food, cooking",Lisa Thiel,,๐Ÿ‘ฉโ€๐Ÿณ,1F469-200D-1F373,4,267 +๐Ÿ‘ฉ๐Ÿปโ€๐Ÿณ,1F469-1F3FB-200D-1F373,smileys-people,person-role,woman cook: light skin tone,,,Lisa Thiel,1,๐Ÿ‘ฉโ€๐Ÿณ,1F469-200D-1F373,4,268 +๐Ÿ‘ฉ๐Ÿผโ€๐Ÿณ,1F469-1F3FC-200D-1F373,smileys-people,person-role,woman cook: medium-light skin tone,,,Lisa Thiel,2,๐Ÿ‘ฉโ€๐Ÿณ,1F469-200D-1F373,4,269 +๐Ÿ‘ฉ๐Ÿฝโ€๐Ÿณ,1F469-1F3FD-200D-1F373,smileys-people,person-role,woman cook: medium skin tone,,,Lisa Thiel,3,๐Ÿ‘ฉโ€๐Ÿณ,1F469-200D-1F373,4,270 +๐Ÿ‘ฉ๐Ÿพโ€๐Ÿณ,1F469-1F3FE-200D-1F373,smileys-people,person-role,woman cook: medium-dark skin tone,,,Lisa Thiel,4,๐Ÿ‘ฉโ€๐Ÿณ,1F469-200D-1F373,4,271 +๐Ÿ‘ฉ๐Ÿฟโ€๐Ÿณ,1F469-1F3FF-200D-1F373,smileys-people,person-role,woman cook: dark skin tone,,,Lisa Thiel,5,๐Ÿ‘ฉโ€๐Ÿณ,1F469-200D-1F373,4,272 +๐Ÿ‘จโ€๐Ÿ”ง,1F468-200D-1F527,smileys-people,person-role,man mechanic,"electrician, man, mechanic, plumber, tradesperson","electrician, man, mechanic, plumber, tradesperson, wrench, overalls, blue hat, auto mechanic",Lisa Thiel,,๐Ÿ‘จโ€๐Ÿ”ง,1F468-200D-1F527,4,273 +๐Ÿ‘จ๐Ÿปโ€๐Ÿ”ง,1F468-1F3FB-200D-1F527,smileys-people,person-role,man mechanic: light skin tone,,,Lisa Thiel,1,๐Ÿ‘จโ€๐Ÿ”ง,1F468-200D-1F527,4,274 +๐Ÿ‘จ๐Ÿผโ€๐Ÿ”ง,1F468-1F3FC-200D-1F527,smileys-people,person-role,man mechanic: medium-light skin tone,,,Lisa Thiel,2,๐Ÿ‘จโ€๐Ÿ”ง,1F468-200D-1F527,4,275 +๐Ÿ‘จ๐Ÿฝโ€๐Ÿ”ง,1F468-1F3FD-200D-1F527,smileys-people,person-role,man mechanic: medium skin tone,,,Lisa Thiel,3,๐Ÿ‘จโ€๐Ÿ”ง,1F468-200D-1F527,4,276 +๐Ÿ‘จ๐Ÿพโ€๐Ÿ”ง,1F468-1F3FE-200D-1F527,smileys-people,person-role,man mechanic: medium-dark skin tone,,,Lisa Thiel,4,๐Ÿ‘จโ€๐Ÿ”ง,1F468-200D-1F527,4,277 +๐Ÿ‘จ๐Ÿฟโ€๐Ÿ”ง,1F468-1F3FF-200D-1F527,smileys-people,person-role,man mechanic: dark skin tone,,,Lisa Thiel,5,๐Ÿ‘จโ€๐Ÿ”ง,1F468-200D-1F527,4,278 +๐Ÿ‘ฉโ€๐Ÿ”ง,1F469-200D-1F527,smileys-people,person-role,woman mechanic,"electrician, mechanic, plumber, tradesperson, woman","electrician, woman, mechanic, plumber, tradesperson, wrench, overalls, blue hat, auto mechanic",Lisa Thiel,,๐Ÿ‘ฉโ€๐Ÿ”ง,1F469-200D-1F527,4,279 +๐Ÿ‘ฉ๐Ÿปโ€๐Ÿ”ง,1F469-1F3FB-200D-1F527,smileys-people,person-role,woman mechanic: light skin tone,,,Lisa Thiel,1,๐Ÿ‘ฉโ€๐Ÿ”ง,1F469-200D-1F527,4,280 +๐Ÿ‘ฉ๐Ÿผโ€๐Ÿ”ง,1F469-1F3FC-200D-1F527,smileys-people,person-role,woman mechanic: medium-light skin tone,,,Lisa Thiel,2,๐Ÿ‘ฉโ€๐Ÿ”ง,1F469-200D-1F527,4,281 +๐Ÿ‘ฉ๐Ÿฝโ€๐Ÿ”ง,1F469-1F3FD-200D-1F527,smileys-people,person-role,woman mechanic: medium skin tone,,,Lisa Thiel,3,๐Ÿ‘ฉโ€๐Ÿ”ง,1F469-200D-1F527,4,282 +๐Ÿ‘ฉ๐Ÿพโ€๐Ÿ”ง,1F469-1F3FE-200D-1F527,smileys-people,person-role,woman mechanic: medium-dark skin tone,,,Lisa Thiel,4,๐Ÿ‘ฉโ€๐Ÿ”ง,1F469-200D-1F527,4,283 +๐Ÿ‘ฉ๐Ÿฟโ€๐Ÿ”ง,1F469-1F3FF-200D-1F527,smileys-people,person-role,woman mechanic: dark skin tone,,,Lisa Thiel,5,๐Ÿ‘ฉโ€๐Ÿ”ง,1F469-200D-1F527,4,284 +๐Ÿ‘จโ€๐Ÿญ,1F468-200D-1F3ED,smileys-people,person-role,man factory worker,"assembly, factory, industrial, man, worker","assembly, factory, industrial, man, worker, welder, welding, welding helmet",Lisa Thiel,,๐Ÿ‘จโ€๐Ÿญ,1F468-200D-1F3ED,4,285 +๐Ÿ‘จ๐Ÿปโ€๐Ÿญ,1F468-1F3FB-200D-1F3ED,smileys-people,person-role,man factory worker: light skin tone,,,Lisa Thiel,1,๐Ÿ‘จโ€๐Ÿญ,1F468-200D-1F3ED,4,286 +๐Ÿ‘จ๐Ÿผโ€๐Ÿญ,1F468-1F3FC-200D-1F3ED,smileys-people,person-role,man factory worker: medium-light skin tone,,,Lisa Thiel,2,๐Ÿ‘จโ€๐Ÿญ,1F468-200D-1F3ED,4,287 +๐Ÿ‘จ๐Ÿฝโ€๐Ÿญ,1F468-1F3FD-200D-1F3ED,smileys-people,person-role,man factory worker: medium skin tone,,,Lisa Thiel,3,๐Ÿ‘จโ€๐Ÿญ,1F468-200D-1F3ED,4,288 +๐Ÿ‘จ๐Ÿพโ€๐Ÿญ,1F468-1F3FE-200D-1F3ED,smileys-people,person-role,man factory worker: medium-dark skin tone,,,Lisa Thiel,4,๐Ÿ‘จโ€๐Ÿญ,1F468-200D-1F3ED,4,289 +๐Ÿ‘จ๐Ÿฟโ€๐Ÿญ,1F468-1F3FF-200D-1F3ED,smileys-people,person-role,man factory worker: dark skin tone,,,Lisa Thiel,5,๐Ÿ‘จโ€๐Ÿญ,1F468-200D-1F3ED,4,290 +๐Ÿ‘ฉโ€๐Ÿญ,1F469-200D-1F3ED,smileys-people,person-role,woman factory worker,"assembly, factory, industrial, woman, worker","assembly, factory, industrial, woman, worker, welder, welding, welding helmet",Lisa Thiel,,๐Ÿ‘ฉโ€๐Ÿญ,1F469-200D-1F3ED,4,291 +๐Ÿ‘ฉ๐Ÿปโ€๐Ÿญ,1F469-1F3FB-200D-1F3ED,smileys-people,person-role,woman factory worker: light skin tone,,,Lisa Thiel,1,๐Ÿ‘ฉโ€๐Ÿญ,1F469-200D-1F3ED,4,292 +๐Ÿ‘ฉ๐Ÿผโ€๐Ÿญ,1F469-1F3FC-200D-1F3ED,smileys-people,person-role,woman factory worker: medium-light skin tone,,,Lisa Thiel,2,๐Ÿ‘ฉโ€๐Ÿญ,1F469-200D-1F3ED,4,293 +๐Ÿ‘ฉ๐Ÿฝโ€๐Ÿญ,1F469-1F3FD-200D-1F3ED,smileys-people,person-role,woman factory worker: medium skin tone,,,Lisa Thiel,3,๐Ÿ‘ฉโ€๐Ÿญ,1F469-200D-1F3ED,4,294 +๐Ÿ‘ฉ๐Ÿพโ€๐Ÿญ,1F469-1F3FE-200D-1F3ED,smileys-people,person-role,woman factory worker: medium-dark skin tone,,,Lisa Thiel,4,๐Ÿ‘ฉโ€๐Ÿญ,1F469-200D-1F3ED,4,295 +๐Ÿ‘ฉ๐Ÿฟโ€๐Ÿญ,1F469-1F3FF-200D-1F3ED,smileys-people,person-role,woman factory worker: dark skin tone,,,Lisa Thiel,5,๐Ÿ‘ฉโ€๐Ÿญ,1F469-200D-1F3ED,4,296 +๐Ÿ‘จโ€๐Ÿ’ผ,1F468-200D-1F4BC,smileys-people,person-role,man office worker,"architect, business, man, manager, white-collar","architect, business, man, manager, office, white-collar, papers, copy",Lisa Thiel,,๐Ÿ‘จโ€๐Ÿ’ผ,1F468-200D-1F4BC,4,297 +๐Ÿ‘จ๐Ÿปโ€๐Ÿ’ผ,1F468-1F3FB-200D-1F4BC,smileys-people,person-role,man office worker: light skin tone,,,Lisa Thiel,1,๐Ÿ‘จโ€๐Ÿ’ผ,1F468-200D-1F4BC,4,298 +๐Ÿ‘จ๐Ÿผโ€๐Ÿ’ผ,1F468-1F3FC-200D-1F4BC,smileys-people,person-role,man office worker: medium-light skin tone,,,Lisa Thiel,2,๐Ÿ‘จโ€๐Ÿ’ผ,1F468-200D-1F4BC,4,299 +๐Ÿ‘จ๐Ÿฝโ€๐Ÿ’ผ,1F468-1F3FD-200D-1F4BC,smileys-people,person-role,man office worker: medium skin tone,,,Lisa Thiel,3,๐Ÿ‘จโ€๐Ÿ’ผ,1F468-200D-1F4BC,4,300 +๐Ÿ‘จ๐Ÿพโ€๐Ÿ’ผ,1F468-1F3FE-200D-1F4BC,smileys-people,person-role,man office worker: medium-dark skin tone,,,Lisa Thiel,4,๐Ÿ‘จโ€๐Ÿ’ผ,1F468-200D-1F4BC,4,301 +๐Ÿ‘จ๐Ÿฟโ€๐Ÿ’ผ,1F468-1F3FF-200D-1F4BC,smileys-people,person-role,man office worker: dark skin tone,,,Lisa Thiel,5,๐Ÿ‘จโ€๐Ÿ’ผ,1F468-200D-1F4BC,4,302 +๐Ÿ‘ฉโ€๐Ÿ’ผ,1F469-200D-1F4BC,smileys-people,person-role,woman office worker,"architect, business, manager, white-collar, woman","architect, business, woman, manager, office, white-collar, papers, copy",Lisa Thiel,,๐Ÿ‘ฉโ€๐Ÿ’ผ,1F469-200D-1F4BC,4,303 +๐Ÿ‘ฉ๐Ÿปโ€๐Ÿ’ผ,1F469-1F3FB-200D-1F4BC,smileys-people,person-role,woman office worker: light skin tone,,,Lisa Thiel,1,๐Ÿ‘ฉโ€๐Ÿ’ผ,1F469-200D-1F4BC,4,304 +๐Ÿ‘ฉ๐Ÿผโ€๐Ÿ’ผ,1F469-1F3FC-200D-1F4BC,smileys-people,person-role,woman office worker: medium-light skin tone,,,Lisa Thiel,2,๐Ÿ‘ฉโ€๐Ÿ’ผ,1F469-200D-1F4BC,4,305 +๐Ÿ‘ฉ๐Ÿฝโ€๐Ÿ’ผ,1F469-1F3FD-200D-1F4BC,smileys-people,person-role,woman office worker: medium skin tone,,,Lisa Thiel,3,๐Ÿ‘ฉโ€๐Ÿ’ผ,1F469-200D-1F4BC,4,306 +๐Ÿ‘ฉ๐Ÿพโ€๐Ÿ’ผ,1F469-1F3FE-200D-1F4BC,smileys-people,person-role,woman office worker: medium-dark skin tone,,,Lisa Thiel,4,๐Ÿ‘ฉโ€๐Ÿ’ผ,1F469-200D-1F4BC,4,307 +๐Ÿ‘ฉ๐Ÿฟโ€๐Ÿ’ผ,1F469-1F3FF-200D-1F4BC,smileys-people,person-role,woman office worker: dark skin tone,,,Lisa Thiel,5,๐Ÿ‘ฉโ€๐Ÿ’ผ,1F469-200D-1F4BC,4,308 +๐Ÿ‘จโ€๐Ÿ”ฌ,1F468-200D-1F52C,smileys-people,person-role,man scientist,"biologist, chemist, engineer, man, physicist, scientist","biologist, chemist, engineer, man, mathematician, physicist, scientist, experiment, laboratory, lab, erlenmeyer flask, safety glasses",Lisa Thiel,,๐Ÿ‘จโ€๐Ÿ”ฌ,1F468-200D-1F52C,4,309 +๐Ÿ‘จ๐Ÿปโ€๐Ÿ”ฌ,1F468-1F3FB-200D-1F52C,smileys-people,person-role,man scientist: light skin tone,,,Lisa Thiel,1,๐Ÿ‘จโ€๐Ÿ”ฌ,1F468-200D-1F52C,4,310 +๐Ÿ‘จ๐Ÿผโ€๐Ÿ”ฌ,1F468-1F3FC-200D-1F52C,smileys-people,person-role,man scientist: medium-light skin tone,,,Lisa Thiel,2,๐Ÿ‘จโ€๐Ÿ”ฌ,1F468-200D-1F52C,4,311 +๐Ÿ‘จ๐Ÿฝโ€๐Ÿ”ฌ,1F468-1F3FD-200D-1F52C,smileys-people,person-role,man scientist: medium skin tone,,,Lisa Thiel,3,๐Ÿ‘จโ€๐Ÿ”ฌ,1F468-200D-1F52C,4,312 +๐Ÿ‘จ๐Ÿพโ€๐Ÿ”ฌ,1F468-1F3FE-200D-1F52C,smileys-people,person-role,man scientist: medium-dark skin tone,,,Lisa Thiel,4,๐Ÿ‘จโ€๐Ÿ”ฌ,1F468-200D-1F52C,4,313 +๐Ÿ‘จ๐Ÿฟโ€๐Ÿ”ฌ,1F468-1F3FF-200D-1F52C,smileys-people,person-role,man scientist: dark skin tone,,,Lisa Thiel,5,๐Ÿ‘จโ€๐Ÿ”ฌ,1F468-200D-1F52C,4,314 +๐Ÿ‘ฉโ€๐Ÿ”ฌ,1F469-200D-1F52C,smileys-people,person-role,woman scientist,"biologist, chemist, engineer, physicist, scientist, woman","biologist, chemist, engineer, woman, mathematician, physicist, scientist, experiment, laboratory, lab, erlenmeyer flask, safety glasses",Lisa Thiel,,๐Ÿ‘ฉโ€๐Ÿ”ฌ,1F469-200D-1F52C,4,315 +๐Ÿ‘ฉ๐Ÿปโ€๐Ÿ”ฌ,1F469-1F3FB-200D-1F52C,smileys-people,person-role,woman scientist: light skin tone,,,Lisa Thiel,1,๐Ÿ‘ฉโ€๐Ÿ”ฌ,1F469-200D-1F52C,4,316 +๐Ÿ‘ฉ๐Ÿผโ€๐Ÿ”ฌ,1F469-1F3FC-200D-1F52C,smileys-people,person-role,woman scientist: medium-light skin tone,,,Lisa Thiel,2,๐Ÿ‘ฉโ€๐Ÿ”ฌ,1F469-200D-1F52C,4,317 +๐Ÿ‘ฉ๐Ÿฝโ€๐Ÿ”ฌ,1F469-1F3FD-200D-1F52C,smileys-people,person-role,woman scientist: medium skin tone,,,Lisa Thiel,3,๐Ÿ‘ฉโ€๐Ÿ”ฌ,1F469-200D-1F52C,4,318 +๐Ÿ‘ฉ๐Ÿพโ€๐Ÿ”ฌ,1F469-1F3FE-200D-1F52C,smileys-people,person-role,woman scientist: medium-dark skin tone,,,Lisa Thiel,4,๐Ÿ‘ฉโ€๐Ÿ”ฌ,1F469-200D-1F52C,4,319 +๐Ÿ‘ฉ๐Ÿฟโ€๐Ÿ”ฌ,1F469-1F3FF-200D-1F52C,smileys-people,person-role,woman scientist: dark skin tone,,,Lisa Thiel,5,๐Ÿ‘ฉโ€๐Ÿ”ฌ,1F469-200D-1F52C,4,320 +๐Ÿ‘จโ€๐Ÿ’ป,1F468-200D-1F4BB,smileys-people,person-role,man technologist,"coder, developer, inventor, man, software, technologist","coder, developer, inventor, man, software, technologist, tablet, graphs, glasses, smart, clever, coding, code",Lisa Thiel,,๐Ÿ‘จโ€๐Ÿ’ป,1F468-200D-1F4BB,4,321 +๐Ÿ‘จ๐Ÿปโ€๐Ÿ’ป,1F468-1F3FB-200D-1F4BB,smileys-people,person-role,man technologist: light skin tone,,,Lisa Thiel,1,๐Ÿ‘จโ€๐Ÿ’ป,1F468-200D-1F4BB,4,322 +๐Ÿ‘จ๐Ÿผโ€๐Ÿ’ป,1F468-1F3FC-200D-1F4BB,smileys-people,person-role,man technologist: medium-light skin tone,,,Lisa Thiel,2,๐Ÿ‘จโ€๐Ÿ’ป,1F468-200D-1F4BB,4,323 +๐Ÿ‘จ๐Ÿฝโ€๐Ÿ’ป,1F468-1F3FD-200D-1F4BB,smileys-people,person-role,man technologist: medium skin tone,,,Lisa Thiel,3,๐Ÿ‘จโ€๐Ÿ’ป,1F468-200D-1F4BB,4,324 +๐Ÿ‘จ๐Ÿพโ€๐Ÿ’ป,1F468-1F3FE-200D-1F4BB,smileys-people,person-role,man technologist: medium-dark skin tone,,,Lisa Thiel,4,๐Ÿ‘จโ€๐Ÿ’ป,1F468-200D-1F4BB,4,325 +๐Ÿ‘จ๐Ÿฟโ€๐Ÿ’ป,1F468-1F3FF-200D-1F4BB,smileys-people,person-role,man technologist: dark skin tone,,,Lisa Thiel,5,๐Ÿ‘จโ€๐Ÿ’ป,1F468-200D-1F4BB,4,326 +๐Ÿ‘ฉโ€๐Ÿ’ป,1F469-200D-1F4BB,smileys-people,person-role,woman technologist,"coder, developer, inventor, software, technologist, woman","coder, developer, inventor, woman, software, technologist, tablet, graphs, glasses, smart, clever, coding, code",Lisa Thiel,,๐Ÿ‘ฉโ€๐Ÿ’ป,1F469-200D-1F4BB,4,327 +๐Ÿ‘ฉ๐Ÿปโ€๐Ÿ’ป,1F469-1F3FB-200D-1F4BB,smileys-people,person-role,woman technologist: light skin tone,,,Lisa Thiel,1,๐Ÿ‘ฉโ€๐Ÿ’ป,1F469-200D-1F4BB,4,328 +๐Ÿ‘ฉ๐Ÿผโ€๐Ÿ’ป,1F469-1F3FC-200D-1F4BB,smileys-people,person-role,woman technologist: medium-light skin tone,,,Lisa Thiel,2,๐Ÿ‘ฉโ€๐Ÿ’ป,1F469-200D-1F4BB,4,329 +๐Ÿ‘ฉ๐Ÿฝโ€๐Ÿ’ป,1F469-1F3FD-200D-1F4BB,smileys-people,person-role,woman technologist: medium skin tone,,,Lisa Thiel,3,๐Ÿ‘ฉโ€๐Ÿ’ป,1F469-200D-1F4BB,4,330 +๐Ÿ‘ฉ๐Ÿพโ€๐Ÿ’ป,1F469-1F3FE-200D-1F4BB,smileys-people,person-role,woman technologist: medium-dark skin tone,,,Lisa Thiel,4,๐Ÿ‘ฉโ€๐Ÿ’ป,1F469-200D-1F4BB,4,331 +๐Ÿ‘ฉ๐Ÿฟโ€๐Ÿ’ป,1F469-1F3FF-200D-1F4BB,smileys-people,person-role,woman technologist: dark skin tone,,,Lisa Thiel,5,๐Ÿ‘ฉโ€๐Ÿ’ป,1F469-200D-1F4BB,4,332 +๐Ÿ‘จโ€๐ŸŽค,1F468-200D-1F3A4,smileys-people,person-role,man singer,"actor, entertainer, man, rock, singer, star","actor, entertainer, man, rock, singer, star, microphone, musician",Lisa Thiel,,๐Ÿ‘จโ€๐ŸŽค,1F468-200D-1F3A4,4,333 +๐Ÿ‘จ๐Ÿปโ€๐ŸŽค,1F468-1F3FB-200D-1F3A4,smileys-people,person-role,man singer: light skin tone,,,Lisa Thiel,1,๐Ÿ‘จโ€๐ŸŽค,1F468-200D-1F3A4,4,334 +๐Ÿ‘จ๐Ÿผโ€๐ŸŽค,1F468-1F3FC-200D-1F3A4,smileys-people,person-role,man singer: medium-light skin tone,,,Lisa Thiel,2,๐Ÿ‘จโ€๐ŸŽค,1F468-200D-1F3A4,4,335 +๐Ÿ‘จ๐Ÿฝโ€๐ŸŽค,1F468-1F3FD-200D-1F3A4,smileys-people,person-role,man singer: medium skin tone,,,Lisa Thiel,3,๐Ÿ‘จโ€๐ŸŽค,1F468-200D-1F3A4,4,336 +๐Ÿ‘จ๐Ÿพโ€๐ŸŽค,1F468-1F3FE-200D-1F3A4,smileys-people,person-role,man singer: medium-dark skin tone,,,Lisa Thiel,4,๐Ÿ‘จโ€๐ŸŽค,1F468-200D-1F3A4,4,337 +๐Ÿ‘จ๐Ÿฟโ€๐ŸŽค,1F468-1F3FF-200D-1F3A4,smileys-people,person-role,man singer: dark skin tone,,,Lisa Thiel,5,๐Ÿ‘จโ€๐ŸŽค,1F468-200D-1F3A4,4,338 +๐Ÿ‘ฉโ€๐ŸŽค,1F469-200D-1F3A4,smileys-people,person-role,woman singer,"actor, entertainer, rock, singer, star, woman","actor, entertainer, woman, rock, singer, star, microphone, musician, glamour, glamorous, dress, wavy hair",Lisa Thiel,,๐Ÿ‘ฉโ€๐ŸŽค,1F469-200D-1F3A4,4,339 +๐Ÿ‘ฉ๐Ÿปโ€๐ŸŽค,1F469-1F3FB-200D-1F3A4,smileys-people,person-role,woman singer: light skin tone,,,Lisa Thiel,1,๐Ÿ‘ฉโ€๐ŸŽค,1F469-200D-1F3A4,4,340 +๐Ÿ‘ฉ๐Ÿผโ€๐ŸŽค,1F469-1F3FC-200D-1F3A4,smileys-people,person-role,woman singer: medium-light skin tone,,,Lisa Thiel,2,๐Ÿ‘ฉโ€๐ŸŽค,1F469-200D-1F3A4,4,341 +๐Ÿ‘ฉ๐Ÿฝโ€๐ŸŽค,1F469-1F3FD-200D-1F3A4,smileys-people,person-role,woman singer: medium skin tone,,,Lisa Thiel,3,๐Ÿ‘ฉโ€๐ŸŽค,1F469-200D-1F3A4,4,342 +๐Ÿ‘ฉ๐Ÿพโ€๐ŸŽค,1F469-1F3FE-200D-1F3A4,smileys-people,person-role,woman singer: medium-dark skin tone,,,Lisa Thiel,4,๐Ÿ‘ฉโ€๐ŸŽค,1F469-200D-1F3A4,4,343 +๐Ÿ‘ฉ๐Ÿฟโ€๐ŸŽค,1F469-1F3FF-200D-1F3A4,smileys-people,person-role,woman singer: dark skin tone,,,Lisa Thiel,5,๐Ÿ‘ฉโ€๐ŸŽค,1F469-200D-1F3A4,4,344 +๐Ÿ‘จโ€๐ŸŽจ,1F468-200D-1F3A8,smileys-people,person-role,man artist,"artist, man, palette","artist, man, palette, brush, beret, french hat, colors, painter, art, drawing, painting, illustrator, illustrating, creative, creativity",Lisa Thiel,,๐Ÿ‘จโ€๐ŸŽจ,1F468-200D-1F3A8,4,345 +๐Ÿ‘จ๐Ÿปโ€๐ŸŽจ,1F468-1F3FB-200D-1F3A8,smileys-people,person-role,man artist: light skin tone,,,Lisa Thiel,1,๐Ÿ‘จโ€๐ŸŽจ,1F468-200D-1F3A8,4,346 +๐Ÿ‘จ๐Ÿผโ€๐ŸŽจ,1F468-1F3FC-200D-1F3A8,smileys-people,person-role,man artist: medium-light skin tone,,,Lisa Thiel,2,๐Ÿ‘จโ€๐ŸŽจ,1F468-200D-1F3A8,4,347 +๐Ÿ‘จ๐Ÿฝโ€๐ŸŽจ,1F468-1F3FD-200D-1F3A8,smileys-people,person-role,man artist: medium skin tone,,,Lisa Thiel,3,๐Ÿ‘จโ€๐ŸŽจ,1F468-200D-1F3A8,4,348 +๐Ÿ‘จ๐Ÿพโ€๐ŸŽจ,1F468-1F3FE-200D-1F3A8,smileys-people,person-role,man artist: medium-dark skin tone,,,Lisa Thiel,4,๐Ÿ‘จโ€๐ŸŽจ,1F468-200D-1F3A8,4,349 +๐Ÿ‘จ๐Ÿฟโ€๐ŸŽจ,1F468-1F3FF-200D-1F3A8,smileys-people,person-role,man artist: dark skin tone,,,Lisa Thiel,5,๐Ÿ‘จโ€๐ŸŽจ,1F468-200D-1F3A8,4,350 +๐Ÿ‘ฉโ€๐ŸŽจ,1F469-200D-1F3A8,smileys-people,person-role,woman artist,"artist, palette, woman","artist, woman, palette, brush, beret, french hat, colors, painter, art, drawing, painting, illustrator, illustrating, creative, creativity",Lisa Thiel,,๐Ÿ‘ฉโ€๐ŸŽจ,1F469-200D-1F3A8,4,351 +๐Ÿ‘ฉ๐Ÿปโ€๐ŸŽจ,1F469-1F3FB-200D-1F3A8,smileys-people,person-role,woman artist: light skin tone,,,Lisa Thiel,1,๐Ÿ‘ฉโ€๐ŸŽจ,1F469-200D-1F3A8,4,352 +๐Ÿ‘ฉ๐Ÿผโ€๐ŸŽจ,1F469-1F3FC-200D-1F3A8,smileys-people,person-role,woman artist: medium-light skin tone,,,Lisa Thiel,2,๐Ÿ‘ฉโ€๐ŸŽจ,1F469-200D-1F3A8,4,353 +๐Ÿ‘ฉ๐Ÿฝโ€๐ŸŽจ,1F469-1F3FD-200D-1F3A8,smileys-people,person-role,woman artist: medium skin tone,,,Lisa Thiel,3,๐Ÿ‘ฉโ€๐ŸŽจ,1F469-200D-1F3A8,4,354 +๐Ÿ‘ฉ๐Ÿพโ€๐ŸŽจ,1F469-1F3FE-200D-1F3A8,smileys-people,person-role,woman artist: medium-dark skin tone,,,Lisa Thiel,4,๐Ÿ‘ฉโ€๐ŸŽจ,1F469-200D-1F3A8,4,355 +๐Ÿ‘ฉ๐Ÿฟโ€๐ŸŽจ,1F469-1F3FF-200D-1F3A8,smileys-people,person-role,woman artist: dark skin tone,,,Lisa Thiel,5,๐Ÿ‘ฉโ€๐ŸŽจ,1F469-200D-1F3A8,4,356 +๐Ÿ‘จโ€โœˆ๏ธ,1F468-200D-2708-FE0F,smileys-people,person-role,man pilot,"man, pilot, plane","man, pilot, plane, flying, control stick",Lisa Thiel,,๐Ÿ‘จโ€โœˆ๏ธ,1F468-200D-2708-FE0F,4,357 +๐Ÿ‘จ๐Ÿปโ€โœˆ๏ธ,1F468-1F3FB-200D-2708-FE0F,smileys-people,person-role,man pilot: light skin tone,,,Lisa Thiel,1,๐Ÿ‘จโ€โœˆ๏ธ,1F468-200D-2708-FE0F,4,359 +๐Ÿ‘จ๐Ÿผโ€โœˆ๏ธ,1F468-1F3FC-200D-2708-FE0F,smileys-people,person-role,man pilot: medium-light skin tone,,,Lisa Thiel,2,๐Ÿ‘จโ€โœˆ๏ธ,1F468-200D-2708-FE0F,4,361 +๐Ÿ‘จ๐Ÿฝโ€โœˆ๏ธ,1F468-1F3FD-200D-2708-FE0F,smileys-people,person-role,man pilot: medium skin tone,,,Lisa Thiel,3,๐Ÿ‘จโ€โœˆ๏ธ,1F468-200D-2708-FE0F,4,363 +๐Ÿ‘จ๐Ÿพโ€โœˆ๏ธ,1F468-1F3FE-200D-2708-FE0F,smileys-people,person-role,man pilot: medium-dark skin tone,,,Lisa Thiel,4,๐Ÿ‘จโ€โœˆ๏ธ,1F468-200D-2708-FE0F,4,365 +๐Ÿ‘จ๐Ÿฟโ€โœˆ๏ธ,1F468-1F3FF-200D-2708-FE0F,smileys-people,person-role,man pilot: dark skin tone,,,Lisa Thiel,5,๐Ÿ‘จโ€โœˆ๏ธ,1F468-200D-2708-FE0F,4,367 +๐Ÿ‘ฉโ€โœˆ๏ธ,1F469-200D-2708-FE0F,smileys-people,person-role,woman pilot,"pilot, plane, woman","woman, pilot, plane, flying, control stick",Lisa Thiel,,๐Ÿ‘ฉโ€โœˆ๏ธ,1F469-200D-2708-FE0F,4,369 +๐Ÿ‘ฉ๐Ÿปโ€โœˆ๏ธ,1F469-1F3FB-200D-2708-FE0F,smileys-people,person-role,woman pilot: light skin tone,,,Lisa Thiel,1,๐Ÿ‘ฉโ€โœˆ๏ธ,1F469-200D-2708-FE0F,4,371 +๐Ÿ‘ฉ๐Ÿผโ€โœˆ๏ธ,1F469-1F3FC-200D-2708-FE0F,smileys-people,person-role,woman pilot: medium-light skin tone,,,Lisa Thiel,2,๐Ÿ‘ฉโ€โœˆ๏ธ,1F469-200D-2708-FE0F,4,373 +๐Ÿ‘ฉ๐Ÿฝโ€โœˆ๏ธ,1F469-1F3FD-200D-2708-FE0F,smileys-people,person-role,woman pilot: medium skin tone,,,Lisa Thiel,3,๐Ÿ‘ฉโ€โœˆ๏ธ,1F469-200D-2708-FE0F,4,375 +๐Ÿ‘ฉ๐Ÿพโ€โœˆ๏ธ,1F469-1F3FE-200D-2708-FE0F,smileys-people,person-role,woman pilot: medium-dark skin tone,,,Lisa Thiel,4,๐Ÿ‘ฉโ€โœˆ๏ธ,1F469-200D-2708-FE0F,4,377 +๐Ÿ‘ฉ๐Ÿฟโ€โœˆ๏ธ,1F469-1F3FF-200D-2708-FE0F,smileys-people,person-role,woman pilot: dark skin tone,,,Lisa Thiel,5,๐Ÿ‘ฉโ€โœˆ๏ธ,1F469-200D-2708-FE0F,4,379 +๐Ÿ‘จโ€๐Ÿš€,1F468-200D-1F680,smileys-people,person-role,man astronaut,"astronaut, man, rocket","astronaut, man, rocket, spacesuit, space, universe, spaceship",Lisa Thiel,,๐Ÿ‘จโ€๐Ÿš€,1F468-200D-1F680,4,381 +๐Ÿ‘จ๐Ÿปโ€๐Ÿš€,1F468-1F3FB-200D-1F680,smileys-people,person-role,man astronaut: light skin tone,,,Lisa Thiel,1,๐Ÿ‘จโ€๐Ÿš€,1F468-200D-1F680,4,382 +๐Ÿ‘จ๐Ÿผโ€๐Ÿš€,1F468-1F3FC-200D-1F680,smileys-people,person-role,man astronaut: medium-light skin tone,,,Lisa Thiel,2,๐Ÿ‘จโ€๐Ÿš€,1F468-200D-1F680,4,383 +๐Ÿ‘จ๐Ÿฝโ€๐Ÿš€,1F468-1F3FD-200D-1F680,smileys-people,person-role,man astronaut: medium skin tone,,,Lisa Thiel,3,๐Ÿ‘จโ€๐Ÿš€,1F468-200D-1F680,4,384 +๐Ÿ‘จ๐Ÿพโ€๐Ÿš€,1F468-1F3FE-200D-1F680,smileys-people,person-role,man astronaut: medium-dark skin tone,,,Lisa Thiel,4,๐Ÿ‘จโ€๐Ÿš€,1F468-200D-1F680,4,385 +๐Ÿ‘จ๐Ÿฟโ€๐Ÿš€,1F468-1F3FF-200D-1F680,smileys-people,person-role,man astronaut: dark skin tone,,,Lisa Thiel,5,๐Ÿ‘จโ€๐Ÿš€,1F468-200D-1F680,4,386 +๐Ÿ‘ฉโ€๐Ÿš€,1F469-200D-1F680,smileys-people,person-role,woman astronaut,"astronaut, rocket, woman","astronaut, woman, rocket, spacesuit, space, universe, spaceship",Lisa Thiel,,๐Ÿ‘ฉโ€๐Ÿš€,1F469-200D-1F680,4,387 +๐Ÿ‘ฉ๐Ÿปโ€๐Ÿš€,1F469-1F3FB-200D-1F680,smileys-people,person-role,woman astronaut: light skin tone,,,Lisa Thiel,1,๐Ÿ‘ฉโ€๐Ÿš€,1F469-200D-1F680,4,388 +๐Ÿ‘ฉ๐Ÿผโ€๐Ÿš€,1F469-1F3FC-200D-1F680,smileys-people,person-role,woman astronaut: medium-light skin tone,,,Lisa Thiel,2,๐Ÿ‘ฉโ€๐Ÿš€,1F469-200D-1F680,4,389 +๐Ÿ‘ฉ๐Ÿฝโ€๐Ÿš€,1F469-1F3FD-200D-1F680,smileys-people,person-role,woman astronaut: medium skin tone,,,Lisa Thiel,3,๐Ÿ‘ฉโ€๐Ÿš€,1F469-200D-1F680,4,390 +๐Ÿ‘ฉ๐Ÿพโ€๐Ÿš€,1F469-1F3FE-200D-1F680,smileys-people,person-role,woman astronaut: medium-dark skin tone,,,Lisa Thiel,4,๐Ÿ‘ฉโ€๐Ÿš€,1F469-200D-1F680,4,391 +๐Ÿ‘ฉ๐Ÿฟโ€๐Ÿš€,1F469-1F3FF-200D-1F680,smileys-people,person-role,woman astronaut: dark skin tone,,,Lisa Thiel,5,๐Ÿ‘ฉโ€๐Ÿš€,1F469-200D-1F680,4,392 +๐Ÿ‘จโ€๐Ÿš’,1F468-200D-1F692,smileys-people,person-role,man firefighter,"firefighter, firetruck, man","firefighter, firetruck, man, water hose, save, rescue, red helmet",Lisa Thiel,,๐Ÿ‘จโ€๐Ÿš’,1F468-200D-1F692,4,393 +๐Ÿ‘จ๐Ÿปโ€๐Ÿš’,1F468-1F3FB-200D-1F692,smileys-people,person-role,man firefighter: light skin tone,,,Lisa Thiel,1,๐Ÿ‘จโ€๐Ÿš’,1F468-200D-1F692,4,394 +๐Ÿ‘จ๐Ÿผโ€๐Ÿš’,1F468-1F3FC-200D-1F692,smileys-people,person-role,man firefighter: medium-light skin tone,,,Lisa Thiel,2,๐Ÿ‘จโ€๐Ÿš’,1F468-200D-1F692,4,395 +๐Ÿ‘จ๐Ÿฝโ€๐Ÿš’,1F468-1F3FD-200D-1F692,smileys-people,person-role,man firefighter: medium skin tone,,,Lisa Thiel,3,๐Ÿ‘จโ€๐Ÿš’,1F468-200D-1F692,4,396 +๐Ÿ‘จ๐Ÿพโ€๐Ÿš’,1F468-1F3FE-200D-1F692,smileys-people,person-role,man firefighter: medium-dark skin tone,,,Lisa Thiel,4,๐Ÿ‘จโ€๐Ÿš’,1F468-200D-1F692,4,397 +๐Ÿ‘จ๐Ÿฟโ€๐Ÿš’,1F468-1F3FF-200D-1F692,smileys-people,person-role,man firefighter: dark skin tone,,,Lisa Thiel,5,๐Ÿ‘จโ€๐Ÿš’,1F468-200D-1F692,4,398 +๐Ÿ‘ฉโ€๐Ÿš’,1F469-200D-1F692,smileys-people,person-role,woman firefighter,"firefighter, firetruck, woman","firefighter, firetruck, woman, water hose, save, rescue, red helmet",Lisa Thiel,,๐Ÿ‘ฉโ€๐Ÿš’,1F469-200D-1F692,4,399 +๐Ÿ‘ฉ๐Ÿปโ€๐Ÿš’,1F469-1F3FB-200D-1F692,smileys-people,person-role,woman firefighter: light skin tone,,,Lisa Thiel,1,๐Ÿ‘ฉโ€๐Ÿš’,1F469-200D-1F692,4,400 +๐Ÿ‘ฉ๐Ÿผโ€๐Ÿš’,1F469-1F3FC-200D-1F692,smileys-people,person-role,woman firefighter: medium-light skin tone,,,Lisa Thiel,2,๐Ÿ‘ฉโ€๐Ÿš’,1F469-200D-1F692,4,401 +๐Ÿ‘ฉ๐Ÿฝโ€๐Ÿš’,1F469-1F3FD-200D-1F692,smileys-people,person-role,woman firefighter: medium skin tone,,,Lisa Thiel,3,๐Ÿ‘ฉโ€๐Ÿš’,1F469-200D-1F692,4,402 +๐Ÿ‘ฉ๐Ÿพโ€๐Ÿš’,1F469-1F3FE-200D-1F692,smileys-people,person-role,woman firefighter: medium-dark skin tone,,,Lisa Thiel,4,๐Ÿ‘ฉโ€๐Ÿš’,1F469-200D-1F692,4,403 +๐Ÿ‘ฉ๐Ÿฟโ€๐Ÿš’,1F469-1F3FF-200D-1F692,smileys-people,person-role,woman firefighter: dark skin tone,,,Lisa Thiel,5,๐Ÿ‘ฉโ€๐Ÿš’,1F469-200D-1F692,4,404 +๐Ÿ‘ฎ,1F46E,smileys-people,person-role,police officer,"cop, officer, police","cop, officer, police, law, justice, blue, badge",Lisa Thiel,,๐Ÿ‘ฎ,1F46E,1,405 +๐Ÿ‘ฎ๐Ÿป,1F46E-1F3FB,smileys-people,person-role,police officer: light skin tone,,,Lisa Thiel,1,๐Ÿ‘ฎ,1F46E,2,406 +๐Ÿ‘ฎ๐Ÿผ,1F46E-1F3FC,smileys-people,person-role,police officer: medium-light skin tone,,,Lisa Thiel,2,๐Ÿ‘ฎ,1F46E,2,407 +๐Ÿ‘ฎ๐Ÿฝ,1F46E-1F3FD,smileys-people,person-role,police officer: medium skin tone,,,Lisa Thiel,3,๐Ÿ‘ฎ,1F46E,2,408 +๐Ÿ‘ฎ๐Ÿพ,1F46E-1F3FE,smileys-people,person-role,police officer: medium-dark skin tone,,,Lisa Thiel,4,๐Ÿ‘ฎ,1F46E,2,409 +๐Ÿ‘ฎ๐Ÿฟ,1F46E-1F3FF,smileys-people,person-role,police officer: dark skin tone,,,Lisa Thiel,5,๐Ÿ‘ฎ,1F46E,2,410 +๐Ÿ•ต๏ธ,1F575,smileys-people,person-role,detective,"sleuth, spy","sleuth, spy, sherlock, investigator, magnifier, magnifying glass, cloak, coat",Lisa Thiel,,๐Ÿ•ต๏ธ,1F575,1,436 +๐Ÿ•ต๐Ÿป,1F575-1F3FB,smileys-people,person-role,detective: light skin tone,,,Lisa Thiel,1,๐Ÿ•ต๏ธ,1F575,2,437 +๐Ÿ•ต๐Ÿผ,1F575-1F3FC,smileys-people,person-role,detective: medium-light skin tone,,,Lisa Thiel,2,๐Ÿ•ต๏ธ,1F575,2,438 +๐Ÿ•ต๐Ÿฝ,1F575-1F3FD,smileys-people,person-role,detective: medium skin tone,,,Lisa Thiel,3,๐Ÿ•ต๏ธ,1F575,2,439 +๐Ÿ•ต๐Ÿพ,1F575-1F3FE,smileys-people,person-role,detective: medium-dark skin tone,,,Lisa Thiel,4,๐Ÿ•ต๏ธ,1F575,2,440 +๐Ÿ•ต๐Ÿฟ,1F575-1F3FF,smileys-people,person-role,detective: dark skin tone,,,Lisa Thiel,5,๐Ÿ•ต๏ธ,1F575,2,441 +๐Ÿ’‚,1F482,smileys-people,person-role,guard,guard,"guard, britain, great britain, queen, england, london, royal guard, furry hat guard, protection",Lisa Thiel,,๐Ÿ’‚,1F482,1,470 +๐Ÿ’‚๐Ÿป,1F482-1F3FB,smileys-people,person-role,guard: light skin tone,,,Lisa Thiel,1,๐Ÿ’‚,1F482,2,471 +๐Ÿ’‚๐Ÿผ,1F482-1F3FC,smileys-people,person-role,guard: medium-light skin tone,,,Lisa Thiel,2,๐Ÿ’‚,1F482,2,472 +๐Ÿ’‚๐Ÿฝ,1F482-1F3FD,smileys-people,person-role,guard: medium skin tone,,,Lisa Thiel,3,๐Ÿ’‚,1F482,2,473 +๐Ÿ’‚๐Ÿพ,1F482-1F3FE,smileys-people,person-role,guard: medium-dark skin tone,,,Lisa Thiel,4,๐Ÿ’‚,1F482,2,474 +๐Ÿ’‚๐Ÿฟ,1F482-1F3FF,smileys-people,person-role,guard: dark skin tone,,,Lisa Thiel,5,๐Ÿ’‚,1F482,2,475 +๐Ÿ‘ท,1F477,smileys-people,person-role,construction worker,"construction, hat, worker","construction, hat, worker, striped west, helmet",Lisa Thiel,,๐Ÿ‘ท,1F477,1,500 +๐Ÿ‘ท๐Ÿป,1F477-1F3FB,smileys-people,person-role,construction worker: light skin tone,,,Lisa Thiel,1,๐Ÿ‘ท,1F477,2,501 +๐Ÿ‘ท๐Ÿผ,1F477-1F3FC,smileys-people,person-role,construction worker: medium-light skin tone,,,Lisa Thiel,2,๐Ÿ‘ท,1F477,2,502 +๐Ÿ‘ท๐Ÿฝ,1F477-1F3FD,smileys-people,person-role,construction worker: medium skin tone,,,Lisa Thiel,3,๐Ÿ‘ท,1F477,2,503 +๐Ÿ‘ท๐Ÿพ,1F477-1F3FE,smileys-people,person-role,construction worker: medium-dark skin tone,,,Lisa Thiel,4,๐Ÿ‘ท,1F477,2,504 +๐Ÿ‘ท๐Ÿฟ,1F477-1F3FF,smileys-people,person-role,construction worker: dark skin tone,,,Lisa Thiel,5,๐Ÿ‘ท,1F477,2,505 +๐Ÿคด,1F934,smileys-people,person-role,prince,prince,"prince, charming, crown, fairy tale, fantasy, pink",Lisa Thiel,,๐Ÿคด,1F934,3,530 +๐Ÿคด๐Ÿป,1F934-1F3FB,smileys-people,person-role,prince: light skin tone,,,Lisa Thiel,1,๐Ÿคด,1F934,3,531 +๐Ÿคด๐Ÿผ,1F934-1F3FC,smileys-people,person-role,prince: medium-light skin tone,,,Lisa Thiel,2,๐Ÿคด,1F934,3,532 +๐Ÿคด๐Ÿฝ,1F934-1F3FD,smileys-people,person-role,prince: medium skin tone,,,Lisa Thiel,3,๐Ÿคด,1F934,3,533 +๐Ÿคด๐Ÿพ,1F934-1F3FE,smileys-people,person-role,prince: medium-dark skin tone,,,Lisa Thiel,4,๐Ÿคด,1F934,3,534 +๐Ÿคด๐Ÿฟ,1F934-1F3FF,smileys-people,person-role,prince: dark skin tone,,,Lisa Thiel,5,๐Ÿคด,1F934,3,535 +๐Ÿ‘ธ,1F478,smileys-people,person-role,princess,"fairy tale, fantasy","fairy tale, fantasy, crown, pink dress, princess crown",Lisa Thiel,,๐Ÿ‘ธ,1F478,1,536 +๐Ÿ‘ธ๐Ÿป,1F478-1F3FB,smileys-people,person-role,princess: light skin tone,,,Lisa Thiel,1,๐Ÿ‘ธ,1F478,2,537 +๐Ÿ‘ธ๐Ÿผ,1F478-1F3FC,smileys-people,person-role,princess: medium-light skin tone,,,Lisa Thiel,2,๐Ÿ‘ธ,1F478,2,538 +๐Ÿ‘ธ๐Ÿฝ,1F478-1F3FD,smileys-people,person-role,princess: medium skin tone,,,Lisa Thiel,3,๐Ÿ‘ธ,1F478,2,539 +๐Ÿ‘ธ๐Ÿพ,1F478-1F3FE,smileys-people,person-role,princess: medium-dark skin tone,,,Lisa Thiel,4,๐Ÿ‘ธ,1F478,2,540 +๐Ÿ‘ธ๐Ÿฟ,1F478-1F3FF,smileys-people,person-role,princess: dark skin tone,,,Lisa Thiel,5,๐Ÿ‘ธ,1F478,2,541 +๐Ÿ‘ณ,1F473,smileys-people,person-role,person wearing turban,turban,"man, beard, turban, religion",Lisa Thiel,,๐Ÿ‘ณ,1F473,1,542 +๐Ÿ‘ณ๐Ÿป,1F473-1F3FB,smileys-people,person-role,person wearing turban: light skin tone,,,Lisa Thiel,1,๐Ÿ‘ณ,1F473,2,543 +๐Ÿ‘ณ๐Ÿผ,1F473-1F3FC,smileys-people,person-role,person wearing turban: medium-light skin tone,,,Lisa Thiel,2,๐Ÿ‘ณ,1F473,2,544 +๐Ÿ‘ณ๐Ÿฝ,1F473-1F3FD,smileys-people,person-role,person wearing turban: medium skin tone,,,Lisa Thiel,3,๐Ÿ‘ณ,1F473,2,545 +๐Ÿ‘ณ๐Ÿพ,1F473-1F3FE,smileys-people,person-role,person wearing turban: medium-dark skin tone,,,Lisa Thiel,4,๐Ÿ‘ณ,1F473,2,546 +๐Ÿ‘ณ๐Ÿฟ,1F473-1F3FF,smileys-people,person-role,person wearing turban: dark skin tone,,,Lisa Thiel,5,๐Ÿ‘ณ,1F473,2,547 +๐Ÿง•,1F9D5,smileys-people,person-role,woman with headscarf,"headscarf, hijab, mantilla, tichel","headscarf, hijab, mantilla, tichel, religion, religous, muslim",Lisa Thiel,,๐Ÿง•,1F9D5,5,578 +๐Ÿง•๐Ÿป,1F9D5-1F3FB,smileys-people,person-role,woman with headscarf: light skin tone,,,Lisa Thiel,1,๐Ÿง•,1F9D5,5,579 +๐Ÿง•๐Ÿผ,1F9D5-1F3FC,smileys-people,person-role,woman with headscarf: medium-light skin tone,,,Lisa Thiel,2,๐Ÿง•,1F9D5,5,580 +๐Ÿง•๐Ÿฝ,1F9D5-1F3FD,smileys-people,person-role,woman with headscarf: medium skin tone,,,Lisa Thiel,3,๐Ÿง•,1F9D5,5,581 +๐Ÿง•๐Ÿพ,1F9D5-1F3FE,smileys-people,person-role,woman with headscarf: medium-dark skin tone,,,Lisa Thiel,4,๐Ÿง•,1F9D5,5,582 +๐Ÿง•๐Ÿฟ,1F9D5-1F3FF,smileys-people,person-role,woman with headscarf: dark skin tone,,,Lisa Thiel,5,๐Ÿง•,1F9D5,5,583 +๐Ÿง”,1F9D4,smileys-people,person,man: beard,"beard, person","beard, man, facial hair, man, manly",Lisa Thiel,,๐Ÿง”,1F9D4,5,584 +๐Ÿง”๐Ÿป,1F9D4-1F3FB,smileys-people,person-role,"man: light skin tone, beard",,,Lisa Thiel,1,๐Ÿง”,1F9D4,5,585 +๐Ÿง”๐Ÿผ,1F9D4-1F3FC,smileys-people,person-role,"man: medium-light skin tone, beard",,,Lisa Thiel,2,๐Ÿง”,1F9D4,5,586 +๐Ÿง”๐Ÿฝ,1F9D4-1F3FD,smileys-people,person-role,"man: medium skin tone, beard",,,Lisa Thiel,3,๐Ÿง”,1F9D4,5,587 +๐Ÿง”๐Ÿพ,1F9D4-1F3FE,smileys-people,person-role,"man: medium-dark skin tone, beard",,,Lisa Thiel,4,๐Ÿง”,1F9D4,5,588 +๐Ÿง”๐Ÿฟ,1F9D4-1F3FF,smileys-people,person-role,"man: dark skin tone, beard",,,Lisa Thiel,5,๐Ÿง”,1F9D4,5,589 +๐Ÿ‘ฐ,1F470,smileys-people,person-role,bride with veil,"bride, veil, wedding","bride, veil, wedding, woman, female, marriage, married, love, wedding dress",Lisa Thiel,,๐Ÿ‘ฐ,1F470,1,674 +๐Ÿ‘ฐ๐Ÿป,1F470-1F3FB,smileys-people,person-role,bride with veil: light skin tone,,,Lisa Thiel,1,๐Ÿ‘ฐ,1F470,2,675 +๐Ÿ‘ฐ๐Ÿผ,1F470-1F3FC,smileys-people,person-role,bride with veil: medium-light skin tone,,,Lisa Thiel,2,๐Ÿ‘ฐ,1F470,2,676 +๐Ÿ‘ฐ๐Ÿฝ,1F470-1F3FD,smileys-people,person-role,bride with veil: medium skin tone,,,Lisa Thiel,3,๐Ÿ‘ฐ,1F470,2,677 +๐Ÿ‘ฐ๐Ÿพ,1F470-1F3FE,smileys-people,person-role,bride with veil: medium-dark skin tone,,,Lisa Thiel,4,๐Ÿ‘ฐ,1F470,2,678 +๐Ÿ‘ฐ๐Ÿฟ,1F470-1F3FF,smileys-people,person-role,bride with veil: dark skin tone,,,Lisa Thiel,5,๐Ÿ‘ฐ,1F470,2,679 +๐Ÿคฐ,1F930,smileys-people,person-role,pregnant woman,"pregnant, woman","pregnant, woman, child, birth, love, mother, motherhood, trust, baby",Lisa Thiel,,๐Ÿคฐ,1F930,3,680 +๐Ÿคฐ๐Ÿป,1F930-1F3FB,smileys-people,person-role,pregnant woman: light skin tone,,,Lisa Thiel,1,๐Ÿคฐ,1F930,3,681 +๐Ÿคฐ๐Ÿผ,1F930-1F3FC,smileys-people,person-role,pregnant woman: medium-light skin tone,,,Lisa Thiel,2,๐Ÿคฐ,1F930,3,682 +๐Ÿคฐ๐Ÿฝ,1F930-1F3FD,smileys-people,person-role,pregnant woman: medium skin tone,,,Lisa Thiel,3,๐Ÿคฐ,1F930,3,683 +๐Ÿคฐ๐Ÿพ,1F930-1F3FE,smileys-people,person-role,pregnant woman: medium-dark skin tone,,,Lisa Thiel,4,๐Ÿคฐ,1F930,3,684 +๐Ÿคฐ๐Ÿฟ,1F930-1F3FF,smileys-people,person-role,pregnant woman: dark skin tone,,,Lisa Thiel,5,๐Ÿคฐ,1F930,3,685 +๐Ÿคฑ,1F931,smileys-people,person-role,breast-feeding,"baby, breast, nursing","baby, breast, nursing, love, trust, mother, motherhood",Lisa Thiel,,๐Ÿคฑ,1F931,5,686 +๐Ÿคฑ๐Ÿป,1F931-1F3FB,smileys-people,person-role,breast-feeding: light skin tone,,,Lisa Thiel,1,๐Ÿคฑ,1F931,5,687 +๐Ÿคฑ๐Ÿผ,1F931-1F3FC,smileys-people,person-role,breast-feeding: medium-light skin tone,,,Lisa Thiel,2,๐Ÿคฑ,1F931,5,688 +๐Ÿคฑ๐Ÿฝ,1F931-1F3FD,smileys-people,person-role,breast-feeding: medium skin tone,,,Lisa Thiel,3,๐Ÿคฑ,1F931,5,689 +๐Ÿคฑ๐Ÿพ,1F931-1F3FE,smileys-people,person-role,breast-feeding: medium-dark skin tone,,,Lisa Thiel,4,๐Ÿคฑ,1F931,5,690 +๐Ÿคฑ๐Ÿฟ,1F931-1F3FF,smileys-people,person-role,breast-feeding: dark skin tone,,,Lisa Thiel,5,๐Ÿคฑ,1F931,5,691 +๐ŸŽ…,1F385,smileys-people,person-fantasy,Santa Claus,"celebration, christmas, claus, father, santa, santa claus","christmas, holiday, jolly, happy, saint nicholas, santa claus, xmas, celebration",Lisa Thiel,,๐ŸŽ…,1F385,1,698 +๐ŸŽ…๐Ÿป,1F385-1F3FB,smileys-people,person-fantasy,Santa Claus: light skin tone,,,Lisa Thiel,1,๐ŸŽ…,1F385,2,699 +๐ŸŽ…๐Ÿผ,1F385-1F3FC,smileys-people,person-fantasy,Santa Claus: medium-light skin tone,,,Lisa Thiel,2,๐ŸŽ…,1F385,2,700 +๐ŸŽ…๐Ÿฝ,1F385-1F3FD,smileys-people,person-fantasy,Santa Claus: medium skin tone,,,Lisa Thiel,3,๐ŸŽ…,1F385,2,701 +๐ŸŽ…๐Ÿพ,1F385-1F3FE,smileys-people,person-fantasy,Santa Claus: medium-dark skin tone,,,Lisa Thiel,4,๐ŸŽ…,1F385,2,702 +๐ŸŽ…๐Ÿฟ,1F385-1F3FF,smileys-people,person-fantasy,Santa Claus: dark skin tone,,,Lisa Thiel,5,๐ŸŽ…,1F385,2,703 +๐Ÿคถ,1F936,smileys-people,person-fantasy,Mrs. Claus,"celebration, christmas, claus, mother, mrs., mrs. claus","christmas, holiday, jolly, happy, mrs. clause, xmas, celebration",Lisa Thiel,,๐Ÿคถ,1F936,3,704 +๐Ÿคถ๐Ÿป,1F936-1F3FB,smileys-people,person-fantasy,Mrs. Claus: light skin tone,,,Lisa Thiel,1,๐Ÿคถ,1F936,3,705 +๐Ÿคถ๐Ÿผ,1F936-1F3FC,smileys-people,person-fantasy,Mrs. Claus: medium-light skin tone,,,Lisa Thiel,2,๐Ÿคถ,1F936,3,706 +๐Ÿคถ๐Ÿฝ,1F936-1F3FD,smileys-people,person-fantasy,Mrs. Claus: medium skin tone,,,Lisa Thiel,3,๐Ÿคถ,1F936,3,707 +๐Ÿคถ๐Ÿพ,1F936-1F3FE,smileys-people,person-fantasy,Mrs. Claus: medium-dark skin tone,,,Lisa Thiel,4,๐Ÿคถ,1F936,3,708 +๐Ÿคถ๐Ÿฟ,1F936-1F3FF,smileys-people,person-fantasy,Mrs. Claus: dark skin tone,,,Lisa Thiel,5,๐Ÿคถ,1F936,3,709 +๐Ÿง™,1F9D9,smileys-people,person-fantasy,mage,"sorcerer, sorceress, witch, wizard","sorcerer, sorceress, witch, wizard, magician, wand, sage",Lisa Thiel,,๐Ÿง™,1F9D9,5,770 +๐Ÿง™๐Ÿป,1F9D9-1F3FB,smileys-people,person-fantasy,mage: light skin tone,,,Lisa Thiel,1,๐Ÿง™,1F9D9,5,771 +๐Ÿง™๐Ÿผ,1F9D9-1F3FC,smileys-people,person-fantasy,mage: medium-light skin tone,,,Lisa Thiel,2,๐Ÿง™,1F9D9,5,772 +๐Ÿง™๐Ÿฝ,1F9D9-1F3FD,smileys-people,person-fantasy,mage: medium skin tone,,,Lisa Thiel,3,๐Ÿง™,1F9D9,5,773 +๐Ÿง™๐Ÿพ,1F9D9-1F3FE,smileys-people,person-fantasy,mage: medium-dark skin tone,,,Lisa Thiel,4,๐Ÿง™,1F9D9,5,774 +๐Ÿง™๐Ÿฟ,1F9D9-1F3FF,smileys-people,person-fantasy,mage: dark skin tone,,,Lisa Thiel,5,๐Ÿง™,1F9D9,5,775 +๐Ÿง,1F9DD,smileys-people,person-fantasy,elf,magical,"magical, mystic, bow, arrow, pointy ears",Lisa Thiel,,๐Ÿง,1F9DD,5,890 +๐Ÿง๐Ÿป,1F9DD-1F3FB,smileys-people,person-fantasy,elf: light skin tone,,,Lisa Thiel,1,๐Ÿง,1F9DD,5,891 +๐Ÿง๐Ÿผ,1F9DD-1F3FC,smileys-people,person-fantasy,elf: medium-light skin tone,,,Lisa Thiel,2,๐Ÿง,1F9DD,5,892 +๐Ÿง๐Ÿฝ,1F9DD-1F3FD,smileys-people,person-fantasy,elf: medium skin tone,,,Lisa Thiel,3,๐Ÿง,1F9DD,5,893 +๐Ÿง๐Ÿพ,1F9DD-1F3FE,smileys-people,person-fantasy,elf: medium-dark skin tone,,,Lisa Thiel,4,๐Ÿง,1F9DD,5,894 +๐Ÿง๐Ÿฟ,1F9DD-1F3FF,smileys-people,person-fantasy,elf: dark skin tone,,,Lisa Thiel,5,๐Ÿง,1F9DD,5,895 +๐Ÿงž,1F9DE,smileys-people,person-fantasy,genie,djinn,"djinn, magic lamp, wish, magic",Lisa Thiel,,,,5,920 +๐ŸงŸ,1F9DF,smileys-people,person-fantasy,zombie,"undead, walking dead","undead, walking dead, brain, decayed, moldy",Lisa Thiel,,,,5,925 +๐Ÿ™,1F64D,smileys-people,person-gesture,person frowning,"frown, gesture","negative, angry, head, face",Johanna Wellnitz,,๐Ÿ™,1F64D,1,930 +๐Ÿ™๐Ÿป,1F64D-1F3FB,smileys-people,person-gesture,person frowning: light skin tone,,,Johanna Wellnitz,1,๐Ÿ™,1F64D,2,931 +๐Ÿ™๐Ÿผ,1F64D-1F3FC,smileys-people,person-gesture,person frowning: medium-light skin tone,,,Johanna Wellnitz,2,๐Ÿ™,1F64D,2,932 +๐Ÿ™๐Ÿฝ,1F64D-1F3FD,smileys-people,person-gesture,person frowning: medium skin tone,,,Johanna Wellnitz,3,๐Ÿ™,1F64D,2,933 +๐Ÿ™๐Ÿพ,1F64D-1F3FE,smileys-people,person-gesture,person frowning: medium-dark skin tone,,,Johanna Wellnitz,4,๐Ÿ™,1F64D,2,934 +๐Ÿ™๐Ÿฟ,1F64D-1F3FF,smileys-people,person-gesture,person frowning: dark skin tone,,,Johanna Wellnitz,5,๐Ÿ™,1F64D,2,935 +๐Ÿ™Ž,1F64E,smileys-people,person-gesture,person pouting,"gesture, pouting","sad, negative, head, face",Johanna Wellnitz,,๐Ÿ™Ž,1F64E,1,960 +๐Ÿ™Ž๐Ÿป,1F64E-1F3FB,smileys-people,person-gesture,person pouting: light skin tone,,,Johanna Wellnitz,1,๐Ÿ™Ž,1F64E,2,961 +๐Ÿ™Ž๐Ÿผ,1F64E-1F3FC,smileys-people,person-gesture,person pouting: medium-light skin tone,,,Johanna Wellnitz,2,๐Ÿ™Ž,1F64E,2,962 +๐Ÿ™Ž๐Ÿฝ,1F64E-1F3FD,smileys-people,person-gesture,person pouting: medium skin tone,,,Johanna Wellnitz,3,๐Ÿ™Ž,1F64E,2,963 +๐Ÿ™Ž๐Ÿพ,1F64E-1F3FE,smileys-people,person-gesture,person pouting: medium-dark skin tone,,,Johanna Wellnitz,4,๐Ÿ™Ž,1F64E,2,964 +๐Ÿ™Ž๐Ÿฟ,1F64E-1F3FF,smileys-people,person-gesture,person pouting: dark skin tone,,,Johanna Wellnitz,5,๐Ÿ™Ž,1F64E,2,965 +๐Ÿ™…,1F645,smileys-people,person-gesture,person gesturing NO,"forbidden, gesture, hand, person gesturing no, prohibited","human, head, face",Johanna Wellnitz,,๐Ÿ™…,1F645,1,990 +๐Ÿ™…๐Ÿป,1F645-1F3FB,smileys-people,person-gesture,person gesturing NO: light skin tone,,,Johanna Wellnitz,1,๐Ÿ™…,1F645,2,991 +๐Ÿ™…๐Ÿผ,1F645-1F3FC,smileys-people,person-gesture,person gesturing NO: medium-light skin tone,,,Johanna Wellnitz,2,๐Ÿ™…,1F645,2,992 +๐Ÿ™…๐Ÿฝ,1F645-1F3FD,smileys-people,person-gesture,person gesturing NO: medium skin tone,,,Johanna Wellnitz,3,๐Ÿ™…,1F645,2,993 +๐Ÿ™…๐Ÿพ,1F645-1F3FE,smileys-people,person-gesture,person gesturing NO: medium-dark skin tone,,,Johanna Wellnitz,4,๐Ÿ™…,1F645,2,994 +๐Ÿ™…๐Ÿฟ,1F645-1F3FF,smileys-people,person-gesture,person gesturing NO: dark skin tone,,,Johanna Wellnitz,5,๐Ÿ™…,1F645,2,995 +๐Ÿ™†,1F646,smileys-people,person-gesture,person gesturing OK,"gesture, hand, ok, person gesturing ok","human, head, face",Johanna Wellnitz,,๐Ÿ™†,1F646,1,1020 +๐Ÿ™†๐Ÿป,1F646-1F3FB,smileys-people,person-gesture,person gesturing OK: light skin tone,,,Johanna Wellnitz,1,๐Ÿ™†,1F646,2,1021 +๐Ÿ™†๐Ÿผ,1F646-1F3FC,smileys-people,person-gesture,person gesturing OK: medium-light skin tone,,,Johanna Wellnitz,2,๐Ÿ™†,1F646,2,1022 +๐Ÿ™†๐Ÿฝ,1F646-1F3FD,smileys-people,person-gesture,person gesturing OK: medium skin tone,,,Johanna Wellnitz,3,๐Ÿ™†,1F646,2,1023 +๐Ÿ™†๐Ÿพ,1F646-1F3FE,smileys-people,person-gesture,person gesturing OK: medium-dark skin tone,,,Johanna Wellnitz,4,๐Ÿ™†,1F646,2,1024 +๐Ÿ™†๐Ÿฟ,1F646-1F3FF,smileys-people,person-gesture,person gesturing OK: dark skin tone,,,Johanna Wellnitz,5,๐Ÿ™†,1F646,2,1025 +๐Ÿ’,1F481,smileys-people,person-gesture,person tipping hand,"hand, help, information, sassy, tipping","human, head, face",Johanna Wellnitz,,๐Ÿ’,1F481,1,1050 +๐Ÿ’๐Ÿป,1F481-1F3FB,smileys-people,person-gesture,person tipping hand: light skin tone,,,Johanna Wellnitz,1,๐Ÿ’,1F481,2,1051 +๐Ÿ’๐Ÿผ,1F481-1F3FC,smileys-people,person-gesture,person tipping hand: medium-light skin tone,,,Johanna Wellnitz,2,๐Ÿ’,1F481,2,1052 +๐Ÿ’๐Ÿฝ,1F481-1F3FD,smileys-people,person-gesture,person tipping hand: medium skin tone,,,Johanna Wellnitz,3,๐Ÿ’,1F481,2,1053 +๐Ÿ’๐Ÿพ,1F481-1F3FE,smileys-people,person-gesture,person tipping hand: medium-dark skin tone,,,Johanna Wellnitz,4,๐Ÿ’,1F481,2,1054 +๐Ÿ’๐Ÿฟ,1F481-1F3FF,smileys-people,person-gesture,person tipping hand: dark skin tone,,,Johanna Wellnitz,5,๐Ÿ’,1F481,2,1055 +๐Ÿ™‹,1F64B,smileys-people,person-gesture,person raising hand,"gesture, hand, happy, raised","human, head, face",Johanna Wellnitz,,๐Ÿ™‹,1F64B,1,1080 +๐Ÿ™‹๐Ÿป,1F64B-1F3FB,smileys-people,person-gesture,person raising hand: light skin tone,,,Johanna Wellnitz,1,๐Ÿ™‹,1F64B,2,1081 +๐Ÿ™‹๐Ÿผ,1F64B-1F3FC,smileys-people,person-gesture,person raising hand: medium-light skin tone,,,Johanna Wellnitz,2,๐Ÿ™‹,1F64B,2,1082 +๐Ÿ™‹๐Ÿฝ,1F64B-1F3FD,smileys-people,person-gesture,person raising hand: medium skin tone,,,Johanna Wellnitz,3,๐Ÿ™‹,1F64B,2,1083 +๐Ÿ™‹๐Ÿพ,1F64B-1F3FE,smileys-people,person-gesture,person raising hand: medium-dark skin tone,,,Johanna Wellnitz,4,๐Ÿ™‹,1F64B,2,1084 +๐Ÿ™‹๐Ÿฟ,1F64B-1F3FF,smileys-people,person-gesture,person raising hand: dark skin tone,,,Johanna Wellnitz,5,๐Ÿ™‹,1F64B,2,1085 +๐Ÿ™‡,1F647,smileys-people,person-gesture,person bowing,"apology, bow, gesture, sorry","human, head, face",Johanna Wellnitz,,๐Ÿ™‡,1F647,1,1110 +๐Ÿ™‡๐Ÿป,1F647-1F3FB,smileys-people,person-gesture,person bowing: light skin tone,,,Johanna Wellnitz,1,๐Ÿ™‡,1F647,2,1111 +๐Ÿ™‡๐Ÿผ,1F647-1F3FC,smileys-people,person-gesture,person bowing: medium-light skin tone,,,Johanna Wellnitz,2,๐Ÿ™‡,1F647,2,1112 +๐Ÿ™‡๐Ÿฝ,1F647-1F3FD,smileys-people,person-gesture,person bowing: medium skin tone,,,Johanna Wellnitz,3,๐Ÿ™‡,1F647,2,1113 +๐Ÿ™‡๐Ÿพ,1F647-1F3FE,smileys-people,person-gesture,person bowing: medium-dark skin tone,,,Johanna Wellnitz,4,๐Ÿ™‡,1F647,2,1114 +๐Ÿ™‡๐Ÿฟ,1F647-1F3FF,smileys-people,person-gesture,person bowing: dark skin tone,,,Johanna Wellnitz,5,๐Ÿ™‡,1F647,2,1115 +๐Ÿคฆ,1F926,smileys-people,person-gesture,person facepalming,"disbelief, exasperation, face, palm","facepalm, human, head, face",Johanna Wellnitz,,๐Ÿคฆ,1F926,3,1140 +๐Ÿคฆ๐Ÿป,1F926-1F3FB,smileys-people,person-gesture,person facepalming: light skin tone,,,Johanna Wellnitz,1,๐Ÿคฆ,1F926,3,1141 +๐Ÿคฆ๐Ÿผ,1F926-1F3FC,smileys-people,person-gesture,person facepalming: medium-light skin tone,,,Johanna Wellnitz,2,๐Ÿคฆ,1F926,3,1142 +๐Ÿคฆ๐Ÿฝ,1F926-1F3FD,smileys-people,person-gesture,person facepalming: medium skin tone,,,Johanna Wellnitz,3,๐Ÿคฆ,1F926,3,1143 +๐Ÿคฆ๐Ÿพ,1F926-1F3FE,smileys-people,person-gesture,person facepalming: medium-dark skin tone,,,Johanna Wellnitz,4,๐Ÿคฆ,1F926,3,1144 +๐Ÿคฆ๐Ÿฟ,1F926-1F3FF,smileys-people,person-gesture,person facepalming: dark skin tone,,,Johanna Wellnitz,5,๐Ÿคฆ,1F926,3,1145 +๐Ÿคฆโ€โ™‚๏ธ,1F926-200D-2642-FE0F,smileys-people,person-gesture,man facepalming,"disbelief, exasperation, facepalm, man","facepalm, head, face",Johanna Wellnitz,,๐Ÿคฆโ€โ™‚๏ธ,1F926-200D-2642-FE0F,4,1146 +๐Ÿคฆ๐Ÿปโ€โ™‚๏ธ,1F926-1F3FB-200D-2642-FE0F,smileys-people,person-gesture,man facepalming: light skin tone,,,Johanna Wellnitz,1,๐Ÿคฆโ€โ™‚๏ธ,1F926-200D-2642-FE0F,4,1148 +๐Ÿคฆ๐Ÿผโ€โ™‚๏ธ,1F926-1F3FC-200D-2642-FE0F,smileys-people,person-gesture,man facepalming: medium-light skin tone,,,Johanna Wellnitz,2,๐Ÿคฆโ€โ™‚๏ธ,1F926-200D-2642-FE0F,4,1150 +๐Ÿคฆ๐Ÿฝโ€โ™‚๏ธ,1F926-1F3FD-200D-2642-FE0F,smileys-people,person-gesture,man facepalming: medium skin tone,,,Johanna Wellnitz,3,๐Ÿคฆโ€โ™‚๏ธ,1F926-200D-2642-FE0F,4,1152 +๐Ÿคฆ๐Ÿพโ€โ™‚๏ธ,1F926-1F3FE-200D-2642-FE0F,smileys-people,person-gesture,man facepalming: medium-dark skin tone,,,Johanna Wellnitz,4,๐Ÿคฆโ€โ™‚๏ธ,1F926-200D-2642-FE0F,4,1154 +๐Ÿคฆ๐Ÿฟโ€โ™‚๏ธ,1F926-1F3FF-200D-2642-FE0F,smileys-people,person-gesture,man facepalming: dark skin tone,,,Johanna Wellnitz,5,๐Ÿคฆโ€โ™‚๏ธ,1F926-200D-2642-FE0F,4,1156 +๐Ÿคฆโ€โ™€๏ธ,1F926-200D-2640-FE0F,smileys-people,person-gesture,woman facepalming,"disbelief, exasperation, facepalm, woman","facepalm, head, face",Johanna Wellnitz,,๐Ÿคฆโ€โ™€๏ธ,1F926-200D-2640-FE0F,4,1158 +๐Ÿคฆ๐Ÿปโ€โ™€๏ธ,1F926-1F3FB-200D-2640-FE0F,smileys-people,person-gesture,woman facepalming: light skin tone,,,Johanna Wellnitz,1,๐Ÿคฆโ€โ™€๏ธ,1F926-200D-2640-FE0F,4,1160 +๐Ÿคฆ๐Ÿผโ€โ™€๏ธ,1F926-1F3FC-200D-2640-FE0F,smileys-people,person-gesture,woman facepalming: medium-light skin tone,,,Johanna Wellnitz,2,๐Ÿคฆโ€โ™€๏ธ,1F926-200D-2640-FE0F,4,1162 +๐Ÿคฆ๐Ÿฝโ€โ™€๏ธ,1F926-1F3FD-200D-2640-FE0F,smileys-people,person-gesture,woman facepalming: medium skin tone,,,Johanna Wellnitz,3,๐Ÿคฆโ€โ™€๏ธ,1F926-200D-2640-FE0F,4,1164 +๐Ÿคฆ๐Ÿพโ€โ™€๏ธ,1F926-1F3FE-200D-2640-FE0F,smileys-people,person-gesture,woman facepalming: medium-dark skin tone,,,Johanna Wellnitz,4,๐Ÿคฆโ€โ™€๏ธ,1F926-200D-2640-FE0F,4,1166 +๐Ÿคฆ๐Ÿฟโ€โ™€๏ธ,1F926-1F3FF-200D-2640-FE0F,smileys-people,person-gesture,woman facepalming: dark skin tone,,,Johanna Wellnitz,5,๐Ÿคฆโ€โ™€๏ธ,1F926-200D-2640-FE0F,4,1168 +๐Ÿคท,1F937,smileys-people,person-gesture,person shrugging,"doubt, ignorance, indifference, shrug","human, head, face",Johanna Wellnitz,,๐Ÿคท,1F937,3,1170 +๐Ÿคท๐Ÿป,1F937-1F3FB,smileys-people,person-gesture,person shrugging: light skin tone,,,Johanna Wellnitz,1,๐Ÿคท,1F937,3,1171 +๐Ÿคท๐Ÿผ,1F937-1F3FC,smileys-people,person-gesture,person shrugging: medium-light skin tone,,,Johanna Wellnitz,2,๐Ÿคท,1F937,3,1172 +๐Ÿคท๐Ÿฝ,1F937-1F3FD,smileys-people,person-gesture,person shrugging: medium skin tone,,,Johanna Wellnitz,3,๐Ÿคท,1F937,3,1173 +๐Ÿคท๐Ÿพ,1F937-1F3FE,smileys-people,person-gesture,person shrugging: medium-dark skin tone,,,Johanna Wellnitz,4,๐Ÿคท,1F937,3,1174 +๐Ÿคท๐Ÿฟ,1F937-1F3FF,smileys-people,person-gesture,person shrugging: dark skin tone,,,Johanna Wellnitz,5,๐Ÿคท,1F937,3,1175 +๐Ÿ’†,1F486,smileys-people,person-activity,person getting massage,"face, massage, salon","human, person",Johanna Wellnitz,,๐Ÿ’†,1F486,1,1200 +๐Ÿ’†๐Ÿป,1F486-1F3FB,smileys-people,person-activity,person getting massage: light skin tone,,,Johanna Wellnitz,1,๐Ÿ’†,1F486,2,1201 +๐Ÿ’†๐Ÿผ,1F486-1F3FC,smileys-people,person-activity,person getting massage: medium-light skin tone,,,Johanna Wellnitz,2,๐Ÿ’†,1F486,2,1202 +๐Ÿ’†๐Ÿฝ,1F486-1F3FD,smileys-people,person-activity,person getting massage: medium skin tone,,,Johanna Wellnitz,3,๐Ÿ’†,1F486,2,1203 +๐Ÿ’†๐Ÿพ,1F486-1F3FE,smileys-people,person-activity,person getting massage: medium-dark skin tone,,,Johanna Wellnitz,4,๐Ÿ’†,1F486,2,1204 +๐Ÿ’†๐Ÿฟ,1F486-1F3FF,smileys-people,person-activity,person getting massage: dark skin tone,,,Johanna Wellnitz,5,๐Ÿ’†,1F486,2,1205 +๐Ÿ’‡,1F487,smileys-people,person-activity,person getting haircut,"barber, beauty, haircut, parlor","human, person",Johanna Wellnitz,,๐Ÿ’‡,1F487,1,1230 +๐Ÿ’‡๐Ÿป,1F487-1F3FB,smileys-people,person-activity,person getting haircut: light skin tone,,,Johanna Wellnitz,1,๐Ÿ’‡,1F487,2,1231 +๐Ÿ’‡๐Ÿผ,1F487-1F3FC,smileys-people,person-activity,person getting haircut: medium-light skin tone,,,Johanna Wellnitz,2,๐Ÿ’‡,1F487,2,1232 +๐Ÿ’‡๐Ÿฝ,1F487-1F3FD,smileys-people,person-activity,person getting haircut: medium skin tone,,,Johanna Wellnitz,3,๐Ÿ’‡,1F487,2,1233 +๐Ÿ’‡๐Ÿพ,1F487-1F3FE,smileys-people,person-activity,person getting haircut: medium-dark skin tone,,,Johanna Wellnitz,4,๐Ÿ’‡,1F487,2,1234 +๐Ÿ’‡๐Ÿฟ,1F487-1F3FF,smileys-people,person-activity,person getting haircut: dark skin tone,,,Johanna Wellnitz,5,๐Ÿ’‡,1F487,2,1235 +๐Ÿšถ,1F6B6,smileys-people,person-activity,person walking,"hike, walk, walking","human, person",Johanna Wellnitz,,๐Ÿšถ,1F6B6,1,1260 +๐Ÿšถ๐Ÿป,1F6B6-1F3FB,smileys-people,person-activity,person walking: light skin tone,,,Johanna Wellnitz,1,๐Ÿšถ,1F6B6,2,1261 +๐Ÿšถ๐Ÿผ,1F6B6-1F3FC,smileys-people,person-activity,person walking: medium-light skin tone,,,Johanna Wellnitz,2,๐Ÿšถ,1F6B6,2,1262 +๐Ÿšถ๐Ÿฝ,1F6B6-1F3FD,smileys-people,person-activity,person walking: medium skin tone,,,Johanna Wellnitz,3,๐Ÿšถ,1F6B6,2,1263 +๐Ÿšถ๐Ÿพ,1F6B6-1F3FE,smileys-people,person-activity,person walking: medium-dark skin tone,,,Johanna Wellnitz,4,๐Ÿšถ,1F6B6,2,1264 +๐Ÿšถ๐Ÿฟ,1F6B6-1F3FF,smileys-people,person-activity,person walking: dark skin tone,,,Johanna Wellnitz,5,๐Ÿšถ,1F6B6,2,1265 +๐Ÿšถโ€โ™‚๏ธ,1F6B6-200D-2642-FE0F,smileys-people,person-activity,man walking,"hike, man, walk","human, person",Johanna Wellnitz,,๐Ÿšถโ€โ™‚๏ธ,1F6B6-200D-2642-FE0F,4,1266 +๐Ÿšถ๐Ÿปโ€โ™‚๏ธ,1F6B6-1F3FB-200D-2642-FE0F,smileys-people,person-activity,man walking: light skin tone,,,Johanna Wellnitz,1,๐Ÿšถโ€โ™‚๏ธ,1F6B6-200D-2642-FE0F,4,1268 +๐Ÿšถ๐Ÿผโ€โ™‚๏ธ,1F6B6-1F3FC-200D-2642-FE0F,smileys-people,person-activity,man walking: medium-light skin tone,,,Johanna Wellnitz,2,๐Ÿšถโ€โ™‚๏ธ,1F6B6-200D-2642-FE0F,4,1270 +๐Ÿšถ๐Ÿฝโ€โ™‚๏ธ,1F6B6-1F3FD-200D-2642-FE0F,smileys-people,person-activity,man walking: medium skin tone,,,Johanna Wellnitz,3,๐Ÿšถโ€โ™‚๏ธ,1F6B6-200D-2642-FE0F,4,1272 +๐Ÿšถ๐Ÿพโ€โ™‚๏ธ,1F6B6-1F3FE-200D-2642-FE0F,smileys-people,person-activity,man walking: medium-dark skin tone,,,Johanna Wellnitz,4,๐Ÿšถโ€โ™‚๏ธ,1F6B6-200D-2642-FE0F,4,1274 +๐Ÿšถ๐Ÿฟโ€โ™‚๏ธ,1F6B6-1F3FF-200D-2642-FE0F,smileys-people,person-activity,man walking: dark skin tone,,,Johanna Wellnitz,5,๐Ÿšถโ€โ™‚๏ธ,1F6B6-200D-2642-FE0F,4,1276 +๐Ÿšถโ€โ™€๏ธ,1F6B6-200D-2640-FE0F,smileys-people,person-activity,woman walking,"hike, walk, woman","human, person",Johanna Wellnitz,,๐Ÿšถโ€โ™€๏ธ,1F6B6-200D-2640-FE0F,4,1278 +๐Ÿšถ๐Ÿปโ€โ™€๏ธ,1F6B6-1F3FB-200D-2640-FE0F,smileys-people,person-activity,woman walking: light skin tone,,,Johanna Wellnitz,1,๐Ÿšถโ€โ™€๏ธ,1F6B6-200D-2640-FE0F,4,1280 +๐Ÿšถ๐Ÿผโ€โ™€๏ธ,1F6B6-1F3FC-200D-2640-FE0F,smileys-people,person-activity,woman walking: medium-light skin tone,,,Johanna Wellnitz,2,๐Ÿšถโ€โ™€๏ธ,1F6B6-200D-2640-FE0F,4,1282 +๐Ÿšถ๐Ÿฝโ€โ™€๏ธ,1F6B6-1F3FD-200D-2640-FE0F,smileys-people,person-activity,woman walking: medium skin tone,,,Johanna Wellnitz,3,๐Ÿšถโ€โ™€๏ธ,1F6B6-200D-2640-FE0F,4,1284 +๐Ÿšถ๐Ÿพโ€โ™€๏ธ,1F6B6-1F3FE-200D-2640-FE0F,smileys-people,person-activity,woman walking: medium-dark skin tone,,,Johanna Wellnitz,4,๐Ÿšถโ€โ™€๏ธ,1F6B6-200D-2640-FE0F,4,1286 +๐Ÿšถ๐Ÿฟโ€โ™€๏ธ,1F6B6-1F3FF-200D-2640-FE0F,smileys-people,person-activity,woman walking: dark skin tone,,,Johanna Wellnitz,5,๐Ÿšถโ€โ™€๏ธ,1F6B6-200D-2640-FE0F,4,1288 +๐Ÿƒ,1F3C3,smileys-people,person-activity,person running,"marathon, running","human, person",Johanna Wellnitz,,๐Ÿƒ,1F3C3,1,1290 +๐Ÿƒ๐Ÿป,1F3C3-1F3FB,smileys-people,person-activity,person running: light skin tone,,,Johanna Wellnitz,1,๐Ÿƒ,1F3C3,2,1291 +๐Ÿƒ๐Ÿผ,1F3C3-1F3FC,smileys-people,person-activity,person running: medium-light skin tone,,,Johanna Wellnitz,2,๐Ÿƒ,1F3C3,2,1292 +๐Ÿƒ๐Ÿฝ,1F3C3-1F3FD,smileys-people,person-activity,person running: medium skin tone,,,Johanna Wellnitz,3,๐Ÿƒ,1F3C3,2,1293 +๐Ÿƒ๐Ÿพ,1F3C3-1F3FE,smileys-people,person-activity,person running: medium-dark skin tone,,,Johanna Wellnitz,4,๐Ÿƒ,1F3C3,2,1294 +๐Ÿƒ๐Ÿฟ,1F3C3-1F3FF,smileys-people,person-activity,person running: dark skin tone,,,Johanna Wellnitz,5,๐Ÿƒ,1F3C3,2,1295 +๐Ÿ’ƒ,1F483,smileys-people,person-activity,woman dancing,"dancing, woman","human, person",Johanna Wellnitz,,๐Ÿ’ƒ,1F483,1,1320 +๐Ÿ’ƒ๐Ÿป,1F483-1F3FB,smileys-people,person-activity,woman dancing: light skin tone,,,Johanna Wellnitz,1,๐Ÿ’ƒ,1F483,2,1321 +๐Ÿ’ƒ๐Ÿผ,1F483-1F3FC,smileys-people,person-activity,woman dancing: medium-light skin tone,,,Johanna Wellnitz,2,๐Ÿ’ƒ,1F483,2,1322 +๐Ÿ’ƒ๐Ÿฝ,1F483-1F3FD,smileys-people,person-activity,woman dancing: medium skin tone,,,Johanna Wellnitz,3,๐Ÿ’ƒ,1F483,2,1323 +๐Ÿ’ƒ๐Ÿพ,1F483-1F3FE,smileys-people,person-activity,woman dancing: medium-dark skin tone,,,Johanna Wellnitz,4,๐Ÿ’ƒ,1F483,2,1324 +๐Ÿ’ƒ๐Ÿฟ,1F483-1F3FF,smileys-people,person-activity,woman dancing: dark skin tone,,,Johanna Wellnitz,5,๐Ÿ’ƒ,1F483,2,1325 +๐Ÿ•บ,1F57A,smileys-people,person-activity,man dancing,"dance, man","human, person",Johanna Wellnitz,,๐Ÿ•บ,1F57A,3,1326 +๐Ÿ•บ๐Ÿป,1F57A-1F3FB,smileys-people,person-activity,man dancing: light skin tone,,,Johanna Wellnitz,1,๐Ÿ•บ,1F57A,3,1327 +๐Ÿ•บ๐Ÿผ,1F57A-1F3FC,smileys-people,person-activity,man dancing: medium-light skin tone,,,Johanna Wellnitz,2,๐Ÿ•บ,1F57A,3,1328 +๐Ÿ•บ๐Ÿฝ,1F57A-1F3FD,smileys-people,person-activity,man dancing: medium skin tone,,,Johanna Wellnitz,3,๐Ÿ•บ,1F57A,3,1329 +๐Ÿ•บ๐Ÿพ,1F57A-1F3FE,smileys-people,person-activity,man dancing: medium-dark skin tone,,,Johanna Wellnitz,4,๐Ÿ•บ,1F57A,3,1330 +๐Ÿ•บ๐Ÿฟ,1F57A-1F3FF,smileys-people,person-activity,man dancing: dark skin tone,,,Johanna Wellnitz,5,๐Ÿ•บ,1F57A,3,1331 +๐Ÿ‘ฏ,1F46F,smileys-people,person-activity,people with bunny ears,"bunny ear, dancer, partying","human, person",Johanna Wellnitz,,,,1,1332 +๐Ÿง—,1F9D7,smileys-people,person-activity,person climbing,climber,"human, person",Johanna Wellnitz,,๐Ÿง—,1F9D7,5,1367 +๐Ÿง—๐Ÿป,1F9D7-1F3FB,smileys-people,person-activity,person climbing: light skin tone,,,Johanna Wellnitz,1,๐Ÿง—,1F9D7,5,1368 +๐Ÿง—๐Ÿผ,1F9D7-1F3FC,smileys-people,person-activity,person climbing: medium-light skin tone,,,Johanna Wellnitz,2,๐Ÿง—,1F9D7,5,1369 +๐Ÿง—๐Ÿฝ,1F9D7-1F3FD,smileys-people,person-activity,person climbing: medium skin tone,,,Johanna Wellnitz,3,๐Ÿง—,1F9D7,5,1370 +๐Ÿง—๐Ÿพ,1F9D7-1F3FE,smileys-people,person-activity,person climbing: medium-dark skin tone,,,Johanna Wellnitz,4,๐Ÿง—,1F9D7,5,1371 +๐Ÿง—๐Ÿฟ,1F9D7-1F3FF,smileys-people,person-activity,person climbing: dark skin tone,,,Johanna Wellnitz,5,๐Ÿง—,1F9D7,5,1372 +๐Ÿง˜,1F9D8,smileys-people,person-activity,person in lotus position,"meditation, yoga","human, person, excercise",Johanna Wellnitz,,๐Ÿง˜,1F9D8,5,1397 +๐Ÿง˜๐Ÿป,1F9D8-1F3FB,smileys-people,person-activity,person in lotus position: light skin tone,,,Johanna Wellnitz,1,๐Ÿง˜,1F9D8,5,1398 +๐Ÿง˜๐Ÿผ,1F9D8-1F3FC,smileys-people,person-activity,person in lotus position: medium-light skin tone,,,Johanna Wellnitz,2,๐Ÿง˜,1F9D8,5,1399 +๐Ÿง˜๐Ÿฝ,1F9D8-1F3FD,smileys-people,person-activity,person in lotus position: medium skin tone,,,Johanna Wellnitz,3,๐Ÿง˜,1F9D8,5,1400 +๐Ÿง˜๐Ÿพ,1F9D8-1F3FE,smileys-people,person-activity,person in lotus position: medium-dark skin tone,,,Johanna Wellnitz,4,๐Ÿง˜,1F9D8,5,1401 +๐Ÿง˜๐Ÿฟ,1F9D8-1F3FF,smileys-people,person-activity,person in lotus position: dark skin tone,,,Johanna Wellnitz,5,๐Ÿง˜,1F9D8,5,1402 +๐Ÿ›Œ,1F6CC,smileys-people,person-activity,person in bed,"hotel, sleep","human, person",Johanna Wellnitz,,๐Ÿ›Œ,1F6CC,1,1433 +๐Ÿ›Œ๐Ÿป,1F6CC-1F3FB,smileys-people,person-activity,person in bed: light skin tone,,,Johanna Wellnitz,1,๐Ÿ›Œ,1F6CC,4,1434 +๐Ÿ›Œ๐Ÿผ,1F6CC-1F3FC,smileys-people,person-activity,person in bed: medium-light skin tone,,,Johanna Wellnitz,2,๐Ÿ›Œ,1F6CC,4,1435 +๐Ÿ›Œ๐Ÿฝ,1F6CC-1F3FD,smileys-people,person-activity,person in bed: medium skin tone,,,Johanna Wellnitz,3,๐Ÿ›Œ,1F6CC,4,1436 +๐Ÿ›Œ๐Ÿพ,1F6CC-1F3FE,smileys-people,person-activity,person in bed: medium-dark skin tone,,,Johanna Wellnitz,4,๐Ÿ›Œ,1F6CC,4,1437 +๐Ÿ›Œ๐Ÿฟ,1F6CC-1F3FF,smileys-people,person-activity,person in bed: dark skin tone,,,Johanna Wellnitz,5,๐Ÿ›Œ,1F6CC,4,1438 +๐Ÿ—ฃ๏ธ,1F5E3,smileys-people,person-activity,speaking head,"face, head, silhouette, speak, speaking","human, person",Johanna Wellnitz,,,,1,1447 +๐Ÿ‘ค,1F464,smileys-people,person-activity,bust in silhouette,"bust, silhouette","human, person",Johanna Wellnitz,,,,1,1448 +๐Ÿ‘ฅ,1F465,smileys-people,person-activity,busts in silhouette,"bust, silhouette","human, person",Johanna Wellnitz,,,,1,1449 +๐Ÿคบ,1F93A,smileys-people,person-sport,person fencing,"fencer, fencing, sword","epee, sports",Johanna Wellnitz,,,,3,1450 +๐Ÿ‡,1F3C7,smileys-people,person-sport,horse racing,"horse, jockey, racehorse, racing","animal, sports",Johanna Wellnitz,,๐Ÿ‡,1F3C7,1,1451 +๐Ÿ‡๐Ÿป,1F3C7-1F3FB,smileys-people,person-sport,horse racing: light skin tone,,,Johanna Wellnitz,1,๐Ÿ‡,1F3C7,4,1452 +๐Ÿ‡๐Ÿผ,1F3C7-1F3FC,smileys-people,person-sport,horse racing: medium-light skin tone,,,Johanna Wellnitz,2,๐Ÿ‡,1F3C7,4,1453 +๐Ÿ‡๐Ÿฝ,1F3C7-1F3FD,smileys-people,person-sport,horse racing: medium skin tone,,,Johanna Wellnitz,3,๐Ÿ‡,1F3C7,4,1454 +๐Ÿ‡๐Ÿพ,1F3C7-1F3FE,smileys-people,person-sport,horse racing: medium-dark skin tone,,,Johanna Wellnitz,4,๐Ÿ‡,1F3C7,4,1455 +๐Ÿ‡๐Ÿฟ,1F3C7-1F3FF,smileys-people,person-sport,horse racing: dark skin tone,,,Johanna Wellnitz,5,๐Ÿ‡,1F3C7,4,1456 +โ›ท๏ธ,26F7,smileys-people,person-sport,skier,"ski, snow","winter, sports",Johanna Wellnitz,,,,1,1458 +๐Ÿ‚๏ธ,1F3C2,smileys-people,person-sport,snowboarder,"ski, snow, snowboard","winter, sports",Johanna Wellnitz,,๐Ÿ‚๏ธ,1F3C2,1,1459 +๐Ÿ‚๐Ÿป,1F3C2-1F3FB,smileys-people,person-sport,snowboarder: light skin tone,,,Johanna Wellnitz,1,๐Ÿ‚๏ธ,1F3C2,4,1460 +๐Ÿ‚๐Ÿผ,1F3C2-1F3FC,smileys-people,person-sport,snowboarder: medium-light skin tone,,,Johanna Wellnitz,2,๐Ÿ‚๏ธ,1F3C2,4,1461 +๐Ÿ‚๐Ÿฝ,1F3C2-1F3FD,smileys-people,person-sport,snowboarder: medium skin tone,,,Johanna Wellnitz,3,๐Ÿ‚๏ธ,1F3C2,4,1462 +๐Ÿ‚๐Ÿพ,1F3C2-1F3FE,smileys-people,person-sport,snowboarder: medium-dark skin tone,,,Johanna Wellnitz,4,๐Ÿ‚๏ธ,1F3C2,4,1463 +๐Ÿ‚๐Ÿฟ,1F3C2-1F3FF,smileys-people,person-sport,snowboarder: dark skin tone,,,Johanna Wellnitz,5,๐Ÿ‚๏ธ,1F3C2,4,1464 +๐ŸŒ๏ธ,1F3CC,smileys-people,person-sport,person golfing,"ball, golf",sports,Johanna Wellnitz,,๐ŸŒ๏ธ,1F3CC,1,1466 +๐ŸŒ๐Ÿป,1F3CC-1F3FB,smileys-people,person-sport,person golfing: light skin tone,,,Johanna Wellnitz,1,๐ŸŒ๏ธ,1F3CC,4,1467 +๐ŸŒ๐Ÿผ,1F3CC-1F3FC,smileys-people,person-sport,person golfing: medium-light skin tone,,,Johanna Wellnitz,2,๐ŸŒ๏ธ,1F3CC,4,1468 +๐ŸŒ๐Ÿฝ,1F3CC-1F3FD,smileys-people,person-sport,person golfing: medium skin tone,,,Johanna Wellnitz,3,๐ŸŒ๏ธ,1F3CC,4,1469 +๐ŸŒ๐Ÿพ,1F3CC-1F3FE,smileys-people,person-sport,person golfing: medium-dark skin tone,,,Johanna Wellnitz,4,๐ŸŒ๏ธ,1F3CC,4,1470 +๐ŸŒ๐Ÿฟ,1F3CC-1F3FF,smileys-people,person-sport,person golfing: dark skin tone,,,Johanna Wellnitz,5,๐ŸŒ๏ธ,1F3CC,4,1471 +๐Ÿ„๏ธ,1F3C4,smileys-people,person-sport,person surfing,surfing,"water, ocean, sea, wave, surfer, sports",Johanna Wellnitz,,๐Ÿ„๏ธ,1F3C4,1,1500 +๐Ÿ„๐Ÿป,1F3C4-1F3FB,smileys-people,person-sport,person surfing: light skin tone,,,Johanna Wellnitz,1,๐Ÿ„๏ธ,1F3C4,2,1501 +๐Ÿ„๐Ÿผ,1F3C4-1F3FC,smileys-people,person-sport,person surfing: medium-light skin tone,,,Johanna Wellnitz,2,๐Ÿ„๏ธ,1F3C4,2,1502 +๐Ÿ„๐Ÿฝ,1F3C4-1F3FD,smileys-people,person-sport,person surfing: medium skin tone,,,Johanna Wellnitz,3,๐Ÿ„๏ธ,1F3C4,2,1503 +๐Ÿ„๐Ÿพ,1F3C4-1F3FE,smileys-people,person-sport,person surfing: medium-dark skin tone,,,Johanna Wellnitz,4,๐Ÿ„๏ธ,1F3C4,2,1504 +๐Ÿ„๐Ÿฟ,1F3C4-1F3FF,smileys-people,person-sport,person surfing: dark skin tone,,,Johanna Wellnitz,5,๐Ÿ„๏ธ,1F3C4,2,1505 +๐Ÿšฃ,1F6A3,smileys-people,person-sport,person rowing boat,"boat, rowboat","sports, kayak, canoe, water",Johanna Wellnitz,,๐Ÿšฃ,1F6A3,1,1530 +๐Ÿšฃ๐Ÿป,1F6A3-1F3FB,smileys-people,person-sport,person rowing boat: light skin tone,,,Johanna Wellnitz,1,๐Ÿšฃ,1F6A3,2,1531 +๐Ÿšฃ๐Ÿผ,1F6A3-1F3FC,smileys-people,person-sport,person rowing boat: medium-light skin tone,,,Johanna Wellnitz,2,๐Ÿšฃ,1F6A3,2,1532 +๐Ÿšฃ๐Ÿฝ,1F6A3-1F3FD,smileys-people,person-sport,person rowing boat: medium skin tone,,,Johanna Wellnitz,3,๐Ÿšฃ,1F6A3,2,1533 +๐Ÿšฃ๐Ÿพ,1F6A3-1F3FE,smileys-people,person-sport,person rowing boat: medium-dark skin tone,,,Johanna Wellnitz,4,๐Ÿšฃ,1F6A3,2,1534 +๐Ÿšฃ๐Ÿฟ,1F6A3-1F3FF,smileys-people,person-sport,person rowing boat: dark skin tone,,,Johanna Wellnitz,5,๐Ÿšฃ,1F6A3,2,1535 +๐ŸŠ๏ธ,1F3CA,smileys-people,person-sport,person swimming,swim,"sports, water",Johanna Wellnitz,,๐ŸŠ๏ธ,1F3CA,1,1560 +๐ŸŠ๐Ÿป,1F3CA-1F3FB,smileys-people,person-sport,person swimming: light skin tone,,,Johanna Wellnitz,1,๐ŸŠ๏ธ,1F3CA,2,1561 +๐ŸŠ๐Ÿผ,1F3CA-1F3FC,smileys-people,person-sport,person swimming: medium-light skin tone,,,Johanna Wellnitz,2,๐ŸŠ๏ธ,1F3CA,2,1562 +๐ŸŠ๐Ÿฝ,1F3CA-1F3FD,smileys-people,person-sport,person swimming: medium skin tone,,,Johanna Wellnitz,3,๐ŸŠ๏ธ,1F3CA,2,1563 +๐ŸŠ๐Ÿพ,1F3CA-1F3FE,smileys-people,person-sport,person swimming: medium-dark skin tone,,,Johanna Wellnitz,4,๐ŸŠ๏ธ,1F3CA,2,1564 +๐ŸŠ๐Ÿฟ,1F3CA-1F3FF,smileys-people,person-sport,person swimming: dark skin tone,,,Johanna Wellnitz,5,๐ŸŠ๏ธ,1F3CA,2,1565 +โ›น๏ธ,26F9,smileys-people,person-sport,person bouncing ball,ball,"dribble, sports",Johanna Wellnitz,,โ›น๏ธ,26F9,1,1591 +โ›น๐Ÿป,26F9-1F3FB,smileys-people,person-sport,person bouncing ball: light skin tone,,,Johanna Wellnitz,1,โ›น๏ธ,26F9,2,1592 +โ›น๐Ÿผ,26F9-1F3FC,smileys-people,person-sport,person bouncing ball: medium-light skin tone,,,Johanna Wellnitz,2,โ›น๏ธ,26F9,2,1593 +โ›น๐Ÿฝ,26F9-1F3FD,smileys-people,person-sport,person bouncing ball: medium skin tone,,,Johanna Wellnitz,3,โ›น๏ธ,26F9,2,1594 +โ›น๐Ÿพ,26F9-1F3FE,smileys-people,person-sport,person bouncing ball: medium-dark skin tone,,,Johanna Wellnitz,4,โ›น๏ธ,26F9,2,1595 +โ›น๐Ÿฟ,26F9-1F3FF,smileys-people,person-sport,person bouncing ball: dark skin tone,,,Johanna Wellnitz,5,โ›น๏ธ,26F9,2,1596 +๐Ÿ‹๏ธ,1F3CB,smileys-people,person-sport,person lifting weights,"lifter, weight","sports, power",Johanna Wellnitz,,๐Ÿ‹๏ธ,1F3CB,1,1626 +๐Ÿ‹๐Ÿป,1F3CB-1F3FB,smileys-people,person-sport,person lifting weights: light skin tone,,,Johanna Wellnitz,1,๐Ÿ‹๏ธ,1F3CB,2,1627 +๐Ÿ‹๐Ÿผ,1F3CB-1F3FC,smileys-people,person-sport,person lifting weights: medium-light skin tone,,,Johanna Wellnitz,2,๐Ÿ‹๏ธ,1F3CB,2,1628 +๐Ÿ‹๐Ÿฝ,1F3CB-1F3FD,smileys-people,person-sport,person lifting weights: medium skin tone,,,Johanna Wellnitz,3,๐Ÿ‹๏ธ,1F3CB,2,1629 +๐Ÿ‹๐Ÿพ,1F3CB-1F3FE,smileys-people,person-sport,person lifting weights: medium-dark skin tone,,,Johanna Wellnitz,4,๐Ÿ‹๏ธ,1F3CB,2,1630 +๐Ÿ‹๐Ÿฟ,1F3CB-1F3FF,smileys-people,person-sport,person lifting weights: dark skin tone,,,Johanna Wellnitz,5,๐Ÿ‹๏ธ,1F3CB,2,1631 +๐Ÿšด,1F6B4,smileys-people,person-sport,person biking,"bicycle, biking, cyclist",sports,Johanna Wellnitz,,๐Ÿšด,1F6B4,1,1660 +๐Ÿšด๐Ÿป,1F6B4-1F3FB,smileys-people,person-sport,person biking: light skin tone,,,Johanna Wellnitz,1,๐Ÿšด,1F6B4,2,1661 +๐Ÿšด๐Ÿผ,1F6B4-1F3FC,smileys-people,person-sport,person biking: medium-light skin tone,,,Johanna Wellnitz,2,๐Ÿšด,1F6B4,2,1662 +๐Ÿšด๐Ÿฝ,1F6B4-1F3FD,smileys-people,person-sport,person biking: medium skin tone,,,Johanna Wellnitz,3,๐Ÿšด,1F6B4,2,1663 +๐Ÿšด๐Ÿพ,1F6B4-1F3FE,smileys-people,person-sport,person biking: medium-dark skin tone,,,Johanna Wellnitz,4,๐Ÿšด,1F6B4,2,1664 +๐Ÿšด๐Ÿฟ,1F6B4-1F3FF,smileys-people,person-sport,person biking: dark skin tone,,,Johanna Wellnitz,5,๐Ÿšด,1F6B4,2,1665 +๐ŸŽ๏ธ,1F3CE,smileys-people,person-sport,racing car,"car, racing","sports, motor",Johanna Wellnitz,,,,1,1721 +๐Ÿ๏ธ,1F3CD,smileys-people,person-sport,motorcycle,racing,"motorsports, vehicle",Johanna Wellnitz,,,,1,1723 +๐Ÿคธ,1F938,smileys-people,person-sport,person cartwheeling,"cartwheel, gymnastics",sports,Johanna Wellnitz,,๐Ÿคธ,1F938,3,1724 +๐Ÿคธ๐Ÿป,1F938-1F3FB,smileys-people,person-sport,person cartwheeling: light skin tone,,,Johanna Wellnitz,1,๐Ÿคธ,1F938,3,1725 +๐Ÿคธ๐Ÿผ,1F938-1F3FC,smileys-people,person-sport,person cartwheeling: medium-light skin tone,,,Johanna Wellnitz,2,๐Ÿคธ,1F938,3,1726 +๐Ÿคธ๐Ÿฝ,1F938-1F3FD,smileys-people,person-sport,person cartwheeling: medium skin tone,,,Johanna Wellnitz,3,๐Ÿคธ,1F938,3,1727 +๐Ÿคธ๐Ÿพ,1F938-1F3FE,smileys-people,person-sport,person cartwheeling: medium-dark skin tone,,,Johanna Wellnitz,4,๐Ÿคธ,1F938,3,1728 +๐Ÿคธ๐Ÿฟ,1F938-1F3FF,smileys-people,person-sport,person cartwheeling: dark skin tone,,,Johanna Wellnitz,5,๐Ÿคธ,1F938,3,1729 +๐Ÿคผ,1F93C,smileys-people,person-sport,people wrestling,"wrestle, wrestler","fighting, sports",Johanna Wellnitz,,,,3,1754 +๐Ÿคฝ,1F93D,smileys-people,person-sport,person playing water polo,"polo, water",sports,Johanna Wellnitz,,๐Ÿคฝ,1F93D,3,1759 +๐Ÿคฝ๐Ÿป,1F93D-1F3FB,smileys-people,person-sport,person playing water polo: light skin tone,,,Johanna Wellnitz,1,๐Ÿคฝ,1F93D,3,1760 +๐Ÿคฝ๐Ÿผ,1F93D-1F3FC,smileys-people,person-sport,person playing water polo: medium-light skin tone,,,Johanna Wellnitz,2,๐Ÿคฝ,1F93D,3,1761 +๐Ÿคฝ๐Ÿฝ,1F93D-1F3FD,smileys-people,person-sport,person playing water polo: medium skin tone,,,Johanna Wellnitz,3,๐Ÿคฝ,1F93D,3,1762 +๐Ÿคฝ๐Ÿพ,1F93D-1F3FE,smileys-people,person-sport,person playing water polo: medium-dark skin tone,,,Johanna Wellnitz,4,๐Ÿคฝ,1F93D,3,1763 +๐Ÿคฝ๐Ÿฟ,1F93D-1F3FF,smileys-people,person-sport,person playing water polo: dark skin tone,,,Johanna Wellnitz,5,๐Ÿคฝ,1F93D,3,1764 +๐Ÿคพ,1F93E,smileys-people,person-sport,person playing handball,"ball, handball","sports, indoor",Johanna Wellnitz,,๐Ÿคพ,1F93E,3,1789 +๐Ÿคพ๐Ÿป,1F93E-1F3FB,smileys-people,person-sport,person playing handball: light skin tone,,,Johanna Wellnitz,1,๐Ÿคพ,1F93E,3,1790 +๐Ÿคพ๐Ÿผ,1F93E-1F3FC,smileys-people,person-sport,person playing handball: medium-light skin tone,,,Johanna Wellnitz,2,๐Ÿคพ,1F93E,3,1791 +๐Ÿคพ๐Ÿฝ,1F93E-1F3FD,smileys-people,person-sport,person playing handball: medium skin tone,,,Johanna Wellnitz,3,๐Ÿคพ,1F93E,3,1792 +๐Ÿคพ๐Ÿพ,1F93E-1F3FE,smileys-people,person-sport,person playing handball: medium-dark skin tone,,,Johanna Wellnitz,4,๐Ÿคพ,1F93E,3,1793 +๐Ÿคพ๐Ÿฟ,1F93E-1F3FF,smileys-people,person-sport,person playing handball: dark skin tone,,,Johanna Wellnitz,5,๐Ÿคพ,1F93E,3,1794 +๐Ÿคน,1F939,smileys-people,person-sport,person juggling,"balance, juggle, multitask, skill",artist,Johanna Wellnitz,,๐Ÿคน,1F939,3,1819 +๐Ÿคน๐Ÿป,1F939-1F3FB,smileys-people,person-sport,person juggling: light skin tone,,,Johanna Wellnitz,1,๐Ÿคน,1F939,3,1820 +๐Ÿคน๐Ÿผ,1F939-1F3FC,smileys-people,person-sport,person juggling: medium-light skin tone,,,Johanna Wellnitz,2,๐Ÿคน,1F939,3,1821 +๐Ÿคน๐Ÿฝ,1F939-1F3FD,smileys-people,person-sport,person juggling: medium skin tone,,,Johanna Wellnitz,3,๐Ÿคน,1F939,3,1822 +๐Ÿคน๐Ÿพ,1F939-1F3FE,smileys-people,person-sport,person juggling: medium-dark skin tone,,,Johanna Wellnitz,4,๐Ÿคน,1F939,3,1823 +๐Ÿคน๐Ÿฟ,1F939-1F3FF,smileys-people,person-sport,person juggling: dark skin tone,,,Johanna Wellnitz,5,๐Ÿคน,1F939,3,1824 +๐Ÿ‘ซ,1F46B,smileys-people,family,man and woman holding hands,"couple, hand, hold, man, woman","together, heterosexual, straight",Lisa Schulz,,,,1,1849 +๐Ÿ‘ฌ,1F46C,smileys-people,family,two men holding hands,"couple, gemini, man, twins, zodiac","together, gay, homosexual",Lisa Schulz,,,,1,1850 +๐Ÿ‘ญ,1F46D,smileys-people,family,two women holding hands,"couple, hand, woman","together, girlfriend, lesbian, homosexual",Lisa Schulz,,,,1,1851 +๐Ÿ’,1F48F,smileys-people,family,kiss,couple,"man, woman, face, kiss, boy, girl",Lisa Schulz,,,,1,1852 +๐Ÿ‘ฉโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿ‘จ,1F469-200D-2764-FE0F-200D-1F48B-200D-1F468,smileys-people,family,"kiss: woman, man","couple, kiss, man, woman",,Lisa Schulz,,,,2,1853 +๐Ÿ‘จโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿ‘จ,1F468-200D-2764-FE0F-200D-1F48B-200D-1F468,smileys-people,family,"kiss: man, man","couple, kiss, man",gay,Lisa Schulz,,,,2,1855 +๐Ÿ‘ฉโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿ‘ฉ,1F469-200D-2764-FE0F-200D-1F48B-200D-1F469,smileys-people,family,"kiss: woman, woman","couple, kiss, woman","lesbian, girlfriend",Lisa Schulz,,,,2,1857 +๐Ÿ’‘,1F491,smileys-people,family,couple with heart,"couple, love","man, woman, heart",Lisa Schulz,,,,1,1859 +๐Ÿ‘ฉโ€โค๏ธโ€๐Ÿ‘จ,1F469-200D-2764-FE0F-200D-1F468,smileys-people,family,"couple with heart: woman, man","couple, couple with heart, love, man, woman",,Lisa Schulz,,,,2,1860 +๐Ÿ‘จโ€โค๏ธโ€๐Ÿ‘จ,1F468-200D-2764-FE0F-200D-1F468,smileys-people,family,"couple with heart: man, man","couple, couple with heart, love, man",gay,Lisa Schulz,,,,2,1862 +๐Ÿ‘ฉโ€โค๏ธโ€๐Ÿ‘ฉ,1F469-200D-2764-FE0F-200D-1F469,smileys-people,family,"couple with heart: woman, woman","couple, couple with heart, love, woman","lesbian, girlfried",Lisa Schulz,,,,2,1864 +๐Ÿ‘ช๏ธ,1F46A,smileys-people,family,family,family,"man, woman, boy, child",Lisa Schulz,,,,1,1866 +๐Ÿ‘จโ€๐Ÿ‘ฉโ€๐Ÿ‘ง,1F468-200D-1F469-200D-1F467,smileys-people,family,"family: man, woman, girl","family, girl, man, woman",child,Lisa Schulz,,,,2,1868 +๐Ÿคณ,1F933,smileys-people,body,selfie,"camera, phone","camera, phone",Julian Grรผneberg,,๐Ÿคณ,1F933,3,1892 +๐Ÿคณ๐Ÿป,1F933-1F3FB,smileys-people,body,selfie: light skin tone,,,Julian Grรผneberg,1,๐Ÿคณ,1F933,3,1893 +๐Ÿคณ๐Ÿผ,1F933-1F3FC,smileys-people,body,selfie: medium-light skin tone,,,Julian Grรผneberg,2,๐Ÿคณ,1F933,3,1894 +๐Ÿคณ๐Ÿฝ,1F933-1F3FD,smileys-people,body,selfie: medium skin tone,,,Julian Grรผneberg,3,๐Ÿคณ,1F933,3,1895 +๐Ÿคณ๐Ÿพ,1F933-1F3FE,smileys-people,body,selfie: medium-dark skin tone,,,Julian Grรผneberg,4,๐Ÿคณ,1F933,3,1896 +๐Ÿคณ๐Ÿฟ,1F933-1F3FF,smileys-people,body,selfie: dark skin tone,,,Julian Grรผneberg,5,๐Ÿคณ,1F933,3,1897 +๐Ÿ’ช,1F4AA,smileys-people,body,flexed biceps,"biceps, comic, flex, muscle","Flexed Biceps, Biceps, Flexed, flex, muscle, Feats of Strength, strength, feats, Strong, lisa schulz, julian grรผneberg",Julian Grรผneberg,,๐Ÿ’ช,1F4AA,1,1898 +๐Ÿ’ช๐Ÿป,1F4AA-1F3FB,smileys-people,body,flexed biceps: light skin tone,,,Julian Grรผneberg,1,๐Ÿ’ช,1F4AA,2,1899 +๐Ÿ’ช๐Ÿผ,1F4AA-1F3FC,smileys-people,body,flexed biceps: medium-light skin tone,,,Julian Grรผneberg,2,๐Ÿ’ช,1F4AA,2,1900 +๐Ÿ’ช๐Ÿฝ,1F4AA-1F3FD,smileys-people,body,flexed biceps: medium skin tone,,,Julian Grรผneberg,3,๐Ÿ’ช,1F4AA,2,1901 +๐Ÿ’ช๐Ÿพ,1F4AA-1F3FE,smileys-people,body,flexed biceps: medium-dark skin tone,,,Julian Grรผneberg,4,๐Ÿ’ช,1F4AA,2,1902 +๐Ÿ’ช๐Ÿฟ,1F4AA-1F3FF,smileys-people,body,flexed biceps: dark skin tone,,,Julian Grรผneberg,5,๐Ÿ’ช,1F4AA,2,1903 +๐Ÿ‘ˆ๏ธ,1F448,smileys-people,body,backhand index pointing left,"backhand, finger, hand, index, point","backhand, finger, hand, index, point, point, left, Middle Finger, White left",Julian Grรผneberg,,๐Ÿ‘ˆ๏ธ,1F448,1,1916 +๐Ÿ‘ˆ๐Ÿป,1F448-1F3FB,smileys-people,body,backhand index pointing left: light skin tone,,,Julian Grรผneberg,1,๐Ÿ‘ˆ๏ธ,1F448,2,1917 +๐Ÿ‘ˆ๐Ÿผ,1F448-1F3FC,smileys-people,body,backhand index pointing left: medium-light skin tone,,,Julian Grรผneberg,2,๐Ÿ‘ˆ๏ธ,1F448,2,1918 +๐Ÿ‘ˆ๐Ÿฝ,1F448-1F3FD,smileys-people,body,backhand index pointing left: medium skin tone,,,Julian Grรผneberg,3,๐Ÿ‘ˆ๏ธ,1F448,2,1919 +๐Ÿ‘ˆ๐Ÿพ,1F448-1F3FE,smileys-people,body,backhand index pointing left: medium-dark skin tone,,,Julian Grรผneberg,4,๐Ÿ‘ˆ๏ธ,1F448,2,1920 +๐Ÿ‘ˆ๐Ÿฟ,1F448-1F3FF,smileys-people,body,backhand index pointing left: dark skin tone,,,Julian Grรผneberg,5,๐Ÿ‘ˆ๏ธ,1F448,2,1921 +๐Ÿ‘‰๏ธ,1F449,smileys-people,body,backhand index pointing right,"backhand, finger, hand, index, point","backhand, finger, hand, index, point, point, right, Middle Finger, White right",Julian Grรผneberg,,๐Ÿ‘‰๏ธ,1F449,1,1922 +๐Ÿ‘‰๐Ÿป,1F449-1F3FB,smileys-people,body,backhand index pointing right: light skin tone,,,Julian Grรผneberg,1,๐Ÿ‘‰๏ธ,1F449,2,1923 +๐Ÿ‘‰๐Ÿผ,1F449-1F3FC,smileys-people,body,backhand index pointing right: medium-light skin tone,,,Julian Grรผneberg,2,๐Ÿ‘‰๏ธ,1F449,2,1924 +๐Ÿ‘‰๐Ÿฝ,1F449-1F3FD,smileys-people,body,backhand index pointing right: medium skin tone,,,Julian Grรผneberg,3,๐Ÿ‘‰๏ธ,1F449,2,1925 +๐Ÿ‘‰๐Ÿพ,1F449-1F3FE,smileys-people,body,backhand index pointing right: medium-dark skin tone,,,Julian Grรผneberg,4,๐Ÿ‘‰๏ธ,1F449,2,1926 +๐Ÿ‘‰๐Ÿฟ,1F449-1F3FF,smileys-people,body,backhand index pointing right: dark skin tone,,,Julian Grรผneberg,5,๐Ÿ‘‰๏ธ,1F449,2,1927 +โ˜๏ธ,261D,smileys-people,body,index pointing up,"finger, hand, index, point, up","finger, hand, index, point, up",Julian Grรผneberg,,โ˜๏ธ,261D,1,1929 +โ˜๐Ÿป,261D-1F3FB,smileys-people,body,index pointing up: light skin tone,,,Julian Grรผneberg,1,โ˜๏ธ,261D,2,1930 +โ˜๐Ÿผ,261D-1F3FC,smileys-people,body,index pointing up: medium-light skin tone,,,Julian Grรผneberg,2,โ˜๏ธ,261D,2,1931 +โ˜๐Ÿฝ,261D-1F3FD,smileys-people,body,index pointing up: medium skin tone,,,Julian Grรผneberg,3,โ˜๏ธ,261D,2,1932 +โ˜๐Ÿพ,261D-1F3FE,smileys-people,body,index pointing up: medium-dark skin tone,,,Julian Grรผneberg,4,โ˜๏ธ,261D,2,1933 +โ˜๐Ÿฟ,261D-1F3FF,smileys-people,body,index pointing up: dark skin tone,,,Julian Grรผneberg,5,โ˜๏ธ,261D,2,1934 +๐Ÿ‘†๏ธ,1F446,smileys-people,body,backhand index pointing up,"backhand, finger, hand, point, up","backhand, finger, hand, index, point, up, Middle Finger, White Up",Julian Grรผneberg,,๐Ÿ‘†๏ธ,1F446,1,1935 +๐Ÿ‘†๐Ÿป,1F446-1F3FB,smileys-people,body,backhand index pointing up: light skin tone,,,Julian Grรผneberg,1,๐Ÿ‘†๏ธ,1F446,2,1936 +๐Ÿ‘†๐Ÿผ,1F446-1F3FC,smileys-people,body,backhand index pointing up: medium-light skin tone,,,Julian Grรผneberg,2,๐Ÿ‘†๏ธ,1F446,2,1937 +๐Ÿ‘†๐Ÿฝ,1F446-1F3FD,smileys-people,body,backhand index pointing up: medium skin tone,,,Julian Grรผneberg,3,๐Ÿ‘†๏ธ,1F446,2,1938 +๐Ÿ‘†๐Ÿพ,1F446-1F3FE,smileys-people,body,backhand index pointing up: medium-dark skin tone,,,Julian Grรผneberg,4,๐Ÿ‘†๏ธ,1F446,2,1939 +๐Ÿ‘†๐Ÿฟ,1F446-1F3FF,smileys-people,body,backhand index pointing up: dark skin tone,,,Julian Grรผneberg,5,๐Ÿ‘†๏ธ,1F446,2,1940 +๐Ÿ–•,1F595,smileys-people,body,middle finger,"finger, hand","finger, hand, fingering",Julian Grรผneberg,,๐Ÿ–•,1F595,1,1941 +๐Ÿ–•๐Ÿป,1F595-1F3FB,smileys-people,body,middle finger: light skin tone,,,Julian Grรผneberg,1,๐Ÿ–•,1F595,2,1942 +๐Ÿ–•๐Ÿผ,1F595-1F3FC,smileys-people,body,middle finger: medium-light skin tone,,,Julian Grรผneberg,2,๐Ÿ–•,1F595,2,1943 +๐Ÿ–•๐Ÿฝ,1F595-1F3FD,smileys-people,body,middle finger: medium skin tone,,,Julian Grรผneberg,3,๐Ÿ–•,1F595,2,1944 +๐Ÿ–•๐Ÿพ,1F595-1F3FE,smileys-people,body,middle finger: medium-dark skin tone,,,Julian Grรผneberg,4,๐Ÿ–•,1F595,2,1945 +๐Ÿ–•๐Ÿฟ,1F595-1F3FF,smileys-people,body,middle finger: dark skin tone,,,Julian Grรผneberg,5,๐Ÿ–•,1F595,2,1946 +๐Ÿ‘‡๏ธ,1F447,smileys-people,body,backhand index pointing down,"backhand, down, finger, hand, point","backhand, down, finger, hand, index, point, point, down, Middle Finger, White down",Julian Grรผneberg,,๐Ÿ‘‡๏ธ,1F447,1,1947 +๐Ÿ‘‡๐Ÿป,1F447-1F3FB,smileys-people,body,backhand index pointing down: light skin tone,,,Julian Grรผneberg,1,๐Ÿ‘‡๏ธ,1F447,2,1948 +๐Ÿ‘‡๐Ÿผ,1F447-1F3FC,smileys-people,body,backhand index pointing down: medium-light skin tone,,,Julian Grรผneberg,2,๐Ÿ‘‡๏ธ,1F447,2,1949 +๐Ÿ‘‡๐Ÿฝ,1F447-1F3FD,smileys-people,body,backhand index pointing down: medium skin tone,,,Julian Grรผneberg,3,๐Ÿ‘‡๏ธ,1F447,2,1950 +๐Ÿ‘‡๐Ÿพ,1F447-1F3FE,smileys-people,body,backhand index pointing down: medium-dark skin tone,,,Julian Grรผneberg,4,๐Ÿ‘‡๏ธ,1F447,2,1951 +๐Ÿ‘‡๐Ÿฟ,1F447-1F3FF,smileys-people,body,backhand index pointing down: dark skin tone,,,Julian Grรผneberg,5,๐Ÿ‘‡๏ธ,1F447,2,1952 +โœŒ๏ธ,270C,smileys-people,body,victory hand,"hand, v, victory","hand, v, victory, Air Quotes, quotes, Peace, Peace Sign, V Sign",Julian Grรผneberg,,โœŒ๏ธ,270C,1,1954 +โœŒ๐Ÿป,270C-1F3FB,smileys-people,body,victory hand: light skin tone,,,Julian Grรผneberg,1,โœŒ๏ธ,270C,2,1955 +โœŒ๐Ÿผ,270C-1F3FC,smileys-people,body,victory hand: medium-light skin tone,,,Julian Grรผneberg,2,โœŒ๏ธ,270C,2,1956 +โœŒ๐Ÿฝ,270C-1F3FD,smileys-people,body,victory hand: medium skin tone,,,Julian Grรผneberg,3,โœŒ๏ธ,270C,2,1957 +โœŒ๐Ÿพ,270C-1F3FE,smileys-people,body,victory hand: medium-dark skin tone,,,Julian Grรผneberg,4,โœŒ๏ธ,270C,2,1958 +โœŒ๐Ÿฟ,270C-1F3FF,smileys-people,body,victory hand: dark skin tone,,,Julian Grรผneberg,5,โœŒ๏ธ,270C,2,1959 +๐Ÿคž,1F91E,smileys-people,body,crossed fingers,"cross, finger, hand, luck","Fingers Crossed, crossed, fingers, Good Luck, luck",Julian Grรผneberg,,๐Ÿคž,1F91E,3,1960 +๐Ÿคž๐Ÿป,1F91E-1F3FB,smileys-people,body,crossed fingers: light skin tone,,,Julian Grรผneberg,1,๐Ÿคž,1F91E,3,1961 +๐Ÿคž๐Ÿผ,1F91E-1F3FC,smileys-people,body,crossed fingers: medium-light skin tone,,,Julian Grรผneberg,2,๐Ÿคž,1F91E,3,1962 +๐Ÿคž๐Ÿฝ,1F91E-1F3FD,smileys-people,body,crossed fingers: medium skin tone,,,Julian Grรผneberg,3,๐Ÿคž,1F91E,3,1963 +๐Ÿคž๐Ÿพ,1F91E-1F3FE,smileys-people,body,crossed fingers: medium-dark skin tone,,,Julian Grรผneberg,4,๐Ÿคž,1F91E,3,1964 +๐Ÿคž๐Ÿฟ,1F91E-1F3FF,smileys-people,body,crossed fingers: dark skin tone,,,Julian Grรผneberg,5,๐Ÿคž,1F91E,3,1965 +๐Ÿ––,1F596,smileys-people,body,vulcan salute,"finger, hand, spock, vulcan","finger, hand, spock, vulcan",Julian Grรผneberg,,๐Ÿ––,1F596,1,1966 +๐Ÿ––๐Ÿป,1F596-1F3FB,smileys-people,body,vulcan salute: light skin tone,,,Julian Grรผneberg,1,๐Ÿ––,1F596,2,1967 +๐Ÿ––๐Ÿผ,1F596-1F3FC,smileys-people,body,vulcan salute: medium-light skin tone,,,Julian Grรผneberg,2,๐Ÿ––,1F596,2,1968 +๐Ÿ––๐Ÿฝ,1F596-1F3FD,smileys-people,body,vulcan salute: medium skin tone,,,Julian Grรผneberg,3,๐Ÿ––,1F596,2,1969 +๐Ÿ––๐Ÿพ,1F596-1F3FE,smileys-people,body,vulcan salute: medium-dark skin tone,,,Julian Grรผneberg,4,๐Ÿ––,1F596,2,1970 +๐Ÿ––๐Ÿฟ,1F596-1F3FF,smileys-people,body,vulcan salute: dark skin tone,,,Julian Grรผneberg,5,๐Ÿ––,1F596,2,1971 +๐Ÿค˜,1F918,smileys-people,body,sign of the horns,"finger, hand, horns, rock-on","rock on, finger, hand, horns, rock-on, rock, Devil, Devil Fingers, Heavy, Metal, Heavy Metal, rock",Julian Grรผneberg,,๐Ÿค˜,1F918,1,1972 +๐Ÿค˜๐Ÿป,1F918-1F3FB,smileys-people,body,sign of the horns: light skin tone,,,Julian Grรผneberg,1,๐Ÿค˜,1F918,2,1973 +๐Ÿค˜๐Ÿผ,1F918-1F3FC,smileys-people,body,sign of the horns: medium-light skin tone,,,Julian Grรผneberg,2,๐Ÿค˜,1F918,2,1974 +๐Ÿค˜๐Ÿฝ,1F918-1F3FD,smileys-people,body,sign of the horns: medium skin tone,,,Julian Grรผneberg,3,๐Ÿค˜,1F918,2,1975 +๐Ÿค˜๐Ÿพ,1F918-1F3FE,smileys-people,body,sign of the horns: medium-dark skin tone,,,Julian Grรผneberg,4,๐Ÿค˜,1F918,2,1976 +๐Ÿค˜๐Ÿฟ,1F918-1F3FF,smileys-people,body,sign of the horns: dark skin tone,,,Julian Grรผneberg,5,๐Ÿค˜,1F918,2,1977 +๐Ÿค™,1F919,smileys-people,body,call me hand,"call, hand","Call Me Hand, call, hand, Phone, Shaka",Julian Grรผneberg,,๐Ÿค™,1F919,3,1978 +๐Ÿค™๐Ÿป,1F919-1F3FB,smileys-people,body,call me hand: light skin tone,,,Julian Grรผneberg,1,๐Ÿค™,1F919,3,1979 +๐Ÿค™๐Ÿผ,1F919-1F3FC,smileys-people,body,call me hand: medium-light skin tone,,,Julian Grรผneberg,2,๐Ÿค™,1F919,3,1980 +๐Ÿค™๐Ÿฝ,1F919-1F3FD,smileys-people,body,call me hand: medium skin tone,,,Julian Grรผneberg,3,๐Ÿค™,1F919,3,1981 +๐Ÿค™๐Ÿพ,1F919-1F3FE,smileys-people,body,call me hand: medium-dark skin tone,,,Julian Grรผneberg,4,๐Ÿค™,1F919,3,1982 +๐Ÿค™๐Ÿฟ,1F919-1F3FF,smileys-people,body,call me hand: dark skin tone,,,Julian Grรผneberg,5,๐Ÿค™,1F919,3,1983 +๐Ÿ–๏ธ,1F590,smileys-people,body,hand with fingers splayed,"finger, hand, splayed","Five Hand, Hand, Five, Splayed",Julian Grรผneberg,,๐Ÿ–๏ธ,1F590,1,1985 +๐Ÿ–๐Ÿป,1F590-1F3FB,smileys-people,body,hand with fingers splayed: light skin tone,,,Julian Grรผneberg,1,๐Ÿ–๏ธ,1F590,2,1986 +๐Ÿ–๐Ÿผ,1F590-1F3FC,smileys-people,body,hand with fingers splayed: medium-light skin tone,,,Julian Grรผneberg,2,๐Ÿ–๏ธ,1F590,2,1987 +๐Ÿ–๐Ÿฝ,1F590-1F3FD,smileys-people,body,hand with fingers splayed: medium skin tone,,,Julian Grรผneberg,3,๐Ÿ–๏ธ,1F590,2,1988 +๐Ÿ–๐Ÿพ,1F590-1F3FE,smileys-people,body,hand with fingers splayed: medium-dark skin tone,,,Julian Grรผneberg,4,๐Ÿ–๏ธ,1F590,2,1989 +๐Ÿ–๐Ÿฟ,1F590-1F3FF,smileys-people,body,hand with fingers splayed: dark skin tone,,,Julian Grรผneberg,5,๐Ÿ–๏ธ,1F590,2,1990 +โœ‹,270B,smileys-people,body,raised hand,hand,"raise, raised, raised hand, hand",Julian Grรผneberg,,โœ‹,270B,1,1991 +โœ‹๐Ÿป,270B-1F3FB,smileys-people,body,raised hand: light skin tone,,,Julian Grรผneberg,1,โœ‹,270B,2,1992 +โœ‹๐Ÿผ,270B-1F3FC,smileys-people,body,raised hand: medium-light skin tone,,,Julian Grรผneberg,2,โœ‹,270B,2,1993 +โœ‹๐Ÿฝ,270B-1F3FD,smileys-people,body,raised hand: medium skin tone,,,Julian Grรผneberg,3,โœ‹,270B,2,1994 +โœ‹๐Ÿพ,270B-1F3FE,smileys-people,body,raised hand: medium-dark skin tone,,,Julian Grรผneberg,4,โœ‹,270B,2,1995 +โœ‹๐Ÿฟ,270B-1F3FF,smileys-people,body,raised hand: dark skin tone,,,Julian Grรผneberg,5,โœ‹,270B,2,1996 +๐Ÿ‘Œ,1F44C,smileys-people,body,OK hand,"hand, ok","hand, ok, okay, perfect",Julian Grรผneberg,,๐Ÿ‘Œ,1F44C,1,1997 +๐Ÿ‘Œ๐Ÿป,1F44C-1F3FB,smileys-people,body,OK hand: light skin tone,,,Julian Grรผneberg,1,๐Ÿ‘Œ,1F44C,2,1998 +๐Ÿ‘Œ๐Ÿผ,1F44C-1F3FC,smileys-people,body,OK hand: medium-light skin tone,,,Julian Grรผneberg,2,๐Ÿ‘Œ,1F44C,2,1999 +๐Ÿ‘Œ๐Ÿฝ,1F44C-1F3FD,smileys-people,body,OK hand: medium skin tone,,,Julian Grรผneberg,3,๐Ÿ‘Œ,1F44C,2,2000 +๐Ÿ‘Œ๐Ÿพ,1F44C-1F3FE,smileys-people,body,OK hand: medium-dark skin tone,,,Julian Grรผneberg,4,๐Ÿ‘Œ,1F44C,2,2001 +๐Ÿ‘Œ๐Ÿฟ,1F44C-1F3FF,smileys-people,body,OK hand: dark skin tone,,,Julian Grรผneberg,5,๐Ÿ‘Œ,1F44C,2,2002 +๐Ÿ‘๏ธ,1F44D,smileys-people,body,thumbs up,"+1, hand, thumb, up","Like, yes, +1, hand, thumb, up, thumbs up, thumbs up",Julian Grรผneberg,,๐Ÿ‘๏ธ,1F44D,1,2003 +๐Ÿ‘๐Ÿป,1F44D-1F3FB,smileys-people,body,thumbs up: light skin tone,,,Julian Grรผneberg,1,๐Ÿ‘๏ธ,1F44D,2,2004 +๐Ÿ‘๐Ÿผ,1F44D-1F3FC,smileys-people,body,thumbs up: medium-light skin tone,,,Julian Grรผneberg,2,๐Ÿ‘๏ธ,1F44D,2,2005 +๐Ÿ‘๐Ÿฝ,1F44D-1F3FD,smileys-people,body,thumbs up: medium skin tone,,,Julian Grรผneberg,3,๐Ÿ‘๏ธ,1F44D,2,2006 +๐Ÿ‘๐Ÿพ,1F44D-1F3FE,smileys-people,body,thumbs up: medium-dark skin tone,,,Julian Grรผneberg,4,๐Ÿ‘๏ธ,1F44D,2,2007 +๐Ÿ‘๐Ÿฟ,1F44D-1F3FF,smileys-people,body,thumbs up: dark skin tone,,,Julian Grรผneberg,5,๐Ÿ‘๏ธ,1F44D,2,2008 +๐Ÿ‘Ž๏ธ,1F44E,smileys-people,body,thumbs down,"-1, down, hand, thumb","Dislike no, Thumbs Down, Thumbs Down sign, -1, down, hand, thumb, thumbs",Julian Grรผneberg,,๐Ÿ‘Ž๏ธ,1F44E,1,2009 +๐Ÿ‘Ž๐Ÿป,1F44E-1F3FB,smileys-people,body,thumbs down: light skin tone,,,Julian Grรผneberg,1,๐Ÿ‘Ž๏ธ,1F44E,2,2010 +๐Ÿ‘Ž๐Ÿผ,1F44E-1F3FC,smileys-people,body,thumbs down: medium-light skin tone,,,Julian Grรผneberg,2,๐Ÿ‘Ž๏ธ,1F44E,2,2011 +๐Ÿ‘Ž๐Ÿฝ,1F44E-1F3FD,smileys-people,body,thumbs down: medium skin tone,,,Julian Grรผneberg,3,๐Ÿ‘Ž๏ธ,1F44E,2,2012 +๐Ÿ‘Ž๐Ÿพ,1F44E-1F3FE,smileys-people,body,thumbs down: medium-dark skin tone,,,Julian Grรผneberg,4,๐Ÿ‘Ž๏ธ,1F44E,2,2013 +๐Ÿ‘Ž๐Ÿฟ,1F44E-1F3FF,smileys-people,body,thumbs down: dark skin tone,,,Julian Grรผneberg,5,๐Ÿ‘Ž๏ธ,1F44E,2,2014 +โœŠ,270A,smileys-people,body,raised fist,"clenched, fist, hand, punch","clenched, fist, hand, punch",Julian Grรผneberg,,โœŠ,270A,1,2015 +โœŠ๐Ÿป,270A-1F3FB,smileys-people,body,raised fist: light skin tone,,,Julian Grรผneberg,1,โœŠ,270A,2,2016 +โœŠ๐Ÿผ,270A-1F3FC,smileys-people,body,raised fist: medium-light skin tone,,,Julian Grรผneberg,2,โœŠ,270A,2,2017 +โœŠ๐Ÿฝ,270A-1F3FD,smileys-people,body,raised fist: medium skin tone,,,Julian Grรผneberg,3,โœŠ,270A,2,2018 +โœŠ๐Ÿพ,270A-1F3FE,smileys-people,body,raised fist: medium-dark skin tone,,,Julian Grรผneberg,4,โœŠ,270A,2,2019 +โœŠ๐Ÿฟ,270A-1F3FF,smileys-people,body,raised fist: dark skin tone,,,Julian Grรผneberg,5,โœŠ,270A,2,2020 +๐Ÿ‘Š,1F44A,smileys-people,body,oncoming fist,"clenched, fist, hand, punch","clenched, fist, hand, punch, fist, oncoming fist, Brofist, Bro, Bump,",Julian Grรผneberg,,๐Ÿ‘Š,1F44A,1,2021 +๐Ÿ‘Š๐Ÿป,1F44A-1F3FB,smileys-people,body,oncoming fist: light skin tone,,,Julian Grรผneberg,1,๐Ÿ‘Š,1F44A,2,2022 +๐Ÿ‘Š๐Ÿผ,1F44A-1F3FC,smileys-people,body,oncoming fist: medium-light skin tone,,,Julian Grรผneberg,2,๐Ÿ‘Š,1F44A,2,2023 +๐Ÿ‘Š๐Ÿฝ,1F44A-1F3FD,smileys-people,body,oncoming fist: medium skin tone,,,Julian Grรผneberg,3,๐Ÿ‘Š,1F44A,2,2024 +๐Ÿ‘Š๐Ÿพ,1F44A-1F3FE,smileys-people,body,oncoming fist: medium-dark skin tone,,,Julian Grรผneberg,4,๐Ÿ‘Š,1F44A,2,2025 +๐Ÿ‘Š๐Ÿฟ,1F44A-1F3FF,smileys-people,body,oncoming fist: dark skin tone,,,Julian Grรผneberg,5,๐Ÿ‘Š,1F44A,2,2026 +๐Ÿค›,1F91B,smileys-people,body,left-facing fist,"fist, leftwards","Fist, left, leftwards, Left-Facing Fist",Julian Grรผneberg,,๐Ÿค›,1F91B,3,2027 +๐Ÿค›๐Ÿป,1F91B-1F3FB,smileys-people,body,left-facing fist: light skin tone,,,Julian Grรผneberg,1,๐Ÿค›,1F91B,3,2028 +๐Ÿค›๐Ÿผ,1F91B-1F3FC,smileys-people,body,left-facing fist: medium-light skin tone,,,Julian Grรผneberg,2,๐Ÿค›,1F91B,3,2029 +๐Ÿค›๐Ÿฝ,1F91B-1F3FD,smileys-people,body,left-facing fist: medium skin tone,,,Julian Grรผneberg,3,๐Ÿค›,1F91B,3,2030 +๐Ÿค›๐Ÿพ,1F91B-1F3FE,smileys-people,body,left-facing fist: medium-dark skin tone,,,Julian Grรผneberg,4,๐Ÿค›,1F91B,3,2031 +๐Ÿค›๐Ÿฟ,1F91B-1F3FF,smileys-people,body,left-facing fist: dark skin tone,,,Julian Grรผneberg,5,๐Ÿค›,1F91B,3,2032 +๐Ÿคœ,1F91C,smileys-people,body,right-facing fist,"fist, rightwards","Right, fist, rightwards, right-Facing Fist",Julian Grรผneberg,,๐Ÿคœ,1F91C,3,2033 +๐Ÿคœ๐Ÿป,1F91C-1F3FB,smileys-people,body,right-facing fist: light skin tone,,,Julian Grรผneberg,1,๐Ÿคœ,1F91C,3,2034 +๐Ÿคœ๐Ÿผ,1F91C-1F3FC,smileys-people,body,right-facing fist: medium-light skin tone,,,Julian Grรผneberg,2,๐Ÿคœ,1F91C,3,2035 +๐Ÿคœ๐Ÿฝ,1F91C-1F3FD,smileys-people,body,right-facing fist: medium skin tone,,,Julian Grรผneberg,3,๐Ÿคœ,1F91C,3,2036 +๐Ÿคœ๐Ÿพ,1F91C-1F3FE,smileys-people,body,right-facing fist: medium-dark skin tone,,,Julian Grรผneberg,4,๐Ÿคœ,1F91C,3,2037 +๐Ÿคœ๐Ÿฟ,1F91C-1F3FF,smileys-people,body,right-facing fist: dark skin tone,,,Julian Grรผneberg,5,๐Ÿคœ,1F91C,3,2038 +๐Ÿคš,1F91A,smileys-people,body,raised back of hand,"backhand, raised","Backhand, raised, hand",Julian Grรผneberg,,๐Ÿคš,1F91A,3,2039 +๐Ÿคš๐Ÿป,1F91A-1F3FB,smileys-people,body,raised back of hand: light skin tone,,,Julian Grรผneberg,1,๐Ÿคš,1F91A,3,2040 +๐Ÿคš๐Ÿผ,1F91A-1F3FC,smileys-people,body,raised back of hand: medium-light skin tone,,,Julian Grรผneberg,2,๐Ÿคš,1F91A,3,2041 +๐Ÿคš๐Ÿฝ,1F91A-1F3FD,smileys-people,body,raised back of hand: medium skin tone,,,Julian Grรผneberg,3,๐Ÿคš,1F91A,3,2042 +๐Ÿคš๐Ÿพ,1F91A-1F3FE,smileys-people,body,raised back of hand: medium-dark skin tone,,,Julian Grรผneberg,4,๐Ÿคš,1F91A,3,2043 +๐Ÿคš๐Ÿฟ,1F91A-1F3FF,smileys-people,body,raised back of hand: dark skin tone,,,Julian Grรผneberg,5,๐Ÿคš,1F91A,3,2044 +๐Ÿ‘‹,1F44B,smileys-people,body,waving hand,"hand, wave, waving","Hello, Goodbye, Waving Hand Sign, Wave",Julian Grรผneberg,,๐Ÿ‘‹,1F44B,1,2045 +๐Ÿ‘‹๐Ÿป,1F44B-1F3FB,smileys-people,body,waving hand: light skin tone,,,Julian Grรผneberg,1,๐Ÿ‘‹,1F44B,2,2046 +๐Ÿ‘‹๐Ÿผ,1F44B-1F3FC,smileys-people,body,waving hand: medium-light skin tone,,,Julian Grรผneberg,2,๐Ÿ‘‹,1F44B,2,2047 +๐Ÿ‘‹๐Ÿฝ,1F44B-1F3FD,smileys-people,body,waving hand: medium skin tone,,,Julian Grรผneberg,3,๐Ÿ‘‹,1F44B,2,2048 +๐Ÿ‘‹๐Ÿพ,1F44B-1F3FE,smileys-people,body,waving hand: medium-dark skin tone,,,Julian Grรผneberg,4,๐Ÿ‘‹,1F44B,2,2049 +๐Ÿ‘‹๐Ÿฟ,1F44B-1F3FF,smileys-people,body,waving hand: dark skin tone,,,Julian Grรผneberg,5,๐Ÿ‘‹,1F44B,2,2050 +๐ŸคŸ,1F91F,smileys-people,body,love-you gesture,"hand, ily","hand, ily, love,",Julian Grรผneberg,,๐ŸคŸ,1F91F,5,2051 +๐ŸคŸ๐Ÿป,1F91F-1F3FB,smileys-people,body,love-you gesture: light skin tone,,,Julian Grรผneberg,1,๐ŸคŸ,1F91F,5,2052 +๐ŸคŸ๐Ÿผ,1F91F-1F3FC,smileys-people,body,love-you gesture: medium-light skin tone,,,Julian Grรผneberg,2,๐ŸคŸ,1F91F,5,2053 +๐ŸคŸ๐Ÿฝ,1F91F-1F3FD,smileys-people,body,love-you gesture: medium skin tone,,,Julian Grรผneberg,3,๐ŸคŸ,1F91F,5,2054 +๐ŸคŸ๐Ÿพ,1F91F-1F3FE,smileys-people,body,love-you gesture: medium-dark skin tone,,,Julian Grรผneberg,4,๐ŸคŸ,1F91F,5,2055 +๐ŸคŸ๐Ÿฟ,1F91F-1F3FF,smileys-people,body,love-you gesture: dark skin tone,,,Julian Grรผneberg,5,๐ŸคŸ,1F91F,5,2056 +โœ๏ธ,270D,smileys-people,body,writing hand,"hand, write","Writing Hand, Writing, Write",Julian Grรผneberg,,โœ๏ธ,270D,1,2058 +โœ๐Ÿป,270D-1F3FB,smileys-people,body,writing hand: light skin tone,,,Julian Grรผneberg,1,โœ๏ธ,270D,2,2059 +โœ๐Ÿผ,270D-1F3FC,smileys-people,body,writing hand: medium-light skin tone,,,Julian Grรผneberg,2,โœ๏ธ,270D,2,2060 +โœ๐Ÿฝ,270D-1F3FD,smileys-people,body,writing hand: medium skin tone,,,Julian Grรผneberg,3,โœ๏ธ,270D,2,2061 +โœ๐Ÿพ,270D-1F3FE,smileys-people,body,writing hand: medium-dark skin tone,,,Julian Grรผneberg,4,โœ๏ธ,270D,2,2062 +โœ๐Ÿฟ,270D-1F3FF,smileys-people,body,writing hand: dark skin tone,,,Julian Grรผneberg,5,โœ๏ธ,270D,2,2063 +๐Ÿ‘,1F44F,smileys-people,body,clapping hands,"clap, hand","clap, hand, clapping hands, Applause, Clap, Clapping, Golf Clap, Round Of Applause",Julian Grรผneberg,,๐Ÿ‘,1F44F,1,2064 +๐Ÿ‘๐Ÿป,1F44F-1F3FB,smileys-people,body,clapping hands: light skin tone,,,Julian Grรผneberg,1,๐Ÿ‘,1F44F,2,2065 +๐Ÿ‘๐Ÿผ,1F44F-1F3FC,smileys-people,body,clapping hands: medium-light skin tone,,,Julian Grรผneberg,2,๐Ÿ‘,1F44F,2,2066 +๐Ÿ‘๐Ÿฝ,1F44F-1F3FD,smileys-people,body,clapping hands: medium skin tone,,,Julian Grรผneberg,3,๐Ÿ‘,1F44F,2,2067 +๐Ÿ‘๐Ÿพ,1F44F-1F3FE,smileys-people,body,clapping hands: medium-dark skin tone,,,Julian Grรผneberg,4,๐Ÿ‘,1F44F,2,2068 +๐Ÿ‘๐Ÿฟ,1F44F-1F3FF,smileys-people,body,clapping hands: dark skin tone,,,Julian Grรผneberg,5,๐Ÿ‘,1F44F,2,2069 +๐Ÿ‘,1F450,smileys-people,body,open hands,"hand, open","Hug, Open Hands, Open, Hands, Jazz Hands, Jazz",Julian Grรผneberg,,๐Ÿ‘,1F450,1,2070 +๐Ÿ‘๐Ÿป,1F450-1F3FB,smileys-people,body,open hands: light skin tone,,,Julian Grรผneberg,1,๐Ÿ‘,1F450,2,2071 +๐Ÿ‘๐Ÿผ,1F450-1F3FC,smileys-people,body,open hands: medium-light skin tone,,,Julian Grรผneberg,2,๐Ÿ‘,1F450,2,2072 +๐Ÿ‘๐Ÿฝ,1F450-1F3FD,smileys-people,body,open hands: medium skin tone,,,Julian Grรผneberg,3,๐Ÿ‘,1F450,2,2073 +๐Ÿ‘๐Ÿพ,1F450-1F3FE,smileys-people,body,open hands: medium-dark skin tone,,,Julian Grรผneberg,4,๐Ÿ‘,1F450,2,2074 +๐Ÿ‘๐Ÿฟ,1F450-1F3FF,smileys-people,body,open hands: dark skin tone,,,Julian Grรผneberg,5,๐Ÿ‘,1F450,2,2075 +๐Ÿ™Œ,1F64C,smileys-people,body,raising hands,"celebration, gesture, hand, hooray, raised","Raising Hands, Raising, Hands, celebration, gesture, hand, hooray, raised, Arms In The Air, Banzai, Festivus Miracle, Hallelujah, Praise Hands, Two Hands",Julian Grรผneberg,,๐Ÿ™Œ,1F64C,1,2076 +๐Ÿ™Œ๐Ÿป,1F64C-1F3FB,smileys-people,body,raising hands: light skin tone,,,Julian Grรผneberg,1,๐Ÿ™Œ,1F64C,2,2077 +๐Ÿ™Œ๐Ÿผ,1F64C-1F3FC,smileys-people,body,raising hands: medium-light skin tone,,,Julian Grรผneberg,2,๐Ÿ™Œ,1F64C,2,2078 +๐Ÿ™Œ๐Ÿฝ,1F64C-1F3FD,smileys-people,body,raising hands: medium skin tone,,,Julian Grรผneberg,3,๐Ÿ™Œ,1F64C,2,2079 +๐Ÿ™Œ๐Ÿพ,1F64C-1F3FE,smileys-people,body,raising hands: medium-dark skin tone,,,Julian Grรผneberg,4,๐Ÿ™Œ,1F64C,2,2080 +๐Ÿ™Œ๐Ÿฟ,1F64C-1F3FF,smileys-people,body,raising hands: dark skin tone,,,Julian Grรผneberg,5,๐Ÿ™Œ,1F64C,2,2081 +๐Ÿคฒ,1F932,smileys-people,body,palms up together,prayer,"prayer, pray, god",Julian Grรผneberg,,๐Ÿคฒ,1F932,5,2082 +๐Ÿคฒ๐Ÿป,1F932-1F3FB,smileys-people,body,palms up together: light skin tone,,,Julian Grรผneberg,1,๐Ÿคฒ,1F932,5,2083 +๐Ÿคฒ๐Ÿผ,1F932-1F3FC,smileys-people,body,palms up together: medium-light skin tone,,,Julian Grรผneberg,2,๐Ÿคฒ,1F932,5,2084 +๐Ÿคฒ๐Ÿฝ,1F932-1F3FD,smileys-people,body,palms up together: medium skin tone,,,Julian Grรผneberg,3,๐Ÿคฒ,1F932,5,2085 +๐Ÿคฒ๐Ÿพ,1F932-1F3FE,smileys-people,body,palms up together: medium-dark skin tone,,,Julian Grรผneberg,4,๐Ÿคฒ,1F932,5,2086 +๐Ÿคฒ๐Ÿฟ,1F932-1F3FF,smileys-people,body,palms up together: dark skin tone,,,Julian Grรผneberg,5,๐Ÿคฒ,1F932,5,2087 +๐Ÿ™,1F64F,smileys-people,body,folded hands,"ask, hand, please, pray, thanks","ask, bow, folded, gesture, hand, please, pray, thanks",Julian Grรผneberg,,๐Ÿ™,1F64F,1,2088 +๐Ÿ™๐Ÿป,1F64F-1F3FB,smileys-people,body,folded hands: light skin tone,,,Julian Grรผneberg,1,๐Ÿ™,1F64F,2,2089 +๐Ÿ™๐Ÿผ,1F64F-1F3FC,smileys-people,body,folded hands: medium-light skin tone,,,Julian Grรผneberg,2,๐Ÿ™,1F64F,2,2090 +๐Ÿ™๐Ÿฝ,1F64F-1F3FD,smileys-people,body,folded hands: medium skin tone,,,Julian Grรผneberg,3,๐Ÿ™,1F64F,2,2091 +๐Ÿ™๐Ÿพ,1F64F-1F3FE,smileys-people,body,folded hands: medium-dark skin tone,,,Julian Grรผneberg,4,๐Ÿ™,1F64F,2,2092 +๐Ÿ™๐Ÿฟ,1F64F-1F3FF,smileys-people,body,folded hands: dark skin tone,,,Julian Grรผneberg,5,๐Ÿ™,1F64F,2,2093 +๐Ÿค,1F91D,smileys-people,body,handshake,"agreement, hand, meeting, shake","Shaking Hands, agreement, hand, meeting, shake, hello, bye, goodbye",Julian Grรผneberg,,,,3,2094 +๐Ÿ‘‚๏ธ,1F442,smileys-people,body,ear,body,"ear, hear, listen",Julian Grรผneberg,,๐Ÿ‘‚๏ธ,1F442,1,2101 +๐Ÿ‘‚๐Ÿป,1F442-1F3FB,smileys-people,body,ear: light skin tone,,,Julian Grรผneberg,1,๐Ÿ‘‚๏ธ,1F442,2,2102 +๐Ÿ‘‚๐Ÿผ,1F442-1F3FC,smileys-people,body,ear: medium-light skin tone,,,Julian Grรผneberg,2,๐Ÿ‘‚๏ธ,1F442,2,2103 +๐Ÿ‘‚๐Ÿฝ,1F442-1F3FD,smileys-people,body,ear: medium skin tone,,,Julian Grรผneberg,3,๐Ÿ‘‚๏ธ,1F442,2,2104 +๐Ÿ‘‚๐Ÿพ,1F442-1F3FE,smileys-people,body,ear: medium-dark skin tone,,,Julian Grรผneberg,4,๐Ÿ‘‚๏ธ,1F442,2,2105 +๐Ÿ‘‚๐Ÿฟ,1F442-1F3FF,smileys-people,body,ear: dark skin tone,,,Julian Grรผneberg,5,๐Ÿ‘‚๏ธ,1F442,2,2106 +๐Ÿ‘ƒ,1F443,smileys-people,body,nose,body,"nose, smell",Julian Grรผneberg,,๐Ÿ‘ƒ,1F443,1,2107 +๐Ÿ‘ƒ๐Ÿป,1F443-1F3FB,smileys-people,body,nose: light skin tone,,,Julian Grรผneberg,1,๐Ÿ‘ƒ,1F443,2,2108 +๐Ÿ‘ƒ๐Ÿผ,1F443-1F3FC,smileys-people,body,nose: medium-light skin tone,,,Julian Grรผneberg,2,๐Ÿ‘ƒ,1F443,2,2109 +๐Ÿ‘ƒ๐Ÿฝ,1F443-1F3FD,smileys-people,body,nose: medium skin tone,,,Julian Grรผneberg,3,๐Ÿ‘ƒ,1F443,2,2110 +๐Ÿ‘ƒ๐Ÿพ,1F443-1F3FE,smileys-people,body,nose: medium-dark skin tone,,,Julian Grรผneberg,4,๐Ÿ‘ƒ,1F443,2,2111 +๐Ÿ‘ƒ๐Ÿฟ,1F443-1F3FF,smileys-people,body,nose: dark skin tone,,,Julian Grรผneberg,5,๐Ÿ‘ƒ,1F443,2,2112 +๐Ÿ‘ฃ,1F463,smileys-people,body,footprints,"clothing, footprint, print","clothing, footprint, print",Julian Grรผneberg,,,,1,2117 +๐Ÿ‘€,1F440,smileys-people,body,eyes,"eye, face","eye, face, eyes",Julian Grรผneberg,,,,1,2118 +๐Ÿ‘๏ธ,1F441,smileys-people,body,eye,body,"eye, face",Julian Grรผneberg,,,,1,2120 +๐Ÿ‘๏ธโ€๐Ÿ—จ๏ธ,1F441-FE0F-200D-1F5E8-FE0F,smileys-people,body,eye in speech bubble,"eye, speech bubble, witness","eye, speech bubble, witness",Julian Grรผneberg,,,,4,2121 +๐Ÿง ,1F9E0,smileys-people,body,brain,intelligent,"brain, intelligent, clever",Julian Grรผneberg,,,,5,2125 +๐Ÿ‘…,1F445,smileys-people,body,tongue,body,"tongue, kiss, lick, licking",Julian Grรผneberg,,,,1,2128 +๐Ÿ‘„,1F444,smileys-people,body,mouth,lips,"lips, kiss, mouth",Julian Grรผneberg,,,,1,2129 +๐Ÿ’‹,1F48B,smileys-people,emotion,kiss mark,"kiss, lips",love,Laura Humpfer,,,,1,2130 +๐Ÿ’˜,1F498,smileys-people,emotion,heart with arrow,"arrow, cupid","love, inlove",Laura Humpfer,,,,1,2131 +โค๏ธ,2764,smileys-people,emotion,red heart,heart,"love, red",Laura Humpfer,,,,1,2133 +๐Ÿ’“,1F493,smileys-people,emotion,beating heart,"beating, heartbeat, pulsating",love,Laura Humpfer,,,,1,2134 +๐Ÿ’”,1F494,smileys-people,emotion,broken heart,"break, broken",heartbreak,Laura Humpfer,,,,1,2135 +๐Ÿ’•,1F495,smileys-people,emotion,two hearts,love,,Laura Humpfer,,,,1,2136 +๐Ÿ’–,1F496,smileys-people,emotion,sparkling heart,"excited, sparkle","love, inlove",Laura Humpfer,,,,1,2137 +๐Ÿ’—,1F497,smileys-people,emotion,growing heart,"excited, growing, nervous, pulse","love, inlove",Laura Humpfer,,,,1,2138 +๐Ÿ’™,1F499,smileys-people,emotion,blue heart,blue,,Laura Humpfer,,,,1,2139 +๐Ÿ’š,1F49A,smileys-people,emotion,green heart,green,,Laura Humpfer,,,,1,2140 +๐Ÿ’›,1F49B,smileys-people,emotion,yellow heart,yellow,,Laura Humpfer,,,,1,2141 +๐Ÿ’œ,1F49C,smileys-people,emotion,purple heart,purple,,Laura Humpfer,,,,1,2143 +๐Ÿ–ค,1F5A4,smileys-people,emotion,black heart,"black, evil, wicked",,Laura Humpfer,,,,3,2144 +๐Ÿ’,1F49D,smileys-people,emotion,heart with ribbon,"ribbon, valentine","present, love",Laura Humpfer,,,,1,2145 +๐Ÿ’ž,1F49E,smileys-people,emotion,revolving hearts,revolving,,Laura Humpfer,,,,1,2146 +๐Ÿ’Ÿ,1F49F,smileys-people,emotion,heart decoration,heart,,Laura Humpfer,,,,1,2147 +โฃ๏ธ,2763,smileys-people,emotion,heavy heart exclamation,"exclamation, mark, punctuation",,Laura Humpfer,,,,1,2149 +๐Ÿ’Œ,1F48C,smileys-people,emotion,love letter,"heart, letter, love, mail",,Laura Humpfer,,,,1,2150 +๐Ÿ’ค,1F4A4,smileys-people,emotion,zzz,"comic, sleep",night,Laura Humpfer,,,,1,2151 +๐Ÿ’ฃ๏ธ,1F4A3,smileys-people,emotion,bomb,comic,explosion,Laura Humpfer,,,,1,2153 +๐Ÿ’ฅ,1F4A5,smileys-people,emotion,collision,"boom, comic",explosion,Laura Humpfer,,,,1,2154 +๐Ÿ’ฆ,1F4A6,smileys-people,emotion,sweat droplets,"comic, splashing, sweat",,Laura Humpfer,,,,1,2155 +๐Ÿ’จ,1F4A8,smileys-people,emotion,dashing away,"comic, dash, running",,Laura Humpfer,,,,1,2156 +๐Ÿ’ซ,1F4AB,smileys-people,emotion,dizzy,"comic, star",shootingstar,Laura Humpfer,,,,1,2157 +๐Ÿ’ฌ,1F4AC,smileys-people,emotion,speech balloon,"balloon, bubble, comic, dialog, speech",talk,Laura Humpfer,,,,1,2158 +๐Ÿ—จ๏ธ,1F5E8,smileys-people,emotion,left speech bubble,"dialog, speech",,Laura Humpfer,,,,2,2160 +๐Ÿ—ฏ๏ธ,1F5EF,smileys-people,emotion,right anger bubble,"angry, balloon, bubble, mad",,Laura Humpfer,,,,1,2162 +๐Ÿ’ญ,1F4AD,smileys-people,emotion,thought balloon,"balloon, bubble, comic, thought",think,Laura Humpfer,,,,1,2163 +๐Ÿ•ณ๏ธ,1F573,smileys-people,emotion,hole,hole,,Laura Humpfer,,,,1,2165 +๐Ÿ‘“๏ธ,1F453,smileys-people,clothing,glasses,"clothing, eye, eyeglasses, eyewear",,Jonas RoรŸner,,,,1,2166 +๐Ÿ•ถ๏ธ,1F576,smileys-people,clothing,sunglasses,"dark, eye, eyewear, glasses",sunglasses,Jonas RoรŸner,,,,1,2168 +๐Ÿ‘”,1F454,smileys-people,clothing,necktie,"clothing, tie","cravatte, smart",Jonas RoรŸner,,,,1,2171 +๐Ÿ‘•,1F455,smileys-people,clothing,t-shirt,"clothing, shirt, tshirt",,Jonas RoรŸner,,,,1,2172 +๐Ÿ‘–,1F456,smileys-people,clothing,jeans,"clothing, pants, trousers",,Jonas RoรŸner,,,,1,2173 +๐Ÿ‘—,1F457,smileys-people,clothing,dress,clothing,"beautiful, dress, woman",Jonas RoรŸner,,,,1,2178 +๐Ÿ‘˜,1F458,smileys-people,clothing,kimono,clothing,"japan, clothing",Jonas RoรŸner,,,,1,2179 +๐Ÿ‘™,1F459,smileys-people,clothing,bikini,"clothing, swim","summer,",Jonas RoรŸner,,,,1,2180 +๐Ÿ‘š,1F45A,smileys-people,clothing,womanโ€™s clothes,"clothing, woman",,Jonas RoรŸner,,,,1,2181 +๐Ÿ‘›,1F45B,smileys-people,clothing,purse,"clothing, coin","money,",Jonas RoรŸner,,,,1,2182 +๐Ÿ‘œ,1F45C,smileys-people,clothing,handbag,"bag, clothing, purse",,Jonas RoรŸner,,,,1,2183 +๐Ÿ‘,1F45D,smileys-people,clothing,clutch bag,"bag, clothing, pouch",,Jonas RoรŸner,,,,1,2184 +๐Ÿ›๏ธ,1F6CD,smileys-people,clothing,shopping bags,"bag, hotel, shopping","buy,",Jonas RoรŸner,,,,1,2186 +๐ŸŽ’,1F392,smileys-people,clothing,backpack,"bag, rucksack, satchel, school","young,",Jonas RoรŸner,,,,1,2187 +๐Ÿ‘ž,1F45E,smileys-people,clothing,manโ€™s shoe,"clothing, man, shoe",,Jonas RoรŸner,,,,1,2188 +๐Ÿ‘Ÿ,1F45F,smileys-people,clothing,running shoe,"athletic, clothing, shoe, sneaker",,Jonas RoรŸner,,,,1,2189 +๐Ÿ‘ ,1F460,smileys-people,clothing,high-heeled shoe,"clothing, heel, shoe, woman",,Jonas RoรŸner,,,,1,2192 +๐Ÿ‘ก,1F461,smileys-people,clothing,womanโ€™s sandal,"clothing, sandal, shoe, woman",,Jonas RoรŸner,,,,1,2193 +๐Ÿ‘ข,1F462,smileys-people,clothing,womanโ€™s boot,"boot, clothing, shoe, woman",,Jonas RoรŸner,,,,1,2194 +๐Ÿ‘‘,1F451,smileys-people,clothing,crown,"clothing, king, queen","crone, gold,",Jonas RoรŸner,,,,1,2195 +๐Ÿ‘’,1F452,smileys-people,clothing,womanโ€™s hat,"clothing, hat, woman","beautiful,",Jonas RoรŸner,,,,1,2196 +๐ŸŽฉ,1F3A9,smileys-people,clothing,top hat,"clothing, hat, top, tophat","magic,",Jonas RoรŸner,,,,1,2197 +๐ŸŽ“๏ธ,1F393,smileys-people,clothing,graduation cap,"cap, celebration, clothing, graduation, hat",,Jonas RoรŸner,,,,1,2198 +๐Ÿ“ฟ,1F4FF,smileys-people,clothing,prayer beads,"beads, clothing, necklace, prayer, religion","expensive, jewelry",Jonas RoรŸner,,,,1,2202 +๐Ÿ’,1F48D,smileys-people,clothing,ring,diamond,"expensive, jewelry",Jonas RoรŸner,,,,1,2204 +๐Ÿ’Ž,1F48E,smileys-people,clothing,gem stone,"diamond, gem, jewel","expensive,",Jonas RoรŸner,,,,1,2205 +๐Ÿต,1F435,animals-nature,animal-mammal,monkey face,"face, monkey","jungle, ape, evolution, primate, africa",Sofie Ascherl,,,,1,2206 +๐Ÿ’,1F412,animals-nature,animal-mammal,monkey,monkey,"jungle, ape, evolution, primate",Sofie Ascherl,,,,1,2207 +๐Ÿฆ,1F98D,animals-nature,animal-mammal,gorilla,gorilla,"monkey, primate, evolution",Sofie Ascherl,,,,3,2208 +๐Ÿถ,1F436,animals-nature,animal-mammal,dog face,"dog, face, pet","friend, puppy, doggy",Sofie Ascherl,,,,1,2209 +๐Ÿ•๏ธ,1F415,animals-nature,animal-mammal,dog,pet,"puppy, doggy",Sofie Ascherl,,,,1,2210 +๐Ÿบ,1F43A,animals-nature,animal-mammal,wolf face,"face, wolf","pack, wild, free, forest, dog",Sofie Ascherl,,,,1,2212 +๐ŸฆŠ,1F98A,animals-nature,animal-mammal,fox face,"face, fox","smart, red, quick, intelligent",Sofie Ascherl,,,,3,2213 +๐Ÿฑ,1F431,animals-nature,animal-mammal,cat face,"cat, face, pet","pet, kitty, kitten, miau",Sofie Ascherl,,,,1,2215 +๐Ÿˆ๏ธ,1F408,animals-nature,animal-mammal,cat,pet,"pet, kitty, kitten, miau",Sofie Ascherl,,,,1,2216 +๐Ÿฆ,1F981,animals-nature,animal-mammal,lion face,"face, leo, lion, zodiac","king, simba, royal, wild, cat",Sofie Ascherl,,,,1,2217 +๐Ÿฏ,1F42F,animals-nature,animal-mammal,tiger face,"face, tiger","stripes, strong, cat, wild",Sofie Ascherl,,,,1,2218 +๐Ÿ…,1F405,animals-nature,animal-mammal,tiger,tiger,"stripes, strong, cat, wild",Sofie Ascherl,,,,1,2219 +๐Ÿ†,1F406,animals-nature,animal-mammal,leopard,leopard,"dots, strong, cat, wild, spots",Sofie Ascherl,,,,1,2220 +๐Ÿด,1F434,animals-nature,animal-mammal,horse face,"face, horse","riding, sport",Sofie Ascherl,,,,1,2221 +๐ŸŽ,1F40E,animals-nature,animal-mammal,horse,"equestrian, racehorse, racing","riding, sport",Sofie Ascherl,,,,1,2222 +๐Ÿฆ„,1F984,animals-nature,animal-mammal,unicorn face,"face, unicorn","fabulous, magical, rainbow, schwรคbisch, gmรผnd",Sofie Ascherl,,,,1,2223 +๐Ÿฆ“,1F993,animals-nature,animal-mammal,zebra,stripe,"horse, black, white",Sofie Ascherl,,,,5,2224 +๐ŸฆŒ,1F98C,animals-nature,animal-mammal,deer,deer,"forest, hunt, antler",Sofie Ascherl,,,,3,2225 +๐Ÿฎ,1F42E,animals-nature,animal-mammal,cow face,"cow, face","farm, milk, beef, grass, dairy, horns, cheese",Sofie Ascherl,,,,1,2226 +๐Ÿ‚,1F402,animals-nature,animal-mammal,ox,"bull, taurus, zodiac","strong, farm, acre, horns, beef",Sofie Ascherl,,,,1,2227 +๐Ÿƒ,1F403,animals-nature,animal-mammal,water buffalo,"buffalo, water","black, horns, beef",Sofie Ascherl,,,,1,2228 +๐Ÿ„,1F404,animals-nature,animal-mammal,cow,cow,"farm, milk, beef, grass, dairy, horns, cheese",Sofie Ascherl,,,,1,2229 +๐Ÿท,1F437,animals-nature,animal-mammal,pig face,"face, pig","pork, farm, pink, meat, oink",Sofie Ascherl,,,,1,2230 +๐Ÿ–,1F416,animals-nature,animal-mammal,pig,sow,"pork, farm, pink, meat, oink",Sofie Ascherl,,,,1,2231 +๐Ÿ—,1F417,animals-nature,animal-mammal,boar,pig,"wild, strong, forest, angry, teeth, tusk",Sofie Ascherl,,,,1,2232 +๐Ÿฝ,1F43D,animals-nature,animal-mammal,pig nose,"face, nose, pig","smell, socket, nose",Sofie Ascherl,,,,1,2233 +๐Ÿ,1F40F,animals-nature,animal-mammal,ram,"aries, male, sheep, zodiac","horns, grass, hooves, wool",Sofie Ascherl,,,,1,2234 +๐Ÿ‘,1F411,animals-nature,animal-mammal,ewe,"female, sheep","horns, grass, hooves, wool, farm",Sofie Ascherl,,,,1,2235 +๐Ÿ,1F410,animals-nature,animal-mammal,goat,"capricorn, zodiac","horns, farm, milk, cheese",Sofie Ascherl,,,,1,2236 +๐Ÿช,1F42A,animals-nature,animal-mammal,camel,"dromedary, hump","desert, oasis, sahara, sun, hot, hump",Sofie Ascherl,,,,1,2237 +๐Ÿซ,1F42B,animals-nature,animal-mammal,two-hump camel,"bactrian, camel, hump","desert, oasis, sahara, sun, hot, hump",Sofie Ascherl,,,,1,2238 +๐Ÿฆ’,1F992,animals-nature,animal-mammal,giraffe,spots,"long, neck, trees, big",Sofie Ascherl,,,,5,2240 +๐Ÿ˜,1F418,animals-nature,animal-mammal,elephant,elephant,"big, wrinkles, trunk, tรถrรถรถ",Sofie Ascherl,,,,1,2241 +๐Ÿฆ,1F98F,animals-nature,animal-mammal,rhinoceros,rhinoceros,"rhino, horn, africa",Sofie Ascherl,,,,3,2242 +๐Ÿญ,1F42D,animals-nature,animal-mammal,mouse face,"face, mouse","cute, whiskers, tiny, rodent",Sofie Ascherl,,,,1,2244 +๐Ÿ,1F401,animals-nature,animal-mammal,mouse,mouse,"small, cute, whiskers, tiny, rodent",Sofie Ascherl,,,,1,2245 +๐Ÿ€,1F400,animals-nature,animal-mammal,rat,rat,"rodent, plaque, fleas, canal, garbage",Sofie Ascherl,,,,1,2246 +๐Ÿน,1F439,animals-nature,animal-mammal,hamster face,"face, hamster, pet","rodent, fat, fluffy, corn",Sofie Ascherl,,,,1,2247 +๐Ÿฐ,1F430,animals-nature,animal-mammal,rabbit face,"bunny, face, pet, rabbit","rodent, teeth, cute, ears, bunny, hopping, easter",Sofie Ascherl,,,,1,2248 +๐Ÿ‡,1F407,animals-nature,animal-mammal,rabbit,"bunny, pet","rodent, teeth, cute, ears, bunny, hopping, easter",Sofie Ascherl,,,,1,2249 +๐Ÿฟ๏ธ,1F43F,animals-nature,animal-mammal,chipmunk,squirrel,"squirrel, alvin",Sofie Ascherl,,,,1,2251 +๐Ÿฆ”,1F994,animals-nature,animal-mammal,hedgehog,spiny,"prickly, fall, apple, leafs",Sofie Ascherl,,,,5,2252 +๐Ÿฆ‡,1F987,animals-nature,animal-mammal,bat,vampire,"batman, dracula",Sofie Ascherl,,,,3,2253 +๐Ÿป,1F43B,animals-nature,animal-mammal,bear face,"bear, face","brown, salmon, river, thick",Sofie Ascherl,,,,1,2254 +๐Ÿจ,1F428,animals-nature,animal-mammal,koala,bear,"grey, fluffy, eucalyptus, australia, clingy",Sofie Ascherl,,,,1,2255 +๐Ÿผ,1F43C,animals-nature,animal-mammal,panda face,"face, panda","kawaii, cute, japan",Sofie Ascherl,,,,1,2256 +๐Ÿพ,1F43E,animals-nature,animal-mammal,paw prints,"feet, paw, print","paws, feet, pet, animal",Sofie Ascherl,,,,1,2259 +๐Ÿฆƒ,1F983,animals-nature,animal-bird,turkey,bird,,Selina Bauder,,,,1,2260 +๐Ÿ”,1F414,animals-nature,animal-bird,chicken,bird,egg,Selina Bauder,,,,1,2261 +๐Ÿ“,1F413,animals-nature,animal-bird,rooster,bird,egg,Selina Bauder,,,,1,2262 +๐Ÿฃ,1F423,animals-nature,animal-bird,hatching chick,"baby, bird, chick, hatching","baby, egg",Selina Bauder,,,,1,2263 +๐Ÿค,1F424,animals-nature,animal-bird,baby chick,"baby, bird, chick","small, baby, egg",Selina Bauder,,,,1,2264 +๐Ÿฅ,1F425,animals-nature,animal-bird,front-facing baby chick,"baby, bird, chick",,Selina Bauder,,,,1,2265 +๐Ÿฆ๏ธ,1F426,animals-nature,animal-bird,bird,bird,"fly, colourful",Selina Bauder,,,,1,2266 +๐Ÿง,1F427,animals-nature,animal-bird,penguin,bird,,Selina Bauder,,,,1,2267 +๐Ÿ•Š๏ธ,1F54A,animals-nature,animal-bird,dove,"bird, fly, peace",fly,Selina Bauder,,,,1,2269 +๐Ÿฆ…,1F985,animals-nature,animal-bird,eagle,bird,fly,Selina Bauder,,,,3,2270 +๐Ÿฆ†,1F986,animals-nature,animal-bird,duck,bird,"water, fly",Selina Bauder,,,,3,2271 +๐Ÿฆ‰,1F989,animals-nature,animal-bird,owl,"bird, wise",,Selina Bauder,,,,3,2273 +๐Ÿธ,1F438,animals-nature,animal-amphibian,frog face,"face, frog","jump, green",Selina Bauder,,,,1,2276 +๐ŸŠ,1F40A,animals-nature,animal-reptile,crocodile,crocodile,dinosaur,Selina Bauder,,,,1,2277 +๐Ÿข,1F422,animals-nature,animal-reptile,turtle,"terrapin, tortoise","slow, water, sand",Selina Bauder,,,,1,2278 +๐ŸฆŽ,1F98E,animals-nature,animal-reptile,lizard,reptile,"fast, small",Selina Bauder,,,,3,2279 +๐Ÿ,1F40D,animals-nature,animal-reptile,snake,"bearer, ophiuchus, serpent, zodiac","wriggle, fast,",Selina Bauder,,,,1,2280 +๐Ÿฒ,1F432,animals-nature,animal-reptile,dragon face,"dragon, face, fairy tale","fire, fly",Selina Bauder,,,,1,2281 +๐Ÿ‰,1F409,animals-nature,animal-reptile,dragon,fairy tale,"fire, fly",Selina Bauder,,,,1,2282 +๐Ÿฆ•,1F995,animals-nature,animal-reptile,sauropod,"brachiosaurus, brontosaurus, diplodocus",dinosaur,Selina Bauder,,,,5,2283 +๐Ÿฆ–,1F996,animals-nature,animal-reptile,T-Rex,"t-rex, tyrannosaurus rex",dinosaur,Selina Bauder,,,,5,2284 +๐Ÿณ,1F433,animals-nature,animal-marine,spouting whale,"face, spouting, whale","swim, animal, water",Selina Bauder,,,,1,2285 +๐Ÿ‹,1F40B,animals-nature,animal-marine,whale,whale,"swim, animal, water",Selina Bauder,,,,1,2286 +๐Ÿฌ,1F42C,animals-nature,animal-marine,dolphin,flipper,"swim, animal, water",Selina Bauder,,,,1,2287 +๐ŸŸ๏ธ,1F41F,animals-nature,animal-marine,fish,"pisces, zodiac","swim, animal, water",Selina Bauder,,,,1,2288 +๐Ÿ ,1F420,animals-nature,animal-marine,tropical fish,"fish, tropical","swim, animal, water",Selina Bauder,,,,1,2289 +๐Ÿก,1F421,animals-nature,animal-marine,blowfish,fish,"swim, animal, water",Selina Bauder,,,,1,2290 +๐Ÿฆˆ,1F988,animals-nature,animal-marine,shark,fish,"swim, animal, water",Selina Bauder,,,,3,2291 +๐Ÿ™,1F419,animals-nature,animal-marine,octopus,octopus,"swim, animal, water",Selina Bauder,,,,1,2292 +๐Ÿš,1F41A,animals-nature,animal-marine,spiral shell,"shell, spiral","beach, sand, water",Selina Bauder,,,,1,2293 +๐Ÿฆ€,1F980,animals-nature,animal-marine,crab,"cancer, zodiac","beach, sand, water",Selina Bauder,,,,1,2294 +๐Ÿฆ,1F990,animals-nature,animal-marine,shrimp,"food, shellfish, small","swim, animal, water, food",Selina Bauder,,,,3,2296 +๐Ÿฆ‘,1F991,animals-nature,animal-marine,squid,"food, molusc","swim, animal, water",Selina Bauder,,,,3,2297 +๐ŸŒ,1F40C,animals-nature,animal-bug,snail,snail,,Selina Bauder,,,,1,2298 +๐Ÿฆ‹,1F98B,animals-nature,animal-bug,butterfly,"insect, pretty",,Selina Bauder,,,,3,2299 +๐Ÿ›,1F41B,animals-nature,animal-bug,bug,insect,,Selina Bauder,,,,1,2300 +๐Ÿœ,1F41C,animals-nature,animal-bug,ant,insect,,Selina Bauder,,,,1,2301 +๐Ÿ,1F41D,animals-nature,animal-bug,honeybee,"bee, insect",,Selina Bauder,,,,1,2302 +๐Ÿž,1F41E,animals-nature,animal-bug,lady beetle,"beetle, insect, ladybird, ladybug",,Selina Bauder,,,,1,2303 +๐Ÿฆ—,1F997,animals-nature,animal-bug,cricket,grasshopper,,Selina Bauder,,,,5,2304 +๐Ÿ•ท๏ธ,1F577,animals-nature,animal-bug,spider,insect,,Selina Bauder,,,,1,2306 +๐Ÿ•ธ๏ธ,1F578,animals-nature,animal-bug,spider web,"spider, web",,Selina Bauder,,,,1,2308 +๐Ÿฆ‚,1F982,animals-nature,animal-bug,scorpion,"scorpio, zodiac",,Selina Bauder,,,,1,2309 +๐Ÿ’,1F490,animals-nature,plant-flower,bouquet,flower,"present, flower, tulip, bouquet",Hilda Kalyoncu,,,,1,2312 +๐ŸŒธ,1F338,animals-nature,plant-flower,cherry blossom,"blossom, cherry, flower","pink,",Hilda Kalyoncu,,,,1,2313 +๐ŸŒน,1F339,animals-nature,plant-flower,rose,flower,"rose, red, nature, present, valentines day",Hilda Kalyoncu,,,,1,2317 +๐Ÿฅ€,1F940,animals-nature,plant-flower,wilted flower,"flower, wilted","rose, wilted, flowe, red, sad, plant",Hilda Kalyoncu,,,,3,2318 +๐ŸŒบ,1F33A,animals-nature,plant-flower,hibiscus,flower,pink,Hilda Kalyoncu,,,,1,2319 +๐ŸŒป,1F33B,animals-nature,plant-flower,sunflower,"flower, sun","sun, flower, yellow, summer",Hilda Kalyoncu,,,,1,2320 +๐ŸŒผ,1F33C,animals-nature,plant-flower,blossom,flower,"yellow, nature",Hilda Kalyoncu,,,,1,2321 +๐ŸŒท,1F337,animals-nature,plant-flower,tulip,flower,"pink, eastern",Hilda Kalyoncu,,,,1,2322 +๐ŸŒฑ,1F331,animals-nature,plant-other,seedling,young,"farming, growing, green",Hilda Kalyoncu,,,,1,2323 +๐ŸŒฒ,1F332,animals-nature,plant-other,evergreen tree,tree,"green, tree, fir, plant",Hilda Kalyoncu,,,,1,2324 +๐ŸŒณ,1F333,animals-nature,plant-other,deciduous tree,"deciduous, shedding, tree","green, tree, huge, plant",Hilda Kalyoncu,,,,1,2325 +๐ŸŒด,1F334,animals-nature,plant-other,palm tree,"palm, tree","sea, vacation, beach, relax, plant",Hilda Kalyoncu,,,,1,2326 +๐ŸŒต,1F335,animals-nature,plant-other,cactus,plant,"desert, sun, warm, hot, texas, plant",Hilda Kalyoncu,,,,1,2327 +๐ŸŒฟ,1F33F,animals-nature,plant-other,herb,leaf,green,Hilda Kalyoncu,,,,1,2329 +โ˜˜๏ธ,2618,animals-nature,plant-other,shamrock,plant,"green, plant",Hilda Kalyoncu,,,,1,2331 +๐Ÿ€,1F340,animals-nature,plant-other,four leaf clover,"4, clover, four, four-leaf clover, leaf","luck, four, leaf, green, plant",Hilda Kalyoncu,,,,1,2332 +๐Ÿ,1F341,animals-nature,plant-other,maple leaf,"falling, leaf, maple","autumn, colorful",Hilda Kalyoncu,,,,1,2333 +๐Ÿ‰,1F349,food-drink,food-fruit,watermelon,fruit,"melon, red",Marius Schnabel,,,,1,2338 +๐Ÿ‹,1F34B,food-drink,food-fruit,lemon,"citrus, fruit",yellow,Marius Schnabel,,,,1,2340 +๐ŸŒ,1F34C,food-drink,food-fruit,banana,fruit,yellow,Marius Schnabel,,,,1,2341 +๐Ÿ,1F34D,food-drink,food-fruit,pineapple,fruit,tropical,Marius Schnabel,,,,1,2342 +๐Ÿ,1F34F,food-drink,food-fruit,green apple,"apple, fruit, green",,Marius Schnabel,,,,1,2345 +๐Ÿ,1F350,food-drink,food-fruit,pear,fruit,green,Marius Schnabel,,,,1,2346 +๐Ÿ‘,1F351,food-drink,food-fruit,peach,fruit,"pink, red",Marius Schnabel,,,,1,2347 +๐Ÿ’,1F352,food-drink,food-fruit,cherries,"berries, cherry, fruit, red",,Marius Schnabel,,,,1,2348 +๐Ÿฅ,1F95D,food-drink,food-fruit,kiwi fruit,"food, fruit, kiwi",green,Marius Schnabel,,,,3,2350 +๐Ÿ…,1F345,food-drink,food-fruit,tomato,"fruit, vegetable",red,Marius Schnabel,,,,1,2351 +๐Ÿฅฅ,1F965,food-drink,food-fruit,coconut,"palm, piรฑa colada",nut,Marius Schnabel,,,,5,2352 +๐Ÿฅ‘,1F951,food-drink,food-vegetable,avocado,"food, fruit",avocado,Marius Schnabel,,,,3,2353 +๐Ÿ†,1F346,food-drink,food-vegetable,eggplant,"aubergine, vegetable",purple,Marius Schnabel,,,,1,2354 +๐Ÿฅ”,1F954,food-drink,food-vegetable,potato,"food, vegetable",,Marius Schnabel,,,,3,2355 +๐Ÿฅ•,1F955,food-drink,food-vegetable,carrot,"food, vegetable",,Marius Schnabel,,,,3,2356 +๐ŸŒฝ,1F33D,food-drink,food-vegetable,ear of corn,"corn, ear, maize, maze",yellow,Marius Schnabel,,,,1,2357 +๐ŸŒถ๏ธ,1F336,food-drink,food-vegetable,hot pepper,"hot, pepper",red,Marius Schnabel,,,,1,2359 +๐Ÿฅ’,1F952,food-drink,food-vegetable,cucumber,"food, pickle, vegetable",,Marius Schnabel,,,,3,2360 +๐Ÿฅฆ,1F966,food-drink,food-vegetable,broccoli,wild cabbage,,Marius Schnabel,,,,5,2362 +๐Ÿ„,1F344,food-drink,food-vegetable,mushroom,toadstool,mushroom,Marius Schnabel,,,,1,2363 +๐Ÿฅœ,1F95C,food-drink,food-vegetable,peanuts,"food, nut, peanut, vegetable",,Marius Schnabel,,,,3,2364 +๐Ÿž,1F35E,food-drink,food-prepared,bread,loaf,,Miriam Vollmeier,,,,1,2366 +๐Ÿฅ,1F950,food-drink,food-prepared,croissant,"bread, crescent roll, food, french",,Miriam Vollmeier,,,,3,2367 +๐Ÿฅ–,1F956,food-drink,food-prepared,baguette bread,"baguette, bread, food, french",,Miriam Vollmeier,,,,3,2368 +๐Ÿฅจ,1F968,food-drink,food-prepared,pretzel,twisted,,Miriam Vollmeier,,,,5,2369 +๐Ÿง€,1F9C0,food-drink,food-prepared,cheese wedge,cheese,,Miriam Vollmeier,,,,1,2372 +๐Ÿ–,1F356,food-drink,food-prepared,meat on bone,"bone, meat",,Miriam Vollmeier,,,,1,2373 +๐Ÿ—,1F357,food-drink,food-prepared,poultry leg,"bone, chicken, drumstick, leg, poultry",,Miriam Vollmeier,,,,1,2374 +๐Ÿฅฉ,1F969,food-drink,food-prepared,cut of meat,"chop, lambchop, porkchop, steak",,Miriam Vollmeier,,,,5,2375 +๐Ÿฅ“,1F953,food-drink,food-prepared,bacon,"food, meat",,Miriam Vollmeier,,,,3,2376 +๐Ÿ”,1F354,food-drink,food-prepared,hamburger,burger,,Miriam Vollmeier,,,,1,2377 +๐ŸŸ,1F35F,food-drink,food-prepared,french fries,"french, fries",,Miriam Vollmeier,,,,1,2378 +๐Ÿ•,1F355,food-drink,food-prepared,pizza,"cheese, slice",,Miriam Vollmeier,,,,1,2379 +๐ŸŒญ,1F32D,food-drink,food-prepared,hot dog,"frankfurter, hotdog, sausage",,Miriam Vollmeier,,,,1,2380 +๐Ÿฅช,1F96A,food-drink,food-prepared,sandwich,bread,,Miriam Vollmeier,,,,5,2381 +๐ŸŒฎ,1F32E,food-drink,food-prepared,taco,mexican,,Miriam Vollmeier,,,,1,2382 +๐ŸŒฏ,1F32F,food-drink,food-prepared,burrito,"mexican, wrap",,Miriam Vollmeier,,,,1,2383 +๐Ÿฅš,1F95A,food-drink,food-prepared,egg,food,,Miriam Vollmeier,,,,3,2385 +๐Ÿณ,1F373,food-drink,food-prepared,cooking,"egg, frying, pan",,Miriam Vollmeier,,,,1,2386 +๐Ÿฒ,1F372,food-drink,food-prepared,pot of food,"pot, stew",,Miriam Vollmeier,,,,1,2388 +๐Ÿฅฃ,1F963,food-drink,food-prepared,bowl with spoon,"breakfast, cereal, congee",,Miriam Vollmeier,,,,5,2389 +๐Ÿฟ,1F37F,food-drink,food-prepared,popcorn,popcorn,,Miriam Vollmeier,,,,1,2391 +๐Ÿฑ,1F371,food-drink,food-asian,bento box,"bento, box",,Miriam Vollmeier,,,,1,2394 +๐Ÿ˜,1F358,food-drink,food-asian,rice cracker,"cracker, rice",,Miriam Vollmeier,,,,1,2395 +๐Ÿ™,1F359,food-drink,food-asian,rice ball,"ball, japanese, rice",,Miriam Vollmeier,,,,1,2396 +๐Ÿš,1F35A,food-drink,food-asian,cooked rice,"cooked, rice",,Miriam Vollmeier,,,,1,2397 +๐Ÿ,1F35D,food-drink,food-asian,spaghetti,pasta,,Miriam Vollmeier,,,,1,2400 +๐Ÿ ,1F360,food-drink,food-asian,roasted sweet potato,"potato, roasted, sweet",,Miriam Vollmeier,,,,1,2401 +๐Ÿข,1F362,food-drink,food-asian,oden,"kebab, seafood, skewer, stick",,Miriam Vollmeier,,,,1,2402 +๐Ÿฃ,1F363,food-drink,food-asian,sushi,sushi,,Miriam Vollmeier,,,,1,2403 +๐Ÿค,1F364,food-drink,food-asian,fried shrimp,"fried, prawn, shrimp, tempura",,Miriam Vollmeier,,,,1,2404 +๐Ÿก,1F361,food-drink,food-asian,dango,"dessert, japanese, skewer, stick, sweet",,Miriam Vollmeier,,,,1,2407 +๐Ÿฆ,1F366,food-drink,food-sweet,soft ice cream,"cream, dessert, ice, icecream, soft, sweet",,Miriam Vollmeier,,,,1,2411 +๐Ÿง,1F367,food-drink,food-sweet,shaved ice,"dessert, ice, shaved, sweet",,Miriam Vollmeier,,,,1,2412 +๐Ÿจ,1F368,food-drink,food-sweet,ice cream,"cream, dessert, ice, sweet",,Miriam Vollmeier,,,,1,2413 +๐Ÿฉ,1F369,food-drink,food-sweet,doughnut,"dessert, donut, sweet",,Miriam Vollmeier,,,,1,2414 +๐Ÿช,1F36A,food-drink,food-sweet,cookie,"dessert, sweet",,Miriam Vollmeier,,,,1,2415 +๐ŸŽ‚,1F382,food-drink,food-sweet,birthday cake,"birthday, cake, celebration, dessert, pastry, sweet",,Miriam Vollmeier,,,,1,2416 +๐Ÿฐ,1F370,food-drink,food-sweet,shortcake,"cake, dessert, pastry, slice, sweet",,Miriam Vollmeier,,,,1,2417 +๐Ÿฅง,1F967,food-drink,food-sweet,pie,"filling, pastry",,Miriam Vollmeier,,,,5,2419 +๐Ÿซ,1F36B,food-drink,food-sweet,chocolate bar,"bar, chocolate, dessert, sweet",,Miriam Vollmeier,,,,1,2420 +๐Ÿฌ,1F36C,food-drink,food-sweet,candy,"dessert, sweet",,Miriam Vollmeier,,,,1,2421 +๐Ÿญ,1F36D,food-drink,food-sweet,lollipop,"candy, dessert, sweet",,Miriam Vollmeier,,,,1,2422 +๐Ÿฎ,1F36E,food-drink,food-sweet,custard,"dessert, pudding, sweet",,Miriam Vollmeier,,,,1,2423 +๐Ÿฏ,1F36F,food-drink,food-sweet,honey pot,"honey, honeypot, pot, sweet",,Miriam Vollmeier,,,,1,2424 +๐Ÿผ,1F37C,food-drink,drink,baby bottle,"baby, bottle, drink, milk","baby, drink, sweet",Laura Humpfer,,,,1,2425 +๐Ÿฅ›,1F95B,food-drink,drink,glass of milk,"drink, glass, milk",,Laura Humpfer,,,,3,2426 +โ˜•๏ธ,2615,food-drink,drink,hot beverage,"beverage, coffee, drink, hot, steaming, tea",,Laura Humpfer,,,,1,2427 +๐Ÿต,1F375,food-drink,drink,teacup without handle,"beverage, cup, drink, tea, teacup","glass, hot",Laura Humpfer,,,,1,2428 +๐Ÿถ,1F376,food-drink,drink,sake,"bar, beverage, bottle, cup, drink",,Laura Humpfer,,,,1,2429 +๐Ÿพ,1F37E,food-drink,drink,bottle with popping cork,"bar, bottle, cork, drink, popping","party, celebrate, event",Laura Humpfer,,,,1,2430 +๐Ÿท,1F377,food-drink,drink,wine glass,"bar, beverage, drink, glass, wine","classic, drink, beverage, alcohol",Laura Humpfer,,,,1,2431 +๐Ÿธ๏ธ,1F378,food-drink,drink,cocktail glass,"bar, cocktail, drink, glass","classic, alcohol, elegant, party",Laura Humpfer,,,,1,2432 +๐Ÿน,1F379,food-drink,drink,tropical drink,"bar, drink, tropical","cocktail, glass, drink, party, summer, party",Laura Humpfer,,,,1,2433 +๐Ÿบ,1F37A,food-drink,drink,beer mug,"bar, beer, drink, mug","beer, german, alcohol, bavaria, party",Laura Humpfer,,,,1,2434 +๐Ÿป,1F37B,food-drink,drink,clinking beer mugs,"bar, beer, clink, drink, mug","beer, german, party, alcohol, bavaria, party",Laura Humpfer,,,,1,2435 +๐Ÿฅ‚,1F942,food-drink,drink,clinking glasses,"celebrate, clink, drink, glass","party, secco,",Laura Humpfer,,,,3,2436 +๐Ÿฅƒ,1F943,food-drink,drink,tumbler glass,"glass, liquor, shot, tumbler, whisky","alcohol, classic",Laura Humpfer,,,,3,2437 +๐Ÿฅค,1F964,food-drink,drink,cup with straw,"juice, soda","beverage, fastfood",Laura Humpfer,,,,5,2438 +๐Ÿฅข,1F962,food-drink,dishware,chopsticks,hashi,"sticks, eat, chopstick",Jonas RoรŸner,,,,5,2439 +๐Ÿฝ๏ธ,1F37D,food-drink,dishware,fork and knife with plate,"cooking, fork, knife, plate",eat,Jonas RoรŸner,,,,1,2441 +๐Ÿด,1F374,food-drink,dishware,fork and knife,"cooking, cutlery, fork, knife",eat,Jonas RoรŸner,,,,1,2442 +๐Ÿฅ„,1F944,food-drink,dishware,spoon,tableware,"metal, spoon, eat",Jonas RoรŸner,,,,3,2443 +๐Ÿ”ช,1F52A,food-drink,dishware,kitchen knife,"cooking, hocho, knife, tool, weapon",eat,Jonas RoรŸner,,,,1,2444 +๐ŸŒ๏ธ,1F30D,travel-places,place-map,globe showing Europe-Africa,"africa, earth, europe, globe, globe showing europe-africa, world","geographic, continent, global, planet",Martin Wehl,,,,1,2446 +๐ŸŒŽ๏ธ,1F30E,travel-places,place-map,globe showing Americas,"americas, earth, globe, globe showing americas, world","geographic, continent, global, planet",Martin Wehl,,,,1,2447 +๐ŸŒ๏ธ,1F30F,travel-places,place-map,globe showing Asia-Australia,"asia, australia, earth, globe, globe showing asia-australia, world","geographic, continent, global, planet",Martin Wehl,,,,1,2448 +๐ŸŒ,1F310,travel-places,place-map,globe with meridians,"earth, globe, meridians, world","geographic, continent, global, planet, grid",Martin Wehl,,,,1,2449 +๐Ÿ—บ๏ธ,1F5FA,travel-places,place-map,world map,"map, world","geographic, continent, global, planet, earth",Martin Wehl,,,,1,2451 +๐Ÿ”๏ธ,1F3D4,travel-places,place-geographic,snow-capped mountain,"cold, mountain, snow","landscape, nature, hiking, climbing, white, outdoor, adventure",Martin Wehl,,,,1,2455 +โ›ฐ๏ธ,26F0,travel-places,place-geographic,mountain,mountain,"landscape, nature, hiking, climbing, outdoor, adventure",Martin Wehl,,,,1,2457 +๐ŸŒ‹,1F30B,travel-places,place-geographic,volcano,"eruption, mountain","landscape, nature, fire, smoke, hot",Martin Wehl,,,,1,2458 +๐Ÿ—ป,1F5FB,travel-places,place-geographic,mount fuji,"fuji, mountain","japan, japanese, geographic",Martin Wehl,,,,1,2459 +๐Ÿ•๏ธ,1F3D5,travel-places,place-geographic,camping,camping,"nature, outdoor, tent, adventure, sleeping",Martin Wehl,,,,1,2461 +๐Ÿ–๏ธ,1F3D6,travel-places,place-geographic,beach with umbrella,"beach, umbrella","nature, summer, sun, sand, water, holidays",Martin Wehl,,,,1,2463 +๐Ÿœ๏ธ,1F3DC,travel-places,place-geographic,desert,desert,"nature, hot, sun, sand, dry",Martin Wehl,,,,1,2465 +๐Ÿ๏ธ,1F3DD,travel-places,place-geographic,desert island,"desert, island","sun, lonely, sand, water, stranded, palm, nature",Martin Wehl,,,,1,2467 +๐Ÿž๏ธ,1F3DE,travel-places,place-geographic,national park,park,"nature, outdoor, adventure, woods, mountain",Martin Wehl,,,,1,2469 +๐ŸŸ๏ธ,1F3DF,travel-places,place-building,stadium,stadium,"building, football, sports, olympic",Martin Wehl,,,,1,2471 +๐Ÿ›๏ธ,1F3DB,travel-places,place-building,classical building,classical,"building, historical, old, antique",Martin Wehl,,,,1,2473 +๐Ÿ—๏ธ,1F3D7,travel-places,place-building,building construction,construction,"work, building lot, crane",Martin Wehl,,,,1,2475 +๐Ÿ˜๏ธ,1F3D8,travel-places,place-building,houses,houses,"buildings, neighbourhood",Martin Wehl,,,,1,2478 +๐Ÿš๏ธ,1F3DA,travel-places,place-building,derelict house,"derelict, house","building, old, rotten, dangerous",Martin Wehl,,,,1,2480 +๐Ÿ ๏ธ,1F3E0,travel-places,place-building,house,home,building,Martin Wehl,,,,1,2481 +๐Ÿก,1F3E1,travel-places,place-building,house with garden,"garden, home, house","building, grass, green, tree",Martin Wehl,,,,1,2482 +๐Ÿข,1F3E2,travel-places,place-building,office building,building,"workplace, company, firm, business",Martin Wehl,,,,1,2483 +๐Ÿฃ,1F3E3,travel-places,place-building,Japanese post office,"japanese, japanese post office, post","delivery, mailing, communication",Martin Wehl,,,,1,2484 +๐Ÿค,1F3E4,travel-places,place-building,post office,"european, post","delivery, mailing, yellow, communication",Martin Wehl,,,,1,2485 +๐Ÿฅ,1F3E5,travel-places,place-building,hospital,"doctor, medicine","building, cross, help, social, public",Martin Wehl,,,,1,2486 +๐Ÿฆ,1F3E6,travel-places,place-building,bank,building,"money, business, finance, venture",Martin Wehl,,,,1,2487 +๐Ÿจ,1F3E8,travel-places,place-building,hotel,building,"sleep, travel, business, holiday, vacation",Martin Wehl,,,,1,2488 +๐Ÿฉ,1F3E9,travel-places,place-building,love hotel,"hotel, love","building, sex, affair",Martin Wehl,,,,1,2489 +๐Ÿช,1F3EA,travel-places,place-building,convenience store,"convenience, store","building, shopping, buying, 24",Martin Wehl,,,,1,2490 +๐Ÿซ,1F3EB,travel-places,place-building,school,building,"learning, public, teaching, education",Martin Wehl,,,,1,2491 +๐Ÿฌ,1F3EC,travel-places,place-building,department store,"department, store","building, shopping, buying",Martin Wehl,,,,1,2492 +๐Ÿญ๏ธ,1F3ED,travel-places,place-building,factory,building,"firm, workplace, business",Martin Wehl,,,,1,2493 +๐Ÿฏ,1F3EF,travel-places,place-building,Japanese castle,"castle, japanese","building, culture, historical, war",Martin Wehl,,,,1,2494 +๐Ÿฐ,1F3F0,travel-places,place-building,castle,european,"building, culture, historical, war",Martin Wehl,,,,1,2495 +๐Ÿ’’,1F492,travel-places,place-building,wedding,"chapel, romance","building, love, marriage, heart",Martin Wehl,,,,1,2496 +โ›ช๏ธ,26EA,travel-places,place-religious,church,"christian, cross, religion","religious, pray, cross, building, god, mess, faith",Martin Wehl,,,,1,2499 +๐Ÿ•Œ,1F54C,travel-places,place-religious,mosque,"islam, muslim, religion","religious, pray, building, god, faith",Martin Wehl,,,,1,2500 +๐Ÿ•,1F54D,travel-places,place-religious,synagogue,"jew, jewish, religion, temple","religious, pray, building, god, faith",Martin Wehl,,,,1,2501 +โ›ฉ๏ธ,26E9,travel-places,place-religious,shinto shrine,"religion, shinto, shrine","religious, pray, building, god, faith",Martin Wehl,,,,1,2503 +๐Ÿ•‹,1F54B,travel-places,place-religious,kaaba,"islam, muslim, religion","religious, pray, building, god, black, mecca, faith",Martin Wehl,,,,1,2504 +โ›บ๏ธ,26FA,travel-places,place-other,tent,camping,"nature, outdoor, adventure",Martin Wehl,,,,1,2506 +๐Ÿ™๏ธ,1F3D9,travel-places,place-other,cityscape,city,"buildings, metropolis",Martin Wehl,,,,1,2510 +๐Ÿ’ˆ,1F488,travel-places,place-other,barber pole,"barber, haircut, pole","beauty, hairdresser",Martin Wehl,,,,1,2522 +๐ŸŽช,1F3AA,travel-places,place-other,circus tent,"circus, tent","fun, leisure, entertainment, red, white",Martin Wehl,,,,1,2523 +๐Ÿš‚,1F682,travel-places,transport-ground,locomotive,"engine, railway, steam, train","Train, Locomotive, travle, drive",Ronja Bรคurlen,,,,1,2524 +๐Ÿšƒ,1F683,travel-places,transport-ground,railway car,"car, electric, railway, train, tram, trolleybus","train, locomotive, railway car, travle",Ronja Bรคurlen,,,,1,2525 +๐Ÿš…,1F685,travel-places,transport-ground,bullet train,"bullet, railway, shinkansen, speed, train","train, locomotive, railway car, travle, transportation",Ronja Bรคurlen,,,,1,2527 +๐Ÿš‰,1F689,travel-places,transport-ground,station,"railway, train","trainstation, station, stop, train, railway, travle, departure, arrives",Ronja Bรคurlen,,,,1,2531 +๐Ÿš,1F69D,travel-places,transport-ground,monorail,vehicle,"train, locomotive, monorail, travle, transportation",Ronja Bรคurlen,,,,1,2533 +๐ŸšŒ,1F68C,travel-places,transport-ground,bus,vehicle,"Bus, travle, transportation",Ronja Bรคurlen,,,,1,2536 +๐Ÿš,1F690,travel-places,transport-ground,minibus,bus,"Bus, travle, transportation, car",Ronja Bรคurlen,,,,1,2539 +๐Ÿš‘๏ธ,1F691,travel-places,transport-ground,ambulance,vehicle,"travle, hospital, ambulance, alarm, doctor, help",Ronja Bรคurlen,,,,1,2540 +๐Ÿš’,1F692,travel-places,transport-ground,fire engine,"engine, fire, truck","travle, fire, fire engine, red, alarm",Ronja Bรคurlen,,,,1,2541 +๐Ÿš“,1F693,travel-places,transport-ground,police car,"car, patrol, police","travle, cardepartment, police, patrol",Ronja Bรคurlen,,,,1,2542 +๐Ÿš•,1F695,travel-places,transport-ground,taxi,vehicle,"travle, tranportation, car, taxi, cab",Ronja Bรคurlen,,,,1,2544 +๐Ÿš—,1F697,travel-places,transport-ground,automobile,car,"car, travle, automobile, vehicle, transportation",Ronja Bรคurlen,,,,1,2546 +๐Ÿš™,1F699,travel-places,transport-ground,sport utility vehicle,"recreational, sport utility","car, travle, automobile, vehicle, transportation, sport, utility",Ronja Bรคurlen,,,,1,2548 +๐Ÿšš,1F69A,travel-places,transport-ground,delivery truck,"delivery, truck","truck, delivery, car, transportation, travle, trucker, driver",Ronja Bรคurlen,,,,1,2549 +๐Ÿš›,1F69B,travel-places,transport-ground,articulated lorry,"lorry, semi, truck","deliverytruck, truck, car, transportation, travle, trucker, truckdriver",Ronja Bรคurlen,,,,1,2550 +๐Ÿšœ,1F69C,travel-places,transport-ground,tractor,vehicle,"tractor, towing, vehicle, farm, farming, field, acre",Ronja Bรคurlen,,,,1,2551 +๐Ÿšฒ๏ธ,1F6B2,travel-places,transport-ground,bicycle,bike,"bike, vehicle, bicycle",Ronja Bรคurlen,,,,1,2552 +๐Ÿ›ด,1F6F4,travel-places,transport-ground,kick scooter,"kick, scooter","kick, scooter, cityroller",Ronja Bรคurlen,,,,3,2553 +๐Ÿ›ต,1F6F5,travel-places,transport-ground,motor scooter,"motor, scooter","motor, scooter, transportation, bicycle,",Ronja Bรคurlen,,,,3,2555 +๐Ÿš,1F68F,travel-places,transport-ground,bus stop,"bus, busstop, stop","station, stop, bus, traffic, travle, busstop, departure, arrive",Ronja Bรคurlen,,,,1,2556 +โ›ฝ๏ธ,26FD,travel-places,transport-ground,fuel pump,"diesel, fuel, fuelpump, gas, pump, station","fuel, gas, station, transportation",Ronja Bรคurlen,,,,1,2563 +๐Ÿšฅ,1F6A5,travel-places,transport-ground,horizontal traffic light,"light, signal, traffic","light, red, green, yellow, traffic, trafficlight",Ronja Bรคurlen,,,,1,2565 +๐Ÿšฆ,1F6A6,travel-places,transport-ground,vertical traffic light,"light, signal, traffic","light, red, reen, yellow, vertical, traffic, light",Ronja Bรคurlen,,,,1,2566 +๐Ÿ›‘,1F6D1,travel-places,transport-ground,stop sign,"octagonal, sign, stop","stop, sign, signal, warning",Ronja Bรคurlen,,,,3,2567 +๐Ÿšง,1F6A7,travel-places,transport-ground,construction,barrier,"barrier, warning, stop, attention, traffic",Ronja Bรคurlen,,,,1,2568 +โš“๏ธ,2693,travel-places,transport-water,anchor,"ship, tool","boat, ship, travle, sea, atlantic, ocean, water, tool, anchor, metal",Ronja Bรคurlen,,,,1,2569 +โ›ต๏ธ,26F5,travel-places,transport-water,sailboat,"boat, resort, sea, yacht","boat, passengers, ship, travle, sea, atlantic, ocean, water, yacht, resort, sail, sailboat",Ronja Bรคurlen,,,,1,2570 +๐Ÿšค,1F6A4,travel-places,transport-water,speedboat,boat,"boat, passengers, ship, travle, sea, atlantic, ocean, water, speed",Ronja Bรคurlen,,,,1,2572 +๐Ÿ›ณ๏ธ,1F6F3,travel-places,transport-water,passenger ship,"passenger, ship","boat, passengers, ship, travle, sea, atlantic, ocean, water",Ronja Bรคurlen,,,,1,2574 +๐Ÿ›ฅ๏ธ,1F6E5,travel-places,transport-water,motor boat,"boat, motorboat","boat, passengers, ship, travle, sea, atlantic, ocean, water, motor",Ronja Bรคurlen,,,,1,2578 +๐Ÿšข,1F6A2,travel-places,transport-water,ship,"boat, passenger","boat, passengers, ship, travle, sea, atlantic, ocean, water",Ronja Bรคurlen,,,,1,2579 +โœˆ๏ธ,2708,travel-places,transport-air,airplane,aeroplane,"fly, airplane, aeroplane, air, sky, travle, departure, arrive",Ronja Bรคurlen,,,,1,2581 +๐Ÿ›ฉ๏ธ,1F6E9,travel-places,transport-air,small airplane,"aeroplane, airplane","fly, airplane, aeroplane, air, sky, travle, departure, arrive",Ronja Bรคurlen,,,,1,2583 +๐Ÿ›ซ,1F6EB,travel-places,transport-air,airplane departure,"aeroplane, airplane, check-in, departure, departures","fly, airplane, aeroplane, ir, sky, travle, departure",Ronja Bรคurlen,,,,1,2584 +๐Ÿ›ฌ,1F6EC,travel-places,transport-air,airplane arrival,"aeroplane, airplane, arrivals, arriving, landing","fly, airplane, aeroplane, air, sky, travle, arrive",Ronja Bรคurlen,,,,1,2585 +๐Ÿ’บ,1F4BA,travel-places,transport-air,seat,chair,"seat, chair, lounge, Airplane, sitting, comfort",Ronja Bรคurlen,,,,1,2586 +๐Ÿš,1F681,travel-places,transport-air,helicopter,vehicle,"helicopter, air, transportation, sky, fly, flying",Ronja Bรคurlen,,,,1,2587 +๐Ÿš ,1F6A0,travel-places,transport-air,mountain cableway,"cable, gondola, mountain","travle, mountain, high",Ronja Bรคurlen,,,,1,2589 +๐Ÿ›ฐ๏ธ,1F6F0,travel-places,transport-air,satellite,space,"space, galaxy, satelite",Ronja Bรคurlen,,,,1,2592 +๐Ÿš€,1F680,travel-places,transport-air,rocket,space,"rocket, space, galaxy, adventure, discorver, alien, transportation",Ronja Bรคurlen,,,,1,2593 +๐Ÿ›ธ,1F6F8,travel-places,transport-air,flying saucer,ufo,"Ailien, Ufo flyingsaucer, space, planets, adventures",Ronja Bรคurlen,,,,5,2594 +โŒ›๏ธ,231B,travel-places,time,hourglass done,"sand, timer","countdown, hourglass",Rana Cakir,,,,1,2598 +โณ๏ธ,23F3,travel-places,time,hourglass not done,"hourglass, sand, timer",,Rana Cakir,,,,1,2599 +โŒš๏ธ,231A,travel-places,time,watch,clock,"watch, time,",Rana Cakir,,,,1,2600 +โฐ,23F0,travel-places,time,alarm clock,"alarm, clock",,Rana Cakir,,,,1,2601 +โฑ๏ธ,23F1,travel-places,time,stopwatch,clock,,Rana Cakir,,,,1,2603 +โฒ๏ธ,23F2,travel-places,time,timer clock,"clock, timer",time,Rana Cakir,,,,1,2605 +๐Ÿ•›๏ธ,1F55B,travel-places,time,twelve oโ€™clock,"00, 12, 12:00, clock, oโ€™clock, twelve",time,Rana Cakir,,,,1,2608 +๐Ÿ•ง๏ธ,1F567,travel-places,time,twelve-thirty,"12, 12:30, clock, thirty, twelve",time,Rana Cakir,,,,1,2609 +๐Ÿ•๏ธ,1F550,travel-places,time,one oโ€™clock,"00, 1, 1:00, clock, one, oโ€™clock",time,Rana Cakir,,,,1,2610 +๐Ÿ•œ๏ธ,1F55C,travel-places,time,one-thirty,"1, 1:30, clock, one, thirty",time,Rana Cakir,,,,1,2611 +๐Ÿ•‘๏ธ,1F551,travel-places,time,two oโ€™clock,"00, 2, 2:00, clock, oโ€™clock, two",time,Rana Cakir,,,,1,2612 +๐Ÿ•๏ธ,1F55D,travel-places,time,two-thirty,"2, 2:30, clock, thirty, two",time,Rana Cakir,,,,1,2613 +๐Ÿ•’๏ธ,1F552,travel-places,time,three oโ€™clock,"00, 3, 3:00, clock, oโ€™clock, three",time,Rana Cakir,,,,1,2614 +๐Ÿ•ž๏ธ,1F55E,travel-places,time,three-thirty,"3, 3:30, clock, thirty, three",time,Rana Cakir,,,,1,2615 +๐Ÿ•“๏ธ,1F553,travel-places,time,four oโ€™clock,"00, 4, 4:00, clock, four, oโ€™clock",time,Rana Cakir,,,,1,2616 +๐Ÿ•Ÿ๏ธ,1F55F,travel-places,time,four-thirty,"4, 4:30, clock, four, thirty",time,Rana Cakir,,,,1,2617 +๐Ÿ•”๏ธ,1F554,travel-places,time,five oโ€™clock,"00, 5, 5:00, clock, five, oโ€™clock",time,Rana Cakir,,,,1,2618 +๐Ÿ• ๏ธ,1F560,travel-places,time,five-thirty,"5, 5:30, clock, five, thirty",time,Rana Cakir,,,,1,2619 +๐Ÿ••๏ธ,1F555,travel-places,time,six oโ€™clock,"00, 6, 6:00, clock, oโ€™clock, six",time,Rana Cakir,,,,1,2620 +๐Ÿ•ก๏ธ,1F561,travel-places,time,six-thirty,"6, 6:30, clock, six, thirty",time,Rana Cakir,,,,1,2621 +๐Ÿ•–๏ธ,1F556,travel-places,time,seven oโ€™clock,"00, 7, 7:00, clock, oโ€™clock, seven",time,Rana Cakir,,,,1,2622 +๐Ÿ•ข๏ธ,1F562,travel-places,time,seven-thirty,"7, 7:30, clock, seven, thirty",time,Rana Cakir,,,,1,2623 +๐Ÿ•—๏ธ,1F557,travel-places,time,eight oโ€™clock,"00, 8, 8:00, clock, eight, oโ€™clock",time,Rana Cakir,,,,1,2624 +๐Ÿ•ฃ๏ธ,1F563,travel-places,time,eight-thirty,"8, 8:30, clock, eight, thirty",time,Rana Cakir,,,,1,2625 +๐Ÿ•˜๏ธ,1F558,travel-places,time,nine oโ€™clock,"00, 9, 9:00, clock, nine, oโ€™clock",time,Rana Cakir,,,,1,2626 +๐Ÿ•ค๏ธ,1F564,travel-places,time,nine-thirty,"9, 9:30, clock, nine, thirty",time,Rana Cakir,,,,1,2627 +๐Ÿ•™๏ธ,1F559,travel-places,time,ten oโ€™clock,"00, 10, 10:00, clock, oโ€™clock, ten",time,Rana Cakir,,,,1,2628 +๐Ÿ•ฅ๏ธ,1F565,travel-places,time,ten-thirty,"10, 10:30, clock, ten, thirty",time,Rana Cakir,,,,1,2629 +๐Ÿ•š๏ธ,1F55A,travel-places,time,eleven oโ€™clock,"00, 11, 11:00, clock, eleven, oโ€™clock",time,Rana Cakir,,,,1,2630 +๐Ÿ•ฆ๏ธ,1F566,travel-places,time,eleven-thirty,"11, 11:30, clock, eleven, thirty",time,Rana Cakir,,,,1,2631 +๐ŸŒ™,1F319,travel-places,sky-weather,crescent moon,"crescent, moon","crescent moon, full moon, night, night sky, moon, celestial bodie, crescent, planet, far away",Vanessa Boutzikoudi,,,,1,2640 +๐ŸŒ›,1F31B,travel-places,sky-weather,first quarter moon face,"face, moon, quarter","face, first quarter, half moon, moon, full moon, night, night sky, starry sky, light, moonlight, round, celestial bodies, sickle, planet",Vanessa Boutzikoudi,,,,1,2642 +๐ŸŒœ๏ธ,1F31C,travel-places,sky-weather,last quarter moon face,"face, moon, quarter","face, last quarter, half moon, moon, full moon, night, night sky, starry sky, light, moonlight, round, celestial bodies, sickle, planet",Vanessa Boutzikoudi,,,,1,2643 +๐ŸŒก๏ธ,1F321,travel-places,sky-weather,thermometer,weather,"temperatures, room temperatures, degrees, heat, warming, fever, cold, celsius, measure, sick",Vanessa Boutzikoudi,,,,1,2645 +โ˜€๏ธ,2600,travel-places,sky-weather,sun,"bright, rays, sunny","sun, sunrise, warm, sunbeams, feel good, beach, tanning, fire, fireball, hot, heavenly body",Vanessa Boutzikoudi,,,,1,2647 +๐ŸŒ,1F31D,travel-places,sky-weather,full moon face,"bright, face, full, moon","moon, full moon, night, stars, moonlight, disc, no clouds",Vanessa Boutzikoudi,,,,1,2648 +๐ŸŒž,1F31E,travel-places,sky-weather,sun with face,"bright, face, sun","sun, face, bright, sun, sunrise, warm, rays, beach, tanning, fire, fireball, hot, celestial bodies, star",Vanessa Boutzikoudi,,,,1,2649 +โญ๏ธ,2B50,travel-places,sky-weather,star,star,"star, shine, small planet, sky, yellow, sparkle, far away",Vanessa Boutzikoudi,,,,1,2650 +๐ŸŒŸ,1F31F,travel-places,sky-weather,glowing star,"glittery, glow, shining, sparkle, star","star, shine, glow, bright, sparkle, small planet, sky, yellow, far away, constellation, shooting star, milky way",Vanessa Boutzikoudi,,,,1,2651 +๐ŸŒ ,1F320,travel-places,sky-weather,shooting star,"falling, shooting, star","shooting star, star, sparkle, shine, bright, far away, sky, star sky, night, wish, lightning",Vanessa Boutzikoudi,,,,1,2652 +โ˜๏ธ,2601,travel-places,sky-weather,cloud,weather,"cloud, cloudy, rain, gray, misty, diffuse, sky, dream, fleecy clouds",Vanessa Boutzikoudi,,,,1,2654 +โ›…๏ธ,26C5,travel-places,sky-weather,sun behind cloud,"cloud, sun","sun, behind, cloud, appear, cloudy, cool, sunny, weather",Vanessa Boutzikoudi,,,,1,2655 +โ›ˆ๏ธ,26C8,travel-places,sky-weather,cloud with lightning and rain,"cloud, rain, thunder","cloud, lightning, rain, thunder, weather, storm, thunderstorm",Vanessa Boutzikoudi,,,,1,2657 +๐ŸŒค๏ธ,1F324,travel-places,sky-weather,sun behind small cloud,"cloud, sun","sun, behind, small, cloud, sunny, cloudy, rain, cool, sky, weather",Vanessa Boutzikoudi,,,,1,2659 +๐ŸŒฅ๏ธ,1F325,travel-places,sky-weather,sun behind large cloud,"cloud, sun","sun, behind, large, cloud, gray, cloudy, rain, diffuse, sky, weather",Vanessa Boutzikoudi,,,,1,2661 +๐ŸŒฆ๏ธ,1F326,travel-places,sky-weather,sun behind rain cloud,"cloud, rain, sun","sun, behind, rain, cloud, wet, rainy, cloudy, cool, weather",Vanessa Boutzikoudi,,,,1,2663 +๐ŸŒง๏ธ,1F327,travel-places,sky-weather,cloud with rain,"cloud, rain","cloud, rain, raindrops, falling, down, wet, cool, cloudy, weather, stormy",Vanessa Boutzikoudi,,,,1,2665 +๐ŸŒจ๏ธ,1F328,travel-places,sky-weather,cloud with snow,"cloud, cold, snow","cloud, snow, falling, ice, wet, cold, cloudy, stormy, weather",Vanessa Boutzikoudi,,,,1,2667 +๐ŸŒฉ๏ธ,1F329,travel-places,sky-weather,cloud with lightning,"cloud, lightning","cloud, lightning, glaring, wet, cold, cloudy, gray, weather, storm, current, voltage, light up, light",Vanessa Boutzikoudi,,,,1,2669 +๐ŸŒช๏ธ,1F32A,travel-places,sky-weather,tornado,"cloud, whirlwind","tornado, wind, blow, sky, dangerous, severe weather, storm, hurricane, typhoon, cyclone",Vanessa Boutzikoudi,,,,1,2671 +๐ŸŒฌ๏ธ,1F32C,travel-places,sky-weather,wind face,"blow, cloud, face, wind","wind, face, blowing, air, mouth, mother nature, sky",Vanessa Boutzikoudi,,,,1,2675 +๐ŸŒ€,1F300,travel-places,sky-weather,cyclone,"dizzy, hurricane, twister, typhoon","whirl, swirl, spiral, funnel, rotation, rotate, air, turbulent",Vanessa Boutzikoudi,,,,1,2676 +๐ŸŒˆ,1F308,travel-places,sky-weather,rainbow,rain,"rainbow, color, colorful, colors formed in the sky, sunbeams, sunlight, facet, sparkle, unicorn",Vanessa Boutzikoudi,,,,1,2677 +โ˜‚๏ธ,2602,travel-places,sky-weather,umbrella,"clothing, rain","purple, umbrella, rain, wet, drop, raindrops",Vanessa Boutzikoudi,,,,1,2680 +โ˜”๏ธ,2614,travel-places,sky-weather,umbrella with rain drops,"clothing, drop, rain, umbrella","umbrella, rain, raindrops, wet, drops, windy, rain falling",Vanessa Boutzikoudi,,,,1,2681 +โšก๏ธ,26A1,travel-places,sky-weather,high voltage,"danger, electric, lightning, voltage, zap","lightning, high voltage, storm, current, voltage, volts, lights, light",Vanessa Boutzikoudi,,,,1,2684 +โ„๏ธ,2744,travel-places,sky-weather,snowflake,"cold, snow","snowflake, snow, ice, icy, wintry, snow storm, white, cold, frosty, season, weather, melting",Vanessa Boutzikoudi,,,,1,2686 +โ›„๏ธ,26C4,travel-places,sky-weather,snowman without snow,"cold, snow, snowman","snowman, frosty, frosty the snowman, snowman, olaf, winter, not snowing",Vanessa Boutzikoudi,,,,1,2689 +๐Ÿ”ฅ,1F525,travel-places,sky-weather,fire,"flame, tool","fire, burn, hot, high temperature, flame, glow, flame, tool",Vanessa Boutzikoudi,,,,1,2692 +๐Ÿ’ง,1F4A7,travel-places,sky-weather,droplet,"cold, comic, drop, sweat","drops, droplets, raindrops, wet, rain, cold, fluid, liquid, wet, puddle, pearl, tear",Vanessa Boutzikoudi,,,,1,2693 +๐ŸŒŠ,1F30A,travel-places,sky-weather,water wave,"ocean, water, wave","wave, water, salty, sea, wet, cold, sun, beach, vacation, air, surf, sough, listen",Vanessa Boutzikoudi,,,,1,2694 +๐ŸŽƒ,1F383,activities,event,jack-o-lantern,"celebration, halloween, jack, lantern",pumpkin,Laura Humpfer,,,,1,2695 +๐ŸŽ„,1F384,activities,event,Christmas tree,"celebration, christmas, tree",,Laura Humpfer,,,,1,2696 +โœจ,2728,activities,event,sparkles,"sparkle, star","magic, beautiful",Laura Humpfer,,,,1,2700 +๐ŸŽˆ,1F388,activities,event,balloon,celebration,"balloon, birthday, party, decoration",Laura Humpfer,,,,1,2701 +๐ŸŽ‰,1F389,activities,event,party popper,"celebration, party, popper, tada","decoration, happy",Laura Humpfer,,,,1,2702 +๐ŸŽŠ,1F38A,activities,event,confetti ball,"ball, celebration, confetti","decoration, happy",Laura Humpfer,,,,1,2703 +๐ŸŽ‹,1F38B,activities,event,tanabata tree,"banner, celebration, japanese, tree",,Laura Humpfer,,,,1,2704 +๐ŸŽŽ,1F38E,activities,event,Japanese dolls,"celebration, doll, festival, japanese, japanese dolls",,Laura Humpfer,,,,1,2706 +๐ŸŽ€,1F380,activities,event,ribbon,celebration,"present, gift, decoration, party, girl, girly, fashion",Laura Humpfer,,,,1,2711 +๐ŸŽ,1F381,activities,event,wrapped gift,"box, celebration, gift, present, wrapped","present, birthday, christmas",Laura Humpfer,,,,1,2712 +๐ŸŽ—๏ธ,1F397,activities,event,reminder ribbon,"celebration, reminder, ribbon",,Laura Humpfer,,,,1,2714 +๐ŸŽŸ๏ธ,1F39F,activities,event,admission tickets,"admission, ticket",,Laura Humpfer,,,,1,2716 +๐ŸŽซ,1F3AB,activities,event,ticket,admission,,Laura Humpfer,,,,1,2717 +๐ŸŽ–๏ธ,1F396,activities,award-medal,military medal,"celebration, medal, military","Medal, Medallion, Military, Ribbon",Julian Grรผneberg,,,,1,2719 +๐Ÿ†๏ธ,1F3C6,activities,award-medal,trophy,prize,"Trophy, Championship, Winner, Gold Cup, award",Julian Grรผneberg,,,,1,2720 +๐Ÿ…,1F3C5,activities,award-medal,sports medal,medal,"Sports, Medal, Sporting",Julian Grรผneberg,,,,1,2721 +๐Ÿฅ‡,1F947,activities,award-medal,1st place medal,"first, gold, medal","Gold Medal, Gold, Medal, 1st Place Medal, First Place Medal",Julian Grรผneberg,,,,3,2722 +๐Ÿฅˆ,1F948,activities,award-medal,2nd place medal,"medal, second, silver","Silver, Medal, Silver Medal, Second Place, Second Place Medal, 2nd Place Medal",Julian Grรผneberg,,,,3,2723 +๐Ÿฅ‰,1F949,activities,award-medal,3rd place medal,"bronze, medal, third","Bronze, Medal, Bronze Medal, Third Place, Third Place Medal, 3rd Place Medal",Julian Grรผneberg,,,,3,2724 +โšฝ๏ธ,26BD,activities,sport,soccer ball,"ball, football, soccer","soccer, ball, football, game, ball game, team sports",Vanessa Boutzikoudi,,,,1,2725 +โšพ๏ธ,26BE,activities,sport,baseball,ball,"baseball, white, ball, american, game, ball game, team sports",Vanessa Boutzikoudi,,,,1,2726 +๐Ÿ€,1F3C0,activities,sport,basketball,"ball, hoop","basketball, orange ball, team sport, sport, canadian sport, game",Vanessa Boutzikoudi,,,,1,2728 +๐Ÿ,1F3D0,activities,sport,volleyball,"ball, game","ball, ball game, team sport, sport, hobby, olympic games",Vanessa Boutzikoudi,,,,1,2729 +๐Ÿˆ,1F3C8,activities,sport,american football,"american, ball, football","american, football, american game, oval ball, ball game, superbowl, team sport",Vanessa Boutzikoudi,,,,1,2730 +๐Ÿ‰,1F3C9,activities,sport,rugby football,"ball, football, rugby","rugby, football, brown ball, league, rugby, union, team sport, british sports, sport",Vanessa Boutzikoudi,,,,1,2731 +๐ŸŽพ,1F3BE,activities,sport,tennis,"ball, racquet","tennis, tennis ball, ball game, game, racket, racquet, sport",Vanessa Boutzikoudi,,,,1,2732 +๐Ÿ,1F3CF,activities,sport,cricket game,"ball, bat, game","cricket, game, cricket bat and ball, hobby, activity",Vanessa Boutzikoudi,,,,1,2735 +๐Ÿ‘,1F3D1,activities,sport,field hockey,"ball, field, game, hockey, stick","field, hockey, field hockey stick and ball, ice hockey, team sport, hockey stick, puck",Vanessa Boutzikoudi,,,,1,2736 +๐Ÿ’,1F3D2,activities,sport,ice hockey,"game, hockey, ice, puck, stick","ice hockey, hockey stick, puck, field hockey, game, team sport",Vanessa Boutzikoudi,,,,1,2737 +๐Ÿ“,1F3D3,activities,sport,ping pong,"ball, bat, game, paddle, table tennis","ping pong, table tennis, paddle, ball, game, ball game, hobby",Vanessa Boutzikoudi,,,,1,2739 +๐ŸฅŠ,1F94A,activities,sport,boxing glove,"boxing, glove","boxing, glove, red, mitt, sport, fist, beat, slap, slap in your face, muhammad ali",Vanessa Boutzikoudi,,,,3,2741 +๐Ÿฅ‹,1F94B,activities,sport,martial arts uniform,"judo, karate, martial arts, taekwondo, uniform","white, uniform, judo, karate, keikogi, sport",Vanessa Boutzikoudi,,,,3,2742 +โ›ณ๏ธ,26F3,activities,sport,flag in hole,"golf, hole","flag, golf, golf flag, golf hole with flag, sport, ball, goal",Vanessa Boutzikoudi,,,,1,2744 +๐ŸŽฃ,1F3A3,activities,sport,fishing pole,"fish, pole","fishing rod, fishing pole, line, fish, caught, hobby",Vanessa Boutzikoudi,,,,1,2747 +๐ŸŽฟ,1F3BF,activities,sport,skis,"ski, snow","skis, Skiing, Ski Boot, to ski, winter, snow, hobby, sport",Vanessa Boutzikoudi,,,,1,2749 +๐ŸŽฏ,1F3AF,activities,game,direct hit,"bullseye, dart, game, hit, target","direct, hit, dart board, archery, bullseye, target, darts, game",Vanessa Boutzikoudi,,,,1,2752 +๐ŸŽฑ,1F3B1,activities,game,pool 8 ball,"8, ball, billiard, eight, game","pool ball, 8 Ball, black ball, cue ball, magic 8 ball, pool, snooker, billiards, game",Vanessa Boutzikoudi,,,,1,2753 +๐Ÿ”ฎ,1F52E,activities,game,crystal ball,"ball, crystal, fairy tale, fantasy, fortune, tool",mystery,Marius Schnabel,,,,1,2754 +๐ŸŽฎ๏ธ,1F3AE,activities,game,video game,"controller, game",gamble,Lisa Schulz,,,,1,2756 +๐Ÿ•น๏ธ,1F579,activities,game,joystick,"game, video game",,Lisa Schulz,,,,1,2758 +๐ŸŽฒ,1F3B2,activities,game,game die,"dice, die, game",board game,Lisa Schulz,,,,1,2760 +๐ŸŽญ๏ธ,1F3AD,activities,arts-crafts,performing arts,"art, mask, performing, theater, theatre","culture, entertainment, education",Martin Wehl,,,,1,2776 +๐Ÿ–ผ๏ธ,1F5BC,activities,arts-crafts,framed picture,"art, frame, museum, painting, picture","culture, artist, entertainment",Martin Wehl,,,,1,2778 +๐ŸŽจ,1F3A8,activities,arts-crafts,artist palette,"art, museum, painting, palette","culture, artist, leisure, entertainment",Martin Wehl,,,,1,2779 +๐Ÿ”‡,1F507,objects,sound,muted speaker,"mute, quiet, silent, speaker",,Rana Cakir,,,,1,2782 +๐Ÿ”ˆ๏ธ,1F508,objects,sound,speaker low volume,soft,sound,Rana Cakir,,,,1,2783 +๐Ÿ”‰,1F509,objects,sound,speaker medium volume,medium,,Rana Cakir,,,,1,2784 +๐Ÿ”Š,1F50A,objects,sound,speaker high volume,loud,sound,Rana Cakir,,,,1,2785 +๐Ÿ“ข,1F4E2,objects,sound,loudspeaker,"loud, public address",sound,Rana Cakir,,,,1,2786 +๐Ÿ“ฏ,1F4EF,objects,sound,postal horn,"horn, post, postal",,Rana Cakir,,,,1,2788 +๐Ÿ””,1F514,objects,sound,bell,bell,sound,Rana Cakir,,,,1,2789 +๐Ÿ”•,1F515,objects,sound,bell with slash,"bell, forbidden, mute, quiet, silent",,Rana Cakir,,,,1,2790 +๐ŸŽผ,1F3BC,objects,music,musical score,"music, score","violin key, rhythmn",Sina Schulz,,,,1,2791 +๐ŸŽต,1F3B5,objects,music,musical note,"music, note","song, melody, sounds, tone",Sina Schulz,,,,1,2792 +๐ŸŽถ,1F3B6,objects,music,musical notes,"music, note, notes","melody, harmony, sounds, rhythmn",Sina Schulz,,,,1,2793 +๐ŸŽ™๏ธ,1F399,objects,music,studio microphone,"mic, microphone, music, studio","studio, microphone, stereo, recording",Sina Schulz,,,,1,2795 +๐ŸŽš๏ธ,1F39A,objects,music,level slider,"level, music, slider","studio, music slider",Sina Schulz,,,,1,2797 +๐ŸŽ›๏ธ,1F39B,objects,music,control knobs,"control, knobs, music","music, mix, recording, tool, knobs",Sina Schulz,,,,1,2799 +๐ŸŽค,1F3A4,objects,music,microphone,"karaoke, mic","sound, loud, stage, speech, singing, karaoke, mic, microphone, tone",Sina Schulz,,,,1,2800 +๐ŸŽง๏ธ,1F3A7,objects,music,headphone,earbud,"music, headphones",Sina Schulz,,,,1,2801 +๐Ÿ“ป๏ธ,1F4FB,objects,music,radio,video,"radio, stereo radio, analog radio",Sina Schulz,,,,1,2802 +๐ŸŽท,1F3B7,objects,musical-instrument,saxophone,"instrument, music, sax","saxophone, sax, jazz, instrument",Sina Schulz,,,,1,2803 +๐ŸŽธ,1F3B8,objects,musical-instrument,guitar,"instrument, music","guitar, e-guitar, instrumental, accustic, chords,",Sina Schulz,,,,1,2804 +๐ŸŽน,1F3B9,objects,musical-instrument,musical keyboard,"instrument, keyboard, music, piano","keyboard, piano keys, chords",Sina Schulz,,,,1,2805 +๐ŸŽบ,1F3BA,objects,musical-instrument,trumpet,"instrument, music","trumpet, horns, music, woodwind instrument",Sina Schulz,,,,1,2806 +๐ŸŽป,1F3BB,objects,musical-instrument,violin,"instrument, music","string, violin, fiddel, bow",Sina Schulz,,,,1,2807 +๐Ÿฅ,1F941,objects,musical-instrument,drum,"drumsticks, music","drum, drumsticks, music, beat",Sina Schulz,,,,3,2808 +๐Ÿ“ฑ,1F4F1,objects,phone,mobile phone,"cell, mobile, phone, telephone","smartphone, message, voice, communication",Martin Wehl,,,,1,2809 +๐Ÿ“ฒ,1F4F2,objects,phone,mobile phone with arrow,"arrow, cell, mobile, phone, receive","voice, smartphone, message",Martin Wehl,,,,1,2810 +โ˜Ž๏ธ,260E,objects,phone,telephone,phone,"call, voice, communication",Kai Wanschura,,,,1,2812 +๐Ÿ“ž,1F4DE,objects,phone,telephone receiver,"phone, receiver, telephone","call, voice, communication",Kai Wanschura,,,,1,2813 +๐Ÿ“ ,1F4E0,objects,phone,fax machine,fax,"office, paper, communication",Martin Wehl,,,,1,2815 +๐Ÿ”‹,1F50B,objects,computer,battery,battery,"electricity, energy, electric",Jonas RoรŸner,,,,1,2816 +๐Ÿ”Œ,1F50C,objects,computer,electric plug,"electric, electricity, plug",,Jonas RoรŸner,,,,1,2817 +๐Ÿ’ป๏ธ,1F4BB,objects,computer,laptop computer,"computer, pc, personal","old, retro",Jonas RoรŸner,,,,1,2818 +๐Ÿ–ฅ๏ธ,1F5A5,objects,computer,desktop computer,"computer, desktop","electric, screen",Jonas RoรŸner,,,,1,2820 +๐Ÿ–จ๏ธ,1F5A8,objects,computer,printer,computer,"color, electric",Jonas RoรŸner,,,,1,2822 +โŒจ๏ธ,2328,objects,computer,keyboard,computer,"key, write, electric",Jonas RoรŸner,,,,1,2824 +๐Ÿ–ฑ๏ธ,1F5B1,objects,computer,computer mouse,computer,"electric, computer, mouse",Jonas RoรŸner,,,,1,2826 +๐Ÿ’ฝ,1F4BD,objects,computer,computer disk,"computer, disk, minidisk, optical","old, retro",Jonas RoรŸner,,,,1,2829 +๐Ÿ’พ,1F4BE,objects,computer,floppy disk,"computer, disk, floppy","old, retro",Jonas RoรŸner,,,,1,2830 +๐Ÿ’ฟ๏ธ,1F4BF,objects,computer,optical disk,"cd, computer, disk, optical","analog,",Jonas RoรŸner,,,,1,2831 +๐Ÿ“€,1F4C0,objects,computer,dvd,"blu-ray, computer, disk, optical",film,Jonas RoรŸner,,,,1,2832 +๐ŸŽฅ,1F3A5,objects,light-video,movie camera,"camera, cinema, movie","film, record",Sina Schulz,,,,1,2834 +๐ŸŽž๏ธ,1F39E,objects,light-video,film frames,"cinema, film, frames, movie","clip, film",Sina Schulz,,,,1,2836 +๐Ÿ“ฝ๏ธ,1F4FD,objects,light-video,film projector,"cinema, film, movie, projector, video","play, film clip, movie",Sina Schulz,,,,1,2838 +๐ŸŽฌ๏ธ,1F3AC,objects,light-video,clapper board,"clapper, movie","cut, new recording",Sina Schulz,,,,1,2839 +๐Ÿ“บ๏ธ,1F4FA,objects,light-video,television,"tv, video","flat screen, tv, modern",Sina Schulz,,,,1,2840 +๐Ÿ“ท๏ธ,1F4F7,objects,light-video,camera,video,"camera, digital",Sina Schulz,,,,1,2841 +๐Ÿ“ธ,1F4F8,objects,light-video,camera with flash,"camera, flash, video","camera, bright",Sina Schulz,,,,1,2842 +๐Ÿ“น๏ธ,1F4F9,objects,light-video,video camera,"camera, video","record, recording, film, movie",Sina Schulz,,,,1,2843 +๐Ÿ“ผ,1F4FC,objects,light-video,videocassette,"tape, vhs, video","movie, film, vhs, cassette, record, recording",Sina Schulz,,,,1,2844 +๐Ÿ”๏ธ,1F50D,objects,light-video,magnifying glass tilted left,"glass, magnifying, search, tool","detail, big, zoom, detective",Sina Schulz,,,,1,2845 +๐Ÿ”Ž,1F50E,objects,light-video,magnifying glass tilted right,"glass, magnifying, search, tool","detail, big, zoom, detective",Sina Schulz,,,,1,2846 +๐Ÿ•ฏ๏ธ,1F56F,objects,light-video,candle,light,"fire, bright, shine",Sina Schulz,,,,1,2848 +๐Ÿ’ก,1F4A1,objects,light-video,light bulb,"bulb, comic, electric, idea, light","shine, light, bulb, power, on, electric, idea",Sina Schulz,,,,1,2849 +๐Ÿ”ฆ,1F526,objects,light-video,flashlight,"electric, light, tool, torch","bright, shine, light, flashlight, gadget",Sina Schulz,,,,1,2850 +๐Ÿ“•,1F4D5,objects,book-paper,closed book,"book, closed","book, read, write, closed",Jonas RoรŸner,,,,1,2853 +๐Ÿ“–,1F4D6,objects,book-paper,open book,"book, open","book, read, write, open",Jonas RoรŸner,,,,1,2854 +๐Ÿ“š๏ธ,1F4DA,objects,book-paper,books,book,"book, read, write",Jonas RoรŸner,,,,1,2858 +๐Ÿ““,1F4D3,objects,book-paper,notebook,notebook,"book, read, write",Jonas RoรŸner,,,,1,2859 +๐Ÿ“’,1F4D2,objects,book-paper,ledger,notebook,"book, read, write",Jonas RoรŸner,,,,1,2860 +๐Ÿ“ƒ,1F4C3,objects,book-paper,page with curl,"curl, document, page","rolled, page, text",Jonas RoรŸner,,,,1,2861 +๐Ÿ“œ,1F4DC,objects,book-paper,scroll,paper,"old, papyrus, text",Jonas RoรŸner,,,,1,2862 +๐Ÿ“„,1F4C4,objects,book-paper,page facing up,"document, page","write, text, paper",Jonas RoรŸner,,,,1,2863 +๐Ÿ“ฐ,1F4F0,objects,book-paper,newspaper,"news, paper","read, news, paper, text",Jonas RoรŸner,,,,1,2864 +๐Ÿ”–,1F516,objects,book-paper,bookmark,mark,"remember,",Jonas RoรŸner,,,,1,2868 +๐Ÿท๏ธ,1F3F7,objects,book-paper,label,label,"stick,",Jonas RoรŸner,,,,1,2870 +๐Ÿ’ฐ๏ธ,1F4B0,objects,money,money bag,"bag, dollar, money, moneybag",,Marius Schnabel,,,,1,2871 +๐Ÿ’ด,1F4B4,objects,money,yen banknote,"banknote, bill, currency, money, note, yen",,Marius Schnabel,,,,1,2872 +๐Ÿ’ต,1F4B5,objects,money,dollar banknote,"banknote, bill, currency, dollar, money, note",,Marius Schnabel,,,,1,2873 +๐Ÿ’ถ,1F4B6,objects,money,euro banknote,"banknote, bill, currency, euro, money, note",,Marius Schnabel,,,,1,2874 +๐Ÿ’ท,1F4B7,objects,money,pound banknote,"banknote, bill, currency, money, note, pound",,Marius Schnabel,,,,1,2875 +๐Ÿ’ธ,1F4B8,objects,money,money with wings,"banknote, bill, fly, money, wings",,Marius Schnabel,,,,1,2876 +๐Ÿ’ณ๏ธ,1F4B3,objects,money,credit card,"card, credit, money",,Marius Schnabel,,,,1,2877 +โœ‰๏ธ,2709,objects,mail,envelope,"email, letter","post, message",Marius Schnabel,,,,1,2883 +๐Ÿ“ง,1F4E7,objects,mail,e-mail,"email, letter, mail","message, eletronic",Marius Schnabel,,,,1,2884 +๐Ÿ“ฉ,1F4E9,objects,mail,envelope with arrow,"arrow, e-mail, email, envelope, outgoing",post,Marius Schnabel,,,,1,2886 +๐Ÿ“ค๏ธ,1F4E4,objects,mail,outbox tray,"box, letter, mail, outbox, sent, tray",post,Marius Schnabel,,,,1,2887 +๐Ÿ“ฅ๏ธ,1F4E5,objects,mail,inbox tray,"box, inbox, letter, mail, receive, tray",post,Marius Schnabel,,,,1,2888 +๐Ÿ“ฆ๏ธ,1F4E6,objects,mail,package,"box, parcel","shipping, post",Marius Schnabel,,,,1,2889 +๐Ÿ“ซ๏ธ,1F4EB,objects,mail,closed mailbox with raised flag,"closed, mail, mailbox, postbox",post,Marius Schnabel,,,,1,2890 +๐Ÿ“ช๏ธ,1F4EA,objects,mail,closed mailbox with lowered flag,"closed, lowered, mail, mailbox, postbox",post,Marius Schnabel,,,,1,2891 +๐Ÿ“ฎ,1F4EE,objects,mail,postbox,"mail, mailbox",post,Marius Schnabel,,,,1,2894 +โœ๏ธ,270F,objects,writing,pencil,pencil,,Rana Cakir,,,,1,2898 +๐Ÿ–‹๏ธ,1F58B,objects,writing,fountain pen,"fountain, pen",,Rana Cakir,,,,1,2902 +๐Ÿ–Š๏ธ,1F58A,objects,writing,pen,ballpoint,,Rana Cakir,,,,1,2904 +๐Ÿ–Œ๏ธ,1F58C,objects,writing,paintbrush,painting,"colors, pain, brush",Rana Cakir,,,,1,2906 +๐Ÿ–๏ธ,1F58D,objects,writing,crayon,crayon,"painting, colors",Rana Cakir,,,,1,2908 +๐Ÿ“,1F4DD,objects,writing,memo,pencil,"pencil, paper, notice",Rana Cakir,,,,1,2909 +๐Ÿ’ผ,1F4BC,objects,office,briefcase,briefcase,"bag, briefcase, office bag, leather bag",Sina Schulz,,,,1,2910 +๐Ÿ“,1F4C1,objects,office,file folder,"file, folder","file, folder, paper, organise, structure, office, box",Sina Schulz,,,,1,2911 +๐Ÿ“‚,1F4C2,objects,office,open file folder,"file, folder, open","open file, folder, organise, structure, office, box",Sina Schulz,,,,1,2912 +๐Ÿ“…,1F4C5,objects,office,calendar,date,"calendar, day view, pages, analoge",Sina Schulz,,,,1,2915 +๐Ÿ“†,1F4C6,objects,office,tear-off calendar,calendar,"calendar, tear off",Sina Schulz,,,,1,2916 +๐Ÿ—’๏ธ,1F5D2,objects,office,spiral notepad,"note, pad, spiral","notes, handwrite, paper, pen, spiral block, college",Sina Schulz,,,,1,2918 +๐Ÿ—“๏ธ,1F5D3,objects,office,spiral calendar,"calendar, pad, spiral","calender, year, month view",Sina Schulz,,,,1,2920 +๐Ÿ“ˆ,1F4C8,objects,office,chart increasing,"chart, graph, growth, trend, upward","graph going up, upward trend",Sina Schulz,,,,1,2922 +๐Ÿ“‰,1F4C9,objects,office,chart decreasing,"chart, down, graph, trend","graph going down, downtrend",Sina Schulz,,,,1,2923 +๐Ÿ“Š,1F4CA,objects,office,bar chart,"bar, chart, graph","data, chart, sheet, graph",Sina Schulz,,,,1,2924 +๐Ÿ“‹๏ธ,1F4CB,objects,office,clipboard,clipboard,"board, clip, metal, wood, handwriting",Sina Schulz,,,,1,2925 +๐Ÿ“Œ,1F4CC,objects,office,pushpin,pin,"pin, wall, push, paper",Sina Schulz,,,,1,2926 +๐Ÿ“,1F4CD,objects,office,round pushpin,"pin, pushpin","pin, wall, push, paper, notes",Sina Schulz,,,,1,2927 +๐Ÿ“Ž,1F4CE,objects,office,paperclip,paperclip,"office, paperclip, organisation",Sina Schulz,,,,1,2928 +๐Ÿ“,1F4CF,objects,office,straight ruler,"ruler, straight edge","ruler, straight, line, measure, detail",Sina Schulz,,,,1,2931 +๐Ÿ“,1F4D0,objects,office,triangular ruler,"ruler, set, triangle","triangle, ruler, line, measure, detail",Sina Schulz,,,,1,2932 +โœ‚๏ธ,2702,objects,office,scissors,"cutting, tool","scissors, cut, cutting, tool, work, paper, material",Sina Schulz,,,,1,2934 +๐Ÿ—ƒ๏ธ,1F5C3,objects,office,card file box,"box, card, file","card, file, system, organising, structure, tidy",Sina Schulz,,,,1,2936 +๐Ÿ—„๏ธ,1F5C4,objects,office,file cabinet,"cabinet, file, filing","box, file system, cabinet, file organising",Sina Schulz,,,,1,2938 +๐Ÿ—‘๏ธ,1F5D1,objects,office,wastebasket,wastebasket,"paper, bin, trash",Sina Schulz,,,,1,2940 +๐Ÿ”’๏ธ,1F512,objects,lock,locked,closed,"locker, padlock",Lisa Schulz,,,,1,2941 +๐Ÿ”“๏ธ,1F513,objects,lock,unlocked,"lock, open, unlock","locker, padlock",Lisa Schulz,,,,1,2942 +๐Ÿ”,1F510,objects,lock,locked with key,"closed, key, lock, secure",,Lisa Schulz,,,,1,2944 +๐Ÿ”‘,1F511,objects,lock,key,"lock, password",closing,Lisa Schulz,,,,1,2945 +๐Ÿ—๏ธ,1F5DD,objects,lock,old key,"clue, key, lock, old",,Lisa Schulz,,,,1,2947 +๐Ÿ”จ,1F528,objects,tool,hammer,tool,"toolbox, metal, wood",Hilda Kalyoncu,,,,1,2948 +โ›๏ธ,26CF,objects,tool,pick,"mining, tool",weapon,Hilda Kalyoncu,,,,1,2950 +๐Ÿ› ๏ธ,1F6E0,objects,tool,hammer and wrench,"hammer, spanner, tool, wrench","craftmans, logo",Hilda Kalyoncu,,,,1,2954 +๐Ÿ—ก๏ธ,1F5E1,objects,tool,dagger,"knife, weapon",metal,Hilda Kalyoncu,,,,1,2956 +๐Ÿ”ซ,1F52B,objects,tool,pistol,"gun, handgun, revolver, tool, weapon","gun, weapon, pistol",Hilda Kalyoncu,,,,1,2959 +๐Ÿ›ก๏ธ,1F6E1,objects,tool,shield,weapon,"protection, fight, middle ages",Hilda Kalyoncu,,,,1,2962 +๐Ÿ”ง,1F527,objects,tool,wrench,"spanner, tool","toolbox, silver",Hilda Kalyoncu,,,,1,2963 +โš™๏ธ,2699,objects,tool,gear,"cog, cogwheel, tool","tool, metal, silver",Hilda Kalyoncu,,,,1,2966 +๐Ÿ—œ๏ธ,1F5DC,objects,tool,clamp,"compress, tool, vice",toolbox,Hilda Kalyoncu,,,,1,2968 +โš–๏ธ,2696,objects,tool,balance scale,"balance, justice, libra, scale, zodiac",silver,Hilda Kalyoncu,,,,1,2970 +๐Ÿ”—,1F517,objects,tool,link,link,"silver, link",Hilda Kalyoncu,,,,1,2971 +โ›“๏ธ,26D3,objects,tool,chains,chain,"metal, silver",Hilda Kalyoncu,,,,1,2973 +๐Ÿ”ญ,1F52D,objects,science,telescope,"science, tool","stars, sky, space",Sina Schulz,,,,1,2982 +๐Ÿ“ก,1F4E1,objects,science,satellite antenna,"antenna, dish, satellite","signal, receive, radiation",Sina Schulz,,,,1,2983 +๐Ÿ’‰,1F489,objects,medical,syringe,"medicine, needle, shot, sick",health,Marius Schnabel,,,,1,2984 +๐Ÿ’Š,1F48A,objects,medical,pill,"doctor, medicine, sick",health,Marius Schnabel,,,,1,2985 +๐Ÿšช,1F6AA,objects,household,door,door,,Lisa Schulz,,,,1,2986 +๐Ÿ›๏ธ,1F6CF,objects,household,bed,"hotel, sleep",furniture,Lisa Schulz,,,,1,2988 +๐Ÿ›‹๏ธ,1F6CB,objects,household,couch and lamp,"couch, hotel, lamp",furniture,Lisa Schulz,,,,1,2990 +๐Ÿšฝ,1F6BD,objects,household,toilet,toilet,,Lisa Schulz,,,,1,2991 +๐Ÿšฟ,1F6BF,objects,household,shower,water,wash,Lisa Schulz,,,,1,2992 +๐Ÿ›,1F6C1,objects,household,bathtub,bath,"wash, water, foam",Lisa Schulz,,,,1,2993 +๐Ÿ›’,1F6D2,objects,household,shopping cart,"cart, shopping, trolley",,Marius Schnabel,,,,3,3002 +๐Ÿšฌ,1F6AC,objects,other-object,cigarette,smoking,"tobacco, smoke",Marius Schnabel,,,,1,3003 +โšฐ๏ธ,26B0,objects,other-object,coffin,death,"funeral, dead",Marius Schnabel,,,,1,3005 +๐Ÿ—ฟ,1F5FF,objects,other-object,moai,"face, moyai, statue","stone, easter island",Marius Schnabel,,,,1,3008 +๐Ÿšฎ,1F6AE,symbols,transport-sign,litter in bin sign,"litter, litter bin","trsh, litter, bin, garbage, can, throw, away",Ronja Bรคurlen,,,,1,3010 +๐Ÿšฐ,1F6B0,symbols,transport-sign,potable water,"drinking, potable, water","water, faucet, tap, glas",Ronja Bรคurlen,,,,1,3011 +โ™ฟ๏ธ,267F,symbols,transport-sign,wheelchair symbol,access,"disabled, toilet, restroom",Ronja Bรคurlen,,,,1,3012 +๐Ÿšน๏ธ,1F6B9,symbols,transport-sign,menโ€™s room,"lavatory, man, restroom, wc","man, restroom, guy, dude, male, toilet",Ronja Bรคurlen,,,,1,3013 +๐Ÿšบ๏ธ,1F6BA,symbols,transport-sign,womenโ€™s room,"lavatory, restroom, wc, woman","woman, female, restroom, chick, women, toilet",Ronja Bรคurlen,,,,1,3014 +๐Ÿšป,1F6BB,symbols,transport-sign,restroom,"lavatory, wc","unisex, restroom, male, toilet, woman, female",Ronja Bรคurlen,,,,1,3015 +๐Ÿšผ๏ธ,1F6BC,symbols,transport-sign,baby symbol,"baby, changing","baby, changing, station, restroom, toilet",Ronja Bรคurlen,,,,1,3016 +๐Ÿšพ,1F6BE,symbols,transport-sign,water closet,"closet, lavatory, restroom, water, wc","restroom, WC, toilett, water, closet",Ronja Bรคurlen,,,,1,3017 +โš ๏ธ,26A0,symbols,warning,warning,warning,,Miriam Vollmeier,,,,1,3023 +โ›”๏ธ,26D4,symbols,warning,no entry,"entry, forbidden, no, not, prohibited, traffic",,Miriam Vollmeier,,,,1,3025 +๐Ÿšซ,1F6AB,symbols,warning,prohibited,"entry, forbidden, no, not",,Miriam Vollmeier,,,,1,3026 +๐Ÿšณ,1F6B3,symbols,warning,no bicycles,"bicycle, bike, forbidden, no, prohibited",,Miriam Vollmeier,,,,1,3027 +๐Ÿšญ๏ธ,1F6AD,symbols,warning,no smoking,"forbidden, no, not, prohibited, smoking",,Miriam Vollmeier,,,,1,3028 +๐Ÿ“ต,1F4F5,symbols,warning,no mobile phones,"cell, forbidden, mobile, no, phone",,Miriam Vollmeier,,,,1,3032 +๐Ÿ”ž,1F51E,symbols,warning,no one under eighteen,"18, age restriction, eighteen, prohibited, underage",,Miriam Vollmeier,,,,1,3033 +โฌ†๏ธ,2B06,symbols,arrow,up arrow,"arrow, cardinal, direction, north",above,Jose Avila,,,,1,3039 +โ†—๏ธ,2197,symbols,arrow,up-right arrow,"arrow, direction, intercardinal, northeast",diagonal,Jose Avila,,,,1,3041 +โžก๏ธ,27A1,symbols,arrow,right arrow,"arrow, cardinal, direction, east","soon, future",Jose Avila,,,,1,3043 +โ†˜๏ธ,2198,symbols,arrow,down-right arrow,"arrow, direction, intercardinal, southeast",diagonal,Jose Avila,,,,1,3045 +โฌ‡๏ธ,2B07,symbols,arrow,down arrow,"arrow, cardinal, direction, down, south",underneath,Jose Avila,,,,1,3047 +โ†™๏ธ,2199,symbols,arrow,down-left arrow,"arrow, direction, intercardinal, southwest",diagonal,Jose Avila,,,,1,3049 +โฌ…๏ธ,2B05,symbols,arrow,left arrow,"arrow, cardinal, direction, west",past,Jose Avila,,,,1,3051 +โ†–๏ธ,2196,symbols,arrow,up-left arrow,"arrow, direction, intercardinal, northwest",diagonal,Jose Avila,,,,1,3053 +โ†•๏ธ,2195,symbols,arrow,up-down arrow,arrow,"directions, opposite",Jose Avila,,,,1,3055 +โ†”๏ธ,2194,symbols,arrow,left-right arrow,arrow,"directions, opposite",Jose Avila,,,,1,3057 +โ†ฉ๏ธ,21A9,symbols,arrow,right arrow curving left,arrow,"directions, turn arround",Jose Avila,,,,1,3059 +โ†ช๏ธ,21AA,symbols,arrow,left arrow curving right,arrow,"directions, turn arround",Jose Avila,,,,1,3061 +โคด๏ธ,2934,symbols,arrow,right arrow curving up,arrow,"direction, curve",Jose Avila,,,,1,3063 +โคต๏ธ,2935,symbols,arrow,right arrow curving down,"arrow, down","direction, curve",Jose Avila,,,,1,3065 +๐Ÿ”„,1F504,symbols,arrow,counterclockwise arrows button,"anticlockwise, arrow, counterclockwise, withershins",cycle,Jose Avila,,,,1,3067 +๐Ÿ›,1F6D0,symbols,religion,place of worship,"religion, worship",pray,Jose Avila,,,,1,3073 +โš›๏ธ,269B,symbols,religion,atom symbol,"atheist, atom",,Jose Avila,,,,1,3075 +โ˜ฏ๏ธ,262F,symbols,religion,yin yang,"religion, tao, taoist, yang, yin",balance,Jose Avila,,,,1,3083 +โœ๏ธ,271D,symbols,religion,latin cross,"christian, cross, religion",,Jose Avila,,,,1,3085 +โ˜ช๏ธ,262A,symbols,religion,star and crescent,"islam, muslim, religion",,Jose Avila,,,,1,3089 +โ˜ฎ๏ธ,262E,symbols,religion,peace symbol,peace,,Jose Avila,,,,1,3091 +๐Ÿ”€,1F500,symbols,av-symbol,shuffle tracks button,"arrow, crossed",random,Jose Avila,,,,1,3107 +๐Ÿ”,1F501,symbols,av-symbol,repeat button,"arrow, clockwise, repeat",cycle,Jose Avila,,,,1,3108 +๐Ÿ”‚,1F502,symbols,av-symbol,repeat single button,"arrow, clockwise, once",,Jose Avila,,,,1,3109 +โ–ถ๏ธ,25B6,symbols,av-symbol,play button,"arrow, play, right, triangle",,Jose Avila,,,,1,3111 +โฉ๏ธ,23E9,symbols,av-symbol,fast-forward button,"arrow, double, fast, forward",,Jose Avila,,,,1,3112 +โญ๏ธ,23ED,symbols,av-symbol,next track button,"arrow, next scene, next track, triangle",,Jose Avila,,,,1,3114 +โฏ๏ธ,23EF,symbols,av-symbol,play or pause button,"arrow, pause, play, right, triangle",,Jose Avila,,,,1,3116 +โ—€๏ธ,25C0,symbols,av-symbol,reverse button,"arrow, left, reverse, triangle",,Jose Avila,,,,1,3118 +โช๏ธ,23EA,symbols,av-symbol,fast reverse button,"arrow, double, rewind",,Jose Avila,,,,1,3119 +โฎ๏ธ,23EE,symbols,av-symbol,last track button,"arrow, previous scene, previous track, triangle",,Jose Avila,,,,1,3121 +๐Ÿ”ผ,1F53C,symbols,av-symbol,upwards button,"arrow, button, red",improve,Jose Avila,,,,1,3122 +โซ,23EB,symbols,av-symbol,fast up button,"arrow, double",,Jose Avila,,,,1,3123 +๐Ÿ”ฝ,1F53D,symbols,av-symbol,downwards button,"arrow, button, down, red","decline, decrease",Jose Avila,,,,1,3124 +โฌ,23EC,symbols,av-symbol,fast down button,"arrow, double, down",,Jose Avila,,,,1,3125 +โธ๏ธ,23F8,symbols,av-symbol,pause button,"bar, double, pause, vertical",,Jose Avila,,,,1,3127 +โน๏ธ,23F9,symbols,av-symbol,stop button,"square, stop",,Jose Avila,,,,1,3129 +โบ๏ธ,23FA,symbols,av-symbol,record button,"circle, record",,Jose Avila,,,,1,3131 +โ๏ธ,23CF,symbols,av-symbol,eject button,eject,,Jose Avila,,,,1,3133 +๐ŸŽฆ,1F3A6,symbols,av-symbol,cinema,"camera, film, movie",,Jose Avila,,,,1,3134 +๐Ÿ”…,1F505,symbols,av-symbol,dim button,"brightness, dim, low",,Jose Avila,,,,1,3135 +๐Ÿ”†,1F506,symbols,av-symbol,bright button,"bright, brightness",,Jose Avila,,,,1,3136 +๐Ÿ“ถ,1F4F6,symbols,av-symbol,antenna bars,"antenna, bar, cell, mobile, phone",,Jose Avila,,,,1,3137 +๐Ÿ“ณ,1F4F3,symbols,av-symbol,vibration mode,"cell, mobile, mode, phone, telephone, vibration",silent mode,Jose Avila,,,,1,3138 +๐Ÿ“ด,1F4F4,symbols,av-symbol,mobile phone off,"cell, mobile, off, phone, telephone",caos,Jose Avila,,,,1,3139 +โ™€๏ธ,2640,symbols,other-symbol,female sign,woman,"woman, sign, gender",Hilda Kalyoncu,,,,4,3141 +โ™‚๏ธ,2642,symbols,other-symbol,male sign,man,"man, sign, gender",Hilda Kalyoncu,,,,4,3143 +โš•๏ธ,2695,symbols,other-symbol,medical symbol,"aesculapius, medicine, staff","medical, staff",Hilda Kalyoncu,,,,4,3145 +โ™ป๏ธ,267B,symbols,other-symbol,recycling symbol,recycle,"recycle, nature",Hilda Kalyoncu,,,,1,3149 +๐Ÿ”ฑ,1F531,symbols,other-symbol,trident emblem,"anchor, emblem, ship, tool, trident","trident, emblem",Hilda Kalyoncu,,,,1,3152 +โญ•๏ธ,2B55,symbols,other-symbol,heavy large circle,"circle, o","circle, red",Hilda Kalyoncu,,,,1,3155 +โœ…,2705,symbols,other-symbol,white heavy check mark,"check, mark","check, mark, white, right",Hilda Kalyoncu,,,,1,3156 +โ˜‘๏ธ,2611,symbols,other-symbol,ballot box with check,"ballot, box, check","check, right, box",Hilda Kalyoncu,,,,1,3158 +โœ”๏ธ,2714,symbols,other-symbol,heavy check mark,"check, mark","check, mark, right, todo",Hilda Kalyoncu,,,,1,3160 +โœ–๏ธ,2716,symbols,other-symbol,heavy multiplication x,"cancel, multiplication, multiply, x","multiplication, x, cancel, wrong",Hilda Kalyoncu,,,,1,3162 +โŒ,274C,symbols,other-symbol,cross mark,"cancel, mark, multiplication, multiply, x","cancel, wrong, multiply, x,",Hilda Kalyoncu,,,,1,3163 +โŽ,274E,symbols,other-symbol,cross mark button,"mark, square","mark, square, button",Hilda Kalyoncu,,,,1,3164 +โž•,2795,symbols,other-symbol,heavy plus sign,"math, plus","math, plus, sign",Hilda Kalyoncu,,,,1,3165 +โž–,2796,symbols,other-symbol,heavy minus sign,"math, minus","math, minus, sign",Hilda Kalyoncu,,,,1,3166 +โž—,2797,symbols,other-symbol,heavy division sign,"division, math","math, division, sign",Hilda Kalyoncu,,,,1,3167 +โ“๏ธ,2753,symbols,other-symbol,question mark,"mark, punctuation, question","question, punctation",Hilda Kalyoncu,,,,1,3182 +โ”,2754,symbols,other-symbol,white question mark,"mark, outlined, punctuation, question","punctation, mark, question, white",Hilda Kalyoncu,,,,1,3183 +โ•,2755,symbols,other-symbol,white exclamation mark,"exclamation, mark, outlined, punctuation","exlamation, mark, punctation, white",Hilda Kalyoncu,,,,1,3184 +โ—๏ธ,2757,symbols,other-symbol,exclamation mark,"exclamation, mark, punctuation","exlamation, mark, punctation",Hilda Kalyoncu,,,,1,3185 +ใ€ฐ๏ธ,3030,symbols,other-symbol,wavy dash,"dash, punctuation, wavy","dash, punctuation, wavy",Hilda Kalyoncu,,,,1,3187 +ยฉ๏ธ,00A9,symbols,other-symbol,copyright,copyright,"copyright, c, sign",Hilda Kalyoncu,,,,1,3189 +ยฎ๏ธ,00AE,symbols,other-symbol,registered,registered,"registered, r, sign",Hilda Kalyoncu,,,,1,3191 +๐Ÿ’ฏ,1F4AF,symbols,alphanum,hundred points,"100, full, hundred, score","perfect, excellent",Jose Avila,,,,1,3219 +๐Ÿ” ,1F520,symbols,alphanum,input latin uppercase,"abcd, input, latin, letters, uppercase","letters, alphabet",Jose Avila,,,,1,3220 +๐Ÿ”ก,1F521,symbols,alphanum,input latin lowercase,"abcd, input, latin, letters, lowercase","letters, alphabet",Jose Avila,,,,1,3221 +๐Ÿ”ข,1F522,symbols,alphanum,input numbers,"1234, input, numbers",numbers,Jose Avila,,,,1,3222 +๐Ÿ”ฃ,1F523,symbols,alphanum,input symbols,"input, ใ€’โ™ช&%","ampersand, music, note, percentage",Jose Avila,,,,1,3223 +๐Ÿ”ค,1F524,symbols,alphanum,input latin letters,"abc, alphabet, input, latin, letters","letters, alphabet",Jose Avila,,,,1,3224 +๐Ÿ†’,1F192,symbols,alphanum,COOL button,"cool, cool button","popular, nice",Jose Avila,,,,1,3231 +โ„น๏ธ,2139,symbols,alphanum,information,i,"advice, info",Jose Avila,,,,1,3234 +๐Ÿ†”,1F194,symbols,alphanum,ID button,"id, id button, identity",id card,Jose Avila,,,,1,3235 +๐Ÿ†•,1F195,symbols,alphanum,NEW button,"new, new button","modern, recent",Jose Avila,,,,1,3238 +๐Ÿ†—,1F197,symbols,alphanum,OK button,"ok, ok button",okay,Jose Avila,,,,1,3242 +๐Ÿ…ฟ๏ธ,1F17F,symbols,alphanum,P button,"p button, parking","place, drive",Jose Avila,,,,1,3244 +๐Ÿ†˜,1F198,symbols,alphanum,SOS button,"help, sos, sos button","emergency, warning",Jose Avila,,,,1,3245 +๐Ÿ†š,1F19A,symbols,alphanum,VS button,"versus, vs, vs button",against,Jose Avila,,,,1,3247 +๐Ÿˆ‚๏ธ,1F202,symbols,alphanum,Japanese โ€œservice chargeโ€ button,"japanese, japanese โ€œservice chargeโ€ button, katakana, โ€œservice chargeโ€, ใ‚ต",japanese,Jose Avila,,,,1,3250 +ใŠ—๏ธ,3297,symbols,alphanum,Japanese โ€œcongratulationsโ€ button,"ideograph, japanese, japanese โ€œcongratulationsโ€ button, โ€œcongratulationsโ€, ็ฅ","japanese, compliments",Jose Avila,,,,1,3264 +ใŠ™๏ธ,3299,symbols,alphanum,Japanese โ€œsecretโ€ button,"ideograph, japanese, japanese โ€œsecretโ€ button, โ€œsecretโ€, ็ง˜","japanese, mysterious",Jose Avila,,,,1,3266 +๐Ÿ”บ,1F53A,symbols,geometric,red triangle pointed up,"geometric, red",arrow,Lisa Schulz,,,,1,3285 +๐Ÿ”ป,1F53B,symbols,geometric,red triangle pointed down,"down, geometric, red",arrow,Lisa Schulz,,,,1,3286 +๐Ÿ”˜,1F518,symbols,geometric,radio button,"button, geometric, radio",,Lisa Schulz,,,,1,3288 +๐Ÿ,1F3C1,flags,flag,chequered flag,"checkered, chequered, racing","black, white, grid, racing",Lisa Schulz,,,,1,3295 +๐Ÿด,1F3F4,flags,flag,black flag,waving,,Lisa Schulz,,,,1,3298 +๐Ÿณ๏ธ,1F3F3,flags,flag,white flag,waving,white,Lisa Schulz,,,,1,3300 +๐Ÿณ๏ธโ€๐ŸŒˆ,1F3F3-FE0F-200D-1F308,flags,flag,rainbow flag,rainbow,color,Lisa Schulz,,,,4,3301 diff --git a/data/openmoji.json b/data/openmoji.json index 591c1be54..7e6a061ed 100644 --- a/data/openmoji.json +++ b/data/openmoji.json @@ -10,6 +10,7 @@ "hfg_author": "Emily Jรคger", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 1 }, @@ -24,6 +25,7 @@ "hfg_author": "Emily Jรคger", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 2 }, @@ -38,6 +40,7 @@ "hfg_author": "Emily Jรคger", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 3 }, @@ -52,6 +55,7 @@ "hfg_author": "Emily Jรคger", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 3, "order": 4 }, @@ -66,6 +70,7 @@ "hfg_author": "Emily Jรคger", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 5 }, @@ -80,6 +85,7 @@ "hfg_author": "Emily Jรคger", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 6 }, @@ -94,6 +100,7 @@ "hfg_author": "Emily Jรคger", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 7 }, @@ -108,6 +115,7 @@ "hfg_author": "Emily Jรคger", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 8 }, @@ -122,6 +130,7 @@ "hfg_author": "Emily Jรคger", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 9 }, @@ -136,6 +145,7 @@ "hfg_author": "Emily Jรคger", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 10 }, @@ -150,6 +160,7 @@ "hfg_author": "Emily Jรคger", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 11 }, @@ -164,6 +175,7 @@ "hfg_author": "Emily Jรคger", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 12 }, @@ -178,6 +190,7 @@ "hfg_author": "Emily Jรคger", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 13 }, @@ -192,6 +205,7 @@ "hfg_author": "Emily Jรคger", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 14 }, @@ -206,6 +220,7 @@ "hfg_author": "Emily Jรคger", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 16 }, @@ -220,6 +235,7 @@ "hfg_author": "Emily Jรคger", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 17 }, @@ -234,6 +250,7 @@ "hfg_author": "Emily Jรคger", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 18 }, @@ -248,6 +265,7 @@ "hfg_author": "Emily Jรคger", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 20 }, @@ -262,6 +280,7 @@ "hfg_author": "Emily Jรคger", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 21 }, @@ -276,6 +295,7 @@ "hfg_author": "Emily Jรคger", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 22 }, @@ -290,6 +310,7 @@ "hfg_author": "Emily Jรคger", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 5, "order": 23 }, @@ -304,6 +325,7 @@ "hfg_author": "Emily Jรคger", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 24 }, @@ -318,6 +340,7 @@ "hfg_author": "Emily Jรคger", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 5, "order": 25 }, @@ -332,6 +355,7 @@ "hfg_author": "Mariella Steeb", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 26 }, @@ -346,6 +370,7 @@ "hfg_author": "Mariella Steeb", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 27 }, @@ -360,6 +385,7 @@ "hfg_author": "Emily Jรคger", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 28 }, @@ -374,6 +400,7 @@ "hfg_author": "Emily Jรคger", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 29 }, @@ -388,6 +415,7 @@ "hfg_author": "Mariella Steeb", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 30 }, @@ -402,6 +430,7 @@ "hfg_author": "Mariella Steeb", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 31 }, @@ -416,6 +445,7 @@ "hfg_author": "Mariella Steeb", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 32 }, @@ -430,6 +460,7 @@ "hfg_author": "Mariella Steeb", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 33 }, @@ -444,6 +475,7 @@ "hfg_author": "Emily Jรคger", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 34 }, @@ -458,6 +490,7 @@ "hfg_author": "Mariella Steeb", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 35 }, @@ -472,6 +505,7 @@ "hfg_author": "Mariella Steeb", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 36 }, @@ -486,6 +520,7 @@ "hfg_author": "Mariella Steeb", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 37 }, @@ -500,6 +535,7 @@ "hfg_author": "Emily Jรคger", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 38 }, @@ -514,6 +550,7 @@ "hfg_author": "Mariella Steeb", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 39 }, @@ -528,6 +565,7 @@ "hfg_author": "Mariella Steeb", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 40 }, @@ -542,6 +580,7 @@ "hfg_author": "Mariella Steeb", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 41 }, @@ -556,6 +595,7 @@ "hfg_author": "Mariella Steeb", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 42 }, @@ -570,6 +610,7 @@ "hfg_author": "Emily Jรคger", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 3, "order": 43 }, @@ -584,6 +625,7 @@ "hfg_author": "Mariella Steeb", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 44 }, @@ -598,6 +640,7 @@ "hfg_author": "Mariella Steeb", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 45 }, @@ -612,6 +655,7 @@ "hfg_author": "Mariella Steeb", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 46 }, @@ -626,6 +670,7 @@ "hfg_author": "Mariella Steeb", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 47 }, @@ -640,6 +685,7 @@ "hfg_author": "Emily Jรคger", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 48 }, @@ -654,6 +700,7 @@ "hfg_author": "Emily Jรคger", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 49 }, @@ -668,6 +715,7 @@ "hfg_author": "Emily Jรคger", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 50 }, @@ -682,6 +730,7 @@ "hfg_author": "Mariella Steeb", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 52 }, @@ -696,6 +745,7 @@ "hfg_author": "Mariella Steeb", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 53 }, @@ -710,6 +760,7 @@ "hfg_author": "Mariella Steeb", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 54 }, @@ -724,6 +775,7 @@ "hfg_author": "Mariella Steeb", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 55 }, @@ -738,6 +790,7 @@ "hfg_author": "Mariella Steeb", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 56 }, @@ -752,6 +805,7 @@ "hfg_author": "Mariella Steeb", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 57 }, @@ -766,6 +820,7 @@ "hfg_author": "Mariella Steeb", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 58 }, @@ -780,6 +835,7 @@ "hfg_author": "Mariella Steeb", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 59 }, @@ -794,6 +850,7 @@ "hfg_author": "Mariella Steeb", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 60 }, @@ -808,6 +865,7 @@ "hfg_author": "Mariella Steeb", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 61 }, @@ -822,6 +880,7 @@ "hfg_author": "Mariella Steeb", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 62 }, @@ -836,6 +895,7 @@ "hfg_author": "Mariella Steeb", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 63 }, @@ -850,6 +910,7 @@ "hfg_author": "Mariella Steeb", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 5, "order": 64 }, @@ -864,6 +925,7 @@ "hfg_author": "Mariella Steeb", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 65 }, @@ -878,6 +940,7 @@ "hfg_author": "Mariella Steeb", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 66 }, @@ -892,6 +955,7 @@ "hfg_author": "Mariella Steeb", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 67 }, @@ -906,6 +970,7 @@ "hfg_author": "Mariella Steeb", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 70 }, @@ -920,6 +985,7 @@ "hfg_author": "Mariella Steeb", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 5, "order": 71 }, @@ -934,6 +1000,7 @@ "hfg_author": "Mariella Steeb", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 72 }, @@ -948,6 +1015,7 @@ "hfg_author": "Mariella Steeb", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 73 }, @@ -962,6 +1030,7 @@ "hfg_author": "Mariella Steeb", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 74 }, @@ -976,6 +1045,7 @@ "hfg_author": "Mariella Steeb", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 5, "order": 75 }, @@ -990,6 +1060,7 @@ "hfg_author": "Emily Jรคger", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 76 }, @@ -1004,6 +1075,7 @@ "hfg_author": "Emily Jรคger", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 77 }, @@ -1018,6 +1090,7 @@ "hfg_author": "Emily Jรคger", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 78 }, @@ -1032,6 +1105,7 @@ "hfg_author": "Emily Jรคger", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 3, "order": 79 }, @@ -1046,6 +1120,7 @@ "hfg_author": "Emily Jรคger", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 5, "order": 80 }, @@ -1060,6 +1135,7 @@ "hfg_author": "Emily Jรคger", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 3, "order": 81 }, @@ -1074,6 +1150,7 @@ "hfg_author": "Emily Jรคger", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 82 }, @@ -1088,6 +1165,7 @@ "hfg_author": "Emily Jรคger", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 3, "order": 83 }, @@ -1102,6 +1180,7 @@ "hfg_author": "Emily Jรคger", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 3, "order": 87 }, @@ -1116,6 +1195,7 @@ "hfg_author": "Emily Jรคger", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 5, "order": 88 }, @@ -1130,6 +1210,7 @@ "hfg_author": "Emily Jรคger", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 5, "order": 89 }, @@ -1144,6 +1225,7 @@ "hfg_author": "Emily Jรคger", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 5, "order": 90 }, @@ -1158,6 +1240,7 @@ "hfg_author": "Emily Jรคger", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 91 }, @@ -1172,6 +1255,7 @@ "hfg_author": "Mariella Steeb", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 92 }, @@ -1186,6 +1270,7 @@ "hfg_author": "Mariella Steeb", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 93 }, @@ -1200,6 +1285,7 @@ "hfg_author": "Emily Jรคger", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 3, "order": 94 }, @@ -1214,6 +1300,7 @@ "hfg_author": "Mariella Steeb", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 97 }, @@ -1228,6 +1315,7 @@ "hfg_author": "Mariella Steeb", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 99 }, @@ -1242,6 +1330,7 @@ "hfg_author": "Mariella Steeb", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 100 }, @@ -1256,6 +1345,7 @@ "hfg_author": "Mariella Steeb", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 101 }, @@ -1270,6 +1360,7 @@ "hfg_author": "Mariella Steeb", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 103 }, @@ -1284,6 +1375,7 @@ "hfg_author": "Mariella Steeb", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 104 }, @@ -1298,6 +1390,7 @@ "hfg_author": "Emily Jรคger", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 105 }, @@ -1312,6 +1405,7 @@ "hfg_author": "Emily Jรคger", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 106 }, @@ -1326,6 +1420,7 @@ "hfg_author": "Emily Jรคger", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 107 }, @@ -1340,6 +1435,7 @@ "hfg_author": "Emily Jรคger", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 108 }, @@ -1354,6 +1450,7 @@ "hfg_author": "Emily Jรคger", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 109 }, @@ -1368,6 +1465,7 @@ "hfg_author": "Emily Jรคger", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 110 }, @@ -1382,6 +1480,7 @@ "hfg_author": "Emily Jรคger", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 111 }, @@ -1396,6 +1495,7 @@ "hfg_author": "Emily Jรคger", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 112 }, @@ -1410,6 +1510,7 @@ "hfg_author": "Emily Jรคger", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 113 }, @@ -1424,6 +1525,7 @@ "hfg_author": "Mariella Steeb", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 114 }, @@ -1438,6 +1540,7 @@ "hfg_author": "Mariella Steeb", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 115 }, @@ -1452,6 +1555,7 @@ "hfg_author": "Mariella Steeb", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 116 }, @@ -1465,7 +1569,8 @@ "hfg_tags": "human, person", "hfg_author": "Johanna Wellnitz", "skintone": "", - "skintone_base_emoji": "", + "skintone_base_emoji": "๐Ÿ‘ถ", + "skintone_base_hexcode": "1F476", "unicode": 1, "order": 117 }, @@ -1480,6 +1585,7 @@ "hfg_author": "Johanna Wellnitz", "skintone": 1, "skintone_base_emoji": "๐Ÿ‘ถ", + "skintone_base_hexcode": "1F476", "unicode": 2, "order": 118 }, @@ -1494,6 +1600,7 @@ "hfg_author": "Johanna Wellnitz", "skintone": 2, "skintone_base_emoji": "๐Ÿ‘ถ", + "skintone_base_hexcode": "1F476", "unicode": 2, "order": 119 }, @@ -1508,6 +1615,7 @@ "hfg_author": "Johanna Wellnitz", "skintone": 3, "skintone_base_emoji": "๐Ÿ‘ถ", + "skintone_base_hexcode": "1F476", "unicode": 2, "order": 120 }, @@ -1522,6 +1630,7 @@ "hfg_author": "Johanna Wellnitz", "skintone": 4, "skintone_base_emoji": "๐Ÿ‘ถ", + "skintone_base_hexcode": "1F476", "unicode": 2, "order": 121 }, @@ -1536,6 +1645,7 @@ "hfg_author": "Johanna Wellnitz", "skintone": 5, "skintone_base_emoji": "๐Ÿ‘ถ", + "skintone_base_hexcode": "1F476", "unicode": 2, "order": 122 }, @@ -1549,7 +1659,8 @@ "hfg_tags": "human, person", "hfg_author": "Johanna Wellnitz", "skintone": "", - "skintone_base_emoji": "", + "skintone_base_emoji": "๐Ÿง’", + "skintone_base_hexcode": "1F9D2", "unicode": 5, "order": 123 }, @@ -1564,6 +1675,7 @@ "hfg_author": "Johanna Wellnitz", "skintone": 1, "skintone_base_emoji": "๐Ÿง’", + "skintone_base_hexcode": "1F9D2", "unicode": 5, "order": 124 }, @@ -1578,6 +1690,7 @@ "hfg_author": "Johanna Wellnitz", "skintone": 2, "skintone_base_emoji": "๐Ÿง’", + "skintone_base_hexcode": "1F9D2", "unicode": 5, "order": 125 }, @@ -1592,6 +1705,7 @@ "hfg_author": "Johanna Wellnitz", "skintone": 3, "skintone_base_emoji": "๐Ÿง’", + "skintone_base_hexcode": "1F9D2", "unicode": 5, "order": 126 }, @@ -1606,6 +1720,7 @@ "hfg_author": "Johanna Wellnitz", "skintone": 4, "skintone_base_emoji": "๐Ÿง’", + "skintone_base_hexcode": "1F9D2", "unicode": 5, "order": 127 }, @@ -1620,6 +1735,7 @@ "hfg_author": "Johanna Wellnitz", "skintone": 5, "skintone_base_emoji": "๐Ÿง’", + "skintone_base_hexcode": "1F9D2", "unicode": 5, "order": 128 }, @@ -1633,7 +1749,8 @@ "hfg_tags": "human, person", "hfg_author": "Johanna Wellnitz", "skintone": "", - "skintone_base_emoji": "", + "skintone_base_emoji": "๐Ÿ‘ฆ", + "skintone_base_hexcode": "1F466", "unicode": 1, "order": 129 }, @@ -1648,6 +1765,7 @@ "hfg_author": "Johanna Wellnitz", "skintone": 1, "skintone_base_emoji": "๐Ÿ‘ฆ", + "skintone_base_hexcode": "1F466", "unicode": 2, "order": 130 }, @@ -1662,6 +1780,7 @@ "hfg_author": "Johanna Wellnitz", "skintone": 2, "skintone_base_emoji": "๐Ÿ‘ฆ", + "skintone_base_hexcode": "1F466", "unicode": 2, "order": 131 }, @@ -1676,6 +1795,7 @@ "hfg_author": "Johanna Wellnitz", "skintone": 3, "skintone_base_emoji": "๐Ÿ‘ฆ", + "skintone_base_hexcode": "1F466", "unicode": 2, "order": 132 }, @@ -1690,6 +1810,7 @@ "hfg_author": "Johanna Wellnitz", "skintone": 4, "skintone_base_emoji": "๐Ÿ‘ฆ", + "skintone_base_hexcode": "1F466", "unicode": 2, "order": 133 }, @@ -1704,6 +1825,7 @@ "hfg_author": "Johanna Wellnitz", "skintone": 5, "skintone_base_emoji": "๐Ÿ‘ฆ", + "skintone_base_hexcode": "1F466", "unicode": 2, "order": 134 }, @@ -1717,7 +1839,8 @@ "hfg_tags": "human, person", "hfg_author": "Johanna Wellnitz", "skintone": "", - "skintone_base_emoji": "", + "skintone_base_emoji": "๐Ÿ‘ง", + "skintone_base_hexcode": "1F467", "unicode": 1, "order": 135 }, @@ -1732,6 +1855,7 @@ "hfg_author": "Johanna Wellnitz", "skintone": 1, "skintone_base_emoji": "๐Ÿ‘ง", + "skintone_base_hexcode": "1F467", "unicode": 2, "order": 136 }, @@ -1746,6 +1870,7 @@ "hfg_author": "Johanna Wellnitz", "skintone": 2, "skintone_base_emoji": "๐Ÿ‘ง", + "skintone_base_hexcode": "1F467", "unicode": 2, "order": 137 }, @@ -1760,6 +1885,7 @@ "hfg_author": "Johanna Wellnitz", "skintone": 3, "skintone_base_emoji": "๐Ÿ‘ง", + "skintone_base_hexcode": "1F467", "unicode": 2, "order": 138 }, @@ -1774,6 +1900,7 @@ "hfg_author": "Johanna Wellnitz", "skintone": 4, "skintone_base_emoji": "๐Ÿ‘ง", + "skintone_base_hexcode": "1F467", "unicode": 2, "order": 139 }, @@ -1788,6 +1915,7 @@ "hfg_author": "Johanna Wellnitz", "skintone": 5, "skintone_base_emoji": "๐Ÿ‘ง", + "skintone_base_hexcode": "1F467", "unicode": 2, "order": 140 }, @@ -1801,7 +1929,8 @@ "hfg_tags": "human, person", "hfg_author": "Johanna Wellnitz", "skintone": "", - "skintone_base_emoji": "", + "skintone_base_emoji": "๐Ÿง‘", + "skintone_base_hexcode": "1F9D1", "unicode": 5, "order": 141 }, @@ -1816,6 +1945,7 @@ "hfg_author": "Johanna Wellnitz", "skintone": 1, "skintone_base_emoji": "๐Ÿง‘", + "skintone_base_hexcode": "1F9D1", "unicode": 5, "order": 142 }, @@ -1830,6 +1960,7 @@ "hfg_author": "Johanna Wellnitz", "skintone": 2, "skintone_base_emoji": "๐Ÿง‘", + "skintone_base_hexcode": "1F9D1", "unicode": 5, "order": 143 }, @@ -1844,6 +1975,7 @@ "hfg_author": "Johanna Wellnitz", "skintone": 3, "skintone_base_emoji": "๐Ÿง‘", + "skintone_base_hexcode": "1F9D1", "unicode": 5, "order": 144 }, @@ -1858,6 +1990,7 @@ "hfg_author": "Johanna Wellnitz", "skintone": 4, "skintone_base_emoji": "๐Ÿง‘", + "skintone_base_hexcode": "1F9D1", "unicode": 5, "order": 145 }, @@ -1872,6 +2005,7 @@ "hfg_author": "Johanna Wellnitz", "skintone": 5, "skintone_base_emoji": "๐Ÿง‘", + "skintone_base_hexcode": "1F9D1", "unicode": 5, "order": 146 }, @@ -1885,7 +2019,8 @@ "hfg_tags": "human, person", "hfg_author": "Johanna Wellnitz", "skintone": "", - "skintone_base_emoji": "", + "skintone_base_emoji": "๐Ÿ‘จ", + "skintone_base_hexcode": "1F468", "unicode": 1, "order": 147 }, @@ -1900,6 +2035,7 @@ "hfg_author": "Johanna Wellnitz", "skintone": 1, "skintone_base_emoji": "๐Ÿ‘จ", + "skintone_base_hexcode": "1F468", "unicode": 2, "order": 148 }, @@ -1914,6 +2050,7 @@ "hfg_author": "Johanna Wellnitz", "skintone": 2, "skintone_base_emoji": "๐Ÿ‘จ", + "skintone_base_hexcode": "1F468", "unicode": 2, "order": 149 }, @@ -1928,6 +2065,7 @@ "hfg_author": "Johanna Wellnitz", "skintone": 3, "skintone_base_emoji": "๐Ÿ‘จ", + "skintone_base_hexcode": "1F468", "unicode": 2, "order": 150 }, @@ -1942,6 +2080,7 @@ "hfg_author": "Johanna Wellnitz", "skintone": 4, "skintone_base_emoji": "๐Ÿ‘จ", + "skintone_base_hexcode": "1F468", "unicode": 2, "order": 151 }, @@ -1956,6 +2095,7 @@ "hfg_author": "Johanna Wellnitz", "skintone": 5, "skintone_base_emoji": "๐Ÿ‘จ", + "skintone_base_hexcode": "1F468", "unicode": 2, "order": 152 }, @@ -1969,7 +2109,8 @@ "hfg_tags": "human, person", "hfg_author": "Johanna Wellnitz", "skintone": "", - "skintone_base_emoji": "", + "skintone_base_emoji": "๐Ÿ‘ฉ", + "skintone_base_hexcode": "1F469", "unicode": 1, "order": 153 }, @@ -1984,6 +2125,7 @@ "hfg_author": "Johanna Wellnitz", "skintone": 1, "skintone_base_emoji": "๐Ÿ‘ฉ", + "skintone_base_hexcode": "1F469", "unicode": 2, "order": 154 }, @@ -1998,6 +2140,7 @@ "hfg_author": "Johanna Wellnitz", "skintone": 2, "skintone_base_emoji": "๐Ÿ‘ฉ", + "skintone_base_hexcode": "1F469", "unicode": 2, "order": 155 }, @@ -2012,6 +2155,7 @@ "hfg_author": "Johanna Wellnitz", "skintone": 3, "skintone_base_emoji": "๐Ÿ‘ฉ", + "skintone_base_hexcode": "1F469", "unicode": 2, "order": 156 }, @@ -2026,6 +2170,7 @@ "hfg_author": "Johanna Wellnitz", "skintone": 4, "skintone_base_emoji": "๐Ÿ‘ฉ", + "skintone_base_hexcode": "1F469", "unicode": 2, "order": 157 }, @@ -2040,6 +2185,7 @@ "hfg_author": "Johanna Wellnitz", "skintone": 5, "skintone_base_emoji": "๐Ÿ‘ฉ", + "skintone_base_hexcode": "1F469", "unicode": 2, "order": 158 }, @@ -2053,7 +2199,8 @@ "hfg_tags": "human, person", "hfg_author": "Johanna Wellnitz", "skintone": "", - "skintone_base_emoji": "", + "skintone_base_emoji": "๐Ÿง“", + "skintone_base_hexcode": "1F9D3", "unicode": 5, "order": 159 }, @@ -2068,6 +2215,7 @@ "hfg_author": "Johanna Wellnitz", "skintone": 1, "skintone_base_emoji": "๐Ÿง“", + "skintone_base_hexcode": "1F9D3", "unicode": 5, "order": 160 }, @@ -2082,6 +2230,7 @@ "hfg_author": "Johanna Wellnitz", "skintone": 2, "skintone_base_emoji": "๐Ÿง“", + "skintone_base_hexcode": "1F9D3", "unicode": 5, "order": 161 }, @@ -2096,6 +2245,7 @@ "hfg_author": "Johanna Wellnitz", "skintone": 3, "skintone_base_emoji": "๐Ÿง“", + "skintone_base_hexcode": "1F9D3", "unicode": 5, "order": 162 }, @@ -2110,6 +2260,7 @@ "hfg_author": "Johanna Wellnitz", "skintone": 4, "skintone_base_emoji": "๐Ÿง“", + "skintone_base_hexcode": "1F9D3", "unicode": 5, "order": 163 }, @@ -2124,6 +2275,7 @@ "hfg_author": "Johanna Wellnitz", "skintone": 5, "skintone_base_emoji": "๐Ÿง“", + "skintone_base_hexcode": "1F9D3", "unicode": 5, "order": 164 }, @@ -2137,7 +2289,8 @@ "hfg_tags": "grandpa, human, person", "hfg_author": "Johanna Wellnitz", "skintone": "", - "skintone_base_emoji": "", + "skintone_base_emoji": "๐Ÿ‘ด", + "skintone_base_hexcode": "1F474", "unicode": 1, "order": 165 }, @@ -2152,6 +2305,7 @@ "hfg_author": "Johanna Wellnitz", "skintone": 1, "skintone_base_emoji": "๐Ÿ‘ด", + "skintone_base_hexcode": "1F474", "unicode": 2, "order": 166 }, @@ -2166,6 +2320,7 @@ "hfg_author": "Johanna Wellnitz", "skintone": 2, "skintone_base_emoji": "๐Ÿ‘ด", + "skintone_base_hexcode": "1F474", "unicode": 2, "order": 167 }, @@ -2180,6 +2335,7 @@ "hfg_author": "Johanna Wellnitz", "skintone": 3, "skintone_base_emoji": "๐Ÿ‘ด", + "skintone_base_hexcode": "1F474", "unicode": 2, "order": 168 }, @@ -2194,6 +2350,7 @@ "hfg_author": "Johanna Wellnitz", "skintone": 4, "skintone_base_emoji": "๐Ÿ‘ด", + "skintone_base_hexcode": "1F474", "unicode": 2, "order": 169 }, @@ -2208,6 +2365,7 @@ "hfg_author": "Johanna Wellnitz", "skintone": 5, "skintone_base_emoji": "๐Ÿ‘ด", + "skintone_base_hexcode": "1F474", "unicode": 2, "order": 170 }, @@ -2221,7 +2379,8 @@ "hfg_tags": "gradma, human, person", "hfg_author": "Johanna Wellnitz", "skintone": "", - "skintone_base_emoji": "", + "skintone_base_emoji": "๐Ÿ‘ต", + "skintone_base_hexcode": "1F475", "unicode": 1, "order": 171 }, @@ -2236,6 +2395,7 @@ "hfg_author": "Johanna Wellnitz", "skintone": 1, "skintone_base_emoji": "๐Ÿ‘ต", + "skintone_base_hexcode": "1F475", "unicode": 2, "order": 172 }, @@ -2250,6 +2410,7 @@ "hfg_author": "Johanna Wellnitz", "skintone": 2, "skintone_base_emoji": "๐Ÿ‘ต", + "skintone_base_hexcode": "1F475", "unicode": 2, "order": 173 }, @@ -2264,6 +2425,7 @@ "hfg_author": "Johanna Wellnitz", "skintone": 3, "skintone_base_emoji": "๐Ÿ‘ต", + "skintone_base_hexcode": "1F475", "unicode": 2, "order": 174 }, @@ -2278,6 +2440,7 @@ "hfg_author": "Johanna Wellnitz", "skintone": 4, "skintone_base_emoji": "๐Ÿ‘ต", + "skintone_base_hexcode": "1F475", "unicode": 2, "order": 175 }, @@ -2292,6 +2455,7 @@ "hfg_author": "Johanna Wellnitz", "skintone": 5, "skintone_base_emoji": "๐Ÿ‘ต", + "skintone_base_hexcode": "1F475", "unicode": 2, "order": 176 }, @@ -2305,7 +2469,8 @@ "hfg_tags": "doctor, healthcare, man, nurse, therapist, stethoscope, doctor smock", "hfg_author": "Lisa Thiel", "skintone": "", - "skintone_base_emoji": "", + "skintone_base_emoji": "๐Ÿ‘จโ€โš•๏ธ", + "skintone_base_hexcode": "1F468-200D-2695-FE0F", "unicode": 4, "order": 177 }, @@ -2320,6 +2485,7 @@ "hfg_author": "Lisa Thiel", "skintone": 1, "skintone_base_emoji": "๐Ÿ‘จโ€โš•๏ธ", + "skintone_base_hexcode": "1F468-200D-2695-FE0F", "unicode": 4, "order": 179 }, @@ -2334,6 +2500,7 @@ "hfg_author": "Lisa Thiel", "skintone": 2, "skintone_base_emoji": "๐Ÿ‘จโ€โš•๏ธ", + "skintone_base_hexcode": "1F468-200D-2695-FE0F", "unicode": 4, "order": 181 }, @@ -2348,6 +2515,7 @@ "hfg_author": "Lisa Thiel", "skintone": 3, "skintone_base_emoji": "๐Ÿ‘จโ€โš•๏ธ", + "skintone_base_hexcode": "1F468-200D-2695-FE0F", "unicode": 4, "order": 183 }, @@ -2362,6 +2530,7 @@ "hfg_author": "Lisa Thiel", "skintone": 4, "skintone_base_emoji": "๐Ÿ‘จโ€โš•๏ธ", + "skintone_base_hexcode": "1F468-200D-2695-FE0F", "unicode": 4, "order": 185 }, @@ -2376,6 +2545,7 @@ "hfg_author": "Lisa Thiel", "skintone": 5, "skintone_base_emoji": "๐Ÿ‘จโ€โš•๏ธ", + "skintone_base_hexcode": "1F468-200D-2695-FE0F", "unicode": 4, "order": 187 }, @@ -2389,7 +2559,8 @@ "hfg_tags": "doctor, healthcare, woman, nurse, therapist, stethoscope, doctor smock", "hfg_author": "Lisa Thiel", "skintone": "", - "skintone_base_emoji": "", + "skintone_base_emoji": "๐Ÿ‘ฉโ€โš•๏ธ", + "skintone_base_hexcode": "1F469-200D-2695-FE0F", "unicode": 4, "order": 189 }, @@ -2404,6 +2575,7 @@ "hfg_author": "Lisa Thiel", "skintone": 1, "skintone_base_emoji": "๐Ÿ‘ฉโ€โš•๏ธ", + "skintone_base_hexcode": "1F469-200D-2695-FE0F", "unicode": 4, "order": 191 }, @@ -2418,6 +2590,7 @@ "hfg_author": "Lisa Thiel", "skintone": 2, "skintone_base_emoji": "๐Ÿ‘ฉโ€โš•๏ธ", + "skintone_base_hexcode": "1F469-200D-2695-FE0F", "unicode": 4, "order": 193 }, @@ -2432,6 +2605,7 @@ "hfg_author": "Lisa Thiel", "skintone": 3, "skintone_base_emoji": "๐Ÿ‘ฉโ€โš•๏ธ", + "skintone_base_hexcode": "1F469-200D-2695-FE0F", "unicode": 4, "order": 195 }, @@ -2446,6 +2620,7 @@ "hfg_author": "Lisa Thiel", "skintone": 4, "skintone_base_emoji": "๐Ÿ‘ฉโ€โš•๏ธ", + "skintone_base_hexcode": "1F469-200D-2695-FE0F", "unicode": 4, "order": 197 }, @@ -2460,6 +2635,7 @@ "hfg_author": "Lisa Thiel", "skintone": 5, "skintone_base_emoji": "๐Ÿ‘ฉโ€โš•๏ธ", + "skintone_base_hexcode": "1F469-200D-2695-FE0F", "unicode": 4, "order": 199 }, @@ -2473,7 +2649,8 @@ "hfg_tags": "graduate, man, student, black robe, collegian, undergraduate, graduation", "hfg_author": "Lisa Thiel", "skintone": "", - "skintone_base_emoji": "", + "skintone_base_emoji": "๐Ÿ‘จโ€๐ŸŽ“", + "skintone_base_hexcode": "1F468-200D-1F393", "unicode": 4, "order": 201 }, @@ -2488,6 +2665,7 @@ "hfg_author": "Lisa Thiel", "skintone": 1, "skintone_base_emoji": "๐Ÿ‘จโ€๐ŸŽ“", + "skintone_base_hexcode": "1F468-200D-1F393", "unicode": 4, "order": 202 }, @@ -2502,6 +2680,7 @@ "hfg_author": "Lisa Thiel", "skintone": 2, "skintone_base_emoji": "๐Ÿ‘จโ€๐ŸŽ“", + "skintone_base_hexcode": "1F468-200D-1F393", "unicode": 4, "order": 203 }, @@ -2516,6 +2695,7 @@ "hfg_author": "Lisa Thiel", "skintone": 3, "skintone_base_emoji": "๐Ÿ‘จโ€๐ŸŽ“", + "skintone_base_hexcode": "1F468-200D-1F393", "unicode": 4, "order": 204 }, @@ -2530,6 +2710,7 @@ "hfg_author": "Lisa Thiel", "skintone": 4, "skintone_base_emoji": "๐Ÿ‘จโ€๐ŸŽ“", + "skintone_base_hexcode": "1F468-200D-1F393", "unicode": 4, "order": 205 }, @@ -2544,6 +2725,7 @@ "hfg_author": "Lisa Thiel", "skintone": 5, "skintone_base_emoji": "๐Ÿ‘จโ€๐ŸŽ“", + "skintone_base_hexcode": "1F468-200D-1F393", "unicode": 4, "order": 206 }, @@ -2557,7 +2739,8 @@ "hfg_tags": "graduate, woman, student, black robe, collegian, undergraduate, graduation", "hfg_author": "Lisa Thiel", "skintone": "", - "skintone_base_emoji": "", + "skintone_base_emoji": "๐Ÿ‘ฉโ€๐ŸŽ“", + "skintone_base_hexcode": "1F469-200D-1F393", "unicode": 4, "order": 207 }, @@ -2572,6 +2755,7 @@ "hfg_author": "Lisa Thiel", "skintone": 1, "skintone_base_emoji": "๐Ÿ‘ฉโ€๐ŸŽ“", + "skintone_base_hexcode": "1F469-200D-1F393", "unicode": 4, "order": 208 }, @@ -2586,6 +2770,7 @@ "hfg_author": "Lisa Thiel", "skintone": 2, "skintone_base_emoji": "๐Ÿ‘ฉโ€๐ŸŽ“", + "skintone_base_hexcode": "1F469-200D-1F393", "unicode": 4, "order": 209 }, @@ -2600,6 +2785,7 @@ "hfg_author": "Lisa Thiel", "skintone": 3, "skintone_base_emoji": "๐Ÿ‘ฉโ€๐ŸŽ“", + "skintone_base_hexcode": "1F469-200D-1F393", "unicode": 4, "order": 210 }, @@ -2614,6 +2800,7 @@ "hfg_author": "Lisa Thiel", "skintone": 4, "skintone_base_emoji": "๐Ÿ‘ฉโ€๐ŸŽ“", + "skintone_base_hexcode": "1F469-200D-1F393", "unicode": 4, "order": 211 }, @@ -2628,6 +2815,7 @@ "hfg_author": "Lisa Thiel", "skintone": 5, "skintone_base_emoji": "๐Ÿ‘ฉโ€๐ŸŽ“", + "skintone_base_hexcode": "1F469-200D-1F393", "unicode": 4, "order": 212 }, @@ -2641,7 +2829,8 @@ "hfg_tags": "instructor, man, professor, teacher, lecturer, educator, chalkboard", "hfg_author": "Lisa Thiel", "skintone": "", - "skintone_base_emoji": "", + "skintone_base_emoji": "๐Ÿ‘จโ€๐Ÿซ", + "skintone_base_hexcode": "1F468-200D-1F3EB", "unicode": 4, "order": 213 }, @@ -2656,6 +2845,7 @@ "hfg_author": "Lisa Thiel", "skintone": 1, "skintone_base_emoji": "๐Ÿ‘จโ€๐Ÿซ", + "skintone_base_hexcode": "1F468-200D-1F3EB", "unicode": 4, "order": 214 }, @@ -2670,6 +2860,7 @@ "hfg_author": "Lisa Thiel", "skintone": 2, "skintone_base_emoji": "๐Ÿ‘จโ€๐Ÿซ", + "skintone_base_hexcode": "1F468-200D-1F3EB", "unicode": 4, "order": 215 }, @@ -2684,6 +2875,7 @@ "hfg_author": "Lisa Thiel", "skintone": 3, "skintone_base_emoji": "๐Ÿ‘จโ€๐Ÿซ", + "skintone_base_hexcode": "1F468-200D-1F3EB", "unicode": 4, "order": 216 }, @@ -2698,6 +2890,7 @@ "hfg_author": "Lisa Thiel", "skintone": 4, "skintone_base_emoji": "๐Ÿ‘จโ€๐Ÿซ", + "skintone_base_hexcode": "1F468-200D-1F3EB", "unicode": 4, "order": 217 }, @@ -2712,6 +2905,7 @@ "hfg_author": "Lisa Thiel", "skintone": 5, "skintone_base_emoji": "๐Ÿ‘จโ€๐Ÿซ", + "skintone_base_hexcode": "1F468-200D-1F3EB", "unicode": 4, "order": 218 }, @@ -2725,7 +2919,8 @@ "hfg_tags": "instructor, woman, professor, teacher, lecturer, educator, chalkboard", "hfg_author": "Lisa Thiel", "skintone": "", - "skintone_base_emoji": "", + "skintone_base_emoji": "๐Ÿ‘ฉโ€๐Ÿซ", + "skintone_base_hexcode": "1F469-200D-1F3EB", "unicode": 4, "order": 219 }, @@ -2740,6 +2935,7 @@ "hfg_author": "Lisa Thiel", "skintone": 1, "skintone_base_emoji": "๐Ÿ‘ฉโ€๐Ÿซ", + "skintone_base_hexcode": "1F469-200D-1F3EB", "unicode": 4, "order": 220 }, @@ -2754,6 +2950,7 @@ "hfg_author": "Lisa Thiel", "skintone": 2, "skintone_base_emoji": "๐Ÿ‘ฉโ€๐Ÿซ", + "skintone_base_hexcode": "1F469-200D-1F3EB", "unicode": 4, "order": 221 }, @@ -2768,6 +2965,7 @@ "hfg_author": "Lisa Thiel", "skintone": 3, "skintone_base_emoji": "๐Ÿ‘ฉโ€๐Ÿซ", + "skintone_base_hexcode": "1F469-200D-1F3EB", "unicode": 4, "order": 222 }, @@ -2782,6 +2980,7 @@ "hfg_author": "Lisa Thiel", "skintone": 4, "skintone_base_emoji": "๐Ÿ‘ฉโ€๐Ÿซ", + "skintone_base_hexcode": "1F469-200D-1F3EB", "unicode": 4, "order": 223 }, @@ -2796,6 +2995,7 @@ "hfg_author": "Lisa Thiel", "skintone": 5, "skintone_base_emoji": "๐Ÿ‘ฉโ€๐Ÿซ", + "skintone_base_hexcode": "1F469-200D-1F3EB", "unicode": 4, "order": 224 }, @@ -2809,7 +3009,8 @@ "hfg_tags": "justice, man, scales, judge hammer, gavel, black robe, law, order", "hfg_author": "Lisa Thiel", "skintone": "", - "skintone_base_emoji": "", + "skintone_base_emoji": "๐Ÿ‘จโ€โš–๏ธ", + "skintone_base_hexcode": "1F468-200D-2696-FE0F", "unicode": 4, "order": 225 }, @@ -2824,6 +3025,7 @@ "hfg_author": "Lisa Thiel", "skintone": 1, "skintone_base_emoji": "๐Ÿ‘จโ€โš–๏ธ", + "skintone_base_hexcode": "1F468-200D-2696-FE0F", "unicode": 4, "order": 227 }, @@ -2838,6 +3040,7 @@ "hfg_author": "Lisa Thiel", "skintone": 2, "skintone_base_emoji": "๐Ÿ‘จโ€โš–๏ธ", + "skintone_base_hexcode": "1F468-200D-2696-FE0F", "unicode": 4, "order": 229 }, @@ -2852,6 +3055,7 @@ "hfg_author": "Lisa Thiel", "skintone": 3, "skintone_base_emoji": "๐Ÿ‘จโ€โš–๏ธ", + "skintone_base_hexcode": "1F468-200D-2696-FE0F", "unicode": 4, "order": 231 }, @@ -2866,6 +3070,7 @@ "hfg_author": "Lisa Thiel", "skintone": 4, "skintone_base_emoji": "๐Ÿ‘จโ€โš–๏ธ", + "skintone_base_hexcode": "1F468-200D-2696-FE0F", "unicode": 4, "order": 233 }, @@ -2880,6 +3085,7 @@ "hfg_author": "Lisa Thiel", "skintone": 5, "skintone_base_emoji": "๐Ÿ‘จโ€โš–๏ธ", + "skintone_base_hexcode": "1F468-200D-2696-FE0F", "unicode": 4, "order": 235 }, @@ -2893,7 +3099,8 @@ "hfg_tags": "justice, woman, scales, judge hammer, gavel, black robe, law, order", "hfg_author": "Lisa Thiel", "skintone": "", - "skintone_base_emoji": "", + "skintone_base_emoji": "๐Ÿ‘ฉโ€โš–๏ธ", + "skintone_base_hexcode": "1F469-200D-2696-FE0F", "unicode": 4, "order": 237 }, @@ -2908,6 +3115,7 @@ "hfg_author": "Lisa Thiel", "skintone": 1, "skintone_base_emoji": "๐Ÿ‘ฉโ€โš–๏ธ", + "skintone_base_hexcode": "1F469-200D-2696-FE0F", "unicode": 4, "order": 239 }, @@ -2922,6 +3130,7 @@ "hfg_author": "Lisa Thiel", "skintone": 2, "skintone_base_emoji": "๐Ÿ‘ฉโ€โš–๏ธ", + "skintone_base_hexcode": "1F469-200D-2696-FE0F", "unicode": 4, "order": 241 }, @@ -2936,6 +3145,7 @@ "hfg_author": "Lisa Thiel", "skintone": 3, "skintone_base_emoji": "๐Ÿ‘ฉโ€โš–๏ธ", + "skintone_base_hexcode": "1F469-200D-2696-FE0F", "unicode": 4, "order": 243 }, @@ -2950,6 +3160,7 @@ "hfg_author": "Lisa Thiel", "skintone": 4, "skintone_base_emoji": "๐Ÿ‘ฉโ€โš–๏ธ", + "skintone_base_hexcode": "1F469-200D-2696-FE0F", "unicode": 4, "order": 245 }, @@ -2964,6 +3175,7 @@ "hfg_author": "Lisa Thiel", "skintone": 5, "skintone_base_emoji": "๐Ÿ‘ฉโ€โš–๏ธ", + "skintone_base_hexcode": "1F469-200D-2696-FE0F", "unicode": 4, "order": 247 }, @@ -2977,7 +3189,8 @@ "hfg_tags": "farmer, gardener, man, rancher, pitchfork, strawhat", "hfg_author": "Lisa Thiel", "skintone": "", - "skintone_base_emoji": "", + "skintone_base_emoji": "๐Ÿ‘จโ€๐ŸŒพ", + "skintone_base_hexcode": "1F468-200D-1F33E", "unicode": 4, "order": 249 }, @@ -2992,6 +3205,7 @@ "hfg_author": "Lisa Thiel", "skintone": 1, "skintone_base_emoji": "๐Ÿ‘จโ€๐ŸŒพ", + "skintone_base_hexcode": "1F468-200D-1F33E", "unicode": 4, "order": 250 }, @@ -3006,6 +3220,7 @@ "hfg_author": "Lisa Thiel", "skintone": 2, "skintone_base_emoji": "๐Ÿ‘จโ€๐ŸŒพ", + "skintone_base_hexcode": "1F468-200D-1F33E", "unicode": 4, "order": 251 }, @@ -3020,6 +3235,7 @@ "hfg_author": "Lisa Thiel", "skintone": 3, "skintone_base_emoji": "๐Ÿ‘จโ€๐ŸŒพ", + "skintone_base_hexcode": "1F468-200D-1F33E", "unicode": 4, "order": 252 }, @@ -3034,6 +3250,7 @@ "hfg_author": "Lisa Thiel", "skintone": 4, "skintone_base_emoji": "๐Ÿ‘จโ€๐ŸŒพ", + "skintone_base_hexcode": "1F468-200D-1F33E", "unicode": 4, "order": 253 }, @@ -3048,6 +3265,7 @@ "hfg_author": "Lisa Thiel", "skintone": 5, "skintone_base_emoji": "๐Ÿ‘จโ€๐ŸŒพ", + "skintone_base_hexcode": "1F468-200D-1F33E", "unicode": 4, "order": 254 }, @@ -3061,7 +3279,8 @@ "hfg_tags": "farmer, gardener, woman, rancher, pitchfork, strawhat, braids", "hfg_author": "Lisa Thiel", "skintone": "", - "skintone_base_emoji": "", + "skintone_base_emoji": "๐Ÿ‘ฉโ€๐ŸŒพ", + "skintone_base_hexcode": "1F469-200D-1F33E", "unicode": 4, "order": 255 }, @@ -3076,6 +3295,7 @@ "hfg_author": "Lisa Thiel", "skintone": 1, "skintone_base_emoji": "๐Ÿ‘ฉโ€๐ŸŒพ", + "skintone_base_hexcode": "1F469-200D-1F33E", "unicode": 4, "order": 256 }, @@ -3090,6 +3310,7 @@ "hfg_author": "Lisa Thiel", "skintone": 2, "skintone_base_emoji": "๐Ÿ‘ฉโ€๐ŸŒพ", + "skintone_base_hexcode": "1F469-200D-1F33E", "unicode": 4, "order": 257 }, @@ -3104,6 +3325,7 @@ "hfg_author": "Lisa Thiel", "skintone": 3, "skintone_base_emoji": "๐Ÿ‘ฉโ€๐ŸŒพ", + "skintone_base_hexcode": "1F469-200D-1F33E", "unicode": 4, "order": 258 }, @@ -3118,6 +3340,7 @@ "hfg_author": "Lisa Thiel", "skintone": 4, "skintone_base_emoji": "๐Ÿ‘ฉโ€๐ŸŒพ", + "skintone_base_hexcode": "1F469-200D-1F33E", "unicode": 4, "order": 259 }, @@ -3132,6 +3355,7 @@ "hfg_author": "Lisa Thiel", "skintone": 5, "skintone_base_emoji": "๐Ÿ‘ฉโ€๐ŸŒพ", + "skintone_base_hexcode": "1F469-200D-1F33E", "unicode": 4, "order": 260 }, @@ -3145,7 +3369,8 @@ "hfg_tags": "chef, cook, man, toque, chef's hat, food, cooking", "hfg_author": "Lisa Thiel", "skintone": "", - "skintone_base_emoji": "", + "skintone_base_emoji": "๐Ÿ‘จโ€๐Ÿณ", + "skintone_base_hexcode": "1F468-200D-1F373", "unicode": 4, "order": 261 }, @@ -3160,6 +3385,7 @@ "hfg_author": "Lisa Thiel", "skintone": 1, "skintone_base_emoji": "๐Ÿ‘จโ€๐Ÿณ", + "skintone_base_hexcode": "1F468-200D-1F373", "unicode": 4, "order": 262 }, @@ -3174,6 +3400,7 @@ "hfg_author": "Lisa Thiel", "skintone": 2, "skintone_base_emoji": "๐Ÿ‘จโ€๐Ÿณ", + "skintone_base_hexcode": "1F468-200D-1F373", "unicode": 4, "order": 263 }, @@ -3188,6 +3415,7 @@ "hfg_author": "Lisa Thiel", "skintone": 3, "skintone_base_emoji": "๐Ÿ‘จโ€๐Ÿณ", + "skintone_base_hexcode": "1F468-200D-1F373", "unicode": 4, "order": 264 }, @@ -3202,6 +3430,7 @@ "hfg_author": "Lisa Thiel", "skintone": 4, "skintone_base_emoji": "๐Ÿ‘จโ€๐Ÿณ", + "skintone_base_hexcode": "1F468-200D-1F373", "unicode": 4, "order": 265 }, @@ -3216,6 +3445,7 @@ "hfg_author": "Lisa Thiel", "skintone": 5, "skintone_base_emoji": "๐Ÿ‘จโ€๐Ÿณ", + "skintone_base_hexcode": "1F468-200D-1F373", "unicode": 4, "order": 266 }, @@ -3229,7 +3459,8 @@ "hfg_tags": "chef, cook, woman, toque, chef's hat, food, cooking", "hfg_author": "Lisa Thiel", "skintone": "", - "skintone_base_emoji": "", + "skintone_base_emoji": "๐Ÿ‘ฉโ€๐Ÿณ", + "skintone_base_hexcode": "1F469-200D-1F373", "unicode": 4, "order": 267 }, @@ -3244,6 +3475,7 @@ "hfg_author": "Lisa Thiel", "skintone": 1, "skintone_base_emoji": "๐Ÿ‘ฉโ€๐Ÿณ", + "skintone_base_hexcode": "1F469-200D-1F373", "unicode": 4, "order": 268 }, @@ -3258,6 +3490,7 @@ "hfg_author": "Lisa Thiel", "skintone": 2, "skintone_base_emoji": "๐Ÿ‘ฉโ€๐Ÿณ", + "skintone_base_hexcode": "1F469-200D-1F373", "unicode": 4, "order": 269 }, @@ -3272,6 +3505,7 @@ "hfg_author": "Lisa Thiel", "skintone": 3, "skintone_base_emoji": "๐Ÿ‘ฉโ€๐Ÿณ", + "skintone_base_hexcode": "1F469-200D-1F373", "unicode": 4, "order": 270 }, @@ -3286,6 +3520,7 @@ "hfg_author": "Lisa Thiel", "skintone": 4, "skintone_base_emoji": "๐Ÿ‘ฉโ€๐Ÿณ", + "skintone_base_hexcode": "1F469-200D-1F373", "unicode": 4, "order": 271 }, @@ -3300,6 +3535,7 @@ "hfg_author": "Lisa Thiel", "skintone": 5, "skintone_base_emoji": "๐Ÿ‘ฉโ€๐Ÿณ", + "skintone_base_hexcode": "1F469-200D-1F373", "unicode": 4, "order": 272 }, @@ -3313,7 +3549,8 @@ "hfg_tags": "electrician, man, mechanic, plumber, tradesperson, wrench, overalls, blue hat, auto mechanic", "hfg_author": "Lisa Thiel", "skintone": "", - "skintone_base_emoji": "", + "skintone_base_emoji": "๐Ÿ‘จโ€๐Ÿ”ง", + "skintone_base_hexcode": "1F468-200D-1F527", "unicode": 4, "order": 273 }, @@ -3328,6 +3565,7 @@ "hfg_author": "Lisa Thiel", "skintone": 1, "skintone_base_emoji": "๐Ÿ‘จโ€๐Ÿ”ง", + "skintone_base_hexcode": "1F468-200D-1F527", "unicode": 4, "order": 274 }, @@ -3342,6 +3580,7 @@ "hfg_author": "Lisa Thiel", "skintone": 2, "skintone_base_emoji": "๐Ÿ‘จโ€๐Ÿ”ง", + "skintone_base_hexcode": "1F468-200D-1F527", "unicode": 4, "order": 275 }, @@ -3356,6 +3595,7 @@ "hfg_author": "Lisa Thiel", "skintone": 3, "skintone_base_emoji": "๐Ÿ‘จโ€๐Ÿ”ง", + "skintone_base_hexcode": "1F468-200D-1F527", "unicode": 4, "order": 276 }, @@ -3370,6 +3610,7 @@ "hfg_author": "Lisa Thiel", "skintone": 4, "skintone_base_emoji": "๐Ÿ‘จโ€๐Ÿ”ง", + "skintone_base_hexcode": "1F468-200D-1F527", "unicode": 4, "order": 277 }, @@ -3384,6 +3625,7 @@ "hfg_author": "Lisa Thiel", "skintone": 5, "skintone_base_emoji": "๐Ÿ‘จโ€๐Ÿ”ง", + "skintone_base_hexcode": "1F468-200D-1F527", "unicode": 4, "order": 278 }, @@ -3397,7 +3639,8 @@ "hfg_tags": "electrician, woman, mechanic, plumber, tradesperson, wrench, overalls, blue hat, auto mechanic", "hfg_author": "Lisa Thiel", "skintone": "", - "skintone_base_emoji": "", + "skintone_base_emoji": "๐Ÿ‘ฉโ€๐Ÿ”ง", + "skintone_base_hexcode": "1F469-200D-1F527", "unicode": 4, "order": 279 }, @@ -3412,6 +3655,7 @@ "hfg_author": "Lisa Thiel", "skintone": 1, "skintone_base_emoji": "๐Ÿ‘ฉโ€๐Ÿ”ง", + "skintone_base_hexcode": "1F469-200D-1F527", "unicode": 4, "order": 280 }, @@ -3426,6 +3670,7 @@ "hfg_author": "Lisa Thiel", "skintone": 2, "skintone_base_emoji": "๐Ÿ‘ฉโ€๐Ÿ”ง", + "skintone_base_hexcode": "1F469-200D-1F527", "unicode": 4, "order": 281 }, @@ -3440,6 +3685,7 @@ "hfg_author": "Lisa Thiel", "skintone": 3, "skintone_base_emoji": "๐Ÿ‘ฉโ€๐Ÿ”ง", + "skintone_base_hexcode": "1F469-200D-1F527", "unicode": 4, "order": 282 }, @@ -3454,6 +3700,7 @@ "hfg_author": "Lisa Thiel", "skintone": 4, "skintone_base_emoji": "๐Ÿ‘ฉโ€๐Ÿ”ง", + "skintone_base_hexcode": "1F469-200D-1F527", "unicode": 4, "order": 283 }, @@ -3468,6 +3715,7 @@ "hfg_author": "Lisa Thiel", "skintone": 5, "skintone_base_emoji": "๐Ÿ‘ฉโ€๐Ÿ”ง", + "skintone_base_hexcode": "1F469-200D-1F527", "unicode": 4, "order": 284 }, @@ -3481,7 +3729,8 @@ "hfg_tags": "assembly, factory, industrial, man, worker, welder, welding, welding helmet", "hfg_author": "Lisa Thiel", "skintone": "", - "skintone_base_emoji": "", + "skintone_base_emoji": "๐Ÿ‘จโ€๐Ÿญ", + "skintone_base_hexcode": "1F468-200D-1F3ED", "unicode": 4, "order": 285 }, @@ -3496,6 +3745,7 @@ "hfg_author": "Lisa Thiel", "skintone": 1, "skintone_base_emoji": "๐Ÿ‘จโ€๐Ÿญ", + "skintone_base_hexcode": "1F468-200D-1F3ED", "unicode": 4, "order": 286 }, @@ -3510,6 +3760,7 @@ "hfg_author": "Lisa Thiel", "skintone": 2, "skintone_base_emoji": "๐Ÿ‘จโ€๐Ÿญ", + "skintone_base_hexcode": "1F468-200D-1F3ED", "unicode": 4, "order": 287 }, @@ -3524,6 +3775,7 @@ "hfg_author": "Lisa Thiel", "skintone": 3, "skintone_base_emoji": "๐Ÿ‘จโ€๐Ÿญ", + "skintone_base_hexcode": "1F468-200D-1F3ED", "unicode": 4, "order": 288 }, @@ -3538,6 +3790,7 @@ "hfg_author": "Lisa Thiel", "skintone": 4, "skintone_base_emoji": "๐Ÿ‘จโ€๐Ÿญ", + "skintone_base_hexcode": "1F468-200D-1F3ED", "unicode": 4, "order": 289 }, @@ -3552,6 +3805,7 @@ "hfg_author": "Lisa Thiel", "skintone": 5, "skintone_base_emoji": "๐Ÿ‘จโ€๐Ÿญ", + "skintone_base_hexcode": "1F468-200D-1F3ED", "unicode": 4, "order": 290 }, @@ -3565,7 +3819,8 @@ "hfg_tags": "assembly, factory, industrial, woman, worker, welder, welding, welding helmet", "hfg_author": "Lisa Thiel", "skintone": "", - "skintone_base_emoji": "", + "skintone_base_emoji": "๐Ÿ‘ฉโ€๐Ÿญ", + "skintone_base_hexcode": "1F469-200D-1F3ED", "unicode": 4, "order": 291 }, @@ -3580,6 +3835,7 @@ "hfg_author": "Lisa Thiel", "skintone": 1, "skintone_base_emoji": "๐Ÿ‘ฉโ€๐Ÿญ", + "skintone_base_hexcode": "1F469-200D-1F3ED", "unicode": 4, "order": 292 }, @@ -3594,6 +3850,7 @@ "hfg_author": "Lisa Thiel", "skintone": 2, "skintone_base_emoji": "๐Ÿ‘ฉโ€๐Ÿญ", + "skintone_base_hexcode": "1F469-200D-1F3ED", "unicode": 4, "order": 293 }, @@ -3608,6 +3865,7 @@ "hfg_author": "Lisa Thiel", "skintone": 3, "skintone_base_emoji": "๐Ÿ‘ฉโ€๐Ÿญ", + "skintone_base_hexcode": "1F469-200D-1F3ED", "unicode": 4, "order": 294 }, @@ -3622,6 +3880,7 @@ "hfg_author": "Lisa Thiel", "skintone": 4, "skintone_base_emoji": "๐Ÿ‘ฉโ€๐Ÿญ", + "skintone_base_hexcode": "1F469-200D-1F3ED", "unicode": 4, "order": 295 }, @@ -3636,6 +3895,7 @@ "hfg_author": "Lisa Thiel", "skintone": 5, "skintone_base_emoji": "๐Ÿ‘ฉโ€๐Ÿญ", + "skintone_base_hexcode": "1F469-200D-1F3ED", "unicode": 4, "order": 296 }, @@ -3649,7 +3909,8 @@ "hfg_tags": "architect, business, man, manager, office, white-collar, papers, copy", "hfg_author": "Lisa Thiel", "skintone": "", - "skintone_base_emoji": "", + "skintone_base_emoji": "๐Ÿ‘จโ€๐Ÿ’ผ", + "skintone_base_hexcode": "1F468-200D-1F4BC", "unicode": 4, "order": 297 }, @@ -3664,6 +3925,7 @@ "hfg_author": "Lisa Thiel", "skintone": 1, "skintone_base_emoji": "๐Ÿ‘จโ€๐Ÿ’ผ", + "skintone_base_hexcode": "1F468-200D-1F4BC", "unicode": 4, "order": 298 }, @@ -3678,6 +3940,7 @@ "hfg_author": "Lisa Thiel", "skintone": 2, "skintone_base_emoji": "๐Ÿ‘จโ€๐Ÿ’ผ", + "skintone_base_hexcode": "1F468-200D-1F4BC", "unicode": 4, "order": 299 }, @@ -3692,6 +3955,7 @@ "hfg_author": "Lisa Thiel", "skintone": 3, "skintone_base_emoji": "๐Ÿ‘จโ€๐Ÿ’ผ", + "skintone_base_hexcode": "1F468-200D-1F4BC", "unicode": 4, "order": 300 }, @@ -3706,6 +3970,7 @@ "hfg_author": "Lisa Thiel", "skintone": 4, "skintone_base_emoji": "๐Ÿ‘จโ€๐Ÿ’ผ", + "skintone_base_hexcode": "1F468-200D-1F4BC", "unicode": 4, "order": 301 }, @@ -3720,6 +3985,7 @@ "hfg_author": "Lisa Thiel", "skintone": 5, "skintone_base_emoji": "๐Ÿ‘จโ€๐Ÿ’ผ", + "skintone_base_hexcode": "1F468-200D-1F4BC", "unicode": 4, "order": 302 }, @@ -3733,7 +3999,8 @@ "hfg_tags": "architect, business, woman, manager, office, white-collar, papers, copy", "hfg_author": "Lisa Thiel", "skintone": "", - "skintone_base_emoji": "", + "skintone_base_emoji": "๐Ÿ‘ฉโ€๐Ÿ’ผ", + "skintone_base_hexcode": "1F469-200D-1F4BC", "unicode": 4, "order": 303 }, @@ -3748,6 +4015,7 @@ "hfg_author": "Lisa Thiel", "skintone": 1, "skintone_base_emoji": "๐Ÿ‘ฉโ€๐Ÿ’ผ", + "skintone_base_hexcode": "1F469-200D-1F4BC", "unicode": 4, "order": 304 }, @@ -3762,6 +4030,7 @@ "hfg_author": "Lisa Thiel", "skintone": 2, "skintone_base_emoji": "๐Ÿ‘ฉโ€๐Ÿ’ผ", + "skintone_base_hexcode": "1F469-200D-1F4BC", "unicode": 4, "order": 305 }, @@ -3776,6 +4045,7 @@ "hfg_author": "Lisa Thiel", "skintone": 3, "skintone_base_emoji": "๐Ÿ‘ฉโ€๐Ÿ’ผ", + "skintone_base_hexcode": "1F469-200D-1F4BC", "unicode": 4, "order": 306 }, @@ -3790,6 +4060,7 @@ "hfg_author": "Lisa Thiel", "skintone": 4, "skintone_base_emoji": "๐Ÿ‘ฉโ€๐Ÿ’ผ", + "skintone_base_hexcode": "1F469-200D-1F4BC", "unicode": 4, "order": 307 }, @@ -3804,6 +4075,7 @@ "hfg_author": "Lisa Thiel", "skintone": 5, "skintone_base_emoji": "๐Ÿ‘ฉโ€๐Ÿ’ผ", + "skintone_base_hexcode": "1F469-200D-1F4BC", "unicode": 4, "order": 308 }, @@ -3817,7 +4089,8 @@ "hfg_tags": "biologist, chemist, engineer, man, mathematician, physicist, scientist, experiment, laboratory, lab, erlenmeyer flask, safety glasses", "hfg_author": "Lisa Thiel", "skintone": "", - "skintone_base_emoji": "", + "skintone_base_emoji": "๐Ÿ‘จโ€๐Ÿ”ฌ", + "skintone_base_hexcode": "1F468-200D-1F52C", "unicode": 4, "order": 309 }, @@ -3832,6 +4105,7 @@ "hfg_author": "Lisa Thiel", "skintone": 1, "skintone_base_emoji": "๐Ÿ‘จโ€๐Ÿ”ฌ", + "skintone_base_hexcode": "1F468-200D-1F52C", "unicode": 4, "order": 310 }, @@ -3846,6 +4120,7 @@ "hfg_author": "Lisa Thiel", "skintone": 2, "skintone_base_emoji": "๐Ÿ‘จโ€๐Ÿ”ฌ", + "skintone_base_hexcode": "1F468-200D-1F52C", "unicode": 4, "order": 311 }, @@ -3860,6 +4135,7 @@ "hfg_author": "Lisa Thiel", "skintone": 3, "skintone_base_emoji": "๐Ÿ‘จโ€๐Ÿ”ฌ", + "skintone_base_hexcode": "1F468-200D-1F52C", "unicode": 4, "order": 312 }, @@ -3874,6 +4150,7 @@ "hfg_author": "Lisa Thiel", "skintone": 4, "skintone_base_emoji": "๐Ÿ‘จโ€๐Ÿ”ฌ", + "skintone_base_hexcode": "1F468-200D-1F52C", "unicode": 4, "order": 313 }, @@ -3888,6 +4165,7 @@ "hfg_author": "Lisa Thiel", "skintone": 5, "skintone_base_emoji": "๐Ÿ‘จโ€๐Ÿ”ฌ", + "skintone_base_hexcode": "1F468-200D-1F52C", "unicode": 4, "order": 314 }, @@ -3901,7 +4179,8 @@ "hfg_tags": "biologist, chemist, engineer, woman, mathematician, physicist, scientist, experiment, laboratory, lab, erlenmeyer flask, safety glasses", "hfg_author": "Lisa Thiel", "skintone": "", - "skintone_base_emoji": "", + "skintone_base_emoji": "๐Ÿ‘ฉโ€๐Ÿ”ฌ", + "skintone_base_hexcode": "1F469-200D-1F52C", "unicode": 4, "order": 315 }, @@ -3916,6 +4195,7 @@ "hfg_author": "Lisa Thiel", "skintone": 1, "skintone_base_emoji": "๐Ÿ‘ฉโ€๐Ÿ”ฌ", + "skintone_base_hexcode": "1F469-200D-1F52C", "unicode": 4, "order": 316 }, @@ -3930,6 +4210,7 @@ "hfg_author": "Lisa Thiel", "skintone": 2, "skintone_base_emoji": "๐Ÿ‘ฉโ€๐Ÿ”ฌ", + "skintone_base_hexcode": "1F469-200D-1F52C", "unicode": 4, "order": 317 }, @@ -3944,6 +4225,7 @@ "hfg_author": "Lisa Thiel", "skintone": 3, "skintone_base_emoji": "๐Ÿ‘ฉโ€๐Ÿ”ฌ", + "skintone_base_hexcode": "1F469-200D-1F52C", "unicode": 4, "order": 318 }, @@ -3958,6 +4240,7 @@ "hfg_author": "Lisa Thiel", "skintone": 4, "skintone_base_emoji": "๐Ÿ‘ฉโ€๐Ÿ”ฌ", + "skintone_base_hexcode": "1F469-200D-1F52C", "unicode": 4, "order": 319 }, @@ -3972,6 +4255,7 @@ "hfg_author": "Lisa Thiel", "skintone": 5, "skintone_base_emoji": "๐Ÿ‘ฉโ€๐Ÿ”ฌ", + "skintone_base_hexcode": "1F469-200D-1F52C", "unicode": 4, "order": 320 }, @@ -3985,7 +4269,8 @@ "hfg_tags": "coder, developer, inventor, man, software, technologist, tablet, graphs, glasses, smart, clever, coding, code", "hfg_author": "Lisa Thiel", "skintone": "", - "skintone_base_emoji": "", + "skintone_base_emoji": "๐Ÿ‘จโ€๐Ÿ’ป", + "skintone_base_hexcode": "1F468-200D-1F4BB", "unicode": 4, "order": 321 }, @@ -4000,6 +4285,7 @@ "hfg_author": "Lisa Thiel", "skintone": 1, "skintone_base_emoji": "๐Ÿ‘จโ€๐Ÿ’ป", + "skintone_base_hexcode": "1F468-200D-1F4BB", "unicode": 4, "order": 322 }, @@ -4014,6 +4300,7 @@ "hfg_author": "Lisa Thiel", "skintone": 2, "skintone_base_emoji": "๐Ÿ‘จโ€๐Ÿ’ป", + "skintone_base_hexcode": "1F468-200D-1F4BB", "unicode": 4, "order": 323 }, @@ -4028,6 +4315,7 @@ "hfg_author": "Lisa Thiel", "skintone": 3, "skintone_base_emoji": "๐Ÿ‘จโ€๐Ÿ’ป", + "skintone_base_hexcode": "1F468-200D-1F4BB", "unicode": 4, "order": 324 }, @@ -4042,6 +4330,7 @@ "hfg_author": "Lisa Thiel", "skintone": 4, "skintone_base_emoji": "๐Ÿ‘จโ€๐Ÿ’ป", + "skintone_base_hexcode": "1F468-200D-1F4BB", "unicode": 4, "order": 325 }, @@ -4056,6 +4345,7 @@ "hfg_author": "Lisa Thiel", "skintone": 5, "skintone_base_emoji": "๐Ÿ‘จโ€๐Ÿ’ป", + "skintone_base_hexcode": "1F468-200D-1F4BB", "unicode": 4, "order": 326 }, @@ -4069,7 +4359,8 @@ "hfg_tags": "coder, developer, inventor, woman, software, technologist, tablet, graphs, glasses, smart, clever, coding, code", "hfg_author": "Lisa Thiel", "skintone": "", - "skintone_base_emoji": "", + "skintone_base_emoji": "๐Ÿ‘ฉโ€๐Ÿ’ป", + "skintone_base_hexcode": "1F469-200D-1F4BB", "unicode": 4, "order": 327 }, @@ -4084,6 +4375,7 @@ "hfg_author": "Lisa Thiel", "skintone": 1, "skintone_base_emoji": "๐Ÿ‘ฉโ€๐Ÿ’ป", + "skintone_base_hexcode": "1F469-200D-1F4BB", "unicode": 4, "order": 328 }, @@ -4098,6 +4390,7 @@ "hfg_author": "Lisa Thiel", "skintone": 2, "skintone_base_emoji": "๐Ÿ‘ฉโ€๐Ÿ’ป", + "skintone_base_hexcode": "1F469-200D-1F4BB", "unicode": 4, "order": 329 }, @@ -4112,6 +4405,7 @@ "hfg_author": "Lisa Thiel", "skintone": 3, "skintone_base_emoji": "๐Ÿ‘ฉโ€๐Ÿ’ป", + "skintone_base_hexcode": "1F469-200D-1F4BB", "unicode": 4, "order": 330 }, @@ -4126,6 +4420,7 @@ "hfg_author": "Lisa Thiel", "skintone": 4, "skintone_base_emoji": "๐Ÿ‘ฉโ€๐Ÿ’ป", + "skintone_base_hexcode": "1F469-200D-1F4BB", "unicode": 4, "order": 331 }, @@ -4140,6 +4435,7 @@ "hfg_author": "Lisa Thiel", "skintone": 5, "skintone_base_emoji": "๐Ÿ‘ฉโ€๐Ÿ’ป", + "skintone_base_hexcode": "1F469-200D-1F4BB", "unicode": 4, "order": 332 }, @@ -4153,7 +4449,8 @@ "hfg_tags": "actor, entertainer, man, rock, singer, star, microphone, musician", "hfg_author": "Lisa Thiel", "skintone": "", - "skintone_base_emoji": "", + "skintone_base_emoji": "๐Ÿ‘จโ€๐ŸŽค", + "skintone_base_hexcode": "1F468-200D-1F3A4", "unicode": 4, "order": 333 }, @@ -4168,6 +4465,7 @@ "hfg_author": "Lisa Thiel", "skintone": 1, "skintone_base_emoji": "๐Ÿ‘จโ€๐ŸŽค", + "skintone_base_hexcode": "1F468-200D-1F3A4", "unicode": 4, "order": 334 }, @@ -4182,6 +4480,7 @@ "hfg_author": "Lisa Thiel", "skintone": 2, "skintone_base_emoji": "๐Ÿ‘จโ€๐ŸŽค", + "skintone_base_hexcode": "1F468-200D-1F3A4", "unicode": 4, "order": 335 }, @@ -4196,6 +4495,7 @@ "hfg_author": "Lisa Thiel", "skintone": 3, "skintone_base_emoji": "๐Ÿ‘จโ€๐ŸŽค", + "skintone_base_hexcode": "1F468-200D-1F3A4", "unicode": 4, "order": 336 }, @@ -4210,6 +4510,7 @@ "hfg_author": "Lisa Thiel", "skintone": 4, "skintone_base_emoji": "๐Ÿ‘จโ€๐ŸŽค", + "skintone_base_hexcode": "1F468-200D-1F3A4", "unicode": 4, "order": 337 }, @@ -4224,6 +4525,7 @@ "hfg_author": "Lisa Thiel", "skintone": 5, "skintone_base_emoji": "๐Ÿ‘จโ€๐ŸŽค", + "skintone_base_hexcode": "1F468-200D-1F3A4", "unicode": 4, "order": 338 }, @@ -4237,7 +4539,8 @@ "hfg_tags": "actor, entertainer, woman, rock, singer, star, microphone, musician, glamour, glamorous, dress, wavy hair", "hfg_author": "Lisa Thiel", "skintone": "", - "skintone_base_emoji": "", + "skintone_base_emoji": "๐Ÿ‘ฉโ€๐ŸŽค", + "skintone_base_hexcode": "1F469-200D-1F3A4", "unicode": 4, "order": 339 }, @@ -4252,6 +4555,7 @@ "hfg_author": "Lisa Thiel", "skintone": 1, "skintone_base_emoji": "๐Ÿ‘ฉโ€๐ŸŽค", + "skintone_base_hexcode": "1F469-200D-1F3A4", "unicode": 4, "order": 340 }, @@ -4266,6 +4570,7 @@ "hfg_author": "Lisa Thiel", "skintone": 2, "skintone_base_emoji": "๐Ÿ‘ฉโ€๐ŸŽค", + "skintone_base_hexcode": "1F469-200D-1F3A4", "unicode": 4, "order": 341 }, @@ -4280,6 +4585,7 @@ "hfg_author": "Lisa Thiel", "skintone": 3, "skintone_base_emoji": "๐Ÿ‘ฉโ€๐ŸŽค", + "skintone_base_hexcode": "1F469-200D-1F3A4", "unicode": 4, "order": 342 }, @@ -4294,6 +4600,7 @@ "hfg_author": "Lisa Thiel", "skintone": 4, "skintone_base_emoji": "๐Ÿ‘ฉโ€๐ŸŽค", + "skintone_base_hexcode": "1F469-200D-1F3A4", "unicode": 4, "order": 343 }, @@ -4308,6 +4615,7 @@ "hfg_author": "Lisa Thiel", "skintone": 5, "skintone_base_emoji": "๐Ÿ‘ฉโ€๐ŸŽค", + "skintone_base_hexcode": "1F469-200D-1F3A4", "unicode": 4, "order": 344 }, @@ -4321,7 +4629,8 @@ "hfg_tags": "artist, man, palette, brush, beret, french hat, colors, painter, art, drawing, painting, illustrator, illustrating, creative, creativity", "hfg_author": "Lisa Thiel", "skintone": "", - "skintone_base_emoji": "", + "skintone_base_emoji": "๐Ÿ‘จโ€๐ŸŽจ", + "skintone_base_hexcode": "1F468-200D-1F3A8", "unicode": 4, "order": 345 }, @@ -4336,6 +4645,7 @@ "hfg_author": "Lisa Thiel", "skintone": 1, "skintone_base_emoji": "๐Ÿ‘จโ€๐ŸŽจ", + "skintone_base_hexcode": "1F468-200D-1F3A8", "unicode": 4, "order": 346 }, @@ -4350,6 +4660,7 @@ "hfg_author": "Lisa Thiel", "skintone": 2, "skintone_base_emoji": "๐Ÿ‘จโ€๐ŸŽจ", + "skintone_base_hexcode": "1F468-200D-1F3A8", "unicode": 4, "order": 347 }, @@ -4364,6 +4675,7 @@ "hfg_author": "Lisa Thiel", "skintone": 3, "skintone_base_emoji": "๐Ÿ‘จโ€๐ŸŽจ", + "skintone_base_hexcode": "1F468-200D-1F3A8", "unicode": 4, "order": 348 }, @@ -4378,6 +4690,7 @@ "hfg_author": "Lisa Thiel", "skintone": 4, "skintone_base_emoji": "๐Ÿ‘จโ€๐ŸŽจ", + "skintone_base_hexcode": "1F468-200D-1F3A8", "unicode": 4, "order": 349 }, @@ -4392,6 +4705,7 @@ "hfg_author": "Lisa Thiel", "skintone": 5, "skintone_base_emoji": "๐Ÿ‘จโ€๐ŸŽจ", + "skintone_base_hexcode": "1F468-200D-1F3A8", "unicode": 4, "order": 350 }, @@ -4405,7 +4719,8 @@ "hfg_tags": "artist, woman, palette, brush, beret, french hat, colors, painter, art, drawing, painting, illustrator, illustrating, creative, creativity", "hfg_author": "Lisa Thiel", "skintone": "", - "skintone_base_emoji": "", + "skintone_base_emoji": "๐Ÿ‘ฉโ€๐ŸŽจ", + "skintone_base_hexcode": "1F469-200D-1F3A8", "unicode": 4, "order": 351 }, @@ -4420,6 +4735,7 @@ "hfg_author": "Lisa Thiel", "skintone": 1, "skintone_base_emoji": "๐Ÿ‘ฉโ€๐ŸŽจ", + "skintone_base_hexcode": "1F469-200D-1F3A8", "unicode": 4, "order": 352 }, @@ -4434,6 +4750,7 @@ "hfg_author": "Lisa Thiel", "skintone": 2, "skintone_base_emoji": "๐Ÿ‘ฉโ€๐ŸŽจ", + "skintone_base_hexcode": "1F469-200D-1F3A8", "unicode": 4, "order": 353 }, @@ -4448,6 +4765,7 @@ "hfg_author": "Lisa Thiel", "skintone": 3, "skintone_base_emoji": "๐Ÿ‘ฉโ€๐ŸŽจ", + "skintone_base_hexcode": "1F469-200D-1F3A8", "unicode": 4, "order": 354 }, @@ -4462,6 +4780,7 @@ "hfg_author": "Lisa Thiel", "skintone": 4, "skintone_base_emoji": "๐Ÿ‘ฉโ€๐ŸŽจ", + "skintone_base_hexcode": "1F469-200D-1F3A8", "unicode": 4, "order": 355 }, @@ -4476,6 +4795,7 @@ "hfg_author": "Lisa Thiel", "skintone": 5, "skintone_base_emoji": "๐Ÿ‘ฉโ€๐ŸŽจ", + "skintone_base_hexcode": "1F469-200D-1F3A8", "unicode": 4, "order": 356 }, @@ -4489,7 +4809,8 @@ "hfg_tags": "man, pilot, plane, flying, control stick", "hfg_author": "Lisa Thiel", "skintone": "", - "skintone_base_emoji": "", + "skintone_base_emoji": "๐Ÿ‘จโ€โœˆ๏ธ", + "skintone_base_hexcode": "1F468-200D-2708-FE0F", "unicode": 4, "order": 357 }, @@ -4504,6 +4825,7 @@ "hfg_author": "Lisa Thiel", "skintone": 1, "skintone_base_emoji": "๐Ÿ‘จโ€โœˆ๏ธ", + "skintone_base_hexcode": "1F468-200D-2708-FE0F", "unicode": 4, "order": 359 }, @@ -4518,6 +4840,7 @@ "hfg_author": "Lisa Thiel", "skintone": 2, "skintone_base_emoji": "๐Ÿ‘จโ€โœˆ๏ธ", + "skintone_base_hexcode": "1F468-200D-2708-FE0F", "unicode": 4, "order": 361 }, @@ -4532,6 +4855,7 @@ "hfg_author": "Lisa Thiel", "skintone": 3, "skintone_base_emoji": "๐Ÿ‘จโ€โœˆ๏ธ", + "skintone_base_hexcode": "1F468-200D-2708-FE0F", "unicode": 4, "order": 363 }, @@ -4546,6 +4870,7 @@ "hfg_author": "Lisa Thiel", "skintone": 4, "skintone_base_emoji": "๐Ÿ‘จโ€โœˆ๏ธ", + "skintone_base_hexcode": "1F468-200D-2708-FE0F", "unicode": 4, "order": 365 }, @@ -4560,6 +4885,7 @@ "hfg_author": "Lisa Thiel", "skintone": 5, "skintone_base_emoji": "๐Ÿ‘จโ€โœˆ๏ธ", + "skintone_base_hexcode": "1F468-200D-2708-FE0F", "unicode": 4, "order": 367 }, @@ -4573,7 +4899,8 @@ "hfg_tags": "woman, pilot, plane, flying, control stick", "hfg_author": "Lisa Thiel", "skintone": "", - "skintone_base_emoji": "", + "skintone_base_emoji": "๐Ÿ‘ฉโ€โœˆ๏ธ", + "skintone_base_hexcode": "1F469-200D-2708-FE0F", "unicode": 4, "order": 369 }, @@ -4588,6 +4915,7 @@ "hfg_author": "Lisa Thiel", "skintone": 1, "skintone_base_emoji": "๐Ÿ‘ฉโ€โœˆ๏ธ", + "skintone_base_hexcode": "1F469-200D-2708-FE0F", "unicode": 4, "order": 371 }, @@ -4602,6 +4930,7 @@ "hfg_author": "Lisa Thiel", "skintone": 2, "skintone_base_emoji": "๐Ÿ‘ฉโ€โœˆ๏ธ", + "skintone_base_hexcode": "1F469-200D-2708-FE0F", "unicode": 4, "order": 373 }, @@ -4616,6 +4945,7 @@ "hfg_author": "Lisa Thiel", "skintone": 3, "skintone_base_emoji": "๐Ÿ‘ฉโ€โœˆ๏ธ", + "skintone_base_hexcode": "1F469-200D-2708-FE0F", "unicode": 4, "order": 375 }, @@ -4630,6 +4960,7 @@ "hfg_author": "Lisa Thiel", "skintone": 4, "skintone_base_emoji": "๐Ÿ‘ฉโ€โœˆ๏ธ", + "skintone_base_hexcode": "1F469-200D-2708-FE0F", "unicode": 4, "order": 377 }, @@ -4644,6 +4975,7 @@ "hfg_author": "Lisa Thiel", "skintone": 5, "skintone_base_emoji": "๐Ÿ‘ฉโ€โœˆ๏ธ", + "skintone_base_hexcode": "1F469-200D-2708-FE0F", "unicode": 4, "order": 379 }, @@ -4657,7 +4989,8 @@ "hfg_tags": "astronaut, man, rocket, spacesuit, space, universe, spaceship", "hfg_author": "Lisa Thiel", "skintone": "", - "skintone_base_emoji": "", + "skintone_base_emoji": "๐Ÿ‘จโ€๐Ÿš€", + "skintone_base_hexcode": "1F468-200D-1F680", "unicode": 4, "order": 381 }, @@ -4672,6 +5005,7 @@ "hfg_author": "Lisa Thiel", "skintone": 1, "skintone_base_emoji": "๐Ÿ‘จโ€๐Ÿš€", + "skintone_base_hexcode": "1F468-200D-1F680", "unicode": 4, "order": 382 }, @@ -4686,6 +5020,7 @@ "hfg_author": "Lisa Thiel", "skintone": 2, "skintone_base_emoji": "๐Ÿ‘จโ€๐Ÿš€", + "skintone_base_hexcode": "1F468-200D-1F680", "unicode": 4, "order": 383 }, @@ -4700,6 +5035,7 @@ "hfg_author": "Lisa Thiel", "skintone": 3, "skintone_base_emoji": "๐Ÿ‘จโ€๐Ÿš€", + "skintone_base_hexcode": "1F468-200D-1F680", "unicode": 4, "order": 384 }, @@ -4714,6 +5050,7 @@ "hfg_author": "Lisa Thiel", "skintone": 4, "skintone_base_emoji": "๐Ÿ‘จโ€๐Ÿš€", + "skintone_base_hexcode": "1F468-200D-1F680", "unicode": 4, "order": 385 }, @@ -4728,6 +5065,7 @@ "hfg_author": "Lisa Thiel", "skintone": 5, "skintone_base_emoji": "๐Ÿ‘จโ€๐Ÿš€", + "skintone_base_hexcode": "1F468-200D-1F680", "unicode": 4, "order": 386 }, @@ -4741,7 +5079,8 @@ "hfg_tags": "astronaut, woman, rocket, spacesuit, space, universe, spaceship", "hfg_author": "Lisa Thiel", "skintone": "", - "skintone_base_emoji": "", + "skintone_base_emoji": "๐Ÿ‘ฉโ€๐Ÿš€", + "skintone_base_hexcode": "1F469-200D-1F680", "unicode": 4, "order": 387 }, @@ -4756,6 +5095,7 @@ "hfg_author": "Lisa Thiel", "skintone": 1, "skintone_base_emoji": "๐Ÿ‘ฉโ€๐Ÿš€", + "skintone_base_hexcode": "1F469-200D-1F680", "unicode": 4, "order": 388 }, @@ -4770,6 +5110,7 @@ "hfg_author": "Lisa Thiel", "skintone": 2, "skintone_base_emoji": "๐Ÿ‘ฉโ€๐Ÿš€", + "skintone_base_hexcode": "1F469-200D-1F680", "unicode": 4, "order": 389 }, @@ -4784,6 +5125,7 @@ "hfg_author": "Lisa Thiel", "skintone": 3, "skintone_base_emoji": "๐Ÿ‘ฉโ€๐Ÿš€", + "skintone_base_hexcode": "1F469-200D-1F680", "unicode": 4, "order": 390 }, @@ -4798,6 +5140,7 @@ "hfg_author": "Lisa Thiel", "skintone": 4, "skintone_base_emoji": "๐Ÿ‘ฉโ€๐Ÿš€", + "skintone_base_hexcode": "1F469-200D-1F680", "unicode": 4, "order": 391 }, @@ -4812,6 +5155,7 @@ "hfg_author": "Lisa Thiel", "skintone": 5, "skintone_base_emoji": "๐Ÿ‘ฉโ€๐Ÿš€", + "skintone_base_hexcode": "1F469-200D-1F680", "unicode": 4, "order": 392 }, @@ -4825,7 +5169,8 @@ "hfg_tags": "firefighter, firetruck, man, water hose, save, rescue, red helmet", "hfg_author": "Lisa Thiel", "skintone": "", - "skintone_base_emoji": "", + "skintone_base_emoji": "๐Ÿ‘จโ€๐Ÿš’", + "skintone_base_hexcode": "1F468-200D-1F692", "unicode": 4, "order": 393 }, @@ -4840,6 +5185,7 @@ "hfg_author": "Lisa Thiel", "skintone": 1, "skintone_base_emoji": "๐Ÿ‘จโ€๐Ÿš’", + "skintone_base_hexcode": "1F468-200D-1F692", "unicode": 4, "order": 394 }, @@ -4854,6 +5200,7 @@ "hfg_author": "Lisa Thiel", "skintone": 2, "skintone_base_emoji": "๐Ÿ‘จโ€๐Ÿš’", + "skintone_base_hexcode": "1F468-200D-1F692", "unicode": 4, "order": 395 }, @@ -4868,6 +5215,7 @@ "hfg_author": "Lisa Thiel", "skintone": 3, "skintone_base_emoji": "๐Ÿ‘จโ€๐Ÿš’", + "skintone_base_hexcode": "1F468-200D-1F692", "unicode": 4, "order": 396 }, @@ -4882,6 +5230,7 @@ "hfg_author": "Lisa Thiel", "skintone": 4, "skintone_base_emoji": "๐Ÿ‘จโ€๐Ÿš’", + "skintone_base_hexcode": "1F468-200D-1F692", "unicode": 4, "order": 397 }, @@ -4896,6 +5245,7 @@ "hfg_author": "Lisa Thiel", "skintone": 5, "skintone_base_emoji": "๐Ÿ‘จโ€๐Ÿš’", + "skintone_base_hexcode": "1F468-200D-1F692", "unicode": 4, "order": 398 }, @@ -4909,7 +5259,8 @@ "hfg_tags": "firefighter, firetruck, woman, water hose, save, rescue, red helmet", "hfg_author": "Lisa Thiel", "skintone": "", - "skintone_base_emoji": "", + "skintone_base_emoji": "๐Ÿ‘ฉโ€๐Ÿš’", + "skintone_base_hexcode": "1F469-200D-1F692", "unicode": 4, "order": 399 }, @@ -4924,6 +5275,7 @@ "hfg_author": "Lisa Thiel", "skintone": 1, "skintone_base_emoji": "๐Ÿ‘ฉโ€๐Ÿš’", + "skintone_base_hexcode": "1F469-200D-1F692", "unicode": 4, "order": 400 }, @@ -4938,6 +5290,7 @@ "hfg_author": "Lisa Thiel", "skintone": 2, "skintone_base_emoji": "๐Ÿ‘ฉโ€๐Ÿš’", + "skintone_base_hexcode": "1F469-200D-1F692", "unicode": 4, "order": 401 }, @@ -4952,6 +5305,7 @@ "hfg_author": "Lisa Thiel", "skintone": 3, "skintone_base_emoji": "๐Ÿ‘ฉโ€๐Ÿš’", + "skintone_base_hexcode": "1F469-200D-1F692", "unicode": 4, "order": 402 }, @@ -4966,6 +5320,7 @@ "hfg_author": "Lisa Thiel", "skintone": 4, "skintone_base_emoji": "๐Ÿ‘ฉโ€๐Ÿš’", + "skintone_base_hexcode": "1F469-200D-1F692", "unicode": 4, "order": 403 }, @@ -4980,6 +5335,7 @@ "hfg_author": "Lisa Thiel", "skintone": 5, "skintone_base_emoji": "๐Ÿ‘ฉโ€๐Ÿš’", + "skintone_base_hexcode": "1F469-200D-1F692", "unicode": 4, "order": 404 }, @@ -4993,7 +5349,8 @@ "hfg_tags": "cop, officer, police, law, justice, blue, badge", "hfg_author": "Lisa Thiel", "skintone": "", - "skintone_base_emoji": "", + "skintone_base_emoji": "๐Ÿ‘ฎ", + "skintone_base_hexcode": "1F46E", "unicode": 1, "order": 405 }, @@ -5008,6 +5365,7 @@ "hfg_author": "Lisa Thiel", "skintone": 1, "skintone_base_emoji": "๐Ÿ‘ฎ", + "skintone_base_hexcode": "1F46E", "unicode": 2, "order": 406 }, @@ -5022,6 +5380,7 @@ "hfg_author": "Lisa Thiel", "skintone": 2, "skintone_base_emoji": "๐Ÿ‘ฎ", + "skintone_base_hexcode": "1F46E", "unicode": 2, "order": 407 }, @@ -5036,6 +5395,7 @@ "hfg_author": "Lisa Thiel", "skintone": 3, "skintone_base_emoji": "๐Ÿ‘ฎ", + "skintone_base_hexcode": "1F46E", "unicode": 2, "order": 408 }, @@ -5050,6 +5410,7 @@ "hfg_author": "Lisa Thiel", "skintone": 4, "skintone_base_emoji": "๐Ÿ‘ฎ", + "skintone_base_hexcode": "1F46E", "unicode": 2, "order": 409 }, @@ -5064,6 +5425,7 @@ "hfg_author": "Lisa Thiel", "skintone": 5, "skintone_base_emoji": "๐Ÿ‘ฎ", + "skintone_base_hexcode": "1F46E", "unicode": 2, "order": 410 }, @@ -5077,7 +5439,8 @@ "hfg_tags": "sleuth, spy, sherlock, investigator, magnifier, magnifying glass, cloak, coat", "hfg_author": "Lisa Thiel", "skintone": "", - "skintone_base_emoji": "", + "skintone_base_emoji": "๐Ÿ•ต๏ธ", + "skintone_base_hexcode": "1F575", "unicode": 1, "order": 436 }, @@ -5092,6 +5455,7 @@ "hfg_author": "Lisa Thiel", "skintone": 1, "skintone_base_emoji": "๐Ÿ•ต๏ธ", + "skintone_base_hexcode": "1F575", "unicode": 2, "order": 437 }, @@ -5106,6 +5470,7 @@ "hfg_author": "Lisa Thiel", "skintone": 2, "skintone_base_emoji": "๐Ÿ•ต๏ธ", + "skintone_base_hexcode": "1F575", "unicode": 2, "order": 438 }, @@ -5120,6 +5485,7 @@ "hfg_author": "Lisa Thiel", "skintone": 3, "skintone_base_emoji": "๐Ÿ•ต๏ธ", + "skintone_base_hexcode": "1F575", "unicode": 2, "order": 439 }, @@ -5134,6 +5500,7 @@ "hfg_author": "Lisa Thiel", "skintone": 4, "skintone_base_emoji": "๐Ÿ•ต๏ธ", + "skintone_base_hexcode": "1F575", "unicode": 2, "order": 440 }, @@ -5148,6 +5515,7 @@ "hfg_author": "Lisa Thiel", "skintone": 5, "skintone_base_emoji": "๐Ÿ•ต๏ธ", + "skintone_base_hexcode": "1F575", "unicode": 2, "order": 441 }, @@ -5161,7 +5529,8 @@ "hfg_tags": "guard, britain, great britain, queen, england, london, royal guard, furry hat guard, protection", "hfg_author": "Lisa Thiel", "skintone": "", - "skintone_base_emoji": "", + "skintone_base_emoji": "๐Ÿ’‚", + "skintone_base_hexcode": "1F482", "unicode": 1, "order": 470 }, @@ -5176,6 +5545,7 @@ "hfg_author": "Lisa Thiel", "skintone": 1, "skintone_base_emoji": "๐Ÿ’‚", + "skintone_base_hexcode": "1F482", "unicode": 2, "order": 471 }, @@ -5190,6 +5560,7 @@ "hfg_author": "Lisa Thiel", "skintone": 2, "skintone_base_emoji": "๐Ÿ’‚", + "skintone_base_hexcode": "1F482", "unicode": 2, "order": 472 }, @@ -5204,6 +5575,7 @@ "hfg_author": "Lisa Thiel", "skintone": 3, "skintone_base_emoji": "๐Ÿ’‚", + "skintone_base_hexcode": "1F482", "unicode": 2, "order": 473 }, @@ -5218,6 +5590,7 @@ "hfg_author": "Lisa Thiel", "skintone": 4, "skintone_base_emoji": "๐Ÿ’‚", + "skintone_base_hexcode": "1F482", "unicode": 2, "order": 474 }, @@ -5232,6 +5605,7 @@ "hfg_author": "Lisa Thiel", "skintone": 5, "skintone_base_emoji": "๐Ÿ’‚", + "skintone_base_hexcode": "1F482", "unicode": 2, "order": 475 }, @@ -5245,7 +5619,8 @@ "hfg_tags": "construction, hat, worker, striped west, helmet", "hfg_author": "Lisa Thiel", "skintone": "", - "skintone_base_emoji": "", + "skintone_base_emoji": "๐Ÿ‘ท", + "skintone_base_hexcode": "1F477", "unicode": 1, "order": 500 }, @@ -5260,6 +5635,7 @@ "hfg_author": "Lisa Thiel", "skintone": 1, "skintone_base_emoji": "๐Ÿ‘ท", + "skintone_base_hexcode": "1F477", "unicode": 2, "order": 501 }, @@ -5274,6 +5650,7 @@ "hfg_author": "Lisa Thiel", "skintone": 2, "skintone_base_emoji": "๐Ÿ‘ท", + "skintone_base_hexcode": "1F477", "unicode": 2, "order": 502 }, @@ -5288,6 +5665,7 @@ "hfg_author": "Lisa Thiel", "skintone": 3, "skintone_base_emoji": "๐Ÿ‘ท", + "skintone_base_hexcode": "1F477", "unicode": 2, "order": 503 }, @@ -5302,6 +5680,7 @@ "hfg_author": "Lisa Thiel", "skintone": 4, "skintone_base_emoji": "๐Ÿ‘ท", + "skintone_base_hexcode": "1F477", "unicode": 2, "order": 504 }, @@ -5316,6 +5695,7 @@ "hfg_author": "Lisa Thiel", "skintone": 5, "skintone_base_emoji": "๐Ÿ‘ท", + "skintone_base_hexcode": "1F477", "unicode": 2, "order": 505 }, @@ -5329,7 +5709,8 @@ "hfg_tags": "prince, charming, crown, fairy tale, fantasy, pink", "hfg_author": "Lisa Thiel", "skintone": "", - "skintone_base_emoji": "", + "skintone_base_emoji": "๐Ÿคด", + "skintone_base_hexcode": "1F934", "unicode": 3, "order": 530 }, @@ -5344,6 +5725,7 @@ "hfg_author": "Lisa Thiel", "skintone": 1, "skintone_base_emoji": "๐Ÿคด", + "skintone_base_hexcode": "1F934", "unicode": 3, "order": 531 }, @@ -5358,6 +5740,7 @@ "hfg_author": "Lisa Thiel", "skintone": 2, "skintone_base_emoji": "๐Ÿคด", + "skintone_base_hexcode": "1F934", "unicode": 3, "order": 532 }, @@ -5372,6 +5755,7 @@ "hfg_author": "Lisa Thiel", "skintone": 3, "skintone_base_emoji": "๐Ÿคด", + "skintone_base_hexcode": "1F934", "unicode": 3, "order": 533 }, @@ -5386,6 +5770,7 @@ "hfg_author": "Lisa Thiel", "skintone": 4, "skintone_base_emoji": "๐Ÿคด", + "skintone_base_hexcode": "1F934", "unicode": 3, "order": 534 }, @@ -5400,6 +5785,7 @@ "hfg_author": "Lisa Thiel", "skintone": 5, "skintone_base_emoji": "๐Ÿคด", + "skintone_base_hexcode": "1F934", "unicode": 3, "order": 535 }, @@ -5413,7 +5799,8 @@ "hfg_tags": "fairy tale, fantasy, crown, pink dress, princess crown", "hfg_author": "Lisa Thiel", "skintone": "", - "skintone_base_emoji": "", + "skintone_base_emoji": "๐Ÿ‘ธ", + "skintone_base_hexcode": "1F478", "unicode": 1, "order": 536 }, @@ -5428,6 +5815,7 @@ "hfg_author": "Lisa Thiel", "skintone": 1, "skintone_base_emoji": "๐Ÿ‘ธ", + "skintone_base_hexcode": "1F478", "unicode": 2, "order": 537 }, @@ -5442,6 +5830,7 @@ "hfg_author": "Lisa Thiel", "skintone": 2, "skintone_base_emoji": "๐Ÿ‘ธ", + "skintone_base_hexcode": "1F478", "unicode": 2, "order": 538 }, @@ -5456,6 +5845,7 @@ "hfg_author": "Lisa Thiel", "skintone": 3, "skintone_base_emoji": "๐Ÿ‘ธ", + "skintone_base_hexcode": "1F478", "unicode": 2, "order": 539 }, @@ -5470,6 +5860,7 @@ "hfg_author": "Lisa Thiel", "skintone": 4, "skintone_base_emoji": "๐Ÿ‘ธ", + "skintone_base_hexcode": "1F478", "unicode": 2, "order": 540 }, @@ -5484,6 +5875,7 @@ "hfg_author": "Lisa Thiel", "skintone": 5, "skintone_base_emoji": "๐Ÿ‘ธ", + "skintone_base_hexcode": "1F478", "unicode": 2, "order": 541 }, @@ -5497,7 +5889,8 @@ "hfg_tags": "man, beard, turban, religion", "hfg_author": "Lisa Thiel", "skintone": "", - "skintone_base_emoji": "", + "skintone_base_emoji": "๐Ÿ‘ณ", + "skintone_base_hexcode": "1F473", "unicode": 1, "order": 542 }, @@ -5512,6 +5905,7 @@ "hfg_author": "Lisa Thiel", "skintone": 1, "skintone_base_emoji": "๐Ÿ‘ณ", + "skintone_base_hexcode": "1F473", "unicode": 2, "order": 543 }, @@ -5526,6 +5920,7 @@ "hfg_author": "Lisa Thiel", "skintone": 2, "skintone_base_emoji": "๐Ÿ‘ณ", + "skintone_base_hexcode": "1F473", "unicode": 2, "order": 544 }, @@ -5540,6 +5935,7 @@ "hfg_author": "Lisa Thiel", "skintone": 3, "skintone_base_emoji": "๐Ÿ‘ณ", + "skintone_base_hexcode": "1F473", "unicode": 2, "order": 545 }, @@ -5554,6 +5950,7 @@ "hfg_author": "Lisa Thiel", "skintone": 4, "skintone_base_emoji": "๐Ÿ‘ณ", + "skintone_base_hexcode": "1F473", "unicode": 2, "order": 546 }, @@ -5568,6 +5965,7 @@ "hfg_author": "Lisa Thiel", "skintone": 5, "skintone_base_emoji": "๐Ÿ‘ณ", + "skintone_base_hexcode": "1F473", "unicode": 2, "order": 547 }, @@ -5581,7 +5979,8 @@ "hfg_tags": "headscarf, hijab, mantilla, tichel, religion, religous, muslim", "hfg_author": "Lisa Thiel", "skintone": "", - "skintone_base_emoji": "", + "skintone_base_emoji": "๐Ÿง•", + "skintone_base_hexcode": "1F9D5", "unicode": 5, "order": 578 }, @@ -5596,6 +5995,7 @@ "hfg_author": "Lisa Thiel", "skintone": 1, "skintone_base_emoji": "๐Ÿง•", + "skintone_base_hexcode": "1F9D5", "unicode": 5, "order": 579 }, @@ -5610,6 +6010,7 @@ "hfg_author": "Lisa Thiel", "skintone": 2, "skintone_base_emoji": "๐Ÿง•", + "skintone_base_hexcode": "1F9D5", "unicode": 5, "order": 580 }, @@ -5624,6 +6025,7 @@ "hfg_author": "Lisa Thiel", "skintone": 3, "skintone_base_emoji": "๐Ÿง•", + "skintone_base_hexcode": "1F9D5", "unicode": 5, "order": 581 }, @@ -5638,6 +6040,7 @@ "hfg_author": "Lisa Thiel", "skintone": 4, "skintone_base_emoji": "๐Ÿง•", + "skintone_base_hexcode": "1F9D5", "unicode": 5, "order": 582 }, @@ -5652,6 +6055,7 @@ "hfg_author": "Lisa Thiel", "skintone": 5, "skintone_base_emoji": "๐Ÿง•", + "skintone_base_hexcode": "1F9D5", "unicode": 5, "order": 583 }, @@ -5665,7 +6069,8 @@ "hfg_tags": "beard, man, facial hair, man, manly", "hfg_author": "Lisa Thiel", "skintone": "", - "skintone_base_emoji": "", + "skintone_base_emoji": "๐Ÿง”", + "skintone_base_hexcode": "1F9D4", "unicode": 5, "order": 584 }, @@ -5680,6 +6085,7 @@ "hfg_author": "Lisa Thiel", "skintone": 1, "skintone_base_emoji": "๐Ÿง”", + "skintone_base_hexcode": "1F9D4", "unicode": 5, "order": 585 }, @@ -5694,6 +6100,7 @@ "hfg_author": "Lisa Thiel", "skintone": 2, "skintone_base_emoji": "๐Ÿง”", + "skintone_base_hexcode": "1F9D4", "unicode": 5, "order": 586 }, @@ -5708,6 +6115,7 @@ "hfg_author": "Lisa Thiel", "skintone": 3, "skintone_base_emoji": "๐Ÿง”", + "skintone_base_hexcode": "1F9D4", "unicode": 5, "order": 587 }, @@ -5722,6 +6130,7 @@ "hfg_author": "Lisa Thiel", "skintone": 4, "skintone_base_emoji": "๐Ÿง”", + "skintone_base_hexcode": "1F9D4", "unicode": 5, "order": 588 }, @@ -5736,6 +6145,7 @@ "hfg_author": "Lisa Thiel", "skintone": 5, "skintone_base_emoji": "๐Ÿง”", + "skintone_base_hexcode": "1F9D4", "unicode": 5, "order": 589 }, @@ -5749,7 +6159,8 @@ "hfg_tags": "bride, veil, wedding, woman, female, marriage, married, love, wedding dress", "hfg_author": "Lisa Thiel", "skintone": "", - "skintone_base_emoji": "", + "skintone_base_emoji": "๐Ÿ‘ฐ", + "skintone_base_hexcode": "1F470", "unicode": 1, "order": 674 }, @@ -5764,6 +6175,7 @@ "hfg_author": "Lisa Thiel", "skintone": 1, "skintone_base_emoji": "๐Ÿ‘ฐ", + "skintone_base_hexcode": "1F470", "unicode": 2, "order": 675 }, @@ -5778,6 +6190,7 @@ "hfg_author": "Lisa Thiel", "skintone": 2, "skintone_base_emoji": "๐Ÿ‘ฐ", + "skintone_base_hexcode": "1F470", "unicode": 2, "order": 676 }, @@ -5792,6 +6205,7 @@ "hfg_author": "Lisa Thiel", "skintone": 3, "skintone_base_emoji": "๐Ÿ‘ฐ", + "skintone_base_hexcode": "1F470", "unicode": 2, "order": 677 }, @@ -5806,6 +6220,7 @@ "hfg_author": "Lisa Thiel", "skintone": 4, "skintone_base_emoji": "๐Ÿ‘ฐ", + "skintone_base_hexcode": "1F470", "unicode": 2, "order": 678 }, @@ -5820,6 +6235,7 @@ "hfg_author": "Lisa Thiel", "skintone": 5, "skintone_base_emoji": "๐Ÿ‘ฐ", + "skintone_base_hexcode": "1F470", "unicode": 2, "order": 679 }, @@ -5833,7 +6249,8 @@ "hfg_tags": "pregnant, woman, child, birth, love, mother, motherhood, trust, baby", "hfg_author": "Lisa Thiel", "skintone": "", - "skintone_base_emoji": "", + "skintone_base_emoji": "๐Ÿคฐ", + "skintone_base_hexcode": "1F930", "unicode": 3, "order": 680 }, @@ -5848,6 +6265,7 @@ "hfg_author": "Lisa Thiel", "skintone": 1, "skintone_base_emoji": "๐Ÿคฐ", + "skintone_base_hexcode": "1F930", "unicode": 3, "order": 681 }, @@ -5862,6 +6280,7 @@ "hfg_author": "Lisa Thiel", "skintone": 2, "skintone_base_emoji": "๐Ÿคฐ", + "skintone_base_hexcode": "1F930", "unicode": 3, "order": 682 }, @@ -5876,6 +6295,7 @@ "hfg_author": "Lisa Thiel", "skintone": 3, "skintone_base_emoji": "๐Ÿคฐ", + "skintone_base_hexcode": "1F930", "unicode": 3, "order": 683 }, @@ -5890,6 +6310,7 @@ "hfg_author": "Lisa Thiel", "skintone": 4, "skintone_base_emoji": "๐Ÿคฐ", + "skintone_base_hexcode": "1F930", "unicode": 3, "order": 684 }, @@ -5904,6 +6325,7 @@ "hfg_author": "Lisa Thiel", "skintone": 5, "skintone_base_emoji": "๐Ÿคฐ", + "skintone_base_hexcode": "1F930", "unicode": 3, "order": 685 }, @@ -5917,7 +6339,8 @@ "hfg_tags": "baby, breast, nursing, love, trust, mother, motherhood", "hfg_author": "Lisa Thiel", "skintone": "", - "skintone_base_emoji": "", + "skintone_base_emoji": "๐Ÿคฑ", + "skintone_base_hexcode": "1F931", "unicode": 5, "order": 686 }, @@ -5932,6 +6355,7 @@ "hfg_author": "Lisa Thiel", "skintone": 1, "skintone_base_emoji": "๐Ÿคฑ", + "skintone_base_hexcode": "1F931", "unicode": 5, "order": 687 }, @@ -5946,6 +6370,7 @@ "hfg_author": "Lisa Thiel", "skintone": 2, "skintone_base_emoji": "๐Ÿคฑ", + "skintone_base_hexcode": "1F931", "unicode": 5, "order": 688 }, @@ -5960,6 +6385,7 @@ "hfg_author": "Lisa Thiel", "skintone": 3, "skintone_base_emoji": "๐Ÿคฑ", + "skintone_base_hexcode": "1F931", "unicode": 5, "order": 689 }, @@ -5974,6 +6400,7 @@ "hfg_author": "Lisa Thiel", "skintone": 4, "skintone_base_emoji": "๐Ÿคฑ", + "skintone_base_hexcode": "1F931", "unicode": 5, "order": 690 }, @@ -5988,6 +6415,7 @@ "hfg_author": "Lisa Thiel", "skintone": 5, "skintone_base_emoji": "๐Ÿคฑ", + "skintone_base_hexcode": "1F931", "unicode": 5, "order": 691 }, @@ -6001,7 +6429,8 @@ "hfg_tags": "christmas, holiday, jolly, happy, saint nicholas, santa claus, xmas, celebration", "hfg_author": "Lisa Thiel", "skintone": "", - "skintone_base_emoji": "", + "skintone_base_emoji": "๐ŸŽ…", + "skintone_base_hexcode": "1F385", "unicode": 1, "order": 698 }, @@ -6016,6 +6445,7 @@ "hfg_author": "Lisa Thiel", "skintone": 1, "skintone_base_emoji": "๐ŸŽ…", + "skintone_base_hexcode": "1F385", "unicode": 2, "order": 699 }, @@ -6030,6 +6460,7 @@ "hfg_author": "Lisa Thiel", "skintone": 2, "skintone_base_emoji": "๐ŸŽ…", + "skintone_base_hexcode": "1F385", "unicode": 2, "order": 700 }, @@ -6044,6 +6475,7 @@ "hfg_author": "Lisa Thiel", "skintone": 3, "skintone_base_emoji": "๐ŸŽ…", + "skintone_base_hexcode": "1F385", "unicode": 2, "order": 701 }, @@ -6058,6 +6490,7 @@ "hfg_author": "Lisa Thiel", "skintone": 4, "skintone_base_emoji": "๐ŸŽ…", + "skintone_base_hexcode": "1F385", "unicode": 2, "order": 702 }, @@ -6072,6 +6505,7 @@ "hfg_author": "Lisa Thiel", "skintone": 5, "skintone_base_emoji": "๐ŸŽ…", + "skintone_base_hexcode": "1F385", "unicode": 2, "order": 703 }, @@ -6085,7 +6519,8 @@ "hfg_tags": "christmas, holiday, jolly, happy, mrs. clause, xmas, celebration", "hfg_author": "Lisa Thiel", "skintone": "", - "skintone_base_emoji": "", + "skintone_base_emoji": "๐Ÿคถ", + "skintone_base_hexcode": "1F936", "unicode": 3, "order": 704 }, @@ -6100,6 +6535,7 @@ "hfg_author": "Lisa Thiel", "skintone": 1, "skintone_base_emoji": "๐Ÿคถ", + "skintone_base_hexcode": "1F936", "unicode": 3, "order": 705 }, @@ -6114,6 +6550,7 @@ "hfg_author": "Lisa Thiel", "skintone": 2, "skintone_base_emoji": "๐Ÿคถ", + "skintone_base_hexcode": "1F936", "unicode": 3, "order": 706 }, @@ -6128,6 +6565,7 @@ "hfg_author": "Lisa Thiel", "skintone": 3, "skintone_base_emoji": "๐Ÿคถ", + "skintone_base_hexcode": "1F936", "unicode": 3, "order": 707 }, @@ -6142,6 +6580,7 @@ "hfg_author": "Lisa Thiel", "skintone": 4, "skintone_base_emoji": "๐Ÿคถ", + "skintone_base_hexcode": "1F936", "unicode": 3, "order": 708 }, @@ -6156,6 +6595,7 @@ "hfg_author": "Lisa Thiel", "skintone": 5, "skintone_base_emoji": "๐Ÿคถ", + "skintone_base_hexcode": "1F936", "unicode": 3, "order": 709 }, @@ -6169,7 +6609,8 @@ "hfg_tags": "sorcerer, sorceress, witch, wizard, magician, wand, sage", "hfg_author": "Lisa Thiel", "skintone": "", - "skintone_base_emoji": "", + "skintone_base_emoji": "๐Ÿง™", + "skintone_base_hexcode": "1F9D9", "unicode": 5, "order": 770 }, @@ -6184,6 +6625,7 @@ "hfg_author": "Lisa Thiel", "skintone": 1, "skintone_base_emoji": "๐Ÿง™", + "skintone_base_hexcode": "1F9D9", "unicode": 5, "order": 771 }, @@ -6198,6 +6640,7 @@ "hfg_author": "Lisa Thiel", "skintone": 2, "skintone_base_emoji": "๐Ÿง™", + "skintone_base_hexcode": "1F9D9", "unicode": 5, "order": 772 }, @@ -6212,6 +6655,7 @@ "hfg_author": "Lisa Thiel", "skintone": 3, "skintone_base_emoji": "๐Ÿง™", + "skintone_base_hexcode": "1F9D9", "unicode": 5, "order": 773 }, @@ -6226,6 +6670,7 @@ "hfg_author": "Lisa Thiel", "skintone": 4, "skintone_base_emoji": "๐Ÿง™", + "skintone_base_hexcode": "1F9D9", "unicode": 5, "order": 774 }, @@ -6240,6 +6685,7 @@ "hfg_author": "Lisa Thiel", "skintone": 5, "skintone_base_emoji": "๐Ÿง™", + "skintone_base_hexcode": "1F9D9", "unicode": 5, "order": 775 }, @@ -6253,7 +6699,8 @@ "hfg_tags": "magical, mystic, bow, arrow, pointy ears", "hfg_author": "Lisa Thiel", "skintone": "", - "skintone_base_emoji": "", + "skintone_base_emoji": "๐Ÿง", + "skintone_base_hexcode": "1F9DD", "unicode": 5, "order": 890 }, @@ -6268,6 +6715,7 @@ "hfg_author": "Lisa Thiel", "skintone": 1, "skintone_base_emoji": "๐Ÿง", + "skintone_base_hexcode": "1F9DD", "unicode": 5, "order": 891 }, @@ -6282,6 +6730,7 @@ "hfg_author": "Lisa Thiel", "skintone": 2, "skintone_base_emoji": "๐Ÿง", + "skintone_base_hexcode": "1F9DD", "unicode": 5, "order": 892 }, @@ -6296,6 +6745,7 @@ "hfg_author": "Lisa Thiel", "skintone": 3, "skintone_base_emoji": "๐Ÿง", + "skintone_base_hexcode": "1F9DD", "unicode": 5, "order": 893 }, @@ -6310,6 +6760,7 @@ "hfg_author": "Lisa Thiel", "skintone": 4, "skintone_base_emoji": "๐Ÿง", + "skintone_base_hexcode": "1F9DD", "unicode": 5, "order": 894 }, @@ -6324,6 +6775,7 @@ "hfg_author": "Lisa Thiel", "skintone": 5, "skintone_base_emoji": "๐Ÿง", + "skintone_base_hexcode": "1F9DD", "unicode": 5, "order": 895 }, @@ -6338,6 +6790,7 @@ "hfg_author": "Lisa Thiel", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 5, "order": 920 }, @@ -6352,6 +6805,7 @@ "hfg_author": "Lisa Thiel", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 5, "order": 925 }, @@ -6365,7 +6819,8 @@ "hfg_tags": "negative, angry, head, face", "hfg_author": "Johanna Wellnitz", "skintone": "", - "skintone_base_emoji": "", + "skintone_base_emoji": "๐Ÿ™", + "skintone_base_hexcode": "1F64D", "unicode": 1, "order": 930 }, @@ -6380,6 +6835,7 @@ "hfg_author": "Johanna Wellnitz", "skintone": 1, "skintone_base_emoji": "๐Ÿ™", + "skintone_base_hexcode": "1F64D", "unicode": 2, "order": 931 }, @@ -6394,6 +6850,7 @@ "hfg_author": "Johanna Wellnitz", "skintone": 2, "skintone_base_emoji": "๐Ÿ™", + "skintone_base_hexcode": "1F64D", "unicode": 2, "order": 932 }, @@ -6408,6 +6865,7 @@ "hfg_author": "Johanna Wellnitz", "skintone": 3, "skintone_base_emoji": "๐Ÿ™", + "skintone_base_hexcode": "1F64D", "unicode": 2, "order": 933 }, @@ -6422,6 +6880,7 @@ "hfg_author": "Johanna Wellnitz", "skintone": 4, "skintone_base_emoji": "๐Ÿ™", + "skintone_base_hexcode": "1F64D", "unicode": 2, "order": 934 }, @@ -6436,6 +6895,7 @@ "hfg_author": "Johanna Wellnitz", "skintone": 5, "skintone_base_emoji": "๐Ÿ™", + "skintone_base_hexcode": "1F64D", "unicode": 2, "order": 935 }, @@ -6449,7 +6909,8 @@ "hfg_tags": "sad, negative, head, face", "hfg_author": "Johanna Wellnitz", "skintone": "", - "skintone_base_emoji": "", + "skintone_base_emoji": "๐Ÿ™Ž", + "skintone_base_hexcode": "1F64E", "unicode": 1, "order": 960 }, @@ -6464,6 +6925,7 @@ "hfg_author": "Johanna Wellnitz", "skintone": 1, "skintone_base_emoji": "๐Ÿ™Ž", + "skintone_base_hexcode": "1F64E", "unicode": 2, "order": 961 }, @@ -6478,6 +6940,7 @@ "hfg_author": "Johanna Wellnitz", "skintone": 2, "skintone_base_emoji": "๐Ÿ™Ž", + "skintone_base_hexcode": "1F64E", "unicode": 2, "order": 962 }, @@ -6492,6 +6955,7 @@ "hfg_author": "Johanna Wellnitz", "skintone": 3, "skintone_base_emoji": "๐Ÿ™Ž", + "skintone_base_hexcode": "1F64E", "unicode": 2, "order": 963 }, @@ -6506,6 +6970,7 @@ "hfg_author": "Johanna Wellnitz", "skintone": 4, "skintone_base_emoji": "๐Ÿ™Ž", + "skintone_base_hexcode": "1F64E", "unicode": 2, "order": 964 }, @@ -6520,6 +6985,7 @@ "hfg_author": "Johanna Wellnitz", "skintone": 5, "skintone_base_emoji": "๐Ÿ™Ž", + "skintone_base_hexcode": "1F64E", "unicode": 2, "order": 965 }, @@ -6533,7 +6999,8 @@ "hfg_tags": "human, head, face", "hfg_author": "Johanna Wellnitz", "skintone": "", - "skintone_base_emoji": "", + "skintone_base_emoji": "๐Ÿ™…", + "skintone_base_hexcode": "1F645", "unicode": 1, "order": 990 }, @@ -6548,6 +7015,7 @@ "hfg_author": "Johanna Wellnitz", "skintone": 1, "skintone_base_emoji": "๐Ÿ™…", + "skintone_base_hexcode": "1F645", "unicode": 2, "order": 991 }, @@ -6562,6 +7030,7 @@ "hfg_author": "Johanna Wellnitz", "skintone": 2, "skintone_base_emoji": "๐Ÿ™…", + "skintone_base_hexcode": "1F645", "unicode": 2, "order": 992 }, @@ -6576,6 +7045,7 @@ "hfg_author": "Johanna Wellnitz", "skintone": 3, "skintone_base_emoji": "๐Ÿ™…", + "skintone_base_hexcode": "1F645", "unicode": 2, "order": 993 }, @@ -6590,6 +7060,7 @@ "hfg_author": "Johanna Wellnitz", "skintone": 4, "skintone_base_emoji": "๐Ÿ™…", + "skintone_base_hexcode": "1F645", "unicode": 2, "order": 994 }, @@ -6604,6 +7075,7 @@ "hfg_author": "Johanna Wellnitz", "skintone": 5, "skintone_base_emoji": "๐Ÿ™…", + "skintone_base_hexcode": "1F645", "unicode": 2, "order": 995 }, @@ -6617,7 +7089,8 @@ "hfg_tags": "human, head, face", "hfg_author": "Johanna Wellnitz", "skintone": "", - "skintone_base_emoji": "", + "skintone_base_emoji": "๐Ÿ™†", + "skintone_base_hexcode": "1F646", "unicode": 1, "order": 1020 }, @@ -6632,6 +7105,7 @@ "hfg_author": "Johanna Wellnitz", "skintone": 1, "skintone_base_emoji": "๐Ÿ™†", + "skintone_base_hexcode": "1F646", "unicode": 2, "order": 1021 }, @@ -6646,6 +7120,7 @@ "hfg_author": "Johanna Wellnitz", "skintone": 2, "skintone_base_emoji": "๐Ÿ™†", + "skintone_base_hexcode": "1F646", "unicode": 2, "order": 1022 }, @@ -6660,6 +7135,7 @@ "hfg_author": "Johanna Wellnitz", "skintone": 3, "skintone_base_emoji": "๐Ÿ™†", + "skintone_base_hexcode": "1F646", "unicode": 2, "order": 1023 }, @@ -6674,6 +7150,7 @@ "hfg_author": "Johanna Wellnitz", "skintone": 4, "skintone_base_emoji": "๐Ÿ™†", + "skintone_base_hexcode": "1F646", "unicode": 2, "order": 1024 }, @@ -6688,6 +7165,7 @@ "hfg_author": "Johanna Wellnitz", "skintone": 5, "skintone_base_emoji": "๐Ÿ™†", + "skintone_base_hexcode": "1F646", "unicode": 2, "order": 1025 }, @@ -6701,7 +7179,8 @@ "hfg_tags": "human, head, face", "hfg_author": "Johanna Wellnitz", "skintone": "", - "skintone_base_emoji": "", + "skintone_base_emoji": "๐Ÿ’", + "skintone_base_hexcode": "1F481", "unicode": 1, "order": 1050 }, @@ -6716,6 +7195,7 @@ "hfg_author": "Johanna Wellnitz", "skintone": 1, "skintone_base_emoji": "๐Ÿ’", + "skintone_base_hexcode": "1F481", "unicode": 2, "order": 1051 }, @@ -6730,6 +7210,7 @@ "hfg_author": "Johanna Wellnitz", "skintone": 2, "skintone_base_emoji": "๐Ÿ’", + "skintone_base_hexcode": "1F481", "unicode": 2, "order": 1052 }, @@ -6744,6 +7225,7 @@ "hfg_author": "Johanna Wellnitz", "skintone": 3, "skintone_base_emoji": "๐Ÿ’", + "skintone_base_hexcode": "1F481", "unicode": 2, "order": 1053 }, @@ -6758,6 +7240,7 @@ "hfg_author": "Johanna Wellnitz", "skintone": 4, "skintone_base_emoji": "๐Ÿ’", + "skintone_base_hexcode": "1F481", "unicode": 2, "order": 1054 }, @@ -6772,6 +7255,7 @@ "hfg_author": "Johanna Wellnitz", "skintone": 5, "skintone_base_emoji": "๐Ÿ’", + "skintone_base_hexcode": "1F481", "unicode": 2, "order": 1055 }, @@ -6785,7 +7269,8 @@ "hfg_tags": "human, head, face", "hfg_author": "Johanna Wellnitz", "skintone": "", - "skintone_base_emoji": "", + "skintone_base_emoji": "๐Ÿ™‹", + "skintone_base_hexcode": "1F64B", "unicode": 1, "order": 1080 }, @@ -6800,6 +7285,7 @@ "hfg_author": "Johanna Wellnitz", "skintone": 1, "skintone_base_emoji": "๐Ÿ™‹", + "skintone_base_hexcode": "1F64B", "unicode": 2, "order": 1081 }, @@ -6814,6 +7300,7 @@ "hfg_author": "Johanna Wellnitz", "skintone": 2, "skintone_base_emoji": "๐Ÿ™‹", + "skintone_base_hexcode": "1F64B", "unicode": 2, "order": 1082 }, @@ -6828,6 +7315,7 @@ "hfg_author": "Johanna Wellnitz", "skintone": 3, "skintone_base_emoji": "๐Ÿ™‹", + "skintone_base_hexcode": "1F64B", "unicode": 2, "order": 1083 }, @@ -6842,6 +7330,7 @@ "hfg_author": "Johanna Wellnitz", "skintone": 4, "skintone_base_emoji": "๐Ÿ™‹", + "skintone_base_hexcode": "1F64B", "unicode": 2, "order": 1084 }, @@ -6856,6 +7345,7 @@ "hfg_author": "Johanna Wellnitz", "skintone": 5, "skintone_base_emoji": "๐Ÿ™‹", + "skintone_base_hexcode": "1F64B", "unicode": 2, "order": 1085 }, @@ -6869,7 +7359,8 @@ "hfg_tags": "human, head, face", "hfg_author": "Johanna Wellnitz", "skintone": "", - "skintone_base_emoji": "", + "skintone_base_emoji": "๐Ÿ™‡", + "skintone_base_hexcode": "1F647", "unicode": 1, "order": 1110 }, @@ -6884,6 +7375,7 @@ "hfg_author": "Johanna Wellnitz", "skintone": 1, "skintone_base_emoji": "๐Ÿ™‡", + "skintone_base_hexcode": "1F647", "unicode": 2, "order": 1111 }, @@ -6898,6 +7390,7 @@ "hfg_author": "Johanna Wellnitz", "skintone": 2, "skintone_base_emoji": "๐Ÿ™‡", + "skintone_base_hexcode": "1F647", "unicode": 2, "order": 1112 }, @@ -6912,6 +7405,7 @@ "hfg_author": "Johanna Wellnitz", "skintone": 3, "skintone_base_emoji": "๐Ÿ™‡", + "skintone_base_hexcode": "1F647", "unicode": 2, "order": 1113 }, @@ -6926,6 +7420,7 @@ "hfg_author": "Johanna Wellnitz", "skintone": 4, "skintone_base_emoji": "๐Ÿ™‡", + "skintone_base_hexcode": "1F647", "unicode": 2, "order": 1114 }, @@ -6940,6 +7435,7 @@ "hfg_author": "Johanna Wellnitz", "skintone": 5, "skintone_base_emoji": "๐Ÿ™‡", + "skintone_base_hexcode": "1F647", "unicode": 2, "order": 1115 }, @@ -6953,7 +7449,8 @@ "hfg_tags": "facepalm, human, head, face", "hfg_author": "Johanna Wellnitz", "skintone": "", - "skintone_base_emoji": "", + "skintone_base_emoji": "๐Ÿคฆ", + "skintone_base_hexcode": "1F926", "unicode": 3, "order": 1140 }, @@ -6968,6 +7465,7 @@ "hfg_author": "Johanna Wellnitz", "skintone": 1, "skintone_base_emoji": "๐Ÿคฆ", + "skintone_base_hexcode": "1F926", "unicode": 3, "order": 1141 }, @@ -6982,6 +7480,7 @@ "hfg_author": "Johanna Wellnitz", "skintone": 2, "skintone_base_emoji": "๐Ÿคฆ", + "skintone_base_hexcode": "1F926", "unicode": 3, "order": 1142 }, @@ -6996,6 +7495,7 @@ "hfg_author": "Johanna Wellnitz", "skintone": 3, "skintone_base_emoji": "๐Ÿคฆ", + "skintone_base_hexcode": "1F926", "unicode": 3, "order": 1143 }, @@ -7010,6 +7510,7 @@ "hfg_author": "Johanna Wellnitz", "skintone": 4, "skintone_base_emoji": "๐Ÿคฆ", + "skintone_base_hexcode": "1F926", "unicode": 3, "order": 1144 }, @@ -7024,6 +7525,7 @@ "hfg_author": "Johanna Wellnitz", "skintone": 5, "skintone_base_emoji": "๐Ÿคฆ", + "skintone_base_hexcode": "1F926", "unicode": 3, "order": 1145 }, @@ -7037,7 +7539,8 @@ "hfg_tags": "facepalm, head, face", "hfg_author": "Johanna Wellnitz", "skintone": "", - "skintone_base_emoji": "", + "skintone_base_emoji": "๐Ÿคฆโ€โ™‚๏ธ", + "skintone_base_hexcode": "1F926-200D-2642-FE0F", "unicode": 4, "order": 1146 }, @@ -7052,6 +7555,7 @@ "hfg_author": "Johanna Wellnitz", "skintone": 1, "skintone_base_emoji": "๐Ÿคฆโ€โ™‚๏ธ", + "skintone_base_hexcode": "1F926-200D-2642-FE0F", "unicode": 4, "order": 1148 }, @@ -7066,6 +7570,7 @@ "hfg_author": "Johanna Wellnitz", "skintone": 2, "skintone_base_emoji": "๐Ÿคฆโ€โ™‚๏ธ", + "skintone_base_hexcode": "1F926-200D-2642-FE0F", "unicode": 4, "order": 1150 }, @@ -7080,6 +7585,7 @@ "hfg_author": "Johanna Wellnitz", "skintone": 3, "skintone_base_emoji": "๐Ÿคฆโ€โ™‚๏ธ", + "skintone_base_hexcode": "1F926-200D-2642-FE0F", "unicode": 4, "order": 1152 }, @@ -7094,6 +7600,7 @@ "hfg_author": "Johanna Wellnitz", "skintone": 4, "skintone_base_emoji": "๐Ÿคฆโ€โ™‚๏ธ", + "skintone_base_hexcode": "1F926-200D-2642-FE0F", "unicode": 4, "order": 1154 }, @@ -7108,6 +7615,7 @@ "hfg_author": "Johanna Wellnitz", "skintone": 5, "skintone_base_emoji": "๐Ÿคฆโ€โ™‚๏ธ", + "skintone_base_hexcode": "1F926-200D-2642-FE0F", "unicode": 4, "order": 1156 }, @@ -7121,7 +7629,8 @@ "hfg_tags": "facepalm, head, face", "hfg_author": "Johanna Wellnitz", "skintone": "", - "skintone_base_emoji": "", + "skintone_base_emoji": "๐Ÿคฆโ€โ™€๏ธ", + "skintone_base_hexcode": "1F926-200D-2640-FE0F", "unicode": 4, "order": 1158 }, @@ -7136,6 +7645,7 @@ "hfg_author": "Johanna Wellnitz", "skintone": 1, "skintone_base_emoji": "๐Ÿคฆโ€โ™€๏ธ", + "skintone_base_hexcode": "1F926-200D-2640-FE0F", "unicode": 4, "order": 1160 }, @@ -7150,6 +7660,7 @@ "hfg_author": "Johanna Wellnitz", "skintone": 2, "skintone_base_emoji": "๐Ÿคฆโ€โ™€๏ธ", + "skintone_base_hexcode": "1F926-200D-2640-FE0F", "unicode": 4, "order": 1162 }, @@ -7164,6 +7675,7 @@ "hfg_author": "Johanna Wellnitz", "skintone": 3, "skintone_base_emoji": "๐Ÿคฆโ€โ™€๏ธ", + "skintone_base_hexcode": "1F926-200D-2640-FE0F", "unicode": 4, "order": 1164 }, @@ -7178,6 +7690,7 @@ "hfg_author": "Johanna Wellnitz", "skintone": 4, "skintone_base_emoji": "๐Ÿคฆโ€โ™€๏ธ", + "skintone_base_hexcode": "1F926-200D-2640-FE0F", "unicode": 4, "order": 1166 }, @@ -7192,6 +7705,7 @@ "hfg_author": "Johanna Wellnitz", "skintone": 5, "skintone_base_emoji": "๐Ÿคฆโ€โ™€๏ธ", + "skintone_base_hexcode": "1F926-200D-2640-FE0F", "unicode": 4, "order": 1168 }, @@ -7205,7 +7719,8 @@ "hfg_tags": "human, head, face", "hfg_author": "Johanna Wellnitz", "skintone": "", - "skintone_base_emoji": "", + "skintone_base_emoji": "๐Ÿคท", + "skintone_base_hexcode": "1F937", "unicode": 3, "order": 1170 }, @@ -7220,6 +7735,7 @@ "hfg_author": "Johanna Wellnitz", "skintone": 1, "skintone_base_emoji": "๐Ÿคท", + "skintone_base_hexcode": "1F937", "unicode": 3, "order": 1171 }, @@ -7234,6 +7750,7 @@ "hfg_author": "Johanna Wellnitz", "skintone": 2, "skintone_base_emoji": "๐Ÿคท", + "skintone_base_hexcode": "1F937", "unicode": 3, "order": 1172 }, @@ -7248,6 +7765,7 @@ "hfg_author": "Johanna Wellnitz", "skintone": 3, "skintone_base_emoji": "๐Ÿคท", + "skintone_base_hexcode": "1F937", "unicode": 3, "order": 1173 }, @@ -7262,6 +7780,7 @@ "hfg_author": "Johanna Wellnitz", "skintone": 4, "skintone_base_emoji": "๐Ÿคท", + "skintone_base_hexcode": "1F937", "unicode": 3, "order": 1174 }, @@ -7276,6 +7795,7 @@ "hfg_author": "Johanna Wellnitz", "skintone": 5, "skintone_base_emoji": "๐Ÿคท", + "skintone_base_hexcode": "1F937", "unicode": 3, "order": 1175 }, @@ -7289,7 +7809,8 @@ "hfg_tags": "human, person", "hfg_author": "Johanna Wellnitz", "skintone": "", - "skintone_base_emoji": "", + "skintone_base_emoji": "๐Ÿ’†", + "skintone_base_hexcode": "1F486", "unicode": 1, "order": 1200 }, @@ -7304,6 +7825,7 @@ "hfg_author": "Johanna Wellnitz", "skintone": 1, "skintone_base_emoji": "๐Ÿ’†", + "skintone_base_hexcode": "1F486", "unicode": 2, "order": 1201 }, @@ -7318,6 +7840,7 @@ "hfg_author": "Johanna Wellnitz", "skintone": 2, "skintone_base_emoji": "๐Ÿ’†", + "skintone_base_hexcode": "1F486", "unicode": 2, "order": 1202 }, @@ -7332,6 +7855,7 @@ "hfg_author": "Johanna Wellnitz", "skintone": 3, "skintone_base_emoji": "๐Ÿ’†", + "skintone_base_hexcode": "1F486", "unicode": 2, "order": 1203 }, @@ -7346,6 +7870,7 @@ "hfg_author": "Johanna Wellnitz", "skintone": 4, "skintone_base_emoji": "๐Ÿ’†", + "skintone_base_hexcode": "1F486", "unicode": 2, "order": 1204 }, @@ -7360,6 +7885,7 @@ "hfg_author": "Johanna Wellnitz", "skintone": 5, "skintone_base_emoji": "๐Ÿ’†", + "skintone_base_hexcode": "1F486", "unicode": 2, "order": 1205 }, @@ -7373,7 +7899,8 @@ "hfg_tags": "human, person", "hfg_author": "Johanna Wellnitz", "skintone": "", - "skintone_base_emoji": "", + "skintone_base_emoji": "๐Ÿ’‡", + "skintone_base_hexcode": "1F487", "unicode": 1, "order": 1230 }, @@ -7388,6 +7915,7 @@ "hfg_author": "Johanna Wellnitz", "skintone": 1, "skintone_base_emoji": "๐Ÿ’‡", + "skintone_base_hexcode": "1F487", "unicode": 2, "order": 1231 }, @@ -7402,6 +7930,7 @@ "hfg_author": "Johanna Wellnitz", "skintone": 2, "skintone_base_emoji": "๐Ÿ’‡", + "skintone_base_hexcode": "1F487", "unicode": 2, "order": 1232 }, @@ -7416,6 +7945,7 @@ "hfg_author": "Johanna Wellnitz", "skintone": 3, "skintone_base_emoji": "๐Ÿ’‡", + "skintone_base_hexcode": "1F487", "unicode": 2, "order": 1233 }, @@ -7430,6 +7960,7 @@ "hfg_author": "Johanna Wellnitz", "skintone": 4, "skintone_base_emoji": "๐Ÿ’‡", + "skintone_base_hexcode": "1F487", "unicode": 2, "order": 1234 }, @@ -7444,6 +7975,7 @@ "hfg_author": "Johanna Wellnitz", "skintone": 5, "skintone_base_emoji": "๐Ÿ’‡", + "skintone_base_hexcode": "1F487", "unicode": 2, "order": 1235 }, @@ -7457,7 +7989,8 @@ "hfg_tags": "human, person", "hfg_author": "Johanna Wellnitz", "skintone": "", - "skintone_base_emoji": "", + "skintone_base_emoji": "๐Ÿšถ", + "skintone_base_hexcode": "1F6B6", "unicode": 1, "order": 1260 }, @@ -7472,6 +8005,7 @@ "hfg_author": "Johanna Wellnitz", "skintone": 1, "skintone_base_emoji": "๐Ÿšถ", + "skintone_base_hexcode": "1F6B6", "unicode": 2, "order": 1261 }, @@ -7486,6 +8020,7 @@ "hfg_author": "Johanna Wellnitz", "skintone": 2, "skintone_base_emoji": "๐Ÿšถ", + "skintone_base_hexcode": "1F6B6", "unicode": 2, "order": 1262 }, @@ -7500,6 +8035,7 @@ "hfg_author": "Johanna Wellnitz", "skintone": 3, "skintone_base_emoji": "๐Ÿšถ", + "skintone_base_hexcode": "1F6B6", "unicode": 2, "order": 1263 }, @@ -7514,6 +8050,7 @@ "hfg_author": "Johanna Wellnitz", "skintone": 4, "skintone_base_emoji": "๐Ÿšถ", + "skintone_base_hexcode": "1F6B6", "unicode": 2, "order": 1264 }, @@ -7528,6 +8065,7 @@ "hfg_author": "Johanna Wellnitz", "skintone": 5, "skintone_base_emoji": "๐Ÿšถ", + "skintone_base_hexcode": "1F6B6", "unicode": 2, "order": 1265 }, @@ -7541,7 +8079,8 @@ "hfg_tags": "human, person", "hfg_author": "Johanna Wellnitz", "skintone": "", - "skintone_base_emoji": "", + "skintone_base_emoji": "๐Ÿšถโ€โ™‚๏ธ", + "skintone_base_hexcode": "1F6B6-200D-2642-FE0F", "unicode": 4, "order": 1266 }, @@ -7556,6 +8095,7 @@ "hfg_author": "Johanna Wellnitz", "skintone": 1, "skintone_base_emoji": "๐Ÿšถโ€โ™‚๏ธ", + "skintone_base_hexcode": "1F6B6-200D-2642-FE0F", "unicode": 4, "order": 1268 }, @@ -7570,6 +8110,7 @@ "hfg_author": "Johanna Wellnitz", "skintone": 2, "skintone_base_emoji": "๐Ÿšถโ€โ™‚๏ธ", + "skintone_base_hexcode": "1F6B6-200D-2642-FE0F", "unicode": 4, "order": 1270 }, @@ -7584,6 +8125,7 @@ "hfg_author": "Johanna Wellnitz", "skintone": 3, "skintone_base_emoji": "๐Ÿšถโ€โ™‚๏ธ", + "skintone_base_hexcode": "1F6B6-200D-2642-FE0F", "unicode": 4, "order": 1272 }, @@ -7598,6 +8140,7 @@ "hfg_author": "Johanna Wellnitz", "skintone": 4, "skintone_base_emoji": "๐Ÿšถโ€โ™‚๏ธ", + "skintone_base_hexcode": "1F6B6-200D-2642-FE0F", "unicode": 4, "order": 1274 }, @@ -7612,6 +8155,7 @@ "hfg_author": "Johanna Wellnitz", "skintone": 5, "skintone_base_emoji": "๐Ÿšถโ€โ™‚๏ธ", + "skintone_base_hexcode": "1F6B6-200D-2642-FE0F", "unicode": 4, "order": 1276 }, @@ -7625,7 +8169,8 @@ "hfg_tags": "human, person", "hfg_author": "Johanna Wellnitz", "skintone": "", - "skintone_base_emoji": "", + "skintone_base_emoji": "๐Ÿšถโ€โ™€๏ธ", + "skintone_base_hexcode": "1F6B6-200D-2640-FE0F", "unicode": 4, "order": 1278 }, @@ -7640,6 +8185,7 @@ "hfg_author": "Johanna Wellnitz", "skintone": 1, "skintone_base_emoji": "๐Ÿšถโ€โ™€๏ธ", + "skintone_base_hexcode": "1F6B6-200D-2640-FE0F", "unicode": 4, "order": 1280 }, @@ -7654,6 +8200,7 @@ "hfg_author": "Johanna Wellnitz", "skintone": 2, "skintone_base_emoji": "๐Ÿšถโ€โ™€๏ธ", + "skintone_base_hexcode": "1F6B6-200D-2640-FE0F", "unicode": 4, "order": 1282 }, @@ -7668,6 +8215,7 @@ "hfg_author": "Johanna Wellnitz", "skintone": 3, "skintone_base_emoji": "๐Ÿšถโ€โ™€๏ธ", + "skintone_base_hexcode": "1F6B6-200D-2640-FE0F", "unicode": 4, "order": 1284 }, @@ -7682,6 +8230,7 @@ "hfg_author": "Johanna Wellnitz", "skintone": 4, "skintone_base_emoji": "๐Ÿšถโ€โ™€๏ธ", + "skintone_base_hexcode": "1F6B6-200D-2640-FE0F", "unicode": 4, "order": 1286 }, @@ -7696,6 +8245,7 @@ "hfg_author": "Johanna Wellnitz", "skintone": 5, "skintone_base_emoji": "๐Ÿšถโ€โ™€๏ธ", + "skintone_base_hexcode": "1F6B6-200D-2640-FE0F", "unicode": 4, "order": 1288 }, @@ -7709,7 +8259,8 @@ "hfg_tags": "human, person", "hfg_author": "Johanna Wellnitz", "skintone": "", - "skintone_base_emoji": "", + "skintone_base_emoji": "๐Ÿƒ", + "skintone_base_hexcode": "1F3C3", "unicode": 1, "order": 1290 }, @@ -7724,6 +8275,7 @@ "hfg_author": "Johanna Wellnitz", "skintone": 1, "skintone_base_emoji": "๐Ÿƒ", + "skintone_base_hexcode": "1F3C3", "unicode": 2, "order": 1291 }, @@ -7738,6 +8290,7 @@ "hfg_author": "Johanna Wellnitz", "skintone": 2, "skintone_base_emoji": "๐Ÿƒ", + "skintone_base_hexcode": "1F3C3", "unicode": 2, "order": 1292 }, @@ -7752,6 +8305,7 @@ "hfg_author": "Johanna Wellnitz", "skintone": 3, "skintone_base_emoji": "๐Ÿƒ", + "skintone_base_hexcode": "1F3C3", "unicode": 2, "order": 1293 }, @@ -7766,6 +8320,7 @@ "hfg_author": "Johanna Wellnitz", "skintone": 4, "skintone_base_emoji": "๐Ÿƒ", + "skintone_base_hexcode": "1F3C3", "unicode": 2, "order": 1294 }, @@ -7780,6 +8335,7 @@ "hfg_author": "Johanna Wellnitz", "skintone": 5, "skintone_base_emoji": "๐Ÿƒ", + "skintone_base_hexcode": "1F3C3", "unicode": 2, "order": 1295 }, @@ -7793,7 +8349,8 @@ "hfg_tags": "human, person", "hfg_author": "Johanna Wellnitz", "skintone": "", - "skintone_base_emoji": "", + "skintone_base_emoji": "๐Ÿ’ƒ", + "skintone_base_hexcode": "1F483", "unicode": 1, "order": 1320 }, @@ -7808,6 +8365,7 @@ "hfg_author": "Johanna Wellnitz", "skintone": 1, "skintone_base_emoji": "๐Ÿ’ƒ", + "skintone_base_hexcode": "1F483", "unicode": 2, "order": 1321 }, @@ -7822,6 +8380,7 @@ "hfg_author": "Johanna Wellnitz", "skintone": 2, "skintone_base_emoji": "๐Ÿ’ƒ", + "skintone_base_hexcode": "1F483", "unicode": 2, "order": 1322 }, @@ -7836,6 +8395,7 @@ "hfg_author": "Johanna Wellnitz", "skintone": 3, "skintone_base_emoji": "๐Ÿ’ƒ", + "skintone_base_hexcode": "1F483", "unicode": 2, "order": 1323 }, @@ -7850,6 +8410,7 @@ "hfg_author": "Johanna Wellnitz", "skintone": 4, "skintone_base_emoji": "๐Ÿ’ƒ", + "skintone_base_hexcode": "1F483", "unicode": 2, "order": 1324 }, @@ -7864,6 +8425,7 @@ "hfg_author": "Johanna Wellnitz", "skintone": 5, "skintone_base_emoji": "๐Ÿ’ƒ", + "skintone_base_hexcode": "1F483", "unicode": 2, "order": 1325 }, @@ -7877,7 +8439,8 @@ "hfg_tags": "human, person", "hfg_author": "Johanna Wellnitz", "skintone": "", - "skintone_base_emoji": "", + "skintone_base_emoji": "๐Ÿ•บ", + "skintone_base_hexcode": "1F57A", "unicode": 3, "order": 1326 }, @@ -7892,6 +8455,7 @@ "hfg_author": "Johanna Wellnitz", "skintone": 1, "skintone_base_emoji": "๐Ÿ•บ", + "skintone_base_hexcode": "1F57A", "unicode": 3, "order": 1327 }, @@ -7906,6 +8470,7 @@ "hfg_author": "Johanna Wellnitz", "skintone": 2, "skintone_base_emoji": "๐Ÿ•บ", + "skintone_base_hexcode": "1F57A", "unicode": 3, "order": 1328 }, @@ -7920,6 +8485,7 @@ "hfg_author": "Johanna Wellnitz", "skintone": 3, "skintone_base_emoji": "๐Ÿ•บ", + "skintone_base_hexcode": "1F57A", "unicode": 3, "order": 1329 }, @@ -7934,6 +8500,7 @@ "hfg_author": "Johanna Wellnitz", "skintone": 4, "skintone_base_emoji": "๐Ÿ•บ", + "skintone_base_hexcode": "1F57A", "unicode": 3, "order": 1330 }, @@ -7948,6 +8515,7 @@ "hfg_author": "Johanna Wellnitz", "skintone": 5, "skintone_base_emoji": "๐Ÿ•บ", + "skintone_base_hexcode": "1F57A", "unicode": 3, "order": 1331 }, @@ -7962,6 +8530,7 @@ "hfg_author": "Johanna Wellnitz", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 1332 }, @@ -7975,7 +8544,8 @@ "hfg_tags": "human, person", "hfg_author": "Johanna Wellnitz", "skintone": "", - "skintone_base_emoji": "", + "skintone_base_emoji": "๐Ÿง—", + "skintone_base_hexcode": "1F9D7", "unicode": 5, "order": 1367 }, @@ -7990,6 +8560,7 @@ "hfg_author": "Johanna Wellnitz", "skintone": 1, "skintone_base_emoji": "๐Ÿง—", + "skintone_base_hexcode": "1F9D7", "unicode": 5, "order": 1368 }, @@ -8004,6 +8575,7 @@ "hfg_author": "Johanna Wellnitz", "skintone": 2, "skintone_base_emoji": "๐Ÿง—", + "skintone_base_hexcode": "1F9D7", "unicode": 5, "order": 1369 }, @@ -8018,6 +8590,7 @@ "hfg_author": "Johanna Wellnitz", "skintone": 3, "skintone_base_emoji": "๐Ÿง—", + "skintone_base_hexcode": "1F9D7", "unicode": 5, "order": 1370 }, @@ -8032,6 +8605,7 @@ "hfg_author": "Johanna Wellnitz", "skintone": 4, "skintone_base_emoji": "๐Ÿง—", + "skintone_base_hexcode": "1F9D7", "unicode": 5, "order": 1371 }, @@ -8046,6 +8620,7 @@ "hfg_author": "Johanna Wellnitz", "skintone": 5, "skintone_base_emoji": "๐Ÿง—", + "skintone_base_hexcode": "1F9D7", "unicode": 5, "order": 1372 }, @@ -8059,7 +8634,8 @@ "hfg_tags": "human, person, excercise", "hfg_author": "Johanna Wellnitz", "skintone": "", - "skintone_base_emoji": "", + "skintone_base_emoji": "๐Ÿง˜", + "skintone_base_hexcode": "1F9D8", "unicode": 5, "order": 1397 }, @@ -8074,6 +8650,7 @@ "hfg_author": "Johanna Wellnitz", "skintone": 1, "skintone_base_emoji": "๐Ÿง˜", + "skintone_base_hexcode": "1F9D8", "unicode": 5, "order": 1398 }, @@ -8088,6 +8665,7 @@ "hfg_author": "Johanna Wellnitz", "skintone": 2, "skintone_base_emoji": "๐Ÿง˜", + "skintone_base_hexcode": "1F9D8", "unicode": 5, "order": 1399 }, @@ -8102,6 +8680,7 @@ "hfg_author": "Johanna Wellnitz", "skintone": 3, "skintone_base_emoji": "๐Ÿง˜", + "skintone_base_hexcode": "1F9D8", "unicode": 5, "order": 1400 }, @@ -8116,6 +8695,7 @@ "hfg_author": "Johanna Wellnitz", "skintone": 4, "skintone_base_emoji": "๐Ÿง˜", + "skintone_base_hexcode": "1F9D8", "unicode": 5, "order": 1401 }, @@ -8130,6 +8710,7 @@ "hfg_author": "Johanna Wellnitz", "skintone": 5, "skintone_base_emoji": "๐Ÿง˜", + "skintone_base_hexcode": "1F9D8", "unicode": 5, "order": 1402 }, @@ -8143,7 +8724,8 @@ "hfg_tags": "human, person", "hfg_author": "Johanna Wellnitz", "skintone": "", - "skintone_base_emoji": "", + "skintone_base_emoji": "๐Ÿ›Œ", + "skintone_base_hexcode": "1F6CC", "unicode": 1, "order": 1433 }, @@ -8158,6 +8740,7 @@ "hfg_author": "Johanna Wellnitz", "skintone": 1, "skintone_base_emoji": "๐Ÿ›Œ", + "skintone_base_hexcode": "1F6CC", "unicode": 4, "order": 1434 }, @@ -8172,6 +8755,7 @@ "hfg_author": "Johanna Wellnitz", "skintone": 2, "skintone_base_emoji": "๐Ÿ›Œ", + "skintone_base_hexcode": "1F6CC", "unicode": 4, "order": 1435 }, @@ -8186,6 +8770,7 @@ "hfg_author": "Johanna Wellnitz", "skintone": 3, "skintone_base_emoji": "๐Ÿ›Œ", + "skintone_base_hexcode": "1F6CC", "unicode": 4, "order": 1436 }, @@ -8200,6 +8785,7 @@ "hfg_author": "Johanna Wellnitz", "skintone": 4, "skintone_base_emoji": "๐Ÿ›Œ", + "skintone_base_hexcode": "1F6CC", "unicode": 4, "order": 1437 }, @@ -8214,6 +8800,7 @@ "hfg_author": "Johanna Wellnitz", "skintone": 5, "skintone_base_emoji": "๐Ÿ›Œ", + "skintone_base_hexcode": "1F6CC", "unicode": 4, "order": 1438 }, @@ -8228,6 +8815,7 @@ "hfg_author": "Johanna Wellnitz", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 1447 }, @@ -8242,6 +8830,7 @@ "hfg_author": "Johanna Wellnitz", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 1448 }, @@ -8256,6 +8845,7 @@ "hfg_author": "Johanna Wellnitz", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 1449 }, @@ -8270,6 +8860,7 @@ "hfg_author": "Johanna Wellnitz", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 3, "order": 1450 }, @@ -8283,7 +8874,8 @@ "hfg_tags": "animal, sports", "hfg_author": "Johanna Wellnitz", "skintone": "", - "skintone_base_emoji": "", + "skintone_base_emoji": "๐Ÿ‡", + "skintone_base_hexcode": "1F3C7", "unicode": 1, "order": 1451 }, @@ -8298,6 +8890,7 @@ "hfg_author": "Johanna Wellnitz", "skintone": 1, "skintone_base_emoji": "๐Ÿ‡", + "skintone_base_hexcode": "1F3C7", "unicode": 4, "order": 1452 }, @@ -8312,6 +8905,7 @@ "hfg_author": "Johanna Wellnitz", "skintone": 2, "skintone_base_emoji": "๐Ÿ‡", + "skintone_base_hexcode": "1F3C7", "unicode": 4, "order": 1453 }, @@ -8326,6 +8920,7 @@ "hfg_author": "Johanna Wellnitz", "skintone": 3, "skintone_base_emoji": "๐Ÿ‡", + "skintone_base_hexcode": "1F3C7", "unicode": 4, "order": 1454 }, @@ -8340,6 +8935,7 @@ "hfg_author": "Johanna Wellnitz", "skintone": 4, "skintone_base_emoji": "๐Ÿ‡", + "skintone_base_hexcode": "1F3C7", "unicode": 4, "order": 1455 }, @@ -8354,6 +8950,7 @@ "hfg_author": "Johanna Wellnitz", "skintone": 5, "skintone_base_emoji": "๐Ÿ‡", + "skintone_base_hexcode": "1F3C7", "unicode": 4, "order": 1456 }, @@ -8368,6 +8965,7 @@ "hfg_author": "Johanna Wellnitz", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 1458 }, @@ -8381,7 +8979,8 @@ "hfg_tags": "winter, sports", "hfg_author": "Johanna Wellnitz", "skintone": "", - "skintone_base_emoji": "", + "skintone_base_emoji": "๐Ÿ‚๏ธ", + "skintone_base_hexcode": "1F3C2", "unicode": 1, "order": 1459 }, @@ -8396,6 +8995,7 @@ "hfg_author": "Johanna Wellnitz", "skintone": 1, "skintone_base_emoji": "๐Ÿ‚๏ธ", + "skintone_base_hexcode": "1F3C2", "unicode": 4, "order": 1460 }, @@ -8410,6 +9010,7 @@ "hfg_author": "Johanna Wellnitz", "skintone": 2, "skintone_base_emoji": "๐Ÿ‚๏ธ", + "skintone_base_hexcode": "1F3C2", "unicode": 4, "order": 1461 }, @@ -8424,6 +9025,7 @@ "hfg_author": "Johanna Wellnitz", "skintone": 3, "skintone_base_emoji": "๐Ÿ‚๏ธ", + "skintone_base_hexcode": "1F3C2", "unicode": 4, "order": 1462 }, @@ -8438,6 +9040,7 @@ "hfg_author": "Johanna Wellnitz", "skintone": 4, "skintone_base_emoji": "๐Ÿ‚๏ธ", + "skintone_base_hexcode": "1F3C2", "unicode": 4, "order": 1463 }, @@ -8452,6 +9055,7 @@ "hfg_author": "Johanna Wellnitz", "skintone": 5, "skintone_base_emoji": "๐Ÿ‚๏ธ", + "skintone_base_hexcode": "1F3C2", "unicode": 4, "order": 1464 }, @@ -8465,7 +9069,8 @@ "hfg_tags": "sports", "hfg_author": "Johanna Wellnitz", "skintone": "", - "skintone_base_emoji": "", + "skintone_base_emoji": "๐ŸŒ๏ธ", + "skintone_base_hexcode": "1F3CC", "unicode": 1, "order": 1466 }, @@ -8480,6 +9085,7 @@ "hfg_author": "Johanna Wellnitz", "skintone": 1, "skintone_base_emoji": "๐ŸŒ๏ธ", + "skintone_base_hexcode": "1F3CC", "unicode": 4, "order": 1467 }, @@ -8494,6 +9100,7 @@ "hfg_author": "Johanna Wellnitz", "skintone": 2, "skintone_base_emoji": "๐ŸŒ๏ธ", + "skintone_base_hexcode": "1F3CC", "unicode": 4, "order": 1468 }, @@ -8508,6 +9115,7 @@ "hfg_author": "Johanna Wellnitz", "skintone": 3, "skintone_base_emoji": "๐ŸŒ๏ธ", + "skintone_base_hexcode": "1F3CC", "unicode": 4, "order": 1469 }, @@ -8522,6 +9130,7 @@ "hfg_author": "Johanna Wellnitz", "skintone": 4, "skintone_base_emoji": "๐ŸŒ๏ธ", + "skintone_base_hexcode": "1F3CC", "unicode": 4, "order": 1470 }, @@ -8536,6 +9145,7 @@ "hfg_author": "Johanna Wellnitz", "skintone": 5, "skintone_base_emoji": "๐ŸŒ๏ธ", + "skintone_base_hexcode": "1F3CC", "unicode": 4, "order": 1471 }, @@ -8549,7 +9159,8 @@ "hfg_tags": "water, ocean, sea, wave, surfer, sports", "hfg_author": "Johanna Wellnitz", "skintone": "", - "skintone_base_emoji": "", + "skintone_base_emoji": "๐Ÿ„๏ธ", + "skintone_base_hexcode": "1F3C4", "unicode": 1, "order": 1500 }, @@ -8564,6 +9175,7 @@ "hfg_author": "Johanna Wellnitz", "skintone": 1, "skintone_base_emoji": "๐Ÿ„๏ธ", + "skintone_base_hexcode": "1F3C4", "unicode": 2, "order": 1501 }, @@ -8578,6 +9190,7 @@ "hfg_author": "Johanna Wellnitz", "skintone": 2, "skintone_base_emoji": "๐Ÿ„๏ธ", + "skintone_base_hexcode": "1F3C4", "unicode": 2, "order": 1502 }, @@ -8592,6 +9205,7 @@ "hfg_author": "Johanna Wellnitz", "skintone": 3, "skintone_base_emoji": "๐Ÿ„๏ธ", + "skintone_base_hexcode": "1F3C4", "unicode": 2, "order": 1503 }, @@ -8606,6 +9220,7 @@ "hfg_author": "Johanna Wellnitz", "skintone": 4, "skintone_base_emoji": "๐Ÿ„๏ธ", + "skintone_base_hexcode": "1F3C4", "unicode": 2, "order": 1504 }, @@ -8620,6 +9235,7 @@ "hfg_author": "Johanna Wellnitz", "skintone": 5, "skintone_base_emoji": "๐Ÿ„๏ธ", + "skintone_base_hexcode": "1F3C4", "unicode": 2, "order": 1505 }, @@ -8633,7 +9249,8 @@ "hfg_tags": "sports, kayak, canoe, water", "hfg_author": "Johanna Wellnitz", "skintone": "", - "skintone_base_emoji": "", + "skintone_base_emoji": "๐Ÿšฃ", + "skintone_base_hexcode": "1F6A3", "unicode": 1, "order": 1530 }, @@ -8648,6 +9265,7 @@ "hfg_author": "Johanna Wellnitz", "skintone": 1, "skintone_base_emoji": "๐Ÿšฃ", + "skintone_base_hexcode": "1F6A3", "unicode": 2, "order": 1531 }, @@ -8662,6 +9280,7 @@ "hfg_author": "Johanna Wellnitz", "skintone": 2, "skintone_base_emoji": "๐Ÿšฃ", + "skintone_base_hexcode": "1F6A3", "unicode": 2, "order": 1532 }, @@ -8676,6 +9295,7 @@ "hfg_author": "Johanna Wellnitz", "skintone": 3, "skintone_base_emoji": "๐Ÿšฃ", + "skintone_base_hexcode": "1F6A3", "unicode": 2, "order": 1533 }, @@ -8690,6 +9310,7 @@ "hfg_author": "Johanna Wellnitz", "skintone": 4, "skintone_base_emoji": "๐Ÿšฃ", + "skintone_base_hexcode": "1F6A3", "unicode": 2, "order": 1534 }, @@ -8704,6 +9325,7 @@ "hfg_author": "Johanna Wellnitz", "skintone": 5, "skintone_base_emoji": "๐Ÿšฃ", + "skintone_base_hexcode": "1F6A3", "unicode": 2, "order": 1535 }, @@ -8717,7 +9339,8 @@ "hfg_tags": "sports, water", "hfg_author": "Johanna Wellnitz", "skintone": "", - "skintone_base_emoji": "", + "skintone_base_emoji": "๐ŸŠ๏ธ", + "skintone_base_hexcode": "1F3CA", "unicode": 1, "order": 1560 }, @@ -8732,6 +9355,7 @@ "hfg_author": "Johanna Wellnitz", "skintone": 1, "skintone_base_emoji": "๐ŸŠ๏ธ", + "skintone_base_hexcode": "1F3CA", "unicode": 2, "order": 1561 }, @@ -8746,6 +9370,7 @@ "hfg_author": "Johanna Wellnitz", "skintone": 2, "skintone_base_emoji": "๐ŸŠ๏ธ", + "skintone_base_hexcode": "1F3CA", "unicode": 2, "order": 1562 }, @@ -8760,6 +9385,7 @@ "hfg_author": "Johanna Wellnitz", "skintone": 3, "skintone_base_emoji": "๐ŸŠ๏ธ", + "skintone_base_hexcode": "1F3CA", "unicode": 2, "order": 1563 }, @@ -8774,6 +9400,7 @@ "hfg_author": "Johanna Wellnitz", "skintone": 4, "skintone_base_emoji": "๐ŸŠ๏ธ", + "skintone_base_hexcode": "1F3CA", "unicode": 2, "order": 1564 }, @@ -8788,6 +9415,7 @@ "hfg_author": "Johanna Wellnitz", "skintone": 5, "skintone_base_emoji": "๐ŸŠ๏ธ", + "skintone_base_hexcode": "1F3CA", "unicode": 2, "order": 1565 }, @@ -8801,7 +9429,8 @@ "hfg_tags": "dribble, sports", "hfg_author": "Johanna Wellnitz", "skintone": "", - "skintone_base_emoji": "", + "skintone_base_emoji": "โ›น๏ธ", + "skintone_base_hexcode": "26F9", "unicode": 1, "order": 1591 }, @@ -8816,6 +9445,7 @@ "hfg_author": "Johanna Wellnitz", "skintone": 1, "skintone_base_emoji": "โ›น๏ธ", + "skintone_base_hexcode": "26F9", "unicode": 2, "order": 1592 }, @@ -8830,6 +9460,7 @@ "hfg_author": "Johanna Wellnitz", "skintone": 2, "skintone_base_emoji": "โ›น๏ธ", + "skintone_base_hexcode": "26F9", "unicode": 2, "order": 1593 }, @@ -8844,6 +9475,7 @@ "hfg_author": "Johanna Wellnitz", "skintone": 3, "skintone_base_emoji": "โ›น๏ธ", + "skintone_base_hexcode": "26F9", "unicode": 2, "order": 1594 }, @@ -8858,6 +9490,7 @@ "hfg_author": "Johanna Wellnitz", "skintone": 4, "skintone_base_emoji": "โ›น๏ธ", + "skintone_base_hexcode": "26F9", "unicode": 2, "order": 1595 }, @@ -8872,6 +9505,7 @@ "hfg_author": "Johanna Wellnitz", "skintone": 5, "skintone_base_emoji": "โ›น๏ธ", + "skintone_base_hexcode": "26F9", "unicode": 2, "order": 1596 }, @@ -8885,7 +9519,8 @@ "hfg_tags": "sports, power", "hfg_author": "Johanna Wellnitz", "skintone": "", - "skintone_base_emoji": "", + "skintone_base_emoji": "๐Ÿ‹๏ธ", + "skintone_base_hexcode": "1F3CB", "unicode": 1, "order": 1626 }, @@ -8900,6 +9535,7 @@ "hfg_author": "Johanna Wellnitz", "skintone": 1, "skintone_base_emoji": "๐Ÿ‹๏ธ", + "skintone_base_hexcode": "1F3CB", "unicode": 2, "order": 1627 }, @@ -8914,6 +9550,7 @@ "hfg_author": "Johanna Wellnitz", "skintone": 2, "skintone_base_emoji": "๐Ÿ‹๏ธ", + "skintone_base_hexcode": "1F3CB", "unicode": 2, "order": 1628 }, @@ -8928,6 +9565,7 @@ "hfg_author": "Johanna Wellnitz", "skintone": 3, "skintone_base_emoji": "๐Ÿ‹๏ธ", + "skintone_base_hexcode": "1F3CB", "unicode": 2, "order": 1629 }, @@ -8942,6 +9580,7 @@ "hfg_author": "Johanna Wellnitz", "skintone": 4, "skintone_base_emoji": "๐Ÿ‹๏ธ", + "skintone_base_hexcode": "1F3CB", "unicode": 2, "order": 1630 }, @@ -8956,6 +9595,7 @@ "hfg_author": "Johanna Wellnitz", "skintone": 5, "skintone_base_emoji": "๐Ÿ‹๏ธ", + "skintone_base_hexcode": "1F3CB", "unicode": 2, "order": 1631 }, @@ -8969,7 +9609,8 @@ "hfg_tags": "sports", "hfg_author": "Johanna Wellnitz", "skintone": "", - "skintone_base_emoji": "", + "skintone_base_emoji": "๐Ÿšด", + "skintone_base_hexcode": "1F6B4", "unicode": 1, "order": 1660 }, @@ -8984,6 +9625,7 @@ "hfg_author": "Johanna Wellnitz", "skintone": 1, "skintone_base_emoji": "๐Ÿšด", + "skintone_base_hexcode": "1F6B4", "unicode": 2, "order": 1661 }, @@ -8998,6 +9640,7 @@ "hfg_author": "Johanna Wellnitz", "skintone": 2, "skintone_base_emoji": "๐Ÿšด", + "skintone_base_hexcode": "1F6B4", "unicode": 2, "order": 1662 }, @@ -9012,6 +9655,7 @@ "hfg_author": "Johanna Wellnitz", "skintone": 3, "skintone_base_emoji": "๐Ÿšด", + "skintone_base_hexcode": "1F6B4", "unicode": 2, "order": 1663 }, @@ -9026,6 +9670,7 @@ "hfg_author": "Johanna Wellnitz", "skintone": 4, "skintone_base_emoji": "๐Ÿšด", + "skintone_base_hexcode": "1F6B4", "unicode": 2, "order": 1664 }, @@ -9040,6 +9685,7 @@ "hfg_author": "Johanna Wellnitz", "skintone": 5, "skintone_base_emoji": "๐Ÿšด", + "skintone_base_hexcode": "1F6B4", "unicode": 2, "order": 1665 }, @@ -9054,6 +9700,7 @@ "hfg_author": "Johanna Wellnitz", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 1721 }, @@ -9068,6 +9715,7 @@ "hfg_author": "Johanna Wellnitz", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 1723 }, @@ -9081,7 +9729,8 @@ "hfg_tags": "sports", "hfg_author": "Johanna Wellnitz", "skintone": "", - "skintone_base_emoji": "", + "skintone_base_emoji": "๐Ÿคธ", + "skintone_base_hexcode": "1F938", "unicode": 3, "order": 1724 }, @@ -9096,6 +9745,7 @@ "hfg_author": "Johanna Wellnitz", "skintone": 1, "skintone_base_emoji": "๐Ÿคธ", + "skintone_base_hexcode": "1F938", "unicode": 3, "order": 1725 }, @@ -9110,6 +9760,7 @@ "hfg_author": "Johanna Wellnitz", "skintone": 2, "skintone_base_emoji": "๐Ÿคธ", + "skintone_base_hexcode": "1F938", "unicode": 3, "order": 1726 }, @@ -9124,6 +9775,7 @@ "hfg_author": "Johanna Wellnitz", "skintone": 3, "skintone_base_emoji": "๐Ÿคธ", + "skintone_base_hexcode": "1F938", "unicode": 3, "order": 1727 }, @@ -9138,6 +9790,7 @@ "hfg_author": "Johanna Wellnitz", "skintone": 4, "skintone_base_emoji": "๐Ÿคธ", + "skintone_base_hexcode": "1F938", "unicode": 3, "order": 1728 }, @@ -9152,6 +9805,7 @@ "hfg_author": "Johanna Wellnitz", "skintone": 5, "skintone_base_emoji": "๐Ÿคธ", + "skintone_base_hexcode": "1F938", "unicode": 3, "order": 1729 }, @@ -9166,6 +9820,7 @@ "hfg_author": "Johanna Wellnitz", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 3, "order": 1754 }, @@ -9179,7 +9834,8 @@ "hfg_tags": "sports", "hfg_author": "Johanna Wellnitz", "skintone": "", - "skintone_base_emoji": "", + "skintone_base_emoji": "๐Ÿคฝ", + "skintone_base_hexcode": "1F93D", "unicode": 3, "order": 1759 }, @@ -9194,6 +9850,7 @@ "hfg_author": "Johanna Wellnitz", "skintone": 1, "skintone_base_emoji": "๐Ÿคฝ", + "skintone_base_hexcode": "1F93D", "unicode": 3, "order": 1760 }, @@ -9208,6 +9865,7 @@ "hfg_author": "Johanna Wellnitz", "skintone": 2, "skintone_base_emoji": "๐Ÿคฝ", + "skintone_base_hexcode": "1F93D", "unicode": 3, "order": 1761 }, @@ -9222,6 +9880,7 @@ "hfg_author": "Johanna Wellnitz", "skintone": 3, "skintone_base_emoji": "๐Ÿคฝ", + "skintone_base_hexcode": "1F93D", "unicode": 3, "order": 1762 }, @@ -9236,6 +9895,7 @@ "hfg_author": "Johanna Wellnitz", "skintone": 4, "skintone_base_emoji": "๐Ÿคฝ", + "skintone_base_hexcode": "1F93D", "unicode": 3, "order": 1763 }, @@ -9250,6 +9910,7 @@ "hfg_author": "Johanna Wellnitz", "skintone": 5, "skintone_base_emoji": "๐Ÿคฝ", + "skintone_base_hexcode": "1F93D", "unicode": 3, "order": 1764 }, @@ -9263,7 +9924,8 @@ "hfg_tags": "sports, indoor", "hfg_author": "Johanna Wellnitz", "skintone": "", - "skintone_base_emoji": "", + "skintone_base_emoji": "๐Ÿคพ", + "skintone_base_hexcode": "1F93E", "unicode": 3, "order": 1789 }, @@ -9278,6 +9940,7 @@ "hfg_author": "Johanna Wellnitz", "skintone": 1, "skintone_base_emoji": "๐Ÿคพ", + "skintone_base_hexcode": "1F93E", "unicode": 3, "order": 1790 }, @@ -9292,6 +9955,7 @@ "hfg_author": "Johanna Wellnitz", "skintone": 2, "skintone_base_emoji": "๐Ÿคพ", + "skintone_base_hexcode": "1F93E", "unicode": 3, "order": 1791 }, @@ -9306,6 +9970,7 @@ "hfg_author": "Johanna Wellnitz", "skintone": 3, "skintone_base_emoji": "๐Ÿคพ", + "skintone_base_hexcode": "1F93E", "unicode": 3, "order": 1792 }, @@ -9320,6 +9985,7 @@ "hfg_author": "Johanna Wellnitz", "skintone": 4, "skintone_base_emoji": "๐Ÿคพ", + "skintone_base_hexcode": "1F93E", "unicode": 3, "order": 1793 }, @@ -9334,6 +10000,7 @@ "hfg_author": "Johanna Wellnitz", "skintone": 5, "skintone_base_emoji": "๐Ÿคพ", + "skintone_base_hexcode": "1F93E", "unicode": 3, "order": 1794 }, @@ -9347,7 +10014,8 @@ "hfg_tags": "artist", "hfg_author": "Johanna Wellnitz", "skintone": "", - "skintone_base_emoji": "", + "skintone_base_emoji": "๐Ÿคน", + "skintone_base_hexcode": "1F939", "unicode": 3, "order": 1819 }, @@ -9362,6 +10030,7 @@ "hfg_author": "Johanna Wellnitz", "skintone": 1, "skintone_base_emoji": "๐Ÿคน", + "skintone_base_hexcode": "1F939", "unicode": 3, "order": 1820 }, @@ -9376,6 +10045,7 @@ "hfg_author": "Johanna Wellnitz", "skintone": 2, "skintone_base_emoji": "๐Ÿคน", + "skintone_base_hexcode": "1F939", "unicode": 3, "order": 1821 }, @@ -9390,6 +10060,7 @@ "hfg_author": "Johanna Wellnitz", "skintone": 3, "skintone_base_emoji": "๐Ÿคน", + "skintone_base_hexcode": "1F939", "unicode": 3, "order": 1822 }, @@ -9404,6 +10075,7 @@ "hfg_author": "Johanna Wellnitz", "skintone": 4, "skintone_base_emoji": "๐Ÿคน", + "skintone_base_hexcode": "1F939", "unicode": 3, "order": 1823 }, @@ -9418,6 +10090,7 @@ "hfg_author": "Johanna Wellnitz", "skintone": 5, "skintone_base_emoji": "๐Ÿคน", + "skintone_base_hexcode": "1F939", "unicode": 3, "order": 1824 }, @@ -9432,6 +10105,7 @@ "hfg_author": "Lisa Schulz", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 1849 }, @@ -9446,6 +10120,7 @@ "hfg_author": "Lisa Schulz", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 1850 }, @@ -9460,6 +10135,7 @@ "hfg_author": "Lisa Schulz", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 1851 }, @@ -9474,6 +10150,7 @@ "hfg_author": "Lisa Schulz", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 1852 }, @@ -9488,6 +10165,7 @@ "hfg_author": "Lisa Schulz", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 2, "order": 1853 }, @@ -9502,6 +10180,7 @@ "hfg_author": "Lisa Schulz", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 2, "order": 1855 }, @@ -9516,6 +10195,7 @@ "hfg_author": "Lisa Schulz", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 2, "order": 1857 }, @@ -9530,6 +10210,7 @@ "hfg_author": "Lisa Schulz", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 1859 }, @@ -9544,6 +10225,7 @@ "hfg_author": "Lisa Schulz", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 2, "order": 1860 }, @@ -9558,6 +10240,7 @@ "hfg_author": "Lisa Schulz", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 2, "order": 1862 }, @@ -9572,6 +10255,7 @@ "hfg_author": "Lisa Schulz", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 2, "order": 1864 }, @@ -9586,6 +10270,7 @@ "hfg_author": "Lisa Schulz", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 1866 }, @@ -9600,6 +10285,7 @@ "hfg_author": "Lisa Schulz", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 2, "order": 1868 }, @@ -9613,7 +10299,8 @@ "hfg_tags": "camera, phone", "hfg_author": "Julian Grรผneberg", "skintone": "", - "skintone_base_emoji": "", + "skintone_base_emoji": "๐Ÿคณ", + "skintone_base_hexcode": "1F933", "unicode": 3, "order": 1892 }, @@ -9628,6 +10315,7 @@ "hfg_author": "Julian Grรผneberg", "skintone": 1, "skintone_base_emoji": "๐Ÿคณ", + "skintone_base_hexcode": "1F933", "unicode": 3, "order": 1893 }, @@ -9642,6 +10330,7 @@ "hfg_author": "Julian Grรผneberg", "skintone": 2, "skintone_base_emoji": "๐Ÿคณ", + "skintone_base_hexcode": "1F933", "unicode": 3, "order": 1894 }, @@ -9656,6 +10345,7 @@ "hfg_author": "Julian Grรผneberg", "skintone": 3, "skintone_base_emoji": "๐Ÿคณ", + "skintone_base_hexcode": "1F933", "unicode": 3, "order": 1895 }, @@ -9670,6 +10360,7 @@ "hfg_author": "Julian Grรผneberg", "skintone": 4, "skintone_base_emoji": "๐Ÿคณ", + "skintone_base_hexcode": "1F933", "unicode": 3, "order": 1896 }, @@ -9684,6 +10375,7 @@ "hfg_author": "Julian Grรผneberg", "skintone": 5, "skintone_base_emoji": "๐Ÿคณ", + "skintone_base_hexcode": "1F933", "unicode": 3, "order": 1897 }, @@ -9697,7 +10389,8 @@ "hfg_tags": "Flexed Biceps, Biceps, Flexed, flex, muscle, Feats of Strength, strength, feats, Strong, lisa schulz, julian grรผneberg", "hfg_author": "Julian Grรผneberg", "skintone": "", - "skintone_base_emoji": "", + "skintone_base_emoji": "๐Ÿ’ช", + "skintone_base_hexcode": "1F4AA", "unicode": 1, "order": 1898 }, @@ -9712,6 +10405,7 @@ "hfg_author": "Julian Grรผneberg", "skintone": 1, "skintone_base_emoji": "๐Ÿ’ช", + "skintone_base_hexcode": "1F4AA", "unicode": 2, "order": 1899 }, @@ -9726,6 +10420,7 @@ "hfg_author": "Julian Grรผneberg", "skintone": 2, "skintone_base_emoji": "๐Ÿ’ช", + "skintone_base_hexcode": "1F4AA", "unicode": 2, "order": 1900 }, @@ -9740,6 +10435,7 @@ "hfg_author": "Julian Grรผneberg", "skintone": 3, "skintone_base_emoji": "๐Ÿ’ช", + "skintone_base_hexcode": "1F4AA", "unicode": 2, "order": 1901 }, @@ -9754,6 +10450,7 @@ "hfg_author": "Julian Grรผneberg", "skintone": 4, "skintone_base_emoji": "๐Ÿ’ช", + "skintone_base_hexcode": "1F4AA", "unicode": 2, "order": 1902 }, @@ -9768,6 +10465,7 @@ "hfg_author": "Julian Grรผneberg", "skintone": 5, "skintone_base_emoji": "๐Ÿ’ช", + "skintone_base_hexcode": "1F4AA", "unicode": 2, "order": 1903 }, @@ -9781,7 +10479,8 @@ "hfg_tags": "backhand, finger, hand, index, point, point, left, Middle Finger, White left", "hfg_author": "Julian Grรผneberg", "skintone": "", - "skintone_base_emoji": "", + "skintone_base_emoji": "๐Ÿ‘ˆ๏ธ", + "skintone_base_hexcode": "1F448", "unicode": 1, "order": 1916 }, @@ -9796,6 +10495,7 @@ "hfg_author": "Julian Grรผneberg", "skintone": 1, "skintone_base_emoji": "๐Ÿ‘ˆ๏ธ", + "skintone_base_hexcode": "1F448", "unicode": 2, "order": 1917 }, @@ -9810,6 +10510,7 @@ "hfg_author": "Julian Grรผneberg", "skintone": 2, "skintone_base_emoji": "๐Ÿ‘ˆ๏ธ", + "skintone_base_hexcode": "1F448", "unicode": 2, "order": 1918 }, @@ -9824,6 +10525,7 @@ "hfg_author": "Julian Grรผneberg", "skintone": 3, "skintone_base_emoji": "๐Ÿ‘ˆ๏ธ", + "skintone_base_hexcode": "1F448", "unicode": 2, "order": 1919 }, @@ -9838,6 +10540,7 @@ "hfg_author": "Julian Grรผneberg", "skintone": 4, "skintone_base_emoji": "๐Ÿ‘ˆ๏ธ", + "skintone_base_hexcode": "1F448", "unicode": 2, "order": 1920 }, @@ -9852,6 +10555,7 @@ "hfg_author": "Julian Grรผneberg", "skintone": 5, "skintone_base_emoji": "๐Ÿ‘ˆ๏ธ", + "skintone_base_hexcode": "1F448", "unicode": 2, "order": 1921 }, @@ -9865,7 +10569,8 @@ "hfg_tags": "backhand, finger, hand, index, point, point, right, Middle Finger, White right", "hfg_author": "Julian Grรผneberg", "skintone": "", - "skintone_base_emoji": "", + "skintone_base_emoji": "๐Ÿ‘‰๏ธ", + "skintone_base_hexcode": "1F449", "unicode": 1, "order": 1922 }, @@ -9880,6 +10585,7 @@ "hfg_author": "Julian Grรผneberg", "skintone": 1, "skintone_base_emoji": "๐Ÿ‘‰๏ธ", + "skintone_base_hexcode": "1F449", "unicode": 2, "order": 1923 }, @@ -9894,6 +10600,7 @@ "hfg_author": "Julian Grรผneberg", "skintone": 2, "skintone_base_emoji": "๐Ÿ‘‰๏ธ", + "skintone_base_hexcode": "1F449", "unicode": 2, "order": 1924 }, @@ -9908,6 +10615,7 @@ "hfg_author": "Julian Grรผneberg", "skintone": 3, "skintone_base_emoji": "๐Ÿ‘‰๏ธ", + "skintone_base_hexcode": "1F449", "unicode": 2, "order": 1925 }, @@ -9922,6 +10630,7 @@ "hfg_author": "Julian Grรผneberg", "skintone": 4, "skintone_base_emoji": "๐Ÿ‘‰๏ธ", + "skintone_base_hexcode": "1F449", "unicode": 2, "order": 1926 }, @@ -9936,6 +10645,7 @@ "hfg_author": "Julian Grรผneberg", "skintone": 5, "skintone_base_emoji": "๐Ÿ‘‰๏ธ", + "skintone_base_hexcode": "1F449", "unicode": 2, "order": 1927 }, @@ -9949,7 +10659,8 @@ "hfg_tags": "finger, hand, index, point, up", "hfg_author": "Julian Grรผneberg", "skintone": "", - "skintone_base_emoji": "", + "skintone_base_emoji": "โ˜๏ธ", + "skintone_base_hexcode": "261D", "unicode": 1, "order": 1929 }, @@ -9964,6 +10675,7 @@ "hfg_author": "Julian Grรผneberg", "skintone": 1, "skintone_base_emoji": "โ˜๏ธ", + "skintone_base_hexcode": "261D", "unicode": 2, "order": 1930 }, @@ -9978,6 +10690,7 @@ "hfg_author": "Julian Grรผneberg", "skintone": 2, "skintone_base_emoji": "โ˜๏ธ", + "skintone_base_hexcode": "261D", "unicode": 2, "order": 1931 }, @@ -9992,6 +10705,7 @@ "hfg_author": "Julian Grรผneberg", "skintone": 3, "skintone_base_emoji": "โ˜๏ธ", + "skintone_base_hexcode": "261D", "unicode": 2, "order": 1932 }, @@ -10006,6 +10720,7 @@ "hfg_author": "Julian Grรผneberg", "skintone": 4, "skintone_base_emoji": "โ˜๏ธ", + "skintone_base_hexcode": "261D", "unicode": 2, "order": 1933 }, @@ -10020,6 +10735,7 @@ "hfg_author": "Julian Grรผneberg", "skintone": 5, "skintone_base_emoji": "โ˜๏ธ", + "skintone_base_hexcode": "261D", "unicode": 2, "order": 1934 }, @@ -10033,7 +10749,8 @@ "hfg_tags": "backhand, finger, hand, index, point, up, Middle Finger, White Up", "hfg_author": "Julian Grรผneberg", "skintone": "", - "skintone_base_emoji": "", + "skintone_base_emoji": "๐Ÿ‘†๏ธ", + "skintone_base_hexcode": "1F446", "unicode": 1, "order": 1935 }, @@ -10048,6 +10765,7 @@ "hfg_author": "Julian Grรผneberg", "skintone": 1, "skintone_base_emoji": "๐Ÿ‘†๏ธ", + "skintone_base_hexcode": "1F446", "unicode": 2, "order": 1936 }, @@ -10062,6 +10780,7 @@ "hfg_author": "Julian Grรผneberg", "skintone": 2, "skintone_base_emoji": "๐Ÿ‘†๏ธ", + "skintone_base_hexcode": "1F446", "unicode": 2, "order": 1937 }, @@ -10076,6 +10795,7 @@ "hfg_author": "Julian Grรผneberg", "skintone": 3, "skintone_base_emoji": "๐Ÿ‘†๏ธ", + "skintone_base_hexcode": "1F446", "unicode": 2, "order": 1938 }, @@ -10090,6 +10810,7 @@ "hfg_author": "Julian Grรผneberg", "skintone": 4, "skintone_base_emoji": "๐Ÿ‘†๏ธ", + "skintone_base_hexcode": "1F446", "unicode": 2, "order": 1939 }, @@ -10104,6 +10825,7 @@ "hfg_author": "Julian Grรผneberg", "skintone": 5, "skintone_base_emoji": "๐Ÿ‘†๏ธ", + "skintone_base_hexcode": "1F446", "unicode": 2, "order": 1940 }, @@ -10117,7 +10839,8 @@ "hfg_tags": "finger, hand, fingering", "hfg_author": "Julian Grรผneberg", "skintone": "", - "skintone_base_emoji": "", + "skintone_base_emoji": "๐Ÿ–•", + "skintone_base_hexcode": "1F595", "unicode": 1, "order": 1941 }, @@ -10132,6 +10855,7 @@ "hfg_author": "Julian Grรผneberg", "skintone": 1, "skintone_base_emoji": "๐Ÿ–•", + "skintone_base_hexcode": "1F595", "unicode": 2, "order": 1942 }, @@ -10146,6 +10870,7 @@ "hfg_author": "Julian Grรผneberg", "skintone": 2, "skintone_base_emoji": "๐Ÿ–•", + "skintone_base_hexcode": "1F595", "unicode": 2, "order": 1943 }, @@ -10160,6 +10885,7 @@ "hfg_author": "Julian Grรผneberg", "skintone": 3, "skintone_base_emoji": "๐Ÿ–•", + "skintone_base_hexcode": "1F595", "unicode": 2, "order": 1944 }, @@ -10174,6 +10900,7 @@ "hfg_author": "Julian Grรผneberg", "skintone": 4, "skintone_base_emoji": "๐Ÿ–•", + "skintone_base_hexcode": "1F595", "unicode": 2, "order": 1945 }, @@ -10188,6 +10915,7 @@ "hfg_author": "Julian Grรผneberg", "skintone": 5, "skintone_base_emoji": "๐Ÿ–•", + "skintone_base_hexcode": "1F595", "unicode": 2, "order": 1946 }, @@ -10201,7 +10929,8 @@ "hfg_tags": "backhand, down, finger, hand, index, point, point, down, Middle Finger, White down", "hfg_author": "Julian Grรผneberg", "skintone": "", - "skintone_base_emoji": "", + "skintone_base_emoji": "๐Ÿ‘‡๏ธ", + "skintone_base_hexcode": "1F447", "unicode": 1, "order": 1947 }, @@ -10216,6 +10945,7 @@ "hfg_author": "Julian Grรผneberg", "skintone": 1, "skintone_base_emoji": "๐Ÿ‘‡๏ธ", + "skintone_base_hexcode": "1F447", "unicode": 2, "order": 1948 }, @@ -10230,6 +10960,7 @@ "hfg_author": "Julian Grรผneberg", "skintone": 2, "skintone_base_emoji": "๐Ÿ‘‡๏ธ", + "skintone_base_hexcode": "1F447", "unicode": 2, "order": 1949 }, @@ -10244,6 +10975,7 @@ "hfg_author": "Julian Grรผneberg", "skintone": 3, "skintone_base_emoji": "๐Ÿ‘‡๏ธ", + "skintone_base_hexcode": "1F447", "unicode": 2, "order": 1950 }, @@ -10258,6 +10990,7 @@ "hfg_author": "Julian Grรผneberg", "skintone": 4, "skintone_base_emoji": "๐Ÿ‘‡๏ธ", + "skintone_base_hexcode": "1F447", "unicode": 2, "order": 1951 }, @@ -10272,6 +11005,7 @@ "hfg_author": "Julian Grรผneberg", "skintone": 5, "skintone_base_emoji": "๐Ÿ‘‡๏ธ", + "skintone_base_hexcode": "1F447", "unicode": 2, "order": 1952 }, @@ -10285,7 +11019,8 @@ "hfg_tags": "hand, v, victory, Air Quotes, quotes, Peace, Peace Sign, V Sign", "hfg_author": "Julian Grรผneberg", "skintone": "", - "skintone_base_emoji": "", + "skintone_base_emoji": "โœŒ๏ธ", + "skintone_base_hexcode": "270C", "unicode": 1, "order": 1954 }, @@ -10300,6 +11035,7 @@ "hfg_author": "Julian Grรผneberg", "skintone": 1, "skintone_base_emoji": "โœŒ๏ธ", + "skintone_base_hexcode": "270C", "unicode": 2, "order": 1955 }, @@ -10314,6 +11050,7 @@ "hfg_author": "Julian Grรผneberg", "skintone": 2, "skintone_base_emoji": "โœŒ๏ธ", + "skintone_base_hexcode": "270C", "unicode": 2, "order": 1956 }, @@ -10328,6 +11065,7 @@ "hfg_author": "Julian Grรผneberg", "skintone": 3, "skintone_base_emoji": "โœŒ๏ธ", + "skintone_base_hexcode": "270C", "unicode": 2, "order": 1957 }, @@ -10342,6 +11080,7 @@ "hfg_author": "Julian Grรผneberg", "skintone": 4, "skintone_base_emoji": "โœŒ๏ธ", + "skintone_base_hexcode": "270C", "unicode": 2, "order": 1958 }, @@ -10356,6 +11095,7 @@ "hfg_author": "Julian Grรผneberg", "skintone": 5, "skintone_base_emoji": "โœŒ๏ธ", + "skintone_base_hexcode": "270C", "unicode": 2, "order": 1959 }, @@ -10369,7 +11109,8 @@ "hfg_tags": "Fingers Crossed, crossed, fingers, Good Luck, luck", "hfg_author": "Julian Grรผneberg", "skintone": "", - "skintone_base_emoji": "", + "skintone_base_emoji": "๐Ÿคž", + "skintone_base_hexcode": "1F91E", "unicode": 3, "order": 1960 }, @@ -10384,6 +11125,7 @@ "hfg_author": "Julian Grรผneberg", "skintone": 1, "skintone_base_emoji": "๐Ÿคž", + "skintone_base_hexcode": "1F91E", "unicode": 3, "order": 1961 }, @@ -10398,6 +11140,7 @@ "hfg_author": "Julian Grรผneberg", "skintone": 2, "skintone_base_emoji": "๐Ÿคž", + "skintone_base_hexcode": "1F91E", "unicode": 3, "order": 1962 }, @@ -10412,6 +11155,7 @@ "hfg_author": "Julian Grรผneberg", "skintone": 3, "skintone_base_emoji": "๐Ÿคž", + "skintone_base_hexcode": "1F91E", "unicode": 3, "order": 1963 }, @@ -10426,6 +11170,7 @@ "hfg_author": "Julian Grรผneberg", "skintone": 4, "skintone_base_emoji": "๐Ÿคž", + "skintone_base_hexcode": "1F91E", "unicode": 3, "order": 1964 }, @@ -10440,6 +11185,7 @@ "hfg_author": "Julian Grรผneberg", "skintone": 5, "skintone_base_emoji": "๐Ÿคž", + "skintone_base_hexcode": "1F91E", "unicode": 3, "order": 1965 }, @@ -10453,7 +11199,8 @@ "hfg_tags": "finger, hand, spock, vulcan", "hfg_author": "Julian Grรผneberg", "skintone": "", - "skintone_base_emoji": "", + "skintone_base_emoji": "๐Ÿ––", + "skintone_base_hexcode": "1F596", "unicode": 1, "order": 1966 }, @@ -10468,6 +11215,7 @@ "hfg_author": "Julian Grรผneberg", "skintone": 1, "skintone_base_emoji": "๐Ÿ––", + "skintone_base_hexcode": "1F596", "unicode": 2, "order": 1967 }, @@ -10482,6 +11230,7 @@ "hfg_author": "Julian Grรผneberg", "skintone": 2, "skintone_base_emoji": "๐Ÿ––", + "skintone_base_hexcode": "1F596", "unicode": 2, "order": 1968 }, @@ -10496,6 +11245,7 @@ "hfg_author": "Julian Grรผneberg", "skintone": 3, "skintone_base_emoji": "๐Ÿ––", + "skintone_base_hexcode": "1F596", "unicode": 2, "order": 1969 }, @@ -10510,6 +11260,7 @@ "hfg_author": "Julian Grรผneberg", "skintone": 4, "skintone_base_emoji": "๐Ÿ––", + "skintone_base_hexcode": "1F596", "unicode": 2, "order": 1970 }, @@ -10524,6 +11275,7 @@ "hfg_author": "Julian Grรผneberg", "skintone": 5, "skintone_base_emoji": "๐Ÿ––", + "skintone_base_hexcode": "1F596", "unicode": 2, "order": 1971 }, @@ -10537,7 +11289,8 @@ "hfg_tags": "rock on, finger, hand, horns, rock-on, rock, Devil, Devil Fingers, Heavy, Metal, Heavy Metal, rock", "hfg_author": "Julian Grรผneberg", "skintone": "", - "skintone_base_emoji": "", + "skintone_base_emoji": "๐Ÿค˜", + "skintone_base_hexcode": "1F918", "unicode": 1, "order": 1972 }, @@ -10552,6 +11305,7 @@ "hfg_author": "Julian Grรผneberg", "skintone": 1, "skintone_base_emoji": "๐Ÿค˜", + "skintone_base_hexcode": "1F918", "unicode": 2, "order": 1973 }, @@ -10566,6 +11320,7 @@ "hfg_author": "Julian Grรผneberg", "skintone": 2, "skintone_base_emoji": "๐Ÿค˜", + "skintone_base_hexcode": "1F918", "unicode": 2, "order": 1974 }, @@ -10580,6 +11335,7 @@ "hfg_author": "Julian Grรผneberg", "skintone": 3, "skintone_base_emoji": "๐Ÿค˜", + "skintone_base_hexcode": "1F918", "unicode": 2, "order": 1975 }, @@ -10594,6 +11350,7 @@ "hfg_author": "Julian Grรผneberg", "skintone": 4, "skintone_base_emoji": "๐Ÿค˜", + "skintone_base_hexcode": "1F918", "unicode": 2, "order": 1976 }, @@ -10608,6 +11365,7 @@ "hfg_author": "Julian Grรผneberg", "skintone": 5, "skintone_base_emoji": "๐Ÿค˜", + "skintone_base_hexcode": "1F918", "unicode": 2, "order": 1977 }, @@ -10621,7 +11379,8 @@ "hfg_tags": "Call Me Hand, call, hand, Phone, Shaka", "hfg_author": "Julian Grรผneberg", "skintone": "", - "skintone_base_emoji": "", + "skintone_base_emoji": "๐Ÿค™", + "skintone_base_hexcode": "1F919", "unicode": 3, "order": 1978 }, @@ -10636,6 +11395,7 @@ "hfg_author": "Julian Grรผneberg", "skintone": 1, "skintone_base_emoji": "๐Ÿค™", + "skintone_base_hexcode": "1F919", "unicode": 3, "order": 1979 }, @@ -10650,6 +11410,7 @@ "hfg_author": "Julian Grรผneberg", "skintone": 2, "skintone_base_emoji": "๐Ÿค™", + "skintone_base_hexcode": "1F919", "unicode": 3, "order": 1980 }, @@ -10664,6 +11425,7 @@ "hfg_author": "Julian Grรผneberg", "skintone": 3, "skintone_base_emoji": "๐Ÿค™", + "skintone_base_hexcode": "1F919", "unicode": 3, "order": 1981 }, @@ -10678,6 +11440,7 @@ "hfg_author": "Julian Grรผneberg", "skintone": 4, "skintone_base_emoji": "๐Ÿค™", + "skintone_base_hexcode": "1F919", "unicode": 3, "order": 1982 }, @@ -10692,6 +11455,7 @@ "hfg_author": "Julian Grรผneberg", "skintone": 5, "skintone_base_emoji": "๐Ÿค™", + "skintone_base_hexcode": "1F919", "unicode": 3, "order": 1983 }, @@ -10705,7 +11469,8 @@ "hfg_tags": "Five Hand, Hand, Five, Splayed", "hfg_author": "Julian Grรผneberg", "skintone": "", - "skintone_base_emoji": "", + "skintone_base_emoji": "๐Ÿ–๏ธ", + "skintone_base_hexcode": "1F590", "unicode": 1, "order": 1985 }, @@ -10720,6 +11485,7 @@ "hfg_author": "Julian Grรผneberg", "skintone": 1, "skintone_base_emoji": "๐Ÿ–๏ธ", + "skintone_base_hexcode": "1F590", "unicode": 2, "order": 1986 }, @@ -10734,6 +11500,7 @@ "hfg_author": "Julian Grรผneberg", "skintone": 2, "skintone_base_emoji": "๐Ÿ–๏ธ", + "skintone_base_hexcode": "1F590", "unicode": 2, "order": 1987 }, @@ -10748,6 +11515,7 @@ "hfg_author": "Julian Grรผneberg", "skintone": 3, "skintone_base_emoji": "๐Ÿ–๏ธ", + "skintone_base_hexcode": "1F590", "unicode": 2, "order": 1988 }, @@ -10762,6 +11530,7 @@ "hfg_author": "Julian Grรผneberg", "skintone": 4, "skintone_base_emoji": "๐Ÿ–๏ธ", + "skintone_base_hexcode": "1F590", "unicode": 2, "order": 1989 }, @@ -10776,6 +11545,7 @@ "hfg_author": "Julian Grรผneberg", "skintone": 5, "skintone_base_emoji": "๐Ÿ–๏ธ", + "skintone_base_hexcode": "1F590", "unicode": 2, "order": 1990 }, @@ -10789,7 +11559,8 @@ "hfg_tags": "raise, raised, raised hand, hand", "hfg_author": "Julian Grรผneberg", "skintone": "", - "skintone_base_emoji": "", + "skintone_base_emoji": "โœ‹", + "skintone_base_hexcode": "270B", "unicode": 1, "order": 1991 }, @@ -10804,6 +11575,7 @@ "hfg_author": "Julian Grรผneberg", "skintone": 1, "skintone_base_emoji": "โœ‹", + "skintone_base_hexcode": "270B", "unicode": 2, "order": 1992 }, @@ -10818,6 +11590,7 @@ "hfg_author": "Julian Grรผneberg", "skintone": 2, "skintone_base_emoji": "โœ‹", + "skintone_base_hexcode": "270B", "unicode": 2, "order": 1993 }, @@ -10832,6 +11605,7 @@ "hfg_author": "Julian Grรผneberg", "skintone": 3, "skintone_base_emoji": "โœ‹", + "skintone_base_hexcode": "270B", "unicode": 2, "order": 1994 }, @@ -10846,6 +11620,7 @@ "hfg_author": "Julian Grรผneberg", "skintone": 4, "skintone_base_emoji": "โœ‹", + "skintone_base_hexcode": "270B", "unicode": 2, "order": 1995 }, @@ -10860,6 +11635,7 @@ "hfg_author": "Julian Grรผneberg", "skintone": 5, "skintone_base_emoji": "โœ‹", + "skintone_base_hexcode": "270B", "unicode": 2, "order": 1996 }, @@ -10873,7 +11649,8 @@ "hfg_tags": "hand, ok, okay, perfect", "hfg_author": "Julian Grรผneberg", "skintone": "", - "skintone_base_emoji": "", + "skintone_base_emoji": "๐Ÿ‘Œ", + "skintone_base_hexcode": "1F44C", "unicode": 1, "order": 1997 }, @@ -10888,6 +11665,7 @@ "hfg_author": "Julian Grรผneberg", "skintone": 1, "skintone_base_emoji": "๐Ÿ‘Œ", + "skintone_base_hexcode": "1F44C", "unicode": 2, "order": 1998 }, @@ -10902,6 +11680,7 @@ "hfg_author": "Julian Grรผneberg", "skintone": 2, "skintone_base_emoji": "๐Ÿ‘Œ", + "skintone_base_hexcode": "1F44C", "unicode": 2, "order": 1999 }, @@ -10916,6 +11695,7 @@ "hfg_author": "Julian Grรผneberg", "skintone": 3, "skintone_base_emoji": "๐Ÿ‘Œ", + "skintone_base_hexcode": "1F44C", "unicode": 2, "order": 2000 }, @@ -10930,6 +11710,7 @@ "hfg_author": "Julian Grรผneberg", "skintone": 4, "skintone_base_emoji": "๐Ÿ‘Œ", + "skintone_base_hexcode": "1F44C", "unicode": 2, "order": 2001 }, @@ -10944,6 +11725,7 @@ "hfg_author": "Julian Grรผneberg", "skintone": 5, "skintone_base_emoji": "๐Ÿ‘Œ", + "skintone_base_hexcode": "1F44C", "unicode": 2, "order": 2002 }, @@ -10957,7 +11739,8 @@ "hfg_tags": "Like, yes, +1, hand, thumb, up, thumbs up, thumbs up", "hfg_author": "Julian Grรผneberg", "skintone": "", - "skintone_base_emoji": "", + "skintone_base_emoji": "๐Ÿ‘๏ธ", + "skintone_base_hexcode": "1F44D", "unicode": 1, "order": 2003 }, @@ -10972,6 +11755,7 @@ "hfg_author": "Julian Grรผneberg", "skintone": 1, "skintone_base_emoji": "๐Ÿ‘๏ธ", + "skintone_base_hexcode": "1F44D", "unicode": 2, "order": 2004 }, @@ -10986,6 +11770,7 @@ "hfg_author": "Julian Grรผneberg", "skintone": 2, "skintone_base_emoji": "๐Ÿ‘๏ธ", + "skintone_base_hexcode": "1F44D", "unicode": 2, "order": 2005 }, @@ -11000,6 +11785,7 @@ "hfg_author": "Julian Grรผneberg", "skintone": 3, "skintone_base_emoji": "๐Ÿ‘๏ธ", + "skintone_base_hexcode": "1F44D", "unicode": 2, "order": 2006 }, @@ -11014,6 +11800,7 @@ "hfg_author": "Julian Grรผneberg", "skintone": 4, "skintone_base_emoji": "๐Ÿ‘๏ธ", + "skintone_base_hexcode": "1F44D", "unicode": 2, "order": 2007 }, @@ -11028,6 +11815,7 @@ "hfg_author": "Julian Grรผneberg", "skintone": 5, "skintone_base_emoji": "๐Ÿ‘๏ธ", + "skintone_base_hexcode": "1F44D", "unicode": 2, "order": 2008 }, @@ -11041,7 +11829,8 @@ "hfg_tags": "Dislike no, Thumbs Down, Thumbs Down sign, -1, down, hand, thumb, thumbs", "hfg_author": "Julian Grรผneberg", "skintone": "", - "skintone_base_emoji": "", + "skintone_base_emoji": "๐Ÿ‘Ž๏ธ", + "skintone_base_hexcode": "1F44E", "unicode": 1, "order": 2009 }, @@ -11056,6 +11845,7 @@ "hfg_author": "Julian Grรผneberg", "skintone": 1, "skintone_base_emoji": "๐Ÿ‘Ž๏ธ", + "skintone_base_hexcode": "1F44E", "unicode": 2, "order": 2010 }, @@ -11070,6 +11860,7 @@ "hfg_author": "Julian Grรผneberg", "skintone": 2, "skintone_base_emoji": "๐Ÿ‘Ž๏ธ", + "skintone_base_hexcode": "1F44E", "unicode": 2, "order": 2011 }, @@ -11084,6 +11875,7 @@ "hfg_author": "Julian Grรผneberg", "skintone": 3, "skintone_base_emoji": "๐Ÿ‘Ž๏ธ", + "skintone_base_hexcode": "1F44E", "unicode": 2, "order": 2012 }, @@ -11098,6 +11890,7 @@ "hfg_author": "Julian Grรผneberg", "skintone": 4, "skintone_base_emoji": "๐Ÿ‘Ž๏ธ", + "skintone_base_hexcode": "1F44E", "unicode": 2, "order": 2013 }, @@ -11112,6 +11905,7 @@ "hfg_author": "Julian Grรผneberg", "skintone": 5, "skintone_base_emoji": "๐Ÿ‘Ž๏ธ", + "skintone_base_hexcode": "1F44E", "unicode": 2, "order": 2014 }, @@ -11125,7 +11919,8 @@ "hfg_tags": "clenched, fist, hand, punch", "hfg_author": "Julian Grรผneberg", "skintone": "", - "skintone_base_emoji": "", + "skintone_base_emoji": "โœŠ", + "skintone_base_hexcode": "270A", "unicode": 1, "order": 2015 }, @@ -11140,6 +11935,7 @@ "hfg_author": "Julian Grรผneberg", "skintone": 1, "skintone_base_emoji": "โœŠ", + "skintone_base_hexcode": "270A", "unicode": 2, "order": 2016 }, @@ -11154,6 +11950,7 @@ "hfg_author": "Julian Grรผneberg", "skintone": 2, "skintone_base_emoji": "โœŠ", + "skintone_base_hexcode": "270A", "unicode": 2, "order": 2017 }, @@ -11168,6 +11965,7 @@ "hfg_author": "Julian Grรผneberg", "skintone": 3, "skintone_base_emoji": "โœŠ", + "skintone_base_hexcode": "270A", "unicode": 2, "order": 2018 }, @@ -11182,6 +11980,7 @@ "hfg_author": "Julian Grรผneberg", "skintone": 4, "skintone_base_emoji": "โœŠ", + "skintone_base_hexcode": "270A", "unicode": 2, "order": 2019 }, @@ -11196,6 +11995,7 @@ "hfg_author": "Julian Grรผneberg", "skintone": 5, "skintone_base_emoji": "โœŠ", + "skintone_base_hexcode": "270A", "unicode": 2, "order": 2020 }, @@ -11209,7 +12009,8 @@ "hfg_tags": "clenched, fist, hand, punch, fist, oncoming fist, Brofist, Bro, Bump,", "hfg_author": "Julian Grรผneberg", "skintone": "", - "skintone_base_emoji": "", + "skintone_base_emoji": "๐Ÿ‘Š", + "skintone_base_hexcode": "1F44A", "unicode": 1, "order": 2021 }, @@ -11224,6 +12025,7 @@ "hfg_author": "Julian Grรผneberg", "skintone": 1, "skintone_base_emoji": "๐Ÿ‘Š", + "skintone_base_hexcode": "1F44A", "unicode": 2, "order": 2022 }, @@ -11238,6 +12040,7 @@ "hfg_author": "Julian Grรผneberg", "skintone": 2, "skintone_base_emoji": "๐Ÿ‘Š", + "skintone_base_hexcode": "1F44A", "unicode": 2, "order": 2023 }, @@ -11252,6 +12055,7 @@ "hfg_author": "Julian Grรผneberg", "skintone": 3, "skintone_base_emoji": "๐Ÿ‘Š", + "skintone_base_hexcode": "1F44A", "unicode": 2, "order": 2024 }, @@ -11266,6 +12070,7 @@ "hfg_author": "Julian Grรผneberg", "skintone": 4, "skintone_base_emoji": "๐Ÿ‘Š", + "skintone_base_hexcode": "1F44A", "unicode": 2, "order": 2025 }, @@ -11280,6 +12085,7 @@ "hfg_author": "Julian Grรผneberg", "skintone": 5, "skintone_base_emoji": "๐Ÿ‘Š", + "skintone_base_hexcode": "1F44A", "unicode": 2, "order": 2026 }, @@ -11293,7 +12099,8 @@ "hfg_tags": "Fist, left, leftwards, Left-Facing Fist", "hfg_author": "Julian Grรผneberg", "skintone": "", - "skintone_base_emoji": "", + "skintone_base_emoji": "๐Ÿค›", + "skintone_base_hexcode": "1F91B", "unicode": 3, "order": 2027 }, @@ -11308,6 +12115,7 @@ "hfg_author": "Julian Grรผneberg", "skintone": 1, "skintone_base_emoji": "๐Ÿค›", + "skintone_base_hexcode": "1F91B", "unicode": 3, "order": 2028 }, @@ -11322,6 +12130,7 @@ "hfg_author": "Julian Grรผneberg", "skintone": 2, "skintone_base_emoji": "๐Ÿค›", + "skintone_base_hexcode": "1F91B", "unicode": 3, "order": 2029 }, @@ -11336,6 +12145,7 @@ "hfg_author": "Julian Grรผneberg", "skintone": 3, "skintone_base_emoji": "๐Ÿค›", + "skintone_base_hexcode": "1F91B", "unicode": 3, "order": 2030 }, @@ -11350,6 +12160,7 @@ "hfg_author": "Julian Grรผneberg", "skintone": 4, "skintone_base_emoji": "๐Ÿค›", + "skintone_base_hexcode": "1F91B", "unicode": 3, "order": 2031 }, @@ -11364,6 +12175,7 @@ "hfg_author": "Julian Grรผneberg", "skintone": 5, "skintone_base_emoji": "๐Ÿค›", + "skintone_base_hexcode": "1F91B", "unicode": 3, "order": 2032 }, @@ -11377,7 +12189,8 @@ "hfg_tags": "Right, fist, rightwards, right-Facing Fist", "hfg_author": "Julian Grรผneberg", "skintone": "", - "skintone_base_emoji": "", + "skintone_base_emoji": "๐Ÿคœ", + "skintone_base_hexcode": "1F91C", "unicode": 3, "order": 2033 }, @@ -11392,6 +12205,7 @@ "hfg_author": "Julian Grรผneberg", "skintone": 1, "skintone_base_emoji": "๐Ÿคœ", + "skintone_base_hexcode": "1F91C", "unicode": 3, "order": 2034 }, @@ -11406,6 +12220,7 @@ "hfg_author": "Julian Grรผneberg", "skintone": 2, "skintone_base_emoji": "๐Ÿคœ", + "skintone_base_hexcode": "1F91C", "unicode": 3, "order": 2035 }, @@ -11420,6 +12235,7 @@ "hfg_author": "Julian Grรผneberg", "skintone": 3, "skintone_base_emoji": "๐Ÿคœ", + "skintone_base_hexcode": "1F91C", "unicode": 3, "order": 2036 }, @@ -11434,6 +12250,7 @@ "hfg_author": "Julian Grรผneberg", "skintone": 4, "skintone_base_emoji": "๐Ÿคœ", + "skintone_base_hexcode": "1F91C", "unicode": 3, "order": 2037 }, @@ -11448,6 +12265,7 @@ "hfg_author": "Julian Grรผneberg", "skintone": 5, "skintone_base_emoji": "๐Ÿคœ", + "skintone_base_hexcode": "1F91C", "unicode": 3, "order": 2038 }, @@ -11461,7 +12279,8 @@ "hfg_tags": "Backhand, raised, hand", "hfg_author": "Julian Grรผneberg", "skintone": "", - "skintone_base_emoji": "", + "skintone_base_emoji": "๐Ÿคš", + "skintone_base_hexcode": "1F91A", "unicode": 3, "order": 2039 }, @@ -11476,6 +12295,7 @@ "hfg_author": "Julian Grรผneberg", "skintone": 1, "skintone_base_emoji": "๐Ÿคš", + "skintone_base_hexcode": "1F91A", "unicode": 3, "order": 2040 }, @@ -11490,6 +12310,7 @@ "hfg_author": "Julian Grรผneberg", "skintone": 2, "skintone_base_emoji": "๐Ÿคš", + "skintone_base_hexcode": "1F91A", "unicode": 3, "order": 2041 }, @@ -11504,6 +12325,7 @@ "hfg_author": "Julian Grรผneberg", "skintone": 3, "skintone_base_emoji": "๐Ÿคš", + "skintone_base_hexcode": "1F91A", "unicode": 3, "order": 2042 }, @@ -11518,6 +12340,7 @@ "hfg_author": "Julian Grรผneberg", "skintone": 4, "skintone_base_emoji": "๐Ÿคš", + "skintone_base_hexcode": "1F91A", "unicode": 3, "order": 2043 }, @@ -11532,6 +12355,7 @@ "hfg_author": "Julian Grรผneberg", "skintone": 5, "skintone_base_emoji": "๐Ÿคš", + "skintone_base_hexcode": "1F91A", "unicode": 3, "order": 2044 }, @@ -11545,7 +12369,8 @@ "hfg_tags": "Hello, Goodbye, Waving Hand Sign, Wave", "hfg_author": "Julian Grรผneberg", "skintone": "", - "skintone_base_emoji": "", + "skintone_base_emoji": "๐Ÿ‘‹", + "skintone_base_hexcode": "1F44B", "unicode": 1, "order": 2045 }, @@ -11560,6 +12385,7 @@ "hfg_author": "Julian Grรผneberg", "skintone": 1, "skintone_base_emoji": "๐Ÿ‘‹", + "skintone_base_hexcode": "1F44B", "unicode": 2, "order": 2046 }, @@ -11574,6 +12400,7 @@ "hfg_author": "Julian Grรผneberg", "skintone": 2, "skintone_base_emoji": "๐Ÿ‘‹", + "skintone_base_hexcode": "1F44B", "unicode": 2, "order": 2047 }, @@ -11588,6 +12415,7 @@ "hfg_author": "Julian Grรผneberg", "skintone": 3, "skintone_base_emoji": "๐Ÿ‘‹", + "skintone_base_hexcode": "1F44B", "unicode": 2, "order": 2048 }, @@ -11602,6 +12430,7 @@ "hfg_author": "Julian Grรผneberg", "skintone": 4, "skintone_base_emoji": "๐Ÿ‘‹", + "skintone_base_hexcode": "1F44B", "unicode": 2, "order": 2049 }, @@ -11616,6 +12445,7 @@ "hfg_author": "Julian Grรผneberg", "skintone": 5, "skintone_base_emoji": "๐Ÿ‘‹", + "skintone_base_hexcode": "1F44B", "unicode": 2, "order": 2050 }, @@ -11629,7 +12459,8 @@ "hfg_tags": "hand, ily, love,", "hfg_author": "Julian Grรผneberg", "skintone": "", - "skintone_base_emoji": "", + "skintone_base_emoji": "๐ŸคŸ", + "skintone_base_hexcode": "1F91F", "unicode": 5, "order": 2051 }, @@ -11644,6 +12475,7 @@ "hfg_author": "Julian Grรผneberg", "skintone": 1, "skintone_base_emoji": "๐ŸคŸ", + "skintone_base_hexcode": "1F91F", "unicode": 5, "order": 2052 }, @@ -11658,6 +12490,7 @@ "hfg_author": "Julian Grรผneberg", "skintone": 2, "skintone_base_emoji": "๐ŸคŸ", + "skintone_base_hexcode": "1F91F", "unicode": 5, "order": 2053 }, @@ -11672,6 +12505,7 @@ "hfg_author": "Julian Grรผneberg", "skintone": 3, "skintone_base_emoji": "๐ŸคŸ", + "skintone_base_hexcode": "1F91F", "unicode": 5, "order": 2054 }, @@ -11686,6 +12520,7 @@ "hfg_author": "Julian Grรผneberg", "skintone": 4, "skintone_base_emoji": "๐ŸคŸ", + "skintone_base_hexcode": "1F91F", "unicode": 5, "order": 2055 }, @@ -11700,6 +12535,7 @@ "hfg_author": "Julian Grรผneberg", "skintone": 5, "skintone_base_emoji": "๐ŸคŸ", + "skintone_base_hexcode": "1F91F", "unicode": 5, "order": 2056 }, @@ -11713,7 +12549,8 @@ "hfg_tags": "Writing Hand, Writing, Write", "hfg_author": "Julian Grรผneberg", "skintone": "", - "skintone_base_emoji": "", + "skintone_base_emoji": "โœ๏ธ", + "skintone_base_hexcode": "270D", "unicode": 1, "order": 2058 }, @@ -11728,6 +12565,7 @@ "hfg_author": "Julian Grรผneberg", "skintone": 1, "skintone_base_emoji": "โœ๏ธ", + "skintone_base_hexcode": "270D", "unicode": 2, "order": 2059 }, @@ -11742,6 +12580,7 @@ "hfg_author": "Julian Grรผneberg", "skintone": 2, "skintone_base_emoji": "โœ๏ธ", + "skintone_base_hexcode": "270D", "unicode": 2, "order": 2060 }, @@ -11756,6 +12595,7 @@ "hfg_author": "Julian Grรผneberg", "skintone": 3, "skintone_base_emoji": "โœ๏ธ", + "skintone_base_hexcode": "270D", "unicode": 2, "order": 2061 }, @@ -11770,6 +12610,7 @@ "hfg_author": "Julian Grรผneberg", "skintone": 4, "skintone_base_emoji": "โœ๏ธ", + "skintone_base_hexcode": "270D", "unicode": 2, "order": 2062 }, @@ -11784,6 +12625,7 @@ "hfg_author": "Julian Grรผneberg", "skintone": 5, "skintone_base_emoji": "โœ๏ธ", + "skintone_base_hexcode": "270D", "unicode": 2, "order": 2063 }, @@ -11797,7 +12639,8 @@ "hfg_tags": "clap, hand, clapping hands, Applause, Clap, Clapping, Golf Clap, Round Of Applause", "hfg_author": "Julian Grรผneberg", "skintone": "", - "skintone_base_emoji": "", + "skintone_base_emoji": "๐Ÿ‘", + "skintone_base_hexcode": "1F44F", "unicode": 1, "order": 2064 }, @@ -11812,6 +12655,7 @@ "hfg_author": "Julian Grรผneberg", "skintone": 1, "skintone_base_emoji": "๐Ÿ‘", + "skintone_base_hexcode": "1F44F", "unicode": 2, "order": 2065 }, @@ -11826,6 +12670,7 @@ "hfg_author": "Julian Grรผneberg", "skintone": 2, "skintone_base_emoji": "๐Ÿ‘", + "skintone_base_hexcode": "1F44F", "unicode": 2, "order": 2066 }, @@ -11840,6 +12685,7 @@ "hfg_author": "Julian Grรผneberg", "skintone": 3, "skintone_base_emoji": "๐Ÿ‘", + "skintone_base_hexcode": "1F44F", "unicode": 2, "order": 2067 }, @@ -11854,6 +12700,7 @@ "hfg_author": "Julian Grรผneberg", "skintone": 4, "skintone_base_emoji": "๐Ÿ‘", + "skintone_base_hexcode": "1F44F", "unicode": 2, "order": 2068 }, @@ -11868,6 +12715,7 @@ "hfg_author": "Julian Grรผneberg", "skintone": 5, "skintone_base_emoji": "๐Ÿ‘", + "skintone_base_hexcode": "1F44F", "unicode": 2, "order": 2069 }, @@ -11881,7 +12729,8 @@ "hfg_tags": "Hug, Open Hands, Open, Hands, Jazz Hands, Jazz", "hfg_author": "Julian Grรผneberg", "skintone": "", - "skintone_base_emoji": "", + "skintone_base_emoji": "๐Ÿ‘", + "skintone_base_hexcode": "1F450", "unicode": 1, "order": 2070 }, @@ -11896,6 +12745,7 @@ "hfg_author": "Julian Grรผneberg", "skintone": 1, "skintone_base_emoji": "๐Ÿ‘", + "skintone_base_hexcode": "1F450", "unicode": 2, "order": 2071 }, @@ -11910,6 +12760,7 @@ "hfg_author": "Julian Grรผneberg", "skintone": 2, "skintone_base_emoji": "๐Ÿ‘", + "skintone_base_hexcode": "1F450", "unicode": 2, "order": 2072 }, @@ -11924,6 +12775,7 @@ "hfg_author": "Julian Grรผneberg", "skintone": 3, "skintone_base_emoji": "๐Ÿ‘", + "skintone_base_hexcode": "1F450", "unicode": 2, "order": 2073 }, @@ -11938,6 +12790,7 @@ "hfg_author": "Julian Grรผneberg", "skintone": 4, "skintone_base_emoji": "๐Ÿ‘", + "skintone_base_hexcode": "1F450", "unicode": 2, "order": 2074 }, @@ -11952,6 +12805,7 @@ "hfg_author": "Julian Grรผneberg", "skintone": 5, "skintone_base_emoji": "๐Ÿ‘", + "skintone_base_hexcode": "1F450", "unicode": 2, "order": 2075 }, @@ -11965,7 +12819,8 @@ "hfg_tags": "Raising Hands, Raising, Hands, celebration, gesture, hand, hooray, raised, Arms In The Air, Banzai, Festivus Miracle, Hallelujah, Praise Hands, Two Hands", "hfg_author": "Julian Grรผneberg", "skintone": "", - "skintone_base_emoji": "", + "skintone_base_emoji": "๐Ÿ™Œ", + "skintone_base_hexcode": "1F64C", "unicode": 1, "order": 2076 }, @@ -11980,6 +12835,7 @@ "hfg_author": "Julian Grรผneberg", "skintone": 1, "skintone_base_emoji": "๐Ÿ™Œ", + "skintone_base_hexcode": "1F64C", "unicode": 2, "order": 2077 }, @@ -11994,6 +12850,7 @@ "hfg_author": "Julian Grรผneberg", "skintone": 2, "skintone_base_emoji": "๐Ÿ™Œ", + "skintone_base_hexcode": "1F64C", "unicode": 2, "order": 2078 }, @@ -12008,6 +12865,7 @@ "hfg_author": "Julian Grรผneberg", "skintone": 3, "skintone_base_emoji": "๐Ÿ™Œ", + "skintone_base_hexcode": "1F64C", "unicode": 2, "order": 2079 }, @@ -12022,6 +12880,7 @@ "hfg_author": "Julian Grรผneberg", "skintone": 4, "skintone_base_emoji": "๐Ÿ™Œ", + "skintone_base_hexcode": "1F64C", "unicode": 2, "order": 2080 }, @@ -12036,6 +12895,7 @@ "hfg_author": "Julian Grรผneberg", "skintone": 5, "skintone_base_emoji": "๐Ÿ™Œ", + "skintone_base_hexcode": "1F64C", "unicode": 2, "order": 2081 }, @@ -12049,7 +12909,8 @@ "hfg_tags": "prayer, pray, god", "hfg_author": "Julian Grรผneberg", "skintone": "", - "skintone_base_emoji": "", + "skintone_base_emoji": "๐Ÿคฒ", + "skintone_base_hexcode": "1F932", "unicode": 5, "order": 2082 }, @@ -12064,6 +12925,7 @@ "hfg_author": "Julian Grรผneberg", "skintone": 1, "skintone_base_emoji": "๐Ÿคฒ", + "skintone_base_hexcode": "1F932", "unicode": 5, "order": 2083 }, @@ -12078,6 +12940,7 @@ "hfg_author": "Julian Grรผneberg", "skintone": 2, "skintone_base_emoji": "๐Ÿคฒ", + "skintone_base_hexcode": "1F932", "unicode": 5, "order": 2084 }, @@ -12092,6 +12955,7 @@ "hfg_author": "Julian Grรผneberg", "skintone": 3, "skintone_base_emoji": "๐Ÿคฒ", + "skintone_base_hexcode": "1F932", "unicode": 5, "order": 2085 }, @@ -12106,6 +12970,7 @@ "hfg_author": "Julian Grรผneberg", "skintone": 4, "skintone_base_emoji": "๐Ÿคฒ", + "skintone_base_hexcode": "1F932", "unicode": 5, "order": 2086 }, @@ -12120,6 +12985,7 @@ "hfg_author": "Julian Grรผneberg", "skintone": 5, "skintone_base_emoji": "๐Ÿคฒ", + "skintone_base_hexcode": "1F932", "unicode": 5, "order": 2087 }, @@ -12133,7 +12999,8 @@ "hfg_tags": "ask, bow, folded, gesture, hand, please, pray, thanks", "hfg_author": "Julian Grรผneberg", "skintone": "", - "skintone_base_emoji": "", + "skintone_base_emoji": "๐Ÿ™", + "skintone_base_hexcode": "1F64F", "unicode": 1, "order": 2088 }, @@ -12148,6 +13015,7 @@ "hfg_author": "Julian Grรผneberg", "skintone": 1, "skintone_base_emoji": "๐Ÿ™", + "skintone_base_hexcode": "1F64F", "unicode": 2, "order": 2089 }, @@ -12162,6 +13030,7 @@ "hfg_author": "Julian Grรผneberg", "skintone": 2, "skintone_base_emoji": "๐Ÿ™", + "skintone_base_hexcode": "1F64F", "unicode": 2, "order": 2090 }, @@ -12176,6 +13045,7 @@ "hfg_author": "Julian Grรผneberg", "skintone": 3, "skintone_base_emoji": "๐Ÿ™", + "skintone_base_hexcode": "1F64F", "unicode": 2, "order": 2091 }, @@ -12190,6 +13060,7 @@ "hfg_author": "Julian Grรผneberg", "skintone": 4, "skintone_base_emoji": "๐Ÿ™", + "skintone_base_hexcode": "1F64F", "unicode": 2, "order": 2092 }, @@ -12204,6 +13075,7 @@ "hfg_author": "Julian Grรผneberg", "skintone": 5, "skintone_base_emoji": "๐Ÿ™", + "skintone_base_hexcode": "1F64F", "unicode": 2, "order": 2093 }, @@ -12218,6 +13090,7 @@ "hfg_author": "Julian Grรผneberg", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 3, "order": 2094 }, @@ -12231,7 +13104,8 @@ "hfg_tags": "ear, hear, listen", "hfg_author": "Julian Grรผneberg", "skintone": "", - "skintone_base_emoji": "", + "skintone_base_emoji": "๐Ÿ‘‚๏ธ", + "skintone_base_hexcode": "1F442", "unicode": 1, "order": 2101 }, @@ -12246,6 +13120,7 @@ "hfg_author": "Julian Grรผneberg", "skintone": 1, "skintone_base_emoji": "๐Ÿ‘‚๏ธ", + "skintone_base_hexcode": "1F442", "unicode": 2, "order": 2102 }, @@ -12260,6 +13135,7 @@ "hfg_author": "Julian Grรผneberg", "skintone": 2, "skintone_base_emoji": "๐Ÿ‘‚๏ธ", + "skintone_base_hexcode": "1F442", "unicode": 2, "order": 2103 }, @@ -12274,6 +13150,7 @@ "hfg_author": "Julian Grรผneberg", "skintone": 3, "skintone_base_emoji": "๐Ÿ‘‚๏ธ", + "skintone_base_hexcode": "1F442", "unicode": 2, "order": 2104 }, @@ -12288,6 +13165,7 @@ "hfg_author": "Julian Grรผneberg", "skintone": 4, "skintone_base_emoji": "๐Ÿ‘‚๏ธ", + "skintone_base_hexcode": "1F442", "unicode": 2, "order": 2105 }, @@ -12302,6 +13180,7 @@ "hfg_author": "Julian Grรผneberg", "skintone": 5, "skintone_base_emoji": "๐Ÿ‘‚๏ธ", + "skintone_base_hexcode": "1F442", "unicode": 2, "order": 2106 }, @@ -12315,7 +13194,8 @@ "hfg_tags": "nose, smell", "hfg_author": "Julian Grรผneberg", "skintone": "", - "skintone_base_emoji": "", + "skintone_base_emoji": "๐Ÿ‘ƒ", + "skintone_base_hexcode": "1F443", "unicode": 1, "order": 2107 }, @@ -12330,6 +13210,7 @@ "hfg_author": "Julian Grรผneberg", "skintone": 1, "skintone_base_emoji": "๐Ÿ‘ƒ", + "skintone_base_hexcode": "1F443", "unicode": 2, "order": 2108 }, @@ -12344,6 +13225,7 @@ "hfg_author": "Julian Grรผneberg", "skintone": 2, "skintone_base_emoji": "๐Ÿ‘ƒ", + "skintone_base_hexcode": "1F443", "unicode": 2, "order": 2109 }, @@ -12358,6 +13240,7 @@ "hfg_author": "Julian Grรผneberg", "skintone": 3, "skintone_base_emoji": "๐Ÿ‘ƒ", + "skintone_base_hexcode": "1F443", "unicode": 2, "order": 2110 }, @@ -12372,6 +13255,7 @@ "hfg_author": "Julian Grรผneberg", "skintone": 4, "skintone_base_emoji": "๐Ÿ‘ƒ", + "skintone_base_hexcode": "1F443", "unicode": 2, "order": 2111 }, @@ -12386,6 +13270,7 @@ "hfg_author": "Julian Grรผneberg", "skintone": 5, "skintone_base_emoji": "๐Ÿ‘ƒ", + "skintone_base_hexcode": "1F443", "unicode": 2, "order": 2112 }, @@ -12400,6 +13285,7 @@ "hfg_author": "Julian Grรผneberg", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 2117 }, @@ -12414,6 +13300,7 @@ "hfg_author": "Julian Grรผneberg", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 2118 }, @@ -12428,6 +13315,7 @@ "hfg_author": "Julian Grรผneberg", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 2120 }, @@ -12442,6 +13330,7 @@ "hfg_author": "Julian Grรผneberg", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 4, "order": 2121 }, @@ -12456,6 +13345,7 @@ "hfg_author": "Julian Grรผneberg", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 5, "order": 2125 }, @@ -12470,6 +13360,7 @@ "hfg_author": "Julian Grรผneberg", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 2128 }, @@ -12484,6 +13375,7 @@ "hfg_author": "Julian Grรผneberg", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 2129 }, @@ -12498,6 +13390,7 @@ "hfg_author": "Laura Humpfer", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 2130 }, @@ -12512,6 +13405,7 @@ "hfg_author": "Laura Humpfer", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 2131 }, @@ -12526,6 +13420,7 @@ "hfg_author": "Laura Humpfer", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 2133 }, @@ -12540,6 +13435,7 @@ "hfg_author": "Laura Humpfer", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 2134 }, @@ -12554,6 +13450,7 @@ "hfg_author": "Laura Humpfer", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 2135 }, @@ -12568,6 +13465,7 @@ "hfg_author": "Laura Humpfer", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 2136 }, @@ -12582,6 +13480,7 @@ "hfg_author": "Laura Humpfer", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 2137 }, @@ -12596,6 +13495,7 @@ "hfg_author": "Laura Humpfer", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 2138 }, @@ -12610,6 +13510,7 @@ "hfg_author": "Laura Humpfer", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 2139 }, @@ -12624,6 +13525,7 @@ "hfg_author": "Laura Humpfer", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 2140 }, @@ -12638,6 +13540,7 @@ "hfg_author": "Laura Humpfer", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 2141 }, @@ -12652,6 +13555,7 @@ "hfg_author": "Laura Humpfer", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 2143 }, @@ -12666,6 +13570,7 @@ "hfg_author": "Laura Humpfer", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 3, "order": 2144 }, @@ -12680,6 +13585,7 @@ "hfg_author": "Laura Humpfer", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 2145 }, @@ -12694,6 +13600,7 @@ "hfg_author": "Laura Humpfer", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 2146 }, @@ -12708,6 +13615,7 @@ "hfg_author": "Laura Humpfer", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 2147 }, @@ -12722,6 +13630,7 @@ "hfg_author": "Laura Humpfer", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 2149 }, @@ -12736,6 +13645,7 @@ "hfg_author": "Laura Humpfer", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 2150 }, @@ -12750,6 +13660,7 @@ "hfg_author": "Laura Humpfer", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 2151 }, @@ -12764,6 +13675,7 @@ "hfg_author": "Laura Humpfer", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 2153 }, @@ -12778,6 +13690,7 @@ "hfg_author": "Laura Humpfer", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 2154 }, @@ -12792,6 +13705,7 @@ "hfg_author": "Laura Humpfer", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 2155 }, @@ -12806,6 +13720,7 @@ "hfg_author": "Laura Humpfer", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 2156 }, @@ -12820,6 +13735,7 @@ "hfg_author": "Laura Humpfer", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 2157 }, @@ -12834,6 +13750,7 @@ "hfg_author": "Laura Humpfer", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 2158 }, @@ -12848,6 +13765,7 @@ "hfg_author": "Laura Humpfer", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 2, "order": 2160 }, @@ -12862,6 +13780,7 @@ "hfg_author": "Laura Humpfer", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 2162 }, @@ -12876,6 +13795,7 @@ "hfg_author": "Laura Humpfer", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 2163 }, @@ -12890,6 +13810,7 @@ "hfg_author": "Laura Humpfer", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 2165 }, @@ -12904,6 +13825,7 @@ "hfg_author": "Jonas RoรŸner", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 2166 }, @@ -12918,6 +13840,7 @@ "hfg_author": "Jonas RoรŸner", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 2168 }, @@ -12932,6 +13855,7 @@ "hfg_author": "Jonas RoรŸner", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 2171 }, @@ -12946,6 +13870,7 @@ "hfg_author": "Jonas RoรŸner", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 2172 }, @@ -12960,6 +13885,7 @@ "hfg_author": "Jonas RoรŸner", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 2173 }, @@ -12974,6 +13900,7 @@ "hfg_author": "Jonas RoรŸner", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 2178 }, @@ -12988,6 +13915,7 @@ "hfg_author": "Jonas RoรŸner", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 2179 }, @@ -13002,6 +13930,7 @@ "hfg_author": "Jonas RoรŸner", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 2180 }, @@ -13016,6 +13945,7 @@ "hfg_author": "Jonas RoรŸner", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 2181 }, @@ -13030,6 +13960,7 @@ "hfg_author": "Jonas RoรŸner", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 2182 }, @@ -13044,6 +13975,7 @@ "hfg_author": "Jonas RoรŸner", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 2183 }, @@ -13058,6 +13990,7 @@ "hfg_author": "Jonas RoรŸner", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 2184 }, @@ -13072,6 +14005,7 @@ "hfg_author": "Jonas RoรŸner", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 2186 }, @@ -13086,6 +14020,7 @@ "hfg_author": "Jonas RoรŸner", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 2187 }, @@ -13100,6 +14035,7 @@ "hfg_author": "Jonas RoรŸner", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 2188 }, @@ -13114,6 +14050,7 @@ "hfg_author": "Jonas RoรŸner", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 2189 }, @@ -13128,6 +14065,7 @@ "hfg_author": "Jonas RoรŸner", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 2192 }, @@ -13142,6 +14080,7 @@ "hfg_author": "Jonas RoรŸner", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 2193 }, @@ -13156,6 +14095,7 @@ "hfg_author": "Jonas RoรŸner", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 2194 }, @@ -13170,6 +14110,7 @@ "hfg_author": "Jonas RoรŸner", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 2195 }, @@ -13184,6 +14125,7 @@ "hfg_author": "Jonas RoรŸner", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 2196 }, @@ -13198,6 +14140,7 @@ "hfg_author": "Jonas RoรŸner", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 2197 }, @@ -13212,6 +14155,7 @@ "hfg_author": "Jonas RoรŸner", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 2198 }, @@ -13226,6 +14170,7 @@ "hfg_author": "Jonas RoรŸner", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 2202 }, @@ -13240,6 +14185,7 @@ "hfg_author": "Jonas RoรŸner", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 2204 }, @@ -13254,6 +14200,7 @@ "hfg_author": "Jonas RoรŸner", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 2205 }, @@ -13268,6 +14215,7 @@ "hfg_author": "Sofie Ascherl", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 2206 }, @@ -13282,6 +14230,7 @@ "hfg_author": "Sofie Ascherl", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 2207 }, @@ -13296,6 +14245,7 @@ "hfg_author": "Sofie Ascherl", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 3, "order": 2208 }, @@ -13310,6 +14260,7 @@ "hfg_author": "Sofie Ascherl", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 2209 }, @@ -13324,6 +14275,7 @@ "hfg_author": "Sofie Ascherl", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 2210 }, @@ -13338,6 +14290,7 @@ "hfg_author": "Sofie Ascherl", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 2212 }, @@ -13352,6 +14305,7 @@ "hfg_author": "Sofie Ascherl", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 3, "order": 2213 }, @@ -13366,6 +14320,7 @@ "hfg_author": "Sofie Ascherl", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 2215 }, @@ -13380,6 +14335,7 @@ "hfg_author": "Sofie Ascherl", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 2216 }, @@ -13394,6 +14350,7 @@ "hfg_author": "Sofie Ascherl", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 2217 }, @@ -13408,6 +14365,7 @@ "hfg_author": "Sofie Ascherl", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 2218 }, @@ -13422,6 +14380,7 @@ "hfg_author": "Sofie Ascherl", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 2219 }, @@ -13436,6 +14395,7 @@ "hfg_author": "Sofie Ascherl", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 2220 }, @@ -13450,6 +14410,7 @@ "hfg_author": "Sofie Ascherl", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 2221 }, @@ -13464,6 +14425,7 @@ "hfg_author": "Sofie Ascherl", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 2222 }, @@ -13478,6 +14440,7 @@ "hfg_author": "Sofie Ascherl", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 2223 }, @@ -13492,6 +14455,7 @@ "hfg_author": "Sofie Ascherl", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 5, "order": 2224 }, @@ -13506,6 +14470,7 @@ "hfg_author": "Sofie Ascherl", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 3, "order": 2225 }, @@ -13520,6 +14485,7 @@ "hfg_author": "Sofie Ascherl", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 2226 }, @@ -13534,6 +14500,7 @@ "hfg_author": "Sofie Ascherl", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 2227 }, @@ -13548,6 +14515,7 @@ "hfg_author": "Sofie Ascherl", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 2228 }, @@ -13562,6 +14530,7 @@ "hfg_author": "Sofie Ascherl", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 2229 }, @@ -13576,6 +14545,7 @@ "hfg_author": "Sofie Ascherl", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 2230 }, @@ -13590,6 +14560,7 @@ "hfg_author": "Sofie Ascherl", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 2231 }, @@ -13604,6 +14575,7 @@ "hfg_author": "Sofie Ascherl", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 2232 }, @@ -13618,6 +14590,7 @@ "hfg_author": "Sofie Ascherl", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 2233 }, @@ -13632,6 +14605,7 @@ "hfg_author": "Sofie Ascherl", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 2234 }, @@ -13646,6 +14620,7 @@ "hfg_author": "Sofie Ascherl", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 2235 }, @@ -13660,6 +14635,7 @@ "hfg_author": "Sofie Ascherl", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 2236 }, @@ -13674,6 +14650,7 @@ "hfg_author": "Sofie Ascherl", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 2237 }, @@ -13688,6 +14665,7 @@ "hfg_author": "Sofie Ascherl", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 2238 }, @@ -13702,6 +14680,7 @@ "hfg_author": "Sofie Ascherl", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 5, "order": 2240 }, @@ -13716,6 +14695,7 @@ "hfg_author": "Sofie Ascherl", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 2241 }, @@ -13730,6 +14710,7 @@ "hfg_author": "Sofie Ascherl", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 3, "order": 2242 }, @@ -13744,6 +14725,7 @@ "hfg_author": "Sofie Ascherl", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 2244 }, @@ -13758,6 +14740,7 @@ "hfg_author": "Sofie Ascherl", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 2245 }, @@ -13772,6 +14755,7 @@ "hfg_author": "Sofie Ascherl", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 2246 }, @@ -13786,6 +14770,7 @@ "hfg_author": "Sofie Ascherl", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 2247 }, @@ -13800,6 +14785,7 @@ "hfg_author": "Sofie Ascherl", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 2248 }, @@ -13814,6 +14800,7 @@ "hfg_author": "Sofie Ascherl", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 2249 }, @@ -13828,6 +14815,7 @@ "hfg_author": "Sofie Ascherl", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 2251 }, @@ -13842,6 +14830,7 @@ "hfg_author": "Sofie Ascherl", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 5, "order": 2252 }, @@ -13856,6 +14845,7 @@ "hfg_author": "Sofie Ascherl", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 3, "order": 2253 }, @@ -13870,6 +14860,7 @@ "hfg_author": "Sofie Ascherl", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 2254 }, @@ -13884,6 +14875,7 @@ "hfg_author": "Sofie Ascherl", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 2255 }, @@ -13898,6 +14890,7 @@ "hfg_author": "Sofie Ascherl", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 2256 }, @@ -13912,6 +14905,7 @@ "hfg_author": "Sofie Ascherl", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 2259 }, @@ -13926,6 +14920,7 @@ "hfg_author": "Selina Bauder", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 2260 }, @@ -13940,6 +14935,7 @@ "hfg_author": "Selina Bauder", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 2261 }, @@ -13954,6 +14950,7 @@ "hfg_author": "Selina Bauder", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 2262 }, @@ -13968,6 +14965,7 @@ "hfg_author": "Selina Bauder", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 2263 }, @@ -13982,6 +14980,7 @@ "hfg_author": "Selina Bauder", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 2264 }, @@ -13996,6 +14995,7 @@ "hfg_author": "Selina Bauder", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 2265 }, @@ -14010,6 +15010,7 @@ "hfg_author": "Selina Bauder", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 2266 }, @@ -14024,6 +15025,7 @@ "hfg_author": "Selina Bauder", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 2267 }, @@ -14038,6 +15040,7 @@ "hfg_author": "Selina Bauder", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 2269 }, @@ -14052,6 +15055,7 @@ "hfg_author": "Selina Bauder", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 3, "order": 2270 }, @@ -14066,6 +15070,7 @@ "hfg_author": "Selina Bauder", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 3, "order": 2271 }, @@ -14080,6 +15085,7 @@ "hfg_author": "Selina Bauder", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 3, "order": 2273 }, @@ -14094,6 +15100,7 @@ "hfg_author": "Selina Bauder", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 2276 }, @@ -14108,6 +15115,7 @@ "hfg_author": "Selina Bauder", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 2277 }, @@ -14122,6 +15130,7 @@ "hfg_author": "Selina Bauder", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 2278 }, @@ -14136,6 +15145,7 @@ "hfg_author": "Selina Bauder", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 3, "order": 2279 }, @@ -14150,6 +15160,7 @@ "hfg_author": "Selina Bauder", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 2280 }, @@ -14164,6 +15175,7 @@ "hfg_author": "Selina Bauder", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 2281 }, @@ -14178,6 +15190,7 @@ "hfg_author": "Selina Bauder", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 2282 }, @@ -14192,6 +15205,7 @@ "hfg_author": "Selina Bauder", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 5, "order": 2283 }, @@ -14206,6 +15220,7 @@ "hfg_author": "Selina Bauder", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 5, "order": 2284 }, @@ -14220,6 +15235,7 @@ "hfg_author": "Selina Bauder", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 2285 }, @@ -14234,6 +15250,7 @@ "hfg_author": "Selina Bauder", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 2286 }, @@ -14248,6 +15265,7 @@ "hfg_author": "Selina Bauder", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 2287 }, @@ -14262,6 +15280,7 @@ "hfg_author": "Selina Bauder", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 2288 }, @@ -14276,6 +15295,7 @@ "hfg_author": "Selina Bauder", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 2289 }, @@ -14290,6 +15310,7 @@ "hfg_author": "Selina Bauder", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 2290 }, @@ -14304,6 +15325,7 @@ "hfg_author": "Selina Bauder", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 3, "order": 2291 }, @@ -14318,6 +15340,7 @@ "hfg_author": "Selina Bauder", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 2292 }, @@ -14332,6 +15355,7 @@ "hfg_author": "Selina Bauder", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 2293 }, @@ -14346,6 +15370,7 @@ "hfg_author": "Selina Bauder", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 2294 }, @@ -14360,6 +15385,7 @@ "hfg_author": "Selina Bauder", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 3, "order": 2296 }, @@ -14374,6 +15400,7 @@ "hfg_author": "Selina Bauder", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 3, "order": 2297 }, @@ -14388,6 +15415,7 @@ "hfg_author": "Selina Bauder", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 2298 }, @@ -14402,6 +15430,7 @@ "hfg_author": "Selina Bauder", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 3, "order": 2299 }, @@ -14416,6 +15445,7 @@ "hfg_author": "Selina Bauder", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 2300 }, @@ -14430,6 +15460,7 @@ "hfg_author": "Selina Bauder", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 2301 }, @@ -14444,6 +15475,7 @@ "hfg_author": "Selina Bauder", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 2302 }, @@ -14458,6 +15490,7 @@ "hfg_author": "Selina Bauder", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 2303 }, @@ -14472,6 +15505,7 @@ "hfg_author": "Selina Bauder", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 5, "order": 2304 }, @@ -14486,6 +15520,7 @@ "hfg_author": "Selina Bauder", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 2306 }, @@ -14500,6 +15535,7 @@ "hfg_author": "Selina Bauder", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 2308 }, @@ -14514,6 +15550,7 @@ "hfg_author": "Selina Bauder", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 2309 }, @@ -14528,6 +15565,7 @@ "hfg_author": "Hilda Kalyoncu", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 2312 }, @@ -14542,6 +15580,7 @@ "hfg_author": "Hilda Kalyoncu", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 2313 }, @@ -14556,6 +15595,7 @@ "hfg_author": "Hilda Kalyoncu", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 2317 }, @@ -14570,6 +15610,7 @@ "hfg_author": "Hilda Kalyoncu", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 3, "order": 2318 }, @@ -14584,6 +15625,7 @@ "hfg_author": "Hilda Kalyoncu", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 2319 }, @@ -14598,6 +15640,7 @@ "hfg_author": "Hilda Kalyoncu", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 2320 }, @@ -14612,6 +15655,7 @@ "hfg_author": "Hilda Kalyoncu", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 2321 }, @@ -14626,6 +15670,7 @@ "hfg_author": "Hilda Kalyoncu", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 2322 }, @@ -14640,6 +15685,7 @@ "hfg_author": "Hilda Kalyoncu", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 2323 }, @@ -14654,6 +15700,7 @@ "hfg_author": "Hilda Kalyoncu", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 2324 }, @@ -14668,6 +15715,7 @@ "hfg_author": "Hilda Kalyoncu", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 2325 }, @@ -14682,6 +15730,7 @@ "hfg_author": "Hilda Kalyoncu", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 2326 }, @@ -14696,6 +15745,7 @@ "hfg_author": "Hilda Kalyoncu", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 2327 }, @@ -14710,6 +15760,7 @@ "hfg_author": "Hilda Kalyoncu", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 2329 }, @@ -14724,6 +15775,7 @@ "hfg_author": "Hilda Kalyoncu", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 2331 }, @@ -14738,6 +15790,7 @@ "hfg_author": "Hilda Kalyoncu", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 2332 }, @@ -14752,6 +15805,7 @@ "hfg_author": "Hilda Kalyoncu", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 2333 }, @@ -14766,6 +15820,7 @@ "hfg_author": "Marius Schnabel", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 2338 }, @@ -14780,6 +15835,7 @@ "hfg_author": "Marius Schnabel", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 2340 }, @@ -14794,6 +15850,7 @@ "hfg_author": "Marius Schnabel", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 2341 }, @@ -14808,6 +15865,7 @@ "hfg_author": "Marius Schnabel", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 2342 }, @@ -14822,6 +15880,7 @@ "hfg_author": "Marius Schnabel", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 2345 }, @@ -14836,6 +15895,7 @@ "hfg_author": "Marius Schnabel", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 2346 }, @@ -14850,6 +15910,7 @@ "hfg_author": "Marius Schnabel", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 2347 }, @@ -14864,6 +15925,7 @@ "hfg_author": "Marius Schnabel", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 2348 }, @@ -14878,6 +15940,7 @@ "hfg_author": "Marius Schnabel", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 3, "order": 2350 }, @@ -14892,6 +15955,7 @@ "hfg_author": "Marius Schnabel", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 2351 }, @@ -14906,6 +15970,7 @@ "hfg_author": "Marius Schnabel", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 5, "order": 2352 }, @@ -14920,6 +15985,7 @@ "hfg_author": "Marius Schnabel", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 3, "order": 2353 }, @@ -14934,6 +16000,7 @@ "hfg_author": "Marius Schnabel", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 2354 }, @@ -14948,6 +16015,7 @@ "hfg_author": "Marius Schnabel", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 3, "order": 2355 }, @@ -14962,6 +16030,7 @@ "hfg_author": "Marius Schnabel", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 3, "order": 2356 }, @@ -14976,6 +16045,7 @@ "hfg_author": "Marius Schnabel", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 2357 }, @@ -14990,6 +16060,7 @@ "hfg_author": "Marius Schnabel", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 2359 }, @@ -15004,6 +16075,7 @@ "hfg_author": "Marius Schnabel", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 3, "order": 2360 }, @@ -15018,6 +16090,7 @@ "hfg_author": "Marius Schnabel", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 5, "order": 2362 }, @@ -15032,6 +16105,7 @@ "hfg_author": "Marius Schnabel", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 2363 }, @@ -15046,6 +16120,7 @@ "hfg_author": "Marius Schnabel", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 3, "order": 2364 }, @@ -15060,6 +16135,7 @@ "hfg_author": "Miriam Vollmeier", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 2366 }, @@ -15074,6 +16150,7 @@ "hfg_author": "Miriam Vollmeier", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 3, "order": 2367 }, @@ -15088,6 +16165,7 @@ "hfg_author": "Miriam Vollmeier", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 3, "order": 2368 }, @@ -15102,6 +16180,7 @@ "hfg_author": "Miriam Vollmeier", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 5, "order": 2369 }, @@ -15116,6 +16195,7 @@ "hfg_author": "Miriam Vollmeier", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 2372 }, @@ -15130,6 +16210,7 @@ "hfg_author": "Miriam Vollmeier", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 2373 }, @@ -15144,6 +16225,7 @@ "hfg_author": "Miriam Vollmeier", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 2374 }, @@ -15158,6 +16240,7 @@ "hfg_author": "Miriam Vollmeier", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 5, "order": 2375 }, @@ -15172,6 +16255,7 @@ "hfg_author": "Miriam Vollmeier", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 3, "order": 2376 }, @@ -15186,6 +16270,7 @@ "hfg_author": "Miriam Vollmeier", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 2377 }, @@ -15200,6 +16285,7 @@ "hfg_author": "Miriam Vollmeier", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 2378 }, @@ -15214,6 +16300,7 @@ "hfg_author": "Miriam Vollmeier", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 2379 }, @@ -15228,6 +16315,7 @@ "hfg_author": "Miriam Vollmeier", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 2380 }, @@ -15242,6 +16330,7 @@ "hfg_author": "Miriam Vollmeier", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 5, "order": 2381 }, @@ -15256,6 +16345,7 @@ "hfg_author": "Miriam Vollmeier", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 2382 }, @@ -15270,6 +16360,7 @@ "hfg_author": "Miriam Vollmeier", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 2383 }, @@ -15284,6 +16375,7 @@ "hfg_author": "Miriam Vollmeier", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 3, "order": 2385 }, @@ -15298,6 +16390,7 @@ "hfg_author": "Miriam Vollmeier", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 2386 }, @@ -15312,6 +16405,7 @@ "hfg_author": "Miriam Vollmeier", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 2388 }, @@ -15326,6 +16420,7 @@ "hfg_author": "Miriam Vollmeier", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 5, "order": 2389 }, @@ -15340,6 +16435,7 @@ "hfg_author": "Miriam Vollmeier", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 2391 }, @@ -15354,6 +16450,7 @@ "hfg_author": "Miriam Vollmeier", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 2394 }, @@ -15368,6 +16465,7 @@ "hfg_author": "Miriam Vollmeier", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 2395 }, @@ -15382,6 +16480,7 @@ "hfg_author": "Miriam Vollmeier", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 2396 }, @@ -15396,6 +16495,7 @@ "hfg_author": "Miriam Vollmeier", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 2397 }, @@ -15410,6 +16510,7 @@ "hfg_author": "Miriam Vollmeier", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 2400 }, @@ -15424,6 +16525,7 @@ "hfg_author": "Miriam Vollmeier", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 2401 }, @@ -15438,6 +16540,7 @@ "hfg_author": "Miriam Vollmeier", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 2402 }, @@ -15452,6 +16555,7 @@ "hfg_author": "Miriam Vollmeier", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 2403 }, @@ -15466,6 +16570,7 @@ "hfg_author": "Miriam Vollmeier", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 2404 }, @@ -15480,6 +16585,7 @@ "hfg_author": "Miriam Vollmeier", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 2407 }, @@ -15494,6 +16600,7 @@ "hfg_author": "Miriam Vollmeier", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 2411 }, @@ -15508,6 +16615,7 @@ "hfg_author": "Miriam Vollmeier", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 2412 }, @@ -15522,6 +16630,7 @@ "hfg_author": "Miriam Vollmeier", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 2413 }, @@ -15536,6 +16645,7 @@ "hfg_author": "Miriam Vollmeier", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 2414 }, @@ -15550,6 +16660,7 @@ "hfg_author": "Miriam Vollmeier", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 2415 }, @@ -15564,6 +16675,7 @@ "hfg_author": "Miriam Vollmeier", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 2416 }, @@ -15578,6 +16690,7 @@ "hfg_author": "Miriam Vollmeier", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 2417 }, @@ -15592,6 +16705,7 @@ "hfg_author": "Miriam Vollmeier", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 5, "order": 2419 }, @@ -15606,6 +16720,7 @@ "hfg_author": "Miriam Vollmeier", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 2420 }, @@ -15620,6 +16735,7 @@ "hfg_author": "Miriam Vollmeier", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 2421 }, @@ -15634,6 +16750,7 @@ "hfg_author": "Miriam Vollmeier", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 2422 }, @@ -15648,6 +16765,7 @@ "hfg_author": "Miriam Vollmeier", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 2423 }, @@ -15662,6 +16780,7 @@ "hfg_author": "Miriam Vollmeier", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 2424 }, @@ -15676,6 +16795,7 @@ "hfg_author": "Laura Humpfer", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 2425 }, @@ -15690,6 +16810,7 @@ "hfg_author": "Laura Humpfer", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 3, "order": 2426 }, @@ -15704,6 +16825,7 @@ "hfg_author": "Laura Humpfer", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 2427 }, @@ -15718,6 +16840,7 @@ "hfg_author": "Laura Humpfer", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 2428 }, @@ -15732,6 +16855,7 @@ "hfg_author": "Laura Humpfer", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 2429 }, @@ -15746,6 +16870,7 @@ "hfg_author": "Laura Humpfer", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 2430 }, @@ -15760,6 +16885,7 @@ "hfg_author": "Laura Humpfer", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 2431 }, @@ -15774,6 +16900,7 @@ "hfg_author": "Laura Humpfer", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 2432 }, @@ -15788,6 +16915,7 @@ "hfg_author": "Laura Humpfer", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 2433 }, @@ -15802,6 +16930,7 @@ "hfg_author": "Laura Humpfer", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 2434 }, @@ -15816,6 +16945,7 @@ "hfg_author": "Laura Humpfer", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 2435 }, @@ -15830,6 +16960,7 @@ "hfg_author": "Laura Humpfer", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 3, "order": 2436 }, @@ -15844,6 +16975,7 @@ "hfg_author": "Laura Humpfer", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 3, "order": 2437 }, @@ -15858,6 +16990,7 @@ "hfg_author": "Laura Humpfer", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 5, "order": 2438 }, @@ -15872,6 +17005,7 @@ "hfg_author": "Jonas RoรŸner", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 5, "order": 2439 }, @@ -15886,6 +17020,7 @@ "hfg_author": "Jonas RoรŸner", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 2441 }, @@ -15900,6 +17035,7 @@ "hfg_author": "Jonas RoรŸner", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 2442 }, @@ -15914,6 +17050,7 @@ "hfg_author": "Jonas RoรŸner", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 3, "order": 2443 }, @@ -15928,6 +17065,7 @@ "hfg_author": "Jonas RoรŸner", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 2444 }, @@ -15942,6 +17080,7 @@ "hfg_author": "Martin Wehl", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 2446 }, @@ -15956,6 +17095,7 @@ "hfg_author": "Martin Wehl", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 2447 }, @@ -15970,6 +17110,7 @@ "hfg_author": "Martin Wehl", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 2448 }, @@ -15984,6 +17125,7 @@ "hfg_author": "Martin Wehl", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 2449 }, @@ -15998,6 +17140,7 @@ "hfg_author": "Martin Wehl", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 2451 }, @@ -16012,6 +17155,7 @@ "hfg_author": "Martin Wehl", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 2455 }, @@ -16026,6 +17170,7 @@ "hfg_author": "Martin Wehl", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 2457 }, @@ -16040,6 +17185,7 @@ "hfg_author": "Martin Wehl", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 2458 }, @@ -16054,6 +17200,7 @@ "hfg_author": "Martin Wehl", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 2459 }, @@ -16068,6 +17215,7 @@ "hfg_author": "Martin Wehl", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 2461 }, @@ -16082,6 +17230,7 @@ "hfg_author": "Martin Wehl", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 2463 }, @@ -16096,6 +17245,7 @@ "hfg_author": "Martin Wehl", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 2465 }, @@ -16110,6 +17260,7 @@ "hfg_author": "Martin Wehl", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 2467 }, @@ -16124,6 +17275,7 @@ "hfg_author": "Martin Wehl", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 2469 }, @@ -16138,6 +17290,7 @@ "hfg_author": "Martin Wehl", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 2471 }, @@ -16152,6 +17305,7 @@ "hfg_author": "Martin Wehl", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 2473 }, @@ -16166,6 +17320,7 @@ "hfg_author": "Martin Wehl", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 2475 }, @@ -16180,6 +17335,7 @@ "hfg_author": "Martin Wehl", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 2478 }, @@ -16194,6 +17350,7 @@ "hfg_author": "Martin Wehl", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 2480 }, @@ -16208,6 +17365,7 @@ "hfg_author": "Martin Wehl", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 2481 }, @@ -16222,6 +17380,7 @@ "hfg_author": "Martin Wehl", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 2482 }, @@ -16236,6 +17395,7 @@ "hfg_author": "Martin Wehl", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 2483 }, @@ -16250,6 +17410,7 @@ "hfg_author": "Martin Wehl", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 2484 }, @@ -16264,6 +17425,7 @@ "hfg_author": "Martin Wehl", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 2485 }, @@ -16278,6 +17440,7 @@ "hfg_author": "Martin Wehl", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 2486 }, @@ -16292,6 +17455,7 @@ "hfg_author": "Martin Wehl", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 2487 }, @@ -16306,6 +17470,7 @@ "hfg_author": "Martin Wehl", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 2488 }, @@ -16320,6 +17485,7 @@ "hfg_author": "Martin Wehl", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 2489 }, @@ -16334,6 +17500,7 @@ "hfg_author": "Martin Wehl", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 2490 }, @@ -16348,6 +17515,7 @@ "hfg_author": "Martin Wehl", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 2491 }, @@ -16362,6 +17530,7 @@ "hfg_author": "Martin Wehl", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 2492 }, @@ -16376,6 +17545,7 @@ "hfg_author": "Martin Wehl", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 2493 }, @@ -16390,6 +17560,7 @@ "hfg_author": "Martin Wehl", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 2494 }, @@ -16404,6 +17575,7 @@ "hfg_author": "Martin Wehl", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 2495 }, @@ -16418,6 +17590,7 @@ "hfg_author": "Martin Wehl", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 2496 }, @@ -16432,6 +17605,7 @@ "hfg_author": "Martin Wehl", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 2499 }, @@ -16446,6 +17620,7 @@ "hfg_author": "Martin Wehl", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 2500 }, @@ -16460,6 +17635,7 @@ "hfg_author": "Martin Wehl", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 2501 }, @@ -16474,6 +17650,7 @@ "hfg_author": "Martin Wehl", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 2503 }, @@ -16488,6 +17665,7 @@ "hfg_author": "Martin Wehl", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 2504 }, @@ -16502,6 +17680,7 @@ "hfg_author": "Martin Wehl", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 2506 }, @@ -16516,6 +17695,7 @@ "hfg_author": "Martin Wehl", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 2510 }, @@ -16530,6 +17710,7 @@ "hfg_author": "Martin Wehl", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 2522 }, @@ -16544,6 +17725,7 @@ "hfg_author": "Martin Wehl", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 2523 }, @@ -16558,6 +17740,7 @@ "hfg_author": "Ronja Bรคurlen", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 2524 }, @@ -16572,6 +17755,7 @@ "hfg_author": "Ronja Bรคurlen", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 2525 }, @@ -16586,6 +17770,7 @@ "hfg_author": "Ronja Bรคurlen", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 2527 }, @@ -16600,6 +17785,7 @@ "hfg_author": "Ronja Bรคurlen", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 2531 }, @@ -16614,6 +17800,7 @@ "hfg_author": "Ronja Bรคurlen", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 2533 }, @@ -16628,6 +17815,7 @@ "hfg_author": "Ronja Bรคurlen", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 2536 }, @@ -16642,6 +17830,7 @@ "hfg_author": "Ronja Bรคurlen", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 2539 }, @@ -16656,6 +17845,7 @@ "hfg_author": "Ronja Bรคurlen", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 2540 }, @@ -16670,6 +17860,7 @@ "hfg_author": "Ronja Bรคurlen", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 2541 }, @@ -16684,6 +17875,7 @@ "hfg_author": "Ronja Bรคurlen", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 2542 }, @@ -16698,6 +17890,7 @@ "hfg_author": "Ronja Bรคurlen", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 2544 }, @@ -16712,6 +17905,7 @@ "hfg_author": "Ronja Bรคurlen", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 2546 }, @@ -16726,6 +17920,7 @@ "hfg_author": "Ronja Bรคurlen", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 2548 }, @@ -16740,6 +17935,7 @@ "hfg_author": "Ronja Bรคurlen", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 2549 }, @@ -16754,6 +17950,7 @@ "hfg_author": "Ronja Bรคurlen", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 2550 }, @@ -16768,6 +17965,7 @@ "hfg_author": "Ronja Bรคurlen", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 2551 }, @@ -16782,6 +17980,7 @@ "hfg_author": "Ronja Bรคurlen", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 2552 }, @@ -16796,6 +17995,7 @@ "hfg_author": "Ronja Bรคurlen", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 3, "order": 2553 }, @@ -16810,6 +18010,7 @@ "hfg_author": "Ronja Bรคurlen", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 3, "order": 2555 }, @@ -16824,6 +18025,7 @@ "hfg_author": "Ronja Bรคurlen", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 2556 }, @@ -16838,6 +18040,7 @@ "hfg_author": "Ronja Bรคurlen", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 2563 }, @@ -16852,6 +18055,7 @@ "hfg_author": "Ronja Bรคurlen", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 2565 }, @@ -16866,6 +18070,7 @@ "hfg_author": "Ronja Bรคurlen", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 2566 }, @@ -16880,6 +18085,7 @@ "hfg_author": "Ronja Bรคurlen", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 3, "order": 2567 }, @@ -16894,6 +18100,7 @@ "hfg_author": "Ronja Bรคurlen", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 2568 }, @@ -16908,6 +18115,7 @@ "hfg_author": "Ronja Bรคurlen", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 2569 }, @@ -16922,6 +18130,7 @@ "hfg_author": "Ronja Bรคurlen", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 2570 }, @@ -16936,6 +18145,7 @@ "hfg_author": "Ronja Bรคurlen", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 2572 }, @@ -16950,6 +18160,7 @@ "hfg_author": "Ronja Bรคurlen", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 2574 }, @@ -16964,6 +18175,7 @@ "hfg_author": "Ronja Bรคurlen", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 2578 }, @@ -16978,6 +18190,7 @@ "hfg_author": "Ronja Bรคurlen", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 2579 }, @@ -16992,6 +18205,7 @@ "hfg_author": "Ronja Bรคurlen", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 2581 }, @@ -17006,6 +18220,7 @@ "hfg_author": "Ronja Bรคurlen", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 2583 }, @@ -17020,6 +18235,7 @@ "hfg_author": "Ronja Bรคurlen", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 2584 }, @@ -17034,6 +18250,7 @@ "hfg_author": "Ronja Bรคurlen", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 2585 }, @@ -17048,6 +18265,7 @@ "hfg_author": "Ronja Bรคurlen", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 2586 }, @@ -17062,6 +18280,7 @@ "hfg_author": "Ronja Bรคurlen", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 2587 }, @@ -17076,6 +18295,7 @@ "hfg_author": "Ronja Bรคurlen", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 2589 }, @@ -17090,6 +18310,7 @@ "hfg_author": "Ronja Bรคurlen", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 2592 }, @@ -17104,6 +18325,7 @@ "hfg_author": "Ronja Bรคurlen", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 2593 }, @@ -17118,6 +18340,7 @@ "hfg_author": "Ronja Bรคurlen", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 5, "order": 2594 }, @@ -17132,6 +18355,7 @@ "hfg_author": "Rana Cakir", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 2598 }, @@ -17146,6 +18370,7 @@ "hfg_author": "Rana Cakir", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 2599 }, @@ -17160,6 +18385,7 @@ "hfg_author": "Rana Cakir", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 2600 }, @@ -17174,6 +18400,7 @@ "hfg_author": "Rana Cakir", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 2601 }, @@ -17188,6 +18415,7 @@ "hfg_author": "Rana Cakir", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 2603 }, @@ -17202,6 +18430,7 @@ "hfg_author": "Rana Cakir", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 2605 }, @@ -17216,6 +18445,7 @@ "hfg_author": "Rana Cakir", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 2608 }, @@ -17230,6 +18460,7 @@ "hfg_author": "Rana Cakir", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 2609 }, @@ -17244,6 +18475,7 @@ "hfg_author": "Rana Cakir", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 2610 }, @@ -17258,6 +18490,7 @@ "hfg_author": "Rana Cakir", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 2611 }, @@ -17272,6 +18505,7 @@ "hfg_author": "Rana Cakir", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 2612 }, @@ -17286,6 +18520,7 @@ "hfg_author": "Rana Cakir", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 2613 }, @@ -17300,6 +18535,7 @@ "hfg_author": "Rana Cakir", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 2614 }, @@ -17314,6 +18550,7 @@ "hfg_author": "Rana Cakir", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 2615 }, @@ -17328,6 +18565,7 @@ "hfg_author": "Rana Cakir", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 2616 }, @@ -17342,6 +18580,7 @@ "hfg_author": "Rana Cakir", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 2617 }, @@ -17356,6 +18595,7 @@ "hfg_author": "Rana Cakir", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 2618 }, @@ -17370,6 +18610,7 @@ "hfg_author": "Rana Cakir", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 2619 }, @@ -17384,6 +18625,7 @@ "hfg_author": "Rana Cakir", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 2620 }, @@ -17398,6 +18640,7 @@ "hfg_author": "Rana Cakir", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 2621 }, @@ -17412,6 +18655,7 @@ "hfg_author": "Rana Cakir", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 2622 }, @@ -17426,6 +18670,7 @@ "hfg_author": "Rana Cakir", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 2623 }, @@ -17440,6 +18685,7 @@ "hfg_author": "Rana Cakir", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 2624 }, @@ -17454,6 +18700,7 @@ "hfg_author": "Rana Cakir", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 2625 }, @@ -17468,6 +18715,7 @@ "hfg_author": "Rana Cakir", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 2626 }, @@ -17482,6 +18730,7 @@ "hfg_author": "Rana Cakir", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 2627 }, @@ -17496,6 +18745,7 @@ "hfg_author": "Rana Cakir", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 2628 }, @@ -17510,6 +18760,7 @@ "hfg_author": "Rana Cakir", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 2629 }, @@ -17524,6 +18775,7 @@ "hfg_author": "Rana Cakir", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 2630 }, @@ -17538,6 +18790,7 @@ "hfg_author": "Rana Cakir", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 2631 }, @@ -17552,6 +18805,7 @@ "hfg_author": "Vanessa Boutzikoudi", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 2640 }, @@ -17566,6 +18820,7 @@ "hfg_author": "Vanessa Boutzikoudi", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 2642 }, @@ -17580,6 +18835,7 @@ "hfg_author": "Vanessa Boutzikoudi", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 2643 }, @@ -17594,6 +18850,7 @@ "hfg_author": "Vanessa Boutzikoudi", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 2645 }, @@ -17608,6 +18865,7 @@ "hfg_author": "Vanessa Boutzikoudi", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 2647 }, @@ -17622,6 +18880,7 @@ "hfg_author": "Vanessa Boutzikoudi", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 2648 }, @@ -17636,6 +18895,7 @@ "hfg_author": "Vanessa Boutzikoudi", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 2649 }, @@ -17650,6 +18910,7 @@ "hfg_author": "Vanessa Boutzikoudi", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 2650 }, @@ -17664,6 +18925,7 @@ "hfg_author": "Vanessa Boutzikoudi", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 2651 }, @@ -17678,6 +18940,7 @@ "hfg_author": "Vanessa Boutzikoudi", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 2652 }, @@ -17692,6 +18955,7 @@ "hfg_author": "Vanessa Boutzikoudi", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 2654 }, @@ -17706,6 +18970,7 @@ "hfg_author": "Vanessa Boutzikoudi", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 2655 }, @@ -17720,6 +18985,7 @@ "hfg_author": "Vanessa Boutzikoudi", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 2657 }, @@ -17734,6 +19000,7 @@ "hfg_author": "Vanessa Boutzikoudi", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 2659 }, @@ -17748,6 +19015,7 @@ "hfg_author": "Vanessa Boutzikoudi", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 2661 }, @@ -17762,6 +19030,7 @@ "hfg_author": "Vanessa Boutzikoudi", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 2663 }, @@ -17776,6 +19045,7 @@ "hfg_author": "Vanessa Boutzikoudi", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 2665 }, @@ -17790,6 +19060,7 @@ "hfg_author": "Vanessa Boutzikoudi", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 2667 }, @@ -17804,6 +19075,7 @@ "hfg_author": "Vanessa Boutzikoudi", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 2669 }, @@ -17818,6 +19090,7 @@ "hfg_author": "Vanessa Boutzikoudi", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 2671 }, @@ -17832,6 +19105,7 @@ "hfg_author": "Vanessa Boutzikoudi", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 2675 }, @@ -17846,6 +19120,7 @@ "hfg_author": "Vanessa Boutzikoudi", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 2676 }, @@ -17860,6 +19135,7 @@ "hfg_author": "Vanessa Boutzikoudi", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 2677 }, @@ -17874,6 +19150,7 @@ "hfg_author": "Vanessa Boutzikoudi", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 2680 }, @@ -17888,6 +19165,7 @@ "hfg_author": "Vanessa Boutzikoudi", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 2681 }, @@ -17902,6 +19180,7 @@ "hfg_author": "Vanessa Boutzikoudi", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 2684 }, @@ -17916,6 +19195,7 @@ "hfg_author": "Vanessa Boutzikoudi", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 2686 }, @@ -17930,6 +19210,7 @@ "hfg_author": "Vanessa Boutzikoudi", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 2689 }, @@ -17944,6 +19225,7 @@ "hfg_author": "Vanessa Boutzikoudi", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 2692 }, @@ -17958,6 +19240,7 @@ "hfg_author": "Vanessa Boutzikoudi", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 2693 }, @@ -17972,6 +19255,7 @@ "hfg_author": "Vanessa Boutzikoudi", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 2694 }, @@ -17986,6 +19270,7 @@ "hfg_author": "Laura Humpfer", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 2695 }, @@ -18000,6 +19285,7 @@ "hfg_author": "Laura Humpfer", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 2696 }, @@ -18014,6 +19300,7 @@ "hfg_author": "Laura Humpfer", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 2700 }, @@ -18028,6 +19315,7 @@ "hfg_author": "Laura Humpfer", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 2701 }, @@ -18042,6 +19330,7 @@ "hfg_author": "Laura Humpfer", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 2702 }, @@ -18056,6 +19345,7 @@ "hfg_author": "Laura Humpfer", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 2703 }, @@ -18070,6 +19360,7 @@ "hfg_author": "Laura Humpfer", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 2704 }, @@ -18084,6 +19375,7 @@ "hfg_author": "Laura Humpfer", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 2706 }, @@ -18098,6 +19390,7 @@ "hfg_author": "Laura Humpfer", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 2711 }, @@ -18112,6 +19405,7 @@ "hfg_author": "Laura Humpfer", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 2712 }, @@ -18126,6 +19420,7 @@ "hfg_author": "Laura Humpfer", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 2714 }, @@ -18140,6 +19435,7 @@ "hfg_author": "Laura Humpfer", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 2716 }, @@ -18154,6 +19450,7 @@ "hfg_author": "Laura Humpfer", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 2717 }, @@ -18168,6 +19465,7 @@ "hfg_author": "Julian Grรผneberg", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 2719 }, @@ -18182,6 +19480,7 @@ "hfg_author": "Julian Grรผneberg", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 2720 }, @@ -18196,6 +19495,7 @@ "hfg_author": "Julian Grรผneberg", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 2721 }, @@ -18210,6 +19510,7 @@ "hfg_author": "Julian Grรผneberg", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 3, "order": 2722 }, @@ -18224,6 +19525,7 @@ "hfg_author": "Julian Grรผneberg", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 3, "order": 2723 }, @@ -18238,6 +19540,7 @@ "hfg_author": "Julian Grรผneberg", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 3, "order": 2724 }, @@ -18252,6 +19555,7 @@ "hfg_author": "Vanessa Boutzikoudi", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 2725 }, @@ -18266,6 +19570,7 @@ "hfg_author": "Vanessa Boutzikoudi", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 2726 }, @@ -18280,6 +19585,7 @@ "hfg_author": "Vanessa Boutzikoudi", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 2728 }, @@ -18294,6 +19600,7 @@ "hfg_author": "Vanessa Boutzikoudi", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 2729 }, @@ -18308,6 +19615,7 @@ "hfg_author": "Vanessa Boutzikoudi", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 2730 }, @@ -18322,6 +19630,7 @@ "hfg_author": "Vanessa Boutzikoudi", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 2731 }, @@ -18336,6 +19645,7 @@ "hfg_author": "Vanessa Boutzikoudi", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 2732 }, @@ -18350,6 +19660,7 @@ "hfg_author": "Vanessa Boutzikoudi", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 2735 }, @@ -18364,6 +19675,7 @@ "hfg_author": "Vanessa Boutzikoudi", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 2736 }, @@ -18378,6 +19690,7 @@ "hfg_author": "Vanessa Boutzikoudi", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 2737 }, @@ -18392,6 +19705,7 @@ "hfg_author": "Vanessa Boutzikoudi", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 2739 }, @@ -18406,6 +19720,7 @@ "hfg_author": "Vanessa Boutzikoudi", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 3, "order": 2741 }, @@ -18420,6 +19735,7 @@ "hfg_author": "Vanessa Boutzikoudi", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 3, "order": 2742 }, @@ -18434,6 +19750,7 @@ "hfg_author": "Vanessa Boutzikoudi", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 2744 }, @@ -18448,6 +19765,7 @@ "hfg_author": "Vanessa Boutzikoudi", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 2747 }, @@ -18462,6 +19780,7 @@ "hfg_author": "Vanessa Boutzikoudi", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 2749 }, @@ -18476,6 +19795,7 @@ "hfg_author": "Vanessa Boutzikoudi", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 2752 }, @@ -18490,6 +19810,7 @@ "hfg_author": "Vanessa Boutzikoudi", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 2753 }, @@ -18504,6 +19825,7 @@ "hfg_author": "Marius Schnabel", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 2754 }, @@ -18518,6 +19840,7 @@ "hfg_author": "Lisa Schulz", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 2756 }, @@ -18532,6 +19855,7 @@ "hfg_author": "Lisa Schulz", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 2758 }, @@ -18546,6 +19870,7 @@ "hfg_author": "Lisa Schulz", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 2760 }, @@ -18560,6 +19885,7 @@ "hfg_author": "Martin Wehl", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 2776 }, @@ -18574,6 +19900,7 @@ "hfg_author": "Martin Wehl", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 2778 }, @@ -18588,6 +19915,7 @@ "hfg_author": "Martin Wehl", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 2779 }, @@ -18602,6 +19930,7 @@ "hfg_author": "Rana Cakir", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 2782 }, @@ -18616,6 +19945,7 @@ "hfg_author": "Rana Cakir", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 2783 }, @@ -18630,6 +19960,7 @@ "hfg_author": "Rana Cakir", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 2784 }, @@ -18644,6 +19975,7 @@ "hfg_author": "Rana Cakir", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 2785 }, @@ -18658,6 +19990,7 @@ "hfg_author": "Rana Cakir", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 2786 }, @@ -18672,6 +20005,7 @@ "hfg_author": "Rana Cakir", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 2788 }, @@ -18686,6 +20020,7 @@ "hfg_author": "Rana Cakir", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 2789 }, @@ -18700,6 +20035,7 @@ "hfg_author": "Rana Cakir", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 2790 }, @@ -18714,6 +20050,7 @@ "hfg_author": "Sina Schulz", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 2791 }, @@ -18728,6 +20065,7 @@ "hfg_author": "Sina Schulz", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 2792 }, @@ -18742,6 +20080,7 @@ "hfg_author": "Sina Schulz", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 2793 }, @@ -18756,6 +20095,7 @@ "hfg_author": "Sina Schulz", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 2795 }, @@ -18770,6 +20110,7 @@ "hfg_author": "Sina Schulz", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 2797 }, @@ -18784,6 +20125,7 @@ "hfg_author": "Sina Schulz", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 2799 }, @@ -18798,6 +20140,7 @@ "hfg_author": "Sina Schulz", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 2800 }, @@ -18812,6 +20155,7 @@ "hfg_author": "Sina Schulz", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 2801 }, @@ -18826,6 +20170,7 @@ "hfg_author": "Sina Schulz", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 2802 }, @@ -18840,6 +20185,7 @@ "hfg_author": "Sina Schulz", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 2803 }, @@ -18854,6 +20200,7 @@ "hfg_author": "Sina Schulz", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 2804 }, @@ -18868,6 +20215,7 @@ "hfg_author": "Sina Schulz", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 2805 }, @@ -18882,6 +20230,7 @@ "hfg_author": "Sina Schulz", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 2806 }, @@ -18896,6 +20245,7 @@ "hfg_author": "Sina Schulz", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 2807 }, @@ -18910,6 +20260,7 @@ "hfg_author": "Sina Schulz", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 3, "order": 2808 }, @@ -18924,6 +20275,7 @@ "hfg_author": "Martin Wehl", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 2809 }, @@ -18938,6 +20290,7 @@ "hfg_author": "Martin Wehl", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 2810 }, @@ -18952,6 +20305,7 @@ "hfg_author": "Kai Wanschura", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 2812 }, @@ -18966,6 +20320,7 @@ "hfg_author": "Kai Wanschura", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 2813 }, @@ -18980,6 +20335,7 @@ "hfg_author": "Martin Wehl", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 2815 }, @@ -18994,6 +20350,7 @@ "hfg_author": "Jonas RoรŸner", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 2816 }, @@ -19008,6 +20365,7 @@ "hfg_author": "Jonas RoรŸner", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 2817 }, @@ -19022,6 +20380,7 @@ "hfg_author": "Jonas RoรŸner", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 2818 }, @@ -19036,6 +20395,7 @@ "hfg_author": "Jonas RoรŸner", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 2820 }, @@ -19050,6 +20410,7 @@ "hfg_author": "Jonas RoรŸner", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 2822 }, @@ -19064,6 +20425,7 @@ "hfg_author": "Jonas RoรŸner", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 2824 }, @@ -19078,6 +20440,7 @@ "hfg_author": "Jonas RoรŸner", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 2826 }, @@ -19092,6 +20455,7 @@ "hfg_author": "Jonas RoรŸner", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 2829 }, @@ -19106,6 +20470,7 @@ "hfg_author": "Jonas RoรŸner", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 2830 }, @@ -19120,6 +20485,7 @@ "hfg_author": "Jonas RoรŸner", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 2831 }, @@ -19134,6 +20500,7 @@ "hfg_author": "Jonas RoรŸner", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 2832 }, @@ -19148,6 +20515,7 @@ "hfg_author": "Sina Schulz", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 2834 }, @@ -19162,6 +20530,7 @@ "hfg_author": "Sina Schulz", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 2836 }, @@ -19176,6 +20545,7 @@ "hfg_author": "Sina Schulz", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 2838 }, @@ -19190,6 +20560,7 @@ "hfg_author": "Sina Schulz", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 2839 }, @@ -19204,6 +20575,7 @@ "hfg_author": "Sina Schulz", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 2840 }, @@ -19218,6 +20590,7 @@ "hfg_author": "Sina Schulz", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 2841 }, @@ -19232,6 +20605,7 @@ "hfg_author": "Sina Schulz", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 2842 }, @@ -19246,6 +20620,7 @@ "hfg_author": "Sina Schulz", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 2843 }, @@ -19260,6 +20635,7 @@ "hfg_author": "Sina Schulz", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 2844 }, @@ -19274,6 +20650,7 @@ "hfg_author": "Sina Schulz", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 2845 }, @@ -19288,6 +20665,7 @@ "hfg_author": "Sina Schulz", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 2846 }, @@ -19302,6 +20680,7 @@ "hfg_author": "Sina Schulz", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 2848 }, @@ -19316,6 +20695,7 @@ "hfg_author": "Sina Schulz", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 2849 }, @@ -19330,6 +20710,7 @@ "hfg_author": "Sina Schulz", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 2850 }, @@ -19344,6 +20725,7 @@ "hfg_author": "Jonas RoรŸner", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 2853 }, @@ -19358,6 +20740,7 @@ "hfg_author": "Jonas RoรŸner", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 2854 }, @@ -19372,6 +20755,7 @@ "hfg_author": "Jonas RoรŸner", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 2858 }, @@ -19386,6 +20770,7 @@ "hfg_author": "Jonas RoรŸner", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 2859 }, @@ -19400,6 +20785,7 @@ "hfg_author": "Jonas RoรŸner", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 2860 }, @@ -19414,6 +20800,7 @@ "hfg_author": "Jonas RoรŸner", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 2861 }, @@ -19428,6 +20815,7 @@ "hfg_author": "Jonas RoรŸner", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 2862 }, @@ -19442,6 +20830,7 @@ "hfg_author": "Jonas RoรŸner", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 2863 }, @@ -19456,6 +20845,7 @@ "hfg_author": "Jonas RoรŸner", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 2864 }, @@ -19470,6 +20860,7 @@ "hfg_author": "Jonas RoรŸner", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 2868 }, @@ -19484,6 +20875,7 @@ "hfg_author": "Jonas RoรŸner", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 2870 }, @@ -19498,6 +20890,7 @@ "hfg_author": "Marius Schnabel", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 2871 }, @@ -19512,6 +20905,7 @@ "hfg_author": "Marius Schnabel", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 2872 }, @@ -19526,6 +20920,7 @@ "hfg_author": "Marius Schnabel", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 2873 }, @@ -19540,6 +20935,7 @@ "hfg_author": "Marius Schnabel", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 2874 }, @@ -19554,6 +20950,7 @@ "hfg_author": "Marius Schnabel", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 2875 }, @@ -19568,6 +20965,7 @@ "hfg_author": "Marius Schnabel", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 2876 }, @@ -19582,6 +20980,7 @@ "hfg_author": "Marius Schnabel", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 2877 }, @@ -19596,6 +20995,7 @@ "hfg_author": "Marius Schnabel", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 2883 }, @@ -19610,6 +21010,7 @@ "hfg_author": "Marius Schnabel", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 2884 }, @@ -19624,6 +21025,7 @@ "hfg_author": "Marius Schnabel", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 2886 }, @@ -19638,6 +21040,7 @@ "hfg_author": "Marius Schnabel", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 2887 }, @@ -19652,6 +21055,7 @@ "hfg_author": "Marius Schnabel", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 2888 }, @@ -19666,6 +21070,7 @@ "hfg_author": "Marius Schnabel", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 2889 }, @@ -19680,6 +21085,7 @@ "hfg_author": "Marius Schnabel", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 2890 }, @@ -19694,6 +21100,7 @@ "hfg_author": "Marius Schnabel", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 2891 }, @@ -19708,6 +21115,7 @@ "hfg_author": "Marius Schnabel", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 2894 }, @@ -19722,6 +21130,7 @@ "hfg_author": "Rana Cakir", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 2898 }, @@ -19736,6 +21145,7 @@ "hfg_author": "Rana Cakir", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 2902 }, @@ -19750,6 +21160,7 @@ "hfg_author": "Rana Cakir", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 2904 }, @@ -19764,6 +21175,7 @@ "hfg_author": "Rana Cakir", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 2906 }, @@ -19778,6 +21190,7 @@ "hfg_author": "Rana Cakir", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 2908 }, @@ -19792,6 +21205,7 @@ "hfg_author": "Rana Cakir", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 2909 }, @@ -19806,6 +21220,7 @@ "hfg_author": "Sina Schulz", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 2910 }, @@ -19820,6 +21235,7 @@ "hfg_author": "Sina Schulz", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 2911 }, @@ -19834,6 +21250,7 @@ "hfg_author": "Sina Schulz", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 2912 }, @@ -19848,6 +21265,7 @@ "hfg_author": "Sina Schulz", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 2915 }, @@ -19862,6 +21280,7 @@ "hfg_author": "Sina Schulz", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 2916 }, @@ -19876,6 +21295,7 @@ "hfg_author": "Sina Schulz", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 2918 }, @@ -19890,6 +21310,7 @@ "hfg_author": "Sina Schulz", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 2920 }, @@ -19904,6 +21325,7 @@ "hfg_author": "Sina Schulz", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 2922 }, @@ -19918,6 +21340,7 @@ "hfg_author": "Sina Schulz", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 2923 }, @@ -19932,6 +21355,7 @@ "hfg_author": "Sina Schulz", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 2924 }, @@ -19946,6 +21370,7 @@ "hfg_author": "Sina Schulz", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 2925 }, @@ -19960,6 +21385,7 @@ "hfg_author": "Sina Schulz", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 2926 }, @@ -19974,6 +21400,7 @@ "hfg_author": "Sina Schulz", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 2927 }, @@ -19988,6 +21415,7 @@ "hfg_author": "Sina Schulz", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 2928 }, @@ -20002,6 +21430,7 @@ "hfg_author": "Sina Schulz", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 2931 }, @@ -20016,6 +21445,7 @@ "hfg_author": "Sina Schulz", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 2932 }, @@ -20030,6 +21460,7 @@ "hfg_author": "Sina Schulz", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 2934 }, @@ -20044,6 +21475,7 @@ "hfg_author": "Sina Schulz", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 2936 }, @@ -20058,6 +21490,7 @@ "hfg_author": "Sina Schulz", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 2938 }, @@ -20072,6 +21505,7 @@ "hfg_author": "Sina Schulz", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 2940 }, @@ -20086,6 +21520,7 @@ "hfg_author": "Lisa Schulz", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 2941 }, @@ -20100,6 +21535,7 @@ "hfg_author": "Lisa Schulz", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 2942 }, @@ -20114,6 +21550,7 @@ "hfg_author": "Lisa Schulz", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 2944 }, @@ -20128,6 +21565,7 @@ "hfg_author": "Lisa Schulz", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 2945 }, @@ -20142,6 +21580,7 @@ "hfg_author": "Lisa Schulz", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 2947 }, @@ -20156,6 +21595,7 @@ "hfg_author": "Hilda Kalyoncu", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 2948 }, @@ -20170,6 +21610,7 @@ "hfg_author": "Hilda Kalyoncu", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 2950 }, @@ -20184,6 +21625,7 @@ "hfg_author": "Hilda Kalyoncu", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 2954 }, @@ -20198,6 +21640,7 @@ "hfg_author": "Hilda Kalyoncu", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 2956 }, @@ -20212,6 +21655,7 @@ "hfg_author": "Hilda Kalyoncu", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 2959 }, @@ -20226,6 +21670,7 @@ "hfg_author": "Hilda Kalyoncu", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 2962 }, @@ -20240,6 +21685,7 @@ "hfg_author": "Hilda Kalyoncu", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 2963 }, @@ -20254,6 +21700,7 @@ "hfg_author": "Hilda Kalyoncu", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 2966 }, @@ -20268,6 +21715,7 @@ "hfg_author": "Hilda Kalyoncu", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 2968 }, @@ -20282,6 +21730,7 @@ "hfg_author": "Hilda Kalyoncu", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 2970 }, @@ -20296,6 +21745,7 @@ "hfg_author": "Hilda Kalyoncu", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 2971 }, @@ -20310,6 +21760,7 @@ "hfg_author": "Hilda Kalyoncu", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 2973 }, @@ -20324,6 +21775,7 @@ "hfg_author": "Sina Schulz", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 2982 }, @@ -20338,6 +21790,7 @@ "hfg_author": "Sina Schulz", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 2983 }, @@ -20352,6 +21805,7 @@ "hfg_author": "Marius Schnabel", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 2984 }, @@ -20366,6 +21820,7 @@ "hfg_author": "Marius Schnabel", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 2985 }, @@ -20380,6 +21835,7 @@ "hfg_author": "Lisa Schulz", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 2986 }, @@ -20394,6 +21850,7 @@ "hfg_author": "Lisa Schulz", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 2988 }, @@ -20408,6 +21865,7 @@ "hfg_author": "Lisa Schulz", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 2990 }, @@ -20422,6 +21880,7 @@ "hfg_author": "Lisa Schulz", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 2991 }, @@ -20436,6 +21895,7 @@ "hfg_author": "Lisa Schulz", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 2992 }, @@ -20450,6 +21910,7 @@ "hfg_author": "Lisa Schulz", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 2993 }, @@ -20464,6 +21925,7 @@ "hfg_author": "Marius Schnabel", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 3, "order": 3002 }, @@ -20478,6 +21940,7 @@ "hfg_author": "Marius Schnabel", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 3003 }, @@ -20492,6 +21955,7 @@ "hfg_author": "Marius Schnabel", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 3005 }, @@ -20506,6 +21970,7 @@ "hfg_author": "Marius Schnabel", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 3008 }, @@ -20520,6 +21985,7 @@ "hfg_author": "Ronja Bรคurlen", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 3010 }, @@ -20534,6 +22000,7 @@ "hfg_author": "Ronja Bรคurlen", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 3011 }, @@ -20548,6 +22015,7 @@ "hfg_author": "Ronja Bรคurlen", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 3012 }, @@ -20562,6 +22030,7 @@ "hfg_author": "Ronja Bรคurlen", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 3013 }, @@ -20576,6 +22045,7 @@ "hfg_author": "Ronja Bรคurlen", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 3014 }, @@ -20590,6 +22060,7 @@ "hfg_author": "Ronja Bรคurlen", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 3015 }, @@ -20604,6 +22075,7 @@ "hfg_author": "Ronja Bรคurlen", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 3016 }, @@ -20618,6 +22090,7 @@ "hfg_author": "Ronja Bรคurlen", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 3017 }, @@ -20632,6 +22105,7 @@ "hfg_author": "Miriam Vollmeier", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 3023 }, @@ -20646,6 +22120,7 @@ "hfg_author": "Miriam Vollmeier", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 3025 }, @@ -20660,6 +22135,7 @@ "hfg_author": "Miriam Vollmeier", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 3026 }, @@ -20674,6 +22150,7 @@ "hfg_author": "Miriam Vollmeier", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 3027 }, @@ -20688,6 +22165,7 @@ "hfg_author": "Miriam Vollmeier", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 3028 }, @@ -20702,6 +22180,7 @@ "hfg_author": "Miriam Vollmeier", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 3032 }, @@ -20716,6 +22195,7 @@ "hfg_author": "Miriam Vollmeier", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 3033 }, @@ -20730,6 +22210,7 @@ "hfg_author": "Jose Avila", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 3039 }, @@ -20744,6 +22225,7 @@ "hfg_author": "Jose Avila", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 3041 }, @@ -20758,6 +22240,7 @@ "hfg_author": "Jose Avila", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 3043 }, @@ -20772,6 +22255,7 @@ "hfg_author": "Jose Avila", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 3045 }, @@ -20786,6 +22270,7 @@ "hfg_author": "Jose Avila", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 3047 }, @@ -20800,6 +22285,7 @@ "hfg_author": "Jose Avila", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 3049 }, @@ -20814,6 +22300,7 @@ "hfg_author": "Jose Avila", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 3051 }, @@ -20828,6 +22315,7 @@ "hfg_author": "Jose Avila", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 3053 }, @@ -20842,6 +22330,7 @@ "hfg_author": "Jose Avila", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 3055 }, @@ -20856,6 +22345,7 @@ "hfg_author": "Jose Avila", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 3057 }, @@ -20870,6 +22360,7 @@ "hfg_author": "Jose Avila", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 3059 }, @@ -20884,6 +22375,7 @@ "hfg_author": "Jose Avila", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 3061 }, @@ -20898,6 +22390,7 @@ "hfg_author": "Jose Avila", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 3063 }, @@ -20912,6 +22405,7 @@ "hfg_author": "Jose Avila", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 3065 }, @@ -20926,6 +22420,7 @@ "hfg_author": "Jose Avila", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 3067 }, @@ -20940,6 +22435,7 @@ "hfg_author": "Jose Avila", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 3073 }, @@ -20954,6 +22450,7 @@ "hfg_author": "Jose Avila", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 3075 }, @@ -20968,6 +22465,7 @@ "hfg_author": "Jose Avila", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 3083 }, @@ -20982,6 +22480,7 @@ "hfg_author": "Jose Avila", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 3085 }, @@ -20996,6 +22495,7 @@ "hfg_author": "Jose Avila", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 3089 }, @@ -21010,6 +22510,7 @@ "hfg_author": "Jose Avila", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 3091 }, @@ -21024,6 +22525,7 @@ "hfg_author": "Jose Avila", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 3107 }, @@ -21038,6 +22540,7 @@ "hfg_author": "Jose Avila", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 3108 }, @@ -21052,6 +22555,7 @@ "hfg_author": "Jose Avila", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 3109 }, @@ -21066,6 +22570,7 @@ "hfg_author": "Jose Avila", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 3111 }, @@ -21080,6 +22585,7 @@ "hfg_author": "Jose Avila", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 3112 }, @@ -21094,6 +22600,7 @@ "hfg_author": "Jose Avila", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 3114 }, @@ -21108,6 +22615,7 @@ "hfg_author": "Jose Avila", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 3116 }, @@ -21122,6 +22630,7 @@ "hfg_author": "Jose Avila", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 3118 }, @@ -21136,6 +22645,7 @@ "hfg_author": "Jose Avila", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 3119 }, @@ -21150,6 +22660,7 @@ "hfg_author": "Jose Avila", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 3121 }, @@ -21164,6 +22675,7 @@ "hfg_author": "Jose Avila", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 3122 }, @@ -21178,6 +22690,7 @@ "hfg_author": "Jose Avila", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 3123 }, @@ -21192,6 +22705,7 @@ "hfg_author": "Jose Avila", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 3124 }, @@ -21206,6 +22720,7 @@ "hfg_author": "Jose Avila", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 3125 }, @@ -21220,6 +22735,7 @@ "hfg_author": "Jose Avila", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 3127 }, @@ -21234,6 +22750,7 @@ "hfg_author": "Jose Avila", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 3129 }, @@ -21248,6 +22765,7 @@ "hfg_author": "Jose Avila", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 3131 }, @@ -21262,6 +22780,7 @@ "hfg_author": "Jose Avila", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 3133 }, @@ -21276,6 +22795,7 @@ "hfg_author": "Jose Avila", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 3134 }, @@ -21290,6 +22810,7 @@ "hfg_author": "Jose Avila", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 3135 }, @@ -21304,6 +22825,7 @@ "hfg_author": "Jose Avila", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 3136 }, @@ -21318,6 +22840,7 @@ "hfg_author": "Jose Avila", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 3137 }, @@ -21332,6 +22855,7 @@ "hfg_author": "Jose Avila", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 3138 }, @@ -21346,6 +22870,7 @@ "hfg_author": "Jose Avila", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 3139 }, @@ -21360,6 +22885,7 @@ "hfg_author": "Hilda Kalyoncu", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 4, "order": 3141 }, @@ -21374,6 +22900,7 @@ "hfg_author": "Hilda Kalyoncu", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 4, "order": 3143 }, @@ -21388,6 +22915,7 @@ "hfg_author": "Hilda Kalyoncu", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 4, "order": 3145 }, @@ -21402,6 +22930,7 @@ "hfg_author": "Hilda Kalyoncu", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 3149 }, @@ -21416,6 +22945,7 @@ "hfg_author": "Hilda Kalyoncu", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 3152 }, @@ -21430,6 +22960,7 @@ "hfg_author": "Hilda Kalyoncu", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 3155 }, @@ -21444,6 +22975,7 @@ "hfg_author": "Hilda Kalyoncu", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 3156 }, @@ -21458,6 +22990,7 @@ "hfg_author": "Hilda Kalyoncu", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 3158 }, @@ -21472,6 +23005,7 @@ "hfg_author": "Hilda Kalyoncu", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 3160 }, @@ -21486,6 +23020,7 @@ "hfg_author": "Hilda Kalyoncu", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 3162 }, @@ -21500,6 +23035,7 @@ "hfg_author": "Hilda Kalyoncu", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 3163 }, @@ -21514,6 +23050,7 @@ "hfg_author": "Hilda Kalyoncu", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 3164 }, @@ -21528,6 +23065,7 @@ "hfg_author": "Hilda Kalyoncu", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 3165 }, @@ -21542,6 +23080,7 @@ "hfg_author": "Hilda Kalyoncu", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 3166 }, @@ -21556,6 +23095,7 @@ "hfg_author": "Hilda Kalyoncu", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 3167 }, @@ -21570,6 +23110,7 @@ "hfg_author": "Hilda Kalyoncu", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 3182 }, @@ -21584,6 +23125,7 @@ "hfg_author": "Hilda Kalyoncu", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 3183 }, @@ -21598,6 +23140,7 @@ "hfg_author": "Hilda Kalyoncu", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 3184 }, @@ -21612,6 +23155,7 @@ "hfg_author": "Hilda Kalyoncu", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 3185 }, @@ -21626,6 +23170,7 @@ "hfg_author": "Hilda Kalyoncu", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 3187 }, @@ -21640,6 +23185,7 @@ "hfg_author": "Hilda Kalyoncu", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 3189 }, @@ -21654,6 +23200,7 @@ "hfg_author": "Hilda Kalyoncu", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 3191 }, @@ -21668,6 +23215,7 @@ "hfg_author": "Jose Avila", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 3219 }, @@ -21682,6 +23230,7 @@ "hfg_author": "Jose Avila", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 3220 }, @@ -21696,6 +23245,7 @@ "hfg_author": "Jose Avila", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 3221 }, @@ -21710,6 +23260,7 @@ "hfg_author": "Jose Avila", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 3222 }, @@ -21724,6 +23275,7 @@ "hfg_author": "Jose Avila", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 3223 }, @@ -21738,6 +23290,7 @@ "hfg_author": "Jose Avila", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 3224 }, @@ -21752,6 +23305,7 @@ "hfg_author": "Jose Avila", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 3231 }, @@ -21766,6 +23320,7 @@ "hfg_author": "Jose Avila", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 3234 }, @@ -21780,6 +23335,7 @@ "hfg_author": "Jose Avila", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 3235 }, @@ -21794,6 +23350,7 @@ "hfg_author": "Jose Avila", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 3238 }, @@ -21808,6 +23365,7 @@ "hfg_author": "Jose Avila", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 3242 }, @@ -21822,6 +23380,7 @@ "hfg_author": "Jose Avila", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 3244 }, @@ -21836,6 +23395,7 @@ "hfg_author": "Jose Avila", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 3245 }, @@ -21850,6 +23410,7 @@ "hfg_author": "Jose Avila", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 3247 }, @@ -21864,6 +23425,7 @@ "hfg_author": "Jose Avila", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 3250 }, @@ -21878,6 +23440,7 @@ "hfg_author": "Jose Avila", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 3264 }, @@ -21892,6 +23455,7 @@ "hfg_author": "Jose Avila", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 3266 }, @@ -21906,6 +23470,7 @@ "hfg_author": "Lisa Schulz", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 3285 }, @@ -21920,6 +23485,7 @@ "hfg_author": "Lisa Schulz", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 3286 }, @@ -21934,6 +23500,7 @@ "hfg_author": "Lisa Schulz", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 3288 }, @@ -21948,6 +23515,7 @@ "hfg_author": "Lisa Schulz", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 3295 }, @@ -21962,6 +23530,7 @@ "hfg_author": "Lisa Schulz", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 3298 }, @@ -21976,6 +23545,7 @@ "hfg_author": "Lisa Schulz", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 1, "order": 3300 }, @@ -21990,6 +23560,7 @@ "hfg_author": "Lisa Schulz", "skintone": "", "skintone_base_emoji": "", + "skintone_base_hexcode": "", "unicode": 4, "order": 3301 } diff --git a/helpers/create-emoji-tables.js b/helpers/create-emoji-tables.js index ccc856691..1b4e121cd 100644 --- a/helpers/create-emoji-tables.js +++ b/helpers/create-emoji-tables.js @@ -1,4 +1,3 @@ -const path = require('path'); const fs = require('fs'); const _ = require('lodash'); const csvWriter = require('csv-write-stream'); @@ -35,15 +34,18 @@ let emojis = []; // add emoji with skintones to list _.each(emojibaseData, e => { - emojis = [...emojis, e]; if (e.skins) { + e['skintone_base_emoji'] = e.emoji; + e['skintone_base_hexcode'] = e.hexcode; // add skintone_base_emoji prop const skintones = _.map(e.skins, (s) => { s['skintone_base_emoji'] = e.emoji; + s['skintone_base_hexcode'] = e.hexcode; return s; }) emojis = [...emojis, ...skintones]; } + emojis = [...emojis, e]; }); // custom hfg emojis @@ -71,6 +73,7 @@ emojis = _.map(emojis, e => { hfg_author: hfg_author, skintone: e.tone ? e.tone : '', skintone_base_emoji: e.skintone_base_emoji ? e.skintone_base_emoji : '', + skintone_base_hexcode: e.skintone_base_hexcode ? e.skintone_base_hexcode : '', unicode: e.version, order: e.order, }; diff --git a/helpers/create-skintones-svg.js b/helpers/create-skintones-svg.js deleted file mode 100644 index c1bb280a6..000000000 --- a/helpers/create-skintones-svg.js +++ /dev/null @@ -1,20 +0,0 @@ -const fs = require('fs'); -var JSDOM = require('jsdom').JSDOM; - -const fitzpatrick = ['#FADCBC', '#E0BB95', '#BF8F68', '#9B643D', '#594539']; - -const writeSvg = (filePath, data) => { - const head = '' + '\n'; - fs.writeFileSync(filePath, head + data); -} - -const dom = new JSDOM(fs.readFileSync('./color/svg/1F60A.svg', 'utf8')); -const doc = dom.window.document; - -const fillSkins = doc.querySelectorAll('[fill*="#FCEA2B" i]'); -fitzpatrick.forEach((skintone, i) => { - fillSkins.forEach(s => { - s.setAttribute('fill', skintone); - }); - writeSvg('/Users/bene/Desktop/1F60A_skin_'+i+'.svg', doc.querySelector('svg').outerHTML); -}); diff --git a/helpers/create-svg-skintones.js b/helpers/create-svg-skintones.js new file mode 100644 index 000000000..de75ea991 --- /dev/null +++ b/helpers/create-svg-skintones.js @@ -0,0 +1,36 @@ +const fs = require('fs'); +const path = require('path'); +const _ = require('lodash'); +const JSDOM = require('jsdom').JSDOM; + +const fitzpatrick = ['#FADCBC', '#E0BB95', '#BF8F68', '#9B643D', '#594539']; +const folderIn = './color/svg'; +const folderOut = './_tmp/svg-skintones'; + +const writeSvg = (filePath, data) => { + const head = '' + '\n'; + fs.writeFileSync(filePath, head + data); +} + +const generateSkintoneSvg = (srcFilePath, destFilePath, skintone) => { + const dom = new JSDOM(fs.readFileSync(srcFilePath, 'utf8')); + const doc = dom.window.document; + const fillSkins = doc.querySelectorAll('[fill*="#FCEA2B" i]'); + if (fillSkins.length === 0) console.error('Error: No skintone defined in ' + srcFilePath); + fillSkins.forEach(s => { s.setAttribute('fill', skintone); }); + writeSvg(destFilePath, doc.querySelector('svg').outerHTML); +} + +let emojis = require('../data/openmoji.json'); +console.log('Loaded emoijs: ' + emojis.length); +// TODO: Check is this correct? +emojis = _.filter(emojis, (e) => { return e.skintone_base_emoji !== '' && e.skintone_base_emoji !== e.emoji }); +console.log('Loaded emoijs with skintones: ' + emojis.length); + +emojis.forEach(e => { + generateSkintoneSvg( + path.join(folderIn, e.skintone_base_hexcode + '.svg'), + path.join(folderOut, e.hexcode + '.svg'), + fitzpatrick[e.skintone-1] + ); +}); From cd4026f490882ef61d60be56c42c7bb8f7e46d74 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Benedikt=20Gro=C3=9F?= Date: Wed, 4 Jul 2018 13:15:37 +0200 Subject: [PATCH 3/4] Introduced tests based on mocha and chai; intro first skintones test --- package-lock.json | 133 ++++++++++++++++++++++++++++++++++++++++++++++ package.json | 6 ++- test/test.js | 22 ++++++++ 3 files changed, 160 insertions(+), 1 deletion(-) create mode 100644 test/test.js diff --git a/package-lock.json b/package-lock.json index 6196d6bed..b55bd88e3 100644 --- a/package-lock.json +++ b/package-lock.json @@ -56,6 +56,11 @@ "resolved": "https://registry.npmjs.org/assert-plus/-/assert-plus-1.0.0.tgz", "integrity": "sha1-8S4PPF13sLHN2RRpQuTpbB5N1SU=" }, + "assertion-error": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/assertion-error/-/assertion-error-1.1.0.tgz", + "integrity": "sha512-jgsaNduz+ndvGyFt3uSuWqvy4lCnIJiovtouQN5JZHOKCS2QuhEdbcQHFhVksz2N2U9hXJo8odG7ETyWlEeuDw==" + }, "async-limiter": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/async-limiter/-/async-limiter-1.0.0.tgz", @@ -104,11 +109,34 @@ "resolved": "https://registry.npmjs.org/browser-process-hrtime/-/browser-process-hrtime-0.1.2.tgz", "integrity": "sha1-Ql1opY00R/AqBKqJQYf86K+Le44=" }, + "browser-stdout": { + "version": "1.3.1", + "resolved": "https://registry.npmjs.org/browser-stdout/-/browser-stdout-1.3.1.tgz", + "integrity": "sha512-qhAVI1+Av2X7qelOfAIYwXONood6XlZE/fXaBSmW/T5SzLAmCgzi+eiWE7fUvbHaeNBQH13UftjpXxsfLkMpgw==" + }, "caseless": { "version": "0.12.0", "resolved": "https://registry.npmjs.org/caseless/-/caseless-0.12.0.tgz", "integrity": "sha1-G2gcIf+EAzyCZUMJBolCDRhxUdw=" }, + "chai": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chai/-/chai-4.1.2.tgz", + "integrity": "sha1-D2RYS6ZC8PKs4oBiefTwbKI61zw=", + "requires": { + "assertion-error": "1.1.0", + "check-error": "1.0.2", + "deep-eql": "3.0.1", + "get-func-name": "2.0.0", + "pathval": "1.1.0", + "type-detect": "4.0.8" + } + }, + "check-error": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/check-error/-/check-error-1.0.2.tgz", + "integrity": "sha1-V00xLt2Iu13YkS6Sht1sCu1KrII=" + }, "co": { "version": "4.6.0", "resolved": "https://registry.npmjs.org/co/-/co-4.6.0.tgz", @@ -122,6 +150,11 @@ "delayed-stream": "1.0.0" } }, + "commander": { + "version": "2.15.1", + "resolved": "https://registry.npmjs.org/commander/-/commander-2.15.1.tgz", + "integrity": "sha512-VlfT9F3V0v+jr4yxPc5gg9s62/fIVWsd2Bk2iD435um1NlGMYdVCq+MjcXnhYq2icNOizHr1kK+5TI6H0Hy0ag==" + }, "concat-map": { "version": "0.0.1", "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz", @@ -178,6 +211,22 @@ "whatwg-url": "6.5.0" } }, + "debug": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/debug/-/debug-3.1.0.tgz", + "integrity": "sha512-OX8XqP7/1a9cqkxYw2yXss15f26NKWBpDXQd0/uK/KPqdQhxbPa994hnzjcE2VqQpDslf55723cKPUOGSmMY3g==", + "requires": { + "ms": "2.0.0" + } + }, + "deep-eql": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/deep-eql/-/deep-eql-3.0.1.tgz", + "integrity": "sha512-+QeIQyN5ZuO+3Uk5DYh6/1eKO0m0YmJFGNmFHGACpf1ClL1nmlV/p4gNgbl2pJGxgXb4faqo6UE+M5ACEMyVcw==", + "requires": { + "type-detect": "4.0.8" + } + }, "deep-is": { "version": "0.1.3", "resolved": "https://registry.npmjs.org/deep-is/-/deep-is-0.1.3.tgz", @@ -188,6 +237,11 @@ "resolved": "https://registry.npmjs.org/delayed-stream/-/delayed-stream-1.0.0.tgz", "integrity": "sha1-3zrhmayt+31ECqrgsp4icrJOxhk=" }, + "diff": { + "version": "3.5.0", + "resolved": "https://registry.npmjs.org/diff/-/diff-3.5.0.tgz", + "integrity": "sha512-A46qtFgd+g7pDZinpnwiRJtxbC1hpgf0uzP3iG89scHk0AUC7A1TGxf5OiiOUv/JMZR8GOt8hL900hV0bOy5xA==" + }, "domexception": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/domexception/-/domexception-1.0.1.tgz", @@ -210,6 +264,11 @@ "resolved": "https://registry.npmjs.org/emojibase-data/-/emojibase-data-3.0.0.tgz", "integrity": "sha1-crEsMWoQskLtaW1egCReNMh9/dQ=" }, + "escape-string-regexp": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz", + "integrity": "sha1-G2HAViGQqN/2rjuyzwIAyhMLhtQ=" + }, "escodegen": { "version": "1.10.0", "resolved": "https://registry.npmjs.org/escodegen/-/escodegen-1.10.0.tgz", @@ -290,6 +349,11 @@ "is-property": "1.0.2" } }, + "get-func-name": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/get-func-name/-/get-func-name-2.0.0.tgz", + "integrity": "sha1-6td0q+5y4gQJQzoGY2YCPdaIekE=" + }, "getpass": { "version": "0.1.7", "resolved": "https://registry.npmjs.org/getpass/-/getpass-0.1.7.tgz", @@ -311,6 +375,11 @@ "path-is-absolute": "1.0.1" } }, + "growl": { + "version": "1.10.5", + "resolved": "https://registry.npmjs.org/growl/-/growl-1.10.5.tgz", + "integrity": "sha512-qBr4OuELkhPenW6goKVXiv47US3clb3/IbuWF9KNKEijAy9oeHxU9IgzjvJhHkUzhaj7rOUD7+YGWqUjLp5oSA==" + }, "har-schema": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/har-schema/-/har-schema-2.0.0.tgz", @@ -325,6 +394,16 @@ "har-schema": "2.0.0" } }, + "has-flag": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", + "integrity": "sha1-tdRU3CGZriJWmfNGfloH87lVuv0=" + }, + "he": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/he/-/he-1.1.1.tgz", + "integrity": "sha1-k0EP0hsAlzUVH4howvJx80J+I/0=" + }, "html-encoding-sniffer": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/html-encoding-sniffer/-/html-encoding-sniffer-1.0.2.tgz", @@ -499,6 +578,42 @@ "brace-expansion": "1.1.11" } }, + "minimist": { + "version": "0.0.8", + "resolved": "https://registry.npmjs.org/minimist/-/minimist-0.0.8.tgz", + "integrity": "sha1-hX/Kv8M5fSYluCKCYuhqp6ARsF0=" + }, + "mkdirp": { + "version": "0.5.1", + "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-0.5.1.tgz", + "integrity": "sha1-MAV0OOrGz3+MR2fzhkjWaX11yQM=", + "requires": { + "minimist": "0.0.8" + } + }, + "mocha": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/mocha/-/mocha-5.2.0.tgz", + "integrity": "sha512-2IUgKDhc3J7Uug+FxMXuqIyYzH7gJjXECKe/w43IGgQHTSj3InJi+yAA7T24L9bQMRKiUEHxEX37G5JpVUGLcQ==", + "requires": { + "browser-stdout": "1.3.1", + "commander": "2.15.1", + "debug": "3.1.0", + "diff": "3.5.0", + "escape-string-regexp": "1.0.5", + "glob": "7.1.2", + "growl": "1.10.5", + "he": "1.1.1", + "minimatch": "3.0.4", + "mkdirp": "0.5.1", + "supports-color": "5.4.0" + } + }, + "ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=" + }, "ndjson": { "version": "1.5.0", "resolved": "https://registry.npmjs.org/ndjson/-/ndjson-1.5.0.tgz", @@ -553,6 +668,11 @@ "resolved": "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz", "integrity": "sha1-F0uSaHNVNP+8es5r9TpanhtcX18=" }, + "pathval": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/pathval/-/pathval-1.1.0.tgz", + "integrity": "sha1-uULm1L3mUwBe9rcTYd74cn0GReA=" + }, "performance-now": { "version": "2.1.0", "resolved": "https://registry.npmjs.org/performance-now/-/performance-now-2.1.0.tgz", @@ -725,6 +845,14 @@ "safe-buffer": "5.1.1" } }, + "supports-color": { + "version": "5.4.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.4.0.tgz", + "integrity": "sha512-zjaXglF5nnWpsq470jSv6P9DwPvgLkuapYmfDm3JWOm0vkNTVF2tI4UrN2r6jH1qM/uc/WtxYY1hYoA2dOKj5w==", + "requires": { + "has-flag": "3.0.0" + } + }, "symbol-tree": { "version": "3.2.2", "resolved": "https://registry.npmjs.org/symbol-tree/-/symbol-tree-3.2.2.tgz", @@ -785,6 +913,11 @@ "prelude-ls": "1.1.2" } }, + "type-detect": { + "version": "4.0.8", + "resolved": "https://registry.npmjs.org/type-detect/-/type-detect-4.0.8.tgz", + "integrity": "sha512-0fr/mIH1dlO+x7TlcMy+bIDqKPsw/70tVyeHW787goQjhmqaZe10uwLujubK9q9Lg6Fiho1KUKDYz0Z7k7g5/g==" + }, "util-deprecate": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz", diff --git a/package.json b/package.json index 6dc86ce02..c346949f2 100644 --- a/package.json +++ b/package.json @@ -3,8 +3,10 @@ "version": "1.0.0", "description": "Open-source emojis for designers, developers and everyone else!", "scripts": { + "test": "mocha test/test.js", "create-emoji-tables": "node helpers/create-emoji-tables.js", "create-catalog": "node helpers/create-catalog.js", + "create-svg-skintones": "node helpers/create-svg-skintones.js", "create-sticker-pack-ios-sorted-list": "node helpers/create-sticker-pack-ios-sorted-list.js", "convert-svg-png": "./helpers/convert-svg-png.sh", "optimize-images": "./helpers/optimize-images.sh" @@ -15,11 +17,13 @@ "repository": "https://github.com/hfg-gmuend/openmoji", "license": "CC-BY-SA-4.0", "dependencies": { + "chai": "^4.1.2", "csv-parse": "^2.5.0", "csv-write-stream": "^2.0.0", "emojibase-data": "^3.0.0", "glob": "^7.1.2", "jsdom": "^11.11.0", - "lodash": "^4.17.4" + "lodash": "^4.17.4", + "mocha": "^5.2.0" } } diff --git a/test/test.js b/test/test.js new file mode 100644 index 000000000..07c483a29 --- /dev/null +++ b/test/test.js @@ -0,0 +1,22 @@ +const expect = require('chai').expect; +const fs = require('fs'); +const _ = require('lodash'); +const JSDOM = require('jsdom').JSDOM; + +const emojis = require('../data/openmoji.json'); + + +describe('OpenMojis with skintone modifier', function () { + const emojisSkintones = _.filter(emojis, (e) => { return e.skintone_base_emoji === e.emoji }); + const folderSvg = './color/svg'; + emojisSkintones.forEach(emoji => { + + it(emoji.hexcode + '.svg should have fills with skintone color', function(){ + const dom = new JSDOM(fs.readFileSync('./color/svg/'+emoji.hexcode+'.svg', 'utf8')); + const doc = dom.window.document; + const fillSkins = doc.querySelectorAll('[fill*="#FCEA2B" i]'); + expect( fillSkins.length ).to.be.above(0); + }); + + }) +}); From ee162415542db905f2b26cee05c63bea70d2c401 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Benedikt=20Gro=C3=9F?= Date: Mon, 9 Jul 2018 14:38:12 +0200 Subject: [PATCH 4/4] Evo: skintones generator --- helpers/create-svg-skintones.js | 20 ++++++++++++++------ 1 file changed, 14 insertions(+), 6 deletions(-) diff --git a/helpers/create-svg-skintones.js b/helpers/create-svg-skintones.js index de75ea991..5fb923cf4 100644 --- a/helpers/create-svg-skintones.js +++ b/helpers/create-svg-skintones.js @@ -12,12 +12,19 @@ const writeSvg = (filePath, data) => { fs.writeFileSync(filePath, head + data); } -const generateSkintoneSvg = (srcFilePath, destFilePath, skintone) => { +const generateSkintoneSvg = (srcFilePath, destFilePath, skintoneIndex) => { const dom = new JSDOM(fs.readFileSync(srcFilePath, 'utf8')); const doc = dom.window.document; - const fillSkins = doc.querySelectorAll('[fill*="#FCEA2B" i]'); - if (fillSkins.length === 0) console.error('Error: No skintone defined in ' + srcFilePath); - fillSkins.forEach(s => { s.setAttribute('fill', skintone); }); + const skinFills = doc.querySelectorAll('[fill*="#FCEA2B" i]'); + // const skinShadowFills = doc.querySelectorAll('[fill*="#F1B31C" i]'); + // if (skinFills.length === 0) console.error('Error: No skintone defined in ' + srcFilePath); + skinFills.forEach(s => { + s.setAttribute('fill', fitzpatrick[skintoneIndex]); + }); + // skinShadowFills.forEach(s => { + // const col = skintoneIndex < fitzpatrick.length - 1 ? fitzpatrick[skintoneIndex+1] : _.last(fitzpatrick); + // s.setAttribute('fill', col); + // }); writeSvg(destFilePath, doc.querySelector('svg').outerHTML); } @@ -25,12 +32,13 @@ let emojis = require('../data/openmoji.json'); console.log('Loaded emoijs: ' + emojis.length); // TODO: Check is this correct? emojis = _.filter(emojis, (e) => { return e.skintone_base_emoji !== '' && e.skintone_base_emoji !== e.emoji }); -console.log('Loaded emoijs with skintones: ' + emojis.length); emojis.forEach(e => { generateSkintoneSvg( path.join(folderIn, e.skintone_base_hexcode + '.svg'), path.join(folderOut, e.hexcode + '.svg'), - fitzpatrick[e.skintone-1] + e.skintone - 1 // fitzpatrick starts with 1 and not like an array with 0 ); }); + +console.log('Generated emoijs skintones variants: ' + emojis.length);